diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 00000000..813d3021
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,206 @@
+name: CI
+
+on:
+ push:
+ branches: [main]
+ pull_request:
+ branches: [main]
+
+env:
+ NODE_VERSION: '20'
+ RUST_VERSION: 'stable'
+
+jobs:
+ # Build and test TypeScript/JavaScript
+ test-node:
+ name: Test (Node.js)
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: ${{ env.NODE_VERSION }}
+ cache: 'npm'
+
+ - name: Install dependencies
+ run: npm ci
+
+ - name: Build TypeScript
+ run: npm run build
+
+ - name: Run unit tests
+ run: npm run test:unit
+
+ - name: Run integration tests
+ run: npm run test:integration
+
+ # Build and test with Bun
+ test-bun:
+ name: Test (Bun)
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v2
+ with:
+ bun-version: latest
+
+ - name: Setup Node.js (for npm compatibility)
+ uses: actions/setup-node@v4
+ with:
+ node-version: ${{ env.NODE_VERSION }}
+ cache: 'npm'
+
+ - name: Install dependencies
+ run: npm ci
+
+ - name: Build TypeScript
+ run: npm run build
+
+ - name: Run Bun tests
+ run: npm run test:bun
+
+ # Build Candle WASM (if Rust source changed)
+ build-candle-wasm:
+ name: Build Candle WASM
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Setup Rust
+ uses: dtolnay/rust-action@stable
+ with:
+ toolchain: ${{ env.RUST_VERSION }}
+ targets: wasm32-unknown-unknown
+
+ - name: Install wasm-pack
+ run: cargo install wasm-pack
+
+ - name: Cache Cargo registry
+ uses: actions/cache@v4
+ with:
+ path: |
+ ~/.cargo/registry
+ ~/.cargo/git
+ src/embeddings/candle-wasm/target
+ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
+
+ - name: Build WASM
+ run: |
+ cd src/embeddings/candle-wasm
+ wasm-pack build --target web --release
+
+ - name: Upload WASM artifacts
+ uses: actions/upload-artifact@v4
+ with:
+ name: candle-wasm
+ path: src/embeddings/wasm/pkg/
+ retention-days: 7
+
+ # Test Bun compile (standalone binary)
+ test-bun-compile:
+ name: Test Bun Compile
+ runs-on: ubuntu-latest
+ needs: [build-candle-wasm]
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v2
+ with:
+ bun-version: latest
+
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: ${{ env.NODE_VERSION }}
+ cache: 'npm'
+
+ - name: Download WASM artifacts
+ uses: actions/download-artifact@v4
+ with:
+ name: candle-wasm
+ path: src/embeddings/wasm/pkg/
+
+ - name: Install dependencies
+ run: npm ci
+
+ - name: Build TypeScript
+ run: npm run build
+
+ - name: Test Bun compile
+ run: |
+ # Create a test script
+ cat > /tmp/test-compile.ts << 'EOF'
+ import { Brainy } from './dist/index.js'
+
+ const brainy = new Brainy()
+ await brainy.init()
+ console.log('Brainy initialized!')
+
+ const embedding = await brainy.embed('Hello world')
+ console.log(`Embedding dimension: ${embedding.length}`)
+
+ if (embedding.length !== 384) {
+ throw new Error('Expected 384-dimensional embedding')
+ }
+
+ console.log('Test passed!')
+ EOF
+
+ # Compile to standalone binary
+ bun build --compile /tmp/test-compile.ts --outfile /tmp/brainy-test
+
+ # Run the compiled binary
+ /tmp/brainy-test
+
+ # Lint and type check
+ lint:
+ name: Lint & Type Check
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: ${{ env.NODE_VERSION }}
+ cache: 'npm'
+
+ - name: Install dependencies
+ run: npm ci
+
+ - name: Type check
+ run: npm run typecheck
+
+ - name: Lint
+ run: npm run lint
+
+ # License check
+ license-check:
+ name: License Check
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: ${{ env.NODE_VERSION }}
+ cache: 'npm'
+
+ - name: Install dependencies
+ run: npm ci
+
+ - name: Check licenses
+ run: |
+ # Install license checker
+ npm install -g license-checker
+
+ # Check for problematic licenses
+ license-checker --production --excludePrivatePackages \
+ --failOn 'GPL;LGPL;AGPL;SSPL' \
+ --summary
diff --git a/.gitignore b/.gitignore
index 2b354e6e..d0a27628 100644
--- a/.gitignore
+++ b/.gitignore
@@ -90,6 +90,16 @@ docs/internal/
# Cache files
*.cache
+# Rust/Cargo build artifacts
+src/embeddings/candle-wasm/target/
+src/embeddings/candle-wasm/Cargo.lock
+src/embeddings/wasm/pkg/
+
+# But keep the pre-built WASM (committed for users without Rust)
+!src/embeddings/wasm/pkg/*.wasm
+!src/embeddings/wasm/pkg/*.js
+!src/embeddings/wasm/pkg/*.d.ts
+
# Log files (redundant but explicit)
*.log
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 7b7e70ad..ab8a0246 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -43,15 +43,38 @@ Feature requests are welcome! Please provide:
#### Development Setup
+**Quick Setup (Recommended):**
```bash
# Clone your fork
git clone https://github.com/your-username/brainy.git
cd brainy
-# Install dependencies
+# Run setup script (installs all dependencies including Rust)
+./scripts/setup-dev.sh
+```
+
+**Manual Setup:**
+```bash
+# Clone your fork
+git clone https://github.com/your-username/brainy.git
+cd brainy
+
+# Install system dependencies (Ubuntu/Debian)
+sudo apt-get install -y build-essential pkg-config libssl-dev
+
+# Install Rust (for WASM embedding engine)
+curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
+source ~/.cargo/env
+rustup target add wasm32-unknown-unknown
+cargo install wasm-pack
+
+# Install Node.js dependencies
npm install
-# Build the project
+# Build Candle WASM embedding engine
+npm run build:candle
+
+# Build TypeScript
npm run build
# Run tests
diff --git a/README.md b/README.md
index 6f8bad70..e0f9e855 100644
--- a/README.md
+++ b/README.md
@@ -197,7 +197,7 @@ const brain = new Brainy({
})
```
**Scale:** Thousands to hundreds of thousands • **Performance:** <5ms queries
-**→ [Production Service Architecture](docs/PRODUCTION_SERVICE_ARCHITECTURE.md)** — Singleton patterns, caching, and scaling for Express/Node.js services
+**→ [Production Service Architecture](docs/PRODUCTION_SERVICE_ARCHITECTURE.md)** — Singleton patterns, caching, and scaling for Bun/Node.js services
### 🏢 Growing Company → Multi-Million Scale
```javascript
@@ -685,12 +685,18 @@ This comprehensive guide includes:
## Requirements
-**Node.js 22 LTS** (recommended) or **Node.js 20 LTS**
+**Bun 1.0+** (recommended) or **Node.js 22 LTS**
```bash
-nvm use # We provide .nvmrc
+# Bun (recommended - best performance, single-binary deployment)
+bun install @soulcraft/brainy
+
+# Node.js (fully supported)
+npm install @soulcraft/brainy
```
+> **Why Bun?** Brainy's Candle WASM engine works seamlessly with `bun --compile` for standalone binary deployment. No external model files, no runtime downloads.
+
---
## Why Brainy Exists
diff --git a/assets/models/all-MiniLM-L6-v2-q8/model.onnx b/assets/models/all-MiniLM-L6-v2-q8/model.onnx
deleted file mode 100644
index 712e070a..00000000
Binary files a/assets/models/all-MiniLM-L6-v2-q8/model.onnx and /dev/null differ
diff --git a/assets/models/all-MiniLM-L6-v2-q8/tokenizer.json b/assets/models/all-MiniLM-L6-v2-q8/tokenizer.json
deleted file mode 100644
index c17ed520..00000000
--- a/assets/models/all-MiniLM-L6-v2-q8/tokenizer.json
+++ /dev/null
@@ -1,30686 +0,0 @@
-{
- "version": "1.0",
- "truncation": {
- "direction": "Right",
- "max_length": 128,
- "strategy": "LongestFirst",
- "stride": 0
- },
- "padding": {
- "strategy": {
- "Fixed": 128
- },
- "direction": "Right",
- "pad_to_multiple_of": null,
- "pad_id": 0,
- "pad_type_id": 0,
- "pad_token": "[PAD]"
- },
- "added_tokens": [
- {
- "id": 0,
- "content": "[PAD]",
- "single_word": false,
- "lstrip": false,
- "rstrip": false,
- "normalized": false,
- "special": true
- },
- {
- "id": 100,
- "content": "[UNK]",
- "single_word": false,
- "lstrip": false,
- "rstrip": false,
- "normalized": false,
- "special": true
- },
- {
- "id": 101,
- "content": "[CLS]",
- "single_word": false,
- "lstrip": false,
- "rstrip": false,
- "normalized": false,
- "special": true
- },
- {
- "id": 102,
- "content": "[SEP]",
- "single_word": false,
- "lstrip": false,
- "rstrip": false,
- "normalized": false,
- "special": true
- },
- {
- "id": 103,
- "content": "[MASK]",
- "single_word": false,
- "lstrip": false,
- "rstrip": false,
- "normalized": false,
- "special": true
- }
- ],
- "normalizer": {
- "type": "BertNormalizer",
- "clean_text": true,
- "handle_chinese_chars": true,
- "strip_accents": null,
- "lowercase": true
- },
- "pre_tokenizer": {
- "type": "BertPreTokenizer"
- },
- "post_processor": {
- "type": "TemplateProcessing",
- "single": [
- {
- "SpecialToken": {
- "id": "[CLS]",
- "type_id": 0
- }
- },
- {
- "Sequence": {
- "id": "A",
- "type_id": 0
- }
- },
- {
- "SpecialToken": {
- "id": "[SEP]",
- "type_id": 0
- }
- }
- ],
- "pair": [
- {
- "SpecialToken": {
- "id": "[CLS]",
- "type_id": 0
- }
- },
- {
- "Sequence": {
- "id": "A",
- "type_id": 0
- }
- },
- {
- "SpecialToken": {
- "id": "[SEP]",
- "type_id": 0
- }
- },
- {
- "Sequence": {
- "id": "B",
- "type_id": 1
- }
- },
- {
- "SpecialToken": {
- "id": "[SEP]",
- "type_id": 1
- }
- }
- ],
- "special_tokens": {
- "[CLS]": {
- "id": "[CLS]",
- "ids": [
- 101
- ],
- "tokens": [
- "[CLS]"
- ]
- },
- "[SEP]": {
- "id": "[SEP]",
- "ids": [
- 102
- ],
- "tokens": [
- "[SEP]"
- ]
- }
- }
- },
- "decoder": {
- "type": "WordPiece",
- "prefix": "##",
- "cleanup": true
- },
- "model": {
- "type": "WordPiece",
- "unk_token": "[UNK]",
- "continuing_subword_prefix": "##",
- "max_input_chars_per_word": 100,
- "vocab": {
- "[PAD]": 0,
- "[unused0]": 1,
- "[unused1]": 2,
- "[unused2]": 3,
- "[unused3]": 4,
- "[unused4]": 5,
- "[unused5]": 6,
- "[unused6]": 7,
- "[unused7]": 8,
- "[unused8]": 9,
- "[unused9]": 10,
- "[unused10]": 11,
- "[unused11]": 12,
- "[unused12]": 13,
- "[unused13]": 14,
- "[unused14]": 15,
- "[unused15]": 16,
- "[unused16]": 17,
- "[unused17]": 18,
- "[unused18]": 19,
- "[unused19]": 20,
- "[unused20]": 21,
- "[unused21]": 22,
- "[unused22]": 23,
- "[unused23]": 24,
- "[unused24]": 25,
- "[unused25]": 26,
- "[unused26]": 27,
- "[unused27]": 28,
- "[unused28]": 29,
- "[unused29]": 30,
- "[unused30]": 31,
- "[unused31]": 32,
- "[unused32]": 33,
- "[unused33]": 34,
- "[unused34]": 35,
- "[unused35]": 36,
- "[unused36]": 37,
- "[unused37]": 38,
- "[unused38]": 39,
- "[unused39]": 40,
- "[unused40]": 41,
- "[unused41]": 42,
- "[unused42]": 43,
- "[unused43]": 44,
- "[unused44]": 45,
- "[unused45]": 46,
- "[unused46]": 47,
- "[unused47]": 48,
- "[unused48]": 49,
- "[unused49]": 50,
- "[unused50]": 51,
- "[unused51]": 52,
- "[unused52]": 53,
- "[unused53]": 54,
- "[unused54]": 55,
- "[unused55]": 56,
- "[unused56]": 57,
- "[unused57]": 58,
- "[unused58]": 59,
- "[unused59]": 60,
- "[unused60]": 61,
- "[unused61]": 62,
- "[unused62]": 63,
- "[unused63]": 64,
- "[unused64]": 65,
- "[unused65]": 66,
- "[unused66]": 67,
- "[unused67]": 68,
- "[unused68]": 69,
- "[unused69]": 70,
- "[unused70]": 71,
- "[unused71]": 72,
- "[unused72]": 73,
- "[unused73]": 74,
- "[unused74]": 75,
- "[unused75]": 76,
- "[unused76]": 77,
- "[unused77]": 78,
- "[unused78]": 79,
- "[unused79]": 80,
- "[unused80]": 81,
- "[unused81]": 82,
- "[unused82]": 83,
- "[unused83]": 84,
- "[unused84]": 85,
- "[unused85]": 86,
- "[unused86]": 87,
- "[unused87]": 88,
- "[unused88]": 89,
- "[unused89]": 90,
- "[unused90]": 91,
- "[unused91]": 92,
- "[unused92]": 93,
- "[unused93]": 94,
- "[unused94]": 95,
- "[unused95]": 96,
- "[unused96]": 97,
- "[unused97]": 98,
- "[unused98]": 99,
- "[UNK]": 100,
- "[CLS]": 101,
- "[SEP]": 102,
- "[MASK]": 103,
- "[unused99]": 104,
- "[unused100]": 105,
- "[unused101]": 106,
- "[unused102]": 107,
- "[unused103]": 108,
- "[unused104]": 109,
- "[unused105]": 110,
- "[unused106]": 111,
- "[unused107]": 112,
- "[unused108]": 113,
- "[unused109]": 114,
- "[unused110]": 115,
- "[unused111]": 116,
- "[unused112]": 117,
- "[unused113]": 118,
- "[unused114]": 119,
- "[unused115]": 120,
- "[unused116]": 121,
- "[unused117]": 122,
- "[unused118]": 123,
- "[unused119]": 124,
- "[unused120]": 125,
- "[unused121]": 126,
- "[unused122]": 127,
- "[unused123]": 128,
- "[unused124]": 129,
- "[unused125]": 130,
- "[unused126]": 131,
- "[unused127]": 132,
- "[unused128]": 133,
- "[unused129]": 134,
- "[unused130]": 135,
- "[unused131]": 136,
- "[unused132]": 137,
- "[unused133]": 138,
- "[unused134]": 139,
- "[unused135]": 140,
- "[unused136]": 141,
- "[unused137]": 142,
- "[unused138]": 143,
- "[unused139]": 144,
- "[unused140]": 145,
- "[unused141]": 146,
- "[unused142]": 147,
- "[unused143]": 148,
- "[unused144]": 149,
- "[unused145]": 150,
- "[unused146]": 151,
- "[unused147]": 152,
- "[unused148]": 153,
- "[unused149]": 154,
- "[unused150]": 155,
- "[unused151]": 156,
- "[unused152]": 157,
- "[unused153]": 158,
- "[unused154]": 159,
- "[unused155]": 160,
- "[unused156]": 161,
- "[unused157]": 162,
- "[unused158]": 163,
- "[unused159]": 164,
- "[unused160]": 165,
- "[unused161]": 166,
- "[unused162]": 167,
- "[unused163]": 168,
- "[unused164]": 169,
- "[unused165]": 170,
- "[unused166]": 171,
- "[unused167]": 172,
- "[unused168]": 173,
- "[unused169]": 174,
- "[unused170]": 175,
- "[unused171]": 176,
- "[unused172]": 177,
- "[unused173]": 178,
- "[unused174]": 179,
- "[unused175]": 180,
- "[unused176]": 181,
- "[unused177]": 182,
- "[unused178]": 183,
- "[unused179]": 184,
- "[unused180]": 185,
- "[unused181]": 186,
- "[unused182]": 187,
- "[unused183]": 188,
- "[unused184]": 189,
- "[unused185]": 190,
- "[unused186]": 191,
- "[unused187]": 192,
- "[unused188]": 193,
- "[unused189]": 194,
- "[unused190]": 195,
- "[unused191]": 196,
- "[unused192]": 197,
- "[unused193]": 198,
- "[unused194]": 199,
- "[unused195]": 200,
- "[unused196]": 201,
- "[unused197]": 202,
- "[unused198]": 203,
- "[unused199]": 204,
- "[unused200]": 205,
- "[unused201]": 206,
- "[unused202]": 207,
- "[unused203]": 208,
- "[unused204]": 209,
- "[unused205]": 210,
- "[unused206]": 211,
- "[unused207]": 212,
- "[unused208]": 213,
- "[unused209]": 214,
- "[unused210]": 215,
- "[unused211]": 216,
- "[unused212]": 217,
- "[unused213]": 218,
- "[unused214]": 219,
- "[unused215]": 220,
- "[unused216]": 221,
- "[unused217]": 222,
- "[unused218]": 223,
- "[unused219]": 224,
- "[unused220]": 225,
- "[unused221]": 226,
- "[unused222]": 227,
- "[unused223]": 228,
- "[unused224]": 229,
- "[unused225]": 230,
- "[unused226]": 231,
- "[unused227]": 232,
- "[unused228]": 233,
- "[unused229]": 234,
- "[unused230]": 235,
- "[unused231]": 236,
- "[unused232]": 237,
- "[unused233]": 238,
- "[unused234]": 239,
- "[unused235]": 240,
- "[unused236]": 241,
- "[unused237]": 242,
- "[unused238]": 243,
- "[unused239]": 244,
- "[unused240]": 245,
- "[unused241]": 246,
- "[unused242]": 247,
- "[unused243]": 248,
- "[unused244]": 249,
- "[unused245]": 250,
- "[unused246]": 251,
- "[unused247]": 252,
- "[unused248]": 253,
- "[unused249]": 254,
- "[unused250]": 255,
- "[unused251]": 256,
- "[unused252]": 257,
- "[unused253]": 258,
- "[unused254]": 259,
- "[unused255]": 260,
- "[unused256]": 261,
- "[unused257]": 262,
- "[unused258]": 263,
- "[unused259]": 264,
- "[unused260]": 265,
- "[unused261]": 266,
- "[unused262]": 267,
- "[unused263]": 268,
- "[unused264]": 269,
- "[unused265]": 270,
- "[unused266]": 271,
- "[unused267]": 272,
- "[unused268]": 273,
- "[unused269]": 274,
- "[unused270]": 275,
- "[unused271]": 276,
- "[unused272]": 277,
- "[unused273]": 278,
- "[unused274]": 279,
- "[unused275]": 280,
- "[unused276]": 281,
- "[unused277]": 282,
- "[unused278]": 283,
- "[unused279]": 284,
- "[unused280]": 285,
- "[unused281]": 286,
- "[unused282]": 287,
- "[unused283]": 288,
- "[unused284]": 289,
- "[unused285]": 290,
- "[unused286]": 291,
- "[unused287]": 292,
- "[unused288]": 293,
- "[unused289]": 294,
- "[unused290]": 295,
- "[unused291]": 296,
- "[unused292]": 297,
- "[unused293]": 298,
- "[unused294]": 299,
- "[unused295]": 300,
- "[unused296]": 301,
- "[unused297]": 302,
- "[unused298]": 303,
- "[unused299]": 304,
- "[unused300]": 305,
- "[unused301]": 306,
- "[unused302]": 307,
- "[unused303]": 308,
- "[unused304]": 309,
- "[unused305]": 310,
- "[unused306]": 311,
- "[unused307]": 312,
- "[unused308]": 313,
- "[unused309]": 314,
- "[unused310]": 315,
- "[unused311]": 316,
- "[unused312]": 317,
- "[unused313]": 318,
- "[unused314]": 319,
- "[unused315]": 320,
- "[unused316]": 321,
- "[unused317]": 322,
- "[unused318]": 323,
- "[unused319]": 324,
- "[unused320]": 325,
- "[unused321]": 326,
- "[unused322]": 327,
- "[unused323]": 328,
- "[unused324]": 329,
- "[unused325]": 330,
- "[unused326]": 331,
- "[unused327]": 332,
- "[unused328]": 333,
- "[unused329]": 334,
- "[unused330]": 335,
- "[unused331]": 336,
- "[unused332]": 337,
- "[unused333]": 338,
- "[unused334]": 339,
- "[unused335]": 340,
- "[unused336]": 341,
- "[unused337]": 342,
- "[unused338]": 343,
- "[unused339]": 344,
- "[unused340]": 345,
- "[unused341]": 346,
- "[unused342]": 347,
- "[unused343]": 348,
- "[unused344]": 349,
- "[unused345]": 350,
- "[unused346]": 351,
- "[unused347]": 352,
- "[unused348]": 353,
- "[unused349]": 354,
- "[unused350]": 355,
- "[unused351]": 356,
- "[unused352]": 357,
- "[unused353]": 358,
- "[unused354]": 359,
- "[unused355]": 360,
- "[unused356]": 361,
- "[unused357]": 362,
- "[unused358]": 363,
- "[unused359]": 364,
- "[unused360]": 365,
- "[unused361]": 366,
- "[unused362]": 367,
- "[unused363]": 368,
- "[unused364]": 369,
- "[unused365]": 370,
- "[unused366]": 371,
- "[unused367]": 372,
- "[unused368]": 373,
- "[unused369]": 374,
- "[unused370]": 375,
- "[unused371]": 376,
- "[unused372]": 377,
- "[unused373]": 378,
- "[unused374]": 379,
- "[unused375]": 380,
- "[unused376]": 381,
- "[unused377]": 382,
- "[unused378]": 383,
- "[unused379]": 384,
- "[unused380]": 385,
- "[unused381]": 386,
- "[unused382]": 387,
- "[unused383]": 388,
- "[unused384]": 389,
- "[unused385]": 390,
- "[unused386]": 391,
- "[unused387]": 392,
- "[unused388]": 393,
- "[unused389]": 394,
- "[unused390]": 395,
- "[unused391]": 396,
- "[unused392]": 397,
- "[unused393]": 398,
- "[unused394]": 399,
- "[unused395]": 400,
- "[unused396]": 401,
- "[unused397]": 402,
- "[unused398]": 403,
- "[unused399]": 404,
- "[unused400]": 405,
- "[unused401]": 406,
- "[unused402]": 407,
- "[unused403]": 408,
- "[unused404]": 409,
- "[unused405]": 410,
- "[unused406]": 411,
- "[unused407]": 412,
- "[unused408]": 413,
- "[unused409]": 414,
- "[unused410]": 415,
- "[unused411]": 416,
- "[unused412]": 417,
- "[unused413]": 418,
- "[unused414]": 419,
- "[unused415]": 420,
- "[unused416]": 421,
- "[unused417]": 422,
- "[unused418]": 423,
- "[unused419]": 424,
- "[unused420]": 425,
- "[unused421]": 426,
- "[unused422]": 427,
- "[unused423]": 428,
- "[unused424]": 429,
- "[unused425]": 430,
- "[unused426]": 431,
- "[unused427]": 432,
- "[unused428]": 433,
- "[unused429]": 434,
- "[unused430]": 435,
- "[unused431]": 436,
- "[unused432]": 437,
- "[unused433]": 438,
- "[unused434]": 439,
- "[unused435]": 440,
- "[unused436]": 441,
- "[unused437]": 442,
- "[unused438]": 443,
- "[unused439]": 444,
- "[unused440]": 445,
- "[unused441]": 446,
- "[unused442]": 447,
- "[unused443]": 448,
- "[unused444]": 449,
- "[unused445]": 450,
- "[unused446]": 451,
- "[unused447]": 452,
- "[unused448]": 453,
- "[unused449]": 454,
- "[unused450]": 455,
- "[unused451]": 456,
- "[unused452]": 457,
- "[unused453]": 458,
- "[unused454]": 459,
- "[unused455]": 460,
- "[unused456]": 461,
- "[unused457]": 462,
- "[unused458]": 463,
- "[unused459]": 464,
- "[unused460]": 465,
- "[unused461]": 466,
- "[unused462]": 467,
- "[unused463]": 468,
- "[unused464]": 469,
- "[unused465]": 470,
- "[unused466]": 471,
- "[unused467]": 472,
- "[unused468]": 473,
- "[unused469]": 474,
- "[unused470]": 475,
- "[unused471]": 476,
- "[unused472]": 477,
- "[unused473]": 478,
- "[unused474]": 479,
- "[unused475]": 480,
- "[unused476]": 481,
- "[unused477]": 482,
- "[unused478]": 483,
- "[unused479]": 484,
- "[unused480]": 485,
- "[unused481]": 486,
- "[unused482]": 487,
- "[unused483]": 488,
- "[unused484]": 489,
- "[unused485]": 490,
- "[unused486]": 491,
- "[unused487]": 492,
- "[unused488]": 493,
- "[unused489]": 494,
- "[unused490]": 495,
- "[unused491]": 496,
- "[unused492]": 497,
- "[unused493]": 498,
- "[unused494]": 499,
- "[unused495]": 500,
- "[unused496]": 501,
- "[unused497]": 502,
- "[unused498]": 503,
- "[unused499]": 504,
- "[unused500]": 505,
- "[unused501]": 506,
- "[unused502]": 507,
- "[unused503]": 508,
- "[unused504]": 509,
- "[unused505]": 510,
- "[unused506]": 511,
- "[unused507]": 512,
- "[unused508]": 513,
- "[unused509]": 514,
- "[unused510]": 515,
- "[unused511]": 516,
- "[unused512]": 517,
- "[unused513]": 518,
- "[unused514]": 519,
- "[unused515]": 520,
- "[unused516]": 521,
- "[unused517]": 522,
- "[unused518]": 523,
- "[unused519]": 524,
- "[unused520]": 525,
- "[unused521]": 526,
- "[unused522]": 527,
- "[unused523]": 528,
- "[unused524]": 529,
- "[unused525]": 530,
- "[unused526]": 531,
- "[unused527]": 532,
- "[unused528]": 533,
- "[unused529]": 534,
- "[unused530]": 535,
- "[unused531]": 536,
- "[unused532]": 537,
- "[unused533]": 538,
- "[unused534]": 539,
- "[unused535]": 540,
- "[unused536]": 541,
- "[unused537]": 542,
- "[unused538]": 543,
- "[unused539]": 544,
- "[unused540]": 545,
- "[unused541]": 546,
- "[unused542]": 547,
- "[unused543]": 548,
- "[unused544]": 549,
- "[unused545]": 550,
- "[unused546]": 551,
- "[unused547]": 552,
- "[unused548]": 553,
- "[unused549]": 554,
- "[unused550]": 555,
- "[unused551]": 556,
- "[unused552]": 557,
- "[unused553]": 558,
- "[unused554]": 559,
- "[unused555]": 560,
- "[unused556]": 561,
- "[unused557]": 562,
- "[unused558]": 563,
- "[unused559]": 564,
- "[unused560]": 565,
- "[unused561]": 566,
- "[unused562]": 567,
- "[unused563]": 568,
- "[unused564]": 569,
- "[unused565]": 570,
- "[unused566]": 571,
- "[unused567]": 572,
- "[unused568]": 573,
- "[unused569]": 574,
- "[unused570]": 575,
- "[unused571]": 576,
- "[unused572]": 577,
- "[unused573]": 578,
- "[unused574]": 579,
- "[unused575]": 580,
- "[unused576]": 581,
- "[unused577]": 582,
- "[unused578]": 583,
- "[unused579]": 584,
- "[unused580]": 585,
- "[unused581]": 586,
- "[unused582]": 587,
- "[unused583]": 588,
- "[unused584]": 589,
- "[unused585]": 590,
- "[unused586]": 591,
- "[unused587]": 592,
- "[unused588]": 593,
- "[unused589]": 594,
- "[unused590]": 595,
- "[unused591]": 596,
- "[unused592]": 597,
- "[unused593]": 598,
- "[unused594]": 599,
- "[unused595]": 600,
- "[unused596]": 601,
- "[unused597]": 602,
- "[unused598]": 603,
- "[unused599]": 604,
- "[unused600]": 605,
- "[unused601]": 606,
- "[unused602]": 607,
- "[unused603]": 608,
- "[unused604]": 609,
- "[unused605]": 610,
- "[unused606]": 611,
- "[unused607]": 612,
- "[unused608]": 613,
- "[unused609]": 614,
- "[unused610]": 615,
- "[unused611]": 616,
- "[unused612]": 617,
- "[unused613]": 618,
- "[unused614]": 619,
- "[unused615]": 620,
- "[unused616]": 621,
- "[unused617]": 622,
- "[unused618]": 623,
- "[unused619]": 624,
- "[unused620]": 625,
- "[unused621]": 626,
- "[unused622]": 627,
- "[unused623]": 628,
- "[unused624]": 629,
- "[unused625]": 630,
- "[unused626]": 631,
- "[unused627]": 632,
- "[unused628]": 633,
- "[unused629]": 634,
- "[unused630]": 635,
- "[unused631]": 636,
- "[unused632]": 637,
- "[unused633]": 638,
- "[unused634]": 639,
- "[unused635]": 640,
- "[unused636]": 641,
- "[unused637]": 642,
- "[unused638]": 643,
- "[unused639]": 644,
- "[unused640]": 645,
- "[unused641]": 646,
- "[unused642]": 647,
- "[unused643]": 648,
- "[unused644]": 649,
- "[unused645]": 650,
- "[unused646]": 651,
- "[unused647]": 652,
- "[unused648]": 653,
- "[unused649]": 654,
- "[unused650]": 655,
- "[unused651]": 656,
- "[unused652]": 657,
- "[unused653]": 658,
- "[unused654]": 659,
- "[unused655]": 660,
- "[unused656]": 661,
- "[unused657]": 662,
- "[unused658]": 663,
- "[unused659]": 664,
- "[unused660]": 665,
- "[unused661]": 666,
- "[unused662]": 667,
- "[unused663]": 668,
- "[unused664]": 669,
- "[unused665]": 670,
- "[unused666]": 671,
- "[unused667]": 672,
- "[unused668]": 673,
- "[unused669]": 674,
- "[unused670]": 675,
- "[unused671]": 676,
- "[unused672]": 677,
- "[unused673]": 678,
- "[unused674]": 679,
- "[unused675]": 680,
- "[unused676]": 681,
- "[unused677]": 682,
- "[unused678]": 683,
- "[unused679]": 684,
- "[unused680]": 685,
- "[unused681]": 686,
- "[unused682]": 687,
- "[unused683]": 688,
- "[unused684]": 689,
- "[unused685]": 690,
- "[unused686]": 691,
- "[unused687]": 692,
- "[unused688]": 693,
- "[unused689]": 694,
- "[unused690]": 695,
- "[unused691]": 696,
- "[unused692]": 697,
- "[unused693]": 698,
- "[unused694]": 699,
- "[unused695]": 700,
- "[unused696]": 701,
- "[unused697]": 702,
- "[unused698]": 703,
- "[unused699]": 704,
- "[unused700]": 705,
- "[unused701]": 706,
- "[unused702]": 707,
- "[unused703]": 708,
- "[unused704]": 709,
- "[unused705]": 710,
- "[unused706]": 711,
- "[unused707]": 712,
- "[unused708]": 713,
- "[unused709]": 714,
- "[unused710]": 715,
- "[unused711]": 716,
- "[unused712]": 717,
- "[unused713]": 718,
- "[unused714]": 719,
- "[unused715]": 720,
- "[unused716]": 721,
- "[unused717]": 722,
- "[unused718]": 723,
- "[unused719]": 724,
- "[unused720]": 725,
- "[unused721]": 726,
- "[unused722]": 727,
- "[unused723]": 728,
- "[unused724]": 729,
- "[unused725]": 730,
- "[unused726]": 731,
- "[unused727]": 732,
- "[unused728]": 733,
- "[unused729]": 734,
- "[unused730]": 735,
- "[unused731]": 736,
- "[unused732]": 737,
- "[unused733]": 738,
- "[unused734]": 739,
- "[unused735]": 740,
- "[unused736]": 741,
- "[unused737]": 742,
- "[unused738]": 743,
- "[unused739]": 744,
- "[unused740]": 745,
- "[unused741]": 746,
- "[unused742]": 747,
- "[unused743]": 748,
- "[unused744]": 749,
- "[unused745]": 750,
- "[unused746]": 751,
- "[unused747]": 752,
- "[unused748]": 753,
- "[unused749]": 754,
- "[unused750]": 755,
- "[unused751]": 756,
- "[unused752]": 757,
- "[unused753]": 758,
- "[unused754]": 759,
- "[unused755]": 760,
- "[unused756]": 761,
- "[unused757]": 762,
- "[unused758]": 763,
- "[unused759]": 764,
- "[unused760]": 765,
- "[unused761]": 766,
- "[unused762]": 767,
- "[unused763]": 768,
- "[unused764]": 769,
- "[unused765]": 770,
- "[unused766]": 771,
- "[unused767]": 772,
- "[unused768]": 773,
- "[unused769]": 774,
- "[unused770]": 775,
- "[unused771]": 776,
- "[unused772]": 777,
- "[unused773]": 778,
- "[unused774]": 779,
- "[unused775]": 780,
- "[unused776]": 781,
- "[unused777]": 782,
- "[unused778]": 783,
- "[unused779]": 784,
- "[unused780]": 785,
- "[unused781]": 786,
- "[unused782]": 787,
- "[unused783]": 788,
- "[unused784]": 789,
- "[unused785]": 790,
- "[unused786]": 791,
- "[unused787]": 792,
- "[unused788]": 793,
- "[unused789]": 794,
- "[unused790]": 795,
- "[unused791]": 796,
- "[unused792]": 797,
- "[unused793]": 798,
- "[unused794]": 799,
- "[unused795]": 800,
- "[unused796]": 801,
- "[unused797]": 802,
- "[unused798]": 803,
- "[unused799]": 804,
- "[unused800]": 805,
- "[unused801]": 806,
- "[unused802]": 807,
- "[unused803]": 808,
- "[unused804]": 809,
- "[unused805]": 810,
- "[unused806]": 811,
- "[unused807]": 812,
- "[unused808]": 813,
- "[unused809]": 814,
- "[unused810]": 815,
- "[unused811]": 816,
- "[unused812]": 817,
- "[unused813]": 818,
- "[unused814]": 819,
- "[unused815]": 820,
- "[unused816]": 821,
- "[unused817]": 822,
- "[unused818]": 823,
- "[unused819]": 824,
- "[unused820]": 825,
- "[unused821]": 826,
- "[unused822]": 827,
- "[unused823]": 828,
- "[unused824]": 829,
- "[unused825]": 830,
- "[unused826]": 831,
- "[unused827]": 832,
- "[unused828]": 833,
- "[unused829]": 834,
- "[unused830]": 835,
- "[unused831]": 836,
- "[unused832]": 837,
- "[unused833]": 838,
- "[unused834]": 839,
- "[unused835]": 840,
- "[unused836]": 841,
- "[unused837]": 842,
- "[unused838]": 843,
- "[unused839]": 844,
- "[unused840]": 845,
- "[unused841]": 846,
- "[unused842]": 847,
- "[unused843]": 848,
- "[unused844]": 849,
- "[unused845]": 850,
- "[unused846]": 851,
- "[unused847]": 852,
- "[unused848]": 853,
- "[unused849]": 854,
- "[unused850]": 855,
- "[unused851]": 856,
- "[unused852]": 857,
- "[unused853]": 858,
- "[unused854]": 859,
- "[unused855]": 860,
- "[unused856]": 861,
- "[unused857]": 862,
- "[unused858]": 863,
- "[unused859]": 864,
- "[unused860]": 865,
- "[unused861]": 866,
- "[unused862]": 867,
- "[unused863]": 868,
- "[unused864]": 869,
- "[unused865]": 870,
- "[unused866]": 871,
- "[unused867]": 872,
- "[unused868]": 873,
- "[unused869]": 874,
- "[unused870]": 875,
- "[unused871]": 876,
- "[unused872]": 877,
- "[unused873]": 878,
- "[unused874]": 879,
- "[unused875]": 880,
- "[unused876]": 881,
- "[unused877]": 882,
- "[unused878]": 883,
- "[unused879]": 884,
- "[unused880]": 885,
- "[unused881]": 886,
- "[unused882]": 887,
- "[unused883]": 888,
- "[unused884]": 889,
- "[unused885]": 890,
- "[unused886]": 891,
- "[unused887]": 892,
- "[unused888]": 893,
- "[unused889]": 894,
- "[unused890]": 895,
- "[unused891]": 896,
- "[unused892]": 897,
- "[unused893]": 898,
- "[unused894]": 899,
- "[unused895]": 900,
- "[unused896]": 901,
- "[unused897]": 902,
- "[unused898]": 903,
- "[unused899]": 904,
- "[unused900]": 905,
- "[unused901]": 906,
- "[unused902]": 907,
- "[unused903]": 908,
- "[unused904]": 909,
- "[unused905]": 910,
- "[unused906]": 911,
- "[unused907]": 912,
- "[unused908]": 913,
- "[unused909]": 914,
- "[unused910]": 915,
- "[unused911]": 916,
- "[unused912]": 917,
- "[unused913]": 918,
- "[unused914]": 919,
- "[unused915]": 920,
- "[unused916]": 921,
- "[unused917]": 922,
- "[unused918]": 923,
- "[unused919]": 924,
- "[unused920]": 925,
- "[unused921]": 926,
- "[unused922]": 927,
- "[unused923]": 928,
- "[unused924]": 929,
- "[unused925]": 930,
- "[unused926]": 931,
- "[unused927]": 932,
- "[unused928]": 933,
- "[unused929]": 934,
- "[unused930]": 935,
- "[unused931]": 936,
- "[unused932]": 937,
- "[unused933]": 938,
- "[unused934]": 939,
- "[unused935]": 940,
- "[unused936]": 941,
- "[unused937]": 942,
- "[unused938]": 943,
- "[unused939]": 944,
- "[unused940]": 945,
- "[unused941]": 946,
- "[unused942]": 947,
- "[unused943]": 948,
- "[unused944]": 949,
- "[unused945]": 950,
- "[unused946]": 951,
- "[unused947]": 952,
- "[unused948]": 953,
- "[unused949]": 954,
- "[unused950]": 955,
- "[unused951]": 956,
- "[unused952]": 957,
- "[unused953]": 958,
- "[unused954]": 959,
- "[unused955]": 960,
- "[unused956]": 961,
- "[unused957]": 962,
- "[unused958]": 963,
- "[unused959]": 964,
- "[unused960]": 965,
- "[unused961]": 966,
- "[unused962]": 967,
- "[unused963]": 968,
- "[unused964]": 969,
- "[unused965]": 970,
- "[unused966]": 971,
- "[unused967]": 972,
- "[unused968]": 973,
- "[unused969]": 974,
- "[unused970]": 975,
- "[unused971]": 976,
- "[unused972]": 977,
- "[unused973]": 978,
- "[unused974]": 979,
- "[unused975]": 980,
- "[unused976]": 981,
- "[unused977]": 982,
- "[unused978]": 983,
- "[unused979]": 984,
- "[unused980]": 985,
- "[unused981]": 986,
- "[unused982]": 987,
- "[unused983]": 988,
- "[unused984]": 989,
- "[unused985]": 990,
- "[unused986]": 991,
- "[unused987]": 992,
- "[unused988]": 993,
- "[unused989]": 994,
- "[unused990]": 995,
- "[unused991]": 996,
- "[unused992]": 997,
- "[unused993]": 998,
- "!": 999,
- "\"": 1000,
- "#": 1001,
- "$": 1002,
- "%": 1003,
- "&": 1004,
- "'": 1005,
- "(": 1006,
- ")": 1007,
- "*": 1008,
- "+": 1009,
- ",": 1010,
- "-": 1011,
- ".": 1012,
- "/": 1013,
- "0": 1014,
- "1": 1015,
- "2": 1016,
- "3": 1017,
- "4": 1018,
- "5": 1019,
- "6": 1020,
- "7": 1021,
- "8": 1022,
- "9": 1023,
- ":": 1024,
- ";": 1025,
- "<": 1026,
- "=": 1027,
- ">": 1028,
- "?": 1029,
- "@": 1030,
- "[": 1031,
- "\\": 1032,
- "]": 1033,
- "^": 1034,
- "_": 1035,
- "`": 1036,
- "a": 1037,
- "b": 1038,
- "c": 1039,
- "d": 1040,
- "e": 1041,
- "f": 1042,
- "g": 1043,
- "h": 1044,
- "i": 1045,
- "j": 1046,
- "k": 1047,
- "l": 1048,
- "m": 1049,
- "n": 1050,
- "o": 1051,
- "p": 1052,
- "q": 1053,
- "r": 1054,
- "s": 1055,
- "t": 1056,
- "u": 1057,
- "v": 1058,
- "w": 1059,
- "x": 1060,
- "y": 1061,
- "z": 1062,
- "{": 1063,
- "|": 1064,
- "}": 1065,
- "~": 1066,
- "¡": 1067,
- "¢": 1068,
- "£": 1069,
- "¤": 1070,
- "¥": 1071,
- "¦": 1072,
- "§": 1073,
- "¨": 1074,
- "©": 1075,
- "ª": 1076,
- "«": 1077,
- "¬": 1078,
- "®": 1079,
- "°": 1080,
- "±": 1081,
- "²": 1082,
- "³": 1083,
- "´": 1084,
- "µ": 1085,
- "¶": 1086,
- "·": 1087,
- "¹": 1088,
- "º": 1089,
- "»": 1090,
- "¼": 1091,
- "½": 1092,
- "¾": 1093,
- "¿": 1094,
- "×": 1095,
- "ß": 1096,
- "æ": 1097,
- "ð": 1098,
- "÷": 1099,
- "ø": 1100,
- "þ": 1101,
- "đ": 1102,
- "ħ": 1103,
- "ı": 1104,
- "ł": 1105,
- "ŋ": 1106,
- "œ": 1107,
- "ƒ": 1108,
- "ɐ": 1109,
- "ɑ": 1110,
- "ɒ": 1111,
- "ɔ": 1112,
- "ɕ": 1113,
- "ə": 1114,
- "ɛ": 1115,
- "ɡ": 1116,
- "ɣ": 1117,
- "ɨ": 1118,
- "ɪ": 1119,
- "ɫ": 1120,
- "ɬ": 1121,
- "ɯ": 1122,
- "ɲ": 1123,
- "ɴ": 1124,
- "ɹ": 1125,
- "ɾ": 1126,
- "ʀ": 1127,
- "ʁ": 1128,
- "ʂ": 1129,
- "ʃ": 1130,
- "ʉ": 1131,
- "ʊ": 1132,
- "ʋ": 1133,
- "ʌ": 1134,
- "ʎ": 1135,
- "ʐ": 1136,
- "ʑ": 1137,
- "ʒ": 1138,
- "ʔ": 1139,
- "ʰ": 1140,
- "ʲ": 1141,
- "ʳ": 1142,
- "ʷ": 1143,
- "ʸ": 1144,
- "ʻ": 1145,
- "ʼ": 1146,
- "ʾ": 1147,
- "ʿ": 1148,
- "ˈ": 1149,
- "ː": 1150,
- "ˡ": 1151,
- "ˢ": 1152,
- "ˣ": 1153,
- "ˤ": 1154,
- "α": 1155,
- "β": 1156,
- "γ": 1157,
- "δ": 1158,
- "ε": 1159,
- "ζ": 1160,
- "η": 1161,
- "θ": 1162,
- "ι": 1163,
- "κ": 1164,
- "λ": 1165,
- "μ": 1166,
- "ν": 1167,
- "ξ": 1168,
- "ο": 1169,
- "π": 1170,
- "ρ": 1171,
- "ς": 1172,
- "σ": 1173,
- "τ": 1174,
- "υ": 1175,
- "φ": 1176,
- "χ": 1177,
- "ψ": 1178,
- "ω": 1179,
- "а": 1180,
- "б": 1181,
- "в": 1182,
- "г": 1183,
- "д": 1184,
- "е": 1185,
- "ж": 1186,
- "з": 1187,
- "и": 1188,
- "к": 1189,
- "л": 1190,
- "м": 1191,
- "н": 1192,
- "о": 1193,
- "п": 1194,
- "р": 1195,
- "с": 1196,
- "т": 1197,
- "у": 1198,
- "ф": 1199,
- "х": 1200,
- "ц": 1201,
- "ч": 1202,
- "ш": 1203,
- "щ": 1204,
- "ъ": 1205,
- "ы": 1206,
- "ь": 1207,
- "э": 1208,
- "ю": 1209,
- "я": 1210,
- "ђ": 1211,
- "є": 1212,
- "і": 1213,
- "ј": 1214,
- "љ": 1215,
- "њ": 1216,
- "ћ": 1217,
- "ӏ": 1218,
- "ա": 1219,
- "բ": 1220,
- "գ": 1221,
- "դ": 1222,
- "ե": 1223,
- "թ": 1224,
- "ի": 1225,
- "լ": 1226,
- "կ": 1227,
- "հ": 1228,
- "մ": 1229,
- "յ": 1230,
- "ն": 1231,
- "ո": 1232,
- "պ": 1233,
- "ս": 1234,
- "վ": 1235,
- "տ": 1236,
- "ր": 1237,
- "ւ": 1238,
- "ք": 1239,
- "־": 1240,
- "א": 1241,
- "ב": 1242,
- "ג": 1243,
- "ד": 1244,
- "ה": 1245,
- "ו": 1246,
- "ז": 1247,
- "ח": 1248,
- "ט": 1249,
- "י": 1250,
- "ך": 1251,
- "כ": 1252,
- "ל": 1253,
- "ם": 1254,
- "מ": 1255,
- "ן": 1256,
- "נ": 1257,
- "ס": 1258,
- "ע": 1259,
- "ף": 1260,
- "פ": 1261,
- "ץ": 1262,
- "צ": 1263,
- "ק": 1264,
- "ר": 1265,
- "ש": 1266,
- "ת": 1267,
- "،": 1268,
- "ء": 1269,
- "ا": 1270,
- "ب": 1271,
- "ة": 1272,
- "ت": 1273,
- "ث": 1274,
- "ج": 1275,
- "ح": 1276,
- "خ": 1277,
- "د": 1278,
- "ذ": 1279,
- "ر": 1280,
- "ز": 1281,
- "س": 1282,
- "ش": 1283,
- "ص": 1284,
- "ض": 1285,
- "ط": 1286,
- "ظ": 1287,
- "ع": 1288,
- "غ": 1289,
- "ـ": 1290,
- "ف": 1291,
- "ق": 1292,
- "ك": 1293,
- "ل": 1294,
- "م": 1295,
- "ن": 1296,
- "ه": 1297,
- "و": 1298,
- "ى": 1299,
- "ي": 1300,
- "ٹ": 1301,
- "پ": 1302,
- "چ": 1303,
- "ک": 1304,
- "گ": 1305,
- "ں": 1306,
- "ھ": 1307,
- "ہ": 1308,
- "ی": 1309,
- "ے": 1310,
- "अ": 1311,
- "आ": 1312,
- "उ": 1313,
- "ए": 1314,
- "क": 1315,
- "ख": 1316,
- "ग": 1317,
- "च": 1318,
- "ज": 1319,
- "ट": 1320,
- "ड": 1321,
- "ण": 1322,
- "त": 1323,
- "थ": 1324,
- "द": 1325,
- "ध": 1326,
- "न": 1327,
- "प": 1328,
- "ब": 1329,
- "भ": 1330,
- "म": 1331,
- "य": 1332,
- "र": 1333,
- "ल": 1334,
- "व": 1335,
- "श": 1336,
- "ष": 1337,
- "स": 1338,
- "ह": 1339,
- "ा": 1340,
- "ि": 1341,
- "ी": 1342,
- "ो": 1343,
- "।": 1344,
- "॥": 1345,
- "ং": 1346,
- "অ": 1347,
- "আ": 1348,
- "ই": 1349,
- "উ": 1350,
- "এ": 1351,
- "ও": 1352,
- "ক": 1353,
- "খ": 1354,
- "গ": 1355,
- "চ": 1356,
- "ছ": 1357,
- "জ": 1358,
- "ট": 1359,
- "ড": 1360,
- "ণ": 1361,
- "ত": 1362,
- "থ": 1363,
- "দ": 1364,
- "ধ": 1365,
- "ন": 1366,
- "প": 1367,
- "ব": 1368,
- "ভ": 1369,
- "ম": 1370,
- "য": 1371,
- "র": 1372,
- "ল": 1373,
- "শ": 1374,
- "ষ": 1375,
- "স": 1376,
- "হ": 1377,
- "া": 1378,
- "ি": 1379,
- "ী": 1380,
- "ে": 1381,
- "க": 1382,
- "ச": 1383,
- "ட": 1384,
- "த": 1385,
- "ந": 1386,
- "ன": 1387,
- "ப": 1388,
- "ம": 1389,
- "ய": 1390,
- "ர": 1391,
- "ல": 1392,
- "ள": 1393,
- "வ": 1394,
- "ா": 1395,
- "ி": 1396,
- "ு": 1397,
- "ே": 1398,
- "ை": 1399,
- "ನ": 1400,
- "ರ": 1401,
- "ಾ": 1402,
- "ක": 1403,
- "ය": 1404,
- "ර": 1405,
- "ල": 1406,
- "ව": 1407,
- "ා": 1408,
- "ก": 1409,
- "ง": 1410,
- "ต": 1411,
- "ท": 1412,
- "น": 1413,
- "พ": 1414,
- "ม": 1415,
- "ย": 1416,
- "ร": 1417,
- "ล": 1418,
- "ว": 1419,
- "ส": 1420,
- "อ": 1421,
- "า": 1422,
- "เ": 1423,
- "་": 1424,
- "།": 1425,
- "ག": 1426,
- "ང": 1427,
- "ད": 1428,
- "ན": 1429,
- "པ": 1430,
- "བ": 1431,
- "མ": 1432,
- "འ": 1433,
- "ར": 1434,
- "ལ": 1435,
- "ས": 1436,
- "မ": 1437,
- "ა": 1438,
- "ბ": 1439,
- "გ": 1440,
- "დ": 1441,
- "ე": 1442,
- "ვ": 1443,
- "თ": 1444,
- "ი": 1445,
- "კ": 1446,
- "ლ": 1447,
- "მ": 1448,
- "ნ": 1449,
- "ო": 1450,
- "რ": 1451,
- "ს": 1452,
- "ტ": 1453,
- "უ": 1454,
- "ᄀ": 1455,
- "ᄂ": 1456,
- "ᄃ": 1457,
- "ᄅ": 1458,
- "ᄆ": 1459,
- "ᄇ": 1460,
- "ᄉ": 1461,
- "ᄊ": 1462,
- "ᄋ": 1463,
- "ᄌ": 1464,
- "ᄎ": 1465,
- "ᄏ": 1466,
- "ᄐ": 1467,
- "ᄑ": 1468,
- "ᄒ": 1469,
- "ᅡ": 1470,
- "ᅢ": 1471,
- "ᅥ": 1472,
- "ᅦ": 1473,
- "ᅧ": 1474,
- "ᅩ": 1475,
- "ᅪ": 1476,
- "ᅭ": 1477,
- "ᅮ": 1478,
- "ᅯ": 1479,
- "ᅲ": 1480,
- "ᅳ": 1481,
- "ᅴ": 1482,
- "ᅵ": 1483,
- "ᆨ": 1484,
- "ᆫ": 1485,
- "ᆯ": 1486,
- "ᆷ": 1487,
- "ᆸ": 1488,
- "ᆼ": 1489,
- "ᴬ": 1490,
- "ᴮ": 1491,
- "ᴰ": 1492,
- "ᴵ": 1493,
- "ᴺ": 1494,
- "ᵀ": 1495,
- "ᵃ": 1496,
- "ᵇ": 1497,
- "ᵈ": 1498,
- "ᵉ": 1499,
- "ᵍ": 1500,
- "ᵏ": 1501,
- "ᵐ": 1502,
- "ᵒ": 1503,
- "ᵖ": 1504,
- "ᵗ": 1505,
- "ᵘ": 1506,
- "ᵢ": 1507,
- "ᵣ": 1508,
- "ᵤ": 1509,
- "ᵥ": 1510,
- "ᶜ": 1511,
- "ᶠ": 1512,
- "‐": 1513,
- "‑": 1514,
- "‒": 1515,
- "–": 1516,
- "—": 1517,
- "―": 1518,
- "‖": 1519,
- "‘": 1520,
- "’": 1521,
- "‚": 1522,
- "“": 1523,
- "”": 1524,
- "„": 1525,
- "†": 1526,
- "‡": 1527,
- "•": 1528,
- "…": 1529,
- "‰": 1530,
- "′": 1531,
- "″": 1532,
- "›": 1533,
- "‿": 1534,
- "⁄": 1535,
- "⁰": 1536,
- "ⁱ": 1537,
- "⁴": 1538,
- "⁵": 1539,
- "⁶": 1540,
- "⁷": 1541,
- "⁸": 1542,
- "⁹": 1543,
- "⁺": 1544,
- "⁻": 1545,
- "ⁿ": 1546,
- "₀": 1547,
- "₁": 1548,
- "₂": 1549,
- "₃": 1550,
- "₄": 1551,
- "₅": 1552,
- "₆": 1553,
- "₇": 1554,
- "₈": 1555,
- "₉": 1556,
- "₊": 1557,
- "₍": 1558,
- "₎": 1559,
- "ₐ": 1560,
- "ₑ": 1561,
- "ₒ": 1562,
- "ₓ": 1563,
- "ₕ": 1564,
- "ₖ": 1565,
- "ₗ": 1566,
- "ₘ": 1567,
- "ₙ": 1568,
- "ₚ": 1569,
- "ₛ": 1570,
- "ₜ": 1571,
- "₤": 1572,
- "₩": 1573,
- "€": 1574,
- "₱": 1575,
- "₹": 1576,
- "ℓ": 1577,
- "№": 1578,
- "ℝ": 1579,
- "™": 1580,
- "⅓": 1581,
- "⅔": 1582,
- "←": 1583,
- "↑": 1584,
- "→": 1585,
- "↓": 1586,
- "↔": 1587,
- "↦": 1588,
- "⇄": 1589,
- "⇌": 1590,
- "⇒": 1591,
- "∂": 1592,
- "∅": 1593,
- "∆": 1594,
- "∇": 1595,
- "∈": 1596,
- "−": 1597,
- "∗": 1598,
- "∘": 1599,
- "√": 1600,
- "∞": 1601,
- "∧": 1602,
- "∨": 1603,
- "∩": 1604,
- "∪": 1605,
- "≈": 1606,
- "≡": 1607,
- "≤": 1608,
- "≥": 1609,
- "⊂": 1610,
- "⊆": 1611,
- "⊕": 1612,
- "⊗": 1613,
- "⋅": 1614,
- "─": 1615,
- "│": 1616,
- "■": 1617,
- "▪": 1618,
- "●": 1619,
- "★": 1620,
- "☆": 1621,
- "☉": 1622,
- "♠": 1623,
- "♣": 1624,
- "♥": 1625,
- "♦": 1626,
- "♭": 1627,
- "♯": 1628,
- "⟨": 1629,
- "⟩": 1630,
- "ⱼ": 1631,
- "⺩": 1632,
- "⺼": 1633,
- "⽥": 1634,
- "、": 1635,
- "。": 1636,
- "〈": 1637,
- "〉": 1638,
- "《": 1639,
- "》": 1640,
- "「": 1641,
- "」": 1642,
- "『": 1643,
- "』": 1644,
- "〜": 1645,
- "あ": 1646,
- "い": 1647,
- "う": 1648,
- "え": 1649,
- "お": 1650,
- "か": 1651,
- "き": 1652,
- "く": 1653,
- "け": 1654,
- "こ": 1655,
- "さ": 1656,
- "し": 1657,
- "す": 1658,
- "せ": 1659,
- "そ": 1660,
- "た": 1661,
- "ち": 1662,
- "っ": 1663,
- "つ": 1664,
- "て": 1665,
- "と": 1666,
- "な": 1667,
- "に": 1668,
- "ぬ": 1669,
- "ね": 1670,
- "の": 1671,
- "は": 1672,
- "ひ": 1673,
- "ふ": 1674,
- "へ": 1675,
- "ほ": 1676,
- "ま": 1677,
- "み": 1678,
- "む": 1679,
- "め": 1680,
- "も": 1681,
- "や": 1682,
- "ゆ": 1683,
- "よ": 1684,
- "ら": 1685,
- "り": 1686,
- "る": 1687,
- "れ": 1688,
- "ろ": 1689,
- "を": 1690,
- "ん": 1691,
- "ァ": 1692,
- "ア": 1693,
- "ィ": 1694,
- "イ": 1695,
- "ウ": 1696,
- "ェ": 1697,
- "エ": 1698,
- "オ": 1699,
- "カ": 1700,
- "キ": 1701,
- "ク": 1702,
- "ケ": 1703,
- "コ": 1704,
- "サ": 1705,
- "シ": 1706,
- "ス": 1707,
- "セ": 1708,
- "タ": 1709,
- "チ": 1710,
- "ッ": 1711,
- "ツ": 1712,
- "テ": 1713,
- "ト": 1714,
- "ナ": 1715,
- "ニ": 1716,
- "ノ": 1717,
- "ハ": 1718,
- "ヒ": 1719,
- "フ": 1720,
- "ヘ": 1721,
- "ホ": 1722,
- "マ": 1723,
- "ミ": 1724,
- "ム": 1725,
- "メ": 1726,
- "モ": 1727,
- "ャ": 1728,
- "ュ": 1729,
- "ョ": 1730,
- "ラ": 1731,
- "リ": 1732,
- "ル": 1733,
- "レ": 1734,
- "ロ": 1735,
- "ワ": 1736,
- "ン": 1737,
- "・": 1738,
- "ー": 1739,
- "一": 1740,
- "三": 1741,
- "上": 1742,
- "下": 1743,
- "不": 1744,
- "世": 1745,
- "中": 1746,
- "主": 1747,
- "久": 1748,
- "之": 1749,
- "也": 1750,
- "事": 1751,
- "二": 1752,
- "五": 1753,
- "井": 1754,
- "京": 1755,
- "人": 1756,
- "亻": 1757,
- "仁": 1758,
- "介": 1759,
- "代": 1760,
- "仮": 1761,
- "伊": 1762,
- "会": 1763,
- "佐": 1764,
- "侍": 1765,
- "保": 1766,
- "信": 1767,
- "健": 1768,
- "元": 1769,
- "光": 1770,
- "八": 1771,
- "公": 1772,
- "内": 1773,
- "出": 1774,
- "分": 1775,
- "前": 1776,
- "劉": 1777,
- "力": 1778,
- "加": 1779,
- "勝": 1780,
- "北": 1781,
- "区": 1782,
- "十": 1783,
- "千": 1784,
- "南": 1785,
- "博": 1786,
- "原": 1787,
- "口": 1788,
- "古": 1789,
- "史": 1790,
- "司": 1791,
- "合": 1792,
- "吉": 1793,
- "同": 1794,
- "名": 1795,
- "和": 1796,
- "囗": 1797,
- "四": 1798,
- "国": 1799,
- "國": 1800,
- "土": 1801,
- "地": 1802,
- "坂": 1803,
- "城": 1804,
- "堂": 1805,
- "場": 1806,
- "士": 1807,
- "夏": 1808,
- "外": 1809,
- "大": 1810,
- "天": 1811,
- "太": 1812,
- "夫": 1813,
- "奈": 1814,
- "女": 1815,
- "子": 1816,
- "学": 1817,
- "宀": 1818,
- "宇": 1819,
- "安": 1820,
- "宗": 1821,
- "定": 1822,
- "宣": 1823,
- "宮": 1824,
- "家": 1825,
- "宿": 1826,
- "寺": 1827,
- "將": 1828,
- "小": 1829,
- "尚": 1830,
- "山": 1831,
- "岡": 1832,
- "島": 1833,
- "崎": 1834,
- "川": 1835,
- "州": 1836,
- "巿": 1837,
- "帝": 1838,
- "平": 1839,
- "年": 1840,
- "幸": 1841,
- "广": 1842,
- "弘": 1843,
- "張": 1844,
- "彳": 1845,
- "後": 1846,
- "御": 1847,
- "德": 1848,
- "心": 1849,
- "忄": 1850,
- "志": 1851,
- "忠": 1852,
- "愛": 1853,
- "成": 1854,
- "我": 1855,
- "戦": 1856,
- "戸": 1857,
- "手": 1858,
- "扌": 1859,
- "政": 1860,
- "文": 1861,
- "新": 1862,
- "方": 1863,
- "日": 1864,
- "明": 1865,
- "星": 1866,
- "春": 1867,
- "昭": 1868,
- "智": 1869,
- "曲": 1870,
- "書": 1871,
- "月": 1872,
- "有": 1873,
- "朝": 1874,
- "木": 1875,
- "本": 1876,
- "李": 1877,
- "村": 1878,
- "東": 1879,
- "松": 1880,
- "林": 1881,
- "森": 1882,
- "楊": 1883,
- "樹": 1884,
- "橋": 1885,
- "歌": 1886,
- "止": 1887,
- "正": 1888,
- "武": 1889,
- "比": 1890,
- "氏": 1891,
- "民": 1892,
- "水": 1893,
- "氵": 1894,
- "氷": 1895,
- "永": 1896,
- "江": 1897,
- "沢": 1898,
- "河": 1899,
- "治": 1900,
- "法": 1901,
- "海": 1902,
- "清": 1903,
- "漢": 1904,
- "瀬": 1905,
- "火": 1906,
- "版": 1907,
- "犬": 1908,
- "王": 1909,
- "生": 1910,
- "田": 1911,
- "男": 1912,
- "疒": 1913,
- "発": 1914,
- "白": 1915,
- "的": 1916,
- "皇": 1917,
- "目": 1918,
- "相": 1919,
- "省": 1920,
- "真": 1921,
- "石": 1922,
- "示": 1923,
- "社": 1924,
- "神": 1925,
- "福": 1926,
- "禾": 1927,
- "秀": 1928,
- "秋": 1929,
- "空": 1930,
- "立": 1931,
- "章": 1932,
- "竹": 1933,
- "糹": 1934,
- "美": 1935,
- "義": 1936,
- "耳": 1937,
- "良": 1938,
- "艹": 1939,
- "花": 1940,
- "英": 1941,
- "華": 1942,
- "葉": 1943,
- "藤": 1944,
- "行": 1945,
- "街": 1946,
- "西": 1947,
- "見": 1948,
- "訁": 1949,
- "語": 1950,
- "谷": 1951,
- "貝": 1952,
- "貴": 1953,
- "車": 1954,
- "軍": 1955,
- "辶": 1956,
- "道": 1957,
- "郎": 1958,
- "郡": 1959,
- "部": 1960,
- "都": 1961,
- "里": 1962,
- "野": 1963,
- "金": 1964,
- "鈴": 1965,
- "镇": 1966,
- "長": 1967,
- "門": 1968,
- "間": 1969,
- "阝": 1970,
- "阿": 1971,
- "陳": 1972,
- "陽": 1973,
- "雄": 1974,
- "青": 1975,
- "面": 1976,
- "風": 1977,
- "食": 1978,
- "香": 1979,
- "馬": 1980,
- "高": 1981,
- "龍": 1982,
- "龸": 1983,
- "fi": 1984,
- "fl": 1985,
- "!": 1986,
- "(": 1987,
- ")": 1988,
- ",": 1989,
- "-": 1990,
- ".": 1991,
- "/": 1992,
- ":": 1993,
- "?": 1994,
- "~": 1995,
- "the": 1996,
- "of": 1997,
- "and": 1998,
- "in": 1999,
- "to": 2000,
- "was": 2001,
- "he": 2002,
- "is": 2003,
- "as": 2004,
- "for": 2005,
- "on": 2006,
- "with": 2007,
- "that": 2008,
- "it": 2009,
- "his": 2010,
- "by": 2011,
- "at": 2012,
- "from": 2013,
- "her": 2014,
- "##s": 2015,
- "she": 2016,
- "you": 2017,
- "had": 2018,
- "an": 2019,
- "were": 2020,
- "but": 2021,
- "be": 2022,
- "this": 2023,
- "are": 2024,
- "not": 2025,
- "my": 2026,
- "they": 2027,
- "one": 2028,
- "which": 2029,
- "or": 2030,
- "have": 2031,
- "him": 2032,
- "me": 2033,
- "first": 2034,
- "all": 2035,
- "also": 2036,
- "their": 2037,
- "has": 2038,
- "up": 2039,
- "who": 2040,
- "out": 2041,
- "been": 2042,
- "when": 2043,
- "after": 2044,
- "there": 2045,
- "into": 2046,
- "new": 2047,
- "two": 2048,
- "its": 2049,
- "##a": 2050,
- "time": 2051,
- "would": 2052,
- "no": 2053,
- "what": 2054,
- "about": 2055,
- "said": 2056,
- "we": 2057,
- "over": 2058,
- "then": 2059,
- "other": 2060,
- "so": 2061,
- "more": 2062,
- "##e": 2063,
- "can": 2064,
- "if": 2065,
- "like": 2066,
- "back": 2067,
- "them": 2068,
- "only": 2069,
- "some": 2070,
- "could": 2071,
- "##i": 2072,
- "where": 2073,
- "just": 2074,
- "##ing": 2075,
- "during": 2076,
- "before": 2077,
- "##n": 2078,
- "do": 2079,
- "##o": 2080,
- "made": 2081,
- "school": 2082,
- "through": 2083,
- "than": 2084,
- "now": 2085,
- "years": 2086,
- "most": 2087,
- "world": 2088,
- "may": 2089,
- "between": 2090,
- "down": 2091,
- "well": 2092,
- "three": 2093,
- "##d": 2094,
- "year": 2095,
- "while": 2096,
- "will": 2097,
- "##ed": 2098,
- "##r": 2099,
- "##y": 2100,
- "later": 2101,
- "##t": 2102,
- "city": 2103,
- "under": 2104,
- "around": 2105,
- "did": 2106,
- "such": 2107,
- "being": 2108,
- "used": 2109,
- "state": 2110,
- "people": 2111,
- "part": 2112,
- "know": 2113,
- "against": 2114,
- "your": 2115,
- "many": 2116,
- "second": 2117,
- "university": 2118,
- "both": 2119,
- "national": 2120,
- "##er": 2121,
- "these": 2122,
- "don": 2123,
- "known": 2124,
- "off": 2125,
- "way": 2126,
- "until": 2127,
- "re": 2128,
- "how": 2129,
- "even": 2130,
- "get": 2131,
- "head": 2132,
- "...": 2133,
- "didn": 2134,
- "##ly": 2135,
- "team": 2136,
- "american": 2137,
- "because": 2138,
- "de": 2139,
- "##l": 2140,
- "born": 2141,
- "united": 2142,
- "film": 2143,
- "since": 2144,
- "still": 2145,
- "long": 2146,
- "work": 2147,
- "south": 2148,
- "us": 2149,
- "became": 2150,
- "any": 2151,
- "high": 2152,
- "again": 2153,
- "day": 2154,
- "family": 2155,
- "see": 2156,
- "right": 2157,
- "man": 2158,
- "eyes": 2159,
- "house": 2160,
- "season": 2161,
- "war": 2162,
- "states": 2163,
- "including": 2164,
- "took": 2165,
- "life": 2166,
- "north": 2167,
- "same": 2168,
- "each": 2169,
- "called": 2170,
- "name": 2171,
- "much": 2172,
- "place": 2173,
- "however": 2174,
- "go": 2175,
- "four": 2176,
- "group": 2177,
- "another": 2178,
- "found": 2179,
- "won": 2180,
- "area": 2181,
- "here": 2182,
- "going": 2183,
- "10": 2184,
- "away": 2185,
- "series": 2186,
- "left": 2187,
- "home": 2188,
- "music": 2189,
- "best": 2190,
- "make": 2191,
- "hand": 2192,
- "number": 2193,
- "company": 2194,
- "several": 2195,
- "never": 2196,
- "last": 2197,
- "john": 2198,
- "000": 2199,
- "very": 2200,
- "album": 2201,
- "take": 2202,
- "end": 2203,
- "good": 2204,
- "too": 2205,
- "following": 2206,
- "released": 2207,
- "game": 2208,
- "played": 2209,
- "little": 2210,
- "began": 2211,
- "district": 2212,
- "##m": 2213,
- "old": 2214,
- "want": 2215,
- "those": 2216,
- "side": 2217,
- "held": 2218,
- "own": 2219,
- "early": 2220,
- "county": 2221,
- "ll": 2222,
- "league": 2223,
- "use": 2224,
- "west": 2225,
- "##u": 2226,
- "face": 2227,
- "think": 2228,
- "##es": 2229,
- "2010": 2230,
- "government": 2231,
- "##h": 2232,
- "march": 2233,
- "came": 2234,
- "small": 2235,
- "general": 2236,
- "town": 2237,
- "june": 2238,
- "##on": 2239,
- "line": 2240,
- "based": 2241,
- "something": 2242,
- "##k": 2243,
- "september": 2244,
- "thought": 2245,
- "looked": 2246,
- "along": 2247,
- "international": 2248,
- "2011": 2249,
- "air": 2250,
- "july": 2251,
- "club": 2252,
- "went": 2253,
- "january": 2254,
- "october": 2255,
- "our": 2256,
- "august": 2257,
- "april": 2258,
- "york": 2259,
- "12": 2260,
- "few": 2261,
- "2012": 2262,
- "2008": 2263,
- "east": 2264,
- "show": 2265,
- "member": 2266,
- "college": 2267,
- "2009": 2268,
- "father": 2269,
- "public": 2270,
- "##us": 2271,
- "come": 2272,
- "men": 2273,
- "five": 2274,
- "set": 2275,
- "station": 2276,
- "church": 2277,
- "##c": 2278,
- "next": 2279,
- "former": 2280,
- "november": 2281,
- "room": 2282,
- "party": 2283,
- "located": 2284,
- "december": 2285,
- "2013": 2286,
- "age": 2287,
- "got": 2288,
- "2007": 2289,
- "##g": 2290,
- "system": 2291,
- "let": 2292,
- "love": 2293,
- "2006": 2294,
- "though": 2295,
- "every": 2296,
- "2014": 2297,
- "look": 2298,
- "song": 2299,
- "water": 2300,
- "century": 2301,
- "without": 2302,
- "body": 2303,
- "black": 2304,
- "night": 2305,
- "within": 2306,
- "great": 2307,
- "women": 2308,
- "single": 2309,
- "ve": 2310,
- "building": 2311,
- "large": 2312,
- "population": 2313,
- "river": 2314,
- "named": 2315,
- "band": 2316,
- "white": 2317,
- "started": 2318,
- "##an": 2319,
- "once": 2320,
- "15": 2321,
- "20": 2322,
- "should": 2323,
- "18": 2324,
- "2015": 2325,
- "service": 2326,
- "top": 2327,
- "built": 2328,
- "british": 2329,
- "open": 2330,
- "death": 2331,
- "king": 2332,
- "moved": 2333,
- "local": 2334,
- "times": 2335,
- "children": 2336,
- "february": 2337,
- "book": 2338,
- "why": 2339,
- "11": 2340,
- "door": 2341,
- "need": 2342,
- "president": 2343,
- "order": 2344,
- "final": 2345,
- "road": 2346,
- "wasn": 2347,
- "although": 2348,
- "due": 2349,
- "major": 2350,
- "died": 2351,
- "village": 2352,
- "third": 2353,
- "knew": 2354,
- "2016": 2355,
- "asked": 2356,
- "turned": 2357,
- "st": 2358,
- "wanted": 2359,
- "say": 2360,
- "##p": 2361,
- "together": 2362,
- "received": 2363,
- "main": 2364,
- "son": 2365,
- "served": 2366,
- "different": 2367,
- "##en": 2368,
- "behind": 2369,
- "himself": 2370,
- "felt": 2371,
- "members": 2372,
- "power": 2373,
- "football": 2374,
- "law": 2375,
- "voice": 2376,
- "play": 2377,
- "##in": 2378,
- "near": 2379,
- "park": 2380,
- "history": 2381,
- "30": 2382,
- "having": 2383,
- "2005": 2384,
- "16": 2385,
- "##man": 2386,
- "saw": 2387,
- "mother": 2388,
- "##al": 2389,
- "army": 2390,
- "point": 2391,
- "front": 2392,
- "help": 2393,
- "english": 2394,
- "street": 2395,
- "art": 2396,
- "late": 2397,
- "hands": 2398,
- "games": 2399,
- "award": 2400,
- "##ia": 2401,
- "young": 2402,
- "14": 2403,
- "put": 2404,
- "published": 2405,
- "country": 2406,
- "division": 2407,
- "across": 2408,
- "told": 2409,
- "13": 2410,
- "often": 2411,
- "ever": 2412,
- "french": 2413,
- "london": 2414,
- "center": 2415,
- "six": 2416,
- "red": 2417,
- "2017": 2418,
- "led": 2419,
- "days": 2420,
- "include": 2421,
- "light": 2422,
- "25": 2423,
- "find": 2424,
- "tell": 2425,
- "among": 2426,
- "species": 2427,
- "really": 2428,
- "according": 2429,
- "central": 2430,
- "half": 2431,
- "2004": 2432,
- "form": 2433,
- "original": 2434,
- "gave": 2435,
- "office": 2436,
- "making": 2437,
- "enough": 2438,
- "lost": 2439,
- "full": 2440,
- "opened": 2441,
- "must": 2442,
- "included": 2443,
- "live": 2444,
- "given": 2445,
- "german": 2446,
- "player": 2447,
- "run": 2448,
- "business": 2449,
- "woman": 2450,
- "community": 2451,
- "cup": 2452,
- "might": 2453,
- "million": 2454,
- "land": 2455,
- "2000": 2456,
- "court": 2457,
- "development": 2458,
- "17": 2459,
- "short": 2460,
- "round": 2461,
- "ii": 2462,
- "km": 2463,
- "seen": 2464,
- "class": 2465,
- "story": 2466,
- "always": 2467,
- "become": 2468,
- "sure": 2469,
- "research": 2470,
- "almost": 2471,
- "director": 2472,
- "council": 2473,
- "la": 2474,
- "##2": 2475,
- "career": 2476,
- "things": 2477,
- "using": 2478,
- "island": 2479,
- "##z": 2480,
- "couldn": 2481,
- "car": 2482,
- "##is": 2483,
- "24": 2484,
- "close": 2485,
- "force": 2486,
- "##1": 2487,
- "better": 2488,
- "free": 2489,
- "support": 2490,
- "control": 2491,
- "field": 2492,
- "students": 2493,
- "2003": 2494,
- "education": 2495,
- "married": 2496,
- "##b": 2497,
- "nothing": 2498,
- "worked": 2499,
- "others": 2500,
- "record": 2501,
- "big": 2502,
- "inside": 2503,
- "level": 2504,
- "anything": 2505,
- "continued": 2506,
- "give": 2507,
- "james": 2508,
- "##3": 2509,
- "military": 2510,
- "established": 2511,
- "non": 2512,
- "returned": 2513,
- "feel": 2514,
- "does": 2515,
- "title": 2516,
- "written": 2517,
- "thing": 2518,
- "feet": 2519,
- "william": 2520,
- "far": 2521,
- "co": 2522,
- "association": 2523,
- "hard": 2524,
- "already": 2525,
- "2002": 2526,
- "##ra": 2527,
- "championship": 2528,
- "human": 2529,
- "western": 2530,
- "100": 2531,
- "##na": 2532,
- "department": 2533,
- "hall": 2534,
- "role": 2535,
- "various": 2536,
- "production": 2537,
- "21": 2538,
- "19": 2539,
- "heart": 2540,
- "2001": 2541,
- "living": 2542,
- "fire": 2543,
- "version": 2544,
- "##ers": 2545,
- "##f": 2546,
- "television": 2547,
- "royal": 2548,
- "##4": 2549,
- "produced": 2550,
- "working": 2551,
- "act": 2552,
- "case": 2553,
- "society": 2554,
- "region": 2555,
- "present": 2556,
- "radio": 2557,
- "period": 2558,
- "looking": 2559,
- "least": 2560,
- "total": 2561,
- "keep": 2562,
- "england": 2563,
- "wife": 2564,
- "program": 2565,
- "per": 2566,
- "brother": 2567,
- "mind": 2568,
- "special": 2569,
- "22": 2570,
- "##le": 2571,
- "am": 2572,
- "works": 2573,
- "soon": 2574,
- "##6": 2575,
- "political": 2576,
- "george": 2577,
- "services": 2578,
- "taken": 2579,
- "created": 2580,
- "##7": 2581,
- "further": 2582,
- "able": 2583,
- "reached": 2584,
- "david": 2585,
- "union": 2586,
- "joined": 2587,
- "upon": 2588,
- "done": 2589,
- "important": 2590,
- "social": 2591,
- "information": 2592,
- "either": 2593,
- "##ic": 2594,
- "##x": 2595,
- "appeared": 2596,
- "position": 2597,
- "ground": 2598,
- "lead": 2599,
- "rock": 2600,
- "dark": 2601,
- "election": 2602,
- "23": 2603,
- "board": 2604,
- "france": 2605,
- "hair": 2606,
- "course": 2607,
- "arms": 2608,
- "site": 2609,
- "police": 2610,
- "girl": 2611,
- "instead": 2612,
- "real": 2613,
- "sound": 2614,
- "##v": 2615,
- "words": 2616,
- "moment": 2617,
- "##te": 2618,
- "someone": 2619,
- "##8": 2620,
- "summer": 2621,
- "project": 2622,
- "announced": 2623,
- "san": 2624,
- "less": 2625,
- "wrote": 2626,
- "past": 2627,
- "followed": 2628,
- "##5": 2629,
- "blue": 2630,
- "founded": 2631,
- "al": 2632,
- "finally": 2633,
- "india": 2634,
- "taking": 2635,
- "records": 2636,
- "america": 2637,
- "##ne": 2638,
- "1999": 2639,
- "design": 2640,
- "considered": 2641,
- "northern": 2642,
- "god": 2643,
- "stop": 2644,
- "battle": 2645,
- "toward": 2646,
- "european": 2647,
- "outside": 2648,
- "described": 2649,
- "track": 2650,
- "today": 2651,
- "playing": 2652,
- "language": 2653,
- "28": 2654,
- "call": 2655,
- "26": 2656,
- "heard": 2657,
- "professional": 2658,
- "low": 2659,
- "australia": 2660,
- "miles": 2661,
- "california": 2662,
- "win": 2663,
- "yet": 2664,
- "green": 2665,
- "##ie": 2666,
- "trying": 2667,
- "blood": 2668,
- "##ton": 2669,
- "southern": 2670,
- "science": 2671,
- "maybe": 2672,
- "everything": 2673,
- "match": 2674,
- "square": 2675,
- "27": 2676,
- "mouth": 2677,
- "video": 2678,
- "race": 2679,
- "recorded": 2680,
- "leave": 2681,
- "above": 2682,
- "##9": 2683,
- "daughter": 2684,
- "points": 2685,
- "space": 2686,
- "1998": 2687,
- "museum": 2688,
- "change": 2689,
- "middle": 2690,
- "common": 2691,
- "##0": 2692,
- "move": 2693,
- "tv": 2694,
- "post": 2695,
- "##ta": 2696,
- "lake": 2697,
- "seven": 2698,
- "tried": 2699,
- "elected": 2700,
- "closed": 2701,
- "ten": 2702,
- "paul": 2703,
- "minister": 2704,
- "##th": 2705,
- "months": 2706,
- "start": 2707,
- "chief": 2708,
- "return": 2709,
- "canada": 2710,
- "person": 2711,
- "sea": 2712,
- "release": 2713,
- "similar": 2714,
- "modern": 2715,
- "brought": 2716,
- "rest": 2717,
- "hit": 2718,
- "formed": 2719,
- "mr": 2720,
- "##la": 2721,
- "1997": 2722,
- "floor": 2723,
- "event": 2724,
- "doing": 2725,
- "thomas": 2726,
- "1996": 2727,
- "robert": 2728,
- "care": 2729,
- "killed": 2730,
- "training": 2731,
- "star": 2732,
- "week": 2733,
- "needed": 2734,
- "turn": 2735,
- "finished": 2736,
- "railway": 2737,
- "rather": 2738,
- "news": 2739,
- "health": 2740,
- "sent": 2741,
- "example": 2742,
- "ran": 2743,
- "term": 2744,
- "michael": 2745,
- "coming": 2746,
- "currently": 2747,
- "yes": 2748,
- "forces": 2749,
- "despite": 2750,
- "gold": 2751,
- "areas": 2752,
- "50": 2753,
- "stage": 2754,
- "fact": 2755,
- "29": 2756,
- "dead": 2757,
- "says": 2758,
- "popular": 2759,
- "2018": 2760,
- "originally": 2761,
- "germany": 2762,
- "probably": 2763,
- "developed": 2764,
- "result": 2765,
- "pulled": 2766,
- "friend": 2767,
- "stood": 2768,
- "money": 2769,
- "running": 2770,
- "mi": 2771,
- "signed": 2772,
- "word": 2773,
- "songs": 2774,
- "child": 2775,
- "eventually": 2776,
- "met": 2777,
- "tour": 2778,
- "average": 2779,
- "teams": 2780,
- "minutes": 2781,
- "festival": 2782,
- "current": 2783,
- "deep": 2784,
- "kind": 2785,
- "1995": 2786,
- "decided": 2787,
- "usually": 2788,
- "eastern": 2789,
- "seemed": 2790,
- "##ness": 2791,
- "episode": 2792,
- "bed": 2793,
- "added": 2794,
- "table": 2795,
- "indian": 2796,
- "private": 2797,
- "charles": 2798,
- "route": 2799,
- "available": 2800,
- "idea": 2801,
- "throughout": 2802,
- "centre": 2803,
- "addition": 2804,
- "appointed": 2805,
- "style": 2806,
- "1994": 2807,
- "books": 2808,
- "eight": 2809,
- "construction": 2810,
- "press": 2811,
- "mean": 2812,
- "wall": 2813,
- "friends": 2814,
- "remained": 2815,
- "schools": 2816,
- "study": 2817,
- "##ch": 2818,
- "##um": 2819,
- "institute": 2820,
- "oh": 2821,
- "chinese": 2822,
- "sometimes": 2823,
- "events": 2824,
- "possible": 2825,
- "1992": 2826,
- "australian": 2827,
- "type": 2828,
- "brown": 2829,
- "forward": 2830,
- "talk": 2831,
- "process": 2832,
- "food": 2833,
- "debut": 2834,
- "seat": 2835,
- "performance": 2836,
- "committee": 2837,
- "features": 2838,
- "character": 2839,
- "arts": 2840,
- "herself": 2841,
- "else": 2842,
- "lot": 2843,
- "strong": 2844,
- "russian": 2845,
- "range": 2846,
- "hours": 2847,
- "peter": 2848,
- "arm": 2849,
- "##da": 2850,
- "morning": 2851,
- "dr": 2852,
- "sold": 2853,
- "##ry": 2854,
- "quickly": 2855,
- "directed": 2856,
- "1993": 2857,
- "guitar": 2858,
- "china": 2859,
- "##w": 2860,
- "31": 2861,
- "list": 2862,
- "##ma": 2863,
- "performed": 2864,
- "media": 2865,
- "uk": 2866,
- "players": 2867,
- "smile": 2868,
- "##rs": 2869,
- "myself": 2870,
- "40": 2871,
- "placed": 2872,
- "coach": 2873,
- "province": 2874,
- "towards": 2875,
- "wouldn": 2876,
- "leading": 2877,
- "whole": 2878,
- "boy": 2879,
- "official": 2880,
- "designed": 2881,
- "grand": 2882,
- "census": 2883,
- "##el": 2884,
- "europe": 2885,
- "attack": 2886,
- "japanese": 2887,
- "henry": 2888,
- "1991": 2889,
- "##re": 2890,
- "##os": 2891,
- "cross": 2892,
- "getting": 2893,
- "alone": 2894,
- "action": 2895,
- "lower": 2896,
- "network": 2897,
- "wide": 2898,
- "washington": 2899,
- "japan": 2900,
- "1990": 2901,
- "hospital": 2902,
- "believe": 2903,
- "changed": 2904,
- "sister": 2905,
- "##ar": 2906,
- "hold": 2907,
- "gone": 2908,
- "sir": 2909,
- "hadn": 2910,
- "ship": 2911,
- "##ka": 2912,
- "studies": 2913,
- "academy": 2914,
- "shot": 2915,
- "rights": 2916,
- "below": 2917,
- "base": 2918,
- "bad": 2919,
- "involved": 2920,
- "kept": 2921,
- "largest": 2922,
- "##ist": 2923,
- "bank": 2924,
- "future": 2925,
- "especially": 2926,
- "beginning": 2927,
- "mark": 2928,
- "movement": 2929,
- "section": 2930,
- "female": 2931,
- "magazine": 2932,
- "plan": 2933,
- "professor": 2934,
- "lord": 2935,
- "longer": 2936,
- "##ian": 2937,
- "sat": 2938,
- "walked": 2939,
- "hill": 2940,
- "actually": 2941,
- "civil": 2942,
- "energy": 2943,
- "model": 2944,
- "families": 2945,
- "size": 2946,
- "thus": 2947,
- "aircraft": 2948,
- "completed": 2949,
- "includes": 2950,
- "data": 2951,
- "captain": 2952,
- "##or": 2953,
- "fight": 2954,
- "vocals": 2955,
- "featured": 2956,
- "richard": 2957,
- "bridge": 2958,
- "fourth": 2959,
- "1989": 2960,
- "officer": 2961,
- "stone": 2962,
- "hear": 2963,
- "##ism": 2964,
- "means": 2965,
- "medical": 2966,
- "groups": 2967,
- "management": 2968,
- "self": 2969,
- "lips": 2970,
- "competition": 2971,
- "entire": 2972,
- "lived": 2973,
- "technology": 2974,
- "leaving": 2975,
- "federal": 2976,
- "tournament": 2977,
- "bit": 2978,
- "passed": 2979,
- "hot": 2980,
- "independent": 2981,
- "awards": 2982,
- "kingdom": 2983,
- "mary": 2984,
- "spent": 2985,
- "fine": 2986,
- "doesn": 2987,
- "reported": 2988,
- "##ling": 2989,
- "jack": 2990,
- "fall": 2991,
- "raised": 2992,
- "itself": 2993,
- "stay": 2994,
- "true": 2995,
- "studio": 2996,
- "1988": 2997,
- "sports": 2998,
- "replaced": 2999,
- "paris": 3000,
- "systems": 3001,
- "saint": 3002,
- "leader": 3003,
- "theatre": 3004,
- "whose": 3005,
- "market": 3006,
- "capital": 3007,
- "parents": 3008,
- "spanish": 3009,
- "canadian": 3010,
- "earth": 3011,
- "##ity": 3012,
- "cut": 3013,
- "degree": 3014,
- "writing": 3015,
- "bay": 3016,
- "christian": 3017,
- "awarded": 3018,
- "natural": 3019,
- "higher": 3020,
- "bill": 3021,
- "##as": 3022,
- "coast": 3023,
- "provided": 3024,
- "previous": 3025,
- "senior": 3026,
- "ft": 3027,
- "valley": 3028,
- "organization": 3029,
- "stopped": 3030,
- "onto": 3031,
- "countries": 3032,
- "parts": 3033,
- "conference": 3034,
- "queen": 3035,
- "security": 3036,
- "interest": 3037,
- "saying": 3038,
- "allowed": 3039,
- "master": 3040,
- "earlier": 3041,
- "phone": 3042,
- "matter": 3043,
- "smith": 3044,
- "winning": 3045,
- "try": 3046,
- "happened": 3047,
- "moving": 3048,
- "campaign": 3049,
- "los": 3050,
- "##ley": 3051,
- "breath": 3052,
- "nearly": 3053,
- "mid": 3054,
- "1987": 3055,
- "certain": 3056,
- "girls": 3057,
- "date": 3058,
- "italian": 3059,
- "african": 3060,
- "standing": 3061,
- "fell": 3062,
- "artist": 3063,
- "##ted": 3064,
- "shows": 3065,
- "deal": 3066,
- "mine": 3067,
- "industry": 3068,
- "1986": 3069,
- "##ng": 3070,
- "everyone": 3071,
- "republic": 3072,
- "provide": 3073,
- "collection": 3074,
- "library": 3075,
- "student": 3076,
- "##ville": 3077,
- "primary": 3078,
- "owned": 3079,
- "older": 3080,
- "via": 3081,
- "heavy": 3082,
- "1st": 3083,
- "makes": 3084,
- "##able": 3085,
- "attention": 3086,
- "anyone": 3087,
- "africa": 3088,
- "##ri": 3089,
- "stated": 3090,
- "length": 3091,
- "ended": 3092,
- "fingers": 3093,
- "command": 3094,
- "staff": 3095,
- "skin": 3096,
- "foreign": 3097,
- "opening": 3098,
- "governor": 3099,
- "okay": 3100,
- "medal": 3101,
- "kill": 3102,
- "sun": 3103,
- "cover": 3104,
- "job": 3105,
- "1985": 3106,
- "introduced": 3107,
- "chest": 3108,
- "hell": 3109,
- "feeling": 3110,
- "##ies": 3111,
- "success": 3112,
- "meet": 3113,
- "reason": 3114,
- "standard": 3115,
- "meeting": 3116,
- "novel": 3117,
- "1984": 3118,
- "trade": 3119,
- "source": 3120,
- "buildings": 3121,
- "##land": 3122,
- "rose": 3123,
- "guy": 3124,
- "goal": 3125,
- "##ur": 3126,
- "chapter": 3127,
- "native": 3128,
- "husband": 3129,
- "previously": 3130,
- "unit": 3131,
- "limited": 3132,
- "entered": 3133,
- "weeks": 3134,
- "producer": 3135,
- "operations": 3136,
- "mountain": 3137,
- "takes": 3138,
- "covered": 3139,
- "forced": 3140,
- "related": 3141,
- "roman": 3142,
- "complete": 3143,
- "successful": 3144,
- "key": 3145,
- "texas": 3146,
- "cold": 3147,
- "##ya": 3148,
- "channel": 3149,
- "1980": 3150,
- "traditional": 3151,
- "films": 3152,
- "dance": 3153,
- "clear": 3154,
- "approximately": 3155,
- "500": 3156,
- "nine": 3157,
- "van": 3158,
- "prince": 3159,
- "question": 3160,
- "active": 3161,
- "tracks": 3162,
- "ireland": 3163,
- "regional": 3164,
- "silver": 3165,
- "author": 3166,
- "personal": 3167,
- "sense": 3168,
- "operation": 3169,
- "##ine": 3170,
- "economic": 3171,
- "1983": 3172,
- "holding": 3173,
- "twenty": 3174,
- "isbn": 3175,
- "additional": 3176,
- "speed": 3177,
- "hour": 3178,
- "edition": 3179,
- "regular": 3180,
- "historic": 3181,
- "places": 3182,
- "whom": 3183,
- "shook": 3184,
- "movie": 3185,
- "km²": 3186,
- "secretary": 3187,
- "prior": 3188,
- "report": 3189,
- "chicago": 3190,
- "read": 3191,
- "foundation": 3192,
- "view": 3193,
- "engine": 3194,
- "scored": 3195,
- "1982": 3196,
- "units": 3197,
- "ask": 3198,
- "airport": 3199,
- "property": 3200,
- "ready": 3201,
- "immediately": 3202,
- "lady": 3203,
- "month": 3204,
- "listed": 3205,
- "contract": 3206,
- "##de": 3207,
- "manager": 3208,
- "themselves": 3209,
- "lines": 3210,
- "##ki": 3211,
- "navy": 3212,
- "writer": 3213,
- "meant": 3214,
- "##ts": 3215,
- "runs": 3216,
- "##ro": 3217,
- "practice": 3218,
- "championships": 3219,
- "singer": 3220,
- "glass": 3221,
- "commission": 3222,
- "required": 3223,
- "forest": 3224,
- "starting": 3225,
- "culture": 3226,
- "generally": 3227,
- "giving": 3228,
- "access": 3229,
- "attended": 3230,
- "test": 3231,
- "couple": 3232,
- "stand": 3233,
- "catholic": 3234,
- "martin": 3235,
- "caught": 3236,
- "executive": 3237,
- "##less": 3238,
- "eye": 3239,
- "##ey": 3240,
- "thinking": 3241,
- "chair": 3242,
- "quite": 3243,
- "shoulder": 3244,
- "1979": 3245,
- "hope": 3246,
- "decision": 3247,
- "plays": 3248,
- "defeated": 3249,
- "municipality": 3250,
- "whether": 3251,
- "structure": 3252,
- "offered": 3253,
- "slowly": 3254,
- "pain": 3255,
- "ice": 3256,
- "direction": 3257,
- "##ion": 3258,
- "paper": 3259,
- "mission": 3260,
- "1981": 3261,
- "mostly": 3262,
- "200": 3263,
- "noted": 3264,
- "individual": 3265,
- "managed": 3266,
- "nature": 3267,
- "lives": 3268,
- "plant": 3269,
- "##ha": 3270,
- "helped": 3271,
- "except": 3272,
- "studied": 3273,
- "computer": 3274,
- "figure": 3275,
- "relationship": 3276,
- "issue": 3277,
- "significant": 3278,
- "loss": 3279,
- "die": 3280,
- "smiled": 3281,
- "gun": 3282,
- "ago": 3283,
- "highest": 3284,
- "1972": 3285,
- "##am": 3286,
- "male": 3287,
- "bring": 3288,
- "goals": 3289,
- "mexico": 3290,
- "problem": 3291,
- "distance": 3292,
- "commercial": 3293,
- "completely": 3294,
- "location": 3295,
- "annual": 3296,
- "famous": 3297,
- "drive": 3298,
- "1976": 3299,
- "neck": 3300,
- "1978": 3301,
- "surface": 3302,
- "caused": 3303,
- "italy": 3304,
- "understand": 3305,
- "greek": 3306,
- "highway": 3307,
- "wrong": 3308,
- "hotel": 3309,
- "comes": 3310,
- "appearance": 3311,
- "joseph": 3312,
- "double": 3313,
- "issues": 3314,
- "musical": 3315,
- "companies": 3316,
- "castle": 3317,
- "income": 3318,
- "review": 3319,
- "assembly": 3320,
- "bass": 3321,
- "initially": 3322,
- "parliament": 3323,
- "artists": 3324,
- "experience": 3325,
- "1974": 3326,
- "particular": 3327,
- "walk": 3328,
- "foot": 3329,
- "engineering": 3330,
- "talking": 3331,
- "window": 3332,
- "dropped": 3333,
- "##ter": 3334,
- "miss": 3335,
- "baby": 3336,
- "boys": 3337,
- "break": 3338,
- "1975": 3339,
- "stars": 3340,
- "edge": 3341,
- "remember": 3342,
- "policy": 3343,
- "carried": 3344,
- "train": 3345,
- "stadium": 3346,
- "bar": 3347,
- "sex": 3348,
- "angeles": 3349,
- "evidence": 3350,
- "##ge": 3351,
- "becoming": 3352,
- "assistant": 3353,
- "soviet": 3354,
- "1977": 3355,
- "upper": 3356,
- "step": 3357,
- "wing": 3358,
- "1970": 3359,
- "youth": 3360,
- "financial": 3361,
- "reach": 3362,
- "##ll": 3363,
- "actor": 3364,
- "numerous": 3365,
- "##se": 3366,
- "##st": 3367,
- "nodded": 3368,
- "arrived": 3369,
- "##ation": 3370,
- "minute": 3371,
- "##nt": 3372,
- "believed": 3373,
- "sorry": 3374,
- "complex": 3375,
- "beautiful": 3376,
- "victory": 3377,
- "associated": 3378,
- "temple": 3379,
- "1968": 3380,
- "1973": 3381,
- "chance": 3382,
- "perhaps": 3383,
- "metal": 3384,
- "##son": 3385,
- "1945": 3386,
- "bishop": 3387,
- "##et": 3388,
- "lee": 3389,
- "launched": 3390,
- "particularly": 3391,
- "tree": 3392,
- "le": 3393,
- "retired": 3394,
- "subject": 3395,
- "prize": 3396,
- "contains": 3397,
- "yeah": 3398,
- "theory": 3399,
- "empire": 3400,
- "##ce": 3401,
- "suddenly": 3402,
- "waiting": 3403,
- "trust": 3404,
- "recording": 3405,
- "##to": 3406,
- "happy": 3407,
- "terms": 3408,
- "camp": 3409,
- "champion": 3410,
- "1971": 3411,
- "religious": 3412,
- "pass": 3413,
- "zealand": 3414,
- "names": 3415,
- "2nd": 3416,
- "port": 3417,
- "ancient": 3418,
- "tom": 3419,
- "corner": 3420,
- "represented": 3421,
- "watch": 3422,
- "legal": 3423,
- "anti": 3424,
- "justice": 3425,
- "cause": 3426,
- "watched": 3427,
- "brothers": 3428,
- "45": 3429,
- "material": 3430,
- "changes": 3431,
- "simply": 3432,
- "response": 3433,
- "louis": 3434,
- "fast": 3435,
- "##ting": 3436,
- "answer": 3437,
- "60": 3438,
- "historical": 3439,
- "1969": 3440,
- "stories": 3441,
- "straight": 3442,
- "create": 3443,
- "feature": 3444,
- "increased": 3445,
- "rate": 3446,
- "administration": 3447,
- "virginia": 3448,
- "el": 3449,
- "activities": 3450,
- "cultural": 3451,
- "overall": 3452,
- "winner": 3453,
- "programs": 3454,
- "basketball": 3455,
- "legs": 3456,
- "guard": 3457,
- "beyond": 3458,
- "cast": 3459,
- "doctor": 3460,
- "mm": 3461,
- "flight": 3462,
- "results": 3463,
- "remains": 3464,
- "cost": 3465,
- "effect": 3466,
- "winter": 3467,
- "##ble": 3468,
- "larger": 3469,
- "islands": 3470,
- "problems": 3471,
- "chairman": 3472,
- "grew": 3473,
- "commander": 3474,
- "isn": 3475,
- "1967": 3476,
- "pay": 3477,
- "failed": 3478,
- "selected": 3479,
- "hurt": 3480,
- "fort": 3481,
- "box": 3482,
- "regiment": 3483,
- "majority": 3484,
- "journal": 3485,
- "35": 3486,
- "edward": 3487,
- "plans": 3488,
- "##ke": 3489,
- "##ni": 3490,
- "shown": 3491,
- "pretty": 3492,
- "irish": 3493,
- "characters": 3494,
- "directly": 3495,
- "scene": 3496,
- "likely": 3497,
- "operated": 3498,
- "allow": 3499,
- "spring": 3500,
- "##j": 3501,
- "junior": 3502,
- "matches": 3503,
- "looks": 3504,
- "mike": 3505,
- "houses": 3506,
- "fellow": 3507,
- "##tion": 3508,
- "beach": 3509,
- "marriage": 3510,
- "##ham": 3511,
- "##ive": 3512,
- "rules": 3513,
- "oil": 3514,
- "65": 3515,
- "florida": 3516,
- "expected": 3517,
- "nearby": 3518,
- "congress": 3519,
- "sam": 3520,
- "peace": 3521,
- "recent": 3522,
- "iii": 3523,
- "wait": 3524,
- "subsequently": 3525,
- "cell": 3526,
- "##do": 3527,
- "variety": 3528,
- "serving": 3529,
- "agreed": 3530,
- "please": 3531,
- "poor": 3532,
- "joe": 3533,
- "pacific": 3534,
- "attempt": 3535,
- "wood": 3536,
- "democratic": 3537,
- "piece": 3538,
- "prime": 3539,
- "##ca": 3540,
- "rural": 3541,
- "mile": 3542,
- "touch": 3543,
- "appears": 3544,
- "township": 3545,
- "1964": 3546,
- "1966": 3547,
- "soldiers": 3548,
- "##men": 3549,
- "##ized": 3550,
- "1965": 3551,
- "pennsylvania": 3552,
- "closer": 3553,
- "fighting": 3554,
- "claimed": 3555,
- "score": 3556,
- "jones": 3557,
- "physical": 3558,
- "editor": 3559,
- "##ous": 3560,
- "filled": 3561,
- "genus": 3562,
- "specific": 3563,
- "sitting": 3564,
- "super": 3565,
- "mom": 3566,
- "##va": 3567,
- "therefore": 3568,
- "supported": 3569,
- "status": 3570,
- "fear": 3571,
- "cases": 3572,
- "store": 3573,
- "meaning": 3574,
- "wales": 3575,
- "minor": 3576,
- "spain": 3577,
- "tower": 3578,
- "focus": 3579,
- "vice": 3580,
- "frank": 3581,
- "follow": 3582,
- "parish": 3583,
- "separate": 3584,
- "golden": 3585,
- "horse": 3586,
- "fifth": 3587,
- "remaining": 3588,
- "branch": 3589,
- "32": 3590,
- "presented": 3591,
- "stared": 3592,
- "##id": 3593,
- "uses": 3594,
- "secret": 3595,
- "forms": 3596,
- "##co": 3597,
- "baseball": 3598,
- "exactly": 3599,
- "##ck": 3600,
- "choice": 3601,
- "note": 3602,
- "discovered": 3603,
- "travel": 3604,
- "composed": 3605,
- "truth": 3606,
- "russia": 3607,
- "ball": 3608,
- "color": 3609,
- "kiss": 3610,
- "dad": 3611,
- "wind": 3612,
- "continue": 3613,
- "ring": 3614,
- "referred": 3615,
- "numbers": 3616,
- "digital": 3617,
- "greater": 3618,
- "##ns": 3619,
- "metres": 3620,
- "slightly": 3621,
- "direct": 3622,
- "increase": 3623,
- "1960": 3624,
- "responsible": 3625,
- "crew": 3626,
- "rule": 3627,
- "trees": 3628,
- "troops": 3629,
- "##no": 3630,
- "broke": 3631,
- "goes": 3632,
- "individuals": 3633,
- "hundred": 3634,
- "weight": 3635,
- "creek": 3636,
- "sleep": 3637,
- "memory": 3638,
- "defense": 3639,
- "provides": 3640,
- "ordered": 3641,
- "code": 3642,
- "value": 3643,
- "jewish": 3644,
- "windows": 3645,
- "1944": 3646,
- "safe": 3647,
- "judge": 3648,
- "whatever": 3649,
- "corps": 3650,
- "realized": 3651,
- "growing": 3652,
- "pre": 3653,
- "##ga": 3654,
- "cities": 3655,
- "alexander": 3656,
- "gaze": 3657,
- "lies": 3658,
- "spread": 3659,
- "scott": 3660,
- "letter": 3661,
- "showed": 3662,
- "situation": 3663,
- "mayor": 3664,
- "transport": 3665,
- "watching": 3666,
- "workers": 3667,
- "extended": 3668,
- "##li": 3669,
- "expression": 3670,
- "normal": 3671,
- "##ment": 3672,
- "chart": 3673,
- "multiple": 3674,
- "border": 3675,
- "##ba": 3676,
- "host": 3677,
- "##ner": 3678,
- "daily": 3679,
- "mrs": 3680,
- "walls": 3681,
- "piano": 3682,
- "##ko": 3683,
- "heat": 3684,
- "cannot": 3685,
- "##ate": 3686,
- "earned": 3687,
- "products": 3688,
- "drama": 3689,
- "era": 3690,
- "authority": 3691,
- "seasons": 3692,
- "join": 3693,
- "grade": 3694,
- "##io": 3695,
- "sign": 3696,
- "difficult": 3697,
- "machine": 3698,
- "1963": 3699,
- "territory": 3700,
- "mainly": 3701,
- "##wood": 3702,
- "stations": 3703,
- "squadron": 3704,
- "1962": 3705,
- "stepped": 3706,
- "iron": 3707,
- "19th": 3708,
- "##led": 3709,
- "serve": 3710,
- "appear": 3711,
- "sky": 3712,
- "speak": 3713,
- "broken": 3714,
- "charge": 3715,
- "knowledge": 3716,
- "kilometres": 3717,
- "removed": 3718,
- "ships": 3719,
- "article": 3720,
- "campus": 3721,
- "simple": 3722,
- "##ty": 3723,
- "pushed": 3724,
- "britain": 3725,
- "##ve": 3726,
- "leaves": 3727,
- "recently": 3728,
- "cd": 3729,
- "soft": 3730,
- "boston": 3731,
- "latter": 3732,
- "easy": 3733,
- "acquired": 3734,
- "poland": 3735,
- "##sa": 3736,
- "quality": 3737,
- "officers": 3738,
- "presence": 3739,
- "planned": 3740,
- "nations": 3741,
- "mass": 3742,
- "broadcast": 3743,
- "jean": 3744,
- "share": 3745,
- "image": 3746,
- "influence": 3747,
- "wild": 3748,
- "offer": 3749,
- "emperor": 3750,
- "electric": 3751,
- "reading": 3752,
- "headed": 3753,
- "ability": 3754,
- "promoted": 3755,
- "yellow": 3756,
- "ministry": 3757,
- "1942": 3758,
- "throat": 3759,
- "smaller": 3760,
- "politician": 3761,
- "##by": 3762,
- "latin": 3763,
- "spoke": 3764,
- "cars": 3765,
- "williams": 3766,
- "males": 3767,
- "lack": 3768,
- "pop": 3769,
- "80": 3770,
- "##ier": 3771,
- "acting": 3772,
- "seeing": 3773,
- "consists": 3774,
- "##ti": 3775,
- "estate": 3776,
- "1961": 3777,
- "pressure": 3778,
- "johnson": 3779,
- "newspaper": 3780,
- "jr": 3781,
- "chris": 3782,
- "olympics": 3783,
- "online": 3784,
- "conditions": 3785,
- "beat": 3786,
- "elements": 3787,
- "walking": 3788,
- "vote": 3789,
- "##field": 3790,
- "needs": 3791,
- "carolina": 3792,
- "text": 3793,
- "featuring": 3794,
- "global": 3795,
- "block": 3796,
- "shirt": 3797,
- "levels": 3798,
- "francisco": 3799,
- "purpose": 3800,
- "females": 3801,
- "et": 3802,
- "dutch": 3803,
- "duke": 3804,
- "ahead": 3805,
- "gas": 3806,
- "twice": 3807,
- "safety": 3808,
- "serious": 3809,
- "turning": 3810,
- "highly": 3811,
- "lieutenant": 3812,
- "firm": 3813,
- "maria": 3814,
- "amount": 3815,
- "mixed": 3816,
- "daniel": 3817,
- "proposed": 3818,
- "perfect": 3819,
- "agreement": 3820,
- "affairs": 3821,
- "3rd": 3822,
- "seconds": 3823,
- "contemporary": 3824,
- "paid": 3825,
- "1943": 3826,
- "prison": 3827,
- "save": 3828,
- "kitchen": 3829,
- "label": 3830,
- "administrative": 3831,
- "intended": 3832,
- "constructed": 3833,
- "academic": 3834,
- "nice": 3835,
- "teacher": 3836,
- "races": 3837,
- "1956": 3838,
- "formerly": 3839,
- "corporation": 3840,
- "ben": 3841,
- "nation": 3842,
- "issued": 3843,
- "shut": 3844,
- "1958": 3845,
- "drums": 3846,
- "housing": 3847,
- "victoria": 3848,
- "seems": 3849,
- "opera": 3850,
- "1959": 3851,
- "graduated": 3852,
- "function": 3853,
- "von": 3854,
- "mentioned": 3855,
- "picked": 3856,
- "build": 3857,
- "recognized": 3858,
- "shortly": 3859,
- "protection": 3860,
- "picture": 3861,
- "notable": 3862,
- "exchange": 3863,
- "elections": 3864,
- "1980s": 3865,
- "loved": 3866,
- "percent": 3867,
- "racing": 3868,
- "fish": 3869,
- "elizabeth": 3870,
- "garden": 3871,
- "volume": 3872,
- "hockey": 3873,
- "1941": 3874,
- "beside": 3875,
- "settled": 3876,
- "##ford": 3877,
- "1940": 3878,
- "competed": 3879,
- "replied": 3880,
- "drew": 3881,
- "1948": 3882,
- "actress": 3883,
- "marine": 3884,
- "scotland": 3885,
- "steel": 3886,
- "glanced": 3887,
- "farm": 3888,
- "steve": 3889,
- "1957": 3890,
- "risk": 3891,
- "tonight": 3892,
- "positive": 3893,
- "magic": 3894,
- "singles": 3895,
- "effects": 3896,
- "gray": 3897,
- "screen": 3898,
- "dog": 3899,
- "##ja": 3900,
- "residents": 3901,
- "bus": 3902,
- "sides": 3903,
- "none": 3904,
- "secondary": 3905,
- "literature": 3906,
- "polish": 3907,
- "destroyed": 3908,
- "flying": 3909,
- "founder": 3910,
- "households": 3911,
- "1939": 3912,
- "lay": 3913,
- "reserve": 3914,
- "usa": 3915,
- "gallery": 3916,
- "##ler": 3917,
- "1946": 3918,
- "industrial": 3919,
- "younger": 3920,
- "approach": 3921,
- "appearances": 3922,
- "urban": 3923,
- "ones": 3924,
- "1950": 3925,
- "finish": 3926,
- "avenue": 3927,
- "powerful": 3928,
- "fully": 3929,
- "growth": 3930,
- "page": 3931,
- "honor": 3932,
- "jersey": 3933,
- "projects": 3934,
- "advanced": 3935,
- "revealed": 3936,
- "basic": 3937,
- "90": 3938,
- "infantry": 3939,
- "pair": 3940,
- "equipment": 3941,
- "visit": 3942,
- "33": 3943,
- "evening": 3944,
- "search": 3945,
- "grant": 3946,
- "effort": 3947,
- "solo": 3948,
- "treatment": 3949,
- "buried": 3950,
- "republican": 3951,
- "primarily": 3952,
- "bottom": 3953,
- "owner": 3954,
- "1970s": 3955,
- "israel": 3956,
- "gives": 3957,
- "jim": 3958,
- "dream": 3959,
- "bob": 3960,
- "remain": 3961,
- "spot": 3962,
- "70": 3963,
- "notes": 3964,
- "produce": 3965,
- "champions": 3966,
- "contact": 3967,
- "ed": 3968,
- "soul": 3969,
- "accepted": 3970,
- "ways": 3971,
- "del": 3972,
- "##ally": 3973,
- "losing": 3974,
- "split": 3975,
- "price": 3976,
- "capacity": 3977,
- "basis": 3978,
- "trial": 3979,
- "questions": 3980,
- "##ina": 3981,
- "1955": 3982,
- "20th": 3983,
- "guess": 3984,
- "officially": 3985,
- "memorial": 3986,
- "naval": 3987,
- "initial": 3988,
- "##ization": 3989,
- "whispered": 3990,
- "median": 3991,
- "engineer": 3992,
- "##ful": 3993,
- "sydney": 3994,
- "##go": 3995,
- "columbia": 3996,
- "strength": 3997,
- "300": 3998,
- "1952": 3999,
- "tears": 4000,
- "senate": 4001,
- "00": 4002,
- "card": 4003,
- "asian": 4004,
- "agent": 4005,
- "1947": 4006,
- "software": 4007,
- "44": 4008,
- "draw": 4009,
- "warm": 4010,
- "supposed": 4011,
- "com": 4012,
- "pro": 4013,
- "##il": 4014,
- "transferred": 4015,
- "leaned": 4016,
- "##at": 4017,
- "candidate": 4018,
- "escape": 4019,
- "mountains": 4020,
- "asia": 4021,
- "potential": 4022,
- "activity": 4023,
- "entertainment": 4024,
- "seem": 4025,
- "traffic": 4026,
- "jackson": 4027,
- "murder": 4028,
- "36": 4029,
- "slow": 4030,
- "product": 4031,
- "orchestra": 4032,
- "haven": 4033,
- "agency": 4034,
- "bbc": 4035,
- "taught": 4036,
- "website": 4037,
- "comedy": 4038,
- "unable": 4039,
- "storm": 4040,
- "planning": 4041,
- "albums": 4042,
- "rugby": 4043,
- "environment": 4044,
- "scientific": 4045,
- "grabbed": 4046,
- "protect": 4047,
- "##hi": 4048,
- "boat": 4049,
- "typically": 4050,
- "1954": 4051,
- "1953": 4052,
- "damage": 4053,
- "principal": 4054,
- "divided": 4055,
- "dedicated": 4056,
- "mount": 4057,
- "ohio": 4058,
- "##berg": 4059,
- "pick": 4060,
- "fought": 4061,
- "driver": 4062,
- "##der": 4063,
- "empty": 4064,
- "shoulders": 4065,
- "sort": 4066,
- "thank": 4067,
- "berlin": 4068,
- "prominent": 4069,
- "account": 4070,
- "freedom": 4071,
- "necessary": 4072,
- "efforts": 4073,
- "alex": 4074,
- "headquarters": 4075,
- "follows": 4076,
- "alongside": 4077,
- "des": 4078,
- "simon": 4079,
- "andrew": 4080,
- "suggested": 4081,
- "operating": 4082,
- "learning": 4083,
- "steps": 4084,
- "1949": 4085,
- "sweet": 4086,
- "technical": 4087,
- "begin": 4088,
- "easily": 4089,
- "34": 4090,
- "teeth": 4091,
- "speaking": 4092,
- "settlement": 4093,
- "scale": 4094,
- "##sh": 4095,
- "renamed": 4096,
- "ray": 4097,
- "max": 4098,
- "enemy": 4099,
- "semi": 4100,
- "joint": 4101,
- "compared": 4102,
- "##rd": 4103,
- "scottish": 4104,
- "leadership": 4105,
- "analysis": 4106,
- "offers": 4107,
- "georgia": 4108,
- "pieces": 4109,
- "captured": 4110,
- "animal": 4111,
- "deputy": 4112,
- "guest": 4113,
- "organized": 4114,
- "##lin": 4115,
- "tony": 4116,
- "combined": 4117,
- "method": 4118,
- "challenge": 4119,
- "1960s": 4120,
- "huge": 4121,
- "wants": 4122,
- "battalion": 4123,
- "sons": 4124,
- "rise": 4125,
- "crime": 4126,
- "types": 4127,
- "facilities": 4128,
- "telling": 4129,
- "path": 4130,
- "1951": 4131,
- "platform": 4132,
- "sit": 4133,
- "1990s": 4134,
- "##lo": 4135,
- "tells": 4136,
- "assigned": 4137,
- "rich": 4138,
- "pull": 4139,
- "##ot": 4140,
- "commonly": 4141,
- "alive": 4142,
- "##za": 4143,
- "letters": 4144,
- "concept": 4145,
- "conducted": 4146,
- "wearing": 4147,
- "happen": 4148,
- "bought": 4149,
- "becomes": 4150,
- "holy": 4151,
- "gets": 4152,
- "ocean": 4153,
- "defeat": 4154,
- "languages": 4155,
- "purchased": 4156,
- "coffee": 4157,
- "occurred": 4158,
- "titled": 4159,
- "##q": 4160,
- "declared": 4161,
- "applied": 4162,
- "sciences": 4163,
- "concert": 4164,
- "sounds": 4165,
- "jazz": 4166,
- "brain": 4167,
- "##me": 4168,
- "painting": 4169,
- "fleet": 4170,
- "tax": 4171,
- "nick": 4172,
- "##ius": 4173,
- "michigan": 4174,
- "count": 4175,
- "animals": 4176,
- "leaders": 4177,
- "episodes": 4178,
- "##line": 4179,
- "content": 4180,
- "##den": 4181,
- "birth": 4182,
- "##it": 4183,
- "clubs": 4184,
- "64": 4185,
- "palace": 4186,
- "critical": 4187,
- "refused": 4188,
- "fair": 4189,
- "leg": 4190,
- "laughed": 4191,
- "returning": 4192,
- "surrounding": 4193,
- "participated": 4194,
- "formation": 4195,
- "lifted": 4196,
- "pointed": 4197,
- "connected": 4198,
- "rome": 4199,
- "medicine": 4200,
- "laid": 4201,
- "taylor": 4202,
- "santa": 4203,
- "powers": 4204,
- "adam": 4205,
- "tall": 4206,
- "shared": 4207,
- "focused": 4208,
- "knowing": 4209,
- "yards": 4210,
- "entrance": 4211,
- "falls": 4212,
- "##wa": 4213,
- "calling": 4214,
- "##ad": 4215,
- "sources": 4216,
- "chosen": 4217,
- "beneath": 4218,
- "resources": 4219,
- "yard": 4220,
- "##ite": 4221,
- "nominated": 4222,
- "silence": 4223,
- "zone": 4224,
- "defined": 4225,
- "##que": 4226,
- "gained": 4227,
- "thirty": 4228,
- "38": 4229,
- "bodies": 4230,
- "moon": 4231,
- "##ard": 4232,
- "adopted": 4233,
- "christmas": 4234,
- "widely": 4235,
- "register": 4236,
- "apart": 4237,
- "iran": 4238,
- "premier": 4239,
- "serves": 4240,
- "du": 4241,
- "unknown": 4242,
- "parties": 4243,
- "##les": 4244,
- "generation": 4245,
- "##ff": 4246,
- "continues": 4247,
- "quick": 4248,
- "fields": 4249,
- "brigade": 4250,
- "quiet": 4251,
- "teaching": 4252,
- "clothes": 4253,
- "impact": 4254,
- "weapons": 4255,
- "partner": 4256,
- "flat": 4257,
- "theater": 4258,
- "supreme": 4259,
- "1938": 4260,
- "37": 4261,
- "relations": 4262,
- "##tor": 4263,
- "plants": 4264,
- "suffered": 4265,
- "1936": 4266,
- "wilson": 4267,
- "kids": 4268,
- "begins": 4269,
- "##age": 4270,
- "1918": 4271,
- "seats": 4272,
- "armed": 4273,
- "internet": 4274,
- "models": 4275,
- "worth": 4276,
- "laws": 4277,
- "400": 4278,
- "communities": 4279,
- "classes": 4280,
- "background": 4281,
- "knows": 4282,
- "thanks": 4283,
- "quarter": 4284,
- "reaching": 4285,
- "humans": 4286,
- "carry": 4287,
- "killing": 4288,
- "format": 4289,
- "kong": 4290,
- "hong": 4291,
- "setting": 4292,
- "75": 4293,
- "architecture": 4294,
- "disease": 4295,
- "railroad": 4296,
- "inc": 4297,
- "possibly": 4298,
- "wish": 4299,
- "arthur": 4300,
- "thoughts": 4301,
- "harry": 4302,
- "doors": 4303,
- "density": 4304,
- "##di": 4305,
- "crowd": 4306,
- "illinois": 4307,
- "stomach": 4308,
- "tone": 4309,
- "unique": 4310,
- "reports": 4311,
- "anyway": 4312,
- "##ir": 4313,
- "liberal": 4314,
- "der": 4315,
- "vehicle": 4316,
- "thick": 4317,
- "dry": 4318,
- "drug": 4319,
- "faced": 4320,
- "largely": 4321,
- "facility": 4322,
- "theme": 4323,
- "holds": 4324,
- "creation": 4325,
- "strange": 4326,
- "colonel": 4327,
- "##mi": 4328,
- "revolution": 4329,
- "bell": 4330,
- "politics": 4331,
- "turns": 4332,
- "silent": 4333,
- "rail": 4334,
- "relief": 4335,
- "independence": 4336,
- "combat": 4337,
- "shape": 4338,
- "write": 4339,
- "determined": 4340,
- "sales": 4341,
- "learned": 4342,
- "4th": 4343,
- "finger": 4344,
- "oxford": 4345,
- "providing": 4346,
- "1937": 4347,
- "heritage": 4348,
- "fiction": 4349,
- "situated": 4350,
- "designated": 4351,
- "allowing": 4352,
- "distribution": 4353,
- "hosted": 4354,
- "##est": 4355,
- "sight": 4356,
- "interview": 4357,
- "estimated": 4358,
- "reduced": 4359,
- "##ria": 4360,
- "toronto": 4361,
- "footballer": 4362,
- "keeping": 4363,
- "guys": 4364,
- "damn": 4365,
- "claim": 4366,
- "motion": 4367,
- "sport": 4368,
- "sixth": 4369,
- "stayed": 4370,
- "##ze": 4371,
- "en": 4372,
- "rear": 4373,
- "receive": 4374,
- "handed": 4375,
- "twelve": 4376,
- "dress": 4377,
- "audience": 4378,
- "granted": 4379,
- "brazil": 4380,
- "##well": 4381,
- "spirit": 4382,
- "##ated": 4383,
- "noticed": 4384,
- "etc": 4385,
- "olympic": 4386,
- "representative": 4387,
- "eric": 4388,
- "tight": 4389,
- "trouble": 4390,
- "reviews": 4391,
- "drink": 4392,
- "vampire": 4393,
- "missing": 4394,
- "roles": 4395,
- "ranked": 4396,
- "newly": 4397,
- "household": 4398,
- "finals": 4399,
- "wave": 4400,
- "critics": 4401,
- "##ee": 4402,
- "phase": 4403,
- "massachusetts": 4404,
- "pilot": 4405,
- "unlike": 4406,
- "philadelphia": 4407,
- "bright": 4408,
- "guns": 4409,
- "crown": 4410,
- "organizations": 4411,
- "roof": 4412,
- "42": 4413,
- "respectively": 4414,
- "clearly": 4415,
- "tongue": 4416,
- "marked": 4417,
- "circle": 4418,
- "fox": 4419,
- "korea": 4420,
- "bronze": 4421,
- "brian": 4422,
- "expanded": 4423,
- "sexual": 4424,
- "supply": 4425,
- "yourself": 4426,
- "inspired": 4427,
- "labour": 4428,
- "fc": 4429,
- "##ah": 4430,
- "reference": 4431,
- "vision": 4432,
- "draft": 4433,
- "connection": 4434,
- "brand": 4435,
- "reasons": 4436,
- "1935": 4437,
- "classic": 4438,
- "driving": 4439,
- "trip": 4440,
- "jesus": 4441,
- "cells": 4442,
- "entry": 4443,
- "1920": 4444,
- "neither": 4445,
- "trail": 4446,
- "claims": 4447,
- "atlantic": 4448,
- "orders": 4449,
- "labor": 4450,
- "nose": 4451,
- "afraid": 4452,
- "identified": 4453,
- "intelligence": 4454,
- "calls": 4455,
- "cancer": 4456,
- "attacked": 4457,
- "passing": 4458,
- "stephen": 4459,
- "positions": 4460,
- "imperial": 4461,
- "grey": 4462,
- "jason": 4463,
- "39": 4464,
- "sunday": 4465,
- "48": 4466,
- "swedish": 4467,
- "avoid": 4468,
- "extra": 4469,
- "uncle": 4470,
- "message": 4471,
- "covers": 4472,
- "allows": 4473,
- "surprise": 4474,
- "materials": 4475,
- "fame": 4476,
- "hunter": 4477,
- "##ji": 4478,
- "1930": 4479,
- "citizens": 4480,
- "figures": 4481,
- "davis": 4482,
- "environmental": 4483,
- "confirmed": 4484,
- "shit": 4485,
- "titles": 4486,
- "di": 4487,
- "performing": 4488,
- "difference": 4489,
- "acts": 4490,
- "attacks": 4491,
- "##ov": 4492,
- "existing": 4493,
- "votes": 4494,
- "opportunity": 4495,
- "nor": 4496,
- "shop": 4497,
- "entirely": 4498,
- "trains": 4499,
- "opposite": 4500,
- "pakistan": 4501,
- "##pa": 4502,
- "develop": 4503,
- "resulted": 4504,
- "representatives": 4505,
- "actions": 4506,
- "reality": 4507,
- "pressed": 4508,
- "##ish": 4509,
- "barely": 4510,
- "wine": 4511,
- "conversation": 4512,
- "faculty": 4513,
- "northwest": 4514,
- "ends": 4515,
- "documentary": 4516,
- "nuclear": 4517,
- "stock": 4518,
- "grace": 4519,
- "sets": 4520,
- "eat": 4521,
- "alternative": 4522,
- "##ps": 4523,
- "bag": 4524,
- "resulting": 4525,
- "creating": 4526,
- "surprised": 4527,
- "cemetery": 4528,
- "1919": 4529,
- "drop": 4530,
- "finding": 4531,
- "sarah": 4532,
- "cricket": 4533,
- "streets": 4534,
- "tradition": 4535,
- "ride": 4536,
- "1933": 4537,
- "exhibition": 4538,
- "target": 4539,
- "ear": 4540,
- "explained": 4541,
- "rain": 4542,
- "composer": 4543,
- "injury": 4544,
- "apartment": 4545,
- "municipal": 4546,
- "educational": 4547,
- "occupied": 4548,
- "netherlands": 4549,
- "clean": 4550,
- "billion": 4551,
- "constitution": 4552,
- "learn": 4553,
- "1914": 4554,
- "maximum": 4555,
- "classical": 4556,
- "francis": 4557,
- "lose": 4558,
- "opposition": 4559,
- "jose": 4560,
- "ontario": 4561,
- "bear": 4562,
- "core": 4563,
- "hills": 4564,
- "rolled": 4565,
- "ending": 4566,
- "drawn": 4567,
- "permanent": 4568,
- "fun": 4569,
- "##tes": 4570,
- "##lla": 4571,
- "lewis": 4572,
- "sites": 4573,
- "chamber": 4574,
- "ryan": 4575,
- "##way": 4576,
- "scoring": 4577,
- "height": 4578,
- "1934": 4579,
- "##house": 4580,
- "lyrics": 4581,
- "staring": 4582,
- "55": 4583,
- "officials": 4584,
- "1917": 4585,
- "snow": 4586,
- "oldest": 4587,
- "##tic": 4588,
- "orange": 4589,
- "##ger": 4590,
- "qualified": 4591,
- "interior": 4592,
- "apparently": 4593,
- "succeeded": 4594,
- "thousand": 4595,
- "dinner": 4596,
- "lights": 4597,
- "existence": 4598,
- "fans": 4599,
- "heavily": 4600,
- "41": 4601,
- "greatest": 4602,
- "conservative": 4603,
- "send": 4604,
- "bowl": 4605,
- "plus": 4606,
- "enter": 4607,
- "catch": 4608,
- "##un": 4609,
- "economy": 4610,
- "duty": 4611,
- "1929": 4612,
- "speech": 4613,
- "authorities": 4614,
- "princess": 4615,
- "performances": 4616,
- "versions": 4617,
- "shall": 4618,
- "graduate": 4619,
- "pictures": 4620,
- "effective": 4621,
- "remembered": 4622,
- "poetry": 4623,
- "desk": 4624,
- "crossed": 4625,
- "starring": 4626,
- "starts": 4627,
- "passenger": 4628,
- "sharp": 4629,
- "##ant": 4630,
- "acres": 4631,
- "ass": 4632,
- "weather": 4633,
- "falling": 4634,
- "rank": 4635,
- "fund": 4636,
- "supporting": 4637,
- "check": 4638,
- "adult": 4639,
- "publishing": 4640,
- "heads": 4641,
- "cm": 4642,
- "southeast": 4643,
- "lane": 4644,
- "##burg": 4645,
- "application": 4646,
- "bc": 4647,
- "##ura": 4648,
- "les": 4649,
- "condition": 4650,
- "transfer": 4651,
- "prevent": 4652,
- "display": 4653,
- "ex": 4654,
- "regions": 4655,
- "earl": 4656,
- "federation": 4657,
- "cool": 4658,
- "relatively": 4659,
- "answered": 4660,
- "besides": 4661,
- "1928": 4662,
- "obtained": 4663,
- "portion": 4664,
- "##town": 4665,
- "mix": 4666,
- "##ding": 4667,
- "reaction": 4668,
- "liked": 4669,
- "dean": 4670,
- "express": 4671,
- "peak": 4672,
- "1932": 4673,
- "##tte": 4674,
- "counter": 4675,
- "religion": 4676,
- "chain": 4677,
- "rare": 4678,
- "miller": 4679,
- "convention": 4680,
- "aid": 4681,
- "lie": 4682,
- "vehicles": 4683,
- "mobile": 4684,
- "perform": 4685,
- "squad": 4686,
- "wonder": 4687,
- "lying": 4688,
- "crazy": 4689,
- "sword": 4690,
- "##ping": 4691,
- "attempted": 4692,
- "centuries": 4693,
- "weren": 4694,
- "philosophy": 4695,
- "category": 4696,
- "##ize": 4697,
- "anna": 4698,
- "interested": 4699,
- "47": 4700,
- "sweden": 4701,
- "wolf": 4702,
- "frequently": 4703,
- "abandoned": 4704,
- "kg": 4705,
- "literary": 4706,
- "alliance": 4707,
- "task": 4708,
- "entitled": 4709,
- "##ay": 4710,
- "threw": 4711,
- "promotion": 4712,
- "factory": 4713,
- "tiny": 4714,
- "soccer": 4715,
- "visited": 4716,
- "matt": 4717,
- "fm": 4718,
- "achieved": 4719,
- "52": 4720,
- "defence": 4721,
- "internal": 4722,
- "persian": 4723,
- "43": 4724,
- "methods": 4725,
- "##ging": 4726,
- "arrested": 4727,
- "otherwise": 4728,
- "cambridge": 4729,
- "programming": 4730,
- "villages": 4731,
- "elementary": 4732,
- "districts": 4733,
- "rooms": 4734,
- "criminal": 4735,
- "conflict": 4736,
- "worry": 4737,
- "trained": 4738,
- "1931": 4739,
- "attempts": 4740,
- "waited": 4741,
- "signal": 4742,
- "bird": 4743,
- "truck": 4744,
- "subsequent": 4745,
- "programme": 4746,
- "##ol": 4747,
- "ad": 4748,
- "49": 4749,
- "communist": 4750,
- "details": 4751,
- "faith": 4752,
- "sector": 4753,
- "patrick": 4754,
- "carrying": 4755,
- "laugh": 4756,
- "##ss": 4757,
- "controlled": 4758,
- "korean": 4759,
- "showing": 4760,
- "origin": 4761,
- "fuel": 4762,
- "evil": 4763,
- "1927": 4764,
- "##ent": 4765,
- "brief": 4766,
- "identity": 4767,
- "darkness": 4768,
- "address": 4769,
- "pool": 4770,
- "missed": 4771,
- "publication": 4772,
- "web": 4773,
- "planet": 4774,
- "ian": 4775,
- "anne": 4776,
- "wings": 4777,
- "invited": 4778,
- "##tt": 4779,
- "briefly": 4780,
- "standards": 4781,
- "kissed": 4782,
- "##be": 4783,
- "ideas": 4784,
- "climate": 4785,
- "causing": 4786,
- "walter": 4787,
- "worse": 4788,
- "albert": 4789,
- "articles": 4790,
- "winners": 4791,
- "desire": 4792,
- "aged": 4793,
- "northeast": 4794,
- "dangerous": 4795,
- "gate": 4796,
- "doubt": 4797,
- "1922": 4798,
- "wooden": 4799,
- "multi": 4800,
- "##ky": 4801,
- "poet": 4802,
- "rising": 4803,
- "funding": 4804,
- "46": 4805,
- "communications": 4806,
- "communication": 4807,
- "violence": 4808,
- "copies": 4809,
- "prepared": 4810,
- "ford": 4811,
- "investigation": 4812,
- "skills": 4813,
- "1924": 4814,
- "pulling": 4815,
- "electronic": 4816,
- "##ak": 4817,
- "##ial": 4818,
- "##han": 4819,
- "containing": 4820,
- "ultimately": 4821,
- "offices": 4822,
- "singing": 4823,
- "understanding": 4824,
- "restaurant": 4825,
- "tomorrow": 4826,
- "fashion": 4827,
- "christ": 4828,
- "ward": 4829,
- "da": 4830,
- "pope": 4831,
- "stands": 4832,
- "5th": 4833,
- "flow": 4834,
- "studios": 4835,
- "aired": 4836,
- "commissioned": 4837,
- "contained": 4838,
- "exist": 4839,
- "fresh": 4840,
- "americans": 4841,
- "##per": 4842,
- "wrestling": 4843,
- "approved": 4844,
- "kid": 4845,
- "employed": 4846,
- "respect": 4847,
- "suit": 4848,
- "1925": 4849,
- "angel": 4850,
- "asking": 4851,
- "increasing": 4852,
- "frame": 4853,
- "angry": 4854,
- "selling": 4855,
- "1950s": 4856,
- "thin": 4857,
- "finds": 4858,
- "##nd": 4859,
- "temperature": 4860,
- "statement": 4861,
- "ali": 4862,
- "explain": 4863,
- "inhabitants": 4864,
- "towns": 4865,
- "extensive": 4866,
- "narrow": 4867,
- "51": 4868,
- "jane": 4869,
- "flowers": 4870,
- "images": 4871,
- "promise": 4872,
- "somewhere": 4873,
- "object": 4874,
- "fly": 4875,
- "closely": 4876,
- "##ls": 4877,
- "1912": 4878,
- "bureau": 4879,
- "cape": 4880,
- "1926": 4881,
- "weekly": 4882,
- "presidential": 4883,
- "legislative": 4884,
- "1921": 4885,
- "##ai": 4886,
- "##au": 4887,
- "launch": 4888,
- "founding": 4889,
- "##ny": 4890,
- "978": 4891,
- "##ring": 4892,
- "artillery": 4893,
- "strike": 4894,
- "un": 4895,
- "institutions": 4896,
- "roll": 4897,
- "writers": 4898,
- "landing": 4899,
- "chose": 4900,
- "kevin": 4901,
- "anymore": 4902,
- "pp": 4903,
- "##ut": 4904,
- "attorney": 4905,
- "fit": 4906,
- "dan": 4907,
- "billboard": 4908,
- "receiving": 4909,
- "agricultural": 4910,
- "breaking": 4911,
- "sought": 4912,
- "dave": 4913,
- "admitted": 4914,
- "lands": 4915,
- "mexican": 4916,
- "##bury": 4917,
- "charlie": 4918,
- "specifically": 4919,
- "hole": 4920,
- "iv": 4921,
- "howard": 4922,
- "credit": 4923,
- "moscow": 4924,
- "roads": 4925,
- "accident": 4926,
- "1923": 4927,
- "proved": 4928,
- "wear": 4929,
- "struck": 4930,
- "hey": 4931,
- "guards": 4932,
- "stuff": 4933,
- "slid": 4934,
- "expansion": 4935,
- "1915": 4936,
- "cat": 4937,
- "anthony": 4938,
- "##kin": 4939,
- "melbourne": 4940,
- "opposed": 4941,
- "sub": 4942,
- "southwest": 4943,
- "architect": 4944,
- "failure": 4945,
- "plane": 4946,
- "1916": 4947,
- "##ron": 4948,
- "map": 4949,
- "camera": 4950,
- "tank": 4951,
- "listen": 4952,
- "regarding": 4953,
- "wet": 4954,
- "introduction": 4955,
- "metropolitan": 4956,
- "link": 4957,
- "ep": 4958,
- "fighter": 4959,
- "inch": 4960,
- "grown": 4961,
- "gene": 4962,
- "anger": 4963,
- "fixed": 4964,
- "buy": 4965,
- "dvd": 4966,
- "khan": 4967,
- "domestic": 4968,
- "worldwide": 4969,
- "chapel": 4970,
- "mill": 4971,
- "functions": 4972,
- "examples": 4973,
- "##head": 4974,
- "developing": 4975,
- "1910": 4976,
- "turkey": 4977,
- "hits": 4978,
- "pocket": 4979,
- "antonio": 4980,
- "papers": 4981,
- "grow": 4982,
- "unless": 4983,
- "circuit": 4984,
- "18th": 4985,
- "concerned": 4986,
- "attached": 4987,
- "journalist": 4988,
- "selection": 4989,
- "journey": 4990,
- "converted": 4991,
- "provincial": 4992,
- "painted": 4993,
- "hearing": 4994,
- "aren": 4995,
- "bands": 4996,
- "negative": 4997,
- "aside": 4998,
- "wondered": 4999,
- "knight": 5000,
- "lap": 5001,
- "survey": 5002,
- "ma": 5003,
- "##ow": 5004,
- "noise": 5005,
- "billy": 5006,
- "##ium": 5007,
- "shooting": 5008,
- "guide": 5009,
- "bedroom": 5010,
- "priest": 5011,
- "resistance": 5012,
- "motor": 5013,
- "homes": 5014,
- "sounded": 5015,
- "giant": 5016,
- "##mer": 5017,
- "150": 5018,
- "scenes": 5019,
- "equal": 5020,
- "comic": 5021,
- "patients": 5022,
- "hidden": 5023,
- "solid": 5024,
- "actual": 5025,
- "bringing": 5026,
- "afternoon": 5027,
- "touched": 5028,
- "funds": 5029,
- "wedding": 5030,
- "consisted": 5031,
- "marie": 5032,
- "canal": 5033,
- "sr": 5034,
- "kim": 5035,
- "treaty": 5036,
- "turkish": 5037,
- "recognition": 5038,
- "residence": 5039,
- "cathedral": 5040,
- "broad": 5041,
- "knees": 5042,
- "incident": 5043,
- "shaped": 5044,
- "fired": 5045,
- "norwegian": 5046,
- "handle": 5047,
- "cheek": 5048,
- "contest": 5049,
- "represent": 5050,
- "##pe": 5051,
- "representing": 5052,
- "beauty": 5053,
- "##sen": 5054,
- "birds": 5055,
- "advantage": 5056,
- "emergency": 5057,
- "wrapped": 5058,
- "drawing": 5059,
- "notice": 5060,
- "pink": 5061,
- "broadcasting": 5062,
- "##ong": 5063,
- "somehow": 5064,
- "bachelor": 5065,
- "seventh": 5066,
- "collected": 5067,
- "registered": 5068,
- "establishment": 5069,
- "alan": 5070,
- "assumed": 5071,
- "chemical": 5072,
- "personnel": 5073,
- "roger": 5074,
- "retirement": 5075,
- "jeff": 5076,
- "portuguese": 5077,
- "wore": 5078,
- "tied": 5079,
- "device": 5080,
- "threat": 5081,
- "progress": 5082,
- "advance": 5083,
- "##ised": 5084,
- "banks": 5085,
- "hired": 5086,
- "manchester": 5087,
- "nfl": 5088,
- "teachers": 5089,
- "structures": 5090,
- "forever": 5091,
- "##bo": 5092,
- "tennis": 5093,
- "helping": 5094,
- "saturday": 5095,
- "sale": 5096,
- "applications": 5097,
- "junction": 5098,
- "hip": 5099,
- "incorporated": 5100,
- "neighborhood": 5101,
- "dressed": 5102,
- "ceremony": 5103,
- "##ds": 5104,
- "influenced": 5105,
- "hers": 5106,
- "visual": 5107,
- "stairs": 5108,
- "decades": 5109,
- "inner": 5110,
- "kansas": 5111,
- "hung": 5112,
- "hoped": 5113,
- "gain": 5114,
- "scheduled": 5115,
- "downtown": 5116,
- "engaged": 5117,
- "austria": 5118,
- "clock": 5119,
- "norway": 5120,
- "certainly": 5121,
- "pale": 5122,
- "protected": 5123,
- "1913": 5124,
- "victor": 5125,
- "employees": 5126,
- "plate": 5127,
- "putting": 5128,
- "surrounded": 5129,
- "##ists": 5130,
- "finishing": 5131,
- "blues": 5132,
- "tropical": 5133,
- "##ries": 5134,
- "minnesota": 5135,
- "consider": 5136,
- "philippines": 5137,
- "accept": 5138,
- "54": 5139,
- "retrieved": 5140,
- "1900": 5141,
- "concern": 5142,
- "anderson": 5143,
- "properties": 5144,
- "institution": 5145,
- "gordon": 5146,
- "successfully": 5147,
- "vietnam": 5148,
- "##dy": 5149,
- "backing": 5150,
- "outstanding": 5151,
- "muslim": 5152,
- "crossing": 5153,
- "folk": 5154,
- "producing": 5155,
- "usual": 5156,
- "demand": 5157,
- "occurs": 5158,
- "observed": 5159,
- "lawyer": 5160,
- "educated": 5161,
- "##ana": 5162,
- "kelly": 5163,
- "string": 5164,
- "pleasure": 5165,
- "budget": 5166,
- "items": 5167,
- "quietly": 5168,
- "colorado": 5169,
- "philip": 5170,
- "typical": 5171,
- "##worth": 5172,
- "derived": 5173,
- "600": 5174,
- "survived": 5175,
- "asks": 5176,
- "mental": 5177,
- "##ide": 5178,
- "56": 5179,
- "jake": 5180,
- "jews": 5181,
- "distinguished": 5182,
- "ltd": 5183,
- "1911": 5184,
- "sri": 5185,
- "extremely": 5186,
- "53": 5187,
- "athletic": 5188,
- "loud": 5189,
- "thousands": 5190,
- "worried": 5191,
- "shadow": 5192,
- "transportation": 5193,
- "horses": 5194,
- "weapon": 5195,
- "arena": 5196,
- "importance": 5197,
- "users": 5198,
- "tim": 5199,
- "objects": 5200,
- "contributed": 5201,
- "dragon": 5202,
- "douglas": 5203,
- "aware": 5204,
- "senator": 5205,
- "johnny": 5206,
- "jordan": 5207,
- "sisters": 5208,
- "engines": 5209,
- "flag": 5210,
- "investment": 5211,
- "samuel": 5212,
- "shock": 5213,
- "capable": 5214,
- "clark": 5215,
- "row": 5216,
- "wheel": 5217,
- "refers": 5218,
- "session": 5219,
- "familiar": 5220,
- "biggest": 5221,
- "wins": 5222,
- "hate": 5223,
- "maintained": 5224,
- "drove": 5225,
- "hamilton": 5226,
- "request": 5227,
- "expressed": 5228,
- "injured": 5229,
- "underground": 5230,
- "churches": 5231,
- "walker": 5232,
- "wars": 5233,
- "tunnel": 5234,
- "passes": 5235,
- "stupid": 5236,
- "agriculture": 5237,
- "softly": 5238,
- "cabinet": 5239,
- "regarded": 5240,
- "joining": 5241,
- "indiana": 5242,
- "##ea": 5243,
- "##ms": 5244,
- "push": 5245,
- "dates": 5246,
- "spend": 5247,
- "behavior": 5248,
- "woods": 5249,
- "protein": 5250,
- "gently": 5251,
- "chase": 5252,
- "morgan": 5253,
- "mention": 5254,
- "burning": 5255,
- "wake": 5256,
- "combination": 5257,
- "occur": 5258,
- "mirror": 5259,
- "leads": 5260,
- "jimmy": 5261,
- "indeed": 5262,
- "impossible": 5263,
- "singapore": 5264,
- "paintings": 5265,
- "covering": 5266,
- "##nes": 5267,
- "soldier": 5268,
- "locations": 5269,
- "attendance": 5270,
- "sell": 5271,
- "historian": 5272,
- "wisconsin": 5273,
- "invasion": 5274,
- "argued": 5275,
- "painter": 5276,
- "diego": 5277,
- "changing": 5278,
- "egypt": 5279,
- "##don": 5280,
- "experienced": 5281,
- "inches": 5282,
- "##ku": 5283,
- "missouri": 5284,
- "vol": 5285,
- "grounds": 5286,
- "spoken": 5287,
- "switzerland": 5288,
- "##gan": 5289,
- "reform": 5290,
- "rolling": 5291,
- "ha": 5292,
- "forget": 5293,
- "massive": 5294,
- "resigned": 5295,
- "burned": 5296,
- "allen": 5297,
- "tennessee": 5298,
- "locked": 5299,
- "values": 5300,
- "improved": 5301,
- "##mo": 5302,
- "wounded": 5303,
- "universe": 5304,
- "sick": 5305,
- "dating": 5306,
- "facing": 5307,
- "pack": 5308,
- "purchase": 5309,
- "user": 5310,
- "##pur": 5311,
- "moments": 5312,
- "##ul": 5313,
- "merged": 5314,
- "anniversary": 5315,
- "1908": 5316,
- "coal": 5317,
- "brick": 5318,
- "understood": 5319,
- "causes": 5320,
- "dynasty": 5321,
- "queensland": 5322,
- "establish": 5323,
- "stores": 5324,
- "crisis": 5325,
- "promote": 5326,
- "hoping": 5327,
- "views": 5328,
- "cards": 5329,
- "referee": 5330,
- "extension": 5331,
- "##si": 5332,
- "raise": 5333,
- "arizona": 5334,
- "improve": 5335,
- "colonial": 5336,
- "formal": 5337,
- "charged": 5338,
- "##rt": 5339,
- "palm": 5340,
- "lucky": 5341,
- "hide": 5342,
- "rescue": 5343,
- "faces": 5344,
- "95": 5345,
- "feelings": 5346,
- "candidates": 5347,
- "juan": 5348,
- "##ell": 5349,
- "goods": 5350,
- "6th": 5351,
- "courses": 5352,
- "weekend": 5353,
- "59": 5354,
- "luke": 5355,
- "cash": 5356,
- "fallen": 5357,
- "##om": 5358,
- "delivered": 5359,
- "affected": 5360,
- "installed": 5361,
- "carefully": 5362,
- "tries": 5363,
- "swiss": 5364,
- "hollywood": 5365,
- "costs": 5366,
- "lincoln": 5367,
- "responsibility": 5368,
- "##he": 5369,
- "shore": 5370,
- "file": 5371,
- "proper": 5372,
- "normally": 5373,
- "maryland": 5374,
- "assistance": 5375,
- "jump": 5376,
- "constant": 5377,
- "offering": 5378,
- "friendly": 5379,
- "waters": 5380,
- "persons": 5381,
- "realize": 5382,
- "contain": 5383,
- "trophy": 5384,
- "800": 5385,
- "partnership": 5386,
- "factor": 5387,
- "58": 5388,
- "musicians": 5389,
- "cry": 5390,
- "bound": 5391,
- "oregon": 5392,
- "indicated": 5393,
- "hero": 5394,
- "houston": 5395,
- "medium": 5396,
- "##ure": 5397,
- "consisting": 5398,
- "somewhat": 5399,
- "##ara": 5400,
- "57": 5401,
- "cycle": 5402,
- "##che": 5403,
- "beer": 5404,
- "moore": 5405,
- "frederick": 5406,
- "gotten": 5407,
- "eleven": 5408,
- "worst": 5409,
- "weak": 5410,
- "approached": 5411,
- "arranged": 5412,
- "chin": 5413,
- "loan": 5414,
- "universal": 5415,
- "bond": 5416,
- "fifteen": 5417,
- "pattern": 5418,
- "disappeared": 5419,
- "##ney": 5420,
- "translated": 5421,
- "##zed": 5422,
- "lip": 5423,
- "arab": 5424,
- "capture": 5425,
- "interests": 5426,
- "insurance": 5427,
- "##chi": 5428,
- "shifted": 5429,
- "cave": 5430,
- "prix": 5431,
- "warning": 5432,
- "sections": 5433,
- "courts": 5434,
- "coat": 5435,
- "plot": 5436,
- "smell": 5437,
- "feed": 5438,
- "golf": 5439,
- "favorite": 5440,
- "maintain": 5441,
- "knife": 5442,
- "vs": 5443,
- "voted": 5444,
- "degrees": 5445,
- "finance": 5446,
- "quebec": 5447,
- "opinion": 5448,
- "translation": 5449,
- "manner": 5450,
- "ruled": 5451,
- "operate": 5452,
- "productions": 5453,
- "choose": 5454,
- "musician": 5455,
- "discovery": 5456,
- "confused": 5457,
- "tired": 5458,
- "separated": 5459,
- "stream": 5460,
- "techniques": 5461,
- "committed": 5462,
- "attend": 5463,
- "ranking": 5464,
- "kings": 5465,
- "throw": 5466,
- "passengers": 5467,
- "measure": 5468,
- "horror": 5469,
- "fan": 5470,
- "mining": 5471,
- "sand": 5472,
- "danger": 5473,
- "salt": 5474,
- "calm": 5475,
- "decade": 5476,
- "dam": 5477,
- "require": 5478,
- "runner": 5479,
- "##ik": 5480,
- "rush": 5481,
- "associate": 5482,
- "greece": 5483,
- "##ker": 5484,
- "rivers": 5485,
- "consecutive": 5486,
- "matthew": 5487,
- "##ski": 5488,
- "sighed": 5489,
- "sq": 5490,
- "documents": 5491,
- "steam": 5492,
- "edited": 5493,
- "closing": 5494,
- "tie": 5495,
- "accused": 5496,
- "1905": 5497,
- "##ini": 5498,
- "islamic": 5499,
- "distributed": 5500,
- "directors": 5501,
- "organisation": 5502,
- "bruce": 5503,
- "7th": 5504,
- "breathing": 5505,
- "mad": 5506,
- "lit": 5507,
- "arrival": 5508,
- "concrete": 5509,
- "taste": 5510,
- "08": 5511,
- "composition": 5512,
- "shaking": 5513,
- "faster": 5514,
- "amateur": 5515,
- "adjacent": 5516,
- "stating": 5517,
- "1906": 5518,
- "twin": 5519,
- "flew": 5520,
- "##ran": 5521,
- "tokyo": 5522,
- "publications": 5523,
- "##tone": 5524,
- "obviously": 5525,
- "ridge": 5526,
- "storage": 5527,
- "1907": 5528,
- "carl": 5529,
- "pages": 5530,
- "concluded": 5531,
- "desert": 5532,
- "driven": 5533,
- "universities": 5534,
- "ages": 5535,
- "terminal": 5536,
- "sequence": 5537,
- "borough": 5538,
- "250": 5539,
- "constituency": 5540,
- "creative": 5541,
- "cousin": 5542,
- "economics": 5543,
- "dreams": 5544,
- "margaret": 5545,
- "notably": 5546,
- "reduce": 5547,
- "montreal": 5548,
- "mode": 5549,
- "17th": 5550,
- "ears": 5551,
- "saved": 5552,
- "jan": 5553,
- "vocal": 5554,
- "##ica": 5555,
- "1909": 5556,
- "andy": 5557,
- "##jo": 5558,
- "riding": 5559,
- "roughly": 5560,
- "threatened": 5561,
- "##ise": 5562,
- "meters": 5563,
- "meanwhile": 5564,
- "landed": 5565,
- "compete": 5566,
- "repeated": 5567,
- "grass": 5568,
- "czech": 5569,
- "regularly": 5570,
- "charges": 5571,
- "tea": 5572,
- "sudden": 5573,
- "appeal": 5574,
- "##ung": 5575,
- "solution": 5576,
- "describes": 5577,
- "pierre": 5578,
- "classification": 5579,
- "glad": 5580,
- "parking": 5581,
- "##ning": 5582,
- "belt": 5583,
- "physics": 5584,
- "99": 5585,
- "rachel": 5586,
- "add": 5587,
- "hungarian": 5588,
- "participate": 5589,
- "expedition": 5590,
- "damaged": 5591,
- "gift": 5592,
- "childhood": 5593,
- "85": 5594,
- "fifty": 5595,
- "##red": 5596,
- "mathematics": 5597,
- "jumped": 5598,
- "letting": 5599,
- "defensive": 5600,
- "mph": 5601,
- "##ux": 5602,
- "##gh": 5603,
- "testing": 5604,
- "##hip": 5605,
- "hundreds": 5606,
- "shoot": 5607,
- "owners": 5608,
- "matters": 5609,
- "smoke": 5610,
- "israeli": 5611,
- "kentucky": 5612,
- "dancing": 5613,
- "mounted": 5614,
- "grandfather": 5615,
- "emma": 5616,
- "designs": 5617,
- "profit": 5618,
- "argentina": 5619,
- "##gs": 5620,
- "truly": 5621,
- "li": 5622,
- "lawrence": 5623,
- "cole": 5624,
- "begun": 5625,
- "detroit": 5626,
- "willing": 5627,
- "branches": 5628,
- "smiling": 5629,
- "decide": 5630,
- "miami": 5631,
- "enjoyed": 5632,
- "recordings": 5633,
- "##dale": 5634,
- "poverty": 5635,
- "ethnic": 5636,
- "gay": 5637,
- "##bi": 5638,
- "gary": 5639,
- "arabic": 5640,
- "09": 5641,
- "accompanied": 5642,
- "##one": 5643,
- "##ons": 5644,
- "fishing": 5645,
- "determine": 5646,
- "residential": 5647,
- "acid": 5648,
- "##ary": 5649,
- "alice": 5650,
- "returns": 5651,
- "starred": 5652,
- "mail": 5653,
- "##ang": 5654,
- "jonathan": 5655,
- "strategy": 5656,
- "##ue": 5657,
- "net": 5658,
- "forty": 5659,
- "cook": 5660,
- "businesses": 5661,
- "equivalent": 5662,
- "commonwealth": 5663,
- "distinct": 5664,
- "ill": 5665,
- "##cy": 5666,
- "seriously": 5667,
- "##ors": 5668,
- "##ped": 5669,
- "shift": 5670,
- "harris": 5671,
- "replace": 5672,
- "rio": 5673,
- "imagine": 5674,
- "formula": 5675,
- "ensure": 5676,
- "##ber": 5677,
- "additionally": 5678,
- "scheme": 5679,
- "conservation": 5680,
- "occasionally": 5681,
- "purposes": 5682,
- "feels": 5683,
- "favor": 5684,
- "##and": 5685,
- "##ore": 5686,
- "1930s": 5687,
- "contrast": 5688,
- "hanging": 5689,
- "hunt": 5690,
- "movies": 5691,
- "1904": 5692,
- "instruments": 5693,
- "victims": 5694,
- "danish": 5695,
- "christopher": 5696,
- "busy": 5697,
- "demon": 5698,
- "sugar": 5699,
- "earliest": 5700,
- "colony": 5701,
- "studying": 5702,
- "balance": 5703,
- "duties": 5704,
- "##ks": 5705,
- "belgium": 5706,
- "slipped": 5707,
- "carter": 5708,
- "05": 5709,
- "visible": 5710,
- "stages": 5711,
- "iraq": 5712,
- "fifa": 5713,
- "##im": 5714,
- "commune": 5715,
- "forming": 5716,
- "zero": 5717,
- "07": 5718,
- "continuing": 5719,
- "talked": 5720,
- "counties": 5721,
- "legend": 5722,
- "bathroom": 5723,
- "option": 5724,
- "tail": 5725,
- "clay": 5726,
- "daughters": 5727,
- "afterwards": 5728,
- "severe": 5729,
- "jaw": 5730,
- "visitors": 5731,
- "##ded": 5732,
- "devices": 5733,
- "aviation": 5734,
- "russell": 5735,
- "kate": 5736,
- "##vi": 5737,
- "entering": 5738,
- "subjects": 5739,
- "##ino": 5740,
- "temporary": 5741,
- "swimming": 5742,
- "forth": 5743,
- "smooth": 5744,
- "ghost": 5745,
- "audio": 5746,
- "bush": 5747,
- "operates": 5748,
- "rocks": 5749,
- "movements": 5750,
- "signs": 5751,
- "eddie": 5752,
- "##tz": 5753,
- "ann": 5754,
- "voices": 5755,
- "honorary": 5756,
- "06": 5757,
- "memories": 5758,
- "dallas": 5759,
- "pure": 5760,
- "measures": 5761,
- "racial": 5762,
- "promised": 5763,
- "66": 5764,
- "harvard": 5765,
- "ceo": 5766,
- "16th": 5767,
- "parliamentary": 5768,
- "indicate": 5769,
- "benefit": 5770,
- "flesh": 5771,
- "dublin": 5772,
- "louisiana": 5773,
- "1902": 5774,
- "1901": 5775,
- "patient": 5776,
- "sleeping": 5777,
- "1903": 5778,
- "membership": 5779,
- "coastal": 5780,
- "medieval": 5781,
- "wanting": 5782,
- "element": 5783,
- "scholars": 5784,
- "rice": 5785,
- "62": 5786,
- "limit": 5787,
- "survive": 5788,
- "makeup": 5789,
- "rating": 5790,
- "definitely": 5791,
- "collaboration": 5792,
- "obvious": 5793,
- "##tan": 5794,
- "boss": 5795,
- "ms": 5796,
- "baron": 5797,
- "birthday": 5798,
- "linked": 5799,
- "soil": 5800,
- "diocese": 5801,
- "##lan": 5802,
- "ncaa": 5803,
- "##mann": 5804,
- "offensive": 5805,
- "shell": 5806,
- "shouldn": 5807,
- "waist": 5808,
- "##tus": 5809,
- "plain": 5810,
- "ross": 5811,
- "organ": 5812,
- "resolution": 5813,
- "manufacturing": 5814,
- "adding": 5815,
- "relative": 5816,
- "kennedy": 5817,
- "98": 5818,
- "whilst": 5819,
- "moth": 5820,
- "marketing": 5821,
- "gardens": 5822,
- "crash": 5823,
- "72": 5824,
- "heading": 5825,
- "partners": 5826,
- "credited": 5827,
- "carlos": 5828,
- "moves": 5829,
- "cable": 5830,
- "##zi": 5831,
- "marshall": 5832,
- "##out": 5833,
- "depending": 5834,
- "bottle": 5835,
- "represents": 5836,
- "rejected": 5837,
- "responded": 5838,
- "existed": 5839,
- "04": 5840,
- "jobs": 5841,
- "denmark": 5842,
- "lock": 5843,
- "##ating": 5844,
- "treated": 5845,
- "graham": 5846,
- "routes": 5847,
- "talent": 5848,
- "commissioner": 5849,
- "drugs": 5850,
- "secure": 5851,
- "tests": 5852,
- "reign": 5853,
- "restored": 5854,
- "photography": 5855,
- "##gi": 5856,
- "contributions": 5857,
- "oklahoma": 5858,
- "designer": 5859,
- "disc": 5860,
- "grin": 5861,
- "seattle": 5862,
- "robin": 5863,
- "paused": 5864,
- "atlanta": 5865,
- "unusual": 5866,
- "##gate": 5867,
- "praised": 5868,
- "las": 5869,
- "laughing": 5870,
- "satellite": 5871,
- "hungary": 5872,
- "visiting": 5873,
- "##sky": 5874,
- "interesting": 5875,
- "factors": 5876,
- "deck": 5877,
- "poems": 5878,
- "norman": 5879,
- "##water": 5880,
- "stuck": 5881,
- "speaker": 5882,
- "rifle": 5883,
- "domain": 5884,
- "premiered": 5885,
- "##her": 5886,
- "dc": 5887,
- "comics": 5888,
- "actors": 5889,
- "01": 5890,
- "reputation": 5891,
- "eliminated": 5892,
- "8th": 5893,
- "ceiling": 5894,
- "prisoners": 5895,
- "script": 5896,
- "##nce": 5897,
- "leather": 5898,
- "austin": 5899,
- "mississippi": 5900,
- "rapidly": 5901,
- "admiral": 5902,
- "parallel": 5903,
- "charlotte": 5904,
- "guilty": 5905,
- "tools": 5906,
- "gender": 5907,
- "divisions": 5908,
- "fruit": 5909,
- "##bs": 5910,
- "laboratory": 5911,
- "nelson": 5912,
- "fantasy": 5913,
- "marry": 5914,
- "rapid": 5915,
- "aunt": 5916,
- "tribe": 5917,
- "requirements": 5918,
- "aspects": 5919,
- "suicide": 5920,
- "amongst": 5921,
- "adams": 5922,
- "bone": 5923,
- "ukraine": 5924,
- "abc": 5925,
- "kick": 5926,
- "sees": 5927,
- "edinburgh": 5928,
- "clothing": 5929,
- "column": 5930,
- "rough": 5931,
- "gods": 5932,
- "hunting": 5933,
- "broadway": 5934,
- "gathered": 5935,
- "concerns": 5936,
- "##ek": 5937,
- "spending": 5938,
- "ty": 5939,
- "12th": 5940,
- "snapped": 5941,
- "requires": 5942,
- "solar": 5943,
- "bones": 5944,
- "cavalry": 5945,
- "##tta": 5946,
- "iowa": 5947,
- "drinking": 5948,
- "waste": 5949,
- "index": 5950,
- "franklin": 5951,
- "charity": 5952,
- "thompson": 5953,
- "stewart": 5954,
- "tip": 5955,
- "flash": 5956,
- "landscape": 5957,
- "friday": 5958,
- "enjoy": 5959,
- "singh": 5960,
- "poem": 5961,
- "listening": 5962,
- "##back": 5963,
- "eighth": 5964,
- "fred": 5965,
- "differences": 5966,
- "adapted": 5967,
- "bomb": 5968,
- "ukrainian": 5969,
- "surgery": 5970,
- "corporate": 5971,
- "masters": 5972,
- "anywhere": 5973,
- "##more": 5974,
- "waves": 5975,
- "odd": 5976,
- "sean": 5977,
- "portugal": 5978,
- "orleans": 5979,
- "dick": 5980,
- "debate": 5981,
- "kent": 5982,
- "eating": 5983,
- "puerto": 5984,
- "cleared": 5985,
- "96": 5986,
- "expect": 5987,
- "cinema": 5988,
- "97": 5989,
- "guitarist": 5990,
- "blocks": 5991,
- "electrical": 5992,
- "agree": 5993,
- "involving": 5994,
- "depth": 5995,
- "dying": 5996,
- "panel": 5997,
- "struggle": 5998,
- "##ged": 5999,
- "peninsula": 6000,
- "adults": 6001,
- "novels": 6002,
- "emerged": 6003,
- "vienna": 6004,
- "metro": 6005,
- "debuted": 6006,
- "shoes": 6007,
- "tamil": 6008,
- "songwriter": 6009,
- "meets": 6010,
- "prove": 6011,
- "beating": 6012,
- "instance": 6013,
- "heaven": 6014,
- "scared": 6015,
- "sending": 6016,
- "marks": 6017,
- "artistic": 6018,
- "passage": 6019,
- "superior": 6020,
- "03": 6021,
- "significantly": 6022,
- "shopping": 6023,
- "##tive": 6024,
- "retained": 6025,
- "##izing": 6026,
- "malaysia": 6027,
- "technique": 6028,
- "cheeks": 6029,
- "##ola": 6030,
- "warren": 6031,
- "maintenance": 6032,
- "destroy": 6033,
- "extreme": 6034,
- "allied": 6035,
- "120": 6036,
- "appearing": 6037,
- "##yn": 6038,
- "fill": 6039,
- "advice": 6040,
- "alabama": 6041,
- "qualifying": 6042,
- "policies": 6043,
- "cleveland": 6044,
- "hat": 6045,
- "battery": 6046,
- "smart": 6047,
- "authors": 6048,
- "10th": 6049,
- "soundtrack": 6050,
- "acted": 6051,
- "dated": 6052,
- "lb": 6053,
- "glance": 6054,
- "equipped": 6055,
- "coalition": 6056,
- "funny": 6057,
- "outer": 6058,
- "ambassador": 6059,
- "roy": 6060,
- "possibility": 6061,
- "couples": 6062,
- "campbell": 6063,
- "dna": 6064,
- "loose": 6065,
- "ethan": 6066,
- "supplies": 6067,
- "1898": 6068,
- "gonna": 6069,
- "88": 6070,
- "monster": 6071,
- "##res": 6072,
- "shake": 6073,
- "agents": 6074,
- "frequency": 6075,
- "springs": 6076,
- "dogs": 6077,
- "practices": 6078,
- "61": 6079,
- "gang": 6080,
- "plastic": 6081,
- "easier": 6082,
- "suggests": 6083,
- "gulf": 6084,
- "blade": 6085,
- "exposed": 6086,
- "colors": 6087,
- "industries": 6088,
- "markets": 6089,
- "pan": 6090,
- "nervous": 6091,
- "electoral": 6092,
- "charts": 6093,
- "legislation": 6094,
- "ownership": 6095,
- "##idae": 6096,
- "mac": 6097,
- "appointment": 6098,
- "shield": 6099,
- "copy": 6100,
- "assault": 6101,
- "socialist": 6102,
- "abbey": 6103,
- "monument": 6104,
- "license": 6105,
- "throne": 6106,
- "employment": 6107,
- "jay": 6108,
- "93": 6109,
- "replacement": 6110,
- "charter": 6111,
- "cloud": 6112,
- "powered": 6113,
- "suffering": 6114,
- "accounts": 6115,
- "oak": 6116,
- "connecticut": 6117,
- "strongly": 6118,
- "wright": 6119,
- "colour": 6120,
- "crystal": 6121,
- "13th": 6122,
- "context": 6123,
- "welsh": 6124,
- "networks": 6125,
- "voiced": 6126,
- "gabriel": 6127,
- "jerry": 6128,
- "##cing": 6129,
- "forehead": 6130,
- "mp": 6131,
- "##ens": 6132,
- "manage": 6133,
- "schedule": 6134,
- "totally": 6135,
- "remix": 6136,
- "##ii": 6137,
- "forests": 6138,
- "occupation": 6139,
- "print": 6140,
- "nicholas": 6141,
- "brazilian": 6142,
- "strategic": 6143,
- "vampires": 6144,
- "engineers": 6145,
- "76": 6146,
- "roots": 6147,
- "seek": 6148,
- "correct": 6149,
- "instrumental": 6150,
- "und": 6151,
- "alfred": 6152,
- "backed": 6153,
- "hop": 6154,
- "##des": 6155,
- "stanley": 6156,
- "robinson": 6157,
- "traveled": 6158,
- "wayne": 6159,
- "welcome": 6160,
- "austrian": 6161,
- "achieve": 6162,
- "67": 6163,
- "exit": 6164,
- "rates": 6165,
- "1899": 6166,
- "strip": 6167,
- "whereas": 6168,
- "##cs": 6169,
- "sing": 6170,
- "deeply": 6171,
- "adventure": 6172,
- "bobby": 6173,
- "rick": 6174,
- "jamie": 6175,
- "careful": 6176,
- "components": 6177,
- "cap": 6178,
- "useful": 6179,
- "personality": 6180,
- "knee": 6181,
- "##shi": 6182,
- "pushing": 6183,
- "hosts": 6184,
- "02": 6185,
- "protest": 6186,
- "ca": 6187,
- "ottoman": 6188,
- "symphony": 6189,
- "##sis": 6190,
- "63": 6191,
- "boundary": 6192,
- "1890": 6193,
- "processes": 6194,
- "considering": 6195,
- "considerable": 6196,
- "tons": 6197,
- "##work": 6198,
- "##ft": 6199,
- "##nia": 6200,
- "cooper": 6201,
- "trading": 6202,
- "dear": 6203,
- "conduct": 6204,
- "91": 6205,
- "illegal": 6206,
- "apple": 6207,
- "revolutionary": 6208,
- "holiday": 6209,
- "definition": 6210,
- "harder": 6211,
- "##van": 6212,
- "jacob": 6213,
- "circumstances": 6214,
- "destruction": 6215,
- "##lle": 6216,
- "popularity": 6217,
- "grip": 6218,
- "classified": 6219,
- "liverpool": 6220,
- "donald": 6221,
- "baltimore": 6222,
- "flows": 6223,
- "seeking": 6224,
- "honour": 6225,
- "approval": 6226,
- "92": 6227,
- "mechanical": 6228,
- "till": 6229,
- "happening": 6230,
- "statue": 6231,
- "critic": 6232,
- "increasingly": 6233,
- "immediate": 6234,
- "describe": 6235,
- "commerce": 6236,
- "stare": 6237,
- "##ster": 6238,
- "indonesia": 6239,
- "meat": 6240,
- "rounds": 6241,
- "boats": 6242,
- "baker": 6243,
- "orthodox": 6244,
- "depression": 6245,
- "formally": 6246,
- "worn": 6247,
- "naked": 6248,
- "claire": 6249,
- "muttered": 6250,
- "sentence": 6251,
- "11th": 6252,
- "emily": 6253,
- "document": 6254,
- "77": 6255,
- "criticism": 6256,
- "wished": 6257,
- "vessel": 6258,
- "spiritual": 6259,
- "bent": 6260,
- "virgin": 6261,
- "parker": 6262,
- "minimum": 6263,
- "murray": 6264,
- "lunch": 6265,
- "danny": 6266,
- "printed": 6267,
- "compilation": 6268,
- "keyboards": 6269,
- "false": 6270,
- "blow": 6271,
- "belonged": 6272,
- "68": 6273,
- "raising": 6274,
- "78": 6275,
- "cutting": 6276,
- "##board": 6277,
- "pittsburgh": 6278,
- "##up": 6279,
- "9th": 6280,
- "shadows": 6281,
- "81": 6282,
- "hated": 6283,
- "indigenous": 6284,
- "jon": 6285,
- "15th": 6286,
- "barry": 6287,
- "scholar": 6288,
- "ah": 6289,
- "##zer": 6290,
- "oliver": 6291,
- "##gy": 6292,
- "stick": 6293,
- "susan": 6294,
- "meetings": 6295,
- "attracted": 6296,
- "spell": 6297,
- "romantic": 6298,
- "##ver": 6299,
- "ye": 6300,
- "1895": 6301,
- "photo": 6302,
- "demanded": 6303,
- "customers": 6304,
- "##ac": 6305,
- "1896": 6306,
- "logan": 6307,
- "revival": 6308,
- "keys": 6309,
- "modified": 6310,
- "commanded": 6311,
- "jeans": 6312,
- "##ious": 6313,
- "upset": 6314,
- "raw": 6315,
- "phil": 6316,
- "detective": 6317,
- "hiding": 6318,
- "resident": 6319,
- "vincent": 6320,
- "##bly": 6321,
- "experiences": 6322,
- "diamond": 6323,
- "defeating": 6324,
- "coverage": 6325,
- "lucas": 6326,
- "external": 6327,
- "parks": 6328,
- "franchise": 6329,
- "helen": 6330,
- "bible": 6331,
- "successor": 6332,
- "percussion": 6333,
- "celebrated": 6334,
- "il": 6335,
- "lift": 6336,
- "profile": 6337,
- "clan": 6338,
- "romania": 6339,
- "##ied": 6340,
- "mills": 6341,
- "##su": 6342,
- "nobody": 6343,
- "achievement": 6344,
- "shrugged": 6345,
- "fault": 6346,
- "1897": 6347,
- "rhythm": 6348,
- "initiative": 6349,
- "breakfast": 6350,
- "carbon": 6351,
- "700": 6352,
- "69": 6353,
- "lasted": 6354,
- "violent": 6355,
- "74": 6356,
- "wound": 6357,
- "ken": 6358,
- "killer": 6359,
- "gradually": 6360,
- "filmed": 6361,
- "°c": 6362,
- "dollars": 6363,
- "processing": 6364,
- "94": 6365,
- "remove": 6366,
- "criticized": 6367,
- "guests": 6368,
- "sang": 6369,
- "chemistry": 6370,
- "##vin": 6371,
- "legislature": 6372,
- "disney": 6373,
- "##bridge": 6374,
- "uniform": 6375,
- "escaped": 6376,
- "integrated": 6377,
- "proposal": 6378,
- "purple": 6379,
- "denied": 6380,
- "liquid": 6381,
- "karl": 6382,
- "influential": 6383,
- "morris": 6384,
- "nights": 6385,
- "stones": 6386,
- "intense": 6387,
- "experimental": 6388,
- "twisted": 6389,
- "71": 6390,
- "84": 6391,
- "##ld": 6392,
- "pace": 6393,
- "nazi": 6394,
- "mitchell": 6395,
- "ny": 6396,
- "blind": 6397,
- "reporter": 6398,
- "newspapers": 6399,
- "14th": 6400,
- "centers": 6401,
- "burn": 6402,
- "basin": 6403,
- "forgotten": 6404,
- "surviving": 6405,
- "filed": 6406,
- "collections": 6407,
- "monastery": 6408,
- "losses": 6409,
- "manual": 6410,
- "couch": 6411,
- "description": 6412,
- "appropriate": 6413,
- "merely": 6414,
- "tag": 6415,
- "missions": 6416,
- "sebastian": 6417,
- "restoration": 6418,
- "replacing": 6419,
- "triple": 6420,
- "73": 6421,
- "elder": 6422,
- "julia": 6423,
- "warriors": 6424,
- "benjamin": 6425,
- "julian": 6426,
- "convinced": 6427,
- "stronger": 6428,
- "amazing": 6429,
- "declined": 6430,
- "versus": 6431,
- "merchant": 6432,
- "happens": 6433,
- "output": 6434,
- "finland": 6435,
- "bare": 6436,
- "barbara": 6437,
- "absence": 6438,
- "ignored": 6439,
- "dawn": 6440,
- "injuries": 6441,
- "##port": 6442,
- "producers": 6443,
- "##ram": 6444,
- "82": 6445,
- "luis": 6446,
- "##ities": 6447,
- "kw": 6448,
- "admit": 6449,
- "expensive": 6450,
- "electricity": 6451,
- "nba": 6452,
- "exception": 6453,
- "symbol": 6454,
- "##ving": 6455,
- "ladies": 6456,
- "shower": 6457,
- "sheriff": 6458,
- "characteristics": 6459,
- "##je": 6460,
- "aimed": 6461,
- "button": 6462,
- "ratio": 6463,
- "effectively": 6464,
- "summit": 6465,
- "angle": 6466,
- "jury": 6467,
- "bears": 6468,
- "foster": 6469,
- "vessels": 6470,
- "pants": 6471,
- "executed": 6472,
- "evans": 6473,
- "dozen": 6474,
- "advertising": 6475,
- "kicked": 6476,
- "patrol": 6477,
- "1889": 6478,
- "competitions": 6479,
- "lifetime": 6480,
- "principles": 6481,
- "athletics": 6482,
- "##logy": 6483,
- "birmingham": 6484,
- "sponsored": 6485,
- "89": 6486,
- "rob": 6487,
- "nomination": 6488,
- "1893": 6489,
- "acoustic": 6490,
- "##sm": 6491,
- "creature": 6492,
- "longest": 6493,
- "##tra": 6494,
- "credits": 6495,
- "harbor": 6496,
- "dust": 6497,
- "josh": 6498,
- "##so": 6499,
- "territories": 6500,
- "milk": 6501,
- "infrastructure": 6502,
- "completion": 6503,
- "thailand": 6504,
- "indians": 6505,
- "leon": 6506,
- "archbishop": 6507,
- "##sy": 6508,
- "assist": 6509,
- "pitch": 6510,
- "blake": 6511,
- "arrangement": 6512,
- "girlfriend": 6513,
- "serbian": 6514,
- "operational": 6515,
- "hence": 6516,
- "sad": 6517,
- "scent": 6518,
- "fur": 6519,
- "dj": 6520,
- "sessions": 6521,
- "hp": 6522,
- "refer": 6523,
- "rarely": 6524,
- "##ora": 6525,
- "exists": 6526,
- "1892": 6527,
- "##ten": 6528,
- "scientists": 6529,
- "dirty": 6530,
- "penalty": 6531,
- "burst": 6532,
- "portrait": 6533,
- "seed": 6534,
- "79": 6535,
- "pole": 6536,
- "limits": 6537,
- "rival": 6538,
- "1894": 6539,
- "stable": 6540,
- "alpha": 6541,
- "grave": 6542,
- "constitutional": 6543,
- "alcohol": 6544,
- "arrest": 6545,
- "flower": 6546,
- "mystery": 6547,
- "devil": 6548,
- "architectural": 6549,
- "relationships": 6550,
- "greatly": 6551,
- "habitat": 6552,
- "##istic": 6553,
- "larry": 6554,
- "progressive": 6555,
- "remote": 6556,
- "cotton": 6557,
- "##ics": 6558,
- "##ok": 6559,
- "preserved": 6560,
- "reaches": 6561,
- "##ming": 6562,
- "cited": 6563,
- "86": 6564,
- "vast": 6565,
- "scholarship": 6566,
- "decisions": 6567,
- "cbs": 6568,
- "joy": 6569,
- "teach": 6570,
- "1885": 6571,
- "editions": 6572,
- "knocked": 6573,
- "eve": 6574,
- "searching": 6575,
- "partly": 6576,
- "participation": 6577,
- "gap": 6578,
- "animated": 6579,
- "fate": 6580,
- "excellent": 6581,
- "##ett": 6582,
- "na": 6583,
- "87": 6584,
- "alternate": 6585,
- "saints": 6586,
- "youngest": 6587,
- "##ily": 6588,
- "climbed": 6589,
- "##ita": 6590,
- "##tors": 6591,
- "suggest": 6592,
- "##ct": 6593,
- "discussion": 6594,
- "staying": 6595,
- "choir": 6596,
- "lakes": 6597,
- "jacket": 6598,
- "revenue": 6599,
- "nevertheless": 6600,
- "peaked": 6601,
- "instrument": 6602,
- "wondering": 6603,
- "annually": 6604,
- "managing": 6605,
- "neil": 6606,
- "1891": 6607,
- "signing": 6608,
- "terry": 6609,
- "##ice": 6610,
- "apply": 6611,
- "clinical": 6612,
- "brooklyn": 6613,
- "aim": 6614,
- "catherine": 6615,
- "fuck": 6616,
- "farmers": 6617,
- "figured": 6618,
- "ninth": 6619,
- "pride": 6620,
- "hugh": 6621,
- "evolution": 6622,
- "ordinary": 6623,
- "involvement": 6624,
- "comfortable": 6625,
- "shouted": 6626,
- "tech": 6627,
- "encouraged": 6628,
- "taiwan": 6629,
- "representation": 6630,
- "sharing": 6631,
- "##lia": 6632,
- "##em": 6633,
- "panic": 6634,
- "exact": 6635,
- "cargo": 6636,
- "competing": 6637,
- "fat": 6638,
- "cried": 6639,
- "83": 6640,
- "1920s": 6641,
- "occasions": 6642,
- "pa": 6643,
- "cabin": 6644,
- "borders": 6645,
- "utah": 6646,
- "marcus": 6647,
- "##isation": 6648,
- "badly": 6649,
- "muscles": 6650,
- "##ance": 6651,
- "victorian": 6652,
- "transition": 6653,
- "warner": 6654,
- "bet": 6655,
- "permission": 6656,
- "##rin": 6657,
- "slave": 6658,
- "terrible": 6659,
- "similarly": 6660,
- "shares": 6661,
- "seth": 6662,
- "uefa": 6663,
- "possession": 6664,
- "medals": 6665,
- "benefits": 6666,
- "colleges": 6667,
- "lowered": 6668,
- "perfectly": 6669,
- "mall": 6670,
- "transit": 6671,
- "##ye": 6672,
- "##kar": 6673,
- "publisher": 6674,
- "##ened": 6675,
- "harrison": 6676,
- "deaths": 6677,
- "elevation": 6678,
- "##ae": 6679,
- "asleep": 6680,
- "machines": 6681,
- "sigh": 6682,
- "ash": 6683,
- "hardly": 6684,
- "argument": 6685,
- "occasion": 6686,
- "parent": 6687,
- "leo": 6688,
- "decline": 6689,
- "1888": 6690,
- "contribution": 6691,
- "##ua": 6692,
- "concentration": 6693,
- "1000": 6694,
- "opportunities": 6695,
- "hispanic": 6696,
- "guardian": 6697,
- "extent": 6698,
- "emotions": 6699,
- "hips": 6700,
- "mason": 6701,
- "volumes": 6702,
- "bloody": 6703,
- "controversy": 6704,
- "diameter": 6705,
- "steady": 6706,
- "mistake": 6707,
- "phoenix": 6708,
- "identify": 6709,
- "violin": 6710,
- "##sk": 6711,
- "departure": 6712,
- "richmond": 6713,
- "spin": 6714,
- "funeral": 6715,
- "enemies": 6716,
- "1864": 6717,
- "gear": 6718,
- "literally": 6719,
- "connor": 6720,
- "random": 6721,
- "sergeant": 6722,
- "grab": 6723,
- "confusion": 6724,
- "1865": 6725,
- "transmission": 6726,
- "informed": 6727,
- "op": 6728,
- "leaning": 6729,
- "sacred": 6730,
- "suspended": 6731,
- "thinks": 6732,
- "gates": 6733,
- "portland": 6734,
- "luck": 6735,
- "agencies": 6736,
- "yours": 6737,
- "hull": 6738,
- "expert": 6739,
- "muscle": 6740,
- "layer": 6741,
- "practical": 6742,
- "sculpture": 6743,
- "jerusalem": 6744,
- "latest": 6745,
- "lloyd": 6746,
- "statistics": 6747,
- "deeper": 6748,
- "recommended": 6749,
- "warrior": 6750,
- "arkansas": 6751,
- "mess": 6752,
- "supports": 6753,
- "greg": 6754,
- "eagle": 6755,
- "1880": 6756,
- "recovered": 6757,
- "rated": 6758,
- "concerts": 6759,
- "rushed": 6760,
- "##ano": 6761,
- "stops": 6762,
- "eggs": 6763,
- "files": 6764,
- "premiere": 6765,
- "keith": 6766,
- "##vo": 6767,
- "delhi": 6768,
- "turner": 6769,
- "pit": 6770,
- "affair": 6771,
- "belief": 6772,
- "paint": 6773,
- "##zing": 6774,
- "mate": 6775,
- "##ach": 6776,
- "##ev": 6777,
- "victim": 6778,
- "##ology": 6779,
- "withdrew": 6780,
- "bonus": 6781,
- "styles": 6782,
- "fled": 6783,
- "##ud": 6784,
- "glasgow": 6785,
- "technologies": 6786,
- "funded": 6787,
- "nbc": 6788,
- "adaptation": 6789,
- "##ata": 6790,
- "portrayed": 6791,
- "cooperation": 6792,
- "supporters": 6793,
- "judges": 6794,
- "bernard": 6795,
- "justin": 6796,
- "hallway": 6797,
- "ralph": 6798,
- "##ick": 6799,
- "graduating": 6800,
- "controversial": 6801,
- "distant": 6802,
- "continental": 6803,
- "spider": 6804,
- "bite": 6805,
- "##ho": 6806,
- "recognize": 6807,
- "intention": 6808,
- "mixing": 6809,
- "##ese": 6810,
- "egyptian": 6811,
- "bow": 6812,
- "tourism": 6813,
- "suppose": 6814,
- "claiming": 6815,
- "tiger": 6816,
- "dominated": 6817,
- "participants": 6818,
- "vi": 6819,
- "##ru": 6820,
- "nurse": 6821,
- "partially": 6822,
- "tape": 6823,
- "##rum": 6824,
- "psychology": 6825,
- "##rn": 6826,
- "essential": 6827,
- "touring": 6828,
- "duo": 6829,
- "voting": 6830,
- "civilian": 6831,
- "emotional": 6832,
- "channels": 6833,
- "##king": 6834,
- "apparent": 6835,
- "hebrew": 6836,
- "1887": 6837,
- "tommy": 6838,
- "carrier": 6839,
- "intersection": 6840,
- "beast": 6841,
- "hudson": 6842,
- "##gar": 6843,
- "##zo": 6844,
- "lab": 6845,
- "nova": 6846,
- "bench": 6847,
- "discuss": 6848,
- "costa": 6849,
- "##ered": 6850,
- "detailed": 6851,
- "behalf": 6852,
- "drivers": 6853,
- "unfortunately": 6854,
- "obtain": 6855,
- "##lis": 6856,
- "rocky": 6857,
- "##dae": 6858,
- "siege": 6859,
- "friendship": 6860,
- "honey": 6861,
- "##rian": 6862,
- "1861": 6863,
- "amy": 6864,
- "hang": 6865,
- "posted": 6866,
- "governments": 6867,
- "collins": 6868,
- "respond": 6869,
- "wildlife": 6870,
- "preferred": 6871,
- "operator": 6872,
- "##po": 6873,
- "laura": 6874,
- "pregnant": 6875,
- "videos": 6876,
- "dennis": 6877,
- "suspected": 6878,
- "boots": 6879,
- "instantly": 6880,
- "weird": 6881,
- "automatic": 6882,
- "businessman": 6883,
- "alleged": 6884,
- "placing": 6885,
- "throwing": 6886,
- "ph": 6887,
- "mood": 6888,
- "1862": 6889,
- "perry": 6890,
- "venue": 6891,
- "jet": 6892,
- "remainder": 6893,
- "##lli": 6894,
- "##ci": 6895,
- "passion": 6896,
- "biological": 6897,
- "boyfriend": 6898,
- "1863": 6899,
- "dirt": 6900,
- "buffalo": 6901,
- "ron": 6902,
- "segment": 6903,
- "fa": 6904,
- "abuse": 6905,
- "##era": 6906,
- "genre": 6907,
- "thrown": 6908,
- "stroke": 6909,
- "colored": 6910,
- "stress": 6911,
- "exercise": 6912,
- "displayed": 6913,
- "##gen": 6914,
- "struggled": 6915,
- "##tti": 6916,
- "abroad": 6917,
- "dramatic": 6918,
- "wonderful": 6919,
- "thereafter": 6920,
- "madrid": 6921,
- "component": 6922,
- "widespread": 6923,
- "##sed": 6924,
- "tale": 6925,
- "citizen": 6926,
- "todd": 6927,
- "monday": 6928,
- "1886": 6929,
- "vancouver": 6930,
- "overseas": 6931,
- "forcing": 6932,
- "crying": 6933,
- "descent": 6934,
- "##ris": 6935,
- "discussed": 6936,
- "substantial": 6937,
- "ranks": 6938,
- "regime": 6939,
- "1870": 6940,
- "provinces": 6941,
- "switch": 6942,
- "drum": 6943,
- "zane": 6944,
- "ted": 6945,
- "tribes": 6946,
- "proof": 6947,
- "lp": 6948,
- "cream": 6949,
- "researchers": 6950,
- "volunteer": 6951,
- "manor": 6952,
- "silk": 6953,
- "milan": 6954,
- "donated": 6955,
- "allies": 6956,
- "venture": 6957,
- "principle": 6958,
- "delivery": 6959,
- "enterprise": 6960,
- "##ves": 6961,
- "##ans": 6962,
- "bars": 6963,
- "traditionally": 6964,
- "witch": 6965,
- "reminded": 6966,
- "copper": 6967,
- "##uk": 6968,
- "pete": 6969,
- "inter": 6970,
- "links": 6971,
- "colin": 6972,
- "grinned": 6973,
- "elsewhere": 6974,
- "competitive": 6975,
- "frequent": 6976,
- "##oy": 6977,
- "scream": 6978,
- "##hu": 6979,
- "tension": 6980,
- "texts": 6981,
- "submarine": 6982,
- "finnish": 6983,
- "defending": 6984,
- "defend": 6985,
- "pat": 6986,
- "detail": 6987,
- "1884": 6988,
- "affiliated": 6989,
- "stuart": 6990,
- "themes": 6991,
- "villa": 6992,
- "periods": 6993,
- "tool": 6994,
- "belgian": 6995,
- "ruling": 6996,
- "crimes": 6997,
- "answers": 6998,
- "folded": 6999,
- "licensed": 7000,
- "resort": 7001,
- "demolished": 7002,
- "hans": 7003,
- "lucy": 7004,
- "1881": 7005,
- "lion": 7006,
- "traded": 7007,
- "photographs": 7008,
- "writes": 7009,
- "craig": 7010,
- "##fa": 7011,
- "trials": 7012,
- "generated": 7013,
- "beth": 7014,
- "noble": 7015,
- "debt": 7016,
- "percentage": 7017,
- "yorkshire": 7018,
- "erected": 7019,
- "ss": 7020,
- "viewed": 7021,
- "grades": 7022,
- "confidence": 7023,
- "ceased": 7024,
- "islam": 7025,
- "telephone": 7026,
- "retail": 7027,
- "##ible": 7028,
- "chile": 7029,
- "m²": 7030,
- "roberts": 7031,
- "sixteen": 7032,
- "##ich": 7033,
- "commented": 7034,
- "hampshire": 7035,
- "innocent": 7036,
- "dual": 7037,
- "pounds": 7038,
- "checked": 7039,
- "regulations": 7040,
- "afghanistan": 7041,
- "sung": 7042,
- "rico": 7043,
- "liberty": 7044,
- "assets": 7045,
- "bigger": 7046,
- "options": 7047,
- "angels": 7048,
- "relegated": 7049,
- "tribute": 7050,
- "wells": 7051,
- "attending": 7052,
- "leaf": 7053,
- "##yan": 7054,
- "butler": 7055,
- "romanian": 7056,
- "forum": 7057,
- "monthly": 7058,
- "lisa": 7059,
- "patterns": 7060,
- "gmina": 7061,
- "##tory": 7062,
- "madison": 7063,
- "hurricane": 7064,
- "rev": 7065,
- "##ians": 7066,
- "bristol": 7067,
- "##ula": 7068,
- "elite": 7069,
- "valuable": 7070,
- "disaster": 7071,
- "democracy": 7072,
- "awareness": 7073,
- "germans": 7074,
- "freyja": 7075,
- "##ins": 7076,
- "loop": 7077,
- "absolutely": 7078,
- "paying": 7079,
- "populations": 7080,
- "maine": 7081,
- "sole": 7082,
- "prayer": 7083,
- "spencer": 7084,
- "releases": 7085,
- "doorway": 7086,
- "bull": 7087,
- "##ani": 7088,
- "lover": 7089,
- "midnight": 7090,
- "conclusion": 7091,
- "##sson": 7092,
- "thirteen": 7093,
- "lily": 7094,
- "mediterranean": 7095,
- "##lt": 7096,
- "nhl": 7097,
- "proud": 7098,
- "sample": 7099,
- "##hill": 7100,
- "drummer": 7101,
- "guinea": 7102,
- "##ova": 7103,
- "murphy": 7104,
- "climb": 7105,
- "##ston": 7106,
- "instant": 7107,
- "attributed": 7108,
- "horn": 7109,
- "ain": 7110,
- "railways": 7111,
- "steven": 7112,
- "##ao": 7113,
- "autumn": 7114,
- "ferry": 7115,
- "opponent": 7116,
- "root": 7117,
- "traveling": 7118,
- "secured": 7119,
- "corridor": 7120,
- "stretched": 7121,
- "tales": 7122,
- "sheet": 7123,
- "trinity": 7124,
- "cattle": 7125,
- "helps": 7126,
- "indicates": 7127,
- "manhattan": 7128,
- "murdered": 7129,
- "fitted": 7130,
- "1882": 7131,
- "gentle": 7132,
- "grandmother": 7133,
- "mines": 7134,
- "shocked": 7135,
- "vegas": 7136,
- "produces": 7137,
- "##light": 7138,
- "caribbean": 7139,
- "##ou": 7140,
- "belong": 7141,
- "continuous": 7142,
- "desperate": 7143,
- "drunk": 7144,
- "historically": 7145,
- "trio": 7146,
- "waved": 7147,
- "raf": 7148,
- "dealing": 7149,
- "nathan": 7150,
- "bat": 7151,
- "murmured": 7152,
- "interrupted": 7153,
- "residing": 7154,
- "scientist": 7155,
- "pioneer": 7156,
- "harold": 7157,
- "aaron": 7158,
- "##net": 7159,
- "delta": 7160,
- "attempting": 7161,
- "minority": 7162,
- "mini": 7163,
- "believes": 7164,
- "chorus": 7165,
- "tend": 7166,
- "lots": 7167,
- "eyed": 7168,
- "indoor": 7169,
- "load": 7170,
- "shots": 7171,
- "updated": 7172,
- "jail": 7173,
- "##llo": 7174,
- "concerning": 7175,
- "connecting": 7176,
- "wealth": 7177,
- "##ved": 7178,
- "slaves": 7179,
- "arrive": 7180,
- "rangers": 7181,
- "sufficient": 7182,
- "rebuilt": 7183,
- "##wick": 7184,
- "cardinal": 7185,
- "flood": 7186,
- "muhammad": 7187,
- "whenever": 7188,
- "relation": 7189,
- "runners": 7190,
- "moral": 7191,
- "repair": 7192,
- "viewers": 7193,
- "arriving": 7194,
- "revenge": 7195,
- "punk": 7196,
- "assisted": 7197,
- "bath": 7198,
- "fairly": 7199,
- "breathe": 7200,
- "lists": 7201,
- "innings": 7202,
- "illustrated": 7203,
- "whisper": 7204,
- "nearest": 7205,
- "voters": 7206,
- "clinton": 7207,
- "ties": 7208,
- "ultimate": 7209,
- "screamed": 7210,
- "beijing": 7211,
- "lions": 7212,
- "andre": 7213,
- "fictional": 7214,
- "gathering": 7215,
- "comfort": 7216,
- "radar": 7217,
- "suitable": 7218,
- "dismissed": 7219,
- "hms": 7220,
- "ban": 7221,
- "pine": 7222,
- "wrist": 7223,
- "atmosphere": 7224,
- "voivodeship": 7225,
- "bid": 7226,
- "timber": 7227,
- "##ned": 7228,
- "##nan": 7229,
- "giants": 7230,
- "##ane": 7231,
- "cameron": 7232,
- "recovery": 7233,
- "uss": 7234,
- "identical": 7235,
- "categories": 7236,
- "switched": 7237,
- "serbia": 7238,
- "laughter": 7239,
- "noah": 7240,
- "ensemble": 7241,
- "therapy": 7242,
- "peoples": 7243,
- "touching": 7244,
- "##off": 7245,
- "locally": 7246,
- "pearl": 7247,
- "platforms": 7248,
- "everywhere": 7249,
- "ballet": 7250,
- "tables": 7251,
- "lanka": 7252,
- "herbert": 7253,
- "outdoor": 7254,
- "toured": 7255,
- "derek": 7256,
- "1883": 7257,
- "spaces": 7258,
- "contested": 7259,
- "swept": 7260,
- "1878": 7261,
- "exclusive": 7262,
- "slight": 7263,
- "connections": 7264,
- "##dra": 7265,
- "winds": 7266,
- "prisoner": 7267,
- "collective": 7268,
- "bangladesh": 7269,
- "tube": 7270,
- "publicly": 7271,
- "wealthy": 7272,
- "thai": 7273,
- "##ys": 7274,
- "isolated": 7275,
- "select": 7276,
- "##ric": 7277,
- "insisted": 7278,
- "pen": 7279,
- "fortune": 7280,
- "ticket": 7281,
- "spotted": 7282,
- "reportedly": 7283,
- "animation": 7284,
- "enforcement": 7285,
- "tanks": 7286,
- "110": 7287,
- "decides": 7288,
- "wider": 7289,
- "lowest": 7290,
- "owen": 7291,
- "##time": 7292,
- "nod": 7293,
- "hitting": 7294,
- "##hn": 7295,
- "gregory": 7296,
- "furthermore": 7297,
- "magazines": 7298,
- "fighters": 7299,
- "solutions": 7300,
- "##ery": 7301,
- "pointing": 7302,
- "requested": 7303,
- "peru": 7304,
- "reed": 7305,
- "chancellor": 7306,
- "knights": 7307,
- "mask": 7308,
- "worker": 7309,
- "eldest": 7310,
- "flames": 7311,
- "reduction": 7312,
- "1860": 7313,
- "volunteers": 7314,
- "##tis": 7315,
- "reporting": 7316,
- "##hl": 7317,
- "wire": 7318,
- "advisory": 7319,
- "endemic": 7320,
- "origins": 7321,
- "settlers": 7322,
- "pursue": 7323,
- "knock": 7324,
- "consumer": 7325,
- "1876": 7326,
- "eu": 7327,
- "compound": 7328,
- "creatures": 7329,
- "mansion": 7330,
- "sentenced": 7331,
- "ivan": 7332,
- "deployed": 7333,
- "guitars": 7334,
- "frowned": 7335,
- "involves": 7336,
- "mechanism": 7337,
- "kilometers": 7338,
- "perspective": 7339,
- "shops": 7340,
- "maps": 7341,
- "terminus": 7342,
- "duncan": 7343,
- "alien": 7344,
- "fist": 7345,
- "bridges": 7346,
- "##pers": 7347,
- "heroes": 7348,
- "fed": 7349,
- "derby": 7350,
- "swallowed": 7351,
- "##ros": 7352,
- "patent": 7353,
- "sara": 7354,
- "illness": 7355,
- "characterized": 7356,
- "adventures": 7357,
- "slide": 7358,
- "hawaii": 7359,
- "jurisdiction": 7360,
- "##op": 7361,
- "organised": 7362,
- "##side": 7363,
- "adelaide": 7364,
- "walks": 7365,
- "biology": 7366,
- "se": 7367,
- "##ties": 7368,
- "rogers": 7369,
- "swing": 7370,
- "tightly": 7371,
- "boundaries": 7372,
- "##rie": 7373,
- "prepare": 7374,
- "implementation": 7375,
- "stolen": 7376,
- "##sha": 7377,
- "certified": 7378,
- "colombia": 7379,
- "edwards": 7380,
- "garage": 7381,
- "##mm": 7382,
- "recalled": 7383,
- "##ball": 7384,
- "rage": 7385,
- "harm": 7386,
- "nigeria": 7387,
- "breast": 7388,
- "##ren": 7389,
- "furniture": 7390,
- "pupils": 7391,
- "settle": 7392,
- "##lus": 7393,
- "cuba": 7394,
- "balls": 7395,
- "client": 7396,
- "alaska": 7397,
- "21st": 7398,
- "linear": 7399,
- "thrust": 7400,
- "celebration": 7401,
- "latino": 7402,
- "genetic": 7403,
- "terror": 7404,
- "##cia": 7405,
- "##ening": 7406,
- "lightning": 7407,
- "fee": 7408,
- "witness": 7409,
- "lodge": 7410,
- "establishing": 7411,
- "skull": 7412,
- "##ique": 7413,
- "earning": 7414,
- "hood": 7415,
- "##ei": 7416,
- "rebellion": 7417,
- "wang": 7418,
- "sporting": 7419,
- "warned": 7420,
- "missile": 7421,
- "devoted": 7422,
- "activist": 7423,
- "porch": 7424,
- "worship": 7425,
- "fourteen": 7426,
- "package": 7427,
- "1871": 7428,
- "decorated": 7429,
- "##shire": 7430,
- "housed": 7431,
- "##ock": 7432,
- "chess": 7433,
- "sailed": 7434,
- "doctors": 7435,
- "oscar": 7436,
- "joan": 7437,
- "treat": 7438,
- "garcia": 7439,
- "harbour": 7440,
- "jeremy": 7441,
- "##ire": 7442,
- "traditions": 7443,
- "dominant": 7444,
- "jacques": 7445,
- "##gon": 7446,
- "##wan": 7447,
- "relocated": 7448,
- "1879": 7449,
- "amendment": 7450,
- "sized": 7451,
- "companion": 7452,
- "simultaneously": 7453,
- "volleyball": 7454,
- "spun": 7455,
- "acre": 7456,
- "increases": 7457,
- "stopping": 7458,
- "loves": 7459,
- "belongs": 7460,
- "affect": 7461,
- "drafted": 7462,
- "tossed": 7463,
- "scout": 7464,
- "battles": 7465,
- "1875": 7466,
- "filming": 7467,
- "shoved": 7468,
- "munich": 7469,
- "tenure": 7470,
- "vertical": 7471,
- "romance": 7472,
- "pc": 7473,
- "##cher": 7474,
- "argue": 7475,
- "##ical": 7476,
- "craft": 7477,
- "ranging": 7478,
- "www": 7479,
- "opens": 7480,
- "honest": 7481,
- "tyler": 7482,
- "yesterday": 7483,
- "virtual": 7484,
- "##let": 7485,
- "muslims": 7486,
- "reveal": 7487,
- "snake": 7488,
- "immigrants": 7489,
- "radical": 7490,
- "screaming": 7491,
- "speakers": 7492,
- "firing": 7493,
- "saving": 7494,
- "belonging": 7495,
- "ease": 7496,
- "lighting": 7497,
- "prefecture": 7498,
- "blame": 7499,
- "farmer": 7500,
- "hungry": 7501,
- "grows": 7502,
- "rubbed": 7503,
- "beam": 7504,
- "sur": 7505,
- "subsidiary": 7506,
- "##cha": 7507,
- "armenian": 7508,
- "sao": 7509,
- "dropping": 7510,
- "conventional": 7511,
- "##fer": 7512,
- "microsoft": 7513,
- "reply": 7514,
- "qualify": 7515,
- "spots": 7516,
- "1867": 7517,
- "sweat": 7518,
- "festivals": 7519,
- "##ken": 7520,
- "immigration": 7521,
- "physician": 7522,
- "discover": 7523,
- "exposure": 7524,
- "sandy": 7525,
- "explanation": 7526,
- "isaac": 7527,
- "implemented": 7528,
- "##fish": 7529,
- "hart": 7530,
- "initiated": 7531,
- "connect": 7532,
- "stakes": 7533,
- "presents": 7534,
- "heights": 7535,
- "householder": 7536,
- "pleased": 7537,
- "tourist": 7538,
- "regardless": 7539,
- "slip": 7540,
- "closest": 7541,
- "##ction": 7542,
- "surely": 7543,
- "sultan": 7544,
- "brings": 7545,
- "riley": 7546,
- "preparation": 7547,
- "aboard": 7548,
- "slammed": 7549,
- "baptist": 7550,
- "experiment": 7551,
- "ongoing": 7552,
- "interstate": 7553,
- "organic": 7554,
- "playoffs": 7555,
- "##ika": 7556,
- "1877": 7557,
- "130": 7558,
- "##tar": 7559,
- "hindu": 7560,
- "error": 7561,
- "tours": 7562,
- "tier": 7563,
- "plenty": 7564,
- "arrangements": 7565,
- "talks": 7566,
- "trapped": 7567,
- "excited": 7568,
- "sank": 7569,
- "ho": 7570,
- "athens": 7571,
- "1872": 7572,
- "denver": 7573,
- "welfare": 7574,
- "suburb": 7575,
- "athletes": 7576,
- "trick": 7577,
- "diverse": 7578,
- "belly": 7579,
- "exclusively": 7580,
- "yelled": 7581,
- "1868": 7582,
- "##med": 7583,
- "conversion": 7584,
- "##ette": 7585,
- "1874": 7586,
- "internationally": 7587,
- "computers": 7588,
- "conductor": 7589,
- "abilities": 7590,
- "sensitive": 7591,
- "hello": 7592,
- "dispute": 7593,
- "measured": 7594,
- "globe": 7595,
- "rocket": 7596,
- "prices": 7597,
- "amsterdam": 7598,
- "flights": 7599,
- "tigers": 7600,
- "inn": 7601,
- "municipalities": 7602,
- "emotion": 7603,
- "references": 7604,
- "3d": 7605,
- "##mus": 7606,
- "explains": 7607,
- "airlines": 7608,
- "manufactured": 7609,
- "pm": 7610,
- "archaeological": 7611,
- "1873": 7612,
- "interpretation": 7613,
- "devon": 7614,
- "comment": 7615,
- "##ites": 7616,
- "settlements": 7617,
- "kissing": 7618,
- "absolute": 7619,
- "improvement": 7620,
- "suite": 7621,
- "impressed": 7622,
- "barcelona": 7623,
- "sullivan": 7624,
- "jefferson": 7625,
- "towers": 7626,
- "jesse": 7627,
- "julie": 7628,
- "##tin": 7629,
- "##lu": 7630,
- "grandson": 7631,
- "hi": 7632,
- "gauge": 7633,
- "regard": 7634,
- "rings": 7635,
- "interviews": 7636,
- "trace": 7637,
- "raymond": 7638,
- "thumb": 7639,
- "departments": 7640,
- "burns": 7641,
- "serial": 7642,
- "bulgarian": 7643,
- "scores": 7644,
- "demonstrated": 7645,
- "##ix": 7646,
- "1866": 7647,
- "kyle": 7648,
- "alberta": 7649,
- "underneath": 7650,
- "romanized": 7651,
- "##ward": 7652,
- "relieved": 7653,
- "acquisition": 7654,
- "phrase": 7655,
- "cliff": 7656,
- "reveals": 7657,
- "han": 7658,
- "cuts": 7659,
- "merger": 7660,
- "custom": 7661,
- "##dar": 7662,
- "nee": 7663,
- "gilbert": 7664,
- "graduation": 7665,
- "##nts": 7666,
- "assessment": 7667,
- "cafe": 7668,
- "difficulty": 7669,
- "demands": 7670,
- "swung": 7671,
- "democrat": 7672,
- "jennifer": 7673,
- "commons": 7674,
- "1940s": 7675,
- "grove": 7676,
- "##yo": 7677,
- "completing": 7678,
- "focuses": 7679,
- "sum": 7680,
- "substitute": 7681,
- "bearing": 7682,
- "stretch": 7683,
- "reception": 7684,
- "##py": 7685,
- "reflected": 7686,
- "essentially": 7687,
- "destination": 7688,
- "pairs": 7689,
- "##ched": 7690,
- "survival": 7691,
- "resource": 7692,
- "##bach": 7693,
- "promoting": 7694,
- "doubles": 7695,
- "messages": 7696,
- "tear": 7697,
- "##down": 7698,
- "##fully": 7699,
- "parade": 7700,
- "florence": 7701,
- "harvey": 7702,
- "incumbent": 7703,
- "partial": 7704,
- "framework": 7705,
- "900": 7706,
- "pedro": 7707,
- "frozen": 7708,
- "procedure": 7709,
- "olivia": 7710,
- "controls": 7711,
- "##mic": 7712,
- "shelter": 7713,
- "personally": 7714,
- "temperatures": 7715,
- "##od": 7716,
- "brisbane": 7717,
- "tested": 7718,
- "sits": 7719,
- "marble": 7720,
- "comprehensive": 7721,
- "oxygen": 7722,
- "leonard": 7723,
- "##kov": 7724,
- "inaugural": 7725,
- "iranian": 7726,
- "referring": 7727,
- "quarters": 7728,
- "attitude": 7729,
- "##ivity": 7730,
- "mainstream": 7731,
- "lined": 7732,
- "mars": 7733,
- "dakota": 7734,
- "norfolk": 7735,
- "unsuccessful": 7736,
- "##°": 7737,
- "explosion": 7738,
- "helicopter": 7739,
- "congressional": 7740,
- "##sing": 7741,
- "inspector": 7742,
- "bitch": 7743,
- "seal": 7744,
- "departed": 7745,
- "divine": 7746,
- "##ters": 7747,
- "coaching": 7748,
- "examination": 7749,
- "punishment": 7750,
- "manufacturer": 7751,
- "sink": 7752,
- "columns": 7753,
- "unincorporated": 7754,
- "signals": 7755,
- "nevada": 7756,
- "squeezed": 7757,
- "dylan": 7758,
- "dining": 7759,
- "photos": 7760,
- "martial": 7761,
- "manuel": 7762,
- "eighteen": 7763,
- "elevator": 7764,
- "brushed": 7765,
- "plates": 7766,
- "ministers": 7767,
- "ivy": 7768,
- "congregation": 7769,
- "##len": 7770,
- "slept": 7771,
- "specialized": 7772,
- "taxes": 7773,
- "curve": 7774,
- "restricted": 7775,
- "negotiations": 7776,
- "likes": 7777,
- "statistical": 7778,
- "arnold": 7779,
- "inspiration": 7780,
- "execution": 7781,
- "bold": 7782,
- "intermediate": 7783,
- "significance": 7784,
- "margin": 7785,
- "ruler": 7786,
- "wheels": 7787,
- "gothic": 7788,
- "intellectual": 7789,
- "dependent": 7790,
- "listened": 7791,
- "eligible": 7792,
- "buses": 7793,
- "widow": 7794,
- "syria": 7795,
- "earn": 7796,
- "cincinnati": 7797,
- "collapsed": 7798,
- "recipient": 7799,
- "secrets": 7800,
- "accessible": 7801,
- "philippine": 7802,
- "maritime": 7803,
- "goddess": 7804,
- "clerk": 7805,
- "surrender": 7806,
- "breaks": 7807,
- "playoff": 7808,
- "database": 7809,
- "##ified": 7810,
- "##lon": 7811,
- "ideal": 7812,
- "beetle": 7813,
- "aspect": 7814,
- "soap": 7815,
- "regulation": 7816,
- "strings": 7817,
- "expand": 7818,
- "anglo": 7819,
- "shorter": 7820,
- "crosses": 7821,
- "retreat": 7822,
- "tough": 7823,
- "coins": 7824,
- "wallace": 7825,
- "directions": 7826,
- "pressing": 7827,
- "##oon": 7828,
- "shipping": 7829,
- "locomotives": 7830,
- "comparison": 7831,
- "topics": 7832,
- "nephew": 7833,
- "##mes": 7834,
- "distinction": 7835,
- "honors": 7836,
- "travelled": 7837,
- "sierra": 7838,
- "ibn": 7839,
- "##over": 7840,
- "fortress": 7841,
- "sa": 7842,
- "recognised": 7843,
- "carved": 7844,
- "1869": 7845,
- "clients": 7846,
- "##dan": 7847,
- "intent": 7848,
- "##mar": 7849,
- "coaches": 7850,
- "describing": 7851,
- "bread": 7852,
- "##ington": 7853,
- "beaten": 7854,
- "northwestern": 7855,
- "##ona": 7856,
- "merit": 7857,
- "youtube": 7858,
- "collapse": 7859,
- "challenges": 7860,
- "em": 7861,
- "historians": 7862,
- "objective": 7863,
- "submitted": 7864,
- "virus": 7865,
- "attacking": 7866,
- "drake": 7867,
- "assume": 7868,
- "##ere": 7869,
- "diseases": 7870,
- "marc": 7871,
- "stem": 7872,
- "leeds": 7873,
- "##cus": 7874,
- "##ab": 7875,
- "farming": 7876,
- "glasses": 7877,
- "##lock": 7878,
- "visits": 7879,
- "nowhere": 7880,
- "fellowship": 7881,
- "relevant": 7882,
- "carries": 7883,
- "restaurants": 7884,
- "experiments": 7885,
- "101": 7886,
- "constantly": 7887,
- "bases": 7888,
- "targets": 7889,
- "shah": 7890,
- "tenth": 7891,
- "opponents": 7892,
- "verse": 7893,
- "territorial": 7894,
- "##ira": 7895,
- "writings": 7896,
- "corruption": 7897,
- "##hs": 7898,
- "instruction": 7899,
- "inherited": 7900,
- "reverse": 7901,
- "emphasis": 7902,
- "##vic": 7903,
- "employee": 7904,
- "arch": 7905,
- "keeps": 7906,
- "rabbi": 7907,
- "watson": 7908,
- "payment": 7909,
- "uh": 7910,
- "##ala": 7911,
- "nancy": 7912,
- "##tre": 7913,
- "venice": 7914,
- "fastest": 7915,
- "sexy": 7916,
- "banned": 7917,
- "adrian": 7918,
- "properly": 7919,
- "ruth": 7920,
- "touchdown": 7921,
- "dollar": 7922,
- "boards": 7923,
- "metre": 7924,
- "circles": 7925,
- "edges": 7926,
- "favour": 7927,
- "comments": 7928,
- "ok": 7929,
- "travels": 7930,
- "liberation": 7931,
- "scattered": 7932,
- "firmly": 7933,
- "##ular": 7934,
- "holland": 7935,
- "permitted": 7936,
- "diesel": 7937,
- "kenya": 7938,
- "den": 7939,
- "originated": 7940,
- "##ral": 7941,
- "demons": 7942,
- "resumed": 7943,
- "dragged": 7944,
- "rider": 7945,
- "##rus": 7946,
- "servant": 7947,
- "blinked": 7948,
- "extend": 7949,
- "torn": 7950,
- "##ias": 7951,
- "##sey": 7952,
- "input": 7953,
- "meal": 7954,
- "everybody": 7955,
- "cylinder": 7956,
- "kinds": 7957,
- "camps": 7958,
- "##fe": 7959,
- "bullet": 7960,
- "logic": 7961,
- "##wn": 7962,
- "croatian": 7963,
- "evolved": 7964,
- "healthy": 7965,
- "fool": 7966,
- "chocolate": 7967,
- "wise": 7968,
- "preserve": 7969,
- "pradesh": 7970,
- "##ess": 7971,
- "respective": 7972,
- "1850": 7973,
- "##ew": 7974,
- "chicken": 7975,
- "artificial": 7976,
- "gross": 7977,
- "corresponding": 7978,
- "convicted": 7979,
- "cage": 7980,
- "caroline": 7981,
- "dialogue": 7982,
- "##dor": 7983,
- "narrative": 7984,
- "stranger": 7985,
- "mario": 7986,
- "br": 7987,
- "christianity": 7988,
- "failing": 7989,
- "trent": 7990,
- "commanding": 7991,
- "buddhist": 7992,
- "1848": 7993,
- "maurice": 7994,
- "focusing": 7995,
- "yale": 7996,
- "bike": 7997,
- "altitude": 7998,
- "##ering": 7999,
- "mouse": 8000,
- "revised": 8001,
- "##sley": 8002,
- "veteran": 8003,
- "##ig": 8004,
- "pulls": 8005,
- "theology": 8006,
- "crashed": 8007,
- "campaigns": 8008,
- "legion": 8009,
- "##ability": 8010,
- "drag": 8011,
- "excellence": 8012,
- "customer": 8013,
- "cancelled": 8014,
- "intensity": 8015,
- "excuse": 8016,
- "##lar": 8017,
- "liga": 8018,
- "participating": 8019,
- "contributing": 8020,
- "printing": 8021,
- "##burn": 8022,
- "variable": 8023,
- "##rk": 8024,
- "curious": 8025,
- "bin": 8026,
- "legacy": 8027,
- "renaissance": 8028,
- "##my": 8029,
- "symptoms": 8030,
- "binding": 8031,
- "vocalist": 8032,
- "dancer": 8033,
- "##nie": 8034,
- "grammar": 8035,
- "gospel": 8036,
- "democrats": 8037,
- "ya": 8038,
- "enters": 8039,
- "sc": 8040,
- "diplomatic": 8041,
- "hitler": 8042,
- "##ser": 8043,
- "clouds": 8044,
- "mathematical": 8045,
- "quit": 8046,
- "defended": 8047,
- "oriented": 8048,
- "##heim": 8049,
- "fundamental": 8050,
- "hardware": 8051,
- "impressive": 8052,
- "equally": 8053,
- "convince": 8054,
- "confederate": 8055,
- "guilt": 8056,
- "chuck": 8057,
- "sliding": 8058,
- "##ware": 8059,
- "magnetic": 8060,
- "narrowed": 8061,
- "petersburg": 8062,
- "bulgaria": 8063,
- "otto": 8064,
- "phd": 8065,
- "skill": 8066,
- "##ama": 8067,
- "reader": 8068,
- "hopes": 8069,
- "pitcher": 8070,
- "reservoir": 8071,
- "hearts": 8072,
- "automatically": 8073,
- "expecting": 8074,
- "mysterious": 8075,
- "bennett": 8076,
- "extensively": 8077,
- "imagined": 8078,
- "seeds": 8079,
- "monitor": 8080,
- "fix": 8081,
- "##ative": 8082,
- "journalism": 8083,
- "struggling": 8084,
- "signature": 8085,
- "ranch": 8086,
- "encounter": 8087,
- "photographer": 8088,
- "observation": 8089,
- "protests": 8090,
- "##pin": 8091,
- "influences": 8092,
- "##hr": 8093,
- "calendar": 8094,
- "##all": 8095,
- "cruz": 8096,
- "croatia": 8097,
- "locomotive": 8098,
- "hughes": 8099,
- "naturally": 8100,
- "shakespeare": 8101,
- "basement": 8102,
- "hook": 8103,
- "uncredited": 8104,
- "faded": 8105,
- "theories": 8106,
- "approaches": 8107,
- "dare": 8108,
- "phillips": 8109,
- "filling": 8110,
- "fury": 8111,
- "obama": 8112,
- "##ain": 8113,
- "efficient": 8114,
- "arc": 8115,
- "deliver": 8116,
- "min": 8117,
- "raid": 8118,
- "breeding": 8119,
- "inducted": 8120,
- "leagues": 8121,
- "efficiency": 8122,
- "axis": 8123,
- "montana": 8124,
- "eagles": 8125,
- "##ked": 8126,
- "supplied": 8127,
- "instructions": 8128,
- "karen": 8129,
- "picking": 8130,
- "indicating": 8131,
- "trap": 8132,
- "anchor": 8133,
- "practically": 8134,
- "christians": 8135,
- "tomb": 8136,
- "vary": 8137,
- "occasional": 8138,
- "electronics": 8139,
- "lords": 8140,
- "readers": 8141,
- "newcastle": 8142,
- "faint": 8143,
- "innovation": 8144,
- "collect": 8145,
- "situations": 8146,
- "engagement": 8147,
- "160": 8148,
- "claude": 8149,
- "mixture": 8150,
- "##feld": 8151,
- "peer": 8152,
- "tissue": 8153,
- "logo": 8154,
- "lean": 8155,
- "##ration": 8156,
- "°f": 8157,
- "floors": 8158,
- "##ven": 8159,
- "architects": 8160,
- "reducing": 8161,
- "##our": 8162,
- "##ments": 8163,
- "rope": 8164,
- "1859": 8165,
- "ottawa": 8166,
- "##har": 8167,
- "samples": 8168,
- "banking": 8169,
- "declaration": 8170,
- "proteins": 8171,
- "resignation": 8172,
- "francois": 8173,
- "saudi": 8174,
- "advocate": 8175,
- "exhibited": 8176,
- "armor": 8177,
- "twins": 8178,
- "divorce": 8179,
- "##ras": 8180,
- "abraham": 8181,
- "reviewed": 8182,
- "jo": 8183,
- "temporarily": 8184,
- "matrix": 8185,
- "physically": 8186,
- "pulse": 8187,
- "curled": 8188,
- "##ena": 8189,
- "difficulties": 8190,
- "bengal": 8191,
- "usage": 8192,
- "##ban": 8193,
- "annie": 8194,
- "riders": 8195,
- "certificate": 8196,
- "##pi": 8197,
- "holes": 8198,
- "warsaw": 8199,
- "distinctive": 8200,
- "jessica": 8201,
- "##mon": 8202,
- "mutual": 8203,
- "1857": 8204,
- "customs": 8205,
- "circular": 8206,
- "eugene": 8207,
- "removal": 8208,
- "loaded": 8209,
- "mere": 8210,
- "vulnerable": 8211,
- "depicted": 8212,
- "generations": 8213,
- "dame": 8214,
- "heir": 8215,
- "enormous": 8216,
- "lightly": 8217,
- "climbing": 8218,
- "pitched": 8219,
- "lessons": 8220,
- "pilots": 8221,
- "nepal": 8222,
- "ram": 8223,
- "google": 8224,
- "preparing": 8225,
- "brad": 8226,
- "louise": 8227,
- "renowned": 8228,
- "##₂": 8229,
- "liam": 8230,
- "##ably": 8231,
- "plaza": 8232,
- "shaw": 8233,
- "sophie": 8234,
- "brilliant": 8235,
- "bills": 8236,
- "##bar": 8237,
- "##nik": 8238,
- "fucking": 8239,
- "mainland": 8240,
- "server": 8241,
- "pleasant": 8242,
- "seized": 8243,
- "veterans": 8244,
- "jerked": 8245,
- "fail": 8246,
- "beta": 8247,
- "brush": 8248,
- "radiation": 8249,
- "stored": 8250,
- "warmth": 8251,
- "southeastern": 8252,
- "nate": 8253,
- "sin": 8254,
- "raced": 8255,
- "berkeley": 8256,
- "joke": 8257,
- "athlete": 8258,
- "designation": 8259,
- "trunk": 8260,
- "##low": 8261,
- "roland": 8262,
- "qualification": 8263,
- "archives": 8264,
- "heels": 8265,
- "artwork": 8266,
- "receives": 8267,
- "judicial": 8268,
- "reserves": 8269,
- "##bed": 8270,
- "woke": 8271,
- "installation": 8272,
- "abu": 8273,
- "floating": 8274,
- "fake": 8275,
- "lesser": 8276,
- "excitement": 8277,
- "interface": 8278,
- "concentrated": 8279,
- "addressed": 8280,
- "characteristic": 8281,
- "amanda": 8282,
- "saxophone": 8283,
- "monk": 8284,
- "auto": 8285,
- "##bus": 8286,
- "releasing": 8287,
- "egg": 8288,
- "dies": 8289,
- "interaction": 8290,
- "defender": 8291,
- "ce": 8292,
- "outbreak": 8293,
- "glory": 8294,
- "loving": 8295,
- "##bert": 8296,
- "sequel": 8297,
- "consciousness": 8298,
- "http": 8299,
- "awake": 8300,
- "ski": 8301,
- "enrolled": 8302,
- "##ress": 8303,
- "handling": 8304,
- "rookie": 8305,
- "brow": 8306,
- "somebody": 8307,
- "biography": 8308,
- "warfare": 8309,
- "amounts": 8310,
- "contracts": 8311,
- "presentation": 8312,
- "fabric": 8313,
- "dissolved": 8314,
- "challenged": 8315,
- "meter": 8316,
- "psychological": 8317,
- "lt": 8318,
- "elevated": 8319,
- "rally": 8320,
- "accurate": 8321,
- "##tha": 8322,
- "hospitals": 8323,
- "undergraduate": 8324,
- "specialist": 8325,
- "venezuela": 8326,
- "exhibit": 8327,
- "shed": 8328,
- "nursing": 8329,
- "protestant": 8330,
- "fluid": 8331,
- "structural": 8332,
- "footage": 8333,
- "jared": 8334,
- "consistent": 8335,
- "prey": 8336,
- "##ska": 8337,
- "succession": 8338,
- "reflect": 8339,
- "exile": 8340,
- "lebanon": 8341,
- "wiped": 8342,
- "suspect": 8343,
- "shanghai": 8344,
- "resting": 8345,
- "integration": 8346,
- "preservation": 8347,
- "marvel": 8348,
- "variant": 8349,
- "pirates": 8350,
- "sheep": 8351,
- "rounded": 8352,
- "capita": 8353,
- "sailing": 8354,
- "colonies": 8355,
- "manuscript": 8356,
- "deemed": 8357,
- "variations": 8358,
- "clarke": 8359,
- "functional": 8360,
- "emerging": 8361,
- "boxing": 8362,
- "relaxed": 8363,
- "curse": 8364,
- "azerbaijan": 8365,
- "heavyweight": 8366,
- "nickname": 8367,
- "editorial": 8368,
- "rang": 8369,
- "grid": 8370,
- "tightened": 8371,
- "earthquake": 8372,
- "flashed": 8373,
- "miguel": 8374,
- "rushing": 8375,
- "##ches": 8376,
- "improvements": 8377,
- "boxes": 8378,
- "brooks": 8379,
- "180": 8380,
- "consumption": 8381,
- "molecular": 8382,
- "felix": 8383,
- "societies": 8384,
- "repeatedly": 8385,
- "variation": 8386,
- "aids": 8387,
- "civic": 8388,
- "graphics": 8389,
- "professionals": 8390,
- "realm": 8391,
- "autonomous": 8392,
- "receiver": 8393,
- "delayed": 8394,
- "workshop": 8395,
- "militia": 8396,
- "chairs": 8397,
- "trump": 8398,
- "canyon": 8399,
- "##point": 8400,
- "harsh": 8401,
- "extending": 8402,
- "lovely": 8403,
- "happiness": 8404,
- "##jan": 8405,
- "stake": 8406,
- "eyebrows": 8407,
- "embassy": 8408,
- "wellington": 8409,
- "hannah": 8410,
- "##ella": 8411,
- "sony": 8412,
- "corners": 8413,
- "bishops": 8414,
- "swear": 8415,
- "cloth": 8416,
- "contents": 8417,
- "xi": 8418,
- "namely": 8419,
- "commenced": 8420,
- "1854": 8421,
- "stanford": 8422,
- "nashville": 8423,
- "courage": 8424,
- "graphic": 8425,
- "commitment": 8426,
- "garrison": 8427,
- "##bin": 8428,
- "hamlet": 8429,
- "clearing": 8430,
- "rebels": 8431,
- "attraction": 8432,
- "literacy": 8433,
- "cooking": 8434,
- "ruins": 8435,
- "temples": 8436,
- "jenny": 8437,
- "humanity": 8438,
- "celebrate": 8439,
- "hasn": 8440,
- "freight": 8441,
- "sixty": 8442,
- "rebel": 8443,
- "bastard": 8444,
- "##art": 8445,
- "newton": 8446,
- "##ada": 8447,
- "deer": 8448,
- "##ges": 8449,
- "##ching": 8450,
- "smiles": 8451,
- "delaware": 8452,
- "singers": 8453,
- "##ets": 8454,
- "approaching": 8455,
- "assists": 8456,
- "flame": 8457,
- "##ph": 8458,
- "boulevard": 8459,
- "barrel": 8460,
- "planted": 8461,
- "##ome": 8462,
- "pursuit": 8463,
- "##sia": 8464,
- "consequences": 8465,
- "posts": 8466,
- "shallow": 8467,
- "invitation": 8468,
- "rode": 8469,
- "depot": 8470,
- "ernest": 8471,
- "kane": 8472,
- "rod": 8473,
- "concepts": 8474,
- "preston": 8475,
- "topic": 8476,
- "chambers": 8477,
- "striking": 8478,
- "blast": 8479,
- "arrives": 8480,
- "descendants": 8481,
- "montgomery": 8482,
- "ranges": 8483,
- "worlds": 8484,
- "##lay": 8485,
- "##ari": 8486,
- "span": 8487,
- "chaos": 8488,
- "praise": 8489,
- "##ag": 8490,
- "fewer": 8491,
- "1855": 8492,
- "sanctuary": 8493,
- "mud": 8494,
- "fbi": 8495,
- "##ions": 8496,
- "programmes": 8497,
- "maintaining": 8498,
- "unity": 8499,
- "harper": 8500,
- "bore": 8501,
- "handsome": 8502,
- "closure": 8503,
- "tournaments": 8504,
- "thunder": 8505,
- "nebraska": 8506,
- "linda": 8507,
- "facade": 8508,
- "puts": 8509,
- "satisfied": 8510,
- "argentine": 8511,
- "dale": 8512,
- "cork": 8513,
- "dome": 8514,
- "panama": 8515,
- "##yl": 8516,
- "1858": 8517,
- "tasks": 8518,
- "experts": 8519,
- "##ates": 8520,
- "feeding": 8521,
- "equation": 8522,
- "##las": 8523,
- "##ida": 8524,
- "##tu": 8525,
- "engage": 8526,
- "bryan": 8527,
- "##ax": 8528,
- "um": 8529,
- "quartet": 8530,
- "melody": 8531,
- "disbanded": 8532,
- "sheffield": 8533,
- "blocked": 8534,
- "gasped": 8535,
- "delay": 8536,
- "kisses": 8537,
- "maggie": 8538,
- "connects": 8539,
- "##non": 8540,
- "sts": 8541,
- "poured": 8542,
- "creator": 8543,
- "publishers": 8544,
- "##we": 8545,
- "guided": 8546,
- "ellis": 8547,
- "extinct": 8548,
- "hug": 8549,
- "gaining": 8550,
- "##ord": 8551,
- "complicated": 8552,
- "##bility": 8553,
- "poll": 8554,
- "clenched": 8555,
- "investigate": 8556,
- "##use": 8557,
- "thereby": 8558,
- "quantum": 8559,
- "spine": 8560,
- "cdp": 8561,
- "humor": 8562,
- "kills": 8563,
- "administered": 8564,
- "semifinals": 8565,
- "##du": 8566,
- "encountered": 8567,
- "ignore": 8568,
- "##bu": 8569,
- "commentary": 8570,
- "##maker": 8571,
- "bother": 8572,
- "roosevelt": 8573,
- "140": 8574,
- "plains": 8575,
- "halfway": 8576,
- "flowing": 8577,
- "cultures": 8578,
- "crack": 8579,
- "imprisoned": 8580,
- "neighboring": 8581,
- "airline": 8582,
- "##ses": 8583,
- "##view": 8584,
- "##mate": 8585,
- "##ec": 8586,
- "gather": 8587,
- "wolves": 8588,
- "marathon": 8589,
- "transformed": 8590,
- "##ill": 8591,
- "cruise": 8592,
- "organisations": 8593,
- "carol": 8594,
- "punch": 8595,
- "exhibitions": 8596,
- "numbered": 8597,
- "alarm": 8598,
- "ratings": 8599,
- "daddy": 8600,
- "silently": 8601,
- "##stein": 8602,
- "queens": 8603,
- "colours": 8604,
- "impression": 8605,
- "guidance": 8606,
- "liu": 8607,
- "tactical": 8608,
- "##rat": 8609,
- "marshal": 8610,
- "della": 8611,
- "arrow": 8612,
- "##ings": 8613,
- "rested": 8614,
- "feared": 8615,
- "tender": 8616,
- "owns": 8617,
- "bitter": 8618,
- "advisor": 8619,
- "escort": 8620,
- "##ides": 8621,
- "spare": 8622,
- "farms": 8623,
- "grants": 8624,
- "##ene": 8625,
- "dragons": 8626,
- "encourage": 8627,
- "colleagues": 8628,
- "cameras": 8629,
- "##und": 8630,
- "sucked": 8631,
- "pile": 8632,
- "spirits": 8633,
- "prague": 8634,
- "statements": 8635,
- "suspension": 8636,
- "landmark": 8637,
- "fence": 8638,
- "torture": 8639,
- "recreation": 8640,
- "bags": 8641,
- "permanently": 8642,
- "survivors": 8643,
- "pond": 8644,
- "spy": 8645,
- "predecessor": 8646,
- "bombing": 8647,
- "coup": 8648,
- "##og": 8649,
- "protecting": 8650,
- "transformation": 8651,
- "glow": 8652,
- "##lands": 8653,
- "##book": 8654,
- "dug": 8655,
- "priests": 8656,
- "andrea": 8657,
- "feat": 8658,
- "barn": 8659,
- "jumping": 8660,
- "##chen": 8661,
- "##ologist": 8662,
- "##con": 8663,
- "casualties": 8664,
- "stern": 8665,
- "auckland": 8666,
- "pipe": 8667,
- "serie": 8668,
- "revealing": 8669,
- "ba": 8670,
- "##bel": 8671,
- "trevor": 8672,
- "mercy": 8673,
- "spectrum": 8674,
- "yang": 8675,
- "consist": 8676,
- "governing": 8677,
- "collaborated": 8678,
- "possessed": 8679,
- "epic": 8680,
- "comprises": 8681,
- "blew": 8682,
- "shane": 8683,
- "##ack": 8684,
- "lopez": 8685,
- "honored": 8686,
- "magical": 8687,
- "sacrifice": 8688,
- "judgment": 8689,
- "perceived": 8690,
- "hammer": 8691,
- "mtv": 8692,
- "baronet": 8693,
- "tune": 8694,
- "das": 8695,
- "missionary": 8696,
- "sheets": 8697,
- "350": 8698,
- "neutral": 8699,
- "oral": 8700,
- "threatening": 8701,
- "attractive": 8702,
- "shade": 8703,
- "aims": 8704,
- "seminary": 8705,
- "##master": 8706,
- "estates": 8707,
- "1856": 8708,
- "michel": 8709,
- "wounds": 8710,
- "refugees": 8711,
- "manufacturers": 8712,
- "##nic": 8713,
- "mercury": 8714,
- "syndrome": 8715,
- "porter": 8716,
- "##iya": 8717,
- "##din": 8718,
- "hamburg": 8719,
- "identification": 8720,
- "upstairs": 8721,
- "purse": 8722,
- "widened": 8723,
- "pause": 8724,
- "cared": 8725,
- "breathed": 8726,
- "affiliate": 8727,
- "santiago": 8728,
- "prevented": 8729,
- "celtic": 8730,
- "fisher": 8731,
- "125": 8732,
- "recruited": 8733,
- "byzantine": 8734,
- "reconstruction": 8735,
- "farther": 8736,
- "##mp": 8737,
- "diet": 8738,
- "sake": 8739,
- "au": 8740,
- "spite": 8741,
- "sensation": 8742,
- "##ert": 8743,
- "blank": 8744,
- "separation": 8745,
- "105": 8746,
- "##hon": 8747,
- "vladimir": 8748,
- "armies": 8749,
- "anime": 8750,
- "##lie": 8751,
- "accommodate": 8752,
- "orbit": 8753,
- "cult": 8754,
- "sofia": 8755,
- "archive": 8756,
- "##ify": 8757,
- "##box": 8758,
- "founders": 8759,
- "sustained": 8760,
- "disorder": 8761,
- "honours": 8762,
- "northeastern": 8763,
- "mia": 8764,
- "crops": 8765,
- "violet": 8766,
- "threats": 8767,
- "blanket": 8768,
- "fires": 8769,
- "canton": 8770,
- "followers": 8771,
- "southwestern": 8772,
- "prototype": 8773,
- "voyage": 8774,
- "assignment": 8775,
- "altered": 8776,
- "moderate": 8777,
- "protocol": 8778,
- "pistol": 8779,
- "##eo": 8780,
- "questioned": 8781,
- "brass": 8782,
- "lifting": 8783,
- "1852": 8784,
- "math": 8785,
- "authored": 8786,
- "##ual": 8787,
- "doug": 8788,
- "dimensional": 8789,
- "dynamic": 8790,
- "##san": 8791,
- "1851": 8792,
- "pronounced": 8793,
- "grateful": 8794,
- "quest": 8795,
- "uncomfortable": 8796,
- "boom": 8797,
- "presidency": 8798,
- "stevens": 8799,
- "relating": 8800,
- "politicians": 8801,
- "chen": 8802,
- "barrier": 8803,
- "quinn": 8804,
- "diana": 8805,
- "mosque": 8806,
- "tribal": 8807,
- "cheese": 8808,
- "palmer": 8809,
- "portions": 8810,
- "sometime": 8811,
- "chester": 8812,
- "treasure": 8813,
- "wu": 8814,
- "bend": 8815,
- "download": 8816,
- "millions": 8817,
- "reforms": 8818,
- "registration": 8819,
- "##osa": 8820,
- "consequently": 8821,
- "monitoring": 8822,
- "ate": 8823,
- "preliminary": 8824,
- "brandon": 8825,
- "invented": 8826,
- "ps": 8827,
- "eaten": 8828,
- "exterior": 8829,
- "intervention": 8830,
- "ports": 8831,
- "documented": 8832,
- "log": 8833,
- "displays": 8834,
- "lecture": 8835,
- "sally": 8836,
- "favourite": 8837,
- "##itz": 8838,
- "vermont": 8839,
- "lo": 8840,
- "invisible": 8841,
- "isle": 8842,
- "breed": 8843,
- "##ator": 8844,
- "journalists": 8845,
- "relay": 8846,
- "speaks": 8847,
- "backward": 8848,
- "explore": 8849,
- "midfielder": 8850,
- "actively": 8851,
- "stefan": 8852,
- "procedures": 8853,
- "cannon": 8854,
- "blond": 8855,
- "kenneth": 8856,
- "centered": 8857,
- "servants": 8858,
- "chains": 8859,
- "libraries": 8860,
- "malcolm": 8861,
- "essex": 8862,
- "henri": 8863,
- "slavery": 8864,
- "##hal": 8865,
- "facts": 8866,
- "fairy": 8867,
- "coached": 8868,
- "cassie": 8869,
- "cats": 8870,
- "washed": 8871,
- "cop": 8872,
- "##fi": 8873,
- "announcement": 8874,
- "item": 8875,
- "2000s": 8876,
- "vinyl": 8877,
- "activated": 8878,
- "marco": 8879,
- "frontier": 8880,
- "growled": 8881,
- "curriculum": 8882,
- "##das": 8883,
- "loyal": 8884,
- "accomplished": 8885,
- "leslie": 8886,
- "ritual": 8887,
- "kenny": 8888,
- "##00": 8889,
- "vii": 8890,
- "napoleon": 8891,
- "hollow": 8892,
- "hybrid": 8893,
- "jungle": 8894,
- "stationed": 8895,
- "friedrich": 8896,
- "counted": 8897,
- "##ulated": 8898,
- "platinum": 8899,
- "theatrical": 8900,
- "seated": 8901,
- "col": 8902,
- "rubber": 8903,
- "glen": 8904,
- "1840": 8905,
- "diversity": 8906,
- "healing": 8907,
- "extends": 8908,
- "id": 8909,
- "provisions": 8910,
- "administrator": 8911,
- "columbus": 8912,
- "##oe": 8913,
- "tributary": 8914,
- "te": 8915,
- "assured": 8916,
- "org": 8917,
- "##uous": 8918,
- "prestigious": 8919,
- "examined": 8920,
- "lectures": 8921,
- "grammy": 8922,
- "ronald": 8923,
- "associations": 8924,
- "bailey": 8925,
- "allan": 8926,
- "essays": 8927,
- "flute": 8928,
- "believing": 8929,
- "consultant": 8930,
- "proceedings": 8931,
- "travelling": 8932,
- "1853": 8933,
- "kit": 8934,
- "kerala": 8935,
- "yugoslavia": 8936,
- "buddy": 8937,
- "methodist": 8938,
- "##ith": 8939,
- "burial": 8940,
- "centres": 8941,
- "batman": 8942,
- "##nda": 8943,
- "discontinued": 8944,
- "bo": 8945,
- "dock": 8946,
- "stockholm": 8947,
- "lungs": 8948,
- "severely": 8949,
- "##nk": 8950,
- "citing": 8951,
- "manga": 8952,
- "##ugh": 8953,
- "steal": 8954,
- "mumbai": 8955,
- "iraqi": 8956,
- "robot": 8957,
- "celebrity": 8958,
- "bride": 8959,
- "broadcasts": 8960,
- "abolished": 8961,
- "pot": 8962,
- "joel": 8963,
- "overhead": 8964,
- "franz": 8965,
- "packed": 8966,
- "reconnaissance": 8967,
- "johann": 8968,
- "acknowledged": 8969,
- "introduce": 8970,
- "handled": 8971,
- "doctorate": 8972,
- "developments": 8973,
- "drinks": 8974,
- "alley": 8975,
- "palestine": 8976,
- "##nis": 8977,
- "##aki": 8978,
- "proceeded": 8979,
- "recover": 8980,
- "bradley": 8981,
- "grain": 8982,
- "patch": 8983,
- "afford": 8984,
- "infection": 8985,
- "nationalist": 8986,
- "legendary": 8987,
- "##ath": 8988,
- "interchange": 8989,
- "virtually": 8990,
- "gen": 8991,
- "gravity": 8992,
- "exploration": 8993,
- "amber": 8994,
- "vital": 8995,
- "wishes": 8996,
- "powell": 8997,
- "doctrine": 8998,
- "elbow": 8999,
- "screenplay": 9000,
- "##bird": 9001,
- "contribute": 9002,
- "indonesian": 9003,
- "pet": 9004,
- "creates": 9005,
- "##com": 9006,
- "enzyme": 9007,
- "kylie": 9008,
- "discipline": 9009,
- "drops": 9010,
- "manila": 9011,
- "hunger": 9012,
- "##ien": 9013,
- "layers": 9014,
- "suffer": 9015,
- "fever": 9016,
- "bits": 9017,
- "monica": 9018,
- "keyboard": 9019,
- "manages": 9020,
- "##hood": 9021,
- "searched": 9022,
- "appeals": 9023,
- "##bad": 9024,
- "testament": 9025,
- "grande": 9026,
- "reid": 9027,
- "##war": 9028,
- "beliefs": 9029,
- "congo": 9030,
- "##ification": 9031,
- "##dia": 9032,
- "si": 9033,
- "requiring": 9034,
- "##via": 9035,
- "casey": 9036,
- "1849": 9037,
- "regret": 9038,
- "streak": 9039,
- "rape": 9040,
- "depends": 9041,
- "syrian": 9042,
- "sprint": 9043,
- "pound": 9044,
- "tourists": 9045,
- "upcoming": 9046,
- "pub": 9047,
- "##xi": 9048,
- "tense": 9049,
- "##els": 9050,
- "practiced": 9051,
- "echo": 9052,
- "nationwide": 9053,
- "guild": 9054,
- "motorcycle": 9055,
- "liz": 9056,
- "##zar": 9057,
- "chiefs": 9058,
- "desired": 9059,
- "elena": 9060,
- "bye": 9061,
- "precious": 9062,
- "absorbed": 9063,
- "relatives": 9064,
- "booth": 9065,
- "pianist": 9066,
- "##mal": 9067,
- "citizenship": 9068,
- "exhausted": 9069,
- "wilhelm": 9070,
- "##ceae": 9071,
- "##hed": 9072,
- "noting": 9073,
- "quarterback": 9074,
- "urge": 9075,
- "hectares": 9076,
- "##gue": 9077,
- "ace": 9078,
- "holly": 9079,
- "##tal": 9080,
- "blonde": 9081,
- "davies": 9082,
- "parked": 9083,
- "sustainable": 9084,
- "stepping": 9085,
- "twentieth": 9086,
- "airfield": 9087,
- "galaxy": 9088,
- "nest": 9089,
- "chip": 9090,
- "##nell": 9091,
- "tan": 9092,
- "shaft": 9093,
- "paulo": 9094,
- "requirement": 9095,
- "##zy": 9096,
- "paradise": 9097,
- "tobacco": 9098,
- "trans": 9099,
- "renewed": 9100,
- "vietnamese": 9101,
- "##cker": 9102,
- "##ju": 9103,
- "suggesting": 9104,
- "catching": 9105,
- "holmes": 9106,
- "enjoying": 9107,
- "md": 9108,
- "trips": 9109,
- "colt": 9110,
- "holder": 9111,
- "butterfly": 9112,
- "nerve": 9113,
- "reformed": 9114,
- "cherry": 9115,
- "bowling": 9116,
- "trailer": 9117,
- "carriage": 9118,
- "goodbye": 9119,
- "appreciate": 9120,
- "toy": 9121,
- "joshua": 9122,
- "interactive": 9123,
- "enabled": 9124,
- "involve": 9125,
- "##kan": 9126,
- "collar": 9127,
- "determination": 9128,
- "bunch": 9129,
- "facebook": 9130,
- "recall": 9131,
- "shorts": 9132,
- "superintendent": 9133,
- "episcopal": 9134,
- "frustration": 9135,
- "giovanni": 9136,
- "nineteenth": 9137,
- "laser": 9138,
- "privately": 9139,
- "array": 9140,
- "circulation": 9141,
- "##ovic": 9142,
- "armstrong": 9143,
- "deals": 9144,
- "painful": 9145,
- "permit": 9146,
- "discrimination": 9147,
- "##wi": 9148,
- "aires": 9149,
- "retiring": 9150,
- "cottage": 9151,
- "ni": 9152,
- "##sta": 9153,
- "horizon": 9154,
- "ellen": 9155,
- "jamaica": 9156,
- "ripped": 9157,
- "fernando": 9158,
- "chapters": 9159,
- "playstation": 9160,
- "patron": 9161,
- "lecturer": 9162,
- "navigation": 9163,
- "behaviour": 9164,
- "genes": 9165,
- "georgian": 9166,
- "export": 9167,
- "solomon": 9168,
- "rivals": 9169,
- "swift": 9170,
- "seventeen": 9171,
- "rodriguez": 9172,
- "princeton": 9173,
- "independently": 9174,
- "sox": 9175,
- "1847": 9176,
- "arguing": 9177,
- "entity": 9178,
- "casting": 9179,
- "hank": 9180,
- "criteria": 9181,
- "oakland": 9182,
- "geographic": 9183,
- "milwaukee": 9184,
- "reflection": 9185,
- "expanding": 9186,
- "conquest": 9187,
- "dubbed": 9188,
- "##tv": 9189,
- "halt": 9190,
- "brave": 9191,
- "brunswick": 9192,
- "doi": 9193,
- "arched": 9194,
- "curtis": 9195,
- "divorced": 9196,
- "predominantly": 9197,
- "somerset": 9198,
- "streams": 9199,
- "ugly": 9200,
- "zoo": 9201,
- "horrible": 9202,
- "curved": 9203,
- "buenos": 9204,
- "fierce": 9205,
- "dictionary": 9206,
- "vector": 9207,
- "theological": 9208,
- "unions": 9209,
- "handful": 9210,
- "stability": 9211,
- "chan": 9212,
- "punjab": 9213,
- "segments": 9214,
- "##lly": 9215,
- "altar": 9216,
- "ignoring": 9217,
- "gesture": 9218,
- "monsters": 9219,
- "pastor": 9220,
- "##stone": 9221,
- "thighs": 9222,
- "unexpected": 9223,
- "operators": 9224,
- "abruptly": 9225,
- "coin": 9226,
- "compiled": 9227,
- "associates": 9228,
- "improving": 9229,
- "migration": 9230,
- "pin": 9231,
- "##ose": 9232,
- "compact": 9233,
- "collegiate": 9234,
- "reserved": 9235,
- "##urs": 9236,
- "quarterfinals": 9237,
- "roster": 9238,
- "restore": 9239,
- "assembled": 9240,
- "hurry": 9241,
- "oval": 9242,
- "##cies": 9243,
- "1846": 9244,
- "flags": 9245,
- "martha": 9246,
- "##del": 9247,
- "victories": 9248,
- "sharply": 9249,
- "##rated": 9250,
- "argues": 9251,
- "deadly": 9252,
- "neo": 9253,
- "drawings": 9254,
- "symbols": 9255,
- "performer": 9256,
- "##iel": 9257,
- "griffin": 9258,
- "restrictions": 9259,
- "editing": 9260,
- "andrews": 9261,
- "java": 9262,
- "journals": 9263,
- "arabia": 9264,
- "compositions": 9265,
- "dee": 9266,
- "pierce": 9267,
- "removing": 9268,
- "hindi": 9269,
- "casino": 9270,
- "runway": 9271,
- "civilians": 9272,
- "minds": 9273,
- "nasa": 9274,
- "hotels": 9275,
- "##zation": 9276,
- "refuge": 9277,
- "rent": 9278,
- "retain": 9279,
- "potentially": 9280,
- "conferences": 9281,
- "suburban": 9282,
- "conducting": 9283,
- "##tto": 9284,
- "##tions": 9285,
- "##tle": 9286,
- "descended": 9287,
- "massacre": 9288,
- "##cal": 9289,
- "ammunition": 9290,
- "terrain": 9291,
- "fork": 9292,
- "souls": 9293,
- "counts": 9294,
- "chelsea": 9295,
- "durham": 9296,
- "drives": 9297,
- "cab": 9298,
- "##bank": 9299,
- "perth": 9300,
- "realizing": 9301,
- "palestinian": 9302,
- "finn": 9303,
- "simpson": 9304,
- "##dal": 9305,
- "betty": 9306,
- "##ule": 9307,
- "moreover": 9308,
- "particles": 9309,
- "cardinals": 9310,
- "tent": 9311,
- "evaluation": 9312,
- "extraordinary": 9313,
- "##oid": 9314,
- "inscription": 9315,
- "##works": 9316,
- "wednesday": 9317,
- "chloe": 9318,
- "maintains": 9319,
- "panels": 9320,
- "ashley": 9321,
- "trucks": 9322,
- "##nation": 9323,
- "cluster": 9324,
- "sunlight": 9325,
- "strikes": 9326,
- "zhang": 9327,
- "##wing": 9328,
- "dialect": 9329,
- "canon": 9330,
- "##ap": 9331,
- "tucked": 9332,
- "##ws": 9333,
- "collecting": 9334,
- "##mas": 9335,
- "##can": 9336,
- "##sville": 9337,
- "maker": 9338,
- "quoted": 9339,
- "evan": 9340,
- "franco": 9341,
- "aria": 9342,
- "buying": 9343,
- "cleaning": 9344,
- "eva": 9345,
- "closet": 9346,
- "provision": 9347,
- "apollo": 9348,
- "clinic": 9349,
- "rat": 9350,
- "##ez": 9351,
- "necessarily": 9352,
- "ac": 9353,
- "##gle": 9354,
- "##ising": 9355,
- "venues": 9356,
- "flipped": 9357,
- "cent": 9358,
- "spreading": 9359,
- "trustees": 9360,
- "checking": 9361,
- "authorized": 9362,
- "##sco": 9363,
- "disappointed": 9364,
- "##ado": 9365,
- "notion": 9366,
- "duration": 9367,
- "trumpet": 9368,
- "hesitated": 9369,
- "topped": 9370,
- "brussels": 9371,
- "rolls": 9372,
- "theoretical": 9373,
- "hint": 9374,
- "define": 9375,
- "aggressive": 9376,
- "repeat": 9377,
- "wash": 9378,
- "peaceful": 9379,
- "optical": 9380,
- "width": 9381,
- "allegedly": 9382,
- "mcdonald": 9383,
- "strict": 9384,
- "copyright": 9385,
- "##illa": 9386,
- "investors": 9387,
- "mar": 9388,
- "jam": 9389,
- "witnesses": 9390,
- "sounding": 9391,
- "miranda": 9392,
- "michelle": 9393,
- "privacy": 9394,
- "hugo": 9395,
- "harmony": 9396,
- "##pp": 9397,
- "valid": 9398,
- "lynn": 9399,
- "glared": 9400,
- "nina": 9401,
- "102": 9402,
- "headquartered": 9403,
- "diving": 9404,
- "boarding": 9405,
- "gibson": 9406,
- "##ncy": 9407,
- "albanian": 9408,
- "marsh": 9409,
- "routine": 9410,
- "dealt": 9411,
- "enhanced": 9412,
- "er": 9413,
- "intelligent": 9414,
- "substance": 9415,
- "targeted": 9416,
- "enlisted": 9417,
- "discovers": 9418,
- "spinning": 9419,
- "observations": 9420,
- "pissed": 9421,
- "smoking": 9422,
- "rebecca": 9423,
- "capitol": 9424,
- "visa": 9425,
- "varied": 9426,
- "costume": 9427,
- "seemingly": 9428,
- "indies": 9429,
- "compensation": 9430,
- "surgeon": 9431,
- "thursday": 9432,
- "arsenal": 9433,
- "westminster": 9434,
- "suburbs": 9435,
- "rid": 9436,
- "anglican": 9437,
- "##ridge": 9438,
- "knots": 9439,
- "foods": 9440,
- "alumni": 9441,
- "lighter": 9442,
- "fraser": 9443,
- "whoever": 9444,
- "portal": 9445,
- "scandal": 9446,
- "##ray": 9447,
- "gavin": 9448,
- "advised": 9449,
- "instructor": 9450,
- "flooding": 9451,
- "terrorist": 9452,
- "##ale": 9453,
- "teenage": 9454,
- "interim": 9455,
- "senses": 9456,
- "duck": 9457,
- "teen": 9458,
- "thesis": 9459,
- "abby": 9460,
- "eager": 9461,
- "overcome": 9462,
- "##ile": 9463,
- "newport": 9464,
- "glenn": 9465,
- "rises": 9466,
- "shame": 9467,
- "##cc": 9468,
- "prompted": 9469,
- "priority": 9470,
- "forgot": 9471,
- "bomber": 9472,
- "nicolas": 9473,
- "protective": 9474,
- "360": 9475,
- "cartoon": 9476,
- "katherine": 9477,
- "breeze": 9478,
- "lonely": 9479,
- "trusted": 9480,
- "henderson": 9481,
- "richardson": 9482,
- "relax": 9483,
- "banner": 9484,
- "candy": 9485,
- "palms": 9486,
- "remarkable": 9487,
- "##rio": 9488,
- "legends": 9489,
- "cricketer": 9490,
- "essay": 9491,
- "ordained": 9492,
- "edmund": 9493,
- "rifles": 9494,
- "trigger": 9495,
- "##uri": 9496,
- "##away": 9497,
- "sail": 9498,
- "alert": 9499,
- "1830": 9500,
- "audiences": 9501,
- "penn": 9502,
- "sussex": 9503,
- "siblings": 9504,
- "pursued": 9505,
- "indianapolis": 9506,
- "resist": 9507,
- "rosa": 9508,
- "consequence": 9509,
- "succeed": 9510,
- "avoided": 9511,
- "1845": 9512,
- "##ulation": 9513,
- "inland": 9514,
- "##tie": 9515,
- "##nna": 9516,
- "counsel": 9517,
- "profession": 9518,
- "chronicle": 9519,
- "hurried": 9520,
- "##una": 9521,
- "eyebrow": 9522,
- "eventual": 9523,
- "bleeding": 9524,
- "innovative": 9525,
- "cure": 9526,
- "##dom": 9527,
- "committees": 9528,
- "accounting": 9529,
- "con": 9530,
- "scope": 9531,
- "hardy": 9532,
- "heather": 9533,
- "tenor": 9534,
- "gut": 9535,
- "herald": 9536,
- "codes": 9537,
- "tore": 9538,
- "scales": 9539,
- "wagon": 9540,
- "##oo": 9541,
- "luxury": 9542,
- "tin": 9543,
- "prefer": 9544,
- "fountain": 9545,
- "triangle": 9546,
- "bonds": 9547,
- "darling": 9548,
- "convoy": 9549,
- "dried": 9550,
- "traced": 9551,
- "beings": 9552,
- "troy": 9553,
- "accidentally": 9554,
- "slam": 9555,
- "findings": 9556,
- "smelled": 9557,
- "joey": 9558,
- "lawyers": 9559,
- "outcome": 9560,
- "steep": 9561,
- "bosnia": 9562,
- "configuration": 9563,
- "shifting": 9564,
- "toll": 9565,
- "brook": 9566,
- "performers": 9567,
- "lobby": 9568,
- "philosophical": 9569,
- "construct": 9570,
- "shrine": 9571,
- "aggregate": 9572,
- "boot": 9573,
- "cox": 9574,
- "phenomenon": 9575,
- "savage": 9576,
- "insane": 9577,
- "solely": 9578,
- "reynolds": 9579,
- "lifestyle": 9580,
- "##ima": 9581,
- "nationally": 9582,
- "holdings": 9583,
- "consideration": 9584,
- "enable": 9585,
- "edgar": 9586,
- "mo": 9587,
- "mama": 9588,
- "##tein": 9589,
- "fights": 9590,
- "relegation": 9591,
- "chances": 9592,
- "atomic": 9593,
- "hub": 9594,
- "conjunction": 9595,
- "awkward": 9596,
- "reactions": 9597,
- "currency": 9598,
- "finale": 9599,
- "kumar": 9600,
- "underwent": 9601,
- "steering": 9602,
- "elaborate": 9603,
- "gifts": 9604,
- "comprising": 9605,
- "melissa": 9606,
- "veins": 9607,
- "reasonable": 9608,
- "sunshine": 9609,
- "chi": 9610,
- "solve": 9611,
- "trails": 9612,
- "inhabited": 9613,
- "elimination": 9614,
- "ethics": 9615,
- "huh": 9616,
- "ana": 9617,
- "molly": 9618,
- "consent": 9619,
- "apartments": 9620,
- "layout": 9621,
- "marines": 9622,
- "##ces": 9623,
- "hunters": 9624,
- "bulk": 9625,
- "##oma": 9626,
- "hometown": 9627,
- "##wall": 9628,
- "##mont": 9629,
- "cracked": 9630,
- "reads": 9631,
- "neighbouring": 9632,
- "withdrawn": 9633,
- "admission": 9634,
- "wingspan": 9635,
- "damned": 9636,
- "anthology": 9637,
- "lancashire": 9638,
- "brands": 9639,
- "batting": 9640,
- "forgive": 9641,
- "cuban": 9642,
- "awful": 9643,
- "##lyn": 9644,
- "104": 9645,
- "dimensions": 9646,
- "imagination": 9647,
- "##ade": 9648,
- "dante": 9649,
- "##ship": 9650,
- "tracking": 9651,
- "desperately": 9652,
- "goalkeeper": 9653,
- "##yne": 9654,
- "groaned": 9655,
- "workshops": 9656,
- "confident": 9657,
- "burton": 9658,
- "gerald": 9659,
- "milton": 9660,
- "circus": 9661,
- "uncertain": 9662,
- "slope": 9663,
- "copenhagen": 9664,
- "sophia": 9665,
- "fog": 9666,
- "philosopher": 9667,
- "portraits": 9668,
- "accent": 9669,
- "cycling": 9670,
- "varying": 9671,
- "gripped": 9672,
- "larvae": 9673,
- "garrett": 9674,
- "specified": 9675,
- "scotia": 9676,
- "mature": 9677,
- "luther": 9678,
- "kurt": 9679,
- "rap": 9680,
- "##kes": 9681,
- "aerial": 9682,
- "750": 9683,
- "ferdinand": 9684,
- "heated": 9685,
- "es": 9686,
- "transported": 9687,
- "##shan": 9688,
- "safely": 9689,
- "nonetheless": 9690,
- "##orn": 9691,
- "##gal": 9692,
- "motors": 9693,
- "demanding": 9694,
- "##sburg": 9695,
- "startled": 9696,
- "##brook": 9697,
- "ally": 9698,
- "generate": 9699,
- "caps": 9700,
- "ghana": 9701,
- "stained": 9702,
- "demo": 9703,
- "mentions": 9704,
- "beds": 9705,
- "ap": 9706,
- "afterward": 9707,
- "diary": 9708,
- "##bling": 9709,
- "utility": 9710,
- "##iro": 9711,
- "richards": 9712,
- "1837": 9713,
- "conspiracy": 9714,
- "conscious": 9715,
- "shining": 9716,
- "footsteps": 9717,
- "observer": 9718,
- "cyprus": 9719,
- "urged": 9720,
- "loyalty": 9721,
- "developer": 9722,
- "probability": 9723,
- "olive": 9724,
- "upgraded": 9725,
- "gym": 9726,
- "miracle": 9727,
- "insects": 9728,
- "graves": 9729,
- "1844": 9730,
- "ourselves": 9731,
- "hydrogen": 9732,
- "amazon": 9733,
- "katie": 9734,
- "tickets": 9735,
- "poets": 9736,
- "##pm": 9737,
- "planes": 9738,
- "##pan": 9739,
- "prevention": 9740,
- "witnessed": 9741,
- "dense": 9742,
- "jin": 9743,
- "randy": 9744,
- "tang": 9745,
- "warehouse": 9746,
- "monroe": 9747,
- "bang": 9748,
- "archived": 9749,
- "elderly": 9750,
- "investigations": 9751,
- "alec": 9752,
- "granite": 9753,
- "mineral": 9754,
- "conflicts": 9755,
- "controlling": 9756,
- "aboriginal": 9757,
- "carlo": 9758,
- "##zu": 9759,
- "mechanics": 9760,
- "stan": 9761,
- "stark": 9762,
- "rhode": 9763,
- "skirt": 9764,
- "est": 9765,
- "##berry": 9766,
- "bombs": 9767,
- "respected": 9768,
- "##horn": 9769,
- "imposed": 9770,
- "limestone": 9771,
- "deny": 9772,
- "nominee": 9773,
- "memphis": 9774,
- "grabbing": 9775,
- "disabled": 9776,
- "##als": 9777,
- "amusement": 9778,
- "aa": 9779,
- "frankfurt": 9780,
- "corn": 9781,
- "referendum": 9782,
- "varies": 9783,
- "slowed": 9784,
- "disk": 9785,
- "firms": 9786,
- "unconscious": 9787,
- "incredible": 9788,
- "clue": 9789,
- "sue": 9790,
- "##zhou": 9791,
- "twist": 9792,
- "##cio": 9793,
- "joins": 9794,
- "idaho": 9795,
- "chad": 9796,
- "developers": 9797,
- "computing": 9798,
- "destroyer": 9799,
- "103": 9800,
- "mortal": 9801,
- "tucker": 9802,
- "kingston": 9803,
- "choices": 9804,
- "yu": 9805,
- "carson": 9806,
- "1800": 9807,
- "os": 9808,
- "whitney": 9809,
- "geneva": 9810,
- "pretend": 9811,
- "dimension": 9812,
- "staged": 9813,
- "plateau": 9814,
- "maya": 9815,
- "##une": 9816,
- "freestyle": 9817,
- "##bc": 9818,
- "rovers": 9819,
- "hiv": 9820,
- "##ids": 9821,
- "tristan": 9822,
- "classroom": 9823,
- "prospect": 9824,
- "##hus": 9825,
- "honestly": 9826,
- "diploma": 9827,
- "lied": 9828,
- "thermal": 9829,
- "auxiliary": 9830,
- "feast": 9831,
- "unlikely": 9832,
- "iata": 9833,
- "##tel": 9834,
- "morocco": 9835,
- "pounding": 9836,
- "treasury": 9837,
- "lithuania": 9838,
- "considerably": 9839,
- "1841": 9840,
- "dish": 9841,
- "1812": 9842,
- "geological": 9843,
- "matching": 9844,
- "stumbled": 9845,
- "destroying": 9846,
- "marched": 9847,
- "brien": 9848,
- "advances": 9849,
- "cake": 9850,
- "nicole": 9851,
- "belle": 9852,
- "settling": 9853,
- "measuring": 9854,
- "directing": 9855,
- "##mie": 9856,
- "tuesday": 9857,
- "bassist": 9858,
- "capabilities": 9859,
- "stunned": 9860,
- "fraud": 9861,
- "torpedo": 9862,
- "##list": 9863,
- "##phone": 9864,
- "anton": 9865,
- "wisdom": 9866,
- "surveillance": 9867,
- "ruined": 9868,
- "##ulate": 9869,
- "lawsuit": 9870,
- "healthcare": 9871,
- "theorem": 9872,
- "halls": 9873,
- "trend": 9874,
- "aka": 9875,
- "horizontal": 9876,
- "dozens": 9877,
- "acquire": 9878,
- "lasting": 9879,
- "swim": 9880,
- "hawk": 9881,
- "gorgeous": 9882,
- "fees": 9883,
- "vicinity": 9884,
- "decrease": 9885,
- "adoption": 9886,
- "tactics": 9887,
- "##ography": 9888,
- "pakistani": 9889,
- "##ole": 9890,
- "draws": 9891,
- "##hall": 9892,
- "willie": 9893,
- "burke": 9894,
- "heath": 9895,
- "algorithm": 9896,
- "integral": 9897,
- "powder": 9898,
- "elliott": 9899,
- "brigadier": 9900,
- "jackie": 9901,
- "tate": 9902,
- "varieties": 9903,
- "darker": 9904,
- "##cho": 9905,
- "lately": 9906,
- "cigarette": 9907,
- "specimens": 9908,
- "adds": 9909,
- "##ree": 9910,
- "##ensis": 9911,
- "##inger": 9912,
- "exploded": 9913,
- "finalist": 9914,
- "cia": 9915,
- "murders": 9916,
- "wilderness": 9917,
- "arguments": 9918,
- "nicknamed": 9919,
- "acceptance": 9920,
- "onwards": 9921,
- "manufacture": 9922,
- "robertson": 9923,
- "jets": 9924,
- "tampa": 9925,
- "enterprises": 9926,
- "blog": 9927,
- "loudly": 9928,
- "composers": 9929,
- "nominations": 9930,
- "1838": 9931,
- "ai": 9932,
- "malta": 9933,
- "inquiry": 9934,
- "automobile": 9935,
- "hosting": 9936,
- "viii": 9937,
- "rays": 9938,
- "tilted": 9939,
- "grief": 9940,
- "museums": 9941,
- "strategies": 9942,
- "furious": 9943,
- "euro": 9944,
- "equality": 9945,
- "cohen": 9946,
- "poison": 9947,
- "surrey": 9948,
- "wireless": 9949,
- "governed": 9950,
- "ridiculous": 9951,
- "moses": 9952,
- "##esh": 9953,
- "##room": 9954,
- "vanished": 9955,
- "##ito": 9956,
- "barnes": 9957,
- "attract": 9958,
- "morrison": 9959,
- "istanbul": 9960,
- "##iness": 9961,
- "absent": 9962,
- "rotation": 9963,
- "petition": 9964,
- "janet": 9965,
- "##logical": 9966,
- "satisfaction": 9967,
- "custody": 9968,
- "deliberately": 9969,
- "observatory": 9970,
- "comedian": 9971,
- "surfaces": 9972,
- "pinyin": 9973,
- "novelist": 9974,
- "strictly": 9975,
- "canterbury": 9976,
- "oslo": 9977,
- "monks": 9978,
- "embrace": 9979,
- "ibm": 9980,
- "jealous": 9981,
- "photograph": 9982,
- "continent": 9983,
- "dorothy": 9984,
- "marina": 9985,
- "doc": 9986,
- "excess": 9987,
- "holden": 9988,
- "allegations": 9989,
- "explaining": 9990,
- "stack": 9991,
- "avoiding": 9992,
- "lance": 9993,
- "storyline": 9994,
- "majesty": 9995,
- "poorly": 9996,
- "spike": 9997,
- "dos": 9998,
- "bradford": 9999,
- "raven": 10000,
- "travis": 10001,
- "classics": 10002,
- "proven": 10003,
- "voltage": 10004,
- "pillow": 10005,
- "fists": 10006,
- "butt": 10007,
- "1842": 10008,
- "interpreted": 10009,
- "##car": 10010,
- "1839": 10011,
- "gage": 10012,
- "telegraph": 10013,
- "lens": 10014,
- "promising": 10015,
- "expelled": 10016,
- "casual": 10017,
- "collector": 10018,
- "zones": 10019,
- "##min": 10020,
- "silly": 10021,
- "nintendo": 10022,
- "##kh": 10023,
- "##bra": 10024,
- "downstairs": 10025,
- "chef": 10026,
- "suspicious": 10027,
- "afl": 10028,
- "flies": 10029,
- "vacant": 10030,
- "uganda": 10031,
- "pregnancy": 10032,
- "condemned": 10033,
- "lutheran": 10034,
- "estimates": 10035,
- "cheap": 10036,
- "decree": 10037,
- "saxon": 10038,
- "proximity": 10039,
- "stripped": 10040,
- "idiot": 10041,
- "deposits": 10042,
- "contrary": 10043,
- "presenter": 10044,
- "magnus": 10045,
- "glacier": 10046,
- "im": 10047,
- "offense": 10048,
- "edwin": 10049,
- "##ori": 10050,
- "upright": 10051,
- "##long": 10052,
- "bolt": 10053,
- "##ois": 10054,
- "toss": 10055,
- "geographical": 10056,
- "##izes": 10057,
- "environments": 10058,
- "delicate": 10059,
- "marking": 10060,
- "abstract": 10061,
- "xavier": 10062,
- "nails": 10063,
- "windsor": 10064,
- "plantation": 10065,
- "occurring": 10066,
- "equity": 10067,
- "saskatchewan": 10068,
- "fears": 10069,
- "drifted": 10070,
- "sequences": 10071,
- "vegetation": 10072,
- "revolt": 10073,
- "##stic": 10074,
- "1843": 10075,
- "sooner": 10076,
- "fusion": 10077,
- "opposing": 10078,
- "nato": 10079,
- "skating": 10080,
- "1836": 10081,
- "secretly": 10082,
- "ruin": 10083,
- "lease": 10084,
- "##oc": 10085,
- "edit": 10086,
- "##nne": 10087,
- "flora": 10088,
- "anxiety": 10089,
- "ruby": 10090,
- "##ological": 10091,
- "##mia": 10092,
- "tel": 10093,
- "bout": 10094,
- "taxi": 10095,
- "emmy": 10096,
- "frost": 10097,
- "rainbow": 10098,
- "compounds": 10099,
- "foundations": 10100,
- "rainfall": 10101,
- "assassination": 10102,
- "nightmare": 10103,
- "dominican": 10104,
- "##win": 10105,
- "achievements": 10106,
- "deserve": 10107,
- "orlando": 10108,
- "intact": 10109,
- "armenia": 10110,
- "##nte": 10111,
- "calgary": 10112,
- "valentine": 10113,
- "106": 10114,
- "marion": 10115,
- "proclaimed": 10116,
- "theodore": 10117,
- "bells": 10118,
- "courtyard": 10119,
- "thigh": 10120,
- "gonzalez": 10121,
- "console": 10122,
- "troop": 10123,
- "minimal": 10124,
- "monte": 10125,
- "everyday": 10126,
- "##ence": 10127,
- "##if": 10128,
- "supporter": 10129,
- "terrorism": 10130,
- "buck": 10131,
- "openly": 10132,
- "presbyterian": 10133,
- "activists": 10134,
- "carpet": 10135,
- "##iers": 10136,
- "rubbing": 10137,
- "uprising": 10138,
- "##yi": 10139,
- "cute": 10140,
- "conceived": 10141,
- "legally": 10142,
- "##cht": 10143,
- "millennium": 10144,
- "cello": 10145,
- "velocity": 10146,
- "ji": 10147,
- "rescued": 10148,
- "cardiff": 10149,
- "1835": 10150,
- "rex": 10151,
- "concentrate": 10152,
- "senators": 10153,
- "beard": 10154,
- "rendered": 10155,
- "glowing": 10156,
- "battalions": 10157,
- "scouts": 10158,
- "competitors": 10159,
- "sculptor": 10160,
- "catalogue": 10161,
- "arctic": 10162,
- "ion": 10163,
- "raja": 10164,
- "bicycle": 10165,
- "wow": 10166,
- "glancing": 10167,
- "lawn": 10168,
- "##woman": 10169,
- "gentleman": 10170,
- "lighthouse": 10171,
- "publish": 10172,
- "predicted": 10173,
- "calculated": 10174,
- "##val": 10175,
- "variants": 10176,
- "##gne": 10177,
- "strain": 10178,
- "##ui": 10179,
- "winston": 10180,
- "deceased": 10181,
- "##nus": 10182,
- "touchdowns": 10183,
- "brady": 10184,
- "caleb": 10185,
- "sinking": 10186,
- "echoed": 10187,
- "crush": 10188,
- "hon": 10189,
- "blessed": 10190,
- "protagonist": 10191,
- "hayes": 10192,
- "endangered": 10193,
- "magnitude": 10194,
- "editors": 10195,
- "##tine": 10196,
- "estimate": 10197,
- "responsibilities": 10198,
- "##mel": 10199,
- "backup": 10200,
- "laying": 10201,
- "consumed": 10202,
- "sealed": 10203,
- "zurich": 10204,
- "lovers": 10205,
- "frustrated": 10206,
- "##eau": 10207,
- "ahmed": 10208,
- "kicking": 10209,
- "mit": 10210,
- "treasurer": 10211,
- "1832": 10212,
- "biblical": 10213,
- "refuse": 10214,
- "terrified": 10215,
- "pump": 10216,
- "agrees": 10217,
- "genuine": 10218,
- "imprisonment": 10219,
- "refuses": 10220,
- "plymouth": 10221,
- "##hen": 10222,
- "lou": 10223,
- "##nen": 10224,
- "tara": 10225,
- "trembling": 10226,
- "antarctic": 10227,
- "ton": 10228,
- "learns": 10229,
- "##tas": 10230,
- "crap": 10231,
- "crucial": 10232,
- "faction": 10233,
- "atop": 10234,
- "##borough": 10235,
- "wrap": 10236,
- "lancaster": 10237,
- "odds": 10238,
- "hopkins": 10239,
- "erik": 10240,
- "lyon": 10241,
- "##eon": 10242,
- "bros": 10243,
- "##ode": 10244,
- "snap": 10245,
- "locality": 10246,
- "tips": 10247,
- "empress": 10248,
- "crowned": 10249,
- "cal": 10250,
- "acclaimed": 10251,
- "chuckled": 10252,
- "##ory": 10253,
- "clara": 10254,
- "sends": 10255,
- "mild": 10256,
- "towel": 10257,
- "##fl": 10258,
- "##day": 10259,
- "##а": 10260,
- "wishing": 10261,
- "assuming": 10262,
- "interviewed": 10263,
- "##bal": 10264,
- "##die": 10265,
- "interactions": 10266,
- "eden": 10267,
- "cups": 10268,
- "helena": 10269,
- "##lf": 10270,
- "indie": 10271,
- "beck": 10272,
- "##fire": 10273,
- "batteries": 10274,
- "filipino": 10275,
- "wizard": 10276,
- "parted": 10277,
- "##lam": 10278,
- "traces": 10279,
- "##born": 10280,
- "rows": 10281,
- "idol": 10282,
- "albany": 10283,
- "delegates": 10284,
- "##ees": 10285,
- "##sar": 10286,
- "discussions": 10287,
- "##ex": 10288,
- "notre": 10289,
- "instructed": 10290,
- "belgrade": 10291,
- "highways": 10292,
- "suggestion": 10293,
- "lauren": 10294,
- "possess": 10295,
- "orientation": 10296,
- "alexandria": 10297,
- "abdul": 10298,
- "beats": 10299,
- "salary": 10300,
- "reunion": 10301,
- "ludwig": 10302,
- "alright": 10303,
- "wagner": 10304,
- "intimate": 10305,
- "pockets": 10306,
- "slovenia": 10307,
- "hugged": 10308,
- "brighton": 10309,
- "merchants": 10310,
- "cruel": 10311,
- "stole": 10312,
- "trek": 10313,
- "slopes": 10314,
- "repairs": 10315,
- "enrollment": 10316,
- "politically": 10317,
- "underlying": 10318,
- "promotional": 10319,
- "counting": 10320,
- "boeing": 10321,
- "##bb": 10322,
- "isabella": 10323,
- "naming": 10324,
- "##и": 10325,
- "keen": 10326,
- "bacteria": 10327,
- "listing": 10328,
- "separately": 10329,
- "belfast": 10330,
- "ussr": 10331,
- "450": 10332,
- "lithuanian": 10333,
- "anybody": 10334,
- "ribs": 10335,
- "sphere": 10336,
- "martinez": 10337,
- "cock": 10338,
- "embarrassed": 10339,
- "proposals": 10340,
- "fragments": 10341,
- "nationals": 10342,
- "##fs": 10343,
- "##wski": 10344,
- "premises": 10345,
- "fin": 10346,
- "1500": 10347,
- "alpine": 10348,
- "matched": 10349,
- "freely": 10350,
- "bounded": 10351,
- "jace": 10352,
- "sleeve": 10353,
- "##af": 10354,
- "gaming": 10355,
- "pier": 10356,
- "populated": 10357,
- "evident": 10358,
- "##like": 10359,
- "frances": 10360,
- "flooded": 10361,
- "##dle": 10362,
- "frightened": 10363,
- "pour": 10364,
- "trainer": 10365,
- "framed": 10366,
- "visitor": 10367,
- "challenging": 10368,
- "pig": 10369,
- "wickets": 10370,
- "##fold": 10371,
- "infected": 10372,
- "email": 10373,
- "##pes": 10374,
- "arose": 10375,
- "##aw": 10376,
- "reward": 10377,
- "ecuador": 10378,
- "oblast": 10379,
- "vale": 10380,
- "ch": 10381,
- "shuttle": 10382,
- "##usa": 10383,
- "bach": 10384,
- "rankings": 10385,
- "forbidden": 10386,
- "cornwall": 10387,
- "accordance": 10388,
- "salem": 10389,
- "consumers": 10390,
- "bruno": 10391,
- "fantastic": 10392,
- "toes": 10393,
- "machinery": 10394,
- "resolved": 10395,
- "julius": 10396,
- "remembering": 10397,
- "propaganda": 10398,
- "iceland": 10399,
- "bombardment": 10400,
- "tide": 10401,
- "contacts": 10402,
- "wives": 10403,
- "##rah": 10404,
- "concerto": 10405,
- "macdonald": 10406,
- "albania": 10407,
- "implement": 10408,
- "daisy": 10409,
- "tapped": 10410,
- "sudan": 10411,
- "helmet": 10412,
- "angela": 10413,
- "mistress": 10414,
- "##lic": 10415,
- "crop": 10416,
- "sunk": 10417,
- "finest": 10418,
- "##craft": 10419,
- "hostile": 10420,
- "##ute": 10421,
- "##tsu": 10422,
- "boxer": 10423,
- "fr": 10424,
- "paths": 10425,
- "adjusted": 10426,
- "habit": 10427,
- "ballot": 10428,
- "supervision": 10429,
- "soprano": 10430,
- "##zen": 10431,
- "bullets": 10432,
- "wicked": 10433,
- "sunset": 10434,
- "regiments": 10435,
- "disappear": 10436,
- "lamp": 10437,
- "performs": 10438,
- "app": 10439,
- "##gia": 10440,
- "##oa": 10441,
- "rabbit": 10442,
- "digging": 10443,
- "incidents": 10444,
- "entries": 10445,
- "##cion": 10446,
- "dishes": 10447,
- "##oi": 10448,
- "introducing": 10449,
- "##ati": 10450,
- "##fied": 10451,
- "freshman": 10452,
- "slot": 10453,
- "jill": 10454,
- "tackles": 10455,
- "baroque": 10456,
- "backs": 10457,
- "##iest": 10458,
- "lone": 10459,
- "sponsor": 10460,
- "destiny": 10461,
- "altogether": 10462,
- "convert": 10463,
- "##aro": 10464,
- "consensus": 10465,
- "shapes": 10466,
- "demonstration": 10467,
- "basically": 10468,
- "feminist": 10469,
- "auction": 10470,
- "artifacts": 10471,
- "##bing": 10472,
- "strongest": 10473,
- "twitter": 10474,
- "halifax": 10475,
- "2019": 10476,
- "allmusic": 10477,
- "mighty": 10478,
- "smallest": 10479,
- "precise": 10480,
- "alexandra": 10481,
- "viola": 10482,
- "##los": 10483,
- "##ille": 10484,
- "manuscripts": 10485,
- "##illo": 10486,
- "dancers": 10487,
- "ari": 10488,
- "managers": 10489,
- "monuments": 10490,
- "blades": 10491,
- "barracks": 10492,
- "springfield": 10493,
- "maiden": 10494,
- "consolidated": 10495,
- "electron": 10496,
- "##end": 10497,
- "berry": 10498,
- "airing": 10499,
- "wheat": 10500,
- "nobel": 10501,
- "inclusion": 10502,
- "blair": 10503,
- "payments": 10504,
- "geography": 10505,
- "bee": 10506,
- "cc": 10507,
- "eleanor": 10508,
- "react": 10509,
- "##hurst": 10510,
- "afc": 10511,
- "manitoba": 10512,
- "##yu": 10513,
- "su": 10514,
- "lineup": 10515,
- "fitness": 10516,
- "recreational": 10517,
- "investments": 10518,
- "airborne": 10519,
- "disappointment": 10520,
- "##dis": 10521,
- "edmonton": 10522,
- "viewing": 10523,
- "##row": 10524,
- "renovation": 10525,
- "##cast": 10526,
- "infant": 10527,
- "bankruptcy": 10528,
- "roses": 10529,
- "aftermath": 10530,
- "pavilion": 10531,
- "##yer": 10532,
- "carpenter": 10533,
- "withdrawal": 10534,
- "ladder": 10535,
- "##hy": 10536,
- "discussing": 10537,
- "popped": 10538,
- "reliable": 10539,
- "agreements": 10540,
- "rochester": 10541,
- "##abad": 10542,
- "curves": 10543,
- "bombers": 10544,
- "220": 10545,
- "rao": 10546,
- "reverend": 10547,
- "decreased": 10548,
- "choosing": 10549,
- "107": 10550,
- "stiff": 10551,
- "consulting": 10552,
- "naples": 10553,
- "crawford": 10554,
- "tracy": 10555,
- "ka": 10556,
- "ribbon": 10557,
- "cops": 10558,
- "##lee": 10559,
- "crushed": 10560,
- "deciding": 10561,
- "unified": 10562,
- "teenager": 10563,
- "accepting": 10564,
- "flagship": 10565,
- "explorer": 10566,
- "poles": 10567,
- "sanchez": 10568,
- "inspection": 10569,
- "revived": 10570,
- "skilled": 10571,
- "induced": 10572,
- "exchanged": 10573,
- "flee": 10574,
- "locals": 10575,
- "tragedy": 10576,
- "swallow": 10577,
- "loading": 10578,
- "hanna": 10579,
- "demonstrate": 10580,
- "##ela": 10581,
- "salvador": 10582,
- "flown": 10583,
- "contestants": 10584,
- "civilization": 10585,
- "##ines": 10586,
- "wanna": 10587,
- "rhodes": 10588,
- "fletcher": 10589,
- "hector": 10590,
- "knocking": 10591,
- "considers": 10592,
- "##ough": 10593,
- "nash": 10594,
- "mechanisms": 10595,
- "sensed": 10596,
- "mentally": 10597,
- "walt": 10598,
- "unclear": 10599,
- "##eus": 10600,
- "renovated": 10601,
- "madame": 10602,
- "##cks": 10603,
- "crews": 10604,
- "governmental": 10605,
- "##hin": 10606,
- "undertaken": 10607,
- "monkey": 10608,
- "##ben": 10609,
- "##ato": 10610,
- "fatal": 10611,
- "armored": 10612,
- "copa": 10613,
- "caves": 10614,
- "governance": 10615,
- "grasp": 10616,
- "perception": 10617,
- "certification": 10618,
- "froze": 10619,
- "damp": 10620,
- "tugged": 10621,
- "wyoming": 10622,
- "##rg": 10623,
- "##ero": 10624,
- "newman": 10625,
- "##lor": 10626,
- "nerves": 10627,
- "curiosity": 10628,
- "graph": 10629,
- "115": 10630,
- "##ami": 10631,
- "withdraw": 10632,
- "tunnels": 10633,
- "dull": 10634,
- "meredith": 10635,
- "moss": 10636,
- "exhibits": 10637,
- "neighbors": 10638,
- "communicate": 10639,
- "accuracy": 10640,
- "explored": 10641,
- "raiders": 10642,
- "republicans": 10643,
- "secular": 10644,
- "kat": 10645,
- "superman": 10646,
- "penny": 10647,
- "criticised": 10648,
- "##tch": 10649,
- "freed": 10650,
- "update": 10651,
- "conviction": 10652,
- "wade": 10653,
- "ham": 10654,
- "likewise": 10655,
- "delegation": 10656,
- "gotta": 10657,
- "doll": 10658,
- "promises": 10659,
- "technological": 10660,
- "myth": 10661,
- "nationality": 10662,
- "resolve": 10663,
- "convent": 10664,
- "##mark": 10665,
- "sharon": 10666,
- "dig": 10667,
- "sip": 10668,
- "coordinator": 10669,
- "entrepreneur": 10670,
- "fold": 10671,
- "##dine": 10672,
- "capability": 10673,
- "councillor": 10674,
- "synonym": 10675,
- "blown": 10676,
- "swan": 10677,
- "cursed": 10678,
- "1815": 10679,
- "jonas": 10680,
- "haired": 10681,
- "sofa": 10682,
- "canvas": 10683,
- "keeper": 10684,
- "rivalry": 10685,
- "##hart": 10686,
- "rapper": 10687,
- "speedway": 10688,
- "swords": 10689,
- "postal": 10690,
- "maxwell": 10691,
- "estonia": 10692,
- "potter": 10693,
- "recurring": 10694,
- "##nn": 10695,
- "##ave": 10696,
- "errors": 10697,
- "##oni": 10698,
- "cognitive": 10699,
- "1834": 10700,
- "##²": 10701,
- "claws": 10702,
- "nadu": 10703,
- "roberto": 10704,
- "bce": 10705,
- "wrestler": 10706,
- "ellie": 10707,
- "##ations": 10708,
- "infinite": 10709,
- "ink": 10710,
- "##tia": 10711,
- "presumably": 10712,
- "finite": 10713,
- "staircase": 10714,
- "108": 10715,
- "noel": 10716,
- "patricia": 10717,
- "nacional": 10718,
- "##cation": 10719,
- "chill": 10720,
- "eternal": 10721,
- "tu": 10722,
- "preventing": 10723,
- "prussia": 10724,
- "fossil": 10725,
- "limbs": 10726,
- "##logist": 10727,
- "ernst": 10728,
- "frog": 10729,
- "perez": 10730,
- "rene": 10731,
- "##ace": 10732,
- "pizza": 10733,
- "prussian": 10734,
- "##ios": 10735,
- "##vy": 10736,
- "molecules": 10737,
- "regulatory": 10738,
- "answering": 10739,
- "opinions": 10740,
- "sworn": 10741,
- "lengths": 10742,
- "supposedly": 10743,
- "hypothesis": 10744,
- "upward": 10745,
- "habitats": 10746,
- "seating": 10747,
- "ancestors": 10748,
- "drank": 10749,
- "yield": 10750,
- "hd": 10751,
- "synthesis": 10752,
- "researcher": 10753,
- "modest": 10754,
- "##var": 10755,
- "mothers": 10756,
- "peered": 10757,
- "voluntary": 10758,
- "homeland": 10759,
- "##the": 10760,
- "acclaim": 10761,
- "##igan": 10762,
- "static": 10763,
- "valve": 10764,
- "luxembourg": 10765,
- "alto": 10766,
- "carroll": 10767,
- "fe": 10768,
- "receptor": 10769,
- "norton": 10770,
- "ambulance": 10771,
- "##tian": 10772,
- "johnston": 10773,
- "catholics": 10774,
- "depicting": 10775,
- "jointly": 10776,
- "elephant": 10777,
- "gloria": 10778,
- "mentor": 10779,
- "badge": 10780,
- "ahmad": 10781,
- "distinguish": 10782,
- "remarked": 10783,
- "councils": 10784,
- "precisely": 10785,
- "allison": 10786,
- "advancing": 10787,
- "detection": 10788,
- "crowded": 10789,
- "##10": 10790,
- "cooperative": 10791,
- "ankle": 10792,
- "mercedes": 10793,
- "dagger": 10794,
- "surrendered": 10795,
- "pollution": 10796,
- "commit": 10797,
- "subway": 10798,
- "jeffrey": 10799,
- "lesson": 10800,
- "sculptures": 10801,
- "provider": 10802,
- "##fication": 10803,
- "membrane": 10804,
- "timothy": 10805,
- "rectangular": 10806,
- "fiscal": 10807,
- "heating": 10808,
- "teammate": 10809,
- "basket": 10810,
- "particle": 10811,
- "anonymous": 10812,
- "deployment": 10813,
- "##ple": 10814,
- "missiles": 10815,
- "courthouse": 10816,
- "proportion": 10817,
- "shoe": 10818,
- "sec": 10819,
- "##ller": 10820,
- "complaints": 10821,
- "forbes": 10822,
- "blacks": 10823,
- "abandon": 10824,
- "remind": 10825,
- "sizes": 10826,
- "overwhelming": 10827,
- "autobiography": 10828,
- "natalie": 10829,
- "##awa": 10830,
- "risks": 10831,
- "contestant": 10832,
- "countryside": 10833,
- "babies": 10834,
- "scorer": 10835,
- "invaded": 10836,
- "enclosed": 10837,
- "proceed": 10838,
- "hurling": 10839,
- "disorders": 10840,
- "##cu": 10841,
- "reflecting": 10842,
- "continuously": 10843,
- "cruiser": 10844,
- "graduates": 10845,
- "freeway": 10846,
- "investigated": 10847,
- "ore": 10848,
- "deserved": 10849,
- "maid": 10850,
- "blocking": 10851,
- "phillip": 10852,
- "jorge": 10853,
- "shakes": 10854,
- "dove": 10855,
- "mann": 10856,
- "variables": 10857,
- "lacked": 10858,
- "burden": 10859,
- "accompanying": 10860,
- "que": 10861,
- "consistently": 10862,
- "organizing": 10863,
- "provisional": 10864,
- "complained": 10865,
- "endless": 10866,
- "##rm": 10867,
- "tubes": 10868,
- "juice": 10869,
- "georges": 10870,
- "krishna": 10871,
- "mick": 10872,
- "labels": 10873,
- "thriller": 10874,
- "##uch": 10875,
- "laps": 10876,
- "arcade": 10877,
- "sage": 10878,
- "snail": 10879,
- "##table": 10880,
- "shannon": 10881,
- "fi": 10882,
- "laurence": 10883,
- "seoul": 10884,
- "vacation": 10885,
- "presenting": 10886,
- "hire": 10887,
- "churchill": 10888,
- "surprisingly": 10889,
- "prohibited": 10890,
- "savannah": 10891,
- "technically": 10892,
- "##oli": 10893,
- "170": 10894,
- "##lessly": 10895,
- "testimony": 10896,
- "suited": 10897,
- "speeds": 10898,
- "toys": 10899,
- "romans": 10900,
- "mlb": 10901,
- "flowering": 10902,
- "measurement": 10903,
- "talented": 10904,
- "kay": 10905,
- "settings": 10906,
- "charleston": 10907,
- "expectations": 10908,
- "shattered": 10909,
- "achieving": 10910,
- "triumph": 10911,
- "ceremonies": 10912,
- "portsmouth": 10913,
- "lanes": 10914,
- "mandatory": 10915,
- "loser": 10916,
- "stretching": 10917,
- "cologne": 10918,
- "realizes": 10919,
- "seventy": 10920,
- "cornell": 10921,
- "careers": 10922,
- "webb": 10923,
- "##ulating": 10924,
- "americas": 10925,
- "budapest": 10926,
- "ava": 10927,
- "suspicion": 10928,
- "##ison": 10929,
- "yo": 10930,
- "conrad": 10931,
- "##hai": 10932,
- "sterling": 10933,
- "jessie": 10934,
- "rector": 10935,
- "##az": 10936,
- "1831": 10937,
- "transform": 10938,
- "organize": 10939,
- "loans": 10940,
- "christine": 10941,
- "volcanic": 10942,
- "warrant": 10943,
- "slender": 10944,
- "summers": 10945,
- "subfamily": 10946,
- "newer": 10947,
- "danced": 10948,
- "dynamics": 10949,
- "rhine": 10950,
- "proceeds": 10951,
- "heinrich": 10952,
- "gastropod": 10953,
- "commands": 10954,
- "sings": 10955,
- "facilitate": 10956,
- "easter": 10957,
- "ra": 10958,
- "positioned": 10959,
- "responses": 10960,
- "expense": 10961,
- "fruits": 10962,
- "yanked": 10963,
- "imported": 10964,
- "25th": 10965,
- "velvet": 10966,
- "vic": 10967,
- "primitive": 10968,
- "tribune": 10969,
- "baldwin": 10970,
- "neighbourhood": 10971,
- "donna": 10972,
- "rip": 10973,
- "hay": 10974,
- "pr": 10975,
- "##uro": 10976,
- "1814": 10977,
- "espn": 10978,
- "welcomed": 10979,
- "##aria": 10980,
- "qualifier": 10981,
- "glare": 10982,
- "highland": 10983,
- "timing": 10984,
- "##cted": 10985,
- "shells": 10986,
- "eased": 10987,
- "geometry": 10988,
- "louder": 10989,
- "exciting": 10990,
- "slovakia": 10991,
- "##sion": 10992,
- "##iz": 10993,
- "##lot": 10994,
- "savings": 10995,
- "prairie": 10996,
- "##ques": 10997,
- "marching": 10998,
- "rafael": 10999,
- "tonnes": 11000,
- "##lled": 11001,
- "curtain": 11002,
- "preceding": 11003,
- "shy": 11004,
- "heal": 11005,
- "greene": 11006,
- "worthy": 11007,
- "##pot": 11008,
- "detachment": 11009,
- "bury": 11010,
- "sherman": 11011,
- "##eck": 11012,
- "reinforced": 11013,
- "seeks": 11014,
- "bottles": 11015,
- "contracted": 11016,
- "duchess": 11017,
- "outfit": 11018,
- "walsh": 11019,
- "##sc": 11020,
- "mickey": 11021,
- "##ase": 11022,
- "geoffrey": 11023,
- "archer": 11024,
- "squeeze": 11025,
- "dawson": 11026,
- "eliminate": 11027,
- "invention": 11028,
- "##enberg": 11029,
- "neal": 11030,
- "##eth": 11031,
- "stance": 11032,
- "dealer": 11033,
- "coral": 11034,
- "maple": 11035,
- "retire": 11036,
- "polo": 11037,
- "simplified": 11038,
- "##ht": 11039,
- "1833": 11040,
- "hid": 11041,
- "watts": 11042,
- "backwards": 11043,
- "jules": 11044,
- "##oke": 11045,
- "genesis": 11046,
- "mt": 11047,
- "frames": 11048,
- "rebounds": 11049,
- "burma": 11050,
- "woodland": 11051,
- "moist": 11052,
- "santos": 11053,
- "whispers": 11054,
- "drained": 11055,
- "subspecies": 11056,
- "##aa": 11057,
- "streaming": 11058,
- "ulster": 11059,
- "burnt": 11060,
- "correspondence": 11061,
- "maternal": 11062,
- "gerard": 11063,
- "denis": 11064,
- "stealing": 11065,
- "##load": 11066,
- "genius": 11067,
- "duchy": 11068,
- "##oria": 11069,
- "inaugurated": 11070,
- "momentum": 11071,
- "suits": 11072,
- "placement": 11073,
- "sovereign": 11074,
- "clause": 11075,
- "thames": 11076,
- "##hara": 11077,
- "confederation": 11078,
- "reservation": 11079,
- "sketch": 11080,
- "yankees": 11081,
- "lets": 11082,
- "rotten": 11083,
- "charm": 11084,
- "hal": 11085,
- "verses": 11086,
- "ultra": 11087,
- "commercially": 11088,
- "dot": 11089,
- "salon": 11090,
- "citation": 11091,
- "adopt": 11092,
- "winnipeg": 11093,
- "mist": 11094,
- "allocated": 11095,
- "cairo": 11096,
- "##boy": 11097,
- "jenkins": 11098,
- "interference": 11099,
- "objectives": 11100,
- "##wind": 11101,
- "1820": 11102,
- "portfolio": 11103,
- "armoured": 11104,
- "sectors": 11105,
- "##eh": 11106,
- "initiatives": 11107,
- "##world": 11108,
- "integrity": 11109,
- "exercises": 11110,
- "robe": 11111,
- "tap": 11112,
- "ab": 11113,
- "gazed": 11114,
- "##tones": 11115,
- "distracted": 11116,
- "rulers": 11117,
- "111": 11118,
- "favorable": 11119,
- "jerome": 11120,
- "tended": 11121,
- "cart": 11122,
- "factories": 11123,
- "##eri": 11124,
- "diplomat": 11125,
- "valued": 11126,
- "gravel": 11127,
- "charitable": 11128,
- "##try": 11129,
- "calvin": 11130,
- "exploring": 11131,
- "chang": 11132,
- "shepherd": 11133,
- "terrace": 11134,
- "pdf": 11135,
- "pupil": 11136,
- "##ural": 11137,
- "reflects": 11138,
- "ups": 11139,
- "##rch": 11140,
- "governors": 11141,
- "shelf": 11142,
- "depths": 11143,
- "##nberg": 11144,
- "trailed": 11145,
- "crest": 11146,
- "tackle": 11147,
- "##nian": 11148,
- "##ats": 11149,
- "hatred": 11150,
- "##kai": 11151,
- "clare": 11152,
- "makers": 11153,
- "ethiopia": 11154,
- "longtime": 11155,
- "detected": 11156,
- "embedded": 11157,
- "lacking": 11158,
- "slapped": 11159,
- "rely": 11160,
- "thomson": 11161,
- "anticipation": 11162,
- "iso": 11163,
- "morton": 11164,
- "successive": 11165,
- "agnes": 11166,
- "screenwriter": 11167,
- "straightened": 11168,
- "philippe": 11169,
- "playwright": 11170,
- "haunted": 11171,
- "licence": 11172,
- "iris": 11173,
- "intentions": 11174,
- "sutton": 11175,
- "112": 11176,
- "logical": 11177,
- "correctly": 11178,
- "##weight": 11179,
- "branded": 11180,
- "licked": 11181,
- "tipped": 11182,
- "silva": 11183,
- "ricky": 11184,
- "narrator": 11185,
- "requests": 11186,
- "##ents": 11187,
- "greeted": 11188,
- "supernatural": 11189,
- "cow": 11190,
- "##wald": 11191,
- "lung": 11192,
- "refusing": 11193,
- "employer": 11194,
- "strait": 11195,
- "gaelic": 11196,
- "liner": 11197,
- "##piece": 11198,
- "zoe": 11199,
- "sabha": 11200,
- "##mba": 11201,
- "driveway": 11202,
- "harvest": 11203,
- "prints": 11204,
- "bates": 11205,
- "reluctantly": 11206,
- "threshold": 11207,
- "algebra": 11208,
- "ira": 11209,
- "wherever": 11210,
- "coupled": 11211,
- "240": 11212,
- "assumption": 11213,
- "picks": 11214,
- "##air": 11215,
- "designers": 11216,
- "raids": 11217,
- "gentlemen": 11218,
- "##ean": 11219,
- "roller": 11220,
- "blowing": 11221,
- "leipzig": 11222,
- "locks": 11223,
- "screw": 11224,
- "dressing": 11225,
- "strand": 11226,
- "##lings": 11227,
- "scar": 11228,
- "dwarf": 11229,
- "depicts": 11230,
- "##nu": 11231,
- "nods": 11232,
- "##mine": 11233,
- "differ": 11234,
- "boris": 11235,
- "##eur": 11236,
- "yuan": 11237,
- "flip": 11238,
- "##gie": 11239,
- "mob": 11240,
- "invested": 11241,
- "questioning": 11242,
- "applying": 11243,
- "##ture": 11244,
- "shout": 11245,
- "##sel": 11246,
- "gameplay": 11247,
- "blamed": 11248,
- "illustrations": 11249,
- "bothered": 11250,
- "weakness": 11251,
- "rehabilitation": 11252,
- "##of": 11253,
- "##zes": 11254,
- "envelope": 11255,
- "rumors": 11256,
- "miners": 11257,
- "leicester": 11258,
- "subtle": 11259,
- "kerry": 11260,
- "##ico": 11261,
- "ferguson": 11262,
- "##fu": 11263,
- "premiership": 11264,
- "ne": 11265,
- "##cat": 11266,
- "bengali": 11267,
- "prof": 11268,
- "catches": 11269,
- "remnants": 11270,
- "dana": 11271,
- "##rily": 11272,
- "shouting": 11273,
- "presidents": 11274,
- "baltic": 11275,
- "ought": 11276,
- "ghosts": 11277,
- "dances": 11278,
- "sailors": 11279,
- "shirley": 11280,
- "fancy": 11281,
- "dominic": 11282,
- "##bie": 11283,
- "madonna": 11284,
- "##rick": 11285,
- "bark": 11286,
- "buttons": 11287,
- "gymnasium": 11288,
- "ashes": 11289,
- "liver": 11290,
- "toby": 11291,
- "oath": 11292,
- "providence": 11293,
- "doyle": 11294,
- "evangelical": 11295,
- "nixon": 11296,
- "cement": 11297,
- "carnegie": 11298,
- "embarked": 11299,
- "hatch": 11300,
- "surroundings": 11301,
- "guarantee": 11302,
- "needing": 11303,
- "pirate": 11304,
- "essence": 11305,
- "##bee": 11306,
- "filter": 11307,
- "crane": 11308,
- "hammond": 11309,
- "projected": 11310,
- "immune": 11311,
- "percy": 11312,
- "twelfth": 11313,
- "##ult": 11314,
- "regent": 11315,
- "doctoral": 11316,
- "damon": 11317,
- "mikhail": 11318,
- "##ichi": 11319,
- "lu": 11320,
- "critically": 11321,
- "elect": 11322,
- "realised": 11323,
- "abortion": 11324,
- "acute": 11325,
- "screening": 11326,
- "mythology": 11327,
- "steadily": 11328,
- "##fc": 11329,
- "frown": 11330,
- "nottingham": 11331,
- "kirk": 11332,
- "wa": 11333,
- "minneapolis": 11334,
- "##rra": 11335,
- "module": 11336,
- "algeria": 11337,
- "mc": 11338,
- "nautical": 11339,
- "encounters": 11340,
- "surprising": 11341,
- "statues": 11342,
- "availability": 11343,
- "shirts": 11344,
- "pie": 11345,
- "alma": 11346,
- "brows": 11347,
- "munster": 11348,
- "mack": 11349,
- "soup": 11350,
- "crater": 11351,
- "tornado": 11352,
- "sanskrit": 11353,
- "cedar": 11354,
- "explosive": 11355,
- "bordered": 11356,
- "dixon": 11357,
- "planets": 11358,
- "stamp": 11359,
- "exam": 11360,
- "happily": 11361,
- "##bble": 11362,
- "carriers": 11363,
- "kidnapped": 11364,
- "##vis": 11365,
- "accommodation": 11366,
- "emigrated": 11367,
- "##met": 11368,
- "knockout": 11369,
- "correspondent": 11370,
- "violation": 11371,
- "profits": 11372,
- "peaks": 11373,
- "lang": 11374,
- "specimen": 11375,
- "agenda": 11376,
- "ancestry": 11377,
- "pottery": 11378,
- "spelling": 11379,
- "equations": 11380,
- "obtaining": 11381,
- "ki": 11382,
- "linking": 11383,
- "1825": 11384,
- "debris": 11385,
- "asylum": 11386,
- "##20": 11387,
- "buddhism": 11388,
- "teddy": 11389,
- "##ants": 11390,
- "gazette": 11391,
- "##nger": 11392,
- "##sse": 11393,
- "dental": 11394,
- "eligibility": 11395,
- "utc": 11396,
- "fathers": 11397,
- "averaged": 11398,
- "zimbabwe": 11399,
- "francesco": 11400,
- "coloured": 11401,
- "hissed": 11402,
- "translator": 11403,
- "lynch": 11404,
- "mandate": 11405,
- "humanities": 11406,
- "mackenzie": 11407,
- "uniforms": 11408,
- "lin": 11409,
- "##iana": 11410,
- "##gio": 11411,
- "asset": 11412,
- "mhz": 11413,
- "fitting": 11414,
- "samantha": 11415,
- "genera": 11416,
- "wei": 11417,
- "rim": 11418,
- "beloved": 11419,
- "shark": 11420,
- "riot": 11421,
- "entities": 11422,
- "expressions": 11423,
- "indo": 11424,
- "carmen": 11425,
- "slipping": 11426,
- "owing": 11427,
- "abbot": 11428,
- "neighbor": 11429,
- "sidney": 11430,
- "##av": 11431,
- "rats": 11432,
- "recommendations": 11433,
- "encouraging": 11434,
- "squadrons": 11435,
- "anticipated": 11436,
- "commanders": 11437,
- "conquered": 11438,
- "##oto": 11439,
- "donations": 11440,
- "diagnosed": 11441,
- "##mond": 11442,
- "divide": 11443,
- "##iva": 11444,
- "guessed": 11445,
- "decoration": 11446,
- "vernon": 11447,
- "auditorium": 11448,
- "revelation": 11449,
- "conversations": 11450,
- "##kers": 11451,
- "##power": 11452,
- "herzegovina": 11453,
- "dash": 11454,
- "alike": 11455,
- "protested": 11456,
- "lateral": 11457,
- "herman": 11458,
- "accredited": 11459,
- "mg": 11460,
- "##gent": 11461,
- "freeman": 11462,
- "mel": 11463,
- "fiji": 11464,
- "crow": 11465,
- "crimson": 11466,
- "##rine": 11467,
- "livestock": 11468,
- "##pped": 11469,
- "humanitarian": 11470,
- "bored": 11471,
- "oz": 11472,
- "whip": 11473,
- "##lene": 11474,
- "##ali": 11475,
- "legitimate": 11476,
- "alter": 11477,
- "grinning": 11478,
- "spelled": 11479,
- "anxious": 11480,
- "oriental": 11481,
- "wesley": 11482,
- "##nin": 11483,
- "##hole": 11484,
- "carnival": 11485,
- "controller": 11486,
- "detect": 11487,
- "##ssa": 11488,
- "bowed": 11489,
- "educator": 11490,
- "kosovo": 11491,
- "macedonia": 11492,
- "##sin": 11493,
- "occupy": 11494,
- "mastering": 11495,
- "stephanie": 11496,
- "janeiro": 11497,
- "para": 11498,
- "unaware": 11499,
- "nurses": 11500,
- "noon": 11501,
- "135": 11502,
- "cam": 11503,
- "hopefully": 11504,
- "ranger": 11505,
- "combine": 11506,
- "sociology": 11507,
- "polar": 11508,
- "rica": 11509,
- "##eer": 11510,
- "neill": 11511,
- "##sman": 11512,
- "holocaust": 11513,
- "##ip": 11514,
- "doubled": 11515,
- "lust": 11516,
- "1828": 11517,
- "109": 11518,
- "decent": 11519,
- "cooling": 11520,
- "unveiled": 11521,
- "##card": 11522,
- "1829": 11523,
- "nsw": 11524,
- "homer": 11525,
- "chapman": 11526,
- "meyer": 11527,
- "##gin": 11528,
- "dive": 11529,
- "mae": 11530,
- "reagan": 11531,
- "expertise": 11532,
- "##gled": 11533,
- "darwin": 11534,
- "brooke": 11535,
- "sided": 11536,
- "prosecution": 11537,
- "investigating": 11538,
- "comprised": 11539,
- "petroleum": 11540,
- "genres": 11541,
- "reluctant": 11542,
- "differently": 11543,
- "trilogy": 11544,
- "johns": 11545,
- "vegetables": 11546,
- "corpse": 11547,
- "highlighted": 11548,
- "lounge": 11549,
- "pension": 11550,
- "unsuccessfully": 11551,
- "elegant": 11552,
- "aided": 11553,
- "ivory": 11554,
- "beatles": 11555,
- "amelia": 11556,
- "cain": 11557,
- "dubai": 11558,
- "sunny": 11559,
- "immigrant": 11560,
- "babe": 11561,
- "click": 11562,
- "##nder": 11563,
- "underwater": 11564,
- "pepper": 11565,
- "combining": 11566,
- "mumbled": 11567,
- "atlas": 11568,
- "horns": 11569,
- "accessed": 11570,
- "ballad": 11571,
- "physicians": 11572,
- "homeless": 11573,
- "gestured": 11574,
- "rpm": 11575,
- "freak": 11576,
- "louisville": 11577,
- "corporations": 11578,
- "patriots": 11579,
- "prizes": 11580,
- "rational": 11581,
- "warn": 11582,
- "modes": 11583,
- "decorative": 11584,
- "overnight": 11585,
- "din": 11586,
- "troubled": 11587,
- "phantom": 11588,
- "##ort": 11589,
- "monarch": 11590,
- "sheer": 11591,
- "##dorf": 11592,
- "generals": 11593,
- "guidelines": 11594,
- "organs": 11595,
- "addresses": 11596,
- "##zon": 11597,
- "enhance": 11598,
- "curling": 11599,
- "parishes": 11600,
- "cord": 11601,
- "##kie": 11602,
- "linux": 11603,
- "caesar": 11604,
- "deutsche": 11605,
- "bavaria": 11606,
- "##bia": 11607,
- "coleman": 11608,
- "cyclone": 11609,
- "##eria": 11610,
- "bacon": 11611,
- "petty": 11612,
- "##yama": 11613,
- "##old": 11614,
- "hampton": 11615,
- "diagnosis": 11616,
- "1824": 11617,
- "throws": 11618,
- "complexity": 11619,
- "rita": 11620,
- "disputed": 11621,
- "##₃": 11622,
- "pablo": 11623,
- "##sch": 11624,
- "marketed": 11625,
- "trafficking": 11626,
- "##ulus": 11627,
- "examine": 11628,
- "plague": 11629,
- "formats": 11630,
- "##oh": 11631,
- "vault": 11632,
- "faithful": 11633,
- "##bourne": 11634,
- "webster": 11635,
- "##ox": 11636,
- "highlights": 11637,
- "##ient": 11638,
- "##ann": 11639,
- "phones": 11640,
- "vacuum": 11641,
- "sandwich": 11642,
- "modeling": 11643,
- "##gated": 11644,
- "bolivia": 11645,
- "clergy": 11646,
- "qualities": 11647,
- "isabel": 11648,
- "##nas": 11649,
- "##ars": 11650,
- "wears": 11651,
- "screams": 11652,
- "reunited": 11653,
- "annoyed": 11654,
- "bra": 11655,
- "##ancy": 11656,
- "##rate": 11657,
- "differential": 11658,
- "transmitter": 11659,
- "tattoo": 11660,
- "container": 11661,
- "poker": 11662,
- "##och": 11663,
- "excessive": 11664,
- "resides": 11665,
- "cowboys": 11666,
- "##tum": 11667,
- "augustus": 11668,
- "trash": 11669,
- "providers": 11670,
- "statute": 11671,
- "retreated": 11672,
- "balcony": 11673,
- "reversed": 11674,
- "void": 11675,
- "storey": 11676,
- "preceded": 11677,
- "masses": 11678,
- "leap": 11679,
- "laughs": 11680,
- "neighborhoods": 11681,
- "wards": 11682,
- "schemes": 11683,
- "falcon": 11684,
- "santo": 11685,
- "battlefield": 11686,
- "pad": 11687,
- "ronnie": 11688,
- "thread": 11689,
- "lesbian": 11690,
- "venus": 11691,
- "##dian": 11692,
- "beg": 11693,
- "sandstone": 11694,
- "daylight": 11695,
- "punched": 11696,
- "gwen": 11697,
- "analog": 11698,
- "stroked": 11699,
- "wwe": 11700,
- "acceptable": 11701,
- "measurements": 11702,
- "dec": 11703,
- "toxic": 11704,
- "##kel": 11705,
- "adequate": 11706,
- "surgical": 11707,
- "economist": 11708,
- "parameters": 11709,
- "varsity": 11710,
- "##sberg": 11711,
- "quantity": 11712,
- "ella": 11713,
- "##chy": 11714,
- "##rton": 11715,
- "countess": 11716,
- "generating": 11717,
- "precision": 11718,
- "diamonds": 11719,
- "expressway": 11720,
- "ga": 11721,
- "##ı": 11722,
- "1821": 11723,
- "uruguay": 11724,
- "talents": 11725,
- "galleries": 11726,
- "expenses": 11727,
- "scanned": 11728,
- "colleague": 11729,
- "outlets": 11730,
- "ryder": 11731,
- "lucien": 11732,
- "##ila": 11733,
- "paramount": 11734,
- "##bon": 11735,
- "syracuse": 11736,
- "dim": 11737,
- "fangs": 11738,
- "gown": 11739,
- "sweep": 11740,
- "##sie": 11741,
- "toyota": 11742,
- "missionaries": 11743,
- "websites": 11744,
- "##nsis": 11745,
- "sentences": 11746,
- "adviser": 11747,
- "val": 11748,
- "trademark": 11749,
- "spells": 11750,
- "##plane": 11751,
- "patience": 11752,
- "starter": 11753,
- "slim": 11754,
- "##borg": 11755,
- "toe": 11756,
- "incredibly": 11757,
- "shoots": 11758,
- "elliot": 11759,
- "nobility": 11760,
- "##wyn": 11761,
- "cowboy": 11762,
- "endorsed": 11763,
- "gardner": 11764,
- "tendency": 11765,
- "persuaded": 11766,
- "organisms": 11767,
- "emissions": 11768,
- "kazakhstan": 11769,
- "amused": 11770,
- "boring": 11771,
- "chips": 11772,
- "themed": 11773,
- "##hand": 11774,
- "llc": 11775,
- "constantinople": 11776,
- "chasing": 11777,
- "systematic": 11778,
- "guatemala": 11779,
- "borrowed": 11780,
- "erin": 11781,
- "carey": 11782,
- "##hard": 11783,
- "highlands": 11784,
- "struggles": 11785,
- "1810": 11786,
- "##ifying": 11787,
- "##ced": 11788,
- "wong": 11789,
- "exceptions": 11790,
- "develops": 11791,
- "enlarged": 11792,
- "kindergarten": 11793,
- "castro": 11794,
- "##ern": 11795,
- "##rina": 11796,
- "leigh": 11797,
- "zombie": 11798,
- "juvenile": 11799,
- "##most": 11800,
- "consul": 11801,
- "##nar": 11802,
- "sailor": 11803,
- "hyde": 11804,
- "clarence": 11805,
- "intensive": 11806,
- "pinned": 11807,
- "nasty": 11808,
- "useless": 11809,
- "jung": 11810,
- "clayton": 11811,
- "stuffed": 11812,
- "exceptional": 11813,
- "ix": 11814,
- "apostolic": 11815,
- "230": 11816,
- "transactions": 11817,
- "##dge": 11818,
- "exempt": 11819,
- "swinging": 11820,
- "cove": 11821,
- "religions": 11822,
- "##ash": 11823,
- "shields": 11824,
- "dairy": 11825,
- "bypass": 11826,
- "190": 11827,
- "pursuing": 11828,
- "bug": 11829,
- "joyce": 11830,
- "bombay": 11831,
- "chassis": 11832,
- "southampton": 11833,
- "chat": 11834,
- "interact": 11835,
- "redesignated": 11836,
- "##pen": 11837,
- "nascar": 11838,
- "pray": 11839,
- "salmon": 11840,
- "rigid": 11841,
- "regained": 11842,
- "malaysian": 11843,
- "grim": 11844,
- "publicity": 11845,
- "constituted": 11846,
- "capturing": 11847,
- "toilet": 11848,
- "delegate": 11849,
- "purely": 11850,
- "tray": 11851,
- "drift": 11852,
- "loosely": 11853,
- "striker": 11854,
- "weakened": 11855,
- "trinidad": 11856,
- "mitch": 11857,
- "itv": 11858,
- "defines": 11859,
- "transmitted": 11860,
- "ming": 11861,
- "scarlet": 11862,
- "nodding": 11863,
- "fitzgerald": 11864,
- "fu": 11865,
- "narrowly": 11866,
- "sp": 11867,
- "tooth": 11868,
- "standings": 11869,
- "virtue": 11870,
- "##₁": 11871,
- "##wara": 11872,
- "##cting": 11873,
- "chateau": 11874,
- "gloves": 11875,
- "lid": 11876,
- "##nel": 11877,
- "hurting": 11878,
- "conservatory": 11879,
- "##pel": 11880,
- "sinclair": 11881,
- "reopened": 11882,
- "sympathy": 11883,
- "nigerian": 11884,
- "strode": 11885,
- "advocated": 11886,
- "optional": 11887,
- "chronic": 11888,
- "discharge": 11889,
- "##rc": 11890,
- "suck": 11891,
- "compatible": 11892,
- "laurel": 11893,
- "stella": 11894,
- "shi": 11895,
- "fails": 11896,
- "wage": 11897,
- "dodge": 11898,
- "128": 11899,
- "informal": 11900,
- "sorts": 11901,
- "levi": 11902,
- "buddha": 11903,
- "villagers": 11904,
- "##aka": 11905,
- "chronicles": 11906,
- "heavier": 11907,
- "summoned": 11908,
- "gateway": 11909,
- "3000": 11910,
- "eleventh": 11911,
- "jewelry": 11912,
- "translations": 11913,
- "accordingly": 11914,
- "seas": 11915,
- "##ency": 11916,
- "fiber": 11917,
- "pyramid": 11918,
- "cubic": 11919,
- "dragging": 11920,
- "##ista": 11921,
- "caring": 11922,
- "##ops": 11923,
- "android": 11924,
- "contacted": 11925,
- "lunar": 11926,
- "##dt": 11927,
- "kai": 11928,
- "lisbon": 11929,
- "patted": 11930,
- "1826": 11931,
- "sacramento": 11932,
- "theft": 11933,
- "madagascar": 11934,
- "subtropical": 11935,
- "disputes": 11936,
- "ta": 11937,
- "holidays": 11938,
- "piper": 11939,
- "willow": 11940,
- "mare": 11941,
- "cane": 11942,
- "itunes": 11943,
- "newfoundland": 11944,
- "benny": 11945,
- "companions": 11946,
- "dong": 11947,
- "raj": 11948,
- "observe": 11949,
- "roar": 11950,
- "charming": 11951,
- "plaque": 11952,
- "tibetan": 11953,
- "fossils": 11954,
- "enacted": 11955,
- "manning": 11956,
- "bubble": 11957,
- "tina": 11958,
- "tanzania": 11959,
- "##eda": 11960,
- "##hir": 11961,
- "funk": 11962,
- "swamp": 11963,
- "deputies": 11964,
- "cloak": 11965,
- "ufc": 11966,
- "scenario": 11967,
- "par": 11968,
- "scratch": 11969,
- "metals": 11970,
- "anthem": 11971,
- "guru": 11972,
- "engaging": 11973,
- "specially": 11974,
- "##boat": 11975,
- "dialects": 11976,
- "nineteen": 11977,
- "cecil": 11978,
- "duet": 11979,
- "disability": 11980,
- "messenger": 11981,
- "unofficial": 11982,
- "##lies": 11983,
- "defunct": 11984,
- "eds": 11985,
- "moonlight": 11986,
- "drainage": 11987,
- "surname": 11988,
- "puzzle": 11989,
- "honda": 11990,
- "switching": 11991,
- "conservatives": 11992,
- "mammals": 11993,
- "knox": 11994,
- "broadcaster": 11995,
- "sidewalk": 11996,
- "cope": 11997,
- "##ried": 11998,
- "benson": 11999,
- "princes": 12000,
- "peterson": 12001,
- "##sal": 12002,
- "bedford": 12003,
- "sharks": 12004,
- "eli": 12005,
- "wreck": 12006,
- "alberto": 12007,
- "gasp": 12008,
- "archaeology": 12009,
- "lgbt": 12010,
- "teaches": 12011,
- "securities": 12012,
- "madness": 12013,
- "compromise": 12014,
- "waving": 12015,
- "coordination": 12016,
- "davidson": 12017,
- "visions": 12018,
- "leased": 12019,
- "possibilities": 12020,
- "eighty": 12021,
- "jun": 12022,
- "fernandez": 12023,
- "enthusiasm": 12024,
- "assassin": 12025,
- "sponsorship": 12026,
- "reviewer": 12027,
- "kingdoms": 12028,
- "estonian": 12029,
- "laboratories": 12030,
- "##fy": 12031,
- "##nal": 12032,
- "applies": 12033,
- "verb": 12034,
- "celebrations": 12035,
- "##zzo": 12036,
- "rowing": 12037,
- "lightweight": 12038,
- "sadness": 12039,
- "submit": 12040,
- "mvp": 12041,
- "balanced": 12042,
- "dude": 12043,
- "##vas": 12044,
- "explicitly": 12045,
- "metric": 12046,
- "magnificent": 12047,
- "mound": 12048,
- "brett": 12049,
- "mohammad": 12050,
- "mistakes": 12051,
- "irregular": 12052,
- "##hing": 12053,
- "##ass": 12054,
- "sanders": 12055,
- "betrayed": 12056,
- "shipped": 12057,
- "surge": 12058,
- "##enburg": 12059,
- "reporters": 12060,
- "termed": 12061,
- "georg": 12062,
- "pity": 12063,
- "verbal": 12064,
- "bulls": 12065,
- "abbreviated": 12066,
- "enabling": 12067,
- "appealed": 12068,
- "##are": 12069,
- "##atic": 12070,
- "sicily": 12071,
- "sting": 12072,
- "heel": 12073,
- "sweetheart": 12074,
- "bart": 12075,
- "spacecraft": 12076,
- "brutal": 12077,
- "monarchy": 12078,
- "##tter": 12079,
- "aberdeen": 12080,
- "cameo": 12081,
- "diane": 12082,
- "##ub": 12083,
- "survivor": 12084,
- "clyde": 12085,
- "##aries": 12086,
- "complaint": 12087,
- "##makers": 12088,
- "clarinet": 12089,
- "delicious": 12090,
- "chilean": 12091,
- "karnataka": 12092,
- "coordinates": 12093,
- "1818": 12094,
- "panties": 12095,
- "##rst": 12096,
- "pretending": 12097,
- "ar": 12098,
- "dramatically": 12099,
- "kiev": 12100,
- "bella": 12101,
- "tends": 12102,
- "distances": 12103,
- "113": 12104,
- "catalog": 12105,
- "launching": 12106,
- "instances": 12107,
- "telecommunications": 12108,
- "portable": 12109,
- "lindsay": 12110,
- "vatican": 12111,
- "##eim": 12112,
- "angles": 12113,
- "aliens": 12114,
- "marker": 12115,
- "stint": 12116,
- "screens": 12117,
- "bolton": 12118,
- "##rne": 12119,
- "judy": 12120,
- "wool": 12121,
- "benedict": 12122,
- "plasma": 12123,
- "europa": 12124,
- "spark": 12125,
- "imaging": 12126,
- "filmmaker": 12127,
- "swiftly": 12128,
- "##een": 12129,
- "contributor": 12130,
- "##nor": 12131,
- "opted": 12132,
- "stamps": 12133,
- "apologize": 12134,
- "financing": 12135,
- "butter": 12136,
- "gideon": 12137,
- "sophisticated": 12138,
- "alignment": 12139,
- "avery": 12140,
- "chemicals": 12141,
- "yearly": 12142,
- "speculation": 12143,
- "prominence": 12144,
- "professionally": 12145,
- "##ils": 12146,
- "immortal": 12147,
- "institutional": 12148,
- "inception": 12149,
- "wrists": 12150,
- "identifying": 12151,
- "tribunal": 12152,
- "derives": 12153,
- "gains": 12154,
- "##wo": 12155,
- "papal": 12156,
- "preference": 12157,
- "linguistic": 12158,
- "vince": 12159,
- "operative": 12160,
- "brewery": 12161,
- "##ont": 12162,
- "unemployment": 12163,
- "boyd": 12164,
- "##ured": 12165,
- "##outs": 12166,
- "albeit": 12167,
- "prophet": 12168,
- "1813": 12169,
- "bi": 12170,
- "##rr": 12171,
- "##face": 12172,
- "##rad": 12173,
- "quarterly": 12174,
- "asteroid": 12175,
- "cleaned": 12176,
- "radius": 12177,
- "temper": 12178,
- "##llen": 12179,
- "telugu": 12180,
- "jerk": 12181,
- "viscount": 12182,
- "menu": 12183,
- "##ote": 12184,
- "glimpse": 12185,
- "##aya": 12186,
- "yacht": 12187,
- "hawaiian": 12188,
- "baden": 12189,
- "##rl": 12190,
- "laptop": 12191,
- "readily": 12192,
- "##gu": 12193,
- "monetary": 12194,
- "offshore": 12195,
- "scots": 12196,
- "watches": 12197,
- "##yang": 12198,
- "##arian": 12199,
- "upgrade": 12200,
- "needle": 12201,
- "xbox": 12202,
- "lea": 12203,
- "encyclopedia": 12204,
- "flank": 12205,
- "fingertips": 12206,
- "##pus": 12207,
- "delight": 12208,
- "teachings": 12209,
- "confirm": 12210,
- "roth": 12211,
- "beaches": 12212,
- "midway": 12213,
- "winters": 12214,
- "##iah": 12215,
- "teasing": 12216,
- "daytime": 12217,
- "beverly": 12218,
- "gambling": 12219,
- "bonnie": 12220,
- "##backs": 12221,
- "regulated": 12222,
- "clement": 12223,
- "hermann": 12224,
- "tricks": 12225,
- "knot": 12226,
- "##shing": 12227,
- "##uring": 12228,
- "##vre": 12229,
- "detached": 12230,
- "ecological": 12231,
- "owed": 12232,
- "specialty": 12233,
- "byron": 12234,
- "inventor": 12235,
- "bats": 12236,
- "stays": 12237,
- "screened": 12238,
- "unesco": 12239,
- "midland": 12240,
- "trim": 12241,
- "affection": 12242,
- "##ander": 12243,
- "##rry": 12244,
- "jess": 12245,
- "thoroughly": 12246,
- "feedback": 12247,
- "##uma": 12248,
- "chennai": 12249,
- "strained": 12250,
- "heartbeat": 12251,
- "wrapping": 12252,
- "overtime": 12253,
- "pleaded": 12254,
- "##sworth": 12255,
- "mon": 12256,
- "leisure": 12257,
- "oclc": 12258,
- "##tate": 12259,
- "##ele": 12260,
- "feathers": 12261,
- "angelo": 12262,
- "thirds": 12263,
- "nuts": 12264,
- "surveys": 12265,
- "clever": 12266,
- "gill": 12267,
- "commentator": 12268,
- "##dos": 12269,
- "darren": 12270,
- "rides": 12271,
- "gibraltar": 12272,
- "##nc": 12273,
- "##mu": 12274,
- "dissolution": 12275,
- "dedication": 12276,
- "shin": 12277,
- "meals": 12278,
- "saddle": 12279,
- "elvis": 12280,
- "reds": 12281,
- "chaired": 12282,
- "taller": 12283,
- "appreciation": 12284,
- "functioning": 12285,
- "niece": 12286,
- "favored": 12287,
- "advocacy": 12288,
- "robbie": 12289,
- "criminals": 12290,
- "suffolk": 12291,
- "yugoslav": 12292,
- "passport": 12293,
- "constable": 12294,
- "congressman": 12295,
- "hastings": 12296,
- "vera": 12297,
- "##rov": 12298,
- "consecrated": 12299,
- "sparks": 12300,
- "ecclesiastical": 12301,
- "confined": 12302,
- "##ovich": 12303,
- "muller": 12304,
- "floyd": 12305,
- "nora": 12306,
- "1822": 12307,
- "paved": 12308,
- "1827": 12309,
- "cumberland": 12310,
- "ned": 12311,
- "saga": 12312,
- "spiral": 12313,
- "##flow": 12314,
- "appreciated": 12315,
- "yi": 12316,
- "collaborative": 12317,
- "treating": 12318,
- "similarities": 12319,
- "feminine": 12320,
- "finishes": 12321,
- "##ib": 12322,
- "jade": 12323,
- "import": 12324,
- "##nse": 12325,
- "##hot": 12326,
- "champagne": 12327,
- "mice": 12328,
- "securing": 12329,
- "celebrities": 12330,
- "helsinki": 12331,
- "attributes": 12332,
- "##gos": 12333,
- "cousins": 12334,
- "phases": 12335,
- "ache": 12336,
- "lucia": 12337,
- "gandhi": 12338,
- "submission": 12339,
- "vicar": 12340,
- "spear": 12341,
- "shine": 12342,
- "tasmania": 12343,
- "biting": 12344,
- "detention": 12345,
- "constitute": 12346,
- "tighter": 12347,
- "seasonal": 12348,
- "##gus": 12349,
- "terrestrial": 12350,
- "matthews": 12351,
- "##oka": 12352,
- "effectiveness": 12353,
- "parody": 12354,
- "philharmonic": 12355,
- "##onic": 12356,
- "1816": 12357,
- "strangers": 12358,
- "encoded": 12359,
- "consortium": 12360,
- "guaranteed": 12361,
- "regards": 12362,
- "shifts": 12363,
- "tortured": 12364,
- "collision": 12365,
- "supervisor": 12366,
- "inform": 12367,
- "broader": 12368,
- "insight": 12369,
- "theaters": 12370,
- "armour": 12371,
- "emeritus": 12372,
- "blink": 12373,
- "incorporates": 12374,
- "mapping": 12375,
- "##50": 12376,
- "##ein": 12377,
- "handball": 12378,
- "flexible": 12379,
- "##nta": 12380,
- "substantially": 12381,
- "generous": 12382,
- "thief": 12383,
- "##own": 12384,
- "carr": 12385,
- "loses": 12386,
- "1793": 12387,
- "prose": 12388,
- "ucla": 12389,
- "romeo": 12390,
- "generic": 12391,
- "metallic": 12392,
- "realization": 12393,
- "damages": 12394,
- "mk": 12395,
- "commissioners": 12396,
- "zach": 12397,
- "default": 12398,
- "##ther": 12399,
- "helicopters": 12400,
- "lengthy": 12401,
- "stems": 12402,
- "spa": 12403,
- "partnered": 12404,
- "spectators": 12405,
- "rogue": 12406,
- "indication": 12407,
- "penalties": 12408,
- "teresa": 12409,
- "1801": 12410,
- "sen": 12411,
- "##tric": 12412,
- "dalton": 12413,
- "##wich": 12414,
- "irving": 12415,
- "photographic": 12416,
- "##vey": 12417,
- "dell": 12418,
- "deaf": 12419,
- "peters": 12420,
- "excluded": 12421,
- "unsure": 12422,
- "##vable": 12423,
- "patterson": 12424,
- "crawled": 12425,
- "##zio": 12426,
- "resided": 12427,
- "whipped": 12428,
- "latvia": 12429,
- "slower": 12430,
- "ecole": 12431,
- "pipes": 12432,
- "employers": 12433,
- "maharashtra": 12434,
- "comparable": 12435,
- "va": 12436,
- "textile": 12437,
- "pageant": 12438,
- "##gel": 12439,
- "alphabet": 12440,
- "binary": 12441,
- "irrigation": 12442,
- "chartered": 12443,
- "choked": 12444,
- "antoine": 12445,
- "offs": 12446,
- "waking": 12447,
- "supplement": 12448,
- "##wen": 12449,
- "quantities": 12450,
- "demolition": 12451,
- "regain": 12452,
- "locate": 12453,
- "urdu": 12454,
- "folks": 12455,
- "alt": 12456,
- "114": 12457,
- "##mc": 12458,
- "scary": 12459,
- "andreas": 12460,
- "whites": 12461,
- "##ava": 12462,
- "classrooms": 12463,
- "mw": 12464,
- "aesthetic": 12465,
- "publishes": 12466,
- "valleys": 12467,
- "guides": 12468,
- "cubs": 12469,
- "johannes": 12470,
- "bryant": 12471,
- "conventions": 12472,
- "affecting": 12473,
- "##itt": 12474,
- "drain": 12475,
- "awesome": 12476,
- "isolation": 12477,
- "prosecutor": 12478,
- "ambitious": 12479,
- "apology": 12480,
- "captive": 12481,
- "downs": 12482,
- "atmospheric": 12483,
- "lorenzo": 12484,
- "aisle": 12485,
- "beef": 12486,
- "foul": 12487,
- "##onia": 12488,
- "kidding": 12489,
- "composite": 12490,
- "disturbed": 12491,
- "illusion": 12492,
- "natives": 12493,
- "##ffer": 12494,
- "emi": 12495,
- "rockets": 12496,
- "riverside": 12497,
- "wartime": 12498,
- "painters": 12499,
- "adolf": 12500,
- "melted": 12501,
- "##ail": 12502,
- "uncertainty": 12503,
- "simulation": 12504,
- "hawks": 12505,
- "progressed": 12506,
- "meantime": 12507,
- "builder": 12508,
- "spray": 12509,
- "breach": 12510,
- "unhappy": 12511,
- "regina": 12512,
- "russians": 12513,
- "##urg": 12514,
- "determining": 12515,
- "##tation": 12516,
- "tram": 12517,
- "1806": 12518,
- "##quin": 12519,
- "aging": 12520,
- "##12": 12521,
- "1823": 12522,
- "garion": 12523,
- "rented": 12524,
- "mister": 12525,
- "diaz": 12526,
- "terminated": 12527,
- "clip": 12528,
- "1817": 12529,
- "depend": 12530,
- "nervously": 12531,
- "disco": 12532,
- "owe": 12533,
- "defenders": 12534,
- "shiva": 12535,
- "notorious": 12536,
- "disbelief": 12537,
- "shiny": 12538,
- "worcester": 12539,
- "##gation": 12540,
- "##yr": 12541,
- "trailing": 12542,
- "undertook": 12543,
- "islander": 12544,
- "belarus": 12545,
- "limitations": 12546,
- "watershed": 12547,
- "fuller": 12548,
- "overlooking": 12549,
- "utilized": 12550,
- "raphael": 12551,
- "1819": 12552,
- "synthetic": 12553,
- "breakdown": 12554,
- "klein": 12555,
- "##nate": 12556,
- "moaned": 12557,
- "memoir": 12558,
- "lamb": 12559,
- "practicing": 12560,
- "##erly": 12561,
- "cellular": 12562,
- "arrows": 12563,
- "exotic": 12564,
- "##graphy": 12565,
- "witches": 12566,
- "117": 12567,
- "charted": 12568,
- "rey": 12569,
- "hut": 12570,
- "hierarchy": 12571,
- "subdivision": 12572,
- "freshwater": 12573,
- "giuseppe": 12574,
- "aloud": 12575,
- "reyes": 12576,
- "qatar": 12577,
- "marty": 12578,
- "sideways": 12579,
- "utterly": 12580,
- "sexually": 12581,
- "jude": 12582,
- "prayers": 12583,
- "mccarthy": 12584,
- "softball": 12585,
- "blend": 12586,
- "damien": 12587,
- "##gging": 12588,
- "##metric": 12589,
- "wholly": 12590,
- "erupted": 12591,
- "lebanese": 12592,
- "negro": 12593,
- "revenues": 12594,
- "tasted": 12595,
- "comparative": 12596,
- "teamed": 12597,
- "transaction": 12598,
- "labeled": 12599,
- "maori": 12600,
- "sovereignty": 12601,
- "parkway": 12602,
- "trauma": 12603,
- "gran": 12604,
- "malay": 12605,
- "121": 12606,
- "advancement": 12607,
- "descendant": 12608,
- "2020": 12609,
- "buzz": 12610,
- "salvation": 12611,
- "inventory": 12612,
- "symbolic": 12613,
- "##making": 12614,
- "antarctica": 12615,
- "mps": 12616,
- "##gas": 12617,
- "##bro": 12618,
- "mohammed": 12619,
- "myanmar": 12620,
- "holt": 12621,
- "submarines": 12622,
- "tones": 12623,
- "##lman": 12624,
- "locker": 12625,
- "patriarch": 12626,
- "bangkok": 12627,
- "emerson": 12628,
- "remarks": 12629,
- "predators": 12630,
- "kin": 12631,
- "afghan": 12632,
- "confession": 12633,
- "norwich": 12634,
- "rental": 12635,
- "emerge": 12636,
- "advantages": 12637,
- "##zel": 12638,
- "rca": 12639,
- "##hold": 12640,
- "shortened": 12641,
- "storms": 12642,
- "aidan": 12643,
- "##matic": 12644,
- "autonomy": 12645,
- "compliance": 12646,
- "##quet": 12647,
- "dudley": 12648,
- "atp": 12649,
- "##osis": 12650,
- "1803": 12651,
- "motto": 12652,
- "documentation": 12653,
- "summary": 12654,
- "professors": 12655,
- "spectacular": 12656,
- "christina": 12657,
- "archdiocese": 12658,
- "flashing": 12659,
- "innocence": 12660,
- "remake": 12661,
- "##dell": 12662,
- "psychic": 12663,
- "reef": 12664,
- "scare": 12665,
- "employ": 12666,
- "rs": 12667,
- "sticks": 12668,
- "meg": 12669,
- "gus": 12670,
- "leans": 12671,
- "##ude": 12672,
- "accompany": 12673,
- "bergen": 12674,
- "tomas": 12675,
- "##iko": 12676,
- "doom": 12677,
- "wages": 12678,
- "pools": 12679,
- "##nch": 12680,
- "##bes": 12681,
- "breasts": 12682,
- "scholarly": 12683,
- "alison": 12684,
- "outline": 12685,
- "brittany": 12686,
- "breakthrough": 12687,
- "willis": 12688,
- "realistic": 12689,
- "##cut": 12690,
- "##boro": 12691,
- "competitor": 12692,
- "##stan": 12693,
- "pike": 12694,
- "picnic": 12695,
- "icon": 12696,
- "designing": 12697,
- "commercials": 12698,
- "washing": 12699,
- "villain": 12700,
- "skiing": 12701,
- "micro": 12702,
- "costumes": 12703,
- "auburn": 12704,
- "halted": 12705,
- "executives": 12706,
- "##hat": 12707,
- "logistics": 12708,
- "cycles": 12709,
- "vowel": 12710,
- "applicable": 12711,
- "barrett": 12712,
- "exclaimed": 12713,
- "eurovision": 12714,
- "eternity": 12715,
- "ramon": 12716,
- "##umi": 12717,
- "##lls": 12718,
- "modifications": 12719,
- "sweeping": 12720,
- "disgust": 12721,
- "##uck": 12722,
- "torch": 12723,
- "aviv": 12724,
- "ensuring": 12725,
- "rude": 12726,
- "dusty": 12727,
- "sonic": 12728,
- "donovan": 12729,
- "outskirts": 12730,
- "cu": 12731,
- "pathway": 12732,
- "##band": 12733,
- "##gun": 12734,
- "##lines": 12735,
- "disciplines": 12736,
- "acids": 12737,
- "cadet": 12738,
- "paired": 12739,
- "##40": 12740,
- "sketches": 12741,
- "##sive": 12742,
- "marriages": 12743,
- "##⁺": 12744,
- "folding": 12745,
- "peers": 12746,
- "slovak": 12747,
- "implies": 12748,
- "admired": 12749,
- "##beck": 12750,
- "1880s": 12751,
- "leopold": 12752,
- "instinct": 12753,
- "attained": 12754,
- "weston": 12755,
- "megan": 12756,
- "horace": 12757,
- "##ination": 12758,
- "dorsal": 12759,
- "ingredients": 12760,
- "evolutionary": 12761,
- "##its": 12762,
- "complications": 12763,
- "deity": 12764,
- "lethal": 12765,
- "brushing": 12766,
- "levy": 12767,
- "deserted": 12768,
- "institutes": 12769,
- "posthumously": 12770,
- "delivering": 12771,
- "telescope": 12772,
- "coronation": 12773,
- "motivated": 12774,
- "rapids": 12775,
- "luc": 12776,
- "flicked": 12777,
- "pays": 12778,
- "volcano": 12779,
- "tanner": 12780,
- "weighed": 12781,
- "##nica": 12782,
- "crowds": 12783,
- "frankie": 12784,
- "gifted": 12785,
- "addressing": 12786,
- "granddaughter": 12787,
- "winding": 12788,
- "##rna": 12789,
- "constantine": 12790,
- "gomez": 12791,
- "##front": 12792,
- "landscapes": 12793,
- "rudolf": 12794,
- "anthropology": 12795,
- "slate": 12796,
- "werewolf": 12797,
- "##lio": 12798,
- "astronomy": 12799,
- "circa": 12800,
- "rouge": 12801,
- "dreaming": 12802,
- "sack": 12803,
- "knelt": 12804,
- "drowned": 12805,
- "naomi": 12806,
- "prolific": 12807,
- "tracked": 12808,
- "freezing": 12809,
- "herb": 12810,
- "##dium": 12811,
- "agony": 12812,
- "randall": 12813,
- "twisting": 12814,
- "wendy": 12815,
- "deposit": 12816,
- "touches": 12817,
- "vein": 12818,
- "wheeler": 12819,
- "##bbled": 12820,
- "##bor": 12821,
- "batted": 12822,
- "retaining": 12823,
- "tire": 12824,
- "presently": 12825,
- "compare": 12826,
- "specification": 12827,
- "daemon": 12828,
- "nigel": 12829,
- "##grave": 12830,
- "merry": 12831,
- "recommendation": 12832,
- "czechoslovakia": 12833,
- "sandra": 12834,
- "ng": 12835,
- "roma": 12836,
- "##sts": 12837,
- "lambert": 12838,
- "inheritance": 12839,
- "sheikh": 12840,
- "winchester": 12841,
- "cries": 12842,
- "examining": 12843,
- "##yle": 12844,
- "comeback": 12845,
- "cuisine": 12846,
- "nave": 12847,
- "##iv": 12848,
- "ko": 12849,
- "retrieve": 12850,
- "tomatoes": 12851,
- "barker": 12852,
- "polished": 12853,
- "defining": 12854,
- "irene": 12855,
- "lantern": 12856,
- "personalities": 12857,
- "begging": 12858,
- "tract": 12859,
- "swore": 12860,
- "1809": 12861,
- "175": 12862,
- "##gic": 12863,
- "omaha": 12864,
- "brotherhood": 12865,
- "##rley": 12866,
- "haiti": 12867,
- "##ots": 12868,
- "exeter": 12869,
- "##ete": 12870,
- "##zia": 12871,
- "steele": 12872,
- "dumb": 12873,
- "pearson": 12874,
- "210": 12875,
- "surveyed": 12876,
- "elisabeth": 12877,
- "trends": 12878,
- "##ef": 12879,
- "fritz": 12880,
- "##rf": 12881,
- "premium": 12882,
- "bugs": 12883,
- "fraction": 12884,
- "calmly": 12885,
- "viking": 12886,
- "##birds": 12887,
- "tug": 12888,
- "inserted": 12889,
- "unusually": 12890,
- "##ield": 12891,
- "confronted": 12892,
- "distress": 12893,
- "crashing": 12894,
- "brent": 12895,
- "turks": 12896,
- "resign": 12897,
- "##olo": 12898,
- "cambodia": 12899,
- "gabe": 12900,
- "sauce": 12901,
- "##kal": 12902,
- "evelyn": 12903,
- "116": 12904,
- "extant": 12905,
- "clusters": 12906,
- "quarry": 12907,
- "teenagers": 12908,
- "luna": 12909,
- "##lers": 12910,
- "##ister": 12911,
- "affiliation": 12912,
- "drill": 12913,
- "##ashi": 12914,
- "panthers": 12915,
- "scenic": 12916,
- "libya": 12917,
- "anita": 12918,
- "strengthen": 12919,
- "inscriptions": 12920,
- "##cated": 12921,
- "lace": 12922,
- "sued": 12923,
- "judith": 12924,
- "riots": 12925,
- "##uted": 12926,
- "mint": 12927,
- "##eta": 12928,
- "preparations": 12929,
- "midst": 12930,
- "dub": 12931,
- "challenger": 12932,
- "##vich": 12933,
- "mock": 12934,
- "cf": 12935,
- "displaced": 12936,
- "wicket": 12937,
- "breaths": 12938,
- "enables": 12939,
- "schmidt": 12940,
- "analyst": 12941,
- "##lum": 12942,
- "ag": 12943,
- "highlight": 12944,
- "automotive": 12945,
- "axe": 12946,
- "josef": 12947,
- "newark": 12948,
- "sufficiently": 12949,
- "resembles": 12950,
- "50th": 12951,
- "##pal": 12952,
- "flushed": 12953,
- "mum": 12954,
- "traits": 12955,
- "##ante": 12956,
- "commodore": 12957,
- "incomplete": 12958,
- "warming": 12959,
- "titular": 12960,
- "ceremonial": 12961,
- "ethical": 12962,
- "118": 12963,
- "celebrating": 12964,
- "eighteenth": 12965,
- "cao": 12966,
- "lima": 12967,
- "medalist": 12968,
- "mobility": 12969,
- "strips": 12970,
- "snakes": 12971,
- "##city": 12972,
- "miniature": 12973,
- "zagreb": 12974,
- "barton": 12975,
- "escapes": 12976,
- "umbrella": 12977,
- "automated": 12978,
- "doubted": 12979,
- "differs": 12980,
- "cooled": 12981,
- "georgetown": 12982,
- "dresden": 12983,
- "cooked": 12984,
- "fade": 12985,
- "wyatt": 12986,
- "rna": 12987,
- "jacobs": 12988,
- "carlton": 12989,
- "abundant": 12990,
- "stereo": 12991,
- "boost": 12992,
- "madras": 12993,
- "inning": 12994,
- "##hia": 12995,
- "spur": 12996,
- "ip": 12997,
- "malayalam": 12998,
- "begged": 12999,
- "osaka": 13000,
- "groan": 13001,
- "escaping": 13002,
- "charging": 13003,
- "dose": 13004,
- "vista": 13005,
- "##aj": 13006,
- "bud": 13007,
- "papa": 13008,
- "communists": 13009,
- "advocates": 13010,
- "edged": 13011,
- "tri": 13012,
- "##cent": 13013,
- "resemble": 13014,
- "peaking": 13015,
- "necklace": 13016,
- "fried": 13017,
- "montenegro": 13018,
- "saxony": 13019,
- "goose": 13020,
- "glances": 13021,
- "stuttgart": 13022,
- "curator": 13023,
- "recruit": 13024,
- "grocery": 13025,
- "sympathetic": 13026,
- "##tting": 13027,
- "##fort": 13028,
- "127": 13029,
- "lotus": 13030,
- "randolph": 13031,
- "ancestor": 13032,
- "##rand": 13033,
- "succeeding": 13034,
- "jupiter": 13035,
- "1798": 13036,
- "macedonian": 13037,
- "##heads": 13038,
- "hiking": 13039,
- "1808": 13040,
- "handing": 13041,
- "fischer": 13042,
- "##itive": 13043,
- "garbage": 13044,
- "node": 13045,
- "##pies": 13046,
- "prone": 13047,
- "singular": 13048,
- "papua": 13049,
- "inclined": 13050,
- "attractions": 13051,
- "italia": 13052,
- "pouring": 13053,
- "motioned": 13054,
- "grandma": 13055,
- "garnered": 13056,
- "jacksonville": 13057,
- "corp": 13058,
- "ego": 13059,
- "ringing": 13060,
- "aluminum": 13061,
- "##hausen": 13062,
- "ordering": 13063,
- "##foot": 13064,
- "drawer": 13065,
- "traders": 13066,
- "synagogue": 13067,
- "##play": 13068,
- "##kawa": 13069,
- "resistant": 13070,
- "wandering": 13071,
- "fragile": 13072,
- "fiona": 13073,
- "teased": 13074,
- "var": 13075,
- "hardcore": 13076,
- "soaked": 13077,
- "jubilee": 13078,
- "decisive": 13079,
- "exposition": 13080,
- "mercer": 13081,
- "poster": 13082,
- "valencia": 13083,
- "hale": 13084,
- "kuwait": 13085,
- "1811": 13086,
- "##ises": 13087,
- "##wr": 13088,
- "##eed": 13089,
- "tavern": 13090,
- "gamma": 13091,
- "122": 13092,
- "johan": 13093,
- "##uer": 13094,
- "airways": 13095,
- "amino": 13096,
- "gil": 13097,
- "##ury": 13098,
- "vocational": 13099,
- "domains": 13100,
- "torres": 13101,
- "##sp": 13102,
- "generator": 13103,
- "folklore": 13104,
- "outcomes": 13105,
- "##keeper": 13106,
- "canberra": 13107,
- "shooter": 13108,
- "fl": 13109,
- "beams": 13110,
- "confrontation": 13111,
- "##lling": 13112,
- "##gram": 13113,
- "feb": 13114,
- "aligned": 13115,
- "forestry": 13116,
- "pipeline": 13117,
- "jax": 13118,
- "motorway": 13119,
- "conception": 13120,
- "decay": 13121,
- "##tos": 13122,
- "coffin": 13123,
- "##cott": 13124,
- "stalin": 13125,
- "1805": 13126,
- "escorted": 13127,
- "minded": 13128,
- "##nam": 13129,
- "sitcom": 13130,
- "purchasing": 13131,
- "twilight": 13132,
- "veronica": 13133,
- "additions": 13134,
- "passive": 13135,
- "tensions": 13136,
- "straw": 13137,
- "123": 13138,
- "frequencies": 13139,
- "1804": 13140,
- "refugee": 13141,
- "cultivation": 13142,
- "##iate": 13143,
- "christie": 13144,
- "clary": 13145,
- "bulletin": 13146,
- "crept": 13147,
- "disposal": 13148,
- "##rich": 13149,
- "##zong": 13150,
- "processor": 13151,
- "crescent": 13152,
- "##rol": 13153,
- "bmw": 13154,
- "emphasized": 13155,
- "whale": 13156,
- "nazis": 13157,
- "aurora": 13158,
- "##eng": 13159,
- "dwelling": 13160,
- "hauled": 13161,
- "sponsors": 13162,
- "toledo": 13163,
- "mega": 13164,
- "ideology": 13165,
- "theatres": 13166,
- "tessa": 13167,
- "cerambycidae": 13168,
- "saves": 13169,
- "turtle": 13170,
- "cone": 13171,
- "suspects": 13172,
- "kara": 13173,
- "rusty": 13174,
- "yelling": 13175,
- "greeks": 13176,
- "mozart": 13177,
- "shades": 13178,
- "cocked": 13179,
- "participant": 13180,
- "##tro": 13181,
- "shire": 13182,
- "spit": 13183,
- "freeze": 13184,
- "necessity": 13185,
- "##cos": 13186,
- "inmates": 13187,
- "nielsen": 13188,
- "councillors": 13189,
- "loaned": 13190,
- "uncommon": 13191,
- "omar": 13192,
- "peasants": 13193,
- "botanical": 13194,
- "offspring": 13195,
- "daniels": 13196,
- "formations": 13197,
- "jokes": 13198,
- "1794": 13199,
- "pioneers": 13200,
- "sigma": 13201,
- "licensing": 13202,
- "##sus": 13203,
- "wheelchair": 13204,
- "polite": 13205,
- "1807": 13206,
- "liquor": 13207,
- "pratt": 13208,
- "trustee": 13209,
- "##uta": 13210,
- "forewings": 13211,
- "balloon": 13212,
- "##zz": 13213,
- "kilometre": 13214,
- "camping": 13215,
- "explicit": 13216,
- "casually": 13217,
- "shawn": 13218,
- "foolish": 13219,
- "teammates": 13220,
- "nm": 13221,
- "hassan": 13222,
- "carrie": 13223,
- "judged": 13224,
- "satisfy": 13225,
- "vanessa": 13226,
- "knives": 13227,
- "selective": 13228,
- "cnn": 13229,
- "flowed": 13230,
- "##lice": 13231,
- "eclipse": 13232,
- "stressed": 13233,
- "eliza": 13234,
- "mathematician": 13235,
- "cease": 13236,
- "cultivated": 13237,
- "##roy": 13238,
- "commissions": 13239,
- "browns": 13240,
- "##ania": 13241,
- "destroyers": 13242,
- "sheridan": 13243,
- "meadow": 13244,
- "##rius": 13245,
- "minerals": 13246,
- "##cial": 13247,
- "downstream": 13248,
- "clash": 13249,
- "gram": 13250,
- "memoirs": 13251,
- "ventures": 13252,
- "baha": 13253,
- "seymour": 13254,
- "archie": 13255,
- "midlands": 13256,
- "edith": 13257,
- "fare": 13258,
- "flynn": 13259,
- "invite": 13260,
- "canceled": 13261,
- "tiles": 13262,
- "stabbed": 13263,
- "boulder": 13264,
- "incorporate": 13265,
- "amended": 13266,
- "camden": 13267,
- "facial": 13268,
- "mollusk": 13269,
- "unreleased": 13270,
- "descriptions": 13271,
- "yoga": 13272,
- "grabs": 13273,
- "550": 13274,
- "raises": 13275,
- "ramp": 13276,
- "shiver": 13277,
- "##rose": 13278,
- "coined": 13279,
- "pioneering": 13280,
- "tunes": 13281,
- "qing": 13282,
- "warwick": 13283,
- "tops": 13284,
- "119": 13285,
- "melanie": 13286,
- "giles": 13287,
- "##rous": 13288,
- "wandered": 13289,
- "##inal": 13290,
- "annexed": 13291,
- "nov": 13292,
- "30th": 13293,
- "unnamed": 13294,
- "##ished": 13295,
- "organizational": 13296,
- "airplane": 13297,
- "normandy": 13298,
- "stoke": 13299,
- "whistle": 13300,
- "blessing": 13301,
- "violations": 13302,
- "chased": 13303,
- "holders": 13304,
- "shotgun": 13305,
- "##ctic": 13306,
- "outlet": 13307,
- "reactor": 13308,
- "##vik": 13309,
- "tires": 13310,
- "tearing": 13311,
- "shores": 13312,
- "fortified": 13313,
- "mascot": 13314,
- "constituencies": 13315,
- "nc": 13316,
- "columnist": 13317,
- "productive": 13318,
- "tibet": 13319,
- "##rta": 13320,
- "lineage": 13321,
- "hooked": 13322,
- "oct": 13323,
- "tapes": 13324,
- "judging": 13325,
- "cody": 13326,
- "##gger": 13327,
- "hansen": 13328,
- "kashmir": 13329,
- "triggered": 13330,
- "##eva": 13331,
- "solved": 13332,
- "cliffs": 13333,
- "##tree": 13334,
- "resisted": 13335,
- "anatomy": 13336,
- "protesters": 13337,
- "transparent": 13338,
- "implied": 13339,
- "##iga": 13340,
- "injection": 13341,
- "mattress": 13342,
- "excluding": 13343,
- "##mbo": 13344,
- "defenses": 13345,
- "helpless": 13346,
- "devotion": 13347,
- "##elli": 13348,
- "growl": 13349,
- "liberals": 13350,
- "weber": 13351,
- "phenomena": 13352,
- "atoms": 13353,
- "plug": 13354,
- "##iff": 13355,
- "mortality": 13356,
- "apprentice": 13357,
- "howe": 13358,
- "convincing": 13359,
- "aaa": 13360,
- "swimmer": 13361,
- "barber": 13362,
- "leone": 13363,
- "promptly": 13364,
- "sodium": 13365,
- "def": 13366,
- "nowadays": 13367,
- "arise": 13368,
- "##oning": 13369,
- "gloucester": 13370,
- "corrected": 13371,
- "dignity": 13372,
- "norm": 13373,
- "erie": 13374,
- "##ders": 13375,
- "elders": 13376,
- "evacuated": 13377,
- "sylvia": 13378,
- "compression": 13379,
- "##yar": 13380,
- "hartford": 13381,
- "pose": 13382,
- "backpack": 13383,
- "reasoning": 13384,
- "accepts": 13385,
- "24th": 13386,
- "wipe": 13387,
- "millimetres": 13388,
- "marcel": 13389,
- "##oda": 13390,
- "dodgers": 13391,
- "albion": 13392,
- "1790": 13393,
- "overwhelmed": 13394,
- "aerospace": 13395,
- "oaks": 13396,
- "1795": 13397,
- "showcase": 13398,
- "acknowledge": 13399,
- "recovering": 13400,
- "nolan": 13401,
- "ashe": 13402,
- "hurts": 13403,
- "geology": 13404,
- "fashioned": 13405,
- "disappearance": 13406,
- "farewell": 13407,
- "swollen": 13408,
- "shrug": 13409,
- "marquis": 13410,
- "wimbledon": 13411,
- "124": 13412,
- "rue": 13413,
- "1792": 13414,
- "commemorate": 13415,
- "reduces": 13416,
- "experiencing": 13417,
- "inevitable": 13418,
- "calcutta": 13419,
- "intel": 13420,
- "##court": 13421,
- "murderer": 13422,
- "sticking": 13423,
- "fisheries": 13424,
- "imagery": 13425,
- "bloom": 13426,
- "280": 13427,
- "brake": 13428,
- "##inus": 13429,
- "gustav": 13430,
- "hesitation": 13431,
- "memorable": 13432,
- "po": 13433,
- "viral": 13434,
- "beans": 13435,
- "accidents": 13436,
- "tunisia": 13437,
- "antenna": 13438,
- "spilled": 13439,
- "consort": 13440,
- "treatments": 13441,
- "aye": 13442,
- "perimeter": 13443,
- "##gard": 13444,
- "donation": 13445,
- "hostage": 13446,
- "migrated": 13447,
- "banker": 13448,
- "addiction": 13449,
- "apex": 13450,
- "lil": 13451,
- "trout": 13452,
- "##ously": 13453,
- "conscience": 13454,
- "##nova": 13455,
- "rams": 13456,
- "sands": 13457,
- "genome": 13458,
- "passionate": 13459,
- "troubles": 13460,
- "##lets": 13461,
- "##set": 13462,
- "amid": 13463,
- "##ibility": 13464,
- "##ret": 13465,
- "higgins": 13466,
- "exceed": 13467,
- "vikings": 13468,
- "##vie": 13469,
- "payne": 13470,
- "##zan": 13471,
- "muscular": 13472,
- "##ste": 13473,
- "defendant": 13474,
- "sucking": 13475,
- "##wal": 13476,
- "ibrahim": 13477,
- "fuselage": 13478,
- "claudia": 13479,
- "vfl": 13480,
- "europeans": 13481,
- "snails": 13482,
- "interval": 13483,
- "##garh": 13484,
- "preparatory": 13485,
- "statewide": 13486,
- "tasked": 13487,
- "lacrosse": 13488,
- "viktor": 13489,
- "##lation": 13490,
- "angola": 13491,
- "##hra": 13492,
- "flint": 13493,
- "implications": 13494,
- "employs": 13495,
- "teens": 13496,
- "patrons": 13497,
- "stall": 13498,
- "weekends": 13499,
- "barriers": 13500,
- "scrambled": 13501,
- "nucleus": 13502,
- "tehran": 13503,
- "jenna": 13504,
- "parsons": 13505,
- "lifelong": 13506,
- "robots": 13507,
- "displacement": 13508,
- "5000": 13509,
- "##bles": 13510,
- "precipitation": 13511,
- "##gt": 13512,
- "knuckles": 13513,
- "clutched": 13514,
- "1802": 13515,
- "marrying": 13516,
- "ecology": 13517,
- "marx": 13518,
- "accusations": 13519,
- "declare": 13520,
- "scars": 13521,
- "kolkata": 13522,
- "mat": 13523,
- "meadows": 13524,
- "bermuda": 13525,
- "skeleton": 13526,
- "finalists": 13527,
- "vintage": 13528,
- "crawl": 13529,
- "coordinate": 13530,
- "affects": 13531,
- "subjected": 13532,
- "orchestral": 13533,
- "mistaken": 13534,
- "##tc": 13535,
- "mirrors": 13536,
- "dipped": 13537,
- "relied": 13538,
- "260": 13539,
- "arches": 13540,
- "candle": 13541,
- "##nick": 13542,
- "incorporating": 13543,
- "wildly": 13544,
- "fond": 13545,
- "basilica": 13546,
- "owl": 13547,
- "fringe": 13548,
- "rituals": 13549,
- "whispering": 13550,
- "stirred": 13551,
- "feud": 13552,
- "tertiary": 13553,
- "slick": 13554,
- "goat": 13555,
- "honorable": 13556,
- "whereby": 13557,
- "skip": 13558,
- "ricardo": 13559,
- "stripes": 13560,
- "parachute": 13561,
- "adjoining": 13562,
- "submerged": 13563,
- "synthesizer": 13564,
- "##gren": 13565,
- "intend": 13566,
- "positively": 13567,
- "ninety": 13568,
- "phi": 13569,
- "beaver": 13570,
- "partition": 13571,
- "fellows": 13572,
- "alexis": 13573,
- "prohibition": 13574,
- "carlisle": 13575,
- "bizarre": 13576,
- "fraternity": 13577,
- "##bre": 13578,
- "doubts": 13579,
- "icy": 13580,
- "cbc": 13581,
- "aquatic": 13582,
- "sneak": 13583,
- "sonny": 13584,
- "combines": 13585,
- "airports": 13586,
- "crude": 13587,
- "supervised": 13588,
- "spatial": 13589,
- "merge": 13590,
- "alfonso": 13591,
- "##bic": 13592,
- "corrupt": 13593,
- "scan": 13594,
- "undergo": 13595,
- "##ams": 13596,
- "disabilities": 13597,
- "colombian": 13598,
- "comparing": 13599,
- "dolphins": 13600,
- "perkins": 13601,
- "##lish": 13602,
- "reprinted": 13603,
- "unanimous": 13604,
- "bounced": 13605,
- "hairs": 13606,
- "underworld": 13607,
- "midwest": 13608,
- "semester": 13609,
- "bucket": 13610,
- "paperback": 13611,
- "miniseries": 13612,
- "coventry": 13613,
- "demise": 13614,
- "##leigh": 13615,
- "demonstrations": 13616,
- "sensor": 13617,
- "rotating": 13618,
- "yan": 13619,
- "##hler": 13620,
- "arrange": 13621,
- "soils": 13622,
- "##idge": 13623,
- "hyderabad": 13624,
- "labs": 13625,
- "##dr": 13626,
- "brakes": 13627,
- "grandchildren": 13628,
- "##nde": 13629,
- "negotiated": 13630,
- "rover": 13631,
- "ferrari": 13632,
- "continuation": 13633,
- "directorate": 13634,
- "augusta": 13635,
- "stevenson": 13636,
- "counterpart": 13637,
- "gore": 13638,
- "##rda": 13639,
- "nursery": 13640,
- "rican": 13641,
- "ave": 13642,
- "collectively": 13643,
- "broadly": 13644,
- "pastoral": 13645,
- "repertoire": 13646,
- "asserted": 13647,
- "discovering": 13648,
- "nordic": 13649,
- "styled": 13650,
- "fiba": 13651,
- "cunningham": 13652,
- "harley": 13653,
- "middlesex": 13654,
- "survives": 13655,
- "tumor": 13656,
- "tempo": 13657,
- "zack": 13658,
- "aiming": 13659,
- "lok": 13660,
- "urgent": 13661,
- "##rade": 13662,
- "##nto": 13663,
- "devils": 13664,
- "##ement": 13665,
- "contractor": 13666,
- "turin": 13667,
- "##wl": 13668,
- "##ool": 13669,
- "bliss": 13670,
- "repaired": 13671,
- "simmons": 13672,
- "moan": 13673,
- "astronomical": 13674,
- "cr": 13675,
- "negotiate": 13676,
- "lyric": 13677,
- "1890s": 13678,
- "lara": 13679,
- "bred": 13680,
- "clad": 13681,
- "angus": 13682,
- "pbs": 13683,
- "##ience": 13684,
- "engineered": 13685,
- "posed": 13686,
- "##lk": 13687,
- "hernandez": 13688,
- "possessions": 13689,
- "elbows": 13690,
- "psychiatric": 13691,
- "strokes": 13692,
- "confluence": 13693,
- "electorate": 13694,
- "lifts": 13695,
- "campuses": 13696,
- "lava": 13697,
- "alps": 13698,
- "##ep": 13699,
- "##ution": 13700,
- "##date": 13701,
- "physicist": 13702,
- "woody": 13703,
- "##page": 13704,
- "##ographic": 13705,
- "##itis": 13706,
- "juliet": 13707,
- "reformation": 13708,
- "sparhawk": 13709,
- "320": 13710,
- "complement": 13711,
- "suppressed": 13712,
- "jewel": 13713,
- "##½": 13714,
- "floated": 13715,
- "##kas": 13716,
- "continuity": 13717,
- "sadly": 13718,
- "##ische": 13719,
- "inability": 13720,
- "melting": 13721,
- "scanning": 13722,
- "paula": 13723,
- "flour": 13724,
- "judaism": 13725,
- "safer": 13726,
- "vague": 13727,
- "##lm": 13728,
- "solving": 13729,
- "curb": 13730,
- "##stown": 13731,
- "financially": 13732,
- "gable": 13733,
- "bees": 13734,
- "expired": 13735,
- "miserable": 13736,
- "cassidy": 13737,
- "dominion": 13738,
- "1789": 13739,
- "cupped": 13740,
- "145": 13741,
- "robbery": 13742,
- "facto": 13743,
- "amos": 13744,
- "warden": 13745,
- "resume": 13746,
- "tallest": 13747,
- "marvin": 13748,
- "ing": 13749,
- "pounded": 13750,
- "usd": 13751,
- "declaring": 13752,
- "gasoline": 13753,
- "##aux": 13754,
- "darkened": 13755,
- "270": 13756,
- "650": 13757,
- "sophomore": 13758,
- "##mere": 13759,
- "erection": 13760,
- "gossip": 13761,
- "televised": 13762,
- "risen": 13763,
- "dial": 13764,
- "##eu": 13765,
- "pillars": 13766,
- "##link": 13767,
- "passages": 13768,
- "profound": 13769,
- "##tina": 13770,
- "arabian": 13771,
- "ashton": 13772,
- "silicon": 13773,
- "nail": 13774,
- "##ead": 13775,
- "##lated": 13776,
- "##wer": 13777,
- "##hardt": 13778,
- "fleming": 13779,
- "firearms": 13780,
- "ducked": 13781,
- "circuits": 13782,
- "blows": 13783,
- "waterloo": 13784,
- "titans": 13785,
- "##lina": 13786,
- "atom": 13787,
- "fireplace": 13788,
- "cheshire": 13789,
- "financed": 13790,
- "activation": 13791,
- "algorithms": 13792,
- "##zzi": 13793,
- "constituent": 13794,
- "catcher": 13795,
- "cherokee": 13796,
- "partnerships": 13797,
- "sexuality": 13798,
- "platoon": 13799,
- "tragic": 13800,
- "vivian": 13801,
- "guarded": 13802,
- "whiskey": 13803,
- "meditation": 13804,
- "poetic": 13805,
- "##late": 13806,
- "##nga": 13807,
- "##ake": 13808,
- "porto": 13809,
- "listeners": 13810,
- "dominance": 13811,
- "kendra": 13812,
- "mona": 13813,
- "chandler": 13814,
- "factions": 13815,
- "22nd": 13816,
- "salisbury": 13817,
- "attitudes": 13818,
- "derivative": 13819,
- "##ido": 13820,
- "##haus": 13821,
- "intake": 13822,
- "paced": 13823,
- "javier": 13824,
- "illustrator": 13825,
- "barrels": 13826,
- "bias": 13827,
- "cockpit": 13828,
- "burnett": 13829,
- "dreamed": 13830,
- "ensuing": 13831,
- "##anda": 13832,
- "receptors": 13833,
- "someday": 13834,
- "hawkins": 13835,
- "mattered": 13836,
- "##lal": 13837,
- "slavic": 13838,
- "1799": 13839,
- "jesuit": 13840,
- "cameroon": 13841,
- "wasted": 13842,
- "tai": 13843,
- "wax": 13844,
- "lowering": 13845,
- "victorious": 13846,
- "freaking": 13847,
- "outright": 13848,
- "hancock": 13849,
- "librarian": 13850,
- "sensing": 13851,
- "bald": 13852,
- "calcium": 13853,
- "myers": 13854,
- "tablet": 13855,
- "announcing": 13856,
- "barack": 13857,
- "shipyard": 13858,
- "pharmaceutical": 13859,
- "##uan": 13860,
- "greenwich": 13861,
- "flush": 13862,
- "medley": 13863,
- "patches": 13864,
- "wolfgang": 13865,
- "pt": 13866,
- "speeches": 13867,
- "acquiring": 13868,
- "exams": 13869,
- "nikolai": 13870,
- "##gg": 13871,
- "hayden": 13872,
- "kannada": 13873,
- "##type": 13874,
- "reilly": 13875,
- "##pt": 13876,
- "waitress": 13877,
- "abdomen": 13878,
- "devastated": 13879,
- "capped": 13880,
- "pseudonym": 13881,
- "pharmacy": 13882,
- "fulfill": 13883,
- "paraguay": 13884,
- "1796": 13885,
- "clicked": 13886,
- "##trom": 13887,
- "archipelago": 13888,
- "syndicated": 13889,
- "##hman": 13890,
- "lumber": 13891,
- "orgasm": 13892,
- "rejection": 13893,
- "clifford": 13894,
- "lorraine": 13895,
- "advent": 13896,
- "mafia": 13897,
- "rodney": 13898,
- "brock": 13899,
- "##ght": 13900,
- "##used": 13901,
- "##elia": 13902,
- "cassette": 13903,
- "chamberlain": 13904,
- "despair": 13905,
- "mongolia": 13906,
- "sensors": 13907,
- "developmental": 13908,
- "upstream": 13909,
- "##eg": 13910,
- "##alis": 13911,
- "spanning": 13912,
- "165": 13913,
- "trombone": 13914,
- "basque": 13915,
- "seeded": 13916,
- "interred": 13917,
- "renewable": 13918,
- "rhys": 13919,
- "leapt": 13920,
- "revision": 13921,
- "molecule": 13922,
- "##ages": 13923,
- "chord": 13924,
- "vicious": 13925,
- "nord": 13926,
- "shivered": 13927,
- "23rd": 13928,
- "arlington": 13929,
- "debts": 13930,
- "corpus": 13931,
- "sunrise": 13932,
- "bays": 13933,
- "blackburn": 13934,
- "centimetres": 13935,
- "##uded": 13936,
- "shuddered": 13937,
- "gm": 13938,
- "strangely": 13939,
- "gripping": 13940,
- "cartoons": 13941,
- "isabelle": 13942,
- "orbital": 13943,
- "##ppa": 13944,
- "seals": 13945,
- "proving": 13946,
- "##lton": 13947,
- "refusal": 13948,
- "strengthened": 13949,
- "bust": 13950,
- "assisting": 13951,
- "baghdad": 13952,
- "batsman": 13953,
- "portrayal": 13954,
- "mara": 13955,
- "pushes": 13956,
- "spears": 13957,
- "og": 13958,
- "##cock": 13959,
- "reside": 13960,
- "nathaniel": 13961,
- "brennan": 13962,
- "1776": 13963,
- "confirmation": 13964,
- "caucus": 13965,
- "##worthy": 13966,
- "markings": 13967,
- "yemen": 13968,
- "nobles": 13969,
- "ku": 13970,
- "lazy": 13971,
- "viewer": 13972,
- "catalan": 13973,
- "encompasses": 13974,
- "sawyer": 13975,
- "##fall": 13976,
- "sparked": 13977,
- "substances": 13978,
- "patents": 13979,
- "braves": 13980,
- "arranger": 13981,
- "evacuation": 13982,
- "sergio": 13983,
- "persuade": 13984,
- "dover": 13985,
- "tolerance": 13986,
- "penguin": 13987,
- "cum": 13988,
- "jockey": 13989,
- "insufficient": 13990,
- "townships": 13991,
- "occupying": 13992,
- "declining": 13993,
- "plural": 13994,
- "processed": 13995,
- "projection": 13996,
- "puppet": 13997,
- "flanders": 13998,
- "introduces": 13999,
- "liability": 14000,
- "##yon": 14001,
- "gymnastics": 14002,
- "antwerp": 14003,
- "taipei": 14004,
- "hobart": 14005,
- "candles": 14006,
- "jeep": 14007,
- "wes": 14008,
- "observers": 14009,
- "126": 14010,
- "chaplain": 14011,
- "bundle": 14012,
- "glorious": 14013,
- "##hine": 14014,
- "hazel": 14015,
- "flung": 14016,
- "sol": 14017,
- "excavations": 14018,
- "dumped": 14019,
- "stares": 14020,
- "sh": 14021,
- "bangalore": 14022,
- "triangular": 14023,
- "icelandic": 14024,
- "intervals": 14025,
- "expressing": 14026,
- "turbine": 14027,
- "##vers": 14028,
- "songwriting": 14029,
- "crafts": 14030,
- "##igo": 14031,
- "jasmine": 14032,
- "ditch": 14033,
- "rite": 14034,
- "##ways": 14035,
- "entertaining": 14036,
- "comply": 14037,
- "sorrow": 14038,
- "wrestlers": 14039,
- "basel": 14040,
- "emirates": 14041,
- "marian": 14042,
- "rivera": 14043,
- "helpful": 14044,
- "##some": 14045,
- "caution": 14046,
- "downward": 14047,
- "networking": 14048,
- "##atory": 14049,
- "##tered": 14050,
- "darted": 14051,
- "genocide": 14052,
- "emergence": 14053,
- "replies": 14054,
- "specializing": 14055,
- "spokesman": 14056,
- "convenient": 14057,
- "unlocked": 14058,
- "fading": 14059,
- "augustine": 14060,
- "concentrations": 14061,
- "resemblance": 14062,
- "elijah": 14063,
- "investigator": 14064,
- "andhra": 14065,
- "##uda": 14066,
- "promotes": 14067,
- "bean": 14068,
- "##rrell": 14069,
- "fleeing": 14070,
- "wan": 14071,
- "simone": 14072,
- "announcer": 14073,
- "##ame": 14074,
- "##bby": 14075,
- "lydia": 14076,
- "weaver": 14077,
- "132": 14078,
- "residency": 14079,
- "modification": 14080,
- "##fest": 14081,
- "stretches": 14082,
- "##ast": 14083,
- "alternatively": 14084,
- "nat": 14085,
- "lowe": 14086,
- "lacks": 14087,
- "##ented": 14088,
- "pam": 14089,
- "tile": 14090,
- "concealed": 14091,
- "inferior": 14092,
- "abdullah": 14093,
- "residences": 14094,
- "tissues": 14095,
- "vengeance": 14096,
- "##ided": 14097,
- "moisture": 14098,
- "peculiar": 14099,
- "groove": 14100,
- "zip": 14101,
- "bologna": 14102,
- "jennings": 14103,
- "ninja": 14104,
- "oversaw": 14105,
- "zombies": 14106,
- "pumping": 14107,
- "batch": 14108,
- "livingston": 14109,
- "emerald": 14110,
- "installations": 14111,
- "1797": 14112,
- "peel": 14113,
- "nitrogen": 14114,
- "rama": 14115,
- "##fying": 14116,
- "##star": 14117,
- "schooling": 14118,
- "strands": 14119,
- "responding": 14120,
- "werner": 14121,
- "##ost": 14122,
- "lime": 14123,
- "casa": 14124,
- "accurately": 14125,
- "targeting": 14126,
- "##rod": 14127,
- "underway": 14128,
- "##uru": 14129,
- "hemisphere": 14130,
- "lester": 14131,
- "##yard": 14132,
- "occupies": 14133,
- "2d": 14134,
- "griffith": 14135,
- "angrily": 14136,
- "reorganized": 14137,
- "##owing": 14138,
- "courtney": 14139,
- "deposited": 14140,
- "##dd": 14141,
- "##30": 14142,
- "estadio": 14143,
- "##ifies": 14144,
- "dunn": 14145,
- "exiled": 14146,
- "##ying": 14147,
- "checks": 14148,
- "##combe": 14149,
- "##о": 14150,
- "##fly": 14151,
- "successes": 14152,
- "unexpectedly": 14153,
- "blu": 14154,
- "assessed": 14155,
- "##flower": 14156,
- "##ه": 14157,
- "observing": 14158,
- "sacked": 14159,
- "spiders": 14160,
- "kn": 14161,
- "##tail": 14162,
- "mu": 14163,
- "nodes": 14164,
- "prosperity": 14165,
- "audrey": 14166,
- "divisional": 14167,
- "155": 14168,
- "broncos": 14169,
- "tangled": 14170,
- "adjust": 14171,
- "feeds": 14172,
- "erosion": 14173,
- "paolo": 14174,
- "surf": 14175,
- "directory": 14176,
- "snatched": 14177,
- "humid": 14178,
- "admiralty": 14179,
- "screwed": 14180,
- "gt": 14181,
- "reddish": 14182,
- "##nese": 14183,
- "modules": 14184,
- "trench": 14185,
- "lamps": 14186,
- "bind": 14187,
- "leah": 14188,
- "bucks": 14189,
- "competes": 14190,
- "##nz": 14191,
- "##form": 14192,
- "transcription": 14193,
- "##uc": 14194,
- "isles": 14195,
- "violently": 14196,
- "clutching": 14197,
- "pga": 14198,
- "cyclist": 14199,
- "inflation": 14200,
- "flats": 14201,
- "ragged": 14202,
- "unnecessary": 14203,
- "##hian": 14204,
- "stubborn": 14205,
- "coordinated": 14206,
- "harriet": 14207,
- "baba": 14208,
- "disqualified": 14209,
- "330": 14210,
- "insect": 14211,
- "wolfe": 14212,
- "##fies": 14213,
- "reinforcements": 14214,
- "rocked": 14215,
- "duel": 14216,
- "winked": 14217,
- "embraced": 14218,
- "bricks": 14219,
- "##raj": 14220,
- "hiatus": 14221,
- "defeats": 14222,
- "pending": 14223,
- "brightly": 14224,
- "jealousy": 14225,
- "##xton": 14226,
- "##hm": 14227,
- "##uki": 14228,
- "lena": 14229,
- "gdp": 14230,
- "colorful": 14231,
- "##dley": 14232,
- "stein": 14233,
- "kidney": 14234,
- "##shu": 14235,
- "underwear": 14236,
- "wanderers": 14237,
- "##haw": 14238,
- "##icus": 14239,
- "guardians": 14240,
- "m³": 14241,
- "roared": 14242,
- "habits": 14243,
- "##wise": 14244,
- "permits": 14245,
- "gp": 14246,
- "uranium": 14247,
- "punished": 14248,
- "disguise": 14249,
- "bundesliga": 14250,
- "elise": 14251,
- "dundee": 14252,
- "erotic": 14253,
- "partisan": 14254,
- "pi": 14255,
- "collectors": 14256,
- "float": 14257,
- "individually": 14258,
- "rendering": 14259,
- "behavioral": 14260,
- "bucharest": 14261,
- "ser": 14262,
- "hare": 14263,
- "valerie": 14264,
- "corporal": 14265,
- "nutrition": 14266,
- "proportional": 14267,
- "##isa": 14268,
- "immense": 14269,
- "##kis": 14270,
- "pavement": 14271,
- "##zie": 14272,
- "##eld": 14273,
- "sutherland": 14274,
- "crouched": 14275,
- "1775": 14276,
- "##lp": 14277,
- "suzuki": 14278,
- "trades": 14279,
- "endurance": 14280,
- "operas": 14281,
- "crosby": 14282,
- "prayed": 14283,
- "priory": 14284,
- "rory": 14285,
- "socially": 14286,
- "##urn": 14287,
- "gujarat": 14288,
- "##pu": 14289,
- "walton": 14290,
- "cube": 14291,
- "pasha": 14292,
- "privilege": 14293,
- "lennon": 14294,
- "floods": 14295,
- "thorne": 14296,
- "waterfall": 14297,
- "nipple": 14298,
- "scouting": 14299,
- "approve": 14300,
- "##lov": 14301,
- "minorities": 14302,
- "voter": 14303,
- "dwight": 14304,
- "extensions": 14305,
- "assure": 14306,
- "ballroom": 14307,
- "slap": 14308,
- "dripping": 14309,
- "privileges": 14310,
- "rejoined": 14311,
- "confessed": 14312,
- "demonstrating": 14313,
- "patriotic": 14314,
- "yell": 14315,
- "investor": 14316,
- "##uth": 14317,
- "pagan": 14318,
- "slumped": 14319,
- "squares": 14320,
- "##cle": 14321,
- "##kins": 14322,
- "confront": 14323,
- "bert": 14324,
- "embarrassment": 14325,
- "##aid": 14326,
- "aston": 14327,
- "urging": 14328,
- "sweater": 14329,
- "starr": 14330,
- "yuri": 14331,
- "brains": 14332,
- "williamson": 14333,
- "commuter": 14334,
- "mortar": 14335,
- "structured": 14336,
- "selfish": 14337,
- "exports": 14338,
- "##jon": 14339,
- "cds": 14340,
- "##him": 14341,
- "unfinished": 14342,
- "##rre": 14343,
- "mortgage": 14344,
- "destinations": 14345,
- "##nagar": 14346,
- "canoe": 14347,
- "solitary": 14348,
- "buchanan": 14349,
- "delays": 14350,
- "magistrate": 14351,
- "fk": 14352,
- "##pling": 14353,
- "motivation": 14354,
- "##lier": 14355,
- "##vier": 14356,
- "recruiting": 14357,
- "assess": 14358,
- "##mouth": 14359,
- "malik": 14360,
- "antique": 14361,
- "1791": 14362,
- "pius": 14363,
- "rahman": 14364,
- "reich": 14365,
- "tub": 14366,
- "zhou": 14367,
- "smashed": 14368,
- "airs": 14369,
- "galway": 14370,
- "xii": 14371,
- "conditioning": 14372,
- "honduras": 14373,
- "discharged": 14374,
- "dexter": 14375,
- "##pf": 14376,
- "lionel": 14377,
- "129": 14378,
- "debates": 14379,
- "lemon": 14380,
- "tiffany": 14381,
- "volunteered": 14382,
- "dom": 14383,
- "dioxide": 14384,
- "procession": 14385,
- "devi": 14386,
- "sic": 14387,
- "tremendous": 14388,
- "advertisements": 14389,
- "colts": 14390,
- "transferring": 14391,
- "verdict": 14392,
- "hanover": 14393,
- "decommissioned": 14394,
- "utter": 14395,
- "relate": 14396,
- "pac": 14397,
- "racism": 14398,
- "##top": 14399,
- "beacon": 14400,
- "limp": 14401,
- "similarity": 14402,
- "terra": 14403,
- "occurrence": 14404,
- "ant": 14405,
- "##how": 14406,
- "becky": 14407,
- "capt": 14408,
- "updates": 14409,
- "armament": 14410,
- "richie": 14411,
- "pal": 14412,
- "##graph": 14413,
- "halloween": 14414,
- "mayo": 14415,
- "##ssen": 14416,
- "##bone": 14417,
- "cara": 14418,
- "serena": 14419,
- "fcc": 14420,
- "dolls": 14421,
- "obligations": 14422,
- "##dling": 14423,
- "violated": 14424,
- "lafayette": 14425,
- "jakarta": 14426,
- "exploitation": 14427,
- "##ime": 14428,
- "infamous": 14429,
- "iconic": 14430,
- "##lah": 14431,
- "##park": 14432,
- "kitty": 14433,
- "moody": 14434,
- "reginald": 14435,
- "dread": 14436,
- "spill": 14437,
- "crystals": 14438,
- "olivier": 14439,
- "modeled": 14440,
- "bluff": 14441,
- "equilibrium": 14442,
- "separating": 14443,
- "notices": 14444,
- "ordnance": 14445,
- "extinction": 14446,
- "onset": 14447,
- "cosmic": 14448,
- "attachment": 14449,
- "sammy": 14450,
- "expose": 14451,
- "privy": 14452,
- "anchored": 14453,
- "##bil": 14454,
- "abbott": 14455,
- "admits": 14456,
- "bending": 14457,
- "baritone": 14458,
- "emmanuel": 14459,
- "policeman": 14460,
- "vaughan": 14461,
- "winged": 14462,
- "climax": 14463,
- "dresses": 14464,
- "denny": 14465,
- "polytechnic": 14466,
- "mohamed": 14467,
- "burmese": 14468,
- "authentic": 14469,
- "nikki": 14470,
- "genetics": 14471,
- "grandparents": 14472,
- "homestead": 14473,
- "gaza": 14474,
- "postponed": 14475,
- "metacritic": 14476,
- "una": 14477,
- "##sby": 14478,
- "##bat": 14479,
- "unstable": 14480,
- "dissertation": 14481,
- "##rial": 14482,
- "##cian": 14483,
- "curls": 14484,
- "obscure": 14485,
- "uncovered": 14486,
- "bronx": 14487,
- "praying": 14488,
- "disappearing": 14489,
- "##hoe": 14490,
- "prehistoric": 14491,
- "coke": 14492,
- "turret": 14493,
- "mutations": 14494,
- "nonprofit": 14495,
- "pits": 14496,
- "monaco": 14497,
- "##ي": 14498,
- "##usion": 14499,
- "prominently": 14500,
- "dispatched": 14501,
- "podium": 14502,
- "##mir": 14503,
- "uci": 14504,
- "##uation": 14505,
- "133": 14506,
- "fortifications": 14507,
- "birthplace": 14508,
- "kendall": 14509,
- "##lby": 14510,
- "##oll": 14511,
- "preacher": 14512,
- "rack": 14513,
- "goodman": 14514,
- "##rman": 14515,
- "persistent": 14516,
- "##ott": 14517,
- "countless": 14518,
- "jaime": 14519,
- "recorder": 14520,
- "lexington": 14521,
- "persecution": 14522,
- "jumps": 14523,
- "renewal": 14524,
- "wagons": 14525,
- "##11": 14526,
- "crushing": 14527,
- "##holder": 14528,
- "decorations": 14529,
- "##lake": 14530,
- "abundance": 14531,
- "wrath": 14532,
- "laundry": 14533,
- "£1": 14534,
- "garde": 14535,
- "##rp": 14536,
- "jeanne": 14537,
- "beetles": 14538,
- "peasant": 14539,
- "##sl": 14540,
- "splitting": 14541,
- "caste": 14542,
- "sergei": 14543,
- "##rer": 14544,
- "##ema": 14545,
- "scripts": 14546,
- "##ively": 14547,
- "rub": 14548,
- "satellites": 14549,
- "##vor": 14550,
- "inscribed": 14551,
- "verlag": 14552,
- "scrapped": 14553,
- "gale": 14554,
- "packages": 14555,
- "chick": 14556,
- "potato": 14557,
- "slogan": 14558,
- "kathleen": 14559,
- "arabs": 14560,
- "##culture": 14561,
- "counterparts": 14562,
- "reminiscent": 14563,
- "choral": 14564,
- "##tead": 14565,
- "rand": 14566,
- "retains": 14567,
- "bushes": 14568,
- "dane": 14569,
- "accomplish": 14570,
- "courtesy": 14571,
- "closes": 14572,
- "##oth": 14573,
- "slaughter": 14574,
- "hague": 14575,
- "krakow": 14576,
- "lawson": 14577,
- "tailed": 14578,
- "elias": 14579,
- "ginger": 14580,
- "##ttes": 14581,
- "canopy": 14582,
- "betrayal": 14583,
- "rebuilding": 14584,
- "turf": 14585,
- "##hof": 14586,
- "frowning": 14587,
- "allegiance": 14588,
- "brigades": 14589,
- "kicks": 14590,
- "rebuild": 14591,
- "polls": 14592,
- "alias": 14593,
- "nationalism": 14594,
- "td": 14595,
- "rowan": 14596,
- "audition": 14597,
- "bowie": 14598,
- "fortunately": 14599,
- "recognizes": 14600,
- "harp": 14601,
- "dillon": 14602,
- "horrified": 14603,
- "##oro": 14604,
- "renault": 14605,
- "##tics": 14606,
- "ropes": 14607,
- "##α": 14608,
- "presumed": 14609,
- "rewarded": 14610,
- "infrared": 14611,
- "wiping": 14612,
- "accelerated": 14613,
- "illustration": 14614,
- "##rid": 14615,
- "presses": 14616,
- "practitioners": 14617,
- "badminton": 14618,
- "##iard": 14619,
- "detained": 14620,
- "##tera": 14621,
- "recognizing": 14622,
- "relates": 14623,
- "misery": 14624,
- "##sies": 14625,
- "##tly": 14626,
- "reproduction": 14627,
- "piercing": 14628,
- "potatoes": 14629,
- "thornton": 14630,
- "esther": 14631,
- "manners": 14632,
- "hbo": 14633,
- "##aan": 14634,
- "ours": 14635,
- "bullshit": 14636,
- "ernie": 14637,
- "perennial": 14638,
- "sensitivity": 14639,
- "illuminated": 14640,
- "rupert": 14641,
- "##jin": 14642,
- "##iss": 14643,
- "##ear": 14644,
- "rfc": 14645,
- "nassau": 14646,
- "##dock": 14647,
- "staggered": 14648,
- "socialism": 14649,
- "##haven": 14650,
- "appointments": 14651,
- "nonsense": 14652,
- "prestige": 14653,
- "sharma": 14654,
- "haul": 14655,
- "##tical": 14656,
- "solidarity": 14657,
- "gps": 14658,
- "##ook": 14659,
- "##rata": 14660,
- "igor": 14661,
- "pedestrian": 14662,
- "##uit": 14663,
- "baxter": 14664,
- "tenants": 14665,
- "wires": 14666,
- "medication": 14667,
- "unlimited": 14668,
- "guiding": 14669,
- "impacts": 14670,
- "diabetes": 14671,
- "##rama": 14672,
- "sasha": 14673,
- "pas": 14674,
- "clive": 14675,
- "extraction": 14676,
- "131": 14677,
- "continually": 14678,
- "constraints": 14679,
- "##bilities": 14680,
- "sonata": 14681,
- "hunted": 14682,
- "sixteenth": 14683,
- "chu": 14684,
- "planting": 14685,
- "quote": 14686,
- "mayer": 14687,
- "pretended": 14688,
- "abs": 14689,
- "spat": 14690,
- "##hua": 14691,
- "ceramic": 14692,
- "##cci": 14693,
- "curtains": 14694,
- "pigs": 14695,
- "pitching": 14696,
- "##dad": 14697,
- "latvian": 14698,
- "sore": 14699,
- "dayton": 14700,
- "##sted": 14701,
- "##qi": 14702,
- "patrols": 14703,
- "slice": 14704,
- "playground": 14705,
- "##nted": 14706,
- "shone": 14707,
- "stool": 14708,
- "apparatus": 14709,
- "inadequate": 14710,
- "mates": 14711,
- "treason": 14712,
- "##ija": 14713,
- "desires": 14714,
- "##liga": 14715,
- "##croft": 14716,
- "somalia": 14717,
- "laurent": 14718,
- "mir": 14719,
- "leonardo": 14720,
- "oracle": 14721,
- "grape": 14722,
- "obliged": 14723,
- "chevrolet": 14724,
- "thirteenth": 14725,
- "stunning": 14726,
- "enthusiastic": 14727,
- "##ede": 14728,
- "accounted": 14729,
- "concludes": 14730,
- "currents": 14731,
- "basil": 14732,
- "##kovic": 14733,
- "drought": 14734,
- "##rica": 14735,
- "mai": 14736,
- "##aire": 14737,
- "shove": 14738,
- "posting": 14739,
- "##shed": 14740,
- "pilgrimage": 14741,
- "humorous": 14742,
- "packing": 14743,
- "fry": 14744,
- "pencil": 14745,
- "wines": 14746,
- "smells": 14747,
- "144": 14748,
- "marilyn": 14749,
- "aching": 14750,
- "newest": 14751,
- "clung": 14752,
- "bon": 14753,
- "neighbours": 14754,
- "sanctioned": 14755,
- "##pie": 14756,
- "mug": 14757,
- "##stock": 14758,
- "drowning": 14759,
- "##mma": 14760,
- "hydraulic": 14761,
- "##vil": 14762,
- "hiring": 14763,
- "reminder": 14764,
- "lilly": 14765,
- "investigators": 14766,
- "##ncies": 14767,
- "sour": 14768,
- "##eous": 14769,
- "compulsory": 14770,
- "packet": 14771,
- "##rion": 14772,
- "##graphic": 14773,
- "##elle": 14774,
- "cannes": 14775,
- "##inate": 14776,
- "depressed": 14777,
- "##rit": 14778,
- "heroic": 14779,
- "importantly": 14780,
- "theresa": 14781,
- "##tled": 14782,
- "conway": 14783,
- "saturn": 14784,
- "marginal": 14785,
- "rae": 14786,
- "##xia": 14787,
- "corresponds": 14788,
- "royce": 14789,
- "pact": 14790,
- "jasper": 14791,
- "explosives": 14792,
- "packaging": 14793,
- "aluminium": 14794,
- "##ttered": 14795,
- "denotes": 14796,
- "rhythmic": 14797,
- "spans": 14798,
- "assignments": 14799,
- "hereditary": 14800,
- "outlined": 14801,
- "originating": 14802,
- "sundays": 14803,
- "lad": 14804,
- "reissued": 14805,
- "greeting": 14806,
- "beatrice": 14807,
- "##dic": 14808,
- "pillar": 14809,
- "marcos": 14810,
- "plots": 14811,
- "handbook": 14812,
- "alcoholic": 14813,
- "judiciary": 14814,
- "avant": 14815,
- "slides": 14816,
- "extract": 14817,
- "masculine": 14818,
- "blur": 14819,
- "##eum": 14820,
- "##force": 14821,
- "homage": 14822,
- "trembled": 14823,
- "owens": 14824,
- "hymn": 14825,
- "trey": 14826,
- "omega": 14827,
- "signaling": 14828,
- "socks": 14829,
- "accumulated": 14830,
- "reacted": 14831,
- "attic": 14832,
- "theo": 14833,
- "lining": 14834,
- "angie": 14835,
- "distraction": 14836,
- "primera": 14837,
- "talbot": 14838,
- "##key": 14839,
- "1200": 14840,
- "ti": 14841,
- "creativity": 14842,
- "billed": 14843,
- "##hey": 14844,
- "deacon": 14845,
- "eduardo": 14846,
- "identifies": 14847,
- "proposition": 14848,
- "dizzy": 14849,
- "gunner": 14850,
- "hogan": 14851,
- "##yam": 14852,
- "##pping": 14853,
- "##hol": 14854,
- "ja": 14855,
- "##chan": 14856,
- "jensen": 14857,
- "reconstructed": 14858,
- "##berger": 14859,
- "clearance": 14860,
- "darius": 14861,
- "##nier": 14862,
- "abe": 14863,
- "harlem": 14864,
- "plea": 14865,
- "dei": 14866,
- "circled": 14867,
- "emotionally": 14868,
- "notation": 14869,
- "fascist": 14870,
- "neville": 14871,
- "exceeded": 14872,
- "upwards": 14873,
- "viable": 14874,
- "ducks": 14875,
- "##fo": 14876,
- "workforce": 14877,
- "racer": 14878,
- "limiting": 14879,
- "shri": 14880,
- "##lson": 14881,
- "possesses": 14882,
- "1600": 14883,
- "kerr": 14884,
- "moths": 14885,
- "devastating": 14886,
- "laden": 14887,
- "disturbing": 14888,
- "locking": 14889,
- "##cture": 14890,
- "gal": 14891,
- "fearing": 14892,
- "accreditation": 14893,
- "flavor": 14894,
- "aide": 14895,
- "1870s": 14896,
- "mountainous": 14897,
- "##baum": 14898,
- "melt": 14899,
- "##ures": 14900,
- "motel": 14901,
- "texture": 14902,
- "servers": 14903,
- "soda": 14904,
- "##mb": 14905,
- "herd": 14906,
- "##nium": 14907,
- "erect": 14908,
- "puzzled": 14909,
- "hum": 14910,
- "peggy": 14911,
- "examinations": 14912,
- "gould": 14913,
- "testified": 14914,
- "geoff": 14915,
- "ren": 14916,
- "devised": 14917,
- "sacks": 14918,
- "##law": 14919,
- "denial": 14920,
- "posters": 14921,
- "grunted": 14922,
- "cesar": 14923,
- "tutor": 14924,
- "ec": 14925,
- "gerry": 14926,
- "offerings": 14927,
- "byrne": 14928,
- "falcons": 14929,
- "combinations": 14930,
- "ct": 14931,
- "incoming": 14932,
- "pardon": 14933,
- "rocking": 14934,
- "26th": 14935,
- "avengers": 14936,
- "flared": 14937,
- "mankind": 14938,
- "seller": 14939,
- "uttar": 14940,
- "loch": 14941,
- "nadia": 14942,
- "stroking": 14943,
- "exposing": 14944,
- "##hd": 14945,
- "fertile": 14946,
- "ancestral": 14947,
- "instituted": 14948,
- "##has": 14949,
- "noises": 14950,
- "prophecy": 14951,
- "taxation": 14952,
- "eminent": 14953,
- "vivid": 14954,
- "pol": 14955,
- "##bol": 14956,
- "dart": 14957,
- "indirect": 14958,
- "multimedia": 14959,
- "notebook": 14960,
- "upside": 14961,
- "displaying": 14962,
- "adrenaline": 14963,
- "referenced": 14964,
- "geometric": 14965,
- "##iving": 14966,
- "progression": 14967,
- "##ddy": 14968,
- "blunt": 14969,
- "announce": 14970,
- "##far": 14971,
- "implementing": 14972,
- "##lav": 14973,
- "aggression": 14974,
- "liaison": 14975,
- "cooler": 14976,
- "cares": 14977,
- "headache": 14978,
- "plantations": 14979,
- "gorge": 14980,
- "dots": 14981,
- "impulse": 14982,
- "thickness": 14983,
- "ashamed": 14984,
- "averaging": 14985,
- "kathy": 14986,
- "obligation": 14987,
- "precursor": 14988,
- "137": 14989,
- "fowler": 14990,
- "symmetry": 14991,
- "thee": 14992,
- "225": 14993,
- "hears": 14994,
- "##rai": 14995,
- "undergoing": 14996,
- "ads": 14997,
- "butcher": 14998,
- "bowler": 14999,
- "##lip": 15000,
- "cigarettes": 15001,
- "subscription": 15002,
- "goodness": 15003,
- "##ically": 15004,
- "browne": 15005,
- "##hos": 15006,
- "##tech": 15007,
- "kyoto": 15008,
- "donor": 15009,
- "##erty": 15010,
- "damaging": 15011,
- "friction": 15012,
- "drifting": 15013,
- "expeditions": 15014,
- "hardened": 15015,
- "prostitution": 15016,
- "152": 15017,
- "fauna": 15018,
- "blankets": 15019,
- "claw": 15020,
- "tossing": 15021,
- "snarled": 15022,
- "butterflies": 15023,
- "recruits": 15024,
- "investigative": 15025,
- "coated": 15026,
- "healed": 15027,
- "138": 15028,
- "communal": 15029,
- "hai": 15030,
- "xiii": 15031,
- "academics": 15032,
- "boone": 15033,
- "psychologist": 15034,
- "restless": 15035,
- "lahore": 15036,
- "stephens": 15037,
- "mba": 15038,
- "brendan": 15039,
- "foreigners": 15040,
- "printer": 15041,
- "##pc": 15042,
- "ached": 15043,
- "explode": 15044,
- "27th": 15045,
- "deed": 15046,
- "scratched": 15047,
- "dared": 15048,
- "##pole": 15049,
- "cardiac": 15050,
- "1780": 15051,
- "okinawa": 15052,
- "proto": 15053,
- "commando": 15054,
- "compelled": 15055,
- "oddly": 15056,
- "electrons": 15057,
- "##base": 15058,
- "replica": 15059,
- "thanksgiving": 15060,
- "##rist": 15061,
- "sheila": 15062,
- "deliberate": 15063,
- "stafford": 15064,
- "tidal": 15065,
- "representations": 15066,
- "hercules": 15067,
- "ou": 15068,
- "##path": 15069,
- "##iated": 15070,
- "kidnapping": 15071,
- "lenses": 15072,
- "##tling": 15073,
- "deficit": 15074,
- "samoa": 15075,
- "mouths": 15076,
- "consuming": 15077,
- "computational": 15078,
- "maze": 15079,
- "granting": 15080,
- "smirk": 15081,
- "razor": 15082,
- "fixture": 15083,
- "ideals": 15084,
- "inviting": 15085,
- "aiden": 15086,
- "nominal": 15087,
- "##vs": 15088,
- "issuing": 15089,
- "julio": 15090,
- "pitt": 15091,
- "ramsey": 15092,
- "docks": 15093,
- "##oss": 15094,
- "exhaust": 15095,
- "##owed": 15096,
- "bavarian": 15097,
- "draped": 15098,
- "anterior": 15099,
- "mating": 15100,
- "ethiopian": 15101,
- "explores": 15102,
- "noticing": 15103,
- "##nton": 15104,
- "discarded": 15105,
- "convenience": 15106,
- "hoffman": 15107,
- "endowment": 15108,
- "beasts": 15109,
- "cartridge": 15110,
- "mormon": 15111,
- "paternal": 15112,
- "probe": 15113,
- "sleeves": 15114,
- "interfere": 15115,
- "lump": 15116,
- "deadline": 15117,
- "##rail": 15118,
- "jenks": 15119,
- "bulldogs": 15120,
- "scrap": 15121,
- "alternating": 15122,
- "justified": 15123,
- "reproductive": 15124,
- "nam": 15125,
- "seize": 15126,
- "descending": 15127,
- "secretariat": 15128,
- "kirby": 15129,
- "coupe": 15130,
- "grouped": 15131,
- "smash": 15132,
- "panther": 15133,
- "sedan": 15134,
- "tapping": 15135,
- "##18": 15136,
- "lola": 15137,
- "cheer": 15138,
- "germanic": 15139,
- "unfortunate": 15140,
- "##eter": 15141,
- "unrelated": 15142,
- "##fan": 15143,
- "subordinate": 15144,
- "##sdale": 15145,
- "suzanne": 15146,
- "advertisement": 15147,
- "##ility": 15148,
- "horsepower": 15149,
- "##lda": 15150,
- "cautiously": 15151,
- "discourse": 15152,
- "luigi": 15153,
- "##mans": 15154,
- "##fields": 15155,
- "noun": 15156,
- "prevalent": 15157,
- "mao": 15158,
- "schneider": 15159,
- "everett": 15160,
- "surround": 15161,
- "governorate": 15162,
- "kira": 15163,
- "##avia": 15164,
- "westward": 15165,
- "##take": 15166,
- "misty": 15167,
- "rails": 15168,
- "sustainability": 15169,
- "134": 15170,
- "unused": 15171,
- "##rating": 15172,
- "packs": 15173,
- "toast": 15174,
- "unwilling": 15175,
- "regulate": 15176,
- "thy": 15177,
- "suffrage": 15178,
- "nile": 15179,
- "awe": 15180,
- "assam": 15181,
- "definitions": 15182,
- "travelers": 15183,
- "affordable": 15184,
- "##rb": 15185,
- "conferred": 15186,
- "sells": 15187,
- "undefeated": 15188,
- "beneficial": 15189,
- "torso": 15190,
- "basal": 15191,
- "repeating": 15192,
- "remixes": 15193,
- "##pass": 15194,
- "bahrain": 15195,
- "cables": 15196,
- "fang": 15197,
- "##itated": 15198,
- "excavated": 15199,
- "numbering": 15200,
- "statutory": 15201,
- "##rey": 15202,
- "deluxe": 15203,
- "##lian": 15204,
- "forested": 15205,
- "ramirez": 15206,
- "derbyshire": 15207,
- "zeus": 15208,
- "slamming": 15209,
- "transfers": 15210,
- "astronomer": 15211,
- "banana": 15212,
- "lottery": 15213,
- "berg": 15214,
- "histories": 15215,
- "bamboo": 15216,
- "##uchi": 15217,
- "resurrection": 15218,
- "posterior": 15219,
- "bowls": 15220,
- "vaguely": 15221,
- "##thi": 15222,
- "thou": 15223,
- "preserving": 15224,
- "tensed": 15225,
- "offence": 15226,
- "##inas": 15227,
- "meyrick": 15228,
- "callum": 15229,
- "ridden": 15230,
- "watt": 15231,
- "langdon": 15232,
- "tying": 15233,
- "lowland": 15234,
- "snorted": 15235,
- "daring": 15236,
- "truman": 15237,
- "##hale": 15238,
- "##girl": 15239,
- "aura": 15240,
- "overly": 15241,
- "filing": 15242,
- "weighing": 15243,
- "goa": 15244,
- "infections": 15245,
- "philanthropist": 15246,
- "saunders": 15247,
- "eponymous": 15248,
- "##owski": 15249,
- "latitude": 15250,
- "perspectives": 15251,
- "reviewing": 15252,
- "mets": 15253,
- "commandant": 15254,
- "radial": 15255,
- "##kha": 15256,
- "flashlight": 15257,
- "reliability": 15258,
- "koch": 15259,
- "vowels": 15260,
- "amazed": 15261,
- "ada": 15262,
- "elaine": 15263,
- "supper": 15264,
- "##rth": 15265,
- "##encies": 15266,
- "predator": 15267,
- "debated": 15268,
- "soviets": 15269,
- "cola": 15270,
- "##boards": 15271,
- "##nah": 15272,
- "compartment": 15273,
- "crooked": 15274,
- "arbitrary": 15275,
- "fourteenth": 15276,
- "##ctive": 15277,
- "havana": 15278,
- "majors": 15279,
- "steelers": 15280,
- "clips": 15281,
- "profitable": 15282,
- "ambush": 15283,
- "exited": 15284,
- "packers": 15285,
- "##tile": 15286,
- "nude": 15287,
- "cracks": 15288,
- "fungi": 15289,
- "##е": 15290,
- "limb": 15291,
- "trousers": 15292,
- "josie": 15293,
- "shelby": 15294,
- "tens": 15295,
- "frederic": 15296,
- "##ος": 15297,
- "definite": 15298,
- "smoothly": 15299,
- "constellation": 15300,
- "insult": 15301,
- "baton": 15302,
- "discs": 15303,
- "lingering": 15304,
- "##nco": 15305,
- "conclusions": 15306,
- "lent": 15307,
- "staging": 15308,
- "becker": 15309,
- "grandpa": 15310,
- "shaky": 15311,
- "##tron": 15312,
- "einstein": 15313,
- "obstacles": 15314,
- "sk": 15315,
- "adverse": 15316,
- "elle": 15317,
- "economically": 15318,
- "##moto": 15319,
- "mccartney": 15320,
- "thor": 15321,
- "dismissal": 15322,
- "motions": 15323,
- "readings": 15324,
- "nostrils": 15325,
- "treatise": 15326,
- "##pace": 15327,
- "squeezing": 15328,
- "evidently": 15329,
- "prolonged": 15330,
- "1783": 15331,
- "venezuelan": 15332,
- "je": 15333,
- "marguerite": 15334,
- "beirut": 15335,
- "takeover": 15336,
- "shareholders": 15337,
- "##vent": 15338,
- "denise": 15339,
- "digit": 15340,
- "airplay": 15341,
- "norse": 15342,
- "##bbling": 15343,
- "imaginary": 15344,
- "pills": 15345,
- "hubert": 15346,
- "blaze": 15347,
- "vacated": 15348,
- "eliminating": 15349,
- "##ello": 15350,
- "vine": 15351,
- "mansfield": 15352,
- "##tty": 15353,
- "retrospective": 15354,
- "barrow": 15355,
- "borne": 15356,
- "clutch": 15357,
- "bail": 15358,
- "forensic": 15359,
- "weaving": 15360,
- "##nett": 15361,
- "##witz": 15362,
- "desktop": 15363,
- "citadel": 15364,
- "promotions": 15365,
- "worrying": 15366,
- "dorset": 15367,
- "ieee": 15368,
- "subdivided": 15369,
- "##iating": 15370,
- "manned": 15371,
- "expeditionary": 15372,
- "pickup": 15373,
- "synod": 15374,
- "chuckle": 15375,
- "185": 15376,
- "barney": 15377,
- "##rz": 15378,
- "##ffin": 15379,
- "functionality": 15380,
- "karachi": 15381,
- "litigation": 15382,
- "meanings": 15383,
- "uc": 15384,
- "lick": 15385,
- "turbo": 15386,
- "anders": 15387,
- "##ffed": 15388,
- "execute": 15389,
- "curl": 15390,
- "oppose": 15391,
- "ankles": 15392,
- "typhoon": 15393,
- "##د": 15394,
- "##ache": 15395,
- "##asia": 15396,
- "linguistics": 15397,
- "compassion": 15398,
- "pressures": 15399,
- "grazing": 15400,
- "perfection": 15401,
- "##iting": 15402,
- "immunity": 15403,
- "monopoly": 15404,
- "muddy": 15405,
- "backgrounds": 15406,
- "136": 15407,
- "namibia": 15408,
- "francesca": 15409,
- "monitors": 15410,
- "attracting": 15411,
- "stunt": 15412,
- "tuition": 15413,
- "##ии": 15414,
- "vegetable": 15415,
- "##mates": 15416,
- "##quent": 15417,
- "mgm": 15418,
- "jen": 15419,
- "complexes": 15420,
- "forts": 15421,
- "##ond": 15422,
- "cellar": 15423,
- "bites": 15424,
- "seventeenth": 15425,
- "royals": 15426,
- "flemish": 15427,
- "failures": 15428,
- "mast": 15429,
- "charities": 15430,
- "##cular": 15431,
- "peruvian": 15432,
- "capitals": 15433,
- "macmillan": 15434,
- "ipswich": 15435,
- "outward": 15436,
- "frigate": 15437,
- "postgraduate": 15438,
- "folds": 15439,
- "employing": 15440,
- "##ouse": 15441,
- "concurrently": 15442,
- "fiery": 15443,
- "##tai": 15444,
- "contingent": 15445,
- "nightmares": 15446,
- "monumental": 15447,
- "nicaragua": 15448,
- "##kowski": 15449,
- "lizard": 15450,
- "mal": 15451,
- "fielding": 15452,
- "gig": 15453,
- "reject": 15454,
- "##pad": 15455,
- "harding": 15456,
- "##ipe": 15457,
- "coastline": 15458,
- "##cin": 15459,
- "##nos": 15460,
- "beethoven": 15461,
- "humphrey": 15462,
- "innovations": 15463,
- "##tam": 15464,
- "##nge": 15465,
- "norris": 15466,
- "doris": 15467,
- "solicitor": 15468,
- "huang": 15469,
- "obey": 15470,
- "141": 15471,
- "##lc": 15472,
- "niagara": 15473,
- "##tton": 15474,
- "shelves": 15475,
- "aug": 15476,
- "bourbon": 15477,
- "curry": 15478,
- "nightclub": 15479,
- "specifications": 15480,
- "hilton": 15481,
- "##ndo": 15482,
- "centennial": 15483,
- "dispersed": 15484,
- "worm": 15485,
- "neglected": 15486,
- "briggs": 15487,
- "sm": 15488,
- "font": 15489,
- "kuala": 15490,
- "uneasy": 15491,
- "plc": 15492,
- "##nstein": 15493,
- "##bound": 15494,
- "##aking": 15495,
- "##burgh": 15496,
- "awaiting": 15497,
- "pronunciation": 15498,
- "##bbed": 15499,
- "##quest": 15500,
- "eh": 15501,
- "optimal": 15502,
- "zhu": 15503,
- "raped": 15504,
- "greens": 15505,
- "presided": 15506,
- "brenda": 15507,
- "worries": 15508,
- "##life": 15509,
- "venetian": 15510,
- "marxist": 15511,
- "turnout": 15512,
- "##lius": 15513,
- "refined": 15514,
- "braced": 15515,
- "sins": 15516,
- "grasped": 15517,
- "sunderland": 15518,
- "nickel": 15519,
- "speculated": 15520,
- "lowell": 15521,
- "cyrillic": 15522,
- "communism": 15523,
- "fundraising": 15524,
- "resembling": 15525,
- "colonists": 15526,
- "mutant": 15527,
- "freddie": 15528,
- "usc": 15529,
- "##mos": 15530,
- "gratitude": 15531,
- "##run": 15532,
- "mural": 15533,
- "##lous": 15534,
- "chemist": 15535,
- "wi": 15536,
- "reminds": 15537,
- "28th": 15538,
- "steals": 15539,
- "tess": 15540,
- "pietro": 15541,
- "##ingen": 15542,
- "promoter": 15543,
- "ri": 15544,
- "microphone": 15545,
- "honoured": 15546,
- "rai": 15547,
- "sant": 15548,
- "##qui": 15549,
- "feather": 15550,
- "##nson": 15551,
- "burlington": 15552,
- "kurdish": 15553,
- "terrorists": 15554,
- "deborah": 15555,
- "sickness": 15556,
- "##wed": 15557,
- "##eet": 15558,
- "hazard": 15559,
- "irritated": 15560,
- "desperation": 15561,
- "veil": 15562,
- "clarity": 15563,
- "##rik": 15564,
- "jewels": 15565,
- "xv": 15566,
- "##gged": 15567,
- "##ows": 15568,
- "##cup": 15569,
- "berkshire": 15570,
- "unfair": 15571,
- "mysteries": 15572,
- "orchid": 15573,
- "winced": 15574,
- "exhaustion": 15575,
- "renovations": 15576,
- "stranded": 15577,
- "obe": 15578,
- "infinity": 15579,
- "##nies": 15580,
- "adapt": 15581,
- "redevelopment": 15582,
- "thanked": 15583,
- "registry": 15584,
- "olga": 15585,
- "domingo": 15586,
- "noir": 15587,
- "tudor": 15588,
- "ole": 15589,
- "##atus": 15590,
- "commenting": 15591,
- "behaviors": 15592,
- "##ais": 15593,
- "crisp": 15594,
- "pauline": 15595,
- "probable": 15596,
- "stirling": 15597,
- "wigan": 15598,
- "##bian": 15599,
- "paralympics": 15600,
- "panting": 15601,
- "surpassed": 15602,
- "##rew": 15603,
- "luca": 15604,
- "barred": 15605,
- "pony": 15606,
- "famed": 15607,
- "##sters": 15608,
- "cassandra": 15609,
- "waiter": 15610,
- "carolyn": 15611,
- "exported": 15612,
- "##orted": 15613,
- "andres": 15614,
- "destructive": 15615,
- "deeds": 15616,
- "jonah": 15617,
- "castles": 15618,
- "vacancy": 15619,
- "suv": 15620,
- "##glass": 15621,
- "1788": 15622,
- "orchard": 15623,
- "yep": 15624,
- "famine": 15625,
- "belarusian": 15626,
- "sprang": 15627,
- "##forth": 15628,
- "skinny": 15629,
- "##mis": 15630,
- "administrators": 15631,
- "rotterdam": 15632,
- "zambia": 15633,
- "zhao": 15634,
- "boiler": 15635,
- "discoveries": 15636,
- "##ride": 15637,
- "##physics": 15638,
- "lucius": 15639,
- "disappointing": 15640,
- "outreach": 15641,
- "spoon": 15642,
- "##frame": 15643,
- "qualifications": 15644,
- "unanimously": 15645,
- "enjoys": 15646,
- "regency": 15647,
- "##iidae": 15648,
- "stade": 15649,
- "realism": 15650,
- "veterinary": 15651,
- "rodgers": 15652,
- "dump": 15653,
- "alain": 15654,
- "chestnut": 15655,
- "castile": 15656,
- "censorship": 15657,
- "rumble": 15658,
- "gibbs": 15659,
- "##itor": 15660,
- "communion": 15661,
- "reggae": 15662,
- "inactivated": 15663,
- "logs": 15664,
- "loads": 15665,
- "##houses": 15666,
- "homosexual": 15667,
- "##iano": 15668,
- "ale": 15669,
- "informs": 15670,
- "##cas": 15671,
- "phrases": 15672,
- "plaster": 15673,
- "linebacker": 15674,
- "ambrose": 15675,
- "kaiser": 15676,
- "fascinated": 15677,
- "850": 15678,
- "limerick": 15679,
- "recruitment": 15680,
- "forge": 15681,
- "mastered": 15682,
- "##nding": 15683,
- "leinster": 15684,
- "rooted": 15685,
- "threaten": 15686,
- "##strom": 15687,
- "borneo": 15688,
- "##hes": 15689,
- "suggestions": 15690,
- "scholarships": 15691,
- "propeller": 15692,
- "documentaries": 15693,
- "patronage": 15694,
- "coats": 15695,
- "constructing": 15696,
- "invest": 15697,
- "neurons": 15698,
- "comet": 15699,
- "entirety": 15700,
- "shouts": 15701,
- "identities": 15702,
- "annoying": 15703,
- "unchanged": 15704,
- "wary": 15705,
- "##antly": 15706,
- "##ogy": 15707,
- "neat": 15708,
- "oversight": 15709,
- "##kos": 15710,
- "phillies": 15711,
- "replay": 15712,
- "constance": 15713,
- "##kka": 15714,
- "incarnation": 15715,
- "humble": 15716,
- "skies": 15717,
- "minus": 15718,
- "##acy": 15719,
- "smithsonian": 15720,
- "##chel": 15721,
- "guerrilla": 15722,
- "jar": 15723,
- "cadets": 15724,
- "##plate": 15725,
- "surplus": 15726,
- "audit": 15727,
- "##aru": 15728,
- "cracking": 15729,
- "joanna": 15730,
- "louisa": 15731,
- "pacing": 15732,
- "##lights": 15733,
- "intentionally": 15734,
- "##iri": 15735,
- "diner": 15736,
- "nwa": 15737,
- "imprint": 15738,
- "australians": 15739,
- "tong": 15740,
- "unprecedented": 15741,
- "bunker": 15742,
- "naive": 15743,
- "specialists": 15744,
- "ark": 15745,
- "nichols": 15746,
- "railing": 15747,
- "leaked": 15748,
- "pedal": 15749,
- "##uka": 15750,
- "shrub": 15751,
- "longing": 15752,
- "roofs": 15753,
- "v8": 15754,
- "captains": 15755,
- "neural": 15756,
- "tuned": 15757,
- "##ntal": 15758,
- "##jet": 15759,
- "emission": 15760,
- "medina": 15761,
- "frantic": 15762,
- "codex": 15763,
- "definitive": 15764,
- "sid": 15765,
- "abolition": 15766,
- "intensified": 15767,
- "stocks": 15768,
- "enrique": 15769,
- "sustain": 15770,
- "genoa": 15771,
- "oxide": 15772,
- "##written": 15773,
- "clues": 15774,
- "cha": 15775,
- "##gers": 15776,
- "tributaries": 15777,
- "fragment": 15778,
- "venom": 15779,
- "##rity": 15780,
- "##ente": 15781,
- "##sca": 15782,
- "muffled": 15783,
- "vain": 15784,
- "sire": 15785,
- "laos": 15786,
- "##ingly": 15787,
- "##hana": 15788,
- "hastily": 15789,
- "snapping": 15790,
- "surfaced": 15791,
- "sentiment": 15792,
- "motive": 15793,
- "##oft": 15794,
- "contests": 15795,
- "approximate": 15796,
- "mesa": 15797,
- "luckily": 15798,
- "dinosaur": 15799,
- "exchanges": 15800,
- "propelled": 15801,
- "accord": 15802,
- "bourne": 15803,
- "relieve": 15804,
- "tow": 15805,
- "masks": 15806,
- "offended": 15807,
- "##ues": 15808,
- "cynthia": 15809,
- "##mmer": 15810,
- "rains": 15811,
- "bartender": 15812,
- "zinc": 15813,
- "reviewers": 15814,
- "lois": 15815,
- "##sai": 15816,
- "legged": 15817,
- "arrogant": 15818,
- "rafe": 15819,
- "rosie": 15820,
- "comprise": 15821,
- "handicap": 15822,
- "blockade": 15823,
- "inlet": 15824,
- "lagoon": 15825,
- "copied": 15826,
- "drilling": 15827,
- "shelley": 15828,
- "petals": 15829,
- "##inian": 15830,
- "mandarin": 15831,
- "obsolete": 15832,
- "##inated": 15833,
- "onward": 15834,
- "arguably": 15835,
- "productivity": 15836,
- "cindy": 15837,
- "praising": 15838,
- "seldom": 15839,
- "busch": 15840,
- "discusses": 15841,
- "raleigh": 15842,
- "shortage": 15843,
- "ranged": 15844,
- "stanton": 15845,
- "encouragement": 15846,
- "firstly": 15847,
- "conceded": 15848,
- "overs": 15849,
- "temporal": 15850,
- "##uke": 15851,
- "cbe": 15852,
- "##bos": 15853,
- "woo": 15854,
- "certainty": 15855,
- "pumps": 15856,
- "##pton": 15857,
- "stalked": 15858,
- "##uli": 15859,
- "lizzie": 15860,
- "periodic": 15861,
- "thieves": 15862,
- "weaker": 15863,
- "##night": 15864,
- "gases": 15865,
- "shoving": 15866,
- "chooses": 15867,
- "wc": 15868,
- "##chemical": 15869,
- "prompting": 15870,
- "weights": 15871,
- "##kill": 15872,
- "robust": 15873,
- "flanked": 15874,
- "sticky": 15875,
- "hu": 15876,
- "tuberculosis": 15877,
- "##eb": 15878,
- "##eal": 15879,
- "christchurch": 15880,
- "resembled": 15881,
- "wallet": 15882,
- "reese": 15883,
- "inappropriate": 15884,
- "pictured": 15885,
- "distract": 15886,
- "fixing": 15887,
- "fiddle": 15888,
- "giggled": 15889,
- "burger": 15890,
- "heirs": 15891,
- "hairy": 15892,
- "mechanic": 15893,
- "torque": 15894,
- "apache": 15895,
- "obsessed": 15896,
- "chiefly": 15897,
- "cheng": 15898,
- "logging": 15899,
- "##tag": 15900,
- "extracted": 15901,
- "meaningful": 15902,
- "numb": 15903,
- "##vsky": 15904,
- "gloucestershire": 15905,
- "reminding": 15906,
- "##bay": 15907,
- "unite": 15908,
- "##lit": 15909,
- "breeds": 15910,
- "diminished": 15911,
- "clown": 15912,
- "glove": 15913,
- "1860s": 15914,
- "##ن": 15915,
- "##ug": 15916,
- "archibald": 15917,
- "focal": 15918,
- "freelance": 15919,
- "sliced": 15920,
- "depiction": 15921,
- "##yk": 15922,
- "organism": 15923,
- "switches": 15924,
- "sights": 15925,
- "stray": 15926,
- "crawling": 15927,
- "##ril": 15928,
- "lever": 15929,
- "leningrad": 15930,
- "interpretations": 15931,
- "loops": 15932,
- "anytime": 15933,
- "reel": 15934,
- "alicia": 15935,
- "delighted": 15936,
- "##ech": 15937,
- "inhaled": 15938,
- "xiv": 15939,
- "suitcase": 15940,
- "bernie": 15941,
- "vega": 15942,
- "licenses": 15943,
- "northampton": 15944,
- "exclusion": 15945,
- "induction": 15946,
- "monasteries": 15947,
- "racecourse": 15948,
- "homosexuality": 15949,
- "##right": 15950,
- "##sfield": 15951,
- "##rky": 15952,
- "dimitri": 15953,
- "michele": 15954,
- "alternatives": 15955,
- "ions": 15956,
- "commentators": 15957,
- "genuinely": 15958,
- "objected": 15959,
- "pork": 15960,
- "hospitality": 15961,
- "fencing": 15962,
- "stephan": 15963,
- "warships": 15964,
- "peripheral": 15965,
- "wit": 15966,
- "drunken": 15967,
- "wrinkled": 15968,
- "quentin": 15969,
- "spends": 15970,
- "departing": 15971,
- "chung": 15972,
- "numerical": 15973,
- "spokesperson": 15974,
- "##zone": 15975,
- "johannesburg": 15976,
- "caliber": 15977,
- "killers": 15978,
- "##udge": 15979,
- "assumes": 15980,
- "neatly": 15981,
- "demographic": 15982,
- "abigail": 15983,
- "bloc": 15984,
- "##vel": 15985,
- "mounting": 15986,
- "##lain": 15987,
- "bentley": 15988,
- "slightest": 15989,
- "xu": 15990,
- "recipients": 15991,
- "##jk": 15992,
- "merlin": 15993,
- "##writer": 15994,
- "seniors": 15995,
- "prisons": 15996,
- "blinking": 15997,
- "hindwings": 15998,
- "flickered": 15999,
- "kappa": 16000,
- "##hel": 16001,
- "80s": 16002,
- "strengthening": 16003,
- "appealing": 16004,
- "brewing": 16005,
- "gypsy": 16006,
- "mali": 16007,
- "lashes": 16008,
- "hulk": 16009,
- "unpleasant": 16010,
- "harassment": 16011,
- "bio": 16012,
- "treaties": 16013,
- "predict": 16014,
- "instrumentation": 16015,
- "pulp": 16016,
- "troupe": 16017,
- "boiling": 16018,
- "mantle": 16019,
- "##ffe": 16020,
- "ins": 16021,
- "##vn": 16022,
- "dividing": 16023,
- "handles": 16024,
- "verbs": 16025,
- "##onal": 16026,
- "coconut": 16027,
- "senegal": 16028,
- "340": 16029,
- "thorough": 16030,
- "gum": 16031,
- "momentarily": 16032,
- "##sto": 16033,
- "cocaine": 16034,
- "panicked": 16035,
- "destined": 16036,
- "##turing": 16037,
- "teatro": 16038,
- "denying": 16039,
- "weary": 16040,
- "captained": 16041,
- "mans": 16042,
- "##hawks": 16043,
- "##code": 16044,
- "wakefield": 16045,
- "bollywood": 16046,
- "thankfully": 16047,
- "##16": 16048,
- "cyril": 16049,
- "##wu": 16050,
- "amendments": 16051,
- "##bahn": 16052,
- "consultation": 16053,
- "stud": 16054,
- "reflections": 16055,
- "kindness": 16056,
- "1787": 16057,
- "internally": 16058,
- "##ovo": 16059,
- "tex": 16060,
- "mosaic": 16061,
- "distribute": 16062,
- "paddy": 16063,
- "seeming": 16064,
- "143": 16065,
- "##hic": 16066,
- "piers": 16067,
- "##15": 16068,
- "##mura": 16069,
- "##verse": 16070,
- "popularly": 16071,
- "winger": 16072,
- "kang": 16073,
- "sentinel": 16074,
- "mccoy": 16075,
- "##anza": 16076,
- "covenant": 16077,
- "##bag": 16078,
- "verge": 16079,
- "fireworks": 16080,
- "suppress": 16081,
- "thrilled": 16082,
- "dominate": 16083,
- "##jar": 16084,
- "swansea": 16085,
- "##60": 16086,
- "142": 16087,
- "reconciliation": 16088,
- "##ndi": 16089,
- "stiffened": 16090,
- "cue": 16091,
- "dorian": 16092,
- "##uf": 16093,
- "damascus": 16094,
- "amor": 16095,
- "ida": 16096,
- "foremost": 16097,
- "##aga": 16098,
- "porsche": 16099,
- "unseen": 16100,
- "dir": 16101,
- "##had": 16102,
- "##azi": 16103,
- "stony": 16104,
- "lexi": 16105,
- "melodies": 16106,
- "##nko": 16107,
- "angular": 16108,
- "integer": 16109,
- "podcast": 16110,
- "ants": 16111,
- "inherent": 16112,
- "jaws": 16113,
- "justify": 16114,
- "persona": 16115,
- "##olved": 16116,
- "josephine": 16117,
- "##nr": 16118,
- "##ressed": 16119,
- "customary": 16120,
- "flashes": 16121,
- "gala": 16122,
- "cyrus": 16123,
- "glaring": 16124,
- "backyard": 16125,
- "ariel": 16126,
- "physiology": 16127,
- "greenland": 16128,
- "html": 16129,
- "stir": 16130,
- "avon": 16131,
- "atletico": 16132,
- "finch": 16133,
- "methodology": 16134,
- "ked": 16135,
- "##lent": 16136,
- "mas": 16137,
- "catholicism": 16138,
- "townsend": 16139,
- "branding": 16140,
- "quincy": 16141,
- "fits": 16142,
- "containers": 16143,
- "1777": 16144,
- "ashore": 16145,
- "aragon": 16146,
- "##19": 16147,
- "forearm": 16148,
- "poisoning": 16149,
- "##sd": 16150,
- "adopting": 16151,
- "conquer": 16152,
- "grinding": 16153,
- "amnesty": 16154,
- "keller": 16155,
- "finances": 16156,
- "evaluate": 16157,
- "forged": 16158,
- "lankan": 16159,
- "instincts": 16160,
- "##uto": 16161,
- "guam": 16162,
- "bosnian": 16163,
- "photographed": 16164,
- "workplace": 16165,
- "desirable": 16166,
- "protector": 16167,
- "##dog": 16168,
- "allocation": 16169,
- "intently": 16170,
- "encourages": 16171,
- "willy": 16172,
- "##sten": 16173,
- "bodyguard": 16174,
- "electro": 16175,
- "brighter": 16176,
- "##ν": 16177,
- "bihar": 16178,
- "##chev": 16179,
- "lasts": 16180,
- "opener": 16181,
- "amphibious": 16182,
- "sal": 16183,
- "verde": 16184,
- "arte": 16185,
- "##cope": 16186,
- "captivity": 16187,
- "vocabulary": 16188,
- "yields": 16189,
- "##tted": 16190,
- "agreeing": 16191,
- "desmond": 16192,
- "pioneered": 16193,
- "##chus": 16194,
- "strap": 16195,
- "campaigned": 16196,
- "railroads": 16197,
- "##ович": 16198,
- "emblem": 16199,
- "##dre": 16200,
- "stormed": 16201,
- "501": 16202,
- "##ulous": 16203,
- "marijuana": 16204,
- "northumberland": 16205,
- "##gn": 16206,
- "##nath": 16207,
- "bowen": 16208,
- "landmarks": 16209,
- "beaumont": 16210,
- "##qua": 16211,
- "danube": 16212,
- "##bler": 16213,
- "attorneys": 16214,
- "th": 16215,
- "ge": 16216,
- "flyers": 16217,
- "critique": 16218,
- "villains": 16219,
- "cass": 16220,
- "mutation": 16221,
- "acc": 16222,
- "##0s": 16223,
- "colombo": 16224,
- "mckay": 16225,
- "motif": 16226,
- "sampling": 16227,
- "concluding": 16228,
- "syndicate": 16229,
- "##rell": 16230,
- "neon": 16231,
- "stables": 16232,
- "ds": 16233,
- "warnings": 16234,
- "clint": 16235,
- "mourning": 16236,
- "wilkinson": 16237,
- "##tated": 16238,
- "merrill": 16239,
- "leopard": 16240,
- "evenings": 16241,
- "exhaled": 16242,
- "emil": 16243,
- "sonia": 16244,
- "ezra": 16245,
- "discrete": 16246,
- "stove": 16247,
- "farrell": 16248,
- "fifteenth": 16249,
- "prescribed": 16250,
- "superhero": 16251,
- "##rier": 16252,
- "worms": 16253,
- "helm": 16254,
- "wren": 16255,
- "##duction": 16256,
- "##hc": 16257,
- "expo": 16258,
- "##rator": 16259,
- "hq": 16260,
- "unfamiliar": 16261,
- "antony": 16262,
- "prevents": 16263,
- "acceleration": 16264,
- "fiercely": 16265,
- "mari": 16266,
- "painfully": 16267,
- "calculations": 16268,
- "cheaper": 16269,
- "ign": 16270,
- "clifton": 16271,
- "irvine": 16272,
- "davenport": 16273,
- "mozambique": 16274,
- "##np": 16275,
- "pierced": 16276,
- "##evich": 16277,
- "wonders": 16278,
- "##wig": 16279,
- "##cate": 16280,
- "##iling": 16281,
- "crusade": 16282,
- "ware": 16283,
- "##uel": 16284,
- "enzymes": 16285,
- "reasonably": 16286,
- "mls": 16287,
- "##coe": 16288,
- "mater": 16289,
- "ambition": 16290,
- "bunny": 16291,
- "eliot": 16292,
- "kernel": 16293,
- "##fin": 16294,
- "asphalt": 16295,
- "headmaster": 16296,
- "torah": 16297,
- "aden": 16298,
- "lush": 16299,
- "pins": 16300,
- "waived": 16301,
- "##care": 16302,
- "##yas": 16303,
- "joao": 16304,
- "substrate": 16305,
- "enforce": 16306,
- "##grad": 16307,
- "##ules": 16308,
- "alvarez": 16309,
- "selections": 16310,
- "epidemic": 16311,
- "tempted": 16312,
- "##bit": 16313,
- "bremen": 16314,
- "translates": 16315,
- "ensured": 16316,
- "waterfront": 16317,
- "29th": 16318,
- "forrest": 16319,
- "manny": 16320,
- "malone": 16321,
- "kramer": 16322,
- "reigning": 16323,
- "cookies": 16324,
- "simpler": 16325,
- "absorption": 16326,
- "205": 16327,
- "engraved": 16328,
- "##ffy": 16329,
- "evaluated": 16330,
- "1778": 16331,
- "haze": 16332,
- "146": 16333,
- "comforting": 16334,
- "crossover": 16335,
- "##abe": 16336,
- "thorn": 16337,
- "##rift": 16338,
- "##imo": 16339,
- "##pop": 16340,
- "suppression": 16341,
- "fatigue": 16342,
- "cutter": 16343,
- "##tr": 16344,
- "201": 16345,
- "wurttemberg": 16346,
- "##orf": 16347,
- "enforced": 16348,
- "hovering": 16349,
- "proprietary": 16350,
- "gb": 16351,
- "samurai": 16352,
- "syllable": 16353,
- "ascent": 16354,
- "lacey": 16355,
- "tick": 16356,
- "lars": 16357,
- "tractor": 16358,
- "merchandise": 16359,
- "rep": 16360,
- "bouncing": 16361,
- "defendants": 16362,
- "##yre": 16363,
- "huntington": 16364,
- "##ground": 16365,
- "##oko": 16366,
- "standardized": 16367,
- "##hor": 16368,
- "##hima": 16369,
- "assassinated": 16370,
- "nu": 16371,
- "predecessors": 16372,
- "rainy": 16373,
- "liar": 16374,
- "assurance": 16375,
- "lyrical": 16376,
- "##uga": 16377,
- "secondly": 16378,
- "flattened": 16379,
- "ios": 16380,
- "parameter": 16381,
- "undercover": 16382,
- "##mity": 16383,
- "bordeaux": 16384,
- "punish": 16385,
- "ridges": 16386,
- "markers": 16387,
- "exodus": 16388,
- "inactive": 16389,
- "hesitate": 16390,
- "debbie": 16391,
- "nyc": 16392,
- "pledge": 16393,
- "savoy": 16394,
- "nagar": 16395,
- "offset": 16396,
- "organist": 16397,
- "##tium": 16398,
- "hesse": 16399,
- "marin": 16400,
- "converting": 16401,
- "##iver": 16402,
- "diagram": 16403,
- "propulsion": 16404,
- "pu": 16405,
- "validity": 16406,
- "reverted": 16407,
- "supportive": 16408,
- "##dc": 16409,
- "ministries": 16410,
- "clans": 16411,
- "responds": 16412,
- "proclamation": 16413,
- "##inae": 16414,
- "##ø": 16415,
- "##rea": 16416,
- "ein": 16417,
- "pleading": 16418,
- "patriot": 16419,
- "sf": 16420,
- "birch": 16421,
- "islanders": 16422,
- "strauss": 16423,
- "hates": 16424,
- "##dh": 16425,
- "brandenburg": 16426,
- "concession": 16427,
- "rd": 16428,
- "##ob": 16429,
- "1900s": 16430,
- "killings": 16431,
- "textbook": 16432,
- "antiquity": 16433,
- "cinematography": 16434,
- "wharf": 16435,
- "embarrassing": 16436,
- "setup": 16437,
- "creed": 16438,
- "farmland": 16439,
- "inequality": 16440,
- "centred": 16441,
- "signatures": 16442,
- "fallon": 16443,
- "370": 16444,
- "##ingham": 16445,
- "##uts": 16446,
- "ceylon": 16447,
- "gazing": 16448,
- "directive": 16449,
- "laurie": 16450,
- "##tern": 16451,
- "globally": 16452,
- "##uated": 16453,
- "##dent": 16454,
- "allah": 16455,
- "excavation": 16456,
- "threads": 16457,
- "##cross": 16458,
- "148": 16459,
- "frantically": 16460,
- "icc": 16461,
- "utilize": 16462,
- "determines": 16463,
- "respiratory": 16464,
- "thoughtful": 16465,
- "receptions": 16466,
- "##dicate": 16467,
- "merging": 16468,
- "chandra": 16469,
- "seine": 16470,
- "147": 16471,
- "builders": 16472,
- "builds": 16473,
- "diagnostic": 16474,
- "dev": 16475,
- "visibility": 16476,
- "goddamn": 16477,
- "analyses": 16478,
- "dhaka": 16479,
- "cho": 16480,
- "proves": 16481,
- "chancel": 16482,
- "concurrent": 16483,
- "curiously": 16484,
- "canadians": 16485,
- "pumped": 16486,
- "restoring": 16487,
- "1850s": 16488,
- "turtles": 16489,
- "jaguar": 16490,
- "sinister": 16491,
- "spinal": 16492,
- "traction": 16493,
- "declan": 16494,
- "vows": 16495,
- "1784": 16496,
- "glowed": 16497,
- "capitalism": 16498,
- "swirling": 16499,
- "install": 16500,
- "universidad": 16501,
- "##lder": 16502,
- "##oat": 16503,
- "soloist": 16504,
- "##genic": 16505,
- "##oor": 16506,
- "coincidence": 16507,
- "beginnings": 16508,
- "nissan": 16509,
- "dip": 16510,
- "resorts": 16511,
- "caucasus": 16512,
- "combustion": 16513,
- "infectious": 16514,
- "##eno": 16515,
- "pigeon": 16516,
- "serpent": 16517,
- "##itating": 16518,
- "conclude": 16519,
- "masked": 16520,
- "salad": 16521,
- "jew": 16522,
- "##gr": 16523,
- "surreal": 16524,
- "toni": 16525,
- "##wc": 16526,
- "harmonica": 16527,
- "151": 16528,
- "##gins": 16529,
- "##etic": 16530,
- "##coat": 16531,
- "fishermen": 16532,
- "intending": 16533,
- "bravery": 16534,
- "##wave": 16535,
- "klaus": 16536,
- "titan": 16537,
- "wembley": 16538,
- "taiwanese": 16539,
- "ransom": 16540,
- "40th": 16541,
- "incorrect": 16542,
- "hussein": 16543,
- "eyelids": 16544,
- "jp": 16545,
- "cooke": 16546,
- "dramas": 16547,
- "utilities": 16548,
- "##etta": 16549,
- "##print": 16550,
- "eisenhower": 16551,
- "principally": 16552,
- "granada": 16553,
- "lana": 16554,
- "##rak": 16555,
- "openings": 16556,
- "concord": 16557,
- "##bl": 16558,
- "bethany": 16559,
- "connie": 16560,
- "morality": 16561,
- "sega": 16562,
- "##mons": 16563,
- "##nard": 16564,
- "earnings": 16565,
- "##kara": 16566,
- "##cine": 16567,
- "wii": 16568,
- "communes": 16569,
- "##rel": 16570,
- "coma": 16571,
- "composing": 16572,
- "softened": 16573,
- "severed": 16574,
- "grapes": 16575,
- "##17": 16576,
- "nguyen": 16577,
- "analyzed": 16578,
- "warlord": 16579,
- "hubbard": 16580,
- "heavenly": 16581,
- "behave": 16582,
- "slovenian": 16583,
- "##hit": 16584,
- "##ony": 16585,
- "hailed": 16586,
- "filmmakers": 16587,
- "trance": 16588,
- "caldwell": 16589,
- "skye": 16590,
- "unrest": 16591,
- "coward": 16592,
- "likelihood": 16593,
- "##aging": 16594,
- "bern": 16595,
- "sci": 16596,
- "taliban": 16597,
- "honolulu": 16598,
- "propose": 16599,
- "##wang": 16600,
- "1700": 16601,
- "browser": 16602,
- "imagining": 16603,
- "cobra": 16604,
- "contributes": 16605,
- "dukes": 16606,
- "instinctively": 16607,
- "conan": 16608,
- "violinist": 16609,
- "##ores": 16610,
- "accessories": 16611,
- "gradual": 16612,
- "##amp": 16613,
- "quotes": 16614,
- "sioux": 16615,
- "##dating": 16616,
- "undertake": 16617,
- "intercepted": 16618,
- "sparkling": 16619,
- "compressed": 16620,
- "139": 16621,
- "fungus": 16622,
- "tombs": 16623,
- "haley": 16624,
- "imposing": 16625,
- "rests": 16626,
- "degradation": 16627,
- "lincolnshire": 16628,
- "retailers": 16629,
- "wetlands": 16630,
- "tulsa": 16631,
- "distributor": 16632,
- "dungeon": 16633,
- "nun": 16634,
- "greenhouse": 16635,
- "convey": 16636,
- "atlantis": 16637,
- "aft": 16638,
- "exits": 16639,
- "oman": 16640,
- "dresser": 16641,
- "lyons": 16642,
- "##sti": 16643,
- "joking": 16644,
- "eddy": 16645,
- "judgement": 16646,
- "omitted": 16647,
- "digits": 16648,
- "##cts": 16649,
- "##game": 16650,
- "juniors": 16651,
- "##rae": 16652,
- "cents": 16653,
- "stricken": 16654,
- "une": 16655,
- "##ngo": 16656,
- "wizards": 16657,
- "weir": 16658,
- "breton": 16659,
- "nan": 16660,
- "technician": 16661,
- "fibers": 16662,
- "liking": 16663,
- "royalty": 16664,
- "##cca": 16665,
- "154": 16666,
- "persia": 16667,
- "terribly": 16668,
- "magician": 16669,
- "##rable": 16670,
- "##unt": 16671,
- "vance": 16672,
- "cafeteria": 16673,
- "booker": 16674,
- "camille": 16675,
- "warmer": 16676,
- "##static": 16677,
- "consume": 16678,
- "cavern": 16679,
- "gaps": 16680,
- "compass": 16681,
- "contemporaries": 16682,
- "foyer": 16683,
- "soothing": 16684,
- "graveyard": 16685,
- "maj": 16686,
- "plunged": 16687,
- "blush": 16688,
- "##wear": 16689,
- "cascade": 16690,
- "demonstrates": 16691,
- "ordinance": 16692,
- "##nov": 16693,
- "boyle": 16694,
- "##lana": 16695,
- "rockefeller": 16696,
- "shaken": 16697,
- "banjo": 16698,
- "izzy": 16699,
- "##ense": 16700,
- "breathless": 16701,
- "vines": 16702,
- "##32": 16703,
- "##eman": 16704,
- "alterations": 16705,
- "chromosome": 16706,
- "dwellings": 16707,
- "feudal": 16708,
- "mole": 16709,
- "153": 16710,
- "catalonia": 16711,
- "relics": 16712,
- "tenant": 16713,
- "mandated": 16714,
- "##fm": 16715,
- "fridge": 16716,
- "hats": 16717,
- "honesty": 16718,
- "patented": 16719,
- "raul": 16720,
- "heap": 16721,
- "cruisers": 16722,
- "accusing": 16723,
- "enlightenment": 16724,
- "infants": 16725,
- "wherein": 16726,
- "chatham": 16727,
- "contractors": 16728,
- "zen": 16729,
- "affinity": 16730,
- "hc": 16731,
- "osborne": 16732,
- "piston": 16733,
- "156": 16734,
- "traps": 16735,
- "maturity": 16736,
- "##rana": 16737,
- "lagos": 16738,
- "##zal": 16739,
- "peering": 16740,
- "##nay": 16741,
- "attendant": 16742,
- "dealers": 16743,
- "protocols": 16744,
- "subset": 16745,
- "prospects": 16746,
- "biographical": 16747,
- "##cre": 16748,
- "artery": 16749,
- "##zers": 16750,
- "insignia": 16751,
- "nuns": 16752,
- "endured": 16753,
- "##eration": 16754,
- "recommend": 16755,
- "schwartz": 16756,
- "serbs": 16757,
- "berger": 16758,
- "cromwell": 16759,
- "crossroads": 16760,
- "##ctor": 16761,
- "enduring": 16762,
- "clasped": 16763,
- "grounded": 16764,
- "##bine": 16765,
- "marseille": 16766,
- "twitched": 16767,
- "abel": 16768,
- "choke": 16769,
- "https": 16770,
- "catalyst": 16771,
- "moldova": 16772,
- "italians": 16773,
- "##tist": 16774,
- "disastrous": 16775,
- "wee": 16776,
- "##oured": 16777,
- "##nti": 16778,
- "wwf": 16779,
- "nope": 16780,
- "##piration": 16781,
- "##asa": 16782,
- "expresses": 16783,
- "thumbs": 16784,
- "167": 16785,
- "##nza": 16786,
- "coca": 16787,
- "1781": 16788,
- "cheating": 16789,
- "##ption": 16790,
- "skipped": 16791,
- "sensory": 16792,
- "heidelberg": 16793,
- "spies": 16794,
- "satan": 16795,
- "dangers": 16796,
- "semifinal": 16797,
- "202": 16798,
- "bohemia": 16799,
- "whitish": 16800,
- "confusing": 16801,
- "shipbuilding": 16802,
- "relies": 16803,
- "surgeons": 16804,
- "landings": 16805,
- "ravi": 16806,
- "baku": 16807,
- "moor": 16808,
- "suffix": 16809,
- "alejandro": 16810,
- "##yana": 16811,
- "litre": 16812,
- "upheld": 16813,
- "##unk": 16814,
- "rajasthan": 16815,
- "##rek": 16816,
- "coaster": 16817,
- "insists": 16818,
- "posture": 16819,
- "scenarios": 16820,
- "etienne": 16821,
- "favoured": 16822,
- "appoint": 16823,
- "transgender": 16824,
- "elephants": 16825,
- "poked": 16826,
- "greenwood": 16827,
- "defences": 16828,
- "fulfilled": 16829,
- "militant": 16830,
- "somali": 16831,
- "1758": 16832,
- "chalk": 16833,
- "potent": 16834,
- "##ucci": 16835,
- "migrants": 16836,
- "wink": 16837,
- "assistants": 16838,
- "nos": 16839,
- "restriction": 16840,
- "activism": 16841,
- "niger": 16842,
- "##ario": 16843,
- "colon": 16844,
- "shaun": 16845,
- "##sat": 16846,
- "daphne": 16847,
- "##erated": 16848,
- "swam": 16849,
- "congregations": 16850,
- "reprise": 16851,
- "considerations": 16852,
- "magnet": 16853,
- "playable": 16854,
- "xvi": 16855,
- "##р": 16856,
- "overthrow": 16857,
- "tobias": 16858,
- "knob": 16859,
- "chavez": 16860,
- "coding": 16861,
- "##mers": 16862,
- "propped": 16863,
- "katrina": 16864,
- "orient": 16865,
- "newcomer": 16866,
- "##suke": 16867,
- "temperate": 16868,
- "##pool": 16869,
- "farmhouse": 16870,
- "interrogation": 16871,
- "##vd": 16872,
- "committing": 16873,
- "##vert": 16874,
- "forthcoming": 16875,
- "strawberry": 16876,
- "joaquin": 16877,
- "macau": 16878,
- "ponds": 16879,
- "shocking": 16880,
- "siberia": 16881,
- "##cellular": 16882,
- "chant": 16883,
- "contributors": 16884,
- "##nant": 16885,
- "##ologists": 16886,
- "sped": 16887,
- "absorb": 16888,
- "hail": 16889,
- "1782": 16890,
- "spared": 16891,
- "##hore": 16892,
- "barbados": 16893,
- "karate": 16894,
- "opus": 16895,
- "originates": 16896,
- "saul": 16897,
- "##xie": 16898,
- "evergreen": 16899,
- "leaped": 16900,
- "##rock": 16901,
- "correlation": 16902,
- "exaggerated": 16903,
- "weekday": 16904,
- "unification": 16905,
- "bump": 16906,
- "tracing": 16907,
- "brig": 16908,
- "afb": 16909,
- "pathways": 16910,
- "utilizing": 16911,
- "##ners": 16912,
- "mod": 16913,
- "mb": 16914,
- "disturbance": 16915,
- "kneeling": 16916,
- "##stad": 16917,
- "##guchi": 16918,
- "100th": 16919,
- "pune": 16920,
- "##thy": 16921,
- "decreasing": 16922,
- "168": 16923,
- "manipulation": 16924,
- "miriam": 16925,
- "academia": 16926,
- "ecosystem": 16927,
- "occupational": 16928,
- "rbi": 16929,
- "##lem": 16930,
- "rift": 16931,
- "##14": 16932,
- "rotary": 16933,
- "stacked": 16934,
- "incorporation": 16935,
- "awakening": 16936,
- "generators": 16937,
- "guerrero": 16938,
- "racist": 16939,
- "##omy": 16940,
- "cyber": 16941,
- "derivatives": 16942,
- "culminated": 16943,
- "allie": 16944,
- "annals": 16945,
- "panzer": 16946,
- "sainte": 16947,
- "wikipedia": 16948,
- "pops": 16949,
- "zu": 16950,
- "austro": 16951,
- "##vate": 16952,
- "algerian": 16953,
- "politely": 16954,
- "nicholson": 16955,
- "mornings": 16956,
- "educate": 16957,
- "tastes": 16958,
- "thrill": 16959,
- "dartmouth": 16960,
- "##gating": 16961,
- "db": 16962,
- "##jee": 16963,
- "regan": 16964,
- "differing": 16965,
- "concentrating": 16966,
- "choreography": 16967,
- "divinity": 16968,
- "##media": 16969,
- "pledged": 16970,
- "alexandre": 16971,
- "routing": 16972,
- "gregor": 16973,
- "madeline": 16974,
- "##idal": 16975,
- "apocalypse": 16976,
- "##hora": 16977,
- "gunfire": 16978,
- "culminating": 16979,
- "elves": 16980,
- "fined": 16981,
- "liang": 16982,
- "lam": 16983,
- "programmed": 16984,
- "tar": 16985,
- "guessing": 16986,
- "transparency": 16987,
- "gabrielle": 16988,
- "##gna": 16989,
- "cancellation": 16990,
- "flexibility": 16991,
- "##lining": 16992,
- "accession": 16993,
- "shea": 16994,
- "stronghold": 16995,
- "nets": 16996,
- "specializes": 16997,
- "##rgan": 16998,
- "abused": 16999,
- "hasan": 17000,
- "sgt": 17001,
- "ling": 17002,
- "exceeding": 17003,
- "##₄": 17004,
- "admiration": 17005,
- "supermarket": 17006,
- "##ark": 17007,
- "photographers": 17008,
- "specialised": 17009,
- "tilt": 17010,
- "resonance": 17011,
- "hmm": 17012,
- "perfume": 17013,
- "380": 17014,
- "sami": 17015,
- "threatens": 17016,
- "garland": 17017,
- "botany": 17018,
- "guarding": 17019,
- "boiled": 17020,
- "greet": 17021,
- "puppy": 17022,
- "russo": 17023,
- "supplier": 17024,
- "wilmington": 17025,
- "vibrant": 17026,
- "vijay": 17027,
- "##bius": 17028,
- "paralympic": 17029,
- "grumbled": 17030,
- "paige": 17031,
- "faa": 17032,
- "licking": 17033,
- "margins": 17034,
- "hurricanes": 17035,
- "##gong": 17036,
- "fest": 17037,
- "grenade": 17038,
- "ripping": 17039,
- "##uz": 17040,
- "counseling": 17041,
- "weigh": 17042,
- "##sian": 17043,
- "needles": 17044,
- "wiltshire": 17045,
- "edison": 17046,
- "costly": 17047,
- "##not": 17048,
- "fulton": 17049,
- "tramway": 17050,
- "redesigned": 17051,
- "staffordshire": 17052,
- "cache": 17053,
- "gasping": 17054,
- "watkins": 17055,
- "sleepy": 17056,
- "candidacy": 17057,
- "##group": 17058,
- "monkeys": 17059,
- "timeline": 17060,
- "throbbing": 17061,
- "##bid": 17062,
- "##sos": 17063,
- "berth": 17064,
- "uzbekistan": 17065,
- "vanderbilt": 17066,
- "bothering": 17067,
- "overturned": 17068,
- "ballots": 17069,
- "gem": 17070,
- "##iger": 17071,
- "sunglasses": 17072,
- "subscribers": 17073,
- "hooker": 17074,
- "compelling": 17075,
- "ang": 17076,
- "exceptionally": 17077,
- "saloon": 17078,
- "stab": 17079,
- "##rdi": 17080,
- "carla": 17081,
- "terrifying": 17082,
- "rom": 17083,
- "##vision": 17084,
- "coil": 17085,
- "##oids": 17086,
- "satisfying": 17087,
- "vendors": 17088,
- "31st": 17089,
- "mackay": 17090,
- "deities": 17091,
- "overlooked": 17092,
- "ambient": 17093,
- "bahamas": 17094,
- "felipe": 17095,
- "olympia": 17096,
- "whirled": 17097,
- "botanist": 17098,
- "advertised": 17099,
- "tugging": 17100,
- "##dden": 17101,
- "disciples": 17102,
- "morales": 17103,
- "unionist": 17104,
- "rites": 17105,
- "foley": 17106,
- "morse": 17107,
- "motives": 17108,
- "creepy": 17109,
- "##₀": 17110,
- "soo": 17111,
- "##sz": 17112,
- "bargain": 17113,
- "highness": 17114,
- "frightening": 17115,
- "turnpike": 17116,
- "tory": 17117,
- "reorganization": 17118,
- "##cer": 17119,
- "depict": 17120,
- "biographer": 17121,
- "##walk": 17122,
- "unopposed": 17123,
- "manifesto": 17124,
- "##gles": 17125,
- "institut": 17126,
- "emile": 17127,
- "accidental": 17128,
- "kapoor": 17129,
- "##dam": 17130,
- "kilkenny": 17131,
- "cortex": 17132,
- "lively": 17133,
- "##13": 17134,
- "romanesque": 17135,
- "jain": 17136,
- "shan": 17137,
- "cannons": 17138,
- "##ood": 17139,
- "##ske": 17140,
- "petrol": 17141,
- "echoing": 17142,
- "amalgamated": 17143,
- "disappears": 17144,
- "cautious": 17145,
- "proposes": 17146,
- "sanctions": 17147,
- "trenton": 17148,
- "##ر": 17149,
- "flotilla": 17150,
- "aus": 17151,
- "contempt": 17152,
- "tor": 17153,
- "canary": 17154,
- "cote": 17155,
- "theirs": 17156,
- "##hun": 17157,
- "conceptual": 17158,
- "deleted": 17159,
- "fascinating": 17160,
- "paso": 17161,
- "blazing": 17162,
- "elf": 17163,
- "honourable": 17164,
- "hutchinson": 17165,
- "##eiro": 17166,
- "##outh": 17167,
- "##zin": 17168,
- "surveyor": 17169,
- "tee": 17170,
- "amidst": 17171,
- "wooded": 17172,
- "reissue": 17173,
- "intro": 17174,
- "##ono": 17175,
- "cobb": 17176,
- "shelters": 17177,
- "newsletter": 17178,
- "hanson": 17179,
- "brace": 17180,
- "encoding": 17181,
- "confiscated": 17182,
- "dem": 17183,
- "caravan": 17184,
- "marino": 17185,
- "scroll": 17186,
- "melodic": 17187,
- "cows": 17188,
- "imam": 17189,
- "##adi": 17190,
- "##aneous": 17191,
- "northward": 17192,
- "searches": 17193,
- "biodiversity": 17194,
- "cora": 17195,
- "310": 17196,
- "roaring": 17197,
- "##bers": 17198,
- "connell": 17199,
- "theologian": 17200,
- "halo": 17201,
- "compose": 17202,
- "pathetic": 17203,
- "unmarried": 17204,
- "dynamo": 17205,
- "##oot": 17206,
- "az": 17207,
- "calculation": 17208,
- "toulouse": 17209,
- "deserves": 17210,
- "humour": 17211,
- "nr": 17212,
- "forgiveness": 17213,
- "tam": 17214,
- "undergone": 17215,
- "martyr": 17216,
- "pamela": 17217,
- "myths": 17218,
- "whore": 17219,
- "counselor": 17220,
- "hicks": 17221,
- "290": 17222,
- "heavens": 17223,
- "battleship": 17224,
- "electromagnetic": 17225,
- "##bbs": 17226,
- "stellar": 17227,
- "establishments": 17228,
- "presley": 17229,
- "hopped": 17230,
- "##chin": 17231,
- "temptation": 17232,
- "90s": 17233,
- "wills": 17234,
- "nas": 17235,
- "##yuan": 17236,
- "nhs": 17237,
- "##nya": 17238,
- "seminars": 17239,
- "##yev": 17240,
- "adaptations": 17241,
- "gong": 17242,
- "asher": 17243,
- "lex": 17244,
- "indicator": 17245,
- "sikh": 17246,
- "tobago": 17247,
- "cites": 17248,
- "goin": 17249,
- "##yte": 17250,
- "satirical": 17251,
- "##gies": 17252,
- "characterised": 17253,
- "correspond": 17254,
- "bubbles": 17255,
- "lure": 17256,
- "participates": 17257,
- "##vid": 17258,
- "eruption": 17259,
- "skate": 17260,
- "therapeutic": 17261,
- "1785": 17262,
- "canals": 17263,
- "wholesale": 17264,
- "defaulted": 17265,
- "sac": 17266,
- "460": 17267,
- "petit": 17268,
- "##zzled": 17269,
- "virgil": 17270,
- "leak": 17271,
- "ravens": 17272,
- "256": 17273,
- "portraying": 17274,
- "##yx": 17275,
- "ghetto": 17276,
- "creators": 17277,
- "dams": 17278,
- "portray": 17279,
- "vicente": 17280,
- "##rington": 17281,
- "fae": 17282,
- "namesake": 17283,
- "bounty": 17284,
- "##arium": 17285,
- "joachim": 17286,
- "##ota": 17287,
- "##iser": 17288,
- "aforementioned": 17289,
- "axle": 17290,
- "snout": 17291,
- "depended": 17292,
- "dismantled": 17293,
- "reuben": 17294,
- "480": 17295,
- "##ibly": 17296,
- "gallagher": 17297,
- "##lau": 17298,
- "##pd": 17299,
- "earnest": 17300,
- "##ieu": 17301,
- "##iary": 17302,
- "inflicted": 17303,
- "objections": 17304,
- "##llar": 17305,
- "asa": 17306,
- "gritted": 17307,
- "##athy": 17308,
- "jericho": 17309,
- "##sea": 17310,
- "##was": 17311,
- "flick": 17312,
- "underside": 17313,
- "ceramics": 17314,
- "undead": 17315,
- "substituted": 17316,
- "195": 17317,
- "eastward": 17318,
- "undoubtedly": 17319,
- "wheeled": 17320,
- "chimney": 17321,
- "##iche": 17322,
- "guinness": 17323,
- "cb": 17324,
- "##ager": 17325,
- "siding": 17326,
- "##bell": 17327,
- "traitor": 17328,
- "baptiste": 17329,
- "disguised": 17330,
- "inauguration": 17331,
- "149": 17332,
- "tipperary": 17333,
- "choreographer": 17334,
- "perched": 17335,
- "warmed": 17336,
- "stationary": 17337,
- "eco": 17338,
- "##ike": 17339,
- "##ntes": 17340,
- "bacterial": 17341,
- "##aurus": 17342,
- "flores": 17343,
- "phosphate": 17344,
- "##core": 17345,
- "attacker": 17346,
- "invaders": 17347,
- "alvin": 17348,
- "intersects": 17349,
- "a1": 17350,
- "indirectly": 17351,
- "immigrated": 17352,
- "businessmen": 17353,
- "cornelius": 17354,
- "valves": 17355,
- "narrated": 17356,
- "pill": 17357,
- "sober": 17358,
- "ul": 17359,
- "nationale": 17360,
- "monastic": 17361,
- "applicants": 17362,
- "scenery": 17363,
- "##jack": 17364,
- "161": 17365,
- "motifs": 17366,
- "constitutes": 17367,
- "cpu": 17368,
- "##osh": 17369,
- "jurisdictions": 17370,
- "sd": 17371,
- "tuning": 17372,
- "irritation": 17373,
- "woven": 17374,
- "##uddin": 17375,
- "fertility": 17376,
- "gao": 17377,
- "##erie": 17378,
- "antagonist": 17379,
- "impatient": 17380,
- "glacial": 17381,
- "hides": 17382,
- "boarded": 17383,
- "denominations": 17384,
- "interception": 17385,
- "##jas": 17386,
- "cookie": 17387,
- "nicola": 17388,
- "##tee": 17389,
- "algebraic": 17390,
- "marquess": 17391,
- "bahn": 17392,
- "parole": 17393,
- "buyers": 17394,
- "bait": 17395,
- "turbines": 17396,
- "paperwork": 17397,
- "bestowed": 17398,
- "natasha": 17399,
- "renee": 17400,
- "oceans": 17401,
- "purchases": 17402,
- "157": 17403,
- "vaccine": 17404,
- "215": 17405,
- "##tock": 17406,
- "fixtures": 17407,
- "playhouse": 17408,
- "integrate": 17409,
- "jai": 17410,
- "oswald": 17411,
- "intellectuals": 17412,
- "##cky": 17413,
- "booked": 17414,
- "nests": 17415,
- "mortimer": 17416,
- "##isi": 17417,
- "obsession": 17418,
- "sept": 17419,
- "##gler": 17420,
- "##sum": 17421,
- "440": 17422,
- "scrutiny": 17423,
- "simultaneous": 17424,
- "squinted": 17425,
- "##shin": 17426,
- "collects": 17427,
- "oven": 17428,
- "shankar": 17429,
- "penned": 17430,
- "remarkably": 17431,
- "##я": 17432,
- "slips": 17433,
- "luggage": 17434,
- "spectral": 17435,
- "1786": 17436,
- "collaborations": 17437,
- "louie": 17438,
- "consolidation": 17439,
- "##ailed": 17440,
- "##ivating": 17441,
- "420": 17442,
- "hoover": 17443,
- "blackpool": 17444,
- "harness": 17445,
- "ignition": 17446,
- "vest": 17447,
- "tails": 17448,
- "belmont": 17449,
- "mongol": 17450,
- "skinner": 17451,
- "##nae": 17452,
- "visually": 17453,
- "mage": 17454,
- "derry": 17455,
- "##tism": 17456,
- "##unce": 17457,
- "stevie": 17458,
- "transitional": 17459,
- "##rdy": 17460,
- "redskins": 17461,
- "drying": 17462,
- "prep": 17463,
- "prospective": 17464,
- "##21": 17465,
- "annoyance": 17466,
- "oversee": 17467,
- "##loaded": 17468,
- "fills": 17469,
- "##books": 17470,
- "##iki": 17471,
- "announces": 17472,
- "fda": 17473,
- "scowled": 17474,
- "respects": 17475,
- "prasad": 17476,
- "mystic": 17477,
- "tucson": 17478,
- "##vale": 17479,
- "revue": 17480,
- "springer": 17481,
- "bankrupt": 17482,
- "1772": 17483,
- "aristotle": 17484,
- "salvatore": 17485,
- "habsburg": 17486,
- "##geny": 17487,
- "dal": 17488,
- "natal": 17489,
- "nut": 17490,
- "pod": 17491,
- "chewing": 17492,
- "darts": 17493,
- "moroccan": 17494,
- "walkover": 17495,
- "rosario": 17496,
- "lenin": 17497,
- "punjabi": 17498,
- "##ße": 17499,
- "grossed": 17500,
- "scattering": 17501,
- "wired": 17502,
- "invasive": 17503,
- "hui": 17504,
- "polynomial": 17505,
- "corridors": 17506,
- "wakes": 17507,
- "gina": 17508,
- "portrays": 17509,
- "##cratic": 17510,
- "arid": 17511,
- "retreating": 17512,
- "erich": 17513,
- "irwin": 17514,
- "sniper": 17515,
- "##dha": 17516,
- "linen": 17517,
- "lindsey": 17518,
- "maneuver": 17519,
- "butch": 17520,
- "shutting": 17521,
- "socio": 17522,
- "bounce": 17523,
- "commemorative": 17524,
- "postseason": 17525,
- "jeremiah": 17526,
- "pines": 17527,
- "275": 17528,
- "mystical": 17529,
- "beads": 17530,
- "bp": 17531,
- "abbas": 17532,
- "furnace": 17533,
- "bidding": 17534,
- "consulted": 17535,
- "assaulted": 17536,
- "empirical": 17537,
- "rubble": 17538,
- "enclosure": 17539,
- "sob": 17540,
- "weakly": 17541,
- "cancel": 17542,
- "polly": 17543,
- "yielded": 17544,
- "##emann": 17545,
- "curly": 17546,
- "prediction": 17547,
- "battered": 17548,
- "70s": 17549,
- "vhs": 17550,
- "jacqueline": 17551,
- "render": 17552,
- "sails": 17553,
- "barked": 17554,
- "detailing": 17555,
- "grayson": 17556,
- "riga": 17557,
- "sloane": 17558,
- "raging": 17559,
- "##yah": 17560,
- "herbs": 17561,
- "bravo": 17562,
- "##athlon": 17563,
- "alloy": 17564,
- "giggle": 17565,
- "imminent": 17566,
- "suffers": 17567,
- "assumptions": 17568,
- "waltz": 17569,
- "##itate": 17570,
- "accomplishments": 17571,
- "##ited": 17572,
- "bathing": 17573,
- "remixed": 17574,
- "deception": 17575,
- "prefix": 17576,
- "##emia": 17577,
- "deepest": 17578,
- "##tier": 17579,
- "##eis": 17580,
- "balkan": 17581,
- "frogs": 17582,
- "##rong": 17583,
- "slab": 17584,
- "##pate": 17585,
- "philosophers": 17586,
- "peterborough": 17587,
- "grains": 17588,
- "imports": 17589,
- "dickinson": 17590,
- "rwanda": 17591,
- "##atics": 17592,
- "1774": 17593,
- "dirk": 17594,
- "lan": 17595,
- "tablets": 17596,
- "##rove": 17597,
- "clone": 17598,
- "##rice": 17599,
- "caretaker": 17600,
- "hostilities": 17601,
- "mclean": 17602,
- "##gre": 17603,
- "regimental": 17604,
- "treasures": 17605,
- "norms": 17606,
- "impose": 17607,
- "tsar": 17608,
- "tango": 17609,
- "diplomacy": 17610,
- "variously": 17611,
- "complain": 17612,
- "192": 17613,
- "recognise": 17614,
- "arrests": 17615,
- "1779": 17616,
- "celestial": 17617,
- "pulitzer": 17618,
- "##dus": 17619,
- "bing": 17620,
- "libretto": 17621,
- "##moor": 17622,
- "adele": 17623,
- "splash": 17624,
- "##rite": 17625,
- "expectation": 17626,
- "lds": 17627,
- "confronts": 17628,
- "##izer": 17629,
- "spontaneous": 17630,
- "harmful": 17631,
- "wedge": 17632,
- "entrepreneurs": 17633,
- "buyer": 17634,
- "##ope": 17635,
- "bilingual": 17636,
- "translate": 17637,
- "rugged": 17638,
- "conner": 17639,
- "circulated": 17640,
- "uae": 17641,
- "eaton": 17642,
- "##gra": 17643,
- "##zzle": 17644,
- "lingered": 17645,
- "lockheed": 17646,
- "vishnu": 17647,
- "reelection": 17648,
- "alonso": 17649,
- "##oom": 17650,
- "joints": 17651,
- "yankee": 17652,
- "headline": 17653,
- "cooperate": 17654,
- "heinz": 17655,
- "laureate": 17656,
- "invading": 17657,
- "##sford": 17658,
- "echoes": 17659,
- "scandinavian": 17660,
- "##dham": 17661,
- "hugging": 17662,
- "vitamin": 17663,
- "salute": 17664,
- "micah": 17665,
- "hind": 17666,
- "trader": 17667,
- "##sper": 17668,
- "radioactive": 17669,
- "##ndra": 17670,
- "militants": 17671,
- "poisoned": 17672,
- "ratified": 17673,
- "remark": 17674,
- "campeonato": 17675,
- "deprived": 17676,
- "wander": 17677,
- "prop": 17678,
- "##dong": 17679,
- "outlook": 17680,
- "##tani": 17681,
- "##rix": 17682,
- "##eye": 17683,
- "chiang": 17684,
- "darcy": 17685,
- "##oping": 17686,
- "mandolin": 17687,
- "spice": 17688,
- "statesman": 17689,
- "babylon": 17690,
- "182": 17691,
- "walled": 17692,
- "forgetting": 17693,
- "afro": 17694,
- "##cap": 17695,
- "158": 17696,
- "giorgio": 17697,
- "buffer": 17698,
- "##polis": 17699,
- "planetary": 17700,
- "##gis": 17701,
- "overlap": 17702,
- "terminals": 17703,
- "kinda": 17704,
- "centenary": 17705,
- "##bir": 17706,
- "arising": 17707,
- "manipulate": 17708,
- "elm": 17709,
- "ke": 17710,
- "1770": 17711,
- "ak": 17712,
- "##tad": 17713,
- "chrysler": 17714,
- "mapped": 17715,
- "moose": 17716,
- "pomeranian": 17717,
- "quad": 17718,
- "macarthur": 17719,
- "assemblies": 17720,
- "shoreline": 17721,
- "recalls": 17722,
- "stratford": 17723,
- "##rted": 17724,
- "noticeable": 17725,
- "##evic": 17726,
- "imp": 17727,
- "##rita": 17728,
- "##sque": 17729,
- "accustomed": 17730,
- "supplying": 17731,
- "tents": 17732,
- "disgusted": 17733,
- "vogue": 17734,
- "sipped": 17735,
- "filters": 17736,
- "khz": 17737,
- "reno": 17738,
- "selecting": 17739,
- "luftwaffe": 17740,
- "mcmahon": 17741,
- "tyne": 17742,
- "masterpiece": 17743,
- "carriages": 17744,
- "collided": 17745,
- "dunes": 17746,
- "exercised": 17747,
- "flare": 17748,
- "remembers": 17749,
- "muzzle": 17750,
- "##mobile": 17751,
- "heck": 17752,
- "##rson": 17753,
- "burgess": 17754,
- "lunged": 17755,
- "middleton": 17756,
- "boycott": 17757,
- "bilateral": 17758,
- "##sity": 17759,
- "hazardous": 17760,
- "lumpur": 17761,
- "multiplayer": 17762,
- "spotlight": 17763,
- "jackets": 17764,
- "goldman": 17765,
- "liege": 17766,
- "porcelain": 17767,
- "rag": 17768,
- "waterford": 17769,
- "benz": 17770,
- "attracts": 17771,
- "hopeful": 17772,
- "battling": 17773,
- "ottomans": 17774,
- "kensington": 17775,
- "baked": 17776,
- "hymns": 17777,
- "cheyenne": 17778,
- "lattice": 17779,
- "levine": 17780,
- "borrow": 17781,
- "polymer": 17782,
- "clashes": 17783,
- "michaels": 17784,
- "monitored": 17785,
- "commitments": 17786,
- "denounced": 17787,
- "##25": 17788,
- "##von": 17789,
- "cavity": 17790,
- "##oney": 17791,
- "hobby": 17792,
- "akin": 17793,
- "##holders": 17794,
- "futures": 17795,
- "intricate": 17796,
- "cornish": 17797,
- "patty": 17798,
- "##oned": 17799,
- "illegally": 17800,
- "dolphin": 17801,
- "##lag": 17802,
- "barlow": 17803,
- "yellowish": 17804,
- "maddie": 17805,
- "apologized": 17806,
- "luton": 17807,
- "plagued": 17808,
- "##puram": 17809,
- "nana": 17810,
- "##rds": 17811,
- "sway": 17812,
- "fanny": 17813,
- "łodz": 17814,
- "##rino": 17815,
- "psi": 17816,
- "suspicions": 17817,
- "hanged": 17818,
- "##eding": 17819,
- "initiate": 17820,
- "charlton": 17821,
- "##por": 17822,
- "nak": 17823,
- "competent": 17824,
- "235": 17825,
- "analytical": 17826,
- "annex": 17827,
- "wardrobe": 17828,
- "reservations": 17829,
- "##rma": 17830,
- "sect": 17831,
- "162": 17832,
- "fairfax": 17833,
- "hedge": 17834,
- "piled": 17835,
- "buckingham": 17836,
- "uneven": 17837,
- "bauer": 17838,
- "simplicity": 17839,
- "snyder": 17840,
- "interpret": 17841,
- "accountability": 17842,
- "donors": 17843,
- "moderately": 17844,
- "byrd": 17845,
- "continents": 17846,
- "##cite": 17847,
- "##max": 17848,
- "disciple": 17849,
- "hr": 17850,
- "jamaican": 17851,
- "ping": 17852,
- "nominees": 17853,
- "##uss": 17854,
- "mongolian": 17855,
- "diver": 17856,
- "attackers": 17857,
- "eagerly": 17858,
- "ideological": 17859,
- "pillows": 17860,
- "miracles": 17861,
- "apartheid": 17862,
- "revolver": 17863,
- "sulfur": 17864,
- "clinics": 17865,
- "moran": 17866,
- "163": 17867,
- "##enko": 17868,
- "ile": 17869,
- "katy": 17870,
- "rhetoric": 17871,
- "##icated": 17872,
- "chronology": 17873,
- "recycling": 17874,
- "##hrer": 17875,
- "elongated": 17876,
- "mughal": 17877,
- "pascal": 17878,
- "profiles": 17879,
- "vibration": 17880,
- "databases": 17881,
- "domination": 17882,
- "##fare": 17883,
- "##rant": 17884,
- "matthias": 17885,
- "digest": 17886,
- "rehearsal": 17887,
- "polling": 17888,
- "weiss": 17889,
- "initiation": 17890,
- "reeves": 17891,
- "clinging": 17892,
- "flourished": 17893,
- "impress": 17894,
- "ngo": 17895,
- "##hoff": 17896,
- "##ume": 17897,
- "buckley": 17898,
- "symposium": 17899,
- "rhythms": 17900,
- "weed": 17901,
- "emphasize": 17902,
- "transforming": 17903,
- "##taking": 17904,
- "##gence": 17905,
- "##yman": 17906,
- "accountant": 17907,
- "analyze": 17908,
- "flicker": 17909,
- "foil": 17910,
- "priesthood": 17911,
- "voluntarily": 17912,
- "decreases": 17913,
- "##80": 17914,
- "##hya": 17915,
- "slater": 17916,
- "sv": 17917,
- "charting": 17918,
- "mcgill": 17919,
- "##lde": 17920,
- "moreno": 17921,
- "##iu": 17922,
- "besieged": 17923,
- "zur": 17924,
- "robes": 17925,
- "##phic": 17926,
- "admitting": 17927,
- "api": 17928,
- "deported": 17929,
- "turmoil": 17930,
- "peyton": 17931,
- "earthquakes": 17932,
- "##ares": 17933,
- "nationalists": 17934,
- "beau": 17935,
- "clair": 17936,
- "brethren": 17937,
- "interrupt": 17938,
- "welch": 17939,
- "curated": 17940,
- "galerie": 17941,
- "requesting": 17942,
- "164": 17943,
- "##ested": 17944,
- "impending": 17945,
- "steward": 17946,
- "viper": 17947,
- "##vina": 17948,
- "complaining": 17949,
- "beautifully": 17950,
- "brandy": 17951,
- "foam": 17952,
- "nl": 17953,
- "1660": 17954,
- "##cake": 17955,
- "alessandro": 17956,
- "punches": 17957,
- "laced": 17958,
- "explanations": 17959,
- "##lim": 17960,
- "attribute": 17961,
- "clit": 17962,
- "reggie": 17963,
- "discomfort": 17964,
- "##cards": 17965,
- "smoothed": 17966,
- "whales": 17967,
- "##cene": 17968,
- "adler": 17969,
- "countered": 17970,
- "duffy": 17971,
- "disciplinary": 17972,
- "widening": 17973,
- "recipe": 17974,
- "reliance": 17975,
- "conducts": 17976,
- "goats": 17977,
- "gradient": 17978,
- "preaching": 17979,
- "##shaw": 17980,
- "matilda": 17981,
- "quasi": 17982,
- "striped": 17983,
- "meridian": 17984,
- "cannabis": 17985,
- "cordoba": 17986,
- "certificates": 17987,
- "##agh": 17988,
- "##tering": 17989,
- "graffiti": 17990,
- "hangs": 17991,
- "pilgrims": 17992,
- "repeats": 17993,
- "##ych": 17994,
- "revive": 17995,
- "urine": 17996,
- "etat": 17997,
- "##hawk": 17998,
- "fueled": 17999,
- "belts": 18000,
- "fuzzy": 18001,
- "susceptible": 18002,
- "##hang": 18003,
- "mauritius": 18004,
- "salle": 18005,
- "sincere": 18006,
- "beers": 18007,
- "hooks": 18008,
- "##cki": 18009,
- "arbitration": 18010,
- "entrusted": 18011,
- "advise": 18012,
- "sniffed": 18013,
- "seminar": 18014,
- "junk": 18015,
- "donnell": 18016,
- "processors": 18017,
- "principality": 18018,
- "strapped": 18019,
- "celia": 18020,
- "mendoza": 18021,
- "everton": 18022,
- "fortunes": 18023,
- "prejudice": 18024,
- "starving": 18025,
- "reassigned": 18026,
- "steamer": 18027,
- "##lund": 18028,
- "tuck": 18029,
- "evenly": 18030,
- "foreman": 18031,
- "##ffen": 18032,
- "dans": 18033,
- "375": 18034,
- "envisioned": 18035,
- "slit": 18036,
- "##xy": 18037,
- "baseman": 18038,
- "liberia": 18039,
- "rosemary": 18040,
- "##weed": 18041,
- "electrified": 18042,
- "periodically": 18043,
- "potassium": 18044,
- "stride": 18045,
- "contexts": 18046,
- "sperm": 18047,
- "slade": 18048,
- "mariners": 18049,
- "influx": 18050,
- "bianca": 18051,
- "subcommittee": 18052,
- "##rane": 18053,
- "spilling": 18054,
- "icao": 18055,
- "estuary": 18056,
- "##nock": 18057,
- "delivers": 18058,
- "iphone": 18059,
- "##ulata": 18060,
- "isa": 18061,
- "mira": 18062,
- "bohemian": 18063,
- "dessert": 18064,
- "##sbury": 18065,
- "welcoming": 18066,
- "proudly": 18067,
- "slowing": 18068,
- "##chs": 18069,
- "musee": 18070,
- "ascension": 18071,
- "russ": 18072,
- "##vian": 18073,
- "waits": 18074,
- "##psy": 18075,
- "africans": 18076,
- "exploit": 18077,
- "##morphic": 18078,
- "gov": 18079,
- "eccentric": 18080,
- "crab": 18081,
- "peck": 18082,
- "##ull": 18083,
- "entrances": 18084,
- "formidable": 18085,
- "marketplace": 18086,
- "groom": 18087,
- "bolted": 18088,
- "metabolism": 18089,
- "patton": 18090,
- "robbins": 18091,
- "courier": 18092,
- "payload": 18093,
- "endure": 18094,
- "##ifier": 18095,
- "andes": 18096,
- "refrigerator": 18097,
- "##pr": 18098,
- "ornate": 18099,
- "##uca": 18100,
- "ruthless": 18101,
- "illegitimate": 18102,
- "masonry": 18103,
- "strasbourg": 18104,
- "bikes": 18105,
- "adobe": 18106,
- "##³": 18107,
- "apples": 18108,
- "quintet": 18109,
- "willingly": 18110,
- "niche": 18111,
- "bakery": 18112,
- "corpses": 18113,
- "energetic": 18114,
- "##cliffe": 18115,
- "##sser": 18116,
- "##ards": 18117,
- "177": 18118,
- "centimeters": 18119,
- "centro": 18120,
- "fuscous": 18121,
- "cretaceous": 18122,
- "rancho": 18123,
- "##yde": 18124,
- "andrei": 18125,
- "telecom": 18126,
- "tottenham": 18127,
- "oasis": 18128,
- "ordination": 18129,
- "vulnerability": 18130,
- "presiding": 18131,
- "corey": 18132,
- "cp": 18133,
- "penguins": 18134,
- "sims": 18135,
- "##pis": 18136,
- "malawi": 18137,
- "piss": 18138,
- "##48": 18139,
- "correction": 18140,
- "##cked": 18141,
- "##ffle": 18142,
- "##ryn": 18143,
- "countdown": 18144,
- "detectives": 18145,
- "psychiatrist": 18146,
- "psychedelic": 18147,
- "dinosaurs": 18148,
- "blouse": 18149,
- "##get": 18150,
- "choi": 18151,
- "vowed": 18152,
- "##oz": 18153,
- "randomly": 18154,
- "##pol": 18155,
- "49ers": 18156,
- "scrub": 18157,
- "blanche": 18158,
- "bruins": 18159,
- "dusseldorf": 18160,
- "##using": 18161,
- "unwanted": 18162,
- "##ums": 18163,
- "212": 18164,
- "dominique": 18165,
- "elevations": 18166,
- "headlights": 18167,
- "om": 18168,
- "laguna": 18169,
- "##oga": 18170,
- "1750": 18171,
- "famously": 18172,
- "ignorance": 18173,
- "shrewsbury": 18174,
- "##aine": 18175,
- "ajax": 18176,
- "breuning": 18177,
- "che": 18178,
- "confederacy": 18179,
- "greco": 18180,
- "overhaul": 18181,
- "##screen": 18182,
- "paz": 18183,
- "skirts": 18184,
- "disagreement": 18185,
- "cruelty": 18186,
- "jagged": 18187,
- "phoebe": 18188,
- "shifter": 18189,
- "hovered": 18190,
- "viruses": 18191,
- "##wes": 18192,
- "mandy": 18193,
- "##lined": 18194,
- "##gc": 18195,
- "landlord": 18196,
- "squirrel": 18197,
- "dashed": 18198,
- "##ι": 18199,
- "ornamental": 18200,
- "gag": 18201,
- "wally": 18202,
- "grange": 18203,
- "literal": 18204,
- "spurs": 18205,
- "undisclosed": 18206,
- "proceeding": 18207,
- "yin": 18208,
- "##text": 18209,
- "billie": 18210,
- "orphan": 18211,
- "spanned": 18212,
- "humidity": 18213,
- "indy": 18214,
- "weighted": 18215,
- "presentations": 18216,
- "explosions": 18217,
- "lucian": 18218,
- "##tary": 18219,
- "vaughn": 18220,
- "hindus": 18221,
- "##anga": 18222,
- "##hell": 18223,
- "psycho": 18224,
- "171": 18225,
- "daytona": 18226,
- "protects": 18227,
- "efficiently": 18228,
- "rematch": 18229,
- "sly": 18230,
- "tandem": 18231,
- "##oya": 18232,
- "rebranded": 18233,
- "impaired": 18234,
- "hee": 18235,
- "metropolis": 18236,
- "peach": 18237,
- "godfrey": 18238,
- "diaspora": 18239,
- "ethnicity": 18240,
- "prosperous": 18241,
- "gleaming": 18242,
- "dar": 18243,
- "grossing": 18244,
- "playback": 18245,
- "##rden": 18246,
- "stripe": 18247,
- "pistols": 18248,
- "##tain": 18249,
- "births": 18250,
- "labelled": 18251,
- "##cating": 18252,
- "172": 18253,
- "rudy": 18254,
- "alba": 18255,
- "##onne": 18256,
- "aquarium": 18257,
- "hostility": 18258,
- "##gb": 18259,
- "##tase": 18260,
- "shudder": 18261,
- "sumatra": 18262,
- "hardest": 18263,
- "lakers": 18264,
- "consonant": 18265,
- "creeping": 18266,
- "demos": 18267,
- "homicide": 18268,
- "capsule": 18269,
- "zeke": 18270,
- "liberties": 18271,
- "expulsion": 18272,
- "pueblo": 18273,
- "##comb": 18274,
- "trait": 18275,
- "transporting": 18276,
- "##ddin": 18277,
- "##neck": 18278,
- "##yna": 18279,
- "depart": 18280,
- "gregg": 18281,
- "mold": 18282,
- "ledge": 18283,
- "hangar": 18284,
- "oldham": 18285,
- "playboy": 18286,
- "termination": 18287,
- "analysts": 18288,
- "gmbh": 18289,
- "romero": 18290,
- "##itic": 18291,
- "insist": 18292,
- "cradle": 18293,
- "filthy": 18294,
- "brightness": 18295,
- "slash": 18296,
- "shootout": 18297,
- "deposed": 18298,
- "bordering": 18299,
- "##truct": 18300,
- "isis": 18301,
- "microwave": 18302,
- "tumbled": 18303,
- "sheltered": 18304,
- "cathy": 18305,
- "werewolves": 18306,
- "messy": 18307,
- "andersen": 18308,
- "convex": 18309,
- "clapped": 18310,
- "clinched": 18311,
- "satire": 18312,
- "wasting": 18313,
- "edo": 18314,
- "vc": 18315,
- "rufus": 18316,
- "##jak": 18317,
- "mont": 18318,
- "##etti": 18319,
- "poznan": 18320,
- "##keeping": 18321,
- "restructuring": 18322,
- "transverse": 18323,
- "##rland": 18324,
- "azerbaijani": 18325,
- "slovene": 18326,
- "gestures": 18327,
- "roommate": 18328,
- "choking": 18329,
- "shear": 18330,
- "##quist": 18331,
- "vanguard": 18332,
- "oblivious": 18333,
- "##hiro": 18334,
- "disagreed": 18335,
- "baptism": 18336,
- "##lich": 18337,
- "coliseum": 18338,
- "##aceae": 18339,
- "salvage": 18340,
- "societe": 18341,
- "cory": 18342,
- "locke": 18343,
- "relocation": 18344,
- "relying": 18345,
- "versailles": 18346,
- "ahl": 18347,
- "swelling": 18348,
- "##elo": 18349,
- "cheerful": 18350,
- "##word": 18351,
- "##edes": 18352,
- "gin": 18353,
- "sarajevo": 18354,
- "obstacle": 18355,
- "diverted": 18356,
- "##nac": 18357,
- "messed": 18358,
- "thoroughbred": 18359,
- "fluttered": 18360,
- "utrecht": 18361,
- "chewed": 18362,
- "acquaintance": 18363,
- "assassins": 18364,
- "dispatch": 18365,
- "mirza": 18366,
- "##wart": 18367,
- "nike": 18368,
- "salzburg": 18369,
- "swell": 18370,
- "yen": 18371,
- "##gee": 18372,
- "idle": 18373,
- "ligue": 18374,
- "samson": 18375,
- "##nds": 18376,
- "##igh": 18377,
- "playful": 18378,
- "spawned": 18379,
- "##cise": 18380,
- "tease": 18381,
- "##case": 18382,
- "burgundy": 18383,
- "##bot": 18384,
- "stirring": 18385,
- "skeptical": 18386,
- "interceptions": 18387,
- "marathi": 18388,
- "##dies": 18389,
- "bedrooms": 18390,
- "aroused": 18391,
- "pinch": 18392,
- "##lik": 18393,
- "preferences": 18394,
- "tattoos": 18395,
- "buster": 18396,
- "digitally": 18397,
- "projecting": 18398,
- "rust": 18399,
- "##ital": 18400,
- "kitten": 18401,
- "priorities": 18402,
- "addison": 18403,
- "pseudo": 18404,
- "##guard": 18405,
- "dusk": 18406,
- "icons": 18407,
- "sermon": 18408,
- "##psis": 18409,
- "##iba": 18410,
- "bt": 18411,
- "##lift": 18412,
- "##xt": 18413,
- "ju": 18414,
- "truce": 18415,
- "rink": 18416,
- "##dah": 18417,
- "##wy": 18418,
- "defects": 18419,
- "psychiatry": 18420,
- "offences": 18421,
- "calculate": 18422,
- "glucose": 18423,
- "##iful": 18424,
- "##rized": 18425,
- "##unda": 18426,
- "francaise": 18427,
- "##hari": 18428,
- "richest": 18429,
- "warwickshire": 18430,
- "carly": 18431,
- "1763": 18432,
- "purity": 18433,
- "redemption": 18434,
- "lending": 18435,
- "##cious": 18436,
- "muse": 18437,
- "bruises": 18438,
- "cerebral": 18439,
- "aero": 18440,
- "carving": 18441,
- "##name": 18442,
- "preface": 18443,
- "terminology": 18444,
- "invade": 18445,
- "monty": 18446,
- "##int": 18447,
- "anarchist": 18448,
- "blurred": 18449,
- "##iled": 18450,
- "rossi": 18451,
- "treats": 18452,
- "guts": 18453,
- "shu": 18454,
- "foothills": 18455,
- "ballads": 18456,
- "undertaking": 18457,
- "premise": 18458,
- "cecilia": 18459,
- "affiliates": 18460,
- "blasted": 18461,
- "conditional": 18462,
- "wilder": 18463,
- "minors": 18464,
- "drone": 18465,
- "rudolph": 18466,
- "buffy": 18467,
- "swallowing": 18468,
- "horton": 18469,
- "attested": 18470,
- "##hop": 18471,
- "rutherford": 18472,
- "howell": 18473,
- "primetime": 18474,
- "livery": 18475,
- "penal": 18476,
- "##bis": 18477,
- "minimize": 18478,
- "hydro": 18479,
- "wrecked": 18480,
- "wrought": 18481,
- "palazzo": 18482,
- "##gling": 18483,
- "cans": 18484,
- "vernacular": 18485,
- "friedman": 18486,
- "nobleman": 18487,
- "shale": 18488,
- "walnut": 18489,
- "danielle": 18490,
- "##ection": 18491,
- "##tley": 18492,
- "sears": 18493,
- "##kumar": 18494,
- "chords": 18495,
- "lend": 18496,
- "flipping": 18497,
- "streamed": 18498,
- "por": 18499,
- "dracula": 18500,
- "gallons": 18501,
- "sacrifices": 18502,
- "gamble": 18503,
- "orphanage": 18504,
- "##iman": 18505,
- "mckenzie": 18506,
- "##gible": 18507,
- "boxers": 18508,
- "daly": 18509,
- "##balls": 18510,
- "##ان": 18511,
- "208": 18512,
- "##ific": 18513,
- "##rative": 18514,
- "##iq": 18515,
- "exploited": 18516,
- "slated": 18517,
- "##uity": 18518,
- "circling": 18519,
- "hillary": 18520,
- "pinched": 18521,
- "goldberg": 18522,
- "provost": 18523,
- "campaigning": 18524,
- "lim": 18525,
- "piles": 18526,
- "ironically": 18527,
- "jong": 18528,
- "mohan": 18529,
- "successors": 18530,
- "usaf": 18531,
- "##tem": 18532,
- "##ught": 18533,
- "autobiographical": 18534,
- "haute": 18535,
- "preserves": 18536,
- "##ending": 18537,
- "acquitted": 18538,
- "comparisons": 18539,
- "203": 18540,
- "hydroelectric": 18541,
- "gangs": 18542,
- "cypriot": 18543,
- "torpedoes": 18544,
- "rushes": 18545,
- "chrome": 18546,
- "derive": 18547,
- "bumps": 18548,
- "instability": 18549,
- "fiat": 18550,
- "pets": 18551,
- "##mbe": 18552,
- "silas": 18553,
- "dye": 18554,
- "reckless": 18555,
- "settler": 18556,
- "##itation": 18557,
- "info": 18558,
- "heats": 18559,
- "##writing": 18560,
- "176": 18561,
- "canonical": 18562,
- "maltese": 18563,
- "fins": 18564,
- "mushroom": 18565,
- "stacy": 18566,
- "aspen": 18567,
- "avid": 18568,
- "##kur": 18569,
- "##loading": 18570,
- "vickers": 18571,
- "gaston": 18572,
- "hillside": 18573,
- "statutes": 18574,
- "wilde": 18575,
- "gail": 18576,
- "kung": 18577,
- "sabine": 18578,
- "comfortably": 18579,
- "motorcycles": 18580,
- "##rgo": 18581,
- "169": 18582,
- "pneumonia": 18583,
- "fetch": 18584,
- "##sonic": 18585,
- "axel": 18586,
- "faintly": 18587,
- "parallels": 18588,
- "##oop": 18589,
- "mclaren": 18590,
- "spouse": 18591,
- "compton": 18592,
- "interdisciplinary": 18593,
- "miner": 18594,
- "##eni": 18595,
- "181": 18596,
- "clamped": 18597,
- "##chal": 18598,
- "##llah": 18599,
- "separates": 18600,
- "versa": 18601,
- "##mler": 18602,
- "scarborough": 18603,
- "labrador": 18604,
- "##lity": 18605,
- "##osing": 18606,
- "rutgers": 18607,
- "hurdles": 18608,
- "como": 18609,
- "166": 18610,
- "burt": 18611,
- "divers": 18612,
- "##100": 18613,
- "wichita": 18614,
- "cade": 18615,
- "coincided": 18616,
- "##erson": 18617,
- "bruised": 18618,
- "mla": 18619,
- "##pper": 18620,
- "vineyard": 18621,
- "##ili": 18622,
- "##brush": 18623,
- "notch": 18624,
- "mentioning": 18625,
- "jase": 18626,
- "hearted": 18627,
- "kits": 18628,
- "doe": 18629,
- "##acle": 18630,
- "pomerania": 18631,
- "##ady": 18632,
- "ronan": 18633,
- "seizure": 18634,
- "pavel": 18635,
- "problematic": 18636,
- "##zaki": 18637,
- "domenico": 18638,
- "##ulin": 18639,
- "catering": 18640,
- "penelope": 18641,
- "dependence": 18642,
- "parental": 18643,
- "emilio": 18644,
- "ministerial": 18645,
- "atkinson": 18646,
- "##bolic": 18647,
- "clarkson": 18648,
- "chargers": 18649,
- "colby": 18650,
- "grill": 18651,
- "peeked": 18652,
- "arises": 18653,
- "summon": 18654,
- "##aged": 18655,
- "fools": 18656,
- "##grapher": 18657,
- "faculties": 18658,
- "qaeda": 18659,
- "##vial": 18660,
- "garner": 18661,
- "refurbished": 18662,
- "##hwa": 18663,
- "geelong": 18664,
- "disasters": 18665,
- "nudged": 18666,
- "bs": 18667,
- "shareholder": 18668,
- "lori": 18669,
- "algae": 18670,
- "reinstated": 18671,
- "rot": 18672,
- "##ades": 18673,
- "##nous": 18674,
- "invites": 18675,
- "stainless": 18676,
- "183": 18677,
- "inclusive": 18678,
- "##itude": 18679,
- "diocesan": 18680,
- "til": 18681,
- "##icz": 18682,
- "denomination": 18683,
- "##xa": 18684,
- "benton": 18685,
- "floral": 18686,
- "registers": 18687,
- "##ider": 18688,
- "##erman": 18689,
- "##kell": 18690,
- "absurd": 18691,
- "brunei": 18692,
- "guangzhou": 18693,
- "hitter": 18694,
- "retaliation": 18695,
- "##uled": 18696,
- "##eve": 18697,
- "blanc": 18698,
- "nh": 18699,
- "consistency": 18700,
- "contamination": 18701,
- "##eres": 18702,
- "##rner": 18703,
- "dire": 18704,
- "palermo": 18705,
- "broadcasters": 18706,
- "diaries": 18707,
- "inspire": 18708,
- "vols": 18709,
- "brewer": 18710,
- "tightening": 18711,
- "ky": 18712,
- "mixtape": 18713,
- "hormone": 18714,
- "##tok": 18715,
- "stokes": 18716,
- "##color": 18717,
- "##dly": 18718,
- "##ssi": 18719,
- "pg": 18720,
- "##ometer": 18721,
- "##lington": 18722,
- "sanitation": 18723,
- "##tility": 18724,
- "intercontinental": 18725,
- "apps": 18726,
- "##adt": 18727,
- "¹⁄₂": 18728,
- "cylinders": 18729,
- "economies": 18730,
- "favourable": 18731,
- "unison": 18732,
- "croix": 18733,
- "gertrude": 18734,
- "odyssey": 18735,
- "vanity": 18736,
- "dangling": 18737,
- "##logists": 18738,
- "upgrades": 18739,
- "dice": 18740,
- "middleweight": 18741,
- "practitioner": 18742,
- "##ight": 18743,
- "206": 18744,
- "henrik": 18745,
- "parlor": 18746,
- "orion": 18747,
- "angered": 18748,
- "lac": 18749,
- "python": 18750,
- "blurted": 18751,
- "##rri": 18752,
- "sensual": 18753,
- "intends": 18754,
- "swings": 18755,
- "angled": 18756,
- "##phs": 18757,
- "husky": 18758,
- "attain": 18759,
- "peerage": 18760,
- "precinct": 18761,
- "textiles": 18762,
- "cheltenham": 18763,
- "shuffled": 18764,
- "dai": 18765,
- "confess": 18766,
- "tasting": 18767,
- "bhutan": 18768,
- "##riation": 18769,
- "tyrone": 18770,
- "segregation": 18771,
- "abrupt": 18772,
- "ruiz": 18773,
- "##rish": 18774,
- "smirked": 18775,
- "blackwell": 18776,
- "confidential": 18777,
- "browning": 18778,
- "amounted": 18779,
- "##put": 18780,
- "vase": 18781,
- "scarce": 18782,
- "fabulous": 18783,
- "raided": 18784,
- "staple": 18785,
- "guyana": 18786,
- "unemployed": 18787,
- "glider": 18788,
- "shay": 18789,
- "##tow": 18790,
- "carmine": 18791,
- "troll": 18792,
- "intervene": 18793,
- "squash": 18794,
- "superstar": 18795,
- "##uce": 18796,
- "cylindrical": 18797,
- "len": 18798,
- "roadway": 18799,
- "researched": 18800,
- "handy": 18801,
- "##rium": 18802,
- "##jana": 18803,
- "meta": 18804,
- "lao": 18805,
- "declares": 18806,
- "##rring": 18807,
- "##tadt": 18808,
- "##elin": 18809,
- "##kova": 18810,
- "willem": 18811,
- "shrubs": 18812,
- "napoleonic": 18813,
- "realms": 18814,
- "skater": 18815,
- "qi": 18816,
- "volkswagen": 18817,
- "##ł": 18818,
- "tad": 18819,
- "hara": 18820,
- "archaeologist": 18821,
- "awkwardly": 18822,
- "eerie": 18823,
- "##kind": 18824,
- "wiley": 18825,
- "##heimer": 18826,
- "##24": 18827,
- "titus": 18828,
- "organizers": 18829,
- "cfl": 18830,
- "crusaders": 18831,
- "lama": 18832,
- "usb": 18833,
- "vent": 18834,
- "enraged": 18835,
- "thankful": 18836,
- "occupants": 18837,
- "maximilian": 18838,
- "##gaard": 18839,
- "possessing": 18840,
- "textbooks": 18841,
- "##oran": 18842,
- "collaborator": 18843,
- "quaker": 18844,
- "##ulo": 18845,
- "avalanche": 18846,
- "mono": 18847,
- "silky": 18848,
- "straits": 18849,
- "isaiah": 18850,
- "mustang": 18851,
- "surged": 18852,
- "resolutions": 18853,
- "potomac": 18854,
- "descend": 18855,
- "cl": 18856,
- "kilograms": 18857,
- "plato": 18858,
- "strains": 18859,
- "saturdays": 18860,
- "##olin": 18861,
- "bernstein": 18862,
- "##ype": 18863,
- "holstein": 18864,
- "ponytail": 18865,
- "##watch": 18866,
- "belize": 18867,
- "conversely": 18868,
- "heroine": 18869,
- "perpetual": 18870,
- "##ylus": 18871,
- "charcoal": 18872,
- "piedmont": 18873,
- "glee": 18874,
- "negotiating": 18875,
- "backdrop": 18876,
- "prologue": 18877,
- "##jah": 18878,
- "##mmy": 18879,
- "pasadena": 18880,
- "climbs": 18881,
- "ramos": 18882,
- "sunni": 18883,
- "##holm": 18884,
- "##tner": 18885,
- "##tri": 18886,
- "anand": 18887,
- "deficiency": 18888,
- "hertfordshire": 18889,
- "stout": 18890,
- "##avi": 18891,
- "aperture": 18892,
- "orioles": 18893,
- "##irs": 18894,
- "doncaster": 18895,
- "intrigued": 18896,
- "bombed": 18897,
- "coating": 18898,
- "otis": 18899,
- "##mat": 18900,
- "cocktail": 18901,
- "##jit": 18902,
- "##eto": 18903,
- "amir": 18904,
- "arousal": 18905,
- "sar": 18906,
- "##proof": 18907,
- "##act": 18908,
- "##ories": 18909,
- "dixie": 18910,
- "pots": 18911,
- "##bow": 18912,
- "whereabouts": 18913,
- "159": 18914,
- "##fted": 18915,
- "drains": 18916,
- "bullying": 18917,
- "cottages": 18918,
- "scripture": 18919,
- "coherent": 18920,
- "fore": 18921,
- "poe": 18922,
- "appetite": 18923,
- "##uration": 18924,
- "sampled": 18925,
- "##ators": 18926,
- "##dp": 18927,
- "derrick": 18928,
- "rotor": 18929,
- "jays": 18930,
- "peacock": 18931,
- "installment": 18932,
- "##rro": 18933,
- "advisors": 18934,
- "##coming": 18935,
- "rodeo": 18936,
- "scotch": 18937,
- "##mot": 18938,
- "##db": 18939,
- "##fen": 18940,
- "##vant": 18941,
- "ensued": 18942,
- "rodrigo": 18943,
- "dictatorship": 18944,
- "martyrs": 18945,
- "twenties": 18946,
- "##н": 18947,
- "towed": 18948,
- "incidence": 18949,
- "marta": 18950,
- "rainforest": 18951,
- "sai": 18952,
- "scaled": 18953,
- "##cles": 18954,
- "oceanic": 18955,
- "qualifiers": 18956,
- "symphonic": 18957,
- "mcbride": 18958,
- "dislike": 18959,
- "generalized": 18960,
- "aubrey": 18961,
- "colonization": 18962,
- "##iation": 18963,
- "##lion": 18964,
- "##ssing": 18965,
- "disliked": 18966,
- "lublin": 18967,
- "salesman": 18968,
- "##ulates": 18969,
- "spherical": 18970,
- "whatsoever": 18971,
- "sweating": 18972,
- "avalon": 18973,
- "contention": 18974,
- "punt": 18975,
- "severity": 18976,
- "alderman": 18977,
- "atari": 18978,
- "##dina": 18979,
- "##grant": 18980,
- "##rop": 18981,
- "scarf": 18982,
- "seville": 18983,
- "vertices": 18984,
- "annexation": 18985,
- "fairfield": 18986,
- "fascination": 18987,
- "inspiring": 18988,
- "launches": 18989,
- "palatinate": 18990,
- "regretted": 18991,
- "##rca": 18992,
- "feral": 18993,
- "##iom": 18994,
- "elk": 18995,
- "nap": 18996,
- "olsen": 18997,
- "reddy": 18998,
- "yong": 18999,
- "##leader": 19000,
- "##iae": 19001,
- "garment": 19002,
- "transports": 19003,
- "feng": 19004,
- "gracie": 19005,
- "outrage": 19006,
- "viceroy": 19007,
- "insides": 19008,
- "##esis": 19009,
- "breakup": 19010,
- "grady": 19011,
- "organizer": 19012,
- "softer": 19013,
- "grimaced": 19014,
- "222": 19015,
- "murals": 19016,
- "galicia": 19017,
- "arranging": 19018,
- "vectors": 19019,
- "##rsten": 19020,
- "bas": 19021,
- "##sb": 19022,
- "##cens": 19023,
- "sloan": 19024,
- "##eka": 19025,
- "bitten": 19026,
- "ara": 19027,
- "fender": 19028,
- "nausea": 19029,
- "bumped": 19030,
- "kris": 19031,
- "banquet": 19032,
- "comrades": 19033,
- "detector": 19034,
- "persisted": 19035,
- "##llan": 19036,
- "adjustment": 19037,
- "endowed": 19038,
- "cinemas": 19039,
- "##shot": 19040,
- "sellers": 19041,
- "##uman": 19042,
- "peek": 19043,
- "epa": 19044,
- "kindly": 19045,
- "neglect": 19046,
- "simpsons": 19047,
- "talon": 19048,
- "mausoleum": 19049,
- "runaway": 19050,
- "hangul": 19051,
- "lookout": 19052,
- "##cic": 19053,
- "rewards": 19054,
- "coughed": 19055,
- "acquainted": 19056,
- "chloride": 19057,
- "##ald": 19058,
- "quicker": 19059,
- "accordion": 19060,
- "neolithic": 19061,
- "##qa": 19062,
- "artemis": 19063,
- "coefficient": 19064,
- "lenny": 19065,
- "pandora": 19066,
- "tx": 19067,
- "##xed": 19068,
- "ecstasy": 19069,
- "litter": 19070,
- "segunda": 19071,
- "chairperson": 19072,
- "gemma": 19073,
- "hiss": 19074,
- "rumor": 19075,
- "vow": 19076,
- "nasal": 19077,
- "antioch": 19078,
- "compensate": 19079,
- "patiently": 19080,
- "transformers": 19081,
- "##eded": 19082,
- "judo": 19083,
- "morrow": 19084,
- "penis": 19085,
- "posthumous": 19086,
- "philips": 19087,
- "bandits": 19088,
- "husbands": 19089,
- "denote": 19090,
- "flaming": 19091,
- "##any": 19092,
- "##phones": 19093,
- "langley": 19094,
- "yorker": 19095,
- "1760": 19096,
- "walters": 19097,
- "##uo": 19098,
- "##kle": 19099,
- "gubernatorial": 19100,
- "fatty": 19101,
- "samsung": 19102,
- "leroy": 19103,
- "outlaw": 19104,
- "##nine": 19105,
- "unpublished": 19106,
- "poole": 19107,
- "jakob": 19108,
- "##ᵢ": 19109,
- "##ₙ": 19110,
- "crete": 19111,
- "distorted": 19112,
- "superiority": 19113,
- "##dhi": 19114,
- "intercept": 19115,
- "crust": 19116,
- "mig": 19117,
- "claus": 19118,
- "crashes": 19119,
- "positioning": 19120,
- "188": 19121,
- "stallion": 19122,
- "301": 19123,
- "frontal": 19124,
- "armistice": 19125,
- "##estinal": 19126,
- "elton": 19127,
- "aj": 19128,
- "encompassing": 19129,
- "camel": 19130,
- "commemorated": 19131,
- "malaria": 19132,
- "woodward": 19133,
- "calf": 19134,
- "cigar": 19135,
- "penetrate": 19136,
- "##oso": 19137,
- "willard": 19138,
- "##rno": 19139,
- "##uche": 19140,
- "illustrate": 19141,
- "amusing": 19142,
- "convergence": 19143,
- "noteworthy": 19144,
- "##lma": 19145,
- "##rva": 19146,
- "journeys": 19147,
- "realise": 19148,
- "manfred": 19149,
- "##sable": 19150,
- "410": 19151,
- "##vocation": 19152,
- "hearings": 19153,
- "fiance": 19154,
- "##posed": 19155,
- "educators": 19156,
- "provoked": 19157,
- "adjusting": 19158,
- "##cturing": 19159,
- "modular": 19160,
- "stockton": 19161,
- "paterson": 19162,
- "vlad": 19163,
- "rejects": 19164,
- "electors": 19165,
- "selena": 19166,
- "maureen": 19167,
- "##tres": 19168,
- "uber": 19169,
- "##rce": 19170,
- "swirled": 19171,
- "##num": 19172,
- "proportions": 19173,
- "nanny": 19174,
- "pawn": 19175,
- "naturalist": 19176,
- "parma": 19177,
- "apostles": 19178,
- "awoke": 19179,
- "ethel": 19180,
- "wen": 19181,
- "##bey": 19182,
- "monsoon": 19183,
- "overview": 19184,
- "##inating": 19185,
- "mccain": 19186,
- "rendition": 19187,
- "risky": 19188,
- "adorned": 19189,
- "##ih": 19190,
- "equestrian": 19191,
- "germain": 19192,
- "nj": 19193,
- "conspicuous": 19194,
- "confirming": 19195,
- "##yoshi": 19196,
- "shivering": 19197,
- "##imeter": 19198,
- "milestone": 19199,
- "rumours": 19200,
- "flinched": 19201,
- "bounds": 19202,
- "smacked": 19203,
- "token": 19204,
- "##bei": 19205,
- "lectured": 19206,
- "automobiles": 19207,
- "##shore": 19208,
- "impacted": 19209,
- "##iable": 19210,
- "nouns": 19211,
- "nero": 19212,
- "##leaf": 19213,
- "ismail": 19214,
- "prostitute": 19215,
- "trams": 19216,
- "##lace": 19217,
- "bridget": 19218,
- "sud": 19219,
- "stimulus": 19220,
- "impressions": 19221,
- "reins": 19222,
- "revolves": 19223,
- "##oud": 19224,
- "##gned": 19225,
- "giro": 19226,
- "honeymoon": 19227,
- "##swell": 19228,
- "criterion": 19229,
- "##sms": 19230,
- "##uil": 19231,
- "libyan": 19232,
- "prefers": 19233,
- "##osition": 19234,
- "211": 19235,
- "preview": 19236,
- "sucks": 19237,
- "accusation": 19238,
- "bursts": 19239,
- "metaphor": 19240,
- "diffusion": 19241,
- "tolerate": 19242,
- "faye": 19243,
- "betting": 19244,
- "cinematographer": 19245,
- "liturgical": 19246,
- "specials": 19247,
- "bitterly": 19248,
- "humboldt": 19249,
- "##ckle": 19250,
- "flux": 19251,
- "rattled": 19252,
- "##itzer": 19253,
- "archaeologists": 19254,
- "odor": 19255,
- "authorised": 19256,
- "marshes": 19257,
- "discretion": 19258,
- "##ов": 19259,
- "alarmed": 19260,
- "archaic": 19261,
- "inverse": 19262,
- "##leton": 19263,
- "explorers": 19264,
- "##pine": 19265,
- "drummond": 19266,
- "tsunami": 19267,
- "woodlands": 19268,
- "##minate": 19269,
- "##tland": 19270,
- "booklet": 19271,
- "insanity": 19272,
- "owning": 19273,
- "insert": 19274,
- "crafted": 19275,
- "calculus": 19276,
- "##tore": 19277,
- "receivers": 19278,
- "##bt": 19279,
- "stung": 19280,
- "##eca": 19281,
- "##nched": 19282,
- "prevailing": 19283,
- "travellers": 19284,
- "eyeing": 19285,
- "lila": 19286,
- "graphs": 19287,
- "##borne": 19288,
- "178": 19289,
- "julien": 19290,
- "##won": 19291,
- "morale": 19292,
- "adaptive": 19293,
- "therapist": 19294,
- "erica": 19295,
- "cw": 19296,
- "libertarian": 19297,
- "bowman": 19298,
- "pitches": 19299,
- "vita": 19300,
- "##ional": 19301,
- "crook": 19302,
- "##ads": 19303,
- "##entation": 19304,
- "caledonia": 19305,
- "mutiny": 19306,
- "##sible": 19307,
- "1840s": 19308,
- "automation": 19309,
- "##ß": 19310,
- "flock": 19311,
- "##pia": 19312,
- "ironic": 19313,
- "pathology": 19314,
- "##imus": 19315,
- "remarried": 19316,
- "##22": 19317,
- "joker": 19318,
- "withstand": 19319,
- "energies": 19320,
- "##att": 19321,
- "shropshire": 19322,
- "hostages": 19323,
- "madeleine": 19324,
- "tentatively": 19325,
- "conflicting": 19326,
- "mateo": 19327,
- "recipes": 19328,
- "euros": 19329,
- "ol": 19330,
- "mercenaries": 19331,
- "nico": 19332,
- "##ndon": 19333,
- "albuquerque": 19334,
- "augmented": 19335,
- "mythical": 19336,
- "bel": 19337,
- "freud": 19338,
- "##child": 19339,
- "cough": 19340,
- "##lica": 19341,
- "365": 19342,
- "freddy": 19343,
- "lillian": 19344,
- "genetically": 19345,
- "nuremberg": 19346,
- "calder": 19347,
- "209": 19348,
- "bonn": 19349,
- "outdoors": 19350,
- "paste": 19351,
- "suns": 19352,
- "urgency": 19353,
- "vin": 19354,
- "restraint": 19355,
- "tyson": 19356,
- "##cera": 19357,
- "##selle": 19358,
- "barrage": 19359,
- "bethlehem": 19360,
- "kahn": 19361,
- "##par": 19362,
- "mounts": 19363,
- "nippon": 19364,
- "barony": 19365,
- "happier": 19366,
- "ryu": 19367,
- "makeshift": 19368,
- "sheldon": 19369,
- "blushed": 19370,
- "castillo": 19371,
- "barking": 19372,
- "listener": 19373,
- "taped": 19374,
- "bethel": 19375,
- "fluent": 19376,
- "headlines": 19377,
- "pornography": 19378,
- "rum": 19379,
- "disclosure": 19380,
- "sighing": 19381,
- "mace": 19382,
- "doubling": 19383,
- "gunther": 19384,
- "manly": 19385,
- "##plex": 19386,
- "rt": 19387,
- "interventions": 19388,
- "physiological": 19389,
- "forwards": 19390,
- "emerges": 19391,
- "##tooth": 19392,
- "##gny": 19393,
- "compliment": 19394,
- "rib": 19395,
- "recession": 19396,
- "visibly": 19397,
- "barge": 19398,
- "faults": 19399,
- "connector": 19400,
- "exquisite": 19401,
- "prefect": 19402,
- "##rlin": 19403,
- "patio": 19404,
- "##cured": 19405,
- "elevators": 19406,
- "brandt": 19407,
- "italics": 19408,
- "pena": 19409,
- "173": 19410,
- "wasp": 19411,
- "satin": 19412,
- "ea": 19413,
- "botswana": 19414,
- "graceful": 19415,
- "respectable": 19416,
- "##jima": 19417,
- "##rter": 19418,
- "##oic": 19419,
- "franciscan": 19420,
- "generates": 19421,
- "##dl": 19422,
- "alfredo": 19423,
- "disgusting": 19424,
- "##olate": 19425,
- "##iously": 19426,
- "sherwood": 19427,
- "warns": 19428,
- "cod": 19429,
- "promo": 19430,
- "cheryl": 19431,
- "sino": 19432,
- "##ة": 19433,
- "##escu": 19434,
- "twitch": 19435,
- "##zhi": 19436,
- "brownish": 19437,
- "thom": 19438,
- "ortiz": 19439,
- "##dron": 19440,
- "densely": 19441,
- "##beat": 19442,
- "carmel": 19443,
- "reinforce": 19444,
- "##bana": 19445,
- "187": 19446,
- "anastasia": 19447,
- "downhill": 19448,
- "vertex": 19449,
- "contaminated": 19450,
- "remembrance": 19451,
- "harmonic": 19452,
- "homework": 19453,
- "##sol": 19454,
- "fiancee": 19455,
- "gears": 19456,
- "olds": 19457,
- "angelica": 19458,
- "loft": 19459,
- "ramsay": 19460,
- "quiz": 19461,
- "colliery": 19462,
- "sevens": 19463,
- "##cape": 19464,
- "autism": 19465,
- "##hil": 19466,
- "walkway": 19467,
- "##boats": 19468,
- "ruben": 19469,
- "abnormal": 19470,
- "ounce": 19471,
- "khmer": 19472,
- "##bbe": 19473,
- "zachary": 19474,
- "bedside": 19475,
- "morphology": 19476,
- "punching": 19477,
- "##olar": 19478,
- "sparrow": 19479,
- "convinces": 19480,
- "##35": 19481,
- "hewitt": 19482,
- "queer": 19483,
- "remastered": 19484,
- "rods": 19485,
- "mabel": 19486,
- "solemn": 19487,
- "notified": 19488,
- "lyricist": 19489,
- "symmetric": 19490,
- "##xide": 19491,
- "174": 19492,
- "encore": 19493,
- "passports": 19494,
- "wildcats": 19495,
- "##uni": 19496,
- "baja": 19497,
- "##pac": 19498,
- "mildly": 19499,
- "##ease": 19500,
- "bleed": 19501,
- "commodity": 19502,
- "mounds": 19503,
- "glossy": 19504,
- "orchestras": 19505,
- "##omo": 19506,
- "damian": 19507,
- "prelude": 19508,
- "ambitions": 19509,
- "##vet": 19510,
- "awhile": 19511,
- "remotely": 19512,
- "##aud": 19513,
- "asserts": 19514,
- "imply": 19515,
- "##iques": 19516,
- "distinctly": 19517,
- "modelling": 19518,
- "remedy": 19519,
- "##dded": 19520,
- "windshield": 19521,
- "dani": 19522,
- "xiao": 19523,
- "##endra": 19524,
- "audible": 19525,
- "powerplant": 19526,
- "1300": 19527,
- "invalid": 19528,
- "elemental": 19529,
- "acquisitions": 19530,
- "##hala": 19531,
- "immaculate": 19532,
- "libby": 19533,
- "plata": 19534,
- "smuggling": 19535,
- "ventilation": 19536,
- "denoted": 19537,
- "minh": 19538,
- "##morphism": 19539,
- "430": 19540,
- "differed": 19541,
- "dion": 19542,
- "kelley": 19543,
- "lore": 19544,
- "mocking": 19545,
- "sabbath": 19546,
- "spikes": 19547,
- "hygiene": 19548,
- "drown": 19549,
- "runoff": 19550,
- "stylized": 19551,
- "tally": 19552,
- "liberated": 19553,
- "aux": 19554,
- "interpreter": 19555,
- "righteous": 19556,
- "aba": 19557,
- "siren": 19558,
- "reaper": 19559,
- "pearce": 19560,
- "millie": 19561,
- "##cier": 19562,
- "##yra": 19563,
- "gaius": 19564,
- "##iso": 19565,
- "captures": 19566,
- "##ttering": 19567,
- "dorm": 19568,
- "claudio": 19569,
- "##sic": 19570,
- "benches": 19571,
- "knighted": 19572,
- "blackness": 19573,
- "##ored": 19574,
- "discount": 19575,
- "fumble": 19576,
- "oxidation": 19577,
- "routed": 19578,
- "##ς": 19579,
- "novak": 19580,
- "perpendicular": 19581,
- "spoiled": 19582,
- "fracture": 19583,
- "splits": 19584,
- "##urt": 19585,
- "pads": 19586,
- "topology": 19587,
- "##cats": 19588,
- "axes": 19589,
- "fortunate": 19590,
- "offenders": 19591,
- "protestants": 19592,
- "esteem": 19593,
- "221": 19594,
- "broadband": 19595,
- "convened": 19596,
- "frankly": 19597,
- "hound": 19598,
- "prototypes": 19599,
- "isil": 19600,
- "facilitated": 19601,
- "keel": 19602,
- "##sher": 19603,
- "sahara": 19604,
- "awaited": 19605,
- "bubba": 19606,
- "orb": 19607,
- "prosecutors": 19608,
- "186": 19609,
- "hem": 19610,
- "520": 19611,
- "##xing": 19612,
- "relaxing": 19613,
- "remnant": 19614,
- "romney": 19615,
- "sorted": 19616,
- "slalom": 19617,
- "stefano": 19618,
- "ulrich": 19619,
- "##active": 19620,
- "exemption": 19621,
- "folder": 19622,
- "pauses": 19623,
- "foliage": 19624,
- "hitchcock": 19625,
- "epithet": 19626,
- "204": 19627,
- "criticisms": 19628,
- "##aca": 19629,
- "ballistic": 19630,
- "brody": 19631,
- "hinduism": 19632,
- "chaotic": 19633,
- "youths": 19634,
- "equals": 19635,
- "##pala": 19636,
- "pts": 19637,
- "thicker": 19638,
- "analogous": 19639,
- "capitalist": 19640,
- "improvised": 19641,
- "overseeing": 19642,
- "sinatra": 19643,
- "ascended": 19644,
- "beverage": 19645,
- "##tl": 19646,
- "straightforward": 19647,
- "##kon": 19648,
- "curran": 19649,
- "##west": 19650,
- "bois": 19651,
- "325": 19652,
- "induce": 19653,
- "surveying": 19654,
- "emperors": 19655,
- "sax": 19656,
- "unpopular": 19657,
- "##kk": 19658,
- "cartoonist": 19659,
- "fused": 19660,
- "##mble": 19661,
- "unto": 19662,
- "##yuki": 19663,
- "localities": 19664,
- "##cko": 19665,
- "##ln": 19666,
- "darlington": 19667,
- "slain": 19668,
- "academie": 19669,
- "lobbying": 19670,
- "sediment": 19671,
- "puzzles": 19672,
- "##grass": 19673,
- "defiance": 19674,
- "dickens": 19675,
- "manifest": 19676,
- "tongues": 19677,
- "alumnus": 19678,
- "arbor": 19679,
- "coincide": 19680,
- "184": 19681,
- "appalachian": 19682,
- "mustafa": 19683,
- "examiner": 19684,
- "cabaret": 19685,
- "traumatic": 19686,
- "yves": 19687,
- "bracelet": 19688,
- "draining": 19689,
- "heroin": 19690,
- "magnum": 19691,
- "baths": 19692,
- "odessa": 19693,
- "consonants": 19694,
- "mitsubishi": 19695,
- "##gua": 19696,
- "kellan": 19697,
- "vaudeville": 19698,
- "##fr": 19699,
- "joked": 19700,
- "null": 19701,
- "straps": 19702,
- "probation": 19703,
- "##ław": 19704,
- "ceded": 19705,
- "interfaces": 19706,
- "##pas": 19707,
- "##zawa": 19708,
- "blinding": 19709,
- "viet": 19710,
- "224": 19711,
- "rothschild": 19712,
- "museo": 19713,
- "640": 19714,
- "huddersfield": 19715,
- "##vr": 19716,
- "tactic": 19717,
- "##storm": 19718,
- "brackets": 19719,
- "dazed": 19720,
- "incorrectly": 19721,
- "##vu": 19722,
- "reg": 19723,
- "glazed": 19724,
- "fearful": 19725,
- "manifold": 19726,
- "benefited": 19727,
- "irony": 19728,
- "##sun": 19729,
- "stumbling": 19730,
- "##rte": 19731,
- "willingness": 19732,
- "balkans": 19733,
- "mei": 19734,
- "wraps": 19735,
- "##aba": 19736,
- "injected": 19737,
- "##lea": 19738,
- "gu": 19739,
- "syed": 19740,
- "harmless": 19741,
- "##hammer": 19742,
- "bray": 19743,
- "takeoff": 19744,
- "poppy": 19745,
- "timor": 19746,
- "cardboard": 19747,
- "astronaut": 19748,
- "purdue": 19749,
- "weeping": 19750,
- "southbound": 19751,
- "cursing": 19752,
- "stalls": 19753,
- "diagonal": 19754,
- "##neer": 19755,
- "lamar": 19756,
- "bryce": 19757,
- "comte": 19758,
- "weekdays": 19759,
- "harrington": 19760,
- "##uba": 19761,
- "negatively": 19762,
- "##see": 19763,
- "lays": 19764,
- "grouping": 19765,
- "##cken": 19766,
- "##henko": 19767,
- "affirmed": 19768,
- "halle": 19769,
- "modernist": 19770,
- "##lai": 19771,
- "hodges": 19772,
- "smelling": 19773,
- "aristocratic": 19774,
- "baptized": 19775,
- "dismiss": 19776,
- "justification": 19777,
- "oilers": 19778,
- "##now": 19779,
- "coupling": 19780,
- "qin": 19781,
- "snack": 19782,
- "healer": 19783,
- "##qing": 19784,
- "gardener": 19785,
- "layla": 19786,
- "battled": 19787,
- "formulated": 19788,
- "stephenson": 19789,
- "gravitational": 19790,
- "##gill": 19791,
- "##jun": 19792,
- "1768": 19793,
- "granny": 19794,
- "coordinating": 19795,
- "suites": 19796,
- "##cd": 19797,
- "##ioned": 19798,
- "monarchs": 19799,
- "##cote": 19800,
- "##hips": 19801,
- "sep": 19802,
- "blended": 19803,
- "apr": 19804,
- "barrister": 19805,
- "deposition": 19806,
- "fia": 19807,
- "mina": 19808,
- "policemen": 19809,
- "paranoid": 19810,
- "##pressed": 19811,
- "churchyard": 19812,
- "covert": 19813,
- "crumpled": 19814,
- "creep": 19815,
- "abandoning": 19816,
- "tr": 19817,
- "transmit": 19818,
- "conceal": 19819,
- "barr": 19820,
- "understands": 19821,
- "readiness": 19822,
- "spire": 19823,
- "##cology": 19824,
- "##enia": 19825,
- "##erry": 19826,
- "610": 19827,
- "startling": 19828,
- "unlock": 19829,
- "vida": 19830,
- "bowled": 19831,
- "slots": 19832,
- "##nat": 19833,
- "##islav": 19834,
- "spaced": 19835,
- "trusting": 19836,
- "admire": 19837,
- "rig": 19838,
- "##ink": 19839,
- "slack": 19840,
- "##70": 19841,
- "mv": 19842,
- "207": 19843,
- "casualty": 19844,
- "##wei": 19845,
- "classmates": 19846,
- "##odes": 19847,
- "##rar": 19848,
- "##rked": 19849,
- "amherst": 19850,
- "furnished": 19851,
- "evolve": 19852,
- "foundry": 19853,
- "menace": 19854,
- "mead": 19855,
- "##lein": 19856,
- "flu": 19857,
- "wesleyan": 19858,
- "##kled": 19859,
- "monterey": 19860,
- "webber": 19861,
- "##vos": 19862,
- "wil": 19863,
- "##mith": 19864,
- "##на": 19865,
- "bartholomew": 19866,
- "justices": 19867,
- "restrained": 19868,
- "##cke": 19869,
- "amenities": 19870,
- "191": 19871,
- "mediated": 19872,
- "sewage": 19873,
- "trenches": 19874,
- "ml": 19875,
- "mainz": 19876,
- "##thus": 19877,
- "1800s": 19878,
- "##cula": 19879,
- "##inski": 19880,
- "caine": 19881,
- "bonding": 19882,
- "213": 19883,
- "converts": 19884,
- "spheres": 19885,
- "superseded": 19886,
- "marianne": 19887,
- "crypt": 19888,
- "sweaty": 19889,
- "ensign": 19890,
- "historia": 19891,
- "##br": 19892,
- "spruce": 19893,
- "##post": 19894,
- "##ask": 19895,
- "forks": 19896,
- "thoughtfully": 19897,
- "yukon": 19898,
- "pamphlet": 19899,
- "ames": 19900,
- "##uter": 19901,
- "karma": 19902,
- "##yya": 19903,
- "bryn": 19904,
- "negotiation": 19905,
- "sighs": 19906,
- "incapable": 19907,
- "##mbre": 19908,
- "##ntial": 19909,
- "actresses": 19910,
- "taft": 19911,
- "##mill": 19912,
- "luce": 19913,
- "prevailed": 19914,
- "##amine": 19915,
- "1773": 19916,
- "motionless": 19917,
- "envoy": 19918,
- "testify": 19919,
- "investing": 19920,
- "sculpted": 19921,
- "instructors": 19922,
- "provence": 19923,
- "kali": 19924,
- "cullen": 19925,
- "horseback": 19926,
- "##while": 19927,
- "goodwin": 19928,
- "##jos": 19929,
- "gaa": 19930,
- "norte": 19931,
- "##ldon": 19932,
- "modify": 19933,
- "wavelength": 19934,
- "abd": 19935,
- "214": 19936,
- "skinned": 19937,
- "sprinter": 19938,
- "forecast": 19939,
- "scheduling": 19940,
- "marries": 19941,
- "squared": 19942,
- "tentative": 19943,
- "##chman": 19944,
- "boer": 19945,
- "##isch": 19946,
- "bolts": 19947,
- "swap": 19948,
- "fisherman": 19949,
- "assyrian": 19950,
- "impatiently": 19951,
- "guthrie": 19952,
- "martins": 19953,
- "murdoch": 19954,
- "194": 19955,
- "tanya": 19956,
- "nicely": 19957,
- "dolly": 19958,
- "lacy": 19959,
- "med": 19960,
- "##45": 19961,
- "syn": 19962,
- "decks": 19963,
- "fashionable": 19964,
- "millionaire": 19965,
- "##ust": 19966,
- "surfing": 19967,
- "##ml": 19968,
- "##ision": 19969,
- "heaved": 19970,
- "tammy": 19971,
- "consulate": 19972,
- "attendees": 19973,
- "routinely": 19974,
- "197": 19975,
- "fuse": 19976,
- "saxophonist": 19977,
- "backseat": 19978,
- "malaya": 19979,
- "##lord": 19980,
- "scowl": 19981,
- "tau": 19982,
- "##ishly": 19983,
- "193": 19984,
- "sighted": 19985,
- "steaming": 19986,
- "##rks": 19987,
- "303": 19988,
- "911": 19989,
- "##holes": 19990,
- "##hong": 19991,
- "ching": 19992,
- "##wife": 19993,
- "bless": 19994,
- "conserved": 19995,
- "jurassic": 19996,
- "stacey": 19997,
- "unix": 19998,
- "zion": 19999,
- "chunk": 20000,
- "rigorous": 20001,
- "blaine": 20002,
- "198": 20003,
- "peabody": 20004,
- "slayer": 20005,
- "dismay": 20006,
- "brewers": 20007,
- "nz": 20008,
- "##jer": 20009,
- "det": 20010,
- "##glia": 20011,
- "glover": 20012,
- "postwar": 20013,
- "int": 20014,
- "penetration": 20015,
- "sylvester": 20016,
- "imitation": 20017,
- "vertically": 20018,
- "airlift": 20019,
- "heiress": 20020,
- "knoxville": 20021,
- "viva": 20022,
- "##uin": 20023,
- "390": 20024,
- "macon": 20025,
- "##rim": 20026,
- "##fighter": 20027,
- "##gonal": 20028,
- "janice": 20029,
- "##orescence": 20030,
- "##wari": 20031,
- "marius": 20032,
- "belongings": 20033,
- "leicestershire": 20034,
- "196": 20035,
- "blanco": 20036,
- "inverted": 20037,
- "preseason": 20038,
- "sanity": 20039,
- "sobbing": 20040,
- "##due": 20041,
- "##elt": 20042,
- "##dled": 20043,
- "collingwood": 20044,
- "regeneration": 20045,
- "flickering": 20046,
- "shortest": 20047,
- "##mount": 20048,
- "##osi": 20049,
- "feminism": 20050,
- "##lat": 20051,
- "sherlock": 20052,
- "cabinets": 20053,
- "fumbled": 20054,
- "northbound": 20055,
- "precedent": 20056,
- "snaps": 20057,
- "##mme": 20058,
- "researching": 20059,
- "##akes": 20060,
- "guillaume": 20061,
- "insights": 20062,
- "manipulated": 20063,
- "vapor": 20064,
- "neighbour": 20065,
- "sap": 20066,
- "gangster": 20067,
- "frey": 20068,
- "f1": 20069,
- "stalking": 20070,
- "scarcely": 20071,
- "callie": 20072,
- "barnett": 20073,
- "tendencies": 20074,
- "audi": 20075,
- "doomed": 20076,
- "assessing": 20077,
- "slung": 20078,
- "panchayat": 20079,
- "ambiguous": 20080,
- "bartlett": 20081,
- "##etto": 20082,
- "distributing": 20083,
- "violating": 20084,
- "wolverhampton": 20085,
- "##hetic": 20086,
- "swami": 20087,
- "histoire": 20088,
- "##urus": 20089,
- "liable": 20090,
- "pounder": 20091,
- "groin": 20092,
- "hussain": 20093,
- "larsen": 20094,
- "popping": 20095,
- "surprises": 20096,
- "##atter": 20097,
- "vie": 20098,
- "curt": 20099,
- "##station": 20100,
- "mute": 20101,
- "relocate": 20102,
- "musicals": 20103,
- "authorization": 20104,
- "richter": 20105,
- "##sef": 20106,
- "immortality": 20107,
- "tna": 20108,
- "bombings": 20109,
- "##press": 20110,
- "deteriorated": 20111,
- "yiddish": 20112,
- "##acious": 20113,
- "robbed": 20114,
- "colchester": 20115,
- "cs": 20116,
- "pmid": 20117,
- "ao": 20118,
- "verified": 20119,
- "balancing": 20120,
- "apostle": 20121,
- "swayed": 20122,
- "recognizable": 20123,
- "oxfordshire": 20124,
- "retention": 20125,
- "nottinghamshire": 20126,
- "contender": 20127,
- "judd": 20128,
- "invitational": 20129,
- "shrimp": 20130,
- "uhf": 20131,
- "##icient": 20132,
- "cleaner": 20133,
- "longitudinal": 20134,
- "tanker": 20135,
- "##mur": 20136,
- "acronym": 20137,
- "broker": 20138,
- "koppen": 20139,
- "sundance": 20140,
- "suppliers": 20141,
- "##gil": 20142,
- "4000": 20143,
- "clipped": 20144,
- "fuels": 20145,
- "petite": 20146,
- "##anne": 20147,
- "landslide": 20148,
- "helene": 20149,
- "diversion": 20150,
- "populous": 20151,
- "landowners": 20152,
- "auspices": 20153,
- "melville": 20154,
- "quantitative": 20155,
- "##xes": 20156,
- "ferries": 20157,
- "nicky": 20158,
- "##llus": 20159,
- "doo": 20160,
- "haunting": 20161,
- "roche": 20162,
- "carver": 20163,
- "downed": 20164,
- "unavailable": 20165,
- "##pathy": 20166,
- "approximation": 20167,
- "hiroshima": 20168,
- "##hue": 20169,
- "garfield": 20170,
- "valle": 20171,
- "comparatively": 20172,
- "keyboardist": 20173,
- "traveler": 20174,
- "##eit": 20175,
- "congestion": 20176,
- "calculating": 20177,
- "subsidiaries": 20178,
- "##bate": 20179,
- "serb": 20180,
- "modernization": 20181,
- "fairies": 20182,
- "deepened": 20183,
- "ville": 20184,
- "averages": 20185,
- "##lore": 20186,
- "inflammatory": 20187,
- "tonga": 20188,
- "##itch": 20189,
- "co₂": 20190,
- "squads": 20191,
- "##hea": 20192,
- "gigantic": 20193,
- "serum": 20194,
- "enjoyment": 20195,
- "retailer": 20196,
- "verona": 20197,
- "35th": 20198,
- "cis": 20199,
- "##phobic": 20200,
- "magna": 20201,
- "technicians": 20202,
- "##vati": 20203,
- "arithmetic": 20204,
- "##sport": 20205,
- "levin": 20206,
- "##dation": 20207,
- "amtrak": 20208,
- "chow": 20209,
- "sienna": 20210,
- "##eyer": 20211,
- "backstage": 20212,
- "entrepreneurship": 20213,
- "##otic": 20214,
- "learnt": 20215,
- "tao": 20216,
- "##udy": 20217,
- "worcestershire": 20218,
- "formulation": 20219,
- "baggage": 20220,
- "hesitant": 20221,
- "bali": 20222,
- "sabotage": 20223,
- "##kari": 20224,
- "barren": 20225,
- "enhancing": 20226,
- "murmur": 20227,
- "pl": 20228,
- "freshly": 20229,
- "putnam": 20230,
- "syntax": 20231,
- "aces": 20232,
- "medicines": 20233,
- "resentment": 20234,
- "bandwidth": 20235,
- "##sier": 20236,
- "grins": 20237,
- "chili": 20238,
- "guido": 20239,
- "##sei": 20240,
- "framing": 20241,
- "implying": 20242,
- "gareth": 20243,
- "lissa": 20244,
- "genevieve": 20245,
- "pertaining": 20246,
- "admissions": 20247,
- "geo": 20248,
- "thorpe": 20249,
- "proliferation": 20250,
- "sato": 20251,
- "bela": 20252,
- "analyzing": 20253,
- "parting": 20254,
- "##gor": 20255,
- "awakened": 20256,
- "##isman": 20257,
- "huddled": 20258,
- "secrecy": 20259,
- "##kling": 20260,
- "hush": 20261,
- "gentry": 20262,
- "540": 20263,
- "dungeons": 20264,
- "##ego": 20265,
- "coasts": 20266,
- "##utz": 20267,
- "sacrificed": 20268,
- "##chule": 20269,
- "landowner": 20270,
- "mutually": 20271,
- "prevalence": 20272,
- "programmer": 20273,
- "adolescent": 20274,
- "disrupted": 20275,
- "seaside": 20276,
- "gee": 20277,
- "trusts": 20278,
- "vamp": 20279,
- "georgie": 20280,
- "##nesian": 20281,
- "##iol": 20282,
- "schedules": 20283,
- "sindh": 20284,
- "##market": 20285,
- "etched": 20286,
- "hm": 20287,
- "sparse": 20288,
- "bey": 20289,
- "beaux": 20290,
- "scratching": 20291,
- "gliding": 20292,
- "unidentified": 20293,
- "216": 20294,
- "collaborating": 20295,
- "gems": 20296,
- "jesuits": 20297,
- "oro": 20298,
- "accumulation": 20299,
- "shaping": 20300,
- "mbe": 20301,
- "anal": 20302,
- "##xin": 20303,
- "231": 20304,
- "enthusiasts": 20305,
- "newscast": 20306,
- "##egan": 20307,
- "janata": 20308,
- "dewey": 20309,
- "parkinson": 20310,
- "179": 20311,
- "ankara": 20312,
- "biennial": 20313,
- "towering": 20314,
- "dd": 20315,
- "inconsistent": 20316,
- "950": 20317,
- "##chet": 20318,
- "thriving": 20319,
- "terminate": 20320,
- "cabins": 20321,
- "furiously": 20322,
- "eats": 20323,
- "advocating": 20324,
- "donkey": 20325,
- "marley": 20326,
- "muster": 20327,
- "phyllis": 20328,
- "leiden": 20329,
- "##user": 20330,
- "grassland": 20331,
- "glittering": 20332,
- "iucn": 20333,
- "loneliness": 20334,
- "217": 20335,
- "memorandum": 20336,
- "armenians": 20337,
- "##ddle": 20338,
- "popularized": 20339,
- "rhodesia": 20340,
- "60s": 20341,
- "lame": 20342,
- "##illon": 20343,
- "sans": 20344,
- "bikini": 20345,
- "header": 20346,
- "orbits": 20347,
- "##xx": 20348,
- "##finger": 20349,
- "##ulator": 20350,
- "sharif": 20351,
- "spines": 20352,
- "biotechnology": 20353,
- "strolled": 20354,
- "naughty": 20355,
- "yates": 20356,
- "##wire": 20357,
- "fremantle": 20358,
- "milo": 20359,
- "##mour": 20360,
- "abducted": 20361,
- "removes": 20362,
- "##atin": 20363,
- "humming": 20364,
- "wonderland": 20365,
- "##chrome": 20366,
- "##ester": 20367,
- "hume": 20368,
- "pivotal": 20369,
- "##rates": 20370,
- "armand": 20371,
- "grams": 20372,
- "believers": 20373,
- "elector": 20374,
- "rte": 20375,
- "apron": 20376,
- "bis": 20377,
- "scraped": 20378,
- "##yria": 20379,
- "endorsement": 20380,
- "initials": 20381,
- "##llation": 20382,
- "eps": 20383,
- "dotted": 20384,
- "hints": 20385,
- "buzzing": 20386,
- "emigration": 20387,
- "nearer": 20388,
- "##tom": 20389,
- "indicators": 20390,
- "##ulu": 20391,
- "coarse": 20392,
- "neutron": 20393,
- "protectorate": 20394,
- "##uze": 20395,
- "directional": 20396,
- "exploits": 20397,
- "pains": 20398,
- "loire": 20399,
- "1830s": 20400,
- "proponents": 20401,
- "guggenheim": 20402,
- "rabbits": 20403,
- "ritchie": 20404,
- "305": 20405,
- "hectare": 20406,
- "inputs": 20407,
- "hutton": 20408,
- "##raz": 20409,
- "verify": 20410,
- "##ako": 20411,
- "boilers": 20412,
- "longitude": 20413,
- "##lev": 20414,
- "skeletal": 20415,
- "yer": 20416,
- "emilia": 20417,
- "citrus": 20418,
- "compromised": 20419,
- "##gau": 20420,
- "pokemon": 20421,
- "prescription": 20422,
- "paragraph": 20423,
- "eduard": 20424,
- "cadillac": 20425,
- "attire": 20426,
- "categorized": 20427,
- "kenyan": 20428,
- "weddings": 20429,
- "charley": 20430,
- "##bourg": 20431,
- "entertain": 20432,
- "monmouth": 20433,
- "##lles": 20434,
- "nutrients": 20435,
- "davey": 20436,
- "mesh": 20437,
- "incentive": 20438,
- "practised": 20439,
- "ecosystems": 20440,
- "kemp": 20441,
- "subdued": 20442,
- "overheard": 20443,
- "##rya": 20444,
- "bodily": 20445,
- "maxim": 20446,
- "##nius": 20447,
- "apprenticeship": 20448,
- "ursula": 20449,
- "##fight": 20450,
- "lodged": 20451,
- "rug": 20452,
- "silesian": 20453,
- "unconstitutional": 20454,
- "patel": 20455,
- "inspected": 20456,
- "coyote": 20457,
- "unbeaten": 20458,
- "##hak": 20459,
- "34th": 20460,
- "disruption": 20461,
- "convict": 20462,
- "parcel": 20463,
- "##cl": 20464,
- "##nham": 20465,
- "collier": 20466,
- "implicated": 20467,
- "mallory": 20468,
- "##iac": 20469,
- "##lab": 20470,
- "susannah": 20471,
- "winkler": 20472,
- "##rber": 20473,
- "shia": 20474,
- "phelps": 20475,
- "sediments": 20476,
- "graphical": 20477,
- "robotic": 20478,
- "##sner": 20479,
- "adulthood": 20480,
- "mart": 20481,
- "smoked": 20482,
- "##isto": 20483,
- "kathryn": 20484,
- "clarified": 20485,
- "##aran": 20486,
- "divides": 20487,
- "convictions": 20488,
- "oppression": 20489,
- "pausing": 20490,
- "burying": 20491,
- "##mt": 20492,
- "federico": 20493,
- "mathias": 20494,
- "eileen": 20495,
- "##tana": 20496,
- "kite": 20497,
- "hunched": 20498,
- "##acies": 20499,
- "189": 20500,
- "##atz": 20501,
- "disadvantage": 20502,
- "liza": 20503,
- "kinetic": 20504,
- "greedy": 20505,
- "paradox": 20506,
- "yokohama": 20507,
- "dowager": 20508,
- "trunks": 20509,
- "ventured": 20510,
- "##gement": 20511,
- "gupta": 20512,
- "vilnius": 20513,
- "olaf": 20514,
- "##thest": 20515,
- "crimean": 20516,
- "hopper": 20517,
- "##ej": 20518,
- "progressively": 20519,
- "arturo": 20520,
- "mouthed": 20521,
- "arrondissement": 20522,
- "##fusion": 20523,
- "rubin": 20524,
- "simulcast": 20525,
- "oceania": 20526,
- "##orum": 20527,
- "##stra": 20528,
- "##rred": 20529,
- "busiest": 20530,
- "intensely": 20531,
- "navigator": 20532,
- "cary": 20533,
- "##vine": 20534,
- "##hini": 20535,
- "##bies": 20536,
- "fife": 20537,
- "rowe": 20538,
- "rowland": 20539,
- "posing": 20540,
- "insurgents": 20541,
- "shafts": 20542,
- "lawsuits": 20543,
- "activate": 20544,
- "conor": 20545,
- "inward": 20546,
- "culturally": 20547,
- "garlic": 20548,
- "265": 20549,
- "##eering": 20550,
- "eclectic": 20551,
- "##hui": 20552,
- "##kee": 20553,
- "##nl": 20554,
- "furrowed": 20555,
- "vargas": 20556,
- "meteorological": 20557,
- "rendezvous": 20558,
- "##aus": 20559,
- "culinary": 20560,
- "commencement": 20561,
- "##dition": 20562,
- "quota": 20563,
- "##notes": 20564,
- "mommy": 20565,
- "salaries": 20566,
- "overlapping": 20567,
- "mule": 20568,
- "##iology": 20569,
- "##mology": 20570,
- "sums": 20571,
- "wentworth": 20572,
- "##isk": 20573,
- "##zione": 20574,
- "mainline": 20575,
- "subgroup": 20576,
- "##illy": 20577,
- "hack": 20578,
- "plaintiff": 20579,
- "verdi": 20580,
- "bulb": 20581,
- "differentiation": 20582,
- "engagements": 20583,
- "multinational": 20584,
- "supplemented": 20585,
- "bertrand": 20586,
- "caller": 20587,
- "regis": 20588,
- "##naire": 20589,
- "##sler": 20590,
- "##arts": 20591,
- "##imated": 20592,
- "blossom": 20593,
- "propagation": 20594,
- "kilometer": 20595,
- "viaduct": 20596,
- "vineyards": 20597,
- "##uate": 20598,
- "beckett": 20599,
- "optimization": 20600,
- "golfer": 20601,
- "songwriters": 20602,
- "seminal": 20603,
- "semitic": 20604,
- "thud": 20605,
- "volatile": 20606,
- "evolving": 20607,
- "ridley": 20608,
- "##wley": 20609,
- "trivial": 20610,
- "distributions": 20611,
- "scandinavia": 20612,
- "jiang": 20613,
- "##ject": 20614,
- "wrestled": 20615,
- "insistence": 20616,
- "##dio": 20617,
- "emphasizes": 20618,
- "napkin": 20619,
- "##ods": 20620,
- "adjunct": 20621,
- "rhyme": 20622,
- "##ricted": 20623,
- "##eti": 20624,
- "hopeless": 20625,
- "surrounds": 20626,
- "tremble": 20627,
- "32nd": 20628,
- "smoky": 20629,
- "##ntly": 20630,
- "oils": 20631,
- "medicinal": 20632,
- "padded": 20633,
- "steer": 20634,
- "wilkes": 20635,
- "219": 20636,
- "255": 20637,
- "concessions": 20638,
- "hue": 20639,
- "uniquely": 20640,
- "blinded": 20641,
- "landon": 20642,
- "yahoo": 20643,
- "##lane": 20644,
- "hendrix": 20645,
- "commemorating": 20646,
- "dex": 20647,
- "specify": 20648,
- "chicks": 20649,
- "##ggio": 20650,
- "intercity": 20651,
- "1400": 20652,
- "morley": 20653,
- "##torm": 20654,
- "highlighting": 20655,
- "##oting": 20656,
- "pang": 20657,
- "oblique": 20658,
- "stalled": 20659,
- "##liner": 20660,
- "flirting": 20661,
- "newborn": 20662,
- "1769": 20663,
- "bishopric": 20664,
- "shaved": 20665,
- "232": 20666,
- "currie": 20667,
- "##ush": 20668,
- "dharma": 20669,
- "spartan": 20670,
- "##ooped": 20671,
- "favorites": 20672,
- "smug": 20673,
- "novella": 20674,
- "sirens": 20675,
- "abusive": 20676,
- "creations": 20677,
- "espana": 20678,
- "##lage": 20679,
- "paradigm": 20680,
- "semiconductor": 20681,
- "sheen": 20682,
- "##rdo": 20683,
- "##yen": 20684,
- "##zak": 20685,
- "nrl": 20686,
- "renew": 20687,
- "##pose": 20688,
- "##tur": 20689,
- "adjutant": 20690,
- "marches": 20691,
- "norma": 20692,
- "##enity": 20693,
- "ineffective": 20694,
- "weimar": 20695,
- "grunt": 20696,
- "##gat": 20697,
- "lordship": 20698,
- "plotting": 20699,
- "expenditure": 20700,
- "infringement": 20701,
- "lbs": 20702,
- "refrain": 20703,
- "av": 20704,
- "mimi": 20705,
- "mistakenly": 20706,
- "postmaster": 20707,
- "1771": 20708,
- "##bara": 20709,
- "ras": 20710,
- "motorsports": 20711,
- "tito": 20712,
- "199": 20713,
- "subjective": 20714,
- "##zza": 20715,
- "bully": 20716,
- "stew": 20717,
- "##kaya": 20718,
- "prescott": 20719,
- "1a": 20720,
- "##raphic": 20721,
- "##zam": 20722,
- "bids": 20723,
- "styling": 20724,
- "paranormal": 20725,
- "reeve": 20726,
- "sneaking": 20727,
- "exploding": 20728,
- "katz": 20729,
- "akbar": 20730,
- "migrant": 20731,
- "syllables": 20732,
- "indefinitely": 20733,
- "##ogical": 20734,
- "destroys": 20735,
- "replaces": 20736,
- "applause": 20737,
- "##phine": 20738,
- "pest": 20739,
- "##fide": 20740,
- "218": 20741,
- "articulated": 20742,
- "bertie": 20743,
- "##thing": 20744,
- "##cars": 20745,
- "##ptic": 20746,
- "courtroom": 20747,
- "crowley": 20748,
- "aesthetics": 20749,
- "cummings": 20750,
- "tehsil": 20751,
- "hormones": 20752,
- "titanic": 20753,
- "dangerously": 20754,
- "##ibe": 20755,
- "stadion": 20756,
- "jaenelle": 20757,
- "auguste": 20758,
- "ciudad": 20759,
- "##chu": 20760,
- "mysore": 20761,
- "partisans": 20762,
- "##sio": 20763,
- "lucan": 20764,
- "philipp": 20765,
- "##aly": 20766,
- "debating": 20767,
- "henley": 20768,
- "interiors": 20769,
- "##rano": 20770,
- "##tious": 20771,
- "homecoming": 20772,
- "beyonce": 20773,
- "usher": 20774,
- "henrietta": 20775,
- "prepares": 20776,
- "weeds": 20777,
- "##oman": 20778,
- "ely": 20779,
- "plucked": 20780,
- "##pire": 20781,
- "##dable": 20782,
- "luxurious": 20783,
- "##aq": 20784,
- "artifact": 20785,
- "password": 20786,
- "pasture": 20787,
- "juno": 20788,
- "maddy": 20789,
- "minsk": 20790,
- "##dder": 20791,
- "##ologies": 20792,
- "##rone": 20793,
- "assessments": 20794,
- "martian": 20795,
- "royalist": 20796,
- "1765": 20797,
- "examines": 20798,
- "##mani": 20799,
- "##rge": 20800,
- "nino": 20801,
- "223": 20802,
- "parry": 20803,
- "scooped": 20804,
- "relativity": 20805,
- "##eli": 20806,
- "##uting": 20807,
- "##cao": 20808,
- "congregational": 20809,
- "noisy": 20810,
- "traverse": 20811,
- "##agawa": 20812,
- "strikeouts": 20813,
- "nickelodeon": 20814,
- "obituary": 20815,
- "transylvania": 20816,
- "binds": 20817,
- "depictions": 20818,
- "polk": 20819,
- "trolley": 20820,
- "##yed": 20821,
- "##lard": 20822,
- "breeders": 20823,
- "##under": 20824,
- "dryly": 20825,
- "hokkaido": 20826,
- "1762": 20827,
- "strengths": 20828,
- "stacks": 20829,
- "bonaparte": 20830,
- "connectivity": 20831,
- "neared": 20832,
- "prostitutes": 20833,
- "stamped": 20834,
- "anaheim": 20835,
- "gutierrez": 20836,
- "sinai": 20837,
- "##zzling": 20838,
- "bram": 20839,
- "fresno": 20840,
- "madhya": 20841,
- "##86": 20842,
- "proton": 20843,
- "##lena": 20844,
- "##llum": 20845,
- "##phon": 20846,
- "reelected": 20847,
- "wanda": 20848,
- "##anus": 20849,
- "##lb": 20850,
- "ample": 20851,
- "distinguishing": 20852,
- "##yler": 20853,
- "grasping": 20854,
- "sermons": 20855,
- "tomato": 20856,
- "bland": 20857,
- "stimulation": 20858,
- "avenues": 20859,
- "##eux": 20860,
- "spreads": 20861,
- "scarlett": 20862,
- "fern": 20863,
- "pentagon": 20864,
- "assert": 20865,
- "baird": 20866,
- "chesapeake": 20867,
- "ir": 20868,
- "calmed": 20869,
- "distortion": 20870,
- "fatalities": 20871,
- "##olis": 20872,
- "correctional": 20873,
- "pricing": 20874,
- "##astic": 20875,
- "##gina": 20876,
- "prom": 20877,
- "dammit": 20878,
- "ying": 20879,
- "collaborate": 20880,
- "##chia": 20881,
- "welterweight": 20882,
- "33rd": 20883,
- "pointer": 20884,
- "substitution": 20885,
- "bonded": 20886,
- "umpire": 20887,
- "communicating": 20888,
- "multitude": 20889,
- "paddle": 20890,
- "##obe": 20891,
- "federally": 20892,
- "intimacy": 20893,
- "##insky": 20894,
- "betray": 20895,
- "ssr": 20896,
- "##lett": 20897,
- "##lean": 20898,
- "##lves": 20899,
- "##therapy": 20900,
- "airbus": 20901,
- "##tery": 20902,
- "functioned": 20903,
- "ud": 20904,
- "bearer": 20905,
- "biomedical": 20906,
- "netflix": 20907,
- "##hire": 20908,
- "##nca": 20909,
- "condom": 20910,
- "brink": 20911,
- "ik": 20912,
- "##nical": 20913,
- "macy": 20914,
- "##bet": 20915,
- "flap": 20916,
- "gma": 20917,
- "experimented": 20918,
- "jelly": 20919,
- "lavender": 20920,
- "##icles": 20921,
- "##ulia": 20922,
- "munro": 20923,
- "##mian": 20924,
- "##tial": 20925,
- "rye": 20926,
- "##rle": 20927,
- "60th": 20928,
- "gigs": 20929,
- "hottest": 20930,
- "rotated": 20931,
- "predictions": 20932,
- "fuji": 20933,
- "bu": 20934,
- "##erence": 20935,
- "##omi": 20936,
- "barangay": 20937,
- "##fulness": 20938,
- "##sas": 20939,
- "clocks": 20940,
- "##rwood": 20941,
- "##liness": 20942,
- "cereal": 20943,
- "roe": 20944,
- "wight": 20945,
- "decker": 20946,
- "uttered": 20947,
- "babu": 20948,
- "onion": 20949,
- "xml": 20950,
- "forcibly": 20951,
- "##df": 20952,
- "petra": 20953,
- "sarcasm": 20954,
- "hartley": 20955,
- "peeled": 20956,
- "storytelling": 20957,
- "##42": 20958,
- "##xley": 20959,
- "##ysis": 20960,
- "##ffa": 20961,
- "fibre": 20962,
- "kiel": 20963,
- "auditor": 20964,
- "fig": 20965,
- "harald": 20966,
- "greenville": 20967,
- "##berries": 20968,
- "geographically": 20969,
- "nell": 20970,
- "quartz": 20971,
- "##athic": 20972,
- "cemeteries": 20973,
- "##lr": 20974,
- "crossings": 20975,
- "nah": 20976,
- "holloway": 20977,
- "reptiles": 20978,
- "chun": 20979,
- "sichuan": 20980,
- "snowy": 20981,
- "660": 20982,
- "corrections": 20983,
- "##ivo": 20984,
- "zheng": 20985,
- "ambassadors": 20986,
- "blacksmith": 20987,
- "fielded": 20988,
- "fluids": 20989,
- "hardcover": 20990,
- "turnover": 20991,
- "medications": 20992,
- "melvin": 20993,
- "academies": 20994,
- "##erton": 20995,
- "ro": 20996,
- "roach": 20997,
- "absorbing": 20998,
- "spaniards": 20999,
- "colton": 21000,
- "##founded": 21001,
- "outsider": 21002,
- "espionage": 21003,
- "kelsey": 21004,
- "245": 21005,
- "edible": 21006,
- "##ulf": 21007,
- "dora": 21008,
- "establishes": 21009,
- "##sham": 21010,
- "##tries": 21011,
- "contracting": 21012,
- "##tania": 21013,
- "cinematic": 21014,
- "costello": 21015,
- "nesting": 21016,
- "##uron": 21017,
- "connolly": 21018,
- "duff": 21019,
- "##nology": 21020,
- "mma": 21021,
- "##mata": 21022,
- "fergus": 21023,
- "sexes": 21024,
- "gi": 21025,
- "optics": 21026,
- "spectator": 21027,
- "woodstock": 21028,
- "banning": 21029,
- "##hee": 21030,
- "##fle": 21031,
- "differentiate": 21032,
- "outfielder": 21033,
- "refinery": 21034,
- "226": 21035,
- "312": 21036,
- "gerhard": 21037,
- "horde": 21038,
- "lair": 21039,
- "drastically": 21040,
- "##udi": 21041,
- "landfall": 21042,
- "##cheng": 21043,
- "motorsport": 21044,
- "odi": 21045,
- "##achi": 21046,
- "predominant": 21047,
- "quay": 21048,
- "skins": 21049,
- "##ental": 21050,
- "edna": 21051,
- "harshly": 21052,
- "complementary": 21053,
- "murdering": 21054,
- "##aves": 21055,
- "wreckage": 21056,
- "##90": 21057,
- "ono": 21058,
- "outstretched": 21059,
- "lennox": 21060,
- "munitions": 21061,
- "galen": 21062,
- "reconcile": 21063,
- "470": 21064,
- "scalp": 21065,
- "bicycles": 21066,
- "gillespie": 21067,
- "questionable": 21068,
- "rosenberg": 21069,
- "guillermo": 21070,
- "hostel": 21071,
- "jarvis": 21072,
- "kabul": 21073,
- "volvo": 21074,
- "opium": 21075,
- "yd": 21076,
- "##twined": 21077,
- "abuses": 21078,
- "decca": 21079,
- "outpost": 21080,
- "##cino": 21081,
- "sensible": 21082,
- "neutrality": 21083,
- "##64": 21084,
- "ponce": 21085,
- "anchorage": 21086,
- "atkins": 21087,
- "turrets": 21088,
- "inadvertently": 21089,
- "disagree": 21090,
- "libre": 21091,
- "vodka": 21092,
- "reassuring": 21093,
- "weighs": 21094,
- "##yal": 21095,
- "glide": 21096,
- "jumper": 21097,
- "ceilings": 21098,
- "repertory": 21099,
- "outs": 21100,
- "stain": 21101,
- "##bial": 21102,
- "envy": 21103,
- "##ucible": 21104,
- "smashing": 21105,
- "heightened": 21106,
- "policing": 21107,
- "hyun": 21108,
- "mixes": 21109,
- "lai": 21110,
- "prima": 21111,
- "##ples": 21112,
- "celeste": 21113,
- "##bina": 21114,
- "lucrative": 21115,
- "intervened": 21116,
- "kc": 21117,
- "manually": 21118,
- "##rned": 21119,
- "stature": 21120,
- "staffed": 21121,
- "bun": 21122,
- "bastards": 21123,
- "nairobi": 21124,
- "priced": 21125,
- "##auer": 21126,
- "thatcher": 21127,
- "##kia": 21128,
- "tripped": 21129,
- "comune": 21130,
- "##ogan": 21131,
- "##pled": 21132,
- "brasil": 21133,
- "incentives": 21134,
- "emanuel": 21135,
- "hereford": 21136,
- "musica": 21137,
- "##kim": 21138,
- "benedictine": 21139,
- "biennale": 21140,
- "##lani": 21141,
- "eureka": 21142,
- "gardiner": 21143,
- "rb": 21144,
- "knocks": 21145,
- "sha": 21146,
- "##ael": 21147,
- "##elled": 21148,
- "##onate": 21149,
- "efficacy": 21150,
- "ventura": 21151,
- "masonic": 21152,
- "sanford": 21153,
- "maize": 21154,
- "leverage": 21155,
- "##feit": 21156,
- "capacities": 21157,
- "santana": 21158,
- "##aur": 21159,
- "novelty": 21160,
- "vanilla": 21161,
- "##cter": 21162,
- "##tour": 21163,
- "benin": 21164,
- "##oir": 21165,
- "##rain": 21166,
- "neptune": 21167,
- "drafting": 21168,
- "tallinn": 21169,
- "##cable": 21170,
- "humiliation": 21171,
- "##boarding": 21172,
- "schleswig": 21173,
- "fabian": 21174,
- "bernardo": 21175,
- "liturgy": 21176,
- "spectacle": 21177,
- "sweeney": 21178,
- "pont": 21179,
- "routledge": 21180,
- "##tment": 21181,
- "cosmos": 21182,
- "ut": 21183,
- "hilt": 21184,
- "sleek": 21185,
- "universally": 21186,
- "##eville": 21187,
- "##gawa": 21188,
- "typed": 21189,
- "##dry": 21190,
- "favors": 21191,
- "allegheny": 21192,
- "glaciers": 21193,
- "##rly": 21194,
- "recalling": 21195,
- "aziz": 21196,
- "##log": 21197,
- "parasite": 21198,
- "requiem": 21199,
- "auf": 21200,
- "##berto": 21201,
- "##llin": 21202,
- "illumination": 21203,
- "##breaker": 21204,
- "##issa": 21205,
- "festivities": 21206,
- "bows": 21207,
- "govern": 21208,
- "vibe": 21209,
- "vp": 21210,
- "333": 21211,
- "sprawled": 21212,
- "larson": 21213,
- "pilgrim": 21214,
- "bwf": 21215,
- "leaping": 21216,
- "##rts": 21217,
- "##ssel": 21218,
- "alexei": 21219,
- "greyhound": 21220,
- "hoarse": 21221,
- "##dler": 21222,
- "##oration": 21223,
- "seneca": 21224,
- "##cule": 21225,
- "gaping": 21226,
- "##ulously": 21227,
- "##pura": 21228,
- "cinnamon": 21229,
- "##gens": 21230,
- "##rricular": 21231,
- "craven": 21232,
- "fantasies": 21233,
- "houghton": 21234,
- "engined": 21235,
- "reigned": 21236,
- "dictator": 21237,
- "supervising": 21238,
- "##oris": 21239,
- "bogota": 21240,
- "commentaries": 21241,
- "unnatural": 21242,
- "fingernails": 21243,
- "spirituality": 21244,
- "tighten": 21245,
- "##tm": 21246,
- "canadiens": 21247,
- "protesting": 21248,
- "intentional": 21249,
- "cheers": 21250,
- "sparta": 21251,
- "##ytic": 21252,
- "##iere": 21253,
- "##zine": 21254,
- "widen": 21255,
- "belgarath": 21256,
- "controllers": 21257,
- "dodd": 21258,
- "iaaf": 21259,
- "navarre": 21260,
- "##ication": 21261,
- "defect": 21262,
- "squire": 21263,
- "steiner": 21264,
- "whisky": 21265,
- "##mins": 21266,
- "560": 21267,
- "inevitably": 21268,
- "tome": 21269,
- "##gold": 21270,
- "chew": 21271,
- "##uid": 21272,
- "##lid": 21273,
- "elastic": 21274,
- "##aby": 21275,
- "streaked": 21276,
- "alliances": 21277,
- "jailed": 21278,
- "regal": 21279,
- "##ined": 21280,
- "##phy": 21281,
- "czechoslovak": 21282,
- "narration": 21283,
- "absently": 21284,
- "##uld": 21285,
- "bluegrass": 21286,
- "guangdong": 21287,
- "quran": 21288,
- "criticizing": 21289,
- "hose": 21290,
- "hari": 21291,
- "##liest": 21292,
- "##owa": 21293,
- "skier": 21294,
- "streaks": 21295,
- "deploy": 21296,
- "##lom": 21297,
- "raft": 21298,
- "bose": 21299,
- "dialed": 21300,
- "huff": 21301,
- "##eira": 21302,
- "haifa": 21303,
- "simplest": 21304,
- "bursting": 21305,
- "endings": 21306,
- "ib": 21307,
- "sultanate": 21308,
- "##titled": 21309,
- "franks": 21310,
- "whitman": 21311,
- "ensures": 21312,
- "sven": 21313,
- "##ggs": 21314,
- "collaborators": 21315,
- "forster": 21316,
- "organising": 21317,
- "ui": 21318,
- "banished": 21319,
- "napier": 21320,
- "injustice": 21321,
- "teller": 21322,
- "layered": 21323,
- "thump": 21324,
- "##otti": 21325,
- "roc": 21326,
- "battleships": 21327,
- "evidenced": 21328,
- "fugitive": 21329,
- "sadie": 21330,
- "robotics": 21331,
- "##roud": 21332,
- "equatorial": 21333,
- "geologist": 21334,
- "##iza": 21335,
- "yielding": 21336,
- "##bron": 21337,
- "##sr": 21338,
- "internationale": 21339,
- "mecca": 21340,
- "##diment": 21341,
- "sbs": 21342,
- "skyline": 21343,
- "toad": 21344,
- "uploaded": 21345,
- "reflective": 21346,
- "undrafted": 21347,
- "lal": 21348,
- "leafs": 21349,
- "bayern": 21350,
- "##dai": 21351,
- "lakshmi": 21352,
- "shortlisted": 21353,
- "##stick": 21354,
- "##wicz": 21355,
- "camouflage": 21356,
- "donate": 21357,
- "af": 21358,
- "christi": 21359,
- "lau": 21360,
- "##acio": 21361,
- "disclosed": 21362,
- "nemesis": 21363,
- "1761": 21364,
- "assemble": 21365,
- "straining": 21366,
- "northamptonshire": 21367,
- "tal": 21368,
- "##asi": 21369,
- "bernardino": 21370,
- "premature": 21371,
- "heidi": 21372,
- "42nd": 21373,
- "coefficients": 21374,
- "galactic": 21375,
- "reproduce": 21376,
- "buzzed": 21377,
- "sensations": 21378,
- "zionist": 21379,
- "monsieur": 21380,
- "myrtle": 21381,
- "##eme": 21382,
- "archery": 21383,
- "strangled": 21384,
- "musically": 21385,
- "viewpoint": 21386,
- "antiquities": 21387,
- "bei": 21388,
- "trailers": 21389,
- "seahawks": 21390,
- "cured": 21391,
- "pee": 21392,
- "preferring": 21393,
- "tasmanian": 21394,
- "lange": 21395,
- "sul": 21396,
- "##mail": 21397,
- "##working": 21398,
- "colder": 21399,
- "overland": 21400,
- "lucivar": 21401,
- "massey": 21402,
- "gatherings": 21403,
- "haitian": 21404,
- "##smith": 21405,
- "disapproval": 21406,
- "flaws": 21407,
- "##cco": 21408,
- "##enbach": 21409,
- "1766": 21410,
- "npr": 21411,
- "##icular": 21412,
- "boroughs": 21413,
- "creole": 21414,
- "forums": 21415,
- "techno": 21416,
- "1755": 21417,
- "dent": 21418,
- "abdominal": 21419,
- "streetcar": 21420,
- "##eson": 21421,
- "##stream": 21422,
- "procurement": 21423,
- "gemini": 21424,
- "predictable": 21425,
- "##tya": 21426,
- "acheron": 21427,
- "christoph": 21428,
- "feeder": 21429,
- "fronts": 21430,
- "vendor": 21431,
- "bernhard": 21432,
- "jammu": 21433,
- "tumors": 21434,
- "slang": 21435,
- "##uber": 21436,
- "goaltender": 21437,
- "twists": 21438,
- "curving": 21439,
- "manson": 21440,
- "vuelta": 21441,
- "mer": 21442,
- "peanut": 21443,
- "confessions": 21444,
- "pouch": 21445,
- "unpredictable": 21446,
- "allowance": 21447,
- "theodor": 21448,
- "vascular": 21449,
- "##factory": 21450,
- "bala": 21451,
- "authenticity": 21452,
- "metabolic": 21453,
- "coughing": 21454,
- "nanjing": 21455,
- "##cea": 21456,
- "pembroke": 21457,
- "##bard": 21458,
- "splendid": 21459,
- "36th": 21460,
- "ff": 21461,
- "hourly": 21462,
- "##ahu": 21463,
- "elmer": 21464,
- "handel": 21465,
- "##ivate": 21466,
- "awarding": 21467,
- "thrusting": 21468,
- "dl": 21469,
- "experimentation": 21470,
- "##hesion": 21471,
- "##46": 21472,
- "caressed": 21473,
- "entertained": 21474,
- "steak": 21475,
- "##rangle": 21476,
- "biologist": 21477,
- "orphans": 21478,
- "baroness": 21479,
- "oyster": 21480,
- "stepfather": 21481,
- "##dridge": 21482,
- "mirage": 21483,
- "reefs": 21484,
- "speeding": 21485,
- "##31": 21486,
- "barons": 21487,
- "1764": 21488,
- "227": 21489,
- "inhabit": 21490,
- "preached": 21491,
- "repealed": 21492,
- "##tral": 21493,
- "honoring": 21494,
- "boogie": 21495,
- "captives": 21496,
- "administer": 21497,
- "johanna": 21498,
- "##imate": 21499,
- "gel": 21500,
- "suspiciously": 21501,
- "1767": 21502,
- "sobs": 21503,
- "##dington": 21504,
- "backbone": 21505,
- "hayward": 21506,
- "garry": 21507,
- "##folding": 21508,
- "##nesia": 21509,
- "maxi": 21510,
- "##oof": 21511,
- "##ppe": 21512,
- "ellison": 21513,
- "galileo": 21514,
- "##stand": 21515,
- "crimea": 21516,
- "frenzy": 21517,
- "amour": 21518,
- "bumper": 21519,
- "matrices": 21520,
- "natalia": 21521,
- "baking": 21522,
- "garth": 21523,
- "palestinians": 21524,
- "##grove": 21525,
- "smack": 21526,
- "conveyed": 21527,
- "ensembles": 21528,
- "gardening": 21529,
- "##manship": 21530,
- "##rup": 21531,
- "##stituting": 21532,
- "1640": 21533,
- "harvesting": 21534,
- "topography": 21535,
- "jing": 21536,
- "shifters": 21537,
- "dormitory": 21538,
- "##carriage": 21539,
- "##lston": 21540,
- "ist": 21541,
- "skulls": 21542,
- "##stadt": 21543,
- "dolores": 21544,
- "jewellery": 21545,
- "sarawak": 21546,
- "##wai": 21547,
- "##zier": 21548,
- "fences": 21549,
- "christy": 21550,
- "confinement": 21551,
- "tumbling": 21552,
- "credibility": 21553,
- "fir": 21554,
- "stench": 21555,
- "##bria": 21556,
- "##plication": 21557,
- "##nged": 21558,
- "##sam": 21559,
- "virtues": 21560,
- "##belt": 21561,
- "marjorie": 21562,
- "pba": 21563,
- "##eem": 21564,
- "##made": 21565,
- "celebrates": 21566,
- "schooner": 21567,
- "agitated": 21568,
- "barley": 21569,
- "fulfilling": 21570,
- "anthropologist": 21571,
- "##pro": 21572,
- "restrict": 21573,
- "novi": 21574,
- "regulating": 21575,
- "##nent": 21576,
- "padres": 21577,
- "##rani": 21578,
- "##hesive": 21579,
- "loyola": 21580,
- "tabitha": 21581,
- "milky": 21582,
- "olson": 21583,
- "proprietor": 21584,
- "crambidae": 21585,
- "guarantees": 21586,
- "intercollegiate": 21587,
- "ljubljana": 21588,
- "hilda": 21589,
- "##sko": 21590,
- "ignorant": 21591,
- "hooded": 21592,
- "##lts": 21593,
- "sardinia": 21594,
- "##lidae": 21595,
- "##vation": 21596,
- "frontman": 21597,
- "privileged": 21598,
- "witchcraft": 21599,
- "##gp": 21600,
- "jammed": 21601,
- "laude": 21602,
- "poking": 21603,
- "##than": 21604,
- "bracket": 21605,
- "amazement": 21606,
- "yunnan": 21607,
- "##erus": 21608,
- "maharaja": 21609,
- "linnaeus": 21610,
- "264": 21611,
- "commissioning": 21612,
- "milano": 21613,
- "peacefully": 21614,
- "##logies": 21615,
- "akira": 21616,
- "rani": 21617,
- "regulator": 21618,
- "##36": 21619,
- "grasses": 21620,
- "##rance": 21621,
- "luzon": 21622,
- "crows": 21623,
- "compiler": 21624,
- "gretchen": 21625,
- "seaman": 21626,
- "edouard": 21627,
- "tab": 21628,
- "buccaneers": 21629,
- "ellington": 21630,
- "hamlets": 21631,
- "whig": 21632,
- "socialists": 21633,
- "##anto": 21634,
- "directorial": 21635,
- "easton": 21636,
- "mythological": 21637,
- "##kr": 21638,
- "##vary": 21639,
- "rhineland": 21640,
- "semantic": 21641,
- "taut": 21642,
- "dune": 21643,
- "inventions": 21644,
- "succeeds": 21645,
- "##iter": 21646,
- "replication": 21647,
- "branched": 21648,
- "##pired": 21649,
- "jul": 21650,
- "prosecuted": 21651,
- "kangaroo": 21652,
- "penetrated": 21653,
- "##avian": 21654,
- "middlesbrough": 21655,
- "doses": 21656,
- "bleak": 21657,
- "madam": 21658,
- "predatory": 21659,
- "relentless": 21660,
- "##vili": 21661,
- "reluctance": 21662,
- "##vir": 21663,
- "hailey": 21664,
- "crore": 21665,
- "silvery": 21666,
- "1759": 21667,
- "monstrous": 21668,
- "swimmers": 21669,
- "transmissions": 21670,
- "hawthorn": 21671,
- "informing": 21672,
- "##eral": 21673,
- "toilets": 21674,
- "caracas": 21675,
- "crouch": 21676,
- "kb": 21677,
- "##sett": 21678,
- "295": 21679,
- "cartel": 21680,
- "hadley": 21681,
- "##aling": 21682,
- "alexia": 21683,
- "yvonne": 21684,
- "##biology": 21685,
- "cinderella": 21686,
- "eton": 21687,
- "superb": 21688,
- "blizzard": 21689,
- "stabbing": 21690,
- "industrialist": 21691,
- "maximus": 21692,
- "##gm": 21693,
- "##orus": 21694,
- "groves": 21695,
- "maud": 21696,
- "clade": 21697,
- "oversized": 21698,
- "comedic": 21699,
- "##bella": 21700,
- "rosen": 21701,
- "nomadic": 21702,
- "fulham": 21703,
- "montane": 21704,
- "beverages": 21705,
- "galaxies": 21706,
- "redundant": 21707,
- "swarm": 21708,
- "##rot": 21709,
- "##folia": 21710,
- "##llis": 21711,
- "buckinghamshire": 21712,
- "fen": 21713,
- "bearings": 21714,
- "bahadur": 21715,
- "##rom": 21716,
- "gilles": 21717,
- "phased": 21718,
- "dynamite": 21719,
- "faber": 21720,
- "benoit": 21721,
- "vip": 21722,
- "##ount": 21723,
- "##wd": 21724,
- "booking": 21725,
- "fractured": 21726,
- "tailored": 21727,
- "anya": 21728,
- "spices": 21729,
- "westwood": 21730,
- "cairns": 21731,
- "auditions": 21732,
- "inflammation": 21733,
- "steamed": 21734,
- "##rocity": 21735,
- "##acion": 21736,
- "##urne": 21737,
- "skyla": 21738,
- "thereof": 21739,
- "watford": 21740,
- "torment": 21741,
- "archdeacon": 21742,
- "transforms": 21743,
- "lulu": 21744,
- "demeanor": 21745,
- "fucked": 21746,
- "serge": 21747,
- "##sor": 21748,
- "mckenna": 21749,
- "minas": 21750,
- "entertainer": 21751,
- "##icide": 21752,
- "caress": 21753,
- "originate": 21754,
- "residue": 21755,
- "##sty": 21756,
- "1740": 21757,
- "##ilised": 21758,
- "##org": 21759,
- "beech": 21760,
- "##wana": 21761,
- "subsidies": 21762,
- "##ghton": 21763,
- "emptied": 21764,
- "gladstone": 21765,
- "ru": 21766,
- "firefighters": 21767,
- "voodoo": 21768,
- "##rcle": 21769,
- "het": 21770,
- "nightingale": 21771,
- "tamara": 21772,
- "edmond": 21773,
- "ingredient": 21774,
- "weaknesses": 21775,
- "silhouette": 21776,
- "285": 21777,
- "compatibility": 21778,
- "withdrawing": 21779,
- "hampson": 21780,
- "##mona": 21781,
- "anguish": 21782,
- "giggling": 21783,
- "##mber": 21784,
- "bookstore": 21785,
- "##jiang": 21786,
- "southernmost": 21787,
- "tilting": 21788,
- "##vance": 21789,
- "bai": 21790,
- "economical": 21791,
- "rf": 21792,
- "briefcase": 21793,
- "dreadful": 21794,
- "hinted": 21795,
- "projections": 21796,
- "shattering": 21797,
- "totaling": 21798,
- "##rogate": 21799,
- "analogue": 21800,
- "indicted": 21801,
- "periodical": 21802,
- "fullback": 21803,
- "##dman": 21804,
- "haynes": 21805,
- "##tenberg": 21806,
- "##ffs": 21807,
- "##ishment": 21808,
- "1745": 21809,
- "thirst": 21810,
- "stumble": 21811,
- "penang": 21812,
- "vigorous": 21813,
- "##ddling": 21814,
- "##kor": 21815,
- "##lium": 21816,
- "octave": 21817,
- "##ove": 21818,
- "##enstein": 21819,
- "##inen": 21820,
- "##ones": 21821,
- "siberian": 21822,
- "##uti": 21823,
- "cbn": 21824,
- "repeal": 21825,
- "swaying": 21826,
- "##vington": 21827,
- "khalid": 21828,
- "tanaka": 21829,
- "unicorn": 21830,
- "otago": 21831,
- "plastered": 21832,
- "lobe": 21833,
- "riddle": 21834,
- "##rella": 21835,
- "perch": 21836,
- "##ishing": 21837,
- "croydon": 21838,
- "filtered": 21839,
- "graeme": 21840,
- "tripoli": 21841,
- "##ossa": 21842,
- "crocodile": 21843,
- "##chers": 21844,
- "sufi": 21845,
- "mined": 21846,
- "##tung": 21847,
- "inferno": 21848,
- "lsu": 21849,
- "##phi": 21850,
- "swelled": 21851,
- "utilizes": 21852,
- "£2": 21853,
- "cale": 21854,
- "periodicals": 21855,
- "styx": 21856,
- "hike": 21857,
- "informally": 21858,
- "coop": 21859,
- "lund": 21860,
- "##tidae": 21861,
- "ala": 21862,
- "hen": 21863,
- "qui": 21864,
- "transformations": 21865,
- "disposed": 21866,
- "sheath": 21867,
- "chickens": 21868,
- "##cade": 21869,
- "fitzroy": 21870,
- "sas": 21871,
- "silesia": 21872,
- "unacceptable": 21873,
- "odisha": 21874,
- "1650": 21875,
- "sabrina": 21876,
- "pe": 21877,
- "spokane": 21878,
- "ratios": 21879,
- "athena": 21880,
- "massage": 21881,
- "shen": 21882,
- "dilemma": 21883,
- "##drum": 21884,
- "##riz": 21885,
- "##hul": 21886,
- "corona": 21887,
- "doubtful": 21888,
- "niall": 21889,
- "##pha": 21890,
- "##bino": 21891,
- "fines": 21892,
- "cite": 21893,
- "acknowledging": 21894,
- "bangor": 21895,
- "ballard": 21896,
- "bathurst": 21897,
- "##resh": 21898,
- "huron": 21899,
- "mustered": 21900,
- "alzheimer": 21901,
- "garments": 21902,
- "kinase": 21903,
- "tyre": 21904,
- "warship": 21905,
- "##cp": 21906,
- "flashback": 21907,
- "pulmonary": 21908,
- "braun": 21909,
- "cheat": 21910,
- "kamal": 21911,
- "cyclists": 21912,
- "constructions": 21913,
- "grenades": 21914,
- "ndp": 21915,
- "traveller": 21916,
- "excuses": 21917,
- "stomped": 21918,
- "signalling": 21919,
- "trimmed": 21920,
- "futsal": 21921,
- "mosques": 21922,
- "relevance": 21923,
- "##wine": 21924,
- "wta": 21925,
- "##23": 21926,
- "##vah": 21927,
- "##lter": 21928,
- "hoc": 21929,
- "##riding": 21930,
- "optimistic": 21931,
- "##´s": 21932,
- "deco": 21933,
- "sim": 21934,
- "interacting": 21935,
- "rejecting": 21936,
- "moniker": 21937,
- "waterways": 21938,
- "##ieri": 21939,
- "##oku": 21940,
- "mayors": 21941,
- "gdansk": 21942,
- "outnumbered": 21943,
- "pearls": 21944,
- "##ended": 21945,
- "##hampton": 21946,
- "fairs": 21947,
- "totals": 21948,
- "dominating": 21949,
- "262": 21950,
- "notions": 21951,
- "stairway": 21952,
- "compiling": 21953,
- "pursed": 21954,
- "commodities": 21955,
- "grease": 21956,
- "yeast": 21957,
- "##jong": 21958,
- "carthage": 21959,
- "griffiths": 21960,
- "residual": 21961,
- "amc": 21962,
- "contraction": 21963,
- "laird": 21964,
- "sapphire": 21965,
- "##marine": 21966,
- "##ivated": 21967,
- "amalgamation": 21968,
- "dissolve": 21969,
- "inclination": 21970,
- "lyle": 21971,
- "packaged": 21972,
- "altitudes": 21973,
- "suez": 21974,
- "canons": 21975,
- "graded": 21976,
- "lurched": 21977,
- "narrowing": 21978,
- "boasts": 21979,
- "guise": 21980,
- "wed": 21981,
- "enrico": 21982,
- "##ovsky": 21983,
- "rower": 21984,
- "scarred": 21985,
- "bree": 21986,
- "cub": 21987,
- "iberian": 21988,
- "protagonists": 21989,
- "bargaining": 21990,
- "proposing": 21991,
- "trainers": 21992,
- "voyages": 21993,
- "vans": 21994,
- "fishes": 21995,
- "##aea": 21996,
- "##ivist": 21997,
- "##verance": 21998,
- "encryption": 21999,
- "artworks": 22000,
- "kazan": 22001,
- "sabre": 22002,
- "cleopatra": 22003,
- "hepburn": 22004,
- "rotting": 22005,
- "supremacy": 22006,
- "mecklenburg": 22007,
- "##brate": 22008,
- "burrows": 22009,
- "hazards": 22010,
- "outgoing": 22011,
- "flair": 22012,
- "organizes": 22013,
- "##ctions": 22014,
- "scorpion": 22015,
- "##usions": 22016,
- "boo": 22017,
- "234": 22018,
- "chevalier": 22019,
- "dunedin": 22020,
- "slapping": 22021,
- "##34": 22022,
- "ineligible": 22023,
- "pensions": 22024,
- "##38": 22025,
- "##omic": 22026,
- "manufactures": 22027,
- "emails": 22028,
- "bismarck": 22029,
- "238": 22030,
- "weakening": 22031,
- "blackish": 22032,
- "ding": 22033,
- "mcgee": 22034,
- "quo": 22035,
- "##rling": 22036,
- "northernmost": 22037,
- "xx": 22038,
- "manpower": 22039,
- "greed": 22040,
- "sampson": 22041,
- "clicking": 22042,
- "##ange": 22043,
- "##horpe": 22044,
- "##inations": 22045,
- "##roving": 22046,
- "torre": 22047,
- "##eptive": 22048,
- "##moral": 22049,
- "symbolism": 22050,
- "38th": 22051,
- "asshole": 22052,
- "meritorious": 22053,
- "outfits": 22054,
- "splashed": 22055,
- "biographies": 22056,
- "sprung": 22057,
- "astros": 22058,
- "##tale": 22059,
- "302": 22060,
- "737": 22061,
- "filly": 22062,
- "raoul": 22063,
- "nw": 22064,
- "tokugawa": 22065,
- "linden": 22066,
- "clubhouse": 22067,
- "##apa": 22068,
- "tracts": 22069,
- "romano": 22070,
- "##pio": 22071,
- "putin": 22072,
- "tags": 22073,
- "##note": 22074,
- "chained": 22075,
- "dickson": 22076,
- "gunshot": 22077,
- "moe": 22078,
- "gunn": 22079,
- "rashid": 22080,
- "##tails": 22081,
- "zipper": 22082,
- "##bas": 22083,
- "##nea": 22084,
- "contrasted": 22085,
- "##ply": 22086,
- "##udes": 22087,
- "plum": 22088,
- "pharaoh": 22089,
- "##pile": 22090,
- "aw": 22091,
- "comedies": 22092,
- "ingrid": 22093,
- "sandwiches": 22094,
- "subdivisions": 22095,
- "1100": 22096,
- "mariana": 22097,
- "nokia": 22098,
- "kamen": 22099,
- "hz": 22100,
- "delaney": 22101,
- "veto": 22102,
- "herring": 22103,
- "##words": 22104,
- "possessive": 22105,
- "outlines": 22106,
- "##roup": 22107,
- "siemens": 22108,
- "stairwell": 22109,
- "rc": 22110,
- "gallantry": 22111,
- "messiah": 22112,
- "palais": 22113,
- "yells": 22114,
- "233": 22115,
- "zeppelin": 22116,
- "##dm": 22117,
- "bolivar": 22118,
- "##cede": 22119,
- "smackdown": 22120,
- "mckinley": 22121,
- "##mora": 22122,
- "##yt": 22123,
- "muted": 22124,
- "geologic": 22125,
- "finely": 22126,
- "unitary": 22127,
- "avatar": 22128,
- "hamas": 22129,
- "maynard": 22130,
- "rees": 22131,
- "bog": 22132,
- "contrasting": 22133,
- "##rut": 22134,
- "liv": 22135,
- "chico": 22136,
- "disposition": 22137,
- "pixel": 22138,
- "##erate": 22139,
- "becca": 22140,
- "dmitry": 22141,
- "yeshiva": 22142,
- "narratives": 22143,
- "##lva": 22144,
- "##ulton": 22145,
- "mercenary": 22146,
- "sharpe": 22147,
- "tempered": 22148,
- "navigate": 22149,
- "stealth": 22150,
- "amassed": 22151,
- "keynes": 22152,
- "##lini": 22153,
- "untouched": 22154,
- "##rrie": 22155,
- "havoc": 22156,
- "lithium": 22157,
- "##fighting": 22158,
- "abyss": 22159,
- "graf": 22160,
- "southward": 22161,
- "wolverine": 22162,
- "balloons": 22163,
- "implements": 22164,
- "ngos": 22165,
- "transitions": 22166,
- "##icum": 22167,
- "ambushed": 22168,
- "concacaf": 22169,
- "dormant": 22170,
- "economists": 22171,
- "##dim": 22172,
- "costing": 22173,
- "csi": 22174,
- "rana": 22175,
- "universite": 22176,
- "boulders": 22177,
- "verity": 22178,
- "##llon": 22179,
- "collin": 22180,
- "mellon": 22181,
- "misses": 22182,
- "cypress": 22183,
- "fluorescent": 22184,
- "lifeless": 22185,
- "spence": 22186,
- "##ulla": 22187,
- "crewe": 22188,
- "shepard": 22189,
- "pak": 22190,
- "revelations": 22191,
- "##م": 22192,
- "jolly": 22193,
- "gibbons": 22194,
- "paw": 22195,
- "##dro": 22196,
- "##quel": 22197,
- "freeing": 22198,
- "##test": 22199,
- "shack": 22200,
- "fries": 22201,
- "palatine": 22202,
- "##51": 22203,
- "##hiko": 22204,
- "accompaniment": 22205,
- "cruising": 22206,
- "recycled": 22207,
- "##aver": 22208,
- "erwin": 22209,
- "sorting": 22210,
- "synthesizers": 22211,
- "dyke": 22212,
- "realities": 22213,
- "sg": 22214,
- "strides": 22215,
- "enslaved": 22216,
- "wetland": 22217,
- "##ghan": 22218,
- "competence": 22219,
- "gunpowder": 22220,
- "grassy": 22221,
- "maroon": 22222,
- "reactors": 22223,
- "objection": 22224,
- "##oms": 22225,
- "carlson": 22226,
- "gearbox": 22227,
- "macintosh": 22228,
- "radios": 22229,
- "shelton": 22230,
- "##sho": 22231,
- "clergyman": 22232,
- "prakash": 22233,
- "254": 22234,
- "mongols": 22235,
- "trophies": 22236,
- "oricon": 22237,
- "228": 22238,
- "stimuli": 22239,
- "twenty20": 22240,
- "cantonese": 22241,
- "cortes": 22242,
- "mirrored": 22243,
- "##saurus": 22244,
- "bhp": 22245,
- "cristina": 22246,
- "melancholy": 22247,
- "##lating": 22248,
- "enjoyable": 22249,
- "nuevo": 22250,
- "##wny": 22251,
- "downfall": 22252,
- "schumacher": 22253,
- "##ind": 22254,
- "banging": 22255,
- "lausanne": 22256,
- "rumbled": 22257,
- "paramilitary": 22258,
- "reflex": 22259,
- "ax": 22260,
- "amplitude": 22261,
- "migratory": 22262,
- "##gall": 22263,
- "##ups": 22264,
- "midi": 22265,
- "barnard": 22266,
- "lastly": 22267,
- "sherry": 22268,
- "##hp": 22269,
- "##nall": 22270,
- "keystone": 22271,
- "##kra": 22272,
- "carleton": 22273,
- "slippery": 22274,
- "##53": 22275,
- "coloring": 22276,
- "foe": 22277,
- "socket": 22278,
- "otter": 22279,
- "##rgos": 22280,
- "mats": 22281,
- "##tose": 22282,
- "consultants": 22283,
- "bafta": 22284,
- "bison": 22285,
- "topping": 22286,
- "##km": 22287,
- "490": 22288,
- "primal": 22289,
- "abandonment": 22290,
- "transplant": 22291,
- "atoll": 22292,
- "hideous": 22293,
- "mort": 22294,
- "pained": 22295,
- "reproduced": 22296,
- "tae": 22297,
- "howling": 22298,
- "##turn": 22299,
- "unlawful": 22300,
- "billionaire": 22301,
- "hotter": 22302,
- "poised": 22303,
- "lansing": 22304,
- "##chang": 22305,
- "dinamo": 22306,
- "retro": 22307,
- "messing": 22308,
- "nfc": 22309,
- "domesday": 22310,
- "##mina": 22311,
- "blitz": 22312,
- "timed": 22313,
- "##athing": 22314,
- "##kley": 22315,
- "ascending": 22316,
- "gesturing": 22317,
- "##izations": 22318,
- "signaled": 22319,
- "tis": 22320,
- "chinatown": 22321,
- "mermaid": 22322,
- "savanna": 22323,
- "jameson": 22324,
- "##aint": 22325,
- "catalina": 22326,
- "##pet": 22327,
- "##hers": 22328,
- "cochrane": 22329,
- "cy": 22330,
- "chatting": 22331,
- "##kus": 22332,
- "alerted": 22333,
- "computation": 22334,
- "mused": 22335,
- "noelle": 22336,
- "majestic": 22337,
- "mohawk": 22338,
- "campo": 22339,
- "octagonal": 22340,
- "##sant": 22341,
- "##hend": 22342,
- "241": 22343,
- "aspiring": 22344,
- "##mart": 22345,
- "comprehend": 22346,
- "iona": 22347,
- "paralyzed": 22348,
- "shimmering": 22349,
- "swindon": 22350,
- "rhone": 22351,
- "##eley": 22352,
- "reputed": 22353,
- "configurations": 22354,
- "pitchfork": 22355,
- "agitation": 22356,
- "francais": 22357,
- "gillian": 22358,
- "lipstick": 22359,
- "##ilo": 22360,
- "outsiders": 22361,
- "pontifical": 22362,
- "resisting": 22363,
- "bitterness": 22364,
- "sewer": 22365,
- "rockies": 22366,
- "##edd": 22367,
- "##ucher": 22368,
- "misleading": 22369,
- "1756": 22370,
- "exiting": 22371,
- "galloway": 22372,
- "##nging": 22373,
- "risked": 22374,
- "##heart": 22375,
- "246": 22376,
- "commemoration": 22377,
- "schultz": 22378,
- "##rka": 22379,
- "integrating": 22380,
- "##rsa": 22381,
- "poses": 22382,
- "shrieked": 22383,
- "##weiler": 22384,
- "guineas": 22385,
- "gladys": 22386,
- "jerking": 22387,
- "owls": 22388,
- "goldsmith": 22389,
- "nightly": 22390,
- "penetrating": 22391,
- "##unced": 22392,
- "lia": 22393,
- "##33": 22394,
- "ignited": 22395,
- "betsy": 22396,
- "##aring": 22397,
- "##thorpe": 22398,
- "follower": 22399,
- "vigorously": 22400,
- "##rave": 22401,
- "coded": 22402,
- "kiran": 22403,
- "knit": 22404,
- "zoology": 22405,
- "tbilisi": 22406,
- "##28": 22407,
- "##bered": 22408,
- "repository": 22409,
- "govt": 22410,
- "deciduous": 22411,
- "dino": 22412,
- "growling": 22413,
- "##bba": 22414,
- "enhancement": 22415,
- "unleashed": 22416,
- "chanting": 22417,
- "pussy": 22418,
- "biochemistry": 22419,
- "##eric": 22420,
- "kettle": 22421,
- "repression": 22422,
- "toxicity": 22423,
- "nrhp": 22424,
- "##arth": 22425,
- "##kko": 22426,
- "##bush": 22427,
- "ernesto": 22428,
- "commended": 22429,
- "outspoken": 22430,
- "242": 22431,
- "mca": 22432,
- "parchment": 22433,
- "sms": 22434,
- "kristen": 22435,
- "##aton": 22436,
- "bisexual": 22437,
- "raked": 22438,
- "glamour": 22439,
- "navajo": 22440,
- "a2": 22441,
- "conditioned": 22442,
- "showcased": 22443,
- "##hma": 22444,
- "spacious": 22445,
- "youthful": 22446,
- "##esa": 22447,
- "usl": 22448,
- "appliances": 22449,
- "junta": 22450,
- "brest": 22451,
- "layne": 22452,
- "conglomerate": 22453,
- "enchanted": 22454,
- "chao": 22455,
- "loosened": 22456,
- "picasso": 22457,
- "circulating": 22458,
- "inspect": 22459,
- "montevideo": 22460,
- "##centric": 22461,
- "##kti": 22462,
- "piazza": 22463,
- "spurred": 22464,
- "##aith": 22465,
- "bari": 22466,
- "freedoms": 22467,
- "poultry": 22468,
- "stamford": 22469,
- "lieu": 22470,
- "##ect": 22471,
- "indigo": 22472,
- "sarcastic": 22473,
- "bahia": 22474,
- "stump": 22475,
- "attach": 22476,
- "dvds": 22477,
- "frankenstein": 22478,
- "lille": 22479,
- "approx": 22480,
- "scriptures": 22481,
- "pollen": 22482,
- "##script": 22483,
- "nmi": 22484,
- "overseen": 22485,
- "##ivism": 22486,
- "tides": 22487,
- "proponent": 22488,
- "newmarket": 22489,
- "inherit": 22490,
- "milling": 22491,
- "##erland": 22492,
- "centralized": 22493,
- "##rou": 22494,
- "distributors": 22495,
- "credentials": 22496,
- "drawers": 22497,
- "abbreviation": 22498,
- "##lco": 22499,
- "##xon": 22500,
- "downing": 22501,
- "uncomfortably": 22502,
- "ripe": 22503,
- "##oes": 22504,
- "erase": 22505,
- "franchises": 22506,
- "##ever": 22507,
- "populace": 22508,
- "##bery": 22509,
- "##khar": 22510,
- "decomposition": 22511,
- "pleas": 22512,
- "##tet": 22513,
- "daryl": 22514,
- "sabah": 22515,
- "##stle": 22516,
- "##wide": 22517,
- "fearless": 22518,
- "genie": 22519,
- "lesions": 22520,
- "annette": 22521,
- "##ogist": 22522,
- "oboe": 22523,
- "appendix": 22524,
- "nair": 22525,
- "dripped": 22526,
- "petitioned": 22527,
- "maclean": 22528,
- "mosquito": 22529,
- "parrot": 22530,
- "rpg": 22531,
- "hampered": 22532,
- "1648": 22533,
- "operatic": 22534,
- "reservoirs": 22535,
- "##tham": 22536,
- "irrelevant": 22537,
- "jolt": 22538,
- "summarized": 22539,
- "##fp": 22540,
- "medallion": 22541,
- "##taff": 22542,
- "##−": 22543,
- "clawed": 22544,
- "harlow": 22545,
- "narrower": 22546,
- "goddard": 22547,
- "marcia": 22548,
- "bodied": 22549,
- "fremont": 22550,
- "suarez": 22551,
- "altering": 22552,
- "tempest": 22553,
- "mussolini": 22554,
- "porn": 22555,
- "##isms": 22556,
- "sweetly": 22557,
- "oversees": 22558,
- "walkers": 22559,
- "solitude": 22560,
- "grimly": 22561,
- "shrines": 22562,
- "hk": 22563,
- "ich": 22564,
- "supervisors": 22565,
- "hostess": 22566,
- "dietrich": 22567,
- "legitimacy": 22568,
- "brushes": 22569,
- "expressive": 22570,
- "##yp": 22571,
- "dissipated": 22572,
- "##rse": 22573,
- "localized": 22574,
- "systemic": 22575,
- "##nikov": 22576,
- "gettysburg": 22577,
- "##js": 22578,
- "##uaries": 22579,
- "dialogues": 22580,
- "muttering": 22581,
- "251": 22582,
- "housekeeper": 22583,
- "sicilian": 22584,
- "discouraged": 22585,
- "##frey": 22586,
- "beamed": 22587,
- "kaladin": 22588,
- "halftime": 22589,
- "kidnap": 22590,
- "##amo": 22591,
- "##llet": 22592,
- "1754": 22593,
- "synonymous": 22594,
- "depleted": 22595,
- "instituto": 22596,
- "insulin": 22597,
- "reprised": 22598,
- "##opsis": 22599,
- "clashed": 22600,
- "##ctric": 22601,
- "interrupting": 22602,
- "radcliffe": 22603,
- "insisting": 22604,
- "medici": 22605,
- "1715": 22606,
- "ejected": 22607,
- "playfully": 22608,
- "turbulent": 22609,
- "##47": 22610,
- "starvation": 22611,
- "##rini": 22612,
- "shipment": 22613,
- "rebellious": 22614,
- "petersen": 22615,
- "verification": 22616,
- "merits": 22617,
- "##rified": 22618,
- "cakes": 22619,
- "##charged": 22620,
- "1757": 22621,
- "milford": 22622,
- "shortages": 22623,
- "spying": 22624,
- "fidelity": 22625,
- "##aker": 22626,
- "emitted": 22627,
- "storylines": 22628,
- "harvested": 22629,
- "seismic": 22630,
- "##iform": 22631,
- "cheung": 22632,
- "kilda": 22633,
- "theoretically": 22634,
- "barbie": 22635,
- "lynx": 22636,
- "##rgy": 22637,
- "##tius": 22638,
- "goblin": 22639,
- "mata": 22640,
- "poisonous": 22641,
- "##nburg": 22642,
- "reactive": 22643,
- "residues": 22644,
- "obedience": 22645,
- "##евич": 22646,
- "conjecture": 22647,
- "##rac": 22648,
- "401": 22649,
- "hating": 22650,
- "sixties": 22651,
- "kicker": 22652,
- "moaning": 22653,
- "motown": 22654,
- "##bha": 22655,
- "emancipation": 22656,
- "neoclassical": 22657,
- "##hering": 22658,
- "consoles": 22659,
- "ebert": 22660,
- "professorship": 22661,
- "##tures": 22662,
- "sustaining": 22663,
- "assaults": 22664,
- "obeyed": 22665,
- "affluent": 22666,
- "incurred": 22667,
- "tornadoes": 22668,
- "##eber": 22669,
- "##zow": 22670,
- "emphasizing": 22671,
- "highlanders": 22672,
- "cheated": 22673,
- "helmets": 22674,
- "##ctus": 22675,
- "internship": 22676,
- "terence": 22677,
- "bony": 22678,
- "executions": 22679,
- "legislators": 22680,
- "berries": 22681,
- "peninsular": 22682,
- "tinged": 22683,
- "##aco": 22684,
- "1689": 22685,
- "amplifier": 22686,
- "corvette": 22687,
- "ribbons": 22688,
- "lavish": 22689,
- "pennant": 22690,
- "##lander": 22691,
- "worthless": 22692,
- "##chfield": 22693,
- "##forms": 22694,
- "mariano": 22695,
- "pyrenees": 22696,
- "expenditures": 22697,
- "##icides": 22698,
- "chesterfield": 22699,
- "mandir": 22700,
- "tailor": 22701,
- "39th": 22702,
- "sergey": 22703,
- "nestled": 22704,
- "willed": 22705,
- "aristocracy": 22706,
- "devotees": 22707,
- "goodnight": 22708,
- "raaf": 22709,
- "rumored": 22710,
- "weaponry": 22711,
- "remy": 22712,
- "appropriations": 22713,
- "harcourt": 22714,
- "burr": 22715,
- "riaa": 22716,
- "##lence": 22717,
- "limitation": 22718,
- "unnoticed": 22719,
- "guo": 22720,
- "soaking": 22721,
- "swamps": 22722,
- "##tica": 22723,
- "collapsing": 22724,
- "tatiana": 22725,
- "descriptive": 22726,
- "brigham": 22727,
- "psalm": 22728,
- "##chment": 22729,
- "maddox": 22730,
- "##lization": 22731,
- "patti": 22732,
- "caliph": 22733,
- "##aja": 22734,
- "akron": 22735,
- "injuring": 22736,
- "serra": 22737,
- "##ganj": 22738,
- "basins": 22739,
- "##sari": 22740,
- "astonished": 22741,
- "launcher": 22742,
- "##church": 22743,
- "hilary": 22744,
- "wilkins": 22745,
- "sewing": 22746,
- "##sf": 22747,
- "stinging": 22748,
- "##fia": 22749,
- "##ncia": 22750,
- "underwood": 22751,
- "startup": 22752,
- "##ition": 22753,
- "compilations": 22754,
- "vibrations": 22755,
- "embankment": 22756,
- "jurist": 22757,
- "##nity": 22758,
- "bard": 22759,
- "juventus": 22760,
- "groundwater": 22761,
- "kern": 22762,
- "palaces": 22763,
- "helium": 22764,
- "boca": 22765,
- "cramped": 22766,
- "marissa": 22767,
- "soto": 22768,
- "##worm": 22769,
- "jae": 22770,
- "princely": 22771,
- "##ggy": 22772,
- "faso": 22773,
- "bazaar": 22774,
- "warmly": 22775,
- "##voking": 22776,
- "229": 22777,
- "pairing": 22778,
- "##lite": 22779,
- "##grate": 22780,
- "##nets": 22781,
- "wien": 22782,
- "freaked": 22783,
- "ulysses": 22784,
- "rebirth": 22785,
- "##alia": 22786,
- "##rent": 22787,
- "mummy": 22788,
- "guzman": 22789,
- "jimenez": 22790,
- "stilled": 22791,
- "##nitz": 22792,
- "trajectory": 22793,
- "tha": 22794,
- "woken": 22795,
- "archival": 22796,
- "professions": 22797,
- "##pts": 22798,
- "##pta": 22799,
- "hilly": 22800,
- "shadowy": 22801,
- "shrink": 22802,
- "##bolt": 22803,
- "norwood": 22804,
- "glued": 22805,
- "migrate": 22806,
- "stereotypes": 22807,
- "devoid": 22808,
- "##pheus": 22809,
- "625": 22810,
- "evacuate": 22811,
- "horrors": 22812,
- "infancy": 22813,
- "gotham": 22814,
- "knowles": 22815,
- "optic": 22816,
- "downloaded": 22817,
- "sachs": 22818,
- "kingsley": 22819,
- "parramatta": 22820,
- "darryl": 22821,
- "mor": 22822,
- "##onale": 22823,
- "shady": 22824,
- "commence": 22825,
- "confesses": 22826,
- "kan": 22827,
- "##meter": 22828,
- "##placed": 22829,
- "marlborough": 22830,
- "roundabout": 22831,
- "regents": 22832,
- "frigates": 22833,
- "io": 22834,
- "##imating": 22835,
- "gothenburg": 22836,
- "revoked": 22837,
- "carvings": 22838,
- "clockwise": 22839,
- "convertible": 22840,
- "intruder": 22841,
- "##sche": 22842,
- "banged": 22843,
- "##ogo": 22844,
- "vicky": 22845,
- "bourgeois": 22846,
- "##mony": 22847,
- "dupont": 22848,
- "footing": 22849,
- "##gum": 22850,
- "pd": 22851,
- "##real": 22852,
- "buckle": 22853,
- "yun": 22854,
- "penthouse": 22855,
- "sane": 22856,
- "720": 22857,
- "serviced": 22858,
- "stakeholders": 22859,
- "neumann": 22860,
- "bb": 22861,
- "##eers": 22862,
- "comb": 22863,
- "##gam": 22864,
- "catchment": 22865,
- "pinning": 22866,
- "rallies": 22867,
- "typing": 22868,
- "##elles": 22869,
- "forefront": 22870,
- "freiburg": 22871,
- "sweetie": 22872,
- "giacomo": 22873,
- "widowed": 22874,
- "goodwill": 22875,
- "worshipped": 22876,
- "aspirations": 22877,
- "midday": 22878,
- "##vat": 22879,
- "fishery": 22880,
- "##trick": 22881,
- "bournemouth": 22882,
- "turk": 22883,
- "243": 22884,
- "hearth": 22885,
- "ethanol": 22886,
- "guadalajara": 22887,
- "murmurs": 22888,
- "sl": 22889,
- "##uge": 22890,
- "afforded": 22891,
- "scripted": 22892,
- "##hta": 22893,
- "wah": 22894,
- "##jn": 22895,
- "coroner": 22896,
- "translucent": 22897,
- "252": 22898,
- "memorials": 22899,
- "puck": 22900,
- "progresses": 22901,
- "clumsy": 22902,
- "##race": 22903,
- "315": 22904,
- "candace": 22905,
- "recounted": 22906,
- "##27": 22907,
- "##slin": 22908,
- "##uve": 22909,
- "filtering": 22910,
- "##mac": 22911,
- "howl": 22912,
- "strata": 22913,
- "heron": 22914,
- "leveled": 22915,
- "##ays": 22916,
- "dubious": 22917,
- "##oja": 22918,
- "##т": 22919,
- "##wheel": 22920,
- "citations": 22921,
- "exhibiting": 22922,
- "##laya": 22923,
- "##mics": 22924,
- "##pods": 22925,
- "turkic": 22926,
- "##lberg": 22927,
- "injunction": 22928,
- "##ennial": 22929,
- "##mit": 22930,
- "antibodies": 22931,
- "##44": 22932,
- "organise": 22933,
- "##rigues": 22934,
- "cardiovascular": 22935,
- "cushion": 22936,
- "inverness": 22937,
- "##zquez": 22938,
- "dia": 22939,
- "cocoa": 22940,
- "sibling": 22941,
- "##tman": 22942,
- "##roid": 22943,
- "expanse": 22944,
- "feasible": 22945,
- "tunisian": 22946,
- "algiers": 22947,
- "##relli": 22948,
- "rus": 22949,
- "bloomberg": 22950,
- "dso": 22951,
- "westphalia": 22952,
- "bro": 22953,
- "tacoma": 22954,
- "281": 22955,
- "downloads": 22956,
- "##ours": 22957,
- "konrad": 22958,
- "duran": 22959,
- "##hdi": 22960,
- "continuum": 22961,
- "jett": 22962,
- "compares": 22963,
- "legislator": 22964,
- "secession": 22965,
- "##nable": 22966,
- "##gues": 22967,
- "##zuka": 22968,
- "translating": 22969,
- "reacher": 22970,
- "##gley": 22971,
- "##ła": 22972,
- "aleppo": 22973,
- "##agi": 22974,
- "tc": 22975,
- "orchards": 22976,
- "trapping": 22977,
- "linguist": 22978,
- "versatile": 22979,
- "drumming": 22980,
- "postage": 22981,
- "calhoun": 22982,
- "superiors": 22983,
- "##mx": 22984,
- "barefoot": 22985,
- "leary": 22986,
- "##cis": 22987,
- "ignacio": 22988,
- "alfa": 22989,
- "kaplan": 22990,
- "##rogen": 22991,
- "bratislava": 22992,
- "mori": 22993,
- "##vot": 22994,
- "disturb": 22995,
- "haas": 22996,
- "313": 22997,
- "cartridges": 22998,
- "gilmore": 22999,
- "radiated": 23000,
- "salford": 23001,
- "tunic": 23002,
- "hades": 23003,
- "##ulsive": 23004,
- "archeological": 23005,
- "delilah": 23006,
- "magistrates": 23007,
- "auditioned": 23008,
- "brewster": 23009,
- "charters": 23010,
- "empowerment": 23011,
- "blogs": 23012,
- "cappella": 23013,
- "dynasties": 23014,
- "iroquois": 23015,
- "whipping": 23016,
- "##krishna": 23017,
- "raceway": 23018,
- "truths": 23019,
- "myra": 23020,
- "weaken": 23021,
- "judah": 23022,
- "mcgregor": 23023,
- "##horse": 23024,
- "mic": 23025,
- "refueling": 23026,
- "37th": 23027,
- "burnley": 23028,
- "bosses": 23029,
- "markus": 23030,
- "premio": 23031,
- "query": 23032,
- "##gga": 23033,
- "dunbar": 23034,
- "##economic": 23035,
- "darkest": 23036,
- "lyndon": 23037,
- "sealing": 23038,
- "commendation": 23039,
- "reappeared": 23040,
- "##mun": 23041,
- "addicted": 23042,
- "ezio": 23043,
- "slaughtered": 23044,
- "satisfactory": 23045,
- "shuffle": 23046,
- "##eves": 23047,
- "##thic": 23048,
- "##uj": 23049,
- "fortification": 23050,
- "warrington": 23051,
- "##otto": 23052,
- "resurrected": 23053,
- "fargo": 23054,
- "mane": 23055,
- "##utable": 23056,
- "##lei": 23057,
- "##space": 23058,
- "foreword": 23059,
- "ox": 23060,
- "##aris": 23061,
- "##vern": 23062,
- "abrams": 23063,
- "hua": 23064,
- "##mento": 23065,
- "sakura": 23066,
- "##alo": 23067,
- "uv": 23068,
- "sentimental": 23069,
- "##skaya": 23070,
- "midfield": 23071,
- "##eses": 23072,
- "sturdy": 23073,
- "scrolls": 23074,
- "macleod": 23075,
- "##kyu": 23076,
- "entropy": 23077,
- "##lance": 23078,
- "mitochondrial": 23079,
- "cicero": 23080,
- "excelled": 23081,
- "thinner": 23082,
- "convoys": 23083,
- "perceive": 23084,
- "##oslav": 23085,
- "##urable": 23086,
- "systematically": 23087,
- "grind": 23088,
- "burkina": 23089,
- "287": 23090,
- "##tagram": 23091,
- "ops": 23092,
- "##aman": 23093,
- "guantanamo": 23094,
- "##cloth": 23095,
- "##tite": 23096,
- "forcefully": 23097,
- "wavy": 23098,
- "##jou": 23099,
- "pointless": 23100,
- "##linger": 23101,
- "##tze": 23102,
- "layton": 23103,
- "portico": 23104,
- "superficial": 23105,
- "clerical": 23106,
- "outlaws": 23107,
- "##hism": 23108,
- "burials": 23109,
- "muir": 23110,
- "##inn": 23111,
- "creditors": 23112,
- "hauling": 23113,
- "rattle": 23114,
- "##leg": 23115,
- "calais": 23116,
- "monde": 23117,
- "archers": 23118,
- "reclaimed": 23119,
- "dwell": 23120,
- "wexford": 23121,
- "hellenic": 23122,
- "falsely": 23123,
- "remorse": 23124,
- "##tek": 23125,
- "dough": 23126,
- "furnishings": 23127,
- "##uttered": 23128,
- "gabon": 23129,
- "neurological": 23130,
- "novice": 23131,
- "##igraphy": 23132,
- "contemplated": 23133,
- "pulpit": 23134,
- "nightstand": 23135,
- "saratoga": 23136,
- "##istan": 23137,
- "documenting": 23138,
- "pulsing": 23139,
- "taluk": 23140,
- "##firmed": 23141,
- "busted": 23142,
- "marital": 23143,
- "##rien": 23144,
- "disagreements": 23145,
- "wasps": 23146,
- "##yes": 23147,
- "hodge": 23148,
- "mcdonnell": 23149,
- "mimic": 23150,
- "fran": 23151,
- "pendant": 23152,
- "dhabi": 23153,
- "musa": 23154,
- "##nington": 23155,
- "congratulations": 23156,
- "argent": 23157,
- "darrell": 23158,
- "concussion": 23159,
- "losers": 23160,
- "regrets": 23161,
- "thessaloniki": 23162,
- "reversal": 23163,
- "donaldson": 23164,
- "hardwood": 23165,
- "thence": 23166,
- "achilles": 23167,
- "ritter": 23168,
- "##eran": 23169,
- "demonic": 23170,
- "jurgen": 23171,
- "prophets": 23172,
- "goethe": 23173,
- "eki": 23174,
- "classmate": 23175,
- "buff": 23176,
- "##cking": 23177,
- "yank": 23178,
- "irrational": 23179,
- "##inging": 23180,
- "perished": 23181,
- "seductive": 23182,
- "qur": 23183,
- "sourced": 23184,
- "##crat": 23185,
- "##typic": 23186,
- "mustard": 23187,
- "ravine": 23188,
- "barre": 23189,
- "horizontally": 23190,
- "characterization": 23191,
- "phylogenetic": 23192,
- "boise": 23193,
- "##dit": 23194,
- "##runner": 23195,
- "##tower": 23196,
- "brutally": 23197,
- "intercourse": 23198,
- "seduce": 23199,
- "##bbing": 23200,
- "fay": 23201,
- "ferris": 23202,
- "ogden": 23203,
- "amar": 23204,
- "nik": 23205,
- "unarmed": 23206,
- "##inator": 23207,
- "evaluating": 23208,
- "kyrgyzstan": 23209,
- "sweetness": 23210,
- "##lford": 23211,
- "##oki": 23212,
- "mccormick": 23213,
- "meiji": 23214,
- "notoriety": 23215,
- "stimulate": 23216,
- "disrupt": 23217,
- "figuring": 23218,
- "instructional": 23219,
- "mcgrath": 23220,
- "##zoo": 23221,
- "groundbreaking": 23222,
- "##lto": 23223,
- "flinch": 23224,
- "khorasan": 23225,
- "agrarian": 23226,
- "bengals": 23227,
- "mixer": 23228,
- "radiating": 23229,
- "##sov": 23230,
- "ingram": 23231,
- "pitchers": 23232,
- "nad": 23233,
- "tariff": 23234,
- "##cript": 23235,
- "tata": 23236,
- "##codes": 23237,
- "##emi": 23238,
- "##ungen": 23239,
- "appellate": 23240,
- "lehigh": 23241,
- "##bled": 23242,
- "##giri": 23243,
- "brawl": 23244,
- "duct": 23245,
- "texans": 23246,
- "##ciation": 23247,
- "##ropolis": 23248,
- "skipper": 23249,
- "speculative": 23250,
- "vomit": 23251,
- "doctrines": 23252,
- "stresses": 23253,
- "253": 23254,
- "davy": 23255,
- "graders": 23256,
- "whitehead": 23257,
- "jozef": 23258,
- "timely": 23259,
- "cumulative": 23260,
- "haryana": 23261,
- "paints": 23262,
- "appropriately": 23263,
- "boon": 23264,
- "cactus": 23265,
- "##ales": 23266,
- "##pid": 23267,
- "dow": 23268,
- "legions": 23269,
- "##pit": 23270,
- "perceptions": 23271,
- "1730": 23272,
- "picturesque": 23273,
- "##yse": 23274,
- "periphery": 23275,
- "rune": 23276,
- "wr": 23277,
- "##aha": 23278,
- "celtics": 23279,
- "sentencing": 23280,
- "whoa": 23281,
- "##erin": 23282,
- "confirms": 23283,
- "variance": 23284,
- "425": 23285,
- "moines": 23286,
- "mathews": 23287,
- "spade": 23288,
- "rave": 23289,
- "m1": 23290,
- "fronted": 23291,
- "fx": 23292,
- "blending": 23293,
- "alleging": 23294,
- "reared": 23295,
- "##gl": 23296,
- "237": 23297,
- "##paper": 23298,
- "grassroots": 23299,
- "eroded": 23300,
- "##free": 23301,
- "##physical": 23302,
- "directs": 23303,
- "ordeal": 23304,
- "##sław": 23305,
- "accelerate": 23306,
- "hacker": 23307,
- "rooftop": 23308,
- "##inia": 23309,
- "lev": 23310,
- "buys": 23311,
- "cebu": 23312,
- "devote": 23313,
- "##lce": 23314,
- "specialising": 23315,
- "##ulsion": 23316,
- "choreographed": 23317,
- "repetition": 23318,
- "warehouses": 23319,
- "##ryl": 23320,
- "paisley": 23321,
- "tuscany": 23322,
- "analogy": 23323,
- "sorcerer": 23324,
- "hash": 23325,
- "huts": 23326,
- "shards": 23327,
- "descends": 23328,
- "exclude": 23329,
- "nix": 23330,
- "chaplin": 23331,
- "gaga": 23332,
- "ito": 23333,
- "vane": 23334,
- "##drich": 23335,
- "causeway": 23336,
- "misconduct": 23337,
- "limo": 23338,
- "orchestrated": 23339,
- "glands": 23340,
- "jana": 23341,
- "##kot": 23342,
- "u2": 23343,
- "##mple": 23344,
- "##sons": 23345,
- "branching": 23346,
- "contrasts": 23347,
- "scoop": 23348,
- "longed": 23349,
- "##virus": 23350,
- "chattanooga": 23351,
- "##75": 23352,
- "syrup": 23353,
- "cornerstone": 23354,
- "##tized": 23355,
- "##mind": 23356,
- "##iaceae": 23357,
- "careless": 23358,
- "precedence": 23359,
- "frescoes": 23360,
- "##uet": 23361,
- "chilled": 23362,
- "consult": 23363,
- "modelled": 23364,
- "snatch": 23365,
- "peat": 23366,
- "##thermal": 23367,
- "caucasian": 23368,
- "humane": 23369,
- "relaxation": 23370,
- "spins": 23371,
- "temperance": 23372,
- "##lbert": 23373,
- "occupations": 23374,
- "lambda": 23375,
- "hybrids": 23376,
- "moons": 23377,
- "mp3": 23378,
- "##oese": 23379,
- "247": 23380,
- "rolf": 23381,
- "societal": 23382,
- "yerevan": 23383,
- "ness": 23384,
- "##ssler": 23385,
- "befriended": 23386,
- "mechanized": 23387,
- "nominate": 23388,
- "trough": 23389,
- "boasted": 23390,
- "cues": 23391,
- "seater": 23392,
- "##hom": 23393,
- "bends": 23394,
- "##tangle": 23395,
- "conductors": 23396,
- "emptiness": 23397,
- "##lmer": 23398,
- "eurasian": 23399,
- "adriatic": 23400,
- "tian": 23401,
- "##cie": 23402,
- "anxiously": 23403,
- "lark": 23404,
- "propellers": 23405,
- "chichester": 23406,
- "jock": 23407,
- "ev": 23408,
- "2a": 23409,
- "##holding": 23410,
- "credible": 23411,
- "recounts": 23412,
- "tori": 23413,
- "loyalist": 23414,
- "abduction": 23415,
- "##hoot": 23416,
- "##redo": 23417,
- "nepali": 23418,
- "##mite": 23419,
- "ventral": 23420,
- "tempting": 23421,
- "##ango": 23422,
- "##crats": 23423,
- "steered": 23424,
- "##wice": 23425,
- "javelin": 23426,
- "dipping": 23427,
- "laborers": 23428,
- "prentice": 23429,
- "looming": 23430,
- "titanium": 23431,
- "##ː": 23432,
- "badges": 23433,
- "emir": 23434,
- "tensor": 23435,
- "##ntation": 23436,
- "egyptians": 23437,
- "rash": 23438,
- "denies": 23439,
- "hawthorne": 23440,
- "lombard": 23441,
- "showers": 23442,
- "wehrmacht": 23443,
- "dietary": 23444,
- "trojan": 23445,
- "##reus": 23446,
- "welles": 23447,
- "executing": 23448,
- "horseshoe": 23449,
- "lifeboat": 23450,
- "##lak": 23451,
- "elsa": 23452,
- "infirmary": 23453,
- "nearing": 23454,
- "roberta": 23455,
- "boyer": 23456,
- "mutter": 23457,
- "trillion": 23458,
- "joanne": 23459,
- "##fine": 23460,
- "##oked": 23461,
- "sinks": 23462,
- "vortex": 23463,
- "uruguayan": 23464,
- "clasp": 23465,
- "sirius": 23466,
- "##block": 23467,
- "accelerator": 23468,
- "prohibit": 23469,
- "sunken": 23470,
- "byu": 23471,
- "chronological": 23472,
- "diplomats": 23473,
- "ochreous": 23474,
- "510": 23475,
- "symmetrical": 23476,
- "1644": 23477,
- "maia": 23478,
- "##tology": 23479,
- "salts": 23480,
- "reigns": 23481,
- "atrocities": 23482,
- "##ия": 23483,
- "hess": 23484,
- "bared": 23485,
- "issn": 23486,
- "##vyn": 23487,
- "cater": 23488,
- "saturated": 23489,
- "##cycle": 23490,
- "##isse": 23491,
- "sable": 23492,
- "voyager": 23493,
- "dyer": 23494,
- "yusuf": 23495,
- "##inge": 23496,
- "fountains": 23497,
- "wolff": 23498,
- "##39": 23499,
- "##nni": 23500,
- "engraving": 23501,
- "rollins": 23502,
- "atheist": 23503,
- "ominous": 23504,
- "##ault": 23505,
- "herr": 23506,
- "chariot": 23507,
- "martina": 23508,
- "strung": 23509,
- "##fell": 23510,
- "##farlane": 23511,
- "horrific": 23512,
- "sahib": 23513,
- "gazes": 23514,
- "saetan": 23515,
- "erased": 23516,
- "ptolemy": 23517,
- "##olic": 23518,
- "flushing": 23519,
- "lauderdale": 23520,
- "analytic": 23521,
- "##ices": 23522,
- "530": 23523,
- "navarro": 23524,
- "beak": 23525,
- "gorilla": 23526,
- "herrera": 23527,
- "broom": 23528,
- "guadalupe": 23529,
- "raiding": 23530,
- "sykes": 23531,
- "311": 23532,
- "bsc": 23533,
- "deliveries": 23534,
- "1720": 23535,
- "invasions": 23536,
- "carmichael": 23537,
- "tajikistan": 23538,
- "thematic": 23539,
- "ecumenical": 23540,
- "sentiments": 23541,
- "onstage": 23542,
- "##rians": 23543,
- "##brand": 23544,
- "##sume": 23545,
- "catastrophic": 23546,
- "flanks": 23547,
- "molten": 23548,
- "##arns": 23549,
- "waller": 23550,
- "aimee": 23551,
- "terminating": 23552,
- "##icing": 23553,
- "alternately": 23554,
- "##oche": 23555,
- "nehru": 23556,
- "printers": 23557,
- "outraged": 23558,
- "##eving": 23559,
- "empires": 23560,
- "template": 23561,
- "banners": 23562,
- "repetitive": 23563,
- "za": 23564,
- "##oise": 23565,
- "vegetarian": 23566,
- "##tell": 23567,
- "guiana": 23568,
- "opt": 23569,
- "cavendish": 23570,
- "lucknow": 23571,
- "synthesized": 23572,
- "##hani": 23573,
- "##mada": 23574,
- "finalized": 23575,
- "##ctable": 23576,
- "fictitious": 23577,
- "mayoral": 23578,
- "unreliable": 23579,
- "##enham": 23580,
- "embracing": 23581,
- "peppers": 23582,
- "rbis": 23583,
- "##chio": 23584,
- "##neo": 23585,
- "inhibition": 23586,
- "slashed": 23587,
- "togo": 23588,
- "orderly": 23589,
- "embroidered": 23590,
- "safari": 23591,
- "salty": 23592,
- "236": 23593,
- "barron": 23594,
- "benito": 23595,
- "totaled": 23596,
- "##dak": 23597,
- "pubs": 23598,
- "simulated": 23599,
- "caden": 23600,
- "devin": 23601,
- "tolkien": 23602,
- "momma": 23603,
- "welding": 23604,
- "sesame": 23605,
- "##ept": 23606,
- "gottingen": 23607,
- "hardness": 23608,
- "630": 23609,
- "shaman": 23610,
- "temeraire": 23611,
- "620": 23612,
- "adequately": 23613,
- "pediatric": 23614,
- "##kit": 23615,
- "ck": 23616,
- "assertion": 23617,
- "radicals": 23618,
- "composure": 23619,
- "cadence": 23620,
- "seafood": 23621,
- "beaufort": 23622,
- "lazarus": 23623,
- "mani": 23624,
- "warily": 23625,
- "cunning": 23626,
- "kurdistan": 23627,
- "249": 23628,
- "cantata": 23629,
- "##kir": 23630,
- "ares": 23631,
- "##41": 23632,
- "##clusive": 23633,
- "nape": 23634,
- "townland": 23635,
- "geared": 23636,
- "insulted": 23637,
- "flutter": 23638,
- "boating": 23639,
- "violate": 23640,
- "draper": 23641,
- "dumping": 23642,
- "malmo": 23643,
- "##hh": 23644,
- "##romatic": 23645,
- "firearm": 23646,
- "alta": 23647,
- "bono": 23648,
- "obscured": 23649,
- "##clave": 23650,
- "exceeds": 23651,
- "panorama": 23652,
- "unbelievable": 23653,
- "##train": 23654,
- "preschool": 23655,
- "##essed": 23656,
- "disconnected": 23657,
- "installing": 23658,
- "rescuing": 23659,
- "secretaries": 23660,
- "accessibility": 23661,
- "##castle": 23662,
- "##drive": 23663,
- "##ifice": 23664,
- "##film": 23665,
- "bouts": 23666,
- "slug": 23667,
- "waterway": 23668,
- "mindanao": 23669,
- "##buro": 23670,
- "##ratic": 23671,
- "halves": 23672,
- "##ل": 23673,
- "calming": 23674,
- "liter": 23675,
- "maternity": 23676,
- "adorable": 23677,
- "bragg": 23678,
- "electrification": 23679,
- "mcc": 23680,
- "##dote": 23681,
- "roxy": 23682,
- "schizophrenia": 23683,
- "##body": 23684,
- "munoz": 23685,
- "kaye": 23686,
- "whaling": 23687,
- "239": 23688,
- "mil": 23689,
- "tingling": 23690,
- "tolerant": 23691,
- "##ago": 23692,
- "unconventional": 23693,
- "volcanoes": 23694,
- "##finder": 23695,
- "deportivo": 23696,
- "##llie": 23697,
- "robson": 23698,
- "kaufman": 23699,
- "neuroscience": 23700,
- "wai": 23701,
- "deportation": 23702,
- "masovian": 23703,
- "scraping": 23704,
- "converse": 23705,
- "##bh": 23706,
- "hacking": 23707,
- "bulge": 23708,
- "##oun": 23709,
- "administratively": 23710,
- "yao": 23711,
- "580": 23712,
- "amp": 23713,
- "mammoth": 23714,
- "booster": 23715,
- "claremont": 23716,
- "hooper": 23717,
- "nomenclature": 23718,
- "pursuits": 23719,
- "mclaughlin": 23720,
- "melinda": 23721,
- "##sul": 23722,
- "catfish": 23723,
- "barclay": 23724,
- "substrates": 23725,
- "taxa": 23726,
- "zee": 23727,
- "originals": 23728,
- "kimberly": 23729,
- "packets": 23730,
- "padma": 23731,
- "##ality": 23732,
- "borrowing": 23733,
- "ostensibly": 23734,
- "solvent": 23735,
- "##bri": 23736,
- "##genesis": 23737,
- "##mist": 23738,
- "lukas": 23739,
- "shreveport": 23740,
- "veracruz": 23741,
- "##ь": 23742,
- "##lou": 23743,
- "##wives": 23744,
- "cheney": 23745,
- "tt": 23746,
- "anatolia": 23747,
- "hobbs": 23748,
- "##zyn": 23749,
- "cyclic": 23750,
- "radiant": 23751,
- "alistair": 23752,
- "greenish": 23753,
- "siena": 23754,
- "dat": 23755,
- "independents": 23756,
- "##bation": 23757,
- "conform": 23758,
- "pieter": 23759,
- "hyper": 23760,
- "applicant": 23761,
- "bradshaw": 23762,
- "spores": 23763,
- "telangana": 23764,
- "vinci": 23765,
- "inexpensive": 23766,
- "nuclei": 23767,
- "322": 23768,
- "jang": 23769,
- "nme": 23770,
- "soho": 23771,
- "spd": 23772,
- "##ign": 23773,
- "cradled": 23774,
- "receptionist": 23775,
- "pow": 23776,
- "##43": 23777,
- "##rika": 23778,
- "fascism": 23779,
- "##ifer": 23780,
- "experimenting": 23781,
- "##ading": 23782,
- "##iec": 23783,
- "##region": 23784,
- "345": 23785,
- "jocelyn": 23786,
- "maris": 23787,
- "stair": 23788,
- "nocturnal": 23789,
- "toro": 23790,
- "constabulary": 23791,
- "elgin": 23792,
- "##kker": 23793,
- "msc": 23794,
- "##giving": 23795,
- "##schen": 23796,
- "##rase": 23797,
- "doherty": 23798,
- "doping": 23799,
- "sarcastically": 23800,
- "batter": 23801,
- "maneuvers": 23802,
- "##cano": 23803,
- "##apple": 23804,
- "##gai": 23805,
- "##git": 23806,
- "intrinsic": 23807,
- "##nst": 23808,
- "##stor": 23809,
- "1753": 23810,
- "showtime": 23811,
- "cafes": 23812,
- "gasps": 23813,
- "lviv": 23814,
- "ushered": 23815,
- "##thed": 23816,
- "fours": 23817,
- "restart": 23818,
- "astonishment": 23819,
- "transmitting": 23820,
- "flyer": 23821,
- "shrugs": 23822,
- "##sau": 23823,
- "intriguing": 23824,
- "cones": 23825,
- "dictated": 23826,
- "mushrooms": 23827,
- "medial": 23828,
- "##kovsky": 23829,
- "##elman": 23830,
- "escorting": 23831,
- "gaped": 23832,
- "##26": 23833,
- "godfather": 23834,
- "##door": 23835,
- "##sell": 23836,
- "djs": 23837,
- "recaptured": 23838,
- "timetable": 23839,
- "vila": 23840,
- "1710": 23841,
- "3a": 23842,
- "aerodrome": 23843,
- "mortals": 23844,
- "scientology": 23845,
- "##orne": 23846,
- "angelina": 23847,
- "mag": 23848,
- "convection": 23849,
- "unpaid": 23850,
- "insertion": 23851,
- "intermittent": 23852,
- "lego": 23853,
- "##nated": 23854,
- "endeavor": 23855,
- "kota": 23856,
- "pereira": 23857,
- "##lz": 23858,
- "304": 23859,
- "bwv": 23860,
- "glamorgan": 23861,
- "insults": 23862,
- "agatha": 23863,
- "fey": 23864,
- "##cend": 23865,
- "fleetwood": 23866,
- "mahogany": 23867,
- "protruding": 23868,
- "steamship": 23869,
- "zeta": 23870,
- "##arty": 23871,
- "mcguire": 23872,
- "suspense": 23873,
- "##sphere": 23874,
- "advising": 23875,
- "urges": 23876,
- "##wala": 23877,
- "hurriedly": 23878,
- "meteor": 23879,
- "gilded": 23880,
- "inline": 23881,
- "arroyo": 23882,
- "stalker": 23883,
- "##oge": 23884,
- "excitedly": 23885,
- "revered": 23886,
- "##cure": 23887,
- "earle": 23888,
- "introductory": 23889,
- "##break": 23890,
- "##ilde": 23891,
- "mutants": 23892,
- "puff": 23893,
- "pulses": 23894,
- "reinforcement": 23895,
- "##haling": 23896,
- "curses": 23897,
- "lizards": 23898,
- "stalk": 23899,
- "correlated": 23900,
- "##fixed": 23901,
- "fallout": 23902,
- "macquarie": 23903,
- "##unas": 23904,
- "bearded": 23905,
- "denton": 23906,
- "heaving": 23907,
- "802": 23908,
- "##ocation": 23909,
- "winery": 23910,
- "assign": 23911,
- "dortmund": 23912,
- "##lkirk": 23913,
- "everest": 23914,
- "invariant": 23915,
- "charismatic": 23916,
- "susie": 23917,
- "##elling": 23918,
- "bled": 23919,
- "lesley": 23920,
- "telegram": 23921,
- "sumner": 23922,
- "bk": 23923,
- "##ogen": 23924,
- "##к": 23925,
- "wilcox": 23926,
- "needy": 23927,
- "colbert": 23928,
- "duval": 23929,
- "##iferous": 23930,
- "##mbled": 23931,
- "allotted": 23932,
- "attends": 23933,
- "imperative": 23934,
- "##hita": 23935,
- "replacements": 23936,
- "hawker": 23937,
- "##inda": 23938,
- "insurgency": 23939,
- "##zee": 23940,
- "##eke": 23941,
- "casts": 23942,
- "##yla": 23943,
- "680": 23944,
- "ives": 23945,
- "transitioned": 23946,
- "##pack": 23947,
- "##powering": 23948,
- "authoritative": 23949,
- "baylor": 23950,
- "flex": 23951,
- "cringed": 23952,
- "plaintiffs": 23953,
- "woodrow": 23954,
- "##skie": 23955,
- "drastic": 23956,
- "ape": 23957,
- "aroma": 23958,
- "unfolded": 23959,
- "commotion": 23960,
- "nt": 23961,
- "preoccupied": 23962,
- "theta": 23963,
- "routines": 23964,
- "lasers": 23965,
- "privatization": 23966,
- "wand": 23967,
- "domino": 23968,
- "ek": 23969,
- "clenching": 23970,
- "nsa": 23971,
- "strategically": 23972,
- "showered": 23973,
- "bile": 23974,
- "handkerchief": 23975,
- "pere": 23976,
- "storing": 23977,
- "christophe": 23978,
- "insulting": 23979,
- "316": 23980,
- "nakamura": 23981,
- "romani": 23982,
- "asiatic": 23983,
- "magdalena": 23984,
- "palma": 23985,
- "cruises": 23986,
- "stripping": 23987,
- "405": 23988,
- "konstantin": 23989,
- "soaring": 23990,
- "##berman": 23991,
- "colloquially": 23992,
- "forerunner": 23993,
- "havilland": 23994,
- "incarcerated": 23995,
- "parasites": 23996,
- "sincerity": 23997,
- "##utus": 23998,
- "disks": 23999,
- "plank": 24000,
- "saigon": 24001,
- "##ining": 24002,
- "corbin": 24003,
- "homo": 24004,
- "ornaments": 24005,
- "powerhouse": 24006,
- "##tlement": 24007,
- "chong": 24008,
- "fastened": 24009,
- "feasibility": 24010,
- "idf": 24011,
- "morphological": 24012,
- "usable": 24013,
- "##nish": 24014,
- "##zuki": 24015,
- "aqueduct": 24016,
- "jaguars": 24017,
- "keepers": 24018,
- "##flies": 24019,
- "aleksandr": 24020,
- "faust": 24021,
- "assigns": 24022,
- "ewing": 24023,
- "bacterium": 24024,
- "hurled": 24025,
- "tricky": 24026,
- "hungarians": 24027,
- "integers": 24028,
- "wallis": 24029,
- "321": 24030,
- "yamaha": 24031,
- "##isha": 24032,
- "hushed": 24033,
- "oblivion": 24034,
- "aviator": 24035,
- "evangelist": 24036,
- "friars": 24037,
- "##eller": 24038,
- "monograph": 24039,
- "ode": 24040,
- "##nary": 24041,
- "airplanes": 24042,
- "labourers": 24043,
- "charms": 24044,
- "##nee": 24045,
- "1661": 24046,
- "hagen": 24047,
- "tnt": 24048,
- "rudder": 24049,
- "fiesta": 24050,
- "transcript": 24051,
- "dorothea": 24052,
- "ska": 24053,
- "inhibitor": 24054,
- "maccabi": 24055,
- "retorted": 24056,
- "raining": 24057,
- "encompassed": 24058,
- "clauses": 24059,
- "menacing": 24060,
- "1642": 24061,
- "lineman": 24062,
- "##gist": 24063,
- "vamps": 24064,
- "##ape": 24065,
- "##dick": 24066,
- "gloom": 24067,
- "##rera": 24068,
- "dealings": 24069,
- "easing": 24070,
- "seekers": 24071,
- "##nut": 24072,
- "##pment": 24073,
- "helens": 24074,
- "unmanned": 24075,
- "##anu": 24076,
- "##isson": 24077,
- "basics": 24078,
- "##amy": 24079,
- "##ckman": 24080,
- "adjustments": 24081,
- "1688": 24082,
- "brutality": 24083,
- "horne": 24084,
- "##zell": 24085,
- "sui": 24086,
- "##55": 24087,
- "##mable": 24088,
- "aggregator": 24089,
- "##thal": 24090,
- "rhino": 24091,
- "##drick": 24092,
- "##vira": 24093,
- "counters": 24094,
- "zoom": 24095,
- "##01": 24096,
- "##rting": 24097,
- "mn": 24098,
- "montenegrin": 24099,
- "packard": 24100,
- "##unciation": 24101,
- "##♭": 24102,
- "##kki": 24103,
- "reclaim": 24104,
- "scholastic": 24105,
- "thugs": 24106,
- "pulsed": 24107,
- "##icia": 24108,
- "syriac": 24109,
- "quan": 24110,
- "saddam": 24111,
- "banda": 24112,
- "kobe": 24113,
- "blaming": 24114,
- "buddies": 24115,
- "dissent": 24116,
- "##lusion": 24117,
- "##usia": 24118,
- "corbett": 24119,
- "jaya": 24120,
- "delle": 24121,
- "erratic": 24122,
- "lexie": 24123,
- "##hesis": 24124,
- "435": 24125,
- "amiga": 24126,
- "hermes": 24127,
- "##pressing": 24128,
- "##leen": 24129,
- "chapels": 24130,
- "gospels": 24131,
- "jamal": 24132,
- "##uating": 24133,
- "compute": 24134,
- "revolving": 24135,
- "warp": 24136,
- "##sso": 24137,
- "##thes": 24138,
- "armory": 24139,
- "##eras": 24140,
- "##gol": 24141,
- "antrim": 24142,
- "loki": 24143,
- "##kow": 24144,
- "##asian": 24145,
- "##good": 24146,
- "##zano": 24147,
- "braid": 24148,
- "handwriting": 24149,
- "subdistrict": 24150,
- "funky": 24151,
- "pantheon": 24152,
- "##iculate": 24153,
- "concurrency": 24154,
- "estimation": 24155,
- "improper": 24156,
- "juliana": 24157,
- "##his": 24158,
- "newcomers": 24159,
- "johnstone": 24160,
- "staten": 24161,
- "communicated": 24162,
- "##oco": 24163,
- "##alle": 24164,
- "sausage": 24165,
- "stormy": 24166,
- "##stered": 24167,
- "##tters": 24168,
- "superfamily": 24169,
- "##grade": 24170,
- "acidic": 24171,
- "collateral": 24172,
- "tabloid": 24173,
- "##oped": 24174,
- "##rza": 24175,
- "bladder": 24176,
- "austen": 24177,
- "##ellant": 24178,
- "mcgraw": 24179,
- "##hay": 24180,
- "hannibal": 24181,
- "mein": 24182,
- "aquino": 24183,
- "lucifer": 24184,
- "wo": 24185,
- "badger": 24186,
- "boar": 24187,
- "cher": 24188,
- "christensen": 24189,
- "greenberg": 24190,
- "interruption": 24191,
- "##kken": 24192,
- "jem": 24193,
- "244": 24194,
- "mocked": 24195,
- "bottoms": 24196,
- "cambridgeshire": 24197,
- "##lide": 24198,
- "sprawling": 24199,
- "##bbly": 24200,
- "eastwood": 24201,
- "ghent": 24202,
- "synth": 24203,
- "##buck": 24204,
- "advisers": 24205,
- "##bah": 24206,
- "nominally": 24207,
- "hapoel": 24208,
- "qu": 24209,
- "daggers": 24210,
- "estranged": 24211,
- "fabricated": 24212,
- "towels": 24213,
- "vinnie": 24214,
- "wcw": 24215,
- "misunderstanding": 24216,
- "anglia": 24217,
- "nothin": 24218,
- "unmistakable": 24219,
- "##dust": 24220,
- "##lova": 24221,
- "chilly": 24222,
- "marquette": 24223,
- "truss": 24224,
- "##edge": 24225,
- "##erine": 24226,
- "reece": 24227,
- "##lty": 24228,
- "##chemist": 24229,
- "##connected": 24230,
- "272": 24231,
- "308": 24232,
- "41st": 24233,
- "bash": 24234,
- "raion": 24235,
- "waterfalls": 24236,
- "##ump": 24237,
- "##main": 24238,
- "labyrinth": 24239,
- "queue": 24240,
- "theorist": 24241,
- "##istle": 24242,
- "bharatiya": 24243,
- "flexed": 24244,
- "soundtracks": 24245,
- "rooney": 24246,
- "leftist": 24247,
- "patrolling": 24248,
- "wharton": 24249,
- "plainly": 24250,
- "alleviate": 24251,
- "eastman": 24252,
- "schuster": 24253,
- "topographic": 24254,
- "engages": 24255,
- "immensely": 24256,
- "unbearable": 24257,
- "fairchild": 24258,
- "1620": 24259,
- "dona": 24260,
- "lurking": 24261,
- "parisian": 24262,
- "oliveira": 24263,
- "ia": 24264,
- "indictment": 24265,
- "hahn": 24266,
- "bangladeshi": 24267,
- "##aster": 24268,
- "vivo": 24269,
- "##uming": 24270,
- "##ential": 24271,
- "antonia": 24272,
- "expects": 24273,
- "indoors": 24274,
- "kildare": 24275,
- "harlan": 24276,
- "##logue": 24277,
- "##ogenic": 24278,
- "##sities": 24279,
- "forgiven": 24280,
- "##wat": 24281,
- "childish": 24282,
- "tavi": 24283,
- "##mide": 24284,
- "##orra": 24285,
- "plausible": 24286,
- "grimm": 24287,
- "successively": 24288,
- "scooted": 24289,
- "##bola": 24290,
- "##dget": 24291,
- "##rith": 24292,
- "spartans": 24293,
- "emery": 24294,
- "flatly": 24295,
- "azure": 24296,
- "epilogue": 24297,
- "##wark": 24298,
- "flourish": 24299,
- "##iny": 24300,
- "##tracted": 24301,
- "##overs": 24302,
- "##oshi": 24303,
- "bestseller": 24304,
- "distressed": 24305,
- "receipt": 24306,
- "spitting": 24307,
- "hermit": 24308,
- "topological": 24309,
- "##cot": 24310,
- "drilled": 24311,
- "subunit": 24312,
- "francs": 24313,
- "##layer": 24314,
- "eel": 24315,
- "##fk": 24316,
- "##itas": 24317,
- "octopus": 24318,
- "footprint": 24319,
- "petitions": 24320,
- "ufo": 24321,
- "##say": 24322,
- "##foil": 24323,
- "interfering": 24324,
- "leaking": 24325,
- "palo": 24326,
- "##metry": 24327,
- "thistle": 24328,
- "valiant": 24329,
- "##pic": 24330,
- "narayan": 24331,
- "mcpherson": 24332,
- "##fast": 24333,
- "gonzales": 24334,
- "##ym": 24335,
- "##enne": 24336,
- "dustin": 24337,
- "novgorod": 24338,
- "solos": 24339,
- "##zman": 24340,
- "doin": 24341,
- "##raph": 24342,
- "##patient": 24343,
- "##meyer": 24344,
- "soluble": 24345,
- "ashland": 24346,
- "cuffs": 24347,
- "carole": 24348,
- "pendleton": 24349,
- "whistling": 24350,
- "vassal": 24351,
- "##river": 24352,
- "deviation": 24353,
- "revisited": 24354,
- "constituents": 24355,
- "rallied": 24356,
- "rotate": 24357,
- "loomed": 24358,
- "##eil": 24359,
- "##nting": 24360,
- "amateurs": 24361,
- "augsburg": 24362,
- "auschwitz": 24363,
- "crowns": 24364,
- "skeletons": 24365,
- "##cona": 24366,
- "bonnet": 24367,
- "257": 24368,
- "dummy": 24369,
- "globalization": 24370,
- "simeon": 24371,
- "sleeper": 24372,
- "mandal": 24373,
- "differentiated": 24374,
- "##crow": 24375,
- "##mare": 24376,
- "milne": 24377,
- "bundled": 24378,
- "exasperated": 24379,
- "talmud": 24380,
- "owes": 24381,
- "segregated": 24382,
- "##feng": 24383,
- "##uary": 24384,
- "dentist": 24385,
- "piracy": 24386,
- "props": 24387,
- "##rang": 24388,
- "devlin": 24389,
- "##torium": 24390,
- "malicious": 24391,
- "paws": 24392,
- "##laid": 24393,
- "dependency": 24394,
- "##ergy": 24395,
- "##fers": 24396,
- "##enna": 24397,
- "258": 24398,
- "pistons": 24399,
- "rourke": 24400,
- "jed": 24401,
- "grammatical": 24402,
- "tres": 24403,
- "maha": 24404,
- "wig": 24405,
- "512": 24406,
- "ghostly": 24407,
- "jayne": 24408,
- "##achal": 24409,
- "##creen": 24410,
- "##ilis": 24411,
- "##lins": 24412,
- "##rence": 24413,
- "designate": 24414,
- "##with": 24415,
- "arrogance": 24416,
- "cambodian": 24417,
- "clones": 24418,
- "showdown": 24419,
- "throttle": 24420,
- "twain": 24421,
- "##ception": 24422,
- "lobes": 24423,
- "metz": 24424,
- "nagoya": 24425,
- "335": 24426,
- "braking": 24427,
- "##furt": 24428,
- "385": 24429,
- "roaming": 24430,
- "##minster": 24431,
- "amin": 24432,
- "crippled": 24433,
- "##37": 24434,
- "##llary": 24435,
- "indifferent": 24436,
- "hoffmann": 24437,
- "idols": 24438,
- "intimidating": 24439,
- "1751": 24440,
- "261": 24441,
- "influenza": 24442,
- "memo": 24443,
- "onions": 24444,
- "1748": 24445,
- "bandage": 24446,
- "consciously": 24447,
- "##landa": 24448,
- "##rage": 24449,
- "clandestine": 24450,
- "observes": 24451,
- "swiped": 24452,
- "tangle": 24453,
- "##ener": 24454,
- "##jected": 24455,
- "##trum": 24456,
- "##bill": 24457,
- "##lta": 24458,
- "hugs": 24459,
- "congresses": 24460,
- "josiah": 24461,
- "spirited": 24462,
- "##dek": 24463,
- "humanist": 24464,
- "managerial": 24465,
- "filmmaking": 24466,
- "inmate": 24467,
- "rhymes": 24468,
- "debuting": 24469,
- "grimsby": 24470,
- "ur": 24471,
- "##laze": 24472,
- "duplicate": 24473,
- "vigor": 24474,
- "##tf": 24475,
- "republished": 24476,
- "bolshevik": 24477,
- "refurbishment": 24478,
- "antibiotics": 24479,
- "martini": 24480,
- "methane": 24481,
- "newscasts": 24482,
- "royale": 24483,
- "horizons": 24484,
- "levant": 24485,
- "iain": 24486,
- "visas": 24487,
- "##ischen": 24488,
- "paler": 24489,
- "##around": 24490,
- "manifestation": 24491,
- "snuck": 24492,
- "alf": 24493,
- "chop": 24494,
- "futile": 24495,
- "pedestal": 24496,
- "rehab": 24497,
- "##kat": 24498,
- "bmg": 24499,
- "kerman": 24500,
- "res": 24501,
- "fairbanks": 24502,
- "jarrett": 24503,
- "abstraction": 24504,
- "saharan": 24505,
- "##zek": 24506,
- "1746": 24507,
- "procedural": 24508,
- "clearer": 24509,
- "kincaid": 24510,
- "sash": 24511,
- "luciano": 24512,
- "##ffey": 24513,
- "crunch": 24514,
- "helmut": 24515,
- "##vara": 24516,
- "revolutionaries": 24517,
- "##tute": 24518,
- "creamy": 24519,
- "leach": 24520,
- "##mmon": 24521,
- "1747": 24522,
- "permitting": 24523,
- "nes": 24524,
- "plight": 24525,
- "wendell": 24526,
- "##lese": 24527,
- "contra": 24528,
- "ts": 24529,
- "clancy": 24530,
- "ipa": 24531,
- "mach": 24532,
- "staples": 24533,
- "autopsy": 24534,
- "disturbances": 24535,
- "nueva": 24536,
- "karin": 24537,
- "pontiac": 24538,
- "##uding": 24539,
- "proxy": 24540,
- "venerable": 24541,
- "haunt": 24542,
- "leto": 24543,
- "bergman": 24544,
- "expands": 24545,
- "##helm": 24546,
- "wal": 24547,
- "##pipe": 24548,
- "canning": 24549,
- "celine": 24550,
- "cords": 24551,
- "obesity": 24552,
- "##enary": 24553,
- "intrusion": 24554,
- "planner": 24555,
- "##phate": 24556,
- "reasoned": 24557,
- "sequencing": 24558,
- "307": 24559,
- "harrow": 24560,
- "##chon": 24561,
- "##dora": 24562,
- "marred": 24563,
- "mcintyre": 24564,
- "repay": 24565,
- "tarzan": 24566,
- "darting": 24567,
- "248": 24568,
- "harrisburg": 24569,
- "margarita": 24570,
- "repulsed": 24571,
- "##hur": 24572,
- "##lding": 24573,
- "belinda": 24574,
- "hamburger": 24575,
- "novo": 24576,
- "compliant": 24577,
- "runways": 24578,
- "bingham": 24579,
- "registrar": 24580,
- "skyscraper": 24581,
- "ic": 24582,
- "cuthbert": 24583,
- "improvisation": 24584,
- "livelihood": 24585,
- "##corp": 24586,
- "##elial": 24587,
- "admiring": 24588,
- "##dened": 24589,
- "sporadic": 24590,
- "believer": 24591,
- "casablanca": 24592,
- "popcorn": 24593,
- "##29": 24594,
- "asha": 24595,
- "shovel": 24596,
- "##bek": 24597,
- "##dice": 24598,
- "coiled": 24599,
- "tangible": 24600,
- "##dez": 24601,
- "casper": 24602,
- "elsie": 24603,
- "resin": 24604,
- "tenderness": 24605,
- "rectory": 24606,
- "##ivision": 24607,
- "avail": 24608,
- "sonar": 24609,
- "##mori": 24610,
- "boutique": 24611,
- "##dier": 24612,
- "guerre": 24613,
- "bathed": 24614,
- "upbringing": 24615,
- "vaulted": 24616,
- "sandals": 24617,
- "blessings": 24618,
- "##naut": 24619,
- "##utnant": 24620,
- "1680": 24621,
- "306": 24622,
- "foxes": 24623,
- "pia": 24624,
- "corrosion": 24625,
- "hesitantly": 24626,
- "confederates": 24627,
- "crystalline": 24628,
- "footprints": 24629,
- "shapiro": 24630,
- "tirana": 24631,
- "valentin": 24632,
- "drones": 24633,
- "45th": 24634,
- "microscope": 24635,
- "shipments": 24636,
- "texted": 24637,
- "inquisition": 24638,
- "wry": 24639,
- "guernsey": 24640,
- "unauthorized": 24641,
- "resigning": 24642,
- "760": 24643,
- "ripple": 24644,
- "schubert": 24645,
- "stu": 24646,
- "reassure": 24647,
- "felony": 24648,
- "##ardo": 24649,
- "brittle": 24650,
- "koreans": 24651,
- "##havan": 24652,
- "##ives": 24653,
- "dun": 24654,
- "implicit": 24655,
- "tyres": 24656,
- "##aldi": 24657,
- "##lth": 24658,
- "magnolia": 24659,
- "##ehan": 24660,
- "##puri": 24661,
- "##poulos": 24662,
- "aggressively": 24663,
- "fei": 24664,
- "gr": 24665,
- "familiarity": 24666,
- "##poo": 24667,
- "indicative": 24668,
- "##trust": 24669,
- "fundamentally": 24670,
- "jimmie": 24671,
- "overrun": 24672,
- "395": 24673,
- "anchors": 24674,
- "moans": 24675,
- "##opus": 24676,
- "britannia": 24677,
- "armagh": 24678,
- "##ggle": 24679,
- "purposely": 24680,
- "seizing": 24681,
- "##vao": 24682,
- "bewildered": 24683,
- "mundane": 24684,
- "avoidance": 24685,
- "cosmopolitan": 24686,
- "geometridae": 24687,
- "quartermaster": 24688,
- "caf": 24689,
- "415": 24690,
- "chatter": 24691,
- "engulfed": 24692,
- "gleam": 24693,
- "purge": 24694,
- "##icate": 24695,
- "juliette": 24696,
- "jurisprudence": 24697,
- "guerra": 24698,
- "revisions": 24699,
- "##bn": 24700,
- "casimir": 24701,
- "brew": 24702,
- "##jm": 24703,
- "1749": 24704,
- "clapton": 24705,
- "cloudy": 24706,
- "conde": 24707,
- "hermitage": 24708,
- "278": 24709,
- "simulations": 24710,
- "torches": 24711,
- "vincenzo": 24712,
- "matteo": 24713,
- "##rill": 24714,
- "hidalgo": 24715,
- "booming": 24716,
- "westbound": 24717,
- "accomplishment": 24718,
- "tentacles": 24719,
- "unaffected": 24720,
- "##sius": 24721,
- "annabelle": 24722,
- "flopped": 24723,
- "sloping": 24724,
- "##litz": 24725,
- "dreamer": 24726,
- "interceptor": 24727,
- "vu": 24728,
- "##loh": 24729,
- "consecration": 24730,
- "copying": 24731,
- "messaging": 24732,
- "breaker": 24733,
- "climates": 24734,
- "hospitalized": 24735,
- "1752": 24736,
- "torino": 24737,
- "afternoons": 24738,
- "winfield": 24739,
- "witnessing": 24740,
- "##teacher": 24741,
- "breakers": 24742,
- "choirs": 24743,
- "sawmill": 24744,
- "coldly": 24745,
- "##ege": 24746,
- "sipping": 24747,
- "haste": 24748,
- "uninhabited": 24749,
- "conical": 24750,
- "bibliography": 24751,
- "pamphlets": 24752,
- "severn": 24753,
- "edict": 24754,
- "##oca": 24755,
- "deux": 24756,
- "illnesses": 24757,
- "grips": 24758,
- "##pl": 24759,
- "rehearsals": 24760,
- "sis": 24761,
- "thinkers": 24762,
- "tame": 24763,
- "##keepers": 24764,
- "1690": 24765,
- "acacia": 24766,
- "reformer": 24767,
- "##osed": 24768,
- "##rys": 24769,
- "shuffling": 24770,
- "##iring": 24771,
- "##shima": 24772,
- "eastbound": 24773,
- "ionic": 24774,
- "rhea": 24775,
- "flees": 24776,
- "littered": 24777,
- "##oum": 24778,
- "rocker": 24779,
- "vomiting": 24780,
- "groaning": 24781,
- "champ": 24782,
- "overwhelmingly": 24783,
- "civilizations": 24784,
- "paces": 24785,
- "sloop": 24786,
- "adoptive": 24787,
- "##tish": 24788,
- "skaters": 24789,
- "##vres": 24790,
- "aiding": 24791,
- "mango": 24792,
- "##joy": 24793,
- "nikola": 24794,
- "shriek": 24795,
- "##ignon": 24796,
- "pharmaceuticals": 24797,
- "##mg": 24798,
- "tuna": 24799,
- "calvert": 24800,
- "gustavo": 24801,
- "stocked": 24802,
- "yearbook": 24803,
- "##urai": 24804,
- "##mana": 24805,
- "computed": 24806,
- "subsp": 24807,
- "riff": 24808,
- "hanoi": 24809,
- "kelvin": 24810,
- "hamid": 24811,
- "moors": 24812,
- "pastures": 24813,
- "summons": 24814,
- "jihad": 24815,
- "nectar": 24816,
- "##ctors": 24817,
- "bayou": 24818,
- "untitled": 24819,
- "pleasing": 24820,
- "vastly": 24821,
- "republics": 24822,
- "intellect": 24823,
- "##η": 24824,
- "##ulio": 24825,
- "##tou": 24826,
- "crumbling": 24827,
- "stylistic": 24828,
- "sb": 24829,
- "##ی": 24830,
- "consolation": 24831,
- "frequented": 24832,
- "h₂o": 24833,
- "walden": 24834,
- "widows": 24835,
- "##iens": 24836,
- "404": 24837,
- "##ignment": 24838,
- "chunks": 24839,
- "improves": 24840,
- "288": 24841,
- "grit": 24842,
- "recited": 24843,
- "##dev": 24844,
- "snarl": 24845,
- "sociological": 24846,
- "##arte": 24847,
- "##gul": 24848,
- "inquired": 24849,
- "##held": 24850,
- "bruise": 24851,
- "clube": 24852,
- "consultancy": 24853,
- "homogeneous": 24854,
- "hornets": 24855,
- "multiplication": 24856,
- "pasta": 24857,
- "prick": 24858,
- "savior": 24859,
- "##grin": 24860,
- "##kou": 24861,
- "##phile": 24862,
- "yoon": 24863,
- "##gara": 24864,
- "grimes": 24865,
- "vanishing": 24866,
- "cheering": 24867,
- "reacting": 24868,
- "bn": 24869,
- "distillery": 24870,
- "##quisite": 24871,
- "##vity": 24872,
- "coe": 24873,
- "dockyard": 24874,
- "massif": 24875,
- "##jord": 24876,
- "escorts": 24877,
- "voss": 24878,
- "##valent": 24879,
- "byte": 24880,
- "chopped": 24881,
- "hawke": 24882,
- "illusions": 24883,
- "workings": 24884,
- "floats": 24885,
- "##koto": 24886,
- "##vac": 24887,
- "kv": 24888,
- "annapolis": 24889,
- "madden": 24890,
- "##onus": 24891,
- "alvaro": 24892,
- "noctuidae": 24893,
- "##cum": 24894,
- "##scopic": 24895,
- "avenge": 24896,
- "steamboat": 24897,
- "forte": 24898,
- "illustrates": 24899,
- "erika": 24900,
- "##trip": 24901,
- "570": 24902,
- "dew": 24903,
- "nationalities": 24904,
- "bran": 24905,
- "manifested": 24906,
- "thirsty": 24907,
- "diversified": 24908,
- "muscled": 24909,
- "reborn": 24910,
- "##standing": 24911,
- "arson": 24912,
- "##lessness": 24913,
- "##dran": 24914,
- "##logram": 24915,
- "##boys": 24916,
- "##kushima": 24917,
- "##vious": 24918,
- "willoughby": 24919,
- "##phobia": 24920,
- "286": 24921,
- "alsace": 24922,
- "dashboard": 24923,
- "yuki": 24924,
- "##chai": 24925,
- "granville": 24926,
- "myspace": 24927,
- "publicized": 24928,
- "tricked": 24929,
- "##gang": 24930,
- "adjective": 24931,
- "##ater": 24932,
- "relic": 24933,
- "reorganisation": 24934,
- "enthusiastically": 24935,
- "indications": 24936,
- "saxe": 24937,
- "##lassified": 24938,
- "consolidate": 24939,
- "iec": 24940,
- "padua": 24941,
- "helplessly": 24942,
- "ramps": 24943,
- "renaming": 24944,
- "regulars": 24945,
- "pedestrians": 24946,
- "accents": 24947,
- "convicts": 24948,
- "inaccurate": 24949,
- "lowers": 24950,
- "mana": 24951,
- "##pati": 24952,
- "barrie": 24953,
- "bjp": 24954,
- "outta": 24955,
- "someplace": 24956,
- "berwick": 24957,
- "flanking": 24958,
- "invoked": 24959,
- "marrow": 24960,
- "sparsely": 24961,
- "excerpts": 24962,
- "clothed": 24963,
- "rei": 24964,
- "##ginal": 24965,
- "wept": 24966,
- "##straße": 24967,
- "##vish": 24968,
- "alexa": 24969,
- "excel": 24970,
- "##ptive": 24971,
- "membranes": 24972,
- "aquitaine": 24973,
- "creeks": 24974,
- "cutler": 24975,
- "sheppard": 24976,
- "implementations": 24977,
- "ns": 24978,
- "##dur": 24979,
- "fragrance": 24980,
- "budge": 24981,
- "concordia": 24982,
- "magnesium": 24983,
- "marcelo": 24984,
- "##antes": 24985,
- "gladly": 24986,
- "vibrating": 24987,
- "##rral": 24988,
- "##ggles": 24989,
- "montrose": 24990,
- "##omba": 24991,
- "lew": 24992,
- "seamus": 24993,
- "1630": 24994,
- "cocky": 24995,
- "##ament": 24996,
- "##uen": 24997,
- "bjorn": 24998,
- "##rrick": 24999,
- "fielder": 25000,
- "fluttering": 25001,
- "##lase": 25002,
- "methyl": 25003,
- "kimberley": 25004,
- "mcdowell": 25005,
- "reductions": 25006,
- "barbed": 25007,
- "##jic": 25008,
- "##tonic": 25009,
- "aeronautical": 25010,
- "condensed": 25011,
- "distracting": 25012,
- "##promising": 25013,
- "huffed": 25014,
- "##cala": 25015,
- "##sle": 25016,
- "claudius": 25017,
- "invincible": 25018,
- "missy": 25019,
- "pious": 25020,
- "balthazar": 25021,
- "ci": 25022,
- "##lang": 25023,
- "butte": 25024,
- "combo": 25025,
- "orson": 25026,
- "##dication": 25027,
- "myriad": 25028,
- "1707": 25029,
- "silenced": 25030,
- "##fed": 25031,
- "##rh": 25032,
- "coco": 25033,
- "netball": 25034,
- "yourselves": 25035,
- "##oza": 25036,
- "clarify": 25037,
- "heller": 25038,
- "peg": 25039,
- "durban": 25040,
- "etudes": 25041,
- "offender": 25042,
- "roast": 25043,
- "blackmail": 25044,
- "curvature": 25045,
- "##woods": 25046,
- "vile": 25047,
- "309": 25048,
- "illicit": 25049,
- "suriname": 25050,
- "##linson": 25051,
- "overture": 25052,
- "1685": 25053,
- "bubbling": 25054,
- "gymnast": 25055,
- "tucking": 25056,
- "##mming": 25057,
- "##ouin": 25058,
- "maldives": 25059,
- "##bala": 25060,
- "gurney": 25061,
- "##dda": 25062,
- "##eased": 25063,
- "##oides": 25064,
- "backside": 25065,
- "pinto": 25066,
- "jars": 25067,
- "racehorse": 25068,
- "tending": 25069,
- "##rdial": 25070,
- "baronetcy": 25071,
- "wiener": 25072,
- "duly": 25073,
- "##rke": 25074,
- "barbarian": 25075,
- "cupping": 25076,
- "flawed": 25077,
- "##thesis": 25078,
- "bertha": 25079,
- "pleistocene": 25080,
- "puddle": 25081,
- "swearing": 25082,
- "##nob": 25083,
- "##tically": 25084,
- "fleeting": 25085,
- "prostate": 25086,
- "amulet": 25087,
- "educating": 25088,
- "##mined": 25089,
- "##iti": 25090,
- "##tler": 25091,
- "75th": 25092,
- "jens": 25093,
- "respondents": 25094,
- "analytics": 25095,
- "cavaliers": 25096,
- "papacy": 25097,
- "raju": 25098,
- "##iente": 25099,
- "##ulum": 25100,
- "##tip": 25101,
- "funnel": 25102,
- "271": 25103,
- "disneyland": 25104,
- "##lley": 25105,
- "sociologist": 25106,
- "##iam": 25107,
- "2500": 25108,
- "faulkner": 25109,
- "louvre": 25110,
- "menon": 25111,
- "##dson": 25112,
- "276": 25113,
- "##ower": 25114,
- "afterlife": 25115,
- "mannheim": 25116,
- "peptide": 25117,
- "referees": 25118,
- "comedians": 25119,
- "meaningless": 25120,
- "##anger": 25121,
- "##laise": 25122,
- "fabrics": 25123,
- "hurley": 25124,
- "renal": 25125,
- "sleeps": 25126,
- "##bour": 25127,
- "##icle": 25128,
- "breakout": 25129,
- "kristin": 25130,
- "roadside": 25131,
- "animator": 25132,
- "clover": 25133,
- "disdain": 25134,
- "unsafe": 25135,
- "redesign": 25136,
- "##urity": 25137,
- "firth": 25138,
- "barnsley": 25139,
- "portage": 25140,
- "reset": 25141,
- "narrows": 25142,
- "268": 25143,
- "commandos": 25144,
- "expansive": 25145,
- "speechless": 25146,
- "tubular": 25147,
- "##lux": 25148,
- "essendon": 25149,
- "eyelashes": 25150,
- "smashwords": 25151,
- "##yad": 25152,
- "##bang": 25153,
- "##claim": 25154,
- "craved": 25155,
- "sprinted": 25156,
- "chet": 25157,
- "somme": 25158,
- "astor": 25159,
- "wrocław": 25160,
- "orton": 25161,
- "266": 25162,
- "bane": 25163,
- "##erving": 25164,
- "##uing": 25165,
- "mischief": 25166,
- "##amps": 25167,
- "##sund": 25168,
- "scaling": 25169,
- "terre": 25170,
- "##xious": 25171,
- "impairment": 25172,
- "offenses": 25173,
- "undermine": 25174,
- "moi": 25175,
- "soy": 25176,
- "contiguous": 25177,
- "arcadia": 25178,
- "inuit": 25179,
- "seam": 25180,
- "##tops": 25181,
- "macbeth": 25182,
- "rebelled": 25183,
- "##icative": 25184,
- "##iot": 25185,
- "590": 25186,
- "elaborated": 25187,
- "frs": 25188,
- "uniformed": 25189,
- "##dberg": 25190,
- "259": 25191,
- "powerless": 25192,
- "priscilla": 25193,
- "stimulated": 25194,
- "980": 25195,
- "qc": 25196,
- "arboretum": 25197,
- "frustrating": 25198,
- "trieste": 25199,
- "bullock": 25200,
- "##nified": 25201,
- "enriched": 25202,
- "glistening": 25203,
- "intern": 25204,
- "##adia": 25205,
- "locus": 25206,
- "nouvelle": 25207,
- "ollie": 25208,
- "ike": 25209,
- "lash": 25210,
- "starboard": 25211,
- "ee": 25212,
- "tapestry": 25213,
- "headlined": 25214,
- "hove": 25215,
- "rigged": 25216,
- "##vite": 25217,
- "pollock": 25218,
- "##yme": 25219,
- "thrive": 25220,
- "clustered": 25221,
- "cas": 25222,
- "roi": 25223,
- "gleamed": 25224,
- "olympiad": 25225,
- "##lino": 25226,
- "pressured": 25227,
- "regimes": 25228,
- "##hosis": 25229,
- "##lick": 25230,
- "ripley": 25231,
- "##ophone": 25232,
- "kickoff": 25233,
- "gallon": 25234,
- "rockwell": 25235,
- "##arable": 25236,
- "crusader": 25237,
- "glue": 25238,
- "revolutions": 25239,
- "scrambling": 25240,
- "1714": 25241,
- "grover": 25242,
- "##jure": 25243,
- "englishman": 25244,
- "aztec": 25245,
- "263": 25246,
- "contemplating": 25247,
- "coven": 25248,
- "ipad": 25249,
- "preach": 25250,
- "triumphant": 25251,
- "tufts": 25252,
- "##esian": 25253,
- "rotational": 25254,
- "##phus": 25255,
- "328": 25256,
- "falkland": 25257,
- "##brates": 25258,
- "strewn": 25259,
- "clarissa": 25260,
- "rejoin": 25261,
- "environmentally": 25262,
- "glint": 25263,
- "banded": 25264,
- "drenched": 25265,
- "moat": 25266,
- "albanians": 25267,
- "johor": 25268,
- "rr": 25269,
- "maestro": 25270,
- "malley": 25271,
- "nouveau": 25272,
- "shaded": 25273,
- "taxonomy": 25274,
- "v6": 25275,
- "adhere": 25276,
- "bunk": 25277,
- "airfields": 25278,
- "##ritan": 25279,
- "1741": 25280,
- "encompass": 25281,
- "remington": 25282,
- "tran": 25283,
- "##erative": 25284,
- "amelie": 25285,
- "mazda": 25286,
- "friar": 25287,
- "morals": 25288,
- "passions": 25289,
- "##zai": 25290,
- "breadth": 25291,
- "vis": 25292,
- "##hae": 25293,
- "argus": 25294,
- "burnham": 25295,
- "caressing": 25296,
- "insider": 25297,
- "rudd": 25298,
- "##imov": 25299,
- "##mini": 25300,
- "##rso": 25301,
- "italianate": 25302,
- "murderous": 25303,
- "textual": 25304,
- "wainwright": 25305,
- "armada": 25306,
- "bam": 25307,
- "weave": 25308,
- "timer": 25309,
- "##taken": 25310,
- "##nh": 25311,
- "fra": 25312,
- "##crest": 25313,
- "ardent": 25314,
- "salazar": 25315,
- "taps": 25316,
- "tunis": 25317,
- "##ntino": 25318,
- "allegro": 25319,
- "gland": 25320,
- "philanthropic": 25321,
- "##chester": 25322,
- "implication": 25323,
- "##optera": 25324,
- "esq": 25325,
- "judas": 25326,
- "noticeably": 25327,
- "wynn": 25328,
- "##dara": 25329,
- "inched": 25330,
- "indexed": 25331,
- "crises": 25332,
- "villiers": 25333,
- "bandit": 25334,
- "royalties": 25335,
- "patterned": 25336,
- "cupboard": 25337,
- "interspersed": 25338,
- "accessory": 25339,
- "isla": 25340,
- "kendrick": 25341,
- "entourage": 25342,
- "stitches": 25343,
- "##esthesia": 25344,
- "headwaters": 25345,
- "##ior": 25346,
- "interlude": 25347,
- "distraught": 25348,
- "draught": 25349,
- "1727": 25350,
- "##basket": 25351,
- "biased": 25352,
- "sy": 25353,
- "transient": 25354,
- "triad": 25355,
- "subgenus": 25356,
- "adapting": 25357,
- "kidd": 25358,
- "shortstop": 25359,
- "##umatic": 25360,
- "dimly": 25361,
- "spiked": 25362,
- "mcleod": 25363,
- "reprint": 25364,
- "nellie": 25365,
- "pretoria": 25366,
- "windmill": 25367,
- "##cek": 25368,
- "singled": 25369,
- "##mps": 25370,
- "273": 25371,
- "reunite": 25372,
- "##orous": 25373,
- "747": 25374,
- "bankers": 25375,
- "outlying": 25376,
- "##omp": 25377,
- "##ports": 25378,
- "##tream": 25379,
- "apologies": 25380,
- "cosmetics": 25381,
- "patsy": 25382,
- "##deh": 25383,
- "##ocks": 25384,
- "##yson": 25385,
- "bender": 25386,
- "nantes": 25387,
- "serene": 25388,
- "##nad": 25389,
- "lucha": 25390,
- "mmm": 25391,
- "323": 25392,
- "##cius": 25393,
- "##gli": 25394,
- "cmll": 25395,
- "coinage": 25396,
- "nestor": 25397,
- "juarez": 25398,
- "##rook": 25399,
- "smeared": 25400,
- "sprayed": 25401,
- "twitching": 25402,
- "sterile": 25403,
- "irina": 25404,
- "embodied": 25405,
- "juveniles": 25406,
- "enveloped": 25407,
- "miscellaneous": 25408,
- "cancers": 25409,
- "dq": 25410,
- "gulped": 25411,
- "luisa": 25412,
- "crested": 25413,
- "swat": 25414,
- "donegal": 25415,
- "ref": 25416,
- "##anov": 25417,
- "##acker": 25418,
- "hearst": 25419,
- "mercantile": 25420,
- "##lika": 25421,
- "doorbell": 25422,
- "ua": 25423,
- "vicki": 25424,
- "##alla": 25425,
- "##som": 25426,
- "bilbao": 25427,
- "psychologists": 25428,
- "stryker": 25429,
- "sw": 25430,
- "horsemen": 25431,
- "turkmenistan": 25432,
- "wits": 25433,
- "##national": 25434,
- "anson": 25435,
- "mathew": 25436,
- "screenings": 25437,
- "##umb": 25438,
- "rihanna": 25439,
- "##agne": 25440,
- "##nessy": 25441,
- "aisles": 25442,
- "##iani": 25443,
- "##osphere": 25444,
- "hines": 25445,
- "kenton": 25446,
- "saskatoon": 25447,
- "tasha": 25448,
- "truncated": 25449,
- "##champ": 25450,
- "##itan": 25451,
- "mildred": 25452,
- "advises": 25453,
- "fredrik": 25454,
- "interpreting": 25455,
- "inhibitors": 25456,
- "##athi": 25457,
- "spectroscopy": 25458,
- "##hab": 25459,
- "##kong": 25460,
- "karim": 25461,
- "panda": 25462,
- "##oia": 25463,
- "##nail": 25464,
- "##vc": 25465,
- "conqueror": 25466,
- "kgb": 25467,
- "leukemia": 25468,
- "##dity": 25469,
- "arrivals": 25470,
- "cheered": 25471,
- "pisa": 25472,
- "phosphorus": 25473,
- "shielded": 25474,
- "##riated": 25475,
- "mammal": 25476,
- "unitarian": 25477,
- "urgently": 25478,
- "chopin": 25479,
- "sanitary": 25480,
- "##mission": 25481,
- "spicy": 25482,
- "drugged": 25483,
- "hinges": 25484,
- "##tort": 25485,
- "tipping": 25486,
- "trier": 25487,
- "impoverished": 25488,
- "westchester": 25489,
- "##caster": 25490,
- "267": 25491,
- "epoch": 25492,
- "nonstop": 25493,
- "##gman": 25494,
- "##khov": 25495,
- "aromatic": 25496,
- "centrally": 25497,
- "cerro": 25498,
- "##tively": 25499,
- "##vio": 25500,
- "billions": 25501,
- "modulation": 25502,
- "sedimentary": 25503,
- "283": 25504,
- "facilitating": 25505,
- "outrageous": 25506,
- "goldstein": 25507,
- "##eak": 25508,
- "##kt": 25509,
- "ld": 25510,
- "maitland": 25511,
- "penultimate": 25512,
- "pollard": 25513,
- "##dance": 25514,
- "fleets": 25515,
- "spaceship": 25516,
- "vertebrae": 25517,
- "##nig": 25518,
- "alcoholism": 25519,
- "als": 25520,
- "recital": 25521,
- "##bham": 25522,
- "##ference": 25523,
- "##omics": 25524,
- "m2": 25525,
- "##bm": 25526,
- "trois": 25527,
- "##tropical": 25528,
- "##в": 25529,
- "commemorates": 25530,
- "##meric": 25531,
- "marge": 25532,
- "##raction": 25533,
- "1643": 25534,
- "670": 25535,
- "cosmetic": 25536,
- "ravaged": 25537,
- "##ige": 25538,
- "catastrophe": 25539,
- "eng": 25540,
- "##shida": 25541,
- "albrecht": 25542,
- "arterial": 25543,
- "bellamy": 25544,
- "decor": 25545,
- "harmon": 25546,
- "##rde": 25547,
- "bulbs": 25548,
- "synchronized": 25549,
- "vito": 25550,
- "easiest": 25551,
- "shetland": 25552,
- "shielding": 25553,
- "wnba": 25554,
- "##glers": 25555,
- "##ssar": 25556,
- "##riam": 25557,
- "brianna": 25558,
- "cumbria": 25559,
- "##aceous": 25560,
- "##rard": 25561,
- "cores": 25562,
- "thayer": 25563,
- "##nsk": 25564,
- "brood": 25565,
- "hilltop": 25566,
- "luminous": 25567,
- "carts": 25568,
- "keynote": 25569,
- "larkin": 25570,
- "logos": 25571,
- "##cta": 25572,
- "##ا": 25573,
- "##mund": 25574,
- "##quay": 25575,
- "lilith": 25576,
- "tinted": 25577,
- "277": 25578,
- "wrestle": 25579,
- "mobilization": 25580,
- "##uses": 25581,
- "sequential": 25582,
- "siam": 25583,
- "bloomfield": 25584,
- "takahashi": 25585,
- "274": 25586,
- "##ieving": 25587,
- "presenters": 25588,
- "ringo": 25589,
- "blazed": 25590,
- "witty": 25591,
- "##oven": 25592,
- "##ignant": 25593,
- "devastation": 25594,
- "haydn": 25595,
- "harmed": 25596,
- "newt": 25597,
- "therese": 25598,
- "##peed": 25599,
- "gershwin": 25600,
- "molina": 25601,
- "rabbis": 25602,
- "sudanese": 25603,
- "001": 25604,
- "innate": 25605,
- "restarted": 25606,
- "##sack": 25607,
- "##fus": 25608,
- "slices": 25609,
- "wb": 25610,
- "##shah": 25611,
- "enroll": 25612,
- "hypothetical": 25613,
- "hysterical": 25614,
- "1743": 25615,
- "fabio": 25616,
- "indefinite": 25617,
- "warped": 25618,
- "##hg": 25619,
- "exchanging": 25620,
- "525": 25621,
- "unsuitable": 25622,
- "##sboro": 25623,
- "gallo": 25624,
- "1603": 25625,
- "bret": 25626,
- "cobalt": 25627,
- "homemade": 25628,
- "##hunter": 25629,
- "mx": 25630,
- "operatives": 25631,
- "##dhar": 25632,
- "terraces": 25633,
- "durable": 25634,
- "latch": 25635,
- "pens": 25636,
- "whorls": 25637,
- "##ctuated": 25638,
- "##eaux": 25639,
- "billing": 25640,
- "ligament": 25641,
- "succumbed": 25642,
- "##gly": 25643,
- "regulators": 25644,
- "spawn": 25645,
- "##brick": 25646,
- "##stead": 25647,
- "filmfare": 25648,
- "rochelle": 25649,
- "##nzo": 25650,
- "1725": 25651,
- "circumstance": 25652,
- "saber": 25653,
- "supplements": 25654,
- "##nsky": 25655,
- "##tson": 25656,
- "crowe": 25657,
- "wellesley": 25658,
- "carrot": 25659,
- "##9th": 25660,
- "##movable": 25661,
- "primate": 25662,
- "drury": 25663,
- "sincerely": 25664,
- "topical": 25665,
- "##mad": 25666,
- "##rao": 25667,
- "callahan": 25668,
- "kyiv": 25669,
- "smarter": 25670,
- "tits": 25671,
- "undo": 25672,
- "##yeh": 25673,
- "announcements": 25674,
- "anthologies": 25675,
- "barrio": 25676,
- "nebula": 25677,
- "##islaus": 25678,
- "##shaft": 25679,
- "##tyn": 25680,
- "bodyguards": 25681,
- "2021": 25682,
- "assassinate": 25683,
- "barns": 25684,
- "emmett": 25685,
- "scully": 25686,
- "##mah": 25687,
- "##yd": 25688,
- "##eland": 25689,
- "##tino": 25690,
- "##itarian": 25691,
- "demoted": 25692,
- "gorman": 25693,
- "lashed": 25694,
- "prized": 25695,
- "adventist": 25696,
- "writ": 25697,
- "##gui": 25698,
- "alla": 25699,
- "invertebrates": 25700,
- "##ausen": 25701,
- "1641": 25702,
- "amman": 25703,
- "1742": 25704,
- "align": 25705,
- "healy": 25706,
- "redistribution": 25707,
- "##gf": 25708,
- "##rize": 25709,
- "insulation": 25710,
- "##drop": 25711,
- "adherents": 25712,
- "hezbollah": 25713,
- "vitro": 25714,
- "ferns": 25715,
- "yanking": 25716,
- "269": 25717,
- "php": 25718,
- "registering": 25719,
- "uppsala": 25720,
- "cheerleading": 25721,
- "confines": 25722,
- "mischievous": 25723,
- "tully": 25724,
- "##ross": 25725,
- "49th": 25726,
- "docked": 25727,
- "roam": 25728,
- "stipulated": 25729,
- "pumpkin": 25730,
- "##bry": 25731,
- "prompt": 25732,
- "##ezer": 25733,
- "blindly": 25734,
- "shuddering": 25735,
- "craftsmen": 25736,
- "frail": 25737,
- "scented": 25738,
- "katharine": 25739,
- "scramble": 25740,
- "shaggy": 25741,
- "sponge": 25742,
- "helix": 25743,
- "zaragoza": 25744,
- "279": 25745,
- "##52": 25746,
- "43rd": 25747,
- "backlash": 25748,
- "fontaine": 25749,
- "seizures": 25750,
- "posse": 25751,
- "cowan": 25752,
- "nonfiction": 25753,
- "telenovela": 25754,
- "wwii": 25755,
- "hammered": 25756,
- "undone": 25757,
- "##gpur": 25758,
- "encircled": 25759,
- "irs": 25760,
- "##ivation": 25761,
- "artefacts": 25762,
- "oneself": 25763,
- "searing": 25764,
- "smallpox": 25765,
- "##belle": 25766,
- "##osaurus": 25767,
- "shandong": 25768,
- "breached": 25769,
- "upland": 25770,
- "blushing": 25771,
- "rankin": 25772,
- "infinitely": 25773,
- "psyche": 25774,
- "tolerated": 25775,
- "docking": 25776,
- "evicted": 25777,
- "##col": 25778,
- "unmarked": 25779,
- "##lving": 25780,
- "gnome": 25781,
- "lettering": 25782,
- "litres": 25783,
- "musique": 25784,
- "##oint": 25785,
- "benevolent": 25786,
- "##jal": 25787,
- "blackened": 25788,
- "##anna": 25789,
- "mccall": 25790,
- "racers": 25791,
- "tingle": 25792,
- "##ocene": 25793,
- "##orestation": 25794,
- "introductions": 25795,
- "radically": 25796,
- "292": 25797,
- "##hiff": 25798,
- "##باد": 25799,
- "1610": 25800,
- "1739": 25801,
- "munchen": 25802,
- "plead": 25803,
- "##nka": 25804,
- "condo": 25805,
- "scissors": 25806,
- "##sight": 25807,
- "##tens": 25808,
- "apprehension": 25809,
- "##cey": 25810,
- "##yin": 25811,
- "hallmark": 25812,
- "watering": 25813,
- "formulas": 25814,
- "sequels": 25815,
- "##llas": 25816,
- "aggravated": 25817,
- "bae": 25818,
- "commencing": 25819,
- "##building": 25820,
- "enfield": 25821,
- "prohibits": 25822,
- "marne": 25823,
- "vedic": 25824,
- "civilized": 25825,
- "euclidean": 25826,
- "jagger": 25827,
- "beforehand": 25828,
- "blasts": 25829,
- "dumont": 25830,
- "##arney": 25831,
- "##nem": 25832,
- "740": 25833,
- "conversions": 25834,
- "hierarchical": 25835,
- "rios": 25836,
- "simulator": 25837,
- "##dya": 25838,
- "##lellan": 25839,
- "hedges": 25840,
- "oleg": 25841,
- "thrusts": 25842,
- "shadowed": 25843,
- "darby": 25844,
- "maximize": 25845,
- "1744": 25846,
- "gregorian": 25847,
- "##nded": 25848,
- "##routed": 25849,
- "sham": 25850,
- "unspecified": 25851,
- "##hog": 25852,
- "emory": 25853,
- "factual": 25854,
- "##smo": 25855,
- "##tp": 25856,
- "fooled": 25857,
- "##rger": 25858,
- "ortega": 25859,
- "wellness": 25860,
- "marlon": 25861,
- "##oton": 25862,
- "##urance": 25863,
- "casket": 25864,
- "keating": 25865,
- "ley": 25866,
- "enclave": 25867,
- "##ayan": 25868,
- "char": 25869,
- "influencing": 25870,
- "jia": 25871,
- "##chenko": 25872,
- "412": 25873,
- "ammonia": 25874,
- "erebidae": 25875,
- "incompatible": 25876,
- "violins": 25877,
- "cornered": 25878,
- "##arat": 25879,
- "grooves": 25880,
- "astronauts": 25881,
- "columbian": 25882,
- "rampant": 25883,
- "fabrication": 25884,
- "kyushu": 25885,
- "mahmud": 25886,
- "vanish": 25887,
- "##dern": 25888,
- "mesopotamia": 25889,
- "##lete": 25890,
- "ict": 25891,
- "##rgen": 25892,
- "caspian": 25893,
- "kenji": 25894,
- "pitted": 25895,
- "##vered": 25896,
- "999": 25897,
- "grimace": 25898,
- "roanoke": 25899,
- "tchaikovsky": 25900,
- "twinned": 25901,
- "##analysis": 25902,
- "##awan": 25903,
- "xinjiang": 25904,
- "arias": 25905,
- "clemson": 25906,
- "kazakh": 25907,
- "sizable": 25908,
- "1662": 25909,
- "##khand": 25910,
- "##vard": 25911,
- "plunge": 25912,
- "tatum": 25913,
- "vittorio": 25914,
- "##nden": 25915,
- "cholera": 25916,
- "##dana": 25917,
- "##oper": 25918,
- "bracing": 25919,
- "indifference": 25920,
- "projectile": 25921,
- "superliga": 25922,
- "##chee": 25923,
- "realises": 25924,
- "upgrading": 25925,
- "299": 25926,
- "porte": 25927,
- "retribution": 25928,
- "##vies": 25929,
- "nk": 25930,
- "stil": 25931,
- "##resses": 25932,
- "ama": 25933,
- "bureaucracy": 25934,
- "blackberry": 25935,
- "bosch": 25936,
- "testosterone": 25937,
- "collapses": 25938,
- "greer": 25939,
- "##pathic": 25940,
- "ioc": 25941,
- "fifties": 25942,
- "malls": 25943,
- "##erved": 25944,
- "bao": 25945,
- "baskets": 25946,
- "adolescents": 25947,
- "siegfried": 25948,
- "##osity": 25949,
- "##tosis": 25950,
- "mantra": 25951,
- "detecting": 25952,
- "existent": 25953,
- "fledgling": 25954,
- "##cchi": 25955,
- "dissatisfied": 25956,
- "gan": 25957,
- "telecommunication": 25958,
- "mingled": 25959,
- "sobbed": 25960,
- "6000": 25961,
- "controversies": 25962,
- "outdated": 25963,
- "taxis": 25964,
- "##raus": 25965,
- "fright": 25966,
- "slams": 25967,
- "##lham": 25968,
- "##fect": 25969,
- "##tten": 25970,
- "detectors": 25971,
- "fetal": 25972,
- "tanned": 25973,
- "##uw": 25974,
- "fray": 25975,
- "goth": 25976,
- "olympian": 25977,
- "skipping": 25978,
- "mandates": 25979,
- "scratches": 25980,
- "sheng": 25981,
- "unspoken": 25982,
- "hyundai": 25983,
- "tracey": 25984,
- "hotspur": 25985,
- "restrictive": 25986,
- "##buch": 25987,
- "americana": 25988,
- "mundo": 25989,
- "##bari": 25990,
- "burroughs": 25991,
- "diva": 25992,
- "vulcan": 25993,
- "##6th": 25994,
- "distinctions": 25995,
- "thumping": 25996,
- "##ngen": 25997,
- "mikey": 25998,
- "sheds": 25999,
- "fide": 26000,
- "rescues": 26001,
- "springsteen": 26002,
- "vested": 26003,
- "valuation": 26004,
- "##ece": 26005,
- "##ely": 26006,
- "pinnacle": 26007,
- "rake": 26008,
- "sylvie": 26009,
- "##edo": 26010,
- "almond": 26011,
- "quivering": 26012,
- "##irus": 26013,
- "alteration": 26014,
- "faltered": 26015,
- "##wad": 26016,
- "51st": 26017,
- "hydra": 26018,
- "ticked": 26019,
- "##kato": 26020,
- "recommends": 26021,
- "##dicated": 26022,
- "antigua": 26023,
- "arjun": 26024,
- "stagecoach": 26025,
- "wilfred": 26026,
- "trickle": 26027,
- "pronouns": 26028,
- "##pon": 26029,
- "aryan": 26030,
- "nighttime": 26031,
- "##anian": 26032,
- "gall": 26033,
- "pea": 26034,
- "stitch": 26035,
- "##hei": 26036,
- "leung": 26037,
- "milos": 26038,
- "##dini": 26039,
- "eritrea": 26040,
- "nexus": 26041,
- "starved": 26042,
- "snowfall": 26043,
- "kant": 26044,
- "parasitic": 26045,
- "cot": 26046,
- "discus": 26047,
- "hana": 26048,
- "strikers": 26049,
- "appleton": 26050,
- "kitchens": 26051,
- "##erina": 26052,
- "##partisan": 26053,
- "##itha": 26054,
- "##vius": 26055,
- "disclose": 26056,
- "metis": 26057,
- "##channel": 26058,
- "1701": 26059,
- "tesla": 26060,
- "##vera": 26061,
- "fitch": 26062,
- "1735": 26063,
- "blooded": 26064,
- "##tila": 26065,
- "decimal": 26066,
- "##tang": 26067,
- "##bai": 26068,
- "cyclones": 26069,
- "eun": 26070,
- "bottled": 26071,
- "peas": 26072,
- "pensacola": 26073,
- "basha": 26074,
- "bolivian": 26075,
- "crabs": 26076,
- "boil": 26077,
- "lanterns": 26078,
- "partridge": 26079,
- "roofed": 26080,
- "1645": 26081,
- "necks": 26082,
- "##phila": 26083,
- "opined": 26084,
- "patting": 26085,
- "##kla": 26086,
- "##lland": 26087,
- "chuckles": 26088,
- "volta": 26089,
- "whereupon": 26090,
- "##nche": 26091,
- "devout": 26092,
- "euroleague": 26093,
- "suicidal": 26094,
- "##dee": 26095,
- "inherently": 26096,
- "involuntary": 26097,
- "knitting": 26098,
- "nasser": 26099,
- "##hide": 26100,
- "puppets": 26101,
- "colourful": 26102,
- "courageous": 26103,
- "southend": 26104,
- "stills": 26105,
- "miraculous": 26106,
- "hodgson": 26107,
- "richer": 26108,
- "rochdale": 26109,
- "ethernet": 26110,
- "greta": 26111,
- "uniting": 26112,
- "prism": 26113,
- "umm": 26114,
- "##haya": 26115,
- "##itical": 26116,
- "##utation": 26117,
- "deterioration": 26118,
- "pointe": 26119,
- "prowess": 26120,
- "##ropriation": 26121,
- "lids": 26122,
- "scranton": 26123,
- "billings": 26124,
- "subcontinent": 26125,
- "##koff": 26126,
- "##scope": 26127,
- "brute": 26128,
- "kellogg": 26129,
- "psalms": 26130,
- "degraded": 26131,
- "##vez": 26132,
- "stanisław": 26133,
- "##ructured": 26134,
- "ferreira": 26135,
- "pun": 26136,
- "astonishing": 26137,
- "gunnar": 26138,
- "##yat": 26139,
- "arya": 26140,
- "prc": 26141,
- "gottfried": 26142,
- "##tight": 26143,
- "excursion": 26144,
- "##ographer": 26145,
- "dina": 26146,
- "##quil": 26147,
- "##nare": 26148,
- "huffington": 26149,
- "illustrious": 26150,
- "wilbur": 26151,
- "gundam": 26152,
- "verandah": 26153,
- "##zard": 26154,
- "naacp": 26155,
- "##odle": 26156,
- "constructive": 26157,
- "fjord": 26158,
- "kade": 26159,
- "##naud": 26160,
- "generosity": 26161,
- "thrilling": 26162,
- "baseline": 26163,
- "cayman": 26164,
- "frankish": 26165,
- "plastics": 26166,
- "accommodations": 26167,
- "zoological": 26168,
- "##fting": 26169,
- "cedric": 26170,
- "qb": 26171,
- "motorized": 26172,
- "##dome": 26173,
- "##otted": 26174,
- "squealed": 26175,
- "tackled": 26176,
- "canucks": 26177,
- "budgets": 26178,
- "situ": 26179,
- "asthma": 26180,
- "dail": 26181,
- "gabled": 26182,
- "grasslands": 26183,
- "whimpered": 26184,
- "writhing": 26185,
- "judgments": 26186,
- "##65": 26187,
- "minnie": 26188,
- "pv": 26189,
- "##carbon": 26190,
- "bananas": 26191,
- "grille": 26192,
- "domes": 26193,
- "monique": 26194,
- "odin": 26195,
- "maguire": 26196,
- "markham": 26197,
- "tierney": 26198,
- "##estra": 26199,
- "##chua": 26200,
- "libel": 26201,
- "poke": 26202,
- "speedy": 26203,
- "atrium": 26204,
- "laval": 26205,
- "notwithstanding": 26206,
- "##edly": 26207,
- "fai": 26208,
- "kala": 26209,
- "##sur": 26210,
- "robb": 26211,
- "##sma": 26212,
- "listings": 26213,
- "luz": 26214,
- "supplementary": 26215,
- "tianjin": 26216,
- "##acing": 26217,
- "enzo": 26218,
- "jd": 26219,
- "ric": 26220,
- "scanner": 26221,
- "croats": 26222,
- "transcribed": 26223,
- "##49": 26224,
- "arden": 26225,
- "cv": 26226,
- "##hair": 26227,
- "##raphy": 26228,
- "##lver": 26229,
- "##uy": 26230,
- "357": 26231,
- "seventies": 26232,
- "staggering": 26233,
- "alam": 26234,
- "horticultural": 26235,
- "hs": 26236,
- "regression": 26237,
- "timbers": 26238,
- "blasting": 26239,
- "##ounded": 26240,
- "montagu": 26241,
- "manipulating": 26242,
- "##cit": 26243,
- "catalytic": 26244,
- "1550": 26245,
- "troopers": 26246,
- "##meo": 26247,
- "condemnation": 26248,
- "fitzpatrick": 26249,
- "##oire": 26250,
- "##roved": 26251,
- "inexperienced": 26252,
- "1670": 26253,
- "castes": 26254,
- "##lative": 26255,
- "outing": 26256,
- "314": 26257,
- "dubois": 26258,
- "flicking": 26259,
- "quarrel": 26260,
- "ste": 26261,
- "learners": 26262,
- "1625": 26263,
- "iq": 26264,
- "whistled": 26265,
- "##class": 26266,
- "282": 26267,
- "classify": 26268,
- "tariffs": 26269,
- "temperament": 26270,
- "355": 26271,
- "folly": 26272,
- "liszt": 26273,
- "##yles": 26274,
- "immersed": 26275,
- "jordanian": 26276,
- "ceasefire": 26277,
- "apparel": 26278,
- "extras": 26279,
- "maru": 26280,
- "fished": 26281,
- "##bio": 26282,
- "harta": 26283,
- "stockport": 26284,
- "assortment": 26285,
- "craftsman": 26286,
- "paralysis": 26287,
- "transmitters": 26288,
- "##cola": 26289,
- "blindness": 26290,
- "##wk": 26291,
- "fatally": 26292,
- "proficiency": 26293,
- "solemnly": 26294,
- "##orno": 26295,
- "repairing": 26296,
- "amore": 26297,
- "groceries": 26298,
- "ultraviolet": 26299,
- "##chase": 26300,
- "schoolhouse": 26301,
- "##tua": 26302,
- "resurgence": 26303,
- "nailed": 26304,
- "##otype": 26305,
- "##×": 26306,
- "ruse": 26307,
- "saliva": 26308,
- "diagrams": 26309,
- "##tructing": 26310,
- "albans": 26311,
- "rann": 26312,
- "thirties": 26313,
- "1b": 26314,
- "antennas": 26315,
- "hilarious": 26316,
- "cougars": 26317,
- "paddington": 26318,
- "stats": 26319,
- "##eger": 26320,
- "breakaway": 26321,
- "ipod": 26322,
- "reza": 26323,
- "authorship": 26324,
- "prohibiting": 26325,
- "scoffed": 26326,
- "##etz": 26327,
- "##ttle": 26328,
- "conscription": 26329,
- "defected": 26330,
- "trondheim": 26331,
- "##fires": 26332,
- "ivanov": 26333,
- "keenan": 26334,
- "##adan": 26335,
- "##ciful": 26336,
- "##fb": 26337,
- "##slow": 26338,
- "locating": 26339,
- "##ials": 26340,
- "##tford": 26341,
- "cadiz": 26342,
- "basalt": 26343,
- "blankly": 26344,
- "interned": 26345,
- "rags": 26346,
- "rattling": 26347,
- "##tick": 26348,
- "carpathian": 26349,
- "reassured": 26350,
- "sync": 26351,
- "bum": 26352,
- "guildford": 26353,
- "iss": 26354,
- "staunch": 26355,
- "##onga": 26356,
- "astronomers": 26357,
- "sera": 26358,
- "sofie": 26359,
- "emergencies": 26360,
- "susquehanna": 26361,
- "##heard": 26362,
- "duc": 26363,
- "mastery": 26364,
- "vh1": 26365,
- "williamsburg": 26366,
- "bayer": 26367,
- "buckled": 26368,
- "craving": 26369,
- "##khan": 26370,
- "##rdes": 26371,
- "bloomington": 26372,
- "##write": 26373,
- "alton": 26374,
- "barbecue": 26375,
- "##bians": 26376,
- "justine": 26377,
- "##hri": 26378,
- "##ndt": 26379,
- "delightful": 26380,
- "smartphone": 26381,
- "newtown": 26382,
- "photon": 26383,
- "retrieval": 26384,
- "peugeot": 26385,
- "hissing": 26386,
- "##monium": 26387,
- "##orough": 26388,
- "flavors": 26389,
- "lighted": 26390,
- "relaunched": 26391,
- "tainted": 26392,
- "##games": 26393,
- "##lysis": 26394,
- "anarchy": 26395,
- "microscopic": 26396,
- "hopping": 26397,
- "adept": 26398,
- "evade": 26399,
- "evie": 26400,
- "##beau": 26401,
- "inhibit": 26402,
- "sinn": 26403,
- "adjustable": 26404,
- "hurst": 26405,
- "intuition": 26406,
- "wilton": 26407,
- "cisco": 26408,
- "44th": 26409,
- "lawful": 26410,
- "lowlands": 26411,
- "stockings": 26412,
- "thierry": 26413,
- "##dalen": 26414,
- "##hila": 26415,
- "##nai": 26416,
- "fates": 26417,
- "prank": 26418,
- "tb": 26419,
- "maison": 26420,
- "lobbied": 26421,
- "provocative": 26422,
- "1724": 26423,
- "4a": 26424,
- "utopia": 26425,
- "##qual": 26426,
- "carbonate": 26427,
- "gujarati": 26428,
- "purcell": 26429,
- "##rford": 26430,
- "curtiss": 26431,
- "##mei": 26432,
- "overgrown": 26433,
- "arenas": 26434,
- "mediation": 26435,
- "swallows": 26436,
- "##rnik": 26437,
- "respectful": 26438,
- "turnbull": 26439,
- "##hedron": 26440,
- "##hope": 26441,
- "alyssa": 26442,
- "ozone": 26443,
- "##ʻi": 26444,
- "ami": 26445,
- "gestapo": 26446,
- "johansson": 26447,
- "snooker": 26448,
- "canteen": 26449,
- "cuff": 26450,
- "declines": 26451,
- "empathy": 26452,
- "stigma": 26453,
- "##ags": 26454,
- "##iner": 26455,
- "##raine": 26456,
- "taxpayers": 26457,
- "gui": 26458,
- "volga": 26459,
- "##wright": 26460,
- "##copic": 26461,
- "lifespan": 26462,
- "overcame": 26463,
- "tattooed": 26464,
- "enactment": 26465,
- "giggles": 26466,
- "##ador": 26467,
- "##camp": 26468,
- "barrington": 26469,
- "bribe": 26470,
- "obligatory": 26471,
- "orbiting": 26472,
- "peng": 26473,
- "##enas": 26474,
- "elusive": 26475,
- "sucker": 26476,
- "##vating": 26477,
- "cong": 26478,
- "hardship": 26479,
- "empowered": 26480,
- "anticipating": 26481,
- "estrada": 26482,
- "cryptic": 26483,
- "greasy": 26484,
- "detainees": 26485,
- "planck": 26486,
- "sudbury": 26487,
- "plaid": 26488,
- "dod": 26489,
- "marriott": 26490,
- "kayla": 26491,
- "##ears": 26492,
- "##vb": 26493,
- "##zd": 26494,
- "mortally": 26495,
- "##hein": 26496,
- "cognition": 26497,
- "radha": 26498,
- "319": 26499,
- "liechtenstein": 26500,
- "meade": 26501,
- "richly": 26502,
- "argyle": 26503,
- "harpsichord": 26504,
- "liberalism": 26505,
- "trumpets": 26506,
- "lauded": 26507,
- "tyrant": 26508,
- "salsa": 26509,
- "tiled": 26510,
- "lear": 26511,
- "promoters": 26512,
- "reused": 26513,
- "slicing": 26514,
- "trident": 26515,
- "##chuk": 26516,
- "##gami": 26517,
- "##lka": 26518,
- "cantor": 26519,
- "checkpoint": 26520,
- "##points": 26521,
- "gaul": 26522,
- "leger": 26523,
- "mammalian": 26524,
- "##tov": 26525,
- "##aar": 26526,
- "##schaft": 26527,
- "doha": 26528,
- "frenchman": 26529,
- "nirvana": 26530,
- "##vino": 26531,
- "delgado": 26532,
- "headlining": 26533,
- "##eron": 26534,
- "##iography": 26535,
- "jug": 26536,
- "tko": 26537,
- "1649": 26538,
- "naga": 26539,
- "intersections": 26540,
- "##jia": 26541,
- "benfica": 26542,
- "nawab": 26543,
- "##suka": 26544,
- "ashford": 26545,
- "gulp": 26546,
- "##deck": 26547,
- "##vill": 26548,
- "##rug": 26549,
- "brentford": 26550,
- "frazier": 26551,
- "pleasures": 26552,
- "dunne": 26553,
- "potsdam": 26554,
- "shenzhen": 26555,
- "dentistry": 26556,
- "##tec": 26557,
- "flanagan": 26558,
- "##dorff": 26559,
- "##hear": 26560,
- "chorale": 26561,
- "dinah": 26562,
- "prem": 26563,
- "quezon": 26564,
- "##rogated": 26565,
- "relinquished": 26566,
- "sutra": 26567,
- "terri": 26568,
- "##pani": 26569,
- "flaps": 26570,
- "##rissa": 26571,
- "poly": 26572,
- "##rnet": 26573,
- "homme": 26574,
- "aback": 26575,
- "##eki": 26576,
- "linger": 26577,
- "womb": 26578,
- "##kson": 26579,
- "##lewood": 26580,
- "doorstep": 26581,
- "orthodoxy": 26582,
- "threaded": 26583,
- "westfield": 26584,
- "##rval": 26585,
- "dioceses": 26586,
- "fridays": 26587,
- "subsided": 26588,
- "##gata": 26589,
- "loyalists": 26590,
- "##biotic": 26591,
- "##ettes": 26592,
- "letterman": 26593,
- "lunatic": 26594,
- "prelate": 26595,
- "tenderly": 26596,
- "invariably": 26597,
- "souza": 26598,
- "thug": 26599,
- "winslow": 26600,
- "##otide": 26601,
- "furlongs": 26602,
- "gogh": 26603,
- "jeopardy": 26604,
- "##runa": 26605,
- "pegasus": 26606,
- "##umble": 26607,
- "humiliated": 26608,
- "standalone": 26609,
- "tagged": 26610,
- "##roller": 26611,
- "freshmen": 26612,
- "klan": 26613,
- "##bright": 26614,
- "attaining": 26615,
- "initiating": 26616,
- "transatlantic": 26617,
- "logged": 26618,
- "viz": 26619,
- "##uance": 26620,
- "1723": 26621,
- "combatants": 26622,
- "intervening": 26623,
- "stephane": 26624,
- "chieftain": 26625,
- "despised": 26626,
- "grazed": 26627,
- "317": 26628,
- "cdc": 26629,
- "galveston": 26630,
- "godzilla": 26631,
- "macro": 26632,
- "simulate": 26633,
- "##planes": 26634,
- "parades": 26635,
- "##esses": 26636,
- "960": 26637,
- "##ductive": 26638,
- "##unes": 26639,
- "equator": 26640,
- "overdose": 26641,
- "##cans": 26642,
- "##hosh": 26643,
- "##lifting": 26644,
- "joshi": 26645,
- "epstein": 26646,
- "sonora": 26647,
- "treacherous": 26648,
- "aquatics": 26649,
- "manchu": 26650,
- "responsive": 26651,
- "##sation": 26652,
- "supervisory": 26653,
- "##christ": 26654,
- "##llins": 26655,
- "##ibar": 26656,
- "##balance": 26657,
- "##uso": 26658,
- "kimball": 26659,
- "karlsruhe": 26660,
- "mab": 26661,
- "##emy": 26662,
- "ignores": 26663,
- "phonetic": 26664,
- "reuters": 26665,
- "spaghetti": 26666,
- "820": 26667,
- "almighty": 26668,
- "danzig": 26669,
- "rumbling": 26670,
- "tombstone": 26671,
- "designations": 26672,
- "lured": 26673,
- "outset": 26674,
- "##felt": 26675,
- "supermarkets": 26676,
- "##wt": 26677,
- "grupo": 26678,
- "kei": 26679,
- "kraft": 26680,
- "susanna": 26681,
- "##blood": 26682,
- "comprehension": 26683,
- "genealogy": 26684,
- "##aghan": 26685,
- "##verted": 26686,
- "redding": 26687,
- "##ythe": 26688,
- "1722": 26689,
- "bowing": 26690,
- "##pore": 26691,
- "##roi": 26692,
- "lest": 26693,
- "sharpened": 26694,
- "fulbright": 26695,
- "valkyrie": 26696,
- "sikhs": 26697,
- "##unds": 26698,
- "swans": 26699,
- "bouquet": 26700,
- "merritt": 26701,
- "##tage": 26702,
- "##venting": 26703,
- "commuted": 26704,
- "redhead": 26705,
- "clerks": 26706,
- "leasing": 26707,
- "cesare": 26708,
- "dea": 26709,
- "hazy": 26710,
- "##vances": 26711,
- "fledged": 26712,
- "greenfield": 26713,
- "servicemen": 26714,
- "##gical": 26715,
- "armando": 26716,
- "blackout": 26717,
- "dt": 26718,
- "sagged": 26719,
- "downloadable": 26720,
- "intra": 26721,
- "potion": 26722,
- "pods": 26723,
- "##4th": 26724,
- "##mism": 26725,
- "xp": 26726,
- "attendants": 26727,
- "gambia": 26728,
- "stale": 26729,
- "##ntine": 26730,
- "plump": 26731,
- "asteroids": 26732,
- "rediscovered": 26733,
- "buds": 26734,
- "flea": 26735,
- "hive": 26736,
- "##neas": 26737,
- "1737": 26738,
- "classifications": 26739,
- "debuts": 26740,
- "##eles": 26741,
- "olympus": 26742,
- "scala": 26743,
- "##eurs": 26744,
- "##gno": 26745,
- "##mute": 26746,
- "hummed": 26747,
- "sigismund": 26748,
- "visuals": 26749,
- "wiggled": 26750,
- "await": 26751,
- "pilasters": 26752,
- "clench": 26753,
- "sulfate": 26754,
- "##ances": 26755,
- "bellevue": 26756,
- "enigma": 26757,
- "trainee": 26758,
- "snort": 26759,
- "##sw": 26760,
- "clouded": 26761,
- "denim": 26762,
- "##rank": 26763,
- "##rder": 26764,
- "churning": 26765,
- "hartman": 26766,
- "lodges": 26767,
- "riches": 26768,
- "sima": 26769,
- "##missible": 26770,
- "accountable": 26771,
- "socrates": 26772,
- "regulates": 26773,
- "mueller": 26774,
- "##cr": 26775,
- "1702": 26776,
- "avoids": 26777,
- "solids": 26778,
- "himalayas": 26779,
- "nutrient": 26780,
- "pup": 26781,
- "##jevic": 26782,
- "squat": 26783,
- "fades": 26784,
- "nec": 26785,
- "##lates": 26786,
- "##pina": 26787,
- "##rona": 26788,
- "##ου": 26789,
- "privateer": 26790,
- "tequila": 26791,
- "##gative": 26792,
- "##mpton": 26793,
- "apt": 26794,
- "hornet": 26795,
- "immortals": 26796,
- "##dou": 26797,
- "asturias": 26798,
- "cleansing": 26799,
- "dario": 26800,
- "##rries": 26801,
- "##anta": 26802,
- "etymology": 26803,
- "servicing": 26804,
- "zhejiang": 26805,
- "##venor": 26806,
- "##nx": 26807,
- "horned": 26808,
- "erasmus": 26809,
- "rayon": 26810,
- "relocating": 26811,
- "£10": 26812,
- "##bags": 26813,
- "escalated": 26814,
- "promenade": 26815,
- "stubble": 26816,
- "2010s": 26817,
- "artisans": 26818,
- "axial": 26819,
- "liquids": 26820,
- "mora": 26821,
- "sho": 26822,
- "yoo": 26823,
- "##tsky": 26824,
- "bundles": 26825,
- "oldies": 26826,
- "##nally": 26827,
- "notification": 26828,
- "bastion": 26829,
- "##ths": 26830,
- "sparkle": 26831,
- "##lved": 26832,
- "1728": 26833,
- "leash": 26834,
- "pathogen": 26835,
- "highs": 26836,
- "##hmi": 26837,
- "immature": 26838,
- "880": 26839,
- "gonzaga": 26840,
- "ignatius": 26841,
- "mansions": 26842,
- "monterrey": 26843,
- "sweets": 26844,
- "bryson": 26845,
- "##loe": 26846,
- "polled": 26847,
- "regatta": 26848,
- "brightest": 26849,
- "pei": 26850,
- "rosy": 26851,
- "squid": 26852,
- "hatfield": 26853,
- "payroll": 26854,
- "addict": 26855,
- "meath": 26856,
- "cornerback": 26857,
- "heaviest": 26858,
- "lodging": 26859,
- "##mage": 26860,
- "capcom": 26861,
- "rippled": 26862,
- "##sily": 26863,
- "barnet": 26864,
- "mayhem": 26865,
- "ymca": 26866,
- "snuggled": 26867,
- "rousseau": 26868,
- "##cute": 26869,
- "blanchard": 26870,
- "284": 26871,
- "fragmented": 26872,
- "leighton": 26873,
- "chromosomes": 26874,
- "risking": 26875,
- "##md": 26876,
- "##strel": 26877,
- "##utter": 26878,
- "corinne": 26879,
- "coyotes": 26880,
- "cynical": 26881,
- "hiroshi": 26882,
- "yeomanry": 26883,
- "##ractive": 26884,
- "ebook": 26885,
- "grading": 26886,
- "mandela": 26887,
- "plume": 26888,
- "agustin": 26889,
- "magdalene": 26890,
- "##rkin": 26891,
- "bea": 26892,
- "femme": 26893,
- "trafford": 26894,
- "##coll": 26895,
- "##lun": 26896,
- "##tance": 26897,
- "52nd": 26898,
- "fourier": 26899,
- "upton": 26900,
- "##mental": 26901,
- "camilla": 26902,
- "gust": 26903,
- "iihf": 26904,
- "islamabad": 26905,
- "longevity": 26906,
- "##kala": 26907,
- "feldman": 26908,
- "netting": 26909,
- "##rization": 26910,
- "endeavour": 26911,
- "foraging": 26912,
- "mfa": 26913,
- "orr": 26914,
- "##open": 26915,
- "greyish": 26916,
- "contradiction": 26917,
- "graz": 26918,
- "##ruff": 26919,
- "handicapped": 26920,
- "marlene": 26921,
- "tweed": 26922,
- "oaxaca": 26923,
- "spp": 26924,
- "campos": 26925,
- "miocene": 26926,
- "pri": 26927,
- "configured": 26928,
- "cooks": 26929,
- "pluto": 26930,
- "cozy": 26931,
- "pornographic": 26932,
- "##entes": 26933,
- "70th": 26934,
- "fairness": 26935,
- "glided": 26936,
- "jonny": 26937,
- "lynne": 26938,
- "rounding": 26939,
- "sired": 26940,
- "##emon": 26941,
- "##nist": 26942,
- "remade": 26943,
- "uncover": 26944,
- "##mack": 26945,
- "complied": 26946,
- "lei": 26947,
- "newsweek": 26948,
- "##jured": 26949,
- "##parts": 26950,
- "##enting": 26951,
- "##pg": 26952,
- "293": 26953,
- "finer": 26954,
- "guerrillas": 26955,
- "athenian": 26956,
- "deng": 26957,
- "disused": 26958,
- "stepmother": 26959,
- "accuse": 26960,
- "gingerly": 26961,
- "seduction": 26962,
- "521": 26963,
- "confronting": 26964,
- "##walker": 26965,
- "##going": 26966,
- "gora": 26967,
- "nostalgia": 26968,
- "sabres": 26969,
- "virginity": 26970,
- "wrenched": 26971,
- "##minated": 26972,
- "syndication": 26973,
- "wielding": 26974,
- "eyre": 26975,
- "##56": 26976,
- "##gnon": 26977,
- "##igny": 26978,
- "behaved": 26979,
- "taxpayer": 26980,
- "sweeps": 26981,
- "##growth": 26982,
- "childless": 26983,
- "gallant": 26984,
- "##ywood": 26985,
- "amplified": 26986,
- "geraldine": 26987,
- "scrape": 26988,
- "##ffi": 26989,
- "babylonian": 26990,
- "fresco": 26991,
- "##rdan": 26992,
- "##kney": 26993,
- "##position": 26994,
- "1718": 26995,
- "restricting": 26996,
- "tack": 26997,
- "fukuoka": 26998,
- "osborn": 26999,
- "selector": 27000,
- "partnering": 27001,
- "##dlow": 27002,
- "318": 27003,
- "gnu": 27004,
- "kia": 27005,
- "tak": 27006,
- "whitley": 27007,
- "gables": 27008,
- "##54": 27009,
- "##mania": 27010,
- "mri": 27011,
- "softness": 27012,
- "immersion": 27013,
- "##bots": 27014,
- "##evsky": 27015,
- "1713": 27016,
- "chilling": 27017,
- "insignificant": 27018,
- "pcs": 27019,
- "##uis": 27020,
- "elites": 27021,
- "lina": 27022,
- "purported": 27023,
- "supplemental": 27024,
- "teaming": 27025,
- "##americana": 27026,
- "##dding": 27027,
- "##inton": 27028,
- "proficient": 27029,
- "rouen": 27030,
- "##nage": 27031,
- "##rret": 27032,
- "niccolo": 27033,
- "selects": 27034,
- "##bread": 27035,
- "fluffy": 27036,
- "1621": 27037,
- "gruff": 27038,
- "knotted": 27039,
- "mukherjee": 27040,
- "polgara": 27041,
- "thrash": 27042,
- "nicholls": 27043,
- "secluded": 27044,
- "smoothing": 27045,
- "thru": 27046,
- "corsica": 27047,
- "loaf": 27048,
- "whitaker": 27049,
- "inquiries": 27050,
- "##rrier": 27051,
- "##kam": 27052,
- "indochina": 27053,
- "289": 27054,
- "marlins": 27055,
- "myles": 27056,
- "peking": 27057,
- "##tea": 27058,
- "extracts": 27059,
- "pastry": 27060,
- "superhuman": 27061,
- "connacht": 27062,
- "vogel": 27063,
- "##ditional": 27064,
- "##het": 27065,
- "##udged": 27066,
- "##lash": 27067,
- "gloss": 27068,
- "quarries": 27069,
- "refit": 27070,
- "teaser": 27071,
- "##alic": 27072,
- "##gaon": 27073,
- "20s": 27074,
- "materialized": 27075,
- "sling": 27076,
- "camped": 27077,
- "pickering": 27078,
- "tung": 27079,
- "tracker": 27080,
- "pursuant": 27081,
- "##cide": 27082,
- "cranes": 27083,
- "soc": 27084,
- "##cini": 27085,
- "##typical": 27086,
- "##viere": 27087,
- "anhalt": 27088,
- "overboard": 27089,
- "workout": 27090,
- "chores": 27091,
- "fares": 27092,
- "orphaned": 27093,
- "stains": 27094,
- "##logie": 27095,
- "fenton": 27096,
- "surpassing": 27097,
- "joyah": 27098,
- "triggers": 27099,
- "##itte": 27100,
- "grandmaster": 27101,
- "##lass": 27102,
- "##lists": 27103,
- "clapping": 27104,
- "fraudulent": 27105,
- "ledger": 27106,
- "nagasaki": 27107,
- "##cor": 27108,
- "##nosis": 27109,
- "##tsa": 27110,
- "eucalyptus": 27111,
- "tun": 27112,
- "##icio": 27113,
- "##rney": 27114,
- "##tara": 27115,
- "dax": 27116,
- "heroism": 27117,
- "ina": 27118,
- "wrexham": 27119,
- "onboard": 27120,
- "unsigned": 27121,
- "##dates": 27122,
- "moshe": 27123,
- "galley": 27124,
- "winnie": 27125,
- "droplets": 27126,
- "exiles": 27127,
- "praises": 27128,
- "watered": 27129,
- "noodles": 27130,
- "##aia": 27131,
- "fein": 27132,
- "adi": 27133,
- "leland": 27134,
- "multicultural": 27135,
- "stink": 27136,
- "bingo": 27137,
- "comets": 27138,
- "erskine": 27139,
- "modernized": 27140,
- "canned": 27141,
- "constraint": 27142,
- "domestically": 27143,
- "chemotherapy": 27144,
- "featherweight": 27145,
- "stifled": 27146,
- "##mum": 27147,
- "darkly": 27148,
- "irresistible": 27149,
- "refreshing": 27150,
- "hasty": 27151,
- "isolate": 27152,
- "##oys": 27153,
- "kitchener": 27154,
- "planners": 27155,
- "##wehr": 27156,
- "cages": 27157,
- "yarn": 27158,
- "implant": 27159,
- "toulon": 27160,
- "elects": 27161,
- "childbirth": 27162,
- "yue": 27163,
- "##lind": 27164,
- "##lone": 27165,
- "cn": 27166,
- "rightful": 27167,
- "sportsman": 27168,
- "junctions": 27169,
- "remodeled": 27170,
- "specifies": 27171,
- "##rgh": 27172,
- "291": 27173,
- "##oons": 27174,
- "complimented": 27175,
- "##urgent": 27176,
- "lister": 27177,
- "ot": 27178,
- "##logic": 27179,
- "bequeathed": 27180,
- "cheekbones": 27181,
- "fontana": 27182,
- "gabby": 27183,
- "##dial": 27184,
- "amadeus": 27185,
- "corrugated": 27186,
- "maverick": 27187,
- "resented": 27188,
- "triangles": 27189,
- "##hered": 27190,
- "##usly": 27191,
- "nazareth": 27192,
- "tyrol": 27193,
- "1675": 27194,
- "assent": 27195,
- "poorer": 27196,
- "sectional": 27197,
- "aegean": 27198,
- "##cous": 27199,
- "296": 27200,
- "nylon": 27201,
- "ghanaian": 27202,
- "##egorical": 27203,
- "##weig": 27204,
- "cushions": 27205,
- "forbid": 27206,
- "fusiliers": 27207,
- "obstruction": 27208,
- "somerville": 27209,
- "##scia": 27210,
- "dime": 27211,
- "earrings": 27212,
- "elliptical": 27213,
- "leyte": 27214,
- "oder": 27215,
- "polymers": 27216,
- "timmy": 27217,
- "atm": 27218,
- "midtown": 27219,
- "piloted": 27220,
- "settles": 27221,
- "continual": 27222,
- "externally": 27223,
- "mayfield": 27224,
- "##uh": 27225,
- "enrichment": 27226,
- "henson": 27227,
- "keane": 27228,
- "persians": 27229,
- "1733": 27230,
- "benji": 27231,
- "braden": 27232,
- "pep": 27233,
- "324": 27234,
- "##efe": 27235,
- "contenders": 27236,
- "pepsi": 27237,
- "valet": 27238,
- "##isches": 27239,
- "298": 27240,
- "##asse": 27241,
- "##earing": 27242,
- "goofy": 27243,
- "stroll": 27244,
- "##amen": 27245,
- "authoritarian": 27246,
- "occurrences": 27247,
- "adversary": 27248,
- "ahmedabad": 27249,
- "tangent": 27250,
- "toppled": 27251,
- "dorchester": 27252,
- "1672": 27253,
- "modernism": 27254,
- "marxism": 27255,
- "islamist": 27256,
- "charlemagne": 27257,
- "exponential": 27258,
- "racks": 27259,
- "unicode": 27260,
- "brunette": 27261,
- "mbc": 27262,
- "pic": 27263,
- "skirmish": 27264,
- "##bund": 27265,
- "##lad": 27266,
- "##powered": 27267,
- "##yst": 27268,
- "hoisted": 27269,
- "messina": 27270,
- "shatter": 27271,
- "##ctum": 27272,
- "jedi": 27273,
- "vantage": 27274,
- "##music": 27275,
- "##neil": 27276,
- "clemens": 27277,
- "mahmoud": 27278,
- "corrupted": 27279,
- "authentication": 27280,
- "lowry": 27281,
- "nils": 27282,
- "##washed": 27283,
- "omnibus": 27284,
- "wounding": 27285,
- "jillian": 27286,
- "##itors": 27287,
- "##opped": 27288,
- "serialized": 27289,
- "narcotics": 27290,
- "handheld": 27291,
- "##arm": 27292,
- "##plicity": 27293,
- "intersecting": 27294,
- "stimulating": 27295,
- "##onis": 27296,
- "crate": 27297,
- "fellowships": 27298,
- "hemingway": 27299,
- "casinos": 27300,
- "climatic": 27301,
- "fordham": 27302,
- "copeland": 27303,
- "drip": 27304,
- "beatty": 27305,
- "leaflets": 27306,
- "robber": 27307,
- "brothel": 27308,
- "madeira": 27309,
- "##hedral": 27310,
- "sphinx": 27311,
- "ultrasound": 27312,
- "##vana": 27313,
- "valor": 27314,
- "forbade": 27315,
- "leonid": 27316,
- "villas": 27317,
- "##aldo": 27318,
- "duane": 27319,
- "marquez": 27320,
- "##cytes": 27321,
- "disadvantaged": 27322,
- "forearms": 27323,
- "kawasaki": 27324,
- "reacts": 27325,
- "consular": 27326,
- "lax": 27327,
- "uncles": 27328,
- "uphold": 27329,
- "##hopper": 27330,
- "concepcion": 27331,
- "dorsey": 27332,
- "lass": 27333,
- "##izan": 27334,
- "arching": 27335,
- "passageway": 27336,
- "1708": 27337,
- "researches": 27338,
- "tia": 27339,
- "internationals": 27340,
- "##graphs": 27341,
- "##opers": 27342,
- "distinguishes": 27343,
- "javanese": 27344,
- "divert": 27345,
- "##uven": 27346,
- "plotted": 27347,
- "##listic": 27348,
- "##rwin": 27349,
- "##erik": 27350,
- "##tify": 27351,
- "affirmative": 27352,
- "signifies": 27353,
- "validation": 27354,
- "##bson": 27355,
- "kari": 27356,
- "felicity": 27357,
- "georgina": 27358,
- "zulu": 27359,
- "##eros": 27360,
- "##rained": 27361,
- "##rath": 27362,
- "overcoming": 27363,
- "##dot": 27364,
- "argyll": 27365,
- "##rbin": 27366,
- "1734": 27367,
- "chiba": 27368,
- "ratification": 27369,
- "windy": 27370,
- "earls": 27371,
- "parapet": 27372,
- "##marks": 27373,
- "hunan": 27374,
- "pristine": 27375,
- "astrid": 27376,
- "punta": 27377,
- "##gart": 27378,
- "brodie": 27379,
- "##kota": 27380,
- "##oder": 27381,
- "malaga": 27382,
- "minerva": 27383,
- "rouse": 27384,
- "##phonic": 27385,
- "bellowed": 27386,
- "pagoda": 27387,
- "portals": 27388,
- "reclamation": 27389,
- "##gur": 27390,
- "##odies": 27391,
- "##⁄₄": 27392,
- "parentheses": 27393,
- "quoting": 27394,
- "allergic": 27395,
- "palette": 27396,
- "showcases": 27397,
- "benefactor": 27398,
- "heartland": 27399,
- "nonlinear": 27400,
- "##tness": 27401,
- "bladed": 27402,
- "cheerfully": 27403,
- "scans": 27404,
- "##ety": 27405,
- "##hone": 27406,
- "1666": 27407,
- "girlfriends": 27408,
- "pedersen": 27409,
- "hiram": 27410,
- "sous": 27411,
- "##liche": 27412,
- "##nator": 27413,
- "1683": 27414,
- "##nery": 27415,
- "##orio": 27416,
- "##umen": 27417,
- "bobo": 27418,
- "primaries": 27419,
- "smiley": 27420,
- "##cb": 27421,
- "unearthed": 27422,
- "uniformly": 27423,
- "fis": 27424,
- "metadata": 27425,
- "1635": 27426,
- "ind": 27427,
- "##oted": 27428,
- "recoil": 27429,
- "##titles": 27430,
- "##tura": 27431,
- "##ια": 27432,
- "406": 27433,
- "hilbert": 27434,
- "jamestown": 27435,
- "mcmillan": 27436,
- "tulane": 27437,
- "seychelles": 27438,
- "##frid": 27439,
- "antics": 27440,
- "coli": 27441,
- "fated": 27442,
- "stucco": 27443,
- "##grants": 27444,
- "1654": 27445,
- "bulky": 27446,
- "accolades": 27447,
- "arrays": 27448,
- "caledonian": 27449,
- "carnage": 27450,
- "optimism": 27451,
- "puebla": 27452,
- "##tative": 27453,
- "##cave": 27454,
- "enforcing": 27455,
- "rotherham": 27456,
- "seo": 27457,
- "dunlop": 27458,
- "aeronautics": 27459,
- "chimed": 27460,
- "incline": 27461,
- "zoning": 27462,
- "archduke": 27463,
- "hellenistic": 27464,
- "##oses": 27465,
- "##sions": 27466,
- "candi": 27467,
- "thong": 27468,
- "##ople": 27469,
- "magnate": 27470,
- "rustic": 27471,
- "##rsk": 27472,
- "projective": 27473,
- "slant": 27474,
- "##offs": 27475,
- "danes": 27476,
- "hollis": 27477,
- "vocalists": 27478,
- "##ammed": 27479,
- "congenital": 27480,
- "contend": 27481,
- "gesellschaft": 27482,
- "##ocating": 27483,
- "##pressive": 27484,
- "douglass": 27485,
- "quieter": 27486,
- "##cm": 27487,
- "##kshi": 27488,
- "howled": 27489,
- "salim": 27490,
- "spontaneously": 27491,
- "townsville": 27492,
- "buena": 27493,
- "southport": 27494,
- "##bold": 27495,
- "kato": 27496,
- "1638": 27497,
- "faerie": 27498,
- "stiffly": 27499,
- "##vus": 27500,
- "##rled": 27501,
- "297": 27502,
- "flawless": 27503,
- "realising": 27504,
- "taboo": 27505,
- "##7th": 27506,
- "bytes": 27507,
- "straightening": 27508,
- "356": 27509,
- "jena": 27510,
- "##hid": 27511,
- "##rmin": 27512,
- "cartwright": 27513,
- "berber": 27514,
- "bertram": 27515,
- "soloists": 27516,
- "411": 27517,
- "noses": 27518,
- "417": 27519,
- "coping": 27520,
- "fission": 27521,
- "hardin": 27522,
- "inca": 27523,
- "##cen": 27524,
- "1717": 27525,
- "mobilized": 27526,
- "vhf": 27527,
- "##raf": 27528,
- "biscuits": 27529,
- "curate": 27530,
- "##85": 27531,
- "##anial": 27532,
- "331": 27533,
- "gaunt": 27534,
- "neighbourhoods": 27535,
- "1540": 27536,
- "##abas": 27537,
- "blanca": 27538,
- "bypassed": 27539,
- "sockets": 27540,
- "behold": 27541,
- "coincidentally": 27542,
- "##bane": 27543,
- "nara": 27544,
- "shave": 27545,
- "splinter": 27546,
- "terrific": 27547,
- "##arion": 27548,
- "##erian": 27549,
- "commonplace": 27550,
- "juris": 27551,
- "redwood": 27552,
- "waistband": 27553,
- "boxed": 27554,
- "caitlin": 27555,
- "fingerprints": 27556,
- "jennie": 27557,
- "naturalized": 27558,
- "##ired": 27559,
- "balfour": 27560,
- "craters": 27561,
- "jody": 27562,
- "bungalow": 27563,
- "hugely": 27564,
- "quilt": 27565,
- "glitter": 27566,
- "pigeons": 27567,
- "undertaker": 27568,
- "bulging": 27569,
- "constrained": 27570,
- "goo": 27571,
- "##sil": 27572,
- "##akh": 27573,
- "assimilation": 27574,
- "reworked": 27575,
- "##person": 27576,
- "persuasion": 27577,
- "##pants": 27578,
- "felicia": 27579,
- "##cliff": 27580,
- "##ulent": 27581,
- "1732": 27582,
- "explodes": 27583,
- "##dun": 27584,
- "##inium": 27585,
- "##zic": 27586,
- "lyman": 27587,
- "vulture": 27588,
- "hog": 27589,
- "overlook": 27590,
- "begs": 27591,
- "northwards": 27592,
- "ow": 27593,
- "spoil": 27594,
- "##urer": 27595,
- "fatima": 27596,
- "favorably": 27597,
- "accumulate": 27598,
- "sargent": 27599,
- "sorority": 27600,
- "corresponded": 27601,
- "dispersal": 27602,
- "kochi": 27603,
- "toned": 27604,
- "##imi": 27605,
- "##lita": 27606,
- "internacional": 27607,
- "newfound": 27608,
- "##agger": 27609,
- "##lynn": 27610,
- "##rigue": 27611,
- "booths": 27612,
- "peanuts": 27613,
- "##eborg": 27614,
- "medicare": 27615,
- "muriel": 27616,
- "nur": 27617,
- "##uram": 27618,
- "crates": 27619,
- "millennia": 27620,
- "pajamas": 27621,
- "worsened": 27622,
- "##breakers": 27623,
- "jimi": 27624,
- "vanuatu": 27625,
- "yawned": 27626,
- "##udeau": 27627,
- "carousel": 27628,
- "##hony": 27629,
- "hurdle": 27630,
- "##ccus": 27631,
- "##mounted": 27632,
- "##pod": 27633,
- "rv": 27634,
- "##eche": 27635,
- "airship": 27636,
- "ambiguity": 27637,
- "compulsion": 27638,
- "recapture": 27639,
- "##claiming": 27640,
- "arthritis": 27641,
- "##osomal": 27642,
- "1667": 27643,
- "asserting": 27644,
- "ngc": 27645,
- "sniffing": 27646,
- "dade": 27647,
- "discontent": 27648,
- "glendale": 27649,
- "ported": 27650,
- "##amina": 27651,
- "defamation": 27652,
- "rammed": 27653,
- "##scent": 27654,
- "fling": 27655,
- "livingstone": 27656,
- "##fleet": 27657,
- "875": 27658,
- "##ppy": 27659,
- "apocalyptic": 27660,
- "comrade": 27661,
- "lcd": 27662,
- "##lowe": 27663,
- "cessna": 27664,
- "eine": 27665,
- "persecuted": 27666,
- "subsistence": 27667,
- "demi": 27668,
- "hoop": 27669,
- "reliefs": 27670,
- "710": 27671,
- "coptic": 27672,
- "progressing": 27673,
- "stemmed": 27674,
- "perpetrators": 27675,
- "1665": 27676,
- "priestess": 27677,
- "##nio": 27678,
- "dobson": 27679,
- "ebony": 27680,
- "rooster": 27681,
- "itf": 27682,
- "tortricidae": 27683,
- "##bbon": 27684,
- "##jian": 27685,
- "cleanup": 27686,
- "##jean": 27687,
- "##øy": 27688,
- "1721": 27689,
- "eighties": 27690,
- "taxonomic": 27691,
- "holiness": 27692,
- "##hearted": 27693,
- "##spar": 27694,
- "antilles": 27695,
- "showcasing": 27696,
- "stabilized": 27697,
- "##nb": 27698,
- "gia": 27699,
- "mascara": 27700,
- "michelangelo": 27701,
- "dawned": 27702,
- "##uria": 27703,
- "##vinsky": 27704,
- "extinguished": 27705,
- "fitz": 27706,
- "grotesque": 27707,
- "£100": 27708,
- "##fera": 27709,
- "##loid": 27710,
- "##mous": 27711,
- "barges": 27712,
- "neue": 27713,
- "throbbed": 27714,
- "cipher": 27715,
- "johnnie": 27716,
- "##a1": 27717,
- "##mpt": 27718,
- "outburst": 27719,
- "##swick": 27720,
- "spearheaded": 27721,
- "administrations": 27722,
- "c1": 27723,
- "heartbreak": 27724,
- "pixels": 27725,
- "pleasantly": 27726,
- "##enay": 27727,
- "lombardy": 27728,
- "plush": 27729,
- "##nsed": 27730,
- "bobbie": 27731,
- "##hly": 27732,
- "reapers": 27733,
- "tremor": 27734,
- "xiang": 27735,
- "minogue": 27736,
- "substantive": 27737,
- "hitch": 27738,
- "barak": 27739,
- "##wyl": 27740,
- "kwan": 27741,
- "##encia": 27742,
- "910": 27743,
- "obscene": 27744,
- "elegance": 27745,
- "indus": 27746,
- "surfer": 27747,
- "bribery": 27748,
- "conserve": 27749,
- "##hyllum": 27750,
- "##masters": 27751,
- "horatio": 27752,
- "##fat": 27753,
- "apes": 27754,
- "rebound": 27755,
- "psychotic": 27756,
- "##pour": 27757,
- "iteration": 27758,
- "##mium": 27759,
- "##vani": 27760,
- "botanic": 27761,
- "horribly": 27762,
- "antiques": 27763,
- "dispose": 27764,
- "paxton": 27765,
- "##hli": 27766,
- "##wg": 27767,
- "timeless": 27768,
- "1704": 27769,
- "disregard": 27770,
- "engraver": 27771,
- "hounds": 27772,
- "##bau": 27773,
- "##version": 27774,
- "looted": 27775,
- "uno": 27776,
- "facilitates": 27777,
- "groans": 27778,
- "masjid": 27779,
- "rutland": 27780,
- "antibody": 27781,
- "disqualification": 27782,
- "decatur": 27783,
- "footballers": 27784,
- "quake": 27785,
- "slacks": 27786,
- "48th": 27787,
- "rein": 27788,
- "scribe": 27789,
- "stabilize": 27790,
- "commits": 27791,
- "exemplary": 27792,
- "tho": 27793,
- "##hort": 27794,
- "##chison": 27795,
- "pantry": 27796,
- "traversed": 27797,
- "##hiti": 27798,
- "disrepair": 27799,
- "identifiable": 27800,
- "vibrated": 27801,
- "baccalaureate": 27802,
- "##nnis": 27803,
- "csa": 27804,
- "interviewing": 27805,
- "##iensis": 27806,
- "##raße": 27807,
- "greaves": 27808,
- "wealthiest": 27809,
- "343": 27810,
- "classed": 27811,
- "jogged": 27812,
- "£5": 27813,
- "##58": 27814,
- "##atal": 27815,
- "illuminating": 27816,
- "knicks": 27817,
- "respecting": 27818,
- "##uno": 27819,
- "scrubbed": 27820,
- "##iji": 27821,
- "##dles": 27822,
- "kruger": 27823,
- "moods": 27824,
- "growls": 27825,
- "raider": 27826,
- "silvia": 27827,
- "chefs": 27828,
- "kam": 27829,
- "vr": 27830,
- "cree": 27831,
- "percival": 27832,
- "##terol": 27833,
- "gunter": 27834,
- "counterattack": 27835,
- "defiant": 27836,
- "henan": 27837,
- "ze": 27838,
- "##rasia": 27839,
- "##riety": 27840,
- "equivalence": 27841,
- "submissions": 27842,
- "##fra": 27843,
- "##thor": 27844,
- "bautista": 27845,
- "mechanically": 27846,
- "##heater": 27847,
- "cornice": 27848,
- "herbal": 27849,
- "templar": 27850,
- "##mering": 27851,
- "outputs": 27852,
- "ruining": 27853,
- "ligand": 27854,
- "renumbered": 27855,
- "extravagant": 27856,
- "mika": 27857,
- "blockbuster": 27858,
- "eta": 27859,
- "insurrection": 27860,
- "##ilia": 27861,
- "darkening": 27862,
- "ferocious": 27863,
- "pianos": 27864,
- "strife": 27865,
- "kinship": 27866,
- "##aer": 27867,
- "melee": 27868,
- "##anor": 27869,
- "##iste": 27870,
- "##may": 27871,
- "##oue": 27872,
- "decidedly": 27873,
- "weep": 27874,
- "##jad": 27875,
- "##missive": 27876,
- "##ppel": 27877,
- "354": 27878,
- "puget": 27879,
- "unease": 27880,
- "##gnant": 27881,
- "1629": 27882,
- "hammering": 27883,
- "kassel": 27884,
- "ob": 27885,
- "wessex": 27886,
- "##lga": 27887,
- "bromwich": 27888,
- "egan": 27889,
- "paranoia": 27890,
- "utilization": 27891,
- "##atable": 27892,
- "##idad": 27893,
- "contradictory": 27894,
- "provoke": 27895,
- "##ols": 27896,
- "##ouring": 27897,
- "##tangled": 27898,
- "knesset": 27899,
- "##very": 27900,
- "##lette": 27901,
- "plumbing": 27902,
- "##sden": 27903,
- "##¹": 27904,
- "greensboro": 27905,
- "occult": 27906,
- "sniff": 27907,
- "338": 27908,
- "zev": 27909,
- "beaming": 27910,
- "gamer": 27911,
- "haggard": 27912,
- "mahal": 27913,
- "##olt": 27914,
- "##pins": 27915,
- "mendes": 27916,
- "utmost": 27917,
- "briefing": 27918,
- "gunnery": 27919,
- "##gut": 27920,
- "##pher": 27921,
- "##zh": 27922,
- "##rok": 27923,
- "1679": 27924,
- "khalifa": 27925,
- "sonya": 27926,
- "##boot": 27927,
- "principals": 27928,
- "urbana": 27929,
- "wiring": 27930,
- "##liffe": 27931,
- "##minating": 27932,
- "##rrado": 27933,
- "dahl": 27934,
- "nyu": 27935,
- "skepticism": 27936,
- "np": 27937,
- "townspeople": 27938,
- "ithaca": 27939,
- "lobster": 27940,
- "somethin": 27941,
- "##fur": 27942,
- "##arina": 27943,
- "##−1": 27944,
- "freighter": 27945,
- "zimmerman": 27946,
- "biceps": 27947,
- "contractual": 27948,
- "##herton": 27949,
- "amend": 27950,
- "hurrying": 27951,
- "subconscious": 27952,
- "##anal": 27953,
- "336": 27954,
- "meng": 27955,
- "clermont": 27956,
- "spawning": 27957,
- "##eia": 27958,
- "##lub": 27959,
- "dignitaries": 27960,
- "impetus": 27961,
- "snacks": 27962,
- "spotting": 27963,
- "twigs": 27964,
- "##bilis": 27965,
- "##cz": 27966,
- "##ouk": 27967,
- "libertadores": 27968,
- "nic": 27969,
- "skylar": 27970,
- "##aina": 27971,
- "##firm": 27972,
- "gustave": 27973,
- "asean": 27974,
- "##anum": 27975,
- "dieter": 27976,
- "legislatures": 27977,
- "flirt": 27978,
- "bromley": 27979,
- "trolls": 27980,
- "umar": 27981,
- "##bbies": 27982,
- "##tyle": 27983,
- "blah": 27984,
- "parc": 27985,
- "bridgeport": 27986,
- "crank": 27987,
- "negligence": 27988,
- "##nction": 27989,
- "46th": 27990,
- "constantin": 27991,
- "molded": 27992,
- "bandages": 27993,
- "seriousness": 27994,
- "00pm": 27995,
- "siegel": 27996,
- "carpets": 27997,
- "compartments": 27998,
- "upbeat": 27999,
- "statehood": 28000,
- "##dner": 28001,
- "##edging": 28002,
- "marko": 28003,
- "730": 28004,
- "platt": 28005,
- "##hane": 28006,
- "paving": 28007,
- "##iy": 28008,
- "1738": 28009,
- "abbess": 28010,
- "impatience": 28011,
- "limousine": 28012,
- "nbl": 28013,
- "##talk": 28014,
- "441": 28015,
- "lucille": 28016,
- "mojo": 28017,
- "nightfall": 28018,
- "robbers": 28019,
- "##nais": 28020,
- "karel": 28021,
- "brisk": 28022,
- "calves": 28023,
- "replicate": 28024,
- "ascribed": 28025,
- "telescopes": 28026,
- "##olf": 28027,
- "intimidated": 28028,
- "##reen": 28029,
- "ballast": 28030,
- "specialization": 28031,
- "##sit": 28032,
- "aerodynamic": 28033,
- "caliphate": 28034,
- "rainer": 28035,
- "visionary": 28036,
- "##arded": 28037,
- "epsilon": 28038,
- "##aday": 28039,
- "##onte": 28040,
- "aggregation": 28041,
- "auditory": 28042,
- "boosted": 28043,
- "reunification": 28044,
- "kathmandu": 28045,
- "loco": 28046,
- "robyn": 28047,
- "402": 28048,
- "acknowledges": 28049,
- "appointing": 28050,
- "humanoid": 28051,
- "newell": 28052,
- "redeveloped": 28053,
- "restraints": 28054,
- "##tained": 28055,
- "barbarians": 28056,
- "chopper": 28057,
- "1609": 28058,
- "italiana": 28059,
- "##lez": 28060,
- "##lho": 28061,
- "investigates": 28062,
- "wrestlemania": 28063,
- "##anies": 28064,
- "##bib": 28065,
- "690": 28066,
- "##falls": 28067,
- "creaked": 28068,
- "dragoons": 28069,
- "gravely": 28070,
- "minions": 28071,
- "stupidity": 28072,
- "volley": 28073,
- "##harat": 28074,
- "##week": 28075,
- "musik": 28076,
- "##eries": 28077,
- "##uously": 28078,
- "fungal": 28079,
- "massimo": 28080,
- "semantics": 28081,
- "malvern": 28082,
- "##ahl": 28083,
- "##pee": 28084,
- "discourage": 28085,
- "embryo": 28086,
- "imperialism": 28087,
- "1910s": 28088,
- "profoundly": 28089,
- "##ddled": 28090,
- "jiangsu": 28091,
- "sparkled": 28092,
- "stat": 28093,
- "##holz": 28094,
- "sweatshirt": 28095,
- "tobin": 28096,
- "##iction": 28097,
- "sneered": 28098,
- "##cheon": 28099,
- "##oit": 28100,
- "brit": 28101,
- "causal": 28102,
- "smyth": 28103,
- "##neuve": 28104,
- "diffuse": 28105,
- "perrin": 28106,
- "silvio": 28107,
- "##ipes": 28108,
- "##recht": 28109,
- "detonated": 28110,
- "iqbal": 28111,
- "selma": 28112,
- "##nism": 28113,
- "##zumi": 28114,
- "roasted": 28115,
- "##riders": 28116,
- "tay": 28117,
- "##ados": 28118,
- "##mament": 28119,
- "##mut": 28120,
- "##rud": 28121,
- "840": 28122,
- "completes": 28123,
- "nipples": 28124,
- "cfa": 28125,
- "flavour": 28126,
- "hirsch": 28127,
- "##laus": 28128,
- "calderon": 28129,
- "sneakers": 28130,
- "moravian": 28131,
- "##ksha": 28132,
- "1622": 28133,
- "rq": 28134,
- "294": 28135,
- "##imeters": 28136,
- "bodo": 28137,
- "##isance": 28138,
- "##pre": 28139,
- "##ronia": 28140,
- "anatomical": 28141,
- "excerpt": 28142,
- "##lke": 28143,
- "dh": 28144,
- "kunst": 28145,
- "##tablished": 28146,
- "##scoe": 28147,
- "biomass": 28148,
- "panted": 28149,
- "unharmed": 28150,
- "gael": 28151,
- "housemates": 28152,
- "montpellier": 28153,
- "##59": 28154,
- "coa": 28155,
- "rodents": 28156,
- "tonic": 28157,
- "hickory": 28158,
- "singleton": 28159,
- "##taro": 28160,
- "451": 28161,
- "1719": 28162,
- "aldo": 28163,
- "breaststroke": 28164,
- "dempsey": 28165,
- "och": 28166,
- "rocco": 28167,
- "##cuit": 28168,
- "merton": 28169,
- "dissemination": 28170,
- "midsummer": 28171,
- "serials": 28172,
- "##idi": 28173,
- "haji": 28174,
- "polynomials": 28175,
- "##rdon": 28176,
- "gs": 28177,
- "enoch": 28178,
- "prematurely": 28179,
- "shutter": 28180,
- "taunton": 28181,
- "£3": 28182,
- "##grating": 28183,
- "##inates": 28184,
- "archangel": 28185,
- "harassed": 28186,
- "##asco": 28187,
- "326": 28188,
- "archway": 28189,
- "dazzling": 28190,
- "##ecin": 28191,
- "1736": 28192,
- "sumo": 28193,
- "wat": 28194,
- "##kovich": 28195,
- "1086": 28196,
- "honneur": 28197,
- "##ently": 28198,
- "##nostic": 28199,
- "##ttal": 28200,
- "##idon": 28201,
- "1605": 28202,
- "403": 28203,
- "1716": 28204,
- "blogger": 28205,
- "rents": 28206,
- "##gnan": 28207,
- "hires": 28208,
- "##ikh": 28209,
- "##dant": 28210,
- "howie": 28211,
- "##rons": 28212,
- "handler": 28213,
- "retracted": 28214,
- "shocks": 28215,
- "1632": 28216,
- "arun": 28217,
- "duluth": 28218,
- "kepler": 28219,
- "trumpeter": 28220,
- "##lary": 28221,
- "peeking": 28222,
- "seasoned": 28223,
- "trooper": 28224,
- "##mara": 28225,
- "laszlo": 28226,
- "##iciencies": 28227,
- "##rti": 28228,
- "heterosexual": 28229,
- "##inatory": 28230,
- "##ssion": 28231,
- "indira": 28232,
- "jogging": 28233,
- "##inga": 28234,
- "##lism": 28235,
- "beit": 28236,
- "dissatisfaction": 28237,
- "malice": 28238,
- "##ately": 28239,
- "nedra": 28240,
- "peeling": 28241,
- "##rgeon": 28242,
- "47th": 28243,
- "stadiums": 28244,
- "475": 28245,
- "vertigo": 28246,
- "##ains": 28247,
- "iced": 28248,
- "restroom": 28249,
- "##plify": 28250,
- "##tub": 28251,
- "illustrating": 28252,
- "pear": 28253,
- "##chner": 28254,
- "##sibility": 28255,
- "inorganic": 28256,
- "rappers": 28257,
- "receipts": 28258,
- "watery": 28259,
- "##kura": 28260,
- "lucinda": 28261,
- "##oulos": 28262,
- "reintroduced": 28263,
- "##8th": 28264,
- "##tched": 28265,
- "gracefully": 28266,
- "saxons": 28267,
- "nutritional": 28268,
- "wastewater": 28269,
- "rained": 28270,
- "favourites": 28271,
- "bedrock": 28272,
- "fisted": 28273,
- "hallways": 28274,
- "likeness": 28275,
- "upscale": 28276,
- "##lateral": 28277,
- "1580": 28278,
- "blinds": 28279,
- "prequel": 28280,
- "##pps": 28281,
- "##tama": 28282,
- "deter": 28283,
- "humiliating": 28284,
- "restraining": 28285,
- "tn": 28286,
- "vents": 28287,
- "1659": 28288,
- "laundering": 28289,
- "recess": 28290,
- "rosary": 28291,
- "tractors": 28292,
- "coulter": 28293,
- "federer": 28294,
- "##ifiers": 28295,
- "##plin": 28296,
- "persistence": 28297,
- "##quitable": 28298,
- "geschichte": 28299,
- "pendulum": 28300,
- "quakers": 28301,
- "##beam": 28302,
- "bassett": 28303,
- "pictorial": 28304,
- "buffet": 28305,
- "koln": 28306,
- "##sitor": 28307,
- "drills": 28308,
- "reciprocal": 28309,
- "shooters": 28310,
- "##57": 28311,
- "##cton": 28312,
- "##tees": 28313,
- "converge": 28314,
- "pip": 28315,
- "dmitri": 28316,
- "donnelly": 28317,
- "yamamoto": 28318,
- "aqua": 28319,
- "azores": 28320,
- "demographics": 28321,
- "hypnotic": 28322,
- "spitfire": 28323,
- "suspend": 28324,
- "wryly": 28325,
- "roderick": 28326,
- "##rran": 28327,
- "sebastien": 28328,
- "##asurable": 28329,
- "mavericks": 28330,
- "##fles": 28331,
- "##200": 28332,
- "himalayan": 28333,
- "prodigy": 28334,
- "##iance": 28335,
- "transvaal": 28336,
- "demonstrators": 28337,
- "handcuffs": 28338,
- "dodged": 28339,
- "mcnamara": 28340,
- "sublime": 28341,
- "1726": 28342,
- "crazed": 28343,
- "##efined": 28344,
- "##till": 28345,
- "ivo": 28346,
- "pondered": 28347,
- "reconciled": 28348,
- "shrill": 28349,
- "sava": 28350,
- "##duk": 28351,
- "bal": 28352,
- "cad": 28353,
- "heresy": 28354,
- "jaipur": 28355,
- "goran": 28356,
- "##nished": 28357,
- "341": 28358,
- "lux": 28359,
- "shelly": 28360,
- "whitehall": 28361,
- "##hre": 28362,
- "israelis": 28363,
- "peacekeeping": 28364,
- "##wled": 28365,
- "1703": 28366,
- "demetrius": 28367,
- "ousted": 28368,
- "##arians": 28369,
- "##zos": 28370,
- "beale": 28371,
- "anwar": 28372,
- "backstroke": 28373,
- "raged": 28374,
- "shrinking": 28375,
- "cremated": 28376,
- "##yck": 28377,
- "benign": 28378,
- "towing": 28379,
- "wadi": 28380,
- "darmstadt": 28381,
- "landfill": 28382,
- "parana": 28383,
- "soothe": 28384,
- "colleen": 28385,
- "sidewalks": 28386,
- "mayfair": 28387,
- "tumble": 28388,
- "hepatitis": 28389,
- "ferrer": 28390,
- "superstructure": 28391,
- "##gingly": 28392,
- "##urse": 28393,
- "##wee": 28394,
- "anthropological": 28395,
- "translators": 28396,
- "##mies": 28397,
- "closeness": 28398,
- "hooves": 28399,
- "##pw": 28400,
- "mondays": 28401,
- "##roll": 28402,
- "##vita": 28403,
- "landscaping": 28404,
- "##urized": 28405,
- "purification": 28406,
- "sock": 28407,
- "thorns": 28408,
- "thwarted": 28409,
- "jalan": 28410,
- "tiberius": 28411,
- "##taka": 28412,
- "saline": 28413,
- "##rito": 28414,
- "confidently": 28415,
- "khyber": 28416,
- "sculptors": 28417,
- "##ij": 28418,
- "brahms": 28419,
- "hammersmith": 28420,
- "inspectors": 28421,
- "battista": 28422,
- "fivb": 28423,
- "fragmentation": 28424,
- "hackney": 28425,
- "##uls": 28426,
- "arresting": 28427,
- "exercising": 28428,
- "antoinette": 28429,
- "bedfordshire": 28430,
- "##zily": 28431,
- "dyed": 28432,
- "##hema": 28433,
- "1656": 28434,
- "racetrack": 28435,
- "variability": 28436,
- "##tique": 28437,
- "1655": 28438,
- "austrians": 28439,
- "deteriorating": 28440,
- "madman": 28441,
- "theorists": 28442,
- "aix": 28443,
- "lehman": 28444,
- "weathered": 28445,
- "1731": 28446,
- "decreed": 28447,
- "eruptions": 28448,
- "1729": 28449,
- "flaw": 28450,
- "quinlan": 28451,
- "sorbonne": 28452,
- "flutes": 28453,
- "nunez": 28454,
- "1711": 28455,
- "adored": 28456,
- "downwards": 28457,
- "fable": 28458,
- "rasped": 28459,
- "1712": 28460,
- "moritz": 28461,
- "mouthful": 28462,
- "renegade": 28463,
- "shivers": 28464,
- "stunts": 28465,
- "dysfunction": 28466,
- "restrain": 28467,
- "translit": 28468,
- "327": 28469,
- "pancakes": 28470,
- "##avio": 28471,
- "##cision": 28472,
- "##tray": 28473,
- "351": 28474,
- "vial": 28475,
- "##lden": 28476,
- "bain": 28477,
- "##maid": 28478,
- "##oxide": 28479,
- "chihuahua": 28480,
- "malacca": 28481,
- "vimes": 28482,
- "##rba": 28483,
- "##rnier": 28484,
- "1664": 28485,
- "donnie": 28486,
- "plaques": 28487,
- "##ually": 28488,
- "337": 28489,
- "bangs": 28490,
- "floppy": 28491,
- "huntsville": 28492,
- "loretta": 28493,
- "nikolay": 28494,
- "##otte": 28495,
- "eater": 28496,
- "handgun": 28497,
- "ubiquitous": 28498,
- "##hett": 28499,
- "eras": 28500,
- "zodiac": 28501,
- "1634": 28502,
- "##omorphic": 28503,
- "1820s": 28504,
- "##zog": 28505,
- "cochran": 28506,
- "##bula": 28507,
- "##lithic": 28508,
- "warring": 28509,
- "##rada": 28510,
- "dalai": 28511,
- "excused": 28512,
- "blazers": 28513,
- "mcconnell": 28514,
- "reeling": 28515,
- "bot": 28516,
- "este": 28517,
- "##abi": 28518,
- "geese": 28519,
- "hoax": 28520,
- "taxon": 28521,
- "##bla": 28522,
- "guitarists": 28523,
- "##icon": 28524,
- "condemning": 28525,
- "hunts": 28526,
- "inversion": 28527,
- "moffat": 28528,
- "taekwondo": 28529,
- "##lvis": 28530,
- "1624": 28531,
- "stammered": 28532,
- "##rest": 28533,
- "##rzy": 28534,
- "sousa": 28535,
- "fundraiser": 28536,
- "marylebone": 28537,
- "navigable": 28538,
- "uptown": 28539,
- "cabbage": 28540,
- "daniela": 28541,
- "salman": 28542,
- "shitty": 28543,
- "whimper": 28544,
- "##kian": 28545,
- "##utive": 28546,
- "programmers": 28547,
- "protections": 28548,
- "rm": 28549,
- "##rmi": 28550,
- "##rued": 28551,
- "forceful": 28552,
- "##enes": 28553,
- "fuss": 28554,
- "##tao": 28555,
- "##wash": 28556,
- "brat": 28557,
- "oppressive": 28558,
- "reykjavik": 28559,
- "spartak": 28560,
- "ticking": 28561,
- "##inkles": 28562,
- "##kiewicz": 28563,
- "adolph": 28564,
- "horst": 28565,
- "maui": 28566,
- "protege": 28567,
- "straighten": 28568,
- "cpc": 28569,
- "landau": 28570,
- "concourse": 28571,
- "clements": 28572,
- "resultant": 28573,
- "##ando": 28574,
- "imaginative": 28575,
- "joo": 28576,
- "reactivated": 28577,
- "##rem": 28578,
- "##ffled": 28579,
- "##uising": 28580,
- "consultative": 28581,
- "##guide": 28582,
- "flop": 28583,
- "kaitlyn": 28584,
- "mergers": 28585,
- "parenting": 28586,
- "somber": 28587,
- "##vron": 28588,
- "supervise": 28589,
- "vidhan": 28590,
- "##imum": 28591,
- "courtship": 28592,
- "exemplified": 28593,
- "harmonies": 28594,
- "medallist": 28595,
- "refining": 28596,
- "##rrow": 28597,
- "##ка": 28598,
- "amara": 28599,
- "##hum": 28600,
- "780": 28601,
- "goalscorer": 28602,
- "sited": 28603,
- "overshadowed": 28604,
- "rohan": 28605,
- "displeasure": 28606,
- "secretive": 28607,
- "multiplied": 28608,
- "osman": 28609,
- "##orth": 28610,
- "engravings": 28611,
- "padre": 28612,
- "##kali": 28613,
- "##veda": 28614,
- "miniatures": 28615,
- "mis": 28616,
- "##yala": 28617,
- "clap": 28618,
- "pali": 28619,
- "rook": 28620,
- "##cana": 28621,
- "1692": 28622,
- "57th": 28623,
- "antennae": 28624,
- "astro": 28625,
- "oskar": 28626,
- "1628": 28627,
- "bulldog": 28628,
- "crotch": 28629,
- "hackett": 28630,
- "yucatan": 28631,
- "##sure": 28632,
- "amplifiers": 28633,
- "brno": 28634,
- "ferrara": 28635,
- "migrating": 28636,
- "##gree": 28637,
- "thanking": 28638,
- "turing": 28639,
- "##eza": 28640,
- "mccann": 28641,
- "ting": 28642,
- "andersson": 28643,
- "onslaught": 28644,
- "gaines": 28645,
- "ganga": 28646,
- "incense": 28647,
- "standardization": 28648,
- "##mation": 28649,
- "sentai": 28650,
- "scuba": 28651,
- "stuffing": 28652,
- "turquoise": 28653,
- "waivers": 28654,
- "alloys": 28655,
- "##vitt": 28656,
- "regaining": 28657,
- "vaults": 28658,
- "##clops": 28659,
- "##gizing": 28660,
- "digger": 28661,
- "furry": 28662,
- "memorabilia": 28663,
- "probing": 28664,
- "##iad": 28665,
- "payton": 28666,
- "rec": 28667,
- "deutschland": 28668,
- "filippo": 28669,
- "opaque": 28670,
- "seamen": 28671,
- "zenith": 28672,
- "afrikaans": 28673,
- "##filtration": 28674,
- "disciplined": 28675,
- "inspirational": 28676,
- "##merie": 28677,
- "banco": 28678,
- "confuse": 28679,
- "grafton": 28680,
- "tod": 28681,
- "##dgets": 28682,
- "championed": 28683,
- "simi": 28684,
- "anomaly": 28685,
- "biplane": 28686,
- "##ceptive": 28687,
- "electrode": 28688,
- "##para": 28689,
- "1697": 28690,
- "cleavage": 28691,
- "crossbow": 28692,
- "swirl": 28693,
- "informant": 28694,
- "##lars": 28695,
- "##osta": 28696,
- "afi": 28697,
- "bonfire": 28698,
- "spec": 28699,
- "##oux": 28700,
- "lakeside": 28701,
- "slump": 28702,
- "##culus": 28703,
- "##lais": 28704,
- "##qvist": 28705,
- "##rrigan": 28706,
- "1016": 28707,
- "facades": 28708,
- "borg": 28709,
- "inwardly": 28710,
- "cervical": 28711,
- "xl": 28712,
- "pointedly": 28713,
- "050": 28714,
- "stabilization": 28715,
- "##odon": 28716,
- "chests": 28717,
- "1699": 28718,
- "hacked": 28719,
- "ctv": 28720,
- "orthogonal": 28721,
- "suzy": 28722,
- "##lastic": 28723,
- "gaulle": 28724,
- "jacobite": 28725,
- "rearview": 28726,
- "##cam": 28727,
- "##erted": 28728,
- "ashby": 28729,
- "##drik": 28730,
- "##igate": 28731,
- "##mise": 28732,
- "##zbek": 28733,
- "affectionately": 28734,
- "canine": 28735,
- "disperse": 28736,
- "latham": 28737,
- "##istles": 28738,
- "##ivar": 28739,
- "spielberg": 28740,
- "##orin": 28741,
- "##idium": 28742,
- "ezekiel": 28743,
- "cid": 28744,
- "##sg": 28745,
- "durga": 28746,
- "middletown": 28747,
- "##cina": 28748,
- "customized": 28749,
- "frontiers": 28750,
- "harden": 28751,
- "##etano": 28752,
- "##zzy": 28753,
- "1604": 28754,
- "bolsheviks": 28755,
- "##66": 28756,
- "coloration": 28757,
- "yoko": 28758,
- "##bedo": 28759,
- "briefs": 28760,
- "slabs": 28761,
- "debra": 28762,
- "liquidation": 28763,
- "plumage": 28764,
- "##oin": 28765,
- "blossoms": 28766,
- "dementia": 28767,
- "subsidy": 28768,
- "1611": 28769,
- "proctor": 28770,
- "relational": 28771,
- "jerseys": 28772,
- "parochial": 28773,
- "ter": 28774,
- "##ici": 28775,
- "esa": 28776,
- "peshawar": 28777,
- "cavalier": 28778,
- "loren": 28779,
- "cpi": 28780,
- "idiots": 28781,
- "shamrock": 28782,
- "1646": 28783,
- "dutton": 28784,
- "malabar": 28785,
- "mustache": 28786,
- "##endez": 28787,
- "##ocytes": 28788,
- "referencing": 28789,
- "terminates": 28790,
- "marche": 28791,
- "yarmouth": 28792,
- "##sop": 28793,
- "acton": 28794,
- "mated": 28795,
- "seton": 28796,
- "subtly": 28797,
- "baptised": 28798,
- "beige": 28799,
- "extremes": 28800,
- "jolted": 28801,
- "kristina": 28802,
- "telecast": 28803,
- "##actic": 28804,
- "safeguard": 28805,
- "waldo": 28806,
- "##baldi": 28807,
- "##bular": 28808,
- "endeavors": 28809,
- "sloppy": 28810,
- "subterranean": 28811,
- "##ensburg": 28812,
- "##itung": 28813,
- "delicately": 28814,
- "pigment": 28815,
- "tq": 28816,
- "##scu": 28817,
- "1626": 28818,
- "##ound": 28819,
- "collisions": 28820,
- "coveted": 28821,
- "herds": 28822,
- "##personal": 28823,
- "##meister": 28824,
- "##nberger": 28825,
- "chopra": 28826,
- "##ricting": 28827,
- "abnormalities": 28828,
- "defective": 28829,
- "galician": 28830,
- "lucie": 28831,
- "##dilly": 28832,
- "alligator": 28833,
- "likened": 28834,
- "##genase": 28835,
- "burundi": 28836,
- "clears": 28837,
- "complexion": 28838,
- "derelict": 28839,
- "deafening": 28840,
- "diablo": 28841,
- "fingered": 28842,
- "champaign": 28843,
- "dogg": 28844,
- "enlist": 28845,
- "isotope": 28846,
- "labeling": 28847,
- "mrna": 28848,
- "##erre": 28849,
- "brilliance": 28850,
- "marvelous": 28851,
- "##ayo": 28852,
- "1652": 28853,
- "crawley": 28854,
- "ether": 28855,
- "footed": 28856,
- "dwellers": 28857,
- "deserts": 28858,
- "hamish": 28859,
- "rubs": 28860,
- "warlock": 28861,
- "skimmed": 28862,
- "##lizer": 28863,
- "870": 28864,
- "buick": 28865,
- "embark": 28866,
- "heraldic": 28867,
- "irregularities": 28868,
- "##ajan": 28869,
- "kiara": 28870,
- "##kulam": 28871,
- "##ieg": 28872,
- "antigen": 28873,
- "kowalski": 28874,
- "##lge": 28875,
- "oakley": 28876,
- "visitation": 28877,
- "##mbit": 28878,
- "vt": 28879,
- "##suit": 28880,
- "1570": 28881,
- "murderers": 28882,
- "##miento": 28883,
- "##rites": 28884,
- "chimneys": 28885,
- "##sling": 28886,
- "condemn": 28887,
- "custer": 28888,
- "exchequer": 28889,
- "havre": 28890,
- "##ghi": 28891,
- "fluctuations": 28892,
- "##rations": 28893,
- "dfb": 28894,
- "hendricks": 28895,
- "vaccines": 28896,
- "##tarian": 28897,
- "nietzsche": 28898,
- "biking": 28899,
- "juicy": 28900,
- "##duced": 28901,
- "brooding": 28902,
- "scrolling": 28903,
- "selangor": 28904,
- "##ragan": 28905,
- "352": 28906,
- "annum": 28907,
- "boomed": 28908,
- "seminole": 28909,
- "sugarcane": 28910,
- "##dna": 28911,
- "departmental": 28912,
- "dismissing": 28913,
- "innsbruck": 28914,
- "arteries": 28915,
- "ashok": 28916,
- "batavia": 28917,
- "daze": 28918,
- "kun": 28919,
- "overtook": 28920,
- "##rga": 28921,
- "##tlan": 28922,
- "beheaded": 28923,
- "gaddafi": 28924,
- "holm": 28925,
- "electronically": 28926,
- "faulty": 28927,
- "galilee": 28928,
- "fractures": 28929,
- "kobayashi": 28930,
- "##lized": 28931,
- "gunmen": 28932,
- "magma": 28933,
- "aramaic": 28934,
- "mala": 28935,
- "eastenders": 28936,
- "inference": 28937,
- "messengers": 28938,
- "bf": 28939,
- "##qu": 28940,
- "407": 28941,
- "bathrooms": 28942,
- "##vere": 28943,
- "1658": 28944,
- "flashbacks": 28945,
- "ideally": 28946,
- "misunderstood": 28947,
- "##jali": 28948,
- "##weather": 28949,
- "mendez": 28950,
- "##grounds": 28951,
- "505": 28952,
- "uncanny": 28953,
- "##iii": 28954,
- "1709": 28955,
- "friendships": 28956,
- "##nbc": 28957,
- "sacrament": 28958,
- "accommodated": 28959,
- "reiterated": 28960,
- "logistical": 28961,
- "pebbles": 28962,
- "thumped": 28963,
- "##escence": 28964,
- "administering": 28965,
- "decrees": 28966,
- "drafts": 28967,
- "##flight": 28968,
- "##cased": 28969,
- "##tula": 28970,
- "futuristic": 28971,
- "picket": 28972,
- "intimidation": 28973,
- "winthrop": 28974,
- "##fahan": 28975,
- "interfered": 28976,
- "339": 28977,
- "afar": 28978,
- "francoise": 28979,
- "morally": 28980,
- "uta": 28981,
- "cochin": 28982,
- "croft": 28983,
- "dwarfs": 28984,
- "##bruck": 28985,
- "##dents": 28986,
- "##nami": 28987,
- "biker": 28988,
- "##hner": 28989,
- "##meral": 28990,
- "nano": 28991,
- "##isen": 28992,
- "##ometric": 28993,
- "##pres": 28994,
- "##ан": 28995,
- "brightened": 28996,
- "meek": 28997,
- "parcels": 28998,
- "securely": 28999,
- "gunners": 29000,
- "##jhl": 29001,
- "##zko": 29002,
- "agile": 29003,
- "hysteria": 29004,
- "##lten": 29005,
- "##rcus": 29006,
- "bukit": 29007,
- "champs": 29008,
- "chevy": 29009,
- "cuckoo": 29010,
- "leith": 29011,
- "sadler": 29012,
- "theologians": 29013,
- "welded": 29014,
- "##section": 29015,
- "1663": 29016,
- "jj": 29017,
- "plurality": 29018,
- "xander": 29019,
- "##rooms": 29020,
- "##formed": 29021,
- "shredded": 29022,
- "temps": 29023,
- "intimately": 29024,
- "pau": 29025,
- "tormented": 29026,
- "##lok": 29027,
- "##stellar": 29028,
- "1618": 29029,
- "charred": 29030,
- "ems": 29031,
- "essen": 29032,
- "##mmel": 29033,
- "alarms": 29034,
- "spraying": 29035,
- "ascot": 29036,
- "blooms": 29037,
- "twinkle": 29038,
- "##abia": 29039,
- "##apes": 29040,
- "internment": 29041,
- "obsidian": 29042,
- "##chaft": 29043,
- "snoop": 29044,
- "##dav": 29045,
- "##ooping": 29046,
- "malibu": 29047,
- "##tension": 29048,
- "quiver": 29049,
- "##itia": 29050,
- "hays": 29051,
- "mcintosh": 29052,
- "travers": 29053,
- "walsall": 29054,
- "##ffie": 29055,
- "1623": 29056,
- "beverley": 29057,
- "schwarz": 29058,
- "plunging": 29059,
- "structurally": 29060,
- "m3": 29061,
- "rosenthal": 29062,
- "vikram": 29063,
- "##tsk": 29064,
- "770": 29065,
- "ghz": 29066,
- "##onda": 29067,
- "##tiv": 29068,
- "chalmers": 29069,
- "groningen": 29070,
- "pew": 29071,
- "reckon": 29072,
- "unicef": 29073,
- "##rvis": 29074,
- "55th": 29075,
- "##gni": 29076,
- "1651": 29077,
- "sulawesi": 29078,
- "avila": 29079,
- "cai": 29080,
- "metaphysical": 29081,
- "screwing": 29082,
- "turbulence": 29083,
- "##mberg": 29084,
- "augusto": 29085,
- "samba": 29086,
- "56th": 29087,
- "baffled": 29088,
- "momentary": 29089,
- "toxin": 29090,
- "##urian": 29091,
- "##wani": 29092,
- "aachen": 29093,
- "condoms": 29094,
- "dali": 29095,
- "steppe": 29096,
- "##3d": 29097,
- "##app": 29098,
- "##oed": 29099,
- "##year": 29100,
- "adolescence": 29101,
- "dauphin": 29102,
- "electrically": 29103,
- "inaccessible": 29104,
- "microscopy": 29105,
- "nikita": 29106,
- "##ega": 29107,
- "atv": 29108,
- "##cel": 29109,
- "##enter": 29110,
- "##oles": 29111,
- "##oteric": 29112,
- "##ы": 29113,
- "accountants": 29114,
- "punishments": 29115,
- "wrongly": 29116,
- "bribes": 29117,
- "adventurous": 29118,
- "clinch": 29119,
- "flinders": 29120,
- "southland": 29121,
- "##hem": 29122,
- "##kata": 29123,
- "gough": 29124,
- "##ciency": 29125,
- "lads": 29126,
- "soared": 29127,
- "##ה": 29128,
- "undergoes": 29129,
- "deformation": 29130,
- "outlawed": 29131,
- "rubbish": 29132,
- "##arus": 29133,
- "##mussen": 29134,
- "##nidae": 29135,
- "##rzburg": 29136,
- "arcs": 29137,
- "##ingdon": 29138,
- "##tituted": 29139,
- "1695": 29140,
- "wheelbase": 29141,
- "wheeling": 29142,
- "bombardier": 29143,
- "campground": 29144,
- "zebra": 29145,
- "##lices": 29146,
- "##oj": 29147,
- "##bain": 29148,
- "lullaby": 29149,
- "##ecure": 29150,
- "donetsk": 29151,
- "wylie": 29152,
- "grenada": 29153,
- "##arding": 29154,
- "##ης": 29155,
- "squinting": 29156,
- "eireann": 29157,
- "opposes": 29158,
- "##andra": 29159,
- "maximal": 29160,
- "runes": 29161,
- "##broken": 29162,
- "##cuting": 29163,
- "##iface": 29164,
- "##ror": 29165,
- "##rosis": 29166,
- "additive": 29167,
- "britney": 29168,
- "adultery": 29169,
- "triggering": 29170,
- "##drome": 29171,
- "detrimental": 29172,
- "aarhus": 29173,
- "containment": 29174,
- "jc": 29175,
- "swapped": 29176,
- "vichy": 29177,
- "##ioms": 29178,
- "madly": 29179,
- "##oric": 29180,
- "##rag": 29181,
- "brant": 29182,
- "##ckey": 29183,
- "##trix": 29184,
- "1560": 29185,
- "1612": 29186,
- "broughton": 29187,
- "rustling": 29188,
- "##stems": 29189,
- "##uder": 29190,
- "asbestos": 29191,
- "mentoring": 29192,
- "##nivorous": 29193,
- "finley": 29194,
- "leaps": 29195,
- "##isan": 29196,
- "apical": 29197,
- "pry": 29198,
- "slits": 29199,
- "substitutes": 29200,
- "##dict": 29201,
- "intuitive": 29202,
- "fantasia": 29203,
- "insistent": 29204,
- "unreasonable": 29205,
- "##igen": 29206,
- "##vna": 29207,
- "domed": 29208,
- "hannover": 29209,
- "margot": 29210,
- "ponder": 29211,
- "##zziness": 29212,
- "impromptu": 29213,
- "jian": 29214,
- "lc": 29215,
- "rampage": 29216,
- "stemming": 29217,
- "##eft": 29218,
- "andrey": 29219,
- "gerais": 29220,
- "whichever": 29221,
- "amnesia": 29222,
- "appropriated": 29223,
- "anzac": 29224,
- "clicks": 29225,
- "modifying": 29226,
- "ultimatum": 29227,
- "cambrian": 29228,
- "maids": 29229,
- "verve": 29230,
- "yellowstone": 29231,
- "##mbs": 29232,
- "conservatoire": 29233,
- "##scribe": 29234,
- "adherence": 29235,
- "dinners": 29236,
- "spectra": 29237,
- "imperfect": 29238,
- "mysteriously": 29239,
- "sidekick": 29240,
- "tatar": 29241,
- "tuba": 29242,
- "##aks": 29243,
- "##ifolia": 29244,
- "distrust": 29245,
- "##athan": 29246,
- "##zle": 29247,
- "c2": 29248,
- "ronin": 29249,
- "zac": 29250,
- "##pse": 29251,
- "celaena": 29252,
- "instrumentalist": 29253,
- "scents": 29254,
- "skopje": 29255,
- "##mbling": 29256,
- "comical": 29257,
- "compensated": 29258,
- "vidal": 29259,
- "condor": 29260,
- "intersect": 29261,
- "jingle": 29262,
- "wavelengths": 29263,
- "##urrent": 29264,
- "mcqueen": 29265,
- "##izzly": 29266,
- "carp": 29267,
- "weasel": 29268,
- "422": 29269,
- "kanye": 29270,
- "militias": 29271,
- "postdoctoral": 29272,
- "eugen": 29273,
- "gunslinger": 29274,
- "##ɛ": 29275,
- "faux": 29276,
- "hospice": 29277,
- "##for": 29278,
- "appalled": 29279,
- "derivation": 29280,
- "dwarves": 29281,
- "##elis": 29282,
- "dilapidated": 29283,
- "##folk": 29284,
- "astoria": 29285,
- "philology": 29286,
- "##lwyn": 29287,
- "##otho": 29288,
- "##saka": 29289,
- "inducing": 29290,
- "philanthropy": 29291,
- "##bf": 29292,
- "##itative": 29293,
- "geek": 29294,
- "markedly": 29295,
- "sql": 29296,
- "##yce": 29297,
- "bessie": 29298,
- "indices": 29299,
- "rn": 29300,
- "##flict": 29301,
- "495": 29302,
- "frowns": 29303,
- "resolving": 29304,
- "weightlifting": 29305,
- "tugs": 29306,
- "cleric": 29307,
- "contentious": 29308,
- "1653": 29309,
- "mania": 29310,
- "rms": 29311,
- "##miya": 29312,
- "##reate": 29313,
- "##ruck": 29314,
- "##tucket": 29315,
- "bien": 29316,
- "eels": 29317,
- "marek": 29318,
- "##ayton": 29319,
- "##cence": 29320,
- "discreet": 29321,
- "unofficially": 29322,
- "##ife": 29323,
- "leaks": 29324,
- "##bber": 29325,
- "1705": 29326,
- "332": 29327,
- "dung": 29328,
- "compressor": 29329,
- "hillsborough": 29330,
- "pandit": 29331,
- "shillings": 29332,
- "distal": 29333,
- "##skin": 29334,
- "381": 29335,
- "##tat": 29336,
- "##you": 29337,
- "nosed": 29338,
- "##nir": 29339,
- "mangrove": 29340,
- "undeveloped": 29341,
- "##idia": 29342,
- "textures": 29343,
- "##inho": 29344,
- "##500": 29345,
- "##rise": 29346,
- "ae": 29347,
- "irritating": 29348,
- "nay": 29349,
- "amazingly": 29350,
- "bancroft": 29351,
- "apologetic": 29352,
- "compassionate": 29353,
- "kata": 29354,
- "symphonies": 29355,
- "##lovic": 29356,
- "airspace": 29357,
- "##lch": 29358,
- "930": 29359,
- "gifford": 29360,
- "precautions": 29361,
- "fulfillment": 29362,
- "sevilla": 29363,
- "vulgar": 29364,
- "martinique": 29365,
- "##urities": 29366,
- "looting": 29367,
- "piccolo": 29368,
- "tidy": 29369,
- "##dermott": 29370,
- "quadrant": 29371,
- "armchair": 29372,
- "incomes": 29373,
- "mathematicians": 29374,
- "stampede": 29375,
- "nilsson": 29376,
- "##inking": 29377,
- "##scan": 29378,
- "foo": 29379,
- "quarterfinal": 29380,
- "##ostal": 29381,
- "shang": 29382,
- "shouldered": 29383,
- "squirrels": 29384,
- "##owe": 29385,
- "344": 29386,
- "vinegar": 29387,
- "##bner": 29388,
- "##rchy": 29389,
- "##systems": 29390,
- "delaying": 29391,
- "##trics": 29392,
- "ars": 29393,
- "dwyer": 29394,
- "rhapsody": 29395,
- "sponsoring": 29396,
- "##gration": 29397,
- "bipolar": 29398,
- "cinder": 29399,
- "starters": 29400,
- "##olio": 29401,
- "##urst": 29402,
- "421": 29403,
- "signage": 29404,
- "##nty": 29405,
- "aground": 29406,
- "figurative": 29407,
- "mons": 29408,
- "acquaintances": 29409,
- "duets": 29410,
- "erroneously": 29411,
- "soyuz": 29412,
- "elliptic": 29413,
- "recreated": 29414,
- "##cultural": 29415,
- "##quette": 29416,
- "##ssed": 29417,
- "##tma": 29418,
- "##zcz": 29419,
- "moderator": 29420,
- "scares": 29421,
- "##itaire": 29422,
- "##stones": 29423,
- "##udence": 29424,
- "juniper": 29425,
- "sighting": 29426,
- "##just": 29427,
- "##nsen": 29428,
- "britten": 29429,
- "calabria": 29430,
- "ry": 29431,
- "bop": 29432,
- "cramer": 29433,
- "forsyth": 29434,
- "stillness": 29435,
- "##л": 29436,
- "airmen": 29437,
- "gathers": 29438,
- "unfit": 29439,
- "##umber": 29440,
- "##upt": 29441,
- "taunting": 29442,
- "##rip": 29443,
- "seeker": 29444,
- "streamlined": 29445,
- "##bution": 29446,
- "holster": 29447,
- "schumann": 29448,
- "tread": 29449,
- "vox": 29450,
- "##gano": 29451,
- "##onzo": 29452,
- "strive": 29453,
- "dil": 29454,
- "reforming": 29455,
- "covent": 29456,
- "newbury": 29457,
- "predicting": 29458,
- "##orro": 29459,
- "decorate": 29460,
- "tre": 29461,
- "##puted": 29462,
- "andover": 29463,
- "ie": 29464,
- "asahi": 29465,
- "dept": 29466,
- "dunkirk": 29467,
- "gills": 29468,
- "##tori": 29469,
- "buren": 29470,
- "huskies": 29471,
- "##stis": 29472,
- "##stov": 29473,
- "abstracts": 29474,
- "bets": 29475,
- "loosen": 29476,
- "##opa": 29477,
- "1682": 29478,
- "yearning": 29479,
- "##glio": 29480,
- "##sir": 29481,
- "berman": 29482,
- "effortlessly": 29483,
- "enamel": 29484,
- "napoli": 29485,
- "persist": 29486,
- "##peration": 29487,
- "##uez": 29488,
- "attache": 29489,
- "elisa": 29490,
- "b1": 29491,
- "invitations": 29492,
- "##kic": 29493,
- "accelerating": 29494,
- "reindeer": 29495,
- "boardwalk": 29496,
- "clutches": 29497,
- "nelly": 29498,
- "polka": 29499,
- "starbucks": 29500,
- "##kei": 29501,
- "adamant": 29502,
- "huey": 29503,
- "lough": 29504,
- "unbroken": 29505,
- "adventurer": 29506,
- "embroidery": 29507,
- "inspecting": 29508,
- "stanza": 29509,
- "##ducted": 29510,
- "naia": 29511,
- "taluka": 29512,
- "##pone": 29513,
- "##roids": 29514,
- "chases": 29515,
- "deprivation": 29516,
- "florian": 29517,
- "##jing": 29518,
- "##ppet": 29519,
- "earthly": 29520,
- "##lib": 29521,
- "##ssee": 29522,
- "colossal": 29523,
- "foreigner": 29524,
- "vet": 29525,
- "freaks": 29526,
- "patrice": 29527,
- "rosewood": 29528,
- "triassic": 29529,
- "upstate": 29530,
- "##pkins": 29531,
- "dominates": 29532,
- "ata": 29533,
- "chants": 29534,
- "ks": 29535,
- "vo": 29536,
- "##400": 29537,
- "##bley": 29538,
- "##raya": 29539,
- "##rmed": 29540,
- "555": 29541,
- "agra": 29542,
- "infiltrate": 29543,
- "##ailing": 29544,
- "##ilation": 29545,
- "##tzer": 29546,
- "##uppe": 29547,
- "##werk": 29548,
- "binoculars": 29549,
- "enthusiast": 29550,
- "fujian": 29551,
- "squeak": 29552,
- "##avs": 29553,
- "abolitionist": 29554,
- "almeida": 29555,
- "boredom": 29556,
- "hampstead": 29557,
- "marsden": 29558,
- "rations": 29559,
- "##ands": 29560,
- "inflated": 29561,
- "334": 29562,
- "bonuses": 29563,
- "rosalie": 29564,
- "patna": 29565,
- "##rco": 29566,
- "329": 29567,
- "detachments": 29568,
- "penitentiary": 29569,
- "54th": 29570,
- "flourishing": 29571,
- "woolf": 29572,
- "##dion": 29573,
- "##etched": 29574,
- "papyrus": 29575,
- "##lster": 29576,
- "##nsor": 29577,
- "##toy": 29578,
- "bobbed": 29579,
- "dismounted": 29580,
- "endelle": 29581,
- "inhuman": 29582,
- "motorola": 29583,
- "tbs": 29584,
- "wince": 29585,
- "wreath": 29586,
- "##ticus": 29587,
- "hideout": 29588,
- "inspections": 29589,
- "sanjay": 29590,
- "disgrace": 29591,
- "infused": 29592,
- "pudding": 29593,
- "stalks": 29594,
- "##urbed": 29595,
- "arsenic": 29596,
- "leases": 29597,
- "##hyl": 29598,
- "##rrard": 29599,
- "collarbone": 29600,
- "##waite": 29601,
- "##wil": 29602,
- "dowry": 29603,
- "##bant": 29604,
- "##edance": 29605,
- "genealogical": 29606,
- "nitrate": 29607,
- "salamanca": 29608,
- "scandals": 29609,
- "thyroid": 29610,
- "necessitated": 29611,
- "##!": 29612,
- "##\"": 29613,
- "###": 29614,
- "##$": 29615,
- "##%": 29616,
- "##&": 29617,
- "##'": 29618,
- "##(": 29619,
- "##)": 29620,
- "##*": 29621,
- "##+": 29622,
- "##,": 29623,
- "##-": 29624,
- "##.": 29625,
- "##/": 29626,
- "##:": 29627,
- "##;": 29628,
- "##<": 29629,
- "##=": 29630,
- "##>": 29631,
- "##?": 29632,
- "##@": 29633,
- "##[": 29634,
- "##\\": 29635,
- "##]": 29636,
- "##^": 29637,
- "##_": 29638,
- "##`": 29639,
- "##{": 29640,
- "##|": 29641,
- "##}": 29642,
- "##~": 29643,
- "##¡": 29644,
- "##¢": 29645,
- "##£": 29646,
- "##¤": 29647,
- "##¥": 29648,
- "##¦": 29649,
- "##§": 29650,
- "##¨": 29651,
- "##©": 29652,
- "##ª": 29653,
- "##«": 29654,
- "##¬": 29655,
- "##®": 29656,
- "##±": 29657,
- "##´": 29658,
- "##µ": 29659,
- "##¶": 29660,
- "##·": 29661,
- "##º": 29662,
- "##»": 29663,
- "##¼": 29664,
- "##¾": 29665,
- "##¿": 29666,
- "##æ": 29667,
- "##ð": 29668,
- "##÷": 29669,
- "##þ": 29670,
- "##đ": 29671,
- "##ħ": 29672,
- "##ŋ": 29673,
- "##œ": 29674,
- "##ƒ": 29675,
- "##ɐ": 29676,
- "##ɑ": 29677,
- "##ɒ": 29678,
- "##ɔ": 29679,
- "##ɕ": 29680,
- "##ə": 29681,
- "##ɡ": 29682,
- "##ɣ": 29683,
- "##ɨ": 29684,
- "##ɪ": 29685,
- "##ɫ": 29686,
- "##ɬ": 29687,
- "##ɯ": 29688,
- "##ɲ": 29689,
- "##ɴ": 29690,
- "##ɹ": 29691,
- "##ɾ": 29692,
- "##ʀ": 29693,
- "##ʁ": 29694,
- "##ʂ": 29695,
- "##ʃ": 29696,
- "##ʉ": 29697,
- "##ʊ": 29698,
- "##ʋ": 29699,
- "##ʌ": 29700,
- "##ʎ": 29701,
- "##ʐ": 29702,
- "##ʑ": 29703,
- "##ʒ": 29704,
- "##ʔ": 29705,
- "##ʰ": 29706,
- "##ʲ": 29707,
- "##ʳ": 29708,
- "##ʷ": 29709,
- "##ʸ": 29710,
- "##ʻ": 29711,
- "##ʼ": 29712,
- "##ʾ": 29713,
- "##ʿ": 29714,
- "##ˈ": 29715,
- "##ˡ": 29716,
- "##ˢ": 29717,
- "##ˣ": 29718,
- "##ˤ": 29719,
- "##β": 29720,
- "##γ": 29721,
- "##δ": 29722,
- "##ε": 29723,
- "##ζ": 29724,
- "##θ": 29725,
- "##κ": 29726,
- "##λ": 29727,
- "##μ": 29728,
- "##ξ": 29729,
- "##ο": 29730,
- "##π": 29731,
- "##ρ": 29732,
- "##σ": 29733,
- "##τ": 29734,
- "##υ": 29735,
- "##φ": 29736,
- "##χ": 29737,
- "##ψ": 29738,
- "##ω": 29739,
- "##б": 29740,
- "##г": 29741,
- "##д": 29742,
- "##ж": 29743,
- "##з": 29744,
- "##м": 29745,
- "##п": 29746,
- "##с": 29747,
- "##у": 29748,
- "##ф": 29749,
- "##х": 29750,
- "##ц": 29751,
- "##ч": 29752,
- "##ш": 29753,
- "##щ": 29754,
- "##ъ": 29755,
- "##э": 29756,
- "##ю": 29757,
- "##ђ": 29758,
- "##є": 29759,
- "##і": 29760,
- "##ј": 29761,
- "##љ": 29762,
- "##њ": 29763,
- "##ћ": 29764,
- "##ӏ": 29765,
- "##ա": 29766,
- "##բ": 29767,
- "##գ": 29768,
- "##դ": 29769,
- "##ե": 29770,
- "##թ": 29771,
- "##ի": 29772,
- "##լ": 29773,
- "##կ": 29774,
- "##հ": 29775,
- "##մ": 29776,
- "##յ": 29777,
- "##ն": 29778,
- "##ո": 29779,
- "##պ": 29780,
- "##ս": 29781,
- "##վ": 29782,
- "##տ": 29783,
- "##ր": 29784,
- "##ւ": 29785,
- "##ք": 29786,
- "##־": 29787,
- "##א": 29788,
- "##ב": 29789,
- "##ג": 29790,
- "##ד": 29791,
- "##ו": 29792,
- "##ז": 29793,
- "##ח": 29794,
- "##ט": 29795,
- "##י": 29796,
- "##ך": 29797,
- "##כ": 29798,
- "##ל": 29799,
- "##ם": 29800,
- "##מ": 29801,
- "##ן": 29802,
- "##נ": 29803,
- "##ס": 29804,
- "##ע": 29805,
- "##ף": 29806,
- "##פ": 29807,
- "##ץ": 29808,
- "##צ": 29809,
- "##ק": 29810,
- "##ר": 29811,
- "##ש": 29812,
- "##ת": 29813,
- "##،": 29814,
- "##ء": 29815,
- "##ب": 29816,
- "##ت": 29817,
- "##ث": 29818,
- "##ج": 29819,
- "##ح": 29820,
- "##خ": 29821,
- "##ذ": 29822,
- "##ز": 29823,
- "##س": 29824,
- "##ش": 29825,
- "##ص": 29826,
- "##ض": 29827,
- "##ط": 29828,
- "##ظ": 29829,
- "##ع": 29830,
- "##غ": 29831,
- "##ـ": 29832,
- "##ف": 29833,
- "##ق": 29834,
- "##ك": 29835,
- "##و": 29836,
- "##ى": 29837,
- "##ٹ": 29838,
- "##پ": 29839,
- "##چ": 29840,
- "##ک": 29841,
- "##گ": 29842,
- "##ں": 29843,
- "##ھ": 29844,
- "##ہ": 29845,
- "##ے": 29846,
- "##अ": 29847,
- "##आ": 29848,
- "##उ": 29849,
- "##ए": 29850,
- "##क": 29851,
- "##ख": 29852,
- "##ग": 29853,
- "##च": 29854,
- "##ज": 29855,
- "##ट": 29856,
- "##ड": 29857,
- "##ण": 29858,
- "##त": 29859,
- "##थ": 29860,
- "##द": 29861,
- "##ध": 29862,
- "##न": 29863,
- "##प": 29864,
- "##ब": 29865,
- "##भ": 29866,
- "##म": 29867,
- "##य": 29868,
- "##र": 29869,
- "##ल": 29870,
- "##व": 29871,
- "##श": 29872,
- "##ष": 29873,
- "##स": 29874,
- "##ह": 29875,
- "##ा": 29876,
- "##ि": 29877,
- "##ी": 29878,
- "##ो": 29879,
- "##।": 29880,
- "##॥": 29881,
- "##ং": 29882,
- "##অ": 29883,
- "##আ": 29884,
- "##ই": 29885,
- "##উ": 29886,
- "##এ": 29887,
- "##ও": 29888,
- "##ক": 29889,
- "##খ": 29890,
- "##গ": 29891,
- "##চ": 29892,
- "##ছ": 29893,
- "##জ": 29894,
- "##ট": 29895,
- "##ড": 29896,
- "##ণ": 29897,
- "##ত": 29898,
- "##থ": 29899,
- "##দ": 29900,
- "##ধ": 29901,
- "##ন": 29902,
- "##প": 29903,
- "##ব": 29904,
- "##ভ": 29905,
- "##ম": 29906,
- "##য": 29907,
- "##র": 29908,
- "##ল": 29909,
- "##শ": 29910,
- "##ষ": 29911,
- "##স": 29912,
- "##হ": 29913,
- "##া": 29914,
- "##ি": 29915,
- "##ী": 29916,
- "##ে": 29917,
- "##க": 29918,
- "##ச": 29919,
- "##ட": 29920,
- "##த": 29921,
- "##ந": 29922,
- "##ன": 29923,
- "##ப": 29924,
- "##ம": 29925,
- "##ய": 29926,
- "##ர": 29927,
- "##ல": 29928,
- "##ள": 29929,
- "##வ": 29930,
- "##ா": 29931,
- "##ி": 29932,
- "##ு": 29933,
- "##ே": 29934,
- "##ை": 29935,
- "##ನ": 29936,
- "##ರ": 29937,
- "##ಾ": 29938,
- "##ක": 29939,
- "##ය": 29940,
- "##ර": 29941,
- "##ල": 29942,
- "##ව": 29943,
- "##ා": 29944,
- "##ก": 29945,
- "##ง": 29946,
- "##ต": 29947,
- "##ท": 29948,
- "##น": 29949,
- "##พ": 29950,
- "##ม": 29951,
- "##ย": 29952,
- "##ร": 29953,
- "##ล": 29954,
- "##ว": 29955,
- "##ส": 29956,
- "##อ": 29957,
- "##า": 29958,
- "##เ": 29959,
- "##་": 29960,
- "##།": 29961,
- "##ག": 29962,
- "##ང": 29963,
- "##ད": 29964,
- "##ན": 29965,
- "##པ": 29966,
- "##བ": 29967,
- "##མ": 29968,
- "##འ": 29969,
- "##ར": 29970,
- "##ལ": 29971,
- "##ས": 29972,
- "##မ": 29973,
- "##ა": 29974,
- "##ბ": 29975,
- "##გ": 29976,
- "##დ": 29977,
- "##ე": 29978,
- "##ვ": 29979,
- "##თ": 29980,
- "##ი": 29981,
- "##კ": 29982,
- "##ლ": 29983,
- "##მ": 29984,
- "##ნ": 29985,
- "##ო": 29986,
- "##რ": 29987,
- "##ს": 29988,
- "##ტ": 29989,
- "##უ": 29990,
- "##ᄀ": 29991,
- "##ᄂ": 29992,
- "##ᄃ": 29993,
- "##ᄅ": 29994,
- "##ᄆ": 29995,
- "##ᄇ": 29996,
- "##ᄉ": 29997,
- "##ᄊ": 29998,
- "##ᄋ": 29999,
- "##ᄌ": 30000,
- "##ᄎ": 30001,
- "##ᄏ": 30002,
- "##ᄐ": 30003,
- "##ᄑ": 30004,
- "##ᄒ": 30005,
- "##ᅡ": 30006,
- "##ᅢ": 30007,
- "##ᅥ": 30008,
- "##ᅦ": 30009,
- "##ᅧ": 30010,
- "##ᅩ": 30011,
- "##ᅪ": 30012,
- "##ᅭ": 30013,
- "##ᅮ": 30014,
- "##ᅯ": 30015,
- "##ᅲ": 30016,
- "##ᅳ": 30017,
- "##ᅴ": 30018,
- "##ᅵ": 30019,
- "##ᆨ": 30020,
- "##ᆫ": 30021,
- "##ᆯ": 30022,
- "##ᆷ": 30023,
- "##ᆸ": 30024,
- "##ᆼ": 30025,
- "##ᴬ": 30026,
- "##ᴮ": 30027,
- "##ᴰ": 30028,
- "##ᴵ": 30029,
- "##ᴺ": 30030,
- "##ᵀ": 30031,
- "##ᵃ": 30032,
- "##ᵇ": 30033,
- "##ᵈ": 30034,
- "##ᵉ": 30035,
- "##ᵍ": 30036,
- "##ᵏ": 30037,
- "##ᵐ": 30038,
- "##ᵒ": 30039,
- "##ᵖ": 30040,
- "##ᵗ": 30041,
- "##ᵘ": 30042,
- "##ᵣ": 30043,
- "##ᵤ": 30044,
- "##ᵥ": 30045,
- "##ᶜ": 30046,
- "##ᶠ": 30047,
- "##‐": 30048,
- "##‑": 30049,
- "##‒": 30050,
- "##–": 30051,
- "##—": 30052,
- "##―": 30053,
- "##‖": 30054,
- "##‘": 30055,
- "##’": 30056,
- "##‚": 30057,
- "##“": 30058,
- "##”": 30059,
- "##„": 30060,
- "##†": 30061,
- "##‡": 30062,
- "##•": 30063,
- "##…": 30064,
- "##‰": 30065,
- "##′": 30066,
- "##″": 30067,
- "##›": 30068,
- "##‿": 30069,
- "##⁄": 30070,
- "##⁰": 30071,
- "##ⁱ": 30072,
- "##⁴": 30073,
- "##⁵": 30074,
- "##⁶": 30075,
- "##⁷": 30076,
- "##⁸": 30077,
- "##⁹": 30078,
- "##⁻": 30079,
- "##ⁿ": 30080,
- "##₅": 30081,
- "##₆": 30082,
- "##₇": 30083,
- "##₈": 30084,
- "##₉": 30085,
- "##₊": 30086,
- "##₍": 30087,
- "##₎": 30088,
- "##ₐ": 30089,
- "##ₑ": 30090,
- "##ₒ": 30091,
- "##ₓ": 30092,
- "##ₕ": 30093,
- "##ₖ": 30094,
- "##ₗ": 30095,
- "##ₘ": 30096,
- "##ₚ": 30097,
- "##ₛ": 30098,
- "##ₜ": 30099,
- "##₤": 30100,
- "##₩": 30101,
- "##€": 30102,
- "##₱": 30103,
- "##₹": 30104,
- "##ℓ": 30105,
- "##№": 30106,
- "##ℝ": 30107,
- "##™": 30108,
- "##⅓": 30109,
- "##⅔": 30110,
- "##←": 30111,
- "##↑": 30112,
- "##→": 30113,
- "##↓": 30114,
- "##↔": 30115,
- "##↦": 30116,
- "##⇄": 30117,
- "##⇌": 30118,
- "##⇒": 30119,
- "##∂": 30120,
- "##∅": 30121,
- "##∆": 30122,
- "##∇": 30123,
- "##∈": 30124,
- "##∗": 30125,
- "##∘": 30126,
- "##√": 30127,
- "##∞": 30128,
- "##∧": 30129,
- "##∨": 30130,
- "##∩": 30131,
- "##∪": 30132,
- "##≈": 30133,
- "##≡": 30134,
- "##≤": 30135,
- "##≥": 30136,
- "##⊂": 30137,
- "##⊆": 30138,
- "##⊕": 30139,
- "##⊗": 30140,
- "##⋅": 30141,
- "##─": 30142,
- "##│": 30143,
- "##■": 30144,
- "##▪": 30145,
- "##●": 30146,
- "##★": 30147,
- "##☆": 30148,
- "##☉": 30149,
- "##♠": 30150,
- "##♣": 30151,
- "##♥": 30152,
- "##♦": 30153,
- "##♯": 30154,
- "##⟨": 30155,
- "##⟩": 30156,
- "##ⱼ": 30157,
- "##⺩": 30158,
- "##⺼": 30159,
- "##⽥": 30160,
- "##、": 30161,
- "##。": 30162,
- "##〈": 30163,
- "##〉": 30164,
- "##《": 30165,
- "##》": 30166,
- "##「": 30167,
- "##」": 30168,
- "##『": 30169,
- "##』": 30170,
- "##〜": 30171,
- "##あ": 30172,
- "##い": 30173,
- "##う": 30174,
- "##え": 30175,
- "##お": 30176,
- "##か": 30177,
- "##き": 30178,
- "##く": 30179,
- "##け": 30180,
- "##こ": 30181,
- "##さ": 30182,
- "##し": 30183,
- "##す": 30184,
- "##せ": 30185,
- "##そ": 30186,
- "##た": 30187,
- "##ち": 30188,
- "##っ": 30189,
- "##つ": 30190,
- "##て": 30191,
- "##と": 30192,
- "##な": 30193,
- "##に": 30194,
- "##ぬ": 30195,
- "##ね": 30196,
- "##の": 30197,
- "##は": 30198,
- "##ひ": 30199,
- "##ふ": 30200,
- "##へ": 30201,
- "##ほ": 30202,
- "##ま": 30203,
- "##み": 30204,
- "##む": 30205,
- "##め": 30206,
- "##も": 30207,
- "##や": 30208,
- "##ゆ": 30209,
- "##よ": 30210,
- "##ら": 30211,
- "##り": 30212,
- "##る": 30213,
- "##れ": 30214,
- "##ろ": 30215,
- "##を": 30216,
- "##ん": 30217,
- "##ァ": 30218,
- "##ア": 30219,
- "##ィ": 30220,
- "##イ": 30221,
- "##ウ": 30222,
- "##ェ": 30223,
- "##エ": 30224,
- "##オ": 30225,
- "##カ": 30226,
- "##キ": 30227,
- "##ク": 30228,
- "##ケ": 30229,
- "##コ": 30230,
- "##サ": 30231,
- "##シ": 30232,
- "##ス": 30233,
- "##セ": 30234,
- "##タ": 30235,
- "##チ": 30236,
- "##ッ": 30237,
- "##ツ": 30238,
- "##テ": 30239,
- "##ト": 30240,
- "##ナ": 30241,
- "##ニ": 30242,
- "##ノ": 30243,
- "##ハ": 30244,
- "##ヒ": 30245,
- "##フ": 30246,
- "##ヘ": 30247,
- "##ホ": 30248,
- "##マ": 30249,
- "##ミ": 30250,
- "##ム": 30251,
- "##メ": 30252,
- "##モ": 30253,
- "##ャ": 30254,
- "##ュ": 30255,
- "##ョ": 30256,
- "##ラ": 30257,
- "##リ": 30258,
- "##ル": 30259,
- "##レ": 30260,
- "##ロ": 30261,
- "##ワ": 30262,
- "##ン": 30263,
- "##・": 30264,
- "##ー": 30265,
- "##一": 30266,
- "##三": 30267,
- "##上": 30268,
- "##下": 30269,
- "##不": 30270,
- "##世": 30271,
- "##中": 30272,
- "##主": 30273,
- "##久": 30274,
- "##之": 30275,
- "##也": 30276,
- "##事": 30277,
- "##二": 30278,
- "##五": 30279,
- "##井": 30280,
- "##京": 30281,
- "##人": 30282,
- "##亻": 30283,
- "##仁": 30284,
- "##介": 30285,
- "##代": 30286,
- "##仮": 30287,
- "##伊": 30288,
- "##会": 30289,
- "##佐": 30290,
- "##侍": 30291,
- "##保": 30292,
- "##信": 30293,
- "##健": 30294,
- "##元": 30295,
- "##光": 30296,
- "##八": 30297,
- "##公": 30298,
- "##内": 30299,
- "##出": 30300,
- "##分": 30301,
- "##前": 30302,
- "##劉": 30303,
- "##力": 30304,
- "##加": 30305,
- "##勝": 30306,
- "##北": 30307,
- "##区": 30308,
- "##十": 30309,
- "##千": 30310,
- "##南": 30311,
- "##博": 30312,
- "##原": 30313,
- "##口": 30314,
- "##古": 30315,
- "##史": 30316,
- "##司": 30317,
- "##合": 30318,
- "##吉": 30319,
- "##同": 30320,
- "##名": 30321,
- "##和": 30322,
- "##囗": 30323,
- "##四": 30324,
- "##国": 30325,
- "##國": 30326,
- "##土": 30327,
- "##地": 30328,
- "##坂": 30329,
- "##城": 30330,
- "##堂": 30331,
- "##場": 30332,
- "##士": 30333,
- "##夏": 30334,
- "##外": 30335,
- "##大": 30336,
- "##天": 30337,
- "##太": 30338,
- "##夫": 30339,
- "##奈": 30340,
- "##女": 30341,
- "##子": 30342,
- "##学": 30343,
- "##宀": 30344,
- "##宇": 30345,
- "##安": 30346,
- "##宗": 30347,
- "##定": 30348,
- "##宣": 30349,
- "##宮": 30350,
- "##家": 30351,
- "##宿": 30352,
- "##寺": 30353,
- "##將": 30354,
- "##小": 30355,
- "##尚": 30356,
- "##山": 30357,
- "##岡": 30358,
- "##島": 30359,
- "##崎": 30360,
- "##川": 30361,
- "##州": 30362,
- "##巿": 30363,
- "##帝": 30364,
- "##平": 30365,
- "##年": 30366,
- "##幸": 30367,
- "##广": 30368,
- "##弘": 30369,
- "##張": 30370,
- "##彳": 30371,
- "##後": 30372,
- "##御": 30373,
- "##德": 30374,
- "##心": 30375,
- "##忄": 30376,
- "##志": 30377,
- "##忠": 30378,
- "##愛": 30379,
- "##成": 30380,
- "##我": 30381,
- "##戦": 30382,
- "##戸": 30383,
- "##手": 30384,
- "##扌": 30385,
- "##政": 30386,
- "##文": 30387,
- "##新": 30388,
- "##方": 30389,
- "##日": 30390,
- "##明": 30391,
- "##星": 30392,
- "##春": 30393,
- "##昭": 30394,
- "##智": 30395,
- "##曲": 30396,
- "##書": 30397,
- "##月": 30398,
- "##有": 30399,
- "##朝": 30400,
- "##木": 30401,
- "##本": 30402,
- "##李": 30403,
- "##村": 30404,
- "##東": 30405,
- "##松": 30406,
- "##林": 30407,
- "##森": 30408,
- "##楊": 30409,
- "##樹": 30410,
- "##橋": 30411,
- "##歌": 30412,
- "##止": 30413,
- "##正": 30414,
- "##武": 30415,
- "##比": 30416,
- "##氏": 30417,
- "##民": 30418,
- "##水": 30419,
- "##氵": 30420,
- "##氷": 30421,
- "##永": 30422,
- "##江": 30423,
- "##沢": 30424,
- "##河": 30425,
- "##治": 30426,
- "##法": 30427,
- "##海": 30428,
- "##清": 30429,
- "##漢": 30430,
- "##瀬": 30431,
- "##火": 30432,
- "##版": 30433,
- "##犬": 30434,
- "##王": 30435,
- "##生": 30436,
- "##田": 30437,
- "##男": 30438,
- "##疒": 30439,
- "##発": 30440,
- "##白": 30441,
- "##的": 30442,
- "##皇": 30443,
- "##目": 30444,
- "##相": 30445,
- "##省": 30446,
- "##真": 30447,
- "##石": 30448,
- "##示": 30449,
- "##社": 30450,
- "##神": 30451,
- "##福": 30452,
- "##禾": 30453,
- "##秀": 30454,
- "##秋": 30455,
- "##空": 30456,
- "##立": 30457,
- "##章": 30458,
- "##竹": 30459,
- "##糹": 30460,
- "##美": 30461,
- "##義": 30462,
- "##耳": 30463,
- "##良": 30464,
- "##艹": 30465,
- "##花": 30466,
- "##英": 30467,
- "##華": 30468,
- "##葉": 30469,
- "##藤": 30470,
- "##行": 30471,
- "##街": 30472,
- "##西": 30473,
- "##見": 30474,
- "##訁": 30475,
- "##語": 30476,
- "##谷": 30477,
- "##貝": 30478,
- "##貴": 30479,
- "##車": 30480,
- "##軍": 30481,
- "##辶": 30482,
- "##道": 30483,
- "##郎": 30484,
- "##郡": 30485,
- "##部": 30486,
- "##都": 30487,
- "##里": 30488,
- "##野": 30489,
- "##金": 30490,
- "##鈴": 30491,
- "##镇": 30492,
- "##長": 30493,
- "##門": 30494,
- "##間": 30495,
- "##阝": 30496,
- "##阿": 30497,
- "##陳": 30498,
- "##陽": 30499,
- "##雄": 30500,
- "##青": 30501,
- "##面": 30502,
- "##風": 30503,
- "##食": 30504,
- "##香": 30505,
- "##馬": 30506,
- "##高": 30507,
- "##龍": 30508,
- "##龸": 30509,
- "##fi": 30510,
- "##fl": 30511,
- "##!": 30512,
- "##(": 30513,
- "##)": 30514,
- "##,": 30515,
- "##-": 30516,
- "##.": 30517,
- "##/": 30518,
- "##:": 30519,
- "##?": 30520,
- "##~": 30521
- }
- }
-}
\ No newline at end of file
diff --git a/assets/models/all-MiniLM-L6-v2-q8/vocab.json b/assets/models/all-MiniLM-L6-v2-q8/vocab.json
deleted file mode 100644
index 78f431c4..00000000
--- a/assets/models/all-MiniLM-L6-v2-q8/vocab.json
+++ /dev/null
@@ -1 +0,0 @@
-{"0":1014,"1":1015,"2":1016,"3":1017,"4":1018,"5":1019,"6":1020,"7":1021,"8":1022,"9":1023,"10":2184,"11":2340,"12":2260,"13":2410,"14":2403,"15":2321,"16":2385,"17":2459,"18":2324,"19":2539,"20":2322,"21":2538,"22":2570,"23":2603,"24":2484,"25":2423,"26":2656,"27":2676,"28":2654,"29":2756,"30":2382,"31":2861,"32":3590,"33":3943,"34":4090,"35":3486,"36":4029,"37":4261,"38":4229,"39":4464,"40":2871,"41":4601,"42":4413,"43":4724,"44":4008,"45":3429,"46":4805,"47":4700,"48":4466,"49":4749,"50":2753,"51":4868,"52":4720,"53":5187,"54":5139,"55":4583,"56":5179,"57":5401,"58":5388,"59":5354,"60":3438,"61":6079,"62":5786,"63":6191,"64":4185,"65":3515,"66":5764,"67":6163,"68":6273,"69":6353,"70":3963,"71":6390,"72":5824,"73":6421,"74":6356,"75":4293,"76":6146,"77":6255,"78":6275,"79":6535,"80":3770,"81":6282,"82":6445,"83":6640,"84":6391,"85":5594,"86":6564,"87":6584,"88":6070,"89":6486,"90":3938,"91":6205,"92":6227,"93":6109,"94":6365,"95":5345,"96":5986,"97":5989,"98":5818,"99":5585,"100":2531,"101":7886,"102":9402,"103":9800,"104":9645,"105":8746,"106":10114,"107":10550,"108":10715,"109":11518,"110":7287,"111":11118,"112":11176,"113":12104,"114":12457,"115":10630,"116":12904,"117":12567,"118":12963,"119":13285,"120":6036,"121":12606,"122":13092,"123":13138,"124":13412,"125":8732,"126":14010,"127":13029,"128":11899,"129":14378,"130":7558,"131":14677,"132":14078,"133":14506,"134":15170,"135":11502,"136":15407,"137":14989,"138":15028,"139":16621,"140":8574,"141":15471,"142":16087,"143":16065,"144":14748,"145":13741,"146":16333,"147":16471,"148":16459,"149":17332,"150":5018,"151":16528,"152":15017,"153":16710,"154":16666,"155":14168,"156":16734,"157":17403,"158":17696,"159":18914,"160":8148,"161":17365,"162":17832,"163":17867,"164":17943,"165":13913,"166":18610,"167":16785,"168":16923,"169":18582,"170":10894,"171":18225,"172":18253,"173":19410,"174":19492,"175":12862,"176":18561,"177":18118,"178":19289,"179":20311,"180":8380,"181":18596,"182":17691,"183":18677,"184":19681,"185":15376,"186":19609,"187":19446,"188":19121,"189":20500,"190":11827,"191":19871,"192":17613,"193":19984,"194":19955,"195":17317,"196":20035,"197":19975,"198":20003,"199":20713,"200":3263,"201":16345,"202":16798,"203":18540,"204":19627,"205":16327,"206":18744,"207":19843,"208":18512,"209":19348,"210":12875,"211":19235,"212":18164,"213":19883,"214":19936,"215":17405,"216":20294,"217":20335,"218":20741,"219":20636,"220":10545,"221":19594,"222":19015,"223":20802,"224":19711,"225":14993,"226":21035,"227":21489,"228":22238,"229":22777,"230":11816,"231":20304,"232":20666,"233":22115,"234":22018,"235":17825,"236":23593,"237":23297,"238":22030,"239":23688,"240":11212,"241":22343,"242":22431,"243":22884,"244":24194,"245":21005,"246":22376,"247":23380,"248":24568,"249":23628,"250":5539,"251":22582,"252":22898,"253":23254,"254":22234,"255":20637,"256":17273,"257":24368,"258":24398,"259":25191,"260":13539,"261":24441,"262":21950,"263":25246,"264":21611,"265":20549,"266":25162,"267":25491,"268":25143,"269":25717,"270":13756,"271":25103,"272":24231,"273":25371,"274":25586,"275":17528,"276":25113,"277":25578,"278":24709,"279":25745,"280":13427,"281":22955,"282":26267,"283":25504,"284":26871,"285":21777,"286":24921,"287":23090,"288":24841,"289":27054,"290":17222,"291":27173,"292":25797,"293":26953,"294":28135,"295":21679,"296":27200,"297":27502,"298":27240,"299":25926,"300":3998,"301":19123,"302":22060,"303":19988,"304":23859,"305":20405,"306":24622,"307":24559,"308":24232,"309":25048,"310":17196,"311":23532,"312":21036,"313":22997,"314":26257,"315":22904,"316":23980,"317":26628,"318":27003,"319":26499,"320":13710,"321":24030,"322":23768,"323":25392,"324":27234,"325":19652,"326":28188,"327":28469,"328":25256,"329":29567,"330":14210,"331":27533,"332":29327,"333":21211,"334":29562,"335":24426,"336":27954,"337":28489,"338":27908,"339":28977,"340":16029,"341":28358,"343":27810,"344":29386,"345":23785,"350":8698,"351":28474,"352":28906,"354":27878,"355":26271,"356":27509,"357":26231,"360":9475,"365":19342,"370":16444,"375":18034,"380":17014,"381":29335,"385":24429,"390":20024,"395":24673,"400":4278,"401":22649,"402":28048,"403":28203,"404":24837,"405":23988,"406":27433,"407":28941,"410":19151,"411":27517,"412":25873,"415":24690,"417":27519,"420":17442,"421":29403,"422":29269,"425":23285,"430":19540,"435":24125,"440":17422,"441":28015,"450":10332,"451":28161,"460":17267,"470":21064,"475":28245,"480":17295,"490":22288,"495":29302,"500":3156,"501":16202,"505":28952,"510":23475,"512":24406,"520":19611,"521":26963,"525":25621,"530":23523,"540":20263,"550":13274,"555":29541,"560":21267,"570":24902,"580":23712,"590":25186,"600":5174,"610":19827,"620":23612,"625":22810,"630":23609,"640":19714,"650":13757,"660":20982,"670":25535,"680":23944,"690":28066,"700":6352,"710":27671,"720":22857,"730":28004,"737":22061,"740":25833,"747":25374,"750":9683,"760":24643,"770":29065,"780":28601,"800":5385,"802":23908,"820":26667,"840":28122,"850":15678,"870":28864,"875":27658,"880":26839,"900":7706,"910":27743,"911":19989,"930":29359,"950":20317,"960":26637,"978":4891,"980":25195,"999":25897,"1000":6694,"1016":28707,"1086":28196,"1100":22096,"1200":14840,"1300":19527,"1400":20652,"1500":10347,"1540":27536,"1550":26245,"1560":29185,"1570":28881,"1580":28278,"1600":14883,"1603":25625,"1604":28754,"1605":28202,"1609":28058,"1610":25800,"1611":28769,"1612":29186,"1618":29029,"1620":24259,"1621":27037,"1622":28133,"1623":29056,"1624":28531,"1625":26263,"1626":28818,"1628":28627,"1629":27882,"1630":24994,"1632":28216,"1634":28502,"1635":27426,"1638":27497,"1640":21533,"1641":25702,"1642":24061,"1643":25534,"1644":23477,"1645":26081,"1646":28783,"1648":22533,"1649":26538,"1650":21875,"1651":29077,"1652":28853,"1653":29309,"1654":27445,"1655":28438,"1656":28434,"1658":28944,"1659":28288,"1660":17954,"1661":24046,"1662":25909,"1663":29016,"1664":28485,"1665":27676,"1666":27407,"1667":27643,"1670":26253,"1672":27253,"1675":27194,"1679":27924,"1680":24621,"1682":29478,"1683":27414,"1685":25053,"1688":24082,"1689":22685,"1690":24765,"1692":28622,"1695":29140,"1697":28690,"1699":28718,"1700":16601,"1701":26059,"1702":26776,"1703":28366,"1704":27769,"1705":29326,"1707":25029,"1708":27337,"1709":28955,"1710":23841,"1711":28455,"1712":28460,"1713":27016,"1714":25241,"1715":22606,"1716":28204,"1717":27525,"1718":26995,"1719":28162,"1720":23535,"1721":27689,"1722":26689,"1723":26621,"1724":26423,"1725":25651,"1726":28342,"1727":25350,"1728":26833,"1729":28449,"1730":23272,"1731":28446,"1732":27582,"1733":27230,"1734":27367,"1735":26063,"1736":28192,"1737":26738,"1738":28009,"1739":25801,"1740":21757,"1741":25280,"1742":25704,"1743":25615,"1744":25846,"1745":21809,"1746":24507,"1747":24522,"1748":24445,"1749":24704,"1750":18171,"1751":24440,"1752":24736,"1753":23810,"1754":22593,"1755":21417,"1756":22370,"1757":22621,"1758":16832,"1759":21667,"1760":19096,"1761":21364,"1762":20827,"1763":18432,"1764":21488,"1765":20797,"1766":21410,"1767":21502,"1768":19793,"1769":20663,"1770":17711,"1771":20708,"1772":17483,"1773":19916,"1774":17593,"1775":14276,"1776":13963,"1777":16144,"1778":16331,"1779":17616,"1780":15051,"1781":16788,"1782":16890,"1783":15331,"1784":16496,"1785":17262,"1786":17436,"1787":16057,"1788":15622,"1789":13739,"1790":13393,"1791":14362,"1792":13414,"1793":12387,"1794":13199,"1795":13397,"1796":13885,"1797":14112,"1798":13036,"1799":13839,"1800":9807,"1801":12410,"1802":13515,"1803":12651,"1804":13140,"1805":13126,"1806":12518,"1807":13206,"1808":13040,"1809":12861,"1810":11786,"1811":13086,"1812":9842,"1813":12169,"1814":10977,"1815":10679,"1816":12357,"1817":12529,"1818":12094,"1819":12552,"1820":11102,"1821":11723,"1822":12307,"1823":12522,"1824":11617,"1825":11384,"1826":11931,"1827":12309,"1828":11517,"1829":11523,"1830":9500,"1831":10937,"1832":10212,"1833":11040,"1834":10700,"1835":10150,"1836":10081,"1837":9713,"1838":9931,"1839":10011,"1840":8905,"1841":9840,"1842":10008,"1843":10075,"1844":9730,"1845":9512,"1846":9244,"1847":9176,"1848":7993,"1849":9037,"1850":7973,"1851":8792,"1852":8784,"1853":8933,"1854":8421,"1855":8492,"1856":8708,"1857":8204,"1858":8517,"1859":8165,"1860":7313,"1861":6863,"1862":6889,"1863":6899,"1864":6717,"1865":6725,"1866":7647,"1867":7517,"1868":7582,"1869":7845,"1870":6940,"1871":7428,"1872":7572,"1873":7612,"1874":7586,"1875":7466,"1876":7326,"1877":7557,"1878":7261,"1879":7449,"1880":6756,"1881":7005,"1882":7131,"1883":7257,"1884":6988,"1885":6571,"1886":6929,"1887":6837,"1888":6690,"1889":6478,"1890":6193,"1891":6607,"1892":6527,"1893":6489,"1894":6539,"1895":6301,"1896":6306,"1897":6347,"1898":6068,"1899":6166,"1900":5141,"1901":5775,"1902":5774,"1903":5778,"1904":5692,"1905":5497,"1906":5518,"1907":5528,"1908":5316,"1909":5556,"1910":4976,"1911":5184,"1912":4878,"1913":5124,"1914":4554,"1915":4936,"1916":4947,"1917":4585,"1918":4271,"1919":4529,"1920":4444,"1921":4885,"1922":4798,"1923":4927,"1924":4814,"1925":4849,"1926":4881,"1927":4764,"1928":4662,"1929":4612,"1930":4479,"1931":4739,"1932":4673,"1933":4537,"1934":4579,"1935":4437,"1936":4266,"1937":4347,"1938":4260,"1939":3912,"1940":3878,"1941":3874,"1942":3758,"1943":3826,"1944":3646,"1945":3386,"1946":3918,"1947":4006,"1948":3882,"1949":4085,"1950":3925,"1951":4131,"1952":3999,"1953":4052,"1954":4051,"1955":3982,"1956":3838,"1957":3890,"1958":3845,"1959":3851,"1960":3624,"1961":3777,"1962":3705,"1963":3699,"1964":3546,"1965":3551,"1966":3547,"1967":3476,"1968":3380,"1969":3440,"1970":3359,"1971":3411,"1972":3285,"1973":3381,"1974":3326,"1975":3339,"1976":3299,"1977":3355,"1978":3301,"1979":3245,"1980":3150,"1981":3261,"1982":3196,"1983":3172,"1984":3118,"1985":3106,"1986":3069,"1987":3055,"1988":2997,"1989":2960,"1990":2901,"1991":2889,"1992":2826,"1993":2857,"1994":2807,"1995":2786,"1996":2727,"1997":2722,"1998":2687,"1999":2639,"2000":2456,"2001":2541,"2002":2526,"2003":2494,"2004":2432,"2005":2384,"2006":2294,"2007":2289,"2008":2263,"2009":2268,"2010":2230,"2011":2249,"2012":2262,"2013":2286,"2014":2297,"2015":2325,"2016":2355,"2017":2418,"2018":2760,"2019":10476,"2020":12609,"2021":25682,"2500":25108,"3000":11910,"4000":20143,"5000":13509,"6000":25961,"[PAD]":0,"[unused0]":1,"[unused1]":2,"[unused2]":3,"[unused3]":4,"[unused4]":5,"[unused5]":6,"[unused6]":7,"[unused7]":8,"[unused8]":9,"[unused9]":10,"[unused10]":11,"[unused11]":12,"[unused12]":13,"[unused13]":14,"[unused14]":15,"[unused15]":16,"[unused16]":17,"[unused17]":18,"[unused18]":19,"[unused19]":20,"[unused20]":21,"[unused21]":22,"[unused22]":23,"[unused23]":24,"[unused24]":25,"[unused25]":26,"[unused26]":27,"[unused27]":28,"[unused28]":29,"[unused29]":30,"[unused30]":31,"[unused31]":32,"[unused32]":33,"[unused33]":34,"[unused34]":35,"[unused35]":36,"[unused36]":37,"[unused37]":38,"[unused38]":39,"[unused39]":40,"[unused40]":41,"[unused41]":42,"[unused42]":43,"[unused43]":44,"[unused44]":45,"[unused45]":46,"[unused46]":47,"[unused47]":48,"[unused48]":49,"[unused49]":50,"[unused50]":51,"[unused51]":52,"[unused52]":53,"[unused53]":54,"[unused54]":55,"[unused55]":56,"[unused56]":57,"[unused57]":58,"[unused58]":59,"[unused59]":60,"[unused60]":61,"[unused61]":62,"[unused62]":63,"[unused63]":64,"[unused64]":65,"[unused65]":66,"[unused66]":67,"[unused67]":68,"[unused68]":69,"[unused69]":70,"[unused70]":71,"[unused71]":72,"[unused72]":73,"[unused73]":74,"[unused74]":75,"[unused75]":76,"[unused76]":77,"[unused77]":78,"[unused78]":79,"[unused79]":80,"[unused80]":81,"[unused81]":82,"[unused82]":83,"[unused83]":84,"[unused84]":85,"[unused85]":86,"[unused86]":87,"[unused87]":88,"[unused88]":89,"[unused89]":90,"[unused90]":91,"[unused91]":92,"[unused92]":93,"[unused93]":94,"[unused94]":95,"[unused95]":96,"[unused96]":97,"[unused97]":98,"[unused98]":99,"[UNK]":100,"[CLS]":101,"[SEP]":102,"[MASK]":103,"[unused99]":104,"[unused100]":105,"[unused101]":106,"[unused102]":107,"[unused103]":108,"[unused104]":109,"[unused105]":110,"[unused106]":111,"[unused107]":112,"[unused108]":113,"[unused109]":114,"[unused110]":115,"[unused111]":116,"[unused112]":117,"[unused113]":118,"[unused114]":119,"[unused115]":120,"[unused116]":121,"[unused117]":122,"[unused118]":123,"[unused119]":124,"[unused120]":125,"[unused121]":126,"[unused122]":127,"[unused123]":128,"[unused124]":129,"[unused125]":130,"[unused126]":131,"[unused127]":132,"[unused128]":133,"[unused129]":134,"[unused130]":135,"[unused131]":136,"[unused132]":137,"[unused133]":138,"[unused134]":139,"[unused135]":140,"[unused136]":141,"[unused137]":142,"[unused138]":143,"[unused139]":144,"[unused140]":145,"[unused141]":146,"[unused142]":147,"[unused143]":148,"[unused144]":149,"[unused145]":150,"[unused146]":151,"[unused147]":152,"[unused148]":153,"[unused149]":154,"[unused150]":155,"[unused151]":156,"[unused152]":157,"[unused153]":158,"[unused154]":159,"[unused155]":160,"[unused156]":161,"[unused157]":162,"[unused158]":163,"[unused159]":164,"[unused160]":165,"[unused161]":166,"[unused162]":167,"[unused163]":168,"[unused164]":169,"[unused165]":170,"[unused166]":171,"[unused167]":172,"[unused168]":173,"[unused169]":174,"[unused170]":175,"[unused171]":176,"[unused172]":177,"[unused173]":178,"[unused174]":179,"[unused175]":180,"[unused176]":181,"[unused177]":182,"[unused178]":183,"[unused179]":184,"[unused180]":185,"[unused181]":186,"[unused182]":187,"[unused183]":188,"[unused184]":189,"[unused185]":190,"[unused186]":191,"[unused187]":192,"[unused188]":193,"[unused189]":194,"[unused190]":195,"[unused191]":196,"[unused192]":197,"[unused193]":198,"[unused194]":199,"[unused195]":200,"[unused196]":201,"[unused197]":202,"[unused198]":203,"[unused199]":204,"[unused200]":205,"[unused201]":206,"[unused202]":207,"[unused203]":208,"[unused204]":209,"[unused205]":210,"[unused206]":211,"[unused207]":212,"[unused208]":213,"[unused209]":214,"[unused210]":215,"[unused211]":216,"[unused212]":217,"[unused213]":218,"[unused214]":219,"[unused215]":220,"[unused216]":221,"[unused217]":222,"[unused218]":223,"[unused219]":224,"[unused220]":225,"[unused221]":226,"[unused222]":227,"[unused223]":228,"[unused224]":229,"[unused225]":230,"[unused226]":231,"[unused227]":232,"[unused228]":233,"[unused229]":234,"[unused230]":235,"[unused231]":236,"[unused232]":237,"[unused233]":238,"[unused234]":239,"[unused235]":240,"[unused236]":241,"[unused237]":242,"[unused238]":243,"[unused239]":244,"[unused240]":245,"[unused241]":246,"[unused242]":247,"[unused243]":248,"[unused244]":249,"[unused245]":250,"[unused246]":251,"[unused247]":252,"[unused248]":253,"[unused249]":254,"[unused250]":255,"[unused251]":256,"[unused252]":257,"[unused253]":258,"[unused254]":259,"[unused255]":260,"[unused256]":261,"[unused257]":262,"[unused258]":263,"[unused259]":264,"[unused260]":265,"[unused261]":266,"[unused262]":267,"[unused263]":268,"[unused264]":269,"[unused265]":270,"[unused266]":271,"[unused267]":272,"[unused268]":273,"[unused269]":274,"[unused270]":275,"[unused271]":276,"[unused272]":277,"[unused273]":278,"[unused274]":279,"[unused275]":280,"[unused276]":281,"[unused277]":282,"[unused278]":283,"[unused279]":284,"[unused280]":285,"[unused281]":286,"[unused282]":287,"[unused283]":288,"[unused284]":289,"[unused285]":290,"[unused286]":291,"[unused287]":292,"[unused288]":293,"[unused289]":294,"[unused290]":295,"[unused291]":296,"[unused292]":297,"[unused293]":298,"[unused294]":299,"[unused295]":300,"[unused296]":301,"[unused297]":302,"[unused298]":303,"[unused299]":304,"[unused300]":305,"[unused301]":306,"[unused302]":307,"[unused303]":308,"[unused304]":309,"[unused305]":310,"[unused306]":311,"[unused307]":312,"[unused308]":313,"[unused309]":314,"[unused310]":315,"[unused311]":316,"[unused312]":317,"[unused313]":318,"[unused314]":319,"[unused315]":320,"[unused316]":321,"[unused317]":322,"[unused318]":323,"[unused319]":324,"[unused320]":325,"[unused321]":326,"[unused322]":327,"[unused323]":328,"[unused324]":329,"[unused325]":330,"[unused326]":331,"[unused327]":332,"[unused328]":333,"[unused329]":334,"[unused330]":335,"[unused331]":336,"[unused332]":337,"[unused333]":338,"[unused334]":339,"[unused335]":340,"[unused336]":341,"[unused337]":342,"[unused338]":343,"[unused339]":344,"[unused340]":345,"[unused341]":346,"[unused342]":347,"[unused343]":348,"[unused344]":349,"[unused345]":350,"[unused346]":351,"[unused347]":352,"[unused348]":353,"[unused349]":354,"[unused350]":355,"[unused351]":356,"[unused352]":357,"[unused353]":358,"[unused354]":359,"[unused355]":360,"[unused356]":361,"[unused357]":362,"[unused358]":363,"[unused359]":364,"[unused360]":365,"[unused361]":366,"[unused362]":367,"[unused363]":368,"[unused364]":369,"[unused365]":370,"[unused366]":371,"[unused367]":372,"[unused368]":373,"[unused369]":374,"[unused370]":375,"[unused371]":376,"[unused372]":377,"[unused373]":378,"[unused374]":379,"[unused375]":380,"[unused376]":381,"[unused377]":382,"[unused378]":383,"[unused379]":384,"[unused380]":385,"[unused381]":386,"[unused382]":387,"[unused383]":388,"[unused384]":389,"[unused385]":390,"[unused386]":391,"[unused387]":392,"[unused388]":393,"[unused389]":394,"[unused390]":395,"[unused391]":396,"[unused392]":397,"[unused393]":398,"[unused394]":399,"[unused395]":400,"[unused396]":401,"[unused397]":402,"[unused398]":403,"[unused399]":404,"[unused400]":405,"[unused401]":406,"[unused402]":407,"[unused403]":408,"[unused404]":409,"[unused405]":410,"[unused406]":411,"[unused407]":412,"[unused408]":413,"[unused409]":414,"[unused410]":415,"[unused411]":416,"[unused412]":417,"[unused413]":418,"[unused414]":419,"[unused415]":420,"[unused416]":421,"[unused417]":422,"[unused418]":423,"[unused419]":424,"[unused420]":425,"[unused421]":426,"[unused422]":427,"[unused423]":428,"[unused424]":429,"[unused425]":430,"[unused426]":431,"[unused427]":432,"[unused428]":433,"[unused429]":434,"[unused430]":435,"[unused431]":436,"[unused432]":437,"[unused433]":438,"[unused434]":439,"[unused435]":440,"[unused436]":441,"[unused437]":442,"[unused438]":443,"[unused439]":444,"[unused440]":445,"[unused441]":446,"[unused442]":447,"[unused443]":448,"[unused444]":449,"[unused445]":450,"[unused446]":451,"[unused447]":452,"[unused448]":453,"[unused449]":454,"[unused450]":455,"[unused451]":456,"[unused452]":457,"[unused453]":458,"[unused454]":459,"[unused455]":460,"[unused456]":461,"[unused457]":462,"[unused458]":463,"[unused459]":464,"[unused460]":465,"[unused461]":466,"[unused462]":467,"[unused463]":468,"[unused464]":469,"[unused465]":470,"[unused466]":471,"[unused467]":472,"[unused468]":473,"[unused469]":474,"[unused470]":475,"[unused471]":476,"[unused472]":477,"[unused473]":478,"[unused474]":479,"[unused475]":480,"[unused476]":481,"[unused477]":482,"[unused478]":483,"[unused479]":484,"[unused480]":485,"[unused481]":486,"[unused482]":487,"[unused483]":488,"[unused484]":489,"[unused485]":490,"[unused486]":491,"[unused487]":492,"[unused488]":493,"[unused489]":494,"[unused490]":495,"[unused491]":496,"[unused492]":497,"[unused493]":498,"[unused494]":499,"[unused495]":500,"[unused496]":501,"[unused497]":502,"[unused498]":503,"[unused499]":504,"[unused500]":505,"[unused501]":506,"[unused502]":507,"[unused503]":508,"[unused504]":509,"[unused505]":510,"[unused506]":511,"[unused507]":512,"[unused508]":513,"[unused509]":514,"[unused510]":515,"[unused511]":516,"[unused512]":517,"[unused513]":518,"[unused514]":519,"[unused515]":520,"[unused516]":521,"[unused517]":522,"[unused518]":523,"[unused519]":524,"[unused520]":525,"[unused521]":526,"[unused522]":527,"[unused523]":528,"[unused524]":529,"[unused525]":530,"[unused526]":531,"[unused527]":532,"[unused528]":533,"[unused529]":534,"[unused530]":535,"[unused531]":536,"[unused532]":537,"[unused533]":538,"[unused534]":539,"[unused535]":540,"[unused536]":541,"[unused537]":542,"[unused538]":543,"[unused539]":544,"[unused540]":545,"[unused541]":546,"[unused542]":547,"[unused543]":548,"[unused544]":549,"[unused545]":550,"[unused546]":551,"[unused547]":552,"[unused548]":553,"[unused549]":554,"[unused550]":555,"[unused551]":556,"[unused552]":557,"[unused553]":558,"[unused554]":559,"[unused555]":560,"[unused556]":561,"[unused557]":562,"[unused558]":563,"[unused559]":564,"[unused560]":565,"[unused561]":566,"[unused562]":567,"[unused563]":568,"[unused564]":569,"[unused565]":570,"[unused566]":571,"[unused567]":572,"[unused568]":573,"[unused569]":574,"[unused570]":575,"[unused571]":576,"[unused572]":577,"[unused573]":578,"[unused574]":579,"[unused575]":580,"[unused576]":581,"[unused577]":582,"[unused578]":583,"[unused579]":584,"[unused580]":585,"[unused581]":586,"[unused582]":587,"[unused583]":588,"[unused584]":589,"[unused585]":590,"[unused586]":591,"[unused587]":592,"[unused588]":593,"[unused589]":594,"[unused590]":595,"[unused591]":596,"[unused592]":597,"[unused593]":598,"[unused594]":599,"[unused595]":600,"[unused596]":601,"[unused597]":602,"[unused598]":603,"[unused599]":604,"[unused600]":605,"[unused601]":606,"[unused602]":607,"[unused603]":608,"[unused604]":609,"[unused605]":610,"[unused606]":611,"[unused607]":612,"[unused608]":613,"[unused609]":614,"[unused610]":615,"[unused611]":616,"[unused612]":617,"[unused613]":618,"[unused614]":619,"[unused615]":620,"[unused616]":621,"[unused617]":622,"[unused618]":623,"[unused619]":624,"[unused620]":625,"[unused621]":626,"[unused622]":627,"[unused623]":628,"[unused624]":629,"[unused625]":630,"[unused626]":631,"[unused627]":632,"[unused628]":633,"[unused629]":634,"[unused630]":635,"[unused631]":636,"[unused632]":637,"[unused633]":638,"[unused634]":639,"[unused635]":640,"[unused636]":641,"[unused637]":642,"[unused638]":643,"[unused639]":644,"[unused640]":645,"[unused641]":646,"[unused642]":647,"[unused643]":648,"[unused644]":649,"[unused645]":650,"[unused646]":651,"[unused647]":652,"[unused648]":653,"[unused649]":654,"[unused650]":655,"[unused651]":656,"[unused652]":657,"[unused653]":658,"[unused654]":659,"[unused655]":660,"[unused656]":661,"[unused657]":662,"[unused658]":663,"[unused659]":664,"[unused660]":665,"[unused661]":666,"[unused662]":667,"[unused663]":668,"[unused664]":669,"[unused665]":670,"[unused666]":671,"[unused667]":672,"[unused668]":673,"[unused669]":674,"[unused670]":675,"[unused671]":676,"[unused672]":677,"[unused673]":678,"[unused674]":679,"[unused675]":680,"[unused676]":681,"[unused677]":682,"[unused678]":683,"[unused679]":684,"[unused680]":685,"[unused681]":686,"[unused682]":687,"[unused683]":688,"[unused684]":689,"[unused685]":690,"[unused686]":691,"[unused687]":692,"[unused688]":693,"[unused689]":694,"[unused690]":695,"[unused691]":696,"[unused692]":697,"[unused693]":698,"[unused694]":699,"[unused695]":700,"[unused696]":701,"[unused697]":702,"[unused698]":703,"[unused699]":704,"[unused700]":705,"[unused701]":706,"[unused702]":707,"[unused703]":708,"[unused704]":709,"[unused705]":710,"[unused706]":711,"[unused707]":712,"[unused708]":713,"[unused709]":714,"[unused710]":715,"[unused711]":716,"[unused712]":717,"[unused713]":718,"[unused714]":719,"[unused715]":720,"[unused716]":721,"[unused717]":722,"[unused718]":723,"[unused719]":724,"[unused720]":725,"[unused721]":726,"[unused722]":727,"[unused723]":728,"[unused724]":729,"[unused725]":730,"[unused726]":731,"[unused727]":732,"[unused728]":733,"[unused729]":734,"[unused730]":735,"[unused731]":736,"[unused732]":737,"[unused733]":738,"[unused734]":739,"[unused735]":740,"[unused736]":741,"[unused737]":742,"[unused738]":743,"[unused739]":744,"[unused740]":745,"[unused741]":746,"[unused742]":747,"[unused743]":748,"[unused744]":749,"[unused745]":750,"[unused746]":751,"[unused747]":752,"[unused748]":753,"[unused749]":754,"[unused750]":755,"[unused751]":756,"[unused752]":757,"[unused753]":758,"[unused754]":759,"[unused755]":760,"[unused756]":761,"[unused757]":762,"[unused758]":763,"[unused759]":764,"[unused760]":765,"[unused761]":766,"[unused762]":767,"[unused763]":768,"[unused764]":769,"[unused765]":770,"[unused766]":771,"[unused767]":772,"[unused768]":773,"[unused769]":774,"[unused770]":775,"[unused771]":776,"[unused772]":777,"[unused773]":778,"[unused774]":779,"[unused775]":780,"[unused776]":781,"[unused777]":782,"[unused778]":783,"[unused779]":784,"[unused780]":785,"[unused781]":786,"[unused782]":787,"[unused783]":788,"[unused784]":789,"[unused785]":790,"[unused786]":791,"[unused787]":792,"[unused788]":793,"[unused789]":794,"[unused790]":795,"[unused791]":796,"[unused792]":797,"[unused793]":798,"[unused794]":799,"[unused795]":800,"[unused796]":801,"[unused797]":802,"[unused798]":803,"[unused799]":804,"[unused800]":805,"[unused801]":806,"[unused802]":807,"[unused803]":808,"[unused804]":809,"[unused805]":810,"[unused806]":811,"[unused807]":812,"[unused808]":813,"[unused809]":814,"[unused810]":815,"[unused811]":816,"[unused812]":817,"[unused813]":818,"[unused814]":819,"[unused815]":820,"[unused816]":821,"[unused817]":822,"[unused818]":823,"[unused819]":824,"[unused820]":825,"[unused821]":826,"[unused822]":827,"[unused823]":828,"[unused824]":829,"[unused825]":830,"[unused826]":831,"[unused827]":832,"[unused828]":833,"[unused829]":834,"[unused830]":835,"[unused831]":836,"[unused832]":837,"[unused833]":838,"[unused834]":839,"[unused835]":840,"[unused836]":841,"[unused837]":842,"[unused838]":843,"[unused839]":844,"[unused840]":845,"[unused841]":846,"[unused842]":847,"[unused843]":848,"[unused844]":849,"[unused845]":850,"[unused846]":851,"[unused847]":852,"[unused848]":853,"[unused849]":854,"[unused850]":855,"[unused851]":856,"[unused852]":857,"[unused853]":858,"[unused854]":859,"[unused855]":860,"[unused856]":861,"[unused857]":862,"[unused858]":863,"[unused859]":864,"[unused860]":865,"[unused861]":866,"[unused862]":867,"[unused863]":868,"[unused864]":869,"[unused865]":870,"[unused866]":871,"[unused867]":872,"[unused868]":873,"[unused869]":874,"[unused870]":875,"[unused871]":876,"[unused872]":877,"[unused873]":878,"[unused874]":879,"[unused875]":880,"[unused876]":881,"[unused877]":882,"[unused878]":883,"[unused879]":884,"[unused880]":885,"[unused881]":886,"[unused882]":887,"[unused883]":888,"[unused884]":889,"[unused885]":890,"[unused886]":891,"[unused887]":892,"[unused888]":893,"[unused889]":894,"[unused890]":895,"[unused891]":896,"[unused892]":897,"[unused893]":898,"[unused894]":899,"[unused895]":900,"[unused896]":901,"[unused897]":902,"[unused898]":903,"[unused899]":904,"[unused900]":905,"[unused901]":906,"[unused902]":907,"[unused903]":908,"[unused904]":909,"[unused905]":910,"[unused906]":911,"[unused907]":912,"[unused908]":913,"[unused909]":914,"[unused910]":915,"[unused911]":916,"[unused912]":917,"[unused913]":918,"[unused914]":919,"[unused915]":920,"[unused916]":921,"[unused917]":922,"[unused918]":923,"[unused919]":924,"[unused920]":925,"[unused921]":926,"[unused922]":927,"[unused923]":928,"[unused924]":929,"[unused925]":930,"[unused926]":931,"[unused927]":932,"[unused928]":933,"[unused929]":934,"[unused930]":935,"[unused931]":936,"[unused932]":937,"[unused933]":938,"[unused934]":939,"[unused935]":940,"[unused936]":941,"[unused937]":942,"[unused938]":943,"[unused939]":944,"[unused940]":945,"[unused941]":946,"[unused942]":947,"[unused943]":948,"[unused944]":949,"[unused945]":950,"[unused946]":951,"[unused947]":952,"[unused948]":953,"[unused949]":954,"[unused950]":955,"[unused951]":956,"[unused952]":957,"[unused953]":958,"[unused954]":959,"[unused955]":960,"[unused956]":961,"[unused957]":962,"[unused958]":963,"[unused959]":964,"[unused960]":965,"[unused961]":966,"[unused962]":967,"[unused963]":968,"[unused964]":969,"[unused965]":970,"[unused966]":971,"[unused967]":972,"[unused968]":973,"[unused969]":974,"[unused970]":975,"[unused971]":976,"[unused972]":977,"[unused973]":978,"[unused974]":979,"[unused975]":980,"[unused976]":981,"[unused977]":982,"[unused978]":983,"[unused979]":984,"[unused980]":985,"[unused981]":986,"[unused982]":987,"[unused983]":988,"[unused984]":989,"[unused985]":990,"[unused986]":991,"[unused987]":992,"[unused988]":993,"[unused989]":994,"[unused990]":995,"[unused991]":996,"[unused992]":997,"[unused993]":998,"!":999,"\"":1000,"#":1001,"$":1002,"%":1003,"&":1004,"'":1005,"(":1006,")":1007,"*":1008,"+":1009,",":1010,"-":1011,".":1012,"/":1013,":":1024,";":1025,"<":1026,"=":1027,">":1028,"?":1029,"@":1030,"[":1031,"\\":1032,"]":1033,"^":1034,"_":1035,"`":1036,"a":1037,"b":1038,"c":1039,"d":1040,"e":1041,"f":1042,"g":1043,"h":1044,"i":1045,"j":1046,"k":1047,"l":1048,"m":1049,"n":1050,"o":1051,"p":1052,"q":1053,"r":1054,"s":1055,"t":1056,"u":1057,"v":1058,"w":1059,"x":1060,"y":1061,"z":1062,"{":1063,"|":1064,"}":1065,"~":1066,"¡":1067,"¢":1068,"£":1069,"¤":1070,"¥":1071,"¦":1072,"§":1073,"¨":1074,"©":1075,"ª":1076,"«":1077,"¬":1078,"®":1079,"°":1080,"±":1081,"²":1082,"³":1083,"´":1084,"µ":1085,"¶":1086,"·":1087,"¹":1088,"º":1089,"»":1090,"¼":1091,"½":1092,"¾":1093,"¿":1094,"×":1095,"ß":1096,"æ":1097,"ð":1098,"÷":1099,"ø":1100,"þ":1101,"đ":1102,"ħ":1103,"ı":1104,"ł":1105,"ŋ":1106,"œ":1107,"ƒ":1108,"ɐ":1109,"ɑ":1110,"ɒ":1111,"ɔ":1112,"ɕ":1113,"ə":1114,"ɛ":1115,"ɡ":1116,"ɣ":1117,"ɨ":1118,"ɪ":1119,"ɫ":1120,"ɬ":1121,"ɯ":1122,"ɲ":1123,"ɴ":1124,"ɹ":1125,"ɾ":1126,"ʀ":1127,"ʁ":1128,"ʂ":1129,"ʃ":1130,"ʉ":1131,"ʊ":1132,"ʋ":1133,"ʌ":1134,"ʎ":1135,"ʐ":1136,"ʑ":1137,"ʒ":1138,"ʔ":1139,"ʰ":1140,"ʲ":1141,"ʳ":1142,"ʷ":1143,"ʸ":1144,"ʻ":1145,"ʼ":1146,"ʾ":1147,"ʿ":1148,"ˈ":1149,"ː":1150,"ˡ":1151,"ˢ":1152,"ˣ":1153,"ˤ":1154,"α":1155,"β":1156,"γ":1157,"δ":1158,"ε":1159,"ζ":1160,"η":1161,"θ":1162,"ι":1163,"κ":1164,"λ":1165,"μ":1166,"ν":1167,"ξ":1168,"ο":1169,"π":1170,"ρ":1171,"ς":1172,"σ":1173,"τ":1174,"υ":1175,"φ":1176,"χ":1177,"ψ":1178,"ω":1179,"а":1180,"б":1181,"в":1182,"г":1183,"д":1184,"е":1185,"ж":1186,"з":1187,"и":1188,"к":1189,"л":1190,"м":1191,"н":1192,"о":1193,"п":1194,"р":1195,"с":1196,"т":1197,"у":1198,"ф":1199,"х":1200,"ц":1201,"ч":1202,"ш":1203,"щ":1204,"ъ":1205,"ы":1206,"ь":1207,"э":1208,"ю":1209,"я":1210,"ђ":1211,"є":1212,"і":1213,"ј":1214,"љ":1215,"њ":1216,"ћ":1217,"ӏ":1218,"ա":1219,"բ":1220,"գ":1221,"դ":1222,"ե":1223,"թ":1224,"ի":1225,"լ":1226,"կ":1227,"հ":1228,"մ":1229,"յ":1230,"ն":1231,"ո":1232,"պ":1233,"ս":1234,"վ":1235,"տ":1236,"ր":1237,"ւ":1238,"ք":1239,"־":1240,"א":1241,"ב":1242,"ג":1243,"ד":1244,"ה":1245,"ו":1246,"ז":1247,"ח":1248,"ט":1249,"י":1250,"ך":1251,"כ":1252,"ל":1253,"ם":1254,"מ":1255,"ן":1256,"נ":1257,"ס":1258,"ע":1259,"ף":1260,"פ":1261,"ץ":1262,"צ":1263,"ק":1264,"ר":1265,"ש":1266,"ת":1267,"،":1268,"ء":1269,"ا":1270,"ب":1271,"ة":1272,"ت":1273,"ث":1274,"ج":1275,"ح":1276,"خ":1277,"د":1278,"ذ":1279,"ر":1280,"ز":1281,"س":1282,"ش":1283,"ص":1284,"ض":1285,"ط":1286,"ظ":1287,"ع":1288,"غ":1289,"ـ":1290,"ف":1291,"ق":1292,"ك":1293,"ل":1294,"م":1295,"ن":1296,"ه":1297,"و":1298,"ى":1299,"ي":1300,"ٹ":1301,"پ":1302,"چ":1303,"ک":1304,"گ":1305,"ں":1306,"ھ":1307,"ہ":1308,"ی":1309,"ے":1310,"अ":1311,"आ":1312,"उ":1313,"ए":1314,"क":1315,"ख":1316,"ग":1317,"च":1318,"ज":1319,"ट":1320,"ड":1321,"ण":1322,"त":1323,"थ":1324,"द":1325,"ध":1326,"न":1327,"प":1328,"ब":1329,"भ":1330,"म":1331,"य":1332,"र":1333,"ल":1334,"व":1335,"श":1336,"ष":1337,"स":1338,"ह":1339,"ा":1340,"ि":1341,"ी":1342,"ो":1343,"।":1344,"॥":1345,"ং":1346,"অ":1347,"আ":1348,"ই":1349,"উ":1350,"এ":1351,"ও":1352,"ক":1353,"খ":1354,"গ":1355,"চ":1356,"ছ":1357,"জ":1358,"ট":1359,"ড":1360,"ণ":1361,"ত":1362,"থ":1363,"দ":1364,"ধ":1365,"ন":1366,"প":1367,"ব":1368,"ভ":1369,"ম":1370,"য":1371,"র":1372,"ল":1373,"শ":1374,"ষ":1375,"স":1376,"হ":1377,"া":1378,"ি":1379,"ী":1380,"ে":1381,"க":1382,"ச":1383,"ட":1384,"த":1385,"ந":1386,"ன":1387,"ப":1388,"ம":1389,"ய":1390,"ர":1391,"ல":1392,"ள":1393,"வ":1394,"ா":1395,"ி":1396,"ு":1397,"ே":1398,"ை":1399,"ನ":1400,"ರ":1401,"ಾ":1402,"ක":1403,"ය":1404,"ර":1405,"ල":1406,"ව":1407,"ා":1408,"ก":1409,"ง":1410,"ต":1411,"ท":1412,"น":1413,"พ":1414,"ม":1415,"ย":1416,"ร":1417,"ล":1418,"ว":1419,"ส":1420,"อ":1421,"า":1422,"เ":1423,"་":1424,"།":1425,"ག":1426,"ང":1427,"ད":1428,"ན":1429,"པ":1430,"བ":1431,"མ":1432,"འ":1433,"ར":1434,"ལ":1435,"ས":1436,"မ":1437,"ა":1438,"ბ":1439,"გ":1440,"დ":1441,"ე":1442,"ვ":1443,"თ":1444,"ი":1445,"კ":1446,"ლ":1447,"მ":1448,"ნ":1449,"ო":1450,"რ":1451,"ს":1452,"ტ":1453,"უ":1454,"ᄀ":1455,"ᄂ":1456,"ᄃ":1457,"ᄅ":1458,"ᄆ":1459,"ᄇ":1460,"ᄉ":1461,"ᄊ":1462,"ᄋ":1463,"ᄌ":1464,"ᄎ":1465,"ᄏ":1466,"ᄐ":1467,"ᄑ":1468,"ᄒ":1469,"ᅡ":1470,"ᅢ":1471,"ᅥ":1472,"ᅦ":1473,"ᅧ":1474,"ᅩ":1475,"ᅪ":1476,"ᅭ":1477,"ᅮ":1478,"ᅯ":1479,"ᅲ":1480,"ᅳ":1481,"ᅴ":1482,"ᅵ":1483,"ᆨ":1484,"ᆫ":1485,"ᆯ":1486,"ᆷ":1487,"ᆸ":1488,"ᆼ":1489,"ᴬ":1490,"ᴮ":1491,"ᴰ":1492,"ᴵ":1493,"ᴺ":1494,"ᵀ":1495,"ᵃ":1496,"ᵇ":1497,"ᵈ":1498,"ᵉ":1499,"ᵍ":1500,"ᵏ":1501,"ᵐ":1502,"ᵒ":1503,"ᵖ":1504,"ᵗ":1505,"ᵘ":1506,"ᵢ":1507,"ᵣ":1508,"ᵤ":1509,"ᵥ":1510,"ᶜ":1511,"ᶠ":1512,"‐":1513,"‑":1514,"‒":1515,"–":1516,"—":1517,"―":1518,"‖":1519,"‘":1520,"’":1521,"‚":1522,"“":1523,"”":1524,"„":1525,"†":1526,"‡":1527,"•":1528,"…":1529,"‰":1530,"′":1531,"″":1532,"›":1533,"‿":1534,"⁄":1535,"⁰":1536,"ⁱ":1537,"⁴":1538,"⁵":1539,"⁶":1540,"⁷":1541,"⁸":1542,"⁹":1543,"⁺":1544,"⁻":1545,"ⁿ":1546,"₀":1547,"₁":1548,"₂":1549,"₃":1550,"₄":1551,"₅":1552,"₆":1553,"₇":1554,"₈":1555,"₉":1556,"₊":1557,"₍":1558,"₎":1559,"ₐ":1560,"ₑ":1561,"ₒ":1562,"ₓ":1563,"ₕ":1564,"ₖ":1565,"ₗ":1566,"ₘ":1567,"ₙ":1568,"ₚ":1569,"ₛ":1570,"ₜ":1571,"₤":1572,"₩":1573,"€":1574,"₱":1575,"₹":1576,"ℓ":1577,"№":1578,"ℝ":1579,"™":1580,"⅓":1581,"⅔":1582,"←":1583,"↑":1584,"→":1585,"↓":1586,"↔":1587,"↦":1588,"⇄":1589,"⇌":1590,"⇒":1591,"∂":1592,"∅":1593,"∆":1594,"∇":1595,"∈":1596,"−":1597,"∗":1598,"∘":1599,"√":1600,"∞":1601,"∧":1602,"∨":1603,"∩":1604,"∪":1605,"≈":1606,"≡":1607,"≤":1608,"≥":1609,"⊂":1610,"⊆":1611,"⊕":1612,"⊗":1613,"⋅":1614,"─":1615,"│":1616,"■":1617,"▪":1618,"●":1619,"★":1620,"☆":1621,"☉":1622,"♠":1623,"♣":1624,"♥":1625,"♦":1626,"♭":1627,"♯":1628,"⟨":1629,"⟩":1630,"ⱼ":1631,"⺩":1632,"⺼":1633,"⽥":1634,"、":1635,"。":1636,"〈":1637,"〉":1638,"《":1639,"》":1640,"「":1641,"」":1642,"『":1643,"』":1644,"〜":1645,"あ":1646,"い":1647,"う":1648,"え":1649,"お":1650,"か":1651,"き":1652,"く":1653,"け":1654,"こ":1655,"さ":1656,"し":1657,"す":1658,"せ":1659,"そ":1660,"た":1661,"ち":1662,"っ":1663,"つ":1664,"て":1665,"と":1666,"な":1667,"に":1668,"ぬ":1669,"ね":1670,"の":1671,"は":1672,"ひ":1673,"ふ":1674,"へ":1675,"ほ":1676,"ま":1677,"み":1678,"む":1679,"め":1680,"も":1681,"や":1682,"ゆ":1683,"よ":1684,"ら":1685,"り":1686,"る":1687,"れ":1688,"ろ":1689,"を":1690,"ん":1691,"ァ":1692,"ア":1693,"ィ":1694,"イ":1695,"ウ":1696,"ェ":1697,"エ":1698,"オ":1699,"カ":1700,"キ":1701,"ク":1702,"ケ":1703,"コ":1704,"サ":1705,"シ":1706,"ス":1707,"セ":1708,"タ":1709,"チ":1710,"ッ":1711,"ツ":1712,"テ":1713,"ト":1714,"ナ":1715,"ニ":1716,"ノ":1717,"ハ":1718,"ヒ":1719,"フ":1720,"ヘ":1721,"ホ":1722,"マ":1723,"ミ":1724,"ム":1725,"メ":1726,"モ":1727,"ャ":1728,"ュ":1729,"ョ":1730,"ラ":1731,"リ":1732,"ル":1733,"レ":1734,"ロ":1735,"ワ":1736,"ン":1737,"・":1738,"ー":1739,"一":1740,"三":1741,"上":1742,"下":1743,"不":1744,"世":1745,"中":1746,"主":1747,"久":1748,"之":1749,"也":1750,"事":1751,"二":1752,"五":1753,"井":1754,"京":1755,"人":1756,"亻":1757,"仁":1758,"介":1759,"代":1760,"仮":1761,"伊":1762,"会":1763,"佐":1764,"侍":1765,"保":1766,"信":1767,"健":1768,"元":1769,"光":1770,"八":1771,"公":1772,"内":1773,"出":1774,"分":1775,"前":1776,"劉":1777,"力":1778,"加":1779,"勝":1780,"北":1781,"区":1782,"十":1783,"千":1784,"南":1785,"博":1786,"原":1787,"口":1788,"古":1789,"史":1790,"司":1791,"合":1792,"吉":1793,"同":1794,"名":1795,"和":1796,"囗":1797,"四":1798,"国":1799,"國":1800,"土":1801,"地":1802,"坂":1803,"城":1804,"堂":1805,"場":1806,"士":1807,"夏":1808,"外":1809,"大":1810,"天":1811,"太":1812,"夫":1813,"奈":1814,"女":1815,"子":1816,"学":1817,"宀":1818,"宇":1819,"安":1820,"宗":1821,"定":1822,"宣":1823,"宮":1824,"家":1825,"宿":1826,"寺":1827,"將":1828,"小":1829,"尚":1830,"山":1831,"岡":1832,"島":1833,"崎":1834,"川":1835,"州":1836,"巿":1837,"帝":1838,"平":1839,"年":1840,"幸":1841,"广":1842,"弘":1843,"張":1844,"彳":1845,"後":1846,"御":1847,"德":1848,"心":1849,"忄":1850,"志":1851,"忠":1852,"愛":1853,"成":1854,"我":1855,"戦":1856,"戸":1857,"手":1858,"扌":1859,"政":1860,"文":1861,"新":1862,"方":1863,"日":1864,"明":1865,"星":1866,"春":1867,"昭":1868,"智":1869,"曲":1870,"書":1871,"月":1872,"有":1873,"朝":1874,"木":1875,"本":1876,"李":1877,"村":1878,"東":1879,"松":1880,"林":1881,"森":1882,"楊":1883,"樹":1884,"橋":1885,"歌":1886,"止":1887,"正":1888,"武":1889,"比":1890,"氏":1891,"民":1892,"水":1893,"氵":1894,"氷":1895,"永":1896,"江":1897,"沢":1898,"河":1899,"治":1900,"法":1901,"海":1902,"清":1903,"漢":1904,"瀬":1905,"火":1906,"版":1907,"犬":1908,"王":1909,"生":1910,"田":1911,"男":1912,"疒":1913,"発":1914,"白":1915,"的":1916,"皇":1917,"目":1918,"相":1919,"省":1920,"真":1921,"石":1922,"示":1923,"社":1924,"神":1925,"福":1926,"禾":1927,"秀":1928,"秋":1929,"空":1930,"立":1931,"章":1932,"竹":1933,"糹":1934,"美":1935,"義":1936,"耳":1937,"良":1938,"艹":1939,"花":1940,"英":1941,"華":1942,"葉":1943,"藤":1944,"行":1945,"街":1946,"西":1947,"見":1948,"訁":1949,"語":1950,"谷":1951,"貝":1952,"貴":1953,"車":1954,"軍":1955,"辶":1956,"道":1957,"郎":1958,"郡":1959,"部":1960,"都":1961,"里":1962,"野":1963,"金":1964,"鈴":1965,"镇":1966,"長":1967,"門":1968,"間":1969,"阝":1970,"阿":1971,"陳":1972,"陽":1973,"雄":1974,"青":1975,"面":1976,"風":1977,"食":1978,"香":1979,"馬":1980,"高":1981,"龍":1982,"龸":1983,"fi":1984,"fl":1985,"!":1986,"(":1987,")":1988,",":1989,"-":1990,".":1991,"/":1992,":":1993,"?":1994,"~":1995,"the":1996,"of":1997,"and":1998,"in":1999,"to":2000,"was":2001,"he":2002,"is":2003,"as":2004,"for":2005,"on":2006,"with":2007,"that":2008,"it":2009,"his":2010,"by":2011,"at":2012,"from":2013,"her":2014,"##s":2015,"she":2016,"you":2017,"had":2018,"an":2019,"were":2020,"but":2021,"be":2022,"this":2023,"are":2024,"not":2025,"my":2026,"they":2027,"one":2028,"which":2029,"or":2030,"have":2031,"him":2032,"me":2033,"first":2034,"all":2035,"also":2036,"their":2037,"has":2038,"up":2039,"who":2040,"out":2041,"been":2042,"when":2043,"after":2044,"there":2045,"into":2046,"new":2047,"two":2048,"its":2049,"##a":2050,"time":2051,"would":2052,"no":2053,"what":2054,"about":2055,"said":2056,"we":2057,"over":2058,"then":2059,"other":2060,"so":2061,"more":2062,"##e":2063,"can":2064,"if":2065,"like":2066,"back":2067,"them":2068,"only":2069,"some":2070,"could":2071,"##i":2072,"where":2073,"just":2074,"##ing":2075,"during":2076,"before":2077,"##n":2078,"do":2079,"##o":2080,"made":2081,"school":2082,"through":2083,"than":2084,"now":2085,"years":2086,"most":2087,"world":2088,"may":2089,"between":2090,"down":2091,"well":2092,"three":2093,"##d":2094,"year":2095,"while":2096,"will":2097,"##ed":2098,"##r":2099,"##y":2100,"later":2101,"##t":2102,"city":2103,"under":2104,"around":2105,"did":2106,"such":2107,"being":2108,"used":2109,"state":2110,"people":2111,"part":2112,"know":2113,"against":2114,"your":2115,"many":2116,"second":2117,"university":2118,"both":2119,"national":2120,"##er":2121,"these":2122,"don":2123,"known":2124,"off":2125,"way":2126,"until":2127,"re":2128,"how":2129,"even":2130,"get":2131,"head":2132,"...":2133,"didn":2134,"##ly":2135,"team":2136,"american":2137,"because":2138,"de":2139,"##l":2140,"born":2141,"united":2142,"film":2143,"since":2144,"still":2145,"long":2146,"work":2147,"south":2148,"us":2149,"became":2150,"any":2151,"high":2152,"again":2153,"day":2154,"family":2155,"see":2156,"right":2157,"man":2158,"eyes":2159,"house":2160,"season":2161,"war":2162,"states":2163,"including":2164,"took":2165,"life":2166,"north":2167,"same":2168,"each":2169,"called":2170,"name":2171,"much":2172,"place":2173,"however":2174,"go":2175,"four":2176,"group":2177,"another":2178,"found":2179,"won":2180,"area":2181,"here":2182,"going":2183,"away":2185,"series":2186,"left":2187,"home":2188,"music":2189,"best":2190,"make":2191,"hand":2192,"number":2193,"company":2194,"several":2195,"never":2196,"last":2197,"john":2198,"000":2199,"very":2200,"album":2201,"take":2202,"end":2203,"good":2204,"too":2205,"following":2206,"released":2207,"game":2208,"played":2209,"little":2210,"began":2211,"district":2212,"##m":2213,"old":2214,"want":2215,"those":2216,"side":2217,"held":2218,"own":2219,"early":2220,"county":2221,"ll":2222,"league":2223,"use":2224,"west":2225,"##u":2226,"face":2227,"think":2228,"##es":2229,"government":2231,"##h":2232,"march":2233,"came":2234,"small":2235,"general":2236,"town":2237,"june":2238,"##on":2239,"line":2240,"based":2241,"something":2242,"##k":2243,"september":2244,"thought":2245,"looked":2246,"along":2247,"international":2248,"air":2250,"july":2251,"club":2252,"went":2253,"january":2254,"october":2255,"our":2256,"august":2257,"april":2258,"york":2259,"few":2261,"east":2264,"show":2265,"member":2266,"college":2267,"father":2269,"public":2270,"##us":2271,"come":2272,"men":2273,"five":2274,"set":2275,"station":2276,"church":2277,"##c":2278,"next":2279,"former":2280,"november":2281,"room":2282,"party":2283,"located":2284,"december":2285,"age":2287,"got":2288,"##g":2290,"system":2291,"let":2292,"love":2293,"though":2295,"every":2296,"look":2298,"song":2299,"water":2300,"century":2301,"without":2302,"body":2303,"black":2304,"night":2305,"within":2306,"great":2307,"women":2308,"single":2309,"ve":2310,"building":2311,"large":2312,"population":2313,"river":2314,"named":2315,"band":2316,"white":2317,"started":2318,"##an":2319,"once":2320,"should":2323,"service":2326,"top":2327,"built":2328,"british":2329,"open":2330,"death":2331,"king":2332,"moved":2333,"local":2334,"times":2335,"children":2336,"february":2337,"book":2338,"why":2339,"door":2341,"need":2342,"president":2343,"order":2344,"final":2345,"road":2346,"wasn":2347,"although":2348,"due":2349,"major":2350,"died":2351,"village":2352,"third":2353,"knew":2354,"asked":2356,"turned":2357,"st":2358,"wanted":2359,"say":2360,"##p":2361,"together":2362,"received":2363,"main":2364,"son":2365,"served":2366,"different":2367,"##en":2368,"behind":2369,"himself":2370,"felt":2371,"members":2372,"power":2373,"football":2374,"law":2375,"voice":2376,"play":2377,"##in":2378,"near":2379,"park":2380,"history":2381,"having":2383,"##man":2386,"saw":2387,"mother":2388,"##al":2389,"army":2390,"point":2391,"front":2392,"help":2393,"english":2394,"street":2395,"art":2396,"late":2397,"hands":2398,"games":2399,"award":2400,"##ia":2401,"young":2402,"put":2404,"published":2405,"country":2406,"division":2407,"across":2408,"told":2409,"often":2411,"ever":2412,"french":2413,"london":2414,"center":2415,"six":2416,"red":2417,"led":2419,"days":2420,"include":2421,"light":2422,"find":2424,"tell":2425,"among":2426,"species":2427,"really":2428,"according":2429,"central":2430,"half":2431,"form":2433,"original":2434,"gave":2435,"office":2436,"making":2437,"enough":2438,"lost":2439,"full":2440,"opened":2441,"must":2442,"included":2443,"live":2444,"given":2445,"german":2446,"player":2447,"run":2448,"business":2449,"woman":2450,"community":2451,"cup":2452,"might":2453,"million":2454,"land":2455,"court":2457,"development":2458,"short":2460,"round":2461,"ii":2462,"km":2463,"seen":2464,"class":2465,"story":2466,"always":2467,"become":2468,"sure":2469,"research":2470,"almost":2471,"director":2472,"council":2473,"la":2474,"##2":2475,"career":2476,"things":2477,"using":2478,"island":2479,"##z":2480,"couldn":2481,"car":2482,"##is":2483,"close":2485,"force":2486,"##1":2487,"better":2488,"free":2489,"support":2490,"control":2491,"field":2492,"students":2493,"education":2495,"married":2496,"##b":2497,"nothing":2498,"worked":2499,"others":2500,"record":2501,"big":2502,"inside":2503,"level":2504,"anything":2505,"continued":2506,"give":2507,"james":2508,"##3":2509,"military":2510,"established":2511,"non":2512,"returned":2513,"feel":2514,"does":2515,"title":2516,"written":2517,"thing":2518,"feet":2519,"william":2520,"far":2521,"co":2522,"association":2523,"hard":2524,"already":2525,"##ra":2527,"championship":2528,"human":2529,"western":2530,"##na":2532,"department":2533,"hall":2534,"role":2535,"various":2536,"production":2537,"heart":2540,"living":2542,"fire":2543,"version":2544,"##ers":2545,"##f":2546,"television":2547,"royal":2548,"##4":2549,"produced":2550,"working":2551,"act":2552,"case":2553,"society":2554,"region":2555,"present":2556,"radio":2557,"period":2558,"looking":2559,"least":2560,"total":2561,"keep":2562,"england":2563,"wife":2564,"program":2565,"per":2566,"brother":2567,"mind":2568,"special":2569,"##le":2571,"am":2572,"works":2573,"soon":2574,"##6":2575,"political":2576,"george":2577,"services":2578,"taken":2579,"created":2580,"##7":2581,"further":2582,"able":2583,"reached":2584,"david":2585,"union":2586,"joined":2587,"upon":2588,"done":2589,"important":2590,"social":2591,"information":2592,"either":2593,"##ic":2594,"##x":2595,"appeared":2596,"position":2597,"ground":2598,"lead":2599,"rock":2600,"dark":2601,"election":2602,"board":2604,"france":2605,"hair":2606,"course":2607,"arms":2608,"site":2609,"police":2610,"girl":2611,"instead":2612,"real":2613,"sound":2614,"##v":2615,"words":2616,"moment":2617,"##te":2618,"someone":2619,"##8":2620,"summer":2621,"project":2622,"announced":2623,"san":2624,"less":2625,"wrote":2626,"past":2627,"followed":2628,"##5":2629,"blue":2630,"founded":2631,"al":2632,"finally":2633,"india":2634,"taking":2635,"records":2636,"america":2637,"##ne":2638,"design":2640,"considered":2641,"northern":2642,"god":2643,"stop":2644,"battle":2645,"toward":2646,"european":2647,"outside":2648,"described":2649,"track":2650,"today":2651,"playing":2652,"language":2653,"call":2655,"heard":2657,"professional":2658,"low":2659,"australia":2660,"miles":2661,"california":2662,"win":2663,"yet":2664,"green":2665,"##ie":2666,"trying":2667,"blood":2668,"##ton":2669,"southern":2670,"science":2671,"maybe":2672,"everything":2673,"match":2674,"square":2675,"mouth":2677,"video":2678,"race":2679,"recorded":2680,"leave":2681,"above":2682,"##9":2683,"daughter":2684,"points":2685,"space":2686,"museum":2688,"change":2689,"middle":2690,"common":2691,"##0":2692,"move":2693,"tv":2694,"post":2695,"##ta":2696,"lake":2697,"seven":2698,"tried":2699,"elected":2700,"closed":2701,"ten":2702,"paul":2703,"minister":2704,"##th":2705,"months":2706,"start":2707,"chief":2708,"return":2709,"canada":2710,"person":2711,"sea":2712,"release":2713,"similar":2714,"modern":2715,"brought":2716,"rest":2717,"hit":2718,"formed":2719,"mr":2720,"##la":2721,"floor":2723,"event":2724,"doing":2725,"thomas":2726,"robert":2728,"care":2729,"killed":2730,"training":2731,"star":2732,"week":2733,"needed":2734,"turn":2735,"finished":2736,"railway":2737,"rather":2738,"news":2739,"health":2740,"sent":2741,"example":2742,"ran":2743,"term":2744,"michael":2745,"coming":2746,"currently":2747,"yes":2748,"forces":2749,"despite":2750,"gold":2751,"areas":2752,"stage":2754,"fact":2755,"dead":2757,"says":2758,"popular":2759,"originally":2761,"germany":2762,"probably":2763,"developed":2764,"result":2765,"pulled":2766,"friend":2767,"stood":2768,"money":2769,"running":2770,"mi":2771,"signed":2772,"word":2773,"songs":2774,"child":2775,"eventually":2776,"met":2777,"tour":2778,"average":2779,"teams":2780,"minutes":2781,"festival":2782,"current":2783,"deep":2784,"kind":2785,"decided":2787,"usually":2788,"eastern":2789,"seemed":2790,"##ness":2791,"episode":2792,"bed":2793,"added":2794,"table":2795,"indian":2796,"private":2797,"charles":2798,"route":2799,"available":2800,"idea":2801,"throughout":2802,"centre":2803,"addition":2804,"appointed":2805,"style":2806,"books":2808,"eight":2809,"construction":2810,"press":2811,"mean":2812,"wall":2813,"friends":2814,"remained":2815,"schools":2816,"study":2817,"##ch":2818,"##um":2819,"institute":2820,"oh":2821,"chinese":2822,"sometimes":2823,"events":2824,"possible":2825,"australian":2827,"type":2828,"brown":2829,"forward":2830,"talk":2831,"process":2832,"food":2833,"debut":2834,"seat":2835,"performance":2836,"committee":2837,"features":2838,"character":2839,"arts":2840,"herself":2841,"else":2842,"lot":2843,"strong":2844,"russian":2845,"range":2846,"hours":2847,"peter":2848,"arm":2849,"##da":2850,"morning":2851,"dr":2852,"sold":2853,"##ry":2854,"quickly":2855,"directed":2856,"guitar":2858,"china":2859,"##w":2860,"list":2862,"##ma":2863,"performed":2864,"media":2865,"uk":2866,"players":2867,"smile":2868,"##rs":2869,"myself":2870,"placed":2872,"coach":2873,"province":2874,"towards":2875,"wouldn":2876,"leading":2877,"whole":2878,"boy":2879,"official":2880,"designed":2881,"grand":2882,"census":2883,"##el":2884,"europe":2885,"attack":2886,"japanese":2887,"henry":2888,"##re":2890,"##os":2891,"cross":2892,"getting":2893,"alone":2894,"action":2895,"lower":2896,"network":2897,"wide":2898,"washington":2899,"japan":2900,"hospital":2902,"believe":2903,"changed":2904,"sister":2905,"##ar":2906,"hold":2907,"gone":2908,"sir":2909,"hadn":2910,"ship":2911,"##ka":2912,"studies":2913,"academy":2914,"shot":2915,"rights":2916,"below":2917,"base":2918,"bad":2919,"involved":2920,"kept":2921,"largest":2922,"##ist":2923,"bank":2924,"future":2925,"especially":2926,"beginning":2927,"mark":2928,"movement":2929,"section":2930,"female":2931,"magazine":2932,"plan":2933,"professor":2934,"lord":2935,"longer":2936,"##ian":2937,"sat":2938,"walked":2939,"hill":2940,"actually":2941,"civil":2942,"energy":2943,"model":2944,"families":2945,"size":2946,"thus":2947,"aircraft":2948,"completed":2949,"includes":2950,"data":2951,"captain":2952,"##or":2953,"fight":2954,"vocals":2955,"featured":2956,"richard":2957,"bridge":2958,"fourth":2959,"officer":2961,"stone":2962,"hear":2963,"##ism":2964,"means":2965,"medical":2966,"groups":2967,"management":2968,"self":2969,"lips":2970,"competition":2971,"entire":2972,"lived":2973,"technology":2974,"leaving":2975,"federal":2976,"tournament":2977,"bit":2978,"passed":2979,"hot":2980,"independent":2981,"awards":2982,"kingdom":2983,"mary":2984,"spent":2985,"fine":2986,"doesn":2987,"reported":2988,"##ling":2989,"jack":2990,"fall":2991,"raised":2992,"itself":2993,"stay":2994,"true":2995,"studio":2996,"sports":2998,"replaced":2999,"paris":3000,"systems":3001,"saint":3002,"leader":3003,"theatre":3004,"whose":3005,"market":3006,"capital":3007,"parents":3008,"spanish":3009,"canadian":3010,"earth":3011,"##ity":3012,"cut":3013,"degree":3014,"writing":3015,"bay":3016,"christian":3017,"awarded":3018,"natural":3019,"higher":3020,"bill":3021,"##as":3022,"coast":3023,"provided":3024,"previous":3025,"senior":3026,"ft":3027,"valley":3028,"organization":3029,"stopped":3030,"onto":3031,"countries":3032,"parts":3033,"conference":3034,"queen":3035,"security":3036,"interest":3037,"saying":3038,"allowed":3039,"master":3040,"earlier":3041,"phone":3042,"matter":3043,"smith":3044,"winning":3045,"try":3046,"happened":3047,"moving":3048,"campaign":3049,"los":3050,"##ley":3051,"breath":3052,"nearly":3053,"mid":3054,"certain":3056,"girls":3057,"date":3058,"italian":3059,"african":3060,"standing":3061,"fell":3062,"artist":3063,"##ted":3064,"shows":3065,"deal":3066,"mine":3067,"industry":3068,"##ng":3070,"everyone":3071,"republic":3072,"provide":3073,"collection":3074,"library":3075,"student":3076,"##ville":3077,"primary":3078,"owned":3079,"older":3080,"via":3081,"heavy":3082,"1st":3083,"makes":3084,"##able":3085,"attention":3086,"anyone":3087,"africa":3088,"##ri":3089,"stated":3090,"length":3091,"ended":3092,"fingers":3093,"command":3094,"staff":3095,"skin":3096,"foreign":3097,"opening":3098,"governor":3099,"okay":3100,"medal":3101,"kill":3102,"sun":3103,"cover":3104,"job":3105,"introduced":3107,"chest":3108,"hell":3109,"feeling":3110,"##ies":3111,"success":3112,"meet":3113,"reason":3114,"standard":3115,"meeting":3116,"novel":3117,"trade":3119,"source":3120,"buildings":3121,"##land":3122,"rose":3123,"guy":3124,"goal":3125,"##ur":3126,"chapter":3127,"native":3128,"husband":3129,"previously":3130,"unit":3131,"limited":3132,"entered":3133,"weeks":3134,"producer":3135,"operations":3136,"mountain":3137,"takes":3138,"covered":3139,"forced":3140,"related":3141,"roman":3142,"complete":3143,"successful":3144,"key":3145,"texas":3146,"cold":3147,"##ya":3148,"channel":3149,"traditional":3151,"films":3152,"dance":3153,"clear":3154,"approximately":3155,"nine":3157,"van":3158,"prince":3159,"question":3160,"active":3161,"tracks":3162,"ireland":3163,"regional":3164,"silver":3165,"author":3166,"personal":3167,"sense":3168,"operation":3169,"##ine":3170,"economic":3171,"holding":3173,"twenty":3174,"isbn":3175,"additional":3176,"speed":3177,"hour":3178,"edition":3179,"regular":3180,"historic":3181,"places":3182,"whom":3183,"shook":3184,"movie":3185,"km²":3186,"secretary":3187,"prior":3188,"report":3189,"chicago":3190,"read":3191,"foundation":3192,"view":3193,"engine":3194,"scored":3195,"units":3197,"ask":3198,"airport":3199,"property":3200,"ready":3201,"immediately":3202,"lady":3203,"month":3204,"listed":3205,"contract":3206,"##de":3207,"manager":3208,"themselves":3209,"lines":3210,"##ki":3211,"navy":3212,"writer":3213,"meant":3214,"##ts":3215,"runs":3216,"##ro":3217,"practice":3218,"championships":3219,"singer":3220,"glass":3221,"commission":3222,"required":3223,"forest":3224,"starting":3225,"culture":3226,"generally":3227,"giving":3228,"access":3229,"attended":3230,"test":3231,"couple":3232,"stand":3233,"catholic":3234,"martin":3235,"caught":3236,"executive":3237,"##less":3238,"eye":3239,"##ey":3240,"thinking":3241,"chair":3242,"quite":3243,"shoulder":3244,"hope":3246,"decision":3247,"plays":3248,"defeated":3249,"municipality":3250,"whether":3251,"structure":3252,"offered":3253,"slowly":3254,"pain":3255,"ice":3256,"direction":3257,"##ion":3258,"paper":3259,"mission":3260,"mostly":3262,"noted":3264,"individual":3265,"managed":3266,"nature":3267,"lives":3268,"plant":3269,"##ha":3270,"helped":3271,"except":3272,"studied":3273,"computer":3274,"figure":3275,"relationship":3276,"issue":3277,"significant":3278,"loss":3279,"die":3280,"smiled":3281,"gun":3282,"ago":3283,"highest":3284,"##am":3286,"male":3287,"bring":3288,"goals":3289,"mexico":3290,"problem":3291,"distance":3292,"commercial":3293,"completely":3294,"location":3295,"annual":3296,"famous":3297,"drive":3298,"neck":3300,"surface":3302,"caused":3303,"italy":3304,"understand":3305,"greek":3306,"highway":3307,"wrong":3308,"hotel":3309,"comes":3310,"appearance":3311,"joseph":3312,"double":3313,"issues":3314,"musical":3315,"companies":3316,"castle":3317,"income":3318,"review":3319,"assembly":3320,"bass":3321,"initially":3322,"parliament":3323,"artists":3324,"experience":3325,"particular":3327,"walk":3328,"foot":3329,"engineering":3330,"talking":3331,"window":3332,"dropped":3333,"##ter":3334,"miss":3335,"baby":3336,"boys":3337,"break":3338,"stars":3340,"edge":3341,"remember":3342,"policy":3343,"carried":3344,"train":3345,"stadium":3346,"bar":3347,"sex":3348,"angeles":3349,"evidence":3350,"##ge":3351,"becoming":3352,"assistant":3353,"soviet":3354,"upper":3356,"step":3357,"wing":3358,"youth":3360,"financial":3361,"reach":3362,"##ll":3363,"actor":3364,"numerous":3365,"##se":3366,"##st":3367,"nodded":3368,"arrived":3369,"##ation":3370,"minute":3371,"##nt":3372,"believed":3373,"sorry":3374,"complex":3375,"beautiful":3376,"victory":3377,"associated":3378,"temple":3379,"chance":3382,"perhaps":3383,"metal":3384,"##son":3385,"bishop":3387,"##et":3388,"lee":3389,"launched":3390,"particularly":3391,"tree":3392,"le":3393,"retired":3394,"subject":3395,"prize":3396,"contains":3397,"yeah":3398,"theory":3399,"empire":3400,"##ce":3401,"suddenly":3402,"waiting":3403,"trust":3404,"recording":3405,"##to":3406,"happy":3407,"terms":3408,"camp":3409,"champion":3410,"religious":3412,"pass":3413,"zealand":3414,"names":3415,"2nd":3416,"port":3417,"ancient":3418,"tom":3419,"corner":3420,"represented":3421,"watch":3422,"legal":3423,"anti":3424,"justice":3425,"cause":3426,"watched":3427,"brothers":3428,"material":3430,"changes":3431,"simply":3432,"response":3433,"louis":3434,"fast":3435,"##ting":3436,"answer":3437,"historical":3439,"stories":3441,"straight":3442,"create":3443,"feature":3444,"increased":3445,"rate":3446,"administration":3447,"virginia":3448,"el":3449,"activities":3450,"cultural":3451,"overall":3452,"winner":3453,"programs":3454,"basketball":3455,"legs":3456,"guard":3457,"beyond":3458,"cast":3459,"doctor":3460,"mm":3461,"flight":3462,"results":3463,"remains":3464,"cost":3465,"effect":3466,"winter":3467,"##ble":3468,"larger":3469,"islands":3470,"problems":3471,"chairman":3472,"grew":3473,"commander":3474,"isn":3475,"pay":3477,"failed":3478,"selected":3479,"hurt":3480,"fort":3481,"box":3482,"regiment":3483,"majority":3484,"journal":3485,"edward":3487,"plans":3488,"##ke":3489,"##ni":3490,"shown":3491,"pretty":3492,"irish":3493,"characters":3494,"directly":3495,"scene":3496,"likely":3497,"operated":3498,"allow":3499,"spring":3500,"##j":3501,"junior":3502,"matches":3503,"looks":3504,"mike":3505,"houses":3506,"fellow":3507,"##tion":3508,"beach":3509,"marriage":3510,"##ham":3511,"##ive":3512,"rules":3513,"oil":3514,"florida":3516,"expected":3517,"nearby":3518,"congress":3519,"sam":3520,"peace":3521,"recent":3522,"iii":3523,"wait":3524,"subsequently":3525,"cell":3526,"##do":3527,"variety":3528,"serving":3529,"agreed":3530,"please":3531,"poor":3532,"joe":3533,"pacific":3534,"attempt":3535,"wood":3536,"democratic":3537,"piece":3538,"prime":3539,"##ca":3540,"rural":3541,"mile":3542,"touch":3543,"appears":3544,"township":3545,"soldiers":3548,"##men":3549,"##ized":3550,"pennsylvania":3552,"closer":3553,"fighting":3554,"claimed":3555,"score":3556,"jones":3557,"physical":3558,"editor":3559,"##ous":3560,"filled":3561,"genus":3562,"specific":3563,"sitting":3564,"super":3565,"mom":3566,"##va":3567,"therefore":3568,"supported":3569,"status":3570,"fear":3571,"cases":3572,"store":3573,"meaning":3574,"wales":3575,"minor":3576,"spain":3577,"tower":3578,"focus":3579,"vice":3580,"frank":3581,"follow":3582,"parish":3583,"separate":3584,"golden":3585,"horse":3586,"fifth":3587,"remaining":3588,"branch":3589,"presented":3591,"stared":3592,"##id":3593,"uses":3594,"secret":3595,"forms":3596,"##co":3597,"baseball":3598,"exactly":3599,"##ck":3600,"choice":3601,"note":3602,"discovered":3603,"travel":3604,"composed":3605,"truth":3606,"russia":3607,"ball":3608,"color":3609,"kiss":3610,"dad":3611,"wind":3612,"continue":3613,"ring":3614,"referred":3615,"numbers":3616,"digital":3617,"greater":3618,"##ns":3619,"metres":3620,"slightly":3621,"direct":3622,"increase":3623,"responsible":3625,"crew":3626,"rule":3627,"trees":3628,"troops":3629,"##no":3630,"broke":3631,"goes":3632,"individuals":3633,"hundred":3634,"weight":3635,"creek":3636,"sleep":3637,"memory":3638,"defense":3639,"provides":3640,"ordered":3641,"code":3642,"value":3643,"jewish":3644,"windows":3645,"safe":3647,"judge":3648,"whatever":3649,"corps":3650,"realized":3651,"growing":3652,"pre":3653,"##ga":3654,"cities":3655,"alexander":3656,"gaze":3657,"lies":3658,"spread":3659,"scott":3660,"letter":3661,"showed":3662,"situation":3663,"mayor":3664,"transport":3665,"watching":3666,"workers":3667,"extended":3668,"##li":3669,"expression":3670,"normal":3671,"##ment":3672,"chart":3673,"multiple":3674,"border":3675,"##ba":3676,"host":3677,"##ner":3678,"daily":3679,"mrs":3680,"walls":3681,"piano":3682,"##ko":3683,"heat":3684,"cannot":3685,"##ate":3686,"earned":3687,"products":3688,"drama":3689,"era":3690,"authority":3691,"seasons":3692,"join":3693,"grade":3694,"##io":3695,"sign":3696,"difficult":3697,"machine":3698,"territory":3700,"mainly":3701,"##wood":3702,"stations":3703,"squadron":3704,"stepped":3706,"iron":3707,"19th":3708,"##led":3709,"serve":3710,"appear":3711,"sky":3712,"speak":3713,"broken":3714,"charge":3715,"knowledge":3716,"kilometres":3717,"removed":3718,"ships":3719,"article":3720,"campus":3721,"simple":3722,"##ty":3723,"pushed":3724,"britain":3725,"##ve":3726,"leaves":3727,"recently":3728,"cd":3729,"soft":3730,"boston":3731,"latter":3732,"easy":3733,"acquired":3734,"poland":3735,"##sa":3736,"quality":3737,"officers":3738,"presence":3739,"planned":3740,"nations":3741,"mass":3742,"broadcast":3743,"jean":3744,"share":3745,"image":3746,"influence":3747,"wild":3748,"offer":3749,"emperor":3750,"electric":3751,"reading":3752,"headed":3753,"ability":3754,"promoted":3755,"yellow":3756,"ministry":3757,"throat":3759,"smaller":3760,"politician":3761,"##by":3762,"latin":3763,"spoke":3764,"cars":3765,"williams":3766,"males":3767,"lack":3768,"pop":3769,"##ier":3771,"acting":3772,"seeing":3773,"consists":3774,"##ti":3775,"estate":3776,"pressure":3778,"johnson":3779,"newspaper":3780,"jr":3781,"chris":3782,"olympics":3783,"online":3784,"conditions":3785,"beat":3786,"elements":3787,"walking":3788,"vote":3789,"##field":3790,"needs":3791,"carolina":3792,"text":3793,"featuring":3794,"global":3795,"block":3796,"shirt":3797,"levels":3798,"francisco":3799,"purpose":3800,"females":3801,"et":3802,"dutch":3803,"duke":3804,"ahead":3805,"gas":3806,"twice":3807,"safety":3808,"serious":3809,"turning":3810,"highly":3811,"lieutenant":3812,"firm":3813,"maria":3814,"amount":3815,"mixed":3816,"daniel":3817,"proposed":3818,"perfect":3819,"agreement":3820,"affairs":3821,"3rd":3822,"seconds":3823,"contemporary":3824,"paid":3825,"prison":3827,"save":3828,"kitchen":3829,"label":3830,"administrative":3831,"intended":3832,"constructed":3833,"academic":3834,"nice":3835,"teacher":3836,"races":3837,"formerly":3839,"corporation":3840,"ben":3841,"nation":3842,"issued":3843,"shut":3844,"drums":3846,"housing":3847,"victoria":3848,"seems":3849,"opera":3850,"graduated":3852,"function":3853,"von":3854,"mentioned":3855,"picked":3856,"build":3857,"recognized":3858,"shortly":3859,"protection":3860,"picture":3861,"notable":3862,"exchange":3863,"elections":3864,"1980s":3865,"loved":3866,"percent":3867,"racing":3868,"fish":3869,"elizabeth":3870,"garden":3871,"volume":3872,"hockey":3873,"beside":3875,"settled":3876,"##ford":3877,"competed":3879,"replied":3880,"drew":3881,"actress":3883,"marine":3884,"scotland":3885,"steel":3886,"glanced":3887,"farm":3888,"steve":3889,"risk":3891,"tonight":3892,"positive":3893,"magic":3894,"singles":3895,"effects":3896,"gray":3897,"screen":3898,"dog":3899,"##ja":3900,"residents":3901,"bus":3902,"sides":3903,"none":3904,"secondary":3905,"literature":3906,"polish":3907,"destroyed":3908,"flying":3909,"founder":3910,"households":3911,"lay":3913,"reserve":3914,"usa":3915,"gallery":3916,"##ler":3917,"industrial":3919,"younger":3920,"approach":3921,"appearances":3922,"urban":3923,"ones":3924,"finish":3926,"avenue":3927,"powerful":3928,"fully":3929,"growth":3930,"page":3931,"honor":3932,"jersey":3933,"projects":3934,"advanced":3935,"revealed":3936,"basic":3937,"infantry":3939,"pair":3940,"equipment":3941,"visit":3942,"evening":3944,"search":3945,"grant":3946,"effort":3947,"solo":3948,"treatment":3949,"buried":3950,"republican":3951,"primarily":3952,"bottom":3953,"owner":3954,"1970s":3955,"israel":3956,"gives":3957,"jim":3958,"dream":3959,"bob":3960,"remain":3961,"spot":3962,"notes":3964,"produce":3965,"champions":3966,"contact":3967,"ed":3968,"soul":3969,"accepted":3970,"ways":3971,"del":3972,"##ally":3973,"losing":3974,"split":3975,"price":3976,"capacity":3977,"basis":3978,"trial":3979,"questions":3980,"##ina":3981,"20th":3983,"guess":3984,"officially":3985,"memorial":3986,"naval":3987,"initial":3988,"##ization":3989,"whispered":3990,"median":3991,"engineer":3992,"##ful":3993,"sydney":3994,"##go":3995,"columbia":3996,"strength":3997,"tears":4000,"senate":4001,"00":4002,"card":4003,"asian":4004,"agent":4005,"software":4007,"draw":4009,"warm":4010,"supposed":4011,"com":4012,"pro":4013,"##il":4014,"transferred":4015,"leaned":4016,"##at":4017,"candidate":4018,"escape":4019,"mountains":4020,"asia":4021,"potential":4022,"activity":4023,"entertainment":4024,"seem":4025,"traffic":4026,"jackson":4027,"murder":4028,"slow":4030,"product":4031,"orchestra":4032,"haven":4033,"agency":4034,"bbc":4035,"taught":4036,"website":4037,"comedy":4038,"unable":4039,"storm":4040,"planning":4041,"albums":4042,"rugby":4043,"environment":4044,"scientific":4045,"grabbed":4046,"protect":4047,"##hi":4048,"boat":4049,"typically":4050,"damage":4053,"principal":4054,"divided":4055,"dedicated":4056,"mount":4057,"ohio":4058,"##berg":4059,"pick":4060,"fought":4061,"driver":4062,"##der":4063,"empty":4064,"shoulders":4065,"sort":4066,"thank":4067,"berlin":4068,"prominent":4069,"account":4070,"freedom":4071,"necessary":4072,"efforts":4073,"alex":4074,"headquarters":4075,"follows":4076,"alongside":4077,"des":4078,"simon":4079,"andrew":4080,"suggested":4081,"operating":4082,"learning":4083,"steps":4084,"sweet":4086,"technical":4087,"begin":4088,"easily":4089,"teeth":4091,"speaking":4092,"settlement":4093,"scale":4094,"##sh":4095,"renamed":4096,"ray":4097,"max":4098,"enemy":4099,"semi":4100,"joint":4101,"compared":4102,"##rd":4103,"scottish":4104,"leadership":4105,"analysis":4106,"offers":4107,"georgia":4108,"pieces":4109,"captured":4110,"animal":4111,"deputy":4112,"guest":4113,"organized":4114,"##lin":4115,"tony":4116,"combined":4117,"method":4118,"challenge":4119,"1960s":4120,"huge":4121,"wants":4122,"battalion":4123,"sons":4124,"rise":4125,"crime":4126,"types":4127,"facilities":4128,"telling":4129,"path":4130,"platform":4132,"sit":4133,"1990s":4134,"##lo":4135,"tells":4136,"assigned":4137,"rich":4138,"pull":4139,"##ot":4140,"commonly":4141,"alive":4142,"##za":4143,"letters":4144,"concept":4145,"conducted":4146,"wearing":4147,"happen":4148,"bought":4149,"becomes":4150,"holy":4151,"gets":4152,"ocean":4153,"defeat":4154,"languages":4155,"purchased":4156,"coffee":4157,"occurred":4158,"titled":4159,"##q":4160,"declared":4161,"applied":4162,"sciences":4163,"concert":4164,"sounds":4165,"jazz":4166,"brain":4167,"##me":4168,"painting":4169,"fleet":4170,"tax":4171,"nick":4172,"##ius":4173,"michigan":4174,"count":4175,"animals":4176,"leaders":4177,"episodes":4178,"##line":4179,"content":4180,"##den":4181,"birth":4182,"##it":4183,"clubs":4184,"palace":4186,"critical":4187,"refused":4188,"fair":4189,"leg":4190,"laughed":4191,"returning":4192,"surrounding":4193,"participated":4194,"formation":4195,"lifted":4196,"pointed":4197,"connected":4198,"rome":4199,"medicine":4200,"laid":4201,"taylor":4202,"santa":4203,"powers":4204,"adam":4205,"tall":4206,"shared":4207,"focused":4208,"knowing":4209,"yards":4210,"entrance":4211,"falls":4212,"##wa":4213,"calling":4214,"##ad":4215,"sources":4216,"chosen":4217,"beneath":4218,"resources":4219,"yard":4220,"##ite":4221,"nominated":4222,"silence":4223,"zone":4224,"defined":4225,"##que":4226,"gained":4227,"thirty":4228,"bodies":4230,"moon":4231,"##ard":4232,"adopted":4233,"christmas":4234,"widely":4235,"register":4236,"apart":4237,"iran":4238,"premier":4239,"serves":4240,"du":4241,"unknown":4242,"parties":4243,"##les":4244,"generation":4245,"##ff":4246,"continues":4247,"quick":4248,"fields":4249,"brigade":4250,"quiet":4251,"teaching":4252,"clothes":4253,"impact":4254,"weapons":4255,"partner":4256,"flat":4257,"theater":4258,"supreme":4259,"relations":4262,"##tor":4263,"plants":4264,"suffered":4265,"wilson":4267,"kids":4268,"begins":4269,"##age":4270,"seats":4272,"armed":4273,"internet":4274,"models":4275,"worth":4276,"laws":4277,"communities":4279,"classes":4280,"background":4281,"knows":4282,"thanks":4283,"quarter":4284,"reaching":4285,"humans":4286,"carry":4287,"killing":4288,"format":4289,"kong":4290,"hong":4291,"setting":4292,"architecture":4294,"disease":4295,"railroad":4296,"inc":4297,"possibly":4298,"wish":4299,"arthur":4300,"thoughts":4301,"harry":4302,"doors":4303,"density":4304,"##di":4305,"crowd":4306,"illinois":4307,"stomach":4308,"tone":4309,"unique":4310,"reports":4311,"anyway":4312,"##ir":4313,"liberal":4314,"der":4315,"vehicle":4316,"thick":4317,"dry":4318,"drug":4319,"faced":4320,"largely":4321,"facility":4322,"theme":4323,"holds":4324,"creation":4325,"strange":4326,"colonel":4327,"##mi":4328,"revolution":4329,"bell":4330,"politics":4331,"turns":4332,"silent":4333,"rail":4334,"relief":4335,"independence":4336,"combat":4337,"shape":4338,"write":4339,"determined":4340,"sales":4341,"learned":4342,"4th":4343,"finger":4344,"oxford":4345,"providing":4346,"heritage":4348,"fiction":4349,"situated":4350,"designated":4351,"allowing":4352,"distribution":4353,"hosted":4354,"##est":4355,"sight":4356,"interview":4357,"estimated":4358,"reduced":4359,"##ria":4360,"toronto":4361,"footballer":4362,"keeping":4363,"guys":4364,"damn":4365,"claim":4366,"motion":4367,"sport":4368,"sixth":4369,"stayed":4370,"##ze":4371,"en":4372,"rear":4373,"receive":4374,"handed":4375,"twelve":4376,"dress":4377,"audience":4378,"granted":4379,"brazil":4380,"##well":4381,"spirit":4382,"##ated":4383,"noticed":4384,"etc":4385,"olympic":4386,"representative":4387,"eric":4388,"tight":4389,"trouble":4390,"reviews":4391,"drink":4392,"vampire":4393,"missing":4394,"roles":4395,"ranked":4396,"newly":4397,"household":4398,"finals":4399,"wave":4400,"critics":4401,"##ee":4402,"phase":4403,"massachusetts":4404,"pilot":4405,"unlike":4406,"philadelphia":4407,"bright":4408,"guns":4409,"crown":4410,"organizations":4411,"roof":4412,"respectively":4414,"clearly":4415,"tongue":4416,"marked":4417,"circle":4418,"fox":4419,"korea":4420,"bronze":4421,"brian":4422,"expanded":4423,"sexual":4424,"supply":4425,"yourself":4426,"inspired":4427,"labour":4428,"fc":4429,"##ah":4430,"reference":4431,"vision":4432,"draft":4433,"connection":4434,"brand":4435,"reasons":4436,"classic":4438,"driving":4439,"trip":4440,"jesus":4441,"cells":4442,"entry":4443,"neither":4445,"trail":4446,"claims":4447,"atlantic":4448,"orders":4449,"labor":4450,"nose":4451,"afraid":4452,"identified":4453,"intelligence":4454,"calls":4455,"cancer":4456,"attacked":4457,"passing":4458,"stephen":4459,"positions":4460,"imperial":4461,"grey":4462,"jason":4463,"sunday":4465,"swedish":4467,"avoid":4468,"extra":4469,"uncle":4470,"message":4471,"covers":4472,"allows":4473,"surprise":4474,"materials":4475,"fame":4476,"hunter":4477,"##ji":4478,"citizens":4480,"figures":4481,"davis":4482,"environmental":4483,"confirmed":4484,"shit":4485,"titles":4486,"di":4487,"performing":4488,"difference":4489,"acts":4490,"attacks":4491,"##ov":4492,"existing":4493,"votes":4494,"opportunity":4495,"nor":4496,"shop":4497,"entirely":4498,"trains":4499,"opposite":4500,"pakistan":4501,"##pa":4502,"develop":4503,"resulted":4504,"representatives":4505,"actions":4506,"reality":4507,"pressed":4508,"##ish":4509,"barely":4510,"wine":4511,"conversation":4512,"faculty":4513,"northwest":4514,"ends":4515,"documentary":4516,"nuclear":4517,"stock":4518,"grace":4519,"sets":4520,"eat":4521,"alternative":4522,"##ps":4523,"bag":4524,"resulting":4525,"creating":4526,"surprised":4527,"cemetery":4528,"drop":4530,"finding":4531,"sarah":4532,"cricket":4533,"streets":4534,"tradition":4535,"ride":4536,"exhibition":4538,"target":4539,"ear":4540,"explained":4541,"rain":4542,"composer":4543,"injury":4544,"apartment":4545,"municipal":4546,"educational":4547,"occupied":4548,"netherlands":4549,"clean":4550,"billion":4551,"constitution":4552,"learn":4553,"maximum":4555,"classical":4556,"francis":4557,"lose":4558,"opposition":4559,"jose":4560,"ontario":4561,"bear":4562,"core":4563,"hills":4564,"rolled":4565,"ending":4566,"drawn":4567,"permanent":4568,"fun":4569,"##tes":4570,"##lla":4571,"lewis":4572,"sites":4573,"chamber":4574,"ryan":4575,"##way":4576,"scoring":4577,"height":4578,"##house":4580,"lyrics":4581,"staring":4582,"officials":4584,"snow":4586,"oldest":4587,"##tic":4588,"orange":4589,"##ger":4590,"qualified":4591,"interior":4592,"apparently":4593,"succeeded":4594,"thousand":4595,"dinner":4596,"lights":4597,"existence":4598,"fans":4599,"heavily":4600,"greatest":4602,"conservative":4603,"send":4604,"bowl":4605,"plus":4606,"enter":4607,"catch":4608,"##un":4609,"economy":4610,"duty":4611,"speech":4613,"authorities":4614,"princess":4615,"performances":4616,"versions":4617,"shall":4618,"graduate":4619,"pictures":4620,"effective":4621,"remembered":4622,"poetry":4623,"desk":4624,"crossed":4625,"starring":4626,"starts":4627,"passenger":4628,"sharp":4629,"##ant":4630,"acres":4631,"ass":4632,"weather":4633,"falling":4634,"rank":4635,"fund":4636,"supporting":4637,"check":4638,"adult":4639,"publishing":4640,"heads":4641,"cm":4642,"southeast":4643,"lane":4644,"##burg":4645,"application":4646,"bc":4647,"##ura":4648,"les":4649,"condition":4650,"transfer":4651,"prevent":4652,"display":4653,"ex":4654,"regions":4655,"earl":4656,"federation":4657,"cool":4658,"relatively":4659,"answered":4660,"besides":4661,"obtained":4663,"portion":4664,"##town":4665,"mix":4666,"##ding":4667,"reaction":4668,"liked":4669,"dean":4670,"express":4671,"peak":4672,"##tte":4674,"counter":4675,"religion":4676,"chain":4677,"rare":4678,"miller":4679,"convention":4680,"aid":4681,"lie":4682,"vehicles":4683,"mobile":4684,"perform":4685,"squad":4686,"wonder":4687,"lying":4688,"crazy":4689,"sword":4690,"##ping":4691,"attempted":4692,"centuries":4693,"weren":4694,"philosophy":4695,"category":4696,"##ize":4697,"anna":4698,"interested":4699,"sweden":4701,"wolf":4702,"frequently":4703,"abandoned":4704,"kg":4705,"literary":4706,"alliance":4707,"task":4708,"entitled":4709,"##ay":4710,"threw":4711,"promotion":4712,"factory":4713,"tiny":4714,"soccer":4715,"visited":4716,"matt":4717,"fm":4718,"achieved":4719,"defence":4721,"internal":4722,"persian":4723,"methods":4725,"##ging":4726,"arrested":4727,"otherwise":4728,"cambridge":4729,"programming":4730,"villages":4731,"elementary":4732,"districts":4733,"rooms":4734,"criminal":4735,"conflict":4736,"worry":4737,"trained":4738,"attempts":4740,"waited":4741,"signal":4742,"bird":4743,"truck":4744,"subsequent":4745,"programme":4746,"##ol":4747,"ad":4748,"communist":4750,"details":4751,"faith":4752,"sector":4753,"patrick":4754,"carrying":4755,"laugh":4756,"##ss":4757,"controlled":4758,"korean":4759,"showing":4760,"origin":4761,"fuel":4762,"evil":4763,"##ent":4765,"brief":4766,"identity":4767,"darkness":4768,"address":4769,"pool":4770,"missed":4771,"publication":4772,"web":4773,"planet":4774,"ian":4775,"anne":4776,"wings":4777,"invited":4778,"##tt":4779,"briefly":4780,"standards":4781,"kissed":4782,"##be":4783,"ideas":4784,"climate":4785,"causing":4786,"walter":4787,"worse":4788,"albert":4789,"articles":4790,"winners":4791,"desire":4792,"aged":4793,"northeast":4794,"dangerous":4795,"gate":4796,"doubt":4797,"wooden":4799,"multi":4800,"##ky":4801,"poet":4802,"rising":4803,"funding":4804,"communications":4806,"communication":4807,"violence":4808,"copies":4809,"prepared":4810,"ford":4811,"investigation":4812,"skills":4813,"pulling":4815,"electronic":4816,"##ak":4817,"##ial":4818,"##han":4819,"containing":4820,"ultimately":4821,"offices":4822,"singing":4823,"understanding":4824,"restaurant":4825,"tomorrow":4826,"fashion":4827,"christ":4828,"ward":4829,"da":4830,"pope":4831,"stands":4832,"5th":4833,"flow":4834,"studios":4835,"aired":4836,"commissioned":4837,"contained":4838,"exist":4839,"fresh":4840,"americans":4841,"##per":4842,"wrestling":4843,"approved":4844,"kid":4845,"employed":4846,"respect":4847,"suit":4848,"angel":4850,"asking":4851,"increasing":4852,"frame":4853,"angry":4854,"selling":4855,"1950s":4856,"thin":4857,"finds":4858,"##nd":4859,"temperature":4860,"statement":4861,"ali":4862,"explain":4863,"inhabitants":4864,"towns":4865,"extensive":4866,"narrow":4867,"jane":4869,"flowers":4870,"images":4871,"promise":4872,"somewhere":4873,"object":4874,"fly":4875,"closely":4876,"##ls":4877,"bureau":4879,"cape":4880,"weekly":4882,"presidential":4883,"legislative":4884,"##ai":4886,"##au":4887,"launch":4888,"founding":4889,"##ny":4890,"##ring":4892,"artillery":4893,"strike":4894,"un":4895,"institutions":4896,"roll":4897,"writers":4898,"landing":4899,"chose":4900,"kevin":4901,"anymore":4902,"pp":4903,"##ut":4904,"attorney":4905,"fit":4906,"dan":4907,"billboard":4908,"receiving":4909,"agricultural":4910,"breaking":4911,"sought":4912,"dave":4913,"admitted":4914,"lands":4915,"mexican":4916,"##bury":4917,"charlie":4918,"specifically":4919,"hole":4920,"iv":4921,"howard":4922,"credit":4923,"moscow":4924,"roads":4925,"accident":4926,"proved":4928,"wear":4929,"struck":4930,"hey":4931,"guards":4932,"stuff":4933,"slid":4934,"expansion":4935,"cat":4937,"anthony":4938,"##kin":4939,"melbourne":4940,"opposed":4941,"sub":4942,"southwest":4943,"architect":4944,"failure":4945,"plane":4946,"##ron":4948,"map":4949,"camera":4950,"tank":4951,"listen":4952,"regarding":4953,"wet":4954,"introduction":4955,"metropolitan":4956,"link":4957,"ep":4958,"fighter":4959,"inch":4960,"grown":4961,"gene":4962,"anger":4963,"fixed":4964,"buy":4965,"dvd":4966,"khan":4967,"domestic":4968,"worldwide":4969,"chapel":4970,"mill":4971,"functions":4972,"examples":4973,"##head":4974,"developing":4975,"turkey":4977,"hits":4978,"pocket":4979,"antonio":4980,"papers":4981,"grow":4982,"unless":4983,"circuit":4984,"18th":4985,"concerned":4986,"attached":4987,"journalist":4988,"selection":4989,"journey":4990,"converted":4991,"provincial":4992,"painted":4993,"hearing":4994,"aren":4995,"bands":4996,"negative":4997,"aside":4998,"wondered":4999,"knight":5000,"lap":5001,"survey":5002,"ma":5003,"##ow":5004,"noise":5005,"billy":5006,"##ium":5007,"shooting":5008,"guide":5009,"bedroom":5010,"priest":5011,"resistance":5012,"motor":5013,"homes":5014,"sounded":5015,"giant":5016,"##mer":5017,"scenes":5019,"equal":5020,"comic":5021,"patients":5022,"hidden":5023,"solid":5024,"actual":5025,"bringing":5026,"afternoon":5027,"touched":5028,"funds":5029,"wedding":5030,"consisted":5031,"marie":5032,"canal":5033,"sr":5034,"kim":5035,"treaty":5036,"turkish":5037,"recognition":5038,"residence":5039,"cathedral":5040,"broad":5041,"knees":5042,"incident":5043,"shaped":5044,"fired":5045,"norwegian":5046,"handle":5047,"cheek":5048,"contest":5049,"represent":5050,"##pe":5051,"representing":5052,"beauty":5053,"##sen":5054,"birds":5055,"advantage":5056,"emergency":5057,"wrapped":5058,"drawing":5059,"notice":5060,"pink":5061,"broadcasting":5062,"##ong":5063,"somehow":5064,"bachelor":5065,"seventh":5066,"collected":5067,"registered":5068,"establishment":5069,"alan":5070,"assumed":5071,"chemical":5072,"personnel":5073,"roger":5074,"retirement":5075,"jeff":5076,"portuguese":5077,"wore":5078,"tied":5079,"device":5080,"threat":5081,"progress":5082,"advance":5083,"##ised":5084,"banks":5085,"hired":5086,"manchester":5087,"nfl":5088,"teachers":5089,"structures":5090,"forever":5091,"##bo":5092,"tennis":5093,"helping":5094,"saturday":5095,"sale":5096,"applications":5097,"junction":5098,"hip":5099,"incorporated":5100,"neighborhood":5101,"dressed":5102,"ceremony":5103,"##ds":5104,"influenced":5105,"hers":5106,"visual":5107,"stairs":5108,"decades":5109,"inner":5110,"kansas":5111,"hung":5112,"hoped":5113,"gain":5114,"scheduled":5115,"downtown":5116,"engaged":5117,"austria":5118,"clock":5119,"norway":5120,"certainly":5121,"pale":5122,"protected":5123,"victor":5125,"employees":5126,"plate":5127,"putting":5128,"surrounded":5129,"##ists":5130,"finishing":5131,"blues":5132,"tropical":5133,"##ries":5134,"minnesota":5135,"consider":5136,"philippines":5137,"accept":5138,"retrieved":5140,"concern":5142,"anderson":5143,"properties":5144,"institution":5145,"gordon":5146,"successfully":5147,"vietnam":5148,"##dy":5149,"backing":5150,"outstanding":5151,"muslim":5152,"crossing":5153,"folk":5154,"producing":5155,"usual":5156,"demand":5157,"occurs":5158,"observed":5159,"lawyer":5160,"educated":5161,"##ana":5162,"kelly":5163,"string":5164,"pleasure":5165,"budget":5166,"items":5167,"quietly":5168,"colorado":5169,"philip":5170,"typical":5171,"##worth":5172,"derived":5173,"survived":5175,"asks":5176,"mental":5177,"##ide":5178,"jake":5180,"jews":5181,"distinguished":5182,"ltd":5183,"sri":5185,"extremely":5186,"athletic":5188,"loud":5189,"thousands":5190,"worried":5191,"shadow":5192,"transportation":5193,"horses":5194,"weapon":5195,"arena":5196,"importance":5197,"users":5198,"tim":5199,"objects":5200,"contributed":5201,"dragon":5202,"douglas":5203,"aware":5204,"senator":5205,"johnny":5206,"jordan":5207,"sisters":5208,"engines":5209,"flag":5210,"investment":5211,"samuel":5212,"shock":5213,"capable":5214,"clark":5215,"row":5216,"wheel":5217,"refers":5218,"session":5219,"familiar":5220,"biggest":5221,"wins":5222,"hate":5223,"maintained":5224,"drove":5225,"hamilton":5226,"request":5227,"expressed":5228,"injured":5229,"underground":5230,"churches":5231,"walker":5232,"wars":5233,"tunnel":5234,"passes":5235,"stupid":5236,"agriculture":5237,"softly":5238,"cabinet":5239,"regarded":5240,"joining":5241,"indiana":5242,"##ea":5243,"##ms":5244,"push":5245,"dates":5246,"spend":5247,"behavior":5248,"woods":5249,"protein":5250,"gently":5251,"chase":5252,"morgan":5253,"mention":5254,"burning":5255,"wake":5256,"combination":5257,"occur":5258,"mirror":5259,"leads":5260,"jimmy":5261,"indeed":5262,"impossible":5263,"singapore":5264,"paintings":5265,"covering":5266,"##nes":5267,"soldier":5268,"locations":5269,"attendance":5270,"sell":5271,"historian":5272,"wisconsin":5273,"invasion":5274,"argued":5275,"painter":5276,"diego":5277,"changing":5278,"egypt":5279,"##don":5280,"experienced":5281,"inches":5282,"##ku":5283,"missouri":5284,"vol":5285,"grounds":5286,"spoken":5287,"switzerland":5288,"##gan":5289,"reform":5290,"rolling":5291,"ha":5292,"forget":5293,"massive":5294,"resigned":5295,"burned":5296,"allen":5297,"tennessee":5298,"locked":5299,"values":5300,"improved":5301,"##mo":5302,"wounded":5303,"universe":5304,"sick":5305,"dating":5306,"facing":5307,"pack":5308,"purchase":5309,"user":5310,"##pur":5311,"moments":5312,"##ul":5313,"merged":5314,"anniversary":5315,"coal":5317,"brick":5318,"understood":5319,"causes":5320,"dynasty":5321,"queensland":5322,"establish":5323,"stores":5324,"crisis":5325,"promote":5326,"hoping":5327,"views":5328,"cards":5329,"referee":5330,"extension":5331,"##si":5332,"raise":5333,"arizona":5334,"improve":5335,"colonial":5336,"formal":5337,"charged":5338,"##rt":5339,"palm":5340,"lucky":5341,"hide":5342,"rescue":5343,"faces":5344,"feelings":5346,"candidates":5347,"juan":5348,"##ell":5349,"goods":5350,"6th":5351,"courses":5352,"weekend":5353,"luke":5355,"cash":5356,"fallen":5357,"##om":5358,"delivered":5359,"affected":5360,"installed":5361,"carefully":5362,"tries":5363,"swiss":5364,"hollywood":5365,"costs":5366,"lincoln":5367,"responsibility":5368,"##he":5369,"shore":5370,"file":5371,"proper":5372,"normally":5373,"maryland":5374,"assistance":5375,"jump":5376,"constant":5377,"offering":5378,"friendly":5379,"waters":5380,"persons":5381,"realize":5382,"contain":5383,"trophy":5384,"partnership":5386,"factor":5387,"musicians":5389,"cry":5390,"bound":5391,"oregon":5392,"indicated":5393,"hero":5394,"houston":5395,"medium":5396,"##ure":5397,"consisting":5398,"somewhat":5399,"##ara":5400,"cycle":5402,"##che":5403,"beer":5404,"moore":5405,"frederick":5406,"gotten":5407,"eleven":5408,"worst":5409,"weak":5410,"approached":5411,"arranged":5412,"chin":5413,"loan":5414,"universal":5415,"bond":5416,"fifteen":5417,"pattern":5418,"disappeared":5419,"##ney":5420,"translated":5421,"##zed":5422,"lip":5423,"arab":5424,"capture":5425,"interests":5426,"insurance":5427,"##chi":5428,"shifted":5429,"cave":5430,"prix":5431,"warning":5432,"sections":5433,"courts":5434,"coat":5435,"plot":5436,"smell":5437,"feed":5438,"golf":5439,"favorite":5440,"maintain":5441,"knife":5442,"vs":5443,"voted":5444,"degrees":5445,"finance":5446,"quebec":5447,"opinion":5448,"translation":5449,"manner":5450,"ruled":5451,"operate":5452,"productions":5453,"choose":5454,"musician":5455,"discovery":5456,"confused":5457,"tired":5458,"separated":5459,"stream":5460,"techniques":5461,"committed":5462,"attend":5463,"ranking":5464,"kings":5465,"throw":5466,"passengers":5467,"measure":5468,"horror":5469,"fan":5470,"mining":5471,"sand":5472,"danger":5473,"salt":5474,"calm":5475,"decade":5476,"dam":5477,"require":5478,"runner":5479,"##ik":5480,"rush":5481,"associate":5482,"greece":5483,"##ker":5484,"rivers":5485,"consecutive":5486,"matthew":5487,"##ski":5488,"sighed":5489,"sq":5490,"documents":5491,"steam":5492,"edited":5493,"closing":5494,"tie":5495,"accused":5496,"##ini":5498,"islamic":5499,"distributed":5500,"directors":5501,"organisation":5502,"bruce":5503,"7th":5504,"breathing":5505,"mad":5506,"lit":5507,"arrival":5508,"concrete":5509,"taste":5510,"08":5511,"composition":5512,"shaking":5513,"faster":5514,"amateur":5515,"adjacent":5516,"stating":5517,"twin":5519,"flew":5520,"##ran":5521,"tokyo":5522,"publications":5523,"##tone":5524,"obviously":5525,"ridge":5526,"storage":5527,"carl":5529,"pages":5530,"concluded":5531,"desert":5532,"driven":5533,"universities":5534,"ages":5535,"terminal":5536,"sequence":5537,"borough":5538,"constituency":5540,"creative":5541,"cousin":5542,"economics":5543,"dreams":5544,"margaret":5545,"notably":5546,"reduce":5547,"montreal":5548,"mode":5549,"17th":5550,"ears":5551,"saved":5552,"jan":5553,"vocal":5554,"##ica":5555,"andy":5557,"##jo":5558,"riding":5559,"roughly":5560,"threatened":5561,"##ise":5562,"meters":5563,"meanwhile":5564,"landed":5565,"compete":5566,"repeated":5567,"grass":5568,"czech":5569,"regularly":5570,"charges":5571,"tea":5572,"sudden":5573,"appeal":5574,"##ung":5575,"solution":5576,"describes":5577,"pierre":5578,"classification":5579,"glad":5580,"parking":5581,"##ning":5582,"belt":5583,"physics":5584,"rachel":5586,"add":5587,"hungarian":5588,"participate":5589,"expedition":5590,"damaged":5591,"gift":5592,"childhood":5593,"fifty":5595,"##red":5596,"mathematics":5597,"jumped":5598,"letting":5599,"defensive":5600,"mph":5601,"##ux":5602,"##gh":5603,"testing":5604,"##hip":5605,"hundreds":5606,"shoot":5607,"owners":5608,"matters":5609,"smoke":5610,"israeli":5611,"kentucky":5612,"dancing":5613,"mounted":5614,"grandfather":5615,"emma":5616,"designs":5617,"profit":5618,"argentina":5619,"##gs":5620,"truly":5621,"li":5622,"lawrence":5623,"cole":5624,"begun":5625,"detroit":5626,"willing":5627,"branches":5628,"smiling":5629,"decide":5630,"miami":5631,"enjoyed":5632,"recordings":5633,"##dale":5634,"poverty":5635,"ethnic":5636,"gay":5637,"##bi":5638,"gary":5639,"arabic":5640,"09":5641,"accompanied":5642,"##one":5643,"##ons":5644,"fishing":5645,"determine":5646,"residential":5647,"acid":5648,"##ary":5649,"alice":5650,"returns":5651,"starred":5652,"mail":5653,"##ang":5654,"jonathan":5655,"strategy":5656,"##ue":5657,"net":5658,"forty":5659,"cook":5660,"businesses":5661,"equivalent":5662,"commonwealth":5663,"distinct":5664,"ill":5665,"##cy":5666,"seriously":5667,"##ors":5668,"##ped":5669,"shift":5670,"harris":5671,"replace":5672,"rio":5673,"imagine":5674,"formula":5675,"ensure":5676,"##ber":5677,"additionally":5678,"scheme":5679,"conservation":5680,"occasionally":5681,"purposes":5682,"feels":5683,"favor":5684,"##and":5685,"##ore":5686,"1930s":5687,"contrast":5688,"hanging":5689,"hunt":5690,"movies":5691,"instruments":5693,"victims":5694,"danish":5695,"christopher":5696,"busy":5697,"demon":5698,"sugar":5699,"earliest":5700,"colony":5701,"studying":5702,"balance":5703,"duties":5704,"##ks":5705,"belgium":5706,"slipped":5707,"carter":5708,"05":5709,"visible":5710,"stages":5711,"iraq":5712,"fifa":5713,"##im":5714,"commune":5715,"forming":5716,"zero":5717,"07":5718,"continuing":5719,"talked":5720,"counties":5721,"legend":5722,"bathroom":5723,"option":5724,"tail":5725,"clay":5726,"daughters":5727,"afterwards":5728,"severe":5729,"jaw":5730,"visitors":5731,"##ded":5732,"devices":5733,"aviation":5734,"russell":5735,"kate":5736,"##vi":5737,"entering":5738,"subjects":5739,"##ino":5740,"temporary":5741,"swimming":5742,"forth":5743,"smooth":5744,"ghost":5745,"audio":5746,"bush":5747,"operates":5748,"rocks":5749,"movements":5750,"signs":5751,"eddie":5752,"##tz":5753,"ann":5754,"voices":5755,"honorary":5756,"06":5757,"memories":5758,"dallas":5759,"pure":5760,"measures":5761,"racial":5762,"promised":5763,"harvard":5765,"ceo":5766,"16th":5767,"parliamentary":5768,"indicate":5769,"benefit":5770,"flesh":5771,"dublin":5772,"louisiana":5773,"patient":5776,"sleeping":5777,"membership":5779,"coastal":5780,"medieval":5781,"wanting":5782,"element":5783,"scholars":5784,"rice":5785,"limit":5787,"survive":5788,"makeup":5789,"rating":5790,"definitely":5791,"collaboration":5792,"obvious":5793,"##tan":5794,"boss":5795,"ms":5796,"baron":5797,"birthday":5798,"linked":5799,"soil":5800,"diocese":5801,"##lan":5802,"ncaa":5803,"##mann":5804,"offensive":5805,"shell":5806,"shouldn":5807,"waist":5808,"##tus":5809,"plain":5810,"ross":5811,"organ":5812,"resolution":5813,"manufacturing":5814,"adding":5815,"relative":5816,"kennedy":5817,"whilst":5819,"moth":5820,"marketing":5821,"gardens":5822,"crash":5823,"heading":5825,"partners":5826,"credited":5827,"carlos":5828,"moves":5829,"cable":5830,"##zi":5831,"marshall":5832,"##out":5833,"depending":5834,"bottle":5835,"represents":5836,"rejected":5837,"responded":5838,"existed":5839,"04":5840,"jobs":5841,"denmark":5842,"lock":5843,"##ating":5844,"treated":5845,"graham":5846,"routes":5847,"talent":5848,"commissioner":5849,"drugs":5850,"secure":5851,"tests":5852,"reign":5853,"restored":5854,"photography":5855,"##gi":5856,"contributions":5857,"oklahoma":5858,"designer":5859,"disc":5860,"grin":5861,"seattle":5862,"robin":5863,"paused":5864,"atlanta":5865,"unusual":5866,"##gate":5867,"praised":5868,"las":5869,"laughing":5870,"satellite":5871,"hungary":5872,"visiting":5873,"##sky":5874,"interesting":5875,"factors":5876,"deck":5877,"poems":5878,"norman":5879,"##water":5880,"stuck":5881,"speaker":5882,"rifle":5883,"domain":5884,"premiered":5885,"##her":5886,"dc":5887,"comics":5888,"actors":5889,"01":5890,"reputation":5891,"eliminated":5892,"8th":5893,"ceiling":5894,"prisoners":5895,"script":5896,"##nce":5897,"leather":5898,"austin":5899,"mississippi":5900,"rapidly":5901,"admiral":5902,"parallel":5903,"charlotte":5904,"guilty":5905,"tools":5906,"gender":5907,"divisions":5908,"fruit":5909,"##bs":5910,"laboratory":5911,"nelson":5912,"fantasy":5913,"marry":5914,"rapid":5915,"aunt":5916,"tribe":5917,"requirements":5918,"aspects":5919,"suicide":5920,"amongst":5921,"adams":5922,"bone":5923,"ukraine":5924,"abc":5925,"kick":5926,"sees":5927,"edinburgh":5928,"clothing":5929,"column":5930,"rough":5931,"gods":5932,"hunting":5933,"broadway":5934,"gathered":5935,"concerns":5936,"##ek":5937,"spending":5938,"ty":5939,"12th":5940,"snapped":5941,"requires":5942,"solar":5943,"bones":5944,"cavalry":5945,"##tta":5946,"iowa":5947,"drinking":5948,"waste":5949,"index":5950,"franklin":5951,"charity":5952,"thompson":5953,"stewart":5954,"tip":5955,"flash":5956,"landscape":5957,"friday":5958,"enjoy":5959,"singh":5960,"poem":5961,"listening":5962,"##back":5963,"eighth":5964,"fred":5965,"differences":5966,"adapted":5967,"bomb":5968,"ukrainian":5969,"surgery":5970,"corporate":5971,"masters":5972,"anywhere":5973,"##more":5974,"waves":5975,"odd":5976,"sean":5977,"portugal":5978,"orleans":5979,"dick":5980,"debate":5981,"kent":5982,"eating":5983,"puerto":5984,"cleared":5985,"expect":5987,"cinema":5988,"guitarist":5990,"blocks":5991,"electrical":5992,"agree":5993,"involving":5994,"depth":5995,"dying":5996,"panel":5997,"struggle":5998,"##ged":5999,"peninsula":6000,"adults":6001,"novels":6002,"emerged":6003,"vienna":6004,"metro":6005,"debuted":6006,"shoes":6007,"tamil":6008,"songwriter":6009,"meets":6010,"prove":6011,"beating":6012,"instance":6013,"heaven":6014,"scared":6015,"sending":6016,"marks":6017,"artistic":6018,"passage":6019,"superior":6020,"03":6021,"significantly":6022,"shopping":6023,"##tive":6024,"retained":6025,"##izing":6026,"malaysia":6027,"technique":6028,"cheeks":6029,"##ola":6030,"warren":6031,"maintenance":6032,"destroy":6033,"extreme":6034,"allied":6035,"appearing":6037,"##yn":6038,"fill":6039,"advice":6040,"alabama":6041,"qualifying":6042,"policies":6043,"cleveland":6044,"hat":6045,"battery":6046,"smart":6047,"authors":6048,"10th":6049,"soundtrack":6050,"acted":6051,"dated":6052,"lb":6053,"glance":6054,"equipped":6055,"coalition":6056,"funny":6057,"outer":6058,"ambassador":6059,"roy":6060,"possibility":6061,"couples":6062,"campbell":6063,"dna":6064,"loose":6065,"ethan":6066,"supplies":6067,"gonna":6069,"monster":6071,"##res":6072,"shake":6073,"agents":6074,"frequency":6075,"springs":6076,"dogs":6077,"practices":6078,"gang":6080,"plastic":6081,"easier":6082,"suggests":6083,"gulf":6084,"blade":6085,"exposed":6086,"colors":6087,"industries":6088,"markets":6089,"pan":6090,"nervous":6091,"electoral":6092,"charts":6093,"legislation":6094,"ownership":6095,"##idae":6096,"mac":6097,"appointment":6098,"shield":6099,"copy":6100,"assault":6101,"socialist":6102,"abbey":6103,"monument":6104,"license":6105,"throne":6106,"employment":6107,"jay":6108,"replacement":6110,"charter":6111,"cloud":6112,"powered":6113,"suffering":6114,"accounts":6115,"oak":6116,"connecticut":6117,"strongly":6118,"wright":6119,"colour":6120,"crystal":6121,"13th":6122,"context":6123,"welsh":6124,"networks":6125,"voiced":6126,"gabriel":6127,"jerry":6128,"##cing":6129,"forehead":6130,"mp":6131,"##ens":6132,"manage":6133,"schedule":6134,"totally":6135,"remix":6136,"##ii":6137,"forests":6138,"occupation":6139,"print":6140,"nicholas":6141,"brazilian":6142,"strategic":6143,"vampires":6144,"engineers":6145,"roots":6147,"seek":6148,"correct":6149,"instrumental":6150,"und":6151,"alfred":6152,"backed":6153,"hop":6154,"##des":6155,"stanley":6156,"robinson":6157,"traveled":6158,"wayne":6159,"welcome":6160,"austrian":6161,"achieve":6162,"exit":6164,"rates":6165,"strip":6167,"whereas":6168,"##cs":6169,"sing":6170,"deeply":6171,"adventure":6172,"bobby":6173,"rick":6174,"jamie":6175,"careful":6176,"components":6177,"cap":6178,"useful":6179,"personality":6180,"knee":6181,"##shi":6182,"pushing":6183,"hosts":6184,"02":6185,"protest":6186,"ca":6187,"ottoman":6188,"symphony":6189,"##sis":6190,"boundary":6192,"processes":6194,"considering":6195,"considerable":6196,"tons":6197,"##work":6198,"##ft":6199,"##nia":6200,"cooper":6201,"trading":6202,"dear":6203,"conduct":6204,"illegal":6206,"apple":6207,"revolutionary":6208,"holiday":6209,"definition":6210,"harder":6211,"##van":6212,"jacob":6213,"circumstances":6214,"destruction":6215,"##lle":6216,"popularity":6217,"grip":6218,"classified":6219,"liverpool":6220,"donald":6221,"baltimore":6222,"flows":6223,"seeking":6224,"honour":6225,"approval":6226,"mechanical":6228,"till":6229,"happening":6230,"statue":6231,"critic":6232,"increasingly":6233,"immediate":6234,"describe":6235,"commerce":6236,"stare":6237,"##ster":6238,"indonesia":6239,"meat":6240,"rounds":6241,"boats":6242,"baker":6243,"orthodox":6244,"depression":6245,"formally":6246,"worn":6247,"naked":6248,"claire":6249,"muttered":6250,"sentence":6251,"11th":6252,"emily":6253,"document":6254,"criticism":6256,"wished":6257,"vessel":6258,"spiritual":6259,"bent":6260,"virgin":6261,"parker":6262,"minimum":6263,"murray":6264,"lunch":6265,"danny":6266,"printed":6267,"compilation":6268,"keyboards":6269,"false":6270,"blow":6271,"belonged":6272,"raising":6274,"cutting":6276,"##board":6277,"pittsburgh":6278,"##up":6279,"9th":6280,"shadows":6281,"hated":6283,"indigenous":6284,"jon":6285,"15th":6286,"barry":6287,"scholar":6288,"ah":6289,"##zer":6290,"oliver":6291,"##gy":6292,"stick":6293,"susan":6294,"meetings":6295,"attracted":6296,"spell":6297,"romantic":6298,"##ver":6299,"ye":6300,"photo":6302,"demanded":6303,"customers":6304,"##ac":6305,"logan":6307,"revival":6308,"keys":6309,"modified":6310,"commanded":6311,"jeans":6312,"##ious":6313,"upset":6314,"raw":6315,"phil":6316,"detective":6317,"hiding":6318,"resident":6319,"vincent":6320,"##bly":6321,"experiences":6322,"diamond":6323,"defeating":6324,"coverage":6325,"lucas":6326,"external":6327,"parks":6328,"franchise":6329,"helen":6330,"bible":6331,"successor":6332,"percussion":6333,"celebrated":6334,"il":6335,"lift":6336,"profile":6337,"clan":6338,"romania":6339,"##ied":6340,"mills":6341,"##su":6342,"nobody":6343,"achievement":6344,"shrugged":6345,"fault":6346,"rhythm":6348,"initiative":6349,"breakfast":6350,"carbon":6351,"lasted":6354,"violent":6355,"wound":6357,"ken":6358,"killer":6359,"gradually":6360,"filmed":6361,"°c":6362,"dollars":6363,"processing":6364,"remove":6366,"criticized":6367,"guests":6368,"sang":6369,"chemistry":6370,"##vin":6371,"legislature":6372,"disney":6373,"##bridge":6374,"uniform":6375,"escaped":6376,"integrated":6377,"proposal":6378,"purple":6379,"denied":6380,"liquid":6381,"karl":6382,"influential":6383,"morris":6384,"nights":6385,"stones":6386,"intense":6387,"experimental":6388,"twisted":6389,"##ld":6392,"pace":6393,"nazi":6394,"mitchell":6395,"ny":6396,"blind":6397,"reporter":6398,"newspapers":6399,"14th":6400,"centers":6401,"burn":6402,"basin":6403,"forgotten":6404,"surviving":6405,"filed":6406,"collections":6407,"monastery":6408,"losses":6409,"manual":6410,"couch":6411,"description":6412,"appropriate":6413,"merely":6414,"tag":6415,"missions":6416,"sebastian":6417,"restoration":6418,"replacing":6419,"triple":6420,"elder":6422,"julia":6423,"warriors":6424,"benjamin":6425,"julian":6426,"convinced":6427,"stronger":6428,"amazing":6429,"declined":6430,"versus":6431,"merchant":6432,"happens":6433,"output":6434,"finland":6435,"bare":6436,"barbara":6437,"absence":6438,"ignored":6439,"dawn":6440,"injuries":6441,"##port":6442,"producers":6443,"##ram":6444,"luis":6446,"##ities":6447,"kw":6448,"admit":6449,"expensive":6450,"electricity":6451,"nba":6452,"exception":6453,"symbol":6454,"##ving":6455,"ladies":6456,"shower":6457,"sheriff":6458,"characteristics":6459,"##je":6460,"aimed":6461,"button":6462,"ratio":6463,"effectively":6464,"summit":6465,"angle":6466,"jury":6467,"bears":6468,"foster":6469,"vessels":6470,"pants":6471,"executed":6472,"evans":6473,"dozen":6474,"advertising":6475,"kicked":6476,"patrol":6477,"competitions":6479,"lifetime":6480,"principles":6481,"athletics":6482,"##logy":6483,"birmingham":6484,"sponsored":6485,"rob":6487,"nomination":6488,"acoustic":6490,"##sm":6491,"creature":6492,"longest":6493,"##tra":6494,"credits":6495,"harbor":6496,"dust":6497,"josh":6498,"##so":6499,"territories":6500,"milk":6501,"infrastructure":6502,"completion":6503,"thailand":6504,"indians":6505,"leon":6506,"archbishop":6507,"##sy":6508,"assist":6509,"pitch":6510,"blake":6511,"arrangement":6512,"girlfriend":6513,"serbian":6514,"operational":6515,"hence":6516,"sad":6517,"scent":6518,"fur":6519,"dj":6520,"sessions":6521,"hp":6522,"refer":6523,"rarely":6524,"##ora":6525,"exists":6526,"##ten":6528,"scientists":6529,"dirty":6530,"penalty":6531,"burst":6532,"portrait":6533,"seed":6534,"pole":6536,"limits":6537,"rival":6538,"stable":6540,"alpha":6541,"grave":6542,"constitutional":6543,"alcohol":6544,"arrest":6545,"flower":6546,"mystery":6547,"devil":6548,"architectural":6549,"relationships":6550,"greatly":6551,"habitat":6552,"##istic":6553,"larry":6554,"progressive":6555,"remote":6556,"cotton":6557,"##ics":6558,"##ok":6559,"preserved":6560,"reaches":6561,"##ming":6562,"cited":6563,"vast":6565,"scholarship":6566,"decisions":6567,"cbs":6568,"joy":6569,"teach":6570,"editions":6572,"knocked":6573,"eve":6574,"searching":6575,"partly":6576,"participation":6577,"gap":6578,"animated":6579,"fate":6580,"excellent":6581,"##ett":6582,"na":6583,"alternate":6585,"saints":6586,"youngest":6587,"##ily":6588,"climbed":6589,"##ita":6590,"##tors":6591,"suggest":6592,"##ct":6593,"discussion":6594,"staying":6595,"choir":6596,"lakes":6597,"jacket":6598,"revenue":6599,"nevertheless":6600,"peaked":6601,"instrument":6602,"wondering":6603,"annually":6604,"managing":6605,"neil":6606,"signing":6608,"terry":6609,"##ice":6610,"apply":6611,"clinical":6612,"brooklyn":6613,"aim":6614,"catherine":6615,"fuck":6616,"farmers":6617,"figured":6618,"ninth":6619,"pride":6620,"hugh":6621,"evolution":6622,"ordinary":6623,"involvement":6624,"comfortable":6625,"shouted":6626,"tech":6627,"encouraged":6628,"taiwan":6629,"representation":6630,"sharing":6631,"##lia":6632,"##em":6633,"panic":6634,"exact":6635,"cargo":6636,"competing":6637,"fat":6638,"cried":6639,"1920s":6641,"occasions":6642,"pa":6643,"cabin":6644,"borders":6645,"utah":6646,"marcus":6647,"##isation":6648,"badly":6649,"muscles":6650,"##ance":6651,"victorian":6652,"transition":6653,"warner":6654,"bet":6655,"permission":6656,"##rin":6657,"slave":6658,"terrible":6659,"similarly":6660,"shares":6661,"seth":6662,"uefa":6663,"possession":6664,"medals":6665,"benefits":6666,"colleges":6667,"lowered":6668,"perfectly":6669,"mall":6670,"transit":6671,"##ye":6672,"##kar":6673,"publisher":6674,"##ened":6675,"harrison":6676,"deaths":6677,"elevation":6678,"##ae":6679,"asleep":6680,"machines":6681,"sigh":6682,"ash":6683,"hardly":6684,"argument":6685,"occasion":6686,"parent":6687,"leo":6688,"decline":6689,"contribution":6691,"##ua":6692,"concentration":6693,"opportunities":6695,"hispanic":6696,"guardian":6697,"extent":6698,"emotions":6699,"hips":6700,"mason":6701,"volumes":6702,"bloody":6703,"controversy":6704,"diameter":6705,"steady":6706,"mistake":6707,"phoenix":6708,"identify":6709,"violin":6710,"##sk":6711,"departure":6712,"richmond":6713,"spin":6714,"funeral":6715,"enemies":6716,"gear":6718,"literally":6719,"connor":6720,"random":6721,"sergeant":6722,"grab":6723,"confusion":6724,"transmission":6726,"informed":6727,"op":6728,"leaning":6729,"sacred":6730,"suspended":6731,"thinks":6732,"gates":6733,"portland":6734,"luck":6735,"agencies":6736,"yours":6737,"hull":6738,"expert":6739,"muscle":6740,"layer":6741,"practical":6742,"sculpture":6743,"jerusalem":6744,"latest":6745,"lloyd":6746,"statistics":6747,"deeper":6748,"recommended":6749,"warrior":6750,"arkansas":6751,"mess":6752,"supports":6753,"greg":6754,"eagle":6755,"recovered":6757,"rated":6758,"concerts":6759,"rushed":6760,"##ano":6761,"stops":6762,"eggs":6763,"files":6764,"premiere":6765,"keith":6766,"##vo":6767,"delhi":6768,"turner":6769,"pit":6770,"affair":6771,"belief":6772,"paint":6773,"##zing":6774,"mate":6775,"##ach":6776,"##ev":6777,"victim":6778,"##ology":6779,"withdrew":6780,"bonus":6781,"styles":6782,"fled":6783,"##ud":6784,"glasgow":6785,"technologies":6786,"funded":6787,"nbc":6788,"adaptation":6789,"##ata":6790,"portrayed":6791,"cooperation":6792,"supporters":6793,"judges":6794,"bernard":6795,"justin":6796,"hallway":6797,"ralph":6798,"##ick":6799,"graduating":6800,"controversial":6801,"distant":6802,"continental":6803,"spider":6804,"bite":6805,"##ho":6806,"recognize":6807,"intention":6808,"mixing":6809,"##ese":6810,"egyptian":6811,"bow":6812,"tourism":6813,"suppose":6814,"claiming":6815,"tiger":6816,"dominated":6817,"participants":6818,"vi":6819,"##ru":6820,"nurse":6821,"partially":6822,"tape":6823,"##rum":6824,"psychology":6825,"##rn":6826,"essential":6827,"touring":6828,"duo":6829,"voting":6830,"civilian":6831,"emotional":6832,"channels":6833,"##king":6834,"apparent":6835,"hebrew":6836,"tommy":6838,"carrier":6839,"intersection":6840,"beast":6841,"hudson":6842,"##gar":6843,"##zo":6844,"lab":6845,"nova":6846,"bench":6847,"discuss":6848,"costa":6849,"##ered":6850,"detailed":6851,"behalf":6852,"drivers":6853,"unfortunately":6854,"obtain":6855,"##lis":6856,"rocky":6857,"##dae":6858,"siege":6859,"friendship":6860,"honey":6861,"##rian":6862,"amy":6864,"hang":6865,"posted":6866,"governments":6867,"collins":6868,"respond":6869,"wildlife":6870,"preferred":6871,"operator":6872,"##po":6873,"laura":6874,"pregnant":6875,"videos":6876,"dennis":6877,"suspected":6878,"boots":6879,"instantly":6880,"weird":6881,"automatic":6882,"businessman":6883,"alleged":6884,"placing":6885,"throwing":6886,"ph":6887,"mood":6888,"perry":6890,"venue":6891,"jet":6892,"remainder":6893,"##lli":6894,"##ci":6895,"passion":6896,"biological":6897,"boyfriend":6898,"dirt":6900,"buffalo":6901,"ron":6902,"segment":6903,"fa":6904,"abuse":6905,"##era":6906,"genre":6907,"thrown":6908,"stroke":6909,"colored":6910,"stress":6911,"exercise":6912,"displayed":6913,"##gen":6914,"struggled":6915,"##tti":6916,"abroad":6917,"dramatic":6918,"wonderful":6919,"thereafter":6920,"madrid":6921,"component":6922,"widespread":6923,"##sed":6924,"tale":6925,"citizen":6926,"todd":6927,"monday":6928,"vancouver":6930,"overseas":6931,"forcing":6932,"crying":6933,"descent":6934,"##ris":6935,"discussed":6936,"substantial":6937,"ranks":6938,"regime":6939,"provinces":6941,"switch":6942,"drum":6943,"zane":6944,"ted":6945,"tribes":6946,"proof":6947,"lp":6948,"cream":6949,"researchers":6950,"volunteer":6951,"manor":6952,"silk":6953,"milan":6954,"donated":6955,"allies":6956,"venture":6957,"principle":6958,"delivery":6959,"enterprise":6960,"##ves":6961,"##ans":6962,"bars":6963,"traditionally":6964,"witch":6965,"reminded":6966,"copper":6967,"##uk":6968,"pete":6969,"inter":6970,"links":6971,"colin":6972,"grinned":6973,"elsewhere":6974,"competitive":6975,"frequent":6976,"##oy":6977,"scream":6978,"##hu":6979,"tension":6980,"texts":6981,"submarine":6982,"finnish":6983,"defending":6984,"defend":6985,"pat":6986,"detail":6987,"affiliated":6989,"stuart":6990,"themes":6991,"villa":6992,"periods":6993,"tool":6994,"belgian":6995,"ruling":6996,"crimes":6997,"answers":6998,"folded":6999,"licensed":7000,"resort":7001,"demolished":7002,"hans":7003,"lucy":7004,"lion":7006,"traded":7007,"photographs":7008,"writes":7009,"craig":7010,"##fa":7011,"trials":7012,"generated":7013,"beth":7014,"noble":7015,"debt":7016,"percentage":7017,"yorkshire":7018,"erected":7019,"ss":7020,"viewed":7021,"grades":7022,"confidence":7023,"ceased":7024,"islam":7025,"telephone":7026,"retail":7027,"##ible":7028,"chile":7029,"m²":7030,"roberts":7031,"sixteen":7032,"##ich":7033,"commented":7034,"hampshire":7035,"innocent":7036,"dual":7037,"pounds":7038,"checked":7039,"regulations":7040,"afghanistan":7041,"sung":7042,"rico":7043,"liberty":7044,"assets":7045,"bigger":7046,"options":7047,"angels":7048,"relegated":7049,"tribute":7050,"wells":7051,"attending":7052,"leaf":7053,"##yan":7054,"butler":7055,"romanian":7056,"forum":7057,"monthly":7058,"lisa":7059,"patterns":7060,"gmina":7061,"##tory":7062,"madison":7063,"hurricane":7064,"rev":7065,"##ians":7066,"bristol":7067,"##ula":7068,"elite":7069,"valuable":7070,"disaster":7071,"democracy":7072,"awareness":7073,"germans":7074,"freyja":7075,"##ins":7076,"loop":7077,"absolutely":7078,"paying":7079,"populations":7080,"maine":7081,"sole":7082,"prayer":7083,"spencer":7084,"releases":7085,"doorway":7086,"bull":7087,"##ani":7088,"lover":7089,"midnight":7090,"conclusion":7091,"##sson":7092,"thirteen":7093,"lily":7094,"mediterranean":7095,"##lt":7096,"nhl":7097,"proud":7098,"sample":7099,"##hill":7100,"drummer":7101,"guinea":7102,"##ova":7103,"murphy":7104,"climb":7105,"##ston":7106,"instant":7107,"attributed":7108,"horn":7109,"ain":7110,"railways":7111,"steven":7112,"##ao":7113,"autumn":7114,"ferry":7115,"opponent":7116,"root":7117,"traveling":7118,"secured":7119,"corridor":7120,"stretched":7121,"tales":7122,"sheet":7123,"trinity":7124,"cattle":7125,"helps":7126,"indicates":7127,"manhattan":7128,"murdered":7129,"fitted":7130,"gentle":7132,"grandmother":7133,"mines":7134,"shocked":7135,"vegas":7136,"produces":7137,"##light":7138,"caribbean":7139,"##ou":7140,"belong":7141,"continuous":7142,"desperate":7143,"drunk":7144,"historically":7145,"trio":7146,"waved":7147,"raf":7148,"dealing":7149,"nathan":7150,"bat":7151,"murmured":7152,"interrupted":7153,"residing":7154,"scientist":7155,"pioneer":7156,"harold":7157,"aaron":7158,"##net":7159,"delta":7160,"attempting":7161,"minority":7162,"mini":7163,"believes":7164,"chorus":7165,"tend":7166,"lots":7167,"eyed":7168,"indoor":7169,"load":7170,"shots":7171,"updated":7172,"jail":7173,"##llo":7174,"concerning":7175,"connecting":7176,"wealth":7177,"##ved":7178,"slaves":7179,"arrive":7180,"rangers":7181,"sufficient":7182,"rebuilt":7183,"##wick":7184,"cardinal":7185,"flood":7186,"muhammad":7187,"whenever":7188,"relation":7189,"runners":7190,"moral":7191,"repair":7192,"viewers":7193,"arriving":7194,"revenge":7195,"punk":7196,"assisted":7197,"bath":7198,"fairly":7199,"breathe":7200,"lists":7201,"innings":7202,"illustrated":7203,"whisper":7204,"nearest":7205,"voters":7206,"clinton":7207,"ties":7208,"ultimate":7209,"screamed":7210,"beijing":7211,"lions":7212,"andre":7213,"fictional":7214,"gathering":7215,"comfort":7216,"radar":7217,"suitable":7218,"dismissed":7219,"hms":7220,"ban":7221,"pine":7222,"wrist":7223,"atmosphere":7224,"voivodeship":7225,"bid":7226,"timber":7227,"##ned":7228,"##nan":7229,"giants":7230,"##ane":7231,"cameron":7232,"recovery":7233,"uss":7234,"identical":7235,"categories":7236,"switched":7237,"serbia":7238,"laughter":7239,"noah":7240,"ensemble":7241,"therapy":7242,"peoples":7243,"touching":7244,"##off":7245,"locally":7246,"pearl":7247,"platforms":7248,"everywhere":7249,"ballet":7250,"tables":7251,"lanka":7252,"herbert":7253,"outdoor":7254,"toured":7255,"derek":7256,"spaces":7258,"contested":7259,"swept":7260,"exclusive":7262,"slight":7263,"connections":7264,"##dra":7265,"winds":7266,"prisoner":7267,"collective":7268,"bangladesh":7269,"tube":7270,"publicly":7271,"wealthy":7272,"thai":7273,"##ys":7274,"isolated":7275,"select":7276,"##ric":7277,"insisted":7278,"pen":7279,"fortune":7280,"ticket":7281,"spotted":7282,"reportedly":7283,"animation":7284,"enforcement":7285,"tanks":7286,"decides":7288,"wider":7289,"lowest":7290,"owen":7291,"##time":7292,"nod":7293,"hitting":7294,"##hn":7295,"gregory":7296,"furthermore":7297,"magazines":7298,"fighters":7299,"solutions":7300,"##ery":7301,"pointing":7302,"requested":7303,"peru":7304,"reed":7305,"chancellor":7306,"knights":7307,"mask":7308,"worker":7309,"eldest":7310,"flames":7311,"reduction":7312,"volunteers":7314,"##tis":7315,"reporting":7316,"##hl":7317,"wire":7318,"advisory":7319,"endemic":7320,"origins":7321,"settlers":7322,"pursue":7323,"knock":7324,"consumer":7325,"eu":7327,"compound":7328,"creatures":7329,"mansion":7330,"sentenced":7331,"ivan":7332,"deployed":7333,"guitars":7334,"frowned":7335,"involves":7336,"mechanism":7337,"kilometers":7338,"perspective":7339,"shops":7340,"maps":7341,"terminus":7342,"duncan":7343,"alien":7344,"fist":7345,"bridges":7346,"##pers":7347,"heroes":7348,"fed":7349,"derby":7350,"swallowed":7351,"##ros":7352,"patent":7353,"sara":7354,"illness":7355,"characterized":7356,"adventures":7357,"slide":7358,"hawaii":7359,"jurisdiction":7360,"##op":7361,"organised":7362,"##side":7363,"adelaide":7364,"walks":7365,"biology":7366,"se":7367,"##ties":7368,"rogers":7369,"swing":7370,"tightly":7371,"boundaries":7372,"##rie":7373,"prepare":7374,"implementation":7375,"stolen":7376,"##sha":7377,"certified":7378,"colombia":7379,"edwards":7380,"garage":7381,"##mm":7382,"recalled":7383,"##ball":7384,"rage":7385,"harm":7386,"nigeria":7387,"breast":7388,"##ren":7389,"furniture":7390,"pupils":7391,"settle":7392,"##lus":7393,"cuba":7394,"balls":7395,"client":7396,"alaska":7397,"21st":7398,"linear":7399,"thrust":7400,"celebration":7401,"latino":7402,"genetic":7403,"terror":7404,"##cia":7405,"##ening":7406,"lightning":7407,"fee":7408,"witness":7409,"lodge":7410,"establishing":7411,"skull":7412,"##ique":7413,"earning":7414,"hood":7415,"##ei":7416,"rebellion":7417,"wang":7418,"sporting":7419,"warned":7420,"missile":7421,"devoted":7422,"activist":7423,"porch":7424,"worship":7425,"fourteen":7426,"package":7427,"decorated":7429,"##shire":7430,"housed":7431,"##ock":7432,"chess":7433,"sailed":7434,"doctors":7435,"oscar":7436,"joan":7437,"treat":7438,"garcia":7439,"harbour":7440,"jeremy":7441,"##ire":7442,"traditions":7443,"dominant":7444,"jacques":7445,"##gon":7446,"##wan":7447,"relocated":7448,"amendment":7450,"sized":7451,"companion":7452,"simultaneously":7453,"volleyball":7454,"spun":7455,"acre":7456,"increases":7457,"stopping":7458,"loves":7459,"belongs":7460,"affect":7461,"drafted":7462,"tossed":7463,"scout":7464,"battles":7465,"filming":7467,"shoved":7468,"munich":7469,"tenure":7470,"vertical":7471,"romance":7472,"pc":7473,"##cher":7474,"argue":7475,"##ical":7476,"craft":7477,"ranging":7478,"www":7479,"opens":7480,"honest":7481,"tyler":7482,"yesterday":7483,"virtual":7484,"##let":7485,"muslims":7486,"reveal":7487,"snake":7488,"immigrants":7489,"radical":7490,"screaming":7491,"speakers":7492,"firing":7493,"saving":7494,"belonging":7495,"ease":7496,"lighting":7497,"prefecture":7498,"blame":7499,"farmer":7500,"hungry":7501,"grows":7502,"rubbed":7503,"beam":7504,"sur":7505,"subsidiary":7506,"##cha":7507,"armenian":7508,"sao":7509,"dropping":7510,"conventional":7511,"##fer":7512,"microsoft":7513,"reply":7514,"qualify":7515,"spots":7516,"sweat":7518,"festivals":7519,"##ken":7520,"immigration":7521,"physician":7522,"discover":7523,"exposure":7524,"sandy":7525,"explanation":7526,"isaac":7527,"implemented":7528,"##fish":7529,"hart":7530,"initiated":7531,"connect":7532,"stakes":7533,"presents":7534,"heights":7535,"householder":7536,"pleased":7537,"tourist":7538,"regardless":7539,"slip":7540,"closest":7541,"##ction":7542,"surely":7543,"sultan":7544,"brings":7545,"riley":7546,"preparation":7547,"aboard":7548,"slammed":7549,"baptist":7550,"experiment":7551,"ongoing":7552,"interstate":7553,"organic":7554,"playoffs":7555,"##ika":7556,"##tar":7559,"hindu":7560,"error":7561,"tours":7562,"tier":7563,"plenty":7564,"arrangements":7565,"talks":7566,"trapped":7567,"excited":7568,"sank":7569,"ho":7570,"athens":7571,"denver":7573,"welfare":7574,"suburb":7575,"athletes":7576,"trick":7577,"diverse":7578,"belly":7579,"exclusively":7580,"yelled":7581,"##med":7583,"conversion":7584,"##ette":7585,"internationally":7587,"computers":7588,"conductor":7589,"abilities":7590,"sensitive":7591,"hello":7592,"dispute":7593,"measured":7594,"globe":7595,"rocket":7596,"prices":7597,"amsterdam":7598,"flights":7599,"tigers":7600,"inn":7601,"municipalities":7602,"emotion":7603,"references":7604,"3d":7605,"##mus":7606,"explains":7607,"airlines":7608,"manufactured":7609,"pm":7610,"archaeological":7611,"interpretation":7613,"devon":7614,"comment":7615,"##ites":7616,"settlements":7617,"kissing":7618,"absolute":7619,"improvement":7620,"suite":7621,"impressed":7622,"barcelona":7623,"sullivan":7624,"jefferson":7625,"towers":7626,"jesse":7627,"julie":7628,"##tin":7629,"##lu":7630,"grandson":7631,"hi":7632,"gauge":7633,"regard":7634,"rings":7635,"interviews":7636,"trace":7637,"raymond":7638,"thumb":7639,"departments":7640,"burns":7641,"serial":7642,"bulgarian":7643,"scores":7644,"demonstrated":7645,"##ix":7646,"kyle":7648,"alberta":7649,"underneath":7650,"romanized":7651,"##ward":7652,"relieved":7653,"acquisition":7654,"phrase":7655,"cliff":7656,"reveals":7657,"han":7658,"cuts":7659,"merger":7660,"custom":7661,"##dar":7662,"nee":7663,"gilbert":7664,"graduation":7665,"##nts":7666,"assessment":7667,"cafe":7668,"difficulty":7669,"demands":7670,"swung":7671,"democrat":7672,"jennifer":7673,"commons":7674,"1940s":7675,"grove":7676,"##yo":7677,"completing":7678,"focuses":7679,"sum":7680,"substitute":7681,"bearing":7682,"stretch":7683,"reception":7684,"##py":7685,"reflected":7686,"essentially":7687,"destination":7688,"pairs":7689,"##ched":7690,"survival":7691,"resource":7692,"##bach":7693,"promoting":7694,"doubles":7695,"messages":7696,"tear":7697,"##down":7698,"##fully":7699,"parade":7700,"florence":7701,"harvey":7702,"incumbent":7703,"partial":7704,"framework":7705,"pedro":7707,"frozen":7708,"procedure":7709,"olivia":7710,"controls":7711,"##mic":7712,"shelter":7713,"personally":7714,"temperatures":7715,"##od":7716,"brisbane":7717,"tested":7718,"sits":7719,"marble":7720,"comprehensive":7721,"oxygen":7722,"leonard":7723,"##kov":7724,"inaugural":7725,"iranian":7726,"referring":7727,"quarters":7728,"attitude":7729,"##ivity":7730,"mainstream":7731,"lined":7732,"mars":7733,"dakota":7734,"norfolk":7735,"unsuccessful":7736,"##°":7737,"explosion":7738,"helicopter":7739,"congressional":7740,"##sing":7741,"inspector":7742,"bitch":7743,"seal":7744,"departed":7745,"divine":7746,"##ters":7747,"coaching":7748,"examination":7749,"punishment":7750,"manufacturer":7751,"sink":7752,"columns":7753,"unincorporated":7754,"signals":7755,"nevada":7756,"squeezed":7757,"dylan":7758,"dining":7759,"photos":7760,"martial":7761,"manuel":7762,"eighteen":7763,"elevator":7764,"brushed":7765,"plates":7766,"ministers":7767,"ivy":7768,"congregation":7769,"##len":7770,"slept":7771,"specialized":7772,"taxes":7773,"curve":7774,"restricted":7775,"negotiations":7776,"likes":7777,"statistical":7778,"arnold":7779,"inspiration":7780,"execution":7781,"bold":7782,"intermediate":7783,"significance":7784,"margin":7785,"ruler":7786,"wheels":7787,"gothic":7788,"intellectual":7789,"dependent":7790,"listened":7791,"eligible":7792,"buses":7793,"widow":7794,"syria":7795,"earn":7796,"cincinnati":7797,"collapsed":7798,"recipient":7799,"secrets":7800,"accessible":7801,"philippine":7802,"maritime":7803,"goddess":7804,"clerk":7805,"surrender":7806,"breaks":7807,"playoff":7808,"database":7809,"##ified":7810,"##lon":7811,"ideal":7812,"beetle":7813,"aspect":7814,"soap":7815,"regulation":7816,"strings":7817,"expand":7818,"anglo":7819,"shorter":7820,"crosses":7821,"retreat":7822,"tough":7823,"coins":7824,"wallace":7825,"directions":7826,"pressing":7827,"##oon":7828,"shipping":7829,"locomotives":7830,"comparison":7831,"topics":7832,"nephew":7833,"##mes":7834,"distinction":7835,"honors":7836,"travelled":7837,"sierra":7838,"ibn":7839,"##over":7840,"fortress":7841,"sa":7842,"recognised":7843,"carved":7844,"clients":7846,"##dan":7847,"intent":7848,"##mar":7849,"coaches":7850,"describing":7851,"bread":7852,"##ington":7853,"beaten":7854,"northwestern":7855,"##ona":7856,"merit":7857,"youtube":7858,"collapse":7859,"challenges":7860,"em":7861,"historians":7862,"objective":7863,"submitted":7864,"virus":7865,"attacking":7866,"drake":7867,"assume":7868,"##ere":7869,"diseases":7870,"marc":7871,"stem":7872,"leeds":7873,"##cus":7874,"##ab":7875,"farming":7876,"glasses":7877,"##lock":7878,"visits":7879,"nowhere":7880,"fellowship":7881,"relevant":7882,"carries":7883,"restaurants":7884,"experiments":7885,"constantly":7887,"bases":7888,"targets":7889,"shah":7890,"tenth":7891,"opponents":7892,"verse":7893,"territorial":7894,"##ira":7895,"writings":7896,"corruption":7897,"##hs":7898,"instruction":7899,"inherited":7900,"reverse":7901,"emphasis":7902,"##vic":7903,"employee":7904,"arch":7905,"keeps":7906,"rabbi":7907,"watson":7908,"payment":7909,"uh":7910,"##ala":7911,"nancy":7912,"##tre":7913,"venice":7914,"fastest":7915,"sexy":7916,"banned":7917,"adrian":7918,"properly":7919,"ruth":7920,"touchdown":7921,"dollar":7922,"boards":7923,"metre":7924,"circles":7925,"edges":7926,"favour":7927,"comments":7928,"ok":7929,"travels":7930,"liberation":7931,"scattered":7932,"firmly":7933,"##ular":7934,"holland":7935,"permitted":7936,"diesel":7937,"kenya":7938,"den":7939,"originated":7940,"##ral":7941,"demons":7942,"resumed":7943,"dragged":7944,"rider":7945,"##rus":7946,"servant":7947,"blinked":7948,"extend":7949,"torn":7950,"##ias":7951,"##sey":7952,"input":7953,"meal":7954,"everybody":7955,"cylinder":7956,"kinds":7957,"camps":7958,"##fe":7959,"bullet":7960,"logic":7961,"##wn":7962,"croatian":7963,"evolved":7964,"healthy":7965,"fool":7966,"chocolate":7967,"wise":7968,"preserve":7969,"pradesh":7970,"##ess":7971,"respective":7972,"##ew":7974,"chicken":7975,"artificial":7976,"gross":7977,"corresponding":7978,"convicted":7979,"cage":7980,"caroline":7981,"dialogue":7982,"##dor":7983,"narrative":7984,"stranger":7985,"mario":7986,"br":7987,"christianity":7988,"failing":7989,"trent":7990,"commanding":7991,"buddhist":7992,"maurice":7994,"focusing":7995,"yale":7996,"bike":7997,"altitude":7998,"##ering":7999,"mouse":8000,"revised":8001,"##sley":8002,"veteran":8003,"##ig":8004,"pulls":8005,"theology":8006,"crashed":8007,"campaigns":8008,"legion":8009,"##ability":8010,"drag":8011,"excellence":8012,"customer":8013,"cancelled":8014,"intensity":8015,"excuse":8016,"##lar":8017,"liga":8018,"participating":8019,"contributing":8020,"printing":8021,"##burn":8022,"variable":8023,"##rk":8024,"curious":8025,"bin":8026,"legacy":8027,"renaissance":8028,"##my":8029,"symptoms":8030,"binding":8031,"vocalist":8032,"dancer":8033,"##nie":8034,"grammar":8035,"gospel":8036,"democrats":8037,"ya":8038,"enters":8039,"sc":8040,"diplomatic":8041,"hitler":8042,"##ser":8043,"clouds":8044,"mathematical":8045,"quit":8046,"defended":8047,"oriented":8048,"##heim":8049,"fundamental":8050,"hardware":8051,"impressive":8052,"equally":8053,"convince":8054,"confederate":8055,"guilt":8056,"chuck":8057,"sliding":8058,"##ware":8059,"magnetic":8060,"narrowed":8061,"petersburg":8062,"bulgaria":8063,"otto":8064,"phd":8065,"skill":8066,"##ama":8067,"reader":8068,"hopes":8069,"pitcher":8070,"reservoir":8071,"hearts":8072,"automatically":8073,"expecting":8074,"mysterious":8075,"bennett":8076,"extensively":8077,"imagined":8078,"seeds":8079,"monitor":8080,"fix":8081,"##ative":8082,"journalism":8083,"struggling":8084,"signature":8085,"ranch":8086,"encounter":8087,"photographer":8088,"observation":8089,"protests":8090,"##pin":8091,"influences":8092,"##hr":8093,"calendar":8094,"##all":8095,"cruz":8096,"croatia":8097,"locomotive":8098,"hughes":8099,"naturally":8100,"shakespeare":8101,"basement":8102,"hook":8103,"uncredited":8104,"faded":8105,"theories":8106,"approaches":8107,"dare":8108,"phillips":8109,"filling":8110,"fury":8111,"obama":8112,"##ain":8113,"efficient":8114,"arc":8115,"deliver":8116,"min":8117,"raid":8118,"breeding":8119,"inducted":8120,"leagues":8121,"efficiency":8122,"axis":8123,"montana":8124,"eagles":8125,"##ked":8126,"supplied":8127,"instructions":8128,"karen":8129,"picking":8130,"indicating":8131,"trap":8132,"anchor":8133,"practically":8134,"christians":8135,"tomb":8136,"vary":8137,"occasional":8138,"electronics":8139,"lords":8140,"readers":8141,"newcastle":8142,"faint":8143,"innovation":8144,"collect":8145,"situations":8146,"engagement":8147,"claude":8149,"mixture":8150,"##feld":8151,"peer":8152,"tissue":8153,"logo":8154,"lean":8155,"##ration":8156,"°f":8157,"floors":8158,"##ven":8159,"architects":8160,"reducing":8161,"##our":8162,"##ments":8163,"rope":8164,"ottawa":8166,"##har":8167,"samples":8168,"banking":8169,"declaration":8170,"proteins":8171,"resignation":8172,"francois":8173,"saudi":8174,"advocate":8175,"exhibited":8176,"armor":8177,"twins":8178,"divorce":8179,"##ras":8180,"abraham":8181,"reviewed":8182,"jo":8183,"temporarily":8184,"matrix":8185,"physically":8186,"pulse":8187,"curled":8188,"##ena":8189,"difficulties":8190,"bengal":8191,"usage":8192,"##ban":8193,"annie":8194,"riders":8195,"certificate":8196,"##pi":8197,"holes":8198,"warsaw":8199,"distinctive":8200,"jessica":8201,"##mon":8202,"mutual":8203,"customs":8205,"circular":8206,"eugene":8207,"removal":8208,"loaded":8209,"mere":8210,"vulnerable":8211,"depicted":8212,"generations":8213,"dame":8214,"heir":8215,"enormous":8216,"lightly":8217,"climbing":8218,"pitched":8219,"lessons":8220,"pilots":8221,"nepal":8222,"ram":8223,"google":8224,"preparing":8225,"brad":8226,"louise":8227,"renowned":8228,"##₂":8229,"liam":8230,"##ably":8231,"plaza":8232,"shaw":8233,"sophie":8234,"brilliant":8235,"bills":8236,"##bar":8237,"##nik":8238,"fucking":8239,"mainland":8240,"server":8241,"pleasant":8242,"seized":8243,"veterans":8244,"jerked":8245,"fail":8246,"beta":8247,"brush":8248,"radiation":8249,"stored":8250,"warmth":8251,"southeastern":8252,"nate":8253,"sin":8254,"raced":8255,"berkeley":8256,"joke":8257,"athlete":8258,"designation":8259,"trunk":8260,"##low":8261,"roland":8262,"qualification":8263,"archives":8264,"heels":8265,"artwork":8266,"receives":8267,"judicial":8268,"reserves":8269,"##bed":8270,"woke":8271,"installation":8272,"abu":8273,"floating":8274,"fake":8275,"lesser":8276,"excitement":8277,"interface":8278,"concentrated":8279,"addressed":8280,"characteristic":8281,"amanda":8282,"saxophone":8283,"monk":8284,"auto":8285,"##bus":8286,"releasing":8287,"egg":8288,"dies":8289,"interaction":8290,"defender":8291,"ce":8292,"outbreak":8293,"glory":8294,"loving":8295,"##bert":8296,"sequel":8297,"consciousness":8298,"http":8299,"awake":8300,"ski":8301,"enrolled":8302,"##ress":8303,"handling":8304,"rookie":8305,"brow":8306,"somebody":8307,"biography":8308,"warfare":8309,"amounts":8310,"contracts":8311,"presentation":8312,"fabric":8313,"dissolved":8314,"challenged":8315,"meter":8316,"psychological":8317,"lt":8318,"elevated":8319,"rally":8320,"accurate":8321,"##tha":8322,"hospitals":8323,"undergraduate":8324,"specialist":8325,"venezuela":8326,"exhibit":8327,"shed":8328,"nursing":8329,"protestant":8330,"fluid":8331,"structural":8332,"footage":8333,"jared":8334,"consistent":8335,"prey":8336,"##ska":8337,"succession":8338,"reflect":8339,"exile":8340,"lebanon":8341,"wiped":8342,"suspect":8343,"shanghai":8344,"resting":8345,"integration":8346,"preservation":8347,"marvel":8348,"variant":8349,"pirates":8350,"sheep":8351,"rounded":8352,"capita":8353,"sailing":8354,"colonies":8355,"manuscript":8356,"deemed":8357,"variations":8358,"clarke":8359,"functional":8360,"emerging":8361,"boxing":8362,"relaxed":8363,"curse":8364,"azerbaijan":8365,"heavyweight":8366,"nickname":8367,"editorial":8368,"rang":8369,"grid":8370,"tightened":8371,"earthquake":8372,"flashed":8373,"miguel":8374,"rushing":8375,"##ches":8376,"improvements":8377,"boxes":8378,"brooks":8379,"consumption":8381,"molecular":8382,"felix":8383,"societies":8384,"repeatedly":8385,"variation":8386,"aids":8387,"civic":8388,"graphics":8389,"professionals":8390,"realm":8391,"autonomous":8392,"receiver":8393,"delayed":8394,"workshop":8395,"militia":8396,"chairs":8397,"trump":8398,"canyon":8399,"##point":8400,"harsh":8401,"extending":8402,"lovely":8403,"happiness":8404,"##jan":8405,"stake":8406,"eyebrows":8407,"embassy":8408,"wellington":8409,"hannah":8410,"##ella":8411,"sony":8412,"corners":8413,"bishops":8414,"swear":8415,"cloth":8416,"contents":8417,"xi":8418,"namely":8419,"commenced":8420,"stanford":8422,"nashville":8423,"courage":8424,"graphic":8425,"commitment":8426,"garrison":8427,"##bin":8428,"hamlet":8429,"clearing":8430,"rebels":8431,"attraction":8432,"literacy":8433,"cooking":8434,"ruins":8435,"temples":8436,"jenny":8437,"humanity":8438,"celebrate":8439,"hasn":8440,"freight":8441,"sixty":8442,"rebel":8443,"bastard":8444,"##art":8445,"newton":8446,"##ada":8447,"deer":8448,"##ges":8449,"##ching":8450,"smiles":8451,"delaware":8452,"singers":8453,"##ets":8454,"approaching":8455,"assists":8456,"flame":8457,"##ph":8458,"boulevard":8459,"barrel":8460,"planted":8461,"##ome":8462,"pursuit":8463,"##sia":8464,"consequences":8465,"posts":8466,"shallow":8467,"invitation":8468,"rode":8469,"depot":8470,"ernest":8471,"kane":8472,"rod":8473,"concepts":8474,"preston":8475,"topic":8476,"chambers":8477,"striking":8478,"blast":8479,"arrives":8480,"descendants":8481,"montgomery":8482,"ranges":8483,"worlds":8484,"##lay":8485,"##ari":8486,"span":8487,"chaos":8488,"praise":8489,"##ag":8490,"fewer":8491,"sanctuary":8493,"mud":8494,"fbi":8495,"##ions":8496,"programmes":8497,"maintaining":8498,"unity":8499,"harper":8500,"bore":8501,"handsome":8502,"closure":8503,"tournaments":8504,"thunder":8505,"nebraska":8506,"linda":8507,"facade":8508,"puts":8509,"satisfied":8510,"argentine":8511,"dale":8512,"cork":8513,"dome":8514,"panama":8515,"##yl":8516,"tasks":8518,"experts":8519,"##ates":8520,"feeding":8521,"equation":8522,"##las":8523,"##ida":8524,"##tu":8525,"engage":8526,"bryan":8527,"##ax":8528,"um":8529,"quartet":8530,"melody":8531,"disbanded":8532,"sheffield":8533,"blocked":8534,"gasped":8535,"delay":8536,"kisses":8537,"maggie":8538,"connects":8539,"##non":8540,"sts":8541,"poured":8542,"creator":8543,"publishers":8544,"##we":8545,"guided":8546,"ellis":8547,"extinct":8548,"hug":8549,"gaining":8550,"##ord":8551,"complicated":8552,"##bility":8553,"poll":8554,"clenched":8555,"investigate":8556,"##use":8557,"thereby":8558,"quantum":8559,"spine":8560,"cdp":8561,"humor":8562,"kills":8563,"administered":8564,"semifinals":8565,"##du":8566,"encountered":8567,"ignore":8568,"##bu":8569,"commentary":8570,"##maker":8571,"bother":8572,"roosevelt":8573,"plains":8575,"halfway":8576,"flowing":8577,"cultures":8578,"crack":8579,"imprisoned":8580,"neighboring":8581,"airline":8582,"##ses":8583,"##view":8584,"##mate":8585,"##ec":8586,"gather":8587,"wolves":8588,"marathon":8589,"transformed":8590,"##ill":8591,"cruise":8592,"organisations":8593,"carol":8594,"punch":8595,"exhibitions":8596,"numbered":8597,"alarm":8598,"ratings":8599,"daddy":8600,"silently":8601,"##stein":8602,"queens":8603,"colours":8604,"impression":8605,"guidance":8606,"liu":8607,"tactical":8608,"##rat":8609,"marshal":8610,"della":8611,"arrow":8612,"##ings":8613,"rested":8614,"feared":8615,"tender":8616,"owns":8617,"bitter":8618,"advisor":8619,"escort":8620,"##ides":8621,"spare":8622,"farms":8623,"grants":8624,"##ene":8625,"dragons":8626,"encourage":8627,"colleagues":8628,"cameras":8629,"##und":8630,"sucked":8631,"pile":8632,"spirits":8633,"prague":8634,"statements":8635,"suspension":8636,"landmark":8637,"fence":8638,"torture":8639,"recreation":8640,"bags":8641,"permanently":8642,"survivors":8643,"pond":8644,"spy":8645,"predecessor":8646,"bombing":8647,"coup":8648,"##og":8649,"protecting":8650,"transformation":8651,"glow":8652,"##lands":8653,"##book":8654,"dug":8655,"priests":8656,"andrea":8657,"feat":8658,"barn":8659,"jumping":8660,"##chen":8661,"##ologist":8662,"##con":8663,"casualties":8664,"stern":8665,"auckland":8666,"pipe":8667,"serie":8668,"revealing":8669,"ba":8670,"##bel":8671,"trevor":8672,"mercy":8673,"spectrum":8674,"yang":8675,"consist":8676,"governing":8677,"collaborated":8678,"possessed":8679,"epic":8680,"comprises":8681,"blew":8682,"shane":8683,"##ack":8684,"lopez":8685,"honored":8686,"magical":8687,"sacrifice":8688,"judgment":8689,"perceived":8690,"hammer":8691,"mtv":8692,"baronet":8693,"tune":8694,"das":8695,"missionary":8696,"sheets":8697,"neutral":8699,"oral":8700,"threatening":8701,"attractive":8702,"shade":8703,"aims":8704,"seminary":8705,"##master":8706,"estates":8707,"michel":8709,"wounds":8710,"refugees":8711,"manufacturers":8712,"##nic":8713,"mercury":8714,"syndrome":8715,"porter":8716,"##iya":8717,"##din":8718,"hamburg":8719,"identification":8720,"upstairs":8721,"purse":8722,"widened":8723,"pause":8724,"cared":8725,"breathed":8726,"affiliate":8727,"santiago":8728,"prevented":8729,"celtic":8730,"fisher":8731,"recruited":8733,"byzantine":8734,"reconstruction":8735,"farther":8736,"##mp":8737,"diet":8738,"sake":8739,"au":8740,"spite":8741,"sensation":8742,"##ert":8743,"blank":8744,"separation":8745,"##hon":8747,"vladimir":8748,"armies":8749,"anime":8750,"##lie":8751,"accommodate":8752,"orbit":8753,"cult":8754,"sofia":8755,"archive":8756,"##ify":8757,"##box":8758,"founders":8759,"sustained":8760,"disorder":8761,"honours":8762,"northeastern":8763,"mia":8764,"crops":8765,"violet":8766,"threats":8767,"blanket":8768,"fires":8769,"canton":8770,"followers":8771,"southwestern":8772,"prototype":8773,"voyage":8774,"assignment":8775,"altered":8776,"moderate":8777,"protocol":8778,"pistol":8779,"##eo":8780,"questioned":8781,"brass":8782,"lifting":8783,"math":8785,"authored":8786,"##ual":8787,"doug":8788,"dimensional":8789,"dynamic":8790,"##san":8791,"pronounced":8793,"grateful":8794,"quest":8795,"uncomfortable":8796,"boom":8797,"presidency":8798,"stevens":8799,"relating":8800,"politicians":8801,"chen":8802,"barrier":8803,"quinn":8804,"diana":8805,"mosque":8806,"tribal":8807,"cheese":8808,"palmer":8809,"portions":8810,"sometime":8811,"chester":8812,"treasure":8813,"wu":8814,"bend":8815,"download":8816,"millions":8817,"reforms":8818,"registration":8819,"##osa":8820,"consequently":8821,"monitoring":8822,"ate":8823,"preliminary":8824,"brandon":8825,"invented":8826,"ps":8827,"eaten":8828,"exterior":8829,"intervention":8830,"ports":8831,"documented":8832,"log":8833,"displays":8834,"lecture":8835,"sally":8836,"favourite":8837,"##itz":8838,"vermont":8839,"lo":8840,"invisible":8841,"isle":8842,"breed":8843,"##ator":8844,"journalists":8845,"relay":8846,"speaks":8847,"backward":8848,"explore":8849,"midfielder":8850,"actively":8851,"stefan":8852,"procedures":8853,"cannon":8854,"blond":8855,"kenneth":8856,"centered":8857,"servants":8858,"chains":8859,"libraries":8860,"malcolm":8861,"essex":8862,"henri":8863,"slavery":8864,"##hal":8865,"facts":8866,"fairy":8867,"coached":8868,"cassie":8869,"cats":8870,"washed":8871,"cop":8872,"##fi":8873,"announcement":8874,"item":8875,"2000s":8876,"vinyl":8877,"activated":8878,"marco":8879,"frontier":8880,"growled":8881,"curriculum":8882,"##das":8883,"loyal":8884,"accomplished":8885,"leslie":8886,"ritual":8887,"kenny":8888,"##00":8889,"vii":8890,"napoleon":8891,"hollow":8892,"hybrid":8893,"jungle":8894,"stationed":8895,"friedrich":8896,"counted":8897,"##ulated":8898,"platinum":8899,"theatrical":8900,"seated":8901,"col":8902,"rubber":8903,"glen":8904,"diversity":8906,"healing":8907,"extends":8908,"id":8909,"provisions":8910,"administrator":8911,"columbus":8912,"##oe":8913,"tributary":8914,"te":8915,"assured":8916,"org":8917,"##uous":8918,"prestigious":8919,"examined":8920,"lectures":8921,"grammy":8922,"ronald":8923,"associations":8924,"bailey":8925,"allan":8926,"essays":8927,"flute":8928,"believing":8929,"consultant":8930,"proceedings":8931,"travelling":8932,"kit":8934,"kerala":8935,"yugoslavia":8936,"buddy":8937,"methodist":8938,"##ith":8939,"burial":8940,"centres":8941,"batman":8942,"##nda":8943,"discontinued":8944,"bo":8945,"dock":8946,"stockholm":8947,"lungs":8948,"severely":8949,"##nk":8950,"citing":8951,"manga":8952,"##ugh":8953,"steal":8954,"mumbai":8955,"iraqi":8956,"robot":8957,"celebrity":8958,"bride":8959,"broadcasts":8960,"abolished":8961,"pot":8962,"joel":8963,"overhead":8964,"franz":8965,"packed":8966,"reconnaissance":8967,"johann":8968,"acknowledged":8969,"introduce":8970,"handled":8971,"doctorate":8972,"developments":8973,"drinks":8974,"alley":8975,"palestine":8976,"##nis":8977,"##aki":8978,"proceeded":8979,"recover":8980,"bradley":8981,"grain":8982,"patch":8983,"afford":8984,"infection":8985,"nationalist":8986,"legendary":8987,"##ath":8988,"interchange":8989,"virtually":8990,"gen":8991,"gravity":8992,"exploration":8993,"amber":8994,"vital":8995,"wishes":8996,"powell":8997,"doctrine":8998,"elbow":8999,"screenplay":9000,"##bird":9001,"contribute":9002,"indonesian":9003,"pet":9004,"creates":9005,"##com":9006,"enzyme":9007,"kylie":9008,"discipline":9009,"drops":9010,"manila":9011,"hunger":9012,"##ien":9013,"layers":9014,"suffer":9015,"fever":9016,"bits":9017,"monica":9018,"keyboard":9019,"manages":9020,"##hood":9021,"searched":9022,"appeals":9023,"##bad":9024,"testament":9025,"grande":9026,"reid":9027,"##war":9028,"beliefs":9029,"congo":9030,"##ification":9031,"##dia":9032,"si":9033,"requiring":9034,"##via":9035,"casey":9036,"regret":9038,"streak":9039,"rape":9040,"depends":9041,"syrian":9042,"sprint":9043,"pound":9044,"tourists":9045,"upcoming":9046,"pub":9047,"##xi":9048,"tense":9049,"##els":9050,"practiced":9051,"echo":9052,"nationwide":9053,"guild":9054,"motorcycle":9055,"liz":9056,"##zar":9057,"chiefs":9058,"desired":9059,"elena":9060,"bye":9061,"precious":9062,"absorbed":9063,"relatives":9064,"booth":9065,"pianist":9066,"##mal":9067,"citizenship":9068,"exhausted":9069,"wilhelm":9070,"##ceae":9071,"##hed":9072,"noting":9073,"quarterback":9074,"urge":9075,"hectares":9076,"##gue":9077,"ace":9078,"holly":9079,"##tal":9080,"blonde":9081,"davies":9082,"parked":9083,"sustainable":9084,"stepping":9085,"twentieth":9086,"airfield":9087,"galaxy":9088,"nest":9089,"chip":9090,"##nell":9091,"tan":9092,"shaft":9093,"paulo":9094,"requirement":9095,"##zy":9096,"paradise":9097,"tobacco":9098,"trans":9099,"renewed":9100,"vietnamese":9101,"##cker":9102,"##ju":9103,"suggesting":9104,"catching":9105,"holmes":9106,"enjoying":9107,"md":9108,"trips":9109,"colt":9110,"holder":9111,"butterfly":9112,"nerve":9113,"reformed":9114,"cherry":9115,"bowling":9116,"trailer":9117,"carriage":9118,"goodbye":9119,"appreciate":9120,"toy":9121,"joshua":9122,"interactive":9123,"enabled":9124,"involve":9125,"##kan":9126,"collar":9127,"determination":9128,"bunch":9129,"facebook":9130,"recall":9131,"shorts":9132,"superintendent":9133,"episcopal":9134,"frustration":9135,"giovanni":9136,"nineteenth":9137,"laser":9138,"privately":9139,"array":9140,"circulation":9141,"##ovic":9142,"armstrong":9143,"deals":9144,"painful":9145,"permit":9146,"discrimination":9147,"##wi":9148,"aires":9149,"retiring":9150,"cottage":9151,"ni":9152,"##sta":9153,"horizon":9154,"ellen":9155,"jamaica":9156,"ripped":9157,"fernando":9158,"chapters":9159,"playstation":9160,"patron":9161,"lecturer":9162,"navigation":9163,"behaviour":9164,"genes":9165,"georgian":9166,"export":9167,"solomon":9168,"rivals":9169,"swift":9170,"seventeen":9171,"rodriguez":9172,"princeton":9173,"independently":9174,"sox":9175,"arguing":9177,"entity":9178,"casting":9179,"hank":9180,"criteria":9181,"oakland":9182,"geographic":9183,"milwaukee":9184,"reflection":9185,"expanding":9186,"conquest":9187,"dubbed":9188,"##tv":9189,"halt":9190,"brave":9191,"brunswick":9192,"doi":9193,"arched":9194,"curtis":9195,"divorced":9196,"predominantly":9197,"somerset":9198,"streams":9199,"ugly":9200,"zoo":9201,"horrible":9202,"curved":9203,"buenos":9204,"fierce":9205,"dictionary":9206,"vector":9207,"theological":9208,"unions":9209,"handful":9210,"stability":9211,"chan":9212,"punjab":9213,"segments":9214,"##lly":9215,"altar":9216,"ignoring":9217,"gesture":9218,"monsters":9219,"pastor":9220,"##stone":9221,"thighs":9222,"unexpected":9223,"operators":9224,"abruptly":9225,"coin":9226,"compiled":9227,"associates":9228,"improving":9229,"migration":9230,"pin":9231,"##ose":9232,"compact":9233,"collegiate":9234,"reserved":9235,"##urs":9236,"quarterfinals":9237,"roster":9238,"restore":9239,"assembled":9240,"hurry":9241,"oval":9242,"##cies":9243,"flags":9245,"martha":9246,"##del":9247,"victories":9248,"sharply":9249,"##rated":9250,"argues":9251,"deadly":9252,"neo":9253,"drawings":9254,"symbols":9255,"performer":9256,"##iel":9257,"griffin":9258,"restrictions":9259,"editing":9260,"andrews":9261,"java":9262,"journals":9263,"arabia":9264,"compositions":9265,"dee":9266,"pierce":9267,"removing":9268,"hindi":9269,"casino":9270,"runway":9271,"civilians":9272,"minds":9273,"nasa":9274,"hotels":9275,"##zation":9276,"refuge":9277,"rent":9278,"retain":9279,"potentially":9280,"conferences":9281,"suburban":9282,"conducting":9283,"##tto":9284,"##tions":9285,"##tle":9286,"descended":9287,"massacre":9288,"##cal":9289,"ammunition":9290,"terrain":9291,"fork":9292,"souls":9293,"counts":9294,"chelsea":9295,"durham":9296,"drives":9297,"cab":9298,"##bank":9299,"perth":9300,"realizing":9301,"palestinian":9302,"finn":9303,"simpson":9304,"##dal":9305,"betty":9306,"##ule":9307,"moreover":9308,"particles":9309,"cardinals":9310,"tent":9311,"evaluation":9312,"extraordinary":9313,"##oid":9314,"inscription":9315,"##works":9316,"wednesday":9317,"chloe":9318,"maintains":9319,"panels":9320,"ashley":9321,"trucks":9322,"##nation":9323,"cluster":9324,"sunlight":9325,"strikes":9326,"zhang":9327,"##wing":9328,"dialect":9329,"canon":9330,"##ap":9331,"tucked":9332,"##ws":9333,"collecting":9334,"##mas":9335,"##can":9336,"##sville":9337,"maker":9338,"quoted":9339,"evan":9340,"franco":9341,"aria":9342,"buying":9343,"cleaning":9344,"eva":9345,"closet":9346,"provision":9347,"apollo":9348,"clinic":9349,"rat":9350,"##ez":9351,"necessarily":9352,"ac":9353,"##gle":9354,"##ising":9355,"venues":9356,"flipped":9357,"cent":9358,"spreading":9359,"trustees":9360,"checking":9361,"authorized":9362,"##sco":9363,"disappointed":9364,"##ado":9365,"notion":9366,"duration":9367,"trumpet":9368,"hesitated":9369,"topped":9370,"brussels":9371,"rolls":9372,"theoretical":9373,"hint":9374,"define":9375,"aggressive":9376,"repeat":9377,"wash":9378,"peaceful":9379,"optical":9380,"width":9381,"allegedly":9382,"mcdonald":9383,"strict":9384,"copyright":9385,"##illa":9386,"investors":9387,"mar":9388,"jam":9389,"witnesses":9390,"sounding":9391,"miranda":9392,"michelle":9393,"privacy":9394,"hugo":9395,"harmony":9396,"##pp":9397,"valid":9398,"lynn":9399,"glared":9400,"nina":9401,"headquartered":9403,"diving":9404,"boarding":9405,"gibson":9406,"##ncy":9407,"albanian":9408,"marsh":9409,"routine":9410,"dealt":9411,"enhanced":9412,"er":9413,"intelligent":9414,"substance":9415,"targeted":9416,"enlisted":9417,"discovers":9418,"spinning":9419,"observations":9420,"pissed":9421,"smoking":9422,"rebecca":9423,"capitol":9424,"visa":9425,"varied":9426,"costume":9427,"seemingly":9428,"indies":9429,"compensation":9430,"surgeon":9431,"thursday":9432,"arsenal":9433,"westminster":9434,"suburbs":9435,"rid":9436,"anglican":9437,"##ridge":9438,"knots":9439,"foods":9440,"alumni":9441,"lighter":9442,"fraser":9443,"whoever":9444,"portal":9445,"scandal":9446,"##ray":9447,"gavin":9448,"advised":9449,"instructor":9450,"flooding":9451,"terrorist":9452,"##ale":9453,"teenage":9454,"interim":9455,"senses":9456,"duck":9457,"teen":9458,"thesis":9459,"abby":9460,"eager":9461,"overcome":9462,"##ile":9463,"newport":9464,"glenn":9465,"rises":9466,"shame":9467,"##cc":9468,"prompted":9469,"priority":9470,"forgot":9471,"bomber":9472,"nicolas":9473,"protective":9474,"cartoon":9476,"katherine":9477,"breeze":9478,"lonely":9479,"trusted":9480,"henderson":9481,"richardson":9482,"relax":9483,"banner":9484,"candy":9485,"palms":9486,"remarkable":9487,"##rio":9488,"legends":9489,"cricketer":9490,"essay":9491,"ordained":9492,"edmund":9493,"rifles":9494,"trigger":9495,"##uri":9496,"##away":9497,"sail":9498,"alert":9499,"audiences":9501,"penn":9502,"sussex":9503,"siblings":9504,"pursued":9505,"indianapolis":9506,"resist":9507,"rosa":9508,"consequence":9509,"succeed":9510,"avoided":9511,"##ulation":9513,"inland":9514,"##tie":9515,"##nna":9516,"counsel":9517,"profession":9518,"chronicle":9519,"hurried":9520,"##una":9521,"eyebrow":9522,"eventual":9523,"bleeding":9524,"innovative":9525,"cure":9526,"##dom":9527,"committees":9528,"accounting":9529,"con":9530,"scope":9531,"hardy":9532,"heather":9533,"tenor":9534,"gut":9535,"herald":9536,"codes":9537,"tore":9538,"scales":9539,"wagon":9540,"##oo":9541,"luxury":9542,"tin":9543,"prefer":9544,"fountain":9545,"triangle":9546,"bonds":9547,"darling":9548,"convoy":9549,"dried":9550,"traced":9551,"beings":9552,"troy":9553,"accidentally":9554,"slam":9555,"findings":9556,"smelled":9557,"joey":9558,"lawyers":9559,"outcome":9560,"steep":9561,"bosnia":9562,"configuration":9563,"shifting":9564,"toll":9565,"brook":9566,"performers":9567,"lobby":9568,"philosophical":9569,"construct":9570,"shrine":9571,"aggregate":9572,"boot":9573,"cox":9574,"phenomenon":9575,"savage":9576,"insane":9577,"solely":9578,"reynolds":9579,"lifestyle":9580,"##ima":9581,"nationally":9582,"holdings":9583,"consideration":9584,"enable":9585,"edgar":9586,"mo":9587,"mama":9588,"##tein":9589,"fights":9590,"relegation":9591,"chances":9592,"atomic":9593,"hub":9594,"conjunction":9595,"awkward":9596,"reactions":9597,"currency":9598,"finale":9599,"kumar":9600,"underwent":9601,"steering":9602,"elaborate":9603,"gifts":9604,"comprising":9605,"melissa":9606,"veins":9607,"reasonable":9608,"sunshine":9609,"chi":9610,"solve":9611,"trails":9612,"inhabited":9613,"elimination":9614,"ethics":9615,"huh":9616,"ana":9617,"molly":9618,"consent":9619,"apartments":9620,"layout":9621,"marines":9622,"##ces":9623,"hunters":9624,"bulk":9625,"##oma":9626,"hometown":9627,"##wall":9628,"##mont":9629,"cracked":9630,"reads":9631,"neighbouring":9632,"withdrawn":9633,"admission":9634,"wingspan":9635,"damned":9636,"anthology":9637,"lancashire":9638,"brands":9639,"batting":9640,"forgive":9641,"cuban":9642,"awful":9643,"##lyn":9644,"dimensions":9646,"imagination":9647,"##ade":9648,"dante":9649,"##ship":9650,"tracking":9651,"desperately":9652,"goalkeeper":9653,"##yne":9654,"groaned":9655,"workshops":9656,"confident":9657,"burton":9658,"gerald":9659,"milton":9660,"circus":9661,"uncertain":9662,"slope":9663,"copenhagen":9664,"sophia":9665,"fog":9666,"philosopher":9667,"portraits":9668,"accent":9669,"cycling":9670,"varying":9671,"gripped":9672,"larvae":9673,"garrett":9674,"specified":9675,"scotia":9676,"mature":9677,"luther":9678,"kurt":9679,"rap":9680,"##kes":9681,"aerial":9682,"ferdinand":9684,"heated":9685,"es":9686,"transported":9687,"##shan":9688,"safely":9689,"nonetheless":9690,"##orn":9691,"##gal":9692,"motors":9693,"demanding":9694,"##sburg":9695,"startled":9696,"##brook":9697,"ally":9698,"generate":9699,"caps":9700,"ghana":9701,"stained":9702,"demo":9703,"mentions":9704,"beds":9705,"ap":9706,"afterward":9707,"diary":9708,"##bling":9709,"utility":9710,"##iro":9711,"richards":9712,"conspiracy":9714,"conscious":9715,"shining":9716,"footsteps":9717,"observer":9718,"cyprus":9719,"urged":9720,"loyalty":9721,"developer":9722,"probability":9723,"olive":9724,"upgraded":9725,"gym":9726,"miracle":9727,"insects":9728,"graves":9729,"ourselves":9731,"hydrogen":9732,"amazon":9733,"katie":9734,"tickets":9735,"poets":9736,"##pm":9737,"planes":9738,"##pan":9739,"prevention":9740,"witnessed":9741,"dense":9742,"jin":9743,"randy":9744,"tang":9745,"warehouse":9746,"monroe":9747,"bang":9748,"archived":9749,"elderly":9750,"investigations":9751,"alec":9752,"granite":9753,"mineral":9754,"conflicts":9755,"controlling":9756,"aboriginal":9757,"carlo":9758,"##zu":9759,"mechanics":9760,"stan":9761,"stark":9762,"rhode":9763,"skirt":9764,"est":9765,"##berry":9766,"bombs":9767,"respected":9768,"##horn":9769,"imposed":9770,"limestone":9771,"deny":9772,"nominee":9773,"memphis":9774,"grabbing":9775,"disabled":9776,"##als":9777,"amusement":9778,"aa":9779,"frankfurt":9780,"corn":9781,"referendum":9782,"varies":9783,"slowed":9784,"disk":9785,"firms":9786,"unconscious":9787,"incredible":9788,"clue":9789,"sue":9790,"##zhou":9791,"twist":9792,"##cio":9793,"joins":9794,"idaho":9795,"chad":9796,"developers":9797,"computing":9798,"destroyer":9799,"mortal":9801,"tucker":9802,"kingston":9803,"choices":9804,"yu":9805,"carson":9806,"os":9808,"whitney":9809,"geneva":9810,"pretend":9811,"dimension":9812,"staged":9813,"plateau":9814,"maya":9815,"##une":9816,"freestyle":9817,"##bc":9818,"rovers":9819,"hiv":9820,"##ids":9821,"tristan":9822,"classroom":9823,"prospect":9824,"##hus":9825,"honestly":9826,"diploma":9827,"lied":9828,"thermal":9829,"auxiliary":9830,"feast":9831,"unlikely":9832,"iata":9833,"##tel":9834,"morocco":9835,"pounding":9836,"treasury":9837,"lithuania":9838,"considerably":9839,"dish":9841,"geological":9843,"matching":9844,"stumbled":9845,"destroying":9846,"marched":9847,"brien":9848,"advances":9849,"cake":9850,"nicole":9851,"belle":9852,"settling":9853,"measuring":9854,"directing":9855,"##mie":9856,"tuesday":9857,"bassist":9858,"capabilities":9859,"stunned":9860,"fraud":9861,"torpedo":9862,"##list":9863,"##phone":9864,"anton":9865,"wisdom":9866,"surveillance":9867,"ruined":9868,"##ulate":9869,"lawsuit":9870,"healthcare":9871,"theorem":9872,"halls":9873,"trend":9874,"aka":9875,"horizontal":9876,"dozens":9877,"acquire":9878,"lasting":9879,"swim":9880,"hawk":9881,"gorgeous":9882,"fees":9883,"vicinity":9884,"decrease":9885,"adoption":9886,"tactics":9887,"##ography":9888,"pakistani":9889,"##ole":9890,"draws":9891,"##hall":9892,"willie":9893,"burke":9894,"heath":9895,"algorithm":9896,"integral":9897,"powder":9898,"elliott":9899,"brigadier":9900,"jackie":9901,"tate":9902,"varieties":9903,"darker":9904,"##cho":9905,"lately":9906,"cigarette":9907,"specimens":9908,"adds":9909,"##ree":9910,"##ensis":9911,"##inger":9912,"exploded":9913,"finalist":9914,"cia":9915,"murders":9916,"wilderness":9917,"arguments":9918,"nicknamed":9919,"acceptance":9920,"onwards":9921,"manufacture":9922,"robertson":9923,"jets":9924,"tampa":9925,"enterprises":9926,"blog":9927,"loudly":9928,"composers":9929,"nominations":9930,"ai":9932,"malta":9933,"inquiry":9934,"automobile":9935,"hosting":9936,"viii":9937,"rays":9938,"tilted":9939,"grief":9940,"museums":9941,"strategies":9942,"furious":9943,"euro":9944,"equality":9945,"cohen":9946,"poison":9947,"surrey":9948,"wireless":9949,"governed":9950,"ridiculous":9951,"moses":9952,"##esh":9953,"##room":9954,"vanished":9955,"##ito":9956,"barnes":9957,"attract":9958,"morrison":9959,"istanbul":9960,"##iness":9961,"absent":9962,"rotation":9963,"petition":9964,"janet":9965,"##logical":9966,"satisfaction":9967,"custody":9968,"deliberately":9969,"observatory":9970,"comedian":9971,"surfaces":9972,"pinyin":9973,"novelist":9974,"strictly":9975,"canterbury":9976,"oslo":9977,"monks":9978,"embrace":9979,"ibm":9980,"jealous":9981,"photograph":9982,"continent":9983,"dorothy":9984,"marina":9985,"doc":9986,"excess":9987,"holden":9988,"allegations":9989,"explaining":9990,"stack":9991,"avoiding":9992,"lance":9993,"storyline":9994,"majesty":9995,"poorly":9996,"spike":9997,"dos":9998,"bradford":9999,"raven":10000,"travis":10001,"classics":10002,"proven":10003,"voltage":10004,"pillow":10005,"fists":10006,"butt":10007,"interpreted":10009,"##car":10010,"gage":10012,"telegraph":10013,"lens":10014,"promising":10015,"expelled":10016,"casual":10017,"collector":10018,"zones":10019,"##min":10020,"silly":10021,"nintendo":10022,"##kh":10023,"##bra":10024,"downstairs":10025,"chef":10026,"suspicious":10027,"afl":10028,"flies":10029,"vacant":10030,"uganda":10031,"pregnancy":10032,"condemned":10033,"lutheran":10034,"estimates":10035,"cheap":10036,"decree":10037,"saxon":10038,"proximity":10039,"stripped":10040,"idiot":10041,"deposits":10042,"contrary":10043,"presenter":10044,"magnus":10045,"glacier":10046,"im":10047,"offense":10048,"edwin":10049,"##ori":10050,"upright":10051,"##long":10052,"bolt":10053,"##ois":10054,"toss":10055,"geographical":10056,"##izes":10057,"environments":10058,"delicate":10059,"marking":10060,"abstract":10061,"xavier":10062,"nails":10063,"windsor":10064,"plantation":10065,"occurring":10066,"equity":10067,"saskatchewan":10068,"fears":10069,"drifted":10070,"sequences":10071,"vegetation":10072,"revolt":10073,"##stic":10074,"sooner":10076,"fusion":10077,"opposing":10078,"nato":10079,"skating":10080,"secretly":10082,"ruin":10083,"lease":10084,"##oc":10085,"edit":10086,"##nne":10087,"flora":10088,"anxiety":10089,"ruby":10090,"##ological":10091,"##mia":10092,"tel":10093,"bout":10094,"taxi":10095,"emmy":10096,"frost":10097,"rainbow":10098,"compounds":10099,"foundations":10100,"rainfall":10101,"assassination":10102,"nightmare":10103,"dominican":10104,"##win":10105,"achievements":10106,"deserve":10107,"orlando":10108,"intact":10109,"armenia":10110,"##nte":10111,"calgary":10112,"valentine":10113,"marion":10115,"proclaimed":10116,"theodore":10117,"bells":10118,"courtyard":10119,"thigh":10120,"gonzalez":10121,"console":10122,"troop":10123,"minimal":10124,"monte":10125,"everyday":10126,"##ence":10127,"##if":10128,"supporter":10129,"terrorism":10130,"buck":10131,"openly":10132,"presbyterian":10133,"activists":10134,"carpet":10135,"##iers":10136,"rubbing":10137,"uprising":10138,"##yi":10139,"cute":10140,"conceived":10141,"legally":10142,"##cht":10143,"millennium":10144,"cello":10145,"velocity":10146,"ji":10147,"rescued":10148,"cardiff":10149,"rex":10151,"concentrate":10152,"senators":10153,"beard":10154,"rendered":10155,"glowing":10156,"battalions":10157,"scouts":10158,"competitors":10159,"sculptor":10160,"catalogue":10161,"arctic":10162,"ion":10163,"raja":10164,"bicycle":10165,"wow":10166,"glancing":10167,"lawn":10168,"##woman":10169,"gentleman":10170,"lighthouse":10171,"publish":10172,"predicted":10173,"calculated":10174,"##val":10175,"variants":10176,"##gne":10177,"strain":10178,"##ui":10179,"winston":10180,"deceased":10181,"##nus":10182,"touchdowns":10183,"brady":10184,"caleb":10185,"sinking":10186,"echoed":10187,"crush":10188,"hon":10189,"blessed":10190,"protagonist":10191,"hayes":10192,"endangered":10193,"magnitude":10194,"editors":10195,"##tine":10196,"estimate":10197,"responsibilities":10198,"##mel":10199,"backup":10200,"laying":10201,"consumed":10202,"sealed":10203,"zurich":10204,"lovers":10205,"frustrated":10206,"##eau":10207,"ahmed":10208,"kicking":10209,"mit":10210,"treasurer":10211,"biblical":10213,"refuse":10214,"terrified":10215,"pump":10216,"agrees":10217,"genuine":10218,"imprisonment":10219,"refuses":10220,"plymouth":10221,"##hen":10222,"lou":10223,"##nen":10224,"tara":10225,"trembling":10226,"antarctic":10227,"ton":10228,"learns":10229,"##tas":10230,"crap":10231,"crucial":10232,"faction":10233,"atop":10234,"##borough":10235,"wrap":10236,"lancaster":10237,"odds":10238,"hopkins":10239,"erik":10240,"lyon":10241,"##eon":10242,"bros":10243,"##ode":10244,"snap":10245,"locality":10246,"tips":10247,"empress":10248,"crowned":10249,"cal":10250,"acclaimed":10251,"chuckled":10252,"##ory":10253,"clara":10254,"sends":10255,"mild":10256,"towel":10257,"##fl":10258,"##day":10259,"##а":10260,"wishing":10261,"assuming":10262,"interviewed":10263,"##bal":10264,"##die":10265,"interactions":10266,"eden":10267,"cups":10268,"helena":10269,"##lf":10270,"indie":10271,"beck":10272,"##fire":10273,"batteries":10274,"filipino":10275,"wizard":10276,"parted":10277,"##lam":10278,"traces":10279,"##born":10280,"rows":10281,"idol":10282,"albany":10283,"delegates":10284,"##ees":10285,"##sar":10286,"discussions":10287,"##ex":10288,"notre":10289,"instructed":10290,"belgrade":10291,"highways":10292,"suggestion":10293,"lauren":10294,"possess":10295,"orientation":10296,"alexandria":10297,"abdul":10298,"beats":10299,"salary":10300,"reunion":10301,"ludwig":10302,"alright":10303,"wagner":10304,"intimate":10305,"pockets":10306,"slovenia":10307,"hugged":10308,"brighton":10309,"merchants":10310,"cruel":10311,"stole":10312,"trek":10313,"slopes":10314,"repairs":10315,"enrollment":10316,"politically":10317,"underlying":10318,"promotional":10319,"counting":10320,"boeing":10321,"##bb":10322,"isabella":10323,"naming":10324,"##и":10325,"keen":10326,"bacteria":10327,"listing":10328,"separately":10329,"belfast":10330,"ussr":10331,"lithuanian":10333,"anybody":10334,"ribs":10335,"sphere":10336,"martinez":10337,"cock":10338,"embarrassed":10339,"proposals":10340,"fragments":10341,"nationals":10342,"##fs":10343,"##wski":10344,"premises":10345,"fin":10346,"alpine":10348,"matched":10349,"freely":10350,"bounded":10351,"jace":10352,"sleeve":10353,"##af":10354,"gaming":10355,"pier":10356,"populated":10357,"evident":10358,"##like":10359,"frances":10360,"flooded":10361,"##dle":10362,"frightened":10363,"pour":10364,"trainer":10365,"framed":10366,"visitor":10367,"challenging":10368,"pig":10369,"wickets":10370,"##fold":10371,"infected":10372,"email":10373,"##pes":10374,"arose":10375,"##aw":10376,"reward":10377,"ecuador":10378,"oblast":10379,"vale":10380,"ch":10381,"shuttle":10382,"##usa":10383,"bach":10384,"rankings":10385,"forbidden":10386,"cornwall":10387,"accordance":10388,"salem":10389,"consumers":10390,"bruno":10391,"fantastic":10392,"toes":10393,"machinery":10394,"resolved":10395,"julius":10396,"remembering":10397,"propaganda":10398,"iceland":10399,"bombardment":10400,"tide":10401,"contacts":10402,"wives":10403,"##rah":10404,"concerto":10405,"macdonald":10406,"albania":10407,"implement":10408,"daisy":10409,"tapped":10410,"sudan":10411,"helmet":10412,"angela":10413,"mistress":10414,"##lic":10415,"crop":10416,"sunk":10417,"finest":10418,"##craft":10419,"hostile":10420,"##ute":10421,"##tsu":10422,"boxer":10423,"fr":10424,"paths":10425,"adjusted":10426,"habit":10427,"ballot":10428,"supervision":10429,"soprano":10430,"##zen":10431,"bullets":10432,"wicked":10433,"sunset":10434,"regiments":10435,"disappear":10436,"lamp":10437,"performs":10438,"app":10439,"##gia":10440,"##oa":10441,"rabbit":10442,"digging":10443,"incidents":10444,"entries":10445,"##cion":10446,"dishes":10447,"##oi":10448,"introducing":10449,"##ati":10450,"##fied":10451,"freshman":10452,"slot":10453,"jill":10454,"tackles":10455,"baroque":10456,"backs":10457,"##iest":10458,"lone":10459,"sponsor":10460,"destiny":10461,"altogether":10462,"convert":10463,"##aro":10464,"consensus":10465,"shapes":10466,"demonstration":10467,"basically":10468,"feminist":10469,"auction":10470,"artifacts":10471,"##bing":10472,"strongest":10473,"twitter":10474,"halifax":10475,"allmusic":10477,"mighty":10478,"smallest":10479,"precise":10480,"alexandra":10481,"viola":10482,"##los":10483,"##ille":10484,"manuscripts":10485,"##illo":10486,"dancers":10487,"ari":10488,"managers":10489,"monuments":10490,"blades":10491,"barracks":10492,"springfield":10493,"maiden":10494,"consolidated":10495,"electron":10496,"##end":10497,"berry":10498,"airing":10499,"wheat":10500,"nobel":10501,"inclusion":10502,"blair":10503,"payments":10504,"geography":10505,"bee":10506,"cc":10507,"eleanor":10508,"react":10509,"##hurst":10510,"afc":10511,"manitoba":10512,"##yu":10513,"su":10514,"lineup":10515,"fitness":10516,"recreational":10517,"investments":10518,"airborne":10519,"disappointment":10520,"##dis":10521,"edmonton":10522,"viewing":10523,"##row":10524,"renovation":10525,"##cast":10526,"infant":10527,"bankruptcy":10528,"roses":10529,"aftermath":10530,"pavilion":10531,"##yer":10532,"carpenter":10533,"withdrawal":10534,"ladder":10535,"##hy":10536,"discussing":10537,"popped":10538,"reliable":10539,"agreements":10540,"rochester":10541,"##abad":10542,"curves":10543,"bombers":10544,"rao":10546,"reverend":10547,"decreased":10548,"choosing":10549,"stiff":10551,"consulting":10552,"naples":10553,"crawford":10554,"tracy":10555,"ka":10556,"ribbon":10557,"cops":10558,"##lee":10559,"crushed":10560,"deciding":10561,"unified":10562,"teenager":10563,"accepting":10564,"flagship":10565,"explorer":10566,"poles":10567,"sanchez":10568,"inspection":10569,"revived":10570,"skilled":10571,"induced":10572,"exchanged":10573,"flee":10574,"locals":10575,"tragedy":10576,"swallow":10577,"loading":10578,"hanna":10579,"demonstrate":10580,"##ela":10581,"salvador":10582,"flown":10583,"contestants":10584,"civilization":10585,"##ines":10586,"wanna":10587,"rhodes":10588,"fletcher":10589,"hector":10590,"knocking":10591,"considers":10592,"##ough":10593,"nash":10594,"mechanisms":10595,"sensed":10596,"mentally":10597,"walt":10598,"unclear":10599,"##eus":10600,"renovated":10601,"madame":10602,"##cks":10603,"crews":10604,"governmental":10605,"##hin":10606,"undertaken":10607,"monkey":10608,"##ben":10609,"##ato":10610,"fatal":10611,"armored":10612,"copa":10613,"caves":10614,"governance":10615,"grasp":10616,"perception":10617,"certification":10618,"froze":10619,"damp":10620,"tugged":10621,"wyoming":10622,"##rg":10623,"##ero":10624,"newman":10625,"##lor":10626,"nerves":10627,"curiosity":10628,"graph":10629,"##ami":10631,"withdraw":10632,"tunnels":10633,"dull":10634,"meredith":10635,"moss":10636,"exhibits":10637,"neighbors":10638,"communicate":10639,"accuracy":10640,"explored":10641,"raiders":10642,"republicans":10643,"secular":10644,"kat":10645,"superman":10646,"penny":10647,"criticised":10648,"##tch":10649,"freed":10650,"update":10651,"conviction":10652,"wade":10653,"ham":10654,"likewise":10655,"delegation":10656,"gotta":10657,"doll":10658,"promises":10659,"technological":10660,"myth":10661,"nationality":10662,"resolve":10663,"convent":10664,"##mark":10665,"sharon":10666,"dig":10667,"sip":10668,"coordinator":10669,"entrepreneur":10670,"fold":10671,"##dine":10672,"capability":10673,"councillor":10674,"synonym":10675,"blown":10676,"swan":10677,"cursed":10678,"jonas":10680,"haired":10681,"sofa":10682,"canvas":10683,"keeper":10684,"rivalry":10685,"##hart":10686,"rapper":10687,"speedway":10688,"swords":10689,"postal":10690,"maxwell":10691,"estonia":10692,"potter":10693,"recurring":10694,"##nn":10695,"##ave":10696,"errors":10697,"##oni":10698,"cognitive":10699,"##²":10701,"claws":10702,"nadu":10703,"roberto":10704,"bce":10705,"wrestler":10706,"ellie":10707,"##ations":10708,"infinite":10709,"ink":10710,"##tia":10711,"presumably":10712,"finite":10713,"staircase":10714,"noel":10716,"patricia":10717,"nacional":10718,"##cation":10719,"chill":10720,"eternal":10721,"tu":10722,"preventing":10723,"prussia":10724,"fossil":10725,"limbs":10726,"##logist":10727,"ernst":10728,"frog":10729,"perez":10730,"rene":10731,"##ace":10732,"pizza":10733,"prussian":10734,"##ios":10735,"##vy":10736,"molecules":10737,"regulatory":10738,"answering":10739,"opinions":10740,"sworn":10741,"lengths":10742,"supposedly":10743,"hypothesis":10744,"upward":10745,"habitats":10746,"seating":10747,"ancestors":10748,"drank":10749,"yield":10750,"hd":10751,"synthesis":10752,"researcher":10753,"modest":10754,"##var":10755,"mothers":10756,"peered":10757,"voluntary":10758,"homeland":10759,"##the":10760,"acclaim":10761,"##igan":10762,"static":10763,"valve":10764,"luxembourg":10765,"alto":10766,"carroll":10767,"fe":10768,"receptor":10769,"norton":10770,"ambulance":10771,"##tian":10772,"johnston":10773,"catholics":10774,"depicting":10775,"jointly":10776,"elephant":10777,"gloria":10778,"mentor":10779,"badge":10780,"ahmad":10781,"distinguish":10782,"remarked":10783,"councils":10784,"precisely":10785,"allison":10786,"advancing":10787,"detection":10788,"crowded":10789,"##10":10790,"cooperative":10791,"ankle":10792,"mercedes":10793,"dagger":10794,"surrendered":10795,"pollution":10796,"commit":10797,"subway":10798,"jeffrey":10799,"lesson":10800,"sculptures":10801,"provider":10802,"##fication":10803,"membrane":10804,"timothy":10805,"rectangular":10806,"fiscal":10807,"heating":10808,"teammate":10809,"basket":10810,"particle":10811,"anonymous":10812,"deployment":10813,"##ple":10814,"missiles":10815,"courthouse":10816,"proportion":10817,"shoe":10818,"sec":10819,"##ller":10820,"complaints":10821,"forbes":10822,"blacks":10823,"abandon":10824,"remind":10825,"sizes":10826,"overwhelming":10827,"autobiography":10828,"natalie":10829,"##awa":10830,"risks":10831,"contestant":10832,"countryside":10833,"babies":10834,"scorer":10835,"invaded":10836,"enclosed":10837,"proceed":10838,"hurling":10839,"disorders":10840,"##cu":10841,"reflecting":10842,"continuously":10843,"cruiser":10844,"graduates":10845,"freeway":10846,"investigated":10847,"ore":10848,"deserved":10849,"maid":10850,"blocking":10851,"phillip":10852,"jorge":10853,"shakes":10854,"dove":10855,"mann":10856,"variables":10857,"lacked":10858,"burden":10859,"accompanying":10860,"que":10861,"consistently":10862,"organizing":10863,"provisional":10864,"complained":10865,"endless":10866,"##rm":10867,"tubes":10868,"juice":10869,"georges":10870,"krishna":10871,"mick":10872,"labels":10873,"thriller":10874,"##uch":10875,"laps":10876,"arcade":10877,"sage":10878,"snail":10879,"##table":10880,"shannon":10881,"fi":10882,"laurence":10883,"seoul":10884,"vacation":10885,"presenting":10886,"hire":10887,"churchill":10888,"surprisingly":10889,"prohibited":10890,"savannah":10891,"technically":10892,"##oli":10893,"##lessly":10895,"testimony":10896,"suited":10897,"speeds":10898,"toys":10899,"romans":10900,"mlb":10901,"flowering":10902,"measurement":10903,"talented":10904,"kay":10905,"settings":10906,"charleston":10907,"expectations":10908,"shattered":10909,"achieving":10910,"triumph":10911,"ceremonies":10912,"portsmouth":10913,"lanes":10914,"mandatory":10915,"loser":10916,"stretching":10917,"cologne":10918,"realizes":10919,"seventy":10920,"cornell":10921,"careers":10922,"webb":10923,"##ulating":10924,"americas":10925,"budapest":10926,"ava":10927,"suspicion":10928,"##ison":10929,"yo":10930,"conrad":10931,"##hai":10932,"sterling":10933,"jessie":10934,"rector":10935,"##az":10936,"transform":10938,"organize":10939,"loans":10940,"christine":10941,"volcanic":10942,"warrant":10943,"slender":10944,"summers":10945,"subfamily":10946,"newer":10947,"danced":10948,"dynamics":10949,"rhine":10950,"proceeds":10951,"heinrich":10952,"gastropod":10953,"commands":10954,"sings":10955,"facilitate":10956,"easter":10957,"ra":10958,"positioned":10959,"responses":10960,"expense":10961,"fruits":10962,"yanked":10963,"imported":10964,"25th":10965,"velvet":10966,"vic":10967,"primitive":10968,"tribune":10969,"baldwin":10970,"neighbourhood":10971,"donna":10972,"rip":10973,"hay":10974,"pr":10975,"##uro":10976,"espn":10978,"welcomed":10979,"##aria":10980,"qualifier":10981,"glare":10982,"highland":10983,"timing":10984,"##cted":10985,"shells":10986,"eased":10987,"geometry":10988,"louder":10989,"exciting":10990,"slovakia":10991,"##sion":10992,"##iz":10993,"##lot":10994,"savings":10995,"prairie":10996,"##ques":10997,"marching":10998,"rafael":10999,"tonnes":11000,"##lled":11001,"curtain":11002,"preceding":11003,"shy":11004,"heal":11005,"greene":11006,"worthy":11007,"##pot":11008,"detachment":11009,"bury":11010,"sherman":11011,"##eck":11012,"reinforced":11013,"seeks":11014,"bottles":11015,"contracted":11016,"duchess":11017,"outfit":11018,"walsh":11019,"##sc":11020,"mickey":11021,"##ase":11022,"geoffrey":11023,"archer":11024,"squeeze":11025,"dawson":11026,"eliminate":11027,"invention":11028,"##enberg":11029,"neal":11030,"##eth":11031,"stance":11032,"dealer":11033,"coral":11034,"maple":11035,"retire":11036,"polo":11037,"simplified":11038,"##ht":11039,"hid":11041,"watts":11042,"backwards":11043,"jules":11044,"##oke":11045,"genesis":11046,"mt":11047,"frames":11048,"rebounds":11049,"burma":11050,"woodland":11051,"moist":11052,"santos":11053,"whispers":11054,"drained":11055,"subspecies":11056,"##aa":11057,"streaming":11058,"ulster":11059,"burnt":11060,"correspondence":11061,"maternal":11062,"gerard":11063,"denis":11064,"stealing":11065,"##load":11066,"genius":11067,"duchy":11068,"##oria":11069,"inaugurated":11070,"momentum":11071,"suits":11072,"placement":11073,"sovereign":11074,"clause":11075,"thames":11076,"##hara":11077,"confederation":11078,"reservation":11079,"sketch":11080,"yankees":11081,"lets":11082,"rotten":11083,"charm":11084,"hal":11085,"verses":11086,"ultra":11087,"commercially":11088,"dot":11089,"salon":11090,"citation":11091,"adopt":11092,"winnipeg":11093,"mist":11094,"allocated":11095,"cairo":11096,"##boy":11097,"jenkins":11098,"interference":11099,"objectives":11100,"##wind":11101,"portfolio":11103,"armoured":11104,"sectors":11105,"##eh":11106,"initiatives":11107,"##world":11108,"integrity":11109,"exercises":11110,"robe":11111,"tap":11112,"ab":11113,"gazed":11114,"##tones":11115,"distracted":11116,"rulers":11117,"favorable":11119,"jerome":11120,"tended":11121,"cart":11122,"factories":11123,"##eri":11124,"diplomat":11125,"valued":11126,"gravel":11127,"charitable":11128,"##try":11129,"calvin":11130,"exploring":11131,"chang":11132,"shepherd":11133,"terrace":11134,"pdf":11135,"pupil":11136,"##ural":11137,"reflects":11138,"ups":11139,"##rch":11140,"governors":11141,"shelf":11142,"depths":11143,"##nberg":11144,"trailed":11145,"crest":11146,"tackle":11147,"##nian":11148,"##ats":11149,"hatred":11150,"##kai":11151,"clare":11152,"makers":11153,"ethiopia":11154,"longtime":11155,"detected":11156,"embedded":11157,"lacking":11158,"slapped":11159,"rely":11160,"thomson":11161,"anticipation":11162,"iso":11163,"morton":11164,"successive":11165,"agnes":11166,"screenwriter":11167,"straightened":11168,"philippe":11169,"playwright":11170,"haunted":11171,"licence":11172,"iris":11173,"intentions":11174,"sutton":11175,"logical":11177,"correctly":11178,"##weight":11179,"branded":11180,"licked":11181,"tipped":11182,"silva":11183,"ricky":11184,"narrator":11185,"requests":11186,"##ents":11187,"greeted":11188,"supernatural":11189,"cow":11190,"##wald":11191,"lung":11192,"refusing":11193,"employer":11194,"strait":11195,"gaelic":11196,"liner":11197,"##piece":11198,"zoe":11199,"sabha":11200,"##mba":11201,"driveway":11202,"harvest":11203,"prints":11204,"bates":11205,"reluctantly":11206,"threshold":11207,"algebra":11208,"ira":11209,"wherever":11210,"coupled":11211,"assumption":11213,"picks":11214,"##air":11215,"designers":11216,"raids":11217,"gentlemen":11218,"##ean":11219,"roller":11220,"blowing":11221,"leipzig":11222,"locks":11223,"screw":11224,"dressing":11225,"strand":11226,"##lings":11227,"scar":11228,"dwarf":11229,"depicts":11230,"##nu":11231,"nods":11232,"##mine":11233,"differ":11234,"boris":11235,"##eur":11236,"yuan":11237,"flip":11238,"##gie":11239,"mob":11240,"invested":11241,"questioning":11242,"applying":11243,"##ture":11244,"shout":11245,"##sel":11246,"gameplay":11247,"blamed":11248,"illustrations":11249,"bothered":11250,"weakness":11251,"rehabilitation":11252,"##of":11253,"##zes":11254,"envelope":11255,"rumors":11256,"miners":11257,"leicester":11258,"subtle":11259,"kerry":11260,"##ico":11261,"ferguson":11262,"##fu":11263,"premiership":11264,"ne":11265,"##cat":11266,"bengali":11267,"prof":11268,"catches":11269,"remnants":11270,"dana":11271,"##rily":11272,"shouting":11273,"presidents":11274,"baltic":11275,"ought":11276,"ghosts":11277,"dances":11278,"sailors":11279,"shirley":11280,"fancy":11281,"dominic":11282,"##bie":11283,"madonna":11284,"##rick":11285,"bark":11286,"buttons":11287,"gymnasium":11288,"ashes":11289,"liver":11290,"toby":11291,"oath":11292,"providence":11293,"doyle":11294,"evangelical":11295,"nixon":11296,"cement":11297,"carnegie":11298,"embarked":11299,"hatch":11300,"surroundings":11301,"guarantee":11302,"needing":11303,"pirate":11304,"essence":11305,"##bee":11306,"filter":11307,"crane":11308,"hammond":11309,"projected":11310,"immune":11311,"percy":11312,"twelfth":11313,"##ult":11314,"regent":11315,"doctoral":11316,"damon":11317,"mikhail":11318,"##ichi":11319,"lu":11320,"critically":11321,"elect":11322,"realised":11323,"abortion":11324,"acute":11325,"screening":11326,"mythology":11327,"steadily":11328,"##fc":11329,"frown":11330,"nottingham":11331,"kirk":11332,"wa":11333,"minneapolis":11334,"##rra":11335,"module":11336,"algeria":11337,"mc":11338,"nautical":11339,"encounters":11340,"surprising":11341,"statues":11342,"availability":11343,"shirts":11344,"pie":11345,"alma":11346,"brows":11347,"munster":11348,"mack":11349,"soup":11350,"crater":11351,"tornado":11352,"sanskrit":11353,"cedar":11354,"explosive":11355,"bordered":11356,"dixon":11357,"planets":11358,"stamp":11359,"exam":11360,"happily":11361,"##bble":11362,"carriers":11363,"kidnapped":11364,"##vis":11365,"accommodation":11366,"emigrated":11367,"##met":11368,"knockout":11369,"correspondent":11370,"violation":11371,"profits":11372,"peaks":11373,"lang":11374,"specimen":11375,"agenda":11376,"ancestry":11377,"pottery":11378,"spelling":11379,"equations":11380,"obtaining":11381,"ki":11382,"linking":11383,"debris":11385,"asylum":11386,"##20":11387,"buddhism":11388,"teddy":11389,"##ants":11390,"gazette":11391,"##nger":11392,"##sse":11393,"dental":11394,"eligibility":11395,"utc":11396,"fathers":11397,"averaged":11398,"zimbabwe":11399,"francesco":11400,"coloured":11401,"hissed":11402,"translator":11403,"lynch":11404,"mandate":11405,"humanities":11406,"mackenzie":11407,"uniforms":11408,"lin":11409,"##iana":11410,"##gio":11411,"asset":11412,"mhz":11413,"fitting":11414,"samantha":11415,"genera":11416,"wei":11417,"rim":11418,"beloved":11419,"shark":11420,"riot":11421,"entities":11422,"expressions":11423,"indo":11424,"carmen":11425,"slipping":11426,"owing":11427,"abbot":11428,"neighbor":11429,"sidney":11430,"##av":11431,"rats":11432,"recommendations":11433,"encouraging":11434,"squadrons":11435,"anticipated":11436,"commanders":11437,"conquered":11438,"##oto":11439,"donations":11440,"diagnosed":11441,"##mond":11442,"divide":11443,"##iva":11444,"guessed":11445,"decoration":11446,"vernon":11447,"auditorium":11448,"revelation":11449,"conversations":11450,"##kers":11451,"##power":11452,"herzegovina":11453,"dash":11454,"alike":11455,"protested":11456,"lateral":11457,"herman":11458,"accredited":11459,"mg":11460,"##gent":11461,"freeman":11462,"mel":11463,"fiji":11464,"crow":11465,"crimson":11466,"##rine":11467,"livestock":11468,"##pped":11469,"humanitarian":11470,"bored":11471,"oz":11472,"whip":11473,"##lene":11474,"##ali":11475,"legitimate":11476,"alter":11477,"grinning":11478,"spelled":11479,"anxious":11480,"oriental":11481,"wesley":11482,"##nin":11483,"##hole":11484,"carnival":11485,"controller":11486,"detect":11487,"##ssa":11488,"bowed":11489,"educator":11490,"kosovo":11491,"macedonia":11492,"##sin":11493,"occupy":11494,"mastering":11495,"stephanie":11496,"janeiro":11497,"para":11498,"unaware":11499,"nurses":11500,"noon":11501,"cam":11503,"hopefully":11504,"ranger":11505,"combine":11506,"sociology":11507,"polar":11508,"rica":11509,"##eer":11510,"neill":11511,"##sman":11512,"holocaust":11513,"##ip":11514,"doubled":11515,"lust":11516,"decent":11519,"cooling":11520,"unveiled":11521,"##card":11522,"nsw":11524,"homer":11525,"chapman":11526,"meyer":11527,"##gin":11528,"dive":11529,"mae":11530,"reagan":11531,"expertise":11532,"##gled":11533,"darwin":11534,"brooke":11535,"sided":11536,"prosecution":11537,"investigating":11538,"comprised":11539,"petroleum":11540,"genres":11541,"reluctant":11542,"differently":11543,"trilogy":11544,"johns":11545,"vegetables":11546,"corpse":11547,"highlighted":11548,"lounge":11549,"pension":11550,"unsuccessfully":11551,"elegant":11552,"aided":11553,"ivory":11554,"beatles":11555,"amelia":11556,"cain":11557,"dubai":11558,"sunny":11559,"immigrant":11560,"babe":11561,"click":11562,"##nder":11563,"underwater":11564,"pepper":11565,"combining":11566,"mumbled":11567,"atlas":11568,"horns":11569,"accessed":11570,"ballad":11571,"physicians":11572,"homeless":11573,"gestured":11574,"rpm":11575,"freak":11576,"louisville":11577,"corporations":11578,"patriots":11579,"prizes":11580,"rational":11581,"warn":11582,"modes":11583,"decorative":11584,"overnight":11585,"din":11586,"troubled":11587,"phantom":11588,"##ort":11589,"monarch":11590,"sheer":11591,"##dorf":11592,"generals":11593,"guidelines":11594,"organs":11595,"addresses":11596,"##zon":11597,"enhance":11598,"curling":11599,"parishes":11600,"cord":11601,"##kie":11602,"linux":11603,"caesar":11604,"deutsche":11605,"bavaria":11606,"##bia":11607,"coleman":11608,"cyclone":11609,"##eria":11610,"bacon":11611,"petty":11612,"##yama":11613,"##old":11614,"hampton":11615,"diagnosis":11616,"throws":11618,"complexity":11619,"rita":11620,"disputed":11621,"##₃":11622,"pablo":11623,"##sch":11624,"marketed":11625,"trafficking":11626,"##ulus":11627,"examine":11628,"plague":11629,"formats":11630,"##oh":11631,"vault":11632,"faithful":11633,"##bourne":11634,"webster":11635,"##ox":11636,"highlights":11637,"##ient":11638,"##ann":11639,"phones":11640,"vacuum":11641,"sandwich":11642,"modeling":11643,"##gated":11644,"bolivia":11645,"clergy":11646,"qualities":11647,"isabel":11648,"##nas":11649,"##ars":11650,"wears":11651,"screams":11652,"reunited":11653,"annoyed":11654,"bra":11655,"##ancy":11656,"##rate":11657,"differential":11658,"transmitter":11659,"tattoo":11660,"container":11661,"poker":11662,"##och":11663,"excessive":11664,"resides":11665,"cowboys":11666,"##tum":11667,"augustus":11668,"trash":11669,"providers":11670,"statute":11671,"retreated":11672,"balcony":11673,"reversed":11674,"void":11675,"storey":11676,"preceded":11677,"masses":11678,"leap":11679,"laughs":11680,"neighborhoods":11681,"wards":11682,"schemes":11683,"falcon":11684,"santo":11685,"battlefield":11686,"pad":11687,"ronnie":11688,"thread":11689,"lesbian":11690,"venus":11691,"##dian":11692,"beg":11693,"sandstone":11694,"daylight":11695,"punched":11696,"gwen":11697,"analog":11698,"stroked":11699,"wwe":11700,"acceptable":11701,"measurements":11702,"dec":11703,"toxic":11704,"##kel":11705,"adequate":11706,"surgical":11707,"economist":11708,"parameters":11709,"varsity":11710,"##sberg":11711,"quantity":11712,"ella":11713,"##chy":11714,"##rton":11715,"countess":11716,"generating":11717,"precision":11718,"diamonds":11719,"expressway":11720,"ga":11721,"##ı":11722,"uruguay":11724,"talents":11725,"galleries":11726,"expenses":11727,"scanned":11728,"colleague":11729,"outlets":11730,"ryder":11731,"lucien":11732,"##ila":11733,"paramount":11734,"##bon":11735,"syracuse":11736,"dim":11737,"fangs":11738,"gown":11739,"sweep":11740,"##sie":11741,"toyota":11742,"missionaries":11743,"websites":11744,"##nsis":11745,"sentences":11746,"adviser":11747,"val":11748,"trademark":11749,"spells":11750,"##plane":11751,"patience":11752,"starter":11753,"slim":11754,"##borg":11755,"toe":11756,"incredibly":11757,"shoots":11758,"elliot":11759,"nobility":11760,"##wyn":11761,"cowboy":11762,"endorsed":11763,"gardner":11764,"tendency":11765,"persuaded":11766,"organisms":11767,"emissions":11768,"kazakhstan":11769,"amused":11770,"boring":11771,"chips":11772,"themed":11773,"##hand":11774,"llc":11775,"constantinople":11776,"chasing":11777,"systematic":11778,"guatemala":11779,"borrowed":11780,"erin":11781,"carey":11782,"##hard":11783,"highlands":11784,"struggles":11785,"##ifying":11787,"##ced":11788,"wong":11789,"exceptions":11790,"develops":11791,"enlarged":11792,"kindergarten":11793,"castro":11794,"##ern":11795,"##rina":11796,"leigh":11797,"zombie":11798,"juvenile":11799,"##most":11800,"consul":11801,"##nar":11802,"sailor":11803,"hyde":11804,"clarence":11805,"intensive":11806,"pinned":11807,"nasty":11808,"useless":11809,"jung":11810,"clayton":11811,"stuffed":11812,"exceptional":11813,"ix":11814,"apostolic":11815,"transactions":11817,"##dge":11818,"exempt":11819,"swinging":11820,"cove":11821,"religions":11822,"##ash":11823,"shields":11824,"dairy":11825,"bypass":11826,"pursuing":11828,"bug":11829,"joyce":11830,"bombay":11831,"chassis":11832,"southampton":11833,"chat":11834,"interact":11835,"redesignated":11836,"##pen":11837,"nascar":11838,"pray":11839,"salmon":11840,"rigid":11841,"regained":11842,"malaysian":11843,"grim":11844,"publicity":11845,"constituted":11846,"capturing":11847,"toilet":11848,"delegate":11849,"purely":11850,"tray":11851,"drift":11852,"loosely":11853,"striker":11854,"weakened":11855,"trinidad":11856,"mitch":11857,"itv":11858,"defines":11859,"transmitted":11860,"ming":11861,"scarlet":11862,"nodding":11863,"fitzgerald":11864,"fu":11865,"narrowly":11866,"sp":11867,"tooth":11868,"standings":11869,"virtue":11870,"##₁":11871,"##wara":11872,"##cting":11873,"chateau":11874,"gloves":11875,"lid":11876,"##nel":11877,"hurting":11878,"conservatory":11879,"##pel":11880,"sinclair":11881,"reopened":11882,"sympathy":11883,"nigerian":11884,"strode":11885,"advocated":11886,"optional":11887,"chronic":11888,"discharge":11889,"##rc":11890,"suck":11891,"compatible":11892,"laurel":11893,"stella":11894,"shi":11895,"fails":11896,"wage":11897,"dodge":11898,"informal":11900,"sorts":11901,"levi":11902,"buddha":11903,"villagers":11904,"##aka":11905,"chronicles":11906,"heavier":11907,"summoned":11908,"gateway":11909,"eleventh":11911,"jewelry":11912,"translations":11913,"accordingly":11914,"seas":11915,"##ency":11916,"fiber":11917,"pyramid":11918,"cubic":11919,"dragging":11920,"##ista":11921,"caring":11922,"##ops":11923,"android":11924,"contacted":11925,"lunar":11926,"##dt":11927,"kai":11928,"lisbon":11929,"patted":11930,"sacramento":11932,"theft":11933,"madagascar":11934,"subtropical":11935,"disputes":11936,"ta":11937,"holidays":11938,"piper":11939,"willow":11940,"mare":11941,"cane":11942,"itunes":11943,"newfoundland":11944,"benny":11945,"companions":11946,"dong":11947,"raj":11948,"observe":11949,"roar":11950,"charming":11951,"plaque":11952,"tibetan":11953,"fossils":11954,"enacted":11955,"manning":11956,"bubble":11957,"tina":11958,"tanzania":11959,"##eda":11960,"##hir":11961,"funk":11962,"swamp":11963,"deputies":11964,"cloak":11965,"ufc":11966,"scenario":11967,"par":11968,"scratch":11969,"metals":11970,"anthem":11971,"guru":11972,"engaging":11973,"specially":11974,"##boat":11975,"dialects":11976,"nineteen":11977,"cecil":11978,"duet":11979,"disability":11980,"messenger":11981,"unofficial":11982,"##lies":11983,"defunct":11984,"eds":11985,"moonlight":11986,"drainage":11987,"surname":11988,"puzzle":11989,"honda":11990,"switching":11991,"conservatives":11992,"mammals":11993,"knox":11994,"broadcaster":11995,"sidewalk":11996,"cope":11997,"##ried":11998,"benson":11999,"princes":12000,"peterson":12001,"##sal":12002,"bedford":12003,"sharks":12004,"eli":12005,"wreck":12006,"alberto":12007,"gasp":12008,"archaeology":12009,"lgbt":12010,"teaches":12011,"securities":12012,"madness":12013,"compromise":12014,"waving":12015,"coordination":12016,"davidson":12017,"visions":12018,"leased":12019,"possibilities":12020,"eighty":12021,"jun":12022,"fernandez":12023,"enthusiasm":12024,"assassin":12025,"sponsorship":12026,"reviewer":12027,"kingdoms":12028,"estonian":12029,"laboratories":12030,"##fy":12031,"##nal":12032,"applies":12033,"verb":12034,"celebrations":12035,"##zzo":12036,"rowing":12037,"lightweight":12038,"sadness":12039,"submit":12040,"mvp":12041,"balanced":12042,"dude":12043,"##vas":12044,"explicitly":12045,"metric":12046,"magnificent":12047,"mound":12048,"brett":12049,"mohammad":12050,"mistakes":12051,"irregular":12052,"##hing":12053,"##ass":12054,"sanders":12055,"betrayed":12056,"shipped":12057,"surge":12058,"##enburg":12059,"reporters":12060,"termed":12061,"georg":12062,"pity":12063,"verbal":12064,"bulls":12065,"abbreviated":12066,"enabling":12067,"appealed":12068,"##are":12069,"##atic":12070,"sicily":12071,"sting":12072,"heel":12073,"sweetheart":12074,"bart":12075,"spacecraft":12076,"brutal":12077,"monarchy":12078,"##tter":12079,"aberdeen":12080,"cameo":12081,"diane":12082,"##ub":12083,"survivor":12084,"clyde":12085,"##aries":12086,"complaint":12087,"##makers":12088,"clarinet":12089,"delicious":12090,"chilean":12091,"karnataka":12092,"coordinates":12093,"panties":12095,"##rst":12096,"pretending":12097,"ar":12098,"dramatically":12099,"kiev":12100,"bella":12101,"tends":12102,"distances":12103,"catalog":12105,"launching":12106,"instances":12107,"telecommunications":12108,"portable":12109,"lindsay":12110,"vatican":12111,"##eim":12112,"angles":12113,"aliens":12114,"marker":12115,"stint":12116,"screens":12117,"bolton":12118,"##rne":12119,"judy":12120,"wool":12121,"benedict":12122,"plasma":12123,"europa":12124,"spark":12125,"imaging":12126,"filmmaker":12127,"swiftly":12128,"##een":12129,"contributor":12130,"##nor":12131,"opted":12132,"stamps":12133,"apologize":12134,"financing":12135,"butter":12136,"gideon":12137,"sophisticated":12138,"alignment":12139,"avery":12140,"chemicals":12141,"yearly":12142,"speculation":12143,"prominence":12144,"professionally":12145,"##ils":12146,"immortal":12147,"institutional":12148,"inception":12149,"wrists":12150,"identifying":12151,"tribunal":12152,"derives":12153,"gains":12154,"##wo":12155,"papal":12156,"preference":12157,"linguistic":12158,"vince":12159,"operative":12160,"brewery":12161,"##ont":12162,"unemployment":12163,"boyd":12164,"##ured":12165,"##outs":12166,"albeit":12167,"prophet":12168,"bi":12170,"##rr":12171,"##face":12172,"##rad":12173,"quarterly":12174,"asteroid":12175,"cleaned":12176,"radius":12177,"temper":12178,"##llen":12179,"telugu":12180,"jerk":12181,"viscount":12182,"menu":12183,"##ote":12184,"glimpse":12185,"##aya":12186,"yacht":12187,"hawaiian":12188,"baden":12189,"##rl":12190,"laptop":12191,"readily":12192,"##gu":12193,"monetary":12194,"offshore":12195,"scots":12196,"watches":12197,"##yang":12198,"##arian":12199,"upgrade":12200,"needle":12201,"xbox":12202,"lea":12203,"encyclopedia":12204,"flank":12205,"fingertips":12206,"##pus":12207,"delight":12208,"teachings":12209,"confirm":12210,"roth":12211,"beaches":12212,"midway":12213,"winters":12214,"##iah":12215,"teasing":12216,"daytime":12217,"beverly":12218,"gambling":12219,"bonnie":12220,"##backs":12221,"regulated":12222,"clement":12223,"hermann":12224,"tricks":12225,"knot":12226,"##shing":12227,"##uring":12228,"##vre":12229,"detached":12230,"ecological":12231,"owed":12232,"specialty":12233,"byron":12234,"inventor":12235,"bats":12236,"stays":12237,"screened":12238,"unesco":12239,"midland":12240,"trim":12241,"affection":12242,"##ander":12243,"##rry":12244,"jess":12245,"thoroughly":12246,"feedback":12247,"##uma":12248,"chennai":12249,"strained":12250,"heartbeat":12251,"wrapping":12252,"overtime":12253,"pleaded":12254,"##sworth":12255,"mon":12256,"leisure":12257,"oclc":12258,"##tate":12259,"##ele":12260,"feathers":12261,"angelo":12262,"thirds":12263,"nuts":12264,"surveys":12265,"clever":12266,"gill":12267,"commentator":12268,"##dos":12269,"darren":12270,"rides":12271,"gibraltar":12272,"##nc":12273,"##mu":12274,"dissolution":12275,"dedication":12276,"shin":12277,"meals":12278,"saddle":12279,"elvis":12280,"reds":12281,"chaired":12282,"taller":12283,"appreciation":12284,"functioning":12285,"niece":12286,"favored":12287,"advocacy":12288,"robbie":12289,"criminals":12290,"suffolk":12291,"yugoslav":12292,"passport":12293,"constable":12294,"congressman":12295,"hastings":12296,"vera":12297,"##rov":12298,"consecrated":12299,"sparks":12300,"ecclesiastical":12301,"confined":12302,"##ovich":12303,"muller":12304,"floyd":12305,"nora":12306,"paved":12308,"cumberland":12310,"ned":12311,"saga":12312,"spiral":12313,"##flow":12314,"appreciated":12315,"yi":12316,"collaborative":12317,"treating":12318,"similarities":12319,"feminine":12320,"finishes":12321,"##ib":12322,"jade":12323,"import":12324,"##nse":12325,"##hot":12326,"champagne":12327,"mice":12328,"securing":12329,"celebrities":12330,"helsinki":12331,"attributes":12332,"##gos":12333,"cousins":12334,"phases":12335,"ache":12336,"lucia":12337,"gandhi":12338,"submission":12339,"vicar":12340,"spear":12341,"shine":12342,"tasmania":12343,"biting":12344,"detention":12345,"constitute":12346,"tighter":12347,"seasonal":12348,"##gus":12349,"terrestrial":12350,"matthews":12351,"##oka":12352,"effectiveness":12353,"parody":12354,"philharmonic":12355,"##onic":12356,"strangers":12358,"encoded":12359,"consortium":12360,"guaranteed":12361,"regards":12362,"shifts":12363,"tortured":12364,"collision":12365,"supervisor":12366,"inform":12367,"broader":12368,"insight":12369,"theaters":12370,"armour":12371,"emeritus":12372,"blink":12373,"incorporates":12374,"mapping":12375,"##50":12376,"##ein":12377,"handball":12378,"flexible":12379,"##nta":12380,"substantially":12381,"generous":12382,"thief":12383,"##own":12384,"carr":12385,"loses":12386,"prose":12388,"ucla":12389,"romeo":12390,"generic":12391,"metallic":12392,"realization":12393,"damages":12394,"mk":12395,"commissioners":12396,"zach":12397,"default":12398,"##ther":12399,"helicopters":12400,"lengthy":12401,"stems":12402,"spa":12403,"partnered":12404,"spectators":12405,"rogue":12406,"indication":12407,"penalties":12408,"teresa":12409,"sen":12411,"##tric":12412,"dalton":12413,"##wich":12414,"irving":12415,"photographic":12416,"##vey":12417,"dell":12418,"deaf":12419,"peters":12420,"excluded":12421,"unsure":12422,"##vable":12423,"patterson":12424,"crawled":12425,"##zio":12426,"resided":12427,"whipped":12428,"latvia":12429,"slower":12430,"ecole":12431,"pipes":12432,"employers":12433,"maharashtra":12434,"comparable":12435,"va":12436,"textile":12437,"pageant":12438,"##gel":12439,"alphabet":12440,"binary":12441,"irrigation":12442,"chartered":12443,"choked":12444,"antoine":12445,"offs":12446,"waking":12447,"supplement":12448,"##wen":12449,"quantities":12450,"demolition":12451,"regain":12452,"locate":12453,"urdu":12454,"folks":12455,"alt":12456,"##mc":12458,"scary":12459,"andreas":12460,"whites":12461,"##ava":12462,"classrooms":12463,"mw":12464,"aesthetic":12465,"publishes":12466,"valleys":12467,"guides":12468,"cubs":12469,"johannes":12470,"bryant":12471,"conventions":12472,"affecting":12473,"##itt":12474,"drain":12475,"awesome":12476,"isolation":12477,"prosecutor":12478,"ambitious":12479,"apology":12480,"captive":12481,"downs":12482,"atmospheric":12483,"lorenzo":12484,"aisle":12485,"beef":12486,"foul":12487,"##onia":12488,"kidding":12489,"composite":12490,"disturbed":12491,"illusion":12492,"natives":12493,"##ffer":12494,"emi":12495,"rockets":12496,"riverside":12497,"wartime":12498,"painters":12499,"adolf":12500,"melted":12501,"##ail":12502,"uncertainty":12503,"simulation":12504,"hawks":12505,"progressed":12506,"meantime":12507,"builder":12508,"spray":12509,"breach":12510,"unhappy":12511,"regina":12512,"russians":12513,"##urg":12514,"determining":12515,"##tation":12516,"tram":12517,"##quin":12519,"aging":12520,"##12":12521,"garion":12523,"rented":12524,"mister":12525,"diaz":12526,"terminated":12527,"clip":12528,"depend":12530,"nervously":12531,"disco":12532,"owe":12533,"defenders":12534,"shiva":12535,"notorious":12536,"disbelief":12537,"shiny":12538,"worcester":12539,"##gation":12540,"##yr":12541,"trailing":12542,"undertook":12543,"islander":12544,"belarus":12545,"limitations":12546,"watershed":12547,"fuller":12548,"overlooking":12549,"utilized":12550,"raphael":12551,"synthetic":12553,"breakdown":12554,"klein":12555,"##nate":12556,"moaned":12557,"memoir":12558,"lamb":12559,"practicing":12560,"##erly":12561,"cellular":12562,"arrows":12563,"exotic":12564,"##graphy":12565,"witches":12566,"charted":12568,"rey":12569,"hut":12570,"hierarchy":12571,"subdivision":12572,"freshwater":12573,"giuseppe":12574,"aloud":12575,"reyes":12576,"qatar":12577,"marty":12578,"sideways":12579,"utterly":12580,"sexually":12581,"jude":12582,"prayers":12583,"mccarthy":12584,"softball":12585,"blend":12586,"damien":12587,"##gging":12588,"##metric":12589,"wholly":12590,"erupted":12591,"lebanese":12592,"negro":12593,"revenues":12594,"tasted":12595,"comparative":12596,"teamed":12597,"transaction":12598,"labeled":12599,"maori":12600,"sovereignty":12601,"parkway":12602,"trauma":12603,"gran":12604,"malay":12605,"advancement":12607,"descendant":12608,"buzz":12610,"salvation":12611,"inventory":12612,"symbolic":12613,"##making":12614,"antarctica":12615,"mps":12616,"##gas":12617,"##bro":12618,"mohammed":12619,"myanmar":12620,"holt":12621,"submarines":12622,"tones":12623,"##lman":12624,"locker":12625,"patriarch":12626,"bangkok":12627,"emerson":12628,"remarks":12629,"predators":12630,"kin":12631,"afghan":12632,"confession":12633,"norwich":12634,"rental":12635,"emerge":12636,"advantages":12637,"##zel":12638,"rca":12639,"##hold":12640,"shortened":12641,"storms":12642,"aidan":12643,"##matic":12644,"autonomy":12645,"compliance":12646,"##quet":12647,"dudley":12648,"atp":12649,"##osis":12650,"motto":12652,"documentation":12653,"summary":12654,"professors":12655,"spectacular":12656,"christina":12657,"archdiocese":12658,"flashing":12659,"innocence":12660,"remake":12661,"##dell":12662,"psychic":12663,"reef":12664,"scare":12665,"employ":12666,"rs":12667,"sticks":12668,"meg":12669,"gus":12670,"leans":12671,"##ude":12672,"accompany":12673,"bergen":12674,"tomas":12675,"##iko":12676,"doom":12677,"wages":12678,"pools":12679,"##nch":12680,"##bes":12681,"breasts":12682,"scholarly":12683,"alison":12684,"outline":12685,"brittany":12686,"breakthrough":12687,"willis":12688,"realistic":12689,"##cut":12690,"##boro":12691,"competitor":12692,"##stan":12693,"pike":12694,"picnic":12695,"icon":12696,"designing":12697,"commercials":12698,"washing":12699,"villain":12700,"skiing":12701,"micro":12702,"costumes":12703,"auburn":12704,"halted":12705,"executives":12706,"##hat":12707,"logistics":12708,"cycles":12709,"vowel":12710,"applicable":12711,"barrett":12712,"exclaimed":12713,"eurovision":12714,"eternity":12715,"ramon":12716,"##umi":12717,"##lls":12718,"modifications":12719,"sweeping":12720,"disgust":12721,"##uck":12722,"torch":12723,"aviv":12724,"ensuring":12725,"rude":12726,"dusty":12727,"sonic":12728,"donovan":12729,"outskirts":12730,"cu":12731,"pathway":12732,"##band":12733,"##gun":12734,"##lines":12735,"disciplines":12736,"acids":12737,"cadet":12738,"paired":12739,"##40":12740,"sketches":12741,"##sive":12742,"marriages":12743,"##⁺":12744,"folding":12745,"peers":12746,"slovak":12747,"implies":12748,"admired":12749,"##beck":12750,"1880s":12751,"leopold":12752,"instinct":12753,"attained":12754,"weston":12755,"megan":12756,"horace":12757,"##ination":12758,"dorsal":12759,"ingredients":12760,"evolutionary":12761,"##its":12762,"complications":12763,"deity":12764,"lethal":12765,"brushing":12766,"levy":12767,"deserted":12768,"institutes":12769,"posthumously":12770,"delivering":12771,"telescope":12772,"coronation":12773,"motivated":12774,"rapids":12775,"luc":12776,"flicked":12777,"pays":12778,"volcano":12779,"tanner":12780,"weighed":12781,"##nica":12782,"crowds":12783,"frankie":12784,"gifted":12785,"addressing":12786,"granddaughter":12787,"winding":12788,"##rna":12789,"constantine":12790,"gomez":12791,"##front":12792,"landscapes":12793,"rudolf":12794,"anthropology":12795,"slate":12796,"werewolf":12797,"##lio":12798,"astronomy":12799,"circa":12800,"rouge":12801,"dreaming":12802,"sack":12803,"knelt":12804,"drowned":12805,"naomi":12806,"prolific":12807,"tracked":12808,"freezing":12809,"herb":12810,"##dium":12811,"agony":12812,"randall":12813,"twisting":12814,"wendy":12815,"deposit":12816,"touches":12817,"vein":12818,"wheeler":12819,"##bbled":12820,"##bor":12821,"batted":12822,"retaining":12823,"tire":12824,"presently":12825,"compare":12826,"specification":12827,"daemon":12828,"nigel":12829,"##grave":12830,"merry":12831,"recommendation":12832,"czechoslovakia":12833,"sandra":12834,"ng":12835,"roma":12836,"##sts":12837,"lambert":12838,"inheritance":12839,"sheikh":12840,"winchester":12841,"cries":12842,"examining":12843,"##yle":12844,"comeback":12845,"cuisine":12846,"nave":12847,"##iv":12848,"ko":12849,"retrieve":12850,"tomatoes":12851,"barker":12852,"polished":12853,"defining":12854,"irene":12855,"lantern":12856,"personalities":12857,"begging":12858,"tract":12859,"swore":12860,"##gic":12863,"omaha":12864,"brotherhood":12865,"##rley":12866,"haiti":12867,"##ots":12868,"exeter":12869,"##ete":12870,"##zia":12871,"steele":12872,"dumb":12873,"pearson":12874,"surveyed":12876,"elisabeth":12877,"trends":12878,"##ef":12879,"fritz":12880,"##rf":12881,"premium":12882,"bugs":12883,"fraction":12884,"calmly":12885,"viking":12886,"##birds":12887,"tug":12888,"inserted":12889,"unusually":12890,"##ield":12891,"confronted":12892,"distress":12893,"crashing":12894,"brent":12895,"turks":12896,"resign":12897,"##olo":12898,"cambodia":12899,"gabe":12900,"sauce":12901,"##kal":12902,"evelyn":12903,"extant":12905,"clusters":12906,"quarry":12907,"teenagers":12908,"luna":12909,"##lers":12910,"##ister":12911,"affiliation":12912,"drill":12913,"##ashi":12914,"panthers":12915,"scenic":12916,"libya":12917,"anita":12918,"strengthen":12919,"inscriptions":12920,"##cated":12921,"lace":12922,"sued":12923,"judith":12924,"riots":12925,"##uted":12926,"mint":12927,"##eta":12928,"preparations":12929,"midst":12930,"dub":12931,"challenger":12932,"##vich":12933,"mock":12934,"cf":12935,"displaced":12936,"wicket":12937,"breaths":12938,"enables":12939,"schmidt":12940,"analyst":12941,"##lum":12942,"ag":12943,"highlight":12944,"automotive":12945,"axe":12946,"josef":12947,"newark":12948,"sufficiently":12949,"resembles":12950,"50th":12951,"##pal":12952,"flushed":12953,"mum":12954,"traits":12955,"##ante":12956,"commodore":12957,"incomplete":12958,"warming":12959,"titular":12960,"ceremonial":12961,"ethical":12962,"celebrating":12964,"eighteenth":12965,"cao":12966,"lima":12967,"medalist":12968,"mobility":12969,"strips":12970,"snakes":12971,"##city":12972,"miniature":12973,"zagreb":12974,"barton":12975,"escapes":12976,"umbrella":12977,"automated":12978,"doubted":12979,"differs":12980,"cooled":12981,"georgetown":12982,"dresden":12983,"cooked":12984,"fade":12985,"wyatt":12986,"rna":12987,"jacobs":12988,"carlton":12989,"abundant":12990,"stereo":12991,"boost":12992,"madras":12993,"inning":12994,"##hia":12995,"spur":12996,"ip":12997,"malayalam":12998,"begged":12999,"osaka":13000,"groan":13001,"escaping":13002,"charging":13003,"dose":13004,"vista":13005,"##aj":13006,"bud":13007,"papa":13008,"communists":13009,"advocates":13010,"edged":13011,"tri":13012,"##cent":13013,"resemble":13014,"peaking":13015,"necklace":13016,"fried":13017,"montenegro":13018,"saxony":13019,"goose":13020,"glances":13021,"stuttgart":13022,"curator":13023,"recruit":13024,"grocery":13025,"sympathetic":13026,"##tting":13027,"##fort":13028,"lotus":13030,"randolph":13031,"ancestor":13032,"##rand":13033,"succeeding":13034,"jupiter":13035,"macedonian":13037,"##heads":13038,"hiking":13039,"handing":13041,"fischer":13042,"##itive":13043,"garbage":13044,"node":13045,"##pies":13046,"prone":13047,"singular":13048,"papua":13049,"inclined":13050,"attractions":13051,"italia":13052,"pouring":13053,"motioned":13054,"grandma":13055,"garnered":13056,"jacksonville":13057,"corp":13058,"ego":13059,"ringing":13060,"aluminum":13061,"##hausen":13062,"ordering":13063,"##foot":13064,"drawer":13065,"traders":13066,"synagogue":13067,"##play":13068,"##kawa":13069,"resistant":13070,"wandering":13071,"fragile":13072,"fiona":13073,"teased":13074,"var":13075,"hardcore":13076,"soaked":13077,"jubilee":13078,"decisive":13079,"exposition":13080,"mercer":13081,"poster":13082,"valencia":13083,"hale":13084,"kuwait":13085,"##ises":13087,"##wr":13088,"##eed":13089,"tavern":13090,"gamma":13091,"johan":13093,"##uer":13094,"airways":13095,"amino":13096,"gil":13097,"##ury":13098,"vocational":13099,"domains":13100,"torres":13101,"##sp":13102,"generator":13103,"folklore":13104,"outcomes":13105,"##keeper":13106,"canberra":13107,"shooter":13108,"fl":13109,"beams":13110,"confrontation":13111,"##lling":13112,"##gram":13113,"feb":13114,"aligned":13115,"forestry":13116,"pipeline":13117,"jax":13118,"motorway":13119,"conception":13120,"decay":13121,"##tos":13122,"coffin":13123,"##cott":13124,"stalin":13125,"escorted":13127,"minded":13128,"##nam":13129,"sitcom":13130,"purchasing":13131,"twilight":13132,"veronica":13133,"additions":13134,"passive":13135,"tensions":13136,"straw":13137,"frequencies":13139,"refugee":13141,"cultivation":13142,"##iate":13143,"christie":13144,"clary":13145,"bulletin":13146,"crept":13147,"disposal":13148,"##rich":13149,"##zong":13150,"processor":13151,"crescent":13152,"##rol":13153,"bmw":13154,"emphasized":13155,"whale":13156,"nazis":13157,"aurora":13158,"##eng":13159,"dwelling":13160,"hauled":13161,"sponsors":13162,"toledo":13163,"mega":13164,"ideology":13165,"theatres":13166,"tessa":13167,"cerambycidae":13168,"saves":13169,"turtle":13170,"cone":13171,"suspects":13172,"kara":13173,"rusty":13174,"yelling":13175,"greeks":13176,"mozart":13177,"shades":13178,"cocked":13179,"participant":13180,"##tro":13181,"shire":13182,"spit":13183,"freeze":13184,"necessity":13185,"##cos":13186,"inmates":13187,"nielsen":13188,"councillors":13189,"loaned":13190,"uncommon":13191,"omar":13192,"peasants":13193,"botanical":13194,"offspring":13195,"daniels":13196,"formations":13197,"jokes":13198,"pioneers":13200,"sigma":13201,"licensing":13202,"##sus":13203,"wheelchair":13204,"polite":13205,"liquor":13207,"pratt":13208,"trustee":13209,"##uta":13210,"forewings":13211,"balloon":13212,"##zz":13213,"kilometre":13214,"camping":13215,"explicit":13216,"casually":13217,"shawn":13218,"foolish":13219,"teammates":13220,"nm":13221,"hassan":13222,"carrie":13223,"judged":13224,"satisfy":13225,"vanessa":13226,"knives":13227,"selective":13228,"cnn":13229,"flowed":13230,"##lice":13231,"eclipse":13232,"stressed":13233,"eliza":13234,"mathematician":13235,"cease":13236,"cultivated":13237,"##roy":13238,"commissions":13239,"browns":13240,"##ania":13241,"destroyers":13242,"sheridan":13243,"meadow":13244,"##rius":13245,"minerals":13246,"##cial":13247,"downstream":13248,"clash":13249,"gram":13250,"memoirs":13251,"ventures":13252,"baha":13253,"seymour":13254,"archie":13255,"midlands":13256,"edith":13257,"fare":13258,"flynn":13259,"invite":13260,"canceled":13261,"tiles":13262,"stabbed":13263,"boulder":13264,"incorporate":13265,"amended":13266,"camden":13267,"facial":13268,"mollusk":13269,"unreleased":13270,"descriptions":13271,"yoga":13272,"grabs":13273,"raises":13275,"ramp":13276,"shiver":13277,"##rose":13278,"coined":13279,"pioneering":13280,"tunes":13281,"qing":13282,"warwick":13283,"tops":13284,"melanie":13286,"giles":13287,"##rous":13288,"wandered":13289,"##inal":13290,"annexed":13291,"nov":13292,"30th":13293,"unnamed":13294,"##ished":13295,"organizational":13296,"airplane":13297,"normandy":13298,"stoke":13299,"whistle":13300,"blessing":13301,"violations":13302,"chased":13303,"holders":13304,"shotgun":13305,"##ctic":13306,"outlet":13307,"reactor":13308,"##vik":13309,"tires":13310,"tearing":13311,"shores":13312,"fortified":13313,"mascot":13314,"constituencies":13315,"nc":13316,"columnist":13317,"productive":13318,"tibet":13319,"##rta":13320,"lineage":13321,"hooked":13322,"oct":13323,"tapes":13324,"judging":13325,"cody":13326,"##gger":13327,"hansen":13328,"kashmir":13329,"triggered":13330,"##eva":13331,"solved":13332,"cliffs":13333,"##tree":13334,"resisted":13335,"anatomy":13336,"protesters":13337,"transparent":13338,"implied":13339,"##iga":13340,"injection":13341,"mattress":13342,"excluding":13343,"##mbo":13344,"defenses":13345,"helpless":13346,"devotion":13347,"##elli":13348,"growl":13349,"liberals":13350,"weber":13351,"phenomena":13352,"atoms":13353,"plug":13354,"##iff":13355,"mortality":13356,"apprentice":13357,"howe":13358,"convincing":13359,"aaa":13360,"swimmer":13361,"barber":13362,"leone":13363,"promptly":13364,"sodium":13365,"def":13366,"nowadays":13367,"arise":13368,"##oning":13369,"gloucester":13370,"corrected":13371,"dignity":13372,"norm":13373,"erie":13374,"##ders":13375,"elders":13376,"evacuated":13377,"sylvia":13378,"compression":13379,"##yar":13380,"hartford":13381,"pose":13382,"backpack":13383,"reasoning":13384,"accepts":13385,"24th":13386,"wipe":13387,"millimetres":13388,"marcel":13389,"##oda":13390,"dodgers":13391,"albion":13392,"overwhelmed":13394,"aerospace":13395,"oaks":13396,"showcase":13398,"acknowledge":13399,"recovering":13400,"nolan":13401,"ashe":13402,"hurts":13403,"geology":13404,"fashioned":13405,"disappearance":13406,"farewell":13407,"swollen":13408,"shrug":13409,"marquis":13410,"wimbledon":13411,"rue":13413,"commemorate":13415,"reduces":13416,"experiencing":13417,"inevitable":13418,"calcutta":13419,"intel":13420,"##court":13421,"murderer":13422,"sticking":13423,"fisheries":13424,"imagery":13425,"bloom":13426,"brake":13428,"##inus":13429,"gustav":13430,"hesitation":13431,"memorable":13432,"po":13433,"viral":13434,"beans":13435,"accidents":13436,"tunisia":13437,"antenna":13438,"spilled":13439,"consort":13440,"treatments":13441,"aye":13442,"perimeter":13443,"##gard":13444,"donation":13445,"hostage":13446,"migrated":13447,"banker":13448,"addiction":13449,"apex":13450,"lil":13451,"trout":13452,"##ously":13453,"conscience":13454,"##nova":13455,"rams":13456,"sands":13457,"genome":13458,"passionate":13459,"troubles":13460,"##lets":13461,"##set":13462,"amid":13463,"##ibility":13464,"##ret":13465,"higgins":13466,"exceed":13467,"vikings":13468,"##vie":13469,"payne":13470,"##zan":13471,"muscular":13472,"##ste":13473,"defendant":13474,"sucking":13475,"##wal":13476,"ibrahim":13477,"fuselage":13478,"claudia":13479,"vfl":13480,"europeans":13481,"snails":13482,"interval":13483,"##garh":13484,"preparatory":13485,"statewide":13486,"tasked":13487,"lacrosse":13488,"viktor":13489,"##lation":13490,"angola":13491,"##hra":13492,"flint":13493,"implications":13494,"employs":13495,"teens":13496,"patrons":13497,"stall":13498,"weekends":13499,"barriers":13500,"scrambled":13501,"nucleus":13502,"tehran":13503,"jenna":13504,"parsons":13505,"lifelong":13506,"robots":13507,"displacement":13508,"##bles":13510,"precipitation":13511,"##gt":13512,"knuckles":13513,"clutched":13514,"marrying":13516,"ecology":13517,"marx":13518,"accusations":13519,"declare":13520,"scars":13521,"kolkata":13522,"mat":13523,"meadows":13524,"bermuda":13525,"skeleton":13526,"finalists":13527,"vintage":13528,"crawl":13529,"coordinate":13530,"affects":13531,"subjected":13532,"orchestral":13533,"mistaken":13534,"##tc":13535,"mirrors":13536,"dipped":13537,"relied":13538,"arches":13540,"candle":13541,"##nick":13542,"incorporating":13543,"wildly":13544,"fond":13545,"basilica":13546,"owl":13547,"fringe":13548,"rituals":13549,"whispering":13550,"stirred":13551,"feud":13552,"tertiary":13553,"slick":13554,"goat":13555,"honorable":13556,"whereby":13557,"skip":13558,"ricardo":13559,"stripes":13560,"parachute":13561,"adjoining":13562,"submerged":13563,"synthesizer":13564,"##gren":13565,"intend":13566,"positively":13567,"ninety":13568,"phi":13569,"beaver":13570,"partition":13571,"fellows":13572,"alexis":13573,"prohibition":13574,"carlisle":13575,"bizarre":13576,"fraternity":13577,"##bre":13578,"doubts":13579,"icy":13580,"cbc":13581,"aquatic":13582,"sneak":13583,"sonny":13584,"combines":13585,"airports":13586,"crude":13587,"supervised":13588,"spatial":13589,"merge":13590,"alfonso":13591,"##bic":13592,"corrupt":13593,"scan":13594,"undergo":13595,"##ams":13596,"disabilities":13597,"colombian":13598,"comparing":13599,"dolphins":13600,"perkins":13601,"##lish":13602,"reprinted":13603,"unanimous":13604,"bounced":13605,"hairs":13606,"underworld":13607,"midwest":13608,"semester":13609,"bucket":13610,"paperback":13611,"miniseries":13612,"coventry":13613,"demise":13614,"##leigh":13615,"demonstrations":13616,"sensor":13617,"rotating":13618,"yan":13619,"##hler":13620,"arrange":13621,"soils":13622,"##idge":13623,"hyderabad":13624,"labs":13625,"##dr":13626,"brakes":13627,"grandchildren":13628,"##nde":13629,"negotiated":13630,"rover":13631,"ferrari":13632,"continuation":13633,"directorate":13634,"augusta":13635,"stevenson":13636,"counterpart":13637,"gore":13638,"##rda":13639,"nursery":13640,"rican":13641,"ave":13642,"collectively":13643,"broadly":13644,"pastoral":13645,"repertoire":13646,"asserted":13647,"discovering":13648,"nordic":13649,"styled":13650,"fiba":13651,"cunningham":13652,"harley":13653,"middlesex":13654,"survives":13655,"tumor":13656,"tempo":13657,"zack":13658,"aiming":13659,"lok":13660,"urgent":13661,"##rade":13662,"##nto":13663,"devils":13664,"##ement":13665,"contractor":13666,"turin":13667,"##wl":13668,"##ool":13669,"bliss":13670,"repaired":13671,"simmons":13672,"moan":13673,"astronomical":13674,"cr":13675,"negotiate":13676,"lyric":13677,"1890s":13678,"lara":13679,"bred":13680,"clad":13681,"angus":13682,"pbs":13683,"##ience":13684,"engineered":13685,"posed":13686,"##lk":13687,"hernandez":13688,"possessions":13689,"elbows":13690,"psychiatric":13691,"strokes":13692,"confluence":13693,"electorate":13694,"lifts":13695,"campuses":13696,"lava":13697,"alps":13698,"##ep":13699,"##ution":13700,"##date":13701,"physicist":13702,"woody":13703,"##page":13704,"##ographic":13705,"##itis":13706,"juliet":13707,"reformation":13708,"sparhawk":13709,"complement":13711,"suppressed":13712,"jewel":13713,"##½":13714,"floated":13715,"##kas":13716,"continuity":13717,"sadly":13718,"##ische":13719,"inability":13720,"melting":13721,"scanning":13722,"paula":13723,"flour":13724,"judaism":13725,"safer":13726,"vague":13727,"##lm":13728,"solving":13729,"curb":13730,"##stown":13731,"financially":13732,"gable":13733,"bees":13734,"expired":13735,"miserable":13736,"cassidy":13737,"dominion":13738,"cupped":13740,"robbery":13742,"facto":13743,"amos":13744,"warden":13745,"resume":13746,"tallest":13747,"marvin":13748,"ing":13749,"pounded":13750,"usd":13751,"declaring":13752,"gasoline":13753,"##aux":13754,"darkened":13755,"sophomore":13758,"##mere":13759,"erection":13760,"gossip":13761,"televised":13762,"risen":13763,"dial":13764,"##eu":13765,"pillars":13766,"##link":13767,"passages":13768,"profound":13769,"##tina":13770,"arabian":13771,"ashton":13772,"silicon":13773,"nail":13774,"##ead":13775,"##lated":13776,"##wer":13777,"##hardt":13778,"fleming":13779,"firearms":13780,"ducked":13781,"circuits":13782,"blows":13783,"waterloo":13784,"titans":13785,"##lina":13786,"atom":13787,"fireplace":13788,"cheshire":13789,"financed":13790,"activation":13791,"algorithms":13792,"##zzi":13793,"constituent":13794,"catcher":13795,"cherokee":13796,"partnerships":13797,"sexuality":13798,"platoon":13799,"tragic":13800,"vivian":13801,"guarded":13802,"whiskey":13803,"meditation":13804,"poetic":13805,"##late":13806,"##nga":13807,"##ake":13808,"porto":13809,"listeners":13810,"dominance":13811,"kendra":13812,"mona":13813,"chandler":13814,"factions":13815,"22nd":13816,"salisbury":13817,"attitudes":13818,"derivative":13819,"##ido":13820,"##haus":13821,"intake":13822,"paced":13823,"javier":13824,"illustrator":13825,"barrels":13826,"bias":13827,"cockpit":13828,"burnett":13829,"dreamed":13830,"ensuing":13831,"##anda":13832,"receptors":13833,"someday":13834,"hawkins":13835,"mattered":13836,"##lal":13837,"slavic":13838,"jesuit":13840,"cameroon":13841,"wasted":13842,"tai":13843,"wax":13844,"lowering":13845,"victorious":13846,"freaking":13847,"outright":13848,"hancock":13849,"librarian":13850,"sensing":13851,"bald":13852,"calcium":13853,"myers":13854,"tablet":13855,"announcing":13856,"barack":13857,"shipyard":13858,"pharmaceutical":13859,"##uan":13860,"greenwich":13861,"flush":13862,"medley":13863,"patches":13864,"wolfgang":13865,"pt":13866,"speeches":13867,"acquiring":13868,"exams":13869,"nikolai":13870,"##gg":13871,"hayden":13872,"kannada":13873,"##type":13874,"reilly":13875,"##pt":13876,"waitress":13877,"abdomen":13878,"devastated":13879,"capped":13880,"pseudonym":13881,"pharmacy":13882,"fulfill":13883,"paraguay":13884,"clicked":13886,"##trom":13887,"archipelago":13888,"syndicated":13889,"##hman":13890,"lumber":13891,"orgasm":13892,"rejection":13893,"clifford":13894,"lorraine":13895,"advent":13896,"mafia":13897,"rodney":13898,"brock":13899,"##ght":13900,"##used":13901,"##elia":13902,"cassette":13903,"chamberlain":13904,"despair":13905,"mongolia":13906,"sensors":13907,"developmental":13908,"upstream":13909,"##eg":13910,"##alis":13911,"spanning":13912,"trombone":13914,"basque":13915,"seeded":13916,"interred":13917,"renewable":13918,"rhys":13919,"leapt":13920,"revision":13921,"molecule":13922,"##ages":13923,"chord":13924,"vicious":13925,"nord":13926,"shivered":13927,"23rd":13928,"arlington":13929,"debts":13930,"corpus":13931,"sunrise":13932,"bays":13933,"blackburn":13934,"centimetres":13935,"##uded":13936,"shuddered":13937,"gm":13938,"strangely":13939,"gripping":13940,"cartoons":13941,"isabelle":13942,"orbital":13943,"##ppa":13944,"seals":13945,"proving":13946,"##lton":13947,"refusal":13948,"strengthened":13949,"bust":13950,"assisting":13951,"baghdad":13952,"batsman":13953,"portrayal":13954,"mara":13955,"pushes":13956,"spears":13957,"og":13958,"##cock":13959,"reside":13960,"nathaniel":13961,"brennan":13962,"confirmation":13964,"caucus":13965,"##worthy":13966,"markings":13967,"yemen":13968,"nobles":13969,"ku":13970,"lazy":13971,"viewer":13972,"catalan":13973,"encompasses":13974,"sawyer":13975,"##fall":13976,"sparked":13977,"substances":13978,"patents":13979,"braves":13980,"arranger":13981,"evacuation":13982,"sergio":13983,"persuade":13984,"dover":13985,"tolerance":13986,"penguin":13987,"cum":13988,"jockey":13989,"insufficient":13990,"townships":13991,"occupying":13992,"declining":13993,"plural":13994,"processed":13995,"projection":13996,"puppet":13997,"flanders":13998,"introduces":13999,"liability":14000,"##yon":14001,"gymnastics":14002,"antwerp":14003,"taipei":14004,"hobart":14005,"candles":14006,"jeep":14007,"wes":14008,"observers":14009,"chaplain":14011,"bundle":14012,"glorious":14013,"##hine":14014,"hazel":14015,"flung":14016,"sol":14017,"excavations":14018,"dumped":14019,"stares":14020,"sh":14021,"bangalore":14022,"triangular":14023,"icelandic":14024,"intervals":14025,"expressing":14026,"turbine":14027,"##vers":14028,"songwriting":14029,"crafts":14030,"##igo":14031,"jasmine":14032,"ditch":14033,"rite":14034,"##ways":14035,"entertaining":14036,"comply":14037,"sorrow":14038,"wrestlers":14039,"basel":14040,"emirates":14041,"marian":14042,"rivera":14043,"helpful":14044,"##some":14045,"caution":14046,"downward":14047,"networking":14048,"##atory":14049,"##tered":14050,"darted":14051,"genocide":14052,"emergence":14053,"replies":14054,"specializing":14055,"spokesman":14056,"convenient":14057,"unlocked":14058,"fading":14059,"augustine":14060,"concentrations":14061,"resemblance":14062,"elijah":14063,"investigator":14064,"andhra":14065,"##uda":14066,"promotes":14067,"bean":14068,"##rrell":14069,"fleeing":14070,"wan":14071,"simone":14072,"announcer":14073,"##ame":14074,"##bby":14075,"lydia":14076,"weaver":14077,"residency":14079,"modification":14080,"##fest":14081,"stretches":14082,"##ast":14083,"alternatively":14084,"nat":14085,"lowe":14086,"lacks":14087,"##ented":14088,"pam":14089,"tile":14090,"concealed":14091,"inferior":14092,"abdullah":14093,"residences":14094,"tissues":14095,"vengeance":14096,"##ided":14097,"moisture":14098,"peculiar":14099,"groove":14100,"zip":14101,"bologna":14102,"jennings":14103,"ninja":14104,"oversaw":14105,"zombies":14106,"pumping":14107,"batch":14108,"livingston":14109,"emerald":14110,"installations":14111,"peel":14113,"nitrogen":14114,"rama":14115,"##fying":14116,"##star":14117,"schooling":14118,"strands":14119,"responding":14120,"werner":14121,"##ost":14122,"lime":14123,"casa":14124,"accurately":14125,"targeting":14126,"##rod":14127,"underway":14128,"##uru":14129,"hemisphere":14130,"lester":14131,"##yard":14132,"occupies":14133,"2d":14134,"griffith":14135,"angrily":14136,"reorganized":14137,"##owing":14138,"courtney":14139,"deposited":14140,"##dd":14141,"##30":14142,"estadio":14143,"##ifies":14144,"dunn":14145,"exiled":14146,"##ying":14147,"checks":14148,"##combe":14149,"##о":14150,"##fly":14151,"successes":14152,"unexpectedly":14153,"blu":14154,"assessed":14155,"##flower":14156,"##ه":14157,"observing":14158,"sacked":14159,"spiders":14160,"kn":14161,"##tail":14162,"mu":14163,"nodes":14164,"prosperity":14165,"audrey":14166,"divisional":14167,"broncos":14169,"tangled":14170,"adjust":14171,"feeds":14172,"erosion":14173,"paolo":14174,"surf":14175,"directory":14176,"snatched":14177,"humid":14178,"admiralty":14179,"screwed":14180,"gt":14181,"reddish":14182,"##nese":14183,"modules":14184,"trench":14185,"lamps":14186,"bind":14187,"leah":14188,"bucks":14189,"competes":14190,"##nz":14191,"##form":14192,"transcription":14193,"##uc":14194,"isles":14195,"violently":14196,"clutching":14197,"pga":14198,"cyclist":14199,"inflation":14200,"flats":14201,"ragged":14202,"unnecessary":14203,"##hian":14204,"stubborn":14205,"coordinated":14206,"harriet":14207,"baba":14208,"disqualified":14209,"insect":14211,"wolfe":14212,"##fies":14213,"reinforcements":14214,"rocked":14215,"duel":14216,"winked":14217,"embraced":14218,"bricks":14219,"##raj":14220,"hiatus":14221,"defeats":14222,"pending":14223,"brightly":14224,"jealousy":14225,"##xton":14226,"##hm":14227,"##uki":14228,"lena":14229,"gdp":14230,"colorful":14231,"##dley":14232,"stein":14233,"kidney":14234,"##shu":14235,"underwear":14236,"wanderers":14237,"##haw":14238,"##icus":14239,"guardians":14240,"m³":14241,"roared":14242,"habits":14243,"##wise":14244,"permits":14245,"gp":14246,"uranium":14247,"punished":14248,"disguise":14249,"bundesliga":14250,"elise":14251,"dundee":14252,"erotic":14253,"partisan":14254,"pi":14255,"collectors":14256,"float":14257,"individually":14258,"rendering":14259,"behavioral":14260,"bucharest":14261,"ser":14262,"hare":14263,"valerie":14264,"corporal":14265,"nutrition":14266,"proportional":14267,"##isa":14268,"immense":14269,"##kis":14270,"pavement":14271,"##zie":14272,"##eld":14273,"sutherland":14274,"crouched":14275,"##lp":14277,"suzuki":14278,"trades":14279,"endurance":14280,"operas":14281,"crosby":14282,"prayed":14283,"priory":14284,"rory":14285,"socially":14286,"##urn":14287,"gujarat":14288,"##pu":14289,"walton":14290,"cube":14291,"pasha":14292,"privilege":14293,"lennon":14294,"floods":14295,"thorne":14296,"waterfall":14297,"nipple":14298,"scouting":14299,"approve":14300,"##lov":14301,"minorities":14302,"voter":14303,"dwight":14304,"extensions":14305,"assure":14306,"ballroom":14307,"slap":14308,"dripping":14309,"privileges":14310,"rejoined":14311,"confessed":14312,"demonstrating":14313,"patriotic":14314,"yell":14315,"investor":14316,"##uth":14317,"pagan":14318,"slumped":14319,"squares":14320,"##cle":14321,"##kins":14322,"confront":14323,"bert":14324,"embarrassment":14325,"##aid":14326,"aston":14327,"urging":14328,"sweater":14329,"starr":14330,"yuri":14331,"brains":14332,"williamson":14333,"commuter":14334,"mortar":14335,"structured":14336,"selfish":14337,"exports":14338,"##jon":14339,"cds":14340,"##him":14341,"unfinished":14342,"##rre":14343,"mortgage":14344,"destinations":14345,"##nagar":14346,"canoe":14347,"solitary":14348,"buchanan":14349,"delays":14350,"magistrate":14351,"fk":14352,"##pling":14353,"motivation":14354,"##lier":14355,"##vier":14356,"recruiting":14357,"assess":14358,"##mouth":14359,"malik":14360,"antique":14361,"pius":14363,"rahman":14364,"reich":14365,"tub":14366,"zhou":14367,"smashed":14368,"airs":14369,"galway":14370,"xii":14371,"conditioning":14372,"honduras":14373,"discharged":14374,"dexter":14375,"##pf":14376,"lionel":14377,"debates":14379,"lemon":14380,"tiffany":14381,"volunteered":14382,"dom":14383,"dioxide":14384,"procession":14385,"devi":14386,"sic":14387,"tremendous":14388,"advertisements":14389,"colts":14390,"transferring":14391,"verdict":14392,"hanover":14393,"decommissioned":14394,"utter":14395,"relate":14396,"pac":14397,"racism":14398,"##top":14399,"beacon":14400,"limp":14401,"similarity":14402,"terra":14403,"occurrence":14404,"ant":14405,"##how":14406,"becky":14407,"capt":14408,"updates":14409,"armament":14410,"richie":14411,"pal":14412,"##graph":14413,"halloween":14414,"mayo":14415,"##ssen":14416,"##bone":14417,"cara":14418,"serena":14419,"fcc":14420,"dolls":14421,"obligations":14422,"##dling":14423,"violated":14424,"lafayette":14425,"jakarta":14426,"exploitation":14427,"##ime":14428,"infamous":14429,"iconic":14430,"##lah":14431,"##park":14432,"kitty":14433,"moody":14434,"reginald":14435,"dread":14436,"spill":14437,"crystals":14438,"olivier":14439,"modeled":14440,"bluff":14441,"equilibrium":14442,"separating":14443,"notices":14444,"ordnance":14445,"extinction":14446,"onset":14447,"cosmic":14448,"attachment":14449,"sammy":14450,"expose":14451,"privy":14452,"anchored":14453,"##bil":14454,"abbott":14455,"admits":14456,"bending":14457,"baritone":14458,"emmanuel":14459,"policeman":14460,"vaughan":14461,"winged":14462,"climax":14463,"dresses":14464,"denny":14465,"polytechnic":14466,"mohamed":14467,"burmese":14468,"authentic":14469,"nikki":14470,"genetics":14471,"grandparents":14472,"homestead":14473,"gaza":14474,"postponed":14475,"metacritic":14476,"una":14477,"##sby":14478,"##bat":14479,"unstable":14480,"dissertation":14481,"##rial":14482,"##cian":14483,"curls":14484,"obscure":14485,"uncovered":14486,"bronx":14487,"praying":14488,"disappearing":14489,"##hoe":14490,"prehistoric":14491,"coke":14492,"turret":14493,"mutations":14494,"nonprofit":14495,"pits":14496,"monaco":14497,"##ي":14498,"##usion":14499,"prominently":14500,"dispatched":14501,"podium":14502,"##mir":14503,"uci":14504,"##uation":14505,"fortifications":14507,"birthplace":14508,"kendall":14509,"##lby":14510,"##oll":14511,"preacher":14512,"rack":14513,"goodman":14514,"##rman":14515,"persistent":14516,"##ott":14517,"countless":14518,"jaime":14519,"recorder":14520,"lexington":14521,"persecution":14522,"jumps":14523,"renewal":14524,"wagons":14525,"##11":14526,"crushing":14527,"##holder":14528,"decorations":14529,"##lake":14530,"abundance":14531,"wrath":14532,"laundry":14533,"£1":14534,"garde":14535,"##rp":14536,"jeanne":14537,"beetles":14538,"peasant":14539,"##sl":14540,"splitting":14541,"caste":14542,"sergei":14543,"##rer":14544,"##ema":14545,"scripts":14546,"##ively":14547,"rub":14548,"satellites":14549,"##vor":14550,"inscribed":14551,"verlag":14552,"scrapped":14553,"gale":14554,"packages":14555,"chick":14556,"potato":14557,"slogan":14558,"kathleen":14559,"arabs":14560,"##culture":14561,"counterparts":14562,"reminiscent":14563,"choral":14564,"##tead":14565,"rand":14566,"retains":14567,"bushes":14568,"dane":14569,"accomplish":14570,"courtesy":14571,"closes":14572,"##oth":14573,"slaughter":14574,"hague":14575,"krakow":14576,"lawson":14577,"tailed":14578,"elias":14579,"ginger":14580,"##ttes":14581,"canopy":14582,"betrayal":14583,"rebuilding":14584,"turf":14585,"##hof":14586,"frowning":14587,"allegiance":14588,"brigades":14589,"kicks":14590,"rebuild":14591,"polls":14592,"alias":14593,"nationalism":14594,"td":14595,"rowan":14596,"audition":14597,"bowie":14598,"fortunately":14599,"recognizes":14600,"harp":14601,"dillon":14602,"horrified":14603,"##oro":14604,"renault":14605,"##tics":14606,"ropes":14607,"##α":14608,"presumed":14609,"rewarded":14610,"infrared":14611,"wiping":14612,"accelerated":14613,"illustration":14614,"##rid":14615,"presses":14616,"practitioners":14617,"badminton":14618,"##iard":14619,"detained":14620,"##tera":14621,"recognizing":14622,"relates":14623,"misery":14624,"##sies":14625,"##tly":14626,"reproduction":14627,"piercing":14628,"potatoes":14629,"thornton":14630,"esther":14631,"manners":14632,"hbo":14633,"##aan":14634,"ours":14635,"bullshit":14636,"ernie":14637,"perennial":14638,"sensitivity":14639,"illuminated":14640,"rupert":14641,"##jin":14642,"##iss":14643,"##ear":14644,"rfc":14645,"nassau":14646,"##dock":14647,"staggered":14648,"socialism":14649,"##haven":14650,"appointments":14651,"nonsense":14652,"prestige":14653,"sharma":14654,"haul":14655,"##tical":14656,"solidarity":14657,"gps":14658,"##ook":14659,"##rata":14660,"igor":14661,"pedestrian":14662,"##uit":14663,"baxter":14664,"tenants":14665,"wires":14666,"medication":14667,"unlimited":14668,"guiding":14669,"impacts":14670,"diabetes":14671,"##rama":14672,"sasha":14673,"pas":14674,"clive":14675,"extraction":14676,"continually":14678,"constraints":14679,"##bilities":14680,"sonata":14681,"hunted":14682,"sixteenth":14683,"chu":14684,"planting":14685,"quote":14686,"mayer":14687,"pretended":14688,"abs":14689,"spat":14690,"##hua":14691,"ceramic":14692,"##cci":14693,"curtains":14694,"pigs":14695,"pitching":14696,"##dad":14697,"latvian":14698,"sore":14699,"dayton":14700,"##sted":14701,"##qi":14702,"patrols":14703,"slice":14704,"playground":14705,"##nted":14706,"shone":14707,"stool":14708,"apparatus":14709,"inadequate":14710,"mates":14711,"treason":14712,"##ija":14713,"desires":14714,"##liga":14715,"##croft":14716,"somalia":14717,"laurent":14718,"mir":14719,"leonardo":14720,"oracle":14721,"grape":14722,"obliged":14723,"chevrolet":14724,"thirteenth":14725,"stunning":14726,"enthusiastic":14727,"##ede":14728,"accounted":14729,"concludes":14730,"currents":14731,"basil":14732,"##kovic":14733,"drought":14734,"##rica":14735,"mai":14736,"##aire":14737,"shove":14738,"posting":14739,"##shed":14740,"pilgrimage":14741,"humorous":14742,"packing":14743,"fry":14744,"pencil":14745,"wines":14746,"smells":14747,"marilyn":14749,"aching":14750,"newest":14751,"clung":14752,"bon":14753,"neighbours":14754,"sanctioned":14755,"##pie":14756,"mug":14757,"##stock":14758,"drowning":14759,"##mma":14760,"hydraulic":14761,"##vil":14762,"hiring":14763,"reminder":14764,"lilly":14765,"investigators":14766,"##ncies":14767,"sour":14768,"##eous":14769,"compulsory":14770,"packet":14771,"##rion":14772,"##graphic":14773,"##elle":14774,"cannes":14775,"##inate":14776,"depressed":14777,"##rit":14778,"heroic":14779,"importantly":14780,"theresa":14781,"##tled":14782,"conway":14783,"saturn":14784,"marginal":14785,"rae":14786,"##xia":14787,"corresponds":14788,"royce":14789,"pact":14790,"jasper":14791,"explosives":14792,"packaging":14793,"aluminium":14794,"##ttered":14795,"denotes":14796,"rhythmic":14797,"spans":14798,"assignments":14799,"hereditary":14800,"outlined":14801,"originating":14802,"sundays":14803,"lad":14804,"reissued":14805,"greeting":14806,"beatrice":14807,"##dic":14808,"pillar":14809,"marcos":14810,"plots":14811,"handbook":14812,"alcoholic":14813,"judiciary":14814,"avant":14815,"slides":14816,"extract":14817,"masculine":14818,"blur":14819,"##eum":14820,"##force":14821,"homage":14822,"trembled":14823,"owens":14824,"hymn":14825,"trey":14826,"omega":14827,"signaling":14828,"socks":14829,"accumulated":14830,"reacted":14831,"attic":14832,"theo":14833,"lining":14834,"angie":14835,"distraction":14836,"primera":14837,"talbot":14838,"##key":14839,"ti":14841,"creativity":14842,"billed":14843,"##hey":14844,"deacon":14845,"eduardo":14846,"identifies":14847,"proposition":14848,"dizzy":14849,"gunner":14850,"hogan":14851,"##yam":14852,"##pping":14853,"##hol":14854,"ja":14855,"##chan":14856,"jensen":14857,"reconstructed":14858,"##berger":14859,"clearance":14860,"darius":14861,"##nier":14862,"abe":14863,"harlem":14864,"plea":14865,"dei":14866,"circled":14867,"emotionally":14868,"notation":14869,"fascist":14870,"neville":14871,"exceeded":14872,"upwards":14873,"viable":14874,"ducks":14875,"##fo":14876,"workforce":14877,"racer":14878,"limiting":14879,"shri":14880,"##lson":14881,"possesses":14882,"kerr":14884,"moths":14885,"devastating":14886,"laden":14887,"disturbing":14888,"locking":14889,"##cture":14890,"gal":14891,"fearing":14892,"accreditation":14893,"flavor":14894,"aide":14895,"1870s":14896,"mountainous":14897,"##baum":14898,"melt":14899,"##ures":14900,"motel":14901,"texture":14902,"servers":14903,"soda":14904,"##mb":14905,"herd":14906,"##nium":14907,"erect":14908,"puzzled":14909,"hum":14910,"peggy":14911,"examinations":14912,"gould":14913,"testified":14914,"geoff":14915,"ren":14916,"devised":14917,"sacks":14918,"##law":14919,"denial":14920,"posters":14921,"grunted":14922,"cesar":14923,"tutor":14924,"ec":14925,"gerry":14926,"offerings":14927,"byrne":14928,"falcons":14929,"combinations":14930,"ct":14931,"incoming":14932,"pardon":14933,"rocking":14934,"26th":14935,"avengers":14936,"flared":14937,"mankind":14938,"seller":14939,"uttar":14940,"loch":14941,"nadia":14942,"stroking":14943,"exposing":14944,"##hd":14945,"fertile":14946,"ancestral":14947,"instituted":14948,"##has":14949,"noises":14950,"prophecy":14951,"taxation":14952,"eminent":14953,"vivid":14954,"pol":14955,"##bol":14956,"dart":14957,"indirect":14958,"multimedia":14959,"notebook":14960,"upside":14961,"displaying":14962,"adrenaline":14963,"referenced":14964,"geometric":14965,"##iving":14966,"progression":14967,"##ddy":14968,"blunt":14969,"announce":14970,"##far":14971,"implementing":14972,"##lav":14973,"aggression":14974,"liaison":14975,"cooler":14976,"cares":14977,"headache":14978,"plantations":14979,"gorge":14980,"dots":14981,"impulse":14982,"thickness":14983,"ashamed":14984,"averaging":14985,"kathy":14986,"obligation":14987,"precursor":14988,"fowler":14990,"symmetry":14991,"thee":14992,"hears":14994,"##rai":14995,"undergoing":14996,"ads":14997,"butcher":14998,"bowler":14999,"##lip":15000,"cigarettes":15001,"subscription":15002,"goodness":15003,"##ically":15004,"browne":15005,"##hos":15006,"##tech":15007,"kyoto":15008,"donor":15009,"##erty":15010,"damaging":15011,"friction":15012,"drifting":15013,"expeditions":15014,"hardened":15015,"prostitution":15016,"fauna":15018,"blankets":15019,"claw":15020,"tossing":15021,"snarled":15022,"butterflies":15023,"recruits":15024,"investigative":15025,"coated":15026,"healed":15027,"communal":15029,"hai":15030,"xiii":15031,"academics":15032,"boone":15033,"psychologist":15034,"restless":15035,"lahore":15036,"stephens":15037,"mba":15038,"brendan":15039,"foreigners":15040,"printer":15041,"##pc":15042,"ached":15043,"explode":15044,"27th":15045,"deed":15046,"scratched":15047,"dared":15048,"##pole":15049,"cardiac":15050,"okinawa":15052,"proto":15053,"commando":15054,"compelled":15055,"oddly":15056,"electrons":15057,"##base":15058,"replica":15059,"thanksgiving":15060,"##rist":15061,"sheila":15062,"deliberate":15063,"stafford":15064,"tidal":15065,"representations":15066,"hercules":15067,"ou":15068,"##path":15069,"##iated":15070,"kidnapping":15071,"lenses":15072,"##tling":15073,"deficit":15074,"samoa":15075,"mouths":15076,"consuming":15077,"computational":15078,"maze":15079,"granting":15080,"smirk":15081,"razor":15082,"fixture":15083,"ideals":15084,"inviting":15085,"aiden":15086,"nominal":15087,"##vs":15088,"issuing":15089,"julio":15090,"pitt":15091,"ramsey":15092,"docks":15093,"##oss":15094,"exhaust":15095,"##owed":15096,"bavarian":15097,"draped":15098,"anterior":15099,"mating":15100,"ethiopian":15101,"explores":15102,"noticing":15103,"##nton":15104,"discarded":15105,"convenience":15106,"hoffman":15107,"endowment":15108,"beasts":15109,"cartridge":15110,"mormon":15111,"paternal":15112,"probe":15113,"sleeves":15114,"interfere":15115,"lump":15116,"deadline":15117,"##rail":15118,"jenks":15119,"bulldogs":15120,"scrap":15121,"alternating":15122,"justified":15123,"reproductive":15124,"nam":15125,"seize":15126,"descending":15127,"secretariat":15128,"kirby":15129,"coupe":15130,"grouped":15131,"smash":15132,"panther":15133,"sedan":15134,"tapping":15135,"##18":15136,"lola":15137,"cheer":15138,"germanic":15139,"unfortunate":15140,"##eter":15141,"unrelated":15142,"##fan":15143,"subordinate":15144,"##sdale":15145,"suzanne":15146,"advertisement":15147,"##ility":15148,"horsepower":15149,"##lda":15150,"cautiously":15151,"discourse":15152,"luigi":15153,"##mans":15154,"##fields":15155,"noun":15156,"prevalent":15157,"mao":15158,"schneider":15159,"everett":15160,"surround":15161,"governorate":15162,"kira":15163,"##avia":15164,"westward":15165,"##take":15166,"misty":15167,"rails":15168,"sustainability":15169,"unused":15171,"##rating":15172,"packs":15173,"toast":15174,"unwilling":15175,"regulate":15176,"thy":15177,"suffrage":15178,"nile":15179,"awe":15180,"assam":15181,"definitions":15182,"travelers":15183,"affordable":15184,"##rb":15185,"conferred":15186,"sells":15187,"undefeated":15188,"beneficial":15189,"torso":15190,"basal":15191,"repeating":15192,"remixes":15193,"##pass":15194,"bahrain":15195,"cables":15196,"fang":15197,"##itated":15198,"excavated":15199,"numbering":15200,"statutory":15201,"##rey":15202,"deluxe":15203,"##lian":15204,"forested":15205,"ramirez":15206,"derbyshire":15207,"zeus":15208,"slamming":15209,"transfers":15210,"astronomer":15211,"banana":15212,"lottery":15213,"berg":15214,"histories":15215,"bamboo":15216,"##uchi":15217,"resurrection":15218,"posterior":15219,"bowls":15220,"vaguely":15221,"##thi":15222,"thou":15223,"preserving":15224,"tensed":15225,"offence":15226,"##inas":15227,"meyrick":15228,"callum":15229,"ridden":15230,"watt":15231,"langdon":15232,"tying":15233,"lowland":15234,"snorted":15235,"daring":15236,"truman":15237,"##hale":15238,"##girl":15239,"aura":15240,"overly":15241,"filing":15242,"weighing":15243,"goa":15244,"infections":15245,"philanthropist":15246,"saunders":15247,"eponymous":15248,"##owski":15249,"latitude":15250,"perspectives":15251,"reviewing":15252,"mets":15253,"commandant":15254,"radial":15255,"##kha":15256,"flashlight":15257,"reliability":15258,"koch":15259,"vowels":15260,"amazed":15261,"ada":15262,"elaine":15263,"supper":15264,"##rth":15265,"##encies":15266,"predator":15267,"debated":15268,"soviets":15269,"cola":15270,"##boards":15271,"##nah":15272,"compartment":15273,"crooked":15274,"arbitrary":15275,"fourteenth":15276,"##ctive":15277,"havana":15278,"majors":15279,"steelers":15280,"clips":15281,"profitable":15282,"ambush":15283,"exited":15284,"packers":15285,"##tile":15286,"nude":15287,"cracks":15288,"fungi":15289,"##е":15290,"limb":15291,"trousers":15292,"josie":15293,"shelby":15294,"tens":15295,"frederic":15296,"##ος":15297,"definite":15298,"smoothly":15299,"constellation":15300,"insult":15301,"baton":15302,"discs":15303,"lingering":15304,"##nco":15305,"conclusions":15306,"lent":15307,"staging":15308,"becker":15309,"grandpa":15310,"shaky":15311,"##tron":15312,"einstein":15313,"obstacles":15314,"sk":15315,"adverse":15316,"elle":15317,"economically":15318,"##moto":15319,"mccartney":15320,"thor":15321,"dismissal":15322,"motions":15323,"readings":15324,"nostrils":15325,"treatise":15326,"##pace":15327,"squeezing":15328,"evidently":15329,"prolonged":15330,"venezuelan":15332,"je":15333,"marguerite":15334,"beirut":15335,"takeover":15336,"shareholders":15337,"##vent":15338,"denise":15339,"digit":15340,"airplay":15341,"norse":15342,"##bbling":15343,"imaginary":15344,"pills":15345,"hubert":15346,"blaze":15347,"vacated":15348,"eliminating":15349,"##ello":15350,"vine":15351,"mansfield":15352,"##tty":15353,"retrospective":15354,"barrow":15355,"borne":15356,"clutch":15357,"bail":15358,"forensic":15359,"weaving":15360,"##nett":15361,"##witz":15362,"desktop":15363,"citadel":15364,"promotions":15365,"worrying":15366,"dorset":15367,"ieee":15368,"subdivided":15369,"##iating":15370,"manned":15371,"expeditionary":15372,"pickup":15373,"synod":15374,"chuckle":15375,"barney":15377,"##rz":15378,"##ffin":15379,"functionality":15380,"karachi":15381,"litigation":15382,"meanings":15383,"uc":15384,"lick":15385,"turbo":15386,"anders":15387,"##ffed":15388,"execute":15389,"curl":15390,"oppose":15391,"ankles":15392,"typhoon":15393,"##د":15394,"##ache":15395,"##asia":15396,"linguistics":15397,"compassion":15398,"pressures":15399,"grazing":15400,"perfection":15401,"##iting":15402,"immunity":15403,"monopoly":15404,"muddy":15405,"backgrounds":15406,"namibia":15408,"francesca":15409,"monitors":15410,"attracting":15411,"stunt":15412,"tuition":15413,"##ии":15414,"vegetable":15415,"##mates":15416,"##quent":15417,"mgm":15418,"jen":15419,"complexes":15420,"forts":15421,"##ond":15422,"cellar":15423,"bites":15424,"seventeenth":15425,"royals":15426,"flemish":15427,"failures":15428,"mast":15429,"charities":15430,"##cular":15431,"peruvian":15432,"capitals":15433,"macmillan":15434,"ipswich":15435,"outward":15436,"frigate":15437,"postgraduate":15438,"folds":15439,"employing":15440,"##ouse":15441,"concurrently":15442,"fiery":15443,"##tai":15444,"contingent":15445,"nightmares":15446,"monumental":15447,"nicaragua":15448,"##kowski":15449,"lizard":15450,"mal":15451,"fielding":15452,"gig":15453,"reject":15454,"##pad":15455,"harding":15456,"##ipe":15457,"coastline":15458,"##cin":15459,"##nos":15460,"beethoven":15461,"humphrey":15462,"innovations":15463,"##tam":15464,"##nge":15465,"norris":15466,"doris":15467,"solicitor":15468,"huang":15469,"obey":15470,"##lc":15472,"niagara":15473,"##tton":15474,"shelves":15475,"aug":15476,"bourbon":15477,"curry":15478,"nightclub":15479,"specifications":15480,"hilton":15481,"##ndo":15482,"centennial":15483,"dispersed":15484,"worm":15485,"neglected":15486,"briggs":15487,"sm":15488,"font":15489,"kuala":15490,"uneasy":15491,"plc":15492,"##nstein":15493,"##bound":15494,"##aking":15495,"##burgh":15496,"awaiting":15497,"pronunciation":15498,"##bbed":15499,"##quest":15500,"eh":15501,"optimal":15502,"zhu":15503,"raped":15504,"greens":15505,"presided":15506,"brenda":15507,"worries":15508,"##life":15509,"venetian":15510,"marxist":15511,"turnout":15512,"##lius":15513,"refined":15514,"braced":15515,"sins":15516,"grasped":15517,"sunderland":15518,"nickel":15519,"speculated":15520,"lowell":15521,"cyrillic":15522,"communism":15523,"fundraising":15524,"resembling":15525,"colonists":15526,"mutant":15527,"freddie":15528,"usc":15529,"##mos":15530,"gratitude":15531,"##run":15532,"mural":15533,"##lous":15534,"chemist":15535,"wi":15536,"reminds":15537,"28th":15538,"steals":15539,"tess":15540,"pietro":15541,"##ingen":15542,"promoter":15543,"ri":15544,"microphone":15545,"honoured":15546,"rai":15547,"sant":15548,"##qui":15549,"feather":15550,"##nson":15551,"burlington":15552,"kurdish":15553,"terrorists":15554,"deborah":15555,"sickness":15556,"##wed":15557,"##eet":15558,"hazard":15559,"irritated":15560,"desperation":15561,"veil":15562,"clarity":15563,"##rik":15564,"jewels":15565,"xv":15566,"##gged":15567,"##ows":15568,"##cup":15569,"berkshire":15570,"unfair":15571,"mysteries":15572,"orchid":15573,"winced":15574,"exhaustion":15575,"renovations":15576,"stranded":15577,"obe":15578,"infinity":15579,"##nies":15580,"adapt":15581,"redevelopment":15582,"thanked":15583,"registry":15584,"olga":15585,"domingo":15586,"noir":15587,"tudor":15588,"ole":15589,"##atus":15590,"commenting":15591,"behaviors":15592,"##ais":15593,"crisp":15594,"pauline":15595,"probable":15596,"stirling":15597,"wigan":15598,"##bian":15599,"paralympics":15600,"panting":15601,"surpassed":15602,"##rew":15603,"luca":15604,"barred":15605,"pony":15606,"famed":15607,"##sters":15608,"cassandra":15609,"waiter":15610,"carolyn":15611,"exported":15612,"##orted":15613,"andres":15614,"destructive":15615,"deeds":15616,"jonah":15617,"castles":15618,"vacancy":15619,"suv":15620,"##glass":15621,"orchard":15623,"yep":15624,"famine":15625,"belarusian":15626,"sprang":15627,"##forth":15628,"skinny":15629,"##mis":15630,"administrators":15631,"rotterdam":15632,"zambia":15633,"zhao":15634,"boiler":15635,"discoveries":15636,"##ride":15637,"##physics":15638,"lucius":15639,"disappointing":15640,"outreach":15641,"spoon":15642,"##frame":15643,"qualifications":15644,"unanimously":15645,"enjoys":15646,"regency":15647,"##iidae":15648,"stade":15649,"realism":15650,"veterinary":15651,"rodgers":15652,"dump":15653,"alain":15654,"chestnut":15655,"castile":15656,"censorship":15657,"rumble":15658,"gibbs":15659,"##itor":15660,"communion":15661,"reggae":15662,"inactivated":15663,"logs":15664,"loads":15665,"##houses":15666,"homosexual":15667,"##iano":15668,"ale":15669,"informs":15670,"##cas":15671,"phrases":15672,"plaster":15673,"linebacker":15674,"ambrose":15675,"kaiser":15676,"fascinated":15677,"limerick":15679,"recruitment":15680,"forge":15681,"mastered":15682,"##nding":15683,"leinster":15684,"rooted":15685,"threaten":15686,"##strom":15687,"borneo":15688,"##hes":15689,"suggestions":15690,"scholarships":15691,"propeller":15692,"documentaries":15693,"patronage":15694,"coats":15695,"constructing":15696,"invest":15697,"neurons":15698,"comet":15699,"entirety":15700,"shouts":15701,"identities":15702,"annoying":15703,"unchanged":15704,"wary":15705,"##antly":15706,"##ogy":15707,"neat":15708,"oversight":15709,"##kos":15710,"phillies":15711,"replay":15712,"constance":15713,"##kka":15714,"incarnation":15715,"humble":15716,"skies":15717,"minus":15718,"##acy":15719,"smithsonian":15720,"##chel":15721,"guerrilla":15722,"jar":15723,"cadets":15724,"##plate":15725,"surplus":15726,"audit":15727,"##aru":15728,"cracking":15729,"joanna":15730,"louisa":15731,"pacing":15732,"##lights":15733,"intentionally":15734,"##iri":15735,"diner":15736,"nwa":15737,"imprint":15738,"australians":15739,"tong":15740,"unprecedented":15741,"bunker":15742,"naive":15743,"specialists":15744,"ark":15745,"nichols":15746,"railing":15747,"leaked":15748,"pedal":15749,"##uka":15750,"shrub":15751,"longing":15752,"roofs":15753,"v8":15754,"captains":15755,"neural":15756,"tuned":15757,"##ntal":15758,"##jet":15759,"emission":15760,"medina":15761,"frantic":15762,"codex":15763,"definitive":15764,"sid":15765,"abolition":15766,"intensified":15767,"stocks":15768,"enrique":15769,"sustain":15770,"genoa":15771,"oxide":15772,"##written":15773,"clues":15774,"cha":15775,"##gers":15776,"tributaries":15777,"fragment":15778,"venom":15779,"##rity":15780,"##ente":15781,"##sca":15782,"muffled":15783,"vain":15784,"sire":15785,"laos":15786,"##ingly":15787,"##hana":15788,"hastily":15789,"snapping":15790,"surfaced":15791,"sentiment":15792,"motive":15793,"##oft":15794,"contests":15795,"approximate":15796,"mesa":15797,"luckily":15798,"dinosaur":15799,"exchanges":15800,"propelled":15801,"accord":15802,"bourne":15803,"relieve":15804,"tow":15805,"masks":15806,"offended":15807,"##ues":15808,"cynthia":15809,"##mmer":15810,"rains":15811,"bartender":15812,"zinc":15813,"reviewers":15814,"lois":15815,"##sai":15816,"legged":15817,"arrogant":15818,"rafe":15819,"rosie":15820,"comprise":15821,"handicap":15822,"blockade":15823,"inlet":15824,"lagoon":15825,"copied":15826,"drilling":15827,"shelley":15828,"petals":15829,"##inian":15830,"mandarin":15831,"obsolete":15832,"##inated":15833,"onward":15834,"arguably":15835,"productivity":15836,"cindy":15837,"praising":15838,"seldom":15839,"busch":15840,"discusses":15841,"raleigh":15842,"shortage":15843,"ranged":15844,"stanton":15845,"encouragement":15846,"firstly":15847,"conceded":15848,"overs":15849,"temporal":15850,"##uke":15851,"cbe":15852,"##bos":15853,"woo":15854,"certainty":15855,"pumps":15856,"##pton":15857,"stalked":15858,"##uli":15859,"lizzie":15860,"periodic":15861,"thieves":15862,"weaker":15863,"##night":15864,"gases":15865,"shoving":15866,"chooses":15867,"wc":15868,"##chemical":15869,"prompting":15870,"weights":15871,"##kill":15872,"robust":15873,"flanked":15874,"sticky":15875,"hu":15876,"tuberculosis":15877,"##eb":15878,"##eal":15879,"christchurch":15880,"resembled":15881,"wallet":15882,"reese":15883,"inappropriate":15884,"pictured":15885,"distract":15886,"fixing":15887,"fiddle":15888,"giggled":15889,"burger":15890,"heirs":15891,"hairy":15892,"mechanic":15893,"torque":15894,"apache":15895,"obsessed":15896,"chiefly":15897,"cheng":15898,"logging":15899,"##tag":15900,"extracted":15901,"meaningful":15902,"numb":15903,"##vsky":15904,"gloucestershire":15905,"reminding":15906,"##bay":15907,"unite":15908,"##lit":15909,"breeds":15910,"diminished":15911,"clown":15912,"glove":15913,"1860s":15914,"##ن":15915,"##ug":15916,"archibald":15917,"focal":15918,"freelance":15919,"sliced":15920,"depiction":15921,"##yk":15922,"organism":15923,"switches":15924,"sights":15925,"stray":15926,"crawling":15927,"##ril":15928,"lever":15929,"leningrad":15930,"interpretations":15931,"loops":15932,"anytime":15933,"reel":15934,"alicia":15935,"delighted":15936,"##ech":15937,"inhaled":15938,"xiv":15939,"suitcase":15940,"bernie":15941,"vega":15942,"licenses":15943,"northampton":15944,"exclusion":15945,"induction":15946,"monasteries":15947,"racecourse":15948,"homosexuality":15949,"##right":15950,"##sfield":15951,"##rky":15952,"dimitri":15953,"michele":15954,"alternatives":15955,"ions":15956,"commentators":15957,"genuinely":15958,"objected":15959,"pork":15960,"hospitality":15961,"fencing":15962,"stephan":15963,"warships":15964,"peripheral":15965,"wit":15966,"drunken":15967,"wrinkled":15968,"quentin":15969,"spends":15970,"departing":15971,"chung":15972,"numerical":15973,"spokesperson":15974,"##zone":15975,"johannesburg":15976,"caliber":15977,"killers":15978,"##udge":15979,"assumes":15980,"neatly":15981,"demographic":15982,"abigail":15983,"bloc":15984,"##vel":15985,"mounting":15986,"##lain":15987,"bentley":15988,"slightest":15989,"xu":15990,"recipients":15991,"##jk":15992,"merlin":15993,"##writer":15994,"seniors":15995,"prisons":15996,"blinking":15997,"hindwings":15998,"flickered":15999,"kappa":16000,"##hel":16001,"80s":16002,"strengthening":16003,"appealing":16004,"brewing":16005,"gypsy":16006,"mali":16007,"lashes":16008,"hulk":16009,"unpleasant":16010,"harassment":16011,"bio":16012,"treaties":16013,"predict":16014,"instrumentation":16015,"pulp":16016,"troupe":16017,"boiling":16018,"mantle":16019,"##ffe":16020,"ins":16021,"##vn":16022,"dividing":16023,"handles":16024,"verbs":16025,"##onal":16026,"coconut":16027,"senegal":16028,"thorough":16030,"gum":16031,"momentarily":16032,"##sto":16033,"cocaine":16034,"panicked":16035,"destined":16036,"##turing":16037,"teatro":16038,"denying":16039,"weary":16040,"captained":16041,"mans":16042,"##hawks":16043,"##code":16044,"wakefield":16045,"bollywood":16046,"thankfully":16047,"##16":16048,"cyril":16049,"##wu":16050,"amendments":16051,"##bahn":16052,"consultation":16053,"stud":16054,"reflections":16055,"kindness":16056,"internally":16058,"##ovo":16059,"tex":16060,"mosaic":16061,"distribute":16062,"paddy":16063,"seeming":16064,"##hic":16066,"piers":16067,"##15":16068,"##mura":16069,"##verse":16070,"popularly":16071,"winger":16072,"kang":16073,"sentinel":16074,"mccoy":16075,"##anza":16076,"covenant":16077,"##bag":16078,"verge":16079,"fireworks":16080,"suppress":16081,"thrilled":16082,"dominate":16083,"##jar":16084,"swansea":16085,"##60":16086,"reconciliation":16088,"##ndi":16089,"stiffened":16090,"cue":16091,"dorian":16092,"##uf":16093,"damascus":16094,"amor":16095,"ida":16096,"foremost":16097,"##aga":16098,"porsche":16099,"unseen":16100,"dir":16101,"##had":16102,"##azi":16103,"stony":16104,"lexi":16105,"melodies":16106,"##nko":16107,"angular":16108,"integer":16109,"podcast":16110,"ants":16111,"inherent":16112,"jaws":16113,"justify":16114,"persona":16115,"##olved":16116,"josephine":16117,"##nr":16118,"##ressed":16119,"customary":16120,"flashes":16121,"gala":16122,"cyrus":16123,"glaring":16124,"backyard":16125,"ariel":16126,"physiology":16127,"greenland":16128,"html":16129,"stir":16130,"avon":16131,"atletico":16132,"finch":16133,"methodology":16134,"ked":16135,"##lent":16136,"mas":16137,"catholicism":16138,"townsend":16139,"branding":16140,"quincy":16141,"fits":16142,"containers":16143,"ashore":16145,"aragon":16146,"##19":16147,"forearm":16148,"poisoning":16149,"##sd":16150,"adopting":16151,"conquer":16152,"grinding":16153,"amnesty":16154,"keller":16155,"finances":16156,"evaluate":16157,"forged":16158,"lankan":16159,"instincts":16160,"##uto":16161,"guam":16162,"bosnian":16163,"photographed":16164,"workplace":16165,"desirable":16166,"protector":16167,"##dog":16168,"allocation":16169,"intently":16170,"encourages":16171,"willy":16172,"##sten":16173,"bodyguard":16174,"electro":16175,"brighter":16176,"##ν":16177,"bihar":16178,"##chev":16179,"lasts":16180,"opener":16181,"amphibious":16182,"sal":16183,"verde":16184,"arte":16185,"##cope":16186,"captivity":16187,"vocabulary":16188,"yields":16189,"##tted":16190,"agreeing":16191,"desmond":16192,"pioneered":16193,"##chus":16194,"strap":16195,"campaigned":16196,"railroads":16197,"##ович":16198,"emblem":16199,"##dre":16200,"stormed":16201,"##ulous":16203,"marijuana":16204,"northumberland":16205,"##gn":16206,"##nath":16207,"bowen":16208,"landmarks":16209,"beaumont":16210,"##qua":16211,"danube":16212,"##bler":16213,"attorneys":16214,"th":16215,"ge":16216,"flyers":16217,"critique":16218,"villains":16219,"cass":16220,"mutation":16221,"acc":16222,"##0s":16223,"colombo":16224,"mckay":16225,"motif":16226,"sampling":16227,"concluding":16228,"syndicate":16229,"##rell":16230,"neon":16231,"stables":16232,"ds":16233,"warnings":16234,"clint":16235,"mourning":16236,"wilkinson":16237,"##tated":16238,"merrill":16239,"leopard":16240,"evenings":16241,"exhaled":16242,"emil":16243,"sonia":16244,"ezra":16245,"discrete":16246,"stove":16247,"farrell":16248,"fifteenth":16249,"prescribed":16250,"superhero":16251,"##rier":16252,"worms":16253,"helm":16254,"wren":16255,"##duction":16256,"##hc":16257,"expo":16258,"##rator":16259,"hq":16260,"unfamiliar":16261,"antony":16262,"prevents":16263,"acceleration":16264,"fiercely":16265,"mari":16266,"painfully":16267,"calculations":16268,"cheaper":16269,"ign":16270,"clifton":16271,"irvine":16272,"davenport":16273,"mozambique":16274,"##np":16275,"pierced":16276,"##evich":16277,"wonders":16278,"##wig":16279,"##cate":16280,"##iling":16281,"crusade":16282,"ware":16283,"##uel":16284,"enzymes":16285,"reasonably":16286,"mls":16287,"##coe":16288,"mater":16289,"ambition":16290,"bunny":16291,"eliot":16292,"kernel":16293,"##fin":16294,"asphalt":16295,"headmaster":16296,"torah":16297,"aden":16298,"lush":16299,"pins":16300,"waived":16301,"##care":16302,"##yas":16303,"joao":16304,"substrate":16305,"enforce":16306,"##grad":16307,"##ules":16308,"alvarez":16309,"selections":16310,"epidemic":16311,"tempted":16312,"##bit":16313,"bremen":16314,"translates":16315,"ensured":16316,"waterfront":16317,"29th":16318,"forrest":16319,"manny":16320,"malone":16321,"kramer":16322,"reigning":16323,"cookies":16324,"simpler":16325,"absorption":16326,"engraved":16328,"##ffy":16329,"evaluated":16330,"haze":16332,"comforting":16334,"crossover":16335,"##abe":16336,"thorn":16337,"##rift":16338,"##imo":16339,"##pop":16340,"suppression":16341,"fatigue":16342,"cutter":16343,"##tr":16344,"wurttemberg":16346,"##orf":16347,"enforced":16348,"hovering":16349,"proprietary":16350,"gb":16351,"samurai":16352,"syllable":16353,"ascent":16354,"lacey":16355,"tick":16356,"lars":16357,"tractor":16358,"merchandise":16359,"rep":16360,"bouncing":16361,"defendants":16362,"##yre":16363,"huntington":16364,"##ground":16365,"##oko":16366,"standardized":16367,"##hor":16368,"##hima":16369,"assassinated":16370,"nu":16371,"predecessors":16372,"rainy":16373,"liar":16374,"assurance":16375,"lyrical":16376,"##uga":16377,"secondly":16378,"flattened":16379,"ios":16380,"parameter":16381,"undercover":16382,"##mity":16383,"bordeaux":16384,"punish":16385,"ridges":16386,"markers":16387,"exodus":16388,"inactive":16389,"hesitate":16390,"debbie":16391,"nyc":16392,"pledge":16393,"savoy":16394,"nagar":16395,"offset":16396,"organist":16397,"##tium":16398,"hesse":16399,"marin":16400,"converting":16401,"##iver":16402,"diagram":16403,"propulsion":16404,"pu":16405,"validity":16406,"reverted":16407,"supportive":16408,"##dc":16409,"ministries":16410,"clans":16411,"responds":16412,"proclamation":16413,"##inae":16414,"##ø":16415,"##rea":16416,"ein":16417,"pleading":16418,"patriot":16419,"sf":16420,"birch":16421,"islanders":16422,"strauss":16423,"hates":16424,"##dh":16425,"brandenburg":16426,"concession":16427,"rd":16428,"##ob":16429,"1900s":16430,"killings":16431,"textbook":16432,"antiquity":16433,"cinematography":16434,"wharf":16435,"embarrassing":16436,"setup":16437,"creed":16438,"farmland":16439,"inequality":16440,"centred":16441,"signatures":16442,"fallon":16443,"##ingham":16445,"##uts":16446,"ceylon":16447,"gazing":16448,"directive":16449,"laurie":16450,"##tern":16451,"globally":16452,"##uated":16453,"##dent":16454,"allah":16455,"excavation":16456,"threads":16457,"##cross":16458,"frantically":16460,"icc":16461,"utilize":16462,"determines":16463,"respiratory":16464,"thoughtful":16465,"receptions":16466,"##dicate":16467,"merging":16468,"chandra":16469,"seine":16470,"builders":16472,"builds":16473,"diagnostic":16474,"dev":16475,"visibility":16476,"goddamn":16477,"analyses":16478,"dhaka":16479,"cho":16480,"proves":16481,"chancel":16482,"concurrent":16483,"curiously":16484,"canadians":16485,"pumped":16486,"restoring":16487,"1850s":16488,"turtles":16489,"jaguar":16490,"sinister":16491,"spinal":16492,"traction":16493,"declan":16494,"vows":16495,"glowed":16497,"capitalism":16498,"swirling":16499,"install":16500,"universidad":16501,"##lder":16502,"##oat":16503,"soloist":16504,"##genic":16505,"##oor":16506,"coincidence":16507,"beginnings":16508,"nissan":16509,"dip":16510,"resorts":16511,"caucasus":16512,"combustion":16513,"infectious":16514,"##eno":16515,"pigeon":16516,"serpent":16517,"##itating":16518,"conclude":16519,"masked":16520,"salad":16521,"jew":16522,"##gr":16523,"surreal":16524,"toni":16525,"##wc":16526,"harmonica":16527,"##gins":16529,"##etic":16530,"##coat":16531,"fishermen":16532,"intending":16533,"bravery":16534,"##wave":16535,"klaus":16536,"titan":16537,"wembley":16538,"taiwanese":16539,"ransom":16540,"40th":16541,"incorrect":16542,"hussein":16543,"eyelids":16544,"jp":16545,"cooke":16546,"dramas":16547,"utilities":16548,"##etta":16549,"##print":16550,"eisenhower":16551,"principally":16552,"granada":16553,"lana":16554,"##rak":16555,"openings":16556,"concord":16557,"##bl":16558,"bethany":16559,"connie":16560,"morality":16561,"sega":16562,"##mons":16563,"##nard":16564,"earnings":16565,"##kara":16566,"##cine":16567,"wii":16568,"communes":16569,"##rel":16570,"coma":16571,"composing":16572,"softened":16573,"severed":16574,"grapes":16575,"##17":16576,"nguyen":16577,"analyzed":16578,"warlord":16579,"hubbard":16580,"heavenly":16581,"behave":16582,"slovenian":16583,"##hit":16584,"##ony":16585,"hailed":16586,"filmmakers":16587,"trance":16588,"caldwell":16589,"skye":16590,"unrest":16591,"coward":16592,"likelihood":16593,"##aging":16594,"bern":16595,"sci":16596,"taliban":16597,"honolulu":16598,"propose":16599,"##wang":16600,"browser":16602,"imagining":16603,"cobra":16604,"contributes":16605,"dukes":16606,"instinctively":16607,"conan":16608,"violinist":16609,"##ores":16610,"accessories":16611,"gradual":16612,"##amp":16613,"quotes":16614,"sioux":16615,"##dating":16616,"undertake":16617,"intercepted":16618,"sparkling":16619,"compressed":16620,"fungus":16622,"tombs":16623,"haley":16624,"imposing":16625,"rests":16626,"degradation":16627,"lincolnshire":16628,"retailers":16629,"wetlands":16630,"tulsa":16631,"distributor":16632,"dungeon":16633,"nun":16634,"greenhouse":16635,"convey":16636,"atlantis":16637,"aft":16638,"exits":16639,"oman":16640,"dresser":16641,"lyons":16642,"##sti":16643,"joking":16644,"eddy":16645,"judgement":16646,"omitted":16647,"digits":16648,"##cts":16649,"##game":16650,"juniors":16651,"##rae":16652,"cents":16653,"stricken":16654,"une":16655,"##ngo":16656,"wizards":16657,"weir":16658,"breton":16659,"nan":16660,"technician":16661,"fibers":16662,"liking":16663,"royalty":16664,"##cca":16665,"persia":16667,"terribly":16668,"magician":16669,"##rable":16670,"##unt":16671,"vance":16672,"cafeteria":16673,"booker":16674,"camille":16675,"warmer":16676,"##static":16677,"consume":16678,"cavern":16679,"gaps":16680,"compass":16681,"contemporaries":16682,"foyer":16683,"soothing":16684,"graveyard":16685,"maj":16686,"plunged":16687,"blush":16688,"##wear":16689,"cascade":16690,"demonstrates":16691,"ordinance":16692,"##nov":16693,"boyle":16694,"##lana":16695,"rockefeller":16696,"shaken":16697,"banjo":16698,"izzy":16699,"##ense":16700,"breathless":16701,"vines":16702,"##32":16703,"##eman":16704,"alterations":16705,"chromosome":16706,"dwellings":16707,"feudal":16708,"mole":16709,"catalonia":16711,"relics":16712,"tenant":16713,"mandated":16714,"##fm":16715,"fridge":16716,"hats":16717,"honesty":16718,"patented":16719,"raul":16720,"heap":16721,"cruisers":16722,"accusing":16723,"enlightenment":16724,"infants":16725,"wherein":16726,"chatham":16727,"contractors":16728,"zen":16729,"affinity":16730,"hc":16731,"osborne":16732,"piston":16733,"traps":16735,"maturity":16736,"##rana":16737,"lagos":16738,"##zal":16739,"peering":16740,"##nay":16741,"attendant":16742,"dealers":16743,"protocols":16744,"subset":16745,"prospects":16746,"biographical":16747,"##cre":16748,"artery":16749,"##zers":16750,"insignia":16751,"nuns":16752,"endured":16753,"##eration":16754,"recommend":16755,"schwartz":16756,"serbs":16757,"berger":16758,"cromwell":16759,"crossroads":16760,"##ctor":16761,"enduring":16762,"clasped":16763,"grounded":16764,"##bine":16765,"marseille":16766,"twitched":16767,"abel":16768,"choke":16769,"https":16770,"catalyst":16771,"moldova":16772,"italians":16773,"##tist":16774,"disastrous":16775,"wee":16776,"##oured":16777,"##nti":16778,"wwf":16779,"nope":16780,"##piration":16781,"##asa":16782,"expresses":16783,"thumbs":16784,"##nza":16786,"coca":16787,"cheating":16789,"##ption":16790,"skipped":16791,"sensory":16792,"heidelberg":16793,"spies":16794,"satan":16795,"dangers":16796,"semifinal":16797,"bohemia":16799,"whitish":16800,"confusing":16801,"shipbuilding":16802,"relies":16803,"surgeons":16804,"landings":16805,"ravi":16806,"baku":16807,"moor":16808,"suffix":16809,"alejandro":16810,"##yana":16811,"litre":16812,"upheld":16813,"##unk":16814,"rajasthan":16815,"##rek":16816,"coaster":16817,"insists":16818,"posture":16819,"scenarios":16820,"etienne":16821,"favoured":16822,"appoint":16823,"transgender":16824,"elephants":16825,"poked":16826,"greenwood":16827,"defences":16828,"fulfilled":16829,"militant":16830,"somali":16831,"chalk":16833,"potent":16834,"##ucci":16835,"migrants":16836,"wink":16837,"assistants":16838,"nos":16839,"restriction":16840,"activism":16841,"niger":16842,"##ario":16843,"colon":16844,"shaun":16845,"##sat":16846,"daphne":16847,"##erated":16848,"swam":16849,"congregations":16850,"reprise":16851,"considerations":16852,"magnet":16853,"playable":16854,"xvi":16855,"##р":16856,"overthrow":16857,"tobias":16858,"knob":16859,"chavez":16860,"coding":16861,"##mers":16862,"propped":16863,"katrina":16864,"orient":16865,"newcomer":16866,"##suke":16867,"temperate":16868,"##pool":16869,"farmhouse":16870,"interrogation":16871,"##vd":16872,"committing":16873,"##vert":16874,"forthcoming":16875,"strawberry":16876,"joaquin":16877,"macau":16878,"ponds":16879,"shocking":16880,"siberia":16881,"##cellular":16882,"chant":16883,"contributors":16884,"##nant":16885,"##ologists":16886,"sped":16887,"absorb":16888,"hail":16889,"spared":16891,"##hore":16892,"barbados":16893,"karate":16894,"opus":16895,"originates":16896,"saul":16897,"##xie":16898,"evergreen":16899,"leaped":16900,"##rock":16901,"correlation":16902,"exaggerated":16903,"weekday":16904,"unification":16905,"bump":16906,"tracing":16907,"brig":16908,"afb":16909,"pathways":16910,"utilizing":16911,"##ners":16912,"mod":16913,"mb":16914,"disturbance":16915,"kneeling":16916,"##stad":16917,"##guchi":16918,"100th":16919,"pune":16920,"##thy":16921,"decreasing":16922,"manipulation":16924,"miriam":16925,"academia":16926,"ecosystem":16927,"occupational":16928,"rbi":16929,"##lem":16930,"rift":16931,"##14":16932,"rotary":16933,"stacked":16934,"incorporation":16935,"awakening":16936,"generators":16937,"guerrero":16938,"racist":16939,"##omy":16940,"cyber":16941,"derivatives":16942,"culminated":16943,"allie":16944,"annals":16945,"panzer":16946,"sainte":16947,"wikipedia":16948,"pops":16949,"zu":16950,"austro":16951,"##vate":16952,"algerian":16953,"politely":16954,"nicholson":16955,"mornings":16956,"educate":16957,"tastes":16958,"thrill":16959,"dartmouth":16960,"##gating":16961,"db":16962,"##jee":16963,"regan":16964,"differing":16965,"concentrating":16966,"choreography":16967,"divinity":16968,"##media":16969,"pledged":16970,"alexandre":16971,"routing":16972,"gregor":16973,"madeline":16974,"##idal":16975,"apocalypse":16976,"##hora":16977,"gunfire":16978,"culminating":16979,"elves":16980,"fined":16981,"liang":16982,"lam":16983,"programmed":16984,"tar":16985,"guessing":16986,"transparency":16987,"gabrielle":16988,"##gna":16989,"cancellation":16990,"flexibility":16991,"##lining":16992,"accession":16993,"shea":16994,"stronghold":16995,"nets":16996,"specializes":16997,"##rgan":16998,"abused":16999,"hasan":17000,"sgt":17001,"ling":17002,"exceeding":17003,"##₄":17004,"admiration":17005,"supermarket":17006,"##ark":17007,"photographers":17008,"specialised":17009,"tilt":17010,"resonance":17011,"hmm":17012,"perfume":17013,"sami":17015,"threatens":17016,"garland":17017,"botany":17018,"guarding":17019,"boiled":17020,"greet":17021,"puppy":17022,"russo":17023,"supplier":17024,"wilmington":17025,"vibrant":17026,"vijay":17027,"##bius":17028,"paralympic":17029,"grumbled":17030,"paige":17031,"faa":17032,"licking":17033,"margins":17034,"hurricanes":17035,"##gong":17036,"fest":17037,"grenade":17038,"ripping":17039,"##uz":17040,"counseling":17041,"weigh":17042,"##sian":17043,"needles":17044,"wiltshire":17045,"edison":17046,"costly":17047,"##not":17048,"fulton":17049,"tramway":17050,"redesigned":17051,"staffordshire":17052,"cache":17053,"gasping":17054,"watkins":17055,"sleepy":17056,"candidacy":17057,"##group":17058,"monkeys":17059,"timeline":17060,"throbbing":17061,"##bid":17062,"##sos":17063,"berth":17064,"uzbekistan":17065,"vanderbilt":17066,"bothering":17067,"overturned":17068,"ballots":17069,"gem":17070,"##iger":17071,"sunglasses":17072,"subscribers":17073,"hooker":17074,"compelling":17075,"ang":17076,"exceptionally":17077,"saloon":17078,"stab":17079,"##rdi":17080,"carla":17081,"terrifying":17082,"rom":17083,"##vision":17084,"coil":17085,"##oids":17086,"satisfying":17087,"vendors":17088,"31st":17089,"mackay":17090,"deities":17091,"overlooked":17092,"ambient":17093,"bahamas":17094,"felipe":17095,"olympia":17096,"whirled":17097,"botanist":17098,"advertised":17099,"tugging":17100,"##dden":17101,"disciples":17102,"morales":17103,"unionist":17104,"rites":17105,"foley":17106,"morse":17107,"motives":17108,"creepy":17109,"##₀":17110,"soo":17111,"##sz":17112,"bargain":17113,"highness":17114,"frightening":17115,"turnpike":17116,"tory":17117,"reorganization":17118,"##cer":17119,"depict":17120,"biographer":17121,"##walk":17122,"unopposed":17123,"manifesto":17124,"##gles":17125,"institut":17126,"emile":17127,"accidental":17128,"kapoor":17129,"##dam":17130,"kilkenny":17131,"cortex":17132,"lively":17133,"##13":17134,"romanesque":17135,"jain":17136,"shan":17137,"cannons":17138,"##ood":17139,"##ske":17140,"petrol":17141,"echoing":17142,"amalgamated":17143,"disappears":17144,"cautious":17145,"proposes":17146,"sanctions":17147,"trenton":17148,"##ر":17149,"flotilla":17150,"aus":17151,"contempt":17152,"tor":17153,"canary":17154,"cote":17155,"theirs":17156,"##hun":17157,"conceptual":17158,"deleted":17159,"fascinating":17160,"paso":17161,"blazing":17162,"elf":17163,"honourable":17164,"hutchinson":17165,"##eiro":17166,"##outh":17167,"##zin":17168,"surveyor":17169,"tee":17170,"amidst":17171,"wooded":17172,"reissue":17173,"intro":17174,"##ono":17175,"cobb":17176,"shelters":17177,"newsletter":17178,"hanson":17179,"brace":17180,"encoding":17181,"confiscated":17182,"dem":17183,"caravan":17184,"marino":17185,"scroll":17186,"melodic":17187,"cows":17188,"imam":17189,"##adi":17190,"##aneous":17191,"northward":17192,"searches":17193,"biodiversity":17194,"cora":17195,"roaring":17197,"##bers":17198,"connell":17199,"theologian":17200,"halo":17201,"compose":17202,"pathetic":17203,"unmarried":17204,"dynamo":17205,"##oot":17206,"az":17207,"calculation":17208,"toulouse":17209,"deserves":17210,"humour":17211,"nr":17212,"forgiveness":17213,"tam":17214,"undergone":17215,"martyr":17216,"pamela":17217,"myths":17218,"whore":17219,"counselor":17220,"hicks":17221,"heavens":17223,"battleship":17224,"electromagnetic":17225,"##bbs":17226,"stellar":17227,"establishments":17228,"presley":17229,"hopped":17230,"##chin":17231,"temptation":17232,"90s":17233,"wills":17234,"nas":17235,"##yuan":17236,"nhs":17237,"##nya":17238,"seminars":17239,"##yev":17240,"adaptations":17241,"gong":17242,"asher":17243,"lex":17244,"indicator":17245,"sikh":17246,"tobago":17247,"cites":17248,"goin":17249,"##yte":17250,"satirical":17251,"##gies":17252,"characterised":17253,"correspond":17254,"bubbles":17255,"lure":17256,"participates":17257,"##vid":17258,"eruption":17259,"skate":17260,"therapeutic":17261,"canals":17263,"wholesale":17264,"defaulted":17265,"sac":17266,"petit":17268,"##zzled":17269,"virgil":17270,"leak":17271,"ravens":17272,"portraying":17274,"##yx":17275,"ghetto":17276,"creators":17277,"dams":17278,"portray":17279,"vicente":17280,"##rington":17281,"fae":17282,"namesake":17283,"bounty":17284,"##arium":17285,"joachim":17286,"##ota":17287,"##iser":17288,"aforementioned":17289,"axle":17290,"snout":17291,"depended":17292,"dismantled":17293,"reuben":17294,"##ibly":17296,"gallagher":17297,"##lau":17298,"##pd":17299,"earnest":17300,"##ieu":17301,"##iary":17302,"inflicted":17303,"objections":17304,"##llar":17305,"asa":17306,"gritted":17307,"##athy":17308,"jericho":17309,"##sea":17310,"##was":17311,"flick":17312,"underside":17313,"ceramics":17314,"undead":17315,"substituted":17316,"eastward":17318,"undoubtedly":17319,"wheeled":17320,"chimney":17321,"##iche":17322,"guinness":17323,"cb":17324,"##ager":17325,"siding":17326,"##bell":17327,"traitor":17328,"baptiste":17329,"disguised":17330,"inauguration":17331,"tipperary":17333,"choreographer":17334,"perched":17335,"warmed":17336,"stationary":17337,"eco":17338,"##ike":17339,"##ntes":17340,"bacterial":17341,"##aurus":17342,"flores":17343,"phosphate":17344,"##core":17345,"attacker":17346,"invaders":17347,"alvin":17348,"intersects":17349,"a1":17350,"indirectly":17351,"immigrated":17352,"businessmen":17353,"cornelius":17354,"valves":17355,"narrated":17356,"pill":17357,"sober":17358,"ul":17359,"nationale":17360,"monastic":17361,"applicants":17362,"scenery":17363,"##jack":17364,"motifs":17366,"constitutes":17367,"cpu":17368,"##osh":17369,"jurisdictions":17370,"sd":17371,"tuning":17372,"irritation":17373,"woven":17374,"##uddin":17375,"fertility":17376,"gao":17377,"##erie":17378,"antagonist":17379,"impatient":17380,"glacial":17381,"hides":17382,"boarded":17383,"denominations":17384,"interception":17385,"##jas":17386,"cookie":17387,"nicola":17388,"##tee":17389,"algebraic":17390,"marquess":17391,"bahn":17392,"parole":17393,"buyers":17394,"bait":17395,"turbines":17396,"paperwork":17397,"bestowed":17398,"natasha":17399,"renee":17400,"oceans":17401,"purchases":17402,"vaccine":17404,"##tock":17406,"fixtures":17407,"playhouse":17408,"integrate":17409,"jai":17410,"oswald":17411,"intellectuals":17412,"##cky":17413,"booked":17414,"nests":17415,"mortimer":17416,"##isi":17417,"obsession":17418,"sept":17419,"##gler":17420,"##sum":17421,"scrutiny":17423,"simultaneous":17424,"squinted":17425,"##shin":17426,"collects":17427,"oven":17428,"shankar":17429,"penned":17430,"remarkably":17431,"##я":17432,"slips":17433,"luggage":17434,"spectral":17435,"collaborations":17437,"louie":17438,"consolidation":17439,"##ailed":17440,"##ivating":17441,"hoover":17443,"blackpool":17444,"harness":17445,"ignition":17446,"vest":17447,"tails":17448,"belmont":17449,"mongol":17450,"skinner":17451,"##nae":17452,"visually":17453,"mage":17454,"derry":17455,"##tism":17456,"##unce":17457,"stevie":17458,"transitional":17459,"##rdy":17460,"redskins":17461,"drying":17462,"prep":17463,"prospective":17464,"##21":17465,"annoyance":17466,"oversee":17467,"##loaded":17468,"fills":17469,"##books":17470,"##iki":17471,"announces":17472,"fda":17473,"scowled":17474,"respects":17475,"prasad":17476,"mystic":17477,"tucson":17478,"##vale":17479,"revue":17480,"springer":17481,"bankrupt":17482,"aristotle":17484,"salvatore":17485,"habsburg":17486,"##geny":17487,"dal":17488,"natal":17489,"nut":17490,"pod":17491,"chewing":17492,"darts":17493,"moroccan":17494,"walkover":17495,"rosario":17496,"lenin":17497,"punjabi":17498,"##ße":17499,"grossed":17500,"scattering":17501,"wired":17502,"invasive":17503,"hui":17504,"polynomial":17505,"corridors":17506,"wakes":17507,"gina":17508,"portrays":17509,"##cratic":17510,"arid":17511,"retreating":17512,"erich":17513,"irwin":17514,"sniper":17515,"##dha":17516,"linen":17517,"lindsey":17518,"maneuver":17519,"butch":17520,"shutting":17521,"socio":17522,"bounce":17523,"commemorative":17524,"postseason":17525,"jeremiah":17526,"pines":17527,"mystical":17529,"beads":17530,"bp":17531,"abbas":17532,"furnace":17533,"bidding":17534,"consulted":17535,"assaulted":17536,"empirical":17537,"rubble":17538,"enclosure":17539,"sob":17540,"weakly":17541,"cancel":17542,"polly":17543,"yielded":17544,"##emann":17545,"curly":17546,"prediction":17547,"battered":17548,"70s":17549,"vhs":17550,"jacqueline":17551,"render":17552,"sails":17553,"barked":17554,"detailing":17555,"grayson":17556,"riga":17557,"sloane":17558,"raging":17559,"##yah":17560,"herbs":17561,"bravo":17562,"##athlon":17563,"alloy":17564,"giggle":17565,"imminent":17566,"suffers":17567,"assumptions":17568,"waltz":17569,"##itate":17570,"accomplishments":17571,"##ited":17572,"bathing":17573,"remixed":17574,"deception":17575,"prefix":17576,"##emia":17577,"deepest":17578,"##tier":17579,"##eis":17580,"balkan":17581,"frogs":17582,"##rong":17583,"slab":17584,"##pate":17585,"philosophers":17586,"peterborough":17587,"grains":17588,"imports":17589,"dickinson":17590,"rwanda":17591,"##atics":17592,"dirk":17594,"lan":17595,"tablets":17596,"##rove":17597,"clone":17598,"##rice":17599,"caretaker":17600,"hostilities":17601,"mclean":17602,"##gre":17603,"regimental":17604,"treasures":17605,"norms":17606,"impose":17607,"tsar":17608,"tango":17609,"diplomacy":17610,"variously":17611,"complain":17612,"recognise":17614,"arrests":17615,"celestial":17617,"pulitzer":17618,"##dus":17619,"bing":17620,"libretto":17621,"##moor":17622,"adele":17623,"splash":17624,"##rite":17625,"expectation":17626,"lds":17627,"confronts":17628,"##izer":17629,"spontaneous":17630,"harmful":17631,"wedge":17632,"entrepreneurs":17633,"buyer":17634,"##ope":17635,"bilingual":17636,"translate":17637,"rugged":17638,"conner":17639,"circulated":17640,"uae":17641,"eaton":17642,"##gra":17643,"##zzle":17644,"lingered":17645,"lockheed":17646,"vishnu":17647,"reelection":17648,"alonso":17649,"##oom":17650,"joints":17651,"yankee":17652,"headline":17653,"cooperate":17654,"heinz":17655,"laureate":17656,"invading":17657,"##sford":17658,"echoes":17659,"scandinavian":17660,"##dham":17661,"hugging":17662,"vitamin":17663,"salute":17664,"micah":17665,"hind":17666,"trader":17667,"##sper":17668,"radioactive":17669,"##ndra":17670,"militants":17671,"poisoned":17672,"ratified":17673,"remark":17674,"campeonato":17675,"deprived":17676,"wander":17677,"prop":17678,"##dong":17679,"outlook":17680,"##tani":17681,"##rix":17682,"##eye":17683,"chiang":17684,"darcy":17685,"##oping":17686,"mandolin":17687,"spice":17688,"statesman":17689,"babylon":17690,"walled":17692,"forgetting":17693,"afro":17694,"##cap":17695,"giorgio":17697,"buffer":17698,"##polis":17699,"planetary":17700,"##gis":17701,"overlap":17702,"terminals":17703,"kinda":17704,"centenary":17705,"##bir":17706,"arising":17707,"manipulate":17708,"elm":17709,"ke":17710,"ak":17712,"##tad":17713,"chrysler":17714,"mapped":17715,"moose":17716,"pomeranian":17717,"quad":17718,"macarthur":17719,"assemblies":17720,"shoreline":17721,"recalls":17722,"stratford":17723,"##rted":17724,"noticeable":17725,"##evic":17726,"imp":17727,"##rita":17728,"##sque":17729,"accustomed":17730,"supplying":17731,"tents":17732,"disgusted":17733,"vogue":17734,"sipped":17735,"filters":17736,"khz":17737,"reno":17738,"selecting":17739,"luftwaffe":17740,"mcmahon":17741,"tyne":17742,"masterpiece":17743,"carriages":17744,"collided":17745,"dunes":17746,"exercised":17747,"flare":17748,"remembers":17749,"muzzle":17750,"##mobile":17751,"heck":17752,"##rson":17753,"burgess":17754,"lunged":17755,"middleton":17756,"boycott":17757,"bilateral":17758,"##sity":17759,"hazardous":17760,"lumpur":17761,"multiplayer":17762,"spotlight":17763,"jackets":17764,"goldman":17765,"liege":17766,"porcelain":17767,"rag":17768,"waterford":17769,"benz":17770,"attracts":17771,"hopeful":17772,"battling":17773,"ottomans":17774,"kensington":17775,"baked":17776,"hymns":17777,"cheyenne":17778,"lattice":17779,"levine":17780,"borrow":17781,"polymer":17782,"clashes":17783,"michaels":17784,"monitored":17785,"commitments":17786,"denounced":17787,"##25":17788,"##von":17789,"cavity":17790,"##oney":17791,"hobby":17792,"akin":17793,"##holders":17794,"futures":17795,"intricate":17796,"cornish":17797,"patty":17798,"##oned":17799,"illegally":17800,"dolphin":17801,"##lag":17802,"barlow":17803,"yellowish":17804,"maddie":17805,"apologized":17806,"luton":17807,"plagued":17808,"##puram":17809,"nana":17810,"##rds":17811,"sway":17812,"fanny":17813,"łodz":17814,"##rino":17815,"psi":17816,"suspicions":17817,"hanged":17818,"##eding":17819,"initiate":17820,"charlton":17821,"##por":17822,"nak":17823,"competent":17824,"analytical":17826,"annex":17827,"wardrobe":17828,"reservations":17829,"##rma":17830,"sect":17831,"fairfax":17833,"hedge":17834,"piled":17835,"buckingham":17836,"uneven":17837,"bauer":17838,"simplicity":17839,"snyder":17840,"interpret":17841,"accountability":17842,"donors":17843,"moderately":17844,"byrd":17845,"continents":17846,"##cite":17847,"##max":17848,"disciple":17849,"hr":17850,"jamaican":17851,"ping":17852,"nominees":17853,"##uss":17854,"mongolian":17855,"diver":17856,"attackers":17857,"eagerly":17858,"ideological":17859,"pillows":17860,"miracles":17861,"apartheid":17862,"revolver":17863,"sulfur":17864,"clinics":17865,"moran":17866,"##enko":17868,"ile":17869,"katy":17870,"rhetoric":17871,"##icated":17872,"chronology":17873,"recycling":17874,"##hrer":17875,"elongated":17876,"mughal":17877,"pascal":17878,"profiles":17879,"vibration":17880,"databases":17881,"domination":17882,"##fare":17883,"##rant":17884,"matthias":17885,"digest":17886,"rehearsal":17887,"polling":17888,"weiss":17889,"initiation":17890,"reeves":17891,"clinging":17892,"flourished":17893,"impress":17894,"ngo":17895,"##hoff":17896,"##ume":17897,"buckley":17898,"symposium":17899,"rhythms":17900,"weed":17901,"emphasize":17902,"transforming":17903,"##taking":17904,"##gence":17905,"##yman":17906,"accountant":17907,"analyze":17908,"flicker":17909,"foil":17910,"priesthood":17911,"voluntarily":17912,"decreases":17913,"##80":17914,"##hya":17915,"slater":17916,"sv":17917,"charting":17918,"mcgill":17919,"##lde":17920,"moreno":17921,"##iu":17922,"besieged":17923,"zur":17924,"robes":17925,"##phic":17926,"admitting":17927,"api":17928,"deported":17929,"turmoil":17930,"peyton":17931,"earthquakes":17932,"##ares":17933,"nationalists":17934,"beau":17935,"clair":17936,"brethren":17937,"interrupt":17938,"welch":17939,"curated":17940,"galerie":17941,"requesting":17942,"##ested":17944,"impending":17945,"steward":17946,"viper":17947,"##vina":17948,"complaining":17949,"beautifully":17950,"brandy":17951,"foam":17952,"nl":17953,"##cake":17955,"alessandro":17956,"punches":17957,"laced":17958,"explanations":17959,"##lim":17960,"attribute":17961,"clit":17962,"reggie":17963,"discomfort":17964,"##cards":17965,"smoothed":17966,"whales":17967,"##cene":17968,"adler":17969,"countered":17970,"duffy":17971,"disciplinary":17972,"widening":17973,"recipe":17974,"reliance":17975,"conducts":17976,"goats":17977,"gradient":17978,"preaching":17979,"##shaw":17980,"matilda":17981,"quasi":17982,"striped":17983,"meridian":17984,"cannabis":17985,"cordoba":17986,"certificates":17987,"##agh":17988,"##tering":17989,"graffiti":17990,"hangs":17991,"pilgrims":17992,"repeats":17993,"##ych":17994,"revive":17995,"urine":17996,"etat":17997,"##hawk":17998,"fueled":17999,"belts":18000,"fuzzy":18001,"susceptible":18002,"##hang":18003,"mauritius":18004,"salle":18005,"sincere":18006,"beers":18007,"hooks":18008,"##cki":18009,"arbitration":18010,"entrusted":18011,"advise":18012,"sniffed":18013,"seminar":18014,"junk":18015,"donnell":18016,"processors":18017,"principality":18018,"strapped":18019,"celia":18020,"mendoza":18021,"everton":18022,"fortunes":18023,"prejudice":18024,"starving":18025,"reassigned":18026,"steamer":18027,"##lund":18028,"tuck":18029,"evenly":18030,"foreman":18031,"##ffen":18032,"dans":18033,"envisioned":18035,"slit":18036,"##xy":18037,"baseman":18038,"liberia":18039,"rosemary":18040,"##weed":18041,"electrified":18042,"periodically":18043,"potassium":18044,"stride":18045,"contexts":18046,"sperm":18047,"slade":18048,"mariners":18049,"influx":18050,"bianca":18051,"subcommittee":18052,"##rane":18053,"spilling":18054,"icao":18055,"estuary":18056,"##nock":18057,"delivers":18058,"iphone":18059,"##ulata":18060,"isa":18061,"mira":18062,"bohemian":18063,"dessert":18064,"##sbury":18065,"welcoming":18066,"proudly":18067,"slowing":18068,"##chs":18069,"musee":18070,"ascension":18071,"russ":18072,"##vian":18073,"waits":18074,"##psy":18075,"africans":18076,"exploit":18077,"##morphic":18078,"gov":18079,"eccentric":18080,"crab":18081,"peck":18082,"##ull":18083,"entrances":18084,"formidable":18085,"marketplace":18086,"groom":18087,"bolted":18088,"metabolism":18089,"patton":18090,"robbins":18091,"courier":18092,"payload":18093,"endure":18094,"##ifier":18095,"andes":18096,"refrigerator":18097,"##pr":18098,"ornate":18099,"##uca":18100,"ruthless":18101,"illegitimate":18102,"masonry":18103,"strasbourg":18104,"bikes":18105,"adobe":18106,"##³":18107,"apples":18108,"quintet":18109,"willingly":18110,"niche":18111,"bakery":18112,"corpses":18113,"energetic":18114,"##cliffe":18115,"##sser":18116,"##ards":18117,"centimeters":18119,"centro":18120,"fuscous":18121,"cretaceous":18122,"rancho":18123,"##yde":18124,"andrei":18125,"telecom":18126,"tottenham":18127,"oasis":18128,"ordination":18129,"vulnerability":18130,"presiding":18131,"corey":18132,"cp":18133,"penguins":18134,"sims":18135,"##pis":18136,"malawi":18137,"piss":18138,"##48":18139,"correction":18140,"##cked":18141,"##ffle":18142,"##ryn":18143,"countdown":18144,"detectives":18145,"psychiatrist":18146,"psychedelic":18147,"dinosaurs":18148,"blouse":18149,"##get":18150,"choi":18151,"vowed":18152,"##oz":18153,"randomly":18154,"##pol":18155,"49ers":18156,"scrub":18157,"blanche":18158,"bruins":18159,"dusseldorf":18160,"##using":18161,"unwanted":18162,"##ums":18163,"dominique":18165,"elevations":18166,"headlights":18167,"om":18168,"laguna":18169,"##oga":18170,"famously":18172,"ignorance":18173,"shrewsbury":18174,"##aine":18175,"ajax":18176,"breuning":18177,"che":18178,"confederacy":18179,"greco":18180,"overhaul":18181,"##screen":18182,"paz":18183,"skirts":18184,"disagreement":18185,"cruelty":18186,"jagged":18187,"phoebe":18188,"shifter":18189,"hovered":18190,"viruses":18191,"##wes":18192,"mandy":18193,"##lined":18194,"##gc":18195,"landlord":18196,"squirrel":18197,"dashed":18198,"##ι":18199,"ornamental":18200,"gag":18201,"wally":18202,"grange":18203,"literal":18204,"spurs":18205,"undisclosed":18206,"proceeding":18207,"yin":18208,"##text":18209,"billie":18210,"orphan":18211,"spanned":18212,"humidity":18213,"indy":18214,"weighted":18215,"presentations":18216,"explosions":18217,"lucian":18218,"##tary":18219,"vaughn":18220,"hindus":18221,"##anga":18222,"##hell":18223,"psycho":18224,"daytona":18226,"protects":18227,"efficiently":18228,"rematch":18229,"sly":18230,"tandem":18231,"##oya":18232,"rebranded":18233,"impaired":18234,"hee":18235,"metropolis":18236,"peach":18237,"godfrey":18238,"diaspora":18239,"ethnicity":18240,"prosperous":18241,"gleaming":18242,"dar":18243,"grossing":18244,"playback":18245,"##rden":18246,"stripe":18247,"pistols":18248,"##tain":18249,"births":18250,"labelled":18251,"##cating":18252,"rudy":18254,"alba":18255,"##onne":18256,"aquarium":18257,"hostility":18258,"##gb":18259,"##tase":18260,"shudder":18261,"sumatra":18262,"hardest":18263,"lakers":18264,"consonant":18265,"creeping":18266,"demos":18267,"homicide":18268,"capsule":18269,"zeke":18270,"liberties":18271,"expulsion":18272,"pueblo":18273,"##comb":18274,"trait":18275,"transporting":18276,"##ddin":18277,"##neck":18278,"##yna":18279,"depart":18280,"gregg":18281,"mold":18282,"ledge":18283,"hangar":18284,"oldham":18285,"playboy":18286,"termination":18287,"analysts":18288,"gmbh":18289,"romero":18290,"##itic":18291,"insist":18292,"cradle":18293,"filthy":18294,"brightness":18295,"slash":18296,"shootout":18297,"deposed":18298,"bordering":18299,"##truct":18300,"isis":18301,"microwave":18302,"tumbled":18303,"sheltered":18304,"cathy":18305,"werewolves":18306,"messy":18307,"andersen":18308,"convex":18309,"clapped":18310,"clinched":18311,"satire":18312,"wasting":18313,"edo":18314,"vc":18315,"rufus":18316,"##jak":18317,"mont":18318,"##etti":18319,"poznan":18320,"##keeping":18321,"restructuring":18322,"transverse":18323,"##rland":18324,"azerbaijani":18325,"slovene":18326,"gestures":18327,"roommate":18328,"choking":18329,"shear":18330,"##quist":18331,"vanguard":18332,"oblivious":18333,"##hiro":18334,"disagreed":18335,"baptism":18336,"##lich":18337,"coliseum":18338,"##aceae":18339,"salvage":18340,"societe":18341,"cory":18342,"locke":18343,"relocation":18344,"relying":18345,"versailles":18346,"ahl":18347,"swelling":18348,"##elo":18349,"cheerful":18350,"##word":18351,"##edes":18352,"gin":18353,"sarajevo":18354,"obstacle":18355,"diverted":18356,"##nac":18357,"messed":18358,"thoroughbred":18359,"fluttered":18360,"utrecht":18361,"chewed":18362,"acquaintance":18363,"assassins":18364,"dispatch":18365,"mirza":18366,"##wart":18367,"nike":18368,"salzburg":18369,"swell":18370,"yen":18371,"##gee":18372,"idle":18373,"ligue":18374,"samson":18375,"##nds":18376,"##igh":18377,"playful":18378,"spawned":18379,"##cise":18380,"tease":18381,"##case":18382,"burgundy":18383,"##bot":18384,"stirring":18385,"skeptical":18386,"interceptions":18387,"marathi":18388,"##dies":18389,"bedrooms":18390,"aroused":18391,"pinch":18392,"##lik":18393,"preferences":18394,"tattoos":18395,"buster":18396,"digitally":18397,"projecting":18398,"rust":18399,"##ital":18400,"kitten":18401,"priorities":18402,"addison":18403,"pseudo":18404,"##guard":18405,"dusk":18406,"icons":18407,"sermon":18408,"##psis":18409,"##iba":18410,"bt":18411,"##lift":18412,"##xt":18413,"ju":18414,"truce":18415,"rink":18416,"##dah":18417,"##wy":18418,"defects":18419,"psychiatry":18420,"offences":18421,"calculate":18422,"glucose":18423,"##iful":18424,"##rized":18425,"##unda":18426,"francaise":18427,"##hari":18428,"richest":18429,"warwickshire":18430,"carly":18431,"purity":18433,"redemption":18434,"lending":18435,"##cious":18436,"muse":18437,"bruises":18438,"cerebral":18439,"aero":18440,"carving":18441,"##name":18442,"preface":18443,"terminology":18444,"invade":18445,"monty":18446,"##int":18447,"anarchist":18448,"blurred":18449,"##iled":18450,"rossi":18451,"treats":18452,"guts":18453,"shu":18454,"foothills":18455,"ballads":18456,"undertaking":18457,"premise":18458,"cecilia":18459,"affiliates":18460,"blasted":18461,"conditional":18462,"wilder":18463,"minors":18464,"drone":18465,"rudolph":18466,"buffy":18467,"swallowing":18468,"horton":18469,"attested":18470,"##hop":18471,"rutherford":18472,"howell":18473,"primetime":18474,"livery":18475,"penal":18476,"##bis":18477,"minimize":18478,"hydro":18479,"wrecked":18480,"wrought":18481,"palazzo":18482,"##gling":18483,"cans":18484,"vernacular":18485,"friedman":18486,"nobleman":18487,"shale":18488,"walnut":18489,"danielle":18490,"##ection":18491,"##tley":18492,"sears":18493,"##kumar":18494,"chords":18495,"lend":18496,"flipping":18497,"streamed":18498,"por":18499,"dracula":18500,"gallons":18501,"sacrifices":18502,"gamble":18503,"orphanage":18504,"##iman":18505,"mckenzie":18506,"##gible":18507,"boxers":18508,"daly":18509,"##balls":18510,"##ان":18511,"##ific":18513,"##rative":18514,"##iq":18515,"exploited":18516,"slated":18517,"##uity":18518,"circling":18519,"hillary":18520,"pinched":18521,"goldberg":18522,"provost":18523,"campaigning":18524,"lim":18525,"piles":18526,"ironically":18527,"jong":18528,"mohan":18529,"successors":18530,"usaf":18531,"##tem":18532,"##ught":18533,"autobiographical":18534,"haute":18535,"preserves":18536,"##ending":18537,"acquitted":18538,"comparisons":18539,"hydroelectric":18541,"gangs":18542,"cypriot":18543,"torpedoes":18544,"rushes":18545,"chrome":18546,"derive":18547,"bumps":18548,"instability":18549,"fiat":18550,"pets":18551,"##mbe":18552,"silas":18553,"dye":18554,"reckless":18555,"settler":18556,"##itation":18557,"info":18558,"heats":18559,"##writing":18560,"canonical":18562,"maltese":18563,"fins":18564,"mushroom":18565,"stacy":18566,"aspen":18567,"avid":18568,"##kur":18569,"##loading":18570,"vickers":18571,"gaston":18572,"hillside":18573,"statutes":18574,"wilde":18575,"gail":18576,"kung":18577,"sabine":18578,"comfortably":18579,"motorcycles":18580,"##rgo":18581,"pneumonia":18583,"fetch":18584,"##sonic":18585,"axel":18586,"faintly":18587,"parallels":18588,"##oop":18589,"mclaren":18590,"spouse":18591,"compton":18592,"interdisciplinary":18593,"miner":18594,"##eni":18595,"clamped":18597,"##chal":18598,"##llah":18599,"separates":18600,"versa":18601,"##mler":18602,"scarborough":18603,"labrador":18604,"##lity":18605,"##osing":18606,"rutgers":18607,"hurdles":18608,"como":18609,"burt":18611,"divers":18612,"##100":18613,"wichita":18614,"cade":18615,"coincided":18616,"##erson":18617,"bruised":18618,"mla":18619,"##pper":18620,"vineyard":18621,"##ili":18622,"##brush":18623,"notch":18624,"mentioning":18625,"jase":18626,"hearted":18627,"kits":18628,"doe":18629,"##acle":18630,"pomerania":18631,"##ady":18632,"ronan":18633,"seizure":18634,"pavel":18635,"problematic":18636,"##zaki":18637,"domenico":18638,"##ulin":18639,"catering":18640,"penelope":18641,"dependence":18642,"parental":18643,"emilio":18644,"ministerial":18645,"atkinson":18646,"##bolic":18647,"clarkson":18648,"chargers":18649,"colby":18650,"grill":18651,"peeked":18652,"arises":18653,"summon":18654,"##aged":18655,"fools":18656,"##grapher":18657,"faculties":18658,"qaeda":18659,"##vial":18660,"garner":18661,"refurbished":18662,"##hwa":18663,"geelong":18664,"disasters":18665,"nudged":18666,"bs":18667,"shareholder":18668,"lori":18669,"algae":18670,"reinstated":18671,"rot":18672,"##ades":18673,"##nous":18674,"invites":18675,"stainless":18676,"inclusive":18678,"##itude":18679,"diocesan":18680,"til":18681,"##icz":18682,"denomination":18683,"##xa":18684,"benton":18685,"floral":18686,"registers":18687,"##ider":18688,"##erman":18689,"##kell":18690,"absurd":18691,"brunei":18692,"guangzhou":18693,"hitter":18694,"retaliation":18695,"##uled":18696,"##eve":18697,"blanc":18698,"nh":18699,"consistency":18700,"contamination":18701,"##eres":18702,"##rner":18703,"dire":18704,"palermo":18705,"broadcasters":18706,"diaries":18707,"inspire":18708,"vols":18709,"brewer":18710,"tightening":18711,"ky":18712,"mixtape":18713,"hormone":18714,"##tok":18715,"stokes":18716,"##color":18717,"##dly":18718,"##ssi":18719,"pg":18720,"##ometer":18721,"##lington":18722,"sanitation":18723,"##tility":18724,"intercontinental":18725,"apps":18726,"##adt":18727,"¹⁄₂":18728,"cylinders":18729,"economies":18730,"favourable":18731,"unison":18732,"croix":18733,"gertrude":18734,"odyssey":18735,"vanity":18736,"dangling":18737,"##logists":18738,"upgrades":18739,"dice":18740,"middleweight":18741,"practitioner":18742,"##ight":18743,"henrik":18745,"parlor":18746,"orion":18747,"angered":18748,"lac":18749,"python":18750,"blurted":18751,"##rri":18752,"sensual":18753,"intends":18754,"swings":18755,"angled":18756,"##phs":18757,"husky":18758,"attain":18759,"peerage":18760,"precinct":18761,"textiles":18762,"cheltenham":18763,"shuffled":18764,"dai":18765,"confess":18766,"tasting":18767,"bhutan":18768,"##riation":18769,"tyrone":18770,"segregation":18771,"abrupt":18772,"ruiz":18773,"##rish":18774,"smirked":18775,"blackwell":18776,"confidential":18777,"browning":18778,"amounted":18779,"##put":18780,"vase":18781,"scarce":18782,"fabulous":18783,"raided":18784,"staple":18785,"guyana":18786,"unemployed":18787,"glider":18788,"shay":18789,"##tow":18790,"carmine":18791,"troll":18792,"intervene":18793,"squash":18794,"superstar":18795,"##uce":18796,"cylindrical":18797,"len":18798,"roadway":18799,"researched":18800,"handy":18801,"##rium":18802,"##jana":18803,"meta":18804,"lao":18805,"declares":18806,"##rring":18807,"##tadt":18808,"##elin":18809,"##kova":18810,"willem":18811,"shrubs":18812,"napoleonic":18813,"realms":18814,"skater":18815,"qi":18816,"volkswagen":18817,"##ł":18818,"tad":18819,"hara":18820,"archaeologist":18821,"awkwardly":18822,"eerie":18823,"##kind":18824,"wiley":18825,"##heimer":18826,"##24":18827,"titus":18828,"organizers":18829,"cfl":18830,"crusaders":18831,"lama":18832,"usb":18833,"vent":18834,"enraged":18835,"thankful":18836,"occupants":18837,"maximilian":18838,"##gaard":18839,"possessing":18840,"textbooks":18841,"##oran":18842,"collaborator":18843,"quaker":18844,"##ulo":18845,"avalanche":18846,"mono":18847,"silky":18848,"straits":18849,"isaiah":18850,"mustang":18851,"surged":18852,"resolutions":18853,"potomac":18854,"descend":18855,"cl":18856,"kilograms":18857,"plato":18858,"strains":18859,"saturdays":18860,"##olin":18861,"bernstein":18862,"##ype":18863,"holstein":18864,"ponytail":18865,"##watch":18866,"belize":18867,"conversely":18868,"heroine":18869,"perpetual":18870,"##ylus":18871,"charcoal":18872,"piedmont":18873,"glee":18874,"negotiating":18875,"backdrop":18876,"prologue":18877,"##jah":18878,"##mmy":18879,"pasadena":18880,"climbs":18881,"ramos":18882,"sunni":18883,"##holm":18884,"##tner":18885,"##tri":18886,"anand":18887,"deficiency":18888,"hertfordshire":18889,"stout":18890,"##avi":18891,"aperture":18892,"orioles":18893,"##irs":18894,"doncaster":18895,"intrigued":18896,"bombed":18897,"coating":18898,"otis":18899,"##mat":18900,"cocktail":18901,"##jit":18902,"##eto":18903,"amir":18904,"arousal":18905,"sar":18906,"##proof":18907,"##act":18908,"##ories":18909,"dixie":18910,"pots":18911,"##bow":18912,"whereabouts":18913,"##fted":18915,"drains":18916,"bullying":18917,"cottages":18918,"scripture":18919,"coherent":18920,"fore":18921,"poe":18922,"appetite":18923,"##uration":18924,"sampled":18925,"##ators":18926,"##dp":18927,"derrick":18928,"rotor":18929,"jays":18930,"peacock":18931,"installment":18932,"##rro":18933,"advisors":18934,"##coming":18935,"rodeo":18936,"scotch":18937,"##mot":18938,"##db":18939,"##fen":18940,"##vant":18941,"ensued":18942,"rodrigo":18943,"dictatorship":18944,"martyrs":18945,"twenties":18946,"##н":18947,"towed":18948,"incidence":18949,"marta":18950,"rainforest":18951,"sai":18952,"scaled":18953,"##cles":18954,"oceanic":18955,"qualifiers":18956,"symphonic":18957,"mcbride":18958,"dislike":18959,"generalized":18960,"aubrey":18961,"colonization":18962,"##iation":18963,"##lion":18964,"##ssing":18965,"disliked":18966,"lublin":18967,"salesman":18968,"##ulates":18969,"spherical":18970,"whatsoever":18971,"sweating":18972,"avalon":18973,"contention":18974,"punt":18975,"severity":18976,"alderman":18977,"atari":18978,"##dina":18979,"##grant":18980,"##rop":18981,"scarf":18982,"seville":18983,"vertices":18984,"annexation":18985,"fairfield":18986,"fascination":18987,"inspiring":18988,"launches":18989,"palatinate":18990,"regretted":18991,"##rca":18992,"feral":18993,"##iom":18994,"elk":18995,"nap":18996,"olsen":18997,"reddy":18998,"yong":18999,"##leader":19000,"##iae":19001,"garment":19002,"transports":19003,"feng":19004,"gracie":19005,"outrage":19006,"viceroy":19007,"insides":19008,"##esis":19009,"breakup":19010,"grady":19011,"organizer":19012,"softer":19013,"grimaced":19014,"murals":19016,"galicia":19017,"arranging":19018,"vectors":19019,"##rsten":19020,"bas":19021,"##sb":19022,"##cens":19023,"sloan":19024,"##eka":19025,"bitten":19026,"ara":19027,"fender":19028,"nausea":19029,"bumped":19030,"kris":19031,"banquet":19032,"comrades":19033,"detector":19034,"persisted":19035,"##llan":19036,"adjustment":19037,"endowed":19038,"cinemas":19039,"##shot":19040,"sellers":19041,"##uman":19042,"peek":19043,"epa":19044,"kindly":19045,"neglect":19046,"simpsons":19047,"talon":19048,"mausoleum":19049,"runaway":19050,"hangul":19051,"lookout":19052,"##cic":19053,"rewards":19054,"coughed":19055,"acquainted":19056,"chloride":19057,"##ald":19058,"quicker":19059,"accordion":19060,"neolithic":19061,"##qa":19062,"artemis":19063,"coefficient":19064,"lenny":19065,"pandora":19066,"tx":19067,"##xed":19068,"ecstasy":19069,"litter":19070,"segunda":19071,"chairperson":19072,"gemma":19073,"hiss":19074,"rumor":19075,"vow":19076,"nasal":19077,"antioch":19078,"compensate":19079,"patiently":19080,"transformers":19081,"##eded":19082,"judo":19083,"morrow":19084,"penis":19085,"posthumous":19086,"philips":19087,"bandits":19088,"husbands":19089,"denote":19090,"flaming":19091,"##any":19092,"##phones":19093,"langley":19094,"yorker":19095,"walters":19097,"##uo":19098,"##kle":19099,"gubernatorial":19100,"fatty":19101,"samsung":19102,"leroy":19103,"outlaw":19104,"##nine":19105,"unpublished":19106,"poole":19107,"jakob":19108,"##ᵢ":19109,"##ₙ":19110,"crete":19111,"distorted":19112,"superiority":19113,"##dhi":19114,"intercept":19115,"crust":19116,"mig":19117,"claus":19118,"crashes":19119,"positioning":19120,"stallion":19122,"frontal":19124,"armistice":19125,"##estinal":19126,"elton":19127,"aj":19128,"encompassing":19129,"camel":19130,"commemorated":19131,"malaria":19132,"woodward":19133,"calf":19134,"cigar":19135,"penetrate":19136,"##oso":19137,"willard":19138,"##rno":19139,"##uche":19140,"illustrate":19141,"amusing":19142,"convergence":19143,"noteworthy":19144,"##lma":19145,"##rva":19146,"journeys":19147,"realise":19148,"manfred":19149,"##sable":19150,"##vocation":19152,"hearings":19153,"fiance":19154,"##posed":19155,"educators":19156,"provoked":19157,"adjusting":19158,"##cturing":19159,"modular":19160,"stockton":19161,"paterson":19162,"vlad":19163,"rejects":19164,"electors":19165,"selena":19166,"maureen":19167,"##tres":19168,"uber":19169,"##rce":19170,"swirled":19171,"##num":19172,"proportions":19173,"nanny":19174,"pawn":19175,"naturalist":19176,"parma":19177,"apostles":19178,"awoke":19179,"ethel":19180,"wen":19181,"##bey":19182,"monsoon":19183,"overview":19184,"##inating":19185,"mccain":19186,"rendition":19187,"risky":19188,"adorned":19189,"##ih":19190,"equestrian":19191,"germain":19192,"nj":19193,"conspicuous":19194,"confirming":19195,"##yoshi":19196,"shivering":19197,"##imeter":19198,"milestone":19199,"rumours":19200,"flinched":19201,"bounds":19202,"smacked":19203,"token":19204,"##bei":19205,"lectured":19206,"automobiles":19207,"##shore":19208,"impacted":19209,"##iable":19210,"nouns":19211,"nero":19212,"##leaf":19213,"ismail":19214,"prostitute":19215,"trams":19216,"##lace":19217,"bridget":19218,"sud":19219,"stimulus":19220,"impressions":19221,"reins":19222,"revolves":19223,"##oud":19224,"##gned":19225,"giro":19226,"honeymoon":19227,"##swell":19228,"criterion":19229,"##sms":19230,"##uil":19231,"libyan":19232,"prefers":19233,"##osition":19234,"preview":19236,"sucks":19237,"accusation":19238,"bursts":19239,"metaphor":19240,"diffusion":19241,"tolerate":19242,"faye":19243,"betting":19244,"cinematographer":19245,"liturgical":19246,"specials":19247,"bitterly":19248,"humboldt":19249,"##ckle":19250,"flux":19251,"rattled":19252,"##itzer":19253,"archaeologists":19254,"odor":19255,"authorised":19256,"marshes":19257,"discretion":19258,"##ов":19259,"alarmed":19260,"archaic":19261,"inverse":19262,"##leton":19263,"explorers":19264,"##pine":19265,"drummond":19266,"tsunami":19267,"woodlands":19268,"##minate":19269,"##tland":19270,"booklet":19271,"insanity":19272,"owning":19273,"insert":19274,"crafted":19275,"calculus":19276,"##tore":19277,"receivers":19278,"##bt":19279,"stung":19280,"##eca":19281,"##nched":19282,"prevailing":19283,"travellers":19284,"eyeing":19285,"lila":19286,"graphs":19287,"##borne":19288,"julien":19290,"##won":19291,"morale":19292,"adaptive":19293,"therapist":19294,"erica":19295,"cw":19296,"libertarian":19297,"bowman":19298,"pitches":19299,"vita":19300,"##ional":19301,"crook":19302,"##ads":19303,"##entation":19304,"caledonia":19305,"mutiny":19306,"##sible":19307,"1840s":19308,"automation":19309,"##ß":19310,"flock":19311,"##pia":19312,"ironic":19313,"pathology":19314,"##imus":19315,"remarried":19316,"##22":19317,"joker":19318,"withstand":19319,"energies":19320,"##att":19321,"shropshire":19322,"hostages":19323,"madeleine":19324,"tentatively":19325,"conflicting":19326,"mateo":19327,"recipes":19328,"euros":19329,"ol":19330,"mercenaries":19331,"nico":19332,"##ndon":19333,"albuquerque":19334,"augmented":19335,"mythical":19336,"bel":19337,"freud":19338,"##child":19339,"cough":19340,"##lica":19341,"freddy":19343,"lillian":19344,"genetically":19345,"nuremberg":19346,"calder":19347,"bonn":19349,"outdoors":19350,"paste":19351,"suns":19352,"urgency":19353,"vin":19354,"restraint":19355,"tyson":19356,"##cera":19357,"##selle":19358,"barrage":19359,"bethlehem":19360,"kahn":19361,"##par":19362,"mounts":19363,"nippon":19364,"barony":19365,"happier":19366,"ryu":19367,"makeshift":19368,"sheldon":19369,"blushed":19370,"castillo":19371,"barking":19372,"listener":19373,"taped":19374,"bethel":19375,"fluent":19376,"headlines":19377,"pornography":19378,"rum":19379,"disclosure":19380,"sighing":19381,"mace":19382,"doubling":19383,"gunther":19384,"manly":19385,"##plex":19386,"rt":19387,"interventions":19388,"physiological":19389,"forwards":19390,"emerges":19391,"##tooth":19392,"##gny":19393,"compliment":19394,"rib":19395,"recession":19396,"visibly":19397,"barge":19398,"faults":19399,"connector":19400,"exquisite":19401,"prefect":19402,"##rlin":19403,"patio":19404,"##cured":19405,"elevators":19406,"brandt":19407,"italics":19408,"pena":19409,"wasp":19411,"satin":19412,"ea":19413,"botswana":19414,"graceful":19415,"respectable":19416,"##jima":19417,"##rter":19418,"##oic":19419,"franciscan":19420,"generates":19421,"##dl":19422,"alfredo":19423,"disgusting":19424,"##olate":19425,"##iously":19426,"sherwood":19427,"warns":19428,"cod":19429,"promo":19430,"cheryl":19431,"sino":19432,"##ة":19433,"##escu":19434,"twitch":19435,"##zhi":19436,"brownish":19437,"thom":19438,"ortiz":19439,"##dron":19440,"densely":19441,"##beat":19442,"carmel":19443,"reinforce":19444,"##bana":19445,"anastasia":19447,"downhill":19448,"vertex":19449,"contaminated":19450,"remembrance":19451,"harmonic":19452,"homework":19453,"##sol":19454,"fiancee":19455,"gears":19456,"olds":19457,"angelica":19458,"loft":19459,"ramsay":19460,"quiz":19461,"colliery":19462,"sevens":19463,"##cape":19464,"autism":19465,"##hil":19466,"walkway":19467,"##boats":19468,"ruben":19469,"abnormal":19470,"ounce":19471,"khmer":19472,"##bbe":19473,"zachary":19474,"bedside":19475,"morphology":19476,"punching":19477,"##olar":19478,"sparrow":19479,"convinces":19480,"##35":19481,"hewitt":19482,"queer":19483,"remastered":19484,"rods":19485,"mabel":19486,"solemn":19487,"notified":19488,"lyricist":19489,"symmetric":19490,"##xide":19491,"encore":19493,"passports":19494,"wildcats":19495,"##uni":19496,"baja":19497,"##pac":19498,"mildly":19499,"##ease":19500,"bleed":19501,"commodity":19502,"mounds":19503,"glossy":19504,"orchestras":19505,"##omo":19506,"damian":19507,"prelude":19508,"ambitions":19509,"##vet":19510,"awhile":19511,"remotely":19512,"##aud":19513,"asserts":19514,"imply":19515,"##iques":19516,"distinctly":19517,"modelling":19518,"remedy":19519,"##dded":19520,"windshield":19521,"dani":19522,"xiao":19523,"##endra":19524,"audible":19525,"powerplant":19526,"invalid":19528,"elemental":19529,"acquisitions":19530,"##hala":19531,"immaculate":19532,"libby":19533,"plata":19534,"smuggling":19535,"ventilation":19536,"denoted":19537,"minh":19538,"##morphism":19539,"differed":19541,"dion":19542,"kelley":19543,"lore":19544,"mocking":19545,"sabbath":19546,"spikes":19547,"hygiene":19548,"drown":19549,"runoff":19550,"stylized":19551,"tally":19552,"liberated":19553,"aux":19554,"interpreter":19555,"righteous":19556,"aba":19557,"siren":19558,"reaper":19559,"pearce":19560,"millie":19561,"##cier":19562,"##yra":19563,"gaius":19564,"##iso":19565,"captures":19566,"##ttering":19567,"dorm":19568,"claudio":19569,"##sic":19570,"benches":19571,"knighted":19572,"blackness":19573,"##ored":19574,"discount":19575,"fumble":19576,"oxidation":19577,"routed":19578,"##ς":19579,"novak":19580,"perpendicular":19581,"spoiled":19582,"fracture":19583,"splits":19584,"##urt":19585,"pads":19586,"topology":19587,"##cats":19588,"axes":19589,"fortunate":19590,"offenders":19591,"protestants":19592,"esteem":19593,"broadband":19595,"convened":19596,"frankly":19597,"hound":19598,"prototypes":19599,"isil":19600,"facilitated":19601,"keel":19602,"##sher":19603,"sahara":19604,"awaited":19605,"bubba":19606,"orb":19607,"prosecutors":19608,"hem":19610,"##xing":19612,"relaxing":19613,"remnant":19614,"romney":19615,"sorted":19616,"slalom":19617,"stefano":19618,"ulrich":19619,"##active":19620,"exemption":19621,"folder":19622,"pauses":19623,"foliage":19624,"hitchcock":19625,"epithet":19626,"criticisms":19628,"##aca":19629,"ballistic":19630,"brody":19631,"hinduism":19632,"chaotic":19633,"youths":19634,"equals":19635,"##pala":19636,"pts":19637,"thicker":19638,"analogous":19639,"capitalist":19640,"improvised":19641,"overseeing":19642,"sinatra":19643,"ascended":19644,"beverage":19645,"##tl":19646,"straightforward":19647,"##kon":19648,"curran":19649,"##west":19650,"bois":19651,"induce":19653,"surveying":19654,"emperors":19655,"sax":19656,"unpopular":19657,"##kk":19658,"cartoonist":19659,"fused":19660,"##mble":19661,"unto":19662,"##yuki":19663,"localities":19664,"##cko":19665,"##ln":19666,"darlington":19667,"slain":19668,"academie":19669,"lobbying":19670,"sediment":19671,"puzzles":19672,"##grass":19673,"defiance":19674,"dickens":19675,"manifest":19676,"tongues":19677,"alumnus":19678,"arbor":19679,"coincide":19680,"appalachian":19682,"mustafa":19683,"examiner":19684,"cabaret":19685,"traumatic":19686,"yves":19687,"bracelet":19688,"draining":19689,"heroin":19690,"magnum":19691,"baths":19692,"odessa":19693,"consonants":19694,"mitsubishi":19695,"##gua":19696,"kellan":19697,"vaudeville":19698,"##fr":19699,"joked":19700,"null":19701,"straps":19702,"probation":19703,"##ław":19704,"ceded":19705,"interfaces":19706,"##pas":19707,"##zawa":19708,"blinding":19709,"viet":19710,"rothschild":19712,"museo":19713,"huddersfield":19715,"##vr":19716,"tactic":19717,"##storm":19718,"brackets":19719,"dazed":19720,"incorrectly":19721,"##vu":19722,"reg":19723,"glazed":19724,"fearful":19725,"manifold":19726,"benefited":19727,"irony":19728,"##sun":19729,"stumbling":19730,"##rte":19731,"willingness":19732,"balkans":19733,"mei":19734,"wraps":19735,"##aba":19736,"injected":19737,"##lea":19738,"gu":19739,"syed":19740,"harmless":19741,"##hammer":19742,"bray":19743,"takeoff":19744,"poppy":19745,"timor":19746,"cardboard":19747,"astronaut":19748,"purdue":19749,"weeping":19750,"southbound":19751,"cursing":19752,"stalls":19753,"diagonal":19754,"##neer":19755,"lamar":19756,"bryce":19757,"comte":19758,"weekdays":19759,"harrington":19760,"##uba":19761,"negatively":19762,"##see":19763,"lays":19764,"grouping":19765,"##cken":19766,"##henko":19767,"affirmed":19768,"halle":19769,"modernist":19770,"##lai":19771,"hodges":19772,"smelling":19773,"aristocratic":19774,"baptized":19775,"dismiss":19776,"justification":19777,"oilers":19778,"##now":19779,"coupling":19780,"qin":19781,"snack":19782,"healer":19783,"##qing":19784,"gardener":19785,"layla":19786,"battled":19787,"formulated":19788,"stephenson":19789,"gravitational":19790,"##gill":19791,"##jun":19792,"granny":19794,"coordinating":19795,"suites":19796,"##cd":19797,"##ioned":19798,"monarchs":19799,"##cote":19800,"##hips":19801,"sep":19802,"blended":19803,"apr":19804,"barrister":19805,"deposition":19806,"fia":19807,"mina":19808,"policemen":19809,"paranoid":19810,"##pressed":19811,"churchyard":19812,"covert":19813,"crumpled":19814,"creep":19815,"abandoning":19816,"tr":19817,"transmit":19818,"conceal":19819,"barr":19820,"understands":19821,"readiness":19822,"spire":19823,"##cology":19824,"##enia":19825,"##erry":19826,"startling":19828,"unlock":19829,"vida":19830,"bowled":19831,"slots":19832,"##nat":19833,"##islav":19834,"spaced":19835,"trusting":19836,"admire":19837,"rig":19838,"##ink":19839,"slack":19840,"##70":19841,"mv":19842,"casualty":19844,"##wei":19845,"classmates":19846,"##odes":19847,"##rar":19848,"##rked":19849,"amherst":19850,"furnished":19851,"evolve":19852,"foundry":19853,"menace":19854,"mead":19855,"##lein":19856,"flu":19857,"wesleyan":19858,"##kled":19859,"monterey":19860,"webber":19861,"##vos":19862,"wil":19863,"##mith":19864,"##на":19865,"bartholomew":19866,"justices":19867,"restrained":19868,"##cke":19869,"amenities":19870,"mediated":19872,"sewage":19873,"trenches":19874,"ml":19875,"mainz":19876,"##thus":19877,"1800s":19878,"##cula":19879,"##inski":19880,"caine":19881,"bonding":19882,"converts":19884,"spheres":19885,"superseded":19886,"marianne":19887,"crypt":19888,"sweaty":19889,"ensign":19890,"historia":19891,"##br":19892,"spruce":19893,"##post":19894,"##ask":19895,"forks":19896,"thoughtfully":19897,"yukon":19898,"pamphlet":19899,"ames":19900,"##uter":19901,"karma":19902,"##yya":19903,"bryn":19904,"negotiation":19905,"sighs":19906,"incapable":19907,"##mbre":19908,"##ntial":19909,"actresses":19910,"taft":19911,"##mill":19912,"luce":19913,"prevailed":19914,"##amine":19915,"motionless":19917,"envoy":19918,"testify":19919,"investing":19920,"sculpted":19921,"instructors":19922,"provence":19923,"kali":19924,"cullen":19925,"horseback":19926,"##while":19927,"goodwin":19928,"##jos":19929,"gaa":19930,"norte":19931,"##ldon":19932,"modify":19933,"wavelength":19934,"abd":19935,"skinned":19937,"sprinter":19938,"forecast":19939,"scheduling":19940,"marries":19941,"squared":19942,"tentative":19943,"##chman":19944,"boer":19945,"##isch":19946,"bolts":19947,"swap":19948,"fisherman":19949,"assyrian":19950,"impatiently":19951,"guthrie":19952,"martins":19953,"murdoch":19954,"tanya":19956,"nicely":19957,"dolly":19958,"lacy":19959,"med":19960,"##45":19961,"syn":19962,"decks":19963,"fashionable":19964,"millionaire":19965,"##ust":19966,"surfing":19967,"##ml":19968,"##ision":19969,"heaved":19970,"tammy":19971,"consulate":19972,"attendees":19973,"routinely":19974,"fuse":19976,"saxophonist":19977,"backseat":19978,"malaya":19979,"##lord":19980,"scowl":19981,"tau":19982,"##ishly":19983,"sighted":19985,"steaming":19986,"##rks":19987,"##holes":19990,"##hong":19991,"ching":19992,"##wife":19993,"bless":19994,"conserved":19995,"jurassic":19996,"stacey":19997,"unix":19998,"zion":19999,"chunk":20000,"rigorous":20001,"blaine":20002,"peabody":20004,"slayer":20005,"dismay":20006,"brewers":20007,"nz":20008,"##jer":20009,"det":20010,"##glia":20011,"glover":20012,"postwar":20013,"int":20014,"penetration":20015,"sylvester":20016,"imitation":20017,"vertically":20018,"airlift":20019,"heiress":20020,"knoxville":20021,"viva":20022,"##uin":20023,"macon":20025,"##rim":20026,"##fighter":20027,"##gonal":20028,"janice":20029,"##orescence":20030,"##wari":20031,"marius":20032,"belongings":20033,"leicestershire":20034,"blanco":20036,"inverted":20037,"preseason":20038,"sanity":20039,"sobbing":20040,"##due":20041,"##elt":20042,"##dled":20043,"collingwood":20044,"regeneration":20045,"flickering":20046,"shortest":20047,"##mount":20048,"##osi":20049,"feminism":20050,"##lat":20051,"sherlock":20052,"cabinets":20053,"fumbled":20054,"northbound":20055,"precedent":20056,"snaps":20057,"##mme":20058,"researching":20059,"##akes":20060,"guillaume":20061,"insights":20062,"manipulated":20063,"vapor":20064,"neighbour":20065,"sap":20066,"gangster":20067,"frey":20068,"f1":20069,"stalking":20070,"scarcely":20071,"callie":20072,"barnett":20073,"tendencies":20074,"audi":20075,"doomed":20076,"assessing":20077,"slung":20078,"panchayat":20079,"ambiguous":20080,"bartlett":20081,"##etto":20082,"distributing":20083,"violating":20084,"wolverhampton":20085,"##hetic":20086,"swami":20087,"histoire":20088,"##urus":20089,"liable":20090,"pounder":20091,"groin":20092,"hussain":20093,"larsen":20094,"popping":20095,"surprises":20096,"##atter":20097,"vie":20098,"curt":20099,"##station":20100,"mute":20101,"relocate":20102,"musicals":20103,"authorization":20104,"richter":20105,"##sef":20106,"immortality":20107,"tna":20108,"bombings":20109,"##press":20110,"deteriorated":20111,"yiddish":20112,"##acious":20113,"robbed":20114,"colchester":20115,"cs":20116,"pmid":20117,"ao":20118,"verified":20119,"balancing":20120,"apostle":20121,"swayed":20122,"recognizable":20123,"oxfordshire":20124,"retention":20125,"nottinghamshire":20126,"contender":20127,"judd":20128,"invitational":20129,"shrimp":20130,"uhf":20131,"##icient":20132,"cleaner":20133,"longitudinal":20134,"tanker":20135,"##mur":20136,"acronym":20137,"broker":20138,"koppen":20139,"sundance":20140,"suppliers":20141,"##gil":20142,"clipped":20144,"fuels":20145,"petite":20146,"##anne":20147,"landslide":20148,"helene":20149,"diversion":20150,"populous":20151,"landowners":20152,"auspices":20153,"melville":20154,"quantitative":20155,"##xes":20156,"ferries":20157,"nicky":20158,"##llus":20159,"doo":20160,"haunting":20161,"roche":20162,"carver":20163,"downed":20164,"unavailable":20165,"##pathy":20166,"approximation":20167,"hiroshima":20168,"##hue":20169,"garfield":20170,"valle":20171,"comparatively":20172,"keyboardist":20173,"traveler":20174,"##eit":20175,"congestion":20176,"calculating":20177,"subsidiaries":20178,"##bate":20179,"serb":20180,"modernization":20181,"fairies":20182,"deepened":20183,"ville":20184,"averages":20185,"##lore":20186,"inflammatory":20187,"tonga":20188,"##itch":20189,"co₂":20190,"squads":20191,"##hea":20192,"gigantic":20193,"serum":20194,"enjoyment":20195,"retailer":20196,"verona":20197,"35th":20198,"cis":20199,"##phobic":20200,"magna":20201,"technicians":20202,"##vati":20203,"arithmetic":20204,"##sport":20205,"levin":20206,"##dation":20207,"amtrak":20208,"chow":20209,"sienna":20210,"##eyer":20211,"backstage":20212,"entrepreneurship":20213,"##otic":20214,"learnt":20215,"tao":20216,"##udy":20217,"worcestershire":20218,"formulation":20219,"baggage":20220,"hesitant":20221,"bali":20222,"sabotage":20223,"##kari":20224,"barren":20225,"enhancing":20226,"murmur":20227,"pl":20228,"freshly":20229,"putnam":20230,"syntax":20231,"aces":20232,"medicines":20233,"resentment":20234,"bandwidth":20235,"##sier":20236,"grins":20237,"chili":20238,"guido":20239,"##sei":20240,"framing":20241,"implying":20242,"gareth":20243,"lissa":20244,"genevieve":20245,"pertaining":20246,"admissions":20247,"geo":20248,"thorpe":20249,"proliferation":20250,"sato":20251,"bela":20252,"analyzing":20253,"parting":20254,"##gor":20255,"awakened":20256,"##isman":20257,"huddled":20258,"secrecy":20259,"##kling":20260,"hush":20261,"gentry":20262,"dungeons":20264,"##ego":20265,"coasts":20266,"##utz":20267,"sacrificed":20268,"##chule":20269,"landowner":20270,"mutually":20271,"prevalence":20272,"programmer":20273,"adolescent":20274,"disrupted":20275,"seaside":20276,"gee":20277,"trusts":20278,"vamp":20279,"georgie":20280,"##nesian":20281,"##iol":20282,"schedules":20283,"sindh":20284,"##market":20285,"etched":20286,"hm":20287,"sparse":20288,"bey":20289,"beaux":20290,"scratching":20291,"gliding":20292,"unidentified":20293,"collaborating":20295,"gems":20296,"jesuits":20297,"oro":20298,"accumulation":20299,"shaping":20300,"mbe":20301,"anal":20302,"##xin":20303,"enthusiasts":20305,"newscast":20306,"##egan":20307,"janata":20308,"dewey":20309,"parkinson":20310,"ankara":20312,"biennial":20313,"towering":20314,"dd":20315,"inconsistent":20316,"##chet":20318,"thriving":20319,"terminate":20320,"cabins":20321,"furiously":20322,"eats":20323,"advocating":20324,"donkey":20325,"marley":20326,"muster":20327,"phyllis":20328,"leiden":20329,"##user":20330,"grassland":20331,"glittering":20332,"iucn":20333,"loneliness":20334,"memorandum":20336,"armenians":20337,"##ddle":20338,"popularized":20339,"rhodesia":20340,"60s":20341,"lame":20342,"##illon":20343,"sans":20344,"bikini":20345,"header":20346,"orbits":20347,"##xx":20348,"##finger":20349,"##ulator":20350,"sharif":20351,"spines":20352,"biotechnology":20353,"strolled":20354,"naughty":20355,"yates":20356,"##wire":20357,"fremantle":20358,"milo":20359,"##mour":20360,"abducted":20361,"removes":20362,"##atin":20363,"humming":20364,"wonderland":20365,"##chrome":20366,"##ester":20367,"hume":20368,"pivotal":20369,"##rates":20370,"armand":20371,"grams":20372,"believers":20373,"elector":20374,"rte":20375,"apron":20376,"bis":20377,"scraped":20378,"##yria":20379,"endorsement":20380,"initials":20381,"##llation":20382,"eps":20383,"dotted":20384,"hints":20385,"buzzing":20386,"emigration":20387,"nearer":20388,"##tom":20389,"indicators":20390,"##ulu":20391,"coarse":20392,"neutron":20393,"protectorate":20394,"##uze":20395,"directional":20396,"exploits":20397,"pains":20398,"loire":20399,"1830s":20400,"proponents":20401,"guggenheim":20402,"rabbits":20403,"ritchie":20404,"hectare":20406,"inputs":20407,"hutton":20408,"##raz":20409,"verify":20410,"##ako":20411,"boilers":20412,"longitude":20413,"##lev":20414,"skeletal":20415,"yer":20416,"emilia":20417,"citrus":20418,"compromised":20419,"##gau":20420,"pokemon":20421,"prescription":20422,"paragraph":20423,"eduard":20424,"cadillac":20425,"attire":20426,"categorized":20427,"kenyan":20428,"weddings":20429,"charley":20430,"##bourg":20431,"entertain":20432,"monmouth":20433,"##lles":20434,"nutrients":20435,"davey":20436,"mesh":20437,"incentive":20438,"practised":20439,"ecosystems":20440,"kemp":20441,"subdued":20442,"overheard":20443,"##rya":20444,"bodily":20445,"maxim":20446,"##nius":20447,"apprenticeship":20448,"ursula":20449,"##fight":20450,"lodged":20451,"rug":20452,"silesian":20453,"unconstitutional":20454,"patel":20455,"inspected":20456,"coyote":20457,"unbeaten":20458,"##hak":20459,"34th":20460,"disruption":20461,"convict":20462,"parcel":20463,"##cl":20464,"##nham":20465,"collier":20466,"implicated":20467,"mallory":20468,"##iac":20469,"##lab":20470,"susannah":20471,"winkler":20472,"##rber":20473,"shia":20474,"phelps":20475,"sediments":20476,"graphical":20477,"robotic":20478,"##sner":20479,"adulthood":20480,"mart":20481,"smoked":20482,"##isto":20483,"kathryn":20484,"clarified":20485,"##aran":20486,"divides":20487,"convictions":20488,"oppression":20489,"pausing":20490,"burying":20491,"##mt":20492,"federico":20493,"mathias":20494,"eileen":20495,"##tana":20496,"kite":20497,"hunched":20498,"##acies":20499,"##atz":20501,"disadvantage":20502,"liza":20503,"kinetic":20504,"greedy":20505,"paradox":20506,"yokohama":20507,"dowager":20508,"trunks":20509,"ventured":20510,"##gement":20511,"gupta":20512,"vilnius":20513,"olaf":20514,"##thest":20515,"crimean":20516,"hopper":20517,"##ej":20518,"progressively":20519,"arturo":20520,"mouthed":20521,"arrondissement":20522,"##fusion":20523,"rubin":20524,"simulcast":20525,"oceania":20526,"##orum":20527,"##stra":20528,"##rred":20529,"busiest":20530,"intensely":20531,"navigator":20532,"cary":20533,"##vine":20534,"##hini":20535,"##bies":20536,"fife":20537,"rowe":20538,"rowland":20539,"posing":20540,"insurgents":20541,"shafts":20542,"lawsuits":20543,"activate":20544,"conor":20545,"inward":20546,"culturally":20547,"garlic":20548,"##eering":20550,"eclectic":20551,"##hui":20552,"##kee":20553,"##nl":20554,"furrowed":20555,"vargas":20556,"meteorological":20557,"rendezvous":20558,"##aus":20559,"culinary":20560,"commencement":20561,"##dition":20562,"quota":20563,"##notes":20564,"mommy":20565,"salaries":20566,"overlapping":20567,"mule":20568,"##iology":20569,"##mology":20570,"sums":20571,"wentworth":20572,"##isk":20573,"##zione":20574,"mainline":20575,"subgroup":20576,"##illy":20577,"hack":20578,"plaintiff":20579,"verdi":20580,"bulb":20581,"differentiation":20582,"engagements":20583,"multinational":20584,"supplemented":20585,"bertrand":20586,"caller":20587,"regis":20588,"##naire":20589,"##sler":20590,"##arts":20591,"##imated":20592,"blossom":20593,"propagation":20594,"kilometer":20595,"viaduct":20596,"vineyards":20597,"##uate":20598,"beckett":20599,"optimization":20600,"golfer":20601,"songwriters":20602,"seminal":20603,"semitic":20604,"thud":20605,"volatile":20606,"evolving":20607,"ridley":20608,"##wley":20609,"trivial":20610,"distributions":20611,"scandinavia":20612,"jiang":20613,"##ject":20614,"wrestled":20615,"insistence":20616,"##dio":20617,"emphasizes":20618,"napkin":20619,"##ods":20620,"adjunct":20621,"rhyme":20622,"##ricted":20623,"##eti":20624,"hopeless":20625,"surrounds":20626,"tremble":20627,"32nd":20628,"smoky":20629,"##ntly":20630,"oils":20631,"medicinal":20632,"padded":20633,"steer":20634,"wilkes":20635,"concessions":20638,"hue":20639,"uniquely":20640,"blinded":20641,"landon":20642,"yahoo":20643,"##lane":20644,"hendrix":20645,"commemorating":20646,"dex":20647,"specify":20648,"chicks":20649,"##ggio":20650,"intercity":20651,"morley":20653,"##torm":20654,"highlighting":20655,"##oting":20656,"pang":20657,"oblique":20658,"stalled":20659,"##liner":20660,"flirting":20661,"newborn":20662,"bishopric":20664,"shaved":20665,"currie":20667,"##ush":20668,"dharma":20669,"spartan":20670,"##ooped":20671,"favorites":20672,"smug":20673,"novella":20674,"sirens":20675,"abusive":20676,"creations":20677,"espana":20678,"##lage":20679,"paradigm":20680,"semiconductor":20681,"sheen":20682,"##rdo":20683,"##yen":20684,"##zak":20685,"nrl":20686,"renew":20687,"##pose":20688,"##tur":20689,"adjutant":20690,"marches":20691,"norma":20692,"##enity":20693,"ineffective":20694,"weimar":20695,"grunt":20696,"##gat":20697,"lordship":20698,"plotting":20699,"expenditure":20700,"infringement":20701,"lbs":20702,"refrain":20703,"av":20704,"mimi":20705,"mistakenly":20706,"postmaster":20707,"##bara":20709,"ras":20710,"motorsports":20711,"tito":20712,"subjective":20714,"##zza":20715,"bully":20716,"stew":20717,"##kaya":20718,"prescott":20719,"1a":20720,"##raphic":20721,"##zam":20722,"bids":20723,"styling":20724,"paranormal":20725,"reeve":20726,"sneaking":20727,"exploding":20728,"katz":20729,"akbar":20730,"migrant":20731,"syllables":20732,"indefinitely":20733,"##ogical":20734,"destroys":20735,"replaces":20736,"applause":20737,"##phine":20738,"pest":20739,"##fide":20740,"articulated":20742,"bertie":20743,"##thing":20744,"##cars":20745,"##ptic":20746,"courtroom":20747,"crowley":20748,"aesthetics":20749,"cummings":20750,"tehsil":20751,"hormones":20752,"titanic":20753,"dangerously":20754,"##ibe":20755,"stadion":20756,"jaenelle":20757,"auguste":20758,"ciudad":20759,"##chu":20760,"mysore":20761,"partisans":20762,"##sio":20763,"lucan":20764,"philipp":20765,"##aly":20766,"debating":20767,"henley":20768,"interiors":20769,"##rano":20770,"##tious":20771,"homecoming":20772,"beyonce":20773,"usher":20774,"henrietta":20775,"prepares":20776,"weeds":20777,"##oman":20778,"ely":20779,"plucked":20780,"##pire":20781,"##dable":20782,"luxurious":20783,"##aq":20784,"artifact":20785,"password":20786,"pasture":20787,"juno":20788,"maddy":20789,"minsk":20790,"##dder":20791,"##ologies":20792,"##rone":20793,"assessments":20794,"martian":20795,"royalist":20796,"examines":20798,"##mani":20799,"##rge":20800,"nino":20801,"parry":20803,"scooped":20804,"relativity":20805,"##eli":20806,"##uting":20807,"##cao":20808,"congregational":20809,"noisy":20810,"traverse":20811,"##agawa":20812,"strikeouts":20813,"nickelodeon":20814,"obituary":20815,"transylvania":20816,"binds":20817,"depictions":20818,"polk":20819,"trolley":20820,"##yed":20821,"##lard":20822,"breeders":20823,"##under":20824,"dryly":20825,"hokkaido":20826,"strengths":20828,"stacks":20829,"bonaparte":20830,"connectivity":20831,"neared":20832,"prostitutes":20833,"stamped":20834,"anaheim":20835,"gutierrez":20836,"sinai":20837,"##zzling":20838,"bram":20839,"fresno":20840,"madhya":20841,"##86":20842,"proton":20843,"##lena":20844,"##llum":20845,"##phon":20846,"reelected":20847,"wanda":20848,"##anus":20849,"##lb":20850,"ample":20851,"distinguishing":20852,"##yler":20853,"grasping":20854,"sermons":20855,"tomato":20856,"bland":20857,"stimulation":20858,"avenues":20859,"##eux":20860,"spreads":20861,"scarlett":20862,"fern":20863,"pentagon":20864,"assert":20865,"baird":20866,"chesapeake":20867,"ir":20868,"calmed":20869,"distortion":20870,"fatalities":20871,"##olis":20872,"correctional":20873,"pricing":20874,"##astic":20875,"##gina":20876,"prom":20877,"dammit":20878,"ying":20879,"collaborate":20880,"##chia":20881,"welterweight":20882,"33rd":20883,"pointer":20884,"substitution":20885,"bonded":20886,"umpire":20887,"communicating":20888,"multitude":20889,"paddle":20890,"##obe":20891,"federally":20892,"intimacy":20893,"##insky":20894,"betray":20895,"ssr":20896,"##lett":20897,"##lean":20898,"##lves":20899,"##therapy":20900,"airbus":20901,"##tery":20902,"functioned":20903,"ud":20904,"bearer":20905,"biomedical":20906,"netflix":20907,"##hire":20908,"##nca":20909,"condom":20910,"brink":20911,"ik":20912,"##nical":20913,"macy":20914,"##bet":20915,"flap":20916,"gma":20917,"experimented":20918,"jelly":20919,"lavender":20920,"##icles":20921,"##ulia":20922,"munro":20923,"##mian":20924,"##tial":20925,"rye":20926,"##rle":20927,"60th":20928,"gigs":20929,"hottest":20930,"rotated":20931,"predictions":20932,"fuji":20933,"bu":20934,"##erence":20935,"##omi":20936,"barangay":20937,"##fulness":20938,"##sas":20939,"clocks":20940,"##rwood":20941,"##liness":20942,"cereal":20943,"roe":20944,"wight":20945,"decker":20946,"uttered":20947,"babu":20948,"onion":20949,"xml":20950,"forcibly":20951,"##df":20952,"petra":20953,"sarcasm":20954,"hartley":20955,"peeled":20956,"storytelling":20957,"##42":20958,"##xley":20959,"##ysis":20960,"##ffa":20961,"fibre":20962,"kiel":20963,"auditor":20964,"fig":20965,"harald":20966,"greenville":20967,"##berries":20968,"geographically":20969,"nell":20970,"quartz":20971,"##athic":20972,"cemeteries":20973,"##lr":20974,"crossings":20975,"nah":20976,"holloway":20977,"reptiles":20978,"chun":20979,"sichuan":20980,"snowy":20981,"corrections":20983,"##ivo":20984,"zheng":20985,"ambassadors":20986,"blacksmith":20987,"fielded":20988,"fluids":20989,"hardcover":20990,"turnover":20991,"medications":20992,"melvin":20993,"academies":20994,"##erton":20995,"ro":20996,"roach":20997,"absorbing":20998,"spaniards":20999,"colton":21000,"##founded":21001,"outsider":21002,"espionage":21003,"kelsey":21004,"edible":21006,"##ulf":21007,"dora":21008,"establishes":21009,"##sham":21010,"##tries":21011,"contracting":21012,"##tania":21013,"cinematic":21014,"costello":21015,"nesting":21016,"##uron":21017,"connolly":21018,"duff":21019,"##nology":21020,"mma":21021,"##mata":21022,"fergus":21023,"sexes":21024,"gi":21025,"optics":21026,"spectator":21027,"woodstock":21028,"banning":21029,"##hee":21030,"##fle":21031,"differentiate":21032,"outfielder":21033,"refinery":21034,"gerhard":21037,"horde":21038,"lair":21039,"drastically":21040,"##udi":21041,"landfall":21042,"##cheng":21043,"motorsport":21044,"odi":21045,"##achi":21046,"predominant":21047,"quay":21048,"skins":21049,"##ental":21050,"edna":21051,"harshly":21052,"complementary":21053,"murdering":21054,"##aves":21055,"wreckage":21056,"##90":21057,"ono":21058,"outstretched":21059,"lennox":21060,"munitions":21061,"galen":21062,"reconcile":21063,"scalp":21065,"bicycles":21066,"gillespie":21067,"questionable":21068,"rosenberg":21069,"guillermo":21070,"hostel":21071,"jarvis":21072,"kabul":21073,"volvo":21074,"opium":21075,"yd":21076,"##twined":21077,"abuses":21078,"decca":21079,"outpost":21080,"##cino":21081,"sensible":21082,"neutrality":21083,"##64":21084,"ponce":21085,"anchorage":21086,"atkins":21087,"turrets":21088,"inadvertently":21089,"disagree":21090,"libre":21091,"vodka":21092,"reassuring":21093,"weighs":21094,"##yal":21095,"glide":21096,"jumper":21097,"ceilings":21098,"repertory":21099,"outs":21100,"stain":21101,"##bial":21102,"envy":21103,"##ucible":21104,"smashing":21105,"heightened":21106,"policing":21107,"hyun":21108,"mixes":21109,"lai":21110,"prima":21111,"##ples":21112,"celeste":21113,"##bina":21114,"lucrative":21115,"intervened":21116,"kc":21117,"manually":21118,"##rned":21119,"stature":21120,"staffed":21121,"bun":21122,"bastards":21123,"nairobi":21124,"priced":21125,"##auer":21126,"thatcher":21127,"##kia":21128,"tripped":21129,"comune":21130,"##ogan":21131,"##pled":21132,"brasil":21133,"incentives":21134,"emanuel":21135,"hereford":21136,"musica":21137,"##kim":21138,"benedictine":21139,"biennale":21140,"##lani":21141,"eureka":21142,"gardiner":21143,"rb":21144,"knocks":21145,"sha":21146,"##ael":21147,"##elled":21148,"##onate":21149,"efficacy":21150,"ventura":21151,"masonic":21152,"sanford":21153,"maize":21154,"leverage":21155,"##feit":21156,"capacities":21157,"santana":21158,"##aur":21159,"novelty":21160,"vanilla":21161,"##cter":21162,"##tour":21163,"benin":21164,"##oir":21165,"##rain":21166,"neptune":21167,"drafting":21168,"tallinn":21169,"##cable":21170,"humiliation":21171,"##boarding":21172,"schleswig":21173,"fabian":21174,"bernardo":21175,"liturgy":21176,"spectacle":21177,"sweeney":21178,"pont":21179,"routledge":21180,"##tment":21181,"cosmos":21182,"ut":21183,"hilt":21184,"sleek":21185,"universally":21186,"##eville":21187,"##gawa":21188,"typed":21189,"##dry":21190,"favors":21191,"allegheny":21192,"glaciers":21193,"##rly":21194,"recalling":21195,"aziz":21196,"##log":21197,"parasite":21198,"requiem":21199,"auf":21200,"##berto":21201,"##llin":21202,"illumination":21203,"##breaker":21204,"##issa":21205,"festivities":21206,"bows":21207,"govern":21208,"vibe":21209,"vp":21210,"sprawled":21212,"larson":21213,"pilgrim":21214,"bwf":21215,"leaping":21216,"##rts":21217,"##ssel":21218,"alexei":21219,"greyhound":21220,"hoarse":21221,"##dler":21222,"##oration":21223,"seneca":21224,"##cule":21225,"gaping":21226,"##ulously":21227,"##pura":21228,"cinnamon":21229,"##gens":21230,"##rricular":21231,"craven":21232,"fantasies":21233,"houghton":21234,"engined":21235,"reigned":21236,"dictator":21237,"supervising":21238,"##oris":21239,"bogota":21240,"commentaries":21241,"unnatural":21242,"fingernails":21243,"spirituality":21244,"tighten":21245,"##tm":21246,"canadiens":21247,"protesting":21248,"intentional":21249,"cheers":21250,"sparta":21251,"##ytic":21252,"##iere":21253,"##zine":21254,"widen":21255,"belgarath":21256,"controllers":21257,"dodd":21258,"iaaf":21259,"navarre":21260,"##ication":21261,"defect":21262,"squire":21263,"steiner":21264,"whisky":21265,"##mins":21266,"inevitably":21268,"tome":21269,"##gold":21270,"chew":21271,"##uid":21272,"##lid":21273,"elastic":21274,"##aby":21275,"streaked":21276,"alliances":21277,"jailed":21278,"regal":21279,"##ined":21280,"##phy":21281,"czechoslovak":21282,"narration":21283,"absently":21284,"##uld":21285,"bluegrass":21286,"guangdong":21287,"quran":21288,"criticizing":21289,"hose":21290,"hari":21291,"##liest":21292,"##owa":21293,"skier":21294,"streaks":21295,"deploy":21296,"##lom":21297,"raft":21298,"bose":21299,"dialed":21300,"huff":21301,"##eira":21302,"haifa":21303,"simplest":21304,"bursting":21305,"endings":21306,"ib":21307,"sultanate":21308,"##titled":21309,"franks":21310,"whitman":21311,"ensures":21312,"sven":21313,"##ggs":21314,"collaborators":21315,"forster":21316,"organising":21317,"ui":21318,"banished":21319,"napier":21320,"injustice":21321,"teller":21322,"layered":21323,"thump":21324,"##otti":21325,"roc":21326,"battleships":21327,"evidenced":21328,"fugitive":21329,"sadie":21330,"robotics":21331,"##roud":21332,"equatorial":21333,"geologist":21334,"##iza":21335,"yielding":21336,"##bron":21337,"##sr":21338,"internationale":21339,"mecca":21340,"##diment":21341,"sbs":21342,"skyline":21343,"toad":21344,"uploaded":21345,"reflective":21346,"undrafted":21347,"lal":21348,"leafs":21349,"bayern":21350,"##dai":21351,"lakshmi":21352,"shortlisted":21353,"##stick":21354,"##wicz":21355,"camouflage":21356,"donate":21357,"af":21358,"christi":21359,"lau":21360,"##acio":21361,"disclosed":21362,"nemesis":21363,"assemble":21365,"straining":21366,"northamptonshire":21367,"tal":21368,"##asi":21369,"bernardino":21370,"premature":21371,"heidi":21372,"42nd":21373,"coefficients":21374,"galactic":21375,"reproduce":21376,"buzzed":21377,"sensations":21378,"zionist":21379,"monsieur":21380,"myrtle":21381,"##eme":21382,"archery":21383,"strangled":21384,"musically":21385,"viewpoint":21386,"antiquities":21387,"bei":21388,"trailers":21389,"seahawks":21390,"cured":21391,"pee":21392,"preferring":21393,"tasmanian":21394,"lange":21395,"sul":21396,"##mail":21397,"##working":21398,"colder":21399,"overland":21400,"lucivar":21401,"massey":21402,"gatherings":21403,"haitian":21404,"##smith":21405,"disapproval":21406,"flaws":21407,"##cco":21408,"##enbach":21409,"npr":21411,"##icular":21412,"boroughs":21413,"creole":21414,"forums":21415,"techno":21416,"dent":21418,"abdominal":21419,"streetcar":21420,"##eson":21421,"##stream":21422,"procurement":21423,"gemini":21424,"predictable":21425,"##tya":21426,"acheron":21427,"christoph":21428,"feeder":21429,"fronts":21430,"vendor":21431,"bernhard":21432,"jammu":21433,"tumors":21434,"slang":21435,"##uber":21436,"goaltender":21437,"twists":21438,"curving":21439,"manson":21440,"vuelta":21441,"mer":21442,"peanut":21443,"confessions":21444,"pouch":21445,"unpredictable":21446,"allowance":21447,"theodor":21448,"vascular":21449,"##factory":21450,"bala":21451,"authenticity":21452,"metabolic":21453,"coughing":21454,"nanjing":21455,"##cea":21456,"pembroke":21457,"##bard":21458,"splendid":21459,"36th":21460,"ff":21461,"hourly":21462,"##ahu":21463,"elmer":21464,"handel":21465,"##ivate":21466,"awarding":21467,"thrusting":21468,"dl":21469,"experimentation":21470,"##hesion":21471,"##46":21472,"caressed":21473,"entertained":21474,"steak":21475,"##rangle":21476,"biologist":21477,"orphans":21478,"baroness":21479,"oyster":21480,"stepfather":21481,"##dridge":21482,"mirage":21483,"reefs":21484,"speeding":21485,"##31":21486,"barons":21487,"inhabit":21490,"preached":21491,"repealed":21492,"##tral":21493,"honoring":21494,"boogie":21495,"captives":21496,"administer":21497,"johanna":21498,"##imate":21499,"gel":21500,"suspiciously":21501,"sobs":21503,"##dington":21504,"backbone":21505,"hayward":21506,"garry":21507,"##folding":21508,"##nesia":21509,"maxi":21510,"##oof":21511,"##ppe":21512,"ellison":21513,"galileo":21514,"##stand":21515,"crimea":21516,"frenzy":21517,"amour":21518,"bumper":21519,"matrices":21520,"natalia":21521,"baking":21522,"garth":21523,"palestinians":21524,"##grove":21525,"smack":21526,"conveyed":21527,"ensembles":21528,"gardening":21529,"##manship":21530,"##rup":21531,"##stituting":21532,"harvesting":21534,"topography":21535,"jing":21536,"shifters":21537,"dormitory":21538,"##carriage":21539,"##lston":21540,"ist":21541,"skulls":21542,"##stadt":21543,"dolores":21544,"jewellery":21545,"sarawak":21546,"##wai":21547,"##zier":21548,"fences":21549,"christy":21550,"confinement":21551,"tumbling":21552,"credibility":21553,"fir":21554,"stench":21555,"##bria":21556,"##plication":21557,"##nged":21558,"##sam":21559,"virtues":21560,"##belt":21561,"marjorie":21562,"pba":21563,"##eem":21564,"##made":21565,"celebrates":21566,"schooner":21567,"agitated":21568,"barley":21569,"fulfilling":21570,"anthropologist":21571,"##pro":21572,"restrict":21573,"novi":21574,"regulating":21575,"##nent":21576,"padres":21577,"##rani":21578,"##hesive":21579,"loyola":21580,"tabitha":21581,"milky":21582,"olson":21583,"proprietor":21584,"crambidae":21585,"guarantees":21586,"intercollegiate":21587,"ljubljana":21588,"hilda":21589,"##sko":21590,"ignorant":21591,"hooded":21592,"##lts":21593,"sardinia":21594,"##lidae":21595,"##vation":21596,"frontman":21597,"privileged":21598,"witchcraft":21599,"##gp":21600,"jammed":21601,"laude":21602,"poking":21603,"##than":21604,"bracket":21605,"amazement":21606,"yunnan":21607,"##erus":21608,"maharaja":21609,"linnaeus":21610,"commissioning":21612,"milano":21613,"peacefully":21614,"##logies":21615,"akira":21616,"rani":21617,"regulator":21618,"##36":21619,"grasses":21620,"##rance":21621,"luzon":21622,"crows":21623,"compiler":21624,"gretchen":21625,"seaman":21626,"edouard":21627,"tab":21628,"buccaneers":21629,"ellington":21630,"hamlets":21631,"whig":21632,"socialists":21633,"##anto":21634,"directorial":21635,"easton":21636,"mythological":21637,"##kr":21638,"##vary":21639,"rhineland":21640,"semantic":21641,"taut":21642,"dune":21643,"inventions":21644,"succeeds":21645,"##iter":21646,"replication":21647,"branched":21648,"##pired":21649,"jul":21650,"prosecuted":21651,"kangaroo":21652,"penetrated":21653,"##avian":21654,"middlesbrough":21655,"doses":21656,"bleak":21657,"madam":21658,"predatory":21659,"relentless":21660,"##vili":21661,"reluctance":21662,"##vir":21663,"hailey":21664,"crore":21665,"silvery":21666,"monstrous":21668,"swimmers":21669,"transmissions":21670,"hawthorn":21671,"informing":21672,"##eral":21673,"toilets":21674,"caracas":21675,"crouch":21676,"kb":21677,"##sett":21678,"cartel":21680,"hadley":21681,"##aling":21682,"alexia":21683,"yvonne":21684,"##biology":21685,"cinderella":21686,"eton":21687,"superb":21688,"blizzard":21689,"stabbing":21690,"industrialist":21691,"maximus":21692,"##gm":21693,"##orus":21694,"groves":21695,"maud":21696,"clade":21697,"oversized":21698,"comedic":21699,"##bella":21700,"rosen":21701,"nomadic":21702,"fulham":21703,"montane":21704,"beverages":21705,"galaxies":21706,"redundant":21707,"swarm":21708,"##rot":21709,"##folia":21710,"##llis":21711,"buckinghamshire":21712,"fen":21713,"bearings":21714,"bahadur":21715,"##rom":21716,"gilles":21717,"phased":21718,"dynamite":21719,"faber":21720,"benoit":21721,"vip":21722,"##ount":21723,"##wd":21724,"booking":21725,"fractured":21726,"tailored":21727,"anya":21728,"spices":21729,"westwood":21730,"cairns":21731,"auditions":21732,"inflammation":21733,"steamed":21734,"##rocity":21735,"##acion":21736,"##urne":21737,"skyla":21738,"thereof":21739,"watford":21740,"torment":21741,"archdeacon":21742,"transforms":21743,"lulu":21744,"demeanor":21745,"fucked":21746,"serge":21747,"##sor":21748,"mckenna":21749,"minas":21750,"entertainer":21751,"##icide":21752,"caress":21753,"originate":21754,"residue":21755,"##sty":21756,"##ilised":21758,"##org":21759,"beech":21760,"##wana":21761,"subsidies":21762,"##ghton":21763,"emptied":21764,"gladstone":21765,"ru":21766,"firefighters":21767,"voodoo":21768,"##rcle":21769,"het":21770,"nightingale":21771,"tamara":21772,"edmond":21773,"ingredient":21774,"weaknesses":21775,"silhouette":21776,"compatibility":21778,"withdrawing":21779,"hampson":21780,"##mona":21781,"anguish":21782,"giggling":21783,"##mber":21784,"bookstore":21785,"##jiang":21786,"southernmost":21787,"tilting":21788,"##vance":21789,"bai":21790,"economical":21791,"rf":21792,"briefcase":21793,"dreadful":21794,"hinted":21795,"projections":21796,"shattering":21797,"totaling":21798,"##rogate":21799,"analogue":21800,"indicted":21801,"periodical":21802,"fullback":21803,"##dman":21804,"haynes":21805,"##tenberg":21806,"##ffs":21807,"##ishment":21808,"thirst":21810,"stumble":21811,"penang":21812,"vigorous":21813,"##ddling":21814,"##kor":21815,"##lium":21816,"octave":21817,"##ove":21818,"##enstein":21819,"##inen":21820,"##ones":21821,"siberian":21822,"##uti":21823,"cbn":21824,"repeal":21825,"swaying":21826,"##vington":21827,"khalid":21828,"tanaka":21829,"unicorn":21830,"otago":21831,"plastered":21832,"lobe":21833,"riddle":21834,"##rella":21835,"perch":21836,"##ishing":21837,"croydon":21838,"filtered":21839,"graeme":21840,"tripoli":21841,"##ossa":21842,"crocodile":21843,"##chers":21844,"sufi":21845,"mined":21846,"##tung":21847,"inferno":21848,"lsu":21849,"##phi":21850,"swelled":21851,"utilizes":21852,"£2":21853,"cale":21854,"periodicals":21855,"styx":21856,"hike":21857,"informally":21858,"coop":21859,"lund":21860,"##tidae":21861,"ala":21862,"hen":21863,"qui":21864,"transformations":21865,"disposed":21866,"sheath":21867,"chickens":21868,"##cade":21869,"fitzroy":21870,"sas":21871,"silesia":21872,"unacceptable":21873,"odisha":21874,"sabrina":21876,"pe":21877,"spokane":21878,"ratios":21879,"athena":21880,"massage":21881,"shen":21882,"dilemma":21883,"##drum":21884,"##riz":21885,"##hul":21886,"corona":21887,"doubtful":21888,"niall":21889,"##pha":21890,"##bino":21891,"fines":21892,"cite":21893,"acknowledging":21894,"bangor":21895,"ballard":21896,"bathurst":21897,"##resh":21898,"huron":21899,"mustered":21900,"alzheimer":21901,"garments":21902,"kinase":21903,"tyre":21904,"warship":21905,"##cp":21906,"flashback":21907,"pulmonary":21908,"braun":21909,"cheat":21910,"kamal":21911,"cyclists":21912,"constructions":21913,"grenades":21914,"ndp":21915,"traveller":21916,"excuses":21917,"stomped":21918,"signalling":21919,"trimmed":21920,"futsal":21921,"mosques":21922,"relevance":21923,"##wine":21924,"wta":21925,"##23":21926,"##vah":21927,"##lter":21928,"hoc":21929,"##riding":21930,"optimistic":21931,"##´s":21932,"deco":21933,"sim":21934,"interacting":21935,"rejecting":21936,"moniker":21937,"waterways":21938,"##ieri":21939,"##oku":21940,"mayors":21941,"gdansk":21942,"outnumbered":21943,"pearls":21944,"##ended":21945,"##hampton":21946,"fairs":21947,"totals":21948,"dominating":21949,"notions":21951,"stairway":21952,"compiling":21953,"pursed":21954,"commodities":21955,"grease":21956,"yeast":21957,"##jong":21958,"carthage":21959,"griffiths":21960,"residual":21961,"amc":21962,"contraction":21963,"laird":21964,"sapphire":21965,"##marine":21966,"##ivated":21967,"amalgamation":21968,"dissolve":21969,"inclination":21970,"lyle":21971,"packaged":21972,"altitudes":21973,"suez":21974,"canons":21975,"graded":21976,"lurched":21977,"narrowing":21978,"boasts":21979,"guise":21980,"wed":21981,"enrico":21982,"##ovsky":21983,"rower":21984,"scarred":21985,"bree":21986,"cub":21987,"iberian":21988,"protagonists":21989,"bargaining":21990,"proposing":21991,"trainers":21992,"voyages":21993,"vans":21994,"fishes":21995,"##aea":21996,"##ivist":21997,"##verance":21998,"encryption":21999,"artworks":22000,"kazan":22001,"sabre":22002,"cleopatra":22003,"hepburn":22004,"rotting":22005,"supremacy":22006,"mecklenburg":22007,"##brate":22008,"burrows":22009,"hazards":22010,"outgoing":22011,"flair":22012,"organizes":22013,"##ctions":22014,"scorpion":22015,"##usions":22016,"boo":22017,"chevalier":22019,"dunedin":22020,"slapping":22021,"##34":22022,"ineligible":22023,"pensions":22024,"##38":22025,"##omic":22026,"manufactures":22027,"emails":22028,"bismarck":22029,"weakening":22031,"blackish":22032,"ding":22033,"mcgee":22034,"quo":22035,"##rling":22036,"northernmost":22037,"xx":22038,"manpower":22039,"greed":22040,"sampson":22041,"clicking":22042,"##ange":22043,"##horpe":22044,"##inations":22045,"##roving":22046,"torre":22047,"##eptive":22048,"##moral":22049,"symbolism":22050,"38th":22051,"asshole":22052,"meritorious":22053,"outfits":22054,"splashed":22055,"biographies":22056,"sprung":22057,"astros":22058,"##tale":22059,"filly":22062,"raoul":22063,"nw":22064,"tokugawa":22065,"linden":22066,"clubhouse":22067,"##apa":22068,"tracts":22069,"romano":22070,"##pio":22071,"putin":22072,"tags":22073,"##note":22074,"chained":22075,"dickson":22076,"gunshot":22077,"moe":22078,"gunn":22079,"rashid":22080,"##tails":22081,"zipper":22082,"##bas":22083,"##nea":22084,"contrasted":22085,"##ply":22086,"##udes":22087,"plum":22088,"pharaoh":22089,"##pile":22090,"aw":22091,"comedies":22092,"ingrid":22093,"sandwiches":22094,"subdivisions":22095,"mariana":22097,"nokia":22098,"kamen":22099,"hz":22100,"delaney":22101,"veto":22102,"herring":22103,"##words":22104,"possessive":22105,"outlines":22106,"##roup":22107,"siemens":22108,"stairwell":22109,"rc":22110,"gallantry":22111,"messiah":22112,"palais":22113,"yells":22114,"zeppelin":22116,"##dm":22117,"bolivar":22118,"##cede":22119,"smackdown":22120,"mckinley":22121,"##mora":22122,"##yt":22123,"muted":22124,"geologic":22125,"finely":22126,"unitary":22127,"avatar":22128,"hamas":22129,"maynard":22130,"rees":22131,"bog":22132,"contrasting":22133,"##rut":22134,"liv":22135,"chico":22136,"disposition":22137,"pixel":22138,"##erate":22139,"becca":22140,"dmitry":22141,"yeshiva":22142,"narratives":22143,"##lva":22144,"##ulton":22145,"mercenary":22146,"sharpe":22147,"tempered":22148,"navigate":22149,"stealth":22150,"amassed":22151,"keynes":22152,"##lini":22153,"untouched":22154,"##rrie":22155,"havoc":22156,"lithium":22157,"##fighting":22158,"abyss":22159,"graf":22160,"southward":22161,"wolverine":22162,"balloons":22163,"implements":22164,"ngos":22165,"transitions":22166,"##icum":22167,"ambushed":22168,"concacaf":22169,"dormant":22170,"economists":22171,"##dim":22172,"costing":22173,"csi":22174,"rana":22175,"universite":22176,"boulders":22177,"verity":22178,"##llon":22179,"collin":22180,"mellon":22181,"misses":22182,"cypress":22183,"fluorescent":22184,"lifeless":22185,"spence":22186,"##ulla":22187,"crewe":22188,"shepard":22189,"pak":22190,"revelations":22191,"##م":22192,"jolly":22193,"gibbons":22194,"paw":22195,"##dro":22196,"##quel":22197,"freeing":22198,"##test":22199,"shack":22200,"fries":22201,"palatine":22202,"##51":22203,"##hiko":22204,"accompaniment":22205,"cruising":22206,"recycled":22207,"##aver":22208,"erwin":22209,"sorting":22210,"synthesizers":22211,"dyke":22212,"realities":22213,"sg":22214,"strides":22215,"enslaved":22216,"wetland":22217,"##ghan":22218,"competence":22219,"gunpowder":22220,"grassy":22221,"maroon":22222,"reactors":22223,"objection":22224,"##oms":22225,"carlson":22226,"gearbox":22227,"macintosh":22228,"radios":22229,"shelton":22230,"##sho":22231,"clergyman":22232,"prakash":22233,"mongols":22235,"trophies":22236,"oricon":22237,"stimuli":22239,"twenty20":22240,"cantonese":22241,"cortes":22242,"mirrored":22243,"##saurus":22244,"bhp":22245,"cristina":22246,"melancholy":22247,"##lating":22248,"enjoyable":22249,"nuevo":22250,"##wny":22251,"downfall":22252,"schumacher":22253,"##ind":22254,"banging":22255,"lausanne":22256,"rumbled":22257,"paramilitary":22258,"reflex":22259,"ax":22260,"amplitude":22261,"migratory":22262,"##gall":22263,"##ups":22264,"midi":22265,"barnard":22266,"lastly":22267,"sherry":22268,"##hp":22269,"##nall":22270,"keystone":22271,"##kra":22272,"carleton":22273,"slippery":22274,"##53":22275,"coloring":22276,"foe":22277,"socket":22278,"otter":22279,"##rgos":22280,"mats":22281,"##tose":22282,"consultants":22283,"bafta":22284,"bison":22285,"topping":22286,"##km":22287,"primal":22289,"abandonment":22290,"transplant":22291,"atoll":22292,"hideous":22293,"mort":22294,"pained":22295,"reproduced":22296,"tae":22297,"howling":22298,"##turn":22299,"unlawful":22300,"billionaire":22301,"hotter":22302,"poised":22303,"lansing":22304,"##chang":22305,"dinamo":22306,"retro":22307,"messing":22308,"nfc":22309,"domesday":22310,"##mina":22311,"blitz":22312,"timed":22313,"##athing":22314,"##kley":22315,"ascending":22316,"gesturing":22317,"##izations":22318,"signaled":22319,"tis":22320,"chinatown":22321,"mermaid":22322,"savanna":22323,"jameson":22324,"##aint":22325,"catalina":22326,"##pet":22327,"##hers":22328,"cochrane":22329,"cy":22330,"chatting":22331,"##kus":22332,"alerted":22333,"computation":22334,"mused":22335,"noelle":22336,"majestic":22337,"mohawk":22338,"campo":22339,"octagonal":22340,"##sant":22341,"##hend":22342,"aspiring":22344,"##mart":22345,"comprehend":22346,"iona":22347,"paralyzed":22348,"shimmering":22349,"swindon":22350,"rhone":22351,"##eley":22352,"reputed":22353,"configurations":22354,"pitchfork":22355,"agitation":22356,"francais":22357,"gillian":22358,"lipstick":22359,"##ilo":22360,"outsiders":22361,"pontifical":22362,"resisting":22363,"bitterness":22364,"sewer":22365,"rockies":22366,"##edd":22367,"##ucher":22368,"misleading":22369,"exiting":22371,"galloway":22372,"##nging":22373,"risked":22374,"##heart":22375,"commemoration":22377,"schultz":22378,"##rka":22379,"integrating":22380,"##rsa":22381,"poses":22382,"shrieked":22383,"##weiler":22384,"guineas":22385,"gladys":22386,"jerking":22387,"owls":22388,"goldsmith":22389,"nightly":22390,"penetrating":22391,"##unced":22392,"lia":22393,"##33":22394,"ignited":22395,"betsy":22396,"##aring":22397,"##thorpe":22398,"follower":22399,"vigorously":22400,"##rave":22401,"coded":22402,"kiran":22403,"knit":22404,"zoology":22405,"tbilisi":22406,"##28":22407,"##bered":22408,"repository":22409,"govt":22410,"deciduous":22411,"dino":22412,"growling":22413,"##bba":22414,"enhancement":22415,"unleashed":22416,"chanting":22417,"pussy":22418,"biochemistry":22419,"##eric":22420,"kettle":22421,"repression":22422,"toxicity":22423,"nrhp":22424,"##arth":22425,"##kko":22426,"##bush":22427,"ernesto":22428,"commended":22429,"outspoken":22430,"mca":22432,"parchment":22433,"sms":22434,"kristen":22435,"##aton":22436,"bisexual":22437,"raked":22438,"glamour":22439,"navajo":22440,"a2":22441,"conditioned":22442,"showcased":22443,"##hma":22444,"spacious":22445,"youthful":22446,"##esa":22447,"usl":22448,"appliances":22449,"junta":22450,"brest":22451,"layne":22452,"conglomerate":22453,"enchanted":22454,"chao":22455,"loosened":22456,"picasso":22457,"circulating":22458,"inspect":22459,"montevideo":22460,"##centric":22461,"##kti":22462,"piazza":22463,"spurred":22464,"##aith":22465,"bari":22466,"freedoms":22467,"poultry":22468,"stamford":22469,"lieu":22470,"##ect":22471,"indigo":22472,"sarcastic":22473,"bahia":22474,"stump":22475,"attach":22476,"dvds":22477,"frankenstein":22478,"lille":22479,"approx":22480,"scriptures":22481,"pollen":22482,"##script":22483,"nmi":22484,"overseen":22485,"##ivism":22486,"tides":22487,"proponent":22488,"newmarket":22489,"inherit":22490,"milling":22491,"##erland":22492,"centralized":22493,"##rou":22494,"distributors":22495,"credentials":22496,"drawers":22497,"abbreviation":22498,"##lco":22499,"##xon":22500,"downing":22501,"uncomfortably":22502,"ripe":22503,"##oes":22504,"erase":22505,"franchises":22506,"##ever":22507,"populace":22508,"##bery":22509,"##khar":22510,"decomposition":22511,"pleas":22512,"##tet":22513,"daryl":22514,"sabah":22515,"##stle":22516,"##wide":22517,"fearless":22518,"genie":22519,"lesions":22520,"annette":22521,"##ogist":22522,"oboe":22523,"appendix":22524,"nair":22525,"dripped":22526,"petitioned":22527,"maclean":22528,"mosquito":22529,"parrot":22530,"rpg":22531,"hampered":22532,"operatic":22534,"reservoirs":22535,"##tham":22536,"irrelevant":22537,"jolt":22538,"summarized":22539,"##fp":22540,"medallion":22541,"##taff":22542,"##−":22543,"clawed":22544,"harlow":22545,"narrower":22546,"goddard":22547,"marcia":22548,"bodied":22549,"fremont":22550,"suarez":22551,"altering":22552,"tempest":22553,"mussolini":22554,"porn":22555,"##isms":22556,"sweetly":22557,"oversees":22558,"walkers":22559,"solitude":22560,"grimly":22561,"shrines":22562,"hk":22563,"ich":22564,"supervisors":22565,"hostess":22566,"dietrich":22567,"legitimacy":22568,"brushes":22569,"expressive":22570,"##yp":22571,"dissipated":22572,"##rse":22573,"localized":22574,"systemic":22575,"##nikov":22576,"gettysburg":22577,"##js":22578,"##uaries":22579,"dialogues":22580,"muttering":22581,"housekeeper":22583,"sicilian":22584,"discouraged":22585,"##frey":22586,"beamed":22587,"kaladin":22588,"halftime":22589,"kidnap":22590,"##amo":22591,"##llet":22592,"synonymous":22594,"depleted":22595,"instituto":22596,"insulin":22597,"reprised":22598,"##opsis":22599,"clashed":22600,"##ctric":22601,"interrupting":22602,"radcliffe":22603,"insisting":22604,"medici":22605,"ejected":22607,"playfully":22608,"turbulent":22609,"##47":22610,"starvation":22611,"##rini":22612,"shipment":22613,"rebellious":22614,"petersen":22615,"verification":22616,"merits":22617,"##rified":22618,"cakes":22619,"##charged":22620,"milford":22622,"shortages":22623,"spying":22624,"fidelity":22625,"##aker":22626,"emitted":22627,"storylines":22628,"harvested":22629,"seismic":22630,"##iform":22631,"cheung":22632,"kilda":22633,"theoretically":22634,"barbie":22635,"lynx":22636,"##rgy":22637,"##tius":22638,"goblin":22639,"mata":22640,"poisonous":22641,"##nburg":22642,"reactive":22643,"residues":22644,"obedience":22645,"##евич":22646,"conjecture":22647,"##rac":22648,"hating":22650,"sixties":22651,"kicker":22652,"moaning":22653,"motown":22654,"##bha":22655,"emancipation":22656,"neoclassical":22657,"##hering":22658,"consoles":22659,"ebert":22660,"professorship":22661,"##tures":22662,"sustaining":22663,"assaults":22664,"obeyed":22665,"affluent":22666,"incurred":22667,"tornadoes":22668,"##eber":22669,"##zow":22670,"emphasizing":22671,"highlanders":22672,"cheated":22673,"helmets":22674,"##ctus":22675,"internship":22676,"terence":22677,"bony":22678,"executions":22679,"legislators":22680,"berries":22681,"peninsular":22682,"tinged":22683,"##aco":22684,"amplifier":22686,"corvette":22687,"ribbons":22688,"lavish":22689,"pennant":22690,"##lander":22691,"worthless":22692,"##chfield":22693,"##forms":22694,"mariano":22695,"pyrenees":22696,"expenditures":22697,"##icides":22698,"chesterfield":22699,"mandir":22700,"tailor":22701,"39th":22702,"sergey":22703,"nestled":22704,"willed":22705,"aristocracy":22706,"devotees":22707,"goodnight":22708,"raaf":22709,"rumored":22710,"weaponry":22711,"remy":22712,"appropriations":22713,"harcourt":22714,"burr":22715,"riaa":22716,"##lence":22717,"limitation":22718,"unnoticed":22719,"guo":22720,"soaking":22721,"swamps":22722,"##tica":22723,"collapsing":22724,"tatiana":22725,"descriptive":22726,"brigham":22727,"psalm":22728,"##chment":22729,"maddox":22730,"##lization":22731,"patti":22732,"caliph":22733,"##aja":22734,"akron":22735,"injuring":22736,"serra":22737,"##ganj":22738,"basins":22739,"##sari":22740,"astonished":22741,"launcher":22742,"##church":22743,"hilary":22744,"wilkins":22745,"sewing":22746,"##sf":22747,"stinging":22748,"##fia":22749,"##ncia":22750,"underwood":22751,"startup":22752,"##ition":22753,"compilations":22754,"vibrations":22755,"embankment":22756,"jurist":22757,"##nity":22758,"bard":22759,"juventus":22760,"groundwater":22761,"kern":22762,"palaces":22763,"helium":22764,"boca":22765,"cramped":22766,"marissa":22767,"soto":22768,"##worm":22769,"jae":22770,"princely":22771,"##ggy":22772,"faso":22773,"bazaar":22774,"warmly":22775,"##voking":22776,"pairing":22778,"##lite":22779,"##grate":22780,"##nets":22781,"wien":22782,"freaked":22783,"ulysses":22784,"rebirth":22785,"##alia":22786,"##rent":22787,"mummy":22788,"guzman":22789,"jimenez":22790,"stilled":22791,"##nitz":22792,"trajectory":22793,"tha":22794,"woken":22795,"archival":22796,"professions":22797,"##pts":22798,"##pta":22799,"hilly":22800,"shadowy":22801,"shrink":22802,"##bolt":22803,"norwood":22804,"glued":22805,"migrate":22806,"stereotypes":22807,"devoid":22808,"##pheus":22809,"evacuate":22811,"horrors":22812,"infancy":22813,"gotham":22814,"knowles":22815,"optic":22816,"downloaded":22817,"sachs":22818,"kingsley":22819,"parramatta":22820,"darryl":22821,"mor":22822,"##onale":22823,"shady":22824,"commence":22825,"confesses":22826,"kan":22827,"##meter":22828,"##placed":22829,"marlborough":22830,"roundabout":22831,"regents":22832,"frigates":22833,"io":22834,"##imating":22835,"gothenburg":22836,"revoked":22837,"carvings":22838,"clockwise":22839,"convertible":22840,"intruder":22841,"##sche":22842,"banged":22843,"##ogo":22844,"vicky":22845,"bourgeois":22846,"##mony":22847,"dupont":22848,"footing":22849,"##gum":22850,"pd":22851,"##real":22852,"buckle":22853,"yun":22854,"penthouse":22855,"sane":22856,"serviced":22858,"stakeholders":22859,"neumann":22860,"bb":22861,"##eers":22862,"comb":22863,"##gam":22864,"catchment":22865,"pinning":22866,"rallies":22867,"typing":22868,"##elles":22869,"forefront":22870,"freiburg":22871,"sweetie":22872,"giacomo":22873,"widowed":22874,"goodwill":22875,"worshipped":22876,"aspirations":22877,"midday":22878,"##vat":22879,"fishery":22880,"##trick":22881,"bournemouth":22882,"turk":22883,"hearth":22885,"ethanol":22886,"guadalajara":22887,"murmurs":22888,"sl":22889,"##uge":22890,"afforded":22891,"scripted":22892,"##hta":22893,"wah":22894,"##jn":22895,"coroner":22896,"translucent":22897,"memorials":22899,"puck":22900,"progresses":22901,"clumsy":22902,"##race":22903,"candace":22905,"recounted":22906,"##27":22907,"##slin":22908,"##uve":22909,"filtering":22910,"##mac":22911,"howl":22912,"strata":22913,"heron":22914,"leveled":22915,"##ays":22916,"dubious":22917,"##oja":22918,"##т":22919,"##wheel":22920,"citations":22921,"exhibiting":22922,"##laya":22923,"##mics":22924,"##pods":22925,"turkic":22926,"##lberg":22927,"injunction":22928,"##ennial":22929,"##mit":22930,"antibodies":22931,"##44":22932,"organise":22933,"##rigues":22934,"cardiovascular":22935,"cushion":22936,"inverness":22937,"##zquez":22938,"dia":22939,"cocoa":22940,"sibling":22941,"##tman":22942,"##roid":22943,"expanse":22944,"feasible":22945,"tunisian":22946,"algiers":22947,"##relli":22948,"rus":22949,"bloomberg":22950,"dso":22951,"westphalia":22952,"bro":22953,"tacoma":22954,"downloads":22956,"##ours":22957,"konrad":22958,"duran":22959,"##hdi":22960,"continuum":22961,"jett":22962,"compares":22963,"legislator":22964,"secession":22965,"##nable":22966,"##gues":22967,"##zuka":22968,"translating":22969,"reacher":22970,"##gley":22971,"##ła":22972,"aleppo":22973,"##agi":22974,"tc":22975,"orchards":22976,"trapping":22977,"linguist":22978,"versatile":22979,"drumming":22980,"postage":22981,"calhoun":22982,"superiors":22983,"##mx":22984,"barefoot":22985,"leary":22986,"##cis":22987,"ignacio":22988,"alfa":22989,"kaplan":22990,"##rogen":22991,"bratislava":22992,"mori":22993,"##vot":22994,"disturb":22995,"haas":22996,"cartridges":22998,"gilmore":22999,"radiated":23000,"salford":23001,"tunic":23002,"hades":23003,"##ulsive":23004,"archeological":23005,"delilah":23006,"magistrates":23007,"auditioned":23008,"brewster":23009,"charters":23010,"empowerment":23011,"blogs":23012,"cappella":23013,"dynasties":23014,"iroquois":23015,"whipping":23016,"##krishna":23017,"raceway":23018,"truths":23019,"myra":23020,"weaken":23021,"judah":23022,"mcgregor":23023,"##horse":23024,"mic":23025,"refueling":23026,"37th":23027,"burnley":23028,"bosses":23029,"markus":23030,"premio":23031,"query":23032,"##gga":23033,"dunbar":23034,"##economic":23035,"darkest":23036,"lyndon":23037,"sealing":23038,"commendation":23039,"reappeared":23040,"##mun":23041,"addicted":23042,"ezio":23043,"slaughtered":23044,"satisfactory":23045,"shuffle":23046,"##eves":23047,"##thic":23048,"##uj":23049,"fortification":23050,"warrington":23051,"##otto":23052,"resurrected":23053,"fargo":23054,"mane":23055,"##utable":23056,"##lei":23057,"##space":23058,"foreword":23059,"ox":23060,"##aris":23061,"##vern":23062,"abrams":23063,"hua":23064,"##mento":23065,"sakura":23066,"##alo":23067,"uv":23068,"sentimental":23069,"##skaya":23070,"midfield":23071,"##eses":23072,"sturdy":23073,"scrolls":23074,"macleod":23075,"##kyu":23076,"entropy":23077,"##lance":23078,"mitochondrial":23079,"cicero":23080,"excelled":23081,"thinner":23082,"convoys":23083,"perceive":23084,"##oslav":23085,"##urable":23086,"systematically":23087,"grind":23088,"burkina":23089,"##tagram":23091,"ops":23092,"##aman":23093,"guantanamo":23094,"##cloth":23095,"##tite":23096,"forcefully":23097,"wavy":23098,"##jou":23099,"pointless":23100,"##linger":23101,"##tze":23102,"layton":23103,"portico":23104,"superficial":23105,"clerical":23106,"outlaws":23107,"##hism":23108,"burials":23109,"muir":23110,"##inn":23111,"creditors":23112,"hauling":23113,"rattle":23114,"##leg":23115,"calais":23116,"monde":23117,"archers":23118,"reclaimed":23119,"dwell":23120,"wexford":23121,"hellenic":23122,"falsely":23123,"remorse":23124,"##tek":23125,"dough":23126,"furnishings":23127,"##uttered":23128,"gabon":23129,"neurological":23130,"novice":23131,"##igraphy":23132,"contemplated":23133,"pulpit":23134,"nightstand":23135,"saratoga":23136,"##istan":23137,"documenting":23138,"pulsing":23139,"taluk":23140,"##firmed":23141,"busted":23142,"marital":23143,"##rien":23144,"disagreements":23145,"wasps":23146,"##yes":23147,"hodge":23148,"mcdonnell":23149,"mimic":23150,"fran":23151,"pendant":23152,"dhabi":23153,"musa":23154,"##nington":23155,"congratulations":23156,"argent":23157,"darrell":23158,"concussion":23159,"losers":23160,"regrets":23161,"thessaloniki":23162,"reversal":23163,"donaldson":23164,"hardwood":23165,"thence":23166,"achilles":23167,"ritter":23168,"##eran":23169,"demonic":23170,"jurgen":23171,"prophets":23172,"goethe":23173,"eki":23174,"classmate":23175,"buff":23176,"##cking":23177,"yank":23178,"irrational":23179,"##inging":23180,"perished":23181,"seductive":23182,"qur":23183,"sourced":23184,"##crat":23185,"##typic":23186,"mustard":23187,"ravine":23188,"barre":23189,"horizontally":23190,"characterization":23191,"phylogenetic":23192,"boise":23193,"##dit":23194,"##runner":23195,"##tower":23196,"brutally":23197,"intercourse":23198,"seduce":23199,"##bbing":23200,"fay":23201,"ferris":23202,"ogden":23203,"amar":23204,"nik":23205,"unarmed":23206,"##inator":23207,"evaluating":23208,"kyrgyzstan":23209,"sweetness":23210,"##lford":23211,"##oki":23212,"mccormick":23213,"meiji":23214,"notoriety":23215,"stimulate":23216,"disrupt":23217,"figuring":23218,"instructional":23219,"mcgrath":23220,"##zoo":23221,"groundbreaking":23222,"##lto":23223,"flinch":23224,"khorasan":23225,"agrarian":23226,"bengals":23227,"mixer":23228,"radiating":23229,"##sov":23230,"ingram":23231,"pitchers":23232,"nad":23233,"tariff":23234,"##cript":23235,"tata":23236,"##codes":23237,"##emi":23238,"##ungen":23239,"appellate":23240,"lehigh":23241,"##bled":23242,"##giri":23243,"brawl":23244,"duct":23245,"texans":23246,"##ciation":23247,"##ropolis":23248,"skipper":23249,"speculative":23250,"vomit":23251,"doctrines":23252,"stresses":23253,"davy":23255,"graders":23256,"whitehead":23257,"jozef":23258,"timely":23259,"cumulative":23260,"haryana":23261,"paints":23262,"appropriately":23263,"boon":23264,"cactus":23265,"##ales":23266,"##pid":23267,"dow":23268,"legions":23269,"##pit":23270,"perceptions":23271,"picturesque":23273,"##yse":23274,"periphery":23275,"rune":23276,"wr":23277,"##aha":23278,"celtics":23279,"sentencing":23280,"whoa":23281,"##erin":23282,"confirms":23283,"variance":23284,"moines":23286,"mathews":23287,"spade":23288,"rave":23289,"m1":23290,"fronted":23291,"fx":23292,"blending":23293,"alleging":23294,"reared":23295,"##gl":23296,"##paper":23298,"grassroots":23299,"eroded":23300,"##free":23301,"##physical":23302,"directs":23303,"ordeal":23304,"##sław":23305,"accelerate":23306,"hacker":23307,"rooftop":23308,"##inia":23309,"lev":23310,"buys":23311,"cebu":23312,"devote":23313,"##lce":23314,"specialising":23315,"##ulsion":23316,"choreographed":23317,"repetition":23318,"warehouses":23319,"##ryl":23320,"paisley":23321,"tuscany":23322,"analogy":23323,"sorcerer":23324,"hash":23325,"huts":23326,"shards":23327,"descends":23328,"exclude":23329,"nix":23330,"chaplin":23331,"gaga":23332,"ito":23333,"vane":23334,"##drich":23335,"causeway":23336,"misconduct":23337,"limo":23338,"orchestrated":23339,"glands":23340,"jana":23341,"##kot":23342,"u2":23343,"##mple":23344,"##sons":23345,"branching":23346,"contrasts":23347,"scoop":23348,"longed":23349,"##virus":23350,"chattanooga":23351,"##75":23352,"syrup":23353,"cornerstone":23354,"##tized":23355,"##mind":23356,"##iaceae":23357,"careless":23358,"precedence":23359,"frescoes":23360,"##uet":23361,"chilled":23362,"consult":23363,"modelled":23364,"snatch":23365,"peat":23366,"##thermal":23367,"caucasian":23368,"humane":23369,"relaxation":23370,"spins":23371,"temperance":23372,"##lbert":23373,"occupations":23374,"lambda":23375,"hybrids":23376,"moons":23377,"mp3":23378,"##oese":23379,"rolf":23381,"societal":23382,"yerevan":23383,"ness":23384,"##ssler":23385,"befriended":23386,"mechanized":23387,"nominate":23388,"trough":23389,"boasted":23390,"cues":23391,"seater":23392,"##hom":23393,"bends":23394,"##tangle":23395,"conductors":23396,"emptiness":23397,"##lmer":23398,"eurasian":23399,"adriatic":23400,"tian":23401,"##cie":23402,"anxiously":23403,"lark":23404,"propellers":23405,"chichester":23406,"jock":23407,"ev":23408,"2a":23409,"##holding":23410,"credible":23411,"recounts":23412,"tori":23413,"loyalist":23414,"abduction":23415,"##hoot":23416,"##redo":23417,"nepali":23418,"##mite":23419,"ventral":23420,"tempting":23421,"##ango":23422,"##crats":23423,"steered":23424,"##wice":23425,"javelin":23426,"dipping":23427,"laborers":23428,"prentice":23429,"looming":23430,"titanium":23431,"##ː":23432,"badges":23433,"emir":23434,"tensor":23435,"##ntation":23436,"egyptians":23437,"rash":23438,"denies":23439,"hawthorne":23440,"lombard":23441,"showers":23442,"wehrmacht":23443,"dietary":23444,"trojan":23445,"##reus":23446,"welles":23447,"executing":23448,"horseshoe":23449,"lifeboat":23450,"##lak":23451,"elsa":23452,"infirmary":23453,"nearing":23454,"roberta":23455,"boyer":23456,"mutter":23457,"trillion":23458,"joanne":23459,"##fine":23460,"##oked":23461,"sinks":23462,"vortex":23463,"uruguayan":23464,"clasp":23465,"sirius":23466,"##block":23467,"accelerator":23468,"prohibit":23469,"sunken":23470,"byu":23471,"chronological":23472,"diplomats":23473,"ochreous":23474,"symmetrical":23476,"maia":23478,"##tology":23479,"salts":23480,"reigns":23481,"atrocities":23482,"##ия":23483,"hess":23484,"bared":23485,"issn":23486,"##vyn":23487,"cater":23488,"saturated":23489,"##cycle":23490,"##isse":23491,"sable":23492,"voyager":23493,"dyer":23494,"yusuf":23495,"##inge":23496,"fountains":23497,"wolff":23498,"##39":23499,"##nni":23500,"engraving":23501,"rollins":23502,"atheist":23503,"ominous":23504,"##ault":23505,"herr":23506,"chariot":23507,"martina":23508,"strung":23509,"##fell":23510,"##farlane":23511,"horrific":23512,"sahib":23513,"gazes":23514,"saetan":23515,"erased":23516,"ptolemy":23517,"##olic":23518,"flushing":23519,"lauderdale":23520,"analytic":23521,"##ices":23522,"navarro":23524,"beak":23525,"gorilla":23526,"herrera":23527,"broom":23528,"guadalupe":23529,"raiding":23530,"sykes":23531,"bsc":23533,"deliveries":23534,"invasions":23536,"carmichael":23537,"tajikistan":23538,"thematic":23539,"ecumenical":23540,"sentiments":23541,"onstage":23542,"##rians":23543,"##brand":23544,"##sume":23545,"catastrophic":23546,"flanks":23547,"molten":23548,"##arns":23549,"waller":23550,"aimee":23551,"terminating":23552,"##icing":23553,"alternately":23554,"##oche":23555,"nehru":23556,"printers":23557,"outraged":23558,"##eving":23559,"empires":23560,"template":23561,"banners":23562,"repetitive":23563,"za":23564,"##oise":23565,"vegetarian":23566,"##tell":23567,"guiana":23568,"opt":23569,"cavendish":23570,"lucknow":23571,"synthesized":23572,"##hani":23573,"##mada":23574,"finalized":23575,"##ctable":23576,"fictitious":23577,"mayoral":23578,"unreliable":23579,"##enham":23580,"embracing":23581,"peppers":23582,"rbis":23583,"##chio":23584,"##neo":23585,"inhibition":23586,"slashed":23587,"togo":23588,"orderly":23589,"embroidered":23590,"safari":23591,"salty":23592,"barron":23594,"benito":23595,"totaled":23596,"##dak":23597,"pubs":23598,"simulated":23599,"caden":23600,"devin":23601,"tolkien":23602,"momma":23603,"welding":23604,"sesame":23605,"##ept":23606,"gottingen":23607,"hardness":23608,"shaman":23610,"temeraire":23611,"adequately":23613,"pediatric":23614,"##kit":23615,"ck":23616,"assertion":23617,"radicals":23618,"composure":23619,"cadence":23620,"seafood":23621,"beaufort":23622,"lazarus":23623,"mani":23624,"warily":23625,"cunning":23626,"kurdistan":23627,"cantata":23629,"##kir":23630,"ares":23631,"##41":23632,"##clusive":23633,"nape":23634,"townland":23635,"geared":23636,"insulted":23637,"flutter":23638,"boating":23639,"violate":23640,"draper":23641,"dumping":23642,"malmo":23643,"##hh":23644,"##romatic":23645,"firearm":23646,"alta":23647,"bono":23648,"obscured":23649,"##clave":23650,"exceeds":23651,"panorama":23652,"unbelievable":23653,"##train":23654,"preschool":23655,"##essed":23656,"disconnected":23657,"installing":23658,"rescuing":23659,"secretaries":23660,"accessibility":23661,"##castle":23662,"##drive":23663,"##ifice":23664,"##film":23665,"bouts":23666,"slug":23667,"waterway":23668,"mindanao":23669,"##buro":23670,"##ratic":23671,"halves":23672,"##ل":23673,"calming":23674,"liter":23675,"maternity":23676,"adorable":23677,"bragg":23678,"electrification":23679,"mcc":23680,"##dote":23681,"roxy":23682,"schizophrenia":23683,"##body":23684,"munoz":23685,"kaye":23686,"whaling":23687,"mil":23689,"tingling":23690,"tolerant":23691,"##ago":23692,"unconventional":23693,"volcanoes":23694,"##finder":23695,"deportivo":23696,"##llie":23697,"robson":23698,"kaufman":23699,"neuroscience":23700,"wai":23701,"deportation":23702,"masovian":23703,"scraping":23704,"converse":23705,"##bh":23706,"hacking":23707,"bulge":23708,"##oun":23709,"administratively":23710,"yao":23711,"amp":23713,"mammoth":23714,"booster":23715,"claremont":23716,"hooper":23717,"nomenclature":23718,"pursuits":23719,"mclaughlin":23720,"melinda":23721,"##sul":23722,"catfish":23723,"barclay":23724,"substrates":23725,"taxa":23726,"zee":23727,"originals":23728,"kimberly":23729,"packets":23730,"padma":23731,"##ality":23732,"borrowing":23733,"ostensibly":23734,"solvent":23735,"##bri":23736,"##genesis":23737,"##mist":23738,"lukas":23739,"shreveport":23740,"veracruz":23741,"##ь":23742,"##lou":23743,"##wives":23744,"cheney":23745,"tt":23746,"anatolia":23747,"hobbs":23748,"##zyn":23749,"cyclic":23750,"radiant":23751,"alistair":23752,"greenish":23753,"siena":23754,"dat":23755,"independents":23756,"##bation":23757,"conform":23758,"pieter":23759,"hyper":23760,"applicant":23761,"bradshaw":23762,"spores":23763,"telangana":23764,"vinci":23765,"inexpensive":23766,"nuclei":23767,"jang":23769,"nme":23770,"soho":23771,"spd":23772,"##ign":23773,"cradled":23774,"receptionist":23775,"pow":23776,"##43":23777,"##rika":23778,"fascism":23779,"##ifer":23780,"experimenting":23781,"##ading":23782,"##iec":23783,"##region":23784,"jocelyn":23786,"maris":23787,"stair":23788,"nocturnal":23789,"toro":23790,"constabulary":23791,"elgin":23792,"##kker":23793,"msc":23794,"##giving":23795,"##schen":23796,"##rase":23797,"doherty":23798,"doping":23799,"sarcastically":23800,"batter":23801,"maneuvers":23802,"##cano":23803,"##apple":23804,"##gai":23805,"##git":23806,"intrinsic":23807,"##nst":23808,"##stor":23809,"showtime":23811,"cafes":23812,"gasps":23813,"lviv":23814,"ushered":23815,"##thed":23816,"fours":23817,"restart":23818,"astonishment":23819,"transmitting":23820,"flyer":23821,"shrugs":23822,"##sau":23823,"intriguing":23824,"cones":23825,"dictated":23826,"mushrooms":23827,"medial":23828,"##kovsky":23829,"##elman":23830,"escorting":23831,"gaped":23832,"##26":23833,"godfather":23834,"##door":23835,"##sell":23836,"djs":23837,"recaptured":23838,"timetable":23839,"vila":23840,"3a":23842,"aerodrome":23843,"mortals":23844,"scientology":23845,"##orne":23846,"angelina":23847,"mag":23848,"convection":23849,"unpaid":23850,"insertion":23851,"intermittent":23852,"lego":23853,"##nated":23854,"endeavor":23855,"kota":23856,"pereira":23857,"##lz":23858,"bwv":23860,"glamorgan":23861,"insults":23862,"agatha":23863,"fey":23864,"##cend":23865,"fleetwood":23866,"mahogany":23867,"protruding":23868,"steamship":23869,"zeta":23870,"##arty":23871,"mcguire":23872,"suspense":23873,"##sphere":23874,"advising":23875,"urges":23876,"##wala":23877,"hurriedly":23878,"meteor":23879,"gilded":23880,"inline":23881,"arroyo":23882,"stalker":23883,"##oge":23884,"excitedly":23885,"revered":23886,"##cure":23887,"earle":23888,"introductory":23889,"##break":23890,"##ilde":23891,"mutants":23892,"puff":23893,"pulses":23894,"reinforcement":23895,"##haling":23896,"curses":23897,"lizards":23898,"stalk":23899,"correlated":23900,"##fixed":23901,"fallout":23902,"macquarie":23903,"##unas":23904,"bearded":23905,"denton":23906,"heaving":23907,"##ocation":23909,"winery":23910,"assign":23911,"dortmund":23912,"##lkirk":23913,"everest":23914,"invariant":23915,"charismatic":23916,"susie":23917,"##elling":23918,"bled":23919,"lesley":23920,"telegram":23921,"sumner":23922,"bk":23923,"##ogen":23924,"##к":23925,"wilcox":23926,"needy":23927,"colbert":23928,"duval":23929,"##iferous":23930,"##mbled":23931,"allotted":23932,"attends":23933,"imperative":23934,"##hita":23935,"replacements":23936,"hawker":23937,"##inda":23938,"insurgency":23939,"##zee":23940,"##eke":23941,"casts":23942,"##yla":23943,"ives":23945,"transitioned":23946,"##pack":23947,"##powering":23948,"authoritative":23949,"baylor":23950,"flex":23951,"cringed":23952,"plaintiffs":23953,"woodrow":23954,"##skie":23955,"drastic":23956,"ape":23957,"aroma":23958,"unfolded":23959,"commotion":23960,"nt":23961,"preoccupied":23962,"theta":23963,"routines":23964,"lasers":23965,"privatization":23966,"wand":23967,"domino":23968,"ek":23969,"clenching":23970,"nsa":23971,"strategically":23972,"showered":23973,"bile":23974,"handkerchief":23975,"pere":23976,"storing":23977,"christophe":23978,"insulting":23979,"nakamura":23981,"romani":23982,"asiatic":23983,"magdalena":23984,"palma":23985,"cruises":23986,"stripping":23987,"konstantin":23989,"soaring":23990,"##berman":23991,"colloquially":23992,"forerunner":23993,"havilland":23994,"incarcerated":23995,"parasites":23996,"sincerity":23997,"##utus":23998,"disks":23999,"plank":24000,"saigon":24001,"##ining":24002,"corbin":24003,"homo":24004,"ornaments":24005,"powerhouse":24006,"##tlement":24007,"chong":24008,"fastened":24009,"feasibility":24010,"idf":24011,"morphological":24012,"usable":24013,"##nish":24014,"##zuki":24015,"aqueduct":24016,"jaguars":24017,"keepers":24018,"##flies":24019,"aleksandr":24020,"faust":24021,"assigns":24022,"ewing":24023,"bacterium":24024,"hurled":24025,"tricky":24026,"hungarians":24027,"integers":24028,"wallis":24029,"yamaha":24031,"##isha":24032,"hushed":24033,"oblivion":24034,"aviator":24035,"evangelist":24036,"friars":24037,"##eller":24038,"monograph":24039,"ode":24040,"##nary":24041,"airplanes":24042,"labourers":24043,"charms":24044,"##nee":24045,"hagen":24047,"tnt":24048,"rudder":24049,"fiesta":24050,"transcript":24051,"dorothea":24052,"ska":24053,"inhibitor":24054,"maccabi":24055,"retorted":24056,"raining":24057,"encompassed":24058,"clauses":24059,"menacing":24060,"lineman":24062,"##gist":24063,"vamps":24064,"##ape":24065,"##dick":24066,"gloom":24067,"##rera":24068,"dealings":24069,"easing":24070,"seekers":24071,"##nut":24072,"##pment":24073,"helens":24074,"unmanned":24075,"##anu":24076,"##isson":24077,"basics":24078,"##amy":24079,"##ckman":24080,"adjustments":24081,"brutality":24083,"horne":24084,"##zell":24085,"sui":24086,"##55":24087,"##mable":24088,"aggregator":24089,"##thal":24090,"rhino":24091,"##drick":24092,"##vira":24093,"counters":24094,"zoom":24095,"##01":24096,"##rting":24097,"mn":24098,"montenegrin":24099,"packard":24100,"##unciation":24101,"##♭":24102,"##kki":24103,"reclaim":24104,"scholastic":24105,"thugs":24106,"pulsed":24107,"##icia":24108,"syriac":24109,"quan":24110,"saddam":24111,"banda":24112,"kobe":24113,"blaming":24114,"buddies":24115,"dissent":24116,"##lusion":24117,"##usia":24118,"corbett":24119,"jaya":24120,"delle":24121,"erratic":24122,"lexie":24123,"##hesis":24124,"amiga":24126,"hermes":24127,"##pressing":24128,"##leen":24129,"chapels":24130,"gospels":24131,"jamal":24132,"##uating":24133,"compute":24134,"revolving":24135,"warp":24136,"##sso":24137,"##thes":24138,"armory":24139,"##eras":24140,"##gol":24141,"antrim":24142,"loki":24143,"##kow":24144,"##asian":24145,"##good":24146,"##zano":24147,"braid":24148,"handwriting":24149,"subdistrict":24150,"funky":24151,"pantheon":24152,"##iculate":24153,"concurrency":24154,"estimation":24155,"improper":24156,"juliana":24157,"##his":24158,"newcomers":24159,"johnstone":24160,"staten":24161,"communicated":24162,"##oco":24163,"##alle":24164,"sausage":24165,"stormy":24166,"##stered":24167,"##tters":24168,"superfamily":24169,"##grade":24170,"acidic":24171,"collateral":24172,"tabloid":24173,"##oped":24174,"##rza":24175,"bladder":24176,"austen":24177,"##ellant":24178,"mcgraw":24179,"##hay":24180,"hannibal":24181,"mein":24182,"aquino":24183,"lucifer":24184,"wo":24185,"badger":24186,"boar":24187,"cher":24188,"christensen":24189,"greenberg":24190,"interruption":24191,"##kken":24192,"jem":24193,"mocked":24195,"bottoms":24196,"cambridgeshire":24197,"##lide":24198,"sprawling":24199,"##bbly":24200,"eastwood":24201,"ghent":24202,"synth":24203,"##buck":24204,"advisers":24205,"##bah":24206,"nominally":24207,"hapoel":24208,"qu":24209,"daggers":24210,"estranged":24211,"fabricated":24212,"towels":24213,"vinnie":24214,"wcw":24215,"misunderstanding":24216,"anglia":24217,"nothin":24218,"unmistakable":24219,"##dust":24220,"##lova":24221,"chilly":24222,"marquette":24223,"truss":24224,"##edge":24225,"##erine":24226,"reece":24227,"##lty":24228,"##chemist":24229,"##connected":24230,"41st":24233,"bash":24234,"raion":24235,"waterfalls":24236,"##ump":24237,"##main":24238,"labyrinth":24239,"queue":24240,"theorist":24241,"##istle":24242,"bharatiya":24243,"flexed":24244,"soundtracks":24245,"rooney":24246,"leftist":24247,"patrolling":24248,"wharton":24249,"plainly":24250,"alleviate":24251,"eastman":24252,"schuster":24253,"topographic":24254,"engages":24255,"immensely":24256,"unbearable":24257,"fairchild":24258,"dona":24260,"lurking":24261,"parisian":24262,"oliveira":24263,"ia":24264,"indictment":24265,"hahn":24266,"bangladeshi":24267,"##aster":24268,"vivo":24269,"##uming":24270,"##ential":24271,"antonia":24272,"expects":24273,"indoors":24274,"kildare":24275,"harlan":24276,"##logue":24277,"##ogenic":24278,"##sities":24279,"forgiven":24280,"##wat":24281,"childish":24282,"tavi":24283,"##mide":24284,"##orra":24285,"plausible":24286,"grimm":24287,"successively":24288,"scooted":24289,"##bola":24290,"##dget":24291,"##rith":24292,"spartans":24293,"emery":24294,"flatly":24295,"azure":24296,"epilogue":24297,"##wark":24298,"flourish":24299,"##iny":24300,"##tracted":24301,"##overs":24302,"##oshi":24303,"bestseller":24304,"distressed":24305,"receipt":24306,"spitting":24307,"hermit":24308,"topological":24309,"##cot":24310,"drilled":24311,"subunit":24312,"francs":24313,"##layer":24314,"eel":24315,"##fk":24316,"##itas":24317,"octopus":24318,"footprint":24319,"petitions":24320,"ufo":24321,"##say":24322,"##foil":24323,"interfering":24324,"leaking":24325,"palo":24326,"##metry":24327,"thistle":24328,"valiant":24329,"##pic":24330,"narayan":24331,"mcpherson":24332,"##fast":24333,"gonzales":24334,"##ym":24335,"##enne":24336,"dustin":24337,"novgorod":24338,"solos":24339,"##zman":24340,"doin":24341,"##raph":24342,"##patient":24343,"##meyer":24344,"soluble":24345,"ashland":24346,"cuffs":24347,"carole":24348,"pendleton":24349,"whistling":24350,"vassal":24351,"##river":24352,"deviation":24353,"revisited":24354,"constituents":24355,"rallied":24356,"rotate":24357,"loomed":24358,"##eil":24359,"##nting":24360,"amateurs":24361,"augsburg":24362,"auschwitz":24363,"crowns":24364,"skeletons":24365,"##cona":24366,"bonnet":24367,"dummy":24369,"globalization":24370,"simeon":24371,"sleeper":24372,"mandal":24373,"differentiated":24374,"##crow":24375,"##mare":24376,"milne":24377,"bundled":24378,"exasperated":24379,"talmud":24380,"owes":24381,"segregated":24382,"##feng":24383,"##uary":24384,"dentist":24385,"piracy":24386,"props":24387,"##rang":24388,"devlin":24389,"##torium":24390,"malicious":24391,"paws":24392,"##laid":24393,"dependency":24394,"##ergy":24395,"##fers":24396,"##enna":24397,"pistons":24399,"rourke":24400,"jed":24401,"grammatical":24402,"tres":24403,"maha":24404,"wig":24405,"ghostly":24407,"jayne":24408,"##achal":24409,"##creen":24410,"##ilis":24411,"##lins":24412,"##rence":24413,"designate":24414,"##with":24415,"arrogance":24416,"cambodian":24417,"clones":24418,"showdown":24419,"throttle":24420,"twain":24421,"##ception":24422,"lobes":24423,"metz":24424,"nagoya":24425,"braking":24427,"##furt":24428,"roaming":24430,"##minster":24431,"amin":24432,"crippled":24433,"##37":24434,"##llary":24435,"indifferent":24436,"hoffmann":24437,"idols":24438,"intimidating":24439,"influenza":24442,"memo":24443,"onions":24444,"bandage":24446,"consciously":24447,"##landa":24448,"##rage":24449,"clandestine":24450,"observes":24451,"swiped":24452,"tangle":24453,"##ener":24454,"##jected":24455,"##trum":24456,"##bill":24457,"##lta":24458,"hugs":24459,"congresses":24460,"josiah":24461,"spirited":24462,"##dek":24463,"humanist":24464,"managerial":24465,"filmmaking":24466,"inmate":24467,"rhymes":24468,"debuting":24469,"grimsby":24470,"ur":24471,"##laze":24472,"duplicate":24473,"vigor":24474,"##tf":24475,"republished":24476,"bolshevik":24477,"refurbishment":24478,"antibiotics":24479,"martini":24480,"methane":24481,"newscasts":24482,"royale":24483,"horizons":24484,"levant":24485,"iain":24486,"visas":24487,"##ischen":24488,"paler":24489,"##around":24490,"manifestation":24491,"snuck":24492,"alf":24493,"chop":24494,"futile":24495,"pedestal":24496,"rehab":24497,"##kat":24498,"bmg":24499,"kerman":24500,"res":24501,"fairbanks":24502,"jarrett":24503,"abstraction":24504,"saharan":24505,"##zek":24506,"procedural":24508,"clearer":24509,"kincaid":24510,"sash":24511,"luciano":24512,"##ffey":24513,"crunch":24514,"helmut":24515,"##vara":24516,"revolutionaries":24517,"##tute":24518,"creamy":24519,"leach":24520,"##mmon":24521,"permitting":24523,"nes":24524,"plight":24525,"wendell":24526,"##lese":24527,"contra":24528,"ts":24529,"clancy":24530,"ipa":24531,"mach":24532,"staples":24533,"autopsy":24534,"disturbances":24535,"nueva":24536,"karin":24537,"pontiac":24538,"##uding":24539,"proxy":24540,"venerable":24541,"haunt":24542,"leto":24543,"bergman":24544,"expands":24545,"##helm":24546,"wal":24547,"##pipe":24548,"canning":24549,"celine":24550,"cords":24551,"obesity":24552,"##enary":24553,"intrusion":24554,"planner":24555,"##phate":24556,"reasoned":24557,"sequencing":24558,"harrow":24560,"##chon":24561,"##dora":24562,"marred":24563,"mcintyre":24564,"repay":24565,"tarzan":24566,"darting":24567,"harrisburg":24569,"margarita":24570,"repulsed":24571,"##hur":24572,"##lding":24573,"belinda":24574,"hamburger":24575,"novo":24576,"compliant":24577,"runways":24578,"bingham":24579,"registrar":24580,"skyscraper":24581,"ic":24582,"cuthbert":24583,"improvisation":24584,"livelihood":24585,"##corp":24586,"##elial":24587,"admiring":24588,"##dened":24589,"sporadic":24590,"believer":24591,"casablanca":24592,"popcorn":24593,"##29":24594,"asha":24595,"shovel":24596,"##bek":24597,"##dice":24598,"coiled":24599,"tangible":24600,"##dez":24601,"casper":24602,"elsie":24603,"resin":24604,"tenderness":24605,"rectory":24606,"##ivision":24607,"avail":24608,"sonar":24609,"##mori":24610,"boutique":24611,"##dier":24612,"guerre":24613,"bathed":24614,"upbringing":24615,"vaulted":24616,"sandals":24617,"blessings":24618,"##naut":24619,"##utnant":24620,"foxes":24623,"pia":24624,"corrosion":24625,"hesitantly":24626,"confederates":24627,"crystalline":24628,"footprints":24629,"shapiro":24630,"tirana":24631,"valentin":24632,"drones":24633,"45th":24634,"microscope":24635,"shipments":24636,"texted":24637,"inquisition":24638,"wry":24639,"guernsey":24640,"unauthorized":24641,"resigning":24642,"ripple":24644,"schubert":24645,"stu":24646,"reassure":24647,"felony":24648,"##ardo":24649,"brittle":24650,"koreans":24651,"##havan":24652,"##ives":24653,"dun":24654,"implicit":24655,"tyres":24656,"##aldi":24657,"##lth":24658,"magnolia":24659,"##ehan":24660,"##puri":24661,"##poulos":24662,"aggressively":24663,"fei":24664,"gr":24665,"familiarity":24666,"##poo":24667,"indicative":24668,"##trust":24669,"fundamentally":24670,"jimmie":24671,"overrun":24672,"anchors":24674,"moans":24675,"##opus":24676,"britannia":24677,"armagh":24678,"##ggle":24679,"purposely":24680,"seizing":24681,"##vao":24682,"bewildered":24683,"mundane":24684,"avoidance":24685,"cosmopolitan":24686,"geometridae":24687,"quartermaster":24688,"caf":24689,"chatter":24691,"engulfed":24692,"gleam":24693,"purge":24694,"##icate":24695,"juliette":24696,"jurisprudence":24697,"guerra":24698,"revisions":24699,"##bn":24700,"casimir":24701,"brew":24702,"##jm":24703,"clapton":24705,"cloudy":24706,"conde":24707,"hermitage":24708,"simulations":24710,"torches":24711,"vincenzo":24712,"matteo":24713,"##rill":24714,"hidalgo":24715,"booming":24716,"westbound":24717,"accomplishment":24718,"tentacles":24719,"unaffected":24720,"##sius":24721,"annabelle":24722,"flopped":24723,"sloping":24724,"##litz":24725,"dreamer":24726,"interceptor":24727,"vu":24728,"##loh":24729,"consecration":24730,"copying":24731,"messaging":24732,"breaker":24733,"climates":24734,"hospitalized":24735,"torino":24737,"afternoons":24738,"winfield":24739,"witnessing":24740,"##teacher":24741,"breakers":24742,"choirs":24743,"sawmill":24744,"coldly":24745,"##ege":24746,"sipping":24747,"haste":24748,"uninhabited":24749,"conical":24750,"bibliography":24751,"pamphlets":24752,"severn":24753,"edict":24754,"##oca":24755,"deux":24756,"illnesses":24757,"grips":24758,"##pl":24759,"rehearsals":24760,"sis":24761,"thinkers":24762,"tame":24763,"##keepers":24764,"acacia":24766,"reformer":24767,"##osed":24768,"##rys":24769,"shuffling":24770,"##iring":24771,"##shima":24772,"eastbound":24773,"ionic":24774,"rhea":24775,"flees":24776,"littered":24777,"##oum":24778,"rocker":24779,"vomiting":24780,"groaning":24781,"champ":24782,"overwhelmingly":24783,"civilizations":24784,"paces":24785,"sloop":24786,"adoptive":24787,"##tish":24788,"skaters":24789,"##vres":24790,"aiding":24791,"mango":24792,"##joy":24793,"nikola":24794,"shriek":24795,"##ignon":24796,"pharmaceuticals":24797,"##mg":24798,"tuna":24799,"calvert":24800,"gustavo":24801,"stocked":24802,"yearbook":24803,"##urai":24804,"##mana":24805,"computed":24806,"subsp":24807,"riff":24808,"hanoi":24809,"kelvin":24810,"hamid":24811,"moors":24812,"pastures":24813,"summons":24814,"jihad":24815,"nectar":24816,"##ctors":24817,"bayou":24818,"untitled":24819,"pleasing":24820,"vastly":24821,"republics":24822,"intellect":24823,"##η":24824,"##ulio":24825,"##tou":24826,"crumbling":24827,"stylistic":24828,"sb":24829,"##ی":24830,"consolation":24831,"frequented":24832,"h₂o":24833,"walden":24834,"widows":24835,"##iens":24836,"##ignment":24838,"chunks":24839,"improves":24840,"grit":24842,"recited":24843,"##dev":24844,"snarl":24845,"sociological":24846,"##arte":24847,"##gul":24848,"inquired":24849,"##held":24850,"bruise":24851,"clube":24852,"consultancy":24853,"homogeneous":24854,"hornets":24855,"multiplication":24856,"pasta":24857,"prick":24858,"savior":24859,"##grin":24860,"##kou":24861,"##phile":24862,"yoon":24863,"##gara":24864,"grimes":24865,"vanishing":24866,"cheering":24867,"reacting":24868,"bn":24869,"distillery":24870,"##quisite":24871,"##vity":24872,"coe":24873,"dockyard":24874,"massif":24875,"##jord":24876,"escorts":24877,"voss":24878,"##valent":24879,"byte":24880,"chopped":24881,"hawke":24882,"illusions":24883,"workings":24884,"floats":24885,"##koto":24886,"##vac":24887,"kv":24888,"annapolis":24889,"madden":24890,"##onus":24891,"alvaro":24892,"noctuidae":24893,"##cum":24894,"##scopic":24895,"avenge":24896,"steamboat":24897,"forte":24898,"illustrates":24899,"erika":24900,"##trip":24901,"dew":24903,"nationalities":24904,"bran":24905,"manifested":24906,"thirsty":24907,"diversified":24908,"muscled":24909,"reborn":24910,"##standing":24911,"arson":24912,"##lessness":24913,"##dran":24914,"##logram":24915,"##boys":24916,"##kushima":24917,"##vious":24918,"willoughby":24919,"##phobia":24920,"alsace":24922,"dashboard":24923,"yuki":24924,"##chai":24925,"granville":24926,"myspace":24927,"publicized":24928,"tricked":24929,"##gang":24930,"adjective":24931,"##ater":24932,"relic":24933,"reorganisation":24934,"enthusiastically":24935,"indications":24936,"saxe":24937,"##lassified":24938,"consolidate":24939,"iec":24940,"padua":24941,"helplessly":24942,"ramps":24943,"renaming":24944,"regulars":24945,"pedestrians":24946,"accents":24947,"convicts":24948,"inaccurate":24949,"lowers":24950,"mana":24951,"##pati":24952,"barrie":24953,"bjp":24954,"outta":24955,"someplace":24956,"berwick":24957,"flanking":24958,"invoked":24959,"marrow":24960,"sparsely":24961,"excerpts":24962,"clothed":24963,"rei":24964,"##ginal":24965,"wept":24966,"##straße":24967,"##vish":24968,"alexa":24969,"excel":24970,"##ptive":24971,"membranes":24972,"aquitaine":24973,"creeks":24974,"cutler":24975,"sheppard":24976,"implementations":24977,"ns":24978,"##dur":24979,"fragrance":24980,"budge":24981,"concordia":24982,"magnesium":24983,"marcelo":24984,"##antes":24985,"gladly":24986,"vibrating":24987,"##rral":24988,"##ggles":24989,"montrose":24990,"##omba":24991,"lew":24992,"seamus":24993,"cocky":24995,"##ament":24996,"##uen":24997,"bjorn":24998,"##rrick":24999,"fielder":25000,"fluttering":25001,"##lase":25002,"methyl":25003,"kimberley":25004,"mcdowell":25005,"reductions":25006,"barbed":25007,"##jic":25008,"##tonic":25009,"aeronautical":25010,"condensed":25011,"distracting":25012,"##promising":25013,"huffed":25014,"##cala":25015,"##sle":25016,"claudius":25017,"invincible":25018,"missy":25019,"pious":25020,"balthazar":25021,"ci":25022,"##lang":25023,"butte":25024,"combo":25025,"orson":25026,"##dication":25027,"myriad":25028,"silenced":25030,"##fed":25031,"##rh":25032,"coco":25033,"netball":25034,"yourselves":25035,"##oza":25036,"clarify":25037,"heller":25038,"peg":25039,"durban":25040,"etudes":25041,"offender":25042,"roast":25043,"blackmail":25044,"curvature":25045,"##woods":25046,"vile":25047,"illicit":25049,"suriname":25050,"##linson":25051,"overture":25052,"bubbling":25054,"gymnast":25055,"tucking":25056,"##mming":25057,"##ouin":25058,"maldives":25059,"##bala":25060,"gurney":25061,"##dda":25062,"##eased":25063,"##oides":25064,"backside":25065,"pinto":25066,"jars":25067,"racehorse":25068,"tending":25069,"##rdial":25070,"baronetcy":25071,"wiener":25072,"duly":25073,"##rke":25074,"barbarian":25075,"cupping":25076,"flawed":25077,"##thesis":25078,"bertha":25079,"pleistocene":25080,"puddle":25081,"swearing":25082,"##nob":25083,"##tically":25084,"fleeting":25085,"prostate":25086,"amulet":25087,"educating":25088,"##mined":25089,"##iti":25090,"##tler":25091,"75th":25092,"jens":25093,"respondents":25094,"analytics":25095,"cavaliers":25096,"papacy":25097,"raju":25098,"##iente":25099,"##ulum":25100,"##tip":25101,"funnel":25102,"disneyland":25104,"##lley":25105,"sociologist":25106,"##iam":25107,"faulkner":25109,"louvre":25110,"menon":25111,"##dson":25112,"##ower":25114,"afterlife":25115,"mannheim":25116,"peptide":25117,"referees":25118,"comedians":25119,"meaningless":25120,"##anger":25121,"##laise":25122,"fabrics":25123,"hurley":25124,"renal":25125,"sleeps":25126,"##bour":25127,"##icle":25128,"breakout":25129,"kristin":25130,"roadside":25131,"animator":25132,"clover":25133,"disdain":25134,"unsafe":25135,"redesign":25136,"##urity":25137,"firth":25138,"barnsley":25139,"portage":25140,"reset":25141,"narrows":25142,"commandos":25144,"expansive":25145,"speechless":25146,"tubular":25147,"##lux":25148,"essendon":25149,"eyelashes":25150,"smashwords":25151,"##yad":25152,"##bang":25153,"##claim":25154,"craved":25155,"sprinted":25156,"chet":25157,"somme":25158,"astor":25159,"wrocław":25160,"orton":25161,"bane":25163,"##erving":25164,"##uing":25165,"mischief":25166,"##amps":25167,"##sund":25168,"scaling":25169,"terre":25170,"##xious":25171,"impairment":25172,"offenses":25173,"undermine":25174,"moi":25175,"soy":25176,"contiguous":25177,"arcadia":25178,"inuit":25179,"seam":25180,"##tops":25181,"macbeth":25182,"rebelled":25183,"##icative":25184,"##iot":25185,"elaborated":25187,"frs":25188,"uniformed":25189,"##dberg":25190,"powerless":25192,"priscilla":25193,"stimulated":25194,"qc":25196,"arboretum":25197,"frustrating":25198,"trieste":25199,"bullock":25200,"##nified":25201,"enriched":25202,"glistening":25203,"intern":25204,"##adia":25205,"locus":25206,"nouvelle":25207,"ollie":25208,"ike":25209,"lash":25210,"starboard":25211,"ee":25212,"tapestry":25213,"headlined":25214,"hove":25215,"rigged":25216,"##vite":25217,"pollock":25218,"##yme":25219,"thrive":25220,"clustered":25221,"cas":25222,"roi":25223,"gleamed":25224,"olympiad":25225,"##lino":25226,"pressured":25227,"regimes":25228,"##hosis":25229,"##lick":25230,"ripley":25231,"##ophone":25232,"kickoff":25233,"gallon":25234,"rockwell":25235,"##arable":25236,"crusader":25237,"glue":25238,"revolutions":25239,"scrambling":25240,"grover":25242,"##jure":25243,"englishman":25244,"aztec":25245,"contemplating":25247,"coven":25248,"ipad":25249,"preach":25250,"triumphant":25251,"tufts":25252,"##esian":25253,"rotational":25254,"##phus":25255,"falkland":25257,"##brates":25258,"strewn":25259,"clarissa":25260,"rejoin":25261,"environmentally":25262,"glint":25263,"banded":25264,"drenched":25265,"moat":25266,"albanians":25267,"johor":25268,"rr":25269,"maestro":25270,"malley":25271,"nouveau":25272,"shaded":25273,"taxonomy":25274,"v6":25275,"adhere":25276,"bunk":25277,"airfields":25278,"##ritan":25279,"encompass":25281,"remington":25282,"tran":25283,"##erative":25284,"amelie":25285,"mazda":25286,"friar":25287,"morals":25288,"passions":25289,"##zai":25290,"breadth":25291,"vis":25292,"##hae":25293,"argus":25294,"burnham":25295,"caressing":25296,"insider":25297,"rudd":25298,"##imov":25299,"##mini":25300,"##rso":25301,"italianate":25302,"murderous":25303,"textual":25304,"wainwright":25305,"armada":25306,"bam":25307,"weave":25308,"timer":25309,"##taken":25310,"##nh":25311,"fra":25312,"##crest":25313,"ardent":25314,"salazar":25315,"taps":25316,"tunis":25317,"##ntino":25318,"allegro":25319,"gland":25320,"philanthropic":25321,"##chester":25322,"implication":25323,"##optera":25324,"esq":25325,"judas":25326,"noticeably":25327,"wynn":25328,"##dara":25329,"inched":25330,"indexed":25331,"crises":25332,"villiers":25333,"bandit":25334,"royalties":25335,"patterned":25336,"cupboard":25337,"interspersed":25338,"accessory":25339,"isla":25340,"kendrick":25341,"entourage":25342,"stitches":25343,"##esthesia":25344,"headwaters":25345,"##ior":25346,"interlude":25347,"distraught":25348,"draught":25349,"##basket":25351,"biased":25352,"sy":25353,"transient":25354,"triad":25355,"subgenus":25356,"adapting":25357,"kidd":25358,"shortstop":25359,"##umatic":25360,"dimly":25361,"spiked":25362,"mcleod":25363,"reprint":25364,"nellie":25365,"pretoria":25366,"windmill":25367,"##cek":25368,"singled":25369,"##mps":25370,"reunite":25372,"##orous":25373,"bankers":25375,"outlying":25376,"##omp":25377,"##ports":25378,"##tream":25379,"apologies":25380,"cosmetics":25381,"patsy":25382,"##deh":25383,"##ocks":25384,"##yson":25385,"bender":25386,"nantes":25387,"serene":25388,"##nad":25389,"lucha":25390,"mmm":25391,"##cius":25393,"##gli":25394,"cmll":25395,"coinage":25396,"nestor":25397,"juarez":25398,"##rook":25399,"smeared":25400,"sprayed":25401,"twitching":25402,"sterile":25403,"irina":25404,"embodied":25405,"juveniles":25406,"enveloped":25407,"miscellaneous":25408,"cancers":25409,"dq":25410,"gulped":25411,"luisa":25412,"crested":25413,"swat":25414,"donegal":25415,"ref":25416,"##anov":25417,"##acker":25418,"hearst":25419,"mercantile":25420,"##lika":25421,"doorbell":25422,"ua":25423,"vicki":25424,"##alla":25425,"##som":25426,"bilbao":25427,"psychologists":25428,"stryker":25429,"sw":25430,"horsemen":25431,"turkmenistan":25432,"wits":25433,"##national":25434,"anson":25435,"mathew":25436,"screenings":25437,"##umb":25438,"rihanna":25439,"##agne":25440,"##nessy":25441,"aisles":25442,"##iani":25443,"##osphere":25444,"hines":25445,"kenton":25446,"saskatoon":25447,"tasha":25448,"truncated":25449,"##champ":25450,"##itan":25451,"mildred":25452,"advises":25453,"fredrik":25454,"interpreting":25455,"inhibitors":25456,"##athi":25457,"spectroscopy":25458,"##hab":25459,"##kong":25460,"karim":25461,"panda":25462,"##oia":25463,"##nail":25464,"##vc":25465,"conqueror":25466,"kgb":25467,"leukemia":25468,"##dity":25469,"arrivals":25470,"cheered":25471,"pisa":25472,"phosphorus":25473,"shielded":25474,"##riated":25475,"mammal":25476,"unitarian":25477,"urgently":25478,"chopin":25479,"sanitary":25480,"##mission":25481,"spicy":25482,"drugged":25483,"hinges":25484,"##tort":25485,"tipping":25486,"trier":25487,"impoverished":25488,"westchester":25489,"##caster":25490,"epoch":25492,"nonstop":25493,"##gman":25494,"##khov":25495,"aromatic":25496,"centrally":25497,"cerro":25498,"##tively":25499,"##vio":25500,"billions":25501,"modulation":25502,"sedimentary":25503,"facilitating":25505,"outrageous":25506,"goldstein":25507,"##eak":25508,"##kt":25509,"ld":25510,"maitland":25511,"penultimate":25512,"pollard":25513,"##dance":25514,"fleets":25515,"spaceship":25516,"vertebrae":25517,"##nig":25518,"alcoholism":25519,"als":25520,"recital":25521,"##bham":25522,"##ference":25523,"##omics":25524,"m2":25525,"##bm":25526,"trois":25527,"##tropical":25528,"##в":25529,"commemorates":25530,"##meric":25531,"marge":25532,"##raction":25533,"cosmetic":25536,"ravaged":25537,"##ige":25538,"catastrophe":25539,"eng":25540,"##shida":25541,"albrecht":25542,"arterial":25543,"bellamy":25544,"decor":25545,"harmon":25546,"##rde":25547,"bulbs":25548,"synchronized":25549,"vito":25550,"easiest":25551,"shetland":25552,"shielding":25553,"wnba":25554,"##glers":25555,"##ssar":25556,"##riam":25557,"brianna":25558,"cumbria":25559,"##aceous":25560,"##rard":25561,"cores":25562,"thayer":25563,"##nsk":25564,"brood":25565,"hilltop":25566,"luminous":25567,"carts":25568,"keynote":25569,"larkin":25570,"logos":25571,"##cta":25572,"##ا":25573,"##mund":25574,"##quay":25575,"lilith":25576,"tinted":25577,"wrestle":25579,"mobilization":25580,"##uses":25581,"sequential":25582,"siam":25583,"bloomfield":25584,"takahashi":25585,"##ieving":25587,"presenters":25588,"ringo":25589,"blazed":25590,"witty":25591,"##oven":25592,"##ignant":25593,"devastation":25594,"haydn":25595,"harmed":25596,"newt":25597,"therese":25598,"##peed":25599,"gershwin":25600,"molina":25601,"rabbis":25602,"sudanese":25603,"001":25604,"innate":25605,"restarted":25606,"##sack":25607,"##fus":25608,"slices":25609,"wb":25610,"##shah":25611,"enroll":25612,"hypothetical":25613,"hysterical":25614,"fabio":25616,"indefinite":25617,"warped":25618,"##hg":25619,"exchanging":25620,"unsuitable":25622,"##sboro":25623,"gallo":25624,"bret":25626,"cobalt":25627,"homemade":25628,"##hunter":25629,"mx":25630,"operatives":25631,"##dhar":25632,"terraces":25633,"durable":25634,"latch":25635,"pens":25636,"whorls":25637,"##ctuated":25638,"##eaux":25639,"billing":25640,"ligament":25641,"succumbed":25642,"##gly":25643,"regulators":25644,"spawn":25645,"##brick":25646,"##stead":25647,"filmfare":25648,"rochelle":25649,"##nzo":25650,"circumstance":25652,"saber":25653,"supplements":25654,"##nsky":25655,"##tson":25656,"crowe":25657,"wellesley":25658,"carrot":25659,"##9th":25660,"##movable":25661,"primate":25662,"drury":25663,"sincerely":25664,"topical":25665,"##mad":25666,"##rao":25667,"callahan":25668,"kyiv":25669,"smarter":25670,"tits":25671,"undo":25672,"##yeh":25673,"announcements":25674,"anthologies":25675,"barrio":25676,"nebula":25677,"##islaus":25678,"##shaft":25679,"##tyn":25680,"bodyguards":25681,"assassinate":25683,"barns":25684,"emmett":25685,"scully":25686,"##mah":25687,"##yd":25688,"##eland":25689,"##tino":25690,"##itarian":25691,"demoted":25692,"gorman":25693,"lashed":25694,"prized":25695,"adventist":25696,"writ":25697,"##gui":25698,"alla":25699,"invertebrates":25700,"##ausen":25701,"amman":25703,"align":25705,"healy":25706,"redistribution":25707,"##gf":25708,"##rize":25709,"insulation":25710,"##drop":25711,"adherents":25712,"hezbollah":25713,"vitro":25714,"ferns":25715,"yanking":25716,"php":25718,"registering":25719,"uppsala":25720,"cheerleading":25721,"confines":25722,"mischievous":25723,"tully":25724,"##ross":25725,"49th":25726,"docked":25727,"roam":25728,"stipulated":25729,"pumpkin":25730,"##bry":25731,"prompt":25732,"##ezer":25733,"blindly":25734,"shuddering":25735,"craftsmen":25736,"frail":25737,"scented":25738,"katharine":25739,"scramble":25740,"shaggy":25741,"sponge":25742,"helix":25743,"zaragoza":25744,"##52":25746,"43rd":25747,"backlash":25748,"fontaine":25749,"seizures":25750,"posse":25751,"cowan":25752,"nonfiction":25753,"telenovela":25754,"wwii":25755,"hammered":25756,"undone":25757,"##gpur":25758,"encircled":25759,"irs":25760,"##ivation":25761,"artefacts":25762,"oneself":25763,"searing":25764,"smallpox":25765,"##belle":25766,"##osaurus":25767,"shandong":25768,"breached":25769,"upland":25770,"blushing":25771,"rankin":25772,"infinitely":25773,"psyche":25774,"tolerated":25775,"docking":25776,"evicted":25777,"##col":25778,"unmarked":25779,"##lving":25780,"gnome":25781,"lettering":25782,"litres":25783,"musique":25784,"##oint":25785,"benevolent":25786,"##jal":25787,"blackened":25788,"##anna":25789,"mccall":25790,"racers":25791,"tingle":25792,"##ocene":25793,"##orestation":25794,"introductions":25795,"radically":25796,"##hiff":25798,"##باد":25799,"munchen":25802,"plead":25803,"##nka":25804,"condo":25805,"scissors":25806,"##sight":25807,"##tens":25808,"apprehension":25809,"##cey":25810,"##yin":25811,"hallmark":25812,"watering":25813,"formulas":25814,"sequels":25815,"##llas":25816,"aggravated":25817,"bae":25818,"commencing":25819,"##building":25820,"enfield":25821,"prohibits":25822,"marne":25823,"vedic":25824,"civilized":25825,"euclidean":25826,"jagger":25827,"beforehand":25828,"blasts":25829,"dumont":25830,"##arney":25831,"##nem":25832,"conversions":25834,"hierarchical":25835,"rios":25836,"simulator":25837,"##dya":25838,"##lellan":25839,"hedges":25840,"oleg":25841,"thrusts":25842,"shadowed":25843,"darby":25844,"maximize":25845,"gregorian":25847,"##nded":25848,"##routed":25849,"sham":25850,"unspecified":25851,"##hog":25852,"emory":25853,"factual":25854,"##smo":25855,"##tp":25856,"fooled":25857,"##rger":25858,"ortega":25859,"wellness":25860,"marlon":25861,"##oton":25862,"##urance":25863,"casket":25864,"keating":25865,"ley":25866,"enclave":25867,"##ayan":25868,"char":25869,"influencing":25870,"jia":25871,"##chenko":25872,"ammonia":25874,"erebidae":25875,"incompatible":25876,"violins":25877,"cornered":25878,"##arat":25879,"grooves":25880,"astronauts":25881,"columbian":25882,"rampant":25883,"fabrication":25884,"kyushu":25885,"mahmud":25886,"vanish":25887,"##dern":25888,"mesopotamia":25889,"##lete":25890,"ict":25891,"##rgen":25892,"caspian":25893,"kenji":25894,"pitted":25895,"##vered":25896,"grimace":25898,"roanoke":25899,"tchaikovsky":25900,"twinned":25901,"##analysis":25902,"##awan":25903,"xinjiang":25904,"arias":25905,"clemson":25906,"kazakh":25907,"sizable":25908,"##khand":25910,"##vard":25911,"plunge":25912,"tatum":25913,"vittorio":25914,"##nden":25915,"cholera":25916,"##dana":25917,"##oper":25918,"bracing":25919,"indifference":25920,"projectile":25921,"superliga":25922,"##chee":25923,"realises":25924,"upgrading":25925,"porte":25927,"retribution":25928,"##vies":25929,"nk":25930,"stil":25931,"##resses":25932,"ama":25933,"bureaucracy":25934,"blackberry":25935,"bosch":25936,"testosterone":25937,"collapses":25938,"greer":25939,"##pathic":25940,"ioc":25941,"fifties":25942,"malls":25943,"##erved":25944,"bao":25945,"baskets":25946,"adolescents":25947,"siegfried":25948,"##osity":25949,"##tosis":25950,"mantra":25951,"detecting":25952,"existent":25953,"fledgling":25954,"##cchi":25955,"dissatisfied":25956,"gan":25957,"telecommunication":25958,"mingled":25959,"sobbed":25960,"controversies":25962,"outdated":25963,"taxis":25964,"##raus":25965,"fright":25966,"slams":25967,"##lham":25968,"##fect":25969,"##tten":25970,"detectors":25971,"fetal":25972,"tanned":25973,"##uw":25974,"fray":25975,"goth":25976,"olympian":25977,"skipping":25978,"mandates":25979,"scratches":25980,"sheng":25981,"unspoken":25982,"hyundai":25983,"tracey":25984,"hotspur":25985,"restrictive":25986,"##buch":25987,"americana":25988,"mundo":25989,"##bari":25990,"burroughs":25991,"diva":25992,"vulcan":25993,"##6th":25994,"distinctions":25995,"thumping":25996,"##ngen":25997,"mikey":25998,"sheds":25999,"fide":26000,"rescues":26001,"springsteen":26002,"vested":26003,"valuation":26004,"##ece":26005,"##ely":26006,"pinnacle":26007,"rake":26008,"sylvie":26009,"##edo":26010,"almond":26011,"quivering":26012,"##irus":26013,"alteration":26014,"faltered":26015,"##wad":26016,"51st":26017,"hydra":26018,"ticked":26019,"##kato":26020,"recommends":26021,"##dicated":26022,"antigua":26023,"arjun":26024,"stagecoach":26025,"wilfred":26026,"trickle":26027,"pronouns":26028,"##pon":26029,"aryan":26030,"nighttime":26031,"##anian":26032,"gall":26033,"pea":26034,"stitch":26035,"##hei":26036,"leung":26037,"milos":26038,"##dini":26039,"eritrea":26040,"nexus":26041,"starved":26042,"snowfall":26043,"kant":26044,"parasitic":26045,"cot":26046,"discus":26047,"hana":26048,"strikers":26049,"appleton":26050,"kitchens":26051,"##erina":26052,"##partisan":26053,"##itha":26054,"##vius":26055,"disclose":26056,"metis":26057,"##channel":26058,"tesla":26060,"##vera":26061,"fitch":26062,"blooded":26064,"##tila":26065,"decimal":26066,"##tang":26067,"##bai":26068,"cyclones":26069,"eun":26070,"bottled":26071,"peas":26072,"pensacola":26073,"basha":26074,"bolivian":26075,"crabs":26076,"boil":26077,"lanterns":26078,"partridge":26079,"roofed":26080,"necks":26082,"##phila":26083,"opined":26084,"patting":26085,"##kla":26086,"##lland":26087,"chuckles":26088,"volta":26089,"whereupon":26090,"##nche":26091,"devout":26092,"euroleague":26093,"suicidal":26094,"##dee":26095,"inherently":26096,"involuntary":26097,"knitting":26098,"nasser":26099,"##hide":26100,"puppets":26101,"colourful":26102,"courageous":26103,"southend":26104,"stills":26105,"miraculous":26106,"hodgson":26107,"richer":26108,"rochdale":26109,"ethernet":26110,"greta":26111,"uniting":26112,"prism":26113,"umm":26114,"##haya":26115,"##itical":26116,"##utation":26117,"deterioration":26118,"pointe":26119,"prowess":26120,"##ropriation":26121,"lids":26122,"scranton":26123,"billings":26124,"subcontinent":26125,"##koff":26126,"##scope":26127,"brute":26128,"kellogg":26129,"psalms":26130,"degraded":26131,"##vez":26132,"stanisław":26133,"##ructured":26134,"ferreira":26135,"pun":26136,"astonishing":26137,"gunnar":26138,"##yat":26139,"arya":26140,"prc":26141,"gottfried":26142,"##tight":26143,"excursion":26144,"##ographer":26145,"dina":26146,"##quil":26147,"##nare":26148,"huffington":26149,"illustrious":26150,"wilbur":26151,"gundam":26152,"verandah":26153,"##zard":26154,"naacp":26155,"##odle":26156,"constructive":26157,"fjord":26158,"kade":26159,"##naud":26160,"generosity":26161,"thrilling":26162,"baseline":26163,"cayman":26164,"frankish":26165,"plastics":26166,"accommodations":26167,"zoological":26168,"##fting":26169,"cedric":26170,"qb":26171,"motorized":26172,"##dome":26173,"##otted":26174,"squealed":26175,"tackled":26176,"canucks":26177,"budgets":26178,"situ":26179,"asthma":26180,"dail":26181,"gabled":26182,"grasslands":26183,"whimpered":26184,"writhing":26185,"judgments":26186,"##65":26187,"minnie":26188,"pv":26189,"##carbon":26190,"bananas":26191,"grille":26192,"domes":26193,"monique":26194,"odin":26195,"maguire":26196,"markham":26197,"tierney":26198,"##estra":26199,"##chua":26200,"libel":26201,"poke":26202,"speedy":26203,"atrium":26204,"laval":26205,"notwithstanding":26206,"##edly":26207,"fai":26208,"kala":26209,"##sur":26210,"robb":26211,"##sma":26212,"listings":26213,"luz":26214,"supplementary":26215,"tianjin":26216,"##acing":26217,"enzo":26218,"jd":26219,"ric":26220,"scanner":26221,"croats":26222,"transcribed":26223,"##49":26224,"arden":26225,"cv":26226,"##hair":26227,"##raphy":26228,"##lver":26229,"##uy":26230,"seventies":26232,"staggering":26233,"alam":26234,"horticultural":26235,"hs":26236,"regression":26237,"timbers":26238,"blasting":26239,"##ounded":26240,"montagu":26241,"manipulating":26242,"##cit":26243,"catalytic":26244,"troopers":26246,"##meo":26247,"condemnation":26248,"fitzpatrick":26249,"##oire":26250,"##roved":26251,"inexperienced":26252,"castes":26254,"##lative":26255,"outing":26256,"dubois":26258,"flicking":26259,"quarrel":26260,"ste":26261,"learners":26262,"iq":26264,"whistled":26265,"##class":26266,"classify":26268,"tariffs":26269,"temperament":26270,"folly":26272,"liszt":26273,"##yles":26274,"immersed":26275,"jordanian":26276,"ceasefire":26277,"apparel":26278,"extras":26279,"maru":26280,"fished":26281,"##bio":26282,"harta":26283,"stockport":26284,"assortment":26285,"craftsman":26286,"paralysis":26287,"transmitters":26288,"##cola":26289,"blindness":26290,"##wk":26291,"fatally":26292,"proficiency":26293,"solemnly":26294,"##orno":26295,"repairing":26296,"amore":26297,"groceries":26298,"ultraviolet":26299,"##chase":26300,"schoolhouse":26301,"##tua":26302,"resurgence":26303,"nailed":26304,"##otype":26305,"##×":26306,"ruse":26307,"saliva":26308,"diagrams":26309,"##tructing":26310,"albans":26311,"rann":26312,"thirties":26313,"1b":26314,"antennas":26315,"hilarious":26316,"cougars":26317,"paddington":26318,"stats":26319,"##eger":26320,"breakaway":26321,"ipod":26322,"reza":26323,"authorship":26324,"prohibiting":26325,"scoffed":26326,"##etz":26327,"##ttle":26328,"conscription":26329,"defected":26330,"trondheim":26331,"##fires":26332,"ivanov":26333,"keenan":26334,"##adan":26335,"##ciful":26336,"##fb":26337,"##slow":26338,"locating":26339,"##ials":26340,"##tford":26341,"cadiz":26342,"basalt":26343,"blankly":26344,"interned":26345,"rags":26346,"rattling":26347,"##tick":26348,"carpathian":26349,"reassured":26350,"sync":26351,"bum":26352,"guildford":26353,"iss":26354,"staunch":26355,"##onga":26356,"astronomers":26357,"sera":26358,"sofie":26359,"emergencies":26360,"susquehanna":26361,"##heard":26362,"duc":26363,"mastery":26364,"vh1":26365,"williamsburg":26366,"bayer":26367,"buckled":26368,"craving":26369,"##khan":26370,"##rdes":26371,"bloomington":26372,"##write":26373,"alton":26374,"barbecue":26375,"##bians":26376,"justine":26377,"##hri":26378,"##ndt":26379,"delightful":26380,"smartphone":26381,"newtown":26382,"photon":26383,"retrieval":26384,"peugeot":26385,"hissing":26386,"##monium":26387,"##orough":26388,"flavors":26389,"lighted":26390,"relaunched":26391,"tainted":26392,"##games":26393,"##lysis":26394,"anarchy":26395,"microscopic":26396,"hopping":26397,"adept":26398,"evade":26399,"evie":26400,"##beau":26401,"inhibit":26402,"sinn":26403,"adjustable":26404,"hurst":26405,"intuition":26406,"wilton":26407,"cisco":26408,"44th":26409,"lawful":26410,"lowlands":26411,"stockings":26412,"thierry":26413,"##dalen":26414,"##hila":26415,"##nai":26416,"fates":26417,"prank":26418,"tb":26419,"maison":26420,"lobbied":26421,"provocative":26422,"4a":26424,"utopia":26425,"##qual":26426,"carbonate":26427,"gujarati":26428,"purcell":26429,"##rford":26430,"curtiss":26431,"##mei":26432,"overgrown":26433,"arenas":26434,"mediation":26435,"swallows":26436,"##rnik":26437,"respectful":26438,"turnbull":26439,"##hedron":26440,"##hope":26441,"alyssa":26442,"ozone":26443,"##ʻi":26444,"ami":26445,"gestapo":26446,"johansson":26447,"snooker":26448,"canteen":26449,"cuff":26450,"declines":26451,"empathy":26452,"stigma":26453,"##ags":26454,"##iner":26455,"##raine":26456,"taxpayers":26457,"gui":26458,"volga":26459,"##wright":26460,"##copic":26461,"lifespan":26462,"overcame":26463,"tattooed":26464,"enactment":26465,"giggles":26466,"##ador":26467,"##camp":26468,"barrington":26469,"bribe":26470,"obligatory":26471,"orbiting":26472,"peng":26473,"##enas":26474,"elusive":26475,"sucker":26476,"##vating":26477,"cong":26478,"hardship":26479,"empowered":26480,"anticipating":26481,"estrada":26482,"cryptic":26483,"greasy":26484,"detainees":26485,"planck":26486,"sudbury":26487,"plaid":26488,"dod":26489,"marriott":26490,"kayla":26491,"##ears":26492,"##vb":26493,"##zd":26494,"mortally":26495,"##hein":26496,"cognition":26497,"radha":26498,"liechtenstein":26500,"meade":26501,"richly":26502,"argyle":26503,"harpsichord":26504,"liberalism":26505,"trumpets":26506,"lauded":26507,"tyrant":26508,"salsa":26509,"tiled":26510,"lear":26511,"promoters":26512,"reused":26513,"slicing":26514,"trident":26515,"##chuk":26516,"##gami":26517,"##lka":26518,"cantor":26519,"checkpoint":26520,"##points":26521,"gaul":26522,"leger":26523,"mammalian":26524,"##tov":26525,"##aar":26526,"##schaft":26527,"doha":26528,"frenchman":26529,"nirvana":26530,"##vino":26531,"delgado":26532,"headlining":26533,"##eron":26534,"##iography":26535,"jug":26536,"tko":26537,"naga":26539,"intersections":26540,"##jia":26541,"benfica":26542,"nawab":26543,"##suka":26544,"ashford":26545,"gulp":26546,"##deck":26547,"##vill":26548,"##rug":26549,"brentford":26550,"frazier":26551,"pleasures":26552,"dunne":26553,"potsdam":26554,"shenzhen":26555,"dentistry":26556,"##tec":26557,"flanagan":26558,"##dorff":26559,"##hear":26560,"chorale":26561,"dinah":26562,"prem":26563,"quezon":26564,"##rogated":26565,"relinquished":26566,"sutra":26567,"terri":26568,"##pani":26569,"flaps":26570,"##rissa":26571,"poly":26572,"##rnet":26573,"homme":26574,"aback":26575,"##eki":26576,"linger":26577,"womb":26578,"##kson":26579,"##lewood":26580,"doorstep":26581,"orthodoxy":26582,"threaded":26583,"westfield":26584,"##rval":26585,"dioceses":26586,"fridays":26587,"subsided":26588,"##gata":26589,"loyalists":26590,"##biotic":26591,"##ettes":26592,"letterman":26593,"lunatic":26594,"prelate":26595,"tenderly":26596,"invariably":26597,"souza":26598,"thug":26599,"winslow":26600,"##otide":26601,"furlongs":26602,"gogh":26603,"jeopardy":26604,"##runa":26605,"pegasus":26606,"##umble":26607,"humiliated":26608,"standalone":26609,"tagged":26610,"##roller":26611,"freshmen":26612,"klan":26613,"##bright":26614,"attaining":26615,"initiating":26616,"transatlantic":26617,"logged":26618,"viz":26619,"##uance":26620,"combatants":26622,"intervening":26623,"stephane":26624,"chieftain":26625,"despised":26626,"grazed":26627,"cdc":26629,"galveston":26630,"godzilla":26631,"macro":26632,"simulate":26633,"##planes":26634,"parades":26635,"##esses":26636,"##ductive":26638,"##unes":26639,"equator":26640,"overdose":26641,"##cans":26642,"##hosh":26643,"##lifting":26644,"joshi":26645,"epstein":26646,"sonora":26647,"treacherous":26648,"aquatics":26649,"manchu":26650,"responsive":26651,"##sation":26652,"supervisory":26653,"##christ":26654,"##llins":26655,"##ibar":26656,"##balance":26657,"##uso":26658,"kimball":26659,"karlsruhe":26660,"mab":26661,"##emy":26662,"ignores":26663,"phonetic":26664,"reuters":26665,"spaghetti":26666,"almighty":26668,"danzig":26669,"rumbling":26670,"tombstone":26671,"designations":26672,"lured":26673,"outset":26674,"##felt":26675,"supermarkets":26676,"##wt":26677,"grupo":26678,"kei":26679,"kraft":26680,"susanna":26681,"##blood":26682,"comprehension":26683,"genealogy":26684,"##aghan":26685,"##verted":26686,"redding":26687,"##ythe":26688,"bowing":26690,"##pore":26691,"##roi":26692,"lest":26693,"sharpened":26694,"fulbright":26695,"valkyrie":26696,"sikhs":26697,"##unds":26698,"swans":26699,"bouquet":26700,"merritt":26701,"##tage":26702,"##venting":26703,"commuted":26704,"redhead":26705,"clerks":26706,"leasing":26707,"cesare":26708,"dea":26709,"hazy":26710,"##vances":26711,"fledged":26712,"greenfield":26713,"servicemen":26714,"##gical":26715,"armando":26716,"blackout":26717,"dt":26718,"sagged":26719,"downloadable":26720,"intra":26721,"potion":26722,"pods":26723,"##4th":26724,"##mism":26725,"xp":26726,"attendants":26727,"gambia":26728,"stale":26729,"##ntine":26730,"plump":26731,"asteroids":26732,"rediscovered":26733,"buds":26734,"flea":26735,"hive":26736,"##neas":26737,"classifications":26739,"debuts":26740,"##eles":26741,"olympus":26742,"scala":26743,"##eurs":26744,"##gno":26745,"##mute":26746,"hummed":26747,"sigismund":26748,"visuals":26749,"wiggled":26750,"await":26751,"pilasters":26752,"clench":26753,"sulfate":26754,"##ances":26755,"bellevue":26756,"enigma":26757,"trainee":26758,"snort":26759,"##sw":26760,"clouded":26761,"denim":26762,"##rank":26763,"##rder":26764,"churning":26765,"hartman":26766,"lodges":26767,"riches":26768,"sima":26769,"##missible":26770,"accountable":26771,"socrates":26772,"regulates":26773,"mueller":26774,"##cr":26775,"avoids":26777,"solids":26778,"himalayas":26779,"nutrient":26780,"pup":26781,"##jevic":26782,"squat":26783,"fades":26784,"nec":26785,"##lates":26786,"##pina":26787,"##rona":26788,"##ου":26789,"privateer":26790,"tequila":26791,"##gative":26792,"##mpton":26793,"apt":26794,"hornet":26795,"immortals":26796,"##dou":26797,"asturias":26798,"cleansing":26799,"dario":26800,"##rries":26801,"##anta":26802,"etymology":26803,"servicing":26804,"zhejiang":26805,"##venor":26806,"##nx":26807,"horned":26808,"erasmus":26809,"rayon":26810,"relocating":26811,"£10":26812,"##bags":26813,"escalated":26814,"promenade":26815,"stubble":26816,"2010s":26817,"artisans":26818,"axial":26819,"liquids":26820,"mora":26821,"sho":26822,"yoo":26823,"##tsky":26824,"bundles":26825,"oldies":26826,"##nally":26827,"notification":26828,"bastion":26829,"##ths":26830,"sparkle":26831,"##lved":26832,"leash":26834,"pathogen":26835,"highs":26836,"##hmi":26837,"immature":26838,"gonzaga":26840,"ignatius":26841,"mansions":26842,"monterrey":26843,"sweets":26844,"bryson":26845,"##loe":26846,"polled":26847,"regatta":26848,"brightest":26849,"pei":26850,"rosy":26851,"squid":26852,"hatfield":26853,"payroll":26854,"addict":26855,"meath":26856,"cornerback":26857,"heaviest":26858,"lodging":26859,"##mage":26860,"capcom":26861,"rippled":26862,"##sily":26863,"barnet":26864,"mayhem":26865,"ymca":26866,"snuggled":26867,"rousseau":26868,"##cute":26869,"blanchard":26870,"fragmented":26872,"leighton":26873,"chromosomes":26874,"risking":26875,"##md":26876,"##strel":26877,"##utter":26878,"corinne":26879,"coyotes":26880,"cynical":26881,"hiroshi":26882,"yeomanry":26883,"##ractive":26884,"ebook":26885,"grading":26886,"mandela":26887,"plume":26888,"agustin":26889,"magdalene":26890,"##rkin":26891,"bea":26892,"femme":26893,"trafford":26894,"##coll":26895,"##lun":26896,"##tance":26897,"52nd":26898,"fourier":26899,"upton":26900,"##mental":26901,"camilla":26902,"gust":26903,"iihf":26904,"islamabad":26905,"longevity":26906,"##kala":26907,"feldman":26908,"netting":26909,"##rization":26910,"endeavour":26911,"foraging":26912,"mfa":26913,"orr":26914,"##open":26915,"greyish":26916,"contradiction":26917,"graz":26918,"##ruff":26919,"handicapped":26920,"marlene":26921,"tweed":26922,"oaxaca":26923,"spp":26924,"campos":26925,"miocene":26926,"pri":26927,"configured":26928,"cooks":26929,"pluto":26930,"cozy":26931,"pornographic":26932,"##entes":26933,"70th":26934,"fairness":26935,"glided":26936,"jonny":26937,"lynne":26938,"rounding":26939,"sired":26940,"##emon":26941,"##nist":26942,"remade":26943,"uncover":26944,"##mack":26945,"complied":26946,"lei":26947,"newsweek":26948,"##jured":26949,"##parts":26950,"##enting":26951,"##pg":26952,"finer":26954,"guerrillas":26955,"athenian":26956,"deng":26957,"disused":26958,"stepmother":26959,"accuse":26960,"gingerly":26961,"seduction":26962,"confronting":26964,"##walker":26965,"##going":26966,"gora":26967,"nostalgia":26968,"sabres":26969,"virginity":26970,"wrenched":26971,"##minated":26972,"syndication":26973,"wielding":26974,"eyre":26975,"##56":26976,"##gnon":26977,"##igny":26978,"behaved":26979,"taxpayer":26980,"sweeps":26981,"##growth":26982,"childless":26983,"gallant":26984,"##ywood":26985,"amplified":26986,"geraldine":26987,"scrape":26988,"##ffi":26989,"babylonian":26990,"fresco":26991,"##rdan":26992,"##kney":26993,"##position":26994,"restricting":26996,"tack":26997,"fukuoka":26998,"osborn":26999,"selector":27000,"partnering":27001,"##dlow":27002,"gnu":27004,"kia":27005,"tak":27006,"whitley":27007,"gables":27008,"##54":27009,"##mania":27010,"mri":27011,"softness":27012,"immersion":27013,"##bots":27014,"##evsky":27015,"chilling":27017,"insignificant":27018,"pcs":27019,"##uis":27020,"elites":27021,"lina":27022,"purported":27023,"supplemental":27024,"teaming":27025,"##americana":27026,"##dding":27027,"##inton":27028,"proficient":27029,"rouen":27030,"##nage":27031,"##rret":27032,"niccolo":27033,"selects":27034,"##bread":27035,"fluffy":27036,"gruff":27038,"knotted":27039,"mukherjee":27040,"polgara":27041,"thrash":27042,"nicholls":27043,"secluded":27044,"smoothing":27045,"thru":27046,"corsica":27047,"loaf":27048,"whitaker":27049,"inquiries":27050,"##rrier":27051,"##kam":27052,"indochina":27053,"marlins":27055,"myles":27056,"peking":27057,"##tea":27058,"extracts":27059,"pastry":27060,"superhuman":27061,"connacht":27062,"vogel":27063,"##ditional":27064,"##het":27065,"##udged":27066,"##lash":27067,"gloss":27068,"quarries":27069,"refit":27070,"teaser":27071,"##alic":27072,"##gaon":27073,"20s":27074,"materialized":27075,"sling":27076,"camped":27077,"pickering":27078,"tung":27079,"tracker":27080,"pursuant":27081,"##cide":27082,"cranes":27083,"soc":27084,"##cini":27085,"##typical":27086,"##viere":27087,"anhalt":27088,"overboard":27089,"workout":27090,"chores":27091,"fares":27092,"orphaned":27093,"stains":27094,"##logie":27095,"fenton":27096,"surpassing":27097,"joyah":27098,"triggers":27099,"##itte":27100,"grandmaster":27101,"##lass":27102,"##lists":27103,"clapping":27104,"fraudulent":27105,"ledger":27106,"nagasaki":27107,"##cor":27108,"##nosis":27109,"##tsa":27110,"eucalyptus":27111,"tun":27112,"##icio":27113,"##rney":27114,"##tara":27115,"dax":27116,"heroism":27117,"ina":27118,"wrexham":27119,"onboard":27120,"unsigned":27121,"##dates":27122,"moshe":27123,"galley":27124,"winnie":27125,"droplets":27126,"exiles":27127,"praises":27128,"watered":27129,"noodles":27130,"##aia":27131,"fein":27132,"adi":27133,"leland":27134,"multicultural":27135,"stink":27136,"bingo":27137,"comets":27138,"erskine":27139,"modernized":27140,"canned":27141,"constraint":27142,"domestically":27143,"chemotherapy":27144,"featherweight":27145,"stifled":27146,"##mum":27147,"darkly":27148,"irresistible":27149,"refreshing":27150,"hasty":27151,"isolate":27152,"##oys":27153,"kitchener":27154,"planners":27155,"##wehr":27156,"cages":27157,"yarn":27158,"implant":27159,"toulon":27160,"elects":27161,"childbirth":27162,"yue":27163,"##lind":27164,"##lone":27165,"cn":27166,"rightful":27167,"sportsman":27168,"junctions":27169,"remodeled":27170,"specifies":27171,"##rgh":27172,"##oons":27174,"complimented":27175,"##urgent":27176,"lister":27177,"ot":27178,"##logic":27179,"bequeathed":27180,"cheekbones":27181,"fontana":27182,"gabby":27183,"##dial":27184,"amadeus":27185,"corrugated":27186,"maverick":27187,"resented":27188,"triangles":27189,"##hered":27190,"##usly":27191,"nazareth":27192,"tyrol":27193,"assent":27195,"poorer":27196,"sectional":27197,"aegean":27198,"##cous":27199,"nylon":27201,"ghanaian":27202,"##egorical":27203,"##weig":27204,"cushions":27205,"forbid":27206,"fusiliers":27207,"obstruction":27208,"somerville":27209,"##scia":27210,"dime":27211,"earrings":27212,"elliptical":27213,"leyte":27214,"oder":27215,"polymers":27216,"timmy":27217,"atm":27218,"midtown":27219,"piloted":27220,"settles":27221,"continual":27222,"externally":27223,"mayfield":27224,"##uh":27225,"enrichment":27226,"henson":27227,"keane":27228,"persians":27229,"benji":27231,"braden":27232,"pep":27233,"##efe":27235,"contenders":27236,"pepsi":27237,"valet":27238,"##isches":27239,"##asse":27241,"##earing":27242,"goofy":27243,"stroll":27244,"##amen":27245,"authoritarian":27246,"occurrences":27247,"adversary":27248,"ahmedabad":27249,"tangent":27250,"toppled":27251,"dorchester":27252,"modernism":27254,"marxism":27255,"islamist":27256,"charlemagne":27257,"exponential":27258,"racks":27259,"unicode":27260,"brunette":27261,"mbc":27262,"pic":27263,"skirmish":27264,"##bund":27265,"##lad":27266,"##powered":27267,"##yst":27268,"hoisted":27269,"messina":27270,"shatter":27271,"##ctum":27272,"jedi":27273,"vantage":27274,"##music":27275,"##neil":27276,"clemens":27277,"mahmoud":27278,"corrupted":27279,"authentication":27280,"lowry":27281,"nils":27282,"##washed":27283,"omnibus":27284,"wounding":27285,"jillian":27286,"##itors":27287,"##opped":27288,"serialized":27289,"narcotics":27290,"handheld":27291,"##arm":27292,"##plicity":27293,"intersecting":27294,"stimulating":27295,"##onis":27296,"crate":27297,"fellowships":27298,"hemingway":27299,"casinos":27300,"climatic":27301,"fordham":27302,"copeland":27303,"drip":27304,"beatty":27305,"leaflets":27306,"robber":27307,"brothel":27308,"madeira":27309,"##hedral":27310,"sphinx":27311,"ultrasound":27312,"##vana":27313,"valor":27314,"forbade":27315,"leonid":27316,"villas":27317,"##aldo":27318,"duane":27319,"marquez":27320,"##cytes":27321,"disadvantaged":27322,"forearms":27323,"kawasaki":27324,"reacts":27325,"consular":27326,"lax":27327,"uncles":27328,"uphold":27329,"##hopper":27330,"concepcion":27331,"dorsey":27332,"lass":27333,"##izan":27334,"arching":27335,"passageway":27336,"researches":27338,"tia":27339,"internationals":27340,"##graphs":27341,"##opers":27342,"distinguishes":27343,"javanese":27344,"divert":27345,"##uven":27346,"plotted":27347,"##listic":27348,"##rwin":27349,"##erik":27350,"##tify":27351,"affirmative":27352,"signifies":27353,"validation":27354,"##bson":27355,"kari":27356,"felicity":27357,"georgina":27358,"zulu":27359,"##eros":27360,"##rained":27361,"##rath":27362,"overcoming":27363,"##dot":27364,"argyll":27365,"##rbin":27366,"chiba":27368,"ratification":27369,"windy":27370,"earls":27371,"parapet":27372,"##marks":27373,"hunan":27374,"pristine":27375,"astrid":27376,"punta":27377,"##gart":27378,"brodie":27379,"##kota":27380,"##oder":27381,"malaga":27382,"minerva":27383,"rouse":27384,"##phonic":27385,"bellowed":27386,"pagoda":27387,"portals":27388,"reclamation":27389,"##gur":27390,"##odies":27391,"##⁄₄":27392,"parentheses":27393,"quoting":27394,"allergic":27395,"palette":27396,"showcases":27397,"benefactor":27398,"heartland":27399,"nonlinear":27400,"##tness":27401,"bladed":27402,"cheerfully":27403,"scans":27404,"##ety":27405,"##hone":27406,"girlfriends":27408,"pedersen":27409,"hiram":27410,"sous":27411,"##liche":27412,"##nator":27413,"##nery":27415,"##orio":27416,"##umen":27417,"bobo":27418,"primaries":27419,"smiley":27420,"##cb":27421,"unearthed":27422,"uniformly":27423,"fis":27424,"metadata":27425,"ind":27427,"##oted":27428,"recoil":27429,"##titles":27430,"##tura":27431,"##ια":27432,"hilbert":27434,"jamestown":27435,"mcmillan":27436,"tulane":27437,"seychelles":27438,"##frid":27439,"antics":27440,"coli":27441,"fated":27442,"stucco":27443,"##grants":27444,"bulky":27446,"accolades":27447,"arrays":27448,"caledonian":27449,"carnage":27450,"optimism":27451,"puebla":27452,"##tative":27453,"##cave":27454,"enforcing":27455,"rotherham":27456,"seo":27457,"dunlop":27458,"aeronautics":27459,"chimed":27460,"incline":27461,"zoning":27462,"archduke":27463,"hellenistic":27464,"##oses":27465,"##sions":27466,"candi":27467,"thong":27468,"##ople":27469,"magnate":27470,"rustic":27471,"##rsk":27472,"projective":27473,"slant":27474,"##offs":27475,"danes":27476,"hollis":27477,"vocalists":27478,"##ammed":27479,"congenital":27480,"contend":27481,"gesellschaft":27482,"##ocating":27483,"##pressive":27484,"douglass":27485,"quieter":27486,"##cm":27487,"##kshi":27488,"howled":27489,"salim":27490,"spontaneously":27491,"townsville":27492,"buena":27493,"southport":27494,"##bold":27495,"kato":27496,"faerie":27498,"stiffly":27499,"##vus":27500,"##rled":27501,"flawless":27503,"realising":27504,"taboo":27505,"##7th":27506,"bytes":27507,"straightening":27508,"jena":27510,"##hid":27511,"##rmin":27512,"cartwright":27513,"berber":27514,"bertram":27515,"soloists":27516,"noses":27518,"coping":27520,"fission":27521,"hardin":27522,"inca":27523,"##cen":27524,"mobilized":27526,"vhf":27527,"##raf":27528,"biscuits":27529,"curate":27530,"##85":27531,"##anial":27532,"gaunt":27534,"neighbourhoods":27535,"##abas":27537,"blanca":27538,"bypassed":27539,"sockets":27540,"behold":27541,"coincidentally":27542,"##bane":27543,"nara":27544,"shave":27545,"splinter":27546,"terrific":27547,"##arion":27548,"##erian":27549,"commonplace":27550,"juris":27551,"redwood":27552,"waistband":27553,"boxed":27554,"caitlin":27555,"fingerprints":27556,"jennie":27557,"naturalized":27558,"##ired":27559,"balfour":27560,"craters":27561,"jody":27562,"bungalow":27563,"hugely":27564,"quilt":27565,"glitter":27566,"pigeons":27567,"undertaker":27568,"bulging":27569,"constrained":27570,"goo":27571,"##sil":27572,"##akh":27573,"assimilation":27574,"reworked":27575,"##person":27576,"persuasion":27577,"##pants":27578,"felicia":27579,"##cliff":27580,"##ulent":27581,"explodes":27583,"##dun":27584,"##inium":27585,"##zic":27586,"lyman":27587,"vulture":27588,"hog":27589,"overlook":27590,"begs":27591,"northwards":27592,"ow":27593,"spoil":27594,"##urer":27595,"fatima":27596,"favorably":27597,"accumulate":27598,"sargent":27599,"sorority":27600,"corresponded":27601,"dispersal":27602,"kochi":27603,"toned":27604,"##imi":27605,"##lita":27606,"internacional":27607,"newfound":27608,"##agger":27609,"##lynn":27610,"##rigue":27611,"booths":27612,"peanuts":27613,"##eborg":27614,"medicare":27615,"muriel":27616,"nur":27617,"##uram":27618,"crates":27619,"millennia":27620,"pajamas":27621,"worsened":27622,"##breakers":27623,"jimi":27624,"vanuatu":27625,"yawned":27626,"##udeau":27627,"carousel":27628,"##hony":27629,"hurdle":27630,"##ccus":27631,"##mounted":27632,"##pod":27633,"rv":27634,"##eche":27635,"airship":27636,"ambiguity":27637,"compulsion":27638,"recapture":27639,"##claiming":27640,"arthritis":27641,"##osomal":27642,"asserting":27644,"ngc":27645,"sniffing":27646,"dade":27647,"discontent":27648,"glendale":27649,"ported":27650,"##amina":27651,"defamation":27652,"rammed":27653,"##scent":27654,"fling":27655,"livingstone":27656,"##fleet":27657,"##ppy":27659,"apocalyptic":27660,"comrade":27661,"lcd":27662,"##lowe":27663,"cessna":27664,"eine":27665,"persecuted":27666,"subsistence":27667,"demi":27668,"hoop":27669,"reliefs":27670,"coptic":27672,"progressing":27673,"stemmed":27674,"perpetrators":27675,"priestess":27677,"##nio":27678,"dobson":27679,"ebony":27680,"rooster":27681,"itf":27682,"tortricidae":27683,"##bbon":27684,"##jian":27685,"cleanup":27686,"##jean":27687,"##øy":27688,"eighties":27690,"taxonomic":27691,"holiness":27692,"##hearted":27693,"##spar":27694,"antilles":27695,"showcasing":27696,"stabilized":27697,"##nb":27698,"gia":27699,"mascara":27700,"michelangelo":27701,"dawned":27702,"##uria":27703,"##vinsky":27704,"extinguished":27705,"fitz":27706,"grotesque":27707,"£100":27708,"##fera":27709,"##loid":27710,"##mous":27711,"barges":27712,"neue":27713,"throbbed":27714,"cipher":27715,"johnnie":27716,"##a1":27717,"##mpt":27718,"outburst":27719,"##swick":27720,"spearheaded":27721,"administrations":27722,"c1":27723,"heartbreak":27724,"pixels":27725,"pleasantly":27726,"##enay":27727,"lombardy":27728,"plush":27729,"##nsed":27730,"bobbie":27731,"##hly":27732,"reapers":27733,"tremor":27734,"xiang":27735,"minogue":27736,"substantive":27737,"hitch":27738,"barak":27739,"##wyl":27740,"kwan":27741,"##encia":27742,"obscene":27744,"elegance":27745,"indus":27746,"surfer":27747,"bribery":27748,"conserve":27749,"##hyllum":27750,"##masters":27751,"horatio":27752,"##fat":27753,"apes":27754,"rebound":27755,"psychotic":27756,"##pour":27757,"iteration":27758,"##mium":27759,"##vani":27760,"botanic":27761,"horribly":27762,"antiques":27763,"dispose":27764,"paxton":27765,"##hli":27766,"##wg":27767,"timeless":27768,"disregard":27770,"engraver":27771,"hounds":27772,"##bau":27773,"##version":27774,"looted":27775,"uno":27776,"facilitates":27777,"groans":27778,"masjid":27779,"rutland":27780,"antibody":27781,"disqualification":27782,"decatur":27783,"footballers":27784,"quake":27785,"slacks":27786,"48th":27787,"rein":27788,"scribe":27789,"stabilize":27790,"commits":27791,"exemplary":27792,"tho":27793,"##hort":27794,"##chison":27795,"pantry":27796,"traversed":27797,"##hiti":27798,"disrepair":27799,"identifiable":27800,"vibrated":27801,"baccalaureate":27802,"##nnis":27803,"csa":27804,"interviewing":27805,"##iensis":27806,"##raße":27807,"greaves":27808,"wealthiest":27809,"classed":27811,"jogged":27812,"£5":27813,"##58":27814,"##atal":27815,"illuminating":27816,"knicks":27817,"respecting":27818,"##uno":27819,"scrubbed":27820,"##iji":27821,"##dles":27822,"kruger":27823,"moods":27824,"growls":27825,"raider":27826,"silvia":27827,"chefs":27828,"kam":27829,"vr":27830,"cree":27831,"percival":27832,"##terol":27833,"gunter":27834,"counterattack":27835,"defiant":27836,"henan":27837,"ze":27838,"##rasia":27839,"##riety":27840,"equivalence":27841,"submissions":27842,"##fra":27843,"##thor":27844,"bautista":27845,"mechanically":27846,"##heater":27847,"cornice":27848,"herbal":27849,"templar":27850,"##mering":27851,"outputs":27852,"ruining":27853,"ligand":27854,"renumbered":27855,"extravagant":27856,"mika":27857,"blockbuster":27858,"eta":27859,"insurrection":27860,"##ilia":27861,"darkening":27862,"ferocious":27863,"pianos":27864,"strife":27865,"kinship":27866,"##aer":27867,"melee":27868,"##anor":27869,"##iste":27870,"##may":27871,"##oue":27872,"decidedly":27873,"weep":27874,"##jad":27875,"##missive":27876,"##ppel":27877,"puget":27879,"unease":27880,"##gnant":27881,"hammering":27883,"kassel":27884,"ob":27885,"wessex":27886,"##lga":27887,"bromwich":27888,"egan":27889,"paranoia":27890,"utilization":27891,"##atable":27892,"##idad":27893,"contradictory":27894,"provoke":27895,"##ols":27896,"##ouring":27897,"##tangled":27898,"knesset":27899,"##very":27900,"##lette":27901,"plumbing":27902,"##sden":27903,"##¹":27904,"greensboro":27905,"occult":27906,"sniff":27907,"zev":27909,"beaming":27910,"gamer":27911,"haggard":27912,"mahal":27913,"##olt":27914,"##pins":27915,"mendes":27916,"utmost":27917,"briefing":27918,"gunnery":27919,"##gut":27920,"##pher":27921,"##zh":27922,"##rok":27923,"khalifa":27925,"sonya":27926,"##boot":27927,"principals":27928,"urbana":27929,"wiring":27930,"##liffe":27931,"##minating":27932,"##rrado":27933,"dahl":27934,"nyu":27935,"skepticism":27936,"np":27937,"townspeople":27938,"ithaca":27939,"lobster":27940,"somethin":27941,"##fur":27942,"##arina":27943,"##−1":27944,"freighter":27945,"zimmerman":27946,"biceps":27947,"contractual":27948,"##herton":27949,"amend":27950,"hurrying":27951,"subconscious":27952,"##anal":27953,"meng":27955,"clermont":27956,"spawning":27957,"##eia":27958,"##lub":27959,"dignitaries":27960,"impetus":27961,"snacks":27962,"spotting":27963,"twigs":27964,"##bilis":27965,"##cz":27966,"##ouk":27967,"libertadores":27968,"nic":27969,"skylar":27970,"##aina":27971,"##firm":27972,"gustave":27973,"asean":27974,"##anum":27975,"dieter":27976,"legislatures":27977,"flirt":27978,"bromley":27979,"trolls":27980,"umar":27981,"##bbies":27982,"##tyle":27983,"blah":27984,"parc":27985,"bridgeport":27986,"crank":27987,"negligence":27988,"##nction":27989,"46th":27990,"constantin":27991,"molded":27992,"bandages":27993,"seriousness":27994,"00pm":27995,"siegel":27996,"carpets":27997,"compartments":27998,"upbeat":27999,"statehood":28000,"##dner":28001,"##edging":28002,"marko":28003,"platt":28005,"##hane":28006,"paving":28007,"##iy":28008,"abbess":28010,"impatience":28011,"limousine":28012,"nbl":28013,"##talk":28014,"lucille":28016,"mojo":28017,"nightfall":28018,"robbers":28019,"##nais":28020,"karel":28021,"brisk":28022,"calves":28023,"replicate":28024,"ascribed":28025,"telescopes":28026,"##olf":28027,"intimidated":28028,"##reen":28029,"ballast":28030,"specialization":28031,"##sit":28032,"aerodynamic":28033,"caliphate":28034,"rainer":28035,"visionary":28036,"##arded":28037,"epsilon":28038,"##aday":28039,"##onte":28040,"aggregation":28041,"auditory":28042,"boosted":28043,"reunification":28044,"kathmandu":28045,"loco":28046,"robyn":28047,"acknowledges":28049,"appointing":28050,"humanoid":28051,"newell":28052,"redeveloped":28053,"restraints":28054,"##tained":28055,"barbarians":28056,"chopper":28057,"italiana":28059,"##lez":28060,"##lho":28061,"investigates":28062,"wrestlemania":28063,"##anies":28064,"##bib":28065,"##falls":28067,"creaked":28068,"dragoons":28069,"gravely":28070,"minions":28071,"stupidity":28072,"volley":28073,"##harat":28074,"##week":28075,"musik":28076,"##eries":28077,"##uously":28078,"fungal":28079,"massimo":28080,"semantics":28081,"malvern":28082,"##ahl":28083,"##pee":28084,"discourage":28085,"embryo":28086,"imperialism":28087,"1910s":28088,"profoundly":28089,"##ddled":28090,"jiangsu":28091,"sparkled":28092,"stat":28093,"##holz":28094,"sweatshirt":28095,"tobin":28096,"##iction":28097,"sneered":28098,"##cheon":28099,"##oit":28100,"brit":28101,"causal":28102,"smyth":28103,"##neuve":28104,"diffuse":28105,"perrin":28106,"silvio":28107,"##ipes":28108,"##recht":28109,"detonated":28110,"iqbal":28111,"selma":28112,"##nism":28113,"##zumi":28114,"roasted":28115,"##riders":28116,"tay":28117,"##ados":28118,"##mament":28119,"##mut":28120,"##rud":28121,"completes":28123,"nipples":28124,"cfa":28125,"flavour":28126,"hirsch":28127,"##laus":28128,"calderon":28129,"sneakers":28130,"moravian":28131,"##ksha":28132,"rq":28134,"##imeters":28136,"bodo":28137,"##isance":28138,"##pre":28139,"##ronia":28140,"anatomical":28141,"excerpt":28142,"##lke":28143,"dh":28144,"kunst":28145,"##tablished":28146,"##scoe":28147,"biomass":28148,"panted":28149,"unharmed":28150,"gael":28151,"housemates":28152,"montpellier":28153,"##59":28154,"coa":28155,"rodents":28156,"tonic":28157,"hickory":28158,"singleton":28159,"##taro":28160,"aldo":28163,"breaststroke":28164,"dempsey":28165,"och":28166,"rocco":28167,"##cuit":28168,"merton":28169,"dissemination":28170,"midsummer":28171,"serials":28172,"##idi":28173,"haji":28174,"polynomials":28175,"##rdon":28176,"gs":28177,"enoch":28178,"prematurely":28179,"shutter":28180,"taunton":28181,"£3":28182,"##grating":28183,"##inates":28184,"archangel":28185,"harassed":28186,"##asco":28187,"archway":28189,"dazzling":28190,"##ecin":28191,"sumo":28193,"wat":28194,"##kovich":28195,"honneur":28197,"##ently":28198,"##nostic":28199,"##ttal":28200,"##idon":28201,"blogger":28205,"rents":28206,"##gnan":28207,"hires":28208,"##ikh":28209,"##dant":28210,"howie":28211,"##rons":28212,"handler":28213,"retracted":28214,"shocks":28215,"arun":28217,"duluth":28218,"kepler":28219,"trumpeter":28220,"##lary":28221,"peeking":28222,"seasoned":28223,"trooper":28224,"##mara":28225,"laszlo":28226,"##iciencies":28227,"##rti":28228,"heterosexual":28229,"##inatory":28230,"##ssion":28231,"indira":28232,"jogging":28233,"##inga":28234,"##lism":28235,"beit":28236,"dissatisfaction":28237,"malice":28238,"##ately":28239,"nedra":28240,"peeling":28241,"##rgeon":28242,"47th":28243,"stadiums":28244,"vertigo":28246,"##ains":28247,"iced":28248,"restroom":28249,"##plify":28250,"##tub":28251,"illustrating":28252,"pear":28253,"##chner":28254,"##sibility":28255,"inorganic":28256,"rappers":28257,"receipts":28258,"watery":28259,"##kura":28260,"lucinda":28261,"##oulos":28262,"reintroduced":28263,"##8th":28264,"##tched":28265,"gracefully":28266,"saxons":28267,"nutritional":28268,"wastewater":28269,"rained":28270,"favourites":28271,"bedrock":28272,"fisted":28273,"hallways":28274,"likeness":28275,"upscale":28276,"##lateral":28277,"blinds":28279,"prequel":28280,"##pps":28281,"##tama":28282,"deter":28283,"humiliating":28284,"restraining":28285,"tn":28286,"vents":28287,"laundering":28289,"recess":28290,"rosary":28291,"tractors":28292,"coulter":28293,"federer":28294,"##ifiers":28295,"##plin":28296,"persistence":28297,"##quitable":28298,"geschichte":28299,"pendulum":28300,"quakers":28301,"##beam":28302,"bassett":28303,"pictorial":28304,"buffet":28305,"koln":28306,"##sitor":28307,"drills":28308,"reciprocal":28309,"shooters":28310,"##57":28311,"##cton":28312,"##tees":28313,"converge":28314,"pip":28315,"dmitri":28316,"donnelly":28317,"yamamoto":28318,"aqua":28319,"azores":28320,"demographics":28321,"hypnotic":28322,"spitfire":28323,"suspend":28324,"wryly":28325,"roderick":28326,"##rran":28327,"sebastien":28328,"##asurable":28329,"mavericks":28330,"##fles":28331,"##200":28332,"himalayan":28333,"prodigy":28334,"##iance":28335,"transvaal":28336,"demonstrators":28337,"handcuffs":28338,"dodged":28339,"mcnamara":28340,"sublime":28341,"crazed":28343,"##efined":28344,"##till":28345,"ivo":28346,"pondered":28347,"reconciled":28348,"shrill":28349,"sava":28350,"##duk":28351,"bal":28352,"cad":28353,"heresy":28354,"jaipur":28355,"goran":28356,"##nished":28357,"lux":28359,"shelly":28360,"whitehall":28361,"##hre":28362,"israelis":28363,"peacekeeping":28364,"##wled":28365,"demetrius":28367,"ousted":28368,"##arians":28369,"##zos":28370,"beale":28371,"anwar":28372,"backstroke":28373,"raged":28374,"shrinking":28375,"cremated":28376,"##yck":28377,"benign":28378,"towing":28379,"wadi":28380,"darmstadt":28381,"landfill":28382,"parana":28383,"soothe":28384,"colleen":28385,"sidewalks":28386,"mayfair":28387,"tumble":28388,"hepatitis":28389,"ferrer":28390,"superstructure":28391,"##gingly":28392,"##urse":28393,"##wee":28394,"anthropological":28395,"translators":28396,"##mies":28397,"closeness":28398,"hooves":28399,"##pw":28400,"mondays":28401,"##roll":28402,"##vita":28403,"landscaping":28404,"##urized":28405,"purification":28406,"sock":28407,"thorns":28408,"thwarted":28409,"jalan":28410,"tiberius":28411,"##taka":28412,"saline":28413,"##rito":28414,"confidently":28415,"khyber":28416,"sculptors":28417,"##ij":28418,"brahms":28419,"hammersmith":28420,"inspectors":28421,"battista":28422,"fivb":28423,"fragmentation":28424,"hackney":28425,"##uls":28426,"arresting":28427,"exercising":28428,"antoinette":28429,"bedfordshire":28430,"##zily":28431,"dyed":28432,"##hema":28433,"racetrack":28435,"variability":28436,"##tique":28437,"austrians":28439,"deteriorating":28440,"madman":28441,"theorists":28442,"aix":28443,"lehman":28444,"weathered":28445,"decreed":28447,"eruptions":28448,"flaw":28450,"quinlan":28451,"sorbonne":28452,"flutes":28453,"nunez":28454,"adored":28456,"downwards":28457,"fable":28458,"rasped":28459,"moritz":28461,"mouthful":28462,"renegade":28463,"shivers":28464,"stunts":28465,"dysfunction":28466,"restrain":28467,"translit":28468,"pancakes":28470,"##avio":28471,"##cision":28472,"##tray":28473,"vial":28475,"##lden":28476,"bain":28477,"##maid":28478,"##oxide":28479,"chihuahua":28480,"malacca":28481,"vimes":28482,"##rba":28483,"##rnier":28484,"donnie":28486,"plaques":28487,"##ually":28488,"bangs":28490,"floppy":28491,"huntsville":28492,"loretta":28493,"nikolay":28494,"##otte":28495,"eater":28496,"handgun":28497,"ubiquitous":28498,"##hett":28499,"eras":28500,"zodiac":28501,"##omorphic":28503,"1820s":28504,"##zog":28505,"cochran":28506,"##bula":28507,"##lithic":28508,"warring":28509,"##rada":28510,"dalai":28511,"excused":28512,"blazers":28513,"mcconnell":28514,"reeling":28515,"bot":28516,"este":28517,"##abi":28518,"geese":28519,"hoax":28520,"taxon":28521,"##bla":28522,"guitarists":28523,"##icon":28524,"condemning":28525,"hunts":28526,"inversion":28527,"moffat":28528,"taekwondo":28529,"##lvis":28530,"stammered":28532,"##rest":28533,"##rzy":28534,"sousa":28535,"fundraiser":28536,"marylebone":28537,"navigable":28538,"uptown":28539,"cabbage":28540,"daniela":28541,"salman":28542,"shitty":28543,"whimper":28544,"##kian":28545,"##utive":28546,"programmers":28547,"protections":28548,"rm":28549,"##rmi":28550,"##rued":28551,"forceful":28552,"##enes":28553,"fuss":28554,"##tao":28555,"##wash":28556,"brat":28557,"oppressive":28558,"reykjavik":28559,"spartak":28560,"ticking":28561,"##inkles":28562,"##kiewicz":28563,"adolph":28564,"horst":28565,"maui":28566,"protege":28567,"straighten":28568,"cpc":28569,"landau":28570,"concourse":28571,"clements":28572,"resultant":28573,"##ando":28574,"imaginative":28575,"joo":28576,"reactivated":28577,"##rem":28578,"##ffled":28579,"##uising":28580,"consultative":28581,"##guide":28582,"flop":28583,"kaitlyn":28584,"mergers":28585,"parenting":28586,"somber":28587,"##vron":28588,"supervise":28589,"vidhan":28590,"##imum":28591,"courtship":28592,"exemplified":28593,"harmonies":28594,"medallist":28595,"refining":28596,"##rrow":28597,"##ка":28598,"amara":28599,"##hum":28600,"goalscorer":28602,"sited":28603,"overshadowed":28604,"rohan":28605,"displeasure":28606,"secretive":28607,"multiplied":28608,"osman":28609,"##orth":28610,"engravings":28611,"padre":28612,"##kali":28613,"##veda":28614,"miniatures":28615,"mis":28616,"##yala":28617,"clap":28618,"pali":28619,"rook":28620,"##cana":28621,"57th":28623,"antennae":28624,"astro":28625,"oskar":28626,"bulldog":28628,"crotch":28629,"hackett":28630,"yucatan":28631,"##sure":28632,"amplifiers":28633,"brno":28634,"ferrara":28635,"migrating":28636,"##gree":28637,"thanking":28638,"turing":28639,"##eza":28640,"mccann":28641,"ting":28642,"andersson":28643,"onslaught":28644,"gaines":28645,"ganga":28646,"incense":28647,"standardization":28648,"##mation":28649,"sentai":28650,"scuba":28651,"stuffing":28652,"turquoise":28653,"waivers":28654,"alloys":28655,"##vitt":28656,"regaining":28657,"vaults":28658,"##clops":28659,"##gizing":28660,"digger":28661,"furry":28662,"memorabilia":28663,"probing":28664,"##iad":28665,"payton":28666,"rec":28667,"deutschland":28668,"filippo":28669,"opaque":28670,"seamen":28671,"zenith":28672,"afrikaans":28673,"##filtration":28674,"disciplined":28675,"inspirational":28676,"##merie":28677,"banco":28678,"confuse":28679,"grafton":28680,"tod":28681,"##dgets":28682,"championed":28683,"simi":28684,"anomaly":28685,"biplane":28686,"##ceptive":28687,"electrode":28688,"##para":28689,"cleavage":28691,"crossbow":28692,"swirl":28693,"informant":28694,"##lars":28695,"##osta":28696,"afi":28697,"bonfire":28698,"spec":28699,"##oux":28700,"lakeside":28701,"slump":28702,"##culus":28703,"##lais":28704,"##qvist":28705,"##rrigan":28706,"facades":28708,"borg":28709,"inwardly":28710,"cervical":28711,"xl":28712,"pointedly":28713,"050":28714,"stabilization":28715,"##odon":28716,"chests":28717,"hacked":28719,"ctv":28720,"orthogonal":28721,"suzy":28722,"##lastic":28723,"gaulle":28724,"jacobite":28725,"rearview":28726,"##cam":28727,"##erted":28728,"ashby":28729,"##drik":28730,"##igate":28731,"##mise":28732,"##zbek":28733,"affectionately":28734,"canine":28735,"disperse":28736,"latham":28737,"##istles":28738,"##ivar":28739,"spielberg":28740,"##orin":28741,"##idium":28742,"ezekiel":28743,"cid":28744,"##sg":28745,"durga":28746,"middletown":28747,"##cina":28748,"customized":28749,"frontiers":28750,"harden":28751,"##etano":28752,"##zzy":28753,"bolsheviks":28755,"##66":28756,"coloration":28757,"yoko":28758,"##bedo":28759,"briefs":28760,"slabs":28761,"debra":28762,"liquidation":28763,"plumage":28764,"##oin":28765,"blossoms":28766,"dementia":28767,"subsidy":28768,"proctor":28770,"relational":28771,"jerseys":28772,"parochial":28773,"ter":28774,"##ici":28775,"esa":28776,"peshawar":28777,"cavalier":28778,"loren":28779,"cpi":28780,"idiots":28781,"shamrock":28782,"dutton":28784,"malabar":28785,"mustache":28786,"##endez":28787,"##ocytes":28788,"referencing":28789,"terminates":28790,"marche":28791,"yarmouth":28792,"##sop":28793,"acton":28794,"mated":28795,"seton":28796,"subtly":28797,"baptised":28798,"beige":28799,"extremes":28800,"jolted":28801,"kristina":28802,"telecast":28803,"##actic":28804,"safeguard":28805,"waldo":28806,"##baldi":28807,"##bular":28808,"endeavors":28809,"sloppy":28810,"subterranean":28811,"##ensburg":28812,"##itung":28813,"delicately":28814,"pigment":28815,"tq":28816,"##scu":28817,"##ound":28819,"collisions":28820,"coveted":28821,"herds":28822,"##personal":28823,"##meister":28824,"##nberger":28825,"chopra":28826,"##ricting":28827,"abnormalities":28828,"defective":28829,"galician":28830,"lucie":28831,"##dilly":28832,"alligator":28833,"likened":28834,"##genase":28835,"burundi":28836,"clears":28837,"complexion":28838,"derelict":28839,"deafening":28840,"diablo":28841,"fingered":28842,"champaign":28843,"dogg":28844,"enlist":28845,"isotope":28846,"labeling":28847,"mrna":28848,"##erre":28849,"brilliance":28850,"marvelous":28851,"##ayo":28852,"crawley":28854,"ether":28855,"footed":28856,"dwellers":28857,"deserts":28858,"hamish":28859,"rubs":28860,"warlock":28861,"skimmed":28862,"##lizer":28863,"buick":28865,"embark":28866,"heraldic":28867,"irregularities":28868,"##ajan":28869,"kiara":28870,"##kulam":28871,"##ieg":28872,"antigen":28873,"kowalski":28874,"##lge":28875,"oakley":28876,"visitation":28877,"##mbit":28878,"vt":28879,"##suit":28880,"murderers":28882,"##miento":28883,"##rites":28884,"chimneys":28885,"##sling":28886,"condemn":28887,"custer":28888,"exchequer":28889,"havre":28890,"##ghi":28891,"fluctuations":28892,"##rations":28893,"dfb":28894,"hendricks":28895,"vaccines":28896,"##tarian":28897,"nietzsche":28898,"biking":28899,"juicy":28900,"##duced":28901,"brooding":28902,"scrolling":28903,"selangor":28904,"##ragan":28905,"annum":28907,"boomed":28908,"seminole":28909,"sugarcane":28910,"##dna":28911,"departmental":28912,"dismissing":28913,"innsbruck":28914,"arteries":28915,"ashok":28916,"batavia":28917,"daze":28918,"kun":28919,"overtook":28920,"##rga":28921,"##tlan":28922,"beheaded":28923,"gaddafi":28924,"holm":28925,"electronically":28926,"faulty":28927,"galilee":28928,"fractures":28929,"kobayashi":28930,"##lized":28931,"gunmen":28932,"magma":28933,"aramaic":28934,"mala":28935,"eastenders":28936,"inference":28937,"messengers":28938,"bf":28939,"##qu":28940,"bathrooms":28942,"##vere":28943,"flashbacks":28945,"ideally":28946,"misunderstood":28947,"##jali":28948,"##weather":28949,"mendez":28950,"##grounds":28951,"uncanny":28953,"##iii":28954,"friendships":28956,"##nbc":28957,"sacrament":28958,"accommodated":28959,"reiterated":28960,"logistical":28961,"pebbles":28962,"thumped":28963,"##escence":28964,"administering":28965,"decrees":28966,"drafts":28967,"##flight":28968,"##cased":28969,"##tula":28970,"futuristic":28971,"picket":28972,"intimidation":28973,"winthrop":28974,"##fahan":28975,"interfered":28976,"afar":28978,"francoise":28979,"morally":28980,"uta":28981,"cochin":28982,"croft":28983,"dwarfs":28984,"##bruck":28985,"##dents":28986,"##nami":28987,"biker":28988,"##hner":28989,"##meral":28990,"nano":28991,"##isen":28992,"##ometric":28993,"##pres":28994,"##ан":28995,"brightened":28996,"meek":28997,"parcels":28998,"securely":28999,"gunners":29000,"##jhl":29001,"##zko":29002,"agile":29003,"hysteria":29004,"##lten":29005,"##rcus":29006,"bukit":29007,"champs":29008,"chevy":29009,"cuckoo":29010,"leith":29011,"sadler":29012,"theologians":29013,"welded":29014,"##section":29015,"jj":29017,"plurality":29018,"xander":29019,"##rooms":29020,"##formed":29021,"shredded":29022,"temps":29023,"intimately":29024,"pau":29025,"tormented":29026,"##lok":29027,"##stellar":29028,"charred":29030,"ems":29031,"essen":29032,"##mmel":29033,"alarms":29034,"spraying":29035,"ascot":29036,"blooms":29037,"twinkle":29038,"##abia":29039,"##apes":29040,"internment":29041,"obsidian":29042,"##chaft":29043,"snoop":29044,"##dav":29045,"##ooping":29046,"malibu":29047,"##tension":29048,"quiver":29049,"##itia":29050,"hays":29051,"mcintosh":29052,"travers":29053,"walsall":29054,"##ffie":29055,"beverley":29057,"schwarz":29058,"plunging":29059,"structurally":29060,"m3":29061,"rosenthal":29062,"vikram":29063,"##tsk":29064,"ghz":29066,"##onda":29067,"##tiv":29068,"chalmers":29069,"groningen":29070,"pew":29071,"reckon":29072,"unicef":29073,"##rvis":29074,"55th":29075,"##gni":29076,"sulawesi":29078,"avila":29079,"cai":29080,"metaphysical":29081,"screwing":29082,"turbulence":29083,"##mberg":29084,"augusto":29085,"samba":29086,"56th":29087,"baffled":29088,"momentary":29089,"toxin":29090,"##urian":29091,"##wani":29092,"aachen":29093,"condoms":29094,"dali":29095,"steppe":29096,"##3d":29097,"##app":29098,"##oed":29099,"##year":29100,"adolescence":29101,"dauphin":29102,"electrically":29103,"inaccessible":29104,"microscopy":29105,"nikita":29106,"##ega":29107,"atv":29108,"##cel":29109,"##enter":29110,"##oles":29111,"##oteric":29112,"##ы":29113,"accountants":29114,"punishments":29115,"wrongly":29116,"bribes":29117,"adventurous":29118,"clinch":29119,"flinders":29120,"southland":29121,"##hem":29122,"##kata":29123,"gough":29124,"##ciency":29125,"lads":29126,"soared":29127,"##ה":29128,"undergoes":29129,"deformation":29130,"outlawed":29131,"rubbish":29132,"##arus":29133,"##mussen":29134,"##nidae":29135,"##rzburg":29136,"arcs":29137,"##ingdon":29138,"##tituted":29139,"wheelbase":29141,"wheeling":29142,"bombardier":29143,"campground":29144,"zebra":29145,"##lices":29146,"##oj":29147,"##bain":29148,"lullaby":29149,"##ecure":29150,"donetsk":29151,"wylie":29152,"grenada":29153,"##arding":29154,"##ης":29155,"squinting":29156,"eireann":29157,"opposes":29158,"##andra":29159,"maximal":29160,"runes":29161,"##broken":29162,"##cuting":29163,"##iface":29164,"##ror":29165,"##rosis":29166,"additive":29167,"britney":29168,"adultery":29169,"triggering":29170,"##drome":29171,"detrimental":29172,"aarhus":29173,"containment":29174,"jc":29175,"swapped":29176,"vichy":29177,"##ioms":29178,"madly":29179,"##oric":29180,"##rag":29181,"brant":29182,"##ckey":29183,"##trix":29184,"broughton":29187,"rustling":29188,"##stems":29189,"##uder":29190,"asbestos":29191,"mentoring":29192,"##nivorous":29193,"finley":29194,"leaps":29195,"##isan":29196,"apical":29197,"pry":29198,"slits":29199,"substitutes":29200,"##dict":29201,"intuitive":29202,"fantasia":29203,"insistent":29204,"unreasonable":29205,"##igen":29206,"##vna":29207,"domed":29208,"hannover":29209,"margot":29210,"ponder":29211,"##zziness":29212,"impromptu":29213,"jian":29214,"lc":29215,"rampage":29216,"stemming":29217,"##eft":29218,"andrey":29219,"gerais":29220,"whichever":29221,"amnesia":29222,"appropriated":29223,"anzac":29224,"clicks":29225,"modifying":29226,"ultimatum":29227,"cambrian":29228,"maids":29229,"verve":29230,"yellowstone":29231,"##mbs":29232,"conservatoire":29233,"##scribe":29234,"adherence":29235,"dinners":29236,"spectra":29237,"imperfect":29238,"mysteriously":29239,"sidekick":29240,"tatar":29241,"tuba":29242,"##aks":29243,"##ifolia":29244,"distrust":29245,"##athan":29246,"##zle":29247,"c2":29248,"ronin":29249,"zac":29250,"##pse":29251,"celaena":29252,"instrumentalist":29253,"scents":29254,"skopje":29255,"##mbling":29256,"comical":29257,"compensated":29258,"vidal":29259,"condor":29260,"intersect":29261,"jingle":29262,"wavelengths":29263,"##urrent":29264,"mcqueen":29265,"##izzly":29266,"carp":29267,"weasel":29268,"kanye":29270,"militias":29271,"postdoctoral":29272,"eugen":29273,"gunslinger":29274,"##ɛ":29275,"faux":29276,"hospice":29277,"##for":29278,"appalled":29279,"derivation":29280,"dwarves":29281,"##elis":29282,"dilapidated":29283,"##folk":29284,"astoria":29285,"philology":29286,"##lwyn":29287,"##otho":29288,"##saka":29289,"inducing":29290,"philanthropy":29291,"##bf":29292,"##itative":29293,"geek":29294,"markedly":29295,"sql":29296,"##yce":29297,"bessie":29298,"indices":29299,"rn":29300,"##flict":29301,"frowns":29303,"resolving":29304,"weightlifting":29305,"tugs":29306,"cleric":29307,"contentious":29308,"mania":29310,"rms":29311,"##miya":29312,"##reate":29313,"##ruck":29314,"##tucket":29315,"bien":29316,"eels":29317,"marek":29318,"##ayton":29319,"##cence":29320,"discreet":29321,"unofficially":29322,"##ife":29323,"leaks":29324,"##bber":29325,"dung":29328,"compressor":29329,"hillsborough":29330,"pandit":29331,"shillings":29332,"distal":29333,"##skin":29334,"##tat":29336,"##you":29337,"nosed":29338,"##nir":29339,"mangrove":29340,"undeveloped":29341,"##idia":29342,"textures":29343,"##inho":29344,"##500":29345,"##rise":29346,"ae":29347,"irritating":29348,"nay":29349,"amazingly":29350,"bancroft":29351,"apologetic":29352,"compassionate":29353,"kata":29354,"symphonies":29355,"##lovic":29356,"airspace":29357,"##lch":29358,"gifford":29360,"precautions":29361,"fulfillment":29362,"sevilla":29363,"vulgar":29364,"martinique":29365,"##urities":29366,"looting":29367,"piccolo":29368,"tidy":29369,"##dermott":29370,"quadrant":29371,"armchair":29372,"incomes":29373,"mathematicians":29374,"stampede":29375,"nilsson":29376,"##inking":29377,"##scan":29378,"foo":29379,"quarterfinal":29380,"##ostal":29381,"shang":29382,"shouldered":29383,"squirrels":29384,"##owe":29385,"vinegar":29387,"##bner":29388,"##rchy":29389,"##systems":29390,"delaying":29391,"##trics":29392,"ars":29393,"dwyer":29394,"rhapsody":29395,"sponsoring":29396,"##gration":29397,"bipolar":29398,"cinder":29399,"starters":29400,"##olio":29401,"##urst":29402,"signage":29404,"##nty":29405,"aground":29406,"figurative":29407,"mons":29408,"acquaintances":29409,"duets":29410,"erroneously":29411,"soyuz":29412,"elliptic":29413,"recreated":29414,"##cultural":29415,"##quette":29416,"##ssed":29417,"##tma":29418,"##zcz":29419,"moderator":29420,"scares":29421,"##itaire":29422,"##stones":29423,"##udence":29424,"juniper":29425,"sighting":29426,"##just":29427,"##nsen":29428,"britten":29429,"calabria":29430,"ry":29431,"bop":29432,"cramer":29433,"forsyth":29434,"stillness":29435,"##л":29436,"airmen":29437,"gathers":29438,"unfit":29439,"##umber":29440,"##upt":29441,"taunting":29442,"##rip":29443,"seeker":29444,"streamlined":29445,"##bution":29446,"holster":29447,"schumann":29448,"tread":29449,"vox":29450,"##gano":29451,"##onzo":29452,"strive":29453,"dil":29454,"reforming":29455,"covent":29456,"newbury":29457,"predicting":29458,"##orro":29459,"decorate":29460,"tre":29461,"##puted":29462,"andover":29463,"ie":29464,"asahi":29465,"dept":29466,"dunkirk":29467,"gills":29468,"##tori":29469,"buren":29470,"huskies":29471,"##stis":29472,"##stov":29473,"abstracts":29474,"bets":29475,"loosen":29476,"##opa":29477,"yearning":29479,"##glio":29480,"##sir":29481,"berman":29482,"effortlessly":29483,"enamel":29484,"napoli":29485,"persist":29486,"##peration":29487,"##uez":29488,"attache":29489,"elisa":29490,"b1":29491,"invitations":29492,"##kic":29493,"accelerating":29494,"reindeer":29495,"boardwalk":29496,"clutches":29497,"nelly":29498,"polka":29499,"starbucks":29500,"##kei":29501,"adamant":29502,"huey":29503,"lough":29504,"unbroken":29505,"adventurer":29506,"embroidery":29507,"inspecting":29508,"stanza":29509,"##ducted":29510,"naia":29511,"taluka":29512,"##pone":29513,"##roids":29514,"chases":29515,"deprivation":29516,"florian":29517,"##jing":29518,"##ppet":29519,"earthly":29520,"##lib":29521,"##ssee":29522,"colossal":29523,"foreigner":29524,"vet":29525,"freaks":29526,"patrice":29527,"rosewood":29528,"triassic":29529,"upstate":29530,"##pkins":29531,"dominates":29532,"ata":29533,"chants":29534,"ks":29535,"vo":29536,"##400":29537,"##bley":29538,"##raya":29539,"##rmed":29540,"agra":29542,"infiltrate":29543,"##ailing":29544,"##ilation":29545,"##tzer":29546,"##uppe":29547,"##werk":29548,"binoculars":29549,"enthusiast":29550,"fujian":29551,"squeak":29552,"##avs":29553,"abolitionist":29554,"almeida":29555,"boredom":29556,"hampstead":29557,"marsden":29558,"rations":29559,"##ands":29560,"inflated":29561,"bonuses":29563,"rosalie":29564,"patna":29565,"##rco":29566,"detachments":29568,"penitentiary":29569,"54th":29570,"flourishing":29571,"woolf":29572,"##dion":29573,"##etched":29574,"papyrus":29575,"##lster":29576,"##nsor":29577,"##toy":29578,"bobbed":29579,"dismounted":29580,"endelle":29581,"inhuman":29582,"motorola":29583,"tbs":29584,"wince":29585,"wreath":29586,"##ticus":29587,"hideout":29588,"inspections":29589,"sanjay":29590,"disgrace":29591,"infused":29592,"pudding":29593,"stalks":29594,"##urbed":29595,"arsenic":29596,"leases":29597,"##hyl":29598,"##rrard":29599,"collarbone":29600,"##waite":29601,"##wil":29602,"dowry":29603,"##bant":29604,"##edance":29605,"genealogical":29606,"nitrate":29607,"salamanca":29608,"scandals":29609,"thyroid":29610,"necessitated":29611,"##!":29612,"##\"":29613,"###":29614,"##$":29615,"##%":29616,"##&":29617,"##'":29618,"##(":29619,"##)":29620,"##*":29621,"##+":29622,"##,":29623,"##-":29624,"##.":29625,"##/":29626,"##:":29627,"##;":29628,"##<":29629,"##=":29630,"##>":29631,"##?":29632,"##@":29633,"##[":29634,"##\\":29635,"##]":29636,"##^":29637,"##_":29638,"##`":29639,"##{":29640,"##|":29641,"##}":29642,"##~":29643,"##¡":29644,"##¢":29645,"##£":29646,"##¤":29647,"##¥":29648,"##¦":29649,"##§":29650,"##¨":29651,"##©":29652,"##ª":29653,"##«":29654,"##¬":29655,"##®":29656,"##±":29657,"##´":29658,"##µ":29659,"##¶":29660,"##·":29661,"##º":29662,"##»":29663,"##¼":29664,"##¾":29665,"##¿":29666,"##æ":29667,"##ð":29668,"##÷":29669,"##þ":29670,"##đ":29671,"##ħ":29672,"##ŋ":29673,"##œ":29674,"##ƒ":29675,"##ɐ":29676,"##ɑ":29677,"##ɒ":29678,"##ɔ":29679,"##ɕ":29680,"##ə":29681,"##ɡ":29682,"##ɣ":29683,"##ɨ":29684,"##ɪ":29685,"##ɫ":29686,"##ɬ":29687,"##ɯ":29688,"##ɲ":29689,"##ɴ":29690,"##ɹ":29691,"##ɾ":29692,"##ʀ":29693,"##ʁ":29694,"##ʂ":29695,"##ʃ":29696,"##ʉ":29697,"##ʊ":29698,"##ʋ":29699,"##ʌ":29700,"##ʎ":29701,"##ʐ":29702,"##ʑ":29703,"##ʒ":29704,"##ʔ":29705,"##ʰ":29706,"##ʲ":29707,"##ʳ":29708,"##ʷ":29709,"##ʸ":29710,"##ʻ":29711,"##ʼ":29712,"##ʾ":29713,"##ʿ":29714,"##ˈ":29715,"##ˡ":29716,"##ˢ":29717,"##ˣ":29718,"##ˤ":29719,"##β":29720,"##γ":29721,"##δ":29722,"##ε":29723,"##ζ":29724,"##θ":29725,"##κ":29726,"##λ":29727,"##μ":29728,"##ξ":29729,"##ο":29730,"##π":29731,"##ρ":29732,"##σ":29733,"##τ":29734,"##υ":29735,"##φ":29736,"##χ":29737,"##ψ":29738,"##ω":29739,"##б":29740,"##г":29741,"##д":29742,"##ж":29743,"##з":29744,"##м":29745,"##п":29746,"##с":29747,"##у":29748,"##ф":29749,"##х":29750,"##ц":29751,"##ч":29752,"##ш":29753,"##щ":29754,"##ъ":29755,"##э":29756,"##ю":29757,"##ђ":29758,"##є":29759,"##і":29760,"##ј":29761,"##љ":29762,"##њ":29763,"##ћ":29764,"##ӏ":29765,"##ա":29766,"##բ":29767,"##գ":29768,"##դ":29769,"##ե":29770,"##թ":29771,"##ի":29772,"##լ":29773,"##կ":29774,"##հ":29775,"##մ":29776,"##յ":29777,"##ն":29778,"##ո":29779,"##պ":29780,"##ս":29781,"##վ":29782,"##տ":29783,"##ր":29784,"##ւ":29785,"##ք":29786,"##־":29787,"##א":29788,"##ב":29789,"##ג":29790,"##ד":29791,"##ו":29792,"##ז":29793,"##ח":29794,"##ט":29795,"##י":29796,"##ך":29797,"##כ":29798,"##ל":29799,"##ם":29800,"##מ":29801,"##ן":29802,"##נ":29803,"##ס":29804,"##ע":29805,"##ף":29806,"##פ":29807,"##ץ":29808,"##צ":29809,"##ק":29810,"##ר":29811,"##ש":29812,"##ת":29813,"##،":29814,"##ء":29815,"##ب":29816,"##ت":29817,"##ث":29818,"##ج":29819,"##ح":29820,"##خ":29821,"##ذ":29822,"##ز":29823,"##س":29824,"##ش":29825,"##ص":29826,"##ض":29827,"##ط":29828,"##ظ":29829,"##ع":29830,"##غ":29831,"##ـ":29832,"##ف":29833,"##ق":29834,"##ك":29835,"##و":29836,"##ى":29837,"##ٹ":29838,"##پ":29839,"##چ":29840,"##ک":29841,"##گ":29842,"##ں":29843,"##ھ":29844,"##ہ":29845,"##ے":29846,"##अ":29847,"##आ":29848,"##उ":29849,"##ए":29850,"##क":29851,"##ख":29852,"##ग":29853,"##च":29854,"##ज":29855,"##ट":29856,"##ड":29857,"##ण":29858,"##त":29859,"##थ":29860,"##द":29861,"##ध":29862,"##न":29863,"##प":29864,"##ब":29865,"##भ":29866,"##म":29867,"##य":29868,"##र":29869,"##ल":29870,"##व":29871,"##श":29872,"##ष":29873,"##स":29874,"##ह":29875,"##ा":29876,"##ि":29877,"##ी":29878,"##ो":29879,"##।":29880,"##॥":29881,"##ং":29882,"##অ":29883,"##আ":29884,"##ই":29885,"##উ":29886,"##এ":29887,"##ও":29888,"##ক":29889,"##খ":29890,"##গ":29891,"##চ":29892,"##ছ":29893,"##জ":29894,"##ট":29895,"##ড":29896,"##ণ":29897,"##ত":29898,"##থ":29899,"##দ":29900,"##ধ":29901,"##ন":29902,"##প":29903,"##ব":29904,"##ভ":29905,"##ম":29906,"##য":29907,"##র":29908,"##ল":29909,"##শ":29910,"##ষ":29911,"##স":29912,"##হ":29913,"##া":29914,"##ি":29915,"##ী":29916,"##ে":29917,"##க":29918,"##ச":29919,"##ட":29920,"##த":29921,"##ந":29922,"##ன":29923,"##ப":29924,"##ம":29925,"##ய":29926,"##ர":29927,"##ல":29928,"##ள":29929,"##வ":29930,"##ா":29931,"##ி":29932,"##ு":29933,"##ே":29934,"##ை":29935,"##ನ":29936,"##ರ":29937,"##ಾ":29938,"##ක":29939,"##ය":29940,"##ර":29941,"##ල":29942,"##ව":29943,"##ා":29944,"##ก":29945,"##ง":29946,"##ต":29947,"##ท":29948,"##น":29949,"##พ":29950,"##ม":29951,"##ย":29952,"##ร":29953,"##ล":29954,"##ว":29955,"##ส":29956,"##อ":29957,"##า":29958,"##เ":29959,"##་":29960,"##།":29961,"##ག":29962,"##ང":29963,"##ད":29964,"##ན":29965,"##པ":29966,"##བ":29967,"##མ":29968,"##འ":29969,"##ར":29970,"##ལ":29971,"##ས":29972,"##မ":29973,"##ა":29974,"##ბ":29975,"##გ":29976,"##დ":29977,"##ე":29978,"##ვ":29979,"##თ":29980,"##ი":29981,"##კ":29982,"##ლ":29983,"##მ":29984,"##ნ":29985,"##ო":29986,"##რ":29987,"##ს":29988,"##ტ":29989,"##უ":29990,"##ᄀ":29991,"##ᄂ":29992,"##ᄃ":29993,"##ᄅ":29994,"##ᄆ":29995,"##ᄇ":29996,"##ᄉ":29997,"##ᄊ":29998,"##ᄋ":29999,"##ᄌ":30000,"##ᄎ":30001,"##ᄏ":30002,"##ᄐ":30003,"##ᄑ":30004,"##ᄒ":30005,"##ᅡ":30006,"##ᅢ":30007,"##ᅥ":30008,"##ᅦ":30009,"##ᅧ":30010,"##ᅩ":30011,"##ᅪ":30012,"##ᅭ":30013,"##ᅮ":30014,"##ᅯ":30015,"##ᅲ":30016,"##ᅳ":30017,"##ᅴ":30018,"##ᅵ":30019,"##ᆨ":30020,"##ᆫ":30021,"##ᆯ":30022,"##ᆷ":30023,"##ᆸ":30024,"##ᆼ":30025,"##ᴬ":30026,"##ᴮ":30027,"##ᴰ":30028,"##ᴵ":30029,"##ᴺ":30030,"##ᵀ":30031,"##ᵃ":30032,"##ᵇ":30033,"##ᵈ":30034,"##ᵉ":30035,"##ᵍ":30036,"##ᵏ":30037,"##ᵐ":30038,"##ᵒ":30039,"##ᵖ":30040,"##ᵗ":30041,"##ᵘ":30042,"##ᵣ":30043,"##ᵤ":30044,"##ᵥ":30045,"##ᶜ":30046,"##ᶠ":30047,"##‐":30048,"##‑":30049,"##‒":30050,"##–":30051,"##—":30052,"##―":30053,"##‖":30054,"##‘":30055,"##’":30056,"##‚":30057,"##“":30058,"##”":30059,"##„":30060,"##†":30061,"##‡":30062,"##•":30063,"##…":30064,"##‰":30065,"##′":30066,"##″":30067,"##›":30068,"##‿":30069,"##⁄":30070,"##⁰":30071,"##ⁱ":30072,"##⁴":30073,"##⁵":30074,"##⁶":30075,"##⁷":30076,"##⁸":30077,"##⁹":30078,"##⁻":30079,"##ⁿ":30080,"##₅":30081,"##₆":30082,"##₇":30083,"##₈":30084,"##₉":30085,"##₊":30086,"##₍":30087,"##₎":30088,"##ₐ":30089,"##ₑ":30090,"##ₒ":30091,"##ₓ":30092,"##ₕ":30093,"##ₖ":30094,"##ₗ":30095,"##ₘ":30096,"##ₚ":30097,"##ₛ":30098,"##ₜ":30099,"##₤":30100,"##₩":30101,"##€":30102,"##₱":30103,"##₹":30104,"##ℓ":30105,"##№":30106,"##ℝ":30107,"##™":30108,"##⅓":30109,"##⅔":30110,"##←":30111,"##↑":30112,"##→":30113,"##↓":30114,"##↔":30115,"##↦":30116,"##⇄":30117,"##⇌":30118,"##⇒":30119,"##∂":30120,"##∅":30121,"##∆":30122,"##∇":30123,"##∈":30124,"##∗":30125,"##∘":30126,"##√":30127,"##∞":30128,"##∧":30129,"##∨":30130,"##∩":30131,"##∪":30132,"##≈":30133,"##≡":30134,"##≤":30135,"##≥":30136,"##⊂":30137,"##⊆":30138,"##⊕":30139,"##⊗":30140,"##⋅":30141,"##─":30142,"##│":30143,"##■":30144,"##▪":30145,"##●":30146,"##★":30147,"##☆":30148,"##☉":30149,"##♠":30150,"##♣":30151,"##♥":30152,"##♦":30153,"##♯":30154,"##⟨":30155,"##⟩":30156,"##ⱼ":30157,"##⺩":30158,"##⺼":30159,"##⽥":30160,"##、":30161,"##。":30162,"##〈":30163,"##〉":30164,"##《":30165,"##》":30166,"##「":30167,"##」":30168,"##『":30169,"##』":30170,"##〜":30171,"##あ":30172,"##い":30173,"##う":30174,"##え":30175,"##お":30176,"##か":30177,"##き":30178,"##く":30179,"##け":30180,"##こ":30181,"##さ":30182,"##し":30183,"##す":30184,"##せ":30185,"##そ":30186,"##た":30187,"##ち":30188,"##っ":30189,"##つ":30190,"##て":30191,"##と":30192,"##な":30193,"##に":30194,"##ぬ":30195,"##ね":30196,"##の":30197,"##は":30198,"##ひ":30199,"##ふ":30200,"##へ":30201,"##ほ":30202,"##ま":30203,"##み":30204,"##む":30205,"##め":30206,"##も":30207,"##や":30208,"##ゆ":30209,"##よ":30210,"##ら":30211,"##り":30212,"##る":30213,"##れ":30214,"##ろ":30215,"##を":30216,"##ん":30217,"##ァ":30218,"##ア":30219,"##ィ":30220,"##イ":30221,"##ウ":30222,"##ェ":30223,"##エ":30224,"##オ":30225,"##カ":30226,"##キ":30227,"##ク":30228,"##ケ":30229,"##コ":30230,"##サ":30231,"##シ":30232,"##ス":30233,"##セ":30234,"##タ":30235,"##チ":30236,"##ッ":30237,"##ツ":30238,"##テ":30239,"##ト":30240,"##ナ":30241,"##ニ":30242,"##ノ":30243,"##ハ":30244,"##ヒ":30245,"##フ":30246,"##ヘ":30247,"##ホ":30248,"##マ":30249,"##ミ":30250,"##ム":30251,"##メ":30252,"##モ":30253,"##ャ":30254,"##ュ":30255,"##ョ":30256,"##ラ":30257,"##リ":30258,"##ル":30259,"##レ":30260,"##ロ":30261,"##ワ":30262,"##ン":30263,"##・":30264,"##ー":30265,"##一":30266,"##三":30267,"##上":30268,"##下":30269,"##不":30270,"##世":30271,"##中":30272,"##主":30273,"##久":30274,"##之":30275,"##也":30276,"##事":30277,"##二":30278,"##五":30279,"##井":30280,"##京":30281,"##人":30282,"##亻":30283,"##仁":30284,"##介":30285,"##代":30286,"##仮":30287,"##伊":30288,"##会":30289,"##佐":30290,"##侍":30291,"##保":30292,"##信":30293,"##健":30294,"##元":30295,"##光":30296,"##八":30297,"##公":30298,"##内":30299,"##出":30300,"##分":30301,"##前":30302,"##劉":30303,"##力":30304,"##加":30305,"##勝":30306,"##北":30307,"##区":30308,"##十":30309,"##千":30310,"##南":30311,"##博":30312,"##原":30313,"##口":30314,"##古":30315,"##史":30316,"##司":30317,"##合":30318,"##吉":30319,"##同":30320,"##名":30321,"##和":30322,"##囗":30323,"##四":30324,"##国":30325,"##國":30326,"##土":30327,"##地":30328,"##坂":30329,"##城":30330,"##堂":30331,"##場":30332,"##士":30333,"##夏":30334,"##外":30335,"##大":30336,"##天":30337,"##太":30338,"##夫":30339,"##奈":30340,"##女":30341,"##子":30342,"##学":30343,"##宀":30344,"##宇":30345,"##安":30346,"##宗":30347,"##定":30348,"##宣":30349,"##宮":30350,"##家":30351,"##宿":30352,"##寺":30353,"##將":30354,"##小":30355,"##尚":30356,"##山":30357,"##岡":30358,"##島":30359,"##崎":30360,"##川":30361,"##州":30362,"##巿":30363,"##帝":30364,"##平":30365,"##年":30366,"##幸":30367,"##广":30368,"##弘":30369,"##張":30370,"##彳":30371,"##後":30372,"##御":30373,"##德":30374,"##心":30375,"##忄":30376,"##志":30377,"##忠":30378,"##愛":30379,"##成":30380,"##我":30381,"##戦":30382,"##戸":30383,"##手":30384,"##扌":30385,"##政":30386,"##文":30387,"##新":30388,"##方":30389,"##日":30390,"##明":30391,"##星":30392,"##春":30393,"##昭":30394,"##智":30395,"##曲":30396,"##書":30397,"##月":30398,"##有":30399,"##朝":30400,"##木":30401,"##本":30402,"##李":30403,"##村":30404,"##東":30405,"##松":30406,"##林":30407,"##森":30408,"##楊":30409,"##樹":30410,"##橋":30411,"##歌":30412,"##止":30413,"##正":30414,"##武":30415,"##比":30416,"##氏":30417,"##民":30418,"##水":30419,"##氵":30420,"##氷":30421,"##永":30422,"##江":30423,"##沢":30424,"##河":30425,"##治":30426,"##法":30427,"##海":30428,"##清":30429,"##漢":30430,"##瀬":30431,"##火":30432,"##版":30433,"##犬":30434,"##王":30435,"##生":30436,"##田":30437,"##男":30438,"##疒":30439,"##発":30440,"##白":30441,"##的":30442,"##皇":30443,"##目":30444,"##相":30445,"##省":30446,"##真":30447,"##石":30448,"##示":30449,"##社":30450,"##神":30451,"##福":30452,"##禾":30453,"##秀":30454,"##秋":30455,"##空":30456,"##立":30457,"##章":30458,"##竹":30459,"##糹":30460,"##美":30461,"##義":30462,"##耳":30463,"##良":30464,"##艹":30465,"##花":30466,"##英":30467,"##華":30468,"##葉":30469,"##藤":30470,"##行":30471,"##街":30472,"##西":30473,"##見":30474,"##訁":30475,"##語":30476,"##谷":30477,"##貝":30478,"##貴":30479,"##車":30480,"##軍":30481,"##辶":30482,"##道":30483,"##郎":30484,"##郡":30485,"##部":30486,"##都":30487,"##里":30488,"##野":30489,"##金":30490,"##鈴":30491,"##镇":30492,"##長":30493,"##門":30494,"##間":30495,"##阝":30496,"##阿":30497,"##陳":30498,"##陽":30499,"##雄":30500,"##青":30501,"##面":30502,"##風":30503,"##食":30504,"##香":30505,"##馬":30506,"##高":30507,"##龍":30508,"##龸":30509,"##fi":30510,"##fl":30511,"##!":30512,"##(":30513,"##)":30514,"##,":30515,"##-":30516,"##.":30517,"##/":30518,"##:":30519,"##?":30520,"##~":30521}
\ No newline at end of file
diff --git a/assets/models/all-MiniLM-L6-v2-q8/config.json b/assets/models/all-MiniLM-L6-v2/config.json
similarity index 80%
rename from assets/models/all-MiniLM-L6-v2-q8/config.json
rename to assets/models/all-MiniLM-L6-v2/config.json
index 72147e4f..72b987fd 100644
--- a/assets/models/all-MiniLM-L6-v2-q8/config.json
+++ b/assets/models/all-MiniLM-L6-v2/config.json
@@ -1,10 +1,9 @@
{
- "_name_or_path": "sentence-transformers/all-MiniLM-L6-v2",
+ "_name_or_path": "nreimers/MiniLM-L6-H384-uncased",
"architectures": [
"BertModel"
],
"attention_probs_dropout_prob": 0.1,
- "classifier_dropout": null,
"gradient_checkpointing": false,
"hidden_act": "gelu",
"hidden_dropout_prob": 0.1,
@@ -18,7 +17,7 @@
"num_hidden_layers": 6,
"pad_token_id": 0,
"position_embedding_type": "absolute",
- "transformers_version": "4.29.2",
+ "transformers_version": "4.8.2",
"type_vocab_size": 2,
"use_cache": true,
"vocab_size": 30522
diff --git a/assets/models/all-MiniLM-L6-v2/model.safetensors b/assets/models/all-MiniLM-L6-v2/model.safetensors
new file mode 100644
index 00000000..b117b07b
Binary files /dev/null and b/assets/models/all-MiniLM-L6-v2/model.safetensors differ
diff --git a/assets/models/all-MiniLM-L6-v2/tokenizer.json b/assets/models/all-MiniLM-L6-v2/tokenizer.json
new file mode 100644
index 00000000..cb202bfe
--- /dev/null
+++ b/assets/models/all-MiniLM-L6-v2/tokenizer.json
@@ -0,0 +1 @@
+{"version":"1.0","truncation":{"max_length":128,"strategy":"LongestFirst","stride":0},"padding":{"strategy":{"Fixed":128},"direction":"Right","pad_to_multiple_of":null,"pad_id":0,"pad_type_id":0,"pad_token":"[PAD]"},"added_tokens":[{"id":0,"special":true,"content":"[PAD]","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":100,"special":true,"content":"[UNK]","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":101,"special":true,"content":"[CLS]","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":102,"special":true,"content":"[SEP]","single_word":false,"lstrip":false,"rstrip":false,"normalized":false},{"id":103,"special":true,"content":"[MASK]","single_word":false,"lstrip":false,"rstrip":false,"normalized":false}],"normalizer":{"type":"BertNormalizer","clean_text":true,"handle_chinese_chars":true,"strip_accents":null,"lowercase":true},"pre_tokenizer":{"type":"BertPreTokenizer"},"post_processor":{"type":"TemplateProcessing","single":[{"SpecialToken":{"id":"[CLS]","type_id":0}},{"Sequence":{"id":"A","type_id":0}},{"SpecialToken":{"id":"[SEP]","type_id":0}}],"pair":[{"SpecialToken":{"id":"[CLS]","type_id":0}},{"Sequence":{"id":"A","type_id":0}},{"SpecialToken":{"id":"[SEP]","type_id":0}},{"Sequence":{"id":"B","type_id":1}},{"SpecialToken":{"id":"[SEP]","type_id":1}}],"special_tokens":{"[CLS]":{"id":"[CLS]","ids":[101],"tokens":["[CLS]"]},"[SEP]":{"id":"[SEP]","ids":[102],"tokens":["[SEP]"]}}},"decoder":{"type":"WordPiece","prefix":"##","cleanup":true},"model":{"type":"WordPiece","unk_token":"[UNK]","continuing_subword_prefix":"##","max_input_chars_per_word":100,"vocab":{"[PAD]":0,"[unused0]":1,"[unused1]":2,"[unused2]":3,"[unused3]":4,"[unused4]":5,"[unused5]":6,"[unused6]":7,"[unused7]":8,"[unused8]":9,"[unused9]":10,"[unused10]":11,"[unused11]":12,"[unused12]":13,"[unused13]":14,"[unused14]":15,"[unused15]":16,"[unused16]":17,"[unused17]":18,"[unused18]":19,"[unused19]":20,"[unused20]":21,"[unused21]":22,"[unused22]":23,"[unused23]":24,"[unused24]":25,"[unused25]":26,"[unused26]":27,"[unused27]":28,"[unused28]":29,"[unused29]":30,"[unused30]":31,"[unused31]":32,"[unused32]":33,"[unused33]":34,"[unused34]":35,"[unused35]":36,"[unused36]":37,"[unused37]":38,"[unused38]":39,"[unused39]":40,"[unused40]":41,"[unused41]":42,"[unused42]":43,"[unused43]":44,"[unused44]":45,"[unused45]":46,"[unused46]":47,"[unused47]":48,"[unused48]":49,"[unused49]":50,"[unused50]":51,"[unused51]":52,"[unused52]":53,"[unused53]":54,"[unused54]":55,"[unused55]":56,"[unused56]":57,"[unused57]":58,"[unused58]":59,"[unused59]":60,"[unused60]":61,"[unused61]":62,"[unused62]":63,"[unused63]":64,"[unused64]":65,"[unused65]":66,"[unused66]":67,"[unused67]":68,"[unused68]":69,"[unused69]":70,"[unused70]":71,"[unused71]":72,"[unused72]":73,"[unused73]":74,"[unused74]":75,"[unused75]":76,"[unused76]":77,"[unused77]":78,"[unused78]":79,"[unused79]":80,"[unused80]":81,"[unused81]":82,"[unused82]":83,"[unused83]":84,"[unused84]":85,"[unused85]":86,"[unused86]":87,"[unused87]":88,"[unused88]":89,"[unused89]":90,"[unused90]":91,"[unused91]":92,"[unused92]":93,"[unused93]":94,"[unused94]":95,"[unused95]":96,"[unused96]":97,"[unused97]":98,"[unused98]":99,"[UNK]":100,"[CLS]":101,"[SEP]":102,"[MASK]":103,"[unused99]":104,"[unused100]":105,"[unused101]":106,"[unused102]":107,"[unused103]":108,"[unused104]":109,"[unused105]":110,"[unused106]":111,"[unused107]":112,"[unused108]":113,"[unused109]":114,"[unused110]":115,"[unused111]":116,"[unused112]":117,"[unused113]":118,"[unused114]":119,"[unused115]":120,"[unused116]":121,"[unused117]":122,"[unused118]":123,"[unused119]":124,"[unused120]":125,"[unused121]":126,"[unused122]":127,"[unused123]":128,"[unused124]":129,"[unused125]":130,"[unused126]":131,"[unused127]":132,"[unused128]":133,"[unused129]":134,"[unused130]":135,"[unused131]":136,"[unused132]":137,"[unused133]":138,"[unused134]":139,"[unused135]":140,"[unused136]":141,"[unused137]":142,"[unused138]":143,"[unused139]":144,"[unused140]":145,"[unused141]":146,"[unused142]":147,"[unused143]":148,"[unused144]":149,"[unused145]":150,"[unused146]":151,"[unused147]":152,"[unused148]":153,"[unused149]":154,"[unused150]":155,"[unused151]":156,"[unused152]":157,"[unused153]":158,"[unused154]":159,"[unused155]":160,"[unused156]":161,"[unused157]":162,"[unused158]":163,"[unused159]":164,"[unused160]":165,"[unused161]":166,"[unused162]":167,"[unused163]":168,"[unused164]":169,"[unused165]":170,"[unused166]":171,"[unused167]":172,"[unused168]":173,"[unused169]":174,"[unused170]":175,"[unused171]":176,"[unused172]":177,"[unused173]":178,"[unused174]":179,"[unused175]":180,"[unused176]":181,"[unused177]":182,"[unused178]":183,"[unused179]":184,"[unused180]":185,"[unused181]":186,"[unused182]":187,"[unused183]":188,"[unused184]":189,"[unused185]":190,"[unused186]":191,"[unused187]":192,"[unused188]":193,"[unused189]":194,"[unused190]":195,"[unused191]":196,"[unused192]":197,"[unused193]":198,"[unused194]":199,"[unused195]":200,"[unused196]":201,"[unused197]":202,"[unused198]":203,"[unused199]":204,"[unused200]":205,"[unused201]":206,"[unused202]":207,"[unused203]":208,"[unused204]":209,"[unused205]":210,"[unused206]":211,"[unused207]":212,"[unused208]":213,"[unused209]":214,"[unused210]":215,"[unused211]":216,"[unused212]":217,"[unused213]":218,"[unused214]":219,"[unused215]":220,"[unused216]":221,"[unused217]":222,"[unused218]":223,"[unused219]":224,"[unused220]":225,"[unused221]":226,"[unused222]":227,"[unused223]":228,"[unused224]":229,"[unused225]":230,"[unused226]":231,"[unused227]":232,"[unused228]":233,"[unused229]":234,"[unused230]":235,"[unused231]":236,"[unused232]":237,"[unused233]":238,"[unused234]":239,"[unused235]":240,"[unused236]":241,"[unused237]":242,"[unused238]":243,"[unused239]":244,"[unused240]":245,"[unused241]":246,"[unused242]":247,"[unused243]":248,"[unused244]":249,"[unused245]":250,"[unused246]":251,"[unused247]":252,"[unused248]":253,"[unused249]":254,"[unused250]":255,"[unused251]":256,"[unused252]":257,"[unused253]":258,"[unused254]":259,"[unused255]":260,"[unused256]":261,"[unused257]":262,"[unused258]":263,"[unused259]":264,"[unused260]":265,"[unused261]":266,"[unused262]":267,"[unused263]":268,"[unused264]":269,"[unused265]":270,"[unused266]":271,"[unused267]":272,"[unused268]":273,"[unused269]":274,"[unused270]":275,"[unused271]":276,"[unused272]":277,"[unused273]":278,"[unused274]":279,"[unused275]":280,"[unused276]":281,"[unused277]":282,"[unused278]":283,"[unused279]":284,"[unused280]":285,"[unused281]":286,"[unused282]":287,"[unused283]":288,"[unused284]":289,"[unused285]":290,"[unused286]":291,"[unused287]":292,"[unused288]":293,"[unused289]":294,"[unused290]":295,"[unused291]":296,"[unused292]":297,"[unused293]":298,"[unused294]":299,"[unused295]":300,"[unused296]":301,"[unused297]":302,"[unused298]":303,"[unused299]":304,"[unused300]":305,"[unused301]":306,"[unused302]":307,"[unused303]":308,"[unused304]":309,"[unused305]":310,"[unused306]":311,"[unused307]":312,"[unused308]":313,"[unused309]":314,"[unused310]":315,"[unused311]":316,"[unused312]":317,"[unused313]":318,"[unused314]":319,"[unused315]":320,"[unused316]":321,"[unused317]":322,"[unused318]":323,"[unused319]":324,"[unused320]":325,"[unused321]":326,"[unused322]":327,"[unused323]":328,"[unused324]":329,"[unused325]":330,"[unused326]":331,"[unused327]":332,"[unused328]":333,"[unused329]":334,"[unused330]":335,"[unused331]":336,"[unused332]":337,"[unused333]":338,"[unused334]":339,"[unused335]":340,"[unused336]":341,"[unused337]":342,"[unused338]":343,"[unused339]":344,"[unused340]":345,"[unused341]":346,"[unused342]":347,"[unused343]":348,"[unused344]":349,"[unused345]":350,"[unused346]":351,"[unused347]":352,"[unused348]":353,"[unused349]":354,"[unused350]":355,"[unused351]":356,"[unused352]":357,"[unused353]":358,"[unused354]":359,"[unused355]":360,"[unused356]":361,"[unused357]":362,"[unused358]":363,"[unused359]":364,"[unused360]":365,"[unused361]":366,"[unused362]":367,"[unused363]":368,"[unused364]":369,"[unused365]":370,"[unused366]":371,"[unused367]":372,"[unused368]":373,"[unused369]":374,"[unused370]":375,"[unused371]":376,"[unused372]":377,"[unused373]":378,"[unused374]":379,"[unused375]":380,"[unused376]":381,"[unused377]":382,"[unused378]":383,"[unused379]":384,"[unused380]":385,"[unused381]":386,"[unused382]":387,"[unused383]":388,"[unused384]":389,"[unused385]":390,"[unused386]":391,"[unused387]":392,"[unused388]":393,"[unused389]":394,"[unused390]":395,"[unused391]":396,"[unused392]":397,"[unused393]":398,"[unused394]":399,"[unused395]":400,"[unused396]":401,"[unused397]":402,"[unused398]":403,"[unused399]":404,"[unused400]":405,"[unused401]":406,"[unused402]":407,"[unused403]":408,"[unused404]":409,"[unused405]":410,"[unused406]":411,"[unused407]":412,"[unused408]":413,"[unused409]":414,"[unused410]":415,"[unused411]":416,"[unused412]":417,"[unused413]":418,"[unused414]":419,"[unused415]":420,"[unused416]":421,"[unused417]":422,"[unused418]":423,"[unused419]":424,"[unused420]":425,"[unused421]":426,"[unused422]":427,"[unused423]":428,"[unused424]":429,"[unused425]":430,"[unused426]":431,"[unused427]":432,"[unused428]":433,"[unused429]":434,"[unused430]":435,"[unused431]":436,"[unused432]":437,"[unused433]":438,"[unused434]":439,"[unused435]":440,"[unused436]":441,"[unused437]":442,"[unused438]":443,"[unused439]":444,"[unused440]":445,"[unused441]":446,"[unused442]":447,"[unused443]":448,"[unused444]":449,"[unused445]":450,"[unused446]":451,"[unused447]":452,"[unused448]":453,"[unused449]":454,"[unused450]":455,"[unused451]":456,"[unused452]":457,"[unused453]":458,"[unused454]":459,"[unused455]":460,"[unused456]":461,"[unused457]":462,"[unused458]":463,"[unused459]":464,"[unused460]":465,"[unused461]":466,"[unused462]":467,"[unused463]":468,"[unused464]":469,"[unused465]":470,"[unused466]":471,"[unused467]":472,"[unused468]":473,"[unused469]":474,"[unused470]":475,"[unused471]":476,"[unused472]":477,"[unused473]":478,"[unused474]":479,"[unused475]":480,"[unused476]":481,"[unused477]":482,"[unused478]":483,"[unused479]":484,"[unused480]":485,"[unused481]":486,"[unused482]":487,"[unused483]":488,"[unused484]":489,"[unused485]":490,"[unused486]":491,"[unused487]":492,"[unused488]":493,"[unused489]":494,"[unused490]":495,"[unused491]":496,"[unused492]":497,"[unused493]":498,"[unused494]":499,"[unused495]":500,"[unused496]":501,"[unused497]":502,"[unused498]":503,"[unused499]":504,"[unused500]":505,"[unused501]":506,"[unused502]":507,"[unused503]":508,"[unused504]":509,"[unused505]":510,"[unused506]":511,"[unused507]":512,"[unused508]":513,"[unused509]":514,"[unused510]":515,"[unused511]":516,"[unused512]":517,"[unused513]":518,"[unused514]":519,"[unused515]":520,"[unused516]":521,"[unused517]":522,"[unused518]":523,"[unused519]":524,"[unused520]":525,"[unused521]":526,"[unused522]":527,"[unused523]":528,"[unused524]":529,"[unused525]":530,"[unused526]":531,"[unused527]":532,"[unused528]":533,"[unused529]":534,"[unused530]":535,"[unused531]":536,"[unused532]":537,"[unused533]":538,"[unused534]":539,"[unused535]":540,"[unused536]":541,"[unused537]":542,"[unused538]":543,"[unused539]":544,"[unused540]":545,"[unused541]":546,"[unused542]":547,"[unused543]":548,"[unused544]":549,"[unused545]":550,"[unused546]":551,"[unused547]":552,"[unused548]":553,"[unused549]":554,"[unused550]":555,"[unused551]":556,"[unused552]":557,"[unused553]":558,"[unused554]":559,"[unused555]":560,"[unused556]":561,"[unused557]":562,"[unused558]":563,"[unused559]":564,"[unused560]":565,"[unused561]":566,"[unused562]":567,"[unused563]":568,"[unused564]":569,"[unused565]":570,"[unused566]":571,"[unused567]":572,"[unused568]":573,"[unused569]":574,"[unused570]":575,"[unused571]":576,"[unused572]":577,"[unused573]":578,"[unused574]":579,"[unused575]":580,"[unused576]":581,"[unused577]":582,"[unused578]":583,"[unused579]":584,"[unused580]":585,"[unused581]":586,"[unused582]":587,"[unused583]":588,"[unused584]":589,"[unused585]":590,"[unused586]":591,"[unused587]":592,"[unused588]":593,"[unused589]":594,"[unused590]":595,"[unused591]":596,"[unused592]":597,"[unused593]":598,"[unused594]":599,"[unused595]":600,"[unused596]":601,"[unused597]":602,"[unused598]":603,"[unused599]":604,"[unused600]":605,"[unused601]":606,"[unused602]":607,"[unused603]":608,"[unused604]":609,"[unused605]":610,"[unused606]":611,"[unused607]":612,"[unused608]":613,"[unused609]":614,"[unused610]":615,"[unused611]":616,"[unused612]":617,"[unused613]":618,"[unused614]":619,"[unused615]":620,"[unused616]":621,"[unused617]":622,"[unused618]":623,"[unused619]":624,"[unused620]":625,"[unused621]":626,"[unused622]":627,"[unused623]":628,"[unused624]":629,"[unused625]":630,"[unused626]":631,"[unused627]":632,"[unused628]":633,"[unused629]":634,"[unused630]":635,"[unused631]":636,"[unused632]":637,"[unused633]":638,"[unused634]":639,"[unused635]":640,"[unused636]":641,"[unused637]":642,"[unused638]":643,"[unused639]":644,"[unused640]":645,"[unused641]":646,"[unused642]":647,"[unused643]":648,"[unused644]":649,"[unused645]":650,"[unused646]":651,"[unused647]":652,"[unused648]":653,"[unused649]":654,"[unused650]":655,"[unused651]":656,"[unused652]":657,"[unused653]":658,"[unused654]":659,"[unused655]":660,"[unused656]":661,"[unused657]":662,"[unused658]":663,"[unused659]":664,"[unused660]":665,"[unused661]":666,"[unused662]":667,"[unused663]":668,"[unused664]":669,"[unused665]":670,"[unused666]":671,"[unused667]":672,"[unused668]":673,"[unused669]":674,"[unused670]":675,"[unused671]":676,"[unused672]":677,"[unused673]":678,"[unused674]":679,"[unused675]":680,"[unused676]":681,"[unused677]":682,"[unused678]":683,"[unused679]":684,"[unused680]":685,"[unused681]":686,"[unused682]":687,"[unused683]":688,"[unused684]":689,"[unused685]":690,"[unused686]":691,"[unused687]":692,"[unused688]":693,"[unused689]":694,"[unused690]":695,"[unused691]":696,"[unused692]":697,"[unused693]":698,"[unused694]":699,"[unused695]":700,"[unused696]":701,"[unused697]":702,"[unused698]":703,"[unused699]":704,"[unused700]":705,"[unused701]":706,"[unused702]":707,"[unused703]":708,"[unused704]":709,"[unused705]":710,"[unused706]":711,"[unused707]":712,"[unused708]":713,"[unused709]":714,"[unused710]":715,"[unused711]":716,"[unused712]":717,"[unused713]":718,"[unused714]":719,"[unused715]":720,"[unused716]":721,"[unused717]":722,"[unused718]":723,"[unused719]":724,"[unused720]":725,"[unused721]":726,"[unused722]":727,"[unused723]":728,"[unused724]":729,"[unused725]":730,"[unused726]":731,"[unused727]":732,"[unused728]":733,"[unused729]":734,"[unused730]":735,"[unused731]":736,"[unused732]":737,"[unused733]":738,"[unused734]":739,"[unused735]":740,"[unused736]":741,"[unused737]":742,"[unused738]":743,"[unused739]":744,"[unused740]":745,"[unused741]":746,"[unused742]":747,"[unused743]":748,"[unused744]":749,"[unused745]":750,"[unused746]":751,"[unused747]":752,"[unused748]":753,"[unused749]":754,"[unused750]":755,"[unused751]":756,"[unused752]":757,"[unused753]":758,"[unused754]":759,"[unused755]":760,"[unused756]":761,"[unused757]":762,"[unused758]":763,"[unused759]":764,"[unused760]":765,"[unused761]":766,"[unused762]":767,"[unused763]":768,"[unused764]":769,"[unused765]":770,"[unused766]":771,"[unused767]":772,"[unused768]":773,"[unused769]":774,"[unused770]":775,"[unused771]":776,"[unused772]":777,"[unused773]":778,"[unused774]":779,"[unused775]":780,"[unused776]":781,"[unused777]":782,"[unused778]":783,"[unused779]":784,"[unused780]":785,"[unused781]":786,"[unused782]":787,"[unused783]":788,"[unused784]":789,"[unused785]":790,"[unused786]":791,"[unused787]":792,"[unused788]":793,"[unused789]":794,"[unused790]":795,"[unused791]":796,"[unused792]":797,"[unused793]":798,"[unused794]":799,"[unused795]":800,"[unused796]":801,"[unused797]":802,"[unused798]":803,"[unused799]":804,"[unused800]":805,"[unused801]":806,"[unused802]":807,"[unused803]":808,"[unused804]":809,"[unused805]":810,"[unused806]":811,"[unused807]":812,"[unused808]":813,"[unused809]":814,"[unused810]":815,"[unused811]":816,"[unused812]":817,"[unused813]":818,"[unused814]":819,"[unused815]":820,"[unused816]":821,"[unused817]":822,"[unused818]":823,"[unused819]":824,"[unused820]":825,"[unused821]":826,"[unused822]":827,"[unused823]":828,"[unused824]":829,"[unused825]":830,"[unused826]":831,"[unused827]":832,"[unused828]":833,"[unused829]":834,"[unused830]":835,"[unused831]":836,"[unused832]":837,"[unused833]":838,"[unused834]":839,"[unused835]":840,"[unused836]":841,"[unused837]":842,"[unused838]":843,"[unused839]":844,"[unused840]":845,"[unused841]":846,"[unused842]":847,"[unused843]":848,"[unused844]":849,"[unused845]":850,"[unused846]":851,"[unused847]":852,"[unused848]":853,"[unused849]":854,"[unused850]":855,"[unused851]":856,"[unused852]":857,"[unused853]":858,"[unused854]":859,"[unused855]":860,"[unused856]":861,"[unused857]":862,"[unused858]":863,"[unused859]":864,"[unused860]":865,"[unused861]":866,"[unused862]":867,"[unused863]":868,"[unused864]":869,"[unused865]":870,"[unused866]":871,"[unused867]":872,"[unused868]":873,"[unused869]":874,"[unused870]":875,"[unused871]":876,"[unused872]":877,"[unused873]":878,"[unused874]":879,"[unused875]":880,"[unused876]":881,"[unused877]":882,"[unused878]":883,"[unused879]":884,"[unused880]":885,"[unused881]":886,"[unused882]":887,"[unused883]":888,"[unused884]":889,"[unused885]":890,"[unused886]":891,"[unused887]":892,"[unused888]":893,"[unused889]":894,"[unused890]":895,"[unused891]":896,"[unused892]":897,"[unused893]":898,"[unused894]":899,"[unused895]":900,"[unused896]":901,"[unused897]":902,"[unused898]":903,"[unused899]":904,"[unused900]":905,"[unused901]":906,"[unused902]":907,"[unused903]":908,"[unused904]":909,"[unused905]":910,"[unused906]":911,"[unused907]":912,"[unused908]":913,"[unused909]":914,"[unused910]":915,"[unused911]":916,"[unused912]":917,"[unused913]":918,"[unused914]":919,"[unused915]":920,"[unused916]":921,"[unused917]":922,"[unused918]":923,"[unused919]":924,"[unused920]":925,"[unused921]":926,"[unused922]":927,"[unused923]":928,"[unused924]":929,"[unused925]":930,"[unused926]":931,"[unused927]":932,"[unused928]":933,"[unused929]":934,"[unused930]":935,"[unused931]":936,"[unused932]":937,"[unused933]":938,"[unused934]":939,"[unused935]":940,"[unused936]":941,"[unused937]":942,"[unused938]":943,"[unused939]":944,"[unused940]":945,"[unused941]":946,"[unused942]":947,"[unused943]":948,"[unused944]":949,"[unused945]":950,"[unused946]":951,"[unused947]":952,"[unused948]":953,"[unused949]":954,"[unused950]":955,"[unused951]":956,"[unused952]":957,"[unused953]":958,"[unused954]":959,"[unused955]":960,"[unused956]":961,"[unused957]":962,"[unused958]":963,"[unused959]":964,"[unused960]":965,"[unused961]":966,"[unused962]":967,"[unused963]":968,"[unused964]":969,"[unused965]":970,"[unused966]":971,"[unused967]":972,"[unused968]":973,"[unused969]":974,"[unused970]":975,"[unused971]":976,"[unused972]":977,"[unused973]":978,"[unused974]":979,"[unused975]":980,"[unused976]":981,"[unused977]":982,"[unused978]":983,"[unused979]":984,"[unused980]":985,"[unused981]":986,"[unused982]":987,"[unused983]":988,"[unused984]":989,"[unused985]":990,"[unused986]":991,"[unused987]":992,"[unused988]":993,"[unused989]":994,"[unused990]":995,"[unused991]":996,"[unused992]":997,"[unused993]":998,"!":999,"\"":1000,"#":1001,"$":1002,"%":1003,"&":1004,"'":1005,"(":1006,")":1007,"*":1008,"+":1009,",":1010,"-":1011,".":1012,"/":1013,"0":1014,"1":1015,"2":1016,"3":1017,"4":1018,"5":1019,"6":1020,"7":1021,"8":1022,"9":1023,":":1024,";":1025,"<":1026,"=":1027,">":1028,"?":1029,"@":1030,"[":1031,"\\":1032,"]":1033,"^":1034,"_":1035,"`":1036,"a":1037,"b":1038,"c":1039,"d":1040,"e":1041,"f":1042,"g":1043,"h":1044,"i":1045,"j":1046,"k":1047,"l":1048,"m":1049,"n":1050,"o":1051,"p":1052,"q":1053,"r":1054,"s":1055,"t":1056,"u":1057,"v":1058,"w":1059,"x":1060,"y":1061,"z":1062,"{":1063,"|":1064,"}":1065,"~":1066,"¡":1067,"¢":1068,"£":1069,"¤":1070,"¥":1071,"¦":1072,"§":1073,"¨":1074,"©":1075,"ª":1076,"«":1077,"¬":1078,"®":1079,"°":1080,"±":1081,"²":1082,"³":1083,"´":1084,"µ":1085,"¶":1086,"·":1087,"¹":1088,"º":1089,"»":1090,"¼":1091,"½":1092,"¾":1093,"¿":1094,"×":1095,"ß":1096,"æ":1097,"ð":1098,"÷":1099,"ø":1100,"þ":1101,"đ":1102,"ħ":1103,"ı":1104,"ł":1105,"ŋ":1106,"œ":1107,"ƒ":1108,"ɐ":1109,"ɑ":1110,"ɒ":1111,"ɔ":1112,"ɕ":1113,"ə":1114,"ɛ":1115,"ɡ":1116,"ɣ":1117,"ɨ":1118,"ɪ":1119,"ɫ":1120,"ɬ":1121,"ɯ":1122,"ɲ":1123,"ɴ":1124,"ɹ":1125,"ɾ":1126,"ʀ":1127,"ʁ":1128,"ʂ":1129,"ʃ":1130,"ʉ":1131,"ʊ":1132,"ʋ":1133,"ʌ":1134,"ʎ":1135,"ʐ":1136,"ʑ":1137,"ʒ":1138,"ʔ":1139,"ʰ":1140,"ʲ":1141,"ʳ":1142,"ʷ":1143,"ʸ":1144,"ʻ":1145,"ʼ":1146,"ʾ":1147,"ʿ":1148,"ˈ":1149,"ː":1150,"ˡ":1151,"ˢ":1152,"ˣ":1153,"ˤ":1154,"α":1155,"β":1156,"γ":1157,"δ":1158,"ε":1159,"ζ":1160,"η":1161,"θ":1162,"ι":1163,"κ":1164,"λ":1165,"μ":1166,"ν":1167,"ξ":1168,"ο":1169,"π":1170,"ρ":1171,"ς":1172,"σ":1173,"τ":1174,"υ":1175,"φ":1176,"χ":1177,"ψ":1178,"ω":1179,"а":1180,"б":1181,"в":1182,"г":1183,"д":1184,"е":1185,"ж":1186,"з":1187,"и":1188,"к":1189,"л":1190,"м":1191,"н":1192,"о":1193,"п":1194,"р":1195,"с":1196,"т":1197,"у":1198,"ф":1199,"х":1200,"ц":1201,"ч":1202,"ш":1203,"щ":1204,"ъ":1205,"ы":1206,"ь":1207,"э":1208,"ю":1209,"я":1210,"ђ":1211,"є":1212,"і":1213,"ј":1214,"љ":1215,"њ":1216,"ћ":1217,"ӏ":1218,"ա":1219,"բ":1220,"գ":1221,"դ":1222,"ե":1223,"թ":1224,"ի":1225,"լ":1226,"կ":1227,"հ":1228,"մ":1229,"յ":1230,"ն":1231,"ո":1232,"պ":1233,"ս":1234,"վ":1235,"տ":1236,"ր":1237,"ւ":1238,"ք":1239,"־":1240,"א":1241,"ב":1242,"ג":1243,"ד":1244,"ה":1245,"ו":1246,"ז":1247,"ח":1248,"ט":1249,"י":1250,"ך":1251,"כ":1252,"ל":1253,"ם":1254,"מ":1255,"ן":1256,"נ":1257,"ס":1258,"ע":1259,"ף":1260,"פ":1261,"ץ":1262,"צ":1263,"ק":1264,"ר":1265,"ש":1266,"ת":1267,"،":1268,"ء":1269,"ا":1270,"ب":1271,"ة":1272,"ت":1273,"ث":1274,"ج":1275,"ح":1276,"خ":1277,"د":1278,"ذ":1279,"ر":1280,"ز":1281,"س":1282,"ش":1283,"ص":1284,"ض":1285,"ط":1286,"ظ":1287,"ع":1288,"غ":1289,"ـ":1290,"ف":1291,"ق":1292,"ك":1293,"ل":1294,"م":1295,"ن":1296,"ه":1297,"و":1298,"ى":1299,"ي":1300,"ٹ":1301,"پ":1302,"چ":1303,"ک":1304,"گ":1305,"ں":1306,"ھ":1307,"ہ":1308,"ی":1309,"ے":1310,"अ":1311,"आ":1312,"उ":1313,"ए":1314,"क":1315,"ख":1316,"ग":1317,"च":1318,"ज":1319,"ट":1320,"ड":1321,"ण":1322,"त":1323,"थ":1324,"द":1325,"ध":1326,"न":1327,"प":1328,"ब":1329,"भ":1330,"म":1331,"य":1332,"र":1333,"ल":1334,"व":1335,"श":1336,"ष":1337,"स":1338,"ह":1339,"ा":1340,"ि":1341,"ी":1342,"ो":1343,"।":1344,"॥":1345,"ং":1346,"অ":1347,"আ":1348,"ই":1349,"উ":1350,"এ":1351,"ও":1352,"ক":1353,"খ":1354,"গ":1355,"চ":1356,"ছ":1357,"জ":1358,"ট":1359,"ড":1360,"ণ":1361,"ত":1362,"থ":1363,"দ":1364,"ধ":1365,"ন":1366,"প":1367,"ব":1368,"ভ":1369,"ম":1370,"য":1371,"র":1372,"ল":1373,"শ":1374,"ষ":1375,"স":1376,"হ":1377,"া":1378,"ি":1379,"ী":1380,"ে":1381,"க":1382,"ச":1383,"ட":1384,"த":1385,"ந":1386,"ன":1387,"ப":1388,"ம":1389,"ய":1390,"ர":1391,"ல":1392,"ள":1393,"வ":1394,"ா":1395,"ி":1396,"ு":1397,"ே":1398,"ை":1399,"ನ":1400,"ರ":1401,"ಾ":1402,"ක":1403,"ය":1404,"ර":1405,"ල":1406,"ව":1407,"ා":1408,"ก":1409,"ง":1410,"ต":1411,"ท":1412,"น":1413,"พ":1414,"ม":1415,"ย":1416,"ร":1417,"ล":1418,"ว":1419,"ส":1420,"อ":1421,"า":1422,"เ":1423,"་":1424,"།":1425,"ག":1426,"ང":1427,"ད":1428,"ན":1429,"པ":1430,"བ":1431,"མ":1432,"འ":1433,"ར":1434,"ལ":1435,"ས":1436,"မ":1437,"ა":1438,"ბ":1439,"გ":1440,"დ":1441,"ე":1442,"ვ":1443,"თ":1444,"ი":1445,"კ":1446,"ლ":1447,"მ":1448,"ნ":1449,"ო":1450,"რ":1451,"ს":1452,"ტ":1453,"უ":1454,"ᄀ":1455,"ᄂ":1456,"ᄃ":1457,"ᄅ":1458,"ᄆ":1459,"ᄇ":1460,"ᄉ":1461,"ᄊ":1462,"ᄋ":1463,"ᄌ":1464,"ᄎ":1465,"ᄏ":1466,"ᄐ":1467,"ᄑ":1468,"ᄒ":1469,"ᅡ":1470,"ᅢ":1471,"ᅥ":1472,"ᅦ":1473,"ᅧ":1474,"ᅩ":1475,"ᅪ":1476,"ᅭ":1477,"ᅮ":1478,"ᅯ":1479,"ᅲ":1480,"ᅳ":1481,"ᅴ":1482,"ᅵ":1483,"ᆨ":1484,"ᆫ":1485,"ᆯ":1486,"ᆷ":1487,"ᆸ":1488,"ᆼ":1489,"ᴬ":1490,"ᴮ":1491,"ᴰ":1492,"ᴵ":1493,"ᴺ":1494,"ᵀ":1495,"ᵃ":1496,"ᵇ":1497,"ᵈ":1498,"ᵉ":1499,"ᵍ":1500,"ᵏ":1501,"ᵐ":1502,"ᵒ":1503,"ᵖ":1504,"ᵗ":1505,"ᵘ":1506,"ᵢ":1507,"ᵣ":1508,"ᵤ":1509,"ᵥ":1510,"ᶜ":1511,"ᶠ":1512,"‐":1513,"‑":1514,"‒":1515,"–":1516,"—":1517,"―":1518,"‖":1519,"‘":1520,"’":1521,"‚":1522,"“":1523,"”":1524,"„":1525,"†":1526,"‡":1527,"•":1528,"…":1529,"‰":1530,"′":1531,"″":1532,"›":1533,"‿":1534,"⁄":1535,"⁰":1536,"ⁱ":1537,"⁴":1538,"⁵":1539,"⁶":1540,"⁷":1541,"⁸":1542,"⁹":1543,"⁺":1544,"⁻":1545,"ⁿ":1546,"₀":1547,"₁":1548,"₂":1549,"₃":1550,"₄":1551,"₅":1552,"₆":1553,"₇":1554,"₈":1555,"₉":1556,"₊":1557,"₍":1558,"₎":1559,"ₐ":1560,"ₑ":1561,"ₒ":1562,"ₓ":1563,"ₕ":1564,"ₖ":1565,"ₗ":1566,"ₘ":1567,"ₙ":1568,"ₚ":1569,"ₛ":1570,"ₜ":1571,"₤":1572,"₩":1573,"€":1574,"₱":1575,"₹":1576,"ℓ":1577,"№":1578,"ℝ":1579,"™":1580,"⅓":1581,"⅔":1582,"←":1583,"↑":1584,"→":1585,"↓":1586,"↔":1587,"↦":1588,"⇄":1589,"⇌":1590,"⇒":1591,"∂":1592,"∅":1593,"∆":1594,"∇":1595,"∈":1596,"−":1597,"∗":1598,"∘":1599,"√":1600,"∞":1601,"∧":1602,"∨":1603,"∩":1604,"∪":1605,"≈":1606,"≡":1607,"≤":1608,"≥":1609,"⊂":1610,"⊆":1611,"⊕":1612,"⊗":1613,"⋅":1614,"─":1615,"│":1616,"■":1617,"▪":1618,"●":1619,"★":1620,"☆":1621,"☉":1622,"♠":1623,"♣":1624,"♥":1625,"♦":1626,"♭":1627,"♯":1628,"⟨":1629,"⟩":1630,"ⱼ":1631,"⺩":1632,"⺼":1633,"⽥":1634,"、":1635,"。":1636,"〈":1637,"〉":1638,"《":1639,"》":1640,"「":1641,"」":1642,"『":1643,"』":1644,"〜":1645,"あ":1646,"い":1647,"う":1648,"え":1649,"お":1650,"か":1651,"き":1652,"く":1653,"け":1654,"こ":1655,"さ":1656,"し":1657,"す":1658,"せ":1659,"そ":1660,"た":1661,"ち":1662,"っ":1663,"つ":1664,"て":1665,"と":1666,"な":1667,"に":1668,"ぬ":1669,"ね":1670,"の":1671,"は":1672,"ひ":1673,"ふ":1674,"へ":1675,"ほ":1676,"ま":1677,"み":1678,"む":1679,"め":1680,"も":1681,"や":1682,"ゆ":1683,"よ":1684,"ら":1685,"り":1686,"る":1687,"れ":1688,"ろ":1689,"を":1690,"ん":1691,"ァ":1692,"ア":1693,"ィ":1694,"イ":1695,"ウ":1696,"ェ":1697,"エ":1698,"オ":1699,"カ":1700,"キ":1701,"ク":1702,"ケ":1703,"コ":1704,"サ":1705,"シ":1706,"ス":1707,"セ":1708,"タ":1709,"チ":1710,"ッ":1711,"ツ":1712,"テ":1713,"ト":1714,"ナ":1715,"ニ":1716,"ノ":1717,"ハ":1718,"ヒ":1719,"フ":1720,"ヘ":1721,"ホ":1722,"マ":1723,"ミ":1724,"ム":1725,"メ":1726,"モ":1727,"ャ":1728,"ュ":1729,"ョ":1730,"ラ":1731,"リ":1732,"ル":1733,"レ":1734,"ロ":1735,"ワ":1736,"ン":1737,"・":1738,"ー":1739,"一":1740,"三":1741,"上":1742,"下":1743,"不":1744,"世":1745,"中":1746,"主":1747,"久":1748,"之":1749,"也":1750,"事":1751,"二":1752,"五":1753,"井":1754,"京":1755,"人":1756,"亻":1757,"仁":1758,"介":1759,"代":1760,"仮":1761,"伊":1762,"会":1763,"佐":1764,"侍":1765,"保":1766,"信":1767,"健":1768,"元":1769,"光":1770,"八":1771,"公":1772,"内":1773,"出":1774,"分":1775,"前":1776,"劉":1777,"力":1778,"加":1779,"勝":1780,"北":1781,"区":1782,"十":1783,"千":1784,"南":1785,"博":1786,"原":1787,"口":1788,"古":1789,"史":1790,"司":1791,"合":1792,"吉":1793,"同":1794,"名":1795,"和":1796,"囗":1797,"四":1798,"国":1799,"國":1800,"土":1801,"地":1802,"坂":1803,"城":1804,"堂":1805,"場":1806,"士":1807,"夏":1808,"外":1809,"大":1810,"天":1811,"太":1812,"夫":1813,"奈":1814,"女":1815,"子":1816,"学":1817,"宀":1818,"宇":1819,"安":1820,"宗":1821,"定":1822,"宣":1823,"宮":1824,"家":1825,"宿":1826,"寺":1827,"將":1828,"小":1829,"尚":1830,"山":1831,"岡":1832,"島":1833,"崎":1834,"川":1835,"州":1836,"巿":1837,"帝":1838,"平":1839,"年":1840,"幸":1841,"广":1842,"弘":1843,"張":1844,"彳":1845,"後":1846,"御":1847,"德":1848,"心":1849,"忄":1850,"志":1851,"忠":1852,"愛":1853,"成":1854,"我":1855,"戦":1856,"戸":1857,"手":1858,"扌":1859,"政":1860,"文":1861,"新":1862,"方":1863,"日":1864,"明":1865,"星":1866,"春":1867,"昭":1868,"智":1869,"曲":1870,"書":1871,"月":1872,"有":1873,"朝":1874,"木":1875,"本":1876,"李":1877,"村":1878,"東":1879,"松":1880,"林":1881,"森":1882,"楊":1883,"樹":1884,"橋":1885,"歌":1886,"止":1887,"正":1888,"武":1889,"比":1890,"氏":1891,"民":1892,"水":1893,"氵":1894,"氷":1895,"永":1896,"江":1897,"沢":1898,"河":1899,"治":1900,"法":1901,"海":1902,"清":1903,"漢":1904,"瀬":1905,"火":1906,"版":1907,"犬":1908,"王":1909,"生":1910,"田":1911,"男":1912,"疒":1913,"発":1914,"白":1915,"的":1916,"皇":1917,"目":1918,"相":1919,"省":1920,"真":1921,"石":1922,"示":1923,"社":1924,"神":1925,"福":1926,"禾":1927,"秀":1928,"秋":1929,"空":1930,"立":1931,"章":1932,"竹":1933,"糹":1934,"美":1935,"義":1936,"耳":1937,"良":1938,"艹":1939,"花":1940,"英":1941,"華":1942,"葉":1943,"藤":1944,"行":1945,"街":1946,"西":1947,"見":1948,"訁":1949,"語":1950,"谷":1951,"貝":1952,"貴":1953,"車":1954,"軍":1955,"辶":1956,"道":1957,"郎":1958,"郡":1959,"部":1960,"都":1961,"里":1962,"野":1963,"金":1964,"鈴":1965,"镇":1966,"長":1967,"門":1968,"間":1969,"阝":1970,"阿":1971,"陳":1972,"陽":1973,"雄":1974,"青":1975,"面":1976,"風":1977,"食":1978,"香":1979,"馬":1980,"高":1981,"龍":1982,"龸":1983,"fi":1984,"fl":1985,"!":1986,"(":1987,")":1988,",":1989,"-":1990,".":1991,"/":1992,":":1993,"?":1994,"~":1995,"the":1996,"of":1997,"and":1998,"in":1999,"to":2000,"was":2001,"he":2002,"is":2003,"as":2004,"for":2005,"on":2006,"with":2007,"that":2008,"it":2009,"his":2010,"by":2011,"at":2012,"from":2013,"her":2014,"##s":2015,"she":2016,"you":2017,"had":2018,"an":2019,"were":2020,"but":2021,"be":2022,"this":2023,"are":2024,"not":2025,"my":2026,"they":2027,"one":2028,"which":2029,"or":2030,"have":2031,"him":2032,"me":2033,"first":2034,"all":2035,"also":2036,"their":2037,"has":2038,"up":2039,"who":2040,"out":2041,"been":2042,"when":2043,"after":2044,"there":2045,"into":2046,"new":2047,"two":2048,"its":2049,"##a":2050,"time":2051,"would":2052,"no":2053,"what":2054,"about":2055,"said":2056,"we":2057,"over":2058,"then":2059,"other":2060,"so":2061,"more":2062,"##e":2063,"can":2064,"if":2065,"like":2066,"back":2067,"them":2068,"only":2069,"some":2070,"could":2071,"##i":2072,"where":2073,"just":2074,"##ing":2075,"during":2076,"before":2077,"##n":2078,"do":2079,"##o":2080,"made":2081,"school":2082,"through":2083,"than":2084,"now":2085,"years":2086,"most":2087,"world":2088,"may":2089,"between":2090,"down":2091,"well":2092,"three":2093,"##d":2094,"year":2095,"while":2096,"will":2097,"##ed":2098,"##r":2099,"##y":2100,"later":2101,"##t":2102,"city":2103,"under":2104,"around":2105,"did":2106,"such":2107,"being":2108,"used":2109,"state":2110,"people":2111,"part":2112,"know":2113,"against":2114,"your":2115,"many":2116,"second":2117,"university":2118,"both":2119,"national":2120,"##er":2121,"these":2122,"don":2123,"known":2124,"off":2125,"way":2126,"until":2127,"re":2128,"how":2129,"even":2130,"get":2131,"head":2132,"...":2133,"didn":2134,"##ly":2135,"team":2136,"american":2137,"because":2138,"de":2139,"##l":2140,"born":2141,"united":2142,"film":2143,"since":2144,"still":2145,"long":2146,"work":2147,"south":2148,"us":2149,"became":2150,"any":2151,"high":2152,"again":2153,"day":2154,"family":2155,"see":2156,"right":2157,"man":2158,"eyes":2159,"house":2160,"season":2161,"war":2162,"states":2163,"including":2164,"took":2165,"life":2166,"north":2167,"same":2168,"each":2169,"called":2170,"name":2171,"much":2172,"place":2173,"however":2174,"go":2175,"four":2176,"group":2177,"another":2178,"found":2179,"won":2180,"area":2181,"here":2182,"going":2183,"10":2184,"away":2185,"series":2186,"left":2187,"home":2188,"music":2189,"best":2190,"make":2191,"hand":2192,"number":2193,"company":2194,"several":2195,"never":2196,"last":2197,"john":2198,"000":2199,"very":2200,"album":2201,"take":2202,"end":2203,"good":2204,"too":2205,"following":2206,"released":2207,"game":2208,"played":2209,"little":2210,"began":2211,"district":2212,"##m":2213,"old":2214,"want":2215,"those":2216,"side":2217,"held":2218,"own":2219,"early":2220,"county":2221,"ll":2222,"league":2223,"use":2224,"west":2225,"##u":2226,"face":2227,"think":2228,"##es":2229,"2010":2230,"government":2231,"##h":2232,"march":2233,"came":2234,"small":2235,"general":2236,"town":2237,"june":2238,"##on":2239,"line":2240,"based":2241,"something":2242,"##k":2243,"september":2244,"thought":2245,"looked":2246,"along":2247,"international":2248,"2011":2249,"air":2250,"july":2251,"club":2252,"went":2253,"january":2254,"october":2255,"our":2256,"august":2257,"april":2258,"york":2259,"12":2260,"few":2261,"2012":2262,"2008":2263,"east":2264,"show":2265,"member":2266,"college":2267,"2009":2268,"father":2269,"public":2270,"##us":2271,"come":2272,"men":2273,"five":2274,"set":2275,"station":2276,"church":2277,"##c":2278,"next":2279,"former":2280,"november":2281,"room":2282,"party":2283,"located":2284,"december":2285,"2013":2286,"age":2287,"got":2288,"2007":2289,"##g":2290,"system":2291,"let":2292,"love":2293,"2006":2294,"though":2295,"every":2296,"2014":2297,"look":2298,"song":2299,"water":2300,"century":2301,"without":2302,"body":2303,"black":2304,"night":2305,"within":2306,"great":2307,"women":2308,"single":2309,"ve":2310,"building":2311,"large":2312,"population":2313,"river":2314,"named":2315,"band":2316,"white":2317,"started":2318,"##an":2319,"once":2320,"15":2321,"20":2322,"should":2323,"18":2324,"2015":2325,"service":2326,"top":2327,"built":2328,"british":2329,"open":2330,"death":2331,"king":2332,"moved":2333,"local":2334,"times":2335,"children":2336,"february":2337,"book":2338,"why":2339,"11":2340,"door":2341,"need":2342,"president":2343,"order":2344,"final":2345,"road":2346,"wasn":2347,"although":2348,"due":2349,"major":2350,"died":2351,"village":2352,"third":2353,"knew":2354,"2016":2355,"asked":2356,"turned":2357,"st":2358,"wanted":2359,"say":2360,"##p":2361,"together":2362,"received":2363,"main":2364,"son":2365,"served":2366,"different":2367,"##en":2368,"behind":2369,"himself":2370,"felt":2371,"members":2372,"power":2373,"football":2374,"law":2375,"voice":2376,"play":2377,"##in":2378,"near":2379,"park":2380,"history":2381,"30":2382,"having":2383,"2005":2384,"16":2385,"##man":2386,"saw":2387,"mother":2388,"##al":2389,"army":2390,"point":2391,"front":2392,"help":2393,"english":2394,"street":2395,"art":2396,"late":2397,"hands":2398,"games":2399,"award":2400,"##ia":2401,"young":2402,"14":2403,"put":2404,"published":2405,"country":2406,"division":2407,"across":2408,"told":2409,"13":2410,"often":2411,"ever":2412,"french":2413,"london":2414,"center":2415,"six":2416,"red":2417,"2017":2418,"led":2419,"days":2420,"include":2421,"light":2422,"25":2423,"find":2424,"tell":2425,"among":2426,"species":2427,"really":2428,"according":2429,"central":2430,"half":2431,"2004":2432,"form":2433,"original":2434,"gave":2435,"office":2436,"making":2437,"enough":2438,"lost":2439,"full":2440,"opened":2441,"must":2442,"included":2443,"live":2444,"given":2445,"german":2446,"player":2447,"run":2448,"business":2449,"woman":2450,"community":2451,"cup":2452,"might":2453,"million":2454,"land":2455,"2000":2456,"court":2457,"development":2458,"17":2459,"short":2460,"round":2461,"ii":2462,"km":2463,"seen":2464,"class":2465,"story":2466,"always":2467,"become":2468,"sure":2469,"research":2470,"almost":2471,"director":2472,"council":2473,"la":2474,"##2":2475,"career":2476,"things":2477,"using":2478,"island":2479,"##z":2480,"couldn":2481,"car":2482,"##is":2483,"24":2484,"close":2485,"force":2486,"##1":2487,"better":2488,"free":2489,"support":2490,"control":2491,"field":2492,"students":2493,"2003":2494,"education":2495,"married":2496,"##b":2497,"nothing":2498,"worked":2499,"others":2500,"record":2501,"big":2502,"inside":2503,"level":2504,"anything":2505,"continued":2506,"give":2507,"james":2508,"##3":2509,"military":2510,"established":2511,"non":2512,"returned":2513,"feel":2514,"does":2515,"title":2516,"written":2517,"thing":2518,"feet":2519,"william":2520,"far":2521,"co":2522,"association":2523,"hard":2524,"already":2525,"2002":2526,"##ra":2527,"championship":2528,"human":2529,"western":2530,"100":2531,"##na":2532,"department":2533,"hall":2534,"role":2535,"various":2536,"production":2537,"21":2538,"19":2539,"heart":2540,"2001":2541,"living":2542,"fire":2543,"version":2544,"##ers":2545,"##f":2546,"television":2547,"royal":2548,"##4":2549,"produced":2550,"working":2551,"act":2552,"case":2553,"society":2554,"region":2555,"present":2556,"radio":2557,"period":2558,"looking":2559,"least":2560,"total":2561,"keep":2562,"england":2563,"wife":2564,"program":2565,"per":2566,"brother":2567,"mind":2568,"special":2569,"22":2570,"##le":2571,"am":2572,"works":2573,"soon":2574,"##6":2575,"political":2576,"george":2577,"services":2578,"taken":2579,"created":2580,"##7":2581,"further":2582,"able":2583,"reached":2584,"david":2585,"union":2586,"joined":2587,"upon":2588,"done":2589,"important":2590,"social":2591,"information":2592,"either":2593,"##ic":2594,"##x":2595,"appeared":2596,"position":2597,"ground":2598,"lead":2599,"rock":2600,"dark":2601,"election":2602,"23":2603,"board":2604,"france":2605,"hair":2606,"course":2607,"arms":2608,"site":2609,"police":2610,"girl":2611,"instead":2612,"real":2613,"sound":2614,"##v":2615,"words":2616,"moment":2617,"##te":2618,"someone":2619,"##8":2620,"summer":2621,"project":2622,"announced":2623,"san":2624,"less":2625,"wrote":2626,"past":2627,"followed":2628,"##5":2629,"blue":2630,"founded":2631,"al":2632,"finally":2633,"india":2634,"taking":2635,"records":2636,"america":2637,"##ne":2638,"1999":2639,"design":2640,"considered":2641,"northern":2642,"god":2643,"stop":2644,"battle":2645,"toward":2646,"european":2647,"outside":2648,"described":2649,"track":2650,"today":2651,"playing":2652,"language":2653,"28":2654,"call":2655,"26":2656,"heard":2657,"professional":2658,"low":2659,"australia":2660,"miles":2661,"california":2662,"win":2663,"yet":2664,"green":2665,"##ie":2666,"trying":2667,"blood":2668,"##ton":2669,"southern":2670,"science":2671,"maybe":2672,"everything":2673,"match":2674,"square":2675,"27":2676,"mouth":2677,"video":2678,"race":2679,"recorded":2680,"leave":2681,"above":2682,"##9":2683,"daughter":2684,"points":2685,"space":2686,"1998":2687,"museum":2688,"change":2689,"middle":2690,"common":2691,"##0":2692,"move":2693,"tv":2694,"post":2695,"##ta":2696,"lake":2697,"seven":2698,"tried":2699,"elected":2700,"closed":2701,"ten":2702,"paul":2703,"minister":2704,"##th":2705,"months":2706,"start":2707,"chief":2708,"return":2709,"canada":2710,"person":2711,"sea":2712,"release":2713,"similar":2714,"modern":2715,"brought":2716,"rest":2717,"hit":2718,"formed":2719,"mr":2720,"##la":2721,"1997":2722,"floor":2723,"event":2724,"doing":2725,"thomas":2726,"1996":2727,"robert":2728,"care":2729,"killed":2730,"training":2731,"star":2732,"week":2733,"needed":2734,"turn":2735,"finished":2736,"railway":2737,"rather":2738,"news":2739,"health":2740,"sent":2741,"example":2742,"ran":2743,"term":2744,"michael":2745,"coming":2746,"currently":2747,"yes":2748,"forces":2749,"despite":2750,"gold":2751,"areas":2752,"50":2753,"stage":2754,"fact":2755,"29":2756,"dead":2757,"says":2758,"popular":2759,"2018":2760,"originally":2761,"germany":2762,"probably":2763,"developed":2764,"result":2765,"pulled":2766,"friend":2767,"stood":2768,"money":2769,"running":2770,"mi":2771,"signed":2772,"word":2773,"songs":2774,"child":2775,"eventually":2776,"met":2777,"tour":2778,"average":2779,"teams":2780,"minutes":2781,"festival":2782,"current":2783,"deep":2784,"kind":2785,"1995":2786,"decided":2787,"usually":2788,"eastern":2789,"seemed":2790,"##ness":2791,"episode":2792,"bed":2793,"added":2794,"table":2795,"indian":2796,"private":2797,"charles":2798,"route":2799,"available":2800,"idea":2801,"throughout":2802,"centre":2803,"addition":2804,"appointed":2805,"style":2806,"1994":2807,"books":2808,"eight":2809,"construction":2810,"press":2811,"mean":2812,"wall":2813,"friends":2814,"remained":2815,"schools":2816,"study":2817,"##ch":2818,"##um":2819,"institute":2820,"oh":2821,"chinese":2822,"sometimes":2823,"events":2824,"possible":2825,"1992":2826,"australian":2827,"type":2828,"brown":2829,"forward":2830,"talk":2831,"process":2832,"food":2833,"debut":2834,"seat":2835,"performance":2836,"committee":2837,"features":2838,"character":2839,"arts":2840,"herself":2841,"else":2842,"lot":2843,"strong":2844,"russian":2845,"range":2846,"hours":2847,"peter":2848,"arm":2849,"##da":2850,"morning":2851,"dr":2852,"sold":2853,"##ry":2854,"quickly":2855,"directed":2856,"1993":2857,"guitar":2858,"china":2859,"##w":2860,"31":2861,"list":2862,"##ma":2863,"performed":2864,"media":2865,"uk":2866,"players":2867,"smile":2868,"##rs":2869,"myself":2870,"40":2871,"placed":2872,"coach":2873,"province":2874,"towards":2875,"wouldn":2876,"leading":2877,"whole":2878,"boy":2879,"official":2880,"designed":2881,"grand":2882,"census":2883,"##el":2884,"europe":2885,"attack":2886,"japanese":2887,"henry":2888,"1991":2889,"##re":2890,"##os":2891,"cross":2892,"getting":2893,"alone":2894,"action":2895,"lower":2896,"network":2897,"wide":2898,"washington":2899,"japan":2900,"1990":2901,"hospital":2902,"believe":2903,"changed":2904,"sister":2905,"##ar":2906,"hold":2907,"gone":2908,"sir":2909,"hadn":2910,"ship":2911,"##ka":2912,"studies":2913,"academy":2914,"shot":2915,"rights":2916,"below":2917,"base":2918,"bad":2919,"involved":2920,"kept":2921,"largest":2922,"##ist":2923,"bank":2924,"future":2925,"especially":2926,"beginning":2927,"mark":2928,"movement":2929,"section":2930,"female":2931,"magazine":2932,"plan":2933,"professor":2934,"lord":2935,"longer":2936,"##ian":2937,"sat":2938,"walked":2939,"hill":2940,"actually":2941,"civil":2942,"energy":2943,"model":2944,"families":2945,"size":2946,"thus":2947,"aircraft":2948,"completed":2949,"includes":2950,"data":2951,"captain":2952,"##or":2953,"fight":2954,"vocals":2955,"featured":2956,"richard":2957,"bridge":2958,"fourth":2959,"1989":2960,"officer":2961,"stone":2962,"hear":2963,"##ism":2964,"means":2965,"medical":2966,"groups":2967,"management":2968,"self":2969,"lips":2970,"competition":2971,"entire":2972,"lived":2973,"technology":2974,"leaving":2975,"federal":2976,"tournament":2977,"bit":2978,"passed":2979,"hot":2980,"independent":2981,"awards":2982,"kingdom":2983,"mary":2984,"spent":2985,"fine":2986,"doesn":2987,"reported":2988,"##ling":2989,"jack":2990,"fall":2991,"raised":2992,"itself":2993,"stay":2994,"true":2995,"studio":2996,"1988":2997,"sports":2998,"replaced":2999,"paris":3000,"systems":3001,"saint":3002,"leader":3003,"theatre":3004,"whose":3005,"market":3006,"capital":3007,"parents":3008,"spanish":3009,"canadian":3010,"earth":3011,"##ity":3012,"cut":3013,"degree":3014,"writing":3015,"bay":3016,"christian":3017,"awarded":3018,"natural":3019,"higher":3020,"bill":3021,"##as":3022,"coast":3023,"provided":3024,"previous":3025,"senior":3026,"ft":3027,"valley":3028,"organization":3029,"stopped":3030,"onto":3031,"countries":3032,"parts":3033,"conference":3034,"queen":3035,"security":3036,"interest":3037,"saying":3038,"allowed":3039,"master":3040,"earlier":3041,"phone":3042,"matter":3043,"smith":3044,"winning":3045,"try":3046,"happened":3047,"moving":3048,"campaign":3049,"los":3050,"##ley":3051,"breath":3052,"nearly":3053,"mid":3054,"1987":3055,"certain":3056,"girls":3057,"date":3058,"italian":3059,"african":3060,"standing":3061,"fell":3062,"artist":3063,"##ted":3064,"shows":3065,"deal":3066,"mine":3067,"industry":3068,"1986":3069,"##ng":3070,"everyone":3071,"republic":3072,"provide":3073,"collection":3074,"library":3075,"student":3076,"##ville":3077,"primary":3078,"owned":3079,"older":3080,"via":3081,"heavy":3082,"1st":3083,"makes":3084,"##able":3085,"attention":3086,"anyone":3087,"africa":3088,"##ri":3089,"stated":3090,"length":3091,"ended":3092,"fingers":3093,"command":3094,"staff":3095,"skin":3096,"foreign":3097,"opening":3098,"governor":3099,"okay":3100,"medal":3101,"kill":3102,"sun":3103,"cover":3104,"job":3105,"1985":3106,"introduced":3107,"chest":3108,"hell":3109,"feeling":3110,"##ies":3111,"success":3112,"meet":3113,"reason":3114,"standard":3115,"meeting":3116,"novel":3117,"1984":3118,"trade":3119,"source":3120,"buildings":3121,"##land":3122,"rose":3123,"guy":3124,"goal":3125,"##ur":3126,"chapter":3127,"native":3128,"husband":3129,"previously":3130,"unit":3131,"limited":3132,"entered":3133,"weeks":3134,"producer":3135,"operations":3136,"mountain":3137,"takes":3138,"covered":3139,"forced":3140,"related":3141,"roman":3142,"complete":3143,"successful":3144,"key":3145,"texas":3146,"cold":3147,"##ya":3148,"channel":3149,"1980":3150,"traditional":3151,"films":3152,"dance":3153,"clear":3154,"approximately":3155,"500":3156,"nine":3157,"van":3158,"prince":3159,"question":3160,"active":3161,"tracks":3162,"ireland":3163,"regional":3164,"silver":3165,"author":3166,"personal":3167,"sense":3168,"operation":3169,"##ine":3170,"economic":3171,"1983":3172,"holding":3173,"twenty":3174,"isbn":3175,"additional":3176,"speed":3177,"hour":3178,"edition":3179,"regular":3180,"historic":3181,"places":3182,"whom":3183,"shook":3184,"movie":3185,"km²":3186,"secretary":3187,"prior":3188,"report":3189,"chicago":3190,"read":3191,"foundation":3192,"view":3193,"engine":3194,"scored":3195,"1982":3196,"units":3197,"ask":3198,"airport":3199,"property":3200,"ready":3201,"immediately":3202,"lady":3203,"month":3204,"listed":3205,"contract":3206,"##de":3207,"manager":3208,"themselves":3209,"lines":3210,"##ki":3211,"navy":3212,"writer":3213,"meant":3214,"##ts":3215,"runs":3216,"##ro":3217,"practice":3218,"championships":3219,"singer":3220,"glass":3221,"commission":3222,"required":3223,"forest":3224,"starting":3225,"culture":3226,"generally":3227,"giving":3228,"access":3229,"attended":3230,"test":3231,"couple":3232,"stand":3233,"catholic":3234,"martin":3235,"caught":3236,"executive":3237,"##less":3238,"eye":3239,"##ey":3240,"thinking":3241,"chair":3242,"quite":3243,"shoulder":3244,"1979":3245,"hope":3246,"decision":3247,"plays":3248,"defeated":3249,"municipality":3250,"whether":3251,"structure":3252,"offered":3253,"slowly":3254,"pain":3255,"ice":3256,"direction":3257,"##ion":3258,"paper":3259,"mission":3260,"1981":3261,"mostly":3262,"200":3263,"noted":3264,"individual":3265,"managed":3266,"nature":3267,"lives":3268,"plant":3269,"##ha":3270,"helped":3271,"except":3272,"studied":3273,"computer":3274,"figure":3275,"relationship":3276,"issue":3277,"significant":3278,"loss":3279,"die":3280,"smiled":3281,"gun":3282,"ago":3283,"highest":3284,"1972":3285,"##am":3286,"male":3287,"bring":3288,"goals":3289,"mexico":3290,"problem":3291,"distance":3292,"commercial":3293,"completely":3294,"location":3295,"annual":3296,"famous":3297,"drive":3298,"1976":3299,"neck":3300,"1978":3301,"surface":3302,"caused":3303,"italy":3304,"understand":3305,"greek":3306,"highway":3307,"wrong":3308,"hotel":3309,"comes":3310,"appearance":3311,"joseph":3312,"double":3313,"issues":3314,"musical":3315,"companies":3316,"castle":3317,"income":3318,"review":3319,"assembly":3320,"bass":3321,"initially":3322,"parliament":3323,"artists":3324,"experience":3325,"1974":3326,"particular":3327,"walk":3328,"foot":3329,"engineering":3330,"talking":3331,"window":3332,"dropped":3333,"##ter":3334,"miss":3335,"baby":3336,"boys":3337,"break":3338,"1975":3339,"stars":3340,"edge":3341,"remember":3342,"policy":3343,"carried":3344,"train":3345,"stadium":3346,"bar":3347,"sex":3348,"angeles":3349,"evidence":3350,"##ge":3351,"becoming":3352,"assistant":3353,"soviet":3354,"1977":3355,"upper":3356,"step":3357,"wing":3358,"1970":3359,"youth":3360,"financial":3361,"reach":3362,"##ll":3363,"actor":3364,"numerous":3365,"##se":3366,"##st":3367,"nodded":3368,"arrived":3369,"##ation":3370,"minute":3371,"##nt":3372,"believed":3373,"sorry":3374,"complex":3375,"beautiful":3376,"victory":3377,"associated":3378,"temple":3379,"1968":3380,"1973":3381,"chance":3382,"perhaps":3383,"metal":3384,"##son":3385,"1945":3386,"bishop":3387,"##et":3388,"lee":3389,"launched":3390,"particularly":3391,"tree":3392,"le":3393,"retired":3394,"subject":3395,"prize":3396,"contains":3397,"yeah":3398,"theory":3399,"empire":3400,"##ce":3401,"suddenly":3402,"waiting":3403,"trust":3404,"recording":3405,"##to":3406,"happy":3407,"terms":3408,"camp":3409,"champion":3410,"1971":3411,"religious":3412,"pass":3413,"zealand":3414,"names":3415,"2nd":3416,"port":3417,"ancient":3418,"tom":3419,"corner":3420,"represented":3421,"watch":3422,"legal":3423,"anti":3424,"justice":3425,"cause":3426,"watched":3427,"brothers":3428,"45":3429,"material":3430,"changes":3431,"simply":3432,"response":3433,"louis":3434,"fast":3435,"##ting":3436,"answer":3437,"60":3438,"historical":3439,"1969":3440,"stories":3441,"straight":3442,"create":3443,"feature":3444,"increased":3445,"rate":3446,"administration":3447,"virginia":3448,"el":3449,"activities":3450,"cultural":3451,"overall":3452,"winner":3453,"programs":3454,"basketball":3455,"legs":3456,"guard":3457,"beyond":3458,"cast":3459,"doctor":3460,"mm":3461,"flight":3462,"results":3463,"remains":3464,"cost":3465,"effect":3466,"winter":3467,"##ble":3468,"larger":3469,"islands":3470,"problems":3471,"chairman":3472,"grew":3473,"commander":3474,"isn":3475,"1967":3476,"pay":3477,"failed":3478,"selected":3479,"hurt":3480,"fort":3481,"box":3482,"regiment":3483,"majority":3484,"journal":3485,"35":3486,"edward":3487,"plans":3488,"##ke":3489,"##ni":3490,"shown":3491,"pretty":3492,"irish":3493,"characters":3494,"directly":3495,"scene":3496,"likely":3497,"operated":3498,"allow":3499,"spring":3500,"##j":3501,"junior":3502,"matches":3503,"looks":3504,"mike":3505,"houses":3506,"fellow":3507,"##tion":3508,"beach":3509,"marriage":3510,"##ham":3511,"##ive":3512,"rules":3513,"oil":3514,"65":3515,"florida":3516,"expected":3517,"nearby":3518,"congress":3519,"sam":3520,"peace":3521,"recent":3522,"iii":3523,"wait":3524,"subsequently":3525,"cell":3526,"##do":3527,"variety":3528,"serving":3529,"agreed":3530,"please":3531,"poor":3532,"joe":3533,"pacific":3534,"attempt":3535,"wood":3536,"democratic":3537,"piece":3538,"prime":3539,"##ca":3540,"rural":3541,"mile":3542,"touch":3543,"appears":3544,"township":3545,"1964":3546,"1966":3547,"soldiers":3548,"##men":3549,"##ized":3550,"1965":3551,"pennsylvania":3552,"closer":3553,"fighting":3554,"claimed":3555,"score":3556,"jones":3557,"physical":3558,"editor":3559,"##ous":3560,"filled":3561,"genus":3562,"specific":3563,"sitting":3564,"super":3565,"mom":3566,"##va":3567,"therefore":3568,"supported":3569,"status":3570,"fear":3571,"cases":3572,"store":3573,"meaning":3574,"wales":3575,"minor":3576,"spain":3577,"tower":3578,"focus":3579,"vice":3580,"frank":3581,"follow":3582,"parish":3583,"separate":3584,"golden":3585,"horse":3586,"fifth":3587,"remaining":3588,"branch":3589,"32":3590,"presented":3591,"stared":3592,"##id":3593,"uses":3594,"secret":3595,"forms":3596,"##co":3597,"baseball":3598,"exactly":3599,"##ck":3600,"choice":3601,"note":3602,"discovered":3603,"travel":3604,"composed":3605,"truth":3606,"russia":3607,"ball":3608,"color":3609,"kiss":3610,"dad":3611,"wind":3612,"continue":3613,"ring":3614,"referred":3615,"numbers":3616,"digital":3617,"greater":3618,"##ns":3619,"metres":3620,"slightly":3621,"direct":3622,"increase":3623,"1960":3624,"responsible":3625,"crew":3626,"rule":3627,"trees":3628,"troops":3629,"##no":3630,"broke":3631,"goes":3632,"individuals":3633,"hundred":3634,"weight":3635,"creek":3636,"sleep":3637,"memory":3638,"defense":3639,"provides":3640,"ordered":3641,"code":3642,"value":3643,"jewish":3644,"windows":3645,"1944":3646,"safe":3647,"judge":3648,"whatever":3649,"corps":3650,"realized":3651,"growing":3652,"pre":3653,"##ga":3654,"cities":3655,"alexander":3656,"gaze":3657,"lies":3658,"spread":3659,"scott":3660,"letter":3661,"showed":3662,"situation":3663,"mayor":3664,"transport":3665,"watching":3666,"workers":3667,"extended":3668,"##li":3669,"expression":3670,"normal":3671,"##ment":3672,"chart":3673,"multiple":3674,"border":3675,"##ba":3676,"host":3677,"##ner":3678,"daily":3679,"mrs":3680,"walls":3681,"piano":3682,"##ko":3683,"heat":3684,"cannot":3685,"##ate":3686,"earned":3687,"products":3688,"drama":3689,"era":3690,"authority":3691,"seasons":3692,"join":3693,"grade":3694,"##io":3695,"sign":3696,"difficult":3697,"machine":3698,"1963":3699,"territory":3700,"mainly":3701,"##wood":3702,"stations":3703,"squadron":3704,"1962":3705,"stepped":3706,"iron":3707,"19th":3708,"##led":3709,"serve":3710,"appear":3711,"sky":3712,"speak":3713,"broken":3714,"charge":3715,"knowledge":3716,"kilometres":3717,"removed":3718,"ships":3719,"article":3720,"campus":3721,"simple":3722,"##ty":3723,"pushed":3724,"britain":3725,"##ve":3726,"leaves":3727,"recently":3728,"cd":3729,"soft":3730,"boston":3731,"latter":3732,"easy":3733,"acquired":3734,"poland":3735,"##sa":3736,"quality":3737,"officers":3738,"presence":3739,"planned":3740,"nations":3741,"mass":3742,"broadcast":3743,"jean":3744,"share":3745,"image":3746,"influence":3747,"wild":3748,"offer":3749,"emperor":3750,"electric":3751,"reading":3752,"headed":3753,"ability":3754,"promoted":3755,"yellow":3756,"ministry":3757,"1942":3758,"throat":3759,"smaller":3760,"politician":3761,"##by":3762,"latin":3763,"spoke":3764,"cars":3765,"williams":3766,"males":3767,"lack":3768,"pop":3769,"80":3770,"##ier":3771,"acting":3772,"seeing":3773,"consists":3774,"##ti":3775,"estate":3776,"1961":3777,"pressure":3778,"johnson":3779,"newspaper":3780,"jr":3781,"chris":3782,"olympics":3783,"online":3784,"conditions":3785,"beat":3786,"elements":3787,"walking":3788,"vote":3789,"##field":3790,"needs":3791,"carolina":3792,"text":3793,"featuring":3794,"global":3795,"block":3796,"shirt":3797,"levels":3798,"francisco":3799,"purpose":3800,"females":3801,"et":3802,"dutch":3803,"duke":3804,"ahead":3805,"gas":3806,"twice":3807,"safety":3808,"serious":3809,"turning":3810,"highly":3811,"lieutenant":3812,"firm":3813,"maria":3814,"amount":3815,"mixed":3816,"daniel":3817,"proposed":3818,"perfect":3819,"agreement":3820,"affairs":3821,"3rd":3822,"seconds":3823,"contemporary":3824,"paid":3825,"1943":3826,"prison":3827,"save":3828,"kitchen":3829,"label":3830,"administrative":3831,"intended":3832,"constructed":3833,"academic":3834,"nice":3835,"teacher":3836,"races":3837,"1956":3838,"formerly":3839,"corporation":3840,"ben":3841,"nation":3842,"issued":3843,"shut":3844,"1958":3845,"drums":3846,"housing":3847,"victoria":3848,"seems":3849,"opera":3850,"1959":3851,"graduated":3852,"function":3853,"von":3854,"mentioned":3855,"picked":3856,"build":3857,"recognized":3858,"shortly":3859,"protection":3860,"picture":3861,"notable":3862,"exchange":3863,"elections":3864,"1980s":3865,"loved":3866,"percent":3867,"racing":3868,"fish":3869,"elizabeth":3870,"garden":3871,"volume":3872,"hockey":3873,"1941":3874,"beside":3875,"settled":3876,"##ford":3877,"1940":3878,"competed":3879,"replied":3880,"drew":3881,"1948":3882,"actress":3883,"marine":3884,"scotland":3885,"steel":3886,"glanced":3887,"farm":3888,"steve":3889,"1957":3890,"risk":3891,"tonight":3892,"positive":3893,"magic":3894,"singles":3895,"effects":3896,"gray":3897,"screen":3898,"dog":3899,"##ja":3900,"residents":3901,"bus":3902,"sides":3903,"none":3904,"secondary":3905,"literature":3906,"polish":3907,"destroyed":3908,"flying":3909,"founder":3910,"households":3911,"1939":3912,"lay":3913,"reserve":3914,"usa":3915,"gallery":3916,"##ler":3917,"1946":3918,"industrial":3919,"younger":3920,"approach":3921,"appearances":3922,"urban":3923,"ones":3924,"1950":3925,"finish":3926,"avenue":3927,"powerful":3928,"fully":3929,"growth":3930,"page":3931,"honor":3932,"jersey":3933,"projects":3934,"advanced":3935,"revealed":3936,"basic":3937,"90":3938,"infantry":3939,"pair":3940,"equipment":3941,"visit":3942,"33":3943,"evening":3944,"search":3945,"grant":3946,"effort":3947,"solo":3948,"treatment":3949,"buried":3950,"republican":3951,"primarily":3952,"bottom":3953,"owner":3954,"1970s":3955,"israel":3956,"gives":3957,"jim":3958,"dream":3959,"bob":3960,"remain":3961,"spot":3962,"70":3963,"notes":3964,"produce":3965,"champions":3966,"contact":3967,"ed":3968,"soul":3969,"accepted":3970,"ways":3971,"del":3972,"##ally":3973,"losing":3974,"split":3975,"price":3976,"capacity":3977,"basis":3978,"trial":3979,"questions":3980,"##ina":3981,"1955":3982,"20th":3983,"guess":3984,"officially":3985,"memorial":3986,"naval":3987,"initial":3988,"##ization":3989,"whispered":3990,"median":3991,"engineer":3992,"##ful":3993,"sydney":3994,"##go":3995,"columbia":3996,"strength":3997,"300":3998,"1952":3999,"tears":4000,"senate":4001,"00":4002,"card":4003,"asian":4004,"agent":4005,"1947":4006,"software":4007,"44":4008,"draw":4009,"warm":4010,"supposed":4011,"com":4012,"pro":4013,"##il":4014,"transferred":4015,"leaned":4016,"##at":4017,"candidate":4018,"escape":4019,"mountains":4020,"asia":4021,"potential":4022,"activity":4023,"entertainment":4024,"seem":4025,"traffic":4026,"jackson":4027,"murder":4028,"36":4029,"slow":4030,"product":4031,"orchestra":4032,"haven":4033,"agency":4034,"bbc":4035,"taught":4036,"website":4037,"comedy":4038,"unable":4039,"storm":4040,"planning":4041,"albums":4042,"rugby":4043,"environment":4044,"scientific":4045,"grabbed":4046,"protect":4047,"##hi":4048,"boat":4049,"typically":4050,"1954":4051,"1953":4052,"damage":4053,"principal":4054,"divided":4055,"dedicated":4056,"mount":4057,"ohio":4058,"##berg":4059,"pick":4060,"fought":4061,"driver":4062,"##der":4063,"empty":4064,"shoulders":4065,"sort":4066,"thank":4067,"berlin":4068,"prominent":4069,"account":4070,"freedom":4071,"necessary":4072,"efforts":4073,"alex":4074,"headquarters":4075,"follows":4076,"alongside":4077,"des":4078,"simon":4079,"andrew":4080,"suggested":4081,"operating":4082,"learning":4083,"steps":4084,"1949":4085,"sweet":4086,"technical":4087,"begin":4088,"easily":4089,"34":4090,"teeth":4091,"speaking":4092,"settlement":4093,"scale":4094,"##sh":4095,"renamed":4096,"ray":4097,"max":4098,"enemy":4099,"semi":4100,"joint":4101,"compared":4102,"##rd":4103,"scottish":4104,"leadership":4105,"analysis":4106,"offers":4107,"georgia":4108,"pieces":4109,"captured":4110,"animal":4111,"deputy":4112,"guest":4113,"organized":4114,"##lin":4115,"tony":4116,"combined":4117,"method":4118,"challenge":4119,"1960s":4120,"huge":4121,"wants":4122,"battalion":4123,"sons":4124,"rise":4125,"crime":4126,"types":4127,"facilities":4128,"telling":4129,"path":4130,"1951":4131,"platform":4132,"sit":4133,"1990s":4134,"##lo":4135,"tells":4136,"assigned":4137,"rich":4138,"pull":4139,"##ot":4140,"commonly":4141,"alive":4142,"##za":4143,"letters":4144,"concept":4145,"conducted":4146,"wearing":4147,"happen":4148,"bought":4149,"becomes":4150,"holy":4151,"gets":4152,"ocean":4153,"defeat":4154,"languages":4155,"purchased":4156,"coffee":4157,"occurred":4158,"titled":4159,"##q":4160,"declared":4161,"applied":4162,"sciences":4163,"concert":4164,"sounds":4165,"jazz":4166,"brain":4167,"##me":4168,"painting":4169,"fleet":4170,"tax":4171,"nick":4172,"##ius":4173,"michigan":4174,"count":4175,"animals":4176,"leaders":4177,"episodes":4178,"##line":4179,"content":4180,"##den":4181,"birth":4182,"##it":4183,"clubs":4184,"64":4185,"palace":4186,"critical":4187,"refused":4188,"fair":4189,"leg":4190,"laughed":4191,"returning":4192,"surrounding":4193,"participated":4194,"formation":4195,"lifted":4196,"pointed":4197,"connected":4198,"rome":4199,"medicine":4200,"laid":4201,"taylor":4202,"santa":4203,"powers":4204,"adam":4205,"tall":4206,"shared":4207,"focused":4208,"knowing":4209,"yards":4210,"entrance":4211,"falls":4212,"##wa":4213,"calling":4214,"##ad":4215,"sources":4216,"chosen":4217,"beneath":4218,"resources":4219,"yard":4220,"##ite":4221,"nominated":4222,"silence":4223,"zone":4224,"defined":4225,"##que":4226,"gained":4227,"thirty":4228,"38":4229,"bodies":4230,"moon":4231,"##ard":4232,"adopted":4233,"christmas":4234,"widely":4235,"register":4236,"apart":4237,"iran":4238,"premier":4239,"serves":4240,"du":4241,"unknown":4242,"parties":4243,"##les":4244,"generation":4245,"##ff":4246,"continues":4247,"quick":4248,"fields":4249,"brigade":4250,"quiet":4251,"teaching":4252,"clothes":4253,"impact":4254,"weapons":4255,"partner":4256,"flat":4257,"theater":4258,"supreme":4259,"1938":4260,"37":4261,"relations":4262,"##tor":4263,"plants":4264,"suffered":4265,"1936":4266,"wilson":4267,"kids":4268,"begins":4269,"##age":4270,"1918":4271,"seats":4272,"armed":4273,"internet":4274,"models":4275,"worth":4276,"laws":4277,"400":4278,"communities":4279,"classes":4280,"background":4281,"knows":4282,"thanks":4283,"quarter":4284,"reaching":4285,"humans":4286,"carry":4287,"killing":4288,"format":4289,"kong":4290,"hong":4291,"setting":4292,"75":4293,"architecture":4294,"disease":4295,"railroad":4296,"inc":4297,"possibly":4298,"wish":4299,"arthur":4300,"thoughts":4301,"harry":4302,"doors":4303,"density":4304,"##di":4305,"crowd":4306,"illinois":4307,"stomach":4308,"tone":4309,"unique":4310,"reports":4311,"anyway":4312,"##ir":4313,"liberal":4314,"der":4315,"vehicle":4316,"thick":4317,"dry":4318,"drug":4319,"faced":4320,"largely":4321,"facility":4322,"theme":4323,"holds":4324,"creation":4325,"strange":4326,"colonel":4327,"##mi":4328,"revolution":4329,"bell":4330,"politics":4331,"turns":4332,"silent":4333,"rail":4334,"relief":4335,"independence":4336,"combat":4337,"shape":4338,"write":4339,"determined":4340,"sales":4341,"learned":4342,"4th":4343,"finger":4344,"oxford":4345,"providing":4346,"1937":4347,"heritage":4348,"fiction":4349,"situated":4350,"designated":4351,"allowing":4352,"distribution":4353,"hosted":4354,"##est":4355,"sight":4356,"interview":4357,"estimated":4358,"reduced":4359,"##ria":4360,"toronto":4361,"footballer":4362,"keeping":4363,"guys":4364,"damn":4365,"claim":4366,"motion":4367,"sport":4368,"sixth":4369,"stayed":4370,"##ze":4371,"en":4372,"rear":4373,"receive":4374,"handed":4375,"twelve":4376,"dress":4377,"audience":4378,"granted":4379,"brazil":4380,"##well":4381,"spirit":4382,"##ated":4383,"noticed":4384,"etc":4385,"olympic":4386,"representative":4387,"eric":4388,"tight":4389,"trouble":4390,"reviews":4391,"drink":4392,"vampire":4393,"missing":4394,"roles":4395,"ranked":4396,"newly":4397,"household":4398,"finals":4399,"wave":4400,"critics":4401,"##ee":4402,"phase":4403,"massachusetts":4404,"pilot":4405,"unlike":4406,"philadelphia":4407,"bright":4408,"guns":4409,"crown":4410,"organizations":4411,"roof":4412,"42":4413,"respectively":4414,"clearly":4415,"tongue":4416,"marked":4417,"circle":4418,"fox":4419,"korea":4420,"bronze":4421,"brian":4422,"expanded":4423,"sexual":4424,"supply":4425,"yourself":4426,"inspired":4427,"labour":4428,"fc":4429,"##ah":4430,"reference":4431,"vision":4432,"draft":4433,"connection":4434,"brand":4435,"reasons":4436,"1935":4437,"classic":4438,"driving":4439,"trip":4440,"jesus":4441,"cells":4442,"entry":4443,"1920":4444,"neither":4445,"trail":4446,"claims":4447,"atlantic":4448,"orders":4449,"labor":4450,"nose":4451,"afraid":4452,"identified":4453,"intelligence":4454,"calls":4455,"cancer":4456,"attacked":4457,"passing":4458,"stephen":4459,"positions":4460,"imperial":4461,"grey":4462,"jason":4463,"39":4464,"sunday":4465,"48":4466,"swedish":4467,"avoid":4468,"extra":4469,"uncle":4470,"message":4471,"covers":4472,"allows":4473,"surprise":4474,"materials":4475,"fame":4476,"hunter":4477,"##ji":4478,"1930":4479,"citizens":4480,"figures":4481,"davis":4482,"environmental":4483,"confirmed":4484,"shit":4485,"titles":4486,"di":4487,"performing":4488,"difference":4489,"acts":4490,"attacks":4491,"##ov":4492,"existing":4493,"votes":4494,"opportunity":4495,"nor":4496,"shop":4497,"entirely":4498,"trains":4499,"opposite":4500,"pakistan":4501,"##pa":4502,"develop":4503,"resulted":4504,"representatives":4505,"actions":4506,"reality":4507,"pressed":4508,"##ish":4509,"barely":4510,"wine":4511,"conversation":4512,"faculty":4513,"northwest":4514,"ends":4515,"documentary":4516,"nuclear":4517,"stock":4518,"grace":4519,"sets":4520,"eat":4521,"alternative":4522,"##ps":4523,"bag":4524,"resulting":4525,"creating":4526,"surprised":4527,"cemetery":4528,"1919":4529,"drop":4530,"finding":4531,"sarah":4532,"cricket":4533,"streets":4534,"tradition":4535,"ride":4536,"1933":4537,"exhibition":4538,"target":4539,"ear":4540,"explained":4541,"rain":4542,"composer":4543,"injury":4544,"apartment":4545,"municipal":4546,"educational":4547,"occupied":4548,"netherlands":4549,"clean":4550,"billion":4551,"constitution":4552,"learn":4553,"1914":4554,"maximum":4555,"classical":4556,"francis":4557,"lose":4558,"opposition":4559,"jose":4560,"ontario":4561,"bear":4562,"core":4563,"hills":4564,"rolled":4565,"ending":4566,"drawn":4567,"permanent":4568,"fun":4569,"##tes":4570,"##lla":4571,"lewis":4572,"sites":4573,"chamber":4574,"ryan":4575,"##way":4576,"scoring":4577,"height":4578,"1934":4579,"##house":4580,"lyrics":4581,"staring":4582,"55":4583,"officials":4584,"1917":4585,"snow":4586,"oldest":4587,"##tic":4588,"orange":4589,"##ger":4590,"qualified":4591,"interior":4592,"apparently":4593,"succeeded":4594,"thousand":4595,"dinner":4596,"lights":4597,"existence":4598,"fans":4599,"heavily":4600,"41":4601,"greatest":4602,"conservative":4603,"send":4604,"bowl":4605,"plus":4606,"enter":4607,"catch":4608,"##un":4609,"economy":4610,"duty":4611,"1929":4612,"speech":4613,"authorities":4614,"princess":4615,"performances":4616,"versions":4617,"shall":4618,"graduate":4619,"pictures":4620,"effective":4621,"remembered":4622,"poetry":4623,"desk":4624,"crossed":4625,"starring":4626,"starts":4627,"passenger":4628,"sharp":4629,"##ant":4630,"acres":4631,"ass":4632,"weather":4633,"falling":4634,"rank":4635,"fund":4636,"supporting":4637,"check":4638,"adult":4639,"publishing":4640,"heads":4641,"cm":4642,"southeast":4643,"lane":4644,"##burg":4645,"application":4646,"bc":4647,"##ura":4648,"les":4649,"condition":4650,"transfer":4651,"prevent":4652,"display":4653,"ex":4654,"regions":4655,"earl":4656,"federation":4657,"cool":4658,"relatively":4659,"answered":4660,"besides":4661,"1928":4662,"obtained":4663,"portion":4664,"##town":4665,"mix":4666,"##ding":4667,"reaction":4668,"liked":4669,"dean":4670,"express":4671,"peak":4672,"1932":4673,"##tte":4674,"counter":4675,"religion":4676,"chain":4677,"rare":4678,"miller":4679,"convention":4680,"aid":4681,"lie":4682,"vehicles":4683,"mobile":4684,"perform":4685,"squad":4686,"wonder":4687,"lying":4688,"crazy":4689,"sword":4690,"##ping":4691,"attempted":4692,"centuries":4693,"weren":4694,"philosophy":4695,"category":4696,"##ize":4697,"anna":4698,"interested":4699,"47":4700,"sweden":4701,"wolf":4702,"frequently":4703,"abandoned":4704,"kg":4705,"literary":4706,"alliance":4707,"task":4708,"entitled":4709,"##ay":4710,"threw":4711,"promotion":4712,"factory":4713,"tiny":4714,"soccer":4715,"visited":4716,"matt":4717,"fm":4718,"achieved":4719,"52":4720,"defence":4721,"internal":4722,"persian":4723,"43":4724,"methods":4725,"##ging":4726,"arrested":4727,"otherwise":4728,"cambridge":4729,"programming":4730,"villages":4731,"elementary":4732,"districts":4733,"rooms":4734,"criminal":4735,"conflict":4736,"worry":4737,"trained":4738,"1931":4739,"attempts":4740,"waited":4741,"signal":4742,"bird":4743,"truck":4744,"subsequent":4745,"programme":4746,"##ol":4747,"ad":4748,"49":4749,"communist":4750,"details":4751,"faith":4752,"sector":4753,"patrick":4754,"carrying":4755,"laugh":4756,"##ss":4757,"controlled":4758,"korean":4759,"showing":4760,"origin":4761,"fuel":4762,"evil":4763,"1927":4764,"##ent":4765,"brief":4766,"identity":4767,"darkness":4768,"address":4769,"pool":4770,"missed":4771,"publication":4772,"web":4773,"planet":4774,"ian":4775,"anne":4776,"wings":4777,"invited":4778,"##tt":4779,"briefly":4780,"standards":4781,"kissed":4782,"##be":4783,"ideas":4784,"climate":4785,"causing":4786,"walter":4787,"worse":4788,"albert":4789,"articles":4790,"winners":4791,"desire":4792,"aged":4793,"northeast":4794,"dangerous":4795,"gate":4796,"doubt":4797,"1922":4798,"wooden":4799,"multi":4800,"##ky":4801,"poet":4802,"rising":4803,"funding":4804,"46":4805,"communications":4806,"communication":4807,"violence":4808,"copies":4809,"prepared":4810,"ford":4811,"investigation":4812,"skills":4813,"1924":4814,"pulling":4815,"electronic":4816,"##ak":4817,"##ial":4818,"##han":4819,"containing":4820,"ultimately":4821,"offices":4822,"singing":4823,"understanding":4824,"restaurant":4825,"tomorrow":4826,"fashion":4827,"christ":4828,"ward":4829,"da":4830,"pope":4831,"stands":4832,"5th":4833,"flow":4834,"studios":4835,"aired":4836,"commissioned":4837,"contained":4838,"exist":4839,"fresh":4840,"americans":4841,"##per":4842,"wrestling":4843,"approved":4844,"kid":4845,"employed":4846,"respect":4847,"suit":4848,"1925":4849,"angel":4850,"asking":4851,"increasing":4852,"frame":4853,"angry":4854,"selling":4855,"1950s":4856,"thin":4857,"finds":4858,"##nd":4859,"temperature":4860,"statement":4861,"ali":4862,"explain":4863,"inhabitants":4864,"towns":4865,"extensive":4866,"narrow":4867,"51":4868,"jane":4869,"flowers":4870,"images":4871,"promise":4872,"somewhere":4873,"object":4874,"fly":4875,"closely":4876,"##ls":4877,"1912":4878,"bureau":4879,"cape":4880,"1926":4881,"weekly":4882,"presidential":4883,"legislative":4884,"1921":4885,"##ai":4886,"##au":4887,"launch":4888,"founding":4889,"##ny":4890,"978":4891,"##ring":4892,"artillery":4893,"strike":4894,"un":4895,"institutions":4896,"roll":4897,"writers":4898,"landing":4899,"chose":4900,"kevin":4901,"anymore":4902,"pp":4903,"##ut":4904,"attorney":4905,"fit":4906,"dan":4907,"billboard":4908,"receiving":4909,"agricultural":4910,"breaking":4911,"sought":4912,"dave":4913,"admitted":4914,"lands":4915,"mexican":4916,"##bury":4917,"charlie":4918,"specifically":4919,"hole":4920,"iv":4921,"howard":4922,"credit":4923,"moscow":4924,"roads":4925,"accident":4926,"1923":4927,"proved":4928,"wear":4929,"struck":4930,"hey":4931,"guards":4932,"stuff":4933,"slid":4934,"expansion":4935,"1915":4936,"cat":4937,"anthony":4938,"##kin":4939,"melbourne":4940,"opposed":4941,"sub":4942,"southwest":4943,"architect":4944,"failure":4945,"plane":4946,"1916":4947,"##ron":4948,"map":4949,"camera":4950,"tank":4951,"listen":4952,"regarding":4953,"wet":4954,"introduction":4955,"metropolitan":4956,"link":4957,"ep":4958,"fighter":4959,"inch":4960,"grown":4961,"gene":4962,"anger":4963,"fixed":4964,"buy":4965,"dvd":4966,"khan":4967,"domestic":4968,"worldwide":4969,"chapel":4970,"mill":4971,"functions":4972,"examples":4973,"##head":4974,"developing":4975,"1910":4976,"turkey":4977,"hits":4978,"pocket":4979,"antonio":4980,"papers":4981,"grow":4982,"unless":4983,"circuit":4984,"18th":4985,"concerned":4986,"attached":4987,"journalist":4988,"selection":4989,"journey":4990,"converted":4991,"provincial":4992,"painted":4993,"hearing":4994,"aren":4995,"bands":4996,"negative":4997,"aside":4998,"wondered":4999,"knight":5000,"lap":5001,"survey":5002,"ma":5003,"##ow":5004,"noise":5005,"billy":5006,"##ium":5007,"shooting":5008,"guide":5009,"bedroom":5010,"priest":5011,"resistance":5012,"motor":5013,"homes":5014,"sounded":5015,"giant":5016,"##mer":5017,"150":5018,"scenes":5019,"equal":5020,"comic":5021,"patients":5022,"hidden":5023,"solid":5024,"actual":5025,"bringing":5026,"afternoon":5027,"touched":5028,"funds":5029,"wedding":5030,"consisted":5031,"marie":5032,"canal":5033,"sr":5034,"kim":5035,"treaty":5036,"turkish":5037,"recognition":5038,"residence":5039,"cathedral":5040,"broad":5041,"knees":5042,"incident":5043,"shaped":5044,"fired":5045,"norwegian":5046,"handle":5047,"cheek":5048,"contest":5049,"represent":5050,"##pe":5051,"representing":5052,"beauty":5053,"##sen":5054,"birds":5055,"advantage":5056,"emergency":5057,"wrapped":5058,"drawing":5059,"notice":5060,"pink":5061,"broadcasting":5062,"##ong":5063,"somehow":5064,"bachelor":5065,"seventh":5066,"collected":5067,"registered":5068,"establishment":5069,"alan":5070,"assumed":5071,"chemical":5072,"personnel":5073,"roger":5074,"retirement":5075,"jeff":5076,"portuguese":5077,"wore":5078,"tied":5079,"device":5080,"threat":5081,"progress":5082,"advance":5083,"##ised":5084,"banks":5085,"hired":5086,"manchester":5087,"nfl":5088,"teachers":5089,"structures":5090,"forever":5091,"##bo":5092,"tennis":5093,"helping":5094,"saturday":5095,"sale":5096,"applications":5097,"junction":5098,"hip":5099,"incorporated":5100,"neighborhood":5101,"dressed":5102,"ceremony":5103,"##ds":5104,"influenced":5105,"hers":5106,"visual":5107,"stairs":5108,"decades":5109,"inner":5110,"kansas":5111,"hung":5112,"hoped":5113,"gain":5114,"scheduled":5115,"downtown":5116,"engaged":5117,"austria":5118,"clock":5119,"norway":5120,"certainly":5121,"pale":5122,"protected":5123,"1913":5124,"victor":5125,"employees":5126,"plate":5127,"putting":5128,"surrounded":5129,"##ists":5130,"finishing":5131,"blues":5132,"tropical":5133,"##ries":5134,"minnesota":5135,"consider":5136,"philippines":5137,"accept":5138,"54":5139,"retrieved":5140,"1900":5141,"concern":5142,"anderson":5143,"properties":5144,"institution":5145,"gordon":5146,"successfully":5147,"vietnam":5148,"##dy":5149,"backing":5150,"outstanding":5151,"muslim":5152,"crossing":5153,"folk":5154,"producing":5155,"usual":5156,"demand":5157,"occurs":5158,"observed":5159,"lawyer":5160,"educated":5161,"##ana":5162,"kelly":5163,"string":5164,"pleasure":5165,"budget":5166,"items":5167,"quietly":5168,"colorado":5169,"philip":5170,"typical":5171,"##worth":5172,"derived":5173,"600":5174,"survived":5175,"asks":5176,"mental":5177,"##ide":5178,"56":5179,"jake":5180,"jews":5181,"distinguished":5182,"ltd":5183,"1911":5184,"sri":5185,"extremely":5186,"53":5187,"athletic":5188,"loud":5189,"thousands":5190,"worried":5191,"shadow":5192,"transportation":5193,"horses":5194,"weapon":5195,"arena":5196,"importance":5197,"users":5198,"tim":5199,"objects":5200,"contributed":5201,"dragon":5202,"douglas":5203,"aware":5204,"senator":5205,"johnny":5206,"jordan":5207,"sisters":5208,"engines":5209,"flag":5210,"investment":5211,"samuel":5212,"shock":5213,"capable":5214,"clark":5215,"row":5216,"wheel":5217,"refers":5218,"session":5219,"familiar":5220,"biggest":5221,"wins":5222,"hate":5223,"maintained":5224,"drove":5225,"hamilton":5226,"request":5227,"expressed":5228,"injured":5229,"underground":5230,"churches":5231,"walker":5232,"wars":5233,"tunnel":5234,"passes":5235,"stupid":5236,"agriculture":5237,"softly":5238,"cabinet":5239,"regarded":5240,"joining":5241,"indiana":5242,"##ea":5243,"##ms":5244,"push":5245,"dates":5246,"spend":5247,"behavior":5248,"woods":5249,"protein":5250,"gently":5251,"chase":5252,"morgan":5253,"mention":5254,"burning":5255,"wake":5256,"combination":5257,"occur":5258,"mirror":5259,"leads":5260,"jimmy":5261,"indeed":5262,"impossible":5263,"singapore":5264,"paintings":5265,"covering":5266,"##nes":5267,"soldier":5268,"locations":5269,"attendance":5270,"sell":5271,"historian":5272,"wisconsin":5273,"invasion":5274,"argued":5275,"painter":5276,"diego":5277,"changing":5278,"egypt":5279,"##don":5280,"experienced":5281,"inches":5282,"##ku":5283,"missouri":5284,"vol":5285,"grounds":5286,"spoken":5287,"switzerland":5288,"##gan":5289,"reform":5290,"rolling":5291,"ha":5292,"forget":5293,"massive":5294,"resigned":5295,"burned":5296,"allen":5297,"tennessee":5298,"locked":5299,"values":5300,"improved":5301,"##mo":5302,"wounded":5303,"universe":5304,"sick":5305,"dating":5306,"facing":5307,"pack":5308,"purchase":5309,"user":5310,"##pur":5311,"moments":5312,"##ul":5313,"merged":5314,"anniversary":5315,"1908":5316,"coal":5317,"brick":5318,"understood":5319,"causes":5320,"dynasty":5321,"queensland":5322,"establish":5323,"stores":5324,"crisis":5325,"promote":5326,"hoping":5327,"views":5328,"cards":5329,"referee":5330,"extension":5331,"##si":5332,"raise":5333,"arizona":5334,"improve":5335,"colonial":5336,"formal":5337,"charged":5338,"##rt":5339,"palm":5340,"lucky":5341,"hide":5342,"rescue":5343,"faces":5344,"95":5345,"feelings":5346,"candidates":5347,"juan":5348,"##ell":5349,"goods":5350,"6th":5351,"courses":5352,"weekend":5353,"59":5354,"luke":5355,"cash":5356,"fallen":5357,"##om":5358,"delivered":5359,"affected":5360,"installed":5361,"carefully":5362,"tries":5363,"swiss":5364,"hollywood":5365,"costs":5366,"lincoln":5367,"responsibility":5368,"##he":5369,"shore":5370,"file":5371,"proper":5372,"normally":5373,"maryland":5374,"assistance":5375,"jump":5376,"constant":5377,"offering":5378,"friendly":5379,"waters":5380,"persons":5381,"realize":5382,"contain":5383,"trophy":5384,"800":5385,"partnership":5386,"factor":5387,"58":5388,"musicians":5389,"cry":5390,"bound":5391,"oregon":5392,"indicated":5393,"hero":5394,"houston":5395,"medium":5396,"##ure":5397,"consisting":5398,"somewhat":5399,"##ara":5400,"57":5401,"cycle":5402,"##che":5403,"beer":5404,"moore":5405,"frederick":5406,"gotten":5407,"eleven":5408,"worst":5409,"weak":5410,"approached":5411,"arranged":5412,"chin":5413,"loan":5414,"universal":5415,"bond":5416,"fifteen":5417,"pattern":5418,"disappeared":5419,"##ney":5420,"translated":5421,"##zed":5422,"lip":5423,"arab":5424,"capture":5425,"interests":5426,"insurance":5427,"##chi":5428,"shifted":5429,"cave":5430,"prix":5431,"warning":5432,"sections":5433,"courts":5434,"coat":5435,"plot":5436,"smell":5437,"feed":5438,"golf":5439,"favorite":5440,"maintain":5441,"knife":5442,"vs":5443,"voted":5444,"degrees":5445,"finance":5446,"quebec":5447,"opinion":5448,"translation":5449,"manner":5450,"ruled":5451,"operate":5452,"productions":5453,"choose":5454,"musician":5455,"discovery":5456,"confused":5457,"tired":5458,"separated":5459,"stream":5460,"techniques":5461,"committed":5462,"attend":5463,"ranking":5464,"kings":5465,"throw":5466,"passengers":5467,"measure":5468,"horror":5469,"fan":5470,"mining":5471,"sand":5472,"danger":5473,"salt":5474,"calm":5475,"decade":5476,"dam":5477,"require":5478,"runner":5479,"##ik":5480,"rush":5481,"associate":5482,"greece":5483,"##ker":5484,"rivers":5485,"consecutive":5486,"matthew":5487,"##ski":5488,"sighed":5489,"sq":5490,"documents":5491,"steam":5492,"edited":5493,"closing":5494,"tie":5495,"accused":5496,"1905":5497,"##ini":5498,"islamic":5499,"distributed":5500,"directors":5501,"organisation":5502,"bruce":5503,"7th":5504,"breathing":5505,"mad":5506,"lit":5507,"arrival":5508,"concrete":5509,"taste":5510,"08":5511,"composition":5512,"shaking":5513,"faster":5514,"amateur":5515,"adjacent":5516,"stating":5517,"1906":5518,"twin":5519,"flew":5520,"##ran":5521,"tokyo":5522,"publications":5523,"##tone":5524,"obviously":5525,"ridge":5526,"storage":5527,"1907":5528,"carl":5529,"pages":5530,"concluded":5531,"desert":5532,"driven":5533,"universities":5534,"ages":5535,"terminal":5536,"sequence":5537,"borough":5538,"250":5539,"constituency":5540,"creative":5541,"cousin":5542,"economics":5543,"dreams":5544,"margaret":5545,"notably":5546,"reduce":5547,"montreal":5548,"mode":5549,"17th":5550,"ears":5551,"saved":5552,"jan":5553,"vocal":5554,"##ica":5555,"1909":5556,"andy":5557,"##jo":5558,"riding":5559,"roughly":5560,"threatened":5561,"##ise":5562,"meters":5563,"meanwhile":5564,"landed":5565,"compete":5566,"repeated":5567,"grass":5568,"czech":5569,"regularly":5570,"charges":5571,"tea":5572,"sudden":5573,"appeal":5574,"##ung":5575,"solution":5576,"describes":5577,"pierre":5578,"classification":5579,"glad":5580,"parking":5581,"##ning":5582,"belt":5583,"physics":5584,"99":5585,"rachel":5586,"add":5587,"hungarian":5588,"participate":5589,"expedition":5590,"damaged":5591,"gift":5592,"childhood":5593,"85":5594,"fifty":5595,"##red":5596,"mathematics":5597,"jumped":5598,"letting":5599,"defensive":5600,"mph":5601,"##ux":5602,"##gh":5603,"testing":5604,"##hip":5605,"hundreds":5606,"shoot":5607,"owners":5608,"matters":5609,"smoke":5610,"israeli":5611,"kentucky":5612,"dancing":5613,"mounted":5614,"grandfather":5615,"emma":5616,"designs":5617,"profit":5618,"argentina":5619,"##gs":5620,"truly":5621,"li":5622,"lawrence":5623,"cole":5624,"begun":5625,"detroit":5626,"willing":5627,"branches":5628,"smiling":5629,"decide":5630,"miami":5631,"enjoyed":5632,"recordings":5633,"##dale":5634,"poverty":5635,"ethnic":5636,"gay":5637,"##bi":5638,"gary":5639,"arabic":5640,"09":5641,"accompanied":5642,"##one":5643,"##ons":5644,"fishing":5645,"determine":5646,"residential":5647,"acid":5648,"##ary":5649,"alice":5650,"returns":5651,"starred":5652,"mail":5653,"##ang":5654,"jonathan":5655,"strategy":5656,"##ue":5657,"net":5658,"forty":5659,"cook":5660,"businesses":5661,"equivalent":5662,"commonwealth":5663,"distinct":5664,"ill":5665,"##cy":5666,"seriously":5667,"##ors":5668,"##ped":5669,"shift":5670,"harris":5671,"replace":5672,"rio":5673,"imagine":5674,"formula":5675,"ensure":5676,"##ber":5677,"additionally":5678,"scheme":5679,"conservation":5680,"occasionally":5681,"purposes":5682,"feels":5683,"favor":5684,"##and":5685,"##ore":5686,"1930s":5687,"contrast":5688,"hanging":5689,"hunt":5690,"movies":5691,"1904":5692,"instruments":5693,"victims":5694,"danish":5695,"christopher":5696,"busy":5697,"demon":5698,"sugar":5699,"earliest":5700,"colony":5701,"studying":5702,"balance":5703,"duties":5704,"##ks":5705,"belgium":5706,"slipped":5707,"carter":5708,"05":5709,"visible":5710,"stages":5711,"iraq":5712,"fifa":5713,"##im":5714,"commune":5715,"forming":5716,"zero":5717,"07":5718,"continuing":5719,"talked":5720,"counties":5721,"legend":5722,"bathroom":5723,"option":5724,"tail":5725,"clay":5726,"daughters":5727,"afterwards":5728,"severe":5729,"jaw":5730,"visitors":5731,"##ded":5732,"devices":5733,"aviation":5734,"russell":5735,"kate":5736,"##vi":5737,"entering":5738,"subjects":5739,"##ino":5740,"temporary":5741,"swimming":5742,"forth":5743,"smooth":5744,"ghost":5745,"audio":5746,"bush":5747,"operates":5748,"rocks":5749,"movements":5750,"signs":5751,"eddie":5752,"##tz":5753,"ann":5754,"voices":5755,"honorary":5756,"06":5757,"memories":5758,"dallas":5759,"pure":5760,"measures":5761,"racial":5762,"promised":5763,"66":5764,"harvard":5765,"ceo":5766,"16th":5767,"parliamentary":5768,"indicate":5769,"benefit":5770,"flesh":5771,"dublin":5772,"louisiana":5773,"1902":5774,"1901":5775,"patient":5776,"sleeping":5777,"1903":5778,"membership":5779,"coastal":5780,"medieval":5781,"wanting":5782,"element":5783,"scholars":5784,"rice":5785,"62":5786,"limit":5787,"survive":5788,"makeup":5789,"rating":5790,"definitely":5791,"collaboration":5792,"obvious":5793,"##tan":5794,"boss":5795,"ms":5796,"baron":5797,"birthday":5798,"linked":5799,"soil":5800,"diocese":5801,"##lan":5802,"ncaa":5803,"##mann":5804,"offensive":5805,"shell":5806,"shouldn":5807,"waist":5808,"##tus":5809,"plain":5810,"ross":5811,"organ":5812,"resolution":5813,"manufacturing":5814,"adding":5815,"relative":5816,"kennedy":5817,"98":5818,"whilst":5819,"moth":5820,"marketing":5821,"gardens":5822,"crash":5823,"72":5824,"heading":5825,"partners":5826,"credited":5827,"carlos":5828,"moves":5829,"cable":5830,"##zi":5831,"marshall":5832,"##out":5833,"depending":5834,"bottle":5835,"represents":5836,"rejected":5837,"responded":5838,"existed":5839,"04":5840,"jobs":5841,"denmark":5842,"lock":5843,"##ating":5844,"treated":5845,"graham":5846,"routes":5847,"talent":5848,"commissioner":5849,"drugs":5850,"secure":5851,"tests":5852,"reign":5853,"restored":5854,"photography":5855,"##gi":5856,"contributions":5857,"oklahoma":5858,"designer":5859,"disc":5860,"grin":5861,"seattle":5862,"robin":5863,"paused":5864,"atlanta":5865,"unusual":5866,"##gate":5867,"praised":5868,"las":5869,"laughing":5870,"satellite":5871,"hungary":5872,"visiting":5873,"##sky":5874,"interesting":5875,"factors":5876,"deck":5877,"poems":5878,"norman":5879,"##water":5880,"stuck":5881,"speaker":5882,"rifle":5883,"domain":5884,"premiered":5885,"##her":5886,"dc":5887,"comics":5888,"actors":5889,"01":5890,"reputation":5891,"eliminated":5892,"8th":5893,"ceiling":5894,"prisoners":5895,"script":5896,"##nce":5897,"leather":5898,"austin":5899,"mississippi":5900,"rapidly":5901,"admiral":5902,"parallel":5903,"charlotte":5904,"guilty":5905,"tools":5906,"gender":5907,"divisions":5908,"fruit":5909,"##bs":5910,"laboratory":5911,"nelson":5912,"fantasy":5913,"marry":5914,"rapid":5915,"aunt":5916,"tribe":5917,"requirements":5918,"aspects":5919,"suicide":5920,"amongst":5921,"adams":5922,"bone":5923,"ukraine":5924,"abc":5925,"kick":5926,"sees":5927,"edinburgh":5928,"clothing":5929,"column":5930,"rough":5931,"gods":5932,"hunting":5933,"broadway":5934,"gathered":5935,"concerns":5936,"##ek":5937,"spending":5938,"ty":5939,"12th":5940,"snapped":5941,"requires":5942,"solar":5943,"bones":5944,"cavalry":5945,"##tta":5946,"iowa":5947,"drinking":5948,"waste":5949,"index":5950,"franklin":5951,"charity":5952,"thompson":5953,"stewart":5954,"tip":5955,"flash":5956,"landscape":5957,"friday":5958,"enjoy":5959,"singh":5960,"poem":5961,"listening":5962,"##back":5963,"eighth":5964,"fred":5965,"differences":5966,"adapted":5967,"bomb":5968,"ukrainian":5969,"surgery":5970,"corporate":5971,"masters":5972,"anywhere":5973,"##more":5974,"waves":5975,"odd":5976,"sean":5977,"portugal":5978,"orleans":5979,"dick":5980,"debate":5981,"kent":5982,"eating":5983,"puerto":5984,"cleared":5985,"96":5986,"expect":5987,"cinema":5988,"97":5989,"guitarist":5990,"blocks":5991,"electrical":5992,"agree":5993,"involving":5994,"depth":5995,"dying":5996,"panel":5997,"struggle":5998,"##ged":5999,"peninsula":6000,"adults":6001,"novels":6002,"emerged":6003,"vienna":6004,"metro":6005,"debuted":6006,"shoes":6007,"tamil":6008,"songwriter":6009,"meets":6010,"prove":6011,"beating":6012,"instance":6013,"heaven":6014,"scared":6015,"sending":6016,"marks":6017,"artistic":6018,"passage":6019,"superior":6020,"03":6021,"significantly":6022,"shopping":6023,"##tive":6024,"retained":6025,"##izing":6026,"malaysia":6027,"technique":6028,"cheeks":6029,"##ola":6030,"warren":6031,"maintenance":6032,"destroy":6033,"extreme":6034,"allied":6035,"120":6036,"appearing":6037,"##yn":6038,"fill":6039,"advice":6040,"alabama":6041,"qualifying":6042,"policies":6043,"cleveland":6044,"hat":6045,"battery":6046,"smart":6047,"authors":6048,"10th":6049,"soundtrack":6050,"acted":6051,"dated":6052,"lb":6053,"glance":6054,"equipped":6055,"coalition":6056,"funny":6057,"outer":6058,"ambassador":6059,"roy":6060,"possibility":6061,"couples":6062,"campbell":6063,"dna":6064,"loose":6065,"ethan":6066,"supplies":6067,"1898":6068,"gonna":6069,"88":6070,"monster":6071,"##res":6072,"shake":6073,"agents":6074,"frequency":6075,"springs":6076,"dogs":6077,"practices":6078,"61":6079,"gang":6080,"plastic":6081,"easier":6082,"suggests":6083,"gulf":6084,"blade":6085,"exposed":6086,"colors":6087,"industries":6088,"markets":6089,"pan":6090,"nervous":6091,"electoral":6092,"charts":6093,"legislation":6094,"ownership":6095,"##idae":6096,"mac":6097,"appointment":6098,"shield":6099,"copy":6100,"assault":6101,"socialist":6102,"abbey":6103,"monument":6104,"license":6105,"throne":6106,"employment":6107,"jay":6108,"93":6109,"replacement":6110,"charter":6111,"cloud":6112,"powered":6113,"suffering":6114,"accounts":6115,"oak":6116,"connecticut":6117,"strongly":6118,"wright":6119,"colour":6120,"crystal":6121,"13th":6122,"context":6123,"welsh":6124,"networks":6125,"voiced":6126,"gabriel":6127,"jerry":6128,"##cing":6129,"forehead":6130,"mp":6131,"##ens":6132,"manage":6133,"schedule":6134,"totally":6135,"remix":6136,"##ii":6137,"forests":6138,"occupation":6139,"print":6140,"nicholas":6141,"brazilian":6142,"strategic":6143,"vampires":6144,"engineers":6145,"76":6146,"roots":6147,"seek":6148,"correct":6149,"instrumental":6150,"und":6151,"alfred":6152,"backed":6153,"hop":6154,"##des":6155,"stanley":6156,"robinson":6157,"traveled":6158,"wayne":6159,"welcome":6160,"austrian":6161,"achieve":6162,"67":6163,"exit":6164,"rates":6165,"1899":6166,"strip":6167,"whereas":6168,"##cs":6169,"sing":6170,"deeply":6171,"adventure":6172,"bobby":6173,"rick":6174,"jamie":6175,"careful":6176,"components":6177,"cap":6178,"useful":6179,"personality":6180,"knee":6181,"##shi":6182,"pushing":6183,"hosts":6184,"02":6185,"protest":6186,"ca":6187,"ottoman":6188,"symphony":6189,"##sis":6190,"63":6191,"boundary":6192,"1890":6193,"processes":6194,"considering":6195,"considerable":6196,"tons":6197,"##work":6198,"##ft":6199,"##nia":6200,"cooper":6201,"trading":6202,"dear":6203,"conduct":6204,"91":6205,"illegal":6206,"apple":6207,"revolutionary":6208,"holiday":6209,"definition":6210,"harder":6211,"##van":6212,"jacob":6213,"circumstances":6214,"destruction":6215,"##lle":6216,"popularity":6217,"grip":6218,"classified":6219,"liverpool":6220,"donald":6221,"baltimore":6222,"flows":6223,"seeking":6224,"honour":6225,"approval":6226,"92":6227,"mechanical":6228,"till":6229,"happening":6230,"statue":6231,"critic":6232,"increasingly":6233,"immediate":6234,"describe":6235,"commerce":6236,"stare":6237,"##ster":6238,"indonesia":6239,"meat":6240,"rounds":6241,"boats":6242,"baker":6243,"orthodox":6244,"depression":6245,"formally":6246,"worn":6247,"naked":6248,"claire":6249,"muttered":6250,"sentence":6251,"11th":6252,"emily":6253,"document":6254,"77":6255,"criticism":6256,"wished":6257,"vessel":6258,"spiritual":6259,"bent":6260,"virgin":6261,"parker":6262,"minimum":6263,"murray":6264,"lunch":6265,"danny":6266,"printed":6267,"compilation":6268,"keyboards":6269,"false":6270,"blow":6271,"belonged":6272,"68":6273,"raising":6274,"78":6275,"cutting":6276,"##board":6277,"pittsburgh":6278,"##up":6279,"9th":6280,"shadows":6281,"81":6282,"hated":6283,"indigenous":6284,"jon":6285,"15th":6286,"barry":6287,"scholar":6288,"ah":6289,"##zer":6290,"oliver":6291,"##gy":6292,"stick":6293,"susan":6294,"meetings":6295,"attracted":6296,"spell":6297,"romantic":6298,"##ver":6299,"ye":6300,"1895":6301,"photo":6302,"demanded":6303,"customers":6304,"##ac":6305,"1896":6306,"logan":6307,"revival":6308,"keys":6309,"modified":6310,"commanded":6311,"jeans":6312,"##ious":6313,"upset":6314,"raw":6315,"phil":6316,"detective":6317,"hiding":6318,"resident":6319,"vincent":6320,"##bly":6321,"experiences":6322,"diamond":6323,"defeating":6324,"coverage":6325,"lucas":6326,"external":6327,"parks":6328,"franchise":6329,"helen":6330,"bible":6331,"successor":6332,"percussion":6333,"celebrated":6334,"il":6335,"lift":6336,"profile":6337,"clan":6338,"romania":6339,"##ied":6340,"mills":6341,"##su":6342,"nobody":6343,"achievement":6344,"shrugged":6345,"fault":6346,"1897":6347,"rhythm":6348,"initiative":6349,"breakfast":6350,"carbon":6351,"700":6352,"69":6353,"lasted":6354,"violent":6355,"74":6356,"wound":6357,"ken":6358,"killer":6359,"gradually":6360,"filmed":6361,"°c":6362,"dollars":6363,"processing":6364,"94":6365,"remove":6366,"criticized":6367,"guests":6368,"sang":6369,"chemistry":6370,"##vin":6371,"legislature":6372,"disney":6373,"##bridge":6374,"uniform":6375,"escaped":6376,"integrated":6377,"proposal":6378,"purple":6379,"denied":6380,"liquid":6381,"karl":6382,"influential":6383,"morris":6384,"nights":6385,"stones":6386,"intense":6387,"experimental":6388,"twisted":6389,"71":6390,"84":6391,"##ld":6392,"pace":6393,"nazi":6394,"mitchell":6395,"ny":6396,"blind":6397,"reporter":6398,"newspapers":6399,"14th":6400,"centers":6401,"burn":6402,"basin":6403,"forgotten":6404,"surviving":6405,"filed":6406,"collections":6407,"monastery":6408,"losses":6409,"manual":6410,"couch":6411,"description":6412,"appropriate":6413,"merely":6414,"tag":6415,"missions":6416,"sebastian":6417,"restoration":6418,"replacing":6419,"triple":6420,"73":6421,"elder":6422,"julia":6423,"warriors":6424,"benjamin":6425,"julian":6426,"convinced":6427,"stronger":6428,"amazing":6429,"declined":6430,"versus":6431,"merchant":6432,"happens":6433,"output":6434,"finland":6435,"bare":6436,"barbara":6437,"absence":6438,"ignored":6439,"dawn":6440,"injuries":6441,"##port":6442,"producers":6443,"##ram":6444,"82":6445,"luis":6446,"##ities":6447,"kw":6448,"admit":6449,"expensive":6450,"electricity":6451,"nba":6452,"exception":6453,"symbol":6454,"##ving":6455,"ladies":6456,"shower":6457,"sheriff":6458,"characteristics":6459,"##je":6460,"aimed":6461,"button":6462,"ratio":6463,"effectively":6464,"summit":6465,"angle":6466,"jury":6467,"bears":6468,"foster":6469,"vessels":6470,"pants":6471,"executed":6472,"evans":6473,"dozen":6474,"advertising":6475,"kicked":6476,"patrol":6477,"1889":6478,"competitions":6479,"lifetime":6480,"principles":6481,"athletics":6482,"##logy":6483,"birmingham":6484,"sponsored":6485,"89":6486,"rob":6487,"nomination":6488,"1893":6489,"acoustic":6490,"##sm":6491,"creature":6492,"longest":6493,"##tra":6494,"credits":6495,"harbor":6496,"dust":6497,"josh":6498,"##so":6499,"territories":6500,"milk":6501,"infrastructure":6502,"completion":6503,"thailand":6504,"indians":6505,"leon":6506,"archbishop":6507,"##sy":6508,"assist":6509,"pitch":6510,"blake":6511,"arrangement":6512,"girlfriend":6513,"serbian":6514,"operational":6515,"hence":6516,"sad":6517,"scent":6518,"fur":6519,"dj":6520,"sessions":6521,"hp":6522,"refer":6523,"rarely":6524,"##ora":6525,"exists":6526,"1892":6527,"##ten":6528,"scientists":6529,"dirty":6530,"penalty":6531,"burst":6532,"portrait":6533,"seed":6534,"79":6535,"pole":6536,"limits":6537,"rival":6538,"1894":6539,"stable":6540,"alpha":6541,"grave":6542,"constitutional":6543,"alcohol":6544,"arrest":6545,"flower":6546,"mystery":6547,"devil":6548,"architectural":6549,"relationships":6550,"greatly":6551,"habitat":6552,"##istic":6553,"larry":6554,"progressive":6555,"remote":6556,"cotton":6557,"##ics":6558,"##ok":6559,"preserved":6560,"reaches":6561,"##ming":6562,"cited":6563,"86":6564,"vast":6565,"scholarship":6566,"decisions":6567,"cbs":6568,"joy":6569,"teach":6570,"1885":6571,"editions":6572,"knocked":6573,"eve":6574,"searching":6575,"partly":6576,"participation":6577,"gap":6578,"animated":6579,"fate":6580,"excellent":6581,"##ett":6582,"na":6583,"87":6584,"alternate":6585,"saints":6586,"youngest":6587,"##ily":6588,"climbed":6589,"##ita":6590,"##tors":6591,"suggest":6592,"##ct":6593,"discussion":6594,"staying":6595,"choir":6596,"lakes":6597,"jacket":6598,"revenue":6599,"nevertheless":6600,"peaked":6601,"instrument":6602,"wondering":6603,"annually":6604,"managing":6605,"neil":6606,"1891":6607,"signing":6608,"terry":6609,"##ice":6610,"apply":6611,"clinical":6612,"brooklyn":6613,"aim":6614,"catherine":6615,"fuck":6616,"farmers":6617,"figured":6618,"ninth":6619,"pride":6620,"hugh":6621,"evolution":6622,"ordinary":6623,"involvement":6624,"comfortable":6625,"shouted":6626,"tech":6627,"encouraged":6628,"taiwan":6629,"representation":6630,"sharing":6631,"##lia":6632,"##em":6633,"panic":6634,"exact":6635,"cargo":6636,"competing":6637,"fat":6638,"cried":6639,"83":6640,"1920s":6641,"occasions":6642,"pa":6643,"cabin":6644,"borders":6645,"utah":6646,"marcus":6647,"##isation":6648,"badly":6649,"muscles":6650,"##ance":6651,"victorian":6652,"transition":6653,"warner":6654,"bet":6655,"permission":6656,"##rin":6657,"slave":6658,"terrible":6659,"similarly":6660,"shares":6661,"seth":6662,"uefa":6663,"possession":6664,"medals":6665,"benefits":6666,"colleges":6667,"lowered":6668,"perfectly":6669,"mall":6670,"transit":6671,"##ye":6672,"##kar":6673,"publisher":6674,"##ened":6675,"harrison":6676,"deaths":6677,"elevation":6678,"##ae":6679,"asleep":6680,"machines":6681,"sigh":6682,"ash":6683,"hardly":6684,"argument":6685,"occasion":6686,"parent":6687,"leo":6688,"decline":6689,"1888":6690,"contribution":6691,"##ua":6692,"concentration":6693,"1000":6694,"opportunities":6695,"hispanic":6696,"guardian":6697,"extent":6698,"emotions":6699,"hips":6700,"mason":6701,"volumes":6702,"bloody":6703,"controversy":6704,"diameter":6705,"steady":6706,"mistake":6707,"phoenix":6708,"identify":6709,"violin":6710,"##sk":6711,"departure":6712,"richmond":6713,"spin":6714,"funeral":6715,"enemies":6716,"1864":6717,"gear":6718,"literally":6719,"connor":6720,"random":6721,"sergeant":6722,"grab":6723,"confusion":6724,"1865":6725,"transmission":6726,"informed":6727,"op":6728,"leaning":6729,"sacred":6730,"suspended":6731,"thinks":6732,"gates":6733,"portland":6734,"luck":6735,"agencies":6736,"yours":6737,"hull":6738,"expert":6739,"muscle":6740,"layer":6741,"practical":6742,"sculpture":6743,"jerusalem":6744,"latest":6745,"lloyd":6746,"statistics":6747,"deeper":6748,"recommended":6749,"warrior":6750,"arkansas":6751,"mess":6752,"supports":6753,"greg":6754,"eagle":6755,"1880":6756,"recovered":6757,"rated":6758,"concerts":6759,"rushed":6760,"##ano":6761,"stops":6762,"eggs":6763,"files":6764,"premiere":6765,"keith":6766,"##vo":6767,"delhi":6768,"turner":6769,"pit":6770,"affair":6771,"belief":6772,"paint":6773,"##zing":6774,"mate":6775,"##ach":6776,"##ev":6777,"victim":6778,"##ology":6779,"withdrew":6780,"bonus":6781,"styles":6782,"fled":6783,"##ud":6784,"glasgow":6785,"technologies":6786,"funded":6787,"nbc":6788,"adaptation":6789,"##ata":6790,"portrayed":6791,"cooperation":6792,"supporters":6793,"judges":6794,"bernard":6795,"justin":6796,"hallway":6797,"ralph":6798,"##ick":6799,"graduating":6800,"controversial":6801,"distant":6802,"continental":6803,"spider":6804,"bite":6805,"##ho":6806,"recognize":6807,"intention":6808,"mixing":6809,"##ese":6810,"egyptian":6811,"bow":6812,"tourism":6813,"suppose":6814,"claiming":6815,"tiger":6816,"dominated":6817,"participants":6818,"vi":6819,"##ru":6820,"nurse":6821,"partially":6822,"tape":6823,"##rum":6824,"psychology":6825,"##rn":6826,"essential":6827,"touring":6828,"duo":6829,"voting":6830,"civilian":6831,"emotional":6832,"channels":6833,"##king":6834,"apparent":6835,"hebrew":6836,"1887":6837,"tommy":6838,"carrier":6839,"intersection":6840,"beast":6841,"hudson":6842,"##gar":6843,"##zo":6844,"lab":6845,"nova":6846,"bench":6847,"discuss":6848,"costa":6849,"##ered":6850,"detailed":6851,"behalf":6852,"drivers":6853,"unfortunately":6854,"obtain":6855,"##lis":6856,"rocky":6857,"##dae":6858,"siege":6859,"friendship":6860,"honey":6861,"##rian":6862,"1861":6863,"amy":6864,"hang":6865,"posted":6866,"governments":6867,"collins":6868,"respond":6869,"wildlife":6870,"preferred":6871,"operator":6872,"##po":6873,"laura":6874,"pregnant":6875,"videos":6876,"dennis":6877,"suspected":6878,"boots":6879,"instantly":6880,"weird":6881,"automatic":6882,"businessman":6883,"alleged":6884,"placing":6885,"throwing":6886,"ph":6887,"mood":6888,"1862":6889,"perry":6890,"venue":6891,"jet":6892,"remainder":6893,"##lli":6894,"##ci":6895,"passion":6896,"biological":6897,"boyfriend":6898,"1863":6899,"dirt":6900,"buffalo":6901,"ron":6902,"segment":6903,"fa":6904,"abuse":6905,"##era":6906,"genre":6907,"thrown":6908,"stroke":6909,"colored":6910,"stress":6911,"exercise":6912,"displayed":6913,"##gen":6914,"struggled":6915,"##tti":6916,"abroad":6917,"dramatic":6918,"wonderful":6919,"thereafter":6920,"madrid":6921,"component":6922,"widespread":6923,"##sed":6924,"tale":6925,"citizen":6926,"todd":6927,"monday":6928,"1886":6929,"vancouver":6930,"overseas":6931,"forcing":6932,"crying":6933,"descent":6934,"##ris":6935,"discussed":6936,"substantial":6937,"ranks":6938,"regime":6939,"1870":6940,"provinces":6941,"switch":6942,"drum":6943,"zane":6944,"ted":6945,"tribes":6946,"proof":6947,"lp":6948,"cream":6949,"researchers":6950,"volunteer":6951,"manor":6952,"silk":6953,"milan":6954,"donated":6955,"allies":6956,"venture":6957,"principle":6958,"delivery":6959,"enterprise":6960,"##ves":6961,"##ans":6962,"bars":6963,"traditionally":6964,"witch":6965,"reminded":6966,"copper":6967,"##uk":6968,"pete":6969,"inter":6970,"links":6971,"colin":6972,"grinned":6973,"elsewhere":6974,"competitive":6975,"frequent":6976,"##oy":6977,"scream":6978,"##hu":6979,"tension":6980,"texts":6981,"submarine":6982,"finnish":6983,"defending":6984,"defend":6985,"pat":6986,"detail":6987,"1884":6988,"affiliated":6989,"stuart":6990,"themes":6991,"villa":6992,"periods":6993,"tool":6994,"belgian":6995,"ruling":6996,"crimes":6997,"answers":6998,"folded":6999,"licensed":7000,"resort":7001,"demolished":7002,"hans":7003,"lucy":7004,"1881":7005,"lion":7006,"traded":7007,"photographs":7008,"writes":7009,"craig":7010,"##fa":7011,"trials":7012,"generated":7013,"beth":7014,"noble":7015,"debt":7016,"percentage":7017,"yorkshire":7018,"erected":7019,"ss":7020,"viewed":7021,"grades":7022,"confidence":7023,"ceased":7024,"islam":7025,"telephone":7026,"retail":7027,"##ible":7028,"chile":7029,"m²":7030,"roberts":7031,"sixteen":7032,"##ich":7033,"commented":7034,"hampshire":7035,"innocent":7036,"dual":7037,"pounds":7038,"checked":7039,"regulations":7040,"afghanistan":7041,"sung":7042,"rico":7043,"liberty":7044,"assets":7045,"bigger":7046,"options":7047,"angels":7048,"relegated":7049,"tribute":7050,"wells":7051,"attending":7052,"leaf":7053,"##yan":7054,"butler":7055,"romanian":7056,"forum":7057,"monthly":7058,"lisa":7059,"patterns":7060,"gmina":7061,"##tory":7062,"madison":7063,"hurricane":7064,"rev":7065,"##ians":7066,"bristol":7067,"##ula":7068,"elite":7069,"valuable":7070,"disaster":7071,"democracy":7072,"awareness":7073,"germans":7074,"freyja":7075,"##ins":7076,"loop":7077,"absolutely":7078,"paying":7079,"populations":7080,"maine":7081,"sole":7082,"prayer":7083,"spencer":7084,"releases":7085,"doorway":7086,"bull":7087,"##ani":7088,"lover":7089,"midnight":7090,"conclusion":7091,"##sson":7092,"thirteen":7093,"lily":7094,"mediterranean":7095,"##lt":7096,"nhl":7097,"proud":7098,"sample":7099,"##hill":7100,"drummer":7101,"guinea":7102,"##ova":7103,"murphy":7104,"climb":7105,"##ston":7106,"instant":7107,"attributed":7108,"horn":7109,"ain":7110,"railways":7111,"steven":7112,"##ao":7113,"autumn":7114,"ferry":7115,"opponent":7116,"root":7117,"traveling":7118,"secured":7119,"corridor":7120,"stretched":7121,"tales":7122,"sheet":7123,"trinity":7124,"cattle":7125,"helps":7126,"indicates":7127,"manhattan":7128,"murdered":7129,"fitted":7130,"1882":7131,"gentle":7132,"grandmother":7133,"mines":7134,"shocked":7135,"vegas":7136,"produces":7137,"##light":7138,"caribbean":7139,"##ou":7140,"belong":7141,"continuous":7142,"desperate":7143,"drunk":7144,"historically":7145,"trio":7146,"waved":7147,"raf":7148,"dealing":7149,"nathan":7150,"bat":7151,"murmured":7152,"interrupted":7153,"residing":7154,"scientist":7155,"pioneer":7156,"harold":7157,"aaron":7158,"##net":7159,"delta":7160,"attempting":7161,"minority":7162,"mini":7163,"believes":7164,"chorus":7165,"tend":7166,"lots":7167,"eyed":7168,"indoor":7169,"load":7170,"shots":7171,"updated":7172,"jail":7173,"##llo":7174,"concerning":7175,"connecting":7176,"wealth":7177,"##ved":7178,"slaves":7179,"arrive":7180,"rangers":7181,"sufficient":7182,"rebuilt":7183,"##wick":7184,"cardinal":7185,"flood":7186,"muhammad":7187,"whenever":7188,"relation":7189,"runners":7190,"moral":7191,"repair":7192,"viewers":7193,"arriving":7194,"revenge":7195,"punk":7196,"assisted":7197,"bath":7198,"fairly":7199,"breathe":7200,"lists":7201,"innings":7202,"illustrated":7203,"whisper":7204,"nearest":7205,"voters":7206,"clinton":7207,"ties":7208,"ultimate":7209,"screamed":7210,"beijing":7211,"lions":7212,"andre":7213,"fictional":7214,"gathering":7215,"comfort":7216,"radar":7217,"suitable":7218,"dismissed":7219,"hms":7220,"ban":7221,"pine":7222,"wrist":7223,"atmosphere":7224,"voivodeship":7225,"bid":7226,"timber":7227,"##ned":7228,"##nan":7229,"giants":7230,"##ane":7231,"cameron":7232,"recovery":7233,"uss":7234,"identical":7235,"categories":7236,"switched":7237,"serbia":7238,"laughter":7239,"noah":7240,"ensemble":7241,"therapy":7242,"peoples":7243,"touching":7244,"##off":7245,"locally":7246,"pearl":7247,"platforms":7248,"everywhere":7249,"ballet":7250,"tables":7251,"lanka":7252,"herbert":7253,"outdoor":7254,"toured":7255,"derek":7256,"1883":7257,"spaces":7258,"contested":7259,"swept":7260,"1878":7261,"exclusive":7262,"slight":7263,"connections":7264,"##dra":7265,"winds":7266,"prisoner":7267,"collective":7268,"bangladesh":7269,"tube":7270,"publicly":7271,"wealthy":7272,"thai":7273,"##ys":7274,"isolated":7275,"select":7276,"##ric":7277,"insisted":7278,"pen":7279,"fortune":7280,"ticket":7281,"spotted":7282,"reportedly":7283,"animation":7284,"enforcement":7285,"tanks":7286,"110":7287,"decides":7288,"wider":7289,"lowest":7290,"owen":7291,"##time":7292,"nod":7293,"hitting":7294,"##hn":7295,"gregory":7296,"furthermore":7297,"magazines":7298,"fighters":7299,"solutions":7300,"##ery":7301,"pointing":7302,"requested":7303,"peru":7304,"reed":7305,"chancellor":7306,"knights":7307,"mask":7308,"worker":7309,"eldest":7310,"flames":7311,"reduction":7312,"1860":7313,"volunteers":7314,"##tis":7315,"reporting":7316,"##hl":7317,"wire":7318,"advisory":7319,"endemic":7320,"origins":7321,"settlers":7322,"pursue":7323,"knock":7324,"consumer":7325,"1876":7326,"eu":7327,"compound":7328,"creatures":7329,"mansion":7330,"sentenced":7331,"ivan":7332,"deployed":7333,"guitars":7334,"frowned":7335,"involves":7336,"mechanism":7337,"kilometers":7338,"perspective":7339,"shops":7340,"maps":7341,"terminus":7342,"duncan":7343,"alien":7344,"fist":7345,"bridges":7346,"##pers":7347,"heroes":7348,"fed":7349,"derby":7350,"swallowed":7351,"##ros":7352,"patent":7353,"sara":7354,"illness":7355,"characterized":7356,"adventures":7357,"slide":7358,"hawaii":7359,"jurisdiction":7360,"##op":7361,"organised":7362,"##side":7363,"adelaide":7364,"walks":7365,"biology":7366,"se":7367,"##ties":7368,"rogers":7369,"swing":7370,"tightly":7371,"boundaries":7372,"##rie":7373,"prepare":7374,"implementation":7375,"stolen":7376,"##sha":7377,"certified":7378,"colombia":7379,"edwards":7380,"garage":7381,"##mm":7382,"recalled":7383,"##ball":7384,"rage":7385,"harm":7386,"nigeria":7387,"breast":7388,"##ren":7389,"furniture":7390,"pupils":7391,"settle":7392,"##lus":7393,"cuba":7394,"balls":7395,"client":7396,"alaska":7397,"21st":7398,"linear":7399,"thrust":7400,"celebration":7401,"latino":7402,"genetic":7403,"terror":7404,"##cia":7405,"##ening":7406,"lightning":7407,"fee":7408,"witness":7409,"lodge":7410,"establishing":7411,"skull":7412,"##ique":7413,"earning":7414,"hood":7415,"##ei":7416,"rebellion":7417,"wang":7418,"sporting":7419,"warned":7420,"missile":7421,"devoted":7422,"activist":7423,"porch":7424,"worship":7425,"fourteen":7426,"package":7427,"1871":7428,"decorated":7429,"##shire":7430,"housed":7431,"##ock":7432,"chess":7433,"sailed":7434,"doctors":7435,"oscar":7436,"joan":7437,"treat":7438,"garcia":7439,"harbour":7440,"jeremy":7441,"##ire":7442,"traditions":7443,"dominant":7444,"jacques":7445,"##gon":7446,"##wan":7447,"relocated":7448,"1879":7449,"amendment":7450,"sized":7451,"companion":7452,"simultaneously":7453,"volleyball":7454,"spun":7455,"acre":7456,"increases":7457,"stopping":7458,"loves":7459,"belongs":7460,"affect":7461,"drafted":7462,"tossed":7463,"scout":7464,"battles":7465,"1875":7466,"filming":7467,"shoved":7468,"munich":7469,"tenure":7470,"vertical":7471,"romance":7472,"pc":7473,"##cher":7474,"argue":7475,"##ical":7476,"craft":7477,"ranging":7478,"www":7479,"opens":7480,"honest":7481,"tyler":7482,"yesterday":7483,"virtual":7484,"##let":7485,"muslims":7486,"reveal":7487,"snake":7488,"immigrants":7489,"radical":7490,"screaming":7491,"speakers":7492,"firing":7493,"saving":7494,"belonging":7495,"ease":7496,"lighting":7497,"prefecture":7498,"blame":7499,"farmer":7500,"hungry":7501,"grows":7502,"rubbed":7503,"beam":7504,"sur":7505,"subsidiary":7506,"##cha":7507,"armenian":7508,"sao":7509,"dropping":7510,"conventional":7511,"##fer":7512,"microsoft":7513,"reply":7514,"qualify":7515,"spots":7516,"1867":7517,"sweat":7518,"festivals":7519,"##ken":7520,"immigration":7521,"physician":7522,"discover":7523,"exposure":7524,"sandy":7525,"explanation":7526,"isaac":7527,"implemented":7528,"##fish":7529,"hart":7530,"initiated":7531,"connect":7532,"stakes":7533,"presents":7534,"heights":7535,"householder":7536,"pleased":7537,"tourist":7538,"regardless":7539,"slip":7540,"closest":7541,"##ction":7542,"surely":7543,"sultan":7544,"brings":7545,"riley":7546,"preparation":7547,"aboard":7548,"slammed":7549,"baptist":7550,"experiment":7551,"ongoing":7552,"interstate":7553,"organic":7554,"playoffs":7555,"##ika":7556,"1877":7557,"130":7558,"##tar":7559,"hindu":7560,"error":7561,"tours":7562,"tier":7563,"plenty":7564,"arrangements":7565,"talks":7566,"trapped":7567,"excited":7568,"sank":7569,"ho":7570,"athens":7571,"1872":7572,"denver":7573,"welfare":7574,"suburb":7575,"athletes":7576,"trick":7577,"diverse":7578,"belly":7579,"exclusively":7580,"yelled":7581,"1868":7582,"##med":7583,"conversion":7584,"##ette":7585,"1874":7586,"internationally":7587,"computers":7588,"conductor":7589,"abilities":7590,"sensitive":7591,"hello":7592,"dispute":7593,"measured":7594,"globe":7595,"rocket":7596,"prices":7597,"amsterdam":7598,"flights":7599,"tigers":7600,"inn":7601,"municipalities":7602,"emotion":7603,"references":7604,"3d":7605,"##mus":7606,"explains":7607,"airlines":7608,"manufactured":7609,"pm":7610,"archaeological":7611,"1873":7612,"interpretation":7613,"devon":7614,"comment":7615,"##ites":7616,"settlements":7617,"kissing":7618,"absolute":7619,"improvement":7620,"suite":7621,"impressed":7622,"barcelona":7623,"sullivan":7624,"jefferson":7625,"towers":7626,"jesse":7627,"julie":7628,"##tin":7629,"##lu":7630,"grandson":7631,"hi":7632,"gauge":7633,"regard":7634,"rings":7635,"interviews":7636,"trace":7637,"raymond":7638,"thumb":7639,"departments":7640,"burns":7641,"serial":7642,"bulgarian":7643,"scores":7644,"demonstrated":7645,"##ix":7646,"1866":7647,"kyle":7648,"alberta":7649,"underneath":7650,"romanized":7651,"##ward":7652,"relieved":7653,"acquisition":7654,"phrase":7655,"cliff":7656,"reveals":7657,"han":7658,"cuts":7659,"merger":7660,"custom":7661,"##dar":7662,"nee":7663,"gilbert":7664,"graduation":7665,"##nts":7666,"assessment":7667,"cafe":7668,"difficulty":7669,"demands":7670,"swung":7671,"democrat":7672,"jennifer":7673,"commons":7674,"1940s":7675,"grove":7676,"##yo":7677,"completing":7678,"focuses":7679,"sum":7680,"substitute":7681,"bearing":7682,"stretch":7683,"reception":7684,"##py":7685,"reflected":7686,"essentially":7687,"destination":7688,"pairs":7689,"##ched":7690,"survival":7691,"resource":7692,"##bach":7693,"promoting":7694,"doubles":7695,"messages":7696,"tear":7697,"##down":7698,"##fully":7699,"parade":7700,"florence":7701,"harvey":7702,"incumbent":7703,"partial":7704,"framework":7705,"900":7706,"pedro":7707,"frozen":7708,"procedure":7709,"olivia":7710,"controls":7711,"##mic":7712,"shelter":7713,"personally":7714,"temperatures":7715,"##od":7716,"brisbane":7717,"tested":7718,"sits":7719,"marble":7720,"comprehensive":7721,"oxygen":7722,"leonard":7723,"##kov":7724,"inaugural":7725,"iranian":7726,"referring":7727,"quarters":7728,"attitude":7729,"##ivity":7730,"mainstream":7731,"lined":7732,"mars":7733,"dakota":7734,"norfolk":7735,"unsuccessful":7736,"##°":7737,"explosion":7738,"helicopter":7739,"congressional":7740,"##sing":7741,"inspector":7742,"bitch":7743,"seal":7744,"departed":7745,"divine":7746,"##ters":7747,"coaching":7748,"examination":7749,"punishment":7750,"manufacturer":7751,"sink":7752,"columns":7753,"unincorporated":7754,"signals":7755,"nevada":7756,"squeezed":7757,"dylan":7758,"dining":7759,"photos":7760,"martial":7761,"manuel":7762,"eighteen":7763,"elevator":7764,"brushed":7765,"plates":7766,"ministers":7767,"ivy":7768,"congregation":7769,"##len":7770,"slept":7771,"specialized":7772,"taxes":7773,"curve":7774,"restricted":7775,"negotiations":7776,"likes":7777,"statistical":7778,"arnold":7779,"inspiration":7780,"execution":7781,"bold":7782,"intermediate":7783,"significance":7784,"margin":7785,"ruler":7786,"wheels":7787,"gothic":7788,"intellectual":7789,"dependent":7790,"listened":7791,"eligible":7792,"buses":7793,"widow":7794,"syria":7795,"earn":7796,"cincinnati":7797,"collapsed":7798,"recipient":7799,"secrets":7800,"accessible":7801,"philippine":7802,"maritime":7803,"goddess":7804,"clerk":7805,"surrender":7806,"breaks":7807,"playoff":7808,"database":7809,"##ified":7810,"##lon":7811,"ideal":7812,"beetle":7813,"aspect":7814,"soap":7815,"regulation":7816,"strings":7817,"expand":7818,"anglo":7819,"shorter":7820,"crosses":7821,"retreat":7822,"tough":7823,"coins":7824,"wallace":7825,"directions":7826,"pressing":7827,"##oon":7828,"shipping":7829,"locomotives":7830,"comparison":7831,"topics":7832,"nephew":7833,"##mes":7834,"distinction":7835,"honors":7836,"travelled":7837,"sierra":7838,"ibn":7839,"##over":7840,"fortress":7841,"sa":7842,"recognised":7843,"carved":7844,"1869":7845,"clients":7846,"##dan":7847,"intent":7848,"##mar":7849,"coaches":7850,"describing":7851,"bread":7852,"##ington":7853,"beaten":7854,"northwestern":7855,"##ona":7856,"merit":7857,"youtube":7858,"collapse":7859,"challenges":7860,"em":7861,"historians":7862,"objective":7863,"submitted":7864,"virus":7865,"attacking":7866,"drake":7867,"assume":7868,"##ere":7869,"diseases":7870,"marc":7871,"stem":7872,"leeds":7873,"##cus":7874,"##ab":7875,"farming":7876,"glasses":7877,"##lock":7878,"visits":7879,"nowhere":7880,"fellowship":7881,"relevant":7882,"carries":7883,"restaurants":7884,"experiments":7885,"101":7886,"constantly":7887,"bases":7888,"targets":7889,"shah":7890,"tenth":7891,"opponents":7892,"verse":7893,"territorial":7894,"##ira":7895,"writings":7896,"corruption":7897,"##hs":7898,"instruction":7899,"inherited":7900,"reverse":7901,"emphasis":7902,"##vic":7903,"employee":7904,"arch":7905,"keeps":7906,"rabbi":7907,"watson":7908,"payment":7909,"uh":7910,"##ala":7911,"nancy":7912,"##tre":7913,"venice":7914,"fastest":7915,"sexy":7916,"banned":7917,"adrian":7918,"properly":7919,"ruth":7920,"touchdown":7921,"dollar":7922,"boards":7923,"metre":7924,"circles":7925,"edges":7926,"favour":7927,"comments":7928,"ok":7929,"travels":7930,"liberation":7931,"scattered":7932,"firmly":7933,"##ular":7934,"holland":7935,"permitted":7936,"diesel":7937,"kenya":7938,"den":7939,"originated":7940,"##ral":7941,"demons":7942,"resumed":7943,"dragged":7944,"rider":7945,"##rus":7946,"servant":7947,"blinked":7948,"extend":7949,"torn":7950,"##ias":7951,"##sey":7952,"input":7953,"meal":7954,"everybody":7955,"cylinder":7956,"kinds":7957,"camps":7958,"##fe":7959,"bullet":7960,"logic":7961,"##wn":7962,"croatian":7963,"evolved":7964,"healthy":7965,"fool":7966,"chocolate":7967,"wise":7968,"preserve":7969,"pradesh":7970,"##ess":7971,"respective":7972,"1850":7973,"##ew":7974,"chicken":7975,"artificial":7976,"gross":7977,"corresponding":7978,"convicted":7979,"cage":7980,"caroline":7981,"dialogue":7982,"##dor":7983,"narrative":7984,"stranger":7985,"mario":7986,"br":7987,"christianity":7988,"failing":7989,"trent":7990,"commanding":7991,"buddhist":7992,"1848":7993,"maurice":7994,"focusing":7995,"yale":7996,"bike":7997,"altitude":7998,"##ering":7999,"mouse":8000,"revised":8001,"##sley":8002,"veteran":8003,"##ig":8004,"pulls":8005,"theology":8006,"crashed":8007,"campaigns":8008,"legion":8009,"##ability":8010,"drag":8011,"excellence":8012,"customer":8013,"cancelled":8014,"intensity":8015,"excuse":8016,"##lar":8017,"liga":8018,"participating":8019,"contributing":8020,"printing":8021,"##burn":8022,"variable":8023,"##rk":8024,"curious":8025,"bin":8026,"legacy":8027,"renaissance":8028,"##my":8029,"symptoms":8030,"binding":8031,"vocalist":8032,"dancer":8033,"##nie":8034,"grammar":8035,"gospel":8036,"democrats":8037,"ya":8038,"enters":8039,"sc":8040,"diplomatic":8041,"hitler":8042,"##ser":8043,"clouds":8044,"mathematical":8045,"quit":8046,"defended":8047,"oriented":8048,"##heim":8049,"fundamental":8050,"hardware":8051,"impressive":8052,"equally":8053,"convince":8054,"confederate":8055,"guilt":8056,"chuck":8057,"sliding":8058,"##ware":8059,"magnetic":8060,"narrowed":8061,"petersburg":8062,"bulgaria":8063,"otto":8064,"phd":8065,"skill":8066,"##ama":8067,"reader":8068,"hopes":8069,"pitcher":8070,"reservoir":8071,"hearts":8072,"automatically":8073,"expecting":8074,"mysterious":8075,"bennett":8076,"extensively":8077,"imagined":8078,"seeds":8079,"monitor":8080,"fix":8081,"##ative":8082,"journalism":8083,"struggling":8084,"signature":8085,"ranch":8086,"encounter":8087,"photographer":8088,"observation":8089,"protests":8090,"##pin":8091,"influences":8092,"##hr":8093,"calendar":8094,"##all":8095,"cruz":8096,"croatia":8097,"locomotive":8098,"hughes":8099,"naturally":8100,"shakespeare":8101,"basement":8102,"hook":8103,"uncredited":8104,"faded":8105,"theories":8106,"approaches":8107,"dare":8108,"phillips":8109,"filling":8110,"fury":8111,"obama":8112,"##ain":8113,"efficient":8114,"arc":8115,"deliver":8116,"min":8117,"raid":8118,"breeding":8119,"inducted":8120,"leagues":8121,"efficiency":8122,"axis":8123,"montana":8124,"eagles":8125,"##ked":8126,"supplied":8127,"instructions":8128,"karen":8129,"picking":8130,"indicating":8131,"trap":8132,"anchor":8133,"practically":8134,"christians":8135,"tomb":8136,"vary":8137,"occasional":8138,"electronics":8139,"lords":8140,"readers":8141,"newcastle":8142,"faint":8143,"innovation":8144,"collect":8145,"situations":8146,"engagement":8147,"160":8148,"claude":8149,"mixture":8150,"##feld":8151,"peer":8152,"tissue":8153,"logo":8154,"lean":8155,"##ration":8156,"°f":8157,"floors":8158,"##ven":8159,"architects":8160,"reducing":8161,"##our":8162,"##ments":8163,"rope":8164,"1859":8165,"ottawa":8166,"##har":8167,"samples":8168,"banking":8169,"declaration":8170,"proteins":8171,"resignation":8172,"francois":8173,"saudi":8174,"advocate":8175,"exhibited":8176,"armor":8177,"twins":8178,"divorce":8179,"##ras":8180,"abraham":8181,"reviewed":8182,"jo":8183,"temporarily":8184,"matrix":8185,"physically":8186,"pulse":8187,"curled":8188,"##ena":8189,"difficulties":8190,"bengal":8191,"usage":8192,"##ban":8193,"annie":8194,"riders":8195,"certificate":8196,"##pi":8197,"holes":8198,"warsaw":8199,"distinctive":8200,"jessica":8201,"##mon":8202,"mutual":8203,"1857":8204,"customs":8205,"circular":8206,"eugene":8207,"removal":8208,"loaded":8209,"mere":8210,"vulnerable":8211,"depicted":8212,"generations":8213,"dame":8214,"heir":8215,"enormous":8216,"lightly":8217,"climbing":8218,"pitched":8219,"lessons":8220,"pilots":8221,"nepal":8222,"ram":8223,"google":8224,"preparing":8225,"brad":8226,"louise":8227,"renowned":8228,"##₂":8229,"liam":8230,"##ably":8231,"plaza":8232,"shaw":8233,"sophie":8234,"brilliant":8235,"bills":8236,"##bar":8237,"##nik":8238,"fucking":8239,"mainland":8240,"server":8241,"pleasant":8242,"seized":8243,"veterans":8244,"jerked":8245,"fail":8246,"beta":8247,"brush":8248,"radiation":8249,"stored":8250,"warmth":8251,"southeastern":8252,"nate":8253,"sin":8254,"raced":8255,"berkeley":8256,"joke":8257,"athlete":8258,"designation":8259,"trunk":8260,"##low":8261,"roland":8262,"qualification":8263,"archives":8264,"heels":8265,"artwork":8266,"receives":8267,"judicial":8268,"reserves":8269,"##bed":8270,"woke":8271,"installation":8272,"abu":8273,"floating":8274,"fake":8275,"lesser":8276,"excitement":8277,"interface":8278,"concentrated":8279,"addressed":8280,"characteristic":8281,"amanda":8282,"saxophone":8283,"monk":8284,"auto":8285,"##bus":8286,"releasing":8287,"egg":8288,"dies":8289,"interaction":8290,"defender":8291,"ce":8292,"outbreak":8293,"glory":8294,"loving":8295,"##bert":8296,"sequel":8297,"consciousness":8298,"http":8299,"awake":8300,"ski":8301,"enrolled":8302,"##ress":8303,"handling":8304,"rookie":8305,"brow":8306,"somebody":8307,"biography":8308,"warfare":8309,"amounts":8310,"contracts":8311,"presentation":8312,"fabric":8313,"dissolved":8314,"challenged":8315,"meter":8316,"psychological":8317,"lt":8318,"elevated":8319,"rally":8320,"accurate":8321,"##tha":8322,"hospitals":8323,"undergraduate":8324,"specialist":8325,"venezuela":8326,"exhibit":8327,"shed":8328,"nursing":8329,"protestant":8330,"fluid":8331,"structural":8332,"footage":8333,"jared":8334,"consistent":8335,"prey":8336,"##ska":8337,"succession":8338,"reflect":8339,"exile":8340,"lebanon":8341,"wiped":8342,"suspect":8343,"shanghai":8344,"resting":8345,"integration":8346,"preservation":8347,"marvel":8348,"variant":8349,"pirates":8350,"sheep":8351,"rounded":8352,"capita":8353,"sailing":8354,"colonies":8355,"manuscript":8356,"deemed":8357,"variations":8358,"clarke":8359,"functional":8360,"emerging":8361,"boxing":8362,"relaxed":8363,"curse":8364,"azerbaijan":8365,"heavyweight":8366,"nickname":8367,"editorial":8368,"rang":8369,"grid":8370,"tightened":8371,"earthquake":8372,"flashed":8373,"miguel":8374,"rushing":8375,"##ches":8376,"improvements":8377,"boxes":8378,"brooks":8379,"180":8380,"consumption":8381,"molecular":8382,"felix":8383,"societies":8384,"repeatedly":8385,"variation":8386,"aids":8387,"civic":8388,"graphics":8389,"professionals":8390,"realm":8391,"autonomous":8392,"receiver":8393,"delayed":8394,"workshop":8395,"militia":8396,"chairs":8397,"trump":8398,"canyon":8399,"##point":8400,"harsh":8401,"extending":8402,"lovely":8403,"happiness":8404,"##jan":8405,"stake":8406,"eyebrows":8407,"embassy":8408,"wellington":8409,"hannah":8410,"##ella":8411,"sony":8412,"corners":8413,"bishops":8414,"swear":8415,"cloth":8416,"contents":8417,"xi":8418,"namely":8419,"commenced":8420,"1854":8421,"stanford":8422,"nashville":8423,"courage":8424,"graphic":8425,"commitment":8426,"garrison":8427,"##bin":8428,"hamlet":8429,"clearing":8430,"rebels":8431,"attraction":8432,"literacy":8433,"cooking":8434,"ruins":8435,"temples":8436,"jenny":8437,"humanity":8438,"celebrate":8439,"hasn":8440,"freight":8441,"sixty":8442,"rebel":8443,"bastard":8444,"##art":8445,"newton":8446,"##ada":8447,"deer":8448,"##ges":8449,"##ching":8450,"smiles":8451,"delaware":8452,"singers":8453,"##ets":8454,"approaching":8455,"assists":8456,"flame":8457,"##ph":8458,"boulevard":8459,"barrel":8460,"planted":8461,"##ome":8462,"pursuit":8463,"##sia":8464,"consequences":8465,"posts":8466,"shallow":8467,"invitation":8468,"rode":8469,"depot":8470,"ernest":8471,"kane":8472,"rod":8473,"concepts":8474,"preston":8475,"topic":8476,"chambers":8477,"striking":8478,"blast":8479,"arrives":8480,"descendants":8481,"montgomery":8482,"ranges":8483,"worlds":8484,"##lay":8485,"##ari":8486,"span":8487,"chaos":8488,"praise":8489,"##ag":8490,"fewer":8491,"1855":8492,"sanctuary":8493,"mud":8494,"fbi":8495,"##ions":8496,"programmes":8497,"maintaining":8498,"unity":8499,"harper":8500,"bore":8501,"handsome":8502,"closure":8503,"tournaments":8504,"thunder":8505,"nebraska":8506,"linda":8507,"facade":8508,"puts":8509,"satisfied":8510,"argentine":8511,"dale":8512,"cork":8513,"dome":8514,"panama":8515,"##yl":8516,"1858":8517,"tasks":8518,"experts":8519,"##ates":8520,"feeding":8521,"equation":8522,"##las":8523,"##ida":8524,"##tu":8525,"engage":8526,"bryan":8527,"##ax":8528,"um":8529,"quartet":8530,"melody":8531,"disbanded":8532,"sheffield":8533,"blocked":8534,"gasped":8535,"delay":8536,"kisses":8537,"maggie":8538,"connects":8539,"##non":8540,"sts":8541,"poured":8542,"creator":8543,"publishers":8544,"##we":8545,"guided":8546,"ellis":8547,"extinct":8548,"hug":8549,"gaining":8550,"##ord":8551,"complicated":8552,"##bility":8553,"poll":8554,"clenched":8555,"investigate":8556,"##use":8557,"thereby":8558,"quantum":8559,"spine":8560,"cdp":8561,"humor":8562,"kills":8563,"administered":8564,"semifinals":8565,"##du":8566,"encountered":8567,"ignore":8568,"##bu":8569,"commentary":8570,"##maker":8571,"bother":8572,"roosevelt":8573,"140":8574,"plains":8575,"halfway":8576,"flowing":8577,"cultures":8578,"crack":8579,"imprisoned":8580,"neighboring":8581,"airline":8582,"##ses":8583,"##view":8584,"##mate":8585,"##ec":8586,"gather":8587,"wolves":8588,"marathon":8589,"transformed":8590,"##ill":8591,"cruise":8592,"organisations":8593,"carol":8594,"punch":8595,"exhibitions":8596,"numbered":8597,"alarm":8598,"ratings":8599,"daddy":8600,"silently":8601,"##stein":8602,"queens":8603,"colours":8604,"impression":8605,"guidance":8606,"liu":8607,"tactical":8608,"##rat":8609,"marshal":8610,"della":8611,"arrow":8612,"##ings":8613,"rested":8614,"feared":8615,"tender":8616,"owns":8617,"bitter":8618,"advisor":8619,"escort":8620,"##ides":8621,"spare":8622,"farms":8623,"grants":8624,"##ene":8625,"dragons":8626,"encourage":8627,"colleagues":8628,"cameras":8629,"##und":8630,"sucked":8631,"pile":8632,"spirits":8633,"prague":8634,"statements":8635,"suspension":8636,"landmark":8637,"fence":8638,"torture":8639,"recreation":8640,"bags":8641,"permanently":8642,"survivors":8643,"pond":8644,"spy":8645,"predecessor":8646,"bombing":8647,"coup":8648,"##og":8649,"protecting":8650,"transformation":8651,"glow":8652,"##lands":8653,"##book":8654,"dug":8655,"priests":8656,"andrea":8657,"feat":8658,"barn":8659,"jumping":8660,"##chen":8661,"##ologist":8662,"##con":8663,"casualties":8664,"stern":8665,"auckland":8666,"pipe":8667,"serie":8668,"revealing":8669,"ba":8670,"##bel":8671,"trevor":8672,"mercy":8673,"spectrum":8674,"yang":8675,"consist":8676,"governing":8677,"collaborated":8678,"possessed":8679,"epic":8680,"comprises":8681,"blew":8682,"shane":8683,"##ack":8684,"lopez":8685,"honored":8686,"magical":8687,"sacrifice":8688,"judgment":8689,"perceived":8690,"hammer":8691,"mtv":8692,"baronet":8693,"tune":8694,"das":8695,"missionary":8696,"sheets":8697,"350":8698,"neutral":8699,"oral":8700,"threatening":8701,"attractive":8702,"shade":8703,"aims":8704,"seminary":8705,"##master":8706,"estates":8707,"1856":8708,"michel":8709,"wounds":8710,"refugees":8711,"manufacturers":8712,"##nic":8713,"mercury":8714,"syndrome":8715,"porter":8716,"##iya":8717,"##din":8718,"hamburg":8719,"identification":8720,"upstairs":8721,"purse":8722,"widened":8723,"pause":8724,"cared":8725,"breathed":8726,"affiliate":8727,"santiago":8728,"prevented":8729,"celtic":8730,"fisher":8731,"125":8732,"recruited":8733,"byzantine":8734,"reconstruction":8735,"farther":8736,"##mp":8737,"diet":8738,"sake":8739,"au":8740,"spite":8741,"sensation":8742,"##ert":8743,"blank":8744,"separation":8745,"105":8746,"##hon":8747,"vladimir":8748,"armies":8749,"anime":8750,"##lie":8751,"accommodate":8752,"orbit":8753,"cult":8754,"sofia":8755,"archive":8756,"##ify":8757,"##box":8758,"founders":8759,"sustained":8760,"disorder":8761,"honours":8762,"northeastern":8763,"mia":8764,"crops":8765,"violet":8766,"threats":8767,"blanket":8768,"fires":8769,"canton":8770,"followers":8771,"southwestern":8772,"prototype":8773,"voyage":8774,"assignment":8775,"altered":8776,"moderate":8777,"protocol":8778,"pistol":8779,"##eo":8780,"questioned":8781,"brass":8782,"lifting":8783,"1852":8784,"math":8785,"authored":8786,"##ual":8787,"doug":8788,"dimensional":8789,"dynamic":8790,"##san":8791,"1851":8792,"pronounced":8793,"grateful":8794,"quest":8795,"uncomfortable":8796,"boom":8797,"presidency":8798,"stevens":8799,"relating":8800,"politicians":8801,"chen":8802,"barrier":8803,"quinn":8804,"diana":8805,"mosque":8806,"tribal":8807,"cheese":8808,"palmer":8809,"portions":8810,"sometime":8811,"chester":8812,"treasure":8813,"wu":8814,"bend":8815,"download":8816,"millions":8817,"reforms":8818,"registration":8819,"##osa":8820,"consequently":8821,"monitoring":8822,"ate":8823,"preliminary":8824,"brandon":8825,"invented":8826,"ps":8827,"eaten":8828,"exterior":8829,"intervention":8830,"ports":8831,"documented":8832,"log":8833,"displays":8834,"lecture":8835,"sally":8836,"favourite":8837,"##itz":8838,"vermont":8839,"lo":8840,"invisible":8841,"isle":8842,"breed":8843,"##ator":8844,"journalists":8845,"relay":8846,"speaks":8847,"backward":8848,"explore":8849,"midfielder":8850,"actively":8851,"stefan":8852,"procedures":8853,"cannon":8854,"blond":8855,"kenneth":8856,"centered":8857,"servants":8858,"chains":8859,"libraries":8860,"malcolm":8861,"essex":8862,"henri":8863,"slavery":8864,"##hal":8865,"facts":8866,"fairy":8867,"coached":8868,"cassie":8869,"cats":8870,"washed":8871,"cop":8872,"##fi":8873,"announcement":8874,"item":8875,"2000s":8876,"vinyl":8877,"activated":8878,"marco":8879,"frontier":8880,"growled":8881,"curriculum":8882,"##das":8883,"loyal":8884,"accomplished":8885,"leslie":8886,"ritual":8887,"kenny":8888,"##00":8889,"vii":8890,"napoleon":8891,"hollow":8892,"hybrid":8893,"jungle":8894,"stationed":8895,"friedrich":8896,"counted":8897,"##ulated":8898,"platinum":8899,"theatrical":8900,"seated":8901,"col":8902,"rubber":8903,"glen":8904,"1840":8905,"diversity":8906,"healing":8907,"extends":8908,"id":8909,"provisions":8910,"administrator":8911,"columbus":8912,"##oe":8913,"tributary":8914,"te":8915,"assured":8916,"org":8917,"##uous":8918,"prestigious":8919,"examined":8920,"lectures":8921,"grammy":8922,"ronald":8923,"associations":8924,"bailey":8925,"allan":8926,"essays":8927,"flute":8928,"believing":8929,"consultant":8930,"proceedings":8931,"travelling":8932,"1853":8933,"kit":8934,"kerala":8935,"yugoslavia":8936,"buddy":8937,"methodist":8938,"##ith":8939,"burial":8940,"centres":8941,"batman":8942,"##nda":8943,"discontinued":8944,"bo":8945,"dock":8946,"stockholm":8947,"lungs":8948,"severely":8949,"##nk":8950,"citing":8951,"manga":8952,"##ugh":8953,"steal":8954,"mumbai":8955,"iraqi":8956,"robot":8957,"celebrity":8958,"bride":8959,"broadcasts":8960,"abolished":8961,"pot":8962,"joel":8963,"overhead":8964,"franz":8965,"packed":8966,"reconnaissance":8967,"johann":8968,"acknowledged":8969,"introduce":8970,"handled":8971,"doctorate":8972,"developments":8973,"drinks":8974,"alley":8975,"palestine":8976,"##nis":8977,"##aki":8978,"proceeded":8979,"recover":8980,"bradley":8981,"grain":8982,"patch":8983,"afford":8984,"infection":8985,"nationalist":8986,"legendary":8987,"##ath":8988,"interchange":8989,"virtually":8990,"gen":8991,"gravity":8992,"exploration":8993,"amber":8994,"vital":8995,"wishes":8996,"powell":8997,"doctrine":8998,"elbow":8999,"screenplay":9000,"##bird":9001,"contribute":9002,"indonesian":9003,"pet":9004,"creates":9005,"##com":9006,"enzyme":9007,"kylie":9008,"discipline":9009,"drops":9010,"manila":9011,"hunger":9012,"##ien":9013,"layers":9014,"suffer":9015,"fever":9016,"bits":9017,"monica":9018,"keyboard":9019,"manages":9020,"##hood":9021,"searched":9022,"appeals":9023,"##bad":9024,"testament":9025,"grande":9026,"reid":9027,"##war":9028,"beliefs":9029,"congo":9030,"##ification":9031,"##dia":9032,"si":9033,"requiring":9034,"##via":9035,"casey":9036,"1849":9037,"regret":9038,"streak":9039,"rape":9040,"depends":9041,"syrian":9042,"sprint":9043,"pound":9044,"tourists":9045,"upcoming":9046,"pub":9047,"##xi":9048,"tense":9049,"##els":9050,"practiced":9051,"echo":9052,"nationwide":9053,"guild":9054,"motorcycle":9055,"liz":9056,"##zar":9057,"chiefs":9058,"desired":9059,"elena":9060,"bye":9061,"precious":9062,"absorbed":9063,"relatives":9064,"booth":9065,"pianist":9066,"##mal":9067,"citizenship":9068,"exhausted":9069,"wilhelm":9070,"##ceae":9071,"##hed":9072,"noting":9073,"quarterback":9074,"urge":9075,"hectares":9076,"##gue":9077,"ace":9078,"holly":9079,"##tal":9080,"blonde":9081,"davies":9082,"parked":9083,"sustainable":9084,"stepping":9085,"twentieth":9086,"airfield":9087,"galaxy":9088,"nest":9089,"chip":9090,"##nell":9091,"tan":9092,"shaft":9093,"paulo":9094,"requirement":9095,"##zy":9096,"paradise":9097,"tobacco":9098,"trans":9099,"renewed":9100,"vietnamese":9101,"##cker":9102,"##ju":9103,"suggesting":9104,"catching":9105,"holmes":9106,"enjoying":9107,"md":9108,"trips":9109,"colt":9110,"holder":9111,"butterfly":9112,"nerve":9113,"reformed":9114,"cherry":9115,"bowling":9116,"trailer":9117,"carriage":9118,"goodbye":9119,"appreciate":9120,"toy":9121,"joshua":9122,"interactive":9123,"enabled":9124,"involve":9125,"##kan":9126,"collar":9127,"determination":9128,"bunch":9129,"facebook":9130,"recall":9131,"shorts":9132,"superintendent":9133,"episcopal":9134,"frustration":9135,"giovanni":9136,"nineteenth":9137,"laser":9138,"privately":9139,"array":9140,"circulation":9141,"##ovic":9142,"armstrong":9143,"deals":9144,"painful":9145,"permit":9146,"discrimination":9147,"##wi":9148,"aires":9149,"retiring":9150,"cottage":9151,"ni":9152,"##sta":9153,"horizon":9154,"ellen":9155,"jamaica":9156,"ripped":9157,"fernando":9158,"chapters":9159,"playstation":9160,"patron":9161,"lecturer":9162,"navigation":9163,"behaviour":9164,"genes":9165,"georgian":9166,"export":9167,"solomon":9168,"rivals":9169,"swift":9170,"seventeen":9171,"rodriguez":9172,"princeton":9173,"independently":9174,"sox":9175,"1847":9176,"arguing":9177,"entity":9178,"casting":9179,"hank":9180,"criteria":9181,"oakland":9182,"geographic":9183,"milwaukee":9184,"reflection":9185,"expanding":9186,"conquest":9187,"dubbed":9188,"##tv":9189,"halt":9190,"brave":9191,"brunswick":9192,"doi":9193,"arched":9194,"curtis":9195,"divorced":9196,"predominantly":9197,"somerset":9198,"streams":9199,"ugly":9200,"zoo":9201,"horrible":9202,"curved":9203,"buenos":9204,"fierce":9205,"dictionary":9206,"vector":9207,"theological":9208,"unions":9209,"handful":9210,"stability":9211,"chan":9212,"punjab":9213,"segments":9214,"##lly":9215,"altar":9216,"ignoring":9217,"gesture":9218,"monsters":9219,"pastor":9220,"##stone":9221,"thighs":9222,"unexpected":9223,"operators":9224,"abruptly":9225,"coin":9226,"compiled":9227,"associates":9228,"improving":9229,"migration":9230,"pin":9231,"##ose":9232,"compact":9233,"collegiate":9234,"reserved":9235,"##urs":9236,"quarterfinals":9237,"roster":9238,"restore":9239,"assembled":9240,"hurry":9241,"oval":9242,"##cies":9243,"1846":9244,"flags":9245,"martha":9246,"##del":9247,"victories":9248,"sharply":9249,"##rated":9250,"argues":9251,"deadly":9252,"neo":9253,"drawings":9254,"symbols":9255,"performer":9256,"##iel":9257,"griffin":9258,"restrictions":9259,"editing":9260,"andrews":9261,"java":9262,"journals":9263,"arabia":9264,"compositions":9265,"dee":9266,"pierce":9267,"removing":9268,"hindi":9269,"casino":9270,"runway":9271,"civilians":9272,"minds":9273,"nasa":9274,"hotels":9275,"##zation":9276,"refuge":9277,"rent":9278,"retain":9279,"potentially":9280,"conferences":9281,"suburban":9282,"conducting":9283,"##tto":9284,"##tions":9285,"##tle":9286,"descended":9287,"massacre":9288,"##cal":9289,"ammunition":9290,"terrain":9291,"fork":9292,"souls":9293,"counts":9294,"chelsea":9295,"durham":9296,"drives":9297,"cab":9298,"##bank":9299,"perth":9300,"realizing":9301,"palestinian":9302,"finn":9303,"simpson":9304,"##dal":9305,"betty":9306,"##ule":9307,"moreover":9308,"particles":9309,"cardinals":9310,"tent":9311,"evaluation":9312,"extraordinary":9313,"##oid":9314,"inscription":9315,"##works":9316,"wednesday":9317,"chloe":9318,"maintains":9319,"panels":9320,"ashley":9321,"trucks":9322,"##nation":9323,"cluster":9324,"sunlight":9325,"strikes":9326,"zhang":9327,"##wing":9328,"dialect":9329,"canon":9330,"##ap":9331,"tucked":9332,"##ws":9333,"collecting":9334,"##mas":9335,"##can":9336,"##sville":9337,"maker":9338,"quoted":9339,"evan":9340,"franco":9341,"aria":9342,"buying":9343,"cleaning":9344,"eva":9345,"closet":9346,"provision":9347,"apollo":9348,"clinic":9349,"rat":9350,"##ez":9351,"necessarily":9352,"ac":9353,"##gle":9354,"##ising":9355,"venues":9356,"flipped":9357,"cent":9358,"spreading":9359,"trustees":9360,"checking":9361,"authorized":9362,"##sco":9363,"disappointed":9364,"##ado":9365,"notion":9366,"duration":9367,"trumpet":9368,"hesitated":9369,"topped":9370,"brussels":9371,"rolls":9372,"theoretical":9373,"hint":9374,"define":9375,"aggressive":9376,"repeat":9377,"wash":9378,"peaceful":9379,"optical":9380,"width":9381,"allegedly":9382,"mcdonald":9383,"strict":9384,"copyright":9385,"##illa":9386,"investors":9387,"mar":9388,"jam":9389,"witnesses":9390,"sounding":9391,"miranda":9392,"michelle":9393,"privacy":9394,"hugo":9395,"harmony":9396,"##pp":9397,"valid":9398,"lynn":9399,"glared":9400,"nina":9401,"102":9402,"headquartered":9403,"diving":9404,"boarding":9405,"gibson":9406,"##ncy":9407,"albanian":9408,"marsh":9409,"routine":9410,"dealt":9411,"enhanced":9412,"er":9413,"intelligent":9414,"substance":9415,"targeted":9416,"enlisted":9417,"discovers":9418,"spinning":9419,"observations":9420,"pissed":9421,"smoking":9422,"rebecca":9423,"capitol":9424,"visa":9425,"varied":9426,"costume":9427,"seemingly":9428,"indies":9429,"compensation":9430,"surgeon":9431,"thursday":9432,"arsenal":9433,"westminster":9434,"suburbs":9435,"rid":9436,"anglican":9437,"##ridge":9438,"knots":9439,"foods":9440,"alumni":9441,"lighter":9442,"fraser":9443,"whoever":9444,"portal":9445,"scandal":9446,"##ray":9447,"gavin":9448,"advised":9449,"instructor":9450,"flooding":9451,"terrorist":9452,"##ale":9453,"teenage":9454,"interim":9455,"senses":9456,"duck":9457,"teen":9458,"thesis":9459,"abby":9460,"eager":9461,"overcome":9462,"##ile":9463,"newport":9464,"glenn":9465,"rises":9466,"shame":9467,"##cc":9468,"prompted":9469,"priority":9470,"forgot":9471,"bomber":9472,"nicolas":9473,"protective":9474,"360":9475,"cartoon":9476,"katherine":9477,"breeze":9478,"lonely":9479,"trusted":9480,"henderson":9481,"richardson":9482,"relax":9483,"banner":9484,"candy":9485,"palms":9486,"remarkable":9487,"##rio":9488,"legends":9489,"cricketer":9490,"essay":9491,"ordained":9492,"edmund":9493,"rifles":9494,"trigger":9495,"##uri":9496,"##away":9497,"sail":9498,"alert":9499,"1830":9500,"audiences":9501,"penn":9502,"sussex":9503,"siblings":9504,"pursued":9505,"indianapolis":9506,"resist":9507,"rosa":9508,"consequence":9509,"succeed":9510,"avoided":9511,"1845":9512,"##ulation":9513,"inland":9514,"##tie":9515,"##nna":9516,"counsel":9517,"profession":9518,"chronicle":9519,"hurried":9520,"##una":9521,"eyebrow":9522,"eventual":9523,"bleeding":9524,"innovative":9525,"cure":9526,"##dom":9527,"committees":9528,"accounting":9529,"con":9530,"scope":9531,"hardy":9532,"heather":9533,"tenor":9534,"gut":9535,"herald":9536,"codes":9537,"tore":9538,"scales":9539,"wagon":9540,"##oo":9541,"luxury":9542,"tin":9543,"prefer":9544,"fountain":9545,"triangle":9546,"bonds":9547,"darling":9548,"convoy":9549,"dried":9550,"traced":9551,"beings":9552,"troy":9553,"accidentally":9554,"slam":9555,"findings":9556,"smelled":9557,"joey":9558,"lawyers":9559,"outcome":9560,"steep":9561,"bosnia":9562,"configuration":9563,"shifting":9564,"toll":9565,"brook":9566,"performers":9567,"lobby":9568,"philosophical":9569,"construct":9570,"shrine":9571,"aggregate":9572,"boot":9573,"cox":9574,"phenomenon":9575,"savage":9576,"insane":9577,"solely":9578,"reynolds":9579,"lifestyle":9580,"##ima":9581,"nationally":9582,"holdings":9583,"consideration":9584,"enable":9585,"edgar":9586,"mo":9587,"mama":9588,"##tein":9589,"fights":9590,"relegation":9591,"chances":9592,"atomic":9593,"hub":9594,"conjunction":9595,"awkward":9596,"reactions":9597,"currency":9598,"finale":9599,"kumar":9600,"underwent":9601,"steering":9602,"elaborate":9603,"gifts":9604,"comprising":9605,"melissa":9606,"veins":9607,"reasonable":9608,"sunshine":9609,"chi":9610,"solve":9611,"trails":9612,"inhabited":9613,"elimination":9614,"ethics":9615,"huh":9616,"ana":9617,"molly":9618,"consent":9619,"apartments":9620,"layout":9621,"marines":9622,"##ces":9623,"hunters":9624,"bulk":9625,"##oma":9626,"hometown":9627,"##wall":9628,"##mont":9629,"cracked":9630,"reads":9631,"neighbouring":9632,"withdrawn":9633,"admission":9634,"wingspan":9635,"damned":9636,"anthology":9637,"lancashire":9638,"brands":9639,"batting":9640,"forgive":9641,"cuban":9642,"awful":9643,"##lyn":9644,"104":9645,"dimensions":9646,"imagination":9647,"##ade":9648,"dante":9649,"##ship":9650,"tracking":9651,"desperately":9652,"goalkeeper":9653,"##yne":9654,"groaned":9655,"workshops":9656,"confident":9657,"burton":9658,"gerald":9659,"milton":9660,"circus":9661,"uncertain":9662,"slope":9663,"copenhagen":9664,"sophia":9665,"fog":9666,"philosopher":9667,"portraits":9668,"accent":9669,"cycling":9670,"varying":9671,"gripped":9672,"larvae":9673,"garrett":9674,"specified":9675,"scotia":9676,"mature":9677,"luther":9678,"kurt":9679,"rap":9680,"##kes":9681,"aerial":9682,"750":9683,"ferdinand":9684,"heated":9685,"es":9686,"transported":9687,"##shan":9688,"safely":9689,"nonetheless":9690,"##orn":9691,"##gal":9692,"motors":9693,"demanding":9694,"##sburg":9695,"startled":9696,"##brook":9697,"ally":9698,"generate":9699,"caps":9700,"ghana":9701,"stained":9702,"demo":9703,"mentions":9704,"beds":9705,"ap":9706,"afterward":9707,"diary":9708,"##bling":9709,"utility":9710,"##iro":9711,"richards":9712,"1837":9713,"conspiracy":9714,"conscious":9715,"shining":9716,"footsteps":9717,"observer":9718,"cyprus":9719,"urged":9720,"loyalty":9721,"developer":9722,"probability":9723,"olive":9724,"upgraded":9725,"gym":9726,"miracle":9727,"insects":9728,"graves":9729,"1844":9730,"ourselves":9731,"hydrogen":9732,"amazon":9733,"katie":9734,"tickets":9735,"poets":9736,"##pm":9737,"planes":9738,"##pan":9739,"prevention":9740,"witnessed":9741,"dense":9742,"jin":9743,"randy":9744,"tang":9745,"warehouse":9746,"monroe":9747,"bang":9748,"archived":9749,"elderly":9750,"investigations":9751,"alec":9752,"granite":9753,"mineral":9754,"conflicts":9755,"controlling":9756,"aboriginal":9757,"carlo":9758,"##zu":9759,"mechanics":9760,"stan":9761,"stark":9762,"rhode":9763,"skirt":9764,"est":9765,"##berry":9766,"bombs":9767,"respected":9768,"##horn":9769,"imposed":9770,"limestone":9771,"deny":9772,"nominee":9773,"memphis":9774,"grabbing":9775,"disabled":9776,"##als":9777,"amusement":9778,"aa":9779,"frankfurt":9780,"corn":9781,"referendum":9782,"varies":9783,"slowed":9784,"disk":9785,"firms":9786,"unconscious":9787,"incredible":9788,"clue":9789,"sue":9790,"##zhou":9791,"twist":9792,"##cio":9793,"joins":9794,"idaho":9795,"chad":9796,"developers":9797,"computing":9798,"destroyer":9799,"103":9800,"mortal":9801,"tucker":9802,"kingston":9803,"choices":9804,"yu":9805,"carson":9806,"1800":9807,"os":9808,"whitney":9809,"geneva":9810,"pretend":9811,"dimension":9812,"staged":9813,"plateau":9814,"maya":9815,"##une":9816,"freestyle":9817,"##bc":9818,"rovers":9819,"hiv":9820,"##ids":9821,"tristan":9822,"classroom":9823,"prospect":9824,"##hus":9825,"honestly":9826,"diploma":9827,"lied":9828,"thermal":9829,"auxiliary":9830,"feast":9831,"unlikely":9832,"iata":9833,"##tel":9834,"morocco":9835,"pounding":9836,"treasury":9837,"lithuania":9838,"considerably":9839,"1841":9840,"dish":9841,"1812":9842,"geological":9843,"matching":9844,"stumbled":9845,"destroying":9846,"marched":9847,"brien":9848,"advances":9849,"cake":9850,"nicole":9851,"belle":9852,"settling":9853,"measuring":9854,"directing":9855,"##mie":9856,"tuesday":9857,"bassist":9858,"capabilities":9859,"stunned":9860,"fraud":9861,"torpedo":9862,"##list":9863,"##phone":9864,"anton":9865,"wisdom":9866,"surveillance":9867,"ruined":9868,"##ulate":9869,"lawsuit":9870,"healthcare":9871,"theorem":9872,"halls":9873,"trend":9874,"aka":9875,"horizontal":9876,"dozens":9877,"acquire":9878,"lasting":9879,"swim":9880,"hawk":9881,"gorgeous":9882,"fees":9883,"vicinity":9884,"decrease":9885,"adoption":9886,"tactics":9887,"##ography":9888,"pakistani":9889,"##ole":9890,"draws":9891,"##hall":9892,"willie":9893,"burke":9894,"heath":9895,"algorithm":9896,"integral":9897,"powder":9898,"elliott":9899,"brigadier":9900,"jackie":9901,"tate":9902,"varieties":9903,"darker":9904,"##cho":9905,"lately":9906,"cigarette":9907,"specimens":9908,"adds":9909,"##ree":9910,"##ensis":9911,"##inger":9912,"exploded":9913,"finalist":9914,"cia":9915,"murders":9916,"wilderness":9917,"arguments":9918,"nicknamed":9919,"acceptance":9920,"onwards":9921,"manufacture":9922,"robertson":9923,"jets":9924,"tampa":9925,"enterprises":9926,"blog":9927,"loudly":9928,"composers":9929,"nominations":9930,"1838":9931,"ai":9932,"malta":9933,"inquiry":9934,"automobile":9935,"hosting":9936,"viii":9937,"rays":9938,"tilted":9939,"grief":9940,"museums":9941,"strategies":9942,"furious":9943,"euro":9944,"equality":9945,"cohen":9946,"poison":9947,"surrey":9948,"wireless":9949,"governed":9950,"ridiculous":9951,"moses":9952,"##esh":9953,"##room":9954,"vanished":9955,"##ito":9956,"barnes":9957,"attract":9958,"morrison":9959,"istanbul":9960,"##iness":9961,"absent":9962,"rotation":9963,"petition":9964,"janet":9965,"##logical":9966,"satisfaction":9967,"custody":9968,"deliberately":9969,"observatory":9970,"comedian":9971,"surfaces":9972,"pinyin":9973,"novelist":9974,"strictly":9975,"canterbury":9976,"oslo":9977,"monks":9978,"embrace":9979,"ibm":9980,"jealous":9981,"photograph":9982,"continent":9983,"dorothy":9984,"marina":9985,"doc":9986,"excess":9987,"holden":9988,"allegations":9989,"explaining":9990,"stack":9991,"avoiding":9992,"lance":9993,"storyline":9994,"majesty":9995,"poorly":9996,"spike":9997,"dos":9998,"bradford":9999,"raven":10000,"travis":10001,"classics":10002,"proven":10003,"voltage":10004,"pillow":10005,"fists":10006,"butt":10007,"1842":10008,"interpreted":10009,"##car":10010,"1839":10011,"gage":10012,"telegraph":10013,"lens":10014,"promising":10015,"expelled":10016,"casual":10017,"collector":10018,"zones":10019,"##min":10020,"silly":10021,"nintendo":10022,"##kh":10023,"##bra":10024,"downstairs":10025,"chef":10026,"suspicious":10027,"afl":10028,"flies":10029,"vacant":10030,"uganda":10031,"pregnancy":10032,"condemned":10033,"lutheran":10034,"estimates":10035,"cheap":10036,"decree":10037,"saxon":10038,"proximity":10039,"stripped":10040,"idiot":10041,"deposits":10042,"contrary":10043,"presenter":10044,"magnus":10045,"glacier":10046,"im":10047,"offense":10048,"edwin":10049,"##ori":10050,"upright":10051,"##long":10052,"bolt":10053,"##ois":10054,"toss":10055,"geographical":10056,"##izes":10057,"environments":10058,"delicate":10059,"marking":10060,"abstract":10061,"xavier":10062,"nails":10063,"windsor":10064,"plantation":10065,"occurring":10066,"equity":10067,"saskatchewan":10068,"fears":10069,"drifted":10070,"sequences":10071,"vegetation":10072,"revolt":10073,"##stic":10074,"1843":10075,"sooner":10076,"fusion":10077,"opposing":10078,"nato":10079,"skating":10080,"1836":10081,"secretly":10082,"ruin":10083,"lease":10084,"##oc":10085,"edit":10086,"##nne":10087,"flora":10088,"anxiety":10089,"ruby":10090,"##ological":10091,"##mia":10092,"tel":10093,"bout":10094,"taxi":10095,"emmy":10096,"frost":10097,"rainbow":10098,"compounds":10099,"foundations":10100,"rainfall":10101,"assassination":10102,"nightmare":10103,"dominican":10104,"##win":10105,"achievements":10106,"deserve":10107,"orlando":10108,"intact":10109,"armenia":10110,"##nte":10111,"calgary":10112,"valentine":10113,"106":10114,"marion":10115,"proclaimed":10116,"theodore":10117,"bells":10118,"courtyard":10119,"thigh":10120,"gonzalez":10121,"console":10122,"troop":10123,"minimal":10124,"monte":10125,"everyday":10126,"##ence":10127,"##if":10128,"supporter":10129,"terrorism":10130,"buck":10131,"openly":10132,"presbyterian":10133,"activists":10134,"carpet":10135,"##iers":10136,"rubbing":10137,"uprising":10138,"##yi":10139,"cute":10140,"conceived":10141,"legally":10142,"##cht":10143,"millennium":10144,"cello":10145,"velocity":10146,"ji":10147,"rescued":10148,"cardiff":10149,"1835":10150,"rex":10151,"concentrate":10152,"senators":10153,"beard":10154,"rendered":10155,"glowing":10156,"battalions":10157,"scouts":10158,"competitors":10159,"sculptor":10160,"catalogue":10161,"arctic":10162,"ion":10163,"raja":10164,"bicycle":10165,"wow":10166,"glancing":10167,"lawn":10168,"##woman":10169,"gentleman":10170,"lighthouse":10171,"publish":10172,"predicted":10173,"calculated":10174,"##val":10175,"variants":10176,"##gne":10177,"strain":10178,"##ui":10179,"winston":10180,"deceased":10181,"##nus":10182,"touchdowns":10183,"brady":10184,"caleb":10185,"sinking":10186,"echoed":10187,"crush":10188,"hon":10189,"blessed":10190,"protagonist":10191,"hayes":10192,"endangered":10193,"magnitude":10194,"editors":10195,"##tine":10196,"estimate":10197,"responsibilities":10198,"##mel":10199,"backup":10200,"laying":10201,"consumed":10202,"sealed":10203,"zurich":10204,"lovers":10205,"frustrated":10206,"##eau":10207,"ahmed":10208,"kicking":10209,"mit":10210,"treasurer":10211,"1832":10212,"biblical":10213,"refuse":10214,"terrified":10215,"pump":10216,"agrees":10217,"genuine":10218,"imprisonment":10219,"refuses":10220,"plymouth":10221,"##hen":10222,"lou":10223,"##nen":10224,"tara":10225,"trembling":10226,"antarctic":10227,"ton":10228,"learns":10229,"##tas":10230,"crap":10231,"crucial":10232,"faction":10233,"atop":10234,"##borough":10235,"wrap":10236,"lancaster":10237,"odds":10238,"hopkins":10239,"erik":10240,"lyon":10241,"##eon":10242,"bros":10243,"##ode":10244,"snap":10245,"locality":10246,"tips":10247,"empress":10248,"crowned":10249,"cal":10250,"acclaimed":10251,"chuckled":10252,"##ory":10253,"clara":10254,"sends":10255,"mild":10256,"towel":10257,"##fl":10258,"##day":10259,"##а":10260,"wishing":10261,"assuming":10262,"interviewed":10263,"##bal":10264,"##die":10265,"interactions":10266,"eden":10267,"cups":10268,"helena":10269,"##lf":10270,"indie":10271,"beck":10272,"##fire":10273,"batteries":10274,"filipino":10275,"wizard":10276,"parted":10277,"##lam":10278,"traces":10279,"##born":10280,"rows":10281,"idol":10282,"albany":10283,"delegates":10284,"##ees":10285,"##sar":10286,"discussions":10287,"##ex":10288,"notre":10289,"instructed":10290,"belgrade":10291,"highways":10292,"suggestion":10293,"lauren":10294,"possess":10295,"orientation":10296,"alexandria":10297,"abdul":10298,"beats":10299,"salary":10300,"reunion":10301,"ludwig":10302,"alright":10303,"wagner":10304,"intimate":10305,"pockets":10306,"slovenia":10307,"hugged":10308,"brighton":10309,"merchants":10310,"cruel":10311,"stole":10312,"trek":10313,"slopes":10314,"repairs":10315,"enrollment":10316,"politically":10317,"underlying":10318,"promotional":10319,"counting":10320,"boeing":10321,"##bb":10322,"isabella":10323,"naming":10324,"##и":10325,"keen":10326,"bacteria":10327,"listing":10328,"separately":10329,"belfast":10330,"ussr":10331,"450":10332,"lithuanian":10333,"anybody":10334,"ribs":10335,"sphere":10336,"martinez":10337,"cock":10338,"embarrassed":10339,"proposals":10340,"fragments":10341,"nationals":10342,"##fs":10343,"##wski":10344,"premises":10345,"fin":10346,"1500":10347,"alpine":10348,"matched":10349,"freely":10350,"bounded":10351,"jace":10352,"sleeve":10353,"##af":10354,"gaming":10355,"pier":10356,"populated":10357,"evident":10358,"##like":10359,"frances":10360,"flooded":10361,"##dle":10362,"frightened":10363,"pour":10364,"trainer":10365,"framed":10366,"visitor":10367,"challenging":10368,"pig":10369,"wickets":10370,"##fold":10371,"infected":10372,"email":10373,"##pes":10374,"arose":10375,"##aw":10376,"reward":10377,"ecuador":10378,"oblast":10379,"vale":10380,"ch":10381,"shuttle":10382,"##usa":10383,"bach":10384,"rankings":10385,"forbidden":10386,"cornwall":10387,"accordance":10388,"salem":10389,"consumers":10390,"bruno":10391,"fantastic":10392,"toes":10393,"machinery":10394,"resolved":10395,"julius":10396,"remembering":10397,"propaganda":10398,"iceland":10399,"bombardment":10400,"tide":10401,"contacts":10402,"wives":10403,"##rah":10404,"concerto":10405,"macdonald":10406,"albania":10407,"implement":10408,"daisy":10409,"tapped":10410,"sudan":10411,"helmet":10412,"angela":10413,"mistress":10414,"##lic":10415,"crop":10416,"sunk":10417,"finest":10418,"##craft":10419,"hostile":10420,"##ute":10421,"##tsu":10422,"boxer":10423,"fr":10424,"paths":10425,"adjusted":10426,"habit":10427,"ballot":10428,"supervision":10429,"soprano":10430,"##zen":10431,"bullets":10432,"wicked":10433,"sunset":10434,"regiments":10435,"disappear":10436,"lamp":10437,"performs":10438,"app":10439,"##gia":10440,"##oa":10441,"rabbit":10442,"digging":10443,"incidents":10444,"entries":10445,"##cion":10446,"dishes":10447,"##oi":10448,"introducing":10449,"##ati":10450,"##fied":10451,"freshman":10452,"slot":10453,"jill":10454,"tackles":10455,"baroque":10456,"backs":10457,"##iest":10458,"lone":10459,"sponsor":10460,"destiny":10461,"altogether":10462,"convert":10463,"##aro":10464,"consensus":10465,"shapes":10466,"demonstration":10467,"basically":10468,"feminist":10469,"auction":10470,"artifacts":10471,"##bing":10472,"strongest":10473,"twitter":10474,"halifax":10475,"2019":10476,"allmusic":10477,"mighty":10478,"smallest":10479,"precise":10480,"alexandra":10481,"viola":10482,"##los":10483,"##ille":10484,"manuscripts":10485,"##illo":10486,"dancers":10487,"ari":10488,"managers":10489,"monuments":10490,"blades":10491,"barracks":10492,"springfield":10493,"maiden":10494,"consolidated":10495,"electron":10496,"##end":10497,"berry":10498,"airing":10499,"wheat":10500,"nobel":10501,"inclusion":10502,"blair":10503,"payments":10504,"geography":10505,"bee":10506,"cc":10507,"eleanor":10508,"react":10509,"##hurst":10510,"afc":10511,"manitoba":10512,"##yu":10513,"su":10514,"lineup":10515,"fitness":10516,"recreational":10517,"investments":10518,"airborne":10519,"disappointment":10520,"##dis":10521,"edmonton":10522,"viewing":10523,"##row":10524,"renovation":10525,"##cast":10526,"infant":10527,"bankruptcy":10528,"roses":10529,"aftermath":10530,"pavilion":10531,"##yer":10532,"carpenter":10533,"withdrawal":10534,"ladder":10535,"##hy":10536,"discussing":10537,"popped":10538,"reliable":10539,"agreements":10540,"rochester":10541,"##abad":10542,"curves":10543,"bombers":10544,"220":10545,"rao":10546,"reverend":10547,"decreased":10548,"choosing":10549,"107":10550,"stiff":10551,"consulting":10552,"naples":10553,"crawford":10554,"tracy":10555,"ka":10556,"ribbon":10557,"cops":10558,"##lee":10559,"crushed":10560,"deciding":10561,"unified":10562,"teenager":10563,"accepting":10564,"flagship":10565,"explorer":10566,"poles":10567,"sanchez":10568,"inspection":10569,"revived":10570,"skilled":10571,"induced":10572,"exchanged":10573,"flee":10574,"locals":10575,"tragedy":10576,"swallow":10577,"loading":10578,"hanna":10579,"demonstrate":10580,"##ela":10581,"salvador":10582,"flown":10583,"contestants":10584,"civilization":10585,"##ines":10586,"wanna":10587,"rhodes":10588,"fletcher":10589,"hector":10590,"knocking":10591,"considers":10592,"##ough":10593,"nash":10594,"mechanisms":10595,"sensed":10596,"mentally":10597,"walt":10598,"unclear":10599,"##eus":10600,"renovated":10601,"madame":10602,"##cks":10603,"crews":10604,"governmental":10605,"##hin":10606,"undertaken":10607,"monkey":10608,"##ben":10609,"##ato":10610,"fatal":10611,"armored":10612,"copa":10613,"caves":10614,"governance":10615,"grasp":10616,"perception":10617,"certification":10618,"froze":10619,"damp":10620,"tugged":10621,"wyoming":10622,"##rg":10623,"##ero":10624,"newman":10625,"##lor":10626,"nerves":10627,"curiosity":10628,"graph":10629,"115":10630,"##ami":10631,"withdraw":10632,"tunnels":10633,"dull":10634,"meredith":10635,"moss":10636,"exhibits":10637,"neighbors":10638,"communicate":10639,"accuracy":10640,"explored":10641,"raiders":10642,"republicans":10643,"secular":10644,"kat":10645,"superman":10646,"penny":10647,"criticised":10648,"##tch":10649,"freed":10650,"update":10651,"conviction":10652,"wade":10653,"ham":10654,"likewise":10655,"delegation":10656,"gotta":10657,"doll":10658,"promises":10659,"technological":10660,"myth":10661,"nationality":10662,"resolve":10663,"convent":10664,"##mark":10665,"sharon":10666,"dig":10667,"sip":10668,"coordinator":10669,"entrepreneur":10670,"fold":10671,"##dine":10672,"capability":10673,"councillor":10674,"synonym":10675,"blown":10676,"swan":10677,"cursed":10678,"1815":10679,"jonas":10680,"haired":10681,"sofa":10682,"canvas":10683,"keeper":10684,"rivalry":10685,"##hart":10686,"rapper":10687,"speedway":10688,"swords":10689,"postal":10690,"maxwell":10691,"estonia":10692,"potter":10693,"recurring":10694,"##nn":10695,"##ave":10696,"errors":10697,"##oni":10698,"cognitive":10699,"1834":10700,"##²":10701,"claws":10702,"nadu":10703,"roberto":10704,"bce":10705,"wrestler":10706,"ellie":10707,"##ations":10708,"infinite":10709,"ink":10710,"##tia":10711,"presumably":10712,"finite":10713,"staircase":10714,"108":10715,"noel":10716,"patricia":10717,"nacional":10718,"##cation":10719,"chill":10720,"eternal":10721,"tu":10722,"preventing":10723,"prussia":10724,"fossil":10725,"limbs":10726,"##logist":10727,"ernst":10728,"frog":10729,"perez":10730,"rene":10731,"##ace":10732,"pizza":10733,"prussian":10734,"##ios":10735,"##vy":10736,"molecules":10737,"regulatory":10738,"answering":10739,"opinions":10740,"sworn":10741,"lengths":10742,"supposedly":10743,"hypothesis":10744,"upward":10745,"habitats":10746,"seating":10747,"ancestors":10748,"drank":10749,"yield":10750,"hd":10751,"synthesis":10752,"researcher":10753,"modest":10754,"##var":10755,"mothers":10756,"peered":10757,"voluntary":10758,"homeland":10759,"##the":10760,"acclaim":10761,"##igan":10762,"static":10763,"valve":10764,"luxembourg":10765,"alto":10766,"carroll":10767,"fe":10768,"receptor":10769,"norton":10770,"ambulance":10771,"##tian":10772,"johnston":10773,"catholics":10774,"depicting":10775,"jointly":10776,"elephant":10777,"gloria":10778,"mentor":10779,"badge":10780,"ahmad":10781,"distinguish":10782,"remarked":10783,"councils":10784,"precisely":10785,"allison":10786,"advancing":10787,"detection":10788,"crowded":10789,"##10":10790,"cooperative":10791,"ankle":10792,"mercedes":10793,"dagger":10794,"surrendered":10795,"pollution":10796,"commit":10797,"subway":10798,"jeffrey":10799,"lesson":10800,"sculptures":10801,"provider":10802,"##fication":10803,"membrane":10804,"timothy":10805,"rectangular":10806,"fiscal":10807,"heating":10808,"teammate":10809,"basket":10810,"particle":10811,"anonymous":10812,"deployment":10813,"##ple":10814,"missiles":10815,"courthouse":10816,"proportion":10817,"shoe":10818,"sec":10819,"##ller":10820,"complaints":10821,"forbes":10822,"blacks":10823,"abandon":10824,"remind":10825,"sizes":10826,"overwhelming":10827,"autobiography":10828,"natalie":10829,"##awa":10830,"risks":10831,"contestant":10832,"countryside":10833,"babies":10834,"scorer":10835,"invaded":10836,"enclosed":10837,"proceed":10838,"hurling":10839,"disorders":10840,"##cu":10841,"reflecting":10842,"continuously":10843,"cruiser":10844,"graduates":10845,"freeway":10846,"investigated":10847,"ore":10848,"deserved":10849,"maid":10850,"blocking":10851,"phillip":10852,"jorge":10853,"shakes":10854,"dove":10855,"mann":10856,"variables":10857,"lacked":10858,"burden":10859,"accompanying":10860,"que":10861,"consistently":10862,"organizing":10863,"provisional":10864,"complained":10865,"endless":10866,"##rm":10867,"tubes":10868,"juice":10869,"georges":10870,"krishna":10871,"mick":10872,"labels":10873,"thriller":10874,"##uch":10875,"laps":10876,"arcade":10877,"sage":10878,"snail":10879,"##table":10880,"shannon":10881,"fi":10882,"laurence":10883,"seoul":10884,"vacation":10885,"presenting":10886,"hire":10887,"churchill":10888,"surprisingly":10889,"prohibited":10890,"savannah":10891,"technically":10892,"##oli":10893,"170":10894,"##lessly":10895,"testimony":10896,"suited":10897,"speeds":10898,"toys":10899,"romans":10900,"mlb":10901,"flowering":10902,"measurement":10903,"talented":10904,"kay":10905,"settings":10906,"charleston":10907,"expectations":10908,"shattered":10909,"achieving":10910,"triumph":10911,"ceremonies":10912,"portsmouth":10913,"lanes":10914,"mandatory":10915,"loser":10916,"stretching":10917,"cologne":10918,"realizes":10919,"seventy":10920,"cornell":10921,"careers":10922,"webb":10923,"##ulating":10924,"americas":10925,"budapest":10926,"ava":10927,"suspicion":10928,"##ison":10929,"yo":10930,"conrad":10931,"##hai":10932,"sterling":10933,"jessie":10934,"rector":10935,"##az":10936,"1831":10937,"transform":10938,"organize":10939,"loans":10940,"christine":10941,"volcanic":10942,"warrant":10943,"slender":10944,"summers":10945,"subfamily":10946,"newer":10947,"danced":10948,"dynamics":10949,"rhine":10950,"proceeds":10951,"heinrich":10952,"gastropod":10953,"commands":10954,"sings":10955,"facilitate":10956,"easter":10957,"ra":10958,"positioned":10959,"responses":10960,"expense":10961,"fruits":10962,"yanked":10963,"imported":10964,"25th":10965,"velvet":10966,"vic":10967,"primitive":10968,"tribune":10969,"baldwin":10970,"neighbourhood":10971,"donna":10972,"rip":10973,"hay":10974,"pr":10975,"##uro":10976,"1814":10977,"espn":10978,"welcomed":10979,"##aria":10980,"qualifier":10981,"glare":10982,"highland":10983,"timing":10984,"##cted":10985,"shells":10986,"eased":10987,"geometry":10988,"louder":10989,"exciting":10990,"slovakia":10991,"##sion":10992,"##iz":10993,"##lot":10994,"savings":10995,"prairie":10996,"##ques":10997,"marching":10998,"rafael":10999,"tonnes":11000,"##lled":11001,"curtain":11002,"preceding":11003,"shy":11004,"heal":11005,"greene":11006,"worthy":11007,"##pot":11008,"detachment":11009,"bury":11010,"sherman":11011,"##eck":11012,"reinforced":11013,"seeks":11014,"bottles":11015,"contracted":11016,"duchess":11017,"outfit":11018,"walsh":11019,"##sc":11020,"mickey":11021,"##ase":11022,"geoffrey":11023,"archer":11024,"squeeze":11025,"dawson":11026,"eliminate":11027,"invention":11028,"##enberg":11029,"neal":11030,"##eth":11031,"stance":11032,"dealer":11033,"coral":11034,"maple":11035,"retire":11036,"polo":11037,"simplified":11038,"##ht":11039,"1833":11040,"hid":11041,"watts":11042,"backwards":11043,"jules":11044,"##oke":11045,"genesis":11046,"mt":11047,"frames":11048,"rebounds":11049,"burma":11050,"woodland":11051,"moist":11052,"santos":11053,"whispers":11054,"drained":11055,"subspecies":11056,"##aa":11057,"streaming":11058,"ulster":11059,"burnt":11060,"correspondence":11061,"maternal":11062,"gerard":11063,"denis":11064,"stealing":11065,"##load":11066,"genius":11067,"duchy":11068,"##oria":11069,"inaugurated":11070,"momentum":11071,"suits":11072,"placement":11073,"sovereign":11074,"clause":11075,"thames":11076,"##hara":11077,"confederation":11078,"reservation":11079,"sketch":11080,"yankees":11081,"lets":11082,"rotten":11083,"charm":11084,"hal":11085,"verses":11086,"ultra":11087,"commercially":11088,"dot":11089,"salon":11090,"citation":11091,"adopt":11092,"winnipeg":11093,"mist":11094,"allocated":11095,"cairo":11096,"##boy":11097,"jenkins":11098,"interference":11099,"objectives":11100,"##wind":11101,"1820":11102,"portfolio":11103,"armoured":11104,"sectors":11105,"##eh":11106,"initiatives":11107,"##world":11108,"integrity":11109,"exercises":11110,"robe":11111,"tap":11112,"ab":11113,"gazed":11114,"##tones":11115,"distracted":11116,"rulers":11117,"111":11118,"favorable":11119,"jerome":11120,"tended":11121,"cart":11122,"factories":11123,"##eri":11124,"diplomat":11125,"valued":11126,"gravel":11127,"charitable":11128,"##try":11129,"calvin":11130,"exploring":11131,"chang":11132,"shepherd":11133,"terrace":11134,"pdf":11135,"pupil":11136,"##ural":11137,"reflects":11138,"ups":11139,"##rch":11140,"governors":11141,"shelf":11142,"depths":11143,"##nberg":11144,"trailed":11145,"crest":11146,"tackle":11147,"##nian":11148,"##ats":11149,"hatred":11150,"##kai":11151,"clare":11152,"makers":11153,"ethiopia":11154,"longtime":11155,"detected":11156,"embedded":11157,"lacking":11158,"slapped":11159,"rely":11160,"thomson":11161,"anticipation":11162,"iso":11163,"morton":11164,"successive":11165,"agnes":11166,"screenwriter":11167,"straightened":11168,"philippe":11169,"playwright":11170,"haunted":11171,"licence":11172,"iris":11173,"intentions":11174,"sutton":11175,"112":11176,"logical":11177,"correctly":11178,"##weight":11179,"branded":11180,"licked":11181,"tipped":11182,"silva":11183,"ricky":11184,"narrator":11185,"requests":11186,"##ents":11187,"greeted":11188,"supernatural":11189,"cow":11190,"##wald":11191,"lung":11192,"refusing":11193,"employer":11194,"strait":11195,"gaelic":11196,"liner":11197,"##piece":11198,"zoe":11199,"sabha":11200,"##mba":11201,"driveway":11202,"harvest":11203,"prints":11204,"bates":11205,"reluctantly":11206,"threshold":11207,"algebra":11208,"ira":11209,"wherever":11210,"coupled":11211,"240":11212,"assumption":11213,"picks":11214,"##air":11215,"designers":11216,"raids":11217,"gentlemen":11218,"##ean":11219,"roller":11220,"blowing":11221,"leipzig":11222,"locks":11223,"screw":11224,"dressing":11225,"strand":11226,"##lings":11227,"scar":11228,"dwarf":11229,"depicts":11230,"##nu":11231,"nods":11232,"##mine":11233,"differ":11234,"boris":11235,"##eur":11236,"yuan":11237,"flip":11238,"##gie":11239,"mob":11240,"invested":11241,"questioning":11242,"applying":11243,"##ture":11244,"shout":11245,"##sel":11246,"gameplay":11247,"blamed":11248,"illustrations":11249,"bothered":11250,"weakness":11251,"rehabilitation":11252,"##of":11253,"##zes":11254,"envelope":11255,"rumors":11256,"miners":11257,"leicester":11258,"subtle":11259,"kerry":11260,"##ico":11261,"ferguson":11262,"##fu":11263,"premiership":11264,"ne":11265,"##cat":11266,"bengali":11267,"prof":11268,"catches":11269,"remnants":11270,"dana":11271,"##rily":11272,"shouting":11273,"presidents":11274,"baltic":11275,"ought":11276,"ghosts":11277,"dances":11278,"sailors":11279,"shirley":11280,"fancy":11281,"dominic":11282,"##bie":11283,"madonna":11284,"##rick":11285,"bark":11286,"buttons":11287,"gymnasium":11288,"ashes":11289,"liver":11290,"toby":11291,"oath":11292,"providence":11293,"doyle":11294,"evangelical":11295,"nixon":11296,"cement":11297,"carnegie":11298,"embarked":11299,"hatch":11300,"surroundings":11301,"guarantee":11302,"needing":11303,"pirate":11304,"essence":11305,"##bee":11306,"filter":11307,"crane":11308,"hammond":11309,"projected":11310,"immune":11311,"percy":11312,"twelfth":11313,"##ult":11314,"regent":11315,"doctoral":11316,"damon":11317,"mikhail":11318,"##ichi":11319,"lu":11320,"critically":11321,"elect":11322,"realised":11323,"abortion":11324,"acute":11325,"screening":11326,"mythology":11327,"steadily":11328,"##fc":11329,"frown":11330,"nottingham":11331,"kirk":11332,"wa":11333,"minneapolis":11334,"##rra":11335,"module":11336,"algeria":11337,"mc":11338,"nautical":11339,"encounters":11340,"surprising":11341,"statues":11342,"availability":11343,"shirts":11344,"pie":11345,"alma":11346,"brows":11347,"munster":11348,"mack":11349,"soup":11350,"crater":11351,"tornado":11352,"sanskrit":11353,"cedar":11354,"explosive":11355,"bordered":11356,"dixon":11357,"planets":11358,"stamp":11359,"exam":11360,"happily":11361,"##bble":11362,"carriers":11363,"kidnapped":11364,"##vis":11365,"accommodation":11366,"emigrated":11367,"##met":11368,"knockout":11369,"correspondent":11370,"violation":11371,"profits":11372,"peaks":11373,"lang":11374,"specimen":11375,"agenda":11376,"ancestry":11377,"pottery":11378,"spelling":11379,"equations":11380,"obtaining":11381,"ki":11382,"linking":11383,"1825":11384,"debris":11385,"asylum":11386,"##20":11387,"buddhism":11388,"teddy":11389,"##ants":11390,"gazette":11391,"##nger":11392,"##sse":11393,"dental":11394,"eligibility":11395,"utc":11396,"fathers":11397,"averaged":11398,"zimbabwe":11399,"francesco":11400,"coloured":11401,"hissed":11402,"translator":11403,"lynch":11404,"mandate":11405,"humanities":11406,"mackenzie":11407,"uniforms":11408,"lin":11409,"##iana":11410,"##gio":11411,"asset":11412,"mhz":11413,"fitting":11414,"samantha":11415,"genera":11416,"wei":11417,"rim":11418,"beloved":11419,"shark":11420,"riot":11421,"entities":11422,"expressions":11423,"indo":11424,"carmen":11425,"slipping":11426,"owing":11427,"abbot":11428,"neighbor":11429,"sidney":11430,"##av":11431,"rats":11432,"recommendations":11433,"encouraging":11434,"squadrons":11435,"anticipated":11436,"commanders":11437,"conquered":11438,"##oto":11439,"donations":11440,"diagnosed":11441,"##mond":11442,"divide":11443,"##iva":11444,"guessed":11445,"decoration":11446,"vernon":11447,"auditorium":11448,"revelation":11449,"conversations":11450,"##kers":11451,"##power":11452,"herzegovina":11453,"dash":11454,"alike":11455,"protested":11456,"lateral":11457,"herman":11458,"accredited":11459,"mg":11460,"##gent":11461,"freeman":11462,"mel":11463,"fiji":11464,"crow":11465,"crimson":11466,"##rine":11467,"livestock":11468,"##pped":11469,"humanitarian":11470,"bored":11471,"oz":11472,"whip":11473,"##lene":11474,"##ali":11475,"legitimate":11476,"alter":11477,"grinning":11478,"spelled":11479,"anxious":11480,"oriental":11481,"wesley":11482,"##nin":11483,"##hole":11484,"carnival":11485,"controller":11486,"detect":11487,"##ssa":11488,"bowed":11489,"educator":11490,"kosovo":11491,"macedonia":11492,"##sin":11493,"occupy":11494,"mastering":11495,"stephanie":11496,"janeiro":11497,"para":11498,"unaware":11499,"nurses":11500,"noon":11501,"135":11502,"cam":11503,"hopefully":11504,"ranger":11505,"combine":11506,"sociology":11507,"polar":11508,"rica":11509,"##eer":11510,"neill":11511,"##sman":11512,"holocaust":11513,"##ip":11514,"doubled":11515,"lust":11516,"1828":11517,"109":11518,"decent":11519,"cooling":11520,"unveiled":11521,"##card":11522,"1829":11523,"nsw":11524,"homer":11525,"chapman":11526,"meyer":11527,"##gin":11528,"dive":11529,"mae":11530,"reagan":11531,"expertise":11532,"##gled":11533,"darwin":11534,"brooke":11535,"sided":11536,"prosecution":11537,"investigating":11538,"comprised":11539,"petroleum":11540,"genres":11541,"reluctant":11542,"differently":11543,"trilogy":11544,"johns":11545,"vegetables":11546,"corpse":11547,"highlighted":11548,"lounge":11549,"pension":11550,"unsuccessfully":11551,"elegant":11552,"aided":11553,"ivory":11554,"beatles":11555,"amelia":11556,"cain":11557,"dubai":11558,"sunny":11559,"immigrant":11560,"babe":11561,"click":11562,"##nder":11563,"underwater":11564,"pepper":11565,"combining":11566,"mumbled":11567,"atlas":11568,"horns":11569,"accessed":11570,"ballad":11571,"physicians":11572,"homeless":11573,"gestured":11574,"rpm":11575,"freak":11576,"louisville":11577,"corporations":11578,"patriots":11579,"prizes":11580,"rational":11581,"warn":11582,"modes":11583,"decorative":11584,"overnight":11585,"din":11586,"troubled":11587,"phantom":11588,"##ort":11589,"monarch":11590,"sheer":11591,"##dorf":11592,"generals":11593,"guidelines":11594,"organs":11595,"addresses":11596,"##zon":11597,"enhance":11598,"curling":11599,"parishes":11600,"cord":11601,"##kie":11602,"linux":11603,"caesar":11604,"deutsche":11605,"bavaria":11606,"##bia":11607,"coleman":11608,"cyclone":11609,"##eria":11610,"bacon":11611,"petty":11612,"##yama":11613,"##old":11614,"hampton":11615,"diagnosis":11616,"1824":11617,"throws":11618,"complexity":11619,"rita":11620,"disputed":11621,"##₃":11622,"pablo":11623,"##sch":11624,"marketed":11625,"trafficking":11626,"##ulus":11627,"examine":11628,"plague":11629,"formats":11630,"##oh":11631,"vault":11632,"faithful":11633,"##bourne":11634,"webster":11635,"##ox":11636,"highlights":11637,"##ient":11638,"##ann":11639,"phones":11640,"vacuum":11641,"sandwich":11642,"modeling":11643,"##gated":11644,"bolivia":11645,"clergy":11646,"qualities":11647,"isabel":11648,"##nas":11649,"##ars":11650,"wears":11651,"screams":11652,"reunited":11653,"annoyed":11654,"bra":11655,"##ancy":11656,"##rate":11657,"differential":11658,"transmitter":11659,"tattoo":11660,"container":11661,"poker":11662,"##och":11663,"excessive":11664,"resides":11665,"cowboys":11666,"##tum":11667,"augustus":11668,"trash":11669,"providers":11670,"statute":11671,"retreated":11672,"balcony":11673,"reversed":11674,"void":11675,"storey":11676,"preceded":11677,"masses":11678,"leap":11679,"laughs":11680,"neighborhoods":11681,"wards":11682,"schemes":11683,"falcon":11684,"santo":11685,"battlefield":11686,"pad":11687,"ronnie":11688,"thread":11689,"lesbian":11690,"venus":11691,"##dian":11692,"beg":11693,"sandstone":11694,"daylight":11695,"punched":11696,"gwen":11697,"analog":11698,"stroked":11699,"wwe":11700,"acceptable":11701,"measurements":11702,"dec":11703,"toxic":11704,"##kel":11705,"adequate":11706,"surgical":11707,"economist":11708,"parameters":11709,"varsity":11710,"##sberg":11711,"quantity":11712,"ella":11713,"##chy":11714,"##rton":11715,"countess":11716,"generating":11717,"precision":11718,"diamonds":11719,"expressway":11720,"ga":11721,"##ı":11722,"1821":11723,"uruguay":11724,"talents":11725,"galleries":11726,"expenses":11727,"scanned":11728,"colleague":11729,"outlets":11730,"ryder":11731,"lucien":11732,"##ila":11733,"paramount":11734,"##bon":11735,"syracuse":11736,"dim":11737,"fangs":11738,"gown":11739,"sweep":11740,"##sie":11741,"toyota":11742,"missionaries":11743,"websites":11744,"##nsis":11745,"sentences":11746,"adviser":11747,"val":11748,"trademark":11749,"spells":11750,"##plane":11751,"patience":11752,"starter":11753,"slim":11754,"##borg":11755,"toe":11756,"incredibly":11757,"shoots":11758,"elliot":11759,"nobility":11760,"##wyn":11761,"cowboy":11762,"endorsed":11763,"gardner":11764,"tendency":11765,"persuaded":11766,"organisms":11767,"emissions":11768,"kazakhstan":11769,"amused":11770,"boring":11771,"chips":11772,"themed":11773,"##hand":11774,"llc":11775,"constantinople":11776,"chasing":11777,"systematic":11778,"guatemala":11779,"borrowed":11780,"erin":11781,"carey":11782,"##hard":11783,"highlands":11784,"struggles":11785,"1810":11786,"##ifying":11787,"##ced":11788,"wong":11789,"exceptions":11790,"develops":11791,"enlarged":11792,"kindergarten":11793,"castro":11794,"##ern":11795,"##rina":11796,"leigh":11797,"zombie":11798,"juvenile":11799,"##most":11800,"consul":11801,"##nar":11802,"sailor":11803,"hyde":11804,"clarence":11805,"intensive":11806,"pinned":11807,"nasty":11808,"useless":11809,"jung":11810,"clayton":11811,"stuffed":11812,"exceptional":11813,"ix":11814,"apostolic":11815,"230":11816,"transactions":11817,"##dge":11818,"exempt":11819,"swinging":11820,"cove":11821,"religions":11822,"##ash":11823,"shields":11824,"dairy":11825,"bypass":11826,"190":11827,"pursuing":11828,"bug":11829,"joyce":11830,"bombay":11831,"chassis":11832,"southampton":11833,"chat":11834,"interact":11835,"redesignated":11836,"##pen":11837,"nascar":11838,"pray":11839,"salmon":11840,"rigid":11841,"regained":11842,"malaysian":11843,"grim":11844,"publicity":11845,"constituted":11846,"capturing":11847,"toilet":11848,"delegate":11849,"purely":11850,"tray":11851,"drift":11852,"loosely":11853,"striker":11854,"weakened":11855,"trinidad":11856,"mitch":11857,"itv":11858,"defines":11859,"transmitted":11860,"ming":11861,"scarlet":11862,"nodding":11863,"fitzgerald":11864,"fu":11865,"narrowly":11866,"sp":11867,"tooth":11868,"standings":11869,"virtue":11870,"##₁":11871,"##wara":11872,"##cting":11873,"chateau":11874,"gloves":11875,"lid":11876,"##nel":11877,"hurting":11878,"conservatory":11879,"##pel":11880,"sinclair":11881,"reopened":11882,"sympathy":11883,"nigerian":11884,"strode":11885,"advocated":11886,"optional":11887,"chronic":11888,"discharge":11889,"##rc":11890,"suck":11891,"compatible":11892,"laurel":11893,"stella":11894,"shi":11895,"fails":11896,"wage":11897,"dodge":11898,"128":11899,"informal":11900,"sorts":11901,"levi":11902,"buddha":11903,"villagers":11904,"##aka":11905,"chronicles":11906,"heavier":11907,"summoned":11908,"gateway":11909,"3000":11910,"eleventh":11911,"jewelry":11912,"translations":11913,"accordingly":11914,"seas":11915,"##ency":11916,"fiber":11917,"pyramid":11918,"cubic":11919,"dragging":11920,"##ista":11921,"caring":11922,"##ops":11923,"android":11924,"contacted":11925,"lunar":11926,"##dt":11927,"kai":11928,"lisbon":11929,"patted":11930,"1826":11931,"sacramento":11932,"theft":11933,"madagascar":11934,"subtropical":11935,"disputes":11936,"ta":11937,"holidays":11938,"piper":11939,"willow":11940,"mare":11941,"cane":11942,"itunes":11943,"newfoundland":11944,"benny":11945,"companions":11946,"dong":11947,"raj":11948,"observe":11949,"roar":11950,"charming":11951,"plaque":11952,"tibetan":11953,"fossils":11954,"enacted":11955,"manning":11956,"bubble":11957,"tina":11958,"tanzania":11959,"##eda":11960,"##hir":11961,"funk":11962,"swamp":11963,"deputies":11964,"cloak":11965,"ufc":11966,"scenario":11967,"par":11968,"scratch":11969,"metals":11970,"anthem":11971,"guru":11972,"engaging":11973,"specially":11974,"##boat":11975,"dialects":11976,"nineteen":11977,"cecil":11978,"duet":11979,"disability":11980,"messenger":11981,"unofficial":11982,"##lies":11983,"defunct":11984,"eds":11985,"moonlight":11986,"drainage":11987,"surname":11988,"puzzle":11989,"honda":11990,"switching":11991,"conservatives":11992,"mammals":11993,"knox":11994,"broadcaster":11995,"sidewalk":11996,"cope":11997,"##ried":11998,"benson":11999,"princes":12000,"peterson":12001,"##sal":12002,"bedford":12003,"sharks":12004,"eli":12005,"wreck":12006,"alberto":12007,"gasp":12008,"archaeology":12009,"lgbt":12010,"teaches":12011,"securities":12012,"madness":12013,"compromise":12014,"waving":12015,"coordination":12016,"davidson":12017,"visions":12018,"leased":12019,"possibilities":12020,"eighty":12021,"jun":12022,"fernandez":12023,"enthusiasm":12024,"assassin":12025,"sponsorship":12026,"reviewer":12027,"kingdoms":12028,"estonian":12029,"laboratories":12030,"##fy":12031,"##nal":12032,"applies":12033,"verb":12034,"celebrations":12035,"##zzo":12036,"rowing":12037,"lightweight":12038,"sadness":12039,"submit":12040,"mvp":12041,"balanced":12042,"dude":12043,"##vas":12044,"explicitly":12045,"metric":12046,"magnificent":12047,"mound":12048,"brett":12049,"mohammad":12050,"mistakes":12051,"irregular":12052,"##hing":12053,"##ass":12054,"sanders":12055,"betrayed":12056,"shipped":12057,"surge":12058,"##enburg":12059,"reporters":12060,"termed":12061,"georg":12062,"pity":12063,"verbal":12064,"bulls":12065,"abbreviated":12066,"enabling":12067,"appealed":12068,"##are":12069,"##atic":12070,"sicily":12071,"sting":12072,"heel":12073,"sweetheart":12074,"bart":12075,"spacecraft":12076,"brutal":12077,"monarchy":12078,"##tter":12079,"aberdeen":12080,"cameo":12081,"diane":12082,"##ub":12083,"survivor":12084,"clyde":12085,"##aries":12086,"complaint":12087,"##makers":12088,"clarinet":12089,"delicious":12090,"chilean":12091,"karnataka":12092,"coordinates":12093,"1818":12094,"panties":12095,"##rst":12096,"pretending":12097,"ar":12098,"dramatically":12099,"kiev":12100,"bella":12101,"tends":12102,"distances":12103,"113":12104,"catalog":12105,"launching":12106,"instances":12107,"telecommunications":12108,"portable":12109,"lindsay":12110,"vatican":12111,"##eim":12112,"angles":12113,"aliens":12114,"marker":12115,"stint":12116,"screens":12117,"bolton":12118,"##rne":12119,"judy":12120,"wool":12121,"benedict":12122,"plasma":12123,"europa":12124,"spark":12125,"imaging":12126,"filmmaker":12127,"swiftly":12128,"##een":12129,"contributor":12130,"##nor":12131,"opted":12132,"stamps":12133,"apologize":12134,"financing":12135,"butter":12136,"gideon":12137,"sophisticated":12138,"alignment":12139,"avery":12140,"chemicals":12141,"yearly":12142,"speculation":12143,"prominence":12144,"professionally":12145,"##ils":12146,"immortal":12147,"institutional":12148,"inception":12149,"wrists":12150,"identifying":12151,"tribunal":12152,"derives":12153,"gains":12154,"##wo":12155,"papal":12156,"preference":12157,"linguistic":12158,"vince":12159,"operative":12160,"brewery":12161,"##ont":12162,"unemployment":12163,"boyd":12164,"##ured":12165,"##outs":12166,"albeit":12167,"prophet":12168,"1813":12169,"bi":12170,"##rr":12171,"##face":12172,"##rad":12173,"quarterly":12174,"asteroid":12175,"cleaned":12176,"radius":12177,"temper":12178,"##llen":12179,"telugu":12180,"jerk":12181,"viscount":12182,"menu":12183,"##ote":12184,"glimpse":12185,"##aya":12186,"yacht":12187,"hawaiian":12188,"baden":12189,"##rl":12190,"laptop":12191,"readily":12192,"##gu":12193,"monetary":12194,"offshore":12195,"scots":12196,"watches":12197,"##yang":12198,"##arian":12199,"upgrade":12200,"needle":12201,"xbox":12202,"lea":12203,"encyclopedia":12204,"flank":12205,"fingertips":12206,"##pus":12207,"delight":12208,"teachings":12209,"confirm":12210,"roth":12211,"beaches":12212,"midway":12213,"winters":12214,"##iah":12215,"teasing":12216,"daytime":12217,"beverly":12218,"gambling":12219,"bonnie":12220,"##backs":12221,"regulated":12222,"clement":12223,"hermann":12224,"tricks":12225,"knot":12226,"##shing":12227,"##uring":12228,"##vre":12229,"detached":12230,"ecological":12231,"owed":12232,"specialty":12233,"byron":12234,"inventor":12235,"bats":12236,"stays":12237,"screened":12238,"unesco":12239,"midland":12240,"trim":12241,"affection":12242,"##ander":12243,"##rry":12244,"jess":12245,"thoroughly":12246,"feedback":12247,"##uma":12248,"chennai":12249,"strained":12250,"heartbeat":12251,"wrapping":12252,"overtime":12253,"pleaded":12254,"##sworth":12255,"mon":12256,"leisure":12257,"oclc":12258,"##tate":12259,"##ele":12260,"feathers":12261,"angelo":12262,"thirds":12263,"nuts":12264,"surveys":12265,"clever":12266,"gill":12267,"commentator":12268,"##dos":12269,"darren":12270,"rides":12271,"gibraltar":12272,"##nc":12273,"##mu":12274,"dissolution":12275,"dedication":12276,"shin":12277,"meals":12278,"saddle":12279,"elvis":12280,"reds":12281,"chaired":12282,"taller":12283,"appreciation":12284,"functioning":12285,"niece":12286,"favored":12287,"advocacy":12288,"robbie":12289,"criminals":12290,"suffolk":12291,"yugoslav":12292,"passport":12293,"constable":12294,"congressman":12295,"hastings":12296,"vera":12297,"##rov":12298,"consecrated":12299,"sparks":12300,"ecclesiastical":12301,"confined":12302,"##ovich":12303,"muller":12304,"floyd":12305,"nora":12306,"1822":12307,"paved":12308,"1827":12309,"cumberland":12310,"ned":12311,"saga":12312,"spiral":12313,"##flow":12314,"appreciated":12315,"yi":12316,"collaborative":12317,"treating":12318,"similarities":12319,"feminine":12320,"finishes":12321,"##ib":12322,"jade":12323,"import":12324,"##nse":12325,"##hot":12326,"champagne":12327,"mice":12328,"securing":12329,"celebrities":12330,"helsinki":12331,"attributes":12332,"##gos":12333,"cousins":12334,"phases":12335,"ache":12336,"lucia":12337,"gandhi":12338,"submission":12339,"vicar":12340,"spear":12341,"shine":12342,"tasmania":12343,"biting":12344,"detention":12345,"constitute":12346,"tighter":12347,"seasonal":12348,"##gus":12349,"terrestrial":12350,"matthews":12351,"##oka":12352,"effectiveness":12353,"parody":12354,"philharmonic":12355,"##onic":12356,"1816":12357,"strangers":12358,"encoded":12359,"consortium":12360,"guaranteed":12361,"regards":12362,"shifts":12363,"tortured":12364,"collision":12365,"supervisor":12366,"inform":12367,"broader":12368,"insight":12369,"theaters":12370,"armour":12371,"emeritus":12372,"blink":12373,"incorporates":12374,"mapping":12375,"##50":12376,"##ein":12377,"handball":12378,"flexible":12379,"##nta":12380,"substantially":12381,"generous":12382,"thief":12383,"##own":12384,"carr":12385,"loses":12386,"1793":12387,"prose":12388,"ucla":12389,"romeo":12390,"generic":12391,"metallic":12392,"realization":12393,"damages":12394,"mk":12395,"commissioners":12396,"zach":12397,"default":12398,"##ther":12399,"helicopters":12400,"lengthy":12401,"stems":12402,"spa":12403,"partnered":12404,"spectators":12405,"rogue":12406,"indication":12407,"penalties":12408,"teresa":12409,"1801":12410,"sen":12411,"##tric":12412,"dalton":12413,"##wich":12414,"irving":12415,"photographic":12416,"##vey":12417,"dell":12418,"deaf":12419,"peters":12420,"excluded":12421,"unsure":12422,"##vable":12423,"patterson":12424,"crawled":12425,"##zio":12426,"resided":12427,"whipped":12428,"latvia":12429,"slower":12430,"ecole":12431,"pipes":12432,"employers":12433,"maharashtra":12434,"comparable":12435,"va":12436,"textile":12437,"pageant":12438,"##gel":12439,"alphabet":12440,"binary":12441,"irrigation":12442,"chartered":12443,"choked":12444,"antoine":12445,"offs":12446,"waking":12447,"supplement":12448,"##wen":12449,"quantities":12450,"demolition":12451,"regain":12452,"locate":12453,"urdu":12454,"folks":12455,"alt":12456,"114":12457,"##mc":12458,"scary":12459,"andreas":12460,"whites":12461,"##ava":12462,"classrooms":12463,"mw":12464,"aesthetic":12465,"publishes":12466,"valleys":12467,"guides":12468,"cubs":12469,"johannes":12470,"bryant":12471,"conventions":12472,"affecting":12473,"##itt":12474,"drain":12475,"awesome":12476,"isolation":12477,"prosecutor":12478,"ambitious":12479,"apology":12480,"captive":12481,"downs":12482,"atmospheric":12483,"lorenzo":12484,"aisle":12485,"beef":12486,"foul":12487,"##onia":12488,"kidding":12489,"composite":12490,"disturbed":12491,"illusion":12492,"natives":12493,"##ffer":12494,"emi":12495,"rockets":12496,"riverside":12497,"wartime":12498,"painters":12499,"adolf":12500,"melted":12501,"##ail":12502,"uncertainty":12503,"simulation":12504,"hawks":12505,"progressed":12506,"meantime":12507,"builder":12508,"spray":12509,"breach":12510,"unhappy":12511,"regina":12512,"russians":12513,"##urg":12514,"determining":12515,"##tation":12516,"tram":12517,"1806":12518,"##quin":12519,"aging":12520,"##12":12521,"1823":12522,"garion":12523,"rented":12524,"mister":12525,"diaz":12526,"terminated":12527,"clip":12528,"1817":12529,"depend":12530,"nervously":12531,"disco":12532,"owe":12533,"defenders":12534,"shiva":12535,"notorious":12536,"disbelief":12537,"shiny":12538,"worcester":12539,"##gation":12540,"##yr":12541,"trailing":12542,"undertook":12543,"islander":12544,"belarus":12545,"limitations":12546,"watershed":12547,"fuller":12548,"overlooking":12549,"utilized":12550,"raphael":12551,"1819":12552,"synthetic":12553,"breakdown":12554,"klein":12555,"##nate":12556,"moaned":12557,"memoir":12558,"lamb":12559,"practicing":12560,"##erly":12561,"cellular":12562,"arrows":12563,"exotic":12564,"##graphy":12565,"witches":12566,"117":12567,"charted":12568,"rey":12569,"hut":12570,"hierarchy":12571,"subdivision":12572,"freshwater":12573,"giuseppe":12574,"aloud":12575,"reyes":12576,"qatar":12577,"marty":12578,"sideways":12579,"utterly":12580,"sexually":12581,"jude":12582,"prayers":12583,"mccarthy":12584,"softball":12585,"blend":12586,"damien":12587,"##gging":12588,"##metric":12589,"wholly":12590,"erupted":12591,"lebanese":12592,"negro":12593,"revenues":12594,"tasted":12595,"comparative":12596,"teamed":12597,"transaction":12598,"labeled":12599,"maori":12600,"sovereignty":12601,"parkway":12602,"trauma":12603,"gran":12604,"malay":12605,"121":12606,"advancement":12607,"descendant":12608,"2020":12609,"buzz":12610,"salvation":12611,"inventory":12612,"symbolic":12613,"##making":12614,"antarctica":12615,"mps":12616,"##gas":12617,"##bro":12618,"mohammed":12619,"myanmar":12620,"holt":12621,"submarines":12622,"tones":12623,"##lman":12624,"locker":12625,"patriarch":12626,"bangkok":12627,"emerson":12628,"remarks":12629,"predators":12630,"kin":12631,"afghan":12632,"confession":12633,"norwich":12634,"rental":12635,"emerge":12636,"advantages":12637,"##zel":12638,"rca":12639,"##hold":12640,"shortened":12641,"storms":12642,"aidan":12643,"##matic":12644,"autonomy":12645,"compliance":12646,"##quet":12647,"dudley":12648,"atp":12649,"##osis":12650,"1803":12651,"motto":12652,"documentation":12653,"summary":12654,"professors":12655,"spectacular":12656,"christina":12657,"archdiocese":12658,"flashing":12659,"innocence":12660,"remake":12661,"##dell":12662,"psychic":12663,"reef":12664,"scare":12665,"employ":12666,"rs":12667,"sticks":12668,"meg":12669,"gus":12670,"leans":12671,"##ude":12672,"accompany":12673,"bergen":12674,"tomas":12675,"##iko":12676,"doom":12677,"wages":12678,"pools":12679,"##nch":12680,"##bes":12681,"breasts":12682,"scholarly":12683,"alison":12684,"outline":12685,"brittany":12686,"breakthrough":12687,"willis":12688,"realistic":12689,"##cut":12690,"##boro":12691,"competitor":12692,"##stan":12693,"pike":12694,"picnic":12695,"icon":12696,"designing":12697,"commercials":12698,"washing":12699,"villain":12700,"skiing":12701,"micro":12702,"costumes":12703,"auburn":12704,"halted":12705,"executives":12706,"##hat":12707,"logistics":12708,"cycles":12709,"vowel":12710,"applicable":12711,"barrett":12712,"exclaimed":12713,"eurovision":12714,"eternity":12715,"ramon":12716,"##umi":12717,"##lls":12718,"modifications":12719,"sweeping":12720,"disgust":12721,"##uck":12722,"torch":12723,"aviv":12724,"ensuring":12725,"rude":12726,"dusty":12727,"sonic":12728,"donovan":12729,"outskirts":12730,"cu":12731,"pathway":12732,"##band":12733,"##gun":12734,"##lines":12735,"disciplines":12736,"acids":12737,"cadet":12738,"paired":12739,"##40":12740,"sketches":12741,"##sive":12742,"marriages":12743,"##⁺":12744,"folding":12745,"peers":12746,"slovak":12747,"implies":12748,"admired":12749,"##beck":12750,"1880s":12751,"leopold":12752,"instinct":12753,"attained":12754,"weston":12755,"megan":12756,"horace":12757,"##ination":12758,"dorsal":12759,"ingredients":12760,"evolutionary":12761,"##its":12762,"complications":12763,"deity":12764,"lethal":12765,"brushing":12766,"levy":12767,"deserted":12768,"institutes":12769,"posthumously":12770,"delivering":12771,"telescope":12772,"coronation":12773,"motivated":12774,"rapids":12775,"luc":12776,"flicked":12777,"pays":12778,"volcano":12779,"tanner":12780,"weighed":12781,"##nica":12782,"crowds":12783,"frankie":12784,"gifted":12785,"addressing":12786,"granddaughter":12787,"winding":12788,"##rna":12789,"constantine":12790,"gomez":12791,"##front":12792,"landscapes":12793,"rudolf":12794,"anthropology":12795,"slate":12796,"werewolf":12797,"##lio":12798,"astronomy":12799,"circa":12800,"rouge":12801,"dreaming":12802,"sack":12803,"knelt":12804,"drowned":12805,"naomi":12806,"prolific":12807,"tracked":12808,"freezing":12809,"herb":12810,"##dium":12811,"agony":12812,"randall":12813,"twisting":12814,"wendy":12815,"deposit":12816,"touches":12817,"vein":12818,"wheeler":12819,"##bbled":12820,"##bor":12821,"batted":12822,"retaining":12823,"tire":12824,"presently":12825,"compare":12826,"specification":12827,"daemon":12828,"nigel":12829,"##grave":12830,"merry":12831,"recommendation":12832,"czechoslovakia":12833,"sandra":12834,"ng":12835,"roma":12836,"##sts":12837,"lambert":12838,"inheritance":12839,"sheikh":12840,"winchester":12841,"cries":12842,"examining":12843,"##yle":12844,"comeback":12845,"cuisine":12846,"nave":12847,"##iv":12848,"ko":12849,"retrieve":12850,"tomatoes":12851,"barker":12852,"polished":12853,"defining":12854,"irene":12855,"lantern":12856,"personalities":12857,"begging":12858,"tract":12859,"swore":12860,"1809":12861,"175":12862,"##gic":12863,"omaha":12864,"brotherhood":12865,"##rley":12866,"haiti":12867,"##ots":12868,"exeter":12869,"##ete":12870,"##zia":12871,"steele":12872,"dumb":12873,"pearson":12874,"210":12875,"surveyed":12876,"elisabeth":12877,"trends":12878,"##ef":12879,"fritz":12880,"##rf":12881,"premium":12882,"bugs":12883,"fraction":12884,"calmly":12885,"viking":12886,"##birds":12887,"tug":12888,"inserted":12889,"unusually":12890,"##ield":12891,"confronted":12892,"distress":12893,"crashing":12894,"brent":12895,"turks":12896,"resign":12897,"##olo":12898,"cambodia":12899,"gabe":12900,"sauce":12901,"##kal":12902,"evelyn":12903,"116":12904,"extant":12905,"clusters":12906,"quarry":12907,"teenagers":12908,"luna":12909,"##lers":12910,"##ister":12911,"affiliation":12912,"drill":12913,"##ashi":12914,"panthers":12915,"scenic":12916,"libya":12917,"anita":12918,"strengthen":12919,"inscriptions":12920,"##cated":12921,"lace":12922,"sued":12923,"judith":12924,"riots":12925,"##uted":12926,"mint":12927,"##eta":12928,"preparations":12929,"midst":12930,"dub":12931,"challenger":12932,"##vich":12933,"mock":12934,"cf":12935,"displaced":12936,"wicket":12937,"breaths":12938,"enables":12939,"schmidt":12940,"analyst":12941,"##lum":12942,"ag":12943,"highlight":12944,"automotive":12945,"axe":12946,"josef":12947,"newark":12948,"sufficiently":12949,"resembles":12950,"50th":12951,"##pal":12952,"flushed":12953,"mum":12954,"traits":12955,"##ante":12956,"commodore":12957,"incomplete":12958,"warming":12959,"titular":12960,"ceremonial":12961,"ethical":12962,"118":12963,"celebrating":12964,"eighteenth":12965,"cao":12966,"lima":12967,"medalist":12968,"mobility":12969,"strips":12970,"snakes":12971,"##city":12972,"miniature":12973,"zagreb":12974,"barton":12975,"escapes":12976,"umbrella":12977,"automated":12978,"doubted":12979,"differs":12980,"cooled":12981,"georgetown":12982,"dresden":12983,"cooked":12984,"fade":12985,"wyatt":12986,"rna":12987,"jacobs":12988,"carlton":12989,"abundant":12990,"stereo":12991,"boost":12992,"madras":12993,"inning":12994,"##hia":12995,"spur":12996,"ip":12997,"malayalam":12998,"begged":12999,"osaka":13000,"groan":13001,"escaping":13002,"charging":13003,"dose":13004,"vista":13005,"##aj":13006,"bud":13007,"papa":13008,"communists":13009,"advocates":13010,"edged":13011,"tri":13012,"##cent":13013,"resemble":13014,"peaking":13015,"necklace":13016,"fried":13017,"montenegro":13018,"saxony":13019,"goose":13020,"glances":13021,"stuttgart":13022,"curator":13023,"recruit":13024,"grocery":13025,"sympathetic":13026,"##tting":13027,"##fort":13028,"127":13029,"lotus":13030,"randolph":13031,"ancestor":13032,"##rand":13033,"succeeding":13034,"jupiter":13035,"1798":13036,"macedonian":13037,"##heads":13038,"hiking":13039,"1808":13040,"handing":13041,"fischer":13042,"##itive":13043,"garbage":13044,"node":13045,"##pies":13046,"prone":13047,"singular":13048,"papua":13049,"inclined":13050,"attractions":13051,"italia":13052,"pouring":13053,"motioned":13054,"grandma":13055,"garnered":13056,"jacksonville":13057,"corp":13058,"ego":13059,"ringing":13060,"aluminum":13061,"##hausen":13062,"ordering":13063,"##foot":13064,"drawer":13065,"traders":13066,"synagogue":13067,"##play":13068,"##kawa":13069,"resistant":13070,"wandering":13071,"fragile":13072,"fiona":13073,"teased":13074,"var":13075,"hardcore":13076,"soaked":13077,"jubilee":13078,"decisive":13079,"exposition":13080,"mercer":13081,"poster":13082,"valencia":13083,"hale":13084,"kuwait":13085,"1811":13086,"##ises":13087,"##wr":13088,"##eed":13089,"tavern":13090,"gamma":13091,"122":13092,"johan":13093,"##uer":13094,"airways":13095,"amino":13096,"gil":13097,"##ury":13098,"vocational":13099,"domains":13100,"torres":13101,"##sp":13102,"generator":13103,"folklore":13104,"outcomes":13105,"##keeper":13106,"canberra":13107,"shooter":13108,"fl":13109,"beams":13110,"confrontation":13111,"##lling":13112,"##gram":13113,"feb":13114,"aligned":13115,"forestry":13116,"pipeline":13117,"jax":13118,"motorway":13119,"conception":13120,"decay":13121,"##tos":13122,"coffin":13123,"##cott":13124,"stalin":13125,"1805":13126,"escorted":13127,"minded":13128,"##nam":13129,"sitcom":13130,"purchasing":13131,"twilight":13132,"veronica":13133,"additions":13134,"passive":13135,"tensions":13136,"straw":13137,"123":13138,"frequencies":13139,"1804":13140,"refugee":13141,"cultivation":13142,"##iate":13143,"christie":13144,"clary":13145,"bulletin":13146,"crept":13147,"disposal":13148,"##rich":13149,"##zong":13150,"processor":13151,"crescent":13152,"##rol":13153,"bmw":13154,"emphasized":13155,"whale":13156,"nazis":13157,"aurora":13158,"##eng":13159,"dwelling":13160,"hauled":13161,"sponsors":13162,"toledo":13163,"mega":13164,"ideology":13165,"theatres":13166,"tessa":13167,"cerambycidae":13168,"saves":13169,"turtle":13170,"cone":13171,"suspects":13172,"kara":13173,"rusty":13174,"yelling":13175,"greeks":13176,"mozart":13177,"shades":13178,"cocked":13179,"participant":13180,"##tro":13181,"shire":13182,"spit":13183,"freeze":13184,"necessity":13185,"##cos":13186,"inmates":13187,"nielsen":13188,"councillors":13189,"loaned":13190,"uncommon":13191,"omar":13192,"peasants":13193,"botanical":13194,"offspring":13195,"daniels":13196,"formations":13197,"jokes":13198,"1794":13199,"pioneers":13200,"sigma":13201,"licensing":13202,"##sus":13203,"wheelchair":13204,"polite":13205,"1807":13206,"liquor":13207,"pratt":13208,"trustee":13209,"##uta":13210,"forewings":13211,"balloon":13212,"##zz":13213,"kilometre":13214,"camping":13215,"explicit":13216,"casually":13217,"shawn":13218,"foolish":13219,"teammates":13220,"nm":13221,"hassan":13222,"carrie":13223,"judged":13224,"satisfy":13225,"vanessa":13226,"knives":13227,"selective":13228,"cnn":13229,"flowed":13230,"##lice":13231,"eclipse":13232,"stressed":13233,"eliza":13234,"mathematician":13235,"cease":13236,"cultivated":13237,"##roy":13238,"commissions":13239,"browns":13240,"##ania":13241,"destroyers":13242,"sheridan":13243,"meadow":13244,"##rius":13245,"minerals":13246,"##cial":13247,"downstream":13248,"clash":13249,"gram":13250,"memoirs":13251,"ventures":13252,"baha":13253,"seymour":13254,"archie":13255,"midlands":13256,"edith":13257,"fare":13258,"flynn":13259,"invite":13260,"canceled":13261,"tiles":13262,"stabbed":13263,"boulder":13264,"incorporate":13265,"amended":13266,"camden":13267,"facial":13268,"mollusk":13269,"unreleased":13270,"descriptions":13271,"yoga":13272,"grabs":13273,"550":13274,"raises":13275,"ramp":13276,"shiver":13277,"##rose":13278,"coined":13279,"pioneering":13280,"tunes":13281,"qing":13282,"warwick":13283,"tops":13284,"119":13285,"melanie":13286,"giles":13287,"##rous":13288,"wandered":13289,"##inal":13290,"annexed":13291,"nov":13292,"30th":13293,"unnamed":13294,"##ished":13295,"organizational":13296,"airplane":13297,"normandy":13298,"stoke":13299,"whistle":13300,"blessing":13301,"violations":13302,"chased":13303,"holders":13304,"shotgun":13305,"##ctic":13306,"outlet":13307,"reactor":13308,"##vik":13309,"tires":13310,"tearing":13311,"shores":13312,"fortified":13313,"mascot":13314,"constituencies":13315,"nc":13316,"columnist":13317,"productive":13318,"tibet":13319,"##rta":13320,"lineage":13321,"hooked":13322,"oct":13323,"tapes":13324,"judging":13325,"cody":13326,"##gger":13327,"hansen":13328,"kashmir":13329,"triggered":13330,"##eva":13331,"solved":13332,"cliffs":13333,"##tree":13334,"resisted":13335,"anatomy":13336,"protesters":13337,"transparent":13338,"implied":13339,"##iga":13340,"injection":13341,"mattress":13342,"excluding":13343,"##mbo":13344,"defenses":13345,"helpless":13346,"devotion":13347,"##elli":13348,"growl":13349,"liberals":13350,"weber":13351,"phenomena":13352,"atoms":13353,"plug":13354,"##iff":13355,"mortality":13356,"apprentice":13357,"howe":13358,"convincing":13359,"aaa":13360,"swimmer":13361,"barber":13362,"leone":13363,"promptly":13364,"sodium":13365,"def":13366,"nowadays":13367,"arise":13368,"##oning":13369,"gloucester":13370,"corrected":13371,"dignity":13372,"norm":13373,"erie":13374,"##ders":13375,"elders":13376,"evacuated":13377,"sylvia":13378,"compression":13379,"##yar":13380,"hartford":13381,"pose":13382,"backpack":13383,"reasoning":13384,"accepts":13385,"24th":13386,"wipe":13387,"millimetres":13388,"marcel":13389,"##oda":13390,"dodgers":13391,"albion":13392,"1790":13393,"overwhelmed":13394,"aerospace":13395,"oaks":13396,"1795":13397,"showcase":13398,"acknowledge":13399,"recovering":13400,"nolan":13401,"ashe":13402,"hurts":13403,"geology":13404,"fashioned":13405,"disappearance":13406,"farewell":13407,"swollen":13408,"shrug":13409,"marquis":13410,"wimbledon":13411,"124":13412,"rue":13413,"1792":13414,"commemorate":13415,"reduces":13416,"experiencing":13417,"inevitable":13418,"calcutta":13419,"intel":13420,"##court":13421,"murderer":13422,"sticking":13423,"fisheries":13424,"imagery":13425,"bloom":13426,"280":13427,"brake":13428,"##inus":13429,"gustav":13430,"hesitation":13431,"memorable":13432,"po":13433,"viral":13434,"beans":13435,"accidents":13436,"tunisia":13437,"antenna":13438,"spilled":13439,"consort":13440,"treatments":13441,"aye":13442,"perimeter":13443,"##gard":13444,"donation":13445,"hostage":13446,"migrated":13447,"banker":13448,"addiction":13449,"apex":13450,"lil":13451,"trout":13452,"##ously":13453,"conscience":13454,"##nova":13455,"rams":13456,"sands":13457,"genome":13458,"passionate":13459,"troubles":13460,"##lets":13461,"##set":13462,"amid":13463,"##ibility":13464,"##ret":13465,"higgins":13466,"exceed":13467,"vikings":13468,"##vie":13469,"payne":13470,"##zan":13471,"muscular":13472,"##ste":13473,"defendant":13474,"sucking":13475,"##wal":13476,"ibrahim":13477,"fuselage":13478,"claudia":13479,"vfl":13480,"europeans":13481,"snails":13482,"interval":13483,"##garh":13484,"preparatory":13485,"statewide":13486,"tasked":13487,"lacrosse":13488,"viktor":13489,"##lation":13490,"angola":13491,"##hra":13492,"flint":13493,"implications":13494,"employs":13495,"teens":13496,"patrons":13497,"stall":13498,"weekends":13499,"barriers":13500,"scrambled":13501,"nucleus":13502,"tehran":13503,"jenna":13504,"parsons":13505,"lifelong":13506,"robots":13507,"displacement":13508,"5000":13509,"##bles":13510,"precipitation":13511,"##gt":13512,"knuckles":13513,"clutched":13514,"1802":13515,"marrying":13516,"ecology":13517,"marx":13518,"accusations":13519,"declare":13520,"scars":13521,"kolkata":13522,"mat":13523,"meadows":13524,"bermuda":13525,"skeleton":13526,"finalists":13527,"vintage":13528,"crawl":13529,"coordinate":13530,"affects":13531,"subjected":13532,"orchestral":13533,"mistaken":13534,"##tc":13535,"mirrors":13536,"dipped":13537,"relied":13538,"260":13539,"arches":13540,"candle":13541,"##nick":13542,"incorporating":13543,"wildly":13544,"fond":13545,"basilica":13546,"owl":13547,"fringe":13548,"rituals":13549,"whispering":13550,"stirred":13551,"feud":13552,"tertiary":13553,"slick":13554,"goat":13555,"honorable":13556,"whereby":13557,"skip":13558,"ricardo":13559,"stripes":13560,"parachute":13561,"adjoining":13562,"submerged":13563,"synthesizer":13564,"##gren":13565,"intend":13566,"positively":13567,"ninety":13568,"phi":13569,"beaver":13570,"partition":13571,"fellows":13572,"alexis":13573,"prohibition":13574,"carlisle":13575,"bizarre":13576,"fraternity":13577,"##bre":13578,"doubts":13579,"icy":13580,"cbc":13581,"aquatic":13582,"sneak":13583,"sonny":13584,"combines":13585,"airports":13586,"crude":13587,"supervised":13588,"spatial":13589,"merge":13590,"alfonso":13591,"##bic":13592,"corrupt":13593,"scan":13594,"undergo":13595,"##ams":13596,"disabilities":13597,"colombian":13598,"comparing":13599,"dolphins":13600,"perkins":13601,"##lish":13602,"reprinted":13603,"unanimous":13604,"bounced":13605,"hairs":13606,"underworld":13607,"midwest":13608,"semester":13609,"bucket":13610,"paperback":13611,"miniseries":13612,"coventry":13613,"demise":13614,"##leigh":13615,"demonstrations":13616,"sensor":13617,"rotating":13618,"yan":13619,"##hler":13620,"arrange":13621,"soils":13622,"##idge":13623,"hyderabad":13624,"labs":13625,"##dr":13626,"brakes":13627,"grandchildren":13628,"##nde":13629,"negotiated":13630,"rover":13631,"ferrari":13632,"continuation":13633,"directorate":13634,"augusta":13635,"stevenson":13636,"counterpart":13637,"gore":13638,"##rda":13639,"nursery":13640,"rican":13641,"ave":13642,"collectively":13643,"broadly":13644,"pastoral":13645,"repertoire":13646,"asserted":13647,"discovering":13648,"nordic":13649,"styled":13650,"fiba":13651,"cunningham":13652,"harley":13653,"middlesex":13654,"survives":13655,"tumor":13656,"tempo":13657,"zack":13658,"aiming":13659,"lok":13660,"urgent":13661,"##rade":13662,"##nto":13663,"devils":13664,"##ement":13665,"contractor":13666,"turin":13667,"##wl":13668,"##ool":13669,"bliss":13670,"repaired":13671,"simmons":13672,"moan":13673,"astronomical":13674,"cr":13675,"negotiate":13676,"lyric":13677,"1890s":13678,"lara":13679,"bred":13680,"clad":13681,"angus":13682,"pbs":13683,"##ience":13684,"engineered":13685,"posed":13686,"##lk":13687,"hernandez":13688,"possessions":13689,"elbows":13690,"psychiatric":13691,"strokes":13692,"confluence":13693,"electorate":13694,"lifts":13695,"campuses":13696,"lava":13697,"alps":13698,"##ep":13699,"##ution":13700,"##date":13701,"physicist":13702,"woody":13703,"##page":13704,"##ographic":13705,"##itis":13706,"juliet":13707,"reformation":13708,"sparhawk":13709,"320":13710,"complement":13711,"suppressed":13712,"jewel":13713,"##½":13714,"floated":13715,"##kas":13716,"continuity":13717,"sadly":13718,"##ische":13719,"inability":13720,"melting":13721,"scanning":13722,"paula":13723,"flour":13724,"judaism":13725,"safer":13726,"vague":13727,"##lm":13728,"solving":13729,"curb":13730,"##stown":13731,"financially":13732,"gable":13733,"bees":13734,"expired":13735,"miserable":13736,"cassidy":13737,"dominion":13738,"1789":13739,"cupped":13740,"145":13741,"robbery":13742,"facto":13743,"amos":13744,"warden":13745,"resume":13746,"tallest":13747,"marvin":13748,"ing":13749,"pounded":13750,"usd":13751,"declaring":13752,"gasoline":13753,"##aux":13754,"darkened":13755,"270":13756,"650":13757,"sophomore":13758,"##mere":13759,"erection":13760,"gossip":13761,"televised":13762,"risen":13763,"dial":13764,"##eu":13765,"pillars":13766,"##link":13767,"passages":13768,"profound":13769,"##tina":13770,"arabian":13771,"ashton":13772,"silicon":13773,"nail":13774,"##ead":13775,"##lated":13776,"##wer":13777,"##hardt":13778,"fleming":13779,"firearms":13780,"ducked":13781,"circuits":13782,"blows":13783,"waterloo":13784,"titans":13785,"##lina":13786,"atom":13787,"fireplace":13788,"cheshire":13789,"financed":13790,"activation":13791,"algorithms":13792,"##zzi":13793,"constituent":13794,"catcher":13795,"cherokee":13796,"partnerships":13797,"sexuality":13798,"platoon":13799,"tragic":13800,"vivian":13801,"guarded":13802,"whiskey":13803,"meditation":13804,"poetic":13805,"##late":13806,"##nga":13807,"##ake":13808,"porto":13809,"listeners":13810,"dominance":13811,"kendra":13812,"mona":13813,"chandler":13814,"factions":13815,"22nd":13816,"salisbury":13817,"attitudes":13818,"derivative":13819,"##ido":13820,"##haus":13821,"intake":13822,"paced":13823,"javier":13824,"illustrator":13825,"barrels":13826,"bias":13827,"cockpit":13828,"burnett":13829,"dreamed":13830,"ensuing":13831,"##anda":13832,"receptors":13833,"someday":13834,"hawkins":13835,"mattered":13836,"##lal":13837,"slavic":13838,"1799":13839,"jesuit":13840,"cameroon":13841,"wasted":13842,"tai":13843,"wax":13844,"lowering":13845,"victorious":13846,"freaking":13847,"outright":13848,"hancock":13849,"librarian":13850,"sensing":13851,"bald":13852,"calcium":13853,"myers":13854,"tablet":13855,"announcing":13856,"barack":13857,"shipyard":13858,"pharmaceutical":13859,"##uan":13860,"greenwich":13861,"flush":13862,"medley":13863,"patches":13864,"wolfgang":13865,"pt":13866,"speeches":13867,"acquiring":13868,"exams":13869,"nikolai":13870,"##gg":13871,"hayden":13872,"kannada":13873,"##type":13874,"reilly":13875,"##pt":13876,"waitress":13877,"abdomen":13878,"devastated":13879,"capped":13880,"pseudonym":13881,"pharmacy":13882,"fulfill":13883,"paraguay":13884,"1796":13885,"clicked":13886,"##trom":13887,"archipelago":13888,"syndicated":13889,"##hman":13890,"lumber":13891,"orgasm":13892,"rejection":13893,"clifford":13894,"lorraine":13895,"advent":13896,"mafia":13897,"rodney":13898,"brock":13899,"##ght":13900,"##used":13901,"##elia":13902,"cassette":13903,"chamberlain":13904,"despair":13905,"mongolia":13906,"sensors":13907,"developmental":13908,"upstream":13909,"##eg":13910,"##alis":13911,"spanning":13912,"165":13913,"trombone":13914,"basque":13915,"seeded":13916,"interred":13917,"renewable":13918,"rhys":13919,"leapt":13920,"revision":13921,"molecule":13922,"##ages":13923,"chord":13924,"vicious":13925,"nord":13926,"shivered":13927,"23rd":13928,"arlington":13929,"debts":13930,"corpus":13931,"sunrise":13932,"bays":13933,"blackburn":13934,"centimetres":13935,"##uded":13936,"shuddered":13937,"gm":13938,"strangely":13939,"gripping":13940,"cartoons":13941,"isabelle":13942,"orbital":13943,"##ppa":13944,"seals":13945,"proving":13946,"##lton":13947,"refusal":13948,"strengthened":13949,"bust":13950,"assisting":13951,"baghdad":13952,"batsman":13953,"portrayal":13954,"mara":13955,"pushes":13956,"spears":13957,"og":13958,"##cock":13959,"reside":13960,"nathaniel":13961,"brennan":13962,"1776":13963,"confirmation":13964,"caucus":13965,"##worthy":13966,"markings":13967,"yemen":13968,"nobles":13969,"ku":13970,"lazy":13971,"viewer":13972,"catalan":13973,"encompasses":13974,"sawyer":13975,"##fall":13976,"sparked":13977,"substances":13978,"patents":13979,"braves":13980,"arranger":13981,"evacuation":13982,"sergio":13983,"persuade":13984,"dover":13985,"tolerance":13986,"penguin":13987,"cum":13988,"jockey":13989,"insufficient":13990,"townships":13991,"occupying":13992,"declining":13993,"plural":13994,"processed":13995,"projection":13996,"puppet":13997,"flanders":13998,"introduces":13999,"liability":14000,"##yon":14001,"gymnastics":14002,"antwerp":14003,"taipei":14004,"hobart":14005,"candles":14006,"jeep":14007,"wes":14008,"observers":14009,"126":14010,"chaplain":14011,"bundle":14012,"glorious":14013,"##hine":14014,"hazel":14015,"flung":14016,"sol":14017,"excavations":14018,"dumped":14019,"stares":14020,"sh":14021,"bangalore":14022,"triangular":14023,"icelandic":14024,"intervals":14025,"expressing":14026,"turbine":14027,"##vers":14028,"songwriting":14029,"crafts":14030,"##igo":14031,"jasmine":14032,"ditch":14033,"rite":14034,"##ways":14035,"entertaining":14036,"comply":14037,"sorrow":14038,"wrestlers":14039,"basel":14040,"emirates":14041,"marian":14042,"rivera":14043,"helpful":14044,"##some":14045,"caution":14046,"downward":14047,"networking":14048,"##atory":14049,"##tered":14050,"darted":14051,"genocide":14052,"emergence":14053,"replies":14054,"specializing":14055,"spokesman":14056,"convenient":14057,"unlocked":14058,"fading":14059,"augustine":14060,"concentrations":14061,"resemblance":14062,"elijah":14063,"investigator":14064,"andhra":14065,"##uda":14066,"promotes":14067,"bean":14068,"##rrell":14069,"fleeing":14070,"wan":14071,"simone":14072,"announcer":14073,"##ame":14074,"##bby":14075,"lydia":14076,"weaver":14077,"132":14078,"residency":14079,"modification":14080,"##fest":14081,"stretches":14082,"##ast":14083,"alternatively":14084,"nat":14085,"lowe":14086,"lacks":14087,"##ented":14088,"pam":14089,"tile":14090,"concealed":14091,"inferior":14092,"abdullah":14093,"residences":14094,"tissues":14095,"vengeance":14096,"##ided":14097,"moisture":14098,"peculiar":14099,"groove":14100,"zip":14101,"bologna":14102,"jennings":14103,"ninja":14104,"oversaw":14105,"zombies":14106,"pumping":14107,"batch":14108,"livingston":14109,"emerald":14110,"installations":14111,"1797":14112,"peel":14113,"nitrogen":14114,"rama":14115,"##fying":14116,"##star":14117,"schooling":14118,"strands":14119,"responding":14120,"werner":14121,"##ost":14122,"lime":14123,"casa":14124,"accurately":14125,"targeting":14126,"##rod":14127,"underway":14128,"##uru":14129,"hemisphere":14130,"lester":14131,"##yard":14132,"occupies":14133,"2d":14134,"griffith":14135,"angrily":14136,"reorganized":14137,"##owing":14138,"courtney":14139,"deposited":14140,"##dd":14141,"##30":14142,"estadio":14143,"##ifies":14144,"dunn":14145,"exiled":14146,"##ying":14147,"checks":14148,"##combe":14149,"##о":14150,"##fly":14151,"successes":14152,"unexpectedly":14153,"blu":14154,"assessed":14155,"##flower":14156,"##ه":14157,"observing":14158,"sacked":14159,"spiders":14160,"kn":14161,"##tail":14162,"mu":14163,"nodes":14164,"prosperity":14165,"audrey":14166,"divisional":14167,"155":14168,"broncos":14169,"tangled":14170,"adjust":14171,"feeds":14172,"erosion":14173,"paolo":14174,"surf":14175,"directory":14176,"snatched":14177,"humid":14178,"admiralty":14179,"screwed":14180,"gt":14181,"reddish":14182,"##nese":14183,"modules":14184,"trench":14185,"lamps":14186,"bind":14187,"leah":14188,"bucks":14189,"competes":14190,"##nz":14191,"##form":14192,"transcription":14193,"##uc":14194,"isles":14195,"violently":14196,"clutching":14197,"pga":14198,"cyclist":14199,"inflation":14200,"flats":14201,"ragged":14202,"unnecessary":14203,"##hian":14204,"stubborn":14205,"coordinated":14206,"harriet":14207,"baba":14208,"disqualified":14209,"330":14210,"insect":14211,"wolfe":14212,"##fies":14213,"reinforcements":14214,"rocked":14215,"duel":14216,"winked":14217,"embraced":14218,"bricks":14219,"##raj":14220,"hiatus":14221,"defeats":14222,"pending":14223,"brightly":14224,"jealousy":14225,"##xton":14226,"##hm":14227,"##uki":14228,"lena":14229,"gdp":14230,"colorful":14231,"##dley":14232,"stein":14233,"kidney":14234,"##shu":14235,"underwear":14236,"wanderers":14237,"##haw":14238,"##icus":14239,"guardians":14240,"m³":14241,"roared":14242,"habits":14243,"##wise":14244,"permits":14245,"gp":14246,"uranium":14247,"punished":14248,"disguise":14249,"bundesliga":14250,"elise":14251,"dundee":14252,"erotic":14253,"partisan":14254,"pi":14255,"collectors":14256,"float":14257,"individually":14258,"rendering":14259,"behavioral":14260,"bucharest":14261,"ser":14262,"hare":14263,"valerie":14264,"corporal":14265,"nutrition":14266,"proportional":14267,"##isa":14268,"immense":14269,"##kis":14270,"pavement":14271,"##zie":14272,"##eld":14273,"sutherland":14274,"crouched":14275,"1775":14276,"##lp":14277,"suzuki":14278,"trades":14279,"endurance":14280,"operas":14281,"crosby":14282,"prayed":14283,"priory":14284,"rory":14285,"socially":14286,"##urn":14287,"gujarat":14288,"##pu":14289,"walton":14290,"cube":14291,"pasha":14292,"privilege":14293,"lennon":14294,"floods":14295,"thorne":14296,"waterfall":14297,"nipple":14298,"scouting":14299,"approve":14300,"##lov":14301,"minorities":14302,"voter":14303,"dwight":14304,"extensions":14305,"assure":14306,"ballroom":14307,"slap":14308,"dripping":14309,"privileges":14310,"rejoined":14311,"confessed":14312,"demonstrating":14313,"patriotic":14314,"yell":14315,"investor":14316,"##uth":14317,"pagan":14318,"slumped":14319,"squares":14320,"##cle":14321,"##kins":14322,"confront":14323,"bert":14324,"embarrassment":14325,"##aid":14326,"aston":14327,"urging":14328,"sweater":14329,"starr":14330,"yuri":14331,"brains":14332,"williamson":14333,"commuter":14334,"mortar":14335,"structured":14336,"selfish":14337,"exports":14338,"##jon":14339,"cds":14340,"##him":14341,"unfinished":14342,"##rre":14343,"mortgage":14344,"destinations":14345,"##nagar":14346,"canoe":14347,"solitary":14348,"buchanan":14349,"delays":14350,"magistrate":14351,"fk":14352,"##pling":14353,"motivation":14354,"##lier":14355,"##vier":14356,"recruiting":14357,"assess":14358,"##mouth":14359,"malik":14360,"antique":14361,"1791":14362,"pius":14363,"rahman":14364,"reich":14365,"tub":14366,"zhou":14367,"smashed":14368,"airs":14369,"galway":14370,"xii":14371,"conditioning":14372,"honduras":14373,"discharged":14374,"dexter":14375,"##pf":14376,"lionel":14377,"129":14378,"debates":14379,"lemon":14380,"tiffany":14381,"volunteered":14382,"dom":14383,"dioxide":14384,"procession":14385,"devi":14386,"sic":14387,"tremendous":14388,"advertisements":14389,"colts":14390,"transferring":14391,"verdict":14392,"hanover":14393,"decommissioned":14394,"utter":14395,"relate":14396,"pac":14397,"racism":14398,"##top":14399,"beacon":14400,"limp":14401,"similarity":14402,"terra":14403,"occurrence":14404,"ant":14405,"##how":14406,"becky":14407,"capt":14408,"updates":14409,"armament":14410,"richie":14411,"pal":14412,"##graph":14413,"halloween":14414,"mayo":14415,"##ssen":14416,"##bone":14417,"cara":14418,"serena":14419,"fcc":14420,"dolls":14421,"obligations":14422,"##dling":14423,"violated":14424,"lafayette":14425,"jakarta":14426,"exploitation":14427,"##ime":14428,"infamous":14429,"iconic":14430,"##lah":14431,"##park":14432,"kitty":14433,"moody":14434,"reginald":14435,"dread":14436,"spill":14437,"crystals":14438,"olivier":14439,"modeled":14440,"bluff":14441,"equilibrium":14442,"separating":14443,"notices":14444,"ordnance":14445,"extinction":14446,"onset":14447,"cosmic":14448,"attachment":14449,"sammy":14450,"expose":14451,"privy":14452,"anchored":14453,"##bil":14454,"abbott":14455,"admits":14456,"bending":14457,"baritone":14458,"emmanuel":14459,"policeman":14460,"vaughan":14461,"winged":14462,"climax":14463,"dresses":14464,"denny":14465,"polytechnic":14466,"mohamed":14467,"burmese":14468,"authentic":14469,"nikki":14470,"genetics":14471,"grandparents":14472,"homestead":14473,"gaza":14474,"postponed":14475,"metacritic":14476,"una":14477,"##sby":14478,"##bat":14479,"unstable":14480,"dissertation":14481,"##rial":14482,"##cian":14483,"curls":14484,"obscure":14485,"uncovered":14486,"bronx":14487,"praying":14488,"disappearing":14489,"##hoe":14490,"prehistoric":14491,"coke":14492,"turret":14493,"mutations":14494,"nonprofit":14495,"pits":14496,"monaco":14497,"##ي":14498,"##usion":14499,"prominently":14500,"dispatched":14501,"podium":14502,"##mir":14503,"uci":14504,"##uation":14505,"133":14506,"fortifications":14507,"birthplace":14508,"kendall":14509,"##lby":14510,"##oll":14511,"preacher":14512,"rack":14513,"goodman":14514,"##rman":14515,"persistent":14516,"##ott":14517,"countless":14518,"jaime":14519,"recorder":14520,"lexington":14521,"persecution":14522,"jumps":14523,"renewal":14524,"wagons":14525,"##11":14526,"crushing":14527,"##holder":14528,"decorations":14529,"##lake":14530,"abundance":14531,"wrath":14532,"laundry":14533,"£1":14534,"garde":14535,"##rp":14536,"jeanne":14537,"beetles":14538,"peasant":14539,"##sl":14540,"splitting":14541,"caste":14542,"sergei":14543,"##rer":14544,"##ema":14545,"scripts":14546,"##ively":14547,"rub":14548,"satellites":14549,"##vor":14550,"inscribed":14551,"verlag":14552,"scrapped":14553,"gale":14554,"packages":14555,"chick":14556,"potato":14557,"slogan":14558,"kathleen":14559,"arabs":14560,"##culture":14561,"counterparts":14562,"reminiscent":14563,"choral":14564,"##tead":14565,"rand":14566,"retains":14567,"bushes":14568,"dane":14569,"accomplish":14570,"courtesy":14571,"closes":14572,"##oth":14573,"slaughter":14574,"hague":14575,"krakow":14576,"lawson":14577,"tailed":14578,"elias":14579,"ginger":14580,"##ttes":14581,"canopy":14582,"betrayal":14583,"rebuilding":14584,"turf":14585,"##hof":14586,"frowning":14587,"allegiance":14588,"brigades":14589,"kicks":14590,"rebuild":14591,"polls":14592,"alias":14593,"nationalism":14594,"td":14595,"rowan":14596,"audition":14597,"bowie":14598,"fortunately":14599,"recognizes":14600,"harp":14601,"dillon":14602,"horrified":14603,"##oro":14604,"renault":14605,"##tics":14606,"ropes":14607,"##α":14608,"presumed":14609,"rewarded":14610,"infrared":14611,"wiping":14612,"accelerated":14613,"illustration":14614,"##rid":14615,"presses":14616,"practitioners":14617,"badminton":14618,"##iard":14619,"detained":14620,"##tera":14621,"recognizing":14622,"relates":14623,"misery":14624,"##sies":14625,"##tly":14626,"reproduction":14627,"piercing":14628,"potatoes":14629,"thornton":14630,"esther":14631,"manners":14632,"hbo":14633,"##aan":14634,"ours":14635,"bullshit":14636,"ernie":14637,"perennial":14638,"sensitivity":14639,"illuminated":14640,"rupert":14641,"##jin":14642,"##iss":14643,"##ear":14644,"rfc":14645,"nassau":14646,"##dock":14647,"staggered":14648,"socialism":14649,"##haven":14650,"appointments":14651,"nonsense":14652,"prestige":14653,"sharma":14654,"haul":14655,"##tical":14656,"solidarity":14657,"gps":14658,"##ook":14659,"##rata":14660,"igor":14661,"pedestrian":14662,"##uit":14663,"baxter":14664,"tenants":14665,"wires":14666,"medication":14667,"unlimited":14668,"guiding":14669,"impacts":14670,"diabetes":14671,"##rama":14672,"sasha":14673,"pas":14674,"clive":14675,"extraction":14676,"131":14677,"continually":14678,"constraints":14679,"##bilities":14680,"sonata":14681,"hunted":14682,"sixteenth":14683,"chu":14684,"planting":14685,"quote":14686,"mayer":14687,"pretended":14688,"abs":14689,"spat":14690,"##hua":14691,"ceramic":14692,"##cci":14693,"curtains":14694,"pigs":14695,"pitching":14696,"##dad":14697,"latvian":14698,"sore":14699,"dayton":14700,"##sted":14701,"##qi":14702,"patrols":14703,"slice":14704,"playground":14705,"##nted":14706,"shone":14707,"stool":14708,"apparatus":14709,"inadequate":14710,"mates":14711,"treason":14712,"##ija":14713,"desires":14714,"##liga":14715,"##croft":14716,"somalia":14717,"laurent":14718,"mir":14719,"leonardo":14720,"oracle":14721,"grape":14722,"obliged":14723,"chevrolet":14724,"thirteenth":14725,"stunning":14726,"enthusiastic":14727,"##ede":14728,"accounted":14729,"concludes":14730,"currents":14731,"basil":14732,"##kovic":14733,"drought":14734,"##rica":14735,"mai":14736,"##aire":14737,"shove":14738,"posting":14739,"##shed":14740,"pilgrimage":14741,"humorous":14742,"packing":14743,"fry":14744,"pencil":14745,"wines":14746,"smells":14747,"144":14748,"marilyn":14749,"aching":14750,"newest":14751,"clung":14752,"bon":14753,"neighbours":14754,"sanctioned":14755,"##pie":14756,"mug":14757,"##stock":14758,"drowning":14759,"##mma":14760,"hydraulic":14761,"##vil":14762,"hiring":14763,"reminder":14764,"lilly":14765,"investigators":14766,"##ncies":14767,"sour":14768,"##eous":14769,"compulsory":14770,"packet":14771,"##rion":14772,"##graphic":14773,"##elle":14774,"cannes":14775,"##inate":14776,"depressed":14777,"##rit":14778,"heroic":14779,"importantly":14780,"theresa":14781,"##tled":14782,"conway":14783,"saturn":14784,"marginal":14785,"rae":14786,"##xia":14787,"corresponds":14788,"royce":14789,"pact":14790,"jasper":14791,"explosives":14792,"packaging":14793,"aluminium":14794,"##ttered":14795,"denotes":14796,"rhythmic":14797,"spans":14798,"assignments":14799,"hereditary":14800,"outlined":14801,"originating":14802,"sundays":14803,"lad":14804,"reissued":14805,"greeting":14806,"beatrice":14807,"##dic":14808,"pillar":14809,"marcos":14810,"plots":14811,"handbook":14812,"alcoholic":14813,"judiciary":14814,"avant":14815,"slides":14816,"extract":14817,"masculine":14818,"blur":14819,"##eum":14820,"##force":14821,"homage":14822,"trembled":14823,"owens":14824,"hymn":14825,"trey":14826,"omega":14827,"signaling":14828,"socks":14829,"accumulated":14830,"reacted":14831,"attic":14832,"theo":14833,"lining":14834,"angie":14835,"distraction":14836,"primera":14837,"talbot":14838,"##key":14839,"1200":14840,"ti":14841,"creativity":14842,"billed":14843,"##hey":14844,"deacon":14845,"eduardo":14846,"identifies":14847,"proposition":14848,"dizzy":14849,"gunner":14850,"hogan":14851,"##yam":14852,"##pping":14853,"##hol":14854,"ja":14855,"##chan":14856,"jensen":14857,"reconstructed":14858,"##berger":14859,"clearance":14860,"darius":14861,"##nier":14862,"abe":14863,"harlem":14864,"plea":14865,"dei":14866,"circled":14867,"emotionally":14868,"notation":14869,"fascist":14870,"neville":14871,"exceeded":14872,"upwards":14873,"viable":14874,"ducks":14875,"##fo":14876,"workforce":14877,"racer":14878,"limiting":14879,"shri":14880,"##lson":14881,"possesses":14882,"1600":14883,"kerr":14884,"moths":14885,"devastating":14886,"laden":14887,"disturbing":14888,"locking":14889,"##cture":14890,"gal":14891,"fearing":14892,"accreditation":14893,"flavor":14894,"aide":14895,"1870s":14896,"mountainous":14897,"##baum":14898,"melt":14899,"##ures":14900,"motel":14901,"texture":14902,"servers":14903,"soda":14904,"##mb":14905,"herd":14906,"##nium":14907,"erect":14908,"puzzled":14909,"hum":14910,"peggy":14911,"examinations":14912,"gould":14913,"testified":14914,"geoff":14915,"ren":14916,"devised":14917,"sacks":14918,"##law":14919,"denial":14920,"posters":14921,"grunted":14922,"cesar":14923,"tutor":14924,"ec":14925,"gerry":14926,"offerings":14927,"byrne":14928,"falcons":14929,"combinations":14930,"ct":14931,"incoming":14932,"pardon":14933,"rocking":14934,"26th":14935,"avengers":14936,"flared":14937,"mankind":14938,"seller":14939,"uttar":14940,"loch":14941,"nadia":14942,"stroking":14943,"exposing":14944,"##hd":14945,"fertile":14946,"ancestral":14947,"instituted":14948,"##has":14949,"noises":14950,"prophecy":14951,"taxation":14952,"eminent":14953,"vivid":14954,"pol":14955,"##bol":14956,"dart":14957,"indirect":14958,"multimedia":14959,"notebook":14960,"upside":14961,"displaying":14962,"adrenaline":14963,"referenced":14964,"geometric":14965,"##iving":14966,"progression":14967,"##ddy":14968,"blunt":14969,"announce":14970,"##far":14971,"implementing":14972,"##lav":14973,"aggression":14974,"liaison":14975,"cooler":14976,"cares":14977,"headache":14978,"plantations":14979,"gorge":14980,"dots":14981,"impulse":14982,"thickness":14983,"ashamed":14984,"averaging":14985,"kathy":14986,"obligation":14987,"precursor":14988,"137":14989,"fowler":14990,"symmetry":14991,"thee":14992,"225":14993,"hears":14994,"##rai":14995,"undergoing":14996,"ads":14997,"butcher":14998,"bowler":14999,"##lip":15000,"cigarettes":15001,"subscription":15002,"goodness":15003,"##ically":15004,"browne":15005,"##hos":15006,"##tech":15007,"kyoto":15008,"donor":15009,"##erty":15010,"damaging":15011,"friction":15012,"drifting":15013,"expeditions":15014,"hardened":15015,"prostitution":15016,"152":15017,"fauna":15018,"blankets":15019,"claw":15020,"tossing":15021,"snarled":15022,"butterflies":15023,"recruits":15024,"investigative":15025,"coated":15026,"healed":15027,"138":15028,"communal":15029,"hai":15030,"xiii":15031,"academics":15032,"boone":15033,"psychologist":15034,"restless":15035,"lahore":15036,"stephens":15037,"mba":15038,"brendan":15039,"foreigners":15040,"printer":15041,"##pc":15042,"ached":15043,"explode":15044,"27th":15045,"deed":15046,"scratched":15047,"dared":15048,"##pole":15049,"cardiac":15050,"1780":15051,"okinawa":15052,"proto":15053,"commando":15054,"compelled":15055,"oddly":15056,"electrons":15057,"##base":15058,"replica":15059,"thanksgiving":15060,"##rist":15061,"sheila":15062,"deliberate":15063,"stafford":15064,"tidal":15065,"representations":15066,"hercules":15067,"ou":15068,"##path":15069,"##iated":15070,"kidnapping":15071,"lenses":15072,"##tling":15073,"deficit":15074,"samoa":15075,"mouths":15076,"consuming":15077,"computational":15078,"maze":15079,"granting":15080,"smirk":15081,"razor":15082,"fixture":15083,"ideals":15084,"inviting":15085,"aiden":15086,"nominal":15087,"##vs":15088,"issuing":15089,"julio":15090,"pitt":15091,"ramsey":15092,"docks":15093,"##oss":15094,"exhaust":15095,"##owed":15096,"bavarian":15097,"draped":15098,"anterior":15099,"mating":15100,"ethiopian":15101,"explores":15102,"noticing":15103,"##nton":15104,"discarded":15105,"convenience":15106,"hoffman":15107,"endowment":15108,"beasts":15109,"cartridge":15110,"mormon":15111,"paternal":15112,"probe":15113,"sleeves":15114,"interfere":15115,"lump":15116,"deadline":15117,"##rail":15118,"jenks":15119,"bulldogs":15120,"scrap":15121,"alternating":15122,"justified":15123,"reproductive":15124,"nam":15125,"seize":15126,"descending":15127,"secretariat":15128,"kirby":15129,"coupe":15130,"grouped":15131,"smash":15132,"panther":15133,"sedan":15134,"tapping":15135,"##18":15136,"lola":15137,"cheer":15138,"germanic":15139,"unfortunate":15140,"##eter":15141,"unrelated":15142,"##fan":15143,"subordinate":15144,"##sdale":15145,"suzanne":15146,"advertisement":15147,"##ility":15148,"horsepower":15149,"##lda":15150,"cautiously":15151,"discourse":15152,"luigi":15153,"##mans":15154,"##fields":15155,"noun":15156,"prevalent":15157,"mao":15158,"schneider":15159,"everett":15160,"surround":15161,"governorate":15162,"kira":15163,"##avia":15164,"westward":15165,"##take":15166,"misty":15167,"rails":15168,"sustainability":15169,"134":15170,"unused":15171,"##rating":15172,"packs":15173,"toast":15174,"unwilling":15175,"regulate":15176,"thy":15177,"suffrage":15178,"nile":15179,"awe":15180,"assam":15181,"definitions":15182,"travelers":15183,"affordable":15184,"##rb":15185,"conferred":15186,"sells":15187,"undefeated":15188,"beneficial":15189,"torso":15190,"basal":15191,"repeating":15192,"remixes":15193,"##pass":15194,"bahrain":15195,"cables":15196,"fang":15197,"##itated":15198,"excavated":15199,"numbering":15200,"statutory":15201,"##rey":15202,"deluxe":15203,"##lian":15204,"forested":15205,"ramirez":15206,"derbyshire":15207,"zeus":15208,"slamming":15209,"transfers":15210,"astronomer":15211,"banana":15212,"lottery":15213,"berg":15214,"histories":15215,"bamboo":15216,"##uchi":15217,"resurrection":15218,"posterior":15219,"bowls":15220,"vaguely":15221,"##thi":15222,"thou":15223,"preserving":15224,"tensed":15225,"offence":15226,"##inas":15227,"meyrick":15228,"callum":15229,"ridden":15230,"watt":15231,"langdon":15232,"tying":15233,"lowland":15234,"snorted":15235,"daring":15236,"truman":15237,"##hale":15238,"##girl":15239,"aura":15240,"overly":15241,"filing":15242,"weighing":15243,"goa":15244,"infections":15245,"philanthropist":15246,"saunders":15247,"eponymous":15248,"##owski":15249,"latitude":15250,"perspectives":15251,"reviewing":15252,"mets":15253,"commandant":15254,"radial":15255,"##kha":15256,"flashlight":15257,"reliability":15258,"koch":15259,"vowels":15260,"amazed":15261,"ada":15262,"elaine":15263,"supper":15264,"##rth":15265,"##encies":15266,"predator":15267,"debated":15268,"soviets":15269,"cola":15270,"##boards":15271,"##nah":15272,"compartment":15273,"crooked":15274,"arbitrary":15275,"fourteenth":15276,"##ctive":15277,"havana":15278,"majors":15279,"steelers":15280,"clips":15281,"profitable":15282,"ambush":15283,"exited":15284,"packers":15285,"##tile":15286,"nude":15287,"cracks":15288,"fungi":15289,"##е":15290,"limb":15291,"trousers":15292,"josie":15293,"shelby":15294,"tens":15295,"frederic":15296,"##ος":15297,"definite":15298,"smoothly":15299,"constellation":15300,"insult":15301,"baton":15302,"discs":15303,"lingering":15304,"##nco":15305,"conclusions":15306,"lent":15307,"staging":15308,"becker":15309,"grandpa":15310,"shaky":15311,"##tron":15312,"einstein":15313,"obstacles":15314,"sk":15315,"adverse":15316,"elle":15317,"economically":15318,"##moto":15319,"mccartney":15320,"thor":15321,"dismissal":15322,"motions":15323,"readings":15324,"nostrils":15325,"treatise":15326,"##pace":15327,"squeezing":15328,"evidently":15329,"prolonged":15330,"1783":15331,"venezuelan":15332,"je":15333,"marguerite":15334,"beirut":15335,"takeover":15336,"shareholders":15337,"##vent":15338,"denise":15339,"digit":15340,"airplay":15341,"norse":15342,"##bbling":15343,"imaginary":15344,"pills":15345,"hubert":15346,"blaze":15347,"vacated":15348,"eliminating":15349,"##ello":15350,"vine":15351,"mansfield":15352,"##tty":15353,"retrospective":15354,"barrow":15355,"borne":15356,"clutch":15357,"bail":15358,"forensic":15359,"weaving":15360,"##nett":15361,"##witz":15362,"desktop":15363,"citadel":15364,"promotions":15365,"worrying":15366,"dorset":15367,"ieee":15368,"subdivided":15369,"##iating":15370,"manned":15371,"expeditionary":15372,"pickup":15373,"synod":15374,"chuckle":15375,"185":15376,"barney":15377,"##rz":15378,"##ffin":15379,"functionality":15380,"karachi":15381,"litigation":15382,"meanings":15383,"uc":15384,"lick":15385,"turbo":15386,"anders":15387,"##ffed":15388,"execute":15389,"curl":15390,"oppose":15391,"ankles":15392,"typhoon":15393,"##د":15394,"##ache":15395,"##asia":15396,"linguistics":15397,"compassion":15398,"pressures":15399,"grazing":15400,"perfection":15401,"##iting":15402,"immunity":15403,"monopoly":15404,"muddy":15405,"backgrounds":15406,"136":15407,"namibia":15408,"francesca":15409,"monitors":15410,"attracting":15411,"stunt":15412,"tuition":15413,"##ии":15414,"vegetable":15415,"##mates":15416,"##quent":15417,"mgm":15418,"jen":15419,"complexes":15420,"forts":15421,"##ond":15422,"cellar":15423,"bites":15424,"seventeenth":15425,"royals":15426,"flemish":15427,"failures":15428,"mast":15429,"charities":15430,"##cular":15431,"peruvian":15432,"capitals":15433,"macmillan":15434,"ipswich":15435,"outward":15436,"frigate":15437,"postgraduate":15438,"folds":15439,"employing":15440,"##ouse":15441,"concurrently":15442,"fiery":15443,"##tai":15444,"contingent":15445,"nightmares":15446,"monumental":15447,"nicaragua":15448,"##kowski":15449,"lizard":15450,"mal":15451,"fielding":15452,"gig":15453,"reject":15454,"##pad":15455,"harding":15456,"##ipe":15457,"coastline":15458,"##cin":15459,"##nos":15460,"beethoven":15461,"humphrey":15462,"innovations":15463,"##tam":15464,"##nge":15465,"norris":15466,"doris":15467,"solicitor":15468,"huang":15469,"obey":15470,"141":15471,"##lc":15472,"niagara":15473,"##tton":15474,"shelves":15475,"aug":15476,"bourbon":15477,"curry":15478,"nightclub":15479,"specifications":15480,"hilton":15481,"##ndo":15482,"centennial":15483,"dispersed":15484,"worm":15485,"neglected":15486,"briggs":15487,"sm":15488,"font":15489,"kuala":15490,"uneasy":15491,"plc":15492,"##nstein":15493,"##bound":15494,"##aking":15495,"##burgh":15496,"awaiting":15497,"pronunciation":15498,"##bbed":15499,"##quest":15500,"eh":15501,"optimal":15502,"zhu":15503,"raped":15504,"greens":15505,"presided":15506,"brenda":15507,"worries":15508,"##life":15509,"venetian":15510,"marxist":15511,"turnout":15512,"##lius":15513,"refined":15514,"braced":15515,"sins":15516,"grasped":15517,"sunderland":15518,"nickel":15519,"speculated":15520,"lowell":15521,"cyrillic":15522,"communism":15523,"fundraising":15524,"resembling":15525,"colonists":15526,"mutant":15527,"freddie":15528,"usc":15529,"##mos":15530,"gratitude":15531,"##run":15532,"mural":15533,"##lous":15534,"chemist":15535,"wi":15536,"reminds":15537,"28th":15538,"steals":15539,"tess":15540,"pietro":15541,"##ingen":15542,"promoter":15543,"ri":15544,"microphone":15545,"honoured":15546,"rai":15547,"sant":15548,"##qui":15549,"feather":15550,"##nson":15551,"burlington":15552,"kurdish":15553,"terrorists":15554,"deborah":15555,"sickness":15556,"##wed":15557,"##eet":15558,"hazard":15559,"irritated":15560,"desperation":15561,"veil":15562,"clarity":15563,"##rik":15564,"jewels":15565,"xv":15566,"##gged":15567,"##ows":15568,"##cup":15569,"berkshire":15570,"unfair":15571,"mysteries":15572,"orchid":15573,"winced":15574,"exhaustion":15575,"renovations":15576,"stranded":15577,"obe":15578,"infinity":15579,"##nies":15580,"adapt":15581,"redevelopment":15582,"thanked":15583,"registry":15584,"olga":15585,"domingo":15586,"noir":15587,"tudor":15588,"ole":15589,"##atus":15590,"commenting":15591,"behaviors":15592,"##ais":15593,"crisp":15594,"pauline":15595,"probable":15596,"stirling":15597,"wigan":15598,"##bian":15599,"paralympics":15600,"panting":15601,"surpassed":15602,"##rew":15603,"luca":15604,"barred":15605,"pony":15606,"famed":15607,"##sters":15608,"cassandra":15609,"waiter":15610,"carolyn":15611,"exported":15612,"##orted":15613,"andres":15614,"destructive":15615,"deeds":15616,"jonah":15617,"castles":15618,"vacancy":15619,"suv":15620,"##glass":15621,"1788":15622,"orchard":15623,"yep":15624,"famine":15625,"belarusian":15626,"sprang":15627,"##forth":15628,"skinny":15629,"##mis":15630,"administrators":15631,"rotterdam":15632,"zambia":15633,"zhao":15634,"boiler":15635,"discoveries":15636,"##ride":15637,"##physics":15638,"lucius":15639,"disappointing":15640,"outreach":15641,"spoon":15642,"##frame":15643,"qualifications":15644,"unanimously":15645,"enjoys":15646,"regency":15647,"##iidae":15648,"stade":15649,"realism":15650,"veterinary":15651,"rodgers":15652,"dump":15653,"alain":15654,"chestnut":15655,"castile":15656,"censorship":15657,"rumble":15658,"gibbs":15659,"##itor":15660,"communion":15661,"reggae":15662,"inactivated":15663,"logs":15664,"loads":15665,"##houses":15666,"homosexual":15667,"##iano":15668,"ale":15669,"informs":15670,"##cas":15671,"phrases":15672,"plaster":15673,"linebacker":15674,"ambrose":15675,"kaiser":15676,"fascinated":15677,"850":15678,"limerick":15679,"recruitment":15680,"forge":15681,"mastered":15682,"##nding":15683,"leinster":15684,"rooted":15685,"threaten":15686,"##strom":15687,"borneo":15688,"##hes":15689,"suggestions":15690,"scholarships":15691,"propeller":15692,"documentaries":15693,"patronage":15694,"coats":15695,"constructing":15696,"invest":15697,"neurons":15698,"comet":15699,"entirety":15700,"shouts":15701,"identities":15702,"annoying":15703,"unchanged":15704,"wary":15705,"##antly":15706,"##ogy":15707,"neat":15708,"oversight":15709,"##kos":15710,"phillies":15711,"replay":15712,"constance":15713,"##kka":15714,"incarnation":15715,"humble":15716,"skies":15717,"minus":15718,"##acy":15719,"smithsonian":15720,"##chel":15721,"guerrilla":15722,"jar":15723,"cadets":15724,"##plate":15725,"surplus":15726,"audit":15727,"##aru":15728,"cracking":15729,"joanna":15730,"louisa":15731,"pacing":15732,"##lights":15733,"intentionally":15734,"##iri":15735,"diner":15736,"nwa":15737,"imprint":15738,"australians":15739,"tong":15740,"unprecedented":15741,"bunker":15742,"naive":15743,"specialists":15744,"ark":15745,"nichols":15746,"railing":15747,"leaked":15748,"pedal":15749,"##uka":15750,"shrub":15751,"longing":15752,"roofs":15753,"v8":15754,"captains":15755,"neural":15756,"tuned":15757,"##ntal":15758,"##jet":15759,"emission":15760,"medina":15761,"frantic":15762,"codex":15763,"definitive":15764,"sid":15765,"abolition":15766,"intensified":15767,"stocks":15768,"enrique":15769,"sustain":15770,"genoa":15771,"oxide":15772,"##written":15773,"clues":15774,"cha":15775,"##gers":15776,"tributaries":15777,"fragment":15778,"venom":15779,"##rity":15780,"##ente":15781,"##sca":15782,"muffled":15783,"vain":15784,"sire":15785,"laos":15786,"##ingly":15787,"##hana":15788,"hastily":15789,"snapping":15790,"surfaced":15791,"sentiment":15792,"motive":15793,"##oft":15794,"contests":15795,"approximate":15796,"mesa":15797,"luckily":15798,"dinosaur":15799,"exchanges":15800,"propelled":15801,"accord":15802,"bourne":15803,"relieve":15804,"tow":15805,"masks":15806,"offended":15807,"##ues":15808,"cynthia":15809,"##mmer":15810,"rains":15811,"bartender":15812,"zinc":15813,"reviewers":15814,"lois":15815,"##sai":15816,"legged":15817,"arrogant":15818,"rafe":15819,"rosie":15820,"comprise":15821,"handicap":15822,"blockade":15823,"inlet":15824,"lagoon":15825,"copied":15826,"drilling":15827,"shelley":15828,"petals":15829,"##inian":15830,"mandarin":15831,"obsolete":15832,"##inated":15833,"onward":15834,"arguably":15835,"productivity":15836,"cindy":15837,"praising":15838,"seldom":15839,"busch":15840,"discusses":15841,"raleigh":15842,"shortage":15843,"ranged":15844,"stanton":15845,"encouragement":15846,"firstly":15847,"conceded":15848,"overs":15849,"temporal":15850,"##uke":15851,"cbe":15852,"##bos":15853,"woo":15854,"certainty":15855,"pumps":15856,"##pton":15857,"stalked":15858,"##uli":15859,"lizzie":15860,"periodic":15861,"thieves":15862,"weaker":15863,"##night":15864,"gases":15865,"shoving":15866,"chooses":15867,"wc":15868,"##chemical":15869,"prompting":15870,"weights":15871,"##kill":15872,"robust":15873,"flanked":15874,"sticky":15875,"hu":15876,"tuberculosis":15877,"##eb":15878,"##eal":15879,"christchurch":15880,"resembled":15881,"wallet":15882,"reese":15883,"inappropriate":15884,"pictured":15885,"distract":15886,"fixing":15887,"fiddle":15888,"giggled":15889,"burger":15890,"heirs":15891,"hairy":15892,"mechanic":15893,"torque":15894,"apache":15895,"obsessed":15896,"chiefly":15897,"cheng":15898,"logging":15899,"##tag":15900,"extracted":15901,"meaningful":15902,"numb":15903,"##vsky":15904,"gloucestershire":15905,"reminding":15906,"##bay":15907,"unite":15908,"##lit":15909,"breeds":15910,"diminished":15911,"clown":15912,"glove":15913,"1860s":15914,"##ن":15915,"##ug":15916,"archibald":15917,"focal":15918,"freelance":15919,"sliced":15920,"depiction":15921,"##yk":15922,"organism":15923,"switches":15924,"sights":15925,"stray":15926,"crawling":15927,"##ril":15928,"lever":15929,"leningrad":15930,"interpretations":15931,"loops":15932,"anytime":15933,"reel":15934,"alicia":15935,"delighted":15936,"##ech":15937,"inhaled":15938,"xiv":15939,"suitcase":15940,"bernie":15941,"vega":15942,"licenses":15943,"northampton":15944,"exclusion":15945,"induction":15946,"monasteries":15947,"racecourse":15948,"homosexuality":15949,"##right":15950,"##sfield":15951,"##rky":15952,"dimitri":15953,"michele":15954,"alternatives":15955,"ions":15956,"commentators":15957,"genuinely":15958,"objected":15959,"pork":15960,"hospitality":15961,"fencing":15962,"stephan":15963,"warships":15964,"peripheral":15965,"wit":15966,"drunken":15967,"wrinkled":15968,"quentin":15969,"spends":15970,"departing":15971,"chung":15972,"numerical":15973,"spokesperson":15974,"##zone":15975,"johannesburg":15976,"caliber":15977,"killers":15978,"##udge":15979,"assumes":15980,"neatly":15981,"demographic":15982,"abigail":15983,"bloc":15984,"##vel":15985,"mounting":15986,"##lain":15987,"bentley":15988,"slightest":15989,"xu":15990,"recipients":15991,"##jk":15992,"merlin":15993,"##writer":15994,"seniors":15995,"prisons":15996,"blinking":15997,"hindwings":15998,"flickered":15999,"kappa":16000,"##hel":16001,"80s":16002,"strengthening":16003,"appealing":16004,"brewing":16005,"gypsy":16006,"mali":16007,"lashes":16008,"hulk":16009,"unpleasant":16010,"harassment":16011,"bio":16012,"treaties":16013,"predict":16014,"instrumentation":16015,"pulp":16016,"troupe":16017,"boiling":16018,"mantle":16019,"##ffe":16020,"ins":16021,"##vn":16022,"dividing":16023,"handles":16024,"verbs":16025,"##onal":16026,"coconut":16027,"senegal":16028,"340":16029,"thorough":16030,"gum":16031,"momentarily":16032,"##sto":16033,"cocaine":16034,"panicked":16035,"destined":16036,"##turing":16037,"teatro":16038,"denying":16039,"weary":16040,"captained":16041,"mans":16042,"##hawks":16043,"##code":16044,"wakefield":16045,"bollywood":16046,"thankfully":16047,"##16":16048,"cyril":16049,"##wu":16050,"amendments":16051,"##bahn":16052,"consultation":16053,"stud":16054,"reflections":16055,"kindness":16056,"1787":16057,"internally":16058,"##ovo":16059,"tex":16060,"mosaic":16061,"distribute":16062,"paddy":16063,"seeming":16064,"143":16065,"##hic":16066,"piers":16067,"##15":16068,"##mura":16069,"##verse":16070,"popularly":16071,"winger":16072,"kang":16073,"sentinel":16074,"mccoy":16075,"##anza":16076,"covenant":16077,"##bag":16078,"verge":16079,"fireworks":16080,"suppress":16081,"thrilled":16082,"dominate":16083,"##jar":16084,"swansea":16085,"##60":16086,"142":16087,"reconciliation":16088,"##ndi":16089,"stiffened":16090,"cue":16091,"dorian":16092,"##uf":16093,"damascus":16094,"amor":16095,"ida":16096,"foremost":16097,"##aga":16098,"porsche":16099,"unseen":16100,"dir":16101,"##had":16102,"##azi":16103,"stony":16104,"lexi":16105,"melodies":16106,"##nko":16107,"angular":16108,"integer":16109,"podcast":16110,"ants":16111,"inherent":16112,"jaws":16113,"justify":16114,"persona":16115,"##olved":16116,"josephine":16117,"##nr":16118,"##ressed":16119,"customary":16120,"flashes":16121,"gala":16122,"cyrus":16123,"glaring":16124,"backyard":16125,"ariel":16126,"physiology":16127,"greenland":16128,"html":16129,"stir":16130,"avon":16131,"atletico":16132,"finch":16133,"methodology":16134,"ked":16135,"##lent":16136,"mas":16137,"catholicism":16138,"townsend":16139,"branding":16140,"quincy":16141,"fits":16142,"containers":16143,"1777":16144,"ashore":16145,"aragon":16146,"##19":16147,"forearm":16148,"poisoning":16149,"##sd":16150,"adopting":16151,"conquer":16152,"grinding":16153,"amnesty":16154,"keller":16155,"finances":16156,"evaluate":16157,"forged":16158,"lankan":16159,"instincts":16160,"##uto":16161,"guam":16162,"bosnian":16163,"photographed":16164,"workplace":16165,"desirable":16166,"protector":16167,"##dog":16168,"allocation":16169,"intently":16170,"encourages":16171,"willy":16172,"##sten":16173,"bodyguard":16174,"electro":16175,"brighter":16176,"##ν":16177,"bihar":16178,"##chev":16179,"lasts":16180,"opener":16181,"amphibious":16182,"sal":16183,"verde":16184,"arte":16185,"##cope":16186,"captivity":16187,"vocabulary":16188,"yields":16189,"##tted":16190,"agreeing":16191,"desmond":16192,"pioneered":16193,"##chus":16194,"strap":16195,"campaigned":16196,"railroads":16197,"##ович":16198,"emblem":16199,"##dre":16200,"stormed":16201,"501":16202,"##ulous":16203,"marijuana":16204,"northumberland":16205,"##gn":16206,"##nath":16207,"bowen":16208,"landmarks":16209,"beaumont":16210,"##qua":16211,"danube":16212,"##bler":16213,"attorneys":16214,"th":16215,"ge":16216,"flyers":16217,"critique":16218,"villains":16219,"cass":16220,"mutation":16221,"acc":16222,"##0s":16223,"colombo":16224,"mckay":16225,"motif":16226,"sampling":16227,"concluding":16228,"syndicate":16229,"##rell":16230,"neon":16231,"stables":16232,"ds":16233,"warnings":16234,"clint":16235,"mourning":16236,"wilkinson":16237,"##tated":16238,"merrill":16239,"leopard":16240,"evenings":16241,"exhaled":16242,"emil":16243,"sonia":16244,"ezra":16245,"discrete":16246,"stove":16247,"farrell":16248,"fifteenth":16249,"prescribed":16250,"superhero":16251,"##rier":16252,"worms":16253,"helm":16254,"wren":16255,"##duction":16256,"##hc":16257,"expo":16258,"##rator":16259,"hq":16260,"unfamiliar":16261,"antony":16262,"prevents":16263,"acceleration":16264,"fiercely":16265,"mari":16266,"painfully":16267,"calculations":16268,"cheaper":16269,"ign":16270,"clifton":16271,"irvine":16272,"davenport":16273,"mozambique":16274,"##np":16275,"pierced":16276,"##evich":16277,"wonders":16278,"##wig":16279,"##cate":16280,"##iling":16281,"crusade":16282,"ware":16283,"##uel":16284,"enzymes":16285,"reasonably":16286,"mls":16287,"##coe":16288,"mater":16289,"ambition":16290,"bunny":16291,"eliot":16292,"kernel":16293,"##fin":16294,"asphalt":16295,"headmaster":16296,"torah":16297,"aden":16298,"lush":16299,"pins":16300,"waived":16301,"##care":16302,"##yas":16303,"joao":16304,"substrate":16305,"enforce":16306,"##grad":16307,"##ules":16308,"alvarez":16309,"selections":16310,"epidemic":16311,"tempted":16312,"##bit":16313,"bremen":16314,"translates":16315,"ensured":16316,"waterfront":16317,"29th":16318,"forrest":16319,"manny":16320,"malone":16321,"kramer":16322,"reigning":16323,"cookies":16324,"simpler":16325,"absorption":16326,"205":16327,"engraved":16328,"##ffy":16329,"evaluated":16330,"1778":16331,"haze":16332,"146":16333,"comforting":16334,"crossover":16335,"##abe":16336,"thorn":16337,"##rift":16338,"##imo":16339,"##pop":16340,"suppression":16341,"fatigue":16342,"cutter":16343,"##tr":16344,"201":16345,"wurttemberg":16346,"##orf":16347,"enforced":16348,"hovering":16349,"proprietary":16350,"gb":16351,"samurai":16352,"syllable":16353,"ascent":16354,"lacey":16355,"tick":16356,"lars":16357,"tractor":16358,"merchandise":16359,"rep":16360,"bouncing":16361,"defendants":16362,"##yre":16363,"huntington":16364,"##ground":16365,"##oko":16366,"standardized":16367,"##hor":16368,"##hima":16369,"assassinated":16370,"nu":16371,"predecessors":16372,"rainy":16373,"liar":16374,"assurance":16375,"lyrical":16376,"##uga":16377,"secondly":16378,"flattened":16379,"ios":16380,"parameter":16381,"undercover":16382,"##mity":16383,"bordeaux":16384,"punish":16385,"ridges":16386,"markers":16387,"exodus":16388,"inactive":16389,"hesitate":16390,"debbie":16391,"nyc":16392,"pledge":16393,"savoy":16394,"nagar":16395,"offset":16396,"organist":16397,"##tium":16398,"hesse":16399,"marin":16400,"converting":16401,"##iver":16402,"diagram":16403,"propulsion":16404,"pu":16405,"validity":16406,"reverted":16407,"supportive":16408,"##dc":16409,"ministries":16410,"clans":16411,"responds":16412,"proclamation":16413,"##inae":16414,"##ø":16415,"##rea":16416,"ein":16417,"pleading":16418,"patriot":16419,"sf":16420,"birch":16421,"islanders":16422,"strauss":16423,"hates":16424,"##dh":16425,"brandenburg":16426,"concession":16427,"rd":16428,"##ob":16429,"1900s":16430,"killings":16431,"textbook":16432,"antiquity":16433,"cinematography":16434,"wharf":16435,"embarrassing":16436,"setup":16437,"creed":16438,"farmland":16439,"inequality":16440,"centred":16441,"signatures":16442,"fallon":16443,"370":16444,"##ingham":16445,"##uts":16446,"ceylon":16447,"gazing":16448,"directive":16449,"laurie":16450,"##tern":16451,"globally":16452,"##uated":16453,"##dent":16454,"allah":16455,"excavation":16456,"threads":16457,"##cross":16458,"148":16459,"frantically":16460,"icc":16461,"utilize":16462,"determines":16463,"respiratory":16464,"thoughtful":16465,"receptions":16466,"##dicate":16467,"merging":16468,"chandra":16469,"seine":16470,"147":16471,"builders":16472,"builds":16473,"diagnostic":16474,"dev":16475,"visibility":16476,"goddamn":16477,"analyses":16478,"dhaka":16479,"cho":16480,"proves":16481,"chancel":16482,"concurrent":16483,"curiously":16484,"canadians":16485,"pumped":16486,"restoring":16487,"1850s":16488,"turtles":16489,"jaguar":16490,"sinister":16491,"spinal":16492,"traction":16493,"declan":16494,"vows":16495,"1784":16496,"glowed":16497,"capitalism":16498,"swirling":16499,"install":16500,"universidad":16501,"##lder":16502,"##oat":16503,"soloist":16504,"##genic":16505,"##oor":16506,"coincidence":16507,"beginnings":16508,"nissan":16509,"dip":16510,"resorts":16511,"caucasus":16512,"combustion":16513,"infectious":16514,"##eno":16515,"pigeon":16516,"serpent":16517,"##itating":16518,"conclude":16519,"masked":16520,"salad":16521,"jew":16522,"##gr":16523,"surreal":16524,"toni":16525,"##wc":16526,"harmonica":16527,"151":16528,"##gins":16529,"##etic":16530,"##coat":16531,"fishermen":16532,"intending":16533,"bravery":16534,"##wave":16535,"klaus":16536,"titan":16537,"wembley":16538,"taiwanese":16539,"ransom":16540,"40th":16541,"incorrect":16542,"hussein":16543,"eyelids":16544,"jp":16545,"cooke":16546,"dramas":16547,"utilities":16548,"##etta":16549,"##print":16550,"eisenhower":16551,"principally":16552,"granada":16553,"lana":16554,"##rak":16555,"openings":16556,"concord":16557,"##bl":16558,"bethany":16559,"connie":16560,"morality":16561,"sega":16562,"##mons":16563,"##nard":16564,"earnings":16565,"##kara":16566,"##cine":16567,"wii":16568,"communes":16569,"##rel":16570,"coma":16571,"composing":16572,"softened":16573,"severed":16574,"grapes":16575,"##17":16576,"nguyen":16577,"analyzed":16578,"warlord":16579,"hubbard":16580,"heavenly":16581,"behave":16582,"slovenian":16583,"##hit":16584,"##ony":16585,"hailed":16586,"filmmakers":16587,"trance":16588,"caldwell":16589,"skye":16590,"unrest":16591,"coward":16592,"likelihood":16593,"##aging":16594,"bern":16595,"sci":16596,"taliban":16597,"honolulu":16598,"propose":16599,"##wang":16600,"1700":16601,"browser":16602,"imagining":16603,"cobra":16604,"contributes":16605,"dukes":16606,"instinctively":16607,"conan":16608,"violinist":16609,"##ores":16610,"accessories":16611,"gradual":16612,"##amp":16613,"quotes":16614,"sioux":16615,"##dating":16616,"undertake":16617,"intercepted":16618,"sparkling":16619,"compressed":16620,"139":16621,"fungus":16622,"tombs":16623,"haley":16624,"imposing":16625,"rests":16626,"degradation":16627,"lincolnshire":16628,"retailers":16629,"wetlands":16630,"tulsa":16631,"distributor":16632,"dungeon":16633,"nun":16634,"greenhouse":16635,"convey":16636,"atlantis":16637,"aft":16638,"exits":16639,"oman":16640,"dresser":16641,"lyons":16642,"##sti":16643,"joking":16644,"eddy":16645,"judgement":16646,"omitted":16647,"digits":16648,"##cts":16649,"##game":16650,"juniors":16651,"##rae":16652,"cents":16653,"stricken":16654,"une":16655,"##ngo":16656,"wizards":16657,"weir":16658,"breton":16659,"nan":16660,"technician":16661,"fibers":16662,"liking":16663,"royalty":16664,"##cca":16665,"154":16666,"persia":16667,"terribly":16668,"magician":16669,"##rable":16670,"##unt":16671,"vance":16672,"cafeteria":16673,"booker":16674,"camille":16675,"warmer":16676,"##static":16677,"consume":16678,"cavern":16679,"gaps":16680,"compass":16681,"contemporaries":16682,"foyer":16683,"soothing":16684,"graveyard":16685,"maj":16686,"plunged":16687,"blush":16688,"##wear":16689,"cascade":16690,"demonstrates":16691,"ordinance":16692,"##nov":16693,"boyle":16694,"##lana":16695,"rockefeller":16696,"shaken":16697,"banjo":16698,"izzy":16699,"##ense":16700,"breathless":16701,"vines":16702,"##32":16703,"##eman":16704,"alterations":16705,"chromosome":16706,"dwellings":16707,"feudal":16708,"mole":16709,"153":16710,"catalonia":16711,"relics":16712,"tenant":16713,"mandated":16714,"##fm":16715,"fridge":16716,"hats":16717,"honesty":16718,"patented":16719,"raul":16720,"heap":16721,"cruisers":16722,"accusing":16723,"enlightenment":16724,"infants":16725,"wherein":16726,"chatham":16727,"contractors":16728,"zen":16729,"affinity":16730,"hc":16731,"osborne":16732,"piston":16733,"156":16734,"traps":16735,"maturity":16736,"##rana":16737,"lagos":16738,"##zal":16739,"peering":16740,"##nay":16741,"attendant":16742,"dealers":16743,"protocols":16744,"subset":16745,"prospects":16746,"biographical":16747,"##cre":16748,"artery":16749,"##zers":16750,"insignia":16751,"nuns":16752,"endured":16753,"##eration":16754,"recommend":16755,"schwartz":16756,"serbs":16757,"berger":16758,"cromwell":16759,"crossroads":16760,"##ctor":16761,"enduring":16762,"clasped":16763,"grounded":16764,"##bine":16765,"marseille":16766,"twitched":16767,"abel":16768,"choke":16769,"https":16770,"catalyst":16771,"moldova":16772,"italians":16773,"##tist":16774,"disastrous":16775,"wee":16776,"##oured":16777,"##nti":16778,"wwf":16779,"nope":16780,"##piration":16781,"##asa":16782,"expresses":16783,"thumbs":16784,"167":16785,"##nza":16786,"coca":16787,"1781":16788,"cheating":16789,"##ption":16790,"skipped":16791,"sensory":16792,"heidelberg":16793,"spies":16794,"satan":16795,"dangers":16796,"semifinal":16797,"202":16798,"bohemia":16799,"whitish":16800,"confusing":16801,"shipbuilding":16802,"relies":16803,"surgeons":16804,"landings":16805,"ravi":16806,"baku":16807,"moor":16808,"suffix":16809,"alejandro":16810,"##yana":16811,"litre":16812,"upheld":16813,"##unk":16814,"rajasthan":16815,"##rek":16816,"coaster":16817,"insists":16818,"posture":16819,"scenarios":16820,"etienne":16821,"favoured":16822,"appoint":16823,"transgender":16824,"elephants":16825,"poked":16826,"greenwood":16827,"defences":16828,"fulfilled":16829,"militant":16830,"somali":16831,"1758":16832,"chalk":16833,"potent":16834,"##ucci":16835,"migrants":16836,"wink":16837,"assistants":16838,"nos":16839,"restriction":16840,"activism":16841,"niger":16842,"##ario":16843,"colon":16844,"shaun":16845,"##sat":16846,"daphne":16847,"##erated":16848,"swam":16849,"congregations":16850,"reprise":16851,"considerations":16852,"magnet":16853,"playable":16854,"xvi":16855,"##р":16856,"overthrow":16857,"tobias":16858,"knob":16859,"chavez":16860,"coding":16861,"##mers":16862,"propped":16863,"katrina":16864,"orient":16865,"newcomer":16866,"##suke":16867,"temperate":16868,"##pool":16869,"farmhouse":16870,"interrogation":16871,"##vd":16872,"committing":16873,"##vert":16874,"forthcoming":16875,"strawberry":16876,"joaquin":16877,"macau":16878,"ponds":16879,"shocking":16880,"siberia":16881,"##cellular":16882,"chant":16883,"contributors":16884,"##nant":16885,"##ologists":16886,"sped":16887,"absorb":16888,"hail":16889,"1782":16890,"spared":16891,"##hore":16892,"barbados":16893,"karate":16894,"opus":16895,"originates":16896,"saul":16897,"##xie":16898,"evergreen":16899,"leaped":16900,"##rock":16901,"correlation":16902,"exaggerated":16903,"weekday":16904,"unification":16905,"bump":16906,"tracing":16907,"brig":16908,"afb":16909,"pathways":16910,"utilizing":16911,"##ners":16912,"mod":16913,"mb":16914,"disturbance":16915,"kneeling":16916,"##stad":16917,"##guchi":16918,"100th":16919,"pune":16920,"##thy":16921,"decreasing":16922,"168":16923,"manipulation":16924,"miriam":16925,"academia":16926,"ecosystem":16927,"occupational":16928,"rbi":16929,"##lem":16930,"rift":16931,"##14":16932,"rotary":16933,"stacked":16934,"incorporation":16935,"awakening":16936,"generators":16937,"guerrero":16938,"racist":16939,"##omy":16940,"cyber":16941,"derivatives":16942,"culminated":16943,"allie":16944,"annals":16945,"panzer":16946,"sainte":16947,"wikipedia":16948,"pops":16949,"zu":16950,"austro":16951,"##vate":16952,"algerian":16953,"politely":16954,"nicholson":16955,"mornings":16956,"educate":16957,"tastes":16958,"thrill":16959,"dartmouth":16960,"##gating":16961,"db":16962,"##jee":16963,"regan":16964,"differing":16965,"concentrating":16966,"choreography":16967,"divinity":16968,"##media":16969,"pledged":16970,"alexandre":16971,"routing":16972,"gregor":16973,"madeline":16974,"##idal":16975,"apocalypse":16976,"##hora":16977,"gunfire":16978,"culminating":16979,"elves":16980,"fined":16981,"liang":16982,"lam":16983,"programmed":16984,"tar":16985,"guessing":16986,"transparency":16987,"gabrielle":16988,"##gna":16989,"cancellation":16990,"flexibility":16991,"##lining":16992,"accession":16993,"shea":16994,"stronghold":16995,"nets":16996,"specializes":16997,"##rgan":16998,"abused":16999,"hasan":17000,"sgt":17001,"ling":17002,"exceeding":17003,"##₄":17004,"admiration":17005,"supermarket":17006,"##ark":17007,"photographers":17008,"specialised":17009,"tilt":17010,"resonance":17011,"hmm":17012,"perfume":17013,"380":17014,"sami":17015,"threatens":17016,"garland":17017,"botany":17018,"guarding":17019,"boiled":17020,"greet":17021,"puppy":17022,"russo":17023,"supplier":17024,"wilmington":17025,"vibrant":17026,"vijay":17027,"##bius":17028,"paralympic":17029,"grumbled":17030,"paige":17031,"faa":17032,"licking":17033,"margins":17034,"hurricanes":17035,"##gong":17036,"fest":17037,"grenade":17038,"ripping":17039,"##uz":17040,"counseling":17041,"weigh":17042,"##sian":17043,"needles":17044,"wiltshire":17045,"edison":17046,"costly":17047,"##not":17048,"fulton":17049,"tramway":17050,"redesigned":17051,"staffordshire":17052,"cache":17053,"gasping":17054,"watkins":17055,"sleepy":17056,"candidacy":17057,"##group":17058,"monkeys":17059,"timeline":17060,"throbbing":17061,"##bid":17062,"##sos":17063,"berth":17064,"uzbekistan":17065,"vanderbilt":17066,"bothering":17067,"overturned":17068,"ballots":17069,"gem":17070,"##iger":17071,"sunglasses":17072,"subscribers":17073,"hooker":17074,"compelling":17075,"ang":17076,"exceptionally":17077,"saloon":17078,"stab":17079,"##rdi":17080,"carla":17081,"terrifying":17082,"rom":17083,"##vision":17084,"coil":17085,"##oids":17086,"satisfying":17087,"vendors":17088,"31st":17089,"mackay":17090,"deities":17091,"overlooked":17092,"ambient":17093,"bahamas":17094,"felipe":17095,"olympia":17096,"whirled":17097,"botanist":17098,"advertised":17099,"tugging":17100,"##dden":17101,"disciples":17102,"morales":17103,"unionist":17104,"rites":17105,"foley":17106,"morse":17107,"motives":17108,"creepy":17109,"##₀":17110,"soo":17111,"##sz":17112,"bargain":17113,"highness":17114,"frightening":17115,"turnpike":17116,"tory":17117,"reorganization":17118,"##cer":17119,"depict":17120,"biographer":17121,"##walk":17122,"unopposed":17123,"manifesto":17124,"##gles":17125,"institut":17126,"emile":17127,"accidental":17128,"kapoor":17129,"##dam":17130,"kilkenny":17131,"cortex":17132,"lively":17133,"##13":17134,"romanesque":17135,"jain":17136,"shan":17137,"cannons":17138,"##ood":17139,"##ske":17140,"petrol":17141,"echoing":17142,"amalgamated":17143,"disappears":17144,"cautious":17145,"proposes":17146,"sanctions":17147,"trenton":17148,"##ر":17149,"flotilla":17150,"aus":17151,"contempt":17152,"tor":17153,"canary":17154,"cote":17155,"theirs":17156,"##hun":17157,"conceptual":17158,"deleted":17159,"fascinating":17160,"paso":17161,"blazing":17162,"elf":17163,"honourable":17164,"hutchinson":17165,"##eiro":17166,"##outh":17167,"##zin":17168,"surveyor":17169,"tee":17170,"amidst":17171,"wooded":17172,"reissue":17173,"intro":17174,"##ono":17175,"cobb":17176,"shelters":17177,"newsletter":17178,"hanson":17179,"brace":17180,"encoding":17181,"confiscated":17182,"dem":17183,"caravan":17184,"marino":17185,"scroll":17186,"melodic":17187,"cows":17188,"imam":17189,"##adi":17190,"##aneous":17191,"northward":17192,"searches":17193,"biodiversity":17194,"cora":17195,"310":17196,"roaring":17197,"##bers":17198,"connell":17199,"theologian":17200,"halo":17201,"compose":17202,"pathetic":17203,"unmarried":17204,"dynamo":17205,"##oot":17206,"az":17207,"calculation":17208,"toulouse":17209,"deserves":17210,"humour":17211,"nr":17212,"forgiveness":17213,"tam":17214,"undergone":17215,"martyr":17216,"pamela":17217,"myths":17218,"whore":17219,"counselor":17220,"hicks":17221,"290":17222,"heavens":17223,"battleship":17224,"electromagnetic":17225,"##bbs":17226,"stellar":17227,"establishments":17228,"presley":17229,"hopped":17230,"##chin":17231,"temptation":17232,"90s":17233,"wills":17234,"nas":17235,"##yuan":17236,"nhs":17237,"##nya":17238,"seminars":17239,"##yev":17240,"adaptations":17241,"gong":17242,"asher":17243,"lex":17244,"indicator":17245,"sikh":17246,"tobago":17247,"cites":17248,"goin":17249,"##yte":17250,"satirical":17251,"##gies":17252,"characterised":17253,"correspond":17254,"bubbles":17255,"lure":17256,"participates":17257,"##vid":17258,"eruption":17259,"skate":17260,"therapeutic":17261,"1785":17262,"canals":17263,"wholesale":17264,"defaulted":17265,"sac":17266,"460":17267,"petit":17268,"##zzled":17269,"virgil":17270,"leak":17271,"ravens":17272,"256":17273,"portraying":17274,"##yx":17275,"ghetto":17276,"creators":17277,"dams":17278,"portray":17279,"vicente":17280,"##rington":17281,"fae":17282,"namesake":17283,"bounty":17284,"##arium":17285,"joachim":17286,"##ota":17287,"##iser":17288,"aforementioned":17289,"axle":17290,"snout":17291,"depended":17292,"dismantled":17293,"reuben":17294,"480":17295,"##ibly":17296,"gallagher":17297,"##lau":17298,"##pd":17299,"earnest":17300,"##ieu":17301,"##iary":17302,"inflicted":17303,"objections":17304,"##llar":17305,"asa":17306,"gritted":17307,"##athy":17308,"jericho":17309,"##sea":17310,"##was":17311,"flick":17312,"underside":17313,"ceramics":17314,"undead":17315,"substituted":17316,"195":17317,"eastward":17318,"undoubtedly":17319,"wheeled":17320,"chimney":17321,"##iche":17322,"guinness":17323,"cb":17324,"##ager":17325,"siding":17326,"##bell":17327,"traitor":17328,"baptiste":17329,"disguised":17330,"inauguration":17331,"149":17332,"tipperary":17333,"choreographer":17334,"perched":17335,"warmed":17336,"stationary":17337,"eco":17338,"##ike":17339,"##ntes":17340,"bacterial":17341,"##aurus":17342,"flores":17343,"phosphate":17344,"##core":17345,"attacker":17346,"invaders":17347,"alvin":17348,"intersects":17349,"a1":17350,"indirectly":17351,"immigrated":17352,"businessmen":17353,"cornelius":17354,"valves":17355,"narrated":17356,"pill":17357,"sober":17358,"ul":17359,"nationale":17360,"monastic":17361,"applicants":17362,"scenery":17363,"##jack":17364,"161":17365,"motifs":17366,"constitutes":17367,"cpu":17368,"##osh":17369,"jurisdictions":17370,"sd":17371,"tuning":17372,"irritation":17373,"woven":17374,"##uddin":17375,"fertility":17376,"gao":17377,"##erie":17378,"antagonist":17379,"impatient":17380,"glacial":17381,"hides":17382,"boarded":17383,"denominations":17384,"interception":17385,"##jas":17386,"cookie":17387,"nicola":17388,"##tee":17389,"algebraic":17390,"marquess":17391,"bahn":17392,"parole":17393,"buyers":17394,"bait":17395,"turbines":17396,"paperwork":17397,"bestowed":17398,"natasha":17399,"renee":17400,"oceans":17401,"purchases":17402,"157":17403,"vaccine":17404,"215":17405,"##tock":17406,"fixtures":17407,"playhouse":17408,"integrate":17409,"jai":17410,"oswald":17411,"intellectuals":17412,"##cky":17413,"booked":17414,"nests":17415,"mortimer":17416,"##isi":17417,"obsession":17418,"sept":17419,"##gler":17420,"##sum":17421,"440":17422,"scrutiny":17423,"simultaneous":17424,"squinted":17425,"##shin":17426,"collects":17427,"oven":17428,"shankar":17429,"penned":17430,"remarkably":17431,"##я":17432,"slips":17433,"luggage":17434,"spectral":17435,"1786":17436,"collaborations":17437,"louie":17438,"consolidation":17439,"##ailed":17440,"##ivating":17441,"420":17442,"hoover":17443,"blackpool":17444,"harness":17445,"ignition":17446,"vest":17447,"tails":17448,"belmont":17449,"mongol":17450,"skinner":17451,"##nae":17452,"visually":17453,"mage":17454,"derry":17455,"##tism":17456,"##unce":17457,"stevie":17458,"transitional":17459,"##rdy":17460,"redskins":17461,"drying":17462,"prep":17463,"prospective":17464,"##21":17465,"annoyance":17466,"oversee":17467,"##loaded":17468,"fills":17469,"##books":17470,"##iki":17471,"announces":17472,"fda":17473,"scowled":17474,"respects":17475,"prasad":17476,"mystic":17477,"tucson":17478,"##vale":17479,"revue":17480,"springer":17481,"bankrupt":17482,"1772":17483,"aristotle":17484,"salvatore":17485,"habsburg":17486,"##geny":17487,"dal":17488,"natal":17489,"nut":17490,"pod":17491,"chewing":17492,"darts":17493,"moroccan":17494,"walkover":17495,"rosario":17496,"lenin":17497,"punjabi":17498,"##ße":17499,"grossed":17500,"scattering":17501,"wired":17502,"invasive":17503,"hui":17504,"polynomial":17505,"corridors":17506,"wakes":17507,"gina":17508,"portrays":17509,"##cratic":17510,"arid":17511,"retreating":17512,"erich":17513,"irwin":17514,"sniper":17515,"##dha":17516,"linen":17517,"lindsey":17518,"maneuver":17519,"butch":17520,"shutting":17521,"socio":17522,"bounce":17523,"commemorative":17524,"postseason":17525,"jeremiah":17526,"pines":17527,"275":17528,"mystical":17529,"beads":17530,"bp":17531,"abbas":17532,"furnace":17533,"bidding":17534,"consulted":17535,"assaulted":17536,"empirical":17537,"rubble":17538,"enclosure":17539,"sob":17540,"weakly":17541,"cancel":17542,"polly":17543,"yielded":17544,"##emann":17545,"curly":17546,"prediction":17547,"battered":17548,"70s":17549,"vhs":17550,"jacqueline":17551,"render":17552,"sails":17553,"barked":17554,"detailing":17555,"grayson":17556,"riga":17557,"sloane":17558,"raging":17559,"##yah":17560,"herbs":17561,"bravo":17562,"##athlon":17563,"alloy":17564,"giggle":17565,"imminent":17566,"suffers":17567,"assumptions":17568,"waltz":17569,"##itate":17570,"accomplishments":17571,"##ited":17572,"bathing":17573,"remixed":17574,"deception":17575,"prefix":17576,"##emia":17577,"deepest":17578,"##tier":17579,"##eis":17580,"balkan":17581,"frogs":17582,"##rong":17583,"slab":17584,"##pate":17585,"philosophers":17586,"peterborough":17587,"grains":17588,"imports":17589,"dickinson":17590,"rwanda":17591,"##atics":17592,"1774":17593,"dirk":17594,"lan":17595,"tablets":17596,"##rove":17597,"clone":17598,"##rice":17599,"caretaker":17600,"hostilities":17601,"mclean":17602,"##gre":17603,"regimental":17604,"treasures":17605,"norms":17606,"impose":17607,"tsar":17608,"tango":17609,"diplomacy":17610,"variously":17611,"complain":17612,"192":17613,"recognise":17614,"arrests":17615,"1779":17616,"celestial":17617,"pulitzer":17618,"##dus":17619,"bing":17620,"libretto":17621,"##moor":17622,"adele":17623,"splash":17624,"##rite":17625,"expectation":17626,"lds":17627,"confronts":17628,"##izer":17629,"spontaneous":17630,"harmful":17631,"wedge":17632,"entrepreneurs":17633,"buyer":17634,"##ope":17635,"bilingual":17636,"translate":17637,"rugged":17638,"conner":17639,"circulated":17640,"uae":17641,"eaton":17642,"##gra":17643,"##zzle":17644,"lingered":17645,"lockheed":17646,"vishnu":17647,"reelection":17648,"alonso":17649,"##oom":17650,"joints":17651,"yankee":17652,"headline":17653,"cooperate":17654,"heinz":17655,"laureate":17656,"invading":17657,"##sford":17658,"echoes":17659,"scandinavian":17660,"##dham":17661,"hugging":17662,"vitamin":17663,"salute":17664,"micah":17665,"hind":17666,"trader":17667,"##sper":17668,"radioactive":17669,"##ndra":17670,"militants":17671,"poisoned":17672,"ratified":17673,"remark":17674,"campeonato":17675,"deprived":17676,"wander":17677,"prop":17678,"##dong":17679,"outlook":17680,"##tani":17681,"##rix":17682,"##eye":17683,"chiang":17684,"darcy":17685,"##oping":17686,"mandolin":17687,"spice":17688,"statesman":17689,"babylon":17690,"182":17691,"walled":17692,"forgetting":17693,"afro":17694,"##cap":17695,"158":17696,"giorgio":17697,"buffer":17698,"##polis":17699,"planetary":17700,"##gis":17701,"overlap":17702,"terminals":17703,"kinda":17704,"centenary":17705,"##bir":17706,"arising":17707,"manipulate":17708,"elm":17709,"ke":17710,"1770":17711,"ak":17712,"##tad":17713,"chrysler":17714,"mapped":17715,"moose":17716,"pomeranian":17717,"quad":17718,"macarthur":17719,"assemblies":17720,"shoreline":17721,"recalls":17722,"stratford":17723,"##rted":17724,"noticeable":17725,"##evic":17726,"imp":17727,"##rita":17728,"##sque":17729,"accustomed":17730,"supplying":17731,"tents":17732,"disgusted":17733,"vogue":17734,"sipped":17735,"filters":17736,"khz":17737,"reno":17738,"selecting":17739,"luftwaffe":17740,"mcmahon":17741,"tyne":17742,"masterpiece":17743,"carriages":17744,"collided":17745,"dunes":17746,"exercised":17747,"flare":17748,"remembers":17749,"muzzle":17750,"##mobile":17751,"heck":17752,"##rson":17753,"burgess":17754,"lunged":17755,"middleton":17756,"boycott":17757,"bilateral":17758,"##sity":17759,"hazardous":17760,"lumpur":17761,"multiplayer":17762,"spotlight":17763,"jackets":17764,"goldman":17765,"liege":17766,"porcelain":17767,"rag":17768,"waterford":17769,"benz":17770,"attracts":17771,"hopeful":17772,"battling":17773,"ottomans":17774,"kensington":17775,"baked":17776,"hymns":17777,"cheyenne":17778,"lattice":17779,"levine":17780,"borrow":17781,"polymer":17782,"clashes":17783,"michaels":17784,"monitored":17785,"commitments":17786,"denounced":17787,"##25":17788,"##von":17789,"cavity":17790,"##oney":17791,"hobby":17792,"akin":17793,"##holders":17794,"futures":17795,"intricate":17796,"cornish":17797,"patty":17798,"##oned":17799,"illegally":17800,"dolphin":17801,"##lag":17802,"barlow":17803,"yellowish":17804,"maddie":17805,"apologized":17806,"luton":17807,"plagued":17808,"##puram":17809,"nana":17810,"##rds":17811,"sway":17812,"fanny":17813,"łodz":17814,"##rino":17815,"psi":17816,"suspicions":17817,"hanged":17818,"##eding":17819,"initiate":17820,"charlton":17821,"##por":17822,"nak":17823,"competent":17824,"235":17825,"analytical":17826,"annex":17827,"wardrobe":17828,"reservations":17829,"##rma":17830,"sect":17831,"162":17832,"fairfax":17833,"hedge":17834,"piled":17835,"buckingham":17836,"uneven":17837,"bauer":17838,"simplicity":17839,"snyder":17840,"interpret":17841,"accountability":17842,"donors":17843,"moderately":17844,"byrd":17845,"continents":17846,"##cite":17847,"##max":17848,"disciple":17849,"hr":17850,"jamaican":17851,"ping":17852,"nominees":17853,"##uss":17854,"mongolian":17855,"diver":17856,"attackers":17857,"eagerly":17858,"ideological":17859,"pillows":17860,"miracles":17861,"apartheid":17862,"revolver":17863,"sulfur":17864,"clinics":17865,"moran":17866,"163":17867,"##enko":17868,"ile":17869,"katy":17870,"rhetoric":17871,"##icated":17872,"chronology":17873,"recycling":17874,"##hrer":17875,"elongated":17876,"mughal":17877,"pascal":17878,"profiles":17879,"vibration":17880,"databases":17881,"domination":17882,"##fare":17883,"##rant":17884,"matthias":17885,"digest":17886,"rehearsal":17887,"polling":17888,"weiss":17889,"initiation":17890,"reeves":17891,"clinging":17892,"flourished":17893,"impress":17894,"ngo":17895,"##hoff":17896,"##ume":17897,"buckley":17898,"symposium":17899,"rhythms":17900,"weed":17901,"emphasize":17902,"transforming":17903,"##taking":17904,"##gence":17905,"##yman":17906,"accountant":17907,"analyze":17908,"flicker":17909,"foil":17910,"priesthood":17911,"voluntarily":17912,"decreases":17913,"##80":17914,"##hya":17915,"slater":17916,"sv":17917,"charting":17918,"mcgill":17919,"##lde":17920,"moreno":17921,"##iu":17922,"besieged":17923,"zur":17924,"robes":17925,"##phic":17926,"admitting":17927,"api":17928,"deported":17929,"turmoil":17930,"peyton":17931,"earthquakes":17932,"##ares":17933,"nationalists":17934,"beau":17935,"clair":17936,"brethren":17937,"interrupt":17938,"welch":17939,"curated":17940,"galerie":17941,"requesting":17942,"164":17943,"##ested":17944,"impending":17945,"steward":17946,"viper":17947,"##vina":17948,"complaining":17949,"beautifully":17950,"brandy":17951,"foam":17952,"nl":17953,"1660":17954,"##cake":17955,"alessandro":17956,"punches":17957,"laced":17958,"explanations":17959,"##lim":17960,"attribute":17961,"clit":17962,"reggie":17963,"discomfort":17964,"##cards":17965,"smoothed":17966,"whales":17967,"##cene":17968,"adler":17969,"countered":17970,"duffy":17971,"disciplinary":17972,"widening":17973,"recipe":17974,"reliance":17975,"conducts":17976,"goats":17977,"gradient":17978,"preaching":17979,"##shaw":17980,"matilda":17981,"quasi":17982,"striped":17983,"meridian":17984,"cannabis":17985,"cordoba":17986,"certificates":17987,"##agh":17988,"##tering":17989,"graffiti":17990,"hangs":17991,"pilgrims":17992,"repeats":17993,"##ych":17994,"revive":17995,"urine":17996,"etat":17997,"##hawk":17998,"fueled":17999,"belts":18000,"fuzzy":18001,"susceptible":18002,"##hang":18003,"mauritius":18004,"salle":18005,"sincere":18006,"beers":18007,"hooks":18008,"##cki":18009,"arbitration":18010,"entrusted":18011,"advise":18012,"sniffed":18013,"seminar":18014,"junk":18015,"donnell":18016,"processors":18017,"principality":18018,"strapped":18019,"celia":18020,"mendoza":18021,"everton":18022,"fortunes":18023,"prejudice":18024,"starving":18025,"reassigned":18026,"steamer":18027,"##lund":18028,"tuck":18029,"evenly":18030,"foreman":18031,"##ffen":18032,"dans":18033,"375":18034,"envisioned":18035,"slit":18036,"##xy":18037,"baseman":18038,"liberia":18039,"rosemary":18040,"##weed":18041,"electrified":18042,"periodically":18043,"potassium":18044,"stride":18045,"contexts":18046,"sperm":18047,"slade":18048,"mariners":18049,"influx":18050,"bianca":18051,"subcommittee":18052,"##rane":18053,"spilling":18054,"icao":18055,"estuary":18056,"##nock":18057,"delivers":18058,"iphone":18059,"##ulata":18060,"isa":18061,"mira":18062,"bohemian":18063,"dessert":18064,"##sbury":18065,"welcoming":18066,"proudly":18067,"slowing":18068,"##chs":18069,"musee":18070,"ascension":18071,"russ":18072,"##vian":18073,"waits":18074,"##psy":18075,"africans":18076,"exploit":18077,"##morphic":18078,"gov":18079,"eccentric":18080,"crab":18081,"peck":18082,"##ull":18083,"entrances":18084,"formidable":18085,"marketplace":18086,"groom":18087,"bolted":18088,"metabolism":18089,"patton":18090,"robbins":18091,"courier":18092,"payload":18093,"endure":18094,"##ifier":18095,"andes":18096,"refrigerator":18097,"##pr":18098,"ornate":18099,"##uca":18100,"ruthless":18101,"illegitimate":18102,"masonry":18103,"strasbourg":18104,"bikes":18105,"adobe":18106,"##³":18107,"apples":18108,"quintet":18109,"willingly":18110,"niche":18111,"bakery":18112,"corpses":18113,"energetic":18114,"##cliffe":18115,"##sser":18116,"##ards":18117,"177":18118,"centimeters":18119,"centro":18120,"fuscous":18121,"cretaceous":18122,"rancho":18123,"##yde":18124,"andrei":18125,"telecom":18126,"tottenham":18127,"oasis":18128,"ordination":18129,"vulnerability":18130,"presiding":18131,"corey":18132,"cp":18133,"penguins":18134,"sims":18135,"##pis":18136,"malawi":18137,"piss":18138,"##48":18139,"correction":18140,"##cked":18141,"##ffle":18142,"##ryn":18143,"countdown":18144,"detectives":18145,"psychiatrist":18146,"psychedelic":18147,"dinosaurs":18148,"blouse":18149,"##get":18150,"choi":18151,"vowed":18152,"##oz":18153,"randomly":18154,"##pol":18155,"49ers":18156,"scrub":18157,"blanche":18158,"bruins":18159,"dusseldorf":18160,"##using":18161,"unwanted":18162,"##ums":18163,"212":18164,"dominique":18165,"elevations":18166,"headlights":18167,"om":18168,"laguna":18169,"##oga":18170,"1750":18171,"famously":18172,"ignorance":18173,"shrewsbury":18174,"##aine":18175,"ajax":18176,"breuning":18177,"che":18178,"confederacy":18179,"greco":18180,"overhaul":18181,"##screen":18182,"paz":18183,"skirts":18184,"disagreement":18185,"cruelty":18186,"jagged":18187,"phoebe":18188,"shifter":18189,"hovered":18190,"viruses":18191,"##wes":18192,"mandy":18193,"##lined":18194,"##gc":18195,"landlord":18196,"squirrel":18197,"dashed":18198,"##ι":18199,"ornamental":18200,"gag":18201,"wally":18202,"grange":18203,"literal":18204,"spurs":18205,"undisclosed":18206,"proceeding":18207,"yin":18208,"##text":18209,"billie":18210,"orphan":18211,"spanned":18212,"humidity":18213,"indy":18214,"weighted":18215,"presentations":18216,"explosions":18217,"lucian":18218,"##tary":18219,"vaughn":18220,"hindus":18221,"##anga":18222,"##hell":18223,"psycho":18224,"171":18225,"daytona":18226,"protects":18227,"efficiently":18228,"rematch":18229,"sly":18230,"tandem":18231,"##oya":18232,"rebranded":18233,"impaired":18234,"hee":18235,"metropolis":18236,"peach":18237,"godfrey":18238,"diaspora":18239,"ethnicity":18240,"prosperous":18241,"gleaming":18242,"dar":18243,"grossing":18244,"playback":18245,"##rden":18246,"stripe":18247,"pistols":18248,"##tain":18249,"births":18250,"labelled":18251,"##cating":18252,"172":18253,"rudy":18254,"alba":18255,"##onne":18256,"aquarium":18257,"hostility":18258,"##gb":18259,"##tase":18260,"shudder":18261,"sumatra":18262,"hardest":18263,"lakers":18264,"consonant":18265,"creeping":18266,"demos":18267,"homicide":18268,"capsule":18269,"zeke":18270,"liberties":18271,"expulsion":18272,"pueblo":18273,"##comb":18274,"trait":18275,"transporting":18276,"##ddin":18277,"##neck":18278,"##yna":18279,"depart":18280,"gregg":18281,"mold":18282,"ledge":18283,"hangar":18284,"oldham":18285,"playboy":18286,"termination":18287,"analysts":18288,"gmbh":18289,"romero":18290,"##itic":18291,"insist":18292,"cradle":18293,"filthy":18294,"brightness":18295,"slash":18296,"shootout":18297,"deposed":18298,"bordering":18299,"##truct":18300,"isis":18301,"microwave":18302,"tumbled":18303,"sheltered":18304,"cathy":18305,"werewolves":18306,"messy":18307,"andersen":18308,"convex":18309,"clapped":18310,"clinched":18311,"satire":18312,"wasting":18313,"edo":18314,"vc":18315,"rufus":18316,"##jak":18317,"mont":18318,"##etti":18319,"poznan":18320,"##keeping":18321,"restructuring":18322,"transverse":18323,"##rland":18324,"azerbaijani":18325,"slovene":18326,"gestures":18327,"roommate":18328,"choking":18329,"shear":18330,"##quist":18331,"vanguard":18332,"oblivious":18333,"##hiro":18334,"disagreed":18335,"baptism":18336,"##lich":18337,"coliseum":18338,"##aceae":18339,"salvage":18340,"societe":18341,"cory":18342,"locke":18343,"relocation":18344,"relying":18345,"versailles":18346,"ahl":18347,"swelling":18348,"##elo":18349,"cheerful":18350,"##word":18351,"##edes":18352,"gin":18353,"sarajevo":18354,"obstacle":18355,"diverted":18356,"##nac":18357,"messed":18358,"thoroughbred":18359,"fluttered":18360,"utrecht":18361,"chewed":18362,"acquaintance":18363,"assassins":18364,"dispatch":18365,"mirza":18366,"##wart":18367,"nike":18368,"salzburg":18369,"swell":18370,"yen":18371,"##gee":18372,"idle":18373,"ligue":18374,"samson":18375,"##nds":18376,"##igh":18377,"playful":18378,"spawned":18379,"##cise":18380,"tease":18381,"##case":18382,"burgundy":18383,"##bot":18384,"stirring":18385,"skeptical":18386,"interceptions":18387,"marathi":18388,"##dies":18389,"bedrooms":18390,"aroused":18391,"pinch":18392,"##lik":18393,"preferences":18394,"tattoos":18395,"buster":18396,"digitally":18397,"projecting":18398,"rust":18399,"##ital":18400,"kitten":18401,"priorities":18402,"addison":18403,"pseudo":18404,"##guard":18405,"dusk":18406,"icons":18407,"sermon":18408,"##psis":18409,"##iba":18410,"bt":18411,"##lift":18412,"##xt":18413,"ju":18414,"truce":18415,"rink":18416,"##dah":18417,"##wy":18418,"defects":18419,"psychiatry":18420,"offences":18421,"calculate":18422,"glucose":18423,"##iful":18424,"##rized":18425,"##unda":18426,"francaise":18427,"##hari":18428,"richest":18429,"warwickshire":18430,"carly":18431,"1763":18432,"purity":18433,"redemption":18434,"lending":18435,"##cious":18436,"muse":18437,"bruises":18438,"cerebral":18439,"aero":18440,"carving":18441,"##name":18442,"preface":18443,"terminology":18444,"invade":18445,"monty":18446,"##int":18447,"anarchist":18448,"blurred":18449,"##iled":18450,"rossi":18451,"treats":18452,"guts":18453,"shu":18454,"foothills":18455,"ballads":18456,"undertaking":18457,"premise":18458,"cecilia":18459,"affiliates":18460,"blasted":18461,"conditional":18462,"wilder":18463,"minors":18464,"drone":18465,"rudolph":18466,"buffy":18467,"swallowing":18468,"horton":18469,"attested":18470,"##hop":18471,"rutherford":18472,"howell":18473,"primetime":18474,"livery":18475,"penal":18476,"##bis":18477,"minimize":18478,"hydro":18479,"wrecked":18480,"wrought":18481,"palazzo":18482,"##gling":18483,"cans":18484,"vernacular":18485,"friedman":18486,"nobleman":18487,"shale":18488,"walnut":18489,"danielle":18490,"##ection":18491,"##tley":18492,"sears":18493,"##kumar":18494,"chords":18495,"lend":18496,"flipping":18497,"streamed":18498,"por":18499,"dracula":18500,"gallons":18501,"sacrifices":18502,"gamble":18503,"orphanage":18504,"##iman":18505,"mckenzie":18506,"##gible":18507,"boxers":18508,"daly":18509,"##balls":18510,"##ان":18511,"208":18512,"##ific":18513,"##rative":18514,"##iq":18515,"exploited":18516,"slated":18517,"##uity":18518,"circling":18519,"hillary":18520,"pinched":18521,"goldberg":18522,"provost":18523,"campaigning":18524,"lim":18525,"piles":18526,"ironically":18527,"jong":18528,"mohan":18529,"successors":18530,"usaf":18531,"##tem":18532,"##ught":18533,"autobiographical":18534,"haute":18535,"preserves":18536,"##ending":18537,"acquitted":18538,"comparisons":18539,"203":18540,"hydroelectric":18541,"gangs":18542,"cypriot":18543,"torpedoes":18544,"rushes":18545,"chrome":18546,"derive":18547,"bumps":18548,"instability":18549,"fiat":18550,"pets":18551,"##mbe":18552,"silas":18553,"dye":18554,"reckless":18555,"settler":18556,"##itation":18557,"info":18558,"heats":18559,"##writing":18560,"176":18561,"canonical":18562,"maltese":18563,"fins":18564,"mushroom":18565,"stacy":18566,"aspen":18567,"avid":18568,"##kur":18569,"##loading":18570,"vickers":18571,"gaston":18572,"hillside":18573,"statutes":18574,"wilde":18575,"gail":18576,"kung":18577,"sabine":18578,"comfortably":18579,"motorcycles":18580,"##rgo":18581,"169":18582,"pneumonia":18583,"fetch":18584,"##sonic":18585,"axel":18586,"faintly":18587,"parallels":18588,"##oop":18589,"mclaren":18590,"spouse":18591,"compton":18592,"interdisciplinary":18593,"miner":18594,"##eni":18595,"181":18596,"clamped":18597,"##chal":18598,"##llah":18599,"separates":18600,"versa":18601,"##mler":18602,"scarborough":18603,"labrador":18604,"##lity":18605,"##osing":18606,"rutgers":18607,"hurdles":18608,"como":18609,"166":18610,"burt":18611,"divers":18612,"##100":18613,"wichita":18614,"cade":18615,"coincided":18616,"##erson":18617,"bruised":18618,"mla":18619,"##pper":18620,"vineyard":18621,"##ili":18622,"##brush":18623,"notch":18624,"mentioning":18625,"jase":18626,"hearted":18627,"kits":18628,"doe":18629,"##acle":18630,"pomerania":18631,"##ady":18632,"ronan":18633,"seizure":18634,"pavel":18635,"problematic":18636,"##zaki":18637,"domenico":18638,"##ulin":18639,"catering":18640,"penelope":18641,"dependence":18642,"parental":18643,"emilio":18644,"ministerial":18645,"atkinson":18646,"##bolic":18647,"clarkson":18648,"chargers":18649,"colby":18650,"grill":18651,"peeked":18652,"arises":18653,"summon":18654,"##aged":18655,"fools":18656,"##grapher":18657,"faculties":18658,"qaeda":18659,"##vial":18660,"garner":18661,"refurbished":18662,"##hwa":18663,"geelong":18664,"disasters":18665,"nudged":18666,"bs":18667,"shareholder":18668,"lori":18669,"algae":18670,"reinstated":18671,"rot":18672,"##ades":18673,"##nous":18674,"invites":18675,"stainless":18676,"183":18677,"inclusive":18678,"##itude":18679,"diocesan":18680,"til":18681,"##icz":18682,"denomination":18683,"##xa":18684,"benton":18685,"floral":18686,"registers":18687,"##ider":18688,"##erman":18689,"##kell":18690,"absurd":18691,"brunei":18692,"guangzhou":18693,"hitter":18694,"retaliation":18695,"##uled":18696,"##eve":18697,"blanc":18698,"nh":18699,"consistency":18700,"contamination":18701,"##eres":18702,"##rner":18703,"dire":18704,"palermo":18705,"broadcasters":18706,"diaries":18707,"inspire":18708,"vols":18709,"brewer":18710,"tightening":18711,"ky":18712,"mixtape":18713,"hormone":18714,"##tok":18715,"stokes":18716,"##color":18717,"##dly":18718,"##ssi":18719,"pg":18720,"##ometer":18721,"##lington":18722,"sanitation":18723,"##tility":18724,"intercontinental":18725,"apps":18726,"##adt":18727,"¹⁄₂":18728,"cylinders":18729,"economies":18730,"favourable":18731,"unison":18732,"croix":18733,"gertrude":18734,"odyssey":18735,"vanity":18736,"dangling":18737,"##logists":18738,"upgrades":18739,"dice":18740,"middleweight":18741,"practitioner":18742,"##ight":18743,"206":18744,"henrik":18745,"parlor":18746,"orion":18747,"angered":18748,"lac":18749,"python":18750,"blurted":18751,"##rri":18752,"sensual":18753,"intends":18754,"swings":18755,"angled":18756,"##phs":18757,"husky":18758,"attain":18759,"peerage":18760,"precinct":18761,"textiles":18762,"cheltenham":18763,"shuffled":18764,"dai":18765,"confess":18766,"tasting":18767,"bhutan":18768,"##riation":18769,"tyrone":18770,"segregation":18771,"abrupt":18772,"ruiz":18773,"##rish":18774,"smirked":18775,"blackwell":18776,"confidential":18777,"browning":18778,"amounted":18779,"##put":18780,"vase":18781,"scarce":18782,"fabulous":18783,"raided":18784,"staple":18785,"guyana":18786,"unemployed":18787,"glider":18788,"shay":18789,"##tow":18790,"carmine":18791,"troll":18792,"intervene":18793,"squash":18794,"superstar":18795,"##uce":18796,"cylindrical":18797,"len":18798,"roadway":18799,"researched":18800,"handy":18801,"##rium":18802,"##jana":18803,"meta":18804,"lao":18805,"declares":18806,"##rring":18807,"##tadt":18808,"##elin":18809,"##kova":18810,"willem":18811,"shrubs":18812,"napoleonic":18813,"realms":18814,"skater":18815,"qi":18816,"volkswagen":18817,"##ł":18818,"tad":18819,"hara":18820,"archaeologist":18821,"awkwardly":18822,"eerie":18823,"##kind":18824,"wiley":18825,"##heimer":18826,"##24":18827,"titus":18828,"organizers":18829,"cfl":18830,"crusaders":18831,"lama":18832,"usb":18833,"vent":18834,"enraged":18835,"thankful":18836,"occupants":18837,"maximilian":18838,"##gaard":18839,"possessing":18840,"textbooks":18841,"##oran":18842,"collaborator":18843,"quaker":18844,"##ulo":18845,"avalanche":18846,"mono":18847,"silky":18848,"straits":18849,"isaiah":18850,"mustang":18851,"surged":18852,"resolutions":18853,"potomac":18854,"descend":18855,"cl":18856,"kilograms":18857,"plato":18858,"strains":18859,"saturdays":18860,"##olin":18861,"bernstein":18862,"##ype":18863,"holstein":18864,"ponytail":18865,"##watch":18866,"belize":18867,"conversely":18868,"heroine":18869,"perpetual":18870,"##ylus":18871,"charcoal":18872,"piedmont":18873,"glee":18874,"negotiating":18875,"backdrop":18876,"prologue":18877,"##jah":18878,"##mmy":18879,"pasadena":18880,"climbs":18881,"ramos":18882,"sunni":18883,"##holm":18884,"##tner":18885,"##tri":18886,"anand":18887,"deficiency":18888,"hertfordshire":18889,"stout":18890,"##avi":18891,"aperture":18892,"orioles":18893,"##irs":18894,"doncaster":18895,"intrigued":18896,"bombed":18897,"coating":18898,"otis":18899,"##mat":18900,"cocktail":18901,"##jit":18902,"##eto":18903,"amir":18904,"arousal":18905,"sar":18906,"##proof":18907,"##act":18908,"##ories":18909,"dixie":18910,"pots":18911,"##bow":18912,"whereabouts":18913,"159":18914,"##fted":18915,"drains":18916,"bullying":18917,"cottages":18918,"scripture":18919,"coherent":18920,"fore":18921,"poe":18922,"appetite":18923,"##uration":18924,"sampled":18925,"##ators":18926,"##dp":18927,"derrick":18928,"rotor":18929,"jays":18930,"peacock":18931,"installment":18932,"##rro":18933,"advisors":18934,"##coming":18935,"rodeo":18936,"scotch":18937,"##mot":18938,"##db":18939,"##fen":18940,"##vant":18941,"ensued":18942,"rodrigo":18943,"dictatorship":18944,"martyrs":18945,"twenties":18946,"##н":18947,"towed":18948,"incidence":18949,"marta":18950,"rainforest":18951,"sai":18952,"scaled":18953,"##cles":18954,"oceanic":18955,"qualifiers":18956,"symphonic":18957,"mcbride":18958,"dislike":18959,"generalized":18960,"aubrey":18961,"colonization":18962,"##iation":18963,"##lion":18964,"##ssing":18965,"disliked":18966,"lublin":18967,"salesman":18968,"##ulates":18969,"spherical":18970,"whatsoever":18971,"sweating":18972,"avalon":18973,"contention":18974,"punt":18975,"severity":18976,"alderman":18977,"atari":18978,"##dina":18979,"##grant":18980,"##rop":18981,"scarf":18982,"seville":18983,"vertices":18984,"annexation":18985,"fairfield":18986,"fascination":18987,"inspiring":18988,"launches":18989,"palatinate":18990,"regretted":18991,"##rca":18992,"feral":18993,"##iom":18994,"elk":18995,"nap":18996,"olsen":18997,"reddy":18998,"yong":18999,"##leader":19000,"##iae":19001,"garment":19002,"transports":19003,"feng":19004,"gracie":19005,"outrage":19006,"viceroy":19007,"insides":19008,"##esis":19009,"breakup":19010,"grady":19011,"organizer":19012,"softer":19013,"grimaced":19014,"222":19015,"murals":19016,"galicia":19017,"arranging":19018,"vectors":19019,"##rsten":19020,"bas":19021,"##sb":19022,"##cens":19023,"sloan":19024,"##eka":19025,"bitten":19026,"ara":19027,"fender":19028,"nausea":19029,"bumped":19030,"kris":19031,"banquet":19032,"comrades":19033,"detector":19034,"persisted":19035,"##llan":19036,"adjustment":19037,"endowed":19038,"cinemas":19039,"##shot":19040,"sellers":19041,"##uman":19042,"peek":19043,"epa":19044,"kindly":19045,"neglect":19046,"simpsons":19047,"talon":19048,"mausoleum":19049,"runaway":19050,"hangul":19051,"lookout":19052,"##cic":19053,"rewards":19054,"coughed":19055,"acquainted":19056,"chloride":19057,"##ald":19058,"quicker":19059,"accordion":19060,"neolithic":19061,"##qa":19062,"artemis":19063,"coefficient":19064,"lenny":19065,"pandora":19066,"tx":19067,"##xed":19068,"ecstasy":19069,"litter":19070,"segunda":19071,"chairperson":19072,"gemma":19073,"hiss":19074,"rumor":19075,"vow":19076,"nasal":19077,"antioch":19078,"compensate":19079,"patiently":19080,"transformers":19081,"##eded":19082,"judo":19083,"morrow":19084,"penis":19085,"posthumous":19086,"philips":19087,"bandits":19088,"husbands":19089,"denote":19090,"flaming":19091,"##any":19092,"##phones":19093,"langley":19094,"yorker":19095,"1760":19096,"walters":19097,"##uo":19098,"##kle":19099,"gubernatorial":19100,"fatty":19101,"samsung":19102,"leroy":19103,"outlaw":19104,"##nine":19105,"unpublished":19106,"poole":19107,"jakob":19108,"##ᵢ":19109,"##ₙ":19110,"crete":19111,"distorted":19112,"superiority":19113,"##dhi":19114,"intercept":19115,"crust":19116,"mig":19117,"claus":19118,"crashes":19119,"positioning":19120,"188":19121,"stallion":19122,"301":19123,"frontal":19124,"armistice":19125,"##estinal":19126,"elton":19127,"aj":19128,"encompassing":19129,"camel":19130,"commemorated":19131,"malaria":19132,"woodward":19133,"calf":19134,"cigar":19135,"penetrate":19136,"##oso":19137,"willard":19138,"##rno":19139,"##uche":19140,"illustrate":19141,"amusing":19142,"convergence":19143,"noteworthy":19144,"##lma":19145,"##rva":19146,"journeys":19147,"realise":19148,"manfred":19149,"##sable":19150,"410":19151,"##vocation":19152,"hearings":19153,"fiance":19154,"##posed":19155,"educators":19156,"provoked":19157,"adjusting":19158,"##cturing":19159,"modular":19160,"stockton":19161,"paterson":19162,"vlad":19163,"rejects":19164,"electors":19165,"selena":19166,"maureen":19167,"##tres":19168,"uber":19169,"##rce":19170,"swirled":19171,"##num":19172,"proportions":19173,"nanny":19174,"pawn":19175,"naturalist":19176,"parma":19177,"apostles":19178,"awoke":19179,"ethel":19180,"wen":19181,"##bey":19182,"monsoon":19183,"overview":19184,"##inating":19185,"mccain":19186,"rendition":19187,"risky":19188,"adorned":19189,"##ih":19190,"equestrian":19191,"germain":19192,"nj":19193,"conspicuous":19194,"confirming":19195,"##yoshi":19196,"shivering":19197,"##imeter":19198,"milestone":19199,"rumours":19200,"flinched":19201,"bounds":19202,"smacked":19203,"token":19204,"##bei":19205,"lectured":19206,"automobiles":19207,"##shore":19208,"impacted":19209,"##iable":19210,"nouns":19211,"nero":19212,"##leaf":19213,"ismail":19214,"prostitute":19215,"trams":19216,"##lace":19217,"bridget":19218,"sud":19219,"stimulus":19220,"impressions":19221,"reins":19222,"revolves":19223,"##oud":19224,"##gned":19225,"giro":19226,"honeymoon":19227,"##swell":19228,"criterion":19229,"##sms":19230,"##uil":19231,"libyan":19232,"prefers":19233,"##osition":19234,"211":19235,"preview":19236,"sucks":19237,"accusation":19238,"bursts":19239,"metaphor":19240,"diffusion":19241,"tolerate":19242,"faye":19243,"betting":19244,"cinematographer":19245,"liturgical":19246,"specials":19247,"bitterly":19248,"humboldt":19249,"##ckle":19250,"flux":19251,"rattled":19252,"##itzer":19253,"archaeologists":19254,"odor":19255,"authorised":19256,"marshes":19257,"discretion":19258,"##ов":19259,"alarmed":19260,"archaic":19261,"inverse":19262,"##leton":19263,"explorers":19264,"##pine":19265,"drummond":19266,"tsunami":19267,"woodlands":19268,"##minate":19269,"##tland":19270,"booklet":19271,"insanity":19272,"owning":19273,"insert":19274,"crafted":19275,"calculus":19276,"##tore":19277,"receivers":19278,"##bt":19279,"stung":19280,"##eca":19281,"##nched":19282,"prevailing":19283,"travellers":19284,"eyeing":19285,"lila":19286,"graphs":19287,"##borne":19288,"178":19289,"julien":19290,"##won":19291,"morale":19292,"adaptive":19293,"therapist":19294,"erica":19295,"cw":19296,"libertarian":19297,"bowman":19298,"pitches":19299,"vita":19300,"##ional":19301,"crook":19302,"##ads":19303,"##entation":19304,"caledonia":19305,"mutiny":19306,"##sible":19307,"1840s":19308,"automation":19309,"##ß":19310,"flock":19311,"##pia":19312,"ironic":19313,"pathology":19314,"##imus":19315,"remarried":19316,"##22":19317,"joker":19318,"withstand":19319,"energies":19320,"##att":19321,"shropshire":19322,"hostages":19323,"madeleine":19324,"tentatively":19325,"conflicting":19326,"mateo":19327,"recipes":19328,"euros":19329,"ol":19330,"mercenaries":19331,"nico":19332,"##ndon":19333,"albuquerque":19334,"augmented":19335,"mythical":19336,"bel":19337,"freud":19338,"##child":19339,"cough":19340,"##lica":19341,"365":19342,"freddy":19343,"lillian":19344,"genetically":19345,"nuremberg":19346,"calder":19347,"209":19348,"bonn":19349,"outdoors":19350,"paste":19351,"suns":19352,"urgency":19353,"vin":19354,"restraint":19355,"tyson":19356,"##cera":19357,"##selle":19358,"barrage":19359,"bethlehem":19360,"kahn":19361,"##par":19362,"mounts":19363,"nippon":19364,"barony":19365,"happier":19366,"ryu":19367,"makeshift":19368,"sheldon":19369,"blushed":19370,"castillo":19371,"barking":19372,"listener":19373,"taped":19374,"bethel":19375,"fluent":19376,"headlines":19377,"pornography":19378,"rum":19379,"disclosure":19380,"sighing":19381,"mace":19382,"doubling":19383,"gunther":19384,"manly":19385,"##plex":19386,"rt":19387,"interventions":19388,"physiological":19389,"forwards":19390,"emerges":19391,"##tooth":19392,"##gny":19393,"compliment":19394,"rib":19395,"recession":19396,"visibly":19397,"barge":19398,"faults":19399,"connector":19400,"exquisite":19401,"prefect":19402,"##rlin":19403,"patio":19404,"##cured":19405,"elevators":19406,"brandt":19407,"italics":19408,"pena":19409,"173":19410,"wasp":19411,"satin":19412,"ea":19413,"botswana":19414,"graceful":19415,"respectable":19416,"##jima":19417,"##rter":19418,"##oic":19419,"franciscan":19420,"generates":19421,"##dl":19422,"alfredo":19423,"disgusting":19424,"##olate":19425,"##iously":19426,"sherwood":19427,"warns":19428,"cod":19429,"promo":19430,"cheryl":19431,"sino":19432,"##ة":19433,"##escu":19434,"twitch":19435,"##zhi":19436,"brownish":19437,"thom":19438,"ortiz":19439,"##dron":19440,"densely":19441,"##beat":19442,"carmel":19443,"reinforce":19444,"##bana":19445,"187":19446,"anastasia":19447,"downhill":19448,"vertex":19449,"contaminated":19450,"remembrance":19451,"harmonic":19452,"homework":19453,"##sol":19454,"fiancee":19455,"gears":19456,"olds":19457,"angelica":19458,"loft":19459,"ramsay":19460,"quiz":19461,"colliery":19462,"sevens":19463,"##cape":19464,"autism":19465,"##hil":19466,"walkway":19467,"##boats":19468,"ruben":19469,"abnormal":19470,"ounce":19471,"khmer":19472,"##bbe":19473,"zachary":19474,"bedside":19475,"morphology":19476,"punching":19477,"##olar":19478,"sparrow":19479,"convinces":19480,"##35":19481,"hewitt":19482,"queer":19483,"remastered":19484,"rods":19485,"mabel":19486,"solemn":19487,"notified":19488,"lyricist":19489,"symmetric":19490,"##xide":19491,"174":19492,"encore":19493,"passports":19494,"wildcats":19495,"##uni":19496,"baja":19497,"##pac":19498,"mildly":19499,"##ease":19500,"bleed":19501,"commodity":19502,"mounds":19503,"glossy":19504,"orchestras":19505,"##omo":19506,"damian":19507,"prelude":19508,"ambitions":19509,"##vet":19510,"awhile":19511,"remotely":19512,"##aud":19513,"asserts":19514,"imply":19515,"##iques":19516,"distinctly":19517,"modelling":19518,"remedy":19519,"##dded":19520,"windshield":19521,"dani":19522,"xiao":19523,"##endra":19524,"audible":19525,"powerplant":19526,"1300":19527,"invalid":19528,"elemental":19529,"acquisitions":19530,"##hala":19531,"immaculate":19532,"libby":19533,"plata":19534,"smuggling":19535,"ventilation":19536,"denoted":19537,"minh":19538,"##morphism":19539,"430":19540,"differed":19541,"dion":19542,"kelley":19543,"lore":19544,"mocking":19545,"sabbath":19546,"spikes":19547,"hygiene":19548,"drown":19549,"runoff":19550,"stylized":19551,"tally":19552,"liberated":19553,"aux":19554,"interpreter":19555,"righteous":19556,"aba":19557,"siren":19558,"reaper":19559,"pearce":19560,"millie":19561,"##cier":19562,"##yra":19563,"gaius":19564,"##iso":19565,"captures":19566,"##ttering":19567,"dorm":19568,"claudio":19569,"##sic":19570,"benches":19571,"knighted":19572,"blackness":19573,"##ored":19574,"discount":19575,"fumble":19576,"oxidation":19577,"routed":19578,"##ς":19579,"novak":19580,"perpendicular":19581,"spoiled":19582,"fracture":19583,"splits":19584,"##urt":19585,"pads":19586,"topology":19587,"##cats":19588,"axes":19589,"fortunate":19590,"offenders":19591,"protestants":19592,"esteem":19593,"221":19594,"broadband":19595,"convened":19596,"frankly":19597,"hound":19598,"prototypes":19599,"isil":19600,"facilitated":19601,"keel":19602,"##sher":19603,"sahara":19604,"awaited":19605,"bubba":19606,"orb":19607,"prosecutors":19608,"186":19609,"hem":19610,"520":19611,"##xing":19612,"relaxing":19613,"remnant":19614,"romney":19615,"sorted":19616,"slalom":19617,"stefano":19618,"ulrich":19619,"##active":19620,"exemption":19621,"folder":19622,"pauses":19623,"foliage":19624,"hitchcock":19625,"epithet":19626,"204":19627,"criticisms":19628,"##aca":19629,"ballistic":19630,"brody":19631,"hinduism":19632,"chaotic":19633,"youths":19634,"equals":19635,"##pala":19636,"pts":19637,"thicker":19638,"analogous":19639,"capitalist":19640,"improvised":19641,"overseeing":19642,"sinatra":19643,"ascended":19644,"beverage":19645,"##tl":19646,"straightforward":19647,"##kon":19648,"curran":19649,"##west":19650,"bois":19651,"325":19652,"induce":19653,"surveying":19654,"emperors":19655,"sax":19656,"unpopular":19657,"##kk":19658,"cartoonist":19659,"fused":19660,"##mble":19661,"unto":19662,"##yuki":19663,"localities":19664,"##cko":19665,"##ln":19666,"darlington":19667,"slain":19668,"academie":19669,"lobbying":19670,"sediment":19671,"puzzles":19672,"##grass":19673,"defiance":19674,"dickens":19675,"manifest":19676,"tongues":19677,"alumnus":19678,"arbor":19679,"coincide":19680,"184":19681,"appalachian":19682,"mustafa":19683,"examiner":19684,"cabaret":19685,"traumatic":19686,"yves":19687,"bracelet":19688,"draining":19689,"heroin":19690,"magnum":19691,"baths":19692,"odessa":19693,"consonants":19694,"mitsubishi":19695,"##gua":19696,"kellan":19697,"vaudeville":19698,"##fr":19699,"joked":19700,"null":19701,"straps":19702,"probation":19703,"##ław":19704,"ceded":19705,"interfaces":19706,"##pas":19707,"##zawa":19708,"blinding":19709,"viet":19710,"224":19711,"rothschild":19712,"museo":19713,"640":19714,"huddersfield":19715,"##vr":19716,"tactic":19717,"##storm":19718,"brackets":19719,"dazed":19720,"incorrectly":19721,"##vu":19722,"reg":19723,"glazed":19724,"fearful":19725,"manifold":19726,"benefited":19727,"irony":19728,"##sun":19729,"stumbling":19730,"##rte":19731,"willingness":19732,"balkans":19733,"mei":19734,"wraps":19735,"##aba":19736,"injected":19737,"##lea":19738,"gu":19739,"syed":19740,"harmless":19741,"##hammer":19742,"bray":19743,"takeoff":19744,"poppy":19745,"timor":19746,"cardboard":19747,"astronaut":19748,"purdue":19749,"weeping":19750,"southbound":19751,"cursing":19752,"stalls":19753,"diagonal":19754,"##neer":19755,"lamar":19756,"bryce":19757,"comte":19758,"weekdays":19759,"harrington":19760,"##uba":19761,"negatively":19762,"##see":19763,"lays":19764,"grouping":19765,"##cken":19766,"##henko":19767,"affirmed":19768,"halle":19769,"modernist":19770,"##lai":19771,"hodges":19772,"smelling":19773,"aristocratic":19774,"baptized":19775,"dismiss":19776,"justification":19777,"oilers":19778,"##now":19779,"coupling":19780,"qin":19781,"snack":19782,"healer":19783,"##qing":19784,"gardener":19785,"layla":19786,"battled":19787,"formulated":19788,"stephenson":19789,"gravitational":19790,"##gill":19791,"##jun":19792,"1768":19793,"granny":19794,"coordinating":19795,"suites":19796,"##cd":19797,"##ioned":19798,"monarchs":19799,"##cote":19800,"##hips":19801,"sep":19802,"blended":19803,"apr":19804,"barrister":19805,"deposition":19806,"fia":19807,"mina":19808,"policemen":19809,"paranoid":19810,"##pressed":19811,"churchyard":19812,"covert":19813,"crumpled":19814,"creep":19815,"abandoning":19816,"tr":19817,"transmit":19818,"conceal":19819,"barr":19820,"understands":19821,"readiness":19822,"spire":19823,"##cology":19824,"##enia":19825,"##erry":19826,"610":19827,"startling":19828,"unlock":19829,"vida":19830,"bowled":19831,"slots":19832,"##nat":19833,"##islav":19834,"spaced":19835,"trusting":19836,"admire":19837,"rig":19838,"##ink":19839,"slack":19840,"##70":19841,"mv":19842,"207":19843,"casualty":19844,"##wei":19845,"classmates":19846,"##odes":19847,"##rar":19848,"##rked":19849,"amherst":19850,"furnished":19851,"evolve":19852,"foundry":19853,"menace":19854,"mead":19855,"##lein":19856,"flu":19857,"wesleyan":19858,"##kled":19859,"monterey":19860,"webber":19861,"##vos":19862,"wil":19863,"##mith":19864,"##на":19865,"bartholomew":19866,"justices":19867,"restrained":19868,"##cke":19869,"amenities":19870,"191":19871,"mediated":19872,"sewage":19873,"trenches":19874,"ml":19875,"mainz":19876,"##thus":19877,"1800s":19878,"##cula":19879,"##inski":19880,"caine":19881,"bonding":19882,"213":19883,"converts":19884,"spheres":19885,"superseded":19886,"marianne":19887,"crypt":19888,"sweaty":19889,"ensign":19890,"historia":19891,"##br":19892,"spruce":19893,"##post":19894,"##ask":19895,"forks":19896,"thoughtfully":19897,"yukon":19898,"pamphlet":19899,"ames":19900,"##uter":19901,"karma":19902,"##yya":19903,"bryn":19904,"negotiation":19905,"sighs":19906,"incapable":19907,"##mbre":19908,"##ntial":19909,"actresses":19910,"taft":19911,"##mill":19912,"luce":19913,"prevailed":19914,"##amine":19915,"1773":19916,"motionless":19917,"envoy":19918,"testify":19919,"investing":19920,"sculpted":19921,"instructors":19922,"provence":19923,"kali":19924,"cullen":19925,"horseback":19926,"##while":19927,"goodwin":19928,"##jos":19929,"gaa":19930,"norte":19931,"##ldon":19932,"modify":19933,"wavelength":19934,"abd":19935,"214":19936,"skinned":19937,"sprinter":19938,"forecast":19939,"scheduling":19940,"marries":19941,"squared":19942,"tentative":19943,"##chman":19944,"boer":19945,"##isch":19946,"bolts":19947,"swap":19948,"fisherman":19949,"assyrian":19950,"impatiently":19951,"guthrie":19952,"martins":19953,"murdoch":19954,"194":19955,"tanya":19956,"nicely":19957,"dolly":19958,"lacy":19959,"med":19960,"##45":19961,"syn":19962,"decks":19963,"fashionable":19964,"millionaire":19965,"##ust":19966,"surfing":19967,"##ml":19968,"##ision":19969,"heaved":19970,"tammy":19971,"consulate":19972,"attendees":19973,"routinely":19974,"197":19975,"fuse":19976,"saxophonist":19977,"backseat":19978,"malaya":19979,"##lord":19980,"scowl":19981,"tau":19982,"##ishly":19983,"193":19984,"sighted":19985,"steaming":19986,"##rks":19987,"303":19988,"911":19989,"##holes":19990,"##hong":19991,"ching":19992,"##wife":19993,"bless":19994,"conserved":19995,"jurassic":19996,"stacey":19997,"unix":19998,"zion":19999,"chunk":20000,"rigorous":20001,"blaine":20002,"198":20003,"peabody":20004,"slayer":20005,"dismay":20006,"brewers":20007,"nz":20008,"##jer":20009,"det":20010,"##glia":20011,"glover":20012,"postwar":20013,"int":20014,"penetration":20015,"sylvester":20016,"imitation":20017,"vertically":20018,"airlift":20019,"heiress":20020,"knoxville":20021,"viva":20022,"##uin":20023,"390":20024,"macon":20025,"##rim":20026,"##fighter":20027,"##gonal":20028,"janice":20029,"##orescence":20030,"##wari":20031,"marius":20032,"belongings":20033,"leicestershire":20034,"196":20035,"blanco":20036,"inverted":20037,"preseason":20038,"sanity":20039,"sobbing":20040,"##due":20041,"##elt":20042,"##dled":20043,"collingwood":20044,"regeneration":20045,"flickering":20046,"shortest":20047,"##mount":20048,"##osi":20049,"feminism":20050,"##lat":20051,"sherlock":20052,"cabinets":20053,"fumbled":20054,"northbound":20055,"precedent":20056,"snaps":20057,"##mme":20058,"researching":20059,"##akes":20060,"guillaume":20061,"insights":20062,"manipulated":20063,"vapor":20064,"neighbour":20065,"sap":20066,"gangster":20067,"frey":20068,"f1":20069,"stalking":20070,"scarcely":20071,"callie":20072,"barnett":20073,"tendencies":20074,"audi":20075,"doomed":20076,"assessing":20077,"slung":20078,"panchayat":20079,"ambiguous":20080,"bartlett":20081,"##etto":20082,"distributing":20083,"violating":20084,"wolverhampton":20085,"##hetic":20086,"swami":20087,"histoire":20088,"##urus":20089,"liable":20090,"pounder":20091,"groin":20092,"hussain":20093,"larsen":20094,"popping":20095,"surprises":20096,"##atter":20097,"vie":20098,"curt":20099,"##station":20100,"mute":20101,"relocate":20102,"musicals":20103,"authorization":20104,"richter":20105,"##sef":20106,"immortality":20107,"tna":20108,"bombings":20109,"##press":20110,"deteriorated":20111,"yiddish":20112,"##acious":20113,"robbed":20114,"colchester":20115,"cs":20116,"pmid":20117,"ao":20118,"verified":20119,"balancing":20120,"apostle":20121,"swayed":20122,"recognizable":20123,"oxfordshire":20124,"retention":20125,"nottinghamshire":20126,"contender":20127,"judd":20128,"invitational":20129,"shrimp":20130,"uhf":20131,"##icient":20132,"cleaner":20133,"longitudinal":20134,"tanker":20135,"##mur":20136,"acronym":20137,"broker":20138,"koppen":20139,"sundance":20140,"suppliers":20141,"##gil":20142,"4000":20143,"clipped":20144,"fuels":20145,"petite":20146,"##anne":20147,"landslide":20148,"helene":20149,"diversion":20150,"populous":20151,"landowners":20152,"auspices":20153,"melville":20154,"quantitative":20155,"##xes":20156,"ferries":20157,"nicky":20158,"##llus":20159,"doo":20160,"haunting":20161,"roche":20162,"carver":20163,"downed":20164,"unavailable":20165,"##pathy":20166,"approximation":20167,"hiroshima":20168,"##hue":20169,"garfield":20170,"valle":20171,"comparatively":20172,"keyboardist":20173,"traveler":20174,"##eit":20175,"congestion":20176,"calculating":20177,"subsidiaries":20178,"##bate":20179,"serb":20180,"modernization":20181,"fairies":20182,"deepened":20183,"ville":20184,"averages":20185,"##lore":20186,"inflammatory":20187,"tonga":20188,"##itch":20189,"co₂":20190,"squads":20191,"##hea":20192,"gigantic":20193,"serum":20194,"enjoyment":20195,"retailer":20196,"verona":20197,"35th":20198,"cis":20199,"##phobic":20200,"magna":20201,"technicians":20202,"##vati":20203,"arithmetic":20204,"##sport":20205,"levin":20206,"##dation":20207,"amtrak":20208,"chow":20209,"sienna":20210,"##eyer":20211,"backstage":20212,"entrepreneurship":20213,"##otic":20214,"learnt":20215,"tao":20216,"##udy":20217,"worcestershire":20218,"formulation":20219,"baggage":20220,"hesitant":20221,"bali":20222,"sabotage":20223,"##kari":20224,"barren":20225,"enhancing":20226,"murmur":20227,"pl":20228,"freshly":20229,"putnam":20230,"syntax":20231,"aces":20232,"medicines":20233,"resentment":20234,"bandwidth":20235,"##sier":20236,"grins":20237,"chili":20238,"guido":20239,"##sei":20240,"framing":20241,"implying":20242,"gareth":20243,"lissa":20244,"genevieve":20245,"pertaining":20246,"admissions":20247,"geo":20248,"thorpe":20249,"proliferation":20250,"sato":20251,"bela":20252,"analyzing":20253,"parting":20254,"##gor":20255,"awakened":20256,"##isman":20257,"huddled":20258,"secrecy":20259,"##kling":20260,"hush":20261,"gentry":20262,"540":20263,"dungeons":20264,"##ego":20265,"coasts":20266,"##utz":20267,"sacrificed":20268,"##chule":20269,"landowner":20270,"mutually":20271,"prevalence":20272,"programmer":20273,"adolescent":20274,"disrupted":20275,"seaside":20276,"gee":20277,"trusts":20278,"vamp":20279,"georgie":20280,"##nesian":20281,"##iol":20282,"schedules":20283,"sindh":20284,"##market":20285,"etched":20286,"hm":20287,"sparse":20288,"bey":20289,"beaux":20290,"scratching":20291,"gliding":20292,"unidentified":20293,"216":20294,"collaborating":20295,"gems":20296,"jesuits":20297,"oro":20298,"accumulation":20299,"shaping":20300,"mbe":20301,"anal":20302,"##xin":20303,"231":20304,"enthusiasts":20305,"newscast":20306,"##egan":20307,"janata":20308,"dewey":20309,"parkinson":20310,"179":20311,"ankara":20312,"biennial":20313,"towering":20314,"dd":20315,"inconsistent":20316,"950":20317,"##chet":20318,"thriving":20319,"terminate":20320,"cabins":20321,"furiously":20322,"eats":20323,"advocating":20324,"donkey":20325,"marley":20326,"muster":20327,"phyllis":20328,"leiden":20329,"##user":20330,"grassland":20331,"glittering":20332,"iucn":20333,"loneliness":20334,"217":20335,"memorandum":20336,"armenians":20337,"##ddle":20338,"popularized":20339,"rhodesia":20340,"60s":20341,"lame":20342,"##illon":20343,"sans":20344,"bikini":20345,"header":20346,"orbits":20347,"##xx":20348,"##finger":20349,"##ulator":20350,"sharif":20351,"spines":20352,"biotechnology":20353,"strolled":20354,"naughty":20355,"yates":20356,"##wire":20357,"fremantle":20358,"milo":20359,"##mour":20360,"abducted":20361,"removes":20362,"##atin":20363,"humming":20364,"wonderland":20365,"##chrome":20366,"##ester":20367,"hume":20368,"pivotal":20369,"##rates":20370,"armand":20371,"grams":20372,"believers":20373,"elector":20374,"rte":20375,"apron":20376,"bis":20377,"scraped":20378,"##yria":20379,"endorsement":20380,"initials":20381,"##llation":20382,"eps":20383,"dotted":20384,"hints":20385,"buzzing":20386,"emigration":20387,"nearer":20388,"##tom":20389,"indicators":20390,"##ulu":20391,"coarse":20392,"neutron":20393,"protectorate":20394,"##uze":20395,"directional":20396,"exploits":20397,"pains":20398,"loire":20399,"1830s":20400,"proponents":20401,"guggenheim":20402,"rabbits":20403,"ritchie":20404,"305":20405,"hectare":20406,"inputs":20407,"hutton":20408,"##raz":20409,"verify":20410,"##ako":20411,"boilers":20412,"longitude":20413,"##lev":20414,"skeletal":20415,"yer":20416,"emilia":20417,"citrus":20418,"compromised":20419,"##gau":20420,"pokemon":20421,"prescription":20422,"paragraph":20423,"eduard":20424,"cadillac":20425,"attire":20426,"categorized":20427,"kenyan":20428,"weddings":20429,"charley":20430,"##bourg":20431,"entertain":20432,"monmouth":20433,"##lles":20434,"nutrients":20435,"davey":20436,"mesh":20437,"incentive":20438,"practised":20439,"ecosystems":20440,"kemp":20441,"subdued":20442,"overheard":20443,"##rya":20444,"bodily":20445,"maxim":20446,"##nius":20447,"apprenticeship":20448,"ursula":20449,"##fight":20450,"lodged":20451,"rug":20452,"silesian":20453,"unconstitutional":20454,"patel":20455,"inspected":20456,"coyote":20457,"unbeaten":20458,"##hak":20459,"34th":20460,"disruption":20461,"convict":20462,"parcel":20463,"##cl":20464,"##nham":20465,"collier":20466,"implicated":20467,"mallory":20468,"##iac":20469,"##lab":20470,"susannah":20471,"winkler":20472,"##rber":20473,"shia":20474,"phelps":20475,"sediments":20476,"graphical":20477,"robotic":20478,"##sner":20479,"adulthood":20480,"mart":20481,"smoked":20482,"##isto":20483,"kathryn":20484,"clarified":20485,"##aran":20486,"divides":20487,"convictions":20488,"oppression":20489,"pausing":20490,"burying":20491,"##mt":20492,"federico":20493,"mathias":20494,"eileen":20495,"##tana":20496,"kite":20497,"hunched":20498,"##acies":20499,"189":20500,"##atz":20501,"disadvantage":20502,"liza":20503,"kinetic":20504,"greedy":20505,"paradox":20506,"yokohama":20507,"dowager":20508,"trunks":20509,"ventured":20510,"##gement":20511,"gupta":20512,"vilnius":20513,"olaf":20514,"##thest":20515,"crimean":20516,"hopper":20517,"##ej":20518,"progressively":20519,"arturo":20520,"mouthed":20521,"arrondissement":20522,"##fusion":20523,"rubin":20524,"simulcast":20525,"oceania":20526,"##orum":20527,"##stra":20528,"##rred":20529,"busiest":20530,"intensely":20531,"navigator":20532,"cary":20533,"##vine":20534,"##hini":20535,"##bies":20536,"fife":20537,"rowe":20538,"rowland":20539,"posing":20540,"insurgents":20541,"shafts":20542,"lawsuits":20543,"activate":20544,"conor":20545,"inward":20546,"culturally":20547,"garlic":20548,"265":20549,"##eering":20550,"eclectic":20551,"##hui":20552,"##kee":20553,"##nl":20554,"furrowed":20555,"vargas":20556,"meteorological":20557,"rendezvous":20558,"##aus":20559,"culinary":20560,"commencement":20561,"##dition":20562,"quota":20563,"##notes":20564,"mommy":20565,"salaries":20566,"overlapping":20567,"mule":20568,"##iology":20569,"##mology":20570,"sums":20571,"wentworth":20572,"##isk":20573,"##zione":20574,"mainline":20575,"subgroup":20576,"##illy":20577,"hack":20578,"plaintiff":20579,"verdi":20580,"bulb":20581,"differentiation":20582,"engagements":20583,"multinational":20584,"supplemented":20585,"bertrand":20586,"caller":20587,"regis":20588,"##naire":20589,"##sler":20590,"##arts":20591,"##imated":20592,"blossom":20593,"propagation":20594,"kilometer":20595,"viaduct":20596,"vineyards":20597,"##uate":20598,"beckett":20599,"optimization":20600,"golfer":20601,"songwriters":20602,"seminal":20603,"semitic":20604,"thud":20605,"volatile":20606,"evolving":20607,"ridley":20608,"##wley":20609,"trivial":20610,"distributions":20611,"scandinavia":20612,"jiang":20613,"##ject":20614,"wrestled":20615,"insistence":20616,"##dio":20617,"emphasizes":20618,"napkin":20619,"##ods":20620,"adjunct":20621,"rhyme":20622,"##ricted":20623,"##eti":20624,"hopeless":20625,"surrounds":20626,"tremble":20627,"32nd":20628,"smoky":20629,"##ntly":20630,"oils":20631,"medicinal":20632,"padded":20633,"steer":20634,"wilkes":20635,"219":20636,"255":20637,"concessions":20638,"hue":20639,"uniquely":20640,"blinded":20641,"landon":20642,"yahoo":20643,"##lane":20644,"hendrix":20645,"commemorating":20646,"dex":20647,"specify":20648,"chicks":20649,"##ggio":20650,"intercity":20651,"1400":20652,"morley":20653,"##torm":20654,"highlighting":20655,"##oting":20656,"pang":20657,"oblique":20658,"stalled":20659,"##liner":20660,"flirting":20661,"newborn":20662,"1769":20663,"bishopric":20664,"shaved":20665,"232":20666,"currie":20667,"##ush":20668,"dharma":20669,"spartan":20670,"##ooped":20671,"favorites":20672,"smug":20673,"novella":20674,"sirens":20675,"abusive":20676,"creations":20677,"espana":20678,"##lage":20679,"paradigm":20680,"semiconductor":20681,"sheen":20682,"##rdo":20683,"##yen":20684,"##zak":20685,"nrl":20686,"renew":20687,"##pose":20688,"##tur":20689,"adjutant":20690,"marches":20691,"norma":20692,"##enity":20693,"ineffective":20694,"weimar":20695,"grunt":20696,"##gat":20697,"lordship":20698,"plotting":20699,"expenditure":20700,"infringement":20701,"lbs":20702,"refrain":20703,"av":20704,"mimi":20705,"mistakenly":20706,"postmaster":20707,"1771":20708,"##bara":20709,"ras":20710,"motorsports":20711,"tito":20712,"199":20713,"subjective":20714,"##zza":20715,"bully":20716,"stew":20717,"##kaya":20718,"prescott":20719,"1a":20720,"##raphic":20721,"##zam":20722,"bids":20723,"styling":20724,"paranormal":20725,"reeve":20726,"sneaking":20727,"exploding":20728,"katz":20729,"akbar":20730,"migrant":20731,"syllables":20732,"indefinitely":20733,"##ogical":20734,"destroys":20735,"replaces":20736,"applause":20737,"##phine":20738,"pest":20739,"##fide":20740,"218":20741,"articulated":20742,"bertie":20743,"##thing":20744,"##cars":20745,"##ptic":20746,"courtroom":20747,"crowley":20748,"aesthetics":20749,"cummings":20750,"tehsil":20751,"hormones":20752,"titanic":20753,"dangerously":20754,"##ibe":20755,"stadion":20756,"jaenelle":20757,"auguste":20758,"ciudad":20759,"##chu":20760,"mysore":20761,"partisans":20762,"##sio":20763,"lucan":20764,"philipp":20765,"##aly":20766,"debating":20767,"henley":20768,"interiors":20769,"##rano":20770,"##tious":20771,"homecoming":20772,"beyonce":20773,"usher":20774,"henrietta":20775,"prepares":20776,"weeds":20777,"##oman":20778,"ely":20779,"plucked":20780,"##pire":20781,"##dable":20782,"luxurious":20783,"##aq":20784,"artifact":20785,"password":20786,"pasture":20787,"juno":20788,"maddy":20789,"minsk":20790,"##dder":20791,"##ologies":20792,"##rone":20793,"assessments":20794,"martian":20795,"royalist":20796,"1765":20797,"examines":20798,"##mani":20799,"##rge":20800,"nino":20801,"223":20802,"parry":20803,"scooped":20804,"relativity":20805,"##eli":20806,"##uting":20807,"##cao":20808,"congregational":20809,"noisy":20810,"traverse":20811,"##agawa":20812,"strikeouts":20813,"nickelodeon":20814,"obituary":20815,"transylvania":20816,"binds":20817,"depictions":20818,"polk":20819,"trolley":20820,"##yed":20821,"##lard":20822,"breeders":20823,"##under":20824,"dryly":20825,"hokkaido":20826,"1762":20827,"strengths":20828,"stacks":20829,"bonaparte":20830,"connectivity":20831,"neared":20832,"prostitutes":20833,"stamped":20834,"anaheim":20835,"gutierrez":20836,"sinai":20837,"##zzling":20838,"bram":20839,"fresno":20840,"madhya":20841,"##86":20842,"proton":20843,"##lena":20844,"##llum":20845,"##phon":20846,"reelected":20847,"wanda":20848,"##anus":20849,"##lb":20850,"ample":20851,"distinguishing":20852,"##yler":20853,"grasping":20854,"sermons":20855,"tomato":20856,"bland":20857,"stimulation":20858,"avenues":20859,"##eux":20860,"spreads":20861,"scarlett":20862,"fern":20863,"pentagon":20864,"assert":20865,"baird":20866,"chesapeake":20867,"ir":20868,"calmed":20869,"distortion":20870,"fatalities":20871,"##olis":20872,"correctional":20873,"pricing":20874,"##astic":20875,"##gina":20876,"prom":20877,"dammit":20878,"ying":20879,"collaborate":20880,"##chia":20881,"welterweight":20882,"33rd":20883,"pointer":20884,"substitution":20885,"bonded":20886,"umpire":20887,"communicating":20888,"multitude":20889,"paddle":20890,"##obe":20891,"federally":20892,"intimacy":20893,"##insky":20894,"betray":20895,"ssr":20896,"##lett":20897,"##lean":20898,"##lves":20899,"##therapy":20900,"airbus":20901,"##tery":20902,"functioned":20903,"ud":20904,"bearer":20905,"biomedical":20906,"netflix":20907,"##hire":20908,"##nca":20909,"condom":20910,"brink":20911,"ik":20912,"##nical":20913,"macy":20914,"##bet":20915,"flap":20916,"gma":20917,"experimented":20918,"jelly":20919,"lavender":20920,"##icles":20921,"##ulia":20922,"munro":20923,"##mian":20924,"##tial":20925,"rye":20926,"##rle":20927,"60th":20928,"gigs":20929,"hottest":20930,"rotated":20931,"predictions":20932,"fuji":20933,"bu":20934,"##erence":20935,"##omi":20936,"barangay":20937,"##fulness":20938,"##sas":20939,"clocks":20940,"##rwood":20941,"##liness":20942,"cereal":20943,"roe":20944,"wight":20945,"decker":20946,"uttered":20947,"babu":20948,"onion":20949,"xml":20950,"forcibly":20951,"##df":20952,"petra":20953,"sarcasm":20954,"hartley":20955,"peeled":20956,"storytelling":20957,"##42":20958,"##xley":20959,"##ysis":20960,"##ffa":20961,"fibre":20962,"kiel":20963,"auditor":20964,"fig":20965,"harald":20966,"greenville":20967,"##berries":20968,"geographically":20969,"nell":20970,"quartz":20971,"##athic":20972,"cemeteries":20973,"##lr":20974,"crossings":20975,"nah":20976,"holloway":20977,"reptiles":20978,"chun":20979,"sichuan":20980,"snowy":20981,"660":20982,"corrections":20983,"##ivo":20984,"zheng":20985,"ambassadors":20986,"blacksmith":20987,"fielded":20988,"fluids":20989,"hardcover":20990,"turnover":20991,"medications":20992,"melvin":20993,"academies":20994,"##erton":20995,"ro":20996,"roach":20997,"absorbing":20998,"spaniards":20999,"colton":21000,"##founded":21001,"outsider":21002,"espionage":21003,"kelsey":21004,"245":21005,"edible":21006,"##ulf":21007,"dora":21008,"establishes":21009,"##sham":21010,"##tries":21011,"contracting":21012,"##tania":21013,"cinematic":21014,"costello":21015,"nesting":21016,"##uron":21017,"connolly":21018,"duff":21019,"##nology":21020,"mma":21021,"##mata":21022,"fergus":21023,"sexes":21024,"gi":21025,"optics":21026,"spectator":21027,"woodstock":21028,"banning":21029,"##hee":21030,"##fle":21031,"differentiate":21032,"outfielder":21033,"refinery":21034,"226":21035,"312":21036,"gerhard":21037,"horde":21038,"lair":21039,"drastically":21040,"##udi":21041,"landfall":21042,"##cheng":21043,"motorsport":21044,"odi":21045,"##achi":21046,"predominant":21047,"quay":21048,"skins":21049,"##ental":21050,"edna":21051,"harshly":21052,"complementary":21053,"murdering":21054,"##aves":21055,"wreckage":21056,"##90":21057,"ono":21058,"outstretched":21059,"lennox":21060,"munitions":21061,"galen":21062,"reconcile":21063,"470":21064,"scalp":21065,"bicycles":21066,"gillespie":21067,"questionable":21068,"rosenberg":21069,"guillermo":21070,"hostel":21071,"jarvis":21072,"kabul":21073,"volvo":21074,"opium":21075,"yd":21076,"##twined":21077,"abuses":21078,"decca":21079,"outpost":21080,"##cino":21081,"sensible":21082,"neutrality":21083,"##64":21084,"ponce":21085,"anchorage":21086,"atkins":21087,"turrets":21088,"inadvertently":21089,"disagree":21090,"libre":21091,"vodka":21092,"reassuring":21093,"weighs":21094,"##yal":21095,"glide":21096,"jumper":21097,"ceilings":21098,"repertory":21099,"outs":21100,"stain":21101,"##bial":21102,"envy":21103,"##ucible":21104,"smashing":21105,"heightened":21106,"policing":21107,"hyun":21108,"mixes":21109,"lai":21110,"prima":21111,"##ples":21112,"celeste":21113,"##bina":21114,"lucrative":21115,"intervened":21116,"kc":21117,"manually":21118,"##rned":21119,"stature":21120,"staffed":21121,"bun":21122,"bastards":21123,"nairobi":21124,"priced":21125,"##auer":21126,"thatcher":21127,"##kia":21128,"tripped":21129,"comune":21130,"##ogan":21131,"##pled":21132,"brasil":21133,"incentives":21134,"emanuel":21135,"hereford":21136,"musica":21137,"##kim":21138,"benedictine":21139,"biennale":21140,"##lani":21141,"eureka":21142,"gardiner":21143,"rb":21144,"knocks":21145,"sha":21146,"##ael":21147,"##elled":21148,"##onate":21149,"efficacy":21150,"ventura":21151,"masonic":21152,"sanford":21153,"maize":21154,"leverage":21155,"##feit":21156,"capacities":21157,"santana":21158,"##aur":21159,"novelty":21160,"vanilla":21161,"##cter":21162,"##tour":21163,"benin":21164,"##oir":21165,"##rain":21166,"neptune":21167,"drafting":21168,"tallinn":21169,"##cable":21170,"humiliation":21171,"##boarding":21172,"schleswig":21173,"fabian":21174,"bernardo":21175,"liturgy":21176,"spectacle":21177,"sweeney":21178,"pont":21179,"routledge":21180,"##tment":21181,"cosmos":21182,"ut":21183,"hilt":21184,"sleek":21185,"universally":21186,"##eville":21187,"##gawa":21188,"typed":21189,"##dry":21190,"favors":21191,"allegheny":21192,"glaciers":21193,"##rly":21194,"recalling":21195,"aziz":21196,"##log":21197,"parasite":21198,"requiem":21199,"auf":21200,"##berto":21201,"##llin":21202,"illumination":21203,"##breaker":21204,"##issa":21205,"festivities":21206,"bows":21207,"govern":21208,"vibe":21209,"vp":21210,"333":21211,"sprawled":21212,"larson":21213,"pilgrim":21214,"bwf":21215,"leaping":21216,"##rts":21217,"##ssel":21218,"alexei":21219,"greyhound":21220,"hoarse":21221,"##dler":21222,"##oration":21223,"seneca":21224,"##cule":21225,"gaping":21226,"##ulously":21227,"##pura":21228,"cinnamon":21229,"##gens":21230,"##rricular":21231,"craven":21232,"fantasies":21233,"houghton":21234,"engined":21235,"reigned":21236,"dictator":21237,"supervising":21238,"##oris":21239,"bogota":21240,"commentaries":21241,"unnatural":21242,"fingernails":21243,"spirituality":21244,"tighten":21245,"##tm":21246,"canadiens":21247,"protesting":21248,"intentional":21249,"cheers":21250,"sparta":21251,"##ytic":21252,"##iere":21253,"##zine":21254,"widen":21255,"belgarath":21256,"controllers":21257,"dodd":21258,"iaaf":21259,"navarre":21260,"##ication":21261,"defect":21262,"squire":21263,"steiner":21264,"whisky":21265,"##mins":21266,"560":21267,"inevitably":21268,"tome":21269,"##gold":21270,"chew":21271,"##uid":21272,"##lid":21273,"elastic":21274,"##aby":21275,"streaked":21276,"alliances":21277,"jailed":21278,"regal":21279,"##ined":21280,"##phy":21281,"czechoslovak":21282,"narration":21283,"absently":21284,"##uld":21285,"bluegrass":21286,"guangdong":21287,"quran":21288,"criticizing":21289,"hose":21290,"hari":21291,"##liest":21292,"##owa":21293,"skier":21294,"streaks":21295,"deploy":21296,"##lom":21297,"raft":21298,"bose":21299,"dialed":21300,"huff":21301,"##eira":21302,"haifa":21303,"simplest":21304,"bursting":21305,"endings":21306,"ib":21307,"sultanate":21308,"##titled":21309,"franks":21310,"whitman":21311,"ensures":21312,"sven":21313,"##ggs":21314,"collaborators":21315,"forster":21316,"organising":21317,"ui":21318,"banished":21319,"napier":21320,"injustice":21321,"teller":21322,"layered":21323,"thump":21324,"##otti":21325,"roc":21326,"battleships":21327,"evidenced":21328,"fugitive":21329,"sadie":21330,"robotics":21331,"##roud":21332,"equatorial":21333,"geologist":21334,"##iza":21335,"yielding":21336,"##bron":21337,"##sr":21338,"internationale":21339,"mecca":21340,"##diment":21341,"sbs":21342,"skyline":21343,"toad":21344,"uploaded":21345,"reflective":21346,"undrafted":21347,"lal":21348,"leafs":21349,"bayern":21350,"##dai":21351,"lakshmi":21352,"shortlisted":21353,"##stick":21354,"##wicz":21355,"camouflage":21356,"donate":21357,"af":21358,"christi":21359,"lau":21360,"##acio":21361,"disclosed":21362,"nemesis":21363,"1761":21364,"assemble":21365,"straining":21366,"northamptonshire":21367,"tal":21368,"##asi":21369,"bernardino":21370,"premature":21371,"heidi":21372,"42nd":21373,"coefficients":21374,"galactic":21375,"reproduce":21376,"buzzed":21377,"sensations":21378,"zionist":21379,"monsieur":21380,"myrtle":21381,"##eme":21382,"archery":21383,"strangled":21384,"musically":21385,"viewpoint":21386,"antiquities":21387,"bei":21388,"trailers":21389,"seahawks":21390,"cured":21391,"pee":21392,"preferring":21393,"tasmanian":21394,"lange":21395,"sul":21396,"##mail":21397,"##working":21398,"colder":21399,"overland":21400,"lucivar":21401,"massey":21402,"gatherings":21403,"haitian":21404,"##smith":21405,"disapproval":21406,"flaws":21407,"##cco":21408,"##enbach":21409,"1766":21410,"npr":21411,"##icular":21412,"boroughs":21413,"creole":21414,"forums":21415,"techno":21416,"1755":21417,"dent":21418,"abdominal":21419,"streetcar":21420,"##eson":21421,"##stream":21422,"procurement":21423,"gemini":21424,"predictable":21425,"##tya":21426,"acheron":21427,"christoph":21428,"feeder":21429,"fronts":21430,"vendor":21431,"bernhard":21432,"jammu":21433,"tumors":21434,"slang":21435,"##uber":21436,"goaltender":21437,"twists":21438,"curving":21439,"manson":21440,"vuelta":21441,"mer":21442,"peanut":21443,"confessions":21444,"pouch":21445,"unpredictable":21446,"allowance":21447,"theodor":21448,"vascular":21449,"##factory":21450,"bala":21451,"authenticity":21452,"metabolic":21453,"coughing":21454,"nanjing":21455,"##cea":21456,"pembroke":21457,"##bard":21458,"splendid":21459,"36th":21460,"ff":21461,"hourly":21462,"##ahu":21463,"elmer":21464,"handel":21465,"##ivate":21466,"awarding":21467,"thrusting":21468,"dl":21469,"experimentation":21470,"##hesion":21471,"##46":21472,"caressed":21473,"entertained":21474,"steak":21475,"##rangle":21476,"biologist":21477,"orphans":21478,"baroness":21479,"oyster":21480,"stepfather":21481,"##dridge":21482,"mirage":21483,"reefs":21484,"speeding":21485,"##31":21486,"barons":21487,"1764":21488,"227":21489,"inhabit":21490,"preached":21491,"repealed":21492,"##tral":21493,"honoring":21494,"boogie":21495,"captives":21496,"administer":21497,"johanna":21498,"##imate":21499,"gel":21500,"suspiciously":21501,"1767":21502,"sobs":21503,"##dington":21504,"backbone":21505,"hayward":21506,"garry":21507,"##folding":21508,"##nesia":21509,"maxi":21510,"##oof":21511,"##ppe":21512,"ellison":21513,"galileo":21514,"##stand":21515,"crimea":21516,"frenzy":21517,"amour":21518,"bumper":21519,"matrices":21520,"natalia":21521,"baking":21522,"garth":21523,"palestinians":21524,"##grove":21525,"smack":21526,"conveyed":21527,"ensembles":21528,"gardening":21529,"##manship":21530,"##rup":21531,"##stituting":21532,"1640":21533,"harvesting":21534,"topography":21535,"jing":21536,"shifters":21537,"dormitory":21538,"##carriage":21539,"##lston":21540,"ist":21541,"skulls":21542,"##stadt":21543,"dolores":21544,"jewellery":21545,"sarawak":21546,"##wai":21547,"##zier":21548,"fences":21549,"christy":21550,"confinement":21551,"tumbling":21552,"credibility":21553,"fir":21554,"stench":21555,"##bria":21556,"##plication":21557,"##nged":21558,"##sam":21559,"virtues":21560,"##belt":21561,"marjorie":21562,"pba":21563,"##eem":21564,"##made":21565,"celebrates":21566,"schooner":21567,"agitated":21568,"barley":21569,"fulfilling":21570,"anthropologist":21571,"##pro":21572,"restrict":21573,"novi":21574,"regulating":21575,"##nent":21576,"padres":21577,"##rani":21578,"##hesive":21579,"loyola":21580,"tabitha":21581,"milky":21582,"olson":21583,"proprietor":21584,"crambidae":21585,"guarantees":21586,"intercollegiate":21587,"ljubljana":21588,"hilda":21589,"##sko":21590,"ignorant":21591,"hooded":21592,"##lts":21593,"sardinia":21594,"##lidae":21595,"##vation":21596,"frontman":21597,"privileged":21598,"witchcraft":21599,"##gp":21600,"jammed":21601,"laude":21602,"poking":21603,"##than":21604,"bracket":21605,"amazement":21606,"yunnan":21607,"##erus":21608,"maharaja":21609,"linnaeus":21610,"264":21611,"commissioning":21612,"milano":21613,"peacefully":21614,"##logies":21615,"akira":21616,"rani":21617,"regulator":21618,"##36":21619,"grasses":21620,"##rance":21621,"luzon":21622,"crows":21623,"compiler":21624,"gretchen":21625,"seaman":21626,"edouard":21627,"tab":21628,"buccaneers":21629,"ellington":21630,"hamlets":21631,"whig":21632,"socialists":21633,"##anto":21634,"directorial":21635,"easton":21636,"mythological":21637,"##kr":21638,"##vary":21639,"rhineland":21640,"semantic":21641,"taut":21642,"dune":21643,"inventions":21644,"succeeds":21645,"##iter":21646,"replication":21647,"branched":21648,"##pired":21649,"jul":21650,"prosecuted":21651,"kangaroo":21652,"penetrated":21653,"##avian":21654,"middlesbrough":21655,"doses":21656,"bleak":21657,"madam":21658,"predatory":21659,"relentless":21660,"##vili":21661,"reluctance":21662,"##vir":21663,"hailey":21664,"crore":21665,"silvery":21666,"1759":21667,"monstrous":21668,"swimmers":21669,"transmissions":21670,"hawthorn":21671,"informing":21672,"##eral":21673,"toilets":21674,"caracas":21675,"crouch":21676,"kb":21677,"##sett":21678,"295":21679,"cartel":21680,"hadley":21681,"##aling":21682,"alexia":21683,"yvonne":21684,"##biology":21685,"cinderella":21686,"eton":21687,"superb":21688,"blizzard":21689,"stabbing":21690,"industrialist":21691,"maximus":21692,"##gm":21693,"##orus":21694,"groves":21695,"maud":21696,"clade":21697,"oversized":21698,"comedic":21699,"##bella":21700,"rosen":21701,"nomadic":21702,"fulham":21703,"montane":21704,"beverages":21705,"galaxies":21706,"redundant":21707,"swarm":21708,"##rot":21709,"##folia":21710,"##llis":21711,"buckinghamshire":21712,"fen":21713,"bearings":21714,"bahadur":21715,"##rom":21716,"gilles":21717,"phased":21718,"dynamite":21719,"faber":21720,"benoit":21721,"vip":21722,"##ount":21723,"##wd":21724,"booking":21725,"fractured":21726,"tailored":21727,"anya":21728,"spices":21729,"westwood":21730,"cairns":21731,"auditions":21732,"inflammation":21733,"steamed":21734,"##rocity":21735,"##acion":21736,"##urne":21737,"skyla":21738,"thereof":21739,"watford":21740,"torment":21741,"archdeacon":21742,"transforms":21743,"lulu":21744,"demeanor":21745,"fucked":21746,"serge":21747,"##sor":21748,"mckenna":21749,"minas":21750,"entertainer":21751,"##icide":21752,"caress":21753,"originate":21754,"residue":21755,"##sty":21756,"1740":21757,"##ilised":21758,"##org":21759,"beech":21760,"##wana":21761,"subsidies":21762,"##ghton":21763,"emptied":21764,"gladstone":21765,"ru":21766,"firefighters":21767,"voodoo":21768,"##rcle":21769,"het":21770,"nightingale":21771,"tamara":21772,"edmond":21773,"ingredient":21774,"weaknesses":21775,"silhouette":21776,"285":21777,"compatibility":21778,"withdrawing":21779,"hampson":21780,"##mona":21781,"anguish":21782,"giggling":21783,"##mber":21784,"bookstore":21785,"##jiang":21786,"southernmost":21787,"tilting":21788,"##vance":21789,"bai":21790,"economical":21791,"rf":21792,"briefcase":21793,"dreadful":21794,"hinted":21795,"projections":21796,"shattering":21797,"totaling":21798,"##rogate":21799,"analogue":21800,"indicted":21801,"periodical":21802,"fullback":21803,"##dman":21804,"haynes":21805,"##tenberg":21806,"##ffs":21807,"##ishment":21808,"1745":21809,"thirst":21810,"stumble":21811,"penang":21812,"vigorous":21813,"##ddling":21814,"##kor":21815,"##lium":21816,"octave":21817,"##ove":21818,"##enstein":21819,"##inen":21820,"##ones":21821,"siberian":21822,"##uti":21823,"cbn":21824,"repeal":21825,"swaying":21826,"##vington":21827,"khalid":21828,"tanaka":21829,"unicorn":21830,"otago":21831,"plastered":21832,"lobe":21833,"riddle":21834,"##rella":21835,"perch":21836,"##ishing":21837,"croydon":21838,"filtered":21839,"graeme":21840,"tripoli":21841,"##ossa":21842,"crocodile":21843,"##chers":21844,"sufi":21845,"mined":21846,"##tung":21847,"inferno":21848,"lsu":21849,"##phi":21850,"swelled":21851,"utilizes":21852,"£2":21853,"cale":21854,"periodicals":21855,"styx":21856,"hike":21857,"informally":21858,"coop":21859,"lund":21860,"##tidae":21861,"ala":21862,"hen":21863,"qui":21864,"transformations":21865,"disposed":21866,"sheath":21867,"chickens":21868,"##cade":21869,"fitzroy":21870,"sas":21871,"silesia":21872,"unacceptable":21873,"odisha":21874,"1650":21875,"sabrina":21876,"pe":21877,"spokane":21878,"ratios":21879,"athena":21880,"massage":21881,"shen":21882,"dilemma":21883,"##drum":21884,"##riz":21885,"##hul":21886,"corona":21887,"doubtful":21888,"niall":21889,"##pha":21890,"##bino":21891,"fines":21892,"cite":21893,"acknowledging":21894,"bangor":21895,"ballard":21896,"bathurst":21897,"##resh":21898,"huron":21899,"mustered":21900,"alzheimer":21901,"garments":21902,"kinase":21903,"tyre":21904,"warship":21905,"##cp":21906,"flashback":21907,"pulmonary":21908,"braun":21909,"cheat":21910,"kamal":21911,"cyclists":21912,"constructions":21913,"grenades":21914,"ndp":21915,"traveller":21916,"excuses":21917,"stomped":21918,"signalling":21919,"trimmed":21920,"futsal":21921,"mosques":21922,"relevance":21923,"##wine":21924,"wta":21925,"##23":21926,"##vah":21927,"##lter":21928,"hoc":21929,"##riding":21930,"optimistic":21931,"##´s":21932,"deco":21933,"sim":21934,"interacting":21935,"rejecting":21936,"moniker":21937,"waterways":21938,"##ieri":21939,"##oku":21940,"mayors":21941,"gdansk":21942,"outnumbered":21943,"pearls":21944,"##ended":21945,"##hampton":21946,"fairs":21947,"totals":21948,"dominating":21949,"262":21950,"notions":21951,"stairway":21952,"compiling":21953,"pursed":21954,"commodities":21955,"grease":21956,"yeast":21957,"##jong":21958,"carthage":21959,"griffiths":21960,"residual":21961,"amc":21962,"contraction":21963,"laird":21964,"sapphire":21965,"##marine":21966,"##ivated":21967,"amalgamation":21968,"dissolve":21969,"inclination":21970,"lyle":21971,"packaged":21972,"altitudes":21973,"suez":21974,"canons":21975,"graded":21976,"lurched":21977,"narrowing":21978,"boasts":21979,"guise":21980,"wed":21981,"enrico":21982,"##ovsky":21983,"rower":21984,"scarred":21985,"bree":21986,"cub":21987,"iberian":21988,"protagonists":21989,"bargaining":21990,"proposing":21991,"trainers":21992,"voyages":21993,"vans":21994,"fishes":21995,"##aea":21996,"##ivist":21997,"##verance":21998,"encryption":21999,"artworks":22000,"kazan":22001,"sabre":22002,"cleopatra":22003,"hepburn":22004,"rotting":22005,"supremacy":22006,"mecklenburg":22007,"##brate":22008,"burrows":22009,"hazards":22010,"outgoing":22011,"flair":22012,"organizes":22013,"##ctions":22014,"scorpion":22015,"##usions":22016,"boo":22017,"234":22018,"chevalier":22019,"dunedin":22020,"slapping":22021,"##34":22022,"ineligible":22023,"pensions":22024,"##38":22025,"##omic":22026,"manufactures":22027,"emails":22028,"bismarck":22029,"238":22030,"weakening":22031,"blackish":22032,"ding":22033,"mcgee":22034,"quo":22035,"##rling":22036,"northernmost":22037,"xx":22038,"manpower":22039,"greed":22040,"sampson":22041,"clicking":22042,"##ange":22043,"##horpe":22044,"##inations":22045,"##roving":22046,"torre":22047,"##eptive":22048,"##moral":22049,"symbolism":22050,"38th":22051,"asshole":22052,"meritorious":22053,"outfits":22054,"splashed":22055,"biographies":22056,"sprung":22057,"astros":22058,"##tale":22059,"302":22060,"737":22061,"filly":22062,"raoul":22063,"nw":22064,"tokugawa":22065,"linden":22066,"clubhouse":22067,"##apa":22068,"tracts":22069,"romano":22070,"##pio":22071,"putin":22072,"tags":22073,"##note":22074,"chained":22075,"dickson":22076,"gunshot":22077,"moe":22078,"gunn":22079,"rashid":22080,"##tails":22081,"zipper":22082,"##bas":22083,"##nea":22084,"contrasted":22085,"##ply":22086,"##udes":22087,"plum":22088,"pharaoh":22089,"##pile":22090,"aw":22091,"comedies":22092,"ingrid":22093,"sandwiches":22094,"subdivisions":22095,"1100":22096,"mariana":22097,"nokia":22098,"kamen":22099,"hz":22100,"delaney":22101,"veto":22102,"herring":22103,"##words":22104,"possessive":22105,"outlines":22106,"##roup":22107,"siemens":22108,"stairwell":22109,"rc":22110,"gallantry":22111,"messiah":22112,"palais":22113,"yells":22114,"233":22115,"zeppelin":22116,"##dm":22117,"bolivar":22118,"##cede":22119,"smackdown":22120,"mckinley":22121,"##mora":22122,"##yt":22123,"muted":22124,"geologic":22125,"finely":22126,"unitary":22127,"avatar":22128,"hamas":22129,"maynard":22130,"rees":22131,"bog":22132,"contrasting":22133,"##rut":22134,"liv":22135,"chico":22136,"disposition":22137,"pixel":22138,"##erate":22139,"becca":22140,"dmitry":22141,"yeshiva":22142,"narratives":22143,"##lva":22144,"##ulton":22145,"mercenary":22146,"sharpe":22147,"tempered":22148,"navigate":22149,"stealth":22150,"amassed":22151,"keynes":22152,"##lini":22153,"untouched":22154,"##rrie":22155,"havoc":22156,"lithium":22157,"##fighting":22158,"abyss":22159,"graf":22160,"southward":22161,"wolverine":22162,"balloons":22163,"implements":22164,"ngos":22165,"transitions":22166,"##icum":22167,"ambushed":22168,"concacaf":22169,"dormant":22170,"economists":22171,"##dim":22172,"costing":22173,"csi":22174,"rana":22175,"universite":22176,"boulders":22177,"verity":22178,"##llon":22179,"collin":22180,"mellon":22181,"misses":22182,"cypress":22183,"fluorescent":22184,"lifeless":22185,"spence":22186,"##ulla":22187,"crewe":22188,"shepard":22189,"pak":22190,"revelations":22191,"##م":22192,"jolly":22193,"gibbons":22194,"paw":22195,"##dro":22196,"##quel":22197,"freeing":22198,"##test":22199,"shack":22200,"fries":22201,"palatine":22202,"##51":22203,"##hiko":22204,"accompaniment":22205,"cruising":22206,"recycled":22207,"##aver":22208,"erwin":22209,"sorting":22210,"synthesizers":22211,"dyke":22212,"realities":22213,"sg":22214,"strides":22215,"enslaved":22216,"wetland":22217,"##ghan":22218,"competence":22219,"gunpowder":22220,"grassy":22221,"maroon":22222,"reactors":22223,"objection":22224,"##oms":22225,"carlson":22226,"gearbox":22227,"macintosh":22228,"radios":22229,"shelton":22230,"##sho":22231,"clergyman":22232,"prakash":22233,"254":22234,"mongols":22235,"trophies":22236,"oricon":22237,"228":22238,"stimuli":22239,"twenty20":22240,"cantonese":22241,"cortes":22242,"mirrored":22243,"##saurus":22244,"bhp":22245,"cristina":22246,"melancholy":22247,"##lating":22248,"enjoyable":22249,"nuevo":22250,"##wny":22251,"downfall":22252,"schumacher":22253,"##ind":22254,"banging":22255,"lausanne":22256,"rumbled":22257,"paramilitary":22258,"reflex":22259,"ax":22260,"amplitude":22261,"migratory":22262,"##gall":22263,"##ups":22264,"midi":22265,"barnard":22266,"lastly":22267,"sherry":22268,"##hp":22269,"##nall":22270,"keystone":22271,"##kra":22272,"carleton":22273,"slippery":22274,"##53":22275,"coloring":22276,"foe":22277,"socket":22278,"otter":22279,"##rgos":22280,"mats":22281,"##tose":22282,"consultants":22283,"bafta":22284,"bison":22285,"topping":22286,"##km":22287,"490":22288,"primal":22289,"abandonment":22290,"transplant":22291,"atoll":22292,"hideous":22293,"mort":22294,"pained":22295,"reproduced":22296,"tae":22297,"howling":22298,"##turn":22299,"unlawful":22300,"billionaire":22301,"hotter":22302,"poised":22303,"lansing":22304,"##chang":22305,"dinamo":22306,"retro":22307,"messing":22308,"nfc":22309,"domesday":22310,"##mina":22311,"blitz":22312,"timed":22313,"##athing":22314,"##kley":22315,"ascending":22316,"gesturing":22317,"##izations":22318,"signaled":22319,"tis":22320,"chinatown":22321,"mermaid":22322,"savanna":22323,"jameson":22324,"##aint":22325,"catalina":22326,"##pet":22327,"##hers":22328,"cochrane":22329,"cy":22330,"chatting":22331,"##kus":22332,"alerted":22333,"computation":22334,"mused":22335,"noelle":22336,"majestic":22337,"mohawk":22338,"campo":22339,"octagonal":22340,"##sant":22341,"##hend":22342,"241":22343,"aspiring":22344,"##mart":22345,"comprehend":22346,"iona":22347,"paralyzed":22348,"shimmering":22349,"swindon":22350,"rhone":22351,"##eley":22352,"reputed":22353,"configurations":22354,"pitchfork":22355,"agitation":22356,"francais":22357,"gillian":22358,"lipstick":22359,"##ilo":22360,"outsiders":22361,"pontifical":22362,"resisting":22363,"bitterness":22364,"sewer":22365,"rockies":22366,"##edd":22367,"##ucher":22368,"misleading":22369,"1756":22370,"exiting":22371,"galloway":22372,"##nging":22373,"risked":22374,"##heart":22375,"246":22376,"commemoration":22377,"schultz":22378,"##rka":22379,"integrating":22380,"##rsa":22381,"poses":22382,"shrieked":22383,"##weiler":22384,"guineas":22385,"gladys":22386,"jerking":22387,"owls":22388,"goldsmith":22389,"nightly":22390,"penetrating":22391,"##unced":22392,"lia":22393,"##33":22394,"ignited":22395,"betsy":22396,"##aring":22397,"##thorpe":22398,"follower":22399,"vigorously":22400,"##rave":22401,"coded":22402,"kiran":22403,"knit":22404,"zoology":22405,"tbilisi":22406,"##28":22407,"##bered":22408,"repository":22409,"govt":22410,"deciduous":22411,"dino":22412,"growling":22413,"##bba":22414,"enhancement":22415,"unleashed":22416,"chanting":22417,"pussy":22418,"biochemistry":22419,"##eric":22420,"kettle":22421,"repression":22422,"toxicity":22423,"nrhp":22424,"##arth":22425,"##kko":22426,"##bush":22427,"ernesto":22428,"commended":22429,"outspoken":22430,"242":22431,"mca":22432,"parchment":22433,"sms":22434,"kristen":22435,"##aton":22436,"bisexual":22437,"raked":22438,"glamour":22439,"navajo":22440,"a2":22441,"conditioned":22442,"showcased":22443,"##hma":22444,"spacious":22445,"youthful":22446,"##esa":22447,"usl":22448,"appliances":22449,"junta":22450,"brest":22451,"layne":22452,"conglomerate":22453,"enchanted":22454,"chao":22455,"loosened":22456,"picasso":22457,"circulating":22458,"inspect":22459,"montevideo":22460,"##centric":22461,"##kti":22462,"piazza":22463,"spurred":22464,"##aith":22465,"bari":22466,"freedoms":22467,"poultry":22468,"stamford":22469,"lieu":22470,"##ect":22471,"indigo":22472,"sarcastic":22473,"bahia":22474,"stump":22475,"attach":22476,"dvds":22477,"frankenstein":22478,"lille":22479,"approx":22480,"scriptures":22481,"pollen":22482,"##script":22483,"nmi":22484,"overseen":22485,"##ivism":22486,"tides":22487,"proponent":22488,"newmarket":22489,"inherit":22490,"milling":22491,"##erland":22492,"centralized":22493,"##rou":22494,"distributors":22495,"credentials":22496,"drawers":22497,"abbreviation":22498,"##lco":22499,"##xon":22500,"downing":22501,"uncomfortably":22502,"ripe":22503,"##oes":22504,"erase":22505,"franchises":22506,"##ever":22507,"populace":22508,"##bery":22509,"##khar":22510,"decomposition":22511,"pleas":22512,"##tet":22513,"daryl":22514,"sabah":22515,"##stle":22516,"##wide":22517,"fearless":22518,"genie":22519,"lesions":22520,"annette":22521,"##ogist":22522,"oboe":22523,"appendix":22524,"nair":22525,"dripped":22526,"petitioned":22527,"maclean":22528,"mosquito":22529,"parrot":22530,"rpg":22531,"hampered":22532,"1648":22533,"operatic":22534,"reservoirs":22535,"##tham":22536,"irrelevant":22537,"jolt":22538,"summarized":22539,"##fp":22540,"medallion":22541,"##taff":22542,"##−":22543,"clawed":22544,"harlow":22545,"narrower":22546,"goddard":22547,"marcia":22548,"bodied":22549,"fremont":22550,"suarez":22551,"altering":22552,"tempest":22553,"mussolini":22554,"porn":22555,"##isms":22556,"sweetly":22557,"oversees":22558,"walkers":22559,"solitude":22560,"grimly":22561,"shrines":22562,"hk":22563,"ich":22564,"supervisors":22565,"hostess":22566,"dietrich":22567,"legitimacy":22568,"brushes":22569,"expressive":22570,"##yp":22571,"dissipated":22572,"##rse":22573,"localized":22574,"systemic":22575,"##nikov":22576,"gettysburg":22577,"##js":22578,"##uaries":22579,"dialogues":22580,"muttering":22581,"251":22582,"housekeeper":22583,"sicilian":22584,"discouraged":22585,"##frey":22586,"beamed":22587,"kaladin":22588,"halftime":22589,"kidnap":22590,"##amo":22591,"##llet":22592,"1754":22593,"synonymous":22594,"depleted":22595,"instituto":22596,"insulin":22597,"reprised":22598,"##opsis":22599,"clashed":22600,"##ctric":22601,"interrupting":22602,"radcliffe":22603,"insisting":22604,"medici":22605,"1715":22606,"ejected":22607,"playfully":22608,"turbulent":22609,"##47":22610,"starvation":22611,"##rini":22612,"shipment":22613,"rebellious":22614,"petersen":22615,"verification":22616,"merits":22617,"##rified":22618,"cakes":22619,"##charged":22620,"1757":22621,"milford":22622,"shortages":22623,"spying":22624,"fidelity":22625,"##aker":22626,"emitted":22627,"storylines":22628,"harvested":22629,"seismic":22630,"##iform":22631,"cheung":22632,"kilda":22633,"theoretically":22634,"barbie":22635,"lynx":22636,"##rgy":22637,"##tius":22638,"goblin":22639,"mata":22640,"poisonous":22641,"##nburg":22642,"reactive":22643,"residues":22644,"obedience":22645,"##евич":22646,"conjecture":22647,"##rac":22648,"401":22649,"hating":22650,"sixties":22651,"kicker":22652,"moaning":22653,"motown":22654,"##bha":22655,"emancipation":22656,"neoclassical":22657,"##hering":22658,"consoles":22659,"ebert":22660,"professorship":22661,"##tures":22662,"sustaining":22663,"assaults":22664,"obeyed":22665,"affluent":22666,"incurred":22667,"tornadoes":22668,"##eber":22669,"##zow":22670,"emphasizing":22671,"highlanders":22672,"cheated":22673,"helmets":22674,"##ctus":22675,"internship":22676,"terence":22677,"bony":22678,"executions":22679,"legislators":22680,"berries":22681,"peninsular":22682,"tinged":22683,"##aco":22684,"1689":22685,"amplifier":22686,"corvette":22687,"ribbons":22688,"lavish":22689,"pennant":22690,"##lander":22691,"worthless":22692,"##chfield":22693,"##forms":22694,"mariano":22695,"pyrenees":22696,"expenditures":22697,"##icides":22698,"chesterfield":22699,"mandir":22700,"tailor":22701,"39th":22702,"sergey":22703,"nestled":22704,"willed":22705,"aristocracy":22706,"devotees":22707,"goodnight":22708,"raaf":22709,"rumored":22710,"weaponry":22711,"remy":22712,"appropriations":22713,"harcourt":22714,"burr":22715,"riaa":22716,"##lence":22717,"limitation":22718,"unnoticed":22719,"guo":22720,"soaking":22721,"swamps":22722,"##tica":22723,"collapsing":22724,"tatiana":22725,"descriptive":22726,"brigham":22727,"psalm":22728,"##chment":22729,"maddox":22730,"##lization":22731,"patti":22732,"caliph":22733,"##aja":22734,"akron":22735,"injuring":22736,"serra":22737,"##ganj":22738,"basins":22739,"##sari":22740,"astonished":22741,"launcher":22742,"##church":22743,"hilary":22744,"wilkins":22745,"sewing":22746,"##sf":22747,"stinging":22748,"##fia":22749,"##ncia":22750,"underwood":22751,"startup":22752,"##ition":22753,"compilations":22754,"vibrations":22755,"embankment":22756,"jurist":22757,"##nity":22758,"bard":22759,"juventus":22760,"groundwater":22761,"kern":22762,"palaces":22763,"helium":22764,"boca":22765,"cramped":22766,"marissa":22767,"soto":22768,"##worm":22769,"jae":22770,"princely":22771,"##ggy":22772,"faso":22773,"bazaar":22774,"warmly":22775,"##voking":22776,"229":22777,"pairing":22778,"##lite":22779,"##grate":22780,"##nets":22781,"wien":22782,"freaked":22783,"ulysses":22784,"rebirth":22785,"##alia":22786,"##rent":22787,"mummy":22788,"guzman":22789,"jimenez":22790,"stilled":22791,"##nitz":22792,"trajectory":22793,"tha":22794,"woken":22795,"archival":22796,"professions":22797,"##pts":22798,"##pta":22799,"hilly":22800,"shadowy":22801,"shrink":22802,"##bolt":22803,"norwood":22804,"glued":22805,"migrate":22806,"stereotypes":22807,"devoid":22808,"##pheus":22809,"625":22810,"evacuate":22811,"horrors":22812,"infancy":22813,"gotham":22814,"knowles":22815,"optic":22816,"downloaded":22817,"sachs":22818,"kingsley":22819,"parramatta":22820,"darryl":22821,"mor":22822,"##onale":22823,"shady":22824,"commence":22825,"confesses":22826,"kan":22827,"##meter":22828,"##placed":22829,"marlborough":22830,"roundabout":22831,"regents":22832,"frigates":22833,"io":22834,"##imating":22835,"gothenburg":22836,"revoked":22837,"carvings":22838,"clockwise":22839,"convertible":22840,"intruder":22841,"##sche":22842,"banged":22843,"##ogo":22844,"vicky":22845,"bourgeois":22846,"##mony":22847,"dupont":22848,"footing":22849,"##gum":22850,"pd":22851,"##real":22852,"buckle":22853,"yun":22854,"penthouse":22855,"sane":22856,"720":22857,"serviced":22858,"stakeholders":22859,"neumann":22860,"bb":22861,"##eers":22862,"comb":22863,"##gam":22864,"catchment":22865,"pinning":22866,"rallies":22867,"typing":22868,"##elles":22869,"forefront":22870,"freiburg":22871,"sweetie":22872,"giacomo":22873,"widowed":22874,"goodwill":22875,"worshipped":22876,"aspirations":22877,"midday":22878,"##vat":22879,"fishery":22880,"##trick":22881,"bournemouth":22882,"turk":22883,"243":22884,"hearth":22885,"ethanol":22886,"guadalajara":22887,"murmurs":22888,"sl":22889,"##uge":22890,"afforded":22891,"scripted":22892,"##hta":22893,"wah":22894,"##jn":22895,"coroner":22896,"translucent":22897,"252":22898,"memorials":22899,"puck":22900,"progresses":22901,"clumsy":22902,"##race":22903,"315":22904,"candace":22905,"recounted":22906,"##27":22907,"##slin":22908,"##uve":22909,"filtering":22910,"##mac":22911,"howl":22912,"strata":22913,"heron":22914,"leveled":22915,"##ays":22916,"dubious":22917,"##oja":22918,"##т":22919,"##wheel":22920,"citations":22921,"exhibiting":22922,"##laya":22923,"##mics":22924,"##pods":22925,"turkic":22926,"##lberg":22927,"injunction":22928,"##ennial":22929,"##mit":22930,"antibodies":22931,"##44":22932,"organise":22933,"##rigues":22934,"cardiovascular":22935,"cushion":22936,"inverness":22937,"##zquez":22938,"dia":22939,"cocoa":22940,"sibling":22941,"##tman":22942,"##roid":22943,"expanse":22944,"feasible":22945,"tunisian":22946,"algiers":22947,"##relli":22948,"rus":22949,"bloomberg":22950,"dso":22951,"westphalia":22952,"bro":22953,"tacoma":22954,"281":22955,"downloads":22956,"##ours":22957,"konrad":22958,"duran":22959,"##hdi":22960,"continuum":22961,"jett":22962,"compares":22963,"legislator":22964,"secession":22965,"##nable":22966,"##gues":22967,"##zuka":22968,"translating":22969,"reacher":22970,"##gley":22971,"##ła":22972,"aleppo":22973,"##agi":22974,"tc":22975,"orchards":22976,"trapping":22977,"linguist":22978,"versatile":22979,"drumming":22980,"postage":22981,"calhoun":22982,"superiors":22983,"##mx":22984,"barefoot":22985,"leary":22986,"##cis":22987,"ignacio":22988,"alfa":22989,"kaplan":22990,"##rogen":22991,"bratislava":22992,"mori":22993,"##vot":22994,"disturb":22995,"haas":22996,"313":22997,"cartridges":22998,"gilmore":22999,"radiated":23000,"salford":23001,"tunic":23002,"hades":23003,"##ulsive":23004,"archeological":23005,"delilah":23006,"magistrates":23007,"auditioned":23008,"brewster":23009,"charters":23010,"empowerment":23011,"blogs":23012,"cappella":23013,"dynasties":23014,"iroquois":23015,"whipping":23016,"##krishna":23017,"raceway":23018,"truths":23019,"myra":23020,"weaken":23021,"judah":23022,"mcgregor":23023,"##horse":23024,"mic":23025,"refueling":23026,"37th":23027,"burnley":23028,"bosses":23029,"markus":23030,"premio":23031,"query":23032,"##gga":23033,"dunbar":23034,"##economic":23035,"darkest":23036,"lyndon":23037,"sealing":23038,"commendation":23039,"reappeared":23040,"##mun":23041,"addicted":23042,"ezio":23043,"slaughtered":23044,"satisfactory":23045,"shuffle":23046,"##eves":23047,"##thic":23048,"##uj":23049,"fortification":23050,"warrington":23051,"##otto":23052,"resurrected":23053,"fargo":23054,"mane":23055,"##utable":23056,"##lei":23057,"##space":23058,"foreword":23059,"ox":23060,"##aris":23061,"##vern":23062,"abrams":23063,"hua":23064,"##mento":23065,"sakura":23066,"##alo":23067,"uv":23068,"sentimental":23069,"##skaya":23070,"midfield":23071,"##eses":23072,"sturdy":23073,"scrolls":23074,"macleod":23075,"##kyu":23076,"entropy":23077,"##lance":23078,"mitochondrial":23079,"cicero":23080,"excelled":23081,"thinner":23082,"convoys":23083,"perceive":23084,"##oslav":23085,"##urable":23086,"systematically":23087,"grind":23088,"burkina":23089,"287":23090,"##tagram":23091,"ops":23092,"##aman":23093,"guantanamo":23094,"##cloth":23095,"##tite":23096,"forcefully":23097,"wavy":23098,"##jou":23099,"pointless":23100,"##linger":23101,"##tze":23102,"layton":23103,"portico":23104,"superficial":23105,"clerical":23106,"outlaws":23107,"##hism":23108,"burials":23109,"muir":23110,"##inn":23111,"creditors":23112,"hauling":23113,"rattle":23114,"##leg":23115,"calais":23116,"monde":23117,"archers":23118,"reclaimed":23119,"dwell":23120,"wexford":23121,"hellenic":23122,"falsely":23123,"remorse":23124,"##tek":23125,"dough":23126,"furnishings":23127,"##uttered":23128,"gabon":23129,"neurological":23130,"novice":23131,"##igraphy":23132,"contemplated":23133,"pulpit":23134,"nightstand":23135,"saratoga":23136,"##istan":23137,"documenting":23138,"pulsing":23139,"taluk":23140,"##firmed":23141,"busted":23142,"marital":23143,"##rien":23144,"disagreements":23145,"wasps":23146,"##yes":23147,"hodge":23148,"mcdonnell":23149,"mimic":23150,"fran":23151,"pendant":23152,"dhabi":23153,"musa":23154,"##nington":23155,"congratulations":23156,"argent":23157,"darrell":23158,"concussion":23159,"losers":23160,"regrets":23161,"thessaloniki":23162,"reversal":23163,"donaldson":23164,"hardwood":23165,"thence":23166,"achilles":23167,"ritter":23168,"##eran":23169,"demonic":23170,"jurgen":23171,"prophets":23172,"goethe":23173,"eki":23174,"classmate":23175,"buff":23176,"##cking":23177,"yank":23178,"irrational":23179,"##inging":23180,"perished":23181,"seductive":23182,"qur":23183,"sourced":23184,"##crat":23185,"##typic":23186,"mustard":23187,"ravine":23188,"barre":23189,"horizontally":23190,"characterization":23191,"phylogenetic":23192,"boise":23193,"##dit":23194,"##runner":23195,"##tower":23196,"brutally":23197,"intercourse":23198,"seduce":23199,"##bbing":23200,"fay":23201,"ferris":23202,"ogden":23203,"amar":23204,"nik":23205,"unarmed":23206,"##inator":23207,"evaluating":23208,"kyrgyzstan":23209,"sweetness":23210,"##lford":23211,"##oki":23212,"mccormick":23213,"meiji":23214,"notoriety":23215,"stimulate":23216,"disrupt":23217,"figuring":23218,"instructional":23219,"mcgrath":23220,"##zoo":23221,"groundbreaking":23222,"##lto":23223,"flinch":23224,"khorasan":23225,"agrarian":23226,"bengals":23227,"mixer":23228,"radiating":23229,"##sov":23230,"ingram":23231,"pitchers":23232,"nad":23233,"tariff":23234,"##cript":23235,"tata":23236,"##codes":23237,"##emi":23238,"##ungen":23239,"appellate":23240,"lehigh":23241,"##bled":23242,"##giri":23243,"brawl":23244,"duct":23245,"texans":23246,"##ciation":23247,"##ropolis":23248,"skipper":23249,"speculative":23250,"vomit":23251,"doctrines":23252,"stresses":23253,"253":23254,"davy":23255,"graders":23256,"whitehead":23257,"jozef":23258,"timely":23259,"cumulative":23260,"haryana":23261,"paints":23262,"appropriately":23263,"boon":23264,"cactus":23265,"##ales":23266,"##pid":23267,"dow":23268,"legions":23269,"##pit":23270,"perceptions":23271,"1730":23272,"picturesque":23273,"##yse":23274,"periphery":23275,"rune":23276,"wr":23277,"##aha":23278,"celtics":23279,"sentencing":23280,"whoa":23281,"##erin":23282,"confirms":23283,"variance":23284,"425":23285,"moines":23286,"mathews":23287,"spade":23288,"rave":23289,"m1":23290,"fronted":23291,"fx":23292,"blending":23293,"alleging":23294,"reared":23295,"##gl":23296,"237":23297,"##paper":23298,"grassroots":23299,"eroded":23300,"##free":23301,"##physical":23302,"directs":23303,"ordeal":23304,"##sław":23305,"accelerate":23306,"hacker":23307,"rooftop":23308,"##inia":23309,"lev":23310,"buys":23311,"cebu":23312,"devote":23313,"##lce":23314,"specialising":23315,"##ulsion":23316,"choreographed":23317,"repetition":23318,"warehouses":23319,"##ryl":23320,"paisley":23321,"tuscany":23322,"analogy":23323,"sorcerer":23324,"hash":23325,"huts":23326,"shards":23327,"descends":23328,"exclude":23329,"nix":23330,"chaplin":23331,"gaga":23332,"ito":23333,"vane":23334,"##drich":23335,"causeway":23336,"misconduct":23337,"limo":23338,"orchestrated":23339,"glands":23340,"jana":23341,"##kot":23342,"u2":23343,"##mple":23344,"##sons":23345,"branching":23346,"contrasts":23347,"scoop":23348,"longed":23349,"##virus":23350,"chattanooga":23351,"##75":23352,"syrup":23353,"cornerstone":23354,"##tized":23355,"##mind":23356,"##iaceae":23357,"careless":23358,"precedence":23359,"frescoes":23360,"##uet":23361,"chilled":23362,"consult":23363,"modelled":23364,"snatch":23365,"peat":23366,"##thermal":23367,"caucasian":23368,"humane":23369,"relaxation":23370,"spins":23371,"temperance":23372,"##lbert":23373,"occupations":23374,"lambda":23375,"hybrids":23376,"moons":23377,"mp3":23378,"##oese":23379,"247":23380,"rolf":23381,"societal":23382,"yerevan":23383,"ness":23384,"##ssler":23385,"befriended":23386,"mechanized":23387,"nominate":23388,"trough":23389,"boasted":23390,"cues":23391,"seater":23392,"##hom":23393,"bends":23394,"##tangle":23395,"conductors":23396,"emptiness":23397,"##lmer":23398,"eurasian":23399,"adriatic":23400,"tian":23401,"##cie":23402,"anxiously":23403,"lark":23404,"propellers":23405,"chichester":23406,"jock":23407,"ev":23408,"2a":23409,"##holding":23410,"credible":23411,"recounts":23412,"tori":23413,"loyalist":23414,"abduction":23415,"##hoot":23416,"##redo":23417,"nepali":23418,"##mite":23419,"ventral":23420,"tempting":23421,"##ango":23422,"##crats":23423,"steered":23424,"##wice":23425,"javelin":23426,"dipping":23427,"laborers":23428,"prentice":23429,"looming":23430,"titanium":23431,"##ː":23432,"badges":23433,"emir":23434,"tensor":23435,"##ntation":23436,"egyptians":23437,"rash":23438,"denies":23439,"hawthorne":23440,"lombard":23441,"showers":23442,"wehrmacht":23443,"dietary":23444,"trojan":23445,"##reus":23446,"welles":23447,"executing":23448,"horseshoe":23449,"lifeboat":23450,"##lak":23451,"elsa":23452,"infirmary":23453,"nearing":23454,"roberta":23455,"boyer":23456,"mutter":23457,"trillion":23458,"joanne":23459,"##fine":23460,"##oked":23461,"sinks":23462,"vortex":23463,"uruguayan":23464,"clasp":23465,"sirius":23466,"##block":23467,"accelerator":23468,"prohibit":23469,"sunken":23470,"byu":23471,"chronological":23472,"diplomats":23473,"ochreous":23474,"510":23475,"symmetrical":23476,"1644":23477,"maia":23478,"##tology":23479,"salts":23480,"reigns":23481,"atrocities":23482,"##ия":23483,"hess":23484,"bared":23485,"issn":23486,"##vyn":23487,"cater":23488,"saturated":23489,"##cycle":23490,"##isse":23491,"sable":23492,"voyager":23493,"dyer":23494,"yusuf":23495,"##inge":23496,"fountains":23497,"wolff":23498,"##39":23499,"##nni":23500,"engraving":23501,"rollins":23502,"atheist":23503,"ominous":23504,"##ault":23505,"herr":23506,"chariot":23507,"martina":23508,"strung":23509,"##fell":23510,"##farlane":23511,"horrific":23512,"sahib":23513,"gazes":23514,"saetan":23515,"erased":23516,"ptolemy":23517,"##olic":23518,"flushing":23519,"lauderdale":23520,"analytic":23521,"##ices":23522,"530":23523,"navarro":23524,"beak":23525,"gorilla":23526,"herrera":23527,"broom":23528,"guadalupe":23529,"raiding":23530,"sykes":23531,"311":23532,"bsc":23533,"deliveries":23534,"1720":23535,"invasions":23536,"carmichael":23537,"tajikistan":23538,"thematic":23539,"ecumenical":23540,"sentiments":23541,"onstage":23542,"##rians":23543,"##brand":23544,"##sume":23545,"catastrophic":23546,"flanks":23547,"molten":23548,"##arns":23549,"waller":23550,"aimee":23551,"terminating":23552,"##icing":23553,"alternately":23554,"##oche":23555,"nehru":23556,"printers":23557,"outraged":23558,"##eving":23559,"empires":23560,"template":23561,"banners":23562,"repetitive":23563,"za":23564,"##oise":23565,"vegetarian":23566,"##tell":23567,"guiana":23568,"opt":23569,"cavendish":23570,"lucknow":23571,"synthesized":23572,"##hani":23573,"##mada":23574,"finalized":23575,"##ctable":23576,"fictitious":23577,"mayoral":23578,"unreliable":23579,"##enham":23580,"embracing":23581,"peppers":23582,"rbis":23583,"##chio":23584,"##neo":23585,"inhibition":23586,"slashed":23587,"togo":23588,"orderly":23589,"embroidered":23590,"safari":23591,"salty":23592,"236":23593,"barron":23594,"benito":23595,"totaled":23596,"##dak":23597,"pubs":23598,"simulated":23599,"caden":23600,"devin":23601,"tolkien":23602,"momma":23603,"welding":23604,"sesame":23605,"##ept":23606,"gottingen":23607,"hardness":23608,"630":23609,"shaman":23610,"temeraire":23611,"620":23612,"adequately":23613,"pediatric":23614,"##kit":23615,"ck":23616,"assertion":23617,"radicals":23618,"composure":23619,"cadence":23620,"seafood":23621,"beaufort":23622,"lazarus":23623,"mani":23624,"warily":23625,"cunning":23626,"kurdistan":23627,"249":23628,"cantata":23629,"##kir":23630,"ares":23631,"##41":23632,"##clusive":23633,"nape":23634,"townland":23635,"geared":23636,"insulted":23637,"flutter":23638,"boating":23639,"violate":23640,"draper":23641,"dumping":23642,"malmo":23643,"##hh":23644,"##romatic":23645,"firearm":23646,"alta":23647,"bono":23648,"obscured":23649,"##clave":23650,"exceeds":23651,"panorama":23652,"unbelievable":23653,"##train":23654,"preschool":23655,"##essed":23656,"disconnected":23657,"installing":23658,"rescuing":23659,"secretaries":23660,"accessibility":23661,"##castle":23662,"##drive":23663,"##ifice":23664,"##film":23665,"bouts":23666,"slug":23667,"waterway":23668,"mindanao":23669,"##buro":23670,"##ratic":23671,"halves":23672,"##ل":23673,"calming":23674,"liter":23675,"maternity":23676,"adorable":23677,"bragg":23678,"electrification":23679,"mcc":23680,"##dote":23681,"roxy":23682,"schizophrenia":23683,"##body":23684,"munoz":23685,"kaye":23686,"whaling":23687,"239":23688,"mil":23689,"tingling":23690,"tolerant":23691,"##ago":23692,"unconventional":23693,"volcanoes":23694,"##finder":23695,"deportivo":23696,"##llie":23697,"robson":23698,"kaufman":23699,"neuroscience":23700,"wai":23701,"deportation":23702,"masovian":23703,"scraping":23704,"converse":23705,"##bh":23706,"hacking":23707,"bulge":23708,"##oun":23709,"administratively":23710,"yao":23711,"580":23712,"amp":23713,"mammoth":23714,"booster":23715,"claremont":23716,"hooper":23717,"nomenclature":23718,"pursuits":23719,"mclaughlin":23720,"melinda":23721,"##sul":23722,"catfish":23723,"barclay":23724,"substrates":23725,"taxa":23726,"zee":23727,"originals":23728,"kimberly":23729,"packets":23730,"padma":23731,"##ality":23732,"borrowing":23733,"ostensibly":23734,"solvent":23735,"##bri":23736,"##genesis":23737,"##mist":23738,"lukas":23739,"shreveport":23740,"veracruz":23741,"##ь":23742,"##lou":23743,"##wives":23744,"cheney":23745,"tt":23746,"anatolia":23747,"hobbs":23748,"##zyn":23749,"cyclic":23750,"radiant":23751,"alistair":23752,"greenish":23753,"siena":23754,"dat":23755,"independents":23756,"##bation":23757,"conform":23758,"pieter":23759,"hyper":23760,"applicant":23761,"bradshaw":23762,"spores":23763,"telangana":23764,"vinci":23765,"inexpensive":23766,"nuclei":23767,"322":23768,"jang":23769,"nme":23770,"soho":23771,"spd":23772,"##ign":23773,"cradled":23774,"receptionist":23775,"pow":23776,"##43":23777,"##rika":23778,"fascism":23779,"##ifer":23780,"experimenting":23781,"##ading":23782,"##iec":23783,"##region":23784,"345":23785,"jocelyn":23786,"maris":23787,"stair":23788,"nocturnal":23789,"toro":23790,"constabulary":23791,"elgin":23792,"##kker":23793,"msc":23794,"##giving":23795,"##schen":23796,"##rase":23797,"doherty":23798,"doping":23799,"sarcastically":23800,"batter":23801,"maneuvers":23802,"##cano":23803,"##apple":23804,"##gai":23805,"##git":23806,"intrinsic":23807,"##nst":23808,"##stor":23809,"1753":23810,"showtime":23811,"cafes":23812,"gasps":23813,"lviv":23814,"ushered":23815,"##thed":23816,"fours":23817,"restart":23818,"astonishment":23819,"transmitting":23820,"flyer":23821,"shrugs":23822,"##sau":23823,"intriguing":23824,"cones":23825,"dictated":23826,"mushrooms":23827,"medial":23828,"##kovsky":23829,"##elman":23830,"escorting":23831,"gaped":23832,"##26":23833,"godfather":23834,"##door":23835,"##sell":23836,"djs":23837,"recaptured":23838,"timetable":23839,"vila":23840,"1710":23841,"3a":23842,"aerodrome":23843,"mortals":23844,"scientology":23845,"##orne":23846,"angelina":23847,"mag":23848,"convection":23849,"unpaid":23850,"insertion":23851,"intermittent":23852,"lego":23853,"##nated":23854,"endeavor":23855,"kota":23856,"pereira":23857,"##lz":23858,"304":23859,"bwv":23860,"glamorgan":23861,"insults":23862,"agatha":23863,"fey":23864,"##cend":23865,"fleetwood":23866,"mahogany":23867,"protruding":23868,"steamship":23869,"zeta":23870,"##arty":23871,"mcguire":23872,"suspense":23873,"##sphere":23874,"advising":23875,"urges":23876,"##wala":23877,"hurriedly":23878,"meteor":23879,"gilded":23880,"inline":23881,"arroyo":23882,"stalker":23883,"##oge":23884,"excitedly":23885,"revered":23886,"##cure":23887,"earle":23888,"introductory":23889,"##break":23890,"##ilde":23891,"mutants":23892,"puff":23893,"pulses":23894,"reinforcement":23895,"##haling":23896,"curses":23897,"lizards":23898,"stalk":23899,"correlated":23900,"##fixed":23901,"fallout":23902,"macquarie":23903,"##unas":23904,"bearded":23905,"denton":23906,"heaving":23907,"802":23908,"##ocation":23909,"winery":23910,"assign":23911,"dortmund":23912,"##lkirk":23913,"everest":23914,"invariant":23915,"charismatic":23916,"susie":23917,"##elling":23918,"bled":23919,"lesley":23920,"telegram":23921,"sumner":23922,"bk":23923,"##ogen":23924,"##к":23925,"wilcox":23926,"needy":23927,"colbert":23928,"duval":23929,"##iferous":23930,"##mbled":23931,"allotted":23932,"attends":23933,"imperative":23934,"##hita":23935,"replacements":23936,"hawker":23937,"##inda":23938,"insurgency":23939,"##zee":23940,"##eke":23941,"casts":23942,"##yla":23943,"680":23944,"ives":23945,"transitioned":23946,"##pack":23947,"##powering":23948,"authoritative":23949,"baylor":23950,"flex":23951,"cringed":23952,"plaintiffs":23953,"woodrow":23954,"##skie":23955,"drastic":23956,"ape":23957,"aroma":23958,"unfolded":23959,"commotion":23960,"nt":23961,"preoccupied":23962,"theta":23963,"routines":23964,"lasers":23965,"privatization":23966,"wand":23967,"domino":23968,"ek":23969,"clenching":23970,"nsa":23971,"strategically":23972,"showered":23973,"bile":23974,"handkerchief":23975,"pere":23976,"storing":23977,"christophe":23978,"insulting":23979,"316":23980,"nakamura":23981,"romani":23982,"asiatic":23983,"magdalena":23984,"palma":23985,"cruises":23986,"stripping":23987,"405":23988,"konstantin":23989,"soaring":23990,"##berman":23991,"colloquially":23992,"forerunner":23993,"havilland":23994,"incarcerated":23995,"parasites":23996,"sincerity":23997,"##utus":23998,"disks":23999,"plank":24000,"saigon":24001,"##ining":24002,"corbin":24003,"homo":24004,"ornaments":24005,"powerhouse":24006,"##tlement":24007,"chong":24008,"fastened":24009,"feasibility":24010,"idf":24011,"morphological":24012,"usable":24013,"##nish":24014,"##zuki":24015,"aqueduct":24016,"jaguars":24017,"keepers":24018,"##flies":24019,"aleksandr":24020,"faust":24021,"assigns":24022,"ewing":24023,"bacterium":24024,"hurled":24025,"tricky":24026,"hungarians":24027,"integers":24028,"wallis":24029,"321":24030,"yamaha":24031,"##isha":24032,"hushed":24033,"oblivion":24034,"aviator":24035,"evangelist":24036,"friars":24037,"##eller":24038,"monograph":24039,"ode":24040,"##nary":24041,"airplanes":24042,"labourers":24043,"charms":24044,"##nee":24045,"1661":24046,"hagen":24047,"tnt":24048,"rudder":24049,"fiesta":24050,"transcript":24051,"dorothea":24052,"ska":24053,"inhibitor":24054,"maccabi":24055,"retorted":24056,"raining":24057,"encompassed":24058,"clauses":24059,"menacing":24060,"1642":24061,"lineman":24062,"##gist":24063,"vamps":24064,"##ape":24065,"##dick":24066,"gloom":24067,"##rera":24068,"dealings":24069,"easing":24070,"seekers":24071,"##nut":24072,"##pment":24073,"helens":24074,"unmanned":24075,"##anu":24076,"##isson":24077,"basics":24078,"##amy":24079,"##ckman":24080,"adjustments":24081,"1688":24082,"brutality":24083,"horne":24084,"##zell":24085,"sui":24086,"##55":24087,"##mable":24088,"aggregator":24089,"##thal":24090,"rhino":24091,"##drick":24092,"##vira":24093,"counters":24094,"zoom":24095,"##01":24096,"##rting":24097,"mn":24098,"montenegrin":24099,"packard":24100,"##unciation":24101,"##♭":24102,"##kki":24103,"reclaim":24104,"scholastic":24105,"thugs":24106,"pulsed":24107,"##icia":24108,"syriac":24109,"quan":24110,"saddam":24111,"banda":24112,"kobe":24113,"blaming":24114,"buddies":24115,"dissent":24116,"##lusion":24117,"##usia":24118,"corbett":24119,"jaya":24120,"delle":24121,"erratic":24122,"lexie":24123,"##hesis":24124,"435":24125,"amiga":24126,"hermes":24127,"##pressing":24128,"##leen":24129,"chapels":24130,"gospels":24131,"jamal":24132,"##uating":24133,"compute":24134,"revolving":24135,"warp":24136,"##sso":24137,"##thes":24138,"armory":24139,"##eras":24140,"##gol":24141,"antrim":24142,"loki":24143,"##kow":24144,"##asian":24145,"##good":24146,"##zano":24147,"braid":24148,"handwriting":24149,"subdistrict":24150,"funky":24151,"pantheon":24152,"##iculate":24153,"concurrency":24154,"estimation":24155,"improper":24156,"juliana":24157,"##his":24158,"newcomers":24159,"johnstone":24160,"staten":24161,"communicated":24162,"##oco":24163,"##alle":24164,"sausage":24165,"stormy":24166,"##stered":24167,"##tters":24168,"superfamily":24169,"##grade":24170,"acidic":24171,"collateral":24172,"tabloid":24173,"##oped":24174,"##rza":24175,"bladder":24176,"austen":24177,"##ellant":24178,"mcgraw":24179,"##hay":24180,"hannibal":24181,"mein":24182,"aquino":24183,"lucifer":24184,"wo":24185,"badger":24186,"boar":24187,"cher":24188,"christensen":24189,"greenberg":24190,"interruption":24191,"##kken":24192,"jem":24193,"244":24194,"mocked":24195,"bottoms":24196,"cambridgeshire":24197,"##lide":24198,"sprawling":24199,"##bbly":24200,"eastwood":24201,"ghent":24202,"synth":24203,"##buck":24204,"advisers":24205,"##bah":24206,"nominally":24207,"hapoel":24208,"qu":24209,"daggers":24210,"estranged":24211,"fabricated":24212,"towels":24213,"vinnie":24214,"wcw":24215,"misunderstanding":24216,"anglia":24217,"nothin":24218,"unmistakable":24219,"##dust":24220,"##lova":24221,"chilly":24222,"marquette":24223,"truss":24224,"##edge":24225,"##erine":24226,"reece":24227,"##lty":24228,"##chemist":24229,"##connected":24230,"272":24231,"308":24232,"41st":24233,"bash":24234,"raion":24235,"waterfalls":24236,"##ump":24237,"##main":24238,"labyrinth":24239,"queue":24240,"theorist":24241,"##istle":24242,"bharatiya":24243,"flexed":24244,"soundtracks":24245,"rooney":24246,"leftist":24247,"patrolling":24248,"wharton":24249,"plainly":24250,"alleviate":24251,"eastman":24252,"schuster":24253,"topographic":24254,"engages":24255,"immensely":24256,"unbearable":24257,"fairchild":24258,"1620":24259,"dona":24260,"lurking":24261,"parisian":24262,"oliveira":24263,"ia":24264,"indictment":24265,"hahn":24266,"bangladeshi":24267,"##aster":24268,"vivo":24269,"##uming":24270,"##ential":24271,"antonia":24272,"expects":24273,"indoors":24274,"kildare":24275,"harlan":24276,"##logue":24277,"##ogenic":24278,"##sities":24279,"forgiven":24280,"##wat":24281,"childish":24282,"tavi":24283,"##mide":24284,"##orra":24285,"plausible":24286,"grimm":24287,"successively":24288,"scooted":24289,"##bola":24290,"##dget":24291,"##rith":24292,"spartans":24293,"emery":24294,"flatly":24295,"azure":24296,"epilogue":24297,"##wark":24298,"flourish":24299,"##iny":24300,"##tracted":24301,"##overs":24302,"##oshi":24303,"bestseller":24304,"distressed":24305,"receipt":24306,"spitting":24307,"hermit":24308,"topological":24309,"##cot":24310,"drilled":24311,"subunit":24312,"francs":24313,"##layer":24314,"eel":24315,"##fk":24316,"##itas":24317,"octopus":24318,"footprint":24319,"petitions":24320,"ufo":24321,"##say":24322,"##foil":24323,"interfering":24324,"leaking":24325,"palo":24326,"##metry":24327,"thistle":24328,"valiant":24329,"##pic":24330,"narayan":24331,"mcpherson":24332,"##fast":24333,"gonzales":24334,"##ym":24335,"##enne":24336,"dustin":24337,"novgorod":24338,"solos":24339,"##zman":24340,"doin":24341,"##raph":24342,"##patient":24343,"##meyer":24344,"soluble":24345,"ashland":24346,"cuffs":24347,"carole":24348,"pendleton":24349,"whistling":24350,"vassal":24351,"##river":24352,"deviation":24353,"revisited":24354,"constituents":24355,"rallied":24356,"rotate":24357,"loomed":24358,"##eil":24359,"##nting":24360,"amateurs":24361,"augsburg":24362,"auschwitz":24363,"crowns":24364,"skeletons":24365,"##cona":24366,"bonnet":24367,"257":24368,"dummy":24369,"globalization":24370,"simeon":24371,"sleeper":24372,"mandal":24373,"differentiated":24374,"##crow":24375,"##mare":24376,"milne":24377,"bundled":24378,"exasperated":24379,"talmud":24380,"owes":24381,"segregated":24382,"##feng":24383,"##uary":24384,"dentist":24385,"piracy":24386,"props":24387,"##rang":24388,"devlin":24389,"##torium":24390,"malicious":24391,"paws":24392,"##laid":24393,"dependency":24394,"##ergy":24395,"##fers":24396,"##enna":24397,"258":24398,"pistons":24399,"rourke":24400,"jed":24401,"grammatical":24402,"tres":24403,"maha":24404,"wig":24405,"512":24406,"ghostly":24407,"jayne":24408,"##achal":24409,"##creen":24410,"##ilis":24411,"##lins":24412,"##rence":24413,"designate":24414,"##with":24415,"arrogance":24416,"cambodian":24417,"clones":24418,"showdown":24419,"throttle":24420,"twain":24421,"##ception":24422,"lobes":24423,"metz":24424,"nagoya":24425,"335":24426,"braking":24427,"##furt":24428,"385":24429,"roaming":24430,"##minster":24431,"amin":24432,"crippled":24433,"##37":24434,"##llary":24435,"indifferent":24436,"hoffmann":24437,"idols":24438,"intimidating":24439,"1751":24440,"261":24441,"influenza":24442,"memo":24443,"onions":24444,"1748":24445,"bandage":24446,"consciously":24447,"##landa":24448,"##rage":24449,"clandestine":24450,"observes":24451,"swiped":24452,"tangle":24453,"##ener":24454,"##jected":24455,"##trum":24456,"##bill":24457,"##lta":24458,"hugs":24459,"congresses":24460,"josiah":24461,"spirited":24462,"##dek":24463,"humanist":24464,"managerial":24465,"filmmaking":24466,"inmate":24467,"rhymes":24468,"debuting":24469,"grimsby":24470,"ur":24471,"##laze":24472,"duplicate":24473,"vigor":24474,"##tf":24475,"republished":24476,"bolshevik":24477,"refurbishment":24478,"antibiotics":24479,"martini":24480,"methane":24481,"newscasts":24482,"royale":24483,"horizons":24484,"levant":24485,"iain":24486,"visas":24487,"##ischen":24488,"paler":24489,"##around":24490,"manifestation":24491,"snuck":24492,"alf":24493,"chop":24494,"futile":24495,"pedestal":24496,"rehab":24497,"##kat":24498,"bmg":24499,"kerman":24500,"res":24501,"fairbanks":24502,"jarrett":24503,"abstraction":24504,"saharan":24505,"##zek":24506,"1746":24507,"procedural":24508,"clearer":24509,"kincaid":24510,"sash":24511,"luciano":24512,"##ffey":24513,"crunch":24514,"helmut":24515,"##vara":24516,"revolutionaries":24517,"##tute":24518,"creamy":24519,"leach":24520,"##mmon":24521,"1747":24522,"permitting":24523,"nes":24524,"plight":24525,"wendell":24526,"##lese":24527,"contra":24528,"ts":24529,"clancy":24530,"ipa":24531,"mach":24532,"staples":24533,"autopsy":24534,"disturbances":24535,"nueva":24536,"karin":24537,"pontiac":24538,"##uding":24539,"proxy":24540,"venerable":24541,"haunt":24542,"leto":24543,"bergman":24544,"expands":24545,"##helm":24546,"wal":24547,"##pipe":24548,"canning":24549,"celine":24550,"cords":24551,"obesity":24552,"##enary":24553,"intrusion":24554,"planner":24555,"##phate":24556,"reasoned":24557,"sequencing":24558,"307":24559,"harrow":24560,"##chon":24561,"##dora":24562,"marred":24563,"mcintyre":24564,"repay":24565,"tarzan":24566,"darting":24567,"248":24568,"harrisburg":24569,"margarita":24570,"repulsed":24571,"##hur":24572,"##lding":24573,"belinda":24574,"hamburger":24575,"novo":24576,"compliant":24577,"runways":24578,"bingham":24579,"registrar":24580,"skyscraper":24581,"ic":24582,"cuthbert":24583,"improvisation":24584,"livelihood":24585,"##corp":24586,"##elial":24587,"admiring":24588,"##dened":24589,"sporadic":24590,"believer":24591,"casablanca":24592,"popcorn":24593,"##29":24594,"asha":24595,"shovel":24596,"##bek":24597,"##dice":24598,"coiled":24599,"tangible":24600,"##dez":24601,"casper":24602,"elsie":24603,"resin":24604,"tenderness":24605,"rectory":24606,"##ivision":24607,"avail":24608,"sonar":24609,"##mori":24610,"boutique":24611,"##dier":24612,"guerre":24613,"bathed":24614,"upbringing":24615,"vaulted":24616,"sandals":24617,"blessings":24618,"##naut":24619,"##utnant":24620,"1680":24621,"306":24622,"foxes":24623,"pia":24624,"corrosion":24625,"hesitantly":24626,"confederates":24627,"crystalline":24628,"footprints":24629,"shapiro":24630,"tirana":24631,"valentin":24632,"drones":24633,"45th":24634,"microscope":24635,"shipments":24636,"texted":24637,"inquisition":24638,"wry":24639,"guernsey":24640,"unauthorized":24641,"resigning":24642,"760":24643,"ripple":24644,"schubert":24645,"stu":24646,"reassure":24647,"felony":24648,"##ardo":24649,"brittle":24650,"koreans":24651,"##havan":24652,"##ives":24653,"dun":24654,"implicit":24655,"tyres":24656,"##aldi":24657,"##lth":24658,"magnolia":24659,"##ehan":24660,"##puri":24661,"##poulos":24662,"aggressively":24663,"fei":24664,"gr":24665,"familiarity":24666,"##poo":24667,"indicative":24668,"##trust":24669,"fundamentally":24670,"jimmie":24671,"overrun":24672,"395":24673,"anchors":24674,"moans":24675,"##opus":24676,"britannia":24677,"armagh":24678,"##ggle":24679,"purposely":24680,"seizing":24681,"##vao":24682,"bewildered":24683,"mundane":24684,"avoidance":24685,"cosmopolitan":24686,"geometridae":24687,"quartermaster":24688,"caf":24689,"415":24690,"chatter":24691,"engulfed":24692,"gleam":24693,"purge":24694,"##icate":24695,"juliette":24696,"jurisprudence":24697,"guerra":24698,"revisions":24699,"##bn":24700,"casimir":24701,"brew":24702,"##jm":24703,"1749":24704,"clapton":24705,"cloudy":24706,"conde":24707,"hermitage":24708,"278":24709,"simulations":24710,"torches":24711,"vincenzo":24712,"matteo":24713,"##rill":24714,"hidalgo":24715,"booming":24716,"westbound":24717,"accomplishment":24718,"tentacles":24719,"unaffected":24720,"##sius":24721,"annabelle":24722,"flopped":24723,"sloping":24724,"##litz":24725,"dreamer":24726,"interceptor":24727,"vu":24728,"##loh":24729,"consecration":24730,"copying":24731,"messaging":24732,"breaker":24733,"climates":24734,"hospitalized":24735,"1752":24736,"torino":24737,"afternoons":24738,"winfield":24739,"witnessing":24740,"##teacher":24741,"breakers":24742,"choirs":24743,"sawmill":24744,"coldly":24745,"##ege":24746,"sipping":24747,"haste":24748,"uninhabited":24749,"conical":24750,"bibliography":24751,"pamphlets":24752,"severn":24753,"edict":24754,"##oca":24755,"deux":24756,"illnesses":24757,"grips":24758,"##pl":24759,"rehearsals":24760,"sis":24761,"thinkers":24762,"tame":24763,"##keepers":24764,"1690":24765,"acacia":24766,"reformer":24767,"##osed":24768,"##rys":24769,"shuffling":24770,"##iring":24771,"##shima":24772,"eastbound":24773,"ionic":24774,"rhea":24775,"flees":24776,"littered":24777,"##oum":24778,"rocker":24779,"vomiting":24780,"groaning":24781,"champ":24782,"overwhelmingly":24783,"civilizations":24784,"paces":24785,"sloop":24786,"adoptive":24787,"##tish":24788,"skaters":24789,"##vres":24790,"aiding":24791,"mango":24792,"##joy":24793,"nikola":24794,"shriek":24795,"##ignon":24796,"pharmaceuticals":24797,"##mg":24798,"tuna":24799,"calvert":24800,"gustavo":24801,"stocked":24802,"yearbook":24803,"##urai":24804,"##mana":24805,"computed":24806,"subsp":24807,"riff":24808,"hanoi":24809,"kelvin":24810,"hamid":24811,"moors":24812,"pastures":24813,"summons":24814,"jihad":24815,"nectar":24816,"##ctors":24817,"bayou":24818,"untitled":24819,"pleasing":24820,"vastly":24821,"republics":24822,"intellect":24823,"##η":24824,"##ulio":24825,"##tou":24826,"crumbling":24827,"stylistic":24828,"sb":24829,"##ی":24830,"consolation":24831,"frequented":24832,"h₂o":24833,"walden":24834,"widows":24835,"##iens":24836,"404":24837,"##ignment":24838,"chunks":24839,"improves":24840,"288":24841,"grit":24842,"recited":24843,"##dev":24844,"snarl":24845,"sociological":24846,"##arte":24847,"##gul":24848,"inquired":24849,"##held":24850,"bruise":24851,"clube":24852,"consultancy":24853,"homogeneous":24854,"hornets":24855,"multiplication":24856,"pasta":24857,"prick":24858,"savior":24859,"##grin":24860,"##kou":24861,"##phile":24862,"yoon":24863,"##gara":24864,"grimes":24865,"vanishing":24866,"cheering":24867,"reacting":24868,"bn":24869,"distillery":24870,"##quisite":24871,"##vity":24872,"coe":24873,"dockyard":24874,"massif":24875,"##jord":24876,"escorts":24877,"voss":24878,"##valent":24879,"byte":24880,"chopped":24881,"hawke":24882,"illusions":24883,"workings":24884,"floats":24885,"##koto":24886,"##vac":24887,"kv":24888,"annapolis":24889,"madden":24890,"##onus":24891,"alvaro":24892,"noctuidae":24893,"##cum":24894,"##scopic":24895,"avenge":24896,"steamboat":24897,"forte":24898,"illustrates":24899,"erika":24900,"##trip":24901,"570":24902,"dew":24903,"nationalities":24904,"bran":24905,"manifested":24906,"thirsty":24907,"diversified":24908,"muscled":24909,"reborn":24910,"##standing":24911,"arson":24912,"##lessness":24913,"##dran":24914,"##logram":24915,"##boys":24916,"##kushima":24917,"##vious":24918,"willoughby":24919,"##phobia":24920,"286":24921,"alsace":24922,"dashboard":24923,"yuki":24924,"##chai":24925,"granville":24926,"myspace":24927,"publicized":24928,"tricked":24929,"##gang":24930,"adjective":24931,"##ater":24932,"relic":24933,"reorganisation":24934,"enthusiastically":24935,"indications":24936,"saxe":24937,"##lassified":24938,"consolidate":24939,"iec":24940,"padua":24941,"helplessly":24942,"ramps":24943,"renaming":24944,"regulars":24945,"pedestrians":24946,"accents":24947,"convicts":24948,"inaccurate":24949,"lowers":24950,"mana":24951,"##pati":24952,"barrie":24953,"bjp":24954,"outta":24955,"someplace":24956,"berwick":24957,"flanking":24958,"invoked":24959,"marrow":24960,"sparsely":24961,"excerpts":24962,"clothed":24963,"rei":24964,"##ginal":24965,"wept":24966,"##straße":24967,"##vish":24968,"alexa":24969,"excel":24970,"##ptive":24971,"membranes":24972,"aquitaine":24973,"creeks":24974,"cutler":24975,"sheppard":24976,"implementations":24977,"ns":24978,"##dur":24979,"fragrance":24980,"budge":24981,"concordia":24982,"magnesium":24983,"marcelo":24984,"##antes":24985,"gladly":24986,"vibrating":24987,"##rral":24988,"##ggles":24989,"montrose":24990,"##omba":24991,"lew":24992,"seamus":24993,"1630":24994,"cocky":24995,"##ament":24996,"##uen":24997,"bjorn":24998,"##rrick":24999,"fielder":25000,"fluttering":25001,"##lase":25002,"methyl":25003,"kimberley":25004,"mcdowell":25005,"reductions":25006,"barbed":25007,"##jic":25008,"##tonic":25009,"aeronautical":25010,"condensed":25011,"distracting":25012,"##promising":25013,"huffed":25014,"##cala":25015,"##sle":25016,"claudius":25017,"invincible":25018,"missy":25019,"pious":25020,"balthazar":25021,"ci":25022,"##lang":25023,"butte":25024,"combo":25025,"orson":25026,"##dication":25027,"myriad":25028,"1707":25029,"silenced":25030,"##fed":25031,"##rh":25032,"coco":25033,"netball":25034,"yourselves":25035,"##oza":25036,"clarify":25037,"heller":25038,"peg":25039,"durban":25040,"etudes":25041,"offender":25042,"roast":25043,"blackmail":25044,"curvature":25045,"##woods":25046,"vile":25047,"309":25048,"illicit":25049,"suriname":25050,"##linson":25051,"overture":25052,"1685":25053,"bubbling":25054,"gymnast":25055,"tucking":25056,"##mming":25057,"##ouin":25058,"maldives":25059,"##bala":25060,"gurney":25061,"##dda":25062,"##eased":25063,"##oides":25064,"backside":25065,"pinto":25066,"jars":25067,"racehorse":25068,"tending":25069,"##rdial":25070,"baronetcy":25071,"wiener":25072,"duly":25073,"##rke":25074,"barbarian":25075,"cupping":25076,"flawed":25077,"##thesis":25078,"bertha":25079,"pleistocene":25080,"puddle":25081,"swearing":25082,"##nob":25083,"##tically":25084,"fleeting":25085,"prostate":25086,"amulet":25087,"educating":25088,"##mined":25089,"##iti":25090,"##tler":25091,"75th":25092,"jens":25093,"respondents":25094,"analytics":25095,"cavaliers":25096,"papacy":25097,"raju":25098,"##iente":25099,"##ulum":25100,"##tip":25101,"funnel":25102,"271":25103,"disneyland":25104,"##lley":25105,"sociologist":25106,"##iam":25107,"2500":25108,"faulkner":25109,"louvre":25110,"menon":25111,"##dson":25112,"276":25113,"##ower":25114,"afterlife":25115,"mannheim":25116,"peptide":25117,"referees":25118,"comedians":25119,"meaningless":25120,"##anger":25121,"##laise":25122,"fabrics":25123,"hurley":25124,"renal":25125,"sleeps":25126,"##bour":25127,"##icle":25128,"breakout":25129,"kristin":25130,"roadside":25131,"animator":25132,"clover":25133,"disdain":25134,"unsafe":25135,"redesign":25136,"##urity":25137,"firth":25138,"barnsley":25139,"portage":25140,"reset":25141,"narrows":25142,"268":25143,"commandos":25144,"expansive":25145,"speechless":25146,"tubular":25147,"##lux":25148,"essendon":25149,"eyelashes":25150,"smashwords":25151,"##yad":25152,"##bang":25153,"##claim":25154,"craved":25155,"sprinted":25156,"chet":25157,"somme":25158,"astor":25159,"wrocław":25160,"orton":25161,"266":25162,"bane":25163,"##erving":25164,"##uing":25165,"mischief":25166,"##amps":25167,"##sund":25168,"scaling":25169,"terre":25170,"##xious":25171,"impairment":25172,"offenses":25173,"undermine":25174,"moi":25175,"soy":25176,"contiguous":25177,"arcadia":25178,"inuit":25179,"seam":25180,"##tops":25181,"macbeth":25182,"rebelled":25183,"##icative":25184,"##iot":25185,"590":25186,"elaborated":25187,"frs":25188,"uniformed":25189,"##dberg":25190,"259":25191,"powerless":25192,"priscilla":25193,"stimulated":25194,"980":25195,"qc":25196,"arboretum":25197,"frustrating":25198,"trieste":25199,"bullock":25200,"##nified":25201,"enriched":25202,"glistening":25203,"intern":25204,"##adia":25205,"locus":25206,"nouvelle":25207,"ollie":25208,"ike":25209,"lash":25210,"starboard":25211,"ee":25212,"tapestry":25213,"headlined":25214,"hove":25215,"rigged":25216,"##vite":25217,"pollock":25218,"##yme":25219,"thrive":25220,"clustered":25221,"cas":25222,"roi":25223,"gleamed":25224,"olympiad":25225,"##lino":25226,"pressured":25227,"regimes":25228,"##hosis":25229,"##lick":25230,"ripley":25231,"##ophone":25232,"kickoff":25233,"gallon":25234,"rockwell":25235,"##arable":25236,"crusader":25237,"glue":25238,"revolutions":25239,"scrambling":25240,"1714":25241,"grover":25242,"##jure":25243,"englishman":25244,"aztec":25245,"263":25246,"contemplating":25247,"coven":25248,"ipad":25249,"preach":25250,"triumphant":25251,"tufts":25252,"##esian":25253,"rotational":25254,"##phus":25255,"328":25256,"falkland":25257,"##brates":25258,"strewn":25259,"clarissa":25260,"rejoin":25261,"environmentally":25262,"glint":25263,"banded":25264,"drenched":25265,"moat":25266,"albanians":25267,"johor":25268,"rr":25269,"maestro":25270,"malley":25271,"nouveau":25272,"shaded":25273,"taxonomy":25274,"v6":25275,"adhere":25276,"bunk":25277,"airfields":25278,"##ritan":25279,"1741":25280,"encompass":25281,"remington":25282,"tran":25283,"##erative":25284,"amelie":25285,"mazda":25286,"friar":25287,"morals":25288,"passions":25289,"##zai":25290,"breadth":25291,"vis":25292,"##hae":25293,"argus":25294,"burnham":25295,"caressing":25296,"insider":25297,"rudd":25298,"##imov":25299,"##mini":25300,"##rso":25301,"italianate":25302,"murderous":25303,"textual":25304,"wainwright":25305,"armada":25306,"bam":25307,"weave":25308,"timer":25309,"##taken":25310,"##nh":25311,"fra":25312,"##crest":25313,"ardent":25314,"salazar":25315,"taps":25316,"tunis":25317,"##ntino":25318,"allegro":25319,"gland":25320,"philanthropic":25321,"##chester":25322,"implication":25323,"##optera":25324,"esq":25325,"judas":25326,"noticeably":25327,"wynn":25328,"##dara":25329,"inched":25330,"indexed":25331,"crises":25332,"villiers":25333,"bandit":25334,"royalties":25335,"patterned":25336,"cupboard":25337,"interspersed":25338,"accessory":25339,"isla":25340,"kendrick":25341,"entourage":25342,"stitches":25343,"##esthesia":25344,"headwaters":25345,"##ior":25346,"interlude":25347,"distraught":25348,"draught":25349,"1727":25350,"##basket":25351,"biased":25352,"sy":25353,"transient":25354,"triad":25355,"subgenus":25356,"adapting":25357,"kidd":25358,"shortstop":25359,"##umatic":25360,"dimly":25361,"spiked":25362,"mcleod":25363,"reprint":25364,"nellie":25365,"pretoria":25366,"windmill":25367,"##cek":25368,"singled":25369,"##mps":25370,"273":25371,"reunite":25372,"##orous":25373,"747":25374,"bankers":25375,"outlying":25376,"##omp":25377,"##ports":25378,"##tream":25379,"apologies":25380,"cosmetics":25381,"patsy":25382,"##deh":25383,"##ocks":25384,"##yson":25385,"bender":25386,"nantes":25387,"serene":25388,"##nad":25389,"lucha":25390,"mmm":25391,"323":25392,"##cius":25393,"##gli":25394,"cmll":25395,"coinage":25396,"nestor":25397,"juarez":25398,"##rook":25399,"smeared":25400,"sprayed":25401,"twitching":25402,"sterile":25403,"irina":25404,"embodied":25405,"juveniles":25406,"enveloped":25407,"miscellaneous":25408,"cancers":25409,"dq":25410,"gulped":25411,"luisa":25412,"crested":25413,"swat":25414,"donegal":25415,"ref":25416,"##anov":25417,"##acker":25418,"hearst":25419,"mercantile":25420,"##lika":25421,"doorbell":25422,"ua":25423,"vicki":25424,"##alla":25425,"##som":25426,"bilbao":25427,"psychologists":25428,"stryker":25429,"sw":25430,"horsemen":25431,"turkmenistan":25432,"wits":25433,"##national":25434,"anson":25435,"mathew":25436,"screenings":25437,"##umb":25438,"rihanna":25439,"##agne":25440,"##nessy":25441,"aisles":25442,"##iani":25443,"##osphere":25444,"hines":25445,"kenton":25446,"saskatoon":25447,"tasha":25448,"truncated":25449,"##champ":25450,"##itan":25451,"mildred":25452,"advises":25453,"fredrik":25454,"interpreting":25455,"inhibitors":25456,"##athi":25457,"spectroscopy":25458,"##hab":25459,"##kong":25460,"karim":25461,"panda":25462,"##oia":25463,"##nail":25464,"##vc":25465,"conqueror":25466,"kgb":25467,"leukemia":25468,"##dity":25469,"arrivals":25470,"cheered":25471,"pisa":25472,"phosphorus":25473,"shielded":25474,"##riated":25475,"mammal":25476,"unitarian":25477,"urgently":25478,"chopin":25479,"sanitary":25480,"##mission":25481,"spicy":25482,"drugged":25483,"hinges":25484,"##tort":25485,"tipping":25486,"trier":25487,"impoverished":25488,"westchester":25489,"##caster":25490,"267":25491,"epoch":25492,"nonstop":25493,"##gman":25494,"##khov":25495,"aromatic":25496,"centrally":25497,"cerro":25498,"##tively":25499,"##vio":25500,"billions":25501,"modulation":25502,"sedimentary":25503,"283":25504,"facilitating":25505,"outrageous":25506,"goldstein":25507,"##eak":25508,"##kt":25509,"ld":25510,"maitland":25511,"penultimate":25512,"pollard":25513,"##dance":25514,"fleets":25515,"spaceship":25516,"vertebrae":25517,"##nig":25518,"alcoholism":25519,"als":25520,"recital":25521,"##bham":25522,"##ference":25523,"##omics":25524,"m2":25525,"##bm":25526,"trois":25527,"##tropical":25528,"##в":25529,"commemorates":25530,"##meric":25531,"marge":25532,"##raction":25533,"1643":25534,"670":25535,"cosmetic":25536,"ravaged":25537,"##ige":25538,"catastrophe":25539,"eng":25540,"##shida":25541,"albrecht":25542,"arterial":25543,"bellamy":25544,"decor":25545,"harmon":25546,"##rde":25547,"bulbs":25548,"synchronized":25549,"vito":25550,"easiest":25551,"shetland":25552,"shielding":25553,"wnba":25554,"##glers":25555,"##ssar":25556,"##riam":25557,"brianna":25558,"cumbria":25559,"##aceous":25560,"##rard":25561,"cores":25562,"thayer":25563,"##nsk":25564,"brood":25565,"hilltop":25566,"luminous":25567,"carts":25568,"keynote":25569,"larkin":25570,"logos":25571,"##cta":25572,"##ا":25573,"##mund":25574,"##quay":25575,"lilith":25576,"tinted":25577,"277":25578,"wrestle":25579,"mobilization":25580,"##uses":25581,"sequential":25582,"siam":25583,"bloomfield":25584,"takahashi":25585,"274":25586,"##ieving":25587,"presenters":25588,"ringo":25589,"blazed":25590,"witty":25591,"##oven":25592,"##ignant":25593,"devastation":25594,"haydn":25595,"harmed":25596,"newt":25597,"therese":25598,"##peed":25599,"gershwin":25600,"molina":25601,"rabbis":25602,"sudanese":25603,"001":25604,"innate":25605,"restarted":25606,"##sack":25607,"##fus":25608,"slices":25609,"wb":25610,"##shah":25611,"enroll":25612,"hypothetical":25613,"hysterical":25614,"1743":25615,"fabio":25616,"indefinite":25617,"warped":25618,"##hg":25619,"exchanging":25620,"525":25621,"unsuitable":25622,"##sboro":25623,"gallo":25624,"1603":25625,"bret":25626,"cobalt":25627,"homemade":25628,"##hunter":25629,"mx":25630,"operatives":25631,"##dhar":25632,"terraces":25633,"durable":25634,"latch":25635,"pens":25636,"whorls":25637,"##ctuated":25638,"##eaux":25639,"billing":25640,"ligament":25641,"succumbed":25642,"##gly":25643,"regulators":25644,"spawn":25645,"##brick":25646,"##stead":25647,"filmfare":25648,"rochelle":25649,"##nzo":25650,"1725":25651,"circumstance":25652,"saber":25653,"supplements":25654,"##nsky":25655,"##tson":25656,"crowe":25657,"wellesley":25658,"carrot":25659,"##9th":25660,"##movable":25661,"primate":25662,"drury":25663,"sincerely":25664,"topical":25665,"##mad":25666,"##rao":25667,"callahan":25668,"kyiv":25669,"smarter":25670,"tits":25671,"undo":25672,"##yeh":25673,"announcements":25674,"anthologies":25675,"barrio":25676,"nebula":25677,"##islaus":25678,"##shaft":25679,"##tyn":25680,"bodyguards":25681,"2021":25682,"assassinate":25683,"barns":25684,"emmett":25685,"scully":25686,"##mah":25687,"##yd":25688,"##eland":25689,"##tino":25690,"##itarian":25691,"demoted":25692,"gorman":25693,"lashed":25694,"prized":25695,"adventist":25696,"writ":25697,"##gui":25698,"alla":25699,"invertebrates":25700,"##ausen":25701,"1641":25702,"amman":25703,"1742":25704,"align":25705,"healy":25706,"redistribution":25707,"##gf":25708,"##rize":25709,"insulation":25710,"##drop":25711,"adherents":25712,"hezbollah":25713,"vitro":25714,"ferns":25715,"yanking":25716,"269":25717,"php":25718,"registering":25719,"uppsala":25720,"cheerleading":25721,"confines":25722,"mischievous":25723,"tully":25724,"##ross":25725,"49th":25726,"docked":25727,"roam":25728,"stipulated":25729,"pumpkin":25730,"##bry":25731,"prompt":25732,"##ezer":25733,"blindly":25734,"shuddering":25735,"craftsmen":25736,"frail":25737,"scented":25738,"katharine":25739,"scramble":25740,"shaggy":25741,"sponge":25742,"helix":25743,"zaragoza":25744,"279":25745,"##52":25746,"43rd":25747,"backlash":25748,"fontaine":25749,"seizures":25750,"posse":25751,"cowan":25752,"nonfiction":25753,"telenovela":25754,"wwii":25755,"hammered":25756,"undone":25757,"##gpur":25758,"encircled":25759,"irs":25760,"##ivation":25761,"artefacts":25762,"oneself":25763,"searing":25764,"smallpox":25765,"##belle":25766,"##osaurus":25767,"shandong":25768,"breached":25769,"upland":25770,"blushing":25771,"rankin":25772,"infinitely":25773,"psyche":25774,"tolerated":25775,"docking":25776,"evicted":25777,"##col":25778,"unmarked":25779,"##lving":25780,"gnome":25781,"lettering":25782,"litres":25783,"musique":25784,"##oint":25785,"benevolent":25786,"##jal":25787,"blackened":25788,"##anna":25789,"mccall":25790,"racers":25791,"tingle":25792,"##ocene":25793,"##orestation":25794,"introductions":25795,"radically":25796,"292":25797,"##hiff":25798,"##باد":25799,"1610":25800,"1739":25801,"munchen":25802,"plead":25803,"##nka":25804,"condo":25805,"scissors":25806,"##sight":25807,"##tens":25808,"apprehension":25809,"##cey":25810,"##yin":25811,"hallmark":25812,"watering":25813,"formulas":25814,"sequels":25815,"##llas":25816,"aggravated":25817,"bae":25818,"commencing":25819,"##building":25820,"enfield":25821,"prohibits":25822,"marne":25823,"vedic":25824,"civilized":25825,"euclidean":25826,"jagger":25827,"beforehand":25828,"blasts":25829,"dumont":25830,"##arney":25831,"##nem":25832,"740":25833,"conversions":25834,"hierarchical":25835,"rios":25836,"simulator":25837,"##dya":25838,"##lellan":25839,"hedges":25840,"oleg":25841,"thrusts":25842,"shadowed":25843,"darby":25844,"maximize":25845,"1744":25846,"gregorian":25847,"##nded":25848,"##routed":25849,"sham":25850,"unspecified":25851,"##hog":25852,"emory":25853,"factual":25854,"##smo":25855,"##tp":25856,"fooled":25857,"##rger":25858,"ortega":25859,"wellness":25860,"marlon":25861,"##oton":25862,"##urance":25863,"casket":25864,"keating":25865,"ley":25866,"enclave":25867,"##ayan":25868,"char":25869,"influencing":25870,"jia":25871,"##chenko":25872,"412":25873,"ammonia":25874,"erebidae":25875,"incompatible":25876,"violins":25877,"cornered":25878,"##arat":25879,"grooves":25880,"astronauts":25881,"columbian":25882,"rampant":25883,"fabrication":25884,"kyushu":25885,"mahmud":25886,"vanish":25887,"##dern":25888,"mesopotamia":25889,"##lete":25890,"ict":25891,"##rgen":25892,"caspian":25893,"kenji":25894,"pitted":25895,"##vered":25896,"999":25897,"grimace":25898,"roanoke":25899,"tchaikovsky":25900,"twinned":25901,"##analysis":25902,"##awan":25903,"xinjiang":25904,"arias":25905,"clemson":25906,"kazakh":25907,"sizable":25908,"1662":25909,"##khand":25910,"##vard":25911,"plunge":25912,"tatum":25913,"vittorio":25914,"##nden":25915,"cholera":25916,"##dana":25917,"##oper":25918,"bracing":25919,"indifference":25920,"projectile":25921,"superliga":25922,"##chee":25923,"realises":25924,"upgrading":25925,"299":25926,"porte":25927,"retribution":25928,"##vies":25929,"nk":25930,"stil":25931,"##resses":25932,"ama":25933,"bureaucracy":25934,"blackberry":25935,"bosch":25936,"testosterone":25937,"collapses":25938,"greer":25939,"##pathic":25940,"ioc":25941,"fifties":25942,"malls":25943,"##erved":25944,"bao":25945,"baskets":25946,"adolescents":25947,"siegfried":25948,"##osity":25949,"##tosis":25950,"mantra":25951,"detecting":25952,"existent":25953,"fledgling":25954,"##cchi":25955,"dissatisfied":25956,"gan":25957,"telecommunication":25958,"mingled":25959,"sobbed":25960,"6000":25961,"controversies":25962,"outdated":25963,"taxis":25964,"##raus":25965,"fright":25966,"slams":25967,"##lham":25968,"##fect":25969,"##tten":25970,"detectors":25971,"fetal":25972,"tanned":25973,"##uw":25974,"fray":25975,"goth":25976,"olympian":25977,"skipping":25978,"mandates":25979,"scratches":25980,"sheng":25981,"unspoken":25982,"hyundai":25983,"tracey":25984,"hotspur":25985,"restrictive":25986,"##buch":25987,"americana":25988,"mundo":25989,"##bari":25990,"burroughs":25991,"diva":25992,"vulcan":25993,"##6th":25994,"distinctions":25995,"thumping":25996,"##ngen":25997,"mikey":25998,"sheds":25999,"fide":26000,"rescues":26001,"springsteen":26002,"vested":26003,"valuation":26004,"##ece":26005,"##ely":26006,"pinnacle":26007,"rake":26008,"sylvie":26009,"##edo":26010,"almond":26011,"quivering":26012,"##irus":26013,"alteration":26014,"faltered":26015,"##wad":26016,"51st":26017,"hydra":26018,"ticked":26019,"##kato":26020,"recommends":26021,"##dicated":26022,"antigua":26023,"arjun":26024,"stagecoach":26025,"wilfred":26026,"trickle":26027,"pronouns":26028,"##pon":26029,"aryan":26030,"nighttime":26031,"##anian":26032,"gall":26033,"pea":26034,"stitch":26035,"##hei":26036,"leung":26037,"milos":26038,"##dini":26039,"eritrea":26040,"nexus":26041,"starved":26042,"snowfall":26043,"kant":26044,"parasitic":26045,"cot":26046,"discus":26047,"hana":26048,"strikers":26049,"appleton":26050,"kitchens":26051,"##erina":26052,"##partisan":26053,"##itha":26054,"##vius":26055,"disclose":26056,"metis":26057,"##channel":26058,"1701":26059,"tesla":26060,"##vera":26061,"fitch":26062,"1735":26063,"blooded":26064,"##tila":26065,"decimal":26066,"##tang":26067,"##bai":26068,"cyclones":26069,"eun":26070,"bottled":26071,"peas":26072,"pensacola":26073,"basha":26074,"bolivian":26075,"crabs":26076,"boil":26077,"lanterns":26078,"partridge":26079,"roofed":26080,"1645":26081,"necks":26082,"##phila":26083,"opined":26084,"patting":26085,"##kla":26086,"##lland":26087,"chuckles":26088,"volta":26089,"whereupon":26090,"##nche":26091,"devout":26092,"euroleague":26093,"suicidal":26094,"##dee":26095,"inherently":26096,"involuntary":26097,"knitting":26098,"nasser":26099,"##hide":26100,"puppets":26101,"colourful":26102,"courageous":26103,"southend":26104,"stills":26105,"miraculous":26106,"hodgson":26107,"richer":26108,"rochdale":26109,"ethernet":26110,"greta":26111,"uniting":26112,"prism":26113,"umm":26114,"##haya":26115,"##itical":26116,"##utation":26117,"deterioration":26118,"pointe":26119,"prowess":26120,"##ropriation":26121,"lids":26122,"scranton":26123,"billings":26124,"subcontinent":26125,"##koff":26126,"##scope":26127,"brute":26128,"kellogg":26129,"psalms":26130,"degraded":26131,"##vez":26132,"stanisław":26133,"##ructured":26134,"ferreira":26135,"pun":26136,"astonishing":26137,"gunnar":26138,"##yat":26139,"arya":26140,"prc":26141,"gottfried":26142,"##tight":26143,"excursion":26144,"##ographer":26145,"dina":26146,"##quil":26147,"##nare":26148,"huffington":26149,"illustrious":26150,"wilbur":26151,"gundam":26152,"verandah":26153,"##zard":26154,"naacp":26155,"##odle":26156,"constructive":26157,"fjord":26158,"kade":26159,"##naud":26160,"generosity":26161,"thrilling":26162,"baseline":26163,"cayman":26164,"frankish":26165,"plastics":26166,"accommodations":26167,"zoological":26168,"##fting":26169,"cedric":26170,"qb":26171,"motorized":26172,"##dome":26173,"##otted":26174,"squealed":26175,"tackled":26176,"canucks":26177,"budgets":26178,"situ":26179,"asthma":26180,"dail":26181,"gabled":26182,"grasslands":26183,"whimpered":26184,"writhing":26185,"judgments":26186,"##65":26187,"minnie":26188,"pv":26189,"##carbon":26190,"bananas":26191,"grille":26192,"domes":26193,"monique":26194,"odin":26195,"maguire":26196,"markham":26197,"tierney":26198,"##estra":26199,"##chua":26200,"libel":26201,"poke":26202,"speedy":26203,"atrium":26204,"laval":26205,"notwithstanding":26206,"##edly":26207,"fai":26208,"kala":26209,"##sur":26210,"robb":26211,"##sma":26212,"listings":26213,"luz":26214,"supplementary":26215,"tianjin":26216,"##acing":26217,"enzo":26218,"jd":26219,"ric":26220,"scanner":26221,"croats":26222,"transcribed":26223,"##49":26224,"arden":26225,"cv":26226,"##hair":26227,"##raphy":26228,"##lver":26229,"##uy":26230,"357":26231,"seventies":26232,"staggering":26233,"alam":26234,"horticultural":26235,"hs":26236,"regression":26237,"timbers":26238,"blasting":26239,"##ounded":26240,"montagu":26241,"manipulating":26242,"##cit":26243,"catalytic":26244,"1550":26245,"troopers":26246,"##meo":26247,"condemnation":26248,"fitzpatrick":26249,"##oire":26250,"##roved":26251,"inexperienced":26252,"1670":26253,"castes":26254,"##lative":26255,"outing":26256,"314":26257,"dubois":26258,"flicking":26259,"quarrel":26260,"ste":26261,"learners":26262,"1625":26263,"iq":26264,"whistled":26265,"##class":26266,"282":26267,"classify":26268,"tariffs":26269,"temperament":26270,"355":26271,"folly":26272,"liszt":26273,"##yles":26274,"immersed":26275,"jordanian":26276,"ceasefire":26277,"apparel":26278,"extras":26279,"maru":26280,"fished":26281,"##bio":26282,"harta":26283,"stockport":26284,"assortment":26285,"craftsman":26286,"paralysis":26287,"transmitters":26288,"##cola":26289,"blindness":26290,"##wk":26291,"fatally":26292,"proficiency":26293,"solemnly":26294,"##orno":26295,"repairing":26296,"amore":26297,"groceries":26298,"ultraviolet":26299,"##chase":26300,"schoolhouse":26301,"##tua":26302,"resurgence":26303,"nailed":26304,"##otype":26305,"##×":26306,"ruse":26307,"saliva":26308,"diagrams":26309,"##tructing":26310,"albans":26311,"rann":26312,"thirties":26313,"1b":26314,"antennas":26315,"hilarious":26316,"cougars":26317,"paddington":26318,"stats":26319,"##eger":26320,"breakaway":26321,"ipod":26322,"reza":26323,"authorship":26324,"prohibiting":26325,"scoffed":26326,"##etz":26327,"##ttle":26328,"conscription":26329,"defected":26330,"trondheim":26331,"##fires":26332,"ivanov":26333,"keenan":26334,"##adan":26335,"##ciful":26336,"##fb":26337,"##slow":26338,"locating":26339,"##ials":26340,"##tford":26341,"cadiz":26342,"basalt":26343,"blankly":26344,"interned":26345,"rags":26346,"rattling":26347,"##tick":26348,"carpathian":26349,"reassured":26350,"sync":26351,"bum":26352,"guildford":26353,"iss":26354,"staunch":26355,"##onga":26356,"astronomers":26357,"sera":26358,"sofie":26359,"emergencies":26360,"susquehanna":26361,"##heard":26362,"duc":26363,"mastery":26364,"vh1":26365,"williamsburg":26366,"bayer":26367,"buckled":26368,"craving":26369,"##khan":26370,"##rdes":26371,"bloomington":26372,"##write":26373,"alton":26374,"barbecue":26375,"##bians":26376,"justine":26377,"##hri":26378,"##ndt":26379,"delightful":26380,"smartphone":26381,"newtown":26382,"photon":26383,"retrieval":26384,"peugeot":26385,"hissing":26386,"##monium":26387,"##orough":26388,"flavors":26389,"lighted":26390,"relaunched":26391,"tainted":26392,"##games":26393,"##lysis":26394,"anarchy":26395,"microscopic":26396,"hopping":26397,"adept":26398,"evade":26399,"evie":26400,"##beau":26401,"inhibit":26402,"sinn":26403,"adjustable":26404,"hurst":26405,"intuition":26406,"wilton":26407,"cisco":26408,"44th":26409,"lawful":26410,"lowlands":26411,"stockings":26412,"thierry":26413,"##dalen":26414,"##hila":26415,"##nai":26416,"fates":26417,"prank":26418,"tb":26419,"maison":26420,"lobbied":26421,"provocative":26422,"1724":26423,"4a":26424,"utopia":26425,"##qual":26426,"carbonate":26427,"gujarati":26428,"purcell":26429,"##rford":26430,"curtiss":26431,"##mei":26432,"overgrown":26433,"arenas":26434,"mediation":26435,"swallows":26436,"##rnik":26437,"respectful":26438,"turnbull":26439,"##hedron":26440,"##hope":26441,"alyssa":26442,"ozone":26443,"##ʻi":26444,"ami":26445,"gestapo":26446,"johansson":26447,"snooker":26448,"canteen":26449,"cuff":26450,"declines":26451,"empathy":26452,"stigma":26453,"##ags":26454,"##iner":26455,"##raine":26456,"taxpayers":26457,"gui":26458,"volga":26459,"##wright":26460,"##copic":26461,"lifespan":26462,"overcame":26463,"tattooed":26464,"enactment":26465,"giggles":26466,"##ador":26467,"##camp":26468,"barrington":26469,"bribe":26470,"obligatory":26471,"orbiting":26472,"peng":26473,"##enas":26474,"elusive":26475,"sucker":26476,"##vating":26477,"cong":26478,"hardship":26479,"empowered":26480,"anticipating":26481,"estrada":26482,"cryptic":26483,"greasy":26484,"detainees":26485,"planck":26486,"sudbury":26487,"plaid":26488,"dod":26489,"marriott":26490,"kayla":26491,"##ears":26492,"##vb":26493,"##zd":26494,"mortally":26495,"##hein":26496,"cognition":26497,"radha":26498,"319":26499,"liechtenstein":26500,"meade":26501,"richly":26502,"argyle":26503,"harpsichord":26504,"liberalism":26505,"trumpets":26506,"lauded":26507,"tyrant":26508,"salsa":26509,"tiled":26510,"lear":26511,"promoters":26512,"reused":26513,"slicing":26514,"trident":26515,"##chuk":26516,"##gami":26517,"##lka":26518,"cantor":26519,"checkpoint":26520,"##points":26521,"gaul":26522,"leger":26523,"mammalian":26524,"##tov":26525,"##aar":26526,"##schaft":26527,"doha":26528,"frenchman":26529,"nirvana":26530,"##vino":26531,"delgado":26532,"headlining":26533,"##eron":26534,"##iography":26535,"jug":26536,"tko":26537,"1649":26538,"naga":26539,"intersections":26540,"##jia":26541,"benfica":26542,"nawab":26543,"##suka":26544,"ashford":26545,"gulp":26546,"##deck":26547,"##vill":26548,"##rug":26549,"brentford":26550,"frazier":26551,"pleasures":26552,"dunne":26553,"potsdam":26554,"shenzhen":26555,"dentistry":26556,"##tec":26557,"flanagan":26558,"##dorff":26559,"##hear":26560,"chorale":26561,"dinah":26562,"prem":26563,"quezon":26564,"##rogated":26565,"relinquished":26566,"sutra":26567,"terri":26568,"##pani":26569,"flaps":26570,"##rissa":26571,"poly":26572,"##rnet":26573,"homme":26574,"aback":26575,"##eki":26576,"linger":26577,"womb":26578,"##kson":26579,"##lewood":26580,"doorstep":26581,"orthodoxy":26582,"threaded":26583,"westfield":26584,"##rval":26585,"dioceses":26586,"fridays":26587,"subsided":26588,"##gata":26589,"loyalists":26590,"##biotic":26591,"##ettes":26592,"letterman":26593,"lunatic":26594,"prelate":26595,"tenderly":26596,"invariably":26597,"souza":26598,"thug":26599,"winslow":26600,"##otide":26601,"furlongs":26602,"gogh":26603,"jeopardy":26604,"##runa":26605,"pegasus":26606,"##umble":26607,"humiliated":26608,"standalone":26609,"tagged":26610,"##roller":26611,"freshmen":26612,"klan":26613,"##bright":26614,"attaining":26615,"initiating":26616,"transatlantic":26617,"logged":26618,"viz":26619,"##uance":26620,"1723":26621,"combatants":26622,"intervening":26623,"stephane":26624,"chieftain":26625,"despised":26626,"grazed":26627,"317":26628,"cdc":26629,"galveston":26630,"godzilla":26631,"macro":26632,"simulate":26633,"##planes":26634,"parades":26635,"##esses":26636,"960":26637,"##ductive":26638,"##unes":26639,"equator":26640,"overdose":26641,"##cans":26642,"##hosh":26643,"##lifting":26644,"joshi":26645,"epstein":26646,"sonora":26647,"treacherous":26648,"aquatics":26649,"manchu":26650,"responsive":26651,"##sation":26652,"supervisory":26653,"##christ":26654,"##llins":26655,"##ibar":26656,"##balance":26657,"##uso":26658,"kimball":26659,"karlsruhe":26660,"mab":26661,"##emy":26662,"ignores":26663,"phonetic":26664,"reuters":26665,"spaghetti":26666,"820":26667,"almighty":26668,"danzig":26669,"rumbling":26670,"tombstone":26671,"designations":26672,"lured":26673,"outset":26674,"##felt":26675,"supermarkets":26676,"##wt":26677,"grupo":26678,"kei":26679,"kraft":26680,"susanna":26681,"##blood":26682,"comprehension":26683,"genealogy":26684,"##aghan":26685,"##verted":26686,"redding":26687,"##ythe":26688,"1722":26689,"bowing":26690,"##pore":26691,"##roi":26692,"lest":26693,"sharpened":26694,"fulbright":26695,"valkyrie":26696,"sikhs":26697,"##unds":26698,"swans":26699,"bouquet":26700,"merritt":26701,"##tage":26702,"##venting":26703,"commuted":26704,"redhead":26705,"clerks":26706,"leasing":26707,"cesare":26708,"dea":26709,"hazy":26710,"##vances":26711,"fledged":26712,"greenfield":26713,"servicemen":26714,"##gical":26715,"armando":26716,"blackout":26717,"dt":26718,"sagged":26719,"downloadable":26720,"intra":26721,"potion":26722,"pods":26723,"##4th":26724,"##mism":26725,"xp":26726,"attendants":26727,"gambia":26728,"stale":26729,"##ntine":26730,"plump":26731,"asteroids":26732,"rediscovered":26733,"buds":26734,"flea":26735,"hive":26736,"##neas":26737,"1737":26738,"classifications":26739,"debuts":26740,"##eles":26741,"olympus":26742,"scala":26743,"##eurs":26744,"##gno":26745,"##mute":26746,"hummed":26747,"sigismund":26748,"visuals":26749,"wiggled":26750,"await":26751,"pilasters":26752,"clench":26753,"sulfate":26754,"##ances":26755,"bellevue":26756,"enigma":26757,"trainee":26758,"snort":26759,"##sw":26760,"clouded":26761,"denim":26762,"##rank":26763,"##rder":26764,"churning":26765,"hartman":26766,"lodges":26767,"riches":26768,"sima":26769,"##missible":26770,"accountable":26771,"socrates":26772,"regulates":26773,"mueller":26774,"##cr":26775,"1702":26776,"avoids":26777,"solids":26778,"himalayas":26779,"nutrient":26780,"pup":26781,"##jevic":26782,"squat":26783,"fades":26784,"nec":26785,"##lates":26786,"##pina":26787,"##rona":26788,"##ου":26789,"privateer":26790,"tequila":26791,"##gative":26792,"##mpton":26793,"apt":26794,"hornet":26795,"immortals":26796,"##dou":26797,"asturias":26798,"cleansing":26799,"dario":26800,"##rries":26801,"##anta":26802,"etymology":26803,"servicing":26804,"zhejiang":26805,"##venor":26806,"##nx":26807,"horned":26808,"erasmus":26809,"rayon":26810,"relocating":26811,"£10":26812,"##bags":26813,"escalated":26814,"promenade":26815,"stubble":26816,"2010s":26817,"artisans":26818,"axial":26819,"liquids":26820,"mora":26821,"sho":26822,"yoo":26823,"##tsky":26824,"bundles":26825,"oldies":26826,"##nally":26827,"notification":26828,"bastion":26829,"##ths":26830,"sparkle":26831,"##lved":26832,"1728":26833,"leash":26834,"pathogen":26835,"highs":26836,"##hmi":26837,"immature":26838,"880":26839,"gonzaga":26840,"ignatius":26841,"mansions":26842,"monterrey":26843,"sweets":26844,"bryson":26845,"##loe":26846,"polled":26847,"regatta":26848,"brightest":26849,"pei":26850,"rosy":26851,"squid":26852,"hatfield":26853,"payroll":26854,"addict":26855,"meath":26856,"cornerback":26857,"heaviest":26858,"lodging":26859,"##mage":26860,"capcom":26861,"rippled":26862,"##sily":26863,"barnet":26864,"mayhem":26865,"ymca":26866,"snuggled":26867,"rousseau":26868,"##cute":26869,"blanchard":26870,"284":26871,"fragmented":26872,"leighton":26873,"chromosomes":26874,"risking":26875,"##md":26876,"##strel":26877,"##utter":26878,"corinne":26879,"coyotes":26880,"cynical":26881,"hiroshi":26882,"yeomanry":26883,"##ractive":26884,"ebook":26885,"grading":26886,"mandela":26887,"plume":26888,"agustin":26889,"magdalene":26890,"##rkin":26891,"bea":26892,"femme":26893,"trafford":26894,"##coll":26895,"##lun":26896,"##tance":26897,"52nd":26898,"fourier":26899,"upton":26900,"##mental":26901,"camilla":26902,"gust":26903,"iihf":26904,"islamabad":26905,"longevity":26906,"##kala":26907,"feldman":26908,"netting":26909,"##rization":26910,"endeavour":26911,"foraging":26912,"mfa":26913,"orr":26914,"##open":26915,"greyish":26916,"contradiction":26917,"graz":26918,"##ruff":26919,"handicapped":26920,"marlene":26921,"tweed":26922,"oaxaca":26923,"spp":26924,"campos":26925,"miocene":26926,"pri":26927,"configured":26928,"cooks":26929,"pluto":26930,"cozy":26931,"pornographic":26932,"##entes":26933,"70th":26934,"fairness":26935,"glided":26936,"jonny":26937,"lynne":26938,"rounding":26939,"sired":26940,"##emon":26941,"##nist":26942,"remade":26943,"uncover":26944,"##mack":26945,"complied":26946,"lei":26947,"newsweek":26948,"##jured":26949,"##parts":26950,"##enting":26951,"##pg":26952,"293":26953,"finer":26954,"guerrillas":26955,"athenian":26956,"deng":26957,"disused":26958,"stepmother":26959,"accuse":26960,"gingerly":26961,"seduction":26962,"521":26963,"confronting":26964,"##walker":26965,"##going":26966,"gora":26967,"nostalgia":26968,"sabres":26969,"virginity":26970,"wrenched":26971,"##minated":26972,"syndication":26973,"wielding":26974,"eyre":26975,"##56":26976,"##gnon":26977,"##igny":26978,"behaved":26979,"taxpayer":26980,"sweeps":26981,"##growth":26982,"childless":26983,"gallant":26984,"##ywood":26985,"amplified":26986,"geraldine":26987,"scrape":26988,"##ffi":26989,"babylonian":26990,"fresco":26991,"##rdan":26992,"##kney":26993,"##position":26994,"1718":26995,"restricting":26996,"tack":26997,"fukuoka":26998,"osborn":26999,"selector":27000,"partnering":27001,"##dlow":27002,"318":27003,"gnu":27004,"kia":27005,"tak":27006,"whitley":27007,"gables":27008,"##54":27009,"##mania":27010,"mri":27011,"softness":27012,"immersion":27013,"##bots":27014,"##evsky":27015,"1713":27016,"chilling":27017,"insignificant":27018,"pcs":27019,"##uis":27020,"elites":27021,"lina":27022,"purported":27023,"supplemental":27024,"teaming":27025,"##americana":27026,"##dding":27027,"##inton":27028,"proficient":27029,"rouen":27030,"##nage":27031,"##rret":27032,"niccolo":27033,"selects":27034,"##bread":27035,"fluffy":27036,"1621":27037,"gruff":27038,"knotted":27039,"mukherjee":27040,"polgara":27041,"thrash":27042,"nicholls":27043,"secluded":27044,"smoothing":27045,"thru":27046,"corsica":27047,"loaf":27048,"whitaker":27049,"inquiries":27050,"##rrier":27051,"##kam":27052,"indochina":27053,"289":27054,"marlins":27055,"myles":27056,"peking":27057,"##tea":27058,"extracts":27059,"pastry":27060,"superhuman":27061,"connacht":27062,"vogel":27063,"##ditional":27064,"##het":27065,"##udged":27066,"##lash":27067,"gloss":27068,"quarries":27069,"refit":27070,"teaser":27071,"##alic":27072,"##gaon":27073,"20s":27074,"materialized":27075,"sling":27076,"camped":27077,"pickering":27078,"tung":27079,"tracker":27080,"pursuant":27081,"##cide":27082,"cranes":27083,"soc":27084,"##cini":27085,"##typical":27086,"##viere":27087,"anhalt":27088,"overboard":27089,"workout":27090,"chores":27091,"fares":27092,"orphaned":27093,"stains":27094,"##logie":27095,"fenton":27096,"surpassing":27097,"joyah":27098,"triggers":27099,"##itte":27100,"grandmaster":27101,"##lass":27102,"##lists":27103,"clapping":27104,"fraudulent":27105,"ledger":27106,"nagasaki":27107,"##cor":27108,"##nosis":27109,"##tsa":27110,"eucalyptus":27111,"tun":27112,"##icio":27113,"##rney":27114,"##tara":27115,"dax":27116,"heroism":27117,"ina":27118,"wrexham":27119,"onboard":27120,"unsigned":27121,"##dates":27122,"moshe":27123,"galley":27124,"winnie":27125,"droplets":27126,"exiles":27127,"praises":27128,"watered":27129,"noodles":27130,"##aia":27131,"fein":27132,"adi":27133,"leland":27134,"multicultural":27135,"stink":27136,"bingo":27137,"comets":27138,"erskine":27139,"modernized":27140,"canned":27141,"constraint":27142,"domestically":27143,"chemotherapy":27144,"featherweight":27145,"stifled":27146,"##mum":27147,"darkly":27148,"irresistible":27149,"refreshing":27150,"hasty":27151,"isolate":27152,"##oys":27153,"kitchener":27154,"planners":27155,"##wehr":27156,"cages":27157,"yarn":27158,"implant":27159,"toulon":27160,"elects":27161,"childbirth":27162,"yue":27163,"##lind":27164,"##lone":27165,"cn":27166,"rightful":27167,"sportsman":27168,"junctions":27169,"remodeled":27170,"specifies":27171,"##rgh":27172,"291":27173,"##oons":27174,"complimented":27175,"##urgent":27176,"lister":27177,"ot":27178,"##logic":27179,"bequeathed":27180,"cheekbones":27181,"fontana":27182,"gabby":27183,"##dial":27184,"amadeus":27185,"corrugated":27186,"maverick":27187,"resented":27188,"triangles":27189,"##hered":27190,"##usly":27191,"nazareth":27192,"tyrol":27193,"1675":27194,"assent":27195,"poorer":27196,"sectional":27197,"aegean":27198,"##cous":27199,"296":27200,"nylon":27201,"ghanaian":27202,"##egorical":27203,"##weig":27204,"cushions":27205,"forbid":27206,"fusiliers":27207,"obstruction":27208,"somerville":27209,"##scia":27210,"dime":27211,"earrings":27212,"elliptical":27213,"leyte":27214,"oder":27215,"polymers":27216,"timmy":27217,"atm":27218,"midtown":27219,"piloted":27220,"settles":27221,"continual":27222,"externally":27223,"mayfield":27224,"##uh":27225,"enrichment":27226,"henson":27227,"keane":27228,"persians":27229,"1733":27230,"benji":27231,"braden":27232,"pep":27233,"324":27234,"##efe":27235,"contenders":27236,"pepsi":27237,"valet":27238,"##isches":27239,"298":27240,"##asse":27241,"##earing":27242,"goofy":27243,"stroll":27244,"##amen":27245,"authoritarian":27246,"occurrences":27247,"adversary":27248,"ahmedabad":27249,"tangent":27250,"toppled":27251,"dorchester":27252,"1672":27253,"modernism":27254,"marxism":27255,"islamist":27256,"charlemagne":27257,"exponential":27258,"racks":27259,"unicode":27260,"brunette":27261,"mbc":27262,"pic":27263,"skirmish":27264,"##bund":27265,"##lad":27266,"##powered":27267,"##yst":27268,"hoisted":27269,"messina":27270,"shatter":27271,"##ctum":27272,"jedi":27273,"vantage":27274,"##music":27275,"##neil":27276,"clemens":27277,"mahmoud":27278,"corrupted":27279,"authentication":27280,"lowry":27281,"nils":27282,"##washed":27283,"omnibus":27284,"wounding":27285,"jillian":27286,"##itors":27287,"##opped":27288,"serialized":27289,"narcotics":27290,"handheld":27291,"##arm":27292,"##plicity":27293,"intersecting":27294,"stimulating":27295,"##onis":27296,"crate":27297,"fellowships":27298,"hemingway":27299,"casinos":27300,"climatic":27301,"fordham":27302,"copeland":27303,"drip":27304,"beatty":27305,"leaflets":27306,"robber":27307,"brothel":27308,"madeira":27309,"##hedral":27310,"sphinx":27311,"ultrasound":27312,"##vana":27313,"valor":27314,"forbade":27315,"leonid":27316,"villas":27317,"##aldo":27318,"duane":27319,"marquez":27320,"##cytes":27321,"disadvantaged":27322,"forearms":27323,"kawasaki":27324,"reacts":27325,"consular":27326,"lax":27327,"uncles":27328,"uphold":27329,"##hopper":27330,"concepcion":27331,"dorsey":27332,"lass":27333,"##izan":27334,"arching":27335,"passageway":27336,"1708":27337,"researches":27338,"tia":27339,"internationals":27340,"##graphs":27341,"##opers":27342,"distinguishes":27343,"javanese":27344,"divert":27345,"##uven":27346,"plotted":27347,"##listic":27348,"##rwin":27349,"##erik":27350,"##tify":27351,"affirmative":27352,"signifies":27353,"validation":27354,"##bson":27355,"kari":27356,"felicity":27357,"georgina":27358,"zulu":27359,"##eros":27360,"##rained":27361,"##rath":27362,"overcoming":27363,"##dot":27364,"argyll":27365,"##rbin":27366,"1734":27367,"chiba":27368,"ratification":27369,"windy":27370,"earls":27371,"parapet":27372,"##marks":27373,"hunan":27374,"pristine":27375,"astrid":27376,"punta":27377,"##gart":27378,"brodie":27379,"##kota":27380,"##oder":27381,"malaga":27382,"minerva":27383,"rouse":27384,"##phonic":27385,"bellowed":27386,"pagoda":27387,"portals":27388,"reclamation":27389,"##gur":27390,"##odies":27391,"##⁄₄":27392,"parentheses":27393,"quoting":27394,"allergic":27395,"palette":27396,"showcases":27397,"benefactor":27398,"heartland":27399,"nonlinear":27400,"##tness":27401,"bladed":27402,"cheerfully":27403,"scans":27404,"##ety":27405,"##hone":27406,"1666":27407,"girlfriends":27408,"pedersen":27409,"hiram":27410,"sous":27411,"##liche":27412,"##nator":27413,"1683":27414,"##nery":27415,"##orio":27416,"##umen":27417,"bobo":27418,"primaries":27419,"smiley":27420,"##cb":27421,"unearthed":27422,"uniformly":27423,"fis":27424,"metadata":27425,"1635":27426,"ind":27427,"##oted":27428,"recoil":27429,"##titles":27430,"##tura":27431,"##ια":27432,"406":27433,"hilbert":27434,"jamestown":27435,"mcmillan":27436,"tulane":27437,"seychelles":27438,"##frid":27439,"antics":27440,"coli":27441,"fated":27442,"stucco":27443,"##grants":27444,"1654":27445,"bulky":27446,"accolades":27447,"arrays":27448,"caledonian":27449,"carnage":27450,"optimism":27451,"puebla":27452,"##tative":27453,"##cave":27454,"enforcing":27455,"rotherham":27456,"seo":27457,"dunlop":27458,"aeronautics":27459,"chimed":27460,"incline":27461,"zoning":27462,"archduke":27463,"hellenistic":27464,"##oses":27465,"##sions":27466,"candi":27467,"thong":27468,"##ople":27469,"magnate":27470,"rustic":27471,"##rsk":27472,"projective":27473,"slant":27474,"##offs":27475,"danes":27476,"hollis":27477,"vocalists":27478,"##ammed":27479,"congenital":27480,"contend":27481,"gesellschaft":27482,"##ocating":27483,"##pressive":27484,"douglass":27485,"quieter":27486,"##cm":27487,"##kshi":27488,"howled":27489,"salim":27490,"spontaneously":27491,"townsville":27492,"buena":27493,"southport":27494,"##bold":27495,"kato":27496,"1638":27497,"faerie":27498,"stiffly":27499,"##vus":27500,"##rled":27501,"297":27502,"flawless":27503,"realising":27504,"taboo":27505,"##7th":27506,"bytes":27507,"straightening":27508,"356":27509,"jena":27510,"##hid":27511,"##rmin":27512,"cartwright":27513,"berber":27514,"bertram":27515,"soloists":27516,"411":27517,"noses":27518,"417":27519,"coping":27520,"fission":27521,"hardin":27522,"inca":27523,"##cen":27524,"1717":27525,"mobilized":27526,"vhf":27527,"##raf":27528,"biscuits":27529,"curate":27530,"##85":27531,"##anial":27532,"331":27533,"gaunt":27534,"neighbourhoods":27535,"1540":27536,"##abas":27537,"blanca":27538,"bypassed":27539,"sockets":27540,"behold":27541,"coincidentally":27542,"##bane":27543,"nara":27544,"shave":27545,"splinter":27546,"terrific":27547,"##arion":27548,"##erian":27549,"commonplace":27550,"juris":27551,"redwood":27552,"waistband":27553,"boxed":27554,"caitlin":27555,"fingerprints":27556,"jennie":27557,"naturalized":27558,"##ired":27559,"balfour":27560,"craters":27561,"jody":27562,"bungalow":27563,"hugely":27564,"quilt":27565,"glitter":27566,"pigeons":27567,"undertaker":27568,"bulging":27569,"constrained":27570,"goo":27571,"##sil":27572,"##akh":27573,"assimilation":27574,"reworked":27575,"##person":27576,"persuasion":27577,"##pants":27578,"felicia":27579,"##cliff":27580,"##ulent":27581,"1732":27582,"explodes":27583,"##dun":27584,"##inium":27585,"##zic":27586,"lyman":27587,"vulture":27588,"hog":27589,"overlook":27590,"begs":27591,"northwards":27592,"ow":27593,"spoil":27594,"##urer":27595,"fatima":27596,"favorably":27597,"accumulate":27598,"sargent":27599,"sorority":27600,"corresponded":27601,"dispersal":27602,"kochi":27603,"toned":27604,"##imi":27605,"##lita":27606,"internacional":27607,"newfound":27608,"##agger":27609,"##lynn":27610,"##rigue":27611,"booths":27612,"peanuts":27613,"##eborg":27614,"medicare":27615,"muriel":27616,"nur":27617,"##uram":27618,"crates":27619,"millennia":27620,"pajamas":27621,"worsened":27622,"##breakers":27623,"jimi":27624,"vanuatu":27625,"yawned":27626,"##udeau":27627,"carousel":27628,"##hony":27629,"hurdle":27630,"##ccus":27631,"##mounted":27632,"##pod":27633,"rv":27634,"##eche":27635,"airship":27636,"ambiguity":27637,"compulsion":27638,"recapture":27639,"##claiming":27640,"arthritis":27641,"##osomal":27642,"1667":27643,"asserting":27644,"ngc":27645,"sniffing":27646,"dade":27647,"discontent":27648,"glendale":27649,"ported":27650,"##amina":27651,"defamation":27652,"rammed":27653,"##scent":27654,"fling":27655,"livingstone":27656,"##fleet":27657,"875":27658,"##ppy":27659,"apocalyptic":27660,"comrade":27661,"lcd":27662,"##lowe":27663,"cessna":27664,"eine":27665,"persecuted":27666,"subsistence":27667,"demi":27668,"hoop":27669,"reliefs":27670,"710":27671,"coptic":27672,"progressing":27673,"stemmed":27674,"perpetrators":27675,"1665":27676,"priestess":27677,"##nio":27678,"dobson":27679,"ebony":27680,"rooster":27681,"itf":27682,"tortricidae":27683,"##bbon":27684,"##jian":27685,"cleanup":27686,"##jean":27687,"##øy":27688,"1721":27689,"eighties":27690,"taxonomic":27691,"holiness":27692,"##hearted":27693,"##spar":27694,"antilles":27695,"showcasing":27696,"stabilized":27697,"##nb":27698,"gia":27699,"mascara":27700,"michelangelo":27701,"dawned":27702,"##uria":27703,"##vinsky":27704,"extinguished":27705,"fitz":27706,"grotesque":27707,"£100":27708,"##fera":27709,"##loid":27710,"##mous":27711,"barges":27712,"neue":27713,"throbbed":27714,"cipher":27715,"johnnie":27716,"##a1":27717,"##mpt":27718,"outburst":27719,"##swick":27720,"spearheaded":27721,"administrations":27722,"c1":27723,"heartbreak":27724,"pixels":27725,"pleasantly":27726,"##enay":27727,"lombardy":27728,"plush":27729,"##nsed":27730,"bobbie":27731,"##hly":27732,"reapers":27733,"tremor":27734,"xiang":27735,"minogue":27736,"substantive":27737,"hitch":27738,"barak":27739,"##wyl":27740,"kwan":27741,"##encia":27742,"910":27743,"obscene":27744,"elegance":27745,"indus":27746,"surfer":27747,"bribery":27748,"conserve":27749,"##hyllum":27750,"##masters":27751,"horatio":27752,"##fat":27753,"apes":27754,"rebound":27755,"psychotic":27756,"##pour":27757,"iteration":27758,"##mium":27759,"##vani":27760,"botanic":27761,"horribly":27762,"antiques":27763,"dispose":27764,"paxton":27765,"##hli":27766,"##wg":27767,"timeless":27768,"1704":27769,"disregard":27770,"engraver":27771,"hounds":27772,"##bau":27773,"##version":27774,"looted":27775,"uno":27776,"facilitates":27777,"groans":27778,"masjid":27779,"rutland":27780,"antibody":27781,"disqualification":27782,"decatur":27783,"footballers":27784,"quake":27785,"slacks":27786,"48th":27787,"rein":27788,"scribe":27789,"stabilize":27790,"commits":27791,"exemplary":27792,"tho":27793,"##hort":27794,"##chison":27795,"pantry":27796,"traversed":27797,"##hiti":27798,"disrepair":27799,"identifiable":27800,"vibrated":27801,"baccalaureate":27802,"##nnis":27803,"csa":27804,"interviewing":27805,"##iensis":27806,"##raße":27807,"greaves":27808,"wealthiest":27809,"343":27810,"classed":27811,"jogged":27812,"£5":27813,"##58":27814,"##atal":27815,"illuminating":27816,"knicks":27817,"respecting":27818,"##uno":27819,"scrubbed":27820,"##iji":27821,"##dles":27822,"kruger":27823,"moods":27824,"growls":27825,"raider":27826,"silvia":27827,"chefs":27828,"kam":27829,"vr":27830,"cree":27831,"percival":27832,"##terol":27833,"gunter":27834,"counterattack":27835,"defiant":27836,"henan":27837,"ze":27838,"##rasia":27839,"##riety":27840,"equivalence":27841,"submissions":27842,"##fra":27843,"##thor":27844,"bautista":27845,"mechanically":27846,"##heater":27847,"cornice":27848,"herbal":27849,"templar":27850,"##mering":27851,"outputs":27852,"ruining":27853,"ligand":27854,"renumbered":27855,"extravagant":27856,"mika":27857,"blockbuster":27858,"eta":27859,"insurrection":27860,"##ilia":27861,"darkening":27862,"ferocious":27863,"pianos":27864,"strife":27865,"kinship":27866,"##aer":27867,"melee":27868,"##anor":27869,"##iste":27870,"##may":27871,"##oue":27872,"decidedly":27873,"weep":27874,"##jad":27875,"##missive":27876,"##ppel":27877,"354":27878,"puget":27879,"unease":27880,"##gnant":27881,"1629":27882,"hammering":27883,"kassel":27884,"ob":27885,"wessex":27886,"##lga":27887,"bromwich":27888,"egan":27889,"paranoia":27890,"utilization":27891,"##atable":27892,"##idad":27893,"contradictory":27894,"provoke":27895,"##ols":27896,"##ouring":27897,"##tangled":27898,"knesset":27899,"##very":27900,"##lette":27901,"plumbing":27902,"##sden":27903,"##¹":27904,"greensboro":27905,"occult":27906,"sniff":27907,"338":27908,"zev":27909,"beaming":27910,"gamer":27911,"haggard":27912,"mahal":27913,"##olt":27914,"##pins":27915,"mendes":27916,"utmost":27917,"briefing":27918,"gunnery":27919,"##gut":27920,"##pher":27921,"##zh":27922,"##rok":27923,"1679":27924,"khalifa":27925,"sonya":27926,"##boot":27927,"principals":27928,"urbana":27929,"wiring":27930,"##liffe":27931,"##minating":27932,"##rrado":27933,"dahl":27934,"nyu":27935,"skepticism":27936,"np":27937,"townspeople":27938,"ithaca":27939,"lobster":27940,"somethin":27941,"##fur":27942,"##arina":27943,"##−1":27944,"freighter":27945,"zimmerman":27946,"biceps":27947,"contractual":27948,"##herton":27949,"amend":27950,"hurrying":27951,"subconscious":27952,"##anal":27953,"336":27954,"meng":27955,"clermont":27956,"spawning":27957,"##eia":27958,"##lub":27959,"dignitaries":27960,"impetus":27961,"snacks":27962,"spotting":27963,"twigs":27964,"##bilis":27965,"##cz":27966,"##ouk":27967,"libertadores":27968,"nic":27969,"skylar":27970,"##aina":27971,"##firm":27972,"gustave":27973,"asean":27974,"##anum":27975,"dieter":27976,"legislatures":27977,"flirt":27978,"bromley":27979,"trolls":27980,"umar":27981,"##bbies":27982,"##tyle":27983,"blah":27984,"parc":27985,"bridgeport":27986,"crank":27987,"negligence":27988,"##nction":27989,"46th":27990,"constantin":27991,"molded":27992,"bandages":27993,"seriousness":27994,"00pm":27995,"siegel":27996,"carpets":27997,"compartments":27998,"upbeat":27999,"statehood":28000,"##dner":28001,"##edging":28002,"marko":28003,"730":28004,"platt":28005,"##hane":28006,"paving":28007,"##iy":28008,"1738":28009,"abbess":28010,"impatience":28011,"limousine":28012,"nbl":28013,"##talk":28014,"441":28015,"lucille":28016,"mojo":28017,"nightfall":28018,"robbers":28019,"##nais":28020,"karel":28021,"brisk":28022,"calves":28023,"replicate":28024,"ascribed":28025,"telescopes":28026,"##olf":28027,"intimidated":28028,"##reen":28029,"ballast":28030,"specialization":28031,"##sit":28032,"aerodynamic":28033,"caliphate":28034,"rainer":28035,"visionary":28036,"##arded":28037,"epsilon":28038,"##aday":28039,"##onte":28040,"aggregation":28041,"auditory":28042,"boosted":28043,"reunification":28044,"kathmandu":28045,"loco":28046,"robyn":28047,"402":28048,"acknowledges":28049,"appointing":28050,"humanoid":28051,"newell":28052,"redeveloped":28053,"restraints":28054,"##tained":28055,"barbarians":28056,"chopper":28057,"1609":28058,"italiana":28059,"##lez":28060,"##lho":28061,"investigates":28062,"wrestlemania":28063,"##anies":28064,"##bib":28065,"690":28066,"##falls":28067,"creaked":28068,"dragoons":28069,"gravely":28070,"minions":28071,"stupidity":28072,"volley":28073,"##harat":28074,"##week":28075,"musik":28076,"##eries":28077,"##uously":28078,"fungal":28079,"massimo":28080,"semantics":28081,"malvern":28082,"##ahl":28083,"##pee":28084,"discourage":28085,"embryo":28086,"imperialism":28087,"1910s":28088,"profoundly":28089,"##ddled":28090,"jiangsu":28091,"sparkled":28092,"stat":28093,"##holz":28094,"sweatshirt":28095,"tobin":28096,"##iction":28097,"sneered":28098,"##cheon":28099,"##oit":28100,"brit":28101,"causal":28102,"smyth":28103,"##neuve":28104,"diffuse":28105,"perrin":28106,"silvio":28107,"##ipes":28108,"##recht":28109,"detonated":28110,"iqbal":28111,"selma":28112,"##nism":28113,"##zumi":28114,"roasted":28115,"##riders":28116,"tay":28117,"##ados":28118,"##mament":28119,"##mut":28120,"##rud":28121,"840":28122,"completes":28123,"nipples":28124,"cfa":28125,"flavour":28126,"hirsch":28127,"##laus":28128,"calderon":28129,"sneakers":28130,"moravian":28131,"##ksha":28132,"1622":28133,"rq":28134,"294":28135,"##imeters":28136,"bodo":28137,"##isance":28138,"##pre":28139,"##ronia":28140,"anatomical":28141,"excerpt":28142,"##lke":28143,"dh":28144,"kunst":28145,"##tablished":28146,"##scoe":28147,"biomass":28148,"panted":28149,"unharmed":28150,"gael":28151,"housemates":28152,"montpellier":28153,"##59":28154,"coa":28155,"rodents":28156,"tonic":28157,"hickory":28158,"singleton":28159,"##taro":28160,"451":28161,"1719":28162,"aldo":28163,"breaststroke":28164,"dempsey":28165,"och":28166,"rocco":28167,"##cuit":28168,"merton":28169,"dissemination":28170,"midsummer":28171,"serials":28172,"##idi":28173,"haji":28174,"polynomials":28175,"##rdon":28176,"gs":28177,"enoch":28178,"prematurely":28179,"shutter":28180,"taunton":28181,"£3":28182,"##grating":28183,"##inates":28184,"archangel":28185,"harassed":28186,"##asco":28187,"326":28188,"archway":28189,"dazzling":28190,"##ecin":28191,"1736":28192,"sumo":28193,"wat":28194,"##kovich":28195,"1086":28196,"honneur":28197,"##ently":28198,"##nostic":28199,"##ttal":28200,"##idon":28201,"1605":28202,"403":28203,"1716":28204,"blogger":28205,"rents":28206,"##gnan":28207,"hires":28208,"##ikh":28209,"##dant":28210,"howie":28211,"##rons":28212,"handler":28213,"retracted":28214,"shocks":28215,"1632":28216,"arun":28217,"duluth":28218,"kepler":28219,"trumpeter":28220,"##lary":28221,"peeking":28222,"seasoned":28223,"trooper":28224,"##mara":28225,"laszlo":28226,"##iciencies":28227,"##rti":28228,"heterosexual":28229,"##inatory":28230,"##ssion":28231,"indira":28232,"jogging":28233,"##inga":28234,"##lism":28235,"beit":28236,"dissatisfaction":28237,"malice":28238,"##ately":28239,"nedra":28240,"peeling":28241,"##rgeon":28242,"47th":28243,"stadiums":28244,"475":28245,"vertigo":28246,"##ains":28247,"iced":28248,"restroom":28249,"##plify":28250,"##tub":28251,"illustrating":28252,"pear":28253,"##chner":28254,"##sibility":28255,"inorganic":28256,"rappers":28257,"receipts":28258,"watery":28259,"##kura":28260,"lucinda":28261,"##oulos":28262,"reintroduced":28263,"##8th":28264,"##tched":28265,"gracefully":28266,"saxons":28267,"nutritional":28268,"wastewater":28269,"rained":28270,"favourites":28271,"bedrock":28272,"fisted":28273,"hallways":28274,"likeness":28275,"upscale":28276,"##lateral":28277,"1580":28278,"blinds":28279,"prequel":28280,"##pps":28281,"##tama":28282,"deter":28283,"humiliating":28284,"restraining":28285,"tn":28286,"vents":28287,"1659":28288,"laundering":28289,"recess":28290,"rosary":28291,"tractors":28292,"coulter":28293,"federer":28294,"##ifiers":28295,"##plin":28296,"persistence":28297,"##quitable":28298,"geschichte":28299,"pendulum":28300,"quakers":28301,"##beam":28302,"bassett":28303,"pictorial":28304,"buffet":28305,"koln":28306,"##sitor":28307,"drills":28308,"reciprocal":28309,"shooters":28310,"##57":28311,"##cton":28312,"##tees":28313,"converge":28314,"pip":28315,"dmitri":28316,"donnelly":28317,"yamamoto":28318,"aqua":28319,"azores":28320,"demographics":28321,"hypnotic":28322,"spitfire":28323,"suspend":28324,"wryly":28325,"roderick":28326,"##rran":28327,"sebastien":28328,"##asurable":28329,"mavericks":28330,"##fles":28331,"##200":28332,"himalayan":28333,"prodigy":28334,"##iance":28335,"transvaal":28336,"demonstrators":28337,"handcuffs":28338,"dodged":28339,"mcnamara":28340,"sublime":28341,"1726":28342,"crazed":28343,"##efined":28344,"##till":28345,"ivo":28346,"pondered":28347,"reconciled":28348,"shrill":28349,"sava":28350,"##duk":28351,"bal":28352,"cad":28353,"heresy":28354,"jaipur":28355,"goran":28356,"##nished":28357,"341":28358,"lux":28359,"shelly":28360,"whitehall":28361,"##hre":28362,"israelis":28363,"peacekeeping":28364,"##wled":28365,"1703":28366,"demetrius":28367,"ousted":28368,"##arians":28369,"##zos":28370,"beale":28371,"anwar":28372,"backstroke":28373,"raged":28374,"shrinking":28375,"cremated":28376,"##yck":28377,"benign":28378,"towing":28379,"wadi":28380,"darmstadt":28381,"landfill":28382,"parana":28383,"soothe":28384,"colleen":28385,"sidewalks":28386,"mayfair":28387,"tumble":28388,"hepatitis":28389,"ferrer":28390,"superstructure":28391,"##gingly":28392,"##urse":28393,"##wee":28394,"anthropological":28395,"translators":28396,"##mies":28397,"closeness":28398,"hooves":28399,"##pw":28400,"mondays":28401,"##roll":28402,"##vita":28403,"landscaping":28404,"##urized":28405,"purification":28406,"sock":28407,"thorns":28408,"thwarted":28409,"jalan":28410,"tiberius":28411,"##taka":28412,"saline":28413,"##rito":28414,"confidently":28415,"khyber":28416,"sculptors":28417,"##ij":28418,"brahms":28419,"hammersmith":28420,"inspectors":28421,"battista":28422,"fivb":28423,"fragmentation":28424,"hackney":28425,"##uls":28426,"arresting":28427,"exercising":28428,"antoinette":28429,"bedfordshire":28430,"##zily":28431,"dyed":28432,"##hema":28433,"1656":28434,"racetrack":28435,"variability":28436,"##tique":28437,"1655":28438,"austrians":28439,"deteriorating":28440,"madman":28441,"theorists":28442,"aix":28443,"lehman":28444,"weathered":28445,"1731":28446,"decreed":28447,"eruptions":28448,"1729":28449,"flaw":28450,"quinlan":28451,"sorbonne":28452,"flutes":28453,"nunez":28454,"1711":28455,"adored":28456,"downwards":28457,"fable":28458,"rasped":28459,"1712":28460,"moritz":28461,"mouthful":28462,"renegade":28463,"shivers":28464,"stunts":28465,"dysfunction":28466,"restrain":28467,"translit":28468,"327":28469,"pancakes":28470,"##avio":28471,"##cision":28472,"##tray":28473,"351":28474,"vial":28475,"##lden":28476,"bain":28477,"##maid":28478,"##oxide":28479,"chihuahua":28480,"malacca":28481,"vimes":28482,"##rba":28483,"##rnier":28484,"1664":28485,"donnie":28486,"plaques":28487,"##ually":28488,"337":28489,"bangs":28490,"floppy":28491,"huntsville":28492,"loretta":28493,"nikolay":28494,"##otte":28495,"eater":28496,"handgun":28497,"ubiquitous":28498,"##hett":28499,"eras":28500,"zodiac":28501,"1634":28502,"##omorphic":28503,"1820s":28504,"##zog":28505,"cochran":28506,"##bula":28507,"##lithic":28508,"warring":28509,"##rada":28510,"dalai":28511,"excused":28512,"blazers":28513,"mcconnell":28514,"reeling":28515,"bot":28516,"este":28517,"##abi":28518,"geese":28519,"hoax":28520,"taxon":28521,"##bla":28522,"guitarists":28523,"##icon":28524,"condemning":28525,"hunts":28526,"inversion":28527,"moffat":28528,"taekwondo":28529,"##lvis":28530,"1624":28531,"stammered":28532,"##rest":28533,"##rzy":28534,"sousa":28535,"fundraiser":28536,"marylebone":28537,"navigable":28538,"uptown":28539,"cabbage":28540,"daniela":28541,"salman":28542,"shitty":28543,"whimper":28544,"##kian":28545,"##utive":28546,"programmers":28547,"protections":28548,"rm":28549,"##rmi":28550,"##rued":28551,"forceful":28552,"##enes":28553,"fuss":28554,"##tao":28555,"##wash":28556,"brat":28557,"oppressive":28558,"reykjavik":28559,"spartak":28560,"ticking":28561,"##inkles":28562,"##kiewicz":28563,"adolph":28564,"horst":28565,"maui":28566,"protege":28567,"straighten":28568,"cpc":28569,"landau":28570,"concourse":28571,"clements":28572,"resultant":28573,"##ando":28574,"imaginative":28575,"joo":28576,"reactivated":28577,"##rem":28578,"##ffled":28579,"##uising":28580,"consultative":28581,"##guide":28582,"flop":28583,"kaitlyn":28584,"mergers":28585,"parenting":28586,"somber":28587,"##vron":28588,"supervise":28589,"vidhan":28590,"##imum":28591,"courtship":28592,"exemplified":28593,"harmonies":28594,"medallist":28595,"refining":28596,"##rrow":28597,"##ка":28598,"amara":28599,"##hum":28600,"780":28601,"goalscorer":28602,"sited":28603,"overshadowed":28604,"rohan":28605,"displeasure":28606,"secretive":28607,"multiplied":28608,"osman":28609,"##orth":28610,"engravings":28611,"padre":28612,"##kali":28613,"##veda":28614,"miniatures":28615,"mis":28616,"##yala":28617,"clap":28618,"pali":28619,"rook":28620,"##cana":28621,"1692":28622,"57th":28623,"antennae":28624,"astro":28625,"oskar":28626,"1628":28627,"bulldog":28628,"crotch":28629,"hackett":28630,"yucatan":28631,"##sure":28632,"amplifiers":28633,"brno":28634,"ferrara":28635,"migrating":28636,"##gree":28637,"thanking":28638,"turing":28639,"##eza":28640,"mccann":28641,"ting":28642,"andersson":28643,"onslaught":28644,"gaines":28645,"ganga":28646,"incense":28647,"standardization":28648,"##mation":28649,"sentai":28650,"scuba":28651,"stuffing":28652,"turquoise":28653,"waivers":28654,"alloys":28655,"##vitt":28656,"regaining":28657,"vaults":28658,"##clops":28659,"##gizing":28660,"digger":28661,"furry":28662,"memorabilia":28663,"probing":28664,"##iad":28665,"payton":28666,"rec":28667,"deutschland":28668,"filippo":28669,"opaque":28670,"seamen":28671,"zenith":28672,"afrikaans":28673,"##filtration":28674,"disciplined":28675,"inspirational":28676,"##merie":28677,"banco":28678,"confuse":28679,"grafton":28680,"tod":28681,"##dgets":28682,"championed":28683,"simi":28684,"anomaly":28685,"biplane":28686,"##ceptive":28687,"electrode":28688,"##para":28689,"1697":28690,"cleavage":28691,"crossbow":28692,"swirl":28693,"informant":28694,"##lars":28695,"##osta":28696,"afi":28697,"bonfire":28698,"spec":28699,"##oux":28700,"lakeside":28701,"slump":28702,"##culus":28703,"##lais":28704,"##qvist":28705,"##rrigan":28706,"1016":28707,"facades":28708,"borg":28709,"inwardly":28710,"cervical":28711,"xl":28712,"pointedly":28713,"050":28714,"stabilization":28715,"##odon":28716,"chests":28717,"1699":28718,"hacked":28719,"ctv":28720,"orthogonal":28721,"suzy":28722,"##lastic":28723,"gaulle":28724,"jacobite":28725,"rearview":28726,"##cam":28727,"##erted":28728,"ashby":28729,"##drik":28730,"##igate":28731,"##mise":28732,"##zbek":28733,"affectionately":28734,"canine":28735,"disperse":28736,"latham":28737,"##istles":28738,"##ivar":28739,"spielberg":28740,"##orin":28741,"##idium":28742,"ezekiel":28743,"cid":28744,"##sg":28745,"durga":28746,"middletown":28747,"##cina":28748,"customized":28749,"frontiers":28750,"harden":28751,"##etano":28752,"##zzy":28753,"1604":28754,"bolsheviks":28755,"##66":28756,"coloration":28757,"yoko":28758,"##bedo":28759,"briefs":28760,"slabs":28761,"debra":28762,"liquidation":28763,"plumage":28764,"##oin":28765,"blossoms":28766,"dementia":28767,"subsidy":28768,"1611":28769,"proctor":28770,"relational":28771,"jerseys":28772,"parochial":28773,"ter":28774,"##ici":28775,"esa":28776,"peshawar":28777,"cavalier":28778,"loren":28779,"cpi":28780,"idiots":28781,"shamrock":28782,"1646":28783,"dutton":28784,"malabar":28785,"mustache":28786,"##endez":28787,"##ocytes":28788,"referencing":28789,"terminates":28790,"marche":28791,"yarmouth":28792,"##sop":28793,"acton":28794,"mated":28795,"seton":28796,"subtly":28797,"baptised":28798,"beige":28799,"extremes":28800,"jolted":28801,"kristina":28802,"telecast":28803,"##actic":28804,"safeguard":28805,"waldo":28806,"##baldi":28807,"##bular":28808,"endeavors":28809,"sloppy":28810,"subterranean":28811,"##ensburg":28812,"##itung":28813,"delicately":28814,"pigment":28815,"tq":28816,"##scu":28817,"1626":28818,"##ound":28819,"collisions":28820,"coveted":28821,"herds":28822,"##personal":28823,"##meister":28824,"##nberger":28825,"chopra":28826,"##ricting":28827,"abnormalities":28828,"defective":28829,"galician":28830,"lucie":28831,"##dilly":28832,"alligator":28833,"likened":28834,"##genase":28835,"burundi":28836,"clears":28837,"complexion":28838,"derelict":28839,"deafening":28840,"diablo":28841,"fingered":28842,"champaign":28843,"dogg":28844,"enlist":28845,"isotope":28846,"labeling":28847,"mrna":28848,"##erre":28849,"brilliance":28850,"marvelous":28851,"##ayo":28852,"1652":28853,"crawley":28854,"ether":28855,"footed":28856,"dwellers":28857,"deserts":28858,"hamish":28859,"rubs":28860,"warlock":28861,"skimmed":28862,"##lizer":28863,"870":28864,"buick":28865,"embark":28866,"heraldic":28867,"irregularities":28868,"##ajan":28869,"kiara":28870,"##kulam":28871,"##ieg":28872,"antigen":28873,"kowalski":28874,"##lge":28875,"oakley":28876,"visitation":28877,"##mbit":28878,"vt":28879,"##suit":28880,"1570":28881,"murderers":28882,"##miento":28883,"##rites":28884,"chimneys":28885,"##sling":28886,"condemn":28887,"custer":28888,"exchequer":28889,"havre":28890,"##ghi":28891,"fluctuations":28892,"##rations":28893,"dfb":28894,"hendricks":28895,"vaccines":28896,"##tarian":28897,"nietzsche":28898,"biking":28899,"juicy":28900,"##duced":28901,"brooding":28902,"scrolling":28903,"selangor":28904,"##ragan":28905,"352":28906,"annum":28907,"boomed":28908,"seminole":28909,"sugarcane":28910,"##dna":28911,"departmental":28912,"dismissing":28913,"innsbruck":28914,"arteries":28915,"ashok":28916,"batavia":28917,"daze":28918,"kun":28919,"overtook":28920,"##rga":28921,"##tlan":28922,"beheaded":28923,"gaddafi":28924,"holm":28925,"electronically":28926,"faulty":28927,"galilee":28928,"fractures":28929,"kobayashi":28930,"##lized":28931,"gunmen":28932,"magma":28933,"aramaic":28934,"mala":28935,"eastenders":28936,"inference":28937,"messengers":28938,"bf":28939,"##qu":28940,"407":28941,"bathrooms":28942,"##vere":28943,"1658":28944,"flashbacks":28945,"ideally":28946,"misunderstood":28947,"##jali":28948,"##weather":28949,"mendez":28950,"##grounds":28951,"505":28952,"uncanny":28953,"##iii":28954,"1709":28955,"friendships":28956,"##nbc":28957,"sacrament":28958,"accommodated":28959,"reiterated":28960,"logistical":28961,"pebbles":28962,"thumped":28963,"##escence":28964,"administering":28965,"decrees":28966,"drafts":28967,"##flight":28968,"##cased":28969,"##tula":28970,"futuristic":28971,"picket":28972,"intimidation":28973,"winthrop":28974,"##fahan":28975,"interfered":28976,"339":28977,"afar":28978,"francoise":28979,"morally":28980,"uta":28981,"cochin":28982,"croft":28983,"dwarfs":28984,"##bruck":28985,"##dents":28986,"##nami":28987,"biker":28988,"##hner":28989,"##meral":28990,"nano":28991,"##isen":28992,"##ometric":28993,"##pres":28994,"##ан":28995,"brightened":28996,"meek":28997,"parcels":28998,"securely":28999,"gunners":29000,"##jhl":29001,"##zko":29002,"agile":29003,"hysteria":29004,"##lten":29005,"##rcus":29006,"bukit":29007,"champs":29008,"chevy":29009,"cuckoo":29010,"leith":29011,"sadler":29012,"theologians":29013,"welded":29014,"##section":29015,"1663":29016,"jj":29017,"plurality":29018,"xander":29019,"##rooms":29020,"##formed":29021,"shredded":29022,"temps":29023,"intimately":29024,"pau":29025,"tormented":29026,"##lok":29027,"##stellar":29028,"1618":29029,"charred":29030,"ems":29031,"essen":29032,"##mmel":29033,"alarms":29034,"spraying":29035,"ascot":29036,"blooms":29037,"twinkle":29038,"##abia":29039,"##apes":29040,"internment":29041,"obsidian":29042,"##chaft":29043,"snoop":29044,"##dav":29045,"##ooping":29046,"malibu":29047,"##tension":29048,"quiver":29049,"##itia":29050,"hays":29051,"mcintosh":29052,"travers":29053,"walsall":29054,"##ffie":29055,"1623":29056,"beverley":29057,"schwarz":29058,"plunging":29059,"structurally":29060,"m3":29061,"rosenthal":29062,"vikram":29063,"##tsk":29064,"770":29065,"ghz":29066,"##onda":29067,"##tiv":29068,"chalmers":29069,"groningen":29070,"pew":29071,"reckon":29072,"unicef":29073,"##rvis":29074,"55th":29075,"##gni":29076,"1651":29077,"sulawesi":29078,"avila":29079,"cai":29080,"metaphysical":29081,"screwing":29082,"turbulence":29083,"##mberg":29084,"augusto":29085,"samba":29086,"56th":29087,"baffled":29088,"momentary":29089,"toxin":29090,"##urian":29091,"##wani":29092,"aachen":29093,"condoms":29094,"dali":29095,"steppe":29096,"##3d":29097,"##app":29098,"##oed":29099,"##year":29100,"adolescence":29101,"dauphin":29102,"electrically":29103,"inaccessible":29104,"microscopy":29105,"nikita":29106,"##ega":29107,"atv":29108,"##cel":29109,"##enter":29110,"##oles":29111,"##oteric":29112,"##ы":29113,"accountants":29114,"punishments":29115,"wrongly":29116,"bribes":29117,"adventurous":29118,"clinch":29119,"flinders":29120,"southland":29121,"##hem":29122,"##kata":29123,"gough":29124,"##ciency":29125,"lads":29126,"soared":29127,"##ה":29128,"undergoes":29129,"deformation":29130,"outlawed":29131,"rubbish":29132,"##arus":29133,"##mussen":29134,"##nidae":29135,"##rzburg":29136,"arcs":29137,"##ingdon":29138,"##tituted":29139,"1695":29140,"wheelbase":29141,"wheeling":29142,"bombardier":29143,"campground":29144,"zebra":29145,"##lices":29146,"##oj":29147,"##bain":29148,"lullaby":29149,"##ecure":29150,"donetsk":29151,"wylie":29152,"grenada":29153,"##arding":29154,"##ης":29155,"squinting":29156,"eireann":29157,"opposes":29158,"##andra":29159,"maximal":29160,"runes":29161,"##broken":29162,"##cuting":29163,"##iface":29164,"##ror":29165,"##rosis":29166,"additive":29167,"britney":29168,"adultery":29169,"triggering":29170,"##drome":29171,"detrimental":29172,"aarhus":29173,"containment":29174,"jc":29175,"swapped":29176,"vichy":29177,"##ioms":29178,"madly":29179,"##oric":29180,"##rag":29181,"brant":29182,"##ckey":29183,"##trix":29184,"1560":29185,"1612":29186,"broughton":29187,"rustling":29188,"##stems":29189,"##uder":29190,"asbestos":29191,"mentoring":29192,"##nivorous":29193,"finley":29194,"leaps":29195,"##isan":29196,"apical":29197,"pry":29198,"slits":29199,"substitutes":29200,"##dict":29201,"intuitive":29202,"fantasia":29203,"insistent":29204,"unreasonable":29205,"##igen":29206,"##vna":29207,"domed":29208,"hannover":29209,"margot":29210,"ponder":29211,"##zziness":29212,"impromptu":29213,"jian":29214,"lc":29215,"rampage":29216,"stemming":29217,"##eft":29218,"andrey":29219,"gerais":29220,"whichever":29221,"amnesia":29222,"appropriated":29223,"anzac":29224,"clicks":29225,"modifying":29226,"ultimatum":29227,"cambrian":29228,"maids":29229,"verve":29230,"yellowstone":29231,"##mbs":29232,"conservatoire":29233,"##scribe":29234,"adherence":29235,"dinners":29236,"spectra":29237,"imperfect":29238,"mysteriously":29239,"sidekick":29240,"tatar":29241,"tuba":29242,"##aks":29243,"##ifolia":29244,"distrust":29245,"##athan":29246,"##zle":29247,"c2":29248,"ronin":29249,"zac":29250,"##pse":29251,"celaena":29252,"instrumentalist":29253,"scents":29254,"skopje":29255,"##mbling":29256,"comical":29257,"compensated":29258,"vidal":29259,"condor":29260,"intersect":29261,"jingle":29262,"wavelengths":29263,"##urrent":29264,"mcqueen":29265,"##izzly":29266,"carp":29267,"weasel":29268,"422":29269,"kanye":29270,"militias":29271,"postdoctoral":29272,"eugen":29273,"gunslinger":29274,"##ɛ":29275,"faux":29276,"hospice":29277,"##for":29278,"appalled":29279,"derivation":29280,"dwarves":29281,"##elis":29282,"dilapidated":29283,"##folk":29284,"astoria":29285,"philology":29286,"##lwyn":29287,"##otho":29288,"##saka":29289,"inducing":29290,"philanthropy":29291,"##bf":29292,"##itative":29293,"geek":29294,"markedly":29295,"sql":29296,"##yce":29297,"bessie":29298,"indices":29299,"rn":29300,"##flict":29301,"495":29302,"frowns":29303,"resolving":29304,"weightlifting":29305,"tugs":29306,"cleric":29307,"contentious":29308,"1653":29309,"mania":29310,"rms":29311,"##miya":29312,"##reate":29313,"##ruck":29314,"##tucket":29315,"bien":29316,"eels":29317,"marek":29318,"##ayton":29319,"##cence":29320,"discreet":29321,"unofficially":29322,"##ife":29323,"leaks":29324,"##bber":29325,"1705":29326,"332":29327,"dung":29328,"compressor":29329,"hillsborough":29330,"pandit":29331,"shillings":29332,"distal":29333,"##skin":29334,"381":29335,"##tat":29336,"##you":29337,"nosed":29338,"##nir":29339,"mangrove":29340,"undeveloped":29341,"##idia":29342,"textures":29343,"##inho":29344,"##500":29345,"##rise":29346,"ae":29347,"irritating":29348,"nay":29349,"amazingly":29350,"bancroft":29351,"apologetic":29352,"compassionate":29353,"kata":29354,"symphonies":29355,"##lovic":29356,"airspace":29357,"##lch":29358,"930":29359,"gifford":29360,"precautions":29361,"fulfillment":29362,"sevilla":29363,"vulgar":29364,"martinique":29365,"##urities":29366,"looting":29367,"piccolo":29368,"tidy":29369,"##dermott":29370,"quadrant":29371,"armchair":29372,"incomes":29373,"mathematicians":29374,"stampede":29375,"nilsson":29376,"##inking":29377,"##scan":29378,"foo":29379,"quarterfinal":29380,"##ostal":29381,"shang":29382,"shouldered":29383,"squirrels":29384,"##owe":29385,"344":29386,"vinegar":29387,"##bner":29388,"##rchy":29389,"##systems":29390,"delaying":29391,"##trics":29392,"ars":29393,"dwyer":29394,"rhapsody":29395,"sponsoring":29396,"##gration":29397,"bipolar":29398,"cinder":29399,"starters":29400,"##olio":29401,"##urst":29402,"421":29403,"signage":29404,"##nty":29405,"aground":29406,"figurative":29407,"mons":29408,"acquaintances":29409,"duets":29410,"erroneously":29411,"soyuz":29412,"elliptic":29413,"recreated":29414,"##cultural":29415,"##quette":29416,"##ssed":29417,"##tma":29418,"##zcz":29419,"moderator":29420,"scares":29421,"##itaire":29422,"##stones":29423,"##udence":29424,"juniper":29425,"sighting":29426,"##just":29427,"##nsen":29428,"britten":29429,"calabria":29430,"ry":29431,"bop":29432,"cramer":29433,"forsyth":29434,"stillness":29435,"##л":29436,"airmen":29437,"gathers":29438,"unfit":29439,"##umber":29440,"##upt":29441,"taunting":29442,"##rip":29443,"seeker":29444,"streamlined":29445,"##bution":29446,"holster":29447,"schumann":29448,"tread":29449,"vox":29450,"##gano":29451,"##onzo":29452,"strive":29453,"dil":29454,"reforming":29455,"covent":29456,"newbury":29457,"predicting":29458,"##orro":29459,"decorate":29460,"tre":29461,"##puted":29462,"andover":29463,"ie":29464,"asahi":29465,"dept":29466,"dunkirk":29467,"gills":29468,"##tori":29469,"buren":29470,"huskies":29471,"##stis":29472,"##stov":29473,"abstracts":29474,"bets":29475,"loosen":29476,"##opa":29477,"1682":29478,"yearning":29479,"##glio":29480,"##sir":29481,"berman":29482,"effortlessly":29483,"enamel":29484,"napoli":29485,"persist":29486,"##peration":29487,"##uez":29488,"attache":29489,"elisa":29490,"b1":29491,"invitations":29492,"##kic":29493,"accelerating":29494,"reindeer":29495,"boardwalk":29496,"clutches":29497,"nelly":29498,"polka":29499,"starbucks":29500,"##kei":29501,"adamant":29502,"huey":29503,"lough":29504,"unbroken":29505,"adventurer":29506,"embroidery":29507,"inspecting":29508,"stanza":29509,"##ducted":29510,"naia":29511,"taluka":29512,"##pone":29513,"##roids":29514,"chases":29515,"deprivation":29516,"florian":29517,"##jing":29518,"##ppet":29519,"earthly":29520,"##lib":29521,"##ssee":29522,"colossal":29523,"foreigner":29524,"vet":29525,"freaks":29526,"patrice":29527,"rosewood":29528,"triassic":29529,"upstate":29530,"##pkins":29531,"dominates":29532,"ata":29533,"chants":29534,"ks":29535,"vo":29536,"##400":29537,"##bley":29538,"##raya":29539,"##rmed":29540,"555":29541,"agra":29542,"infiltrate":29543,"##ailing":29544,"##ilation":29545,"##tzer":29546,"##uppe":29547,"##werk":29548,"binoculars":29549,"enthusiast":29550,"fujian":29551,"squeak":29552,"##avs":29553,"abolitionist":29554,"almeida":29555,"boredom":29556,"hampstead":29557,"marsden":29558,"rations":29559,"##ands":29560,"inflated":29561,"334":29562,"bonuses":29563,"rosalie":29564,"patna":29565,"##rco":29566,"329":29567,"detachments":29568,"penitentiary":29569,"54th":29570,"flourishing":29571,"woolf":29572,"##dion":29573,"##etched":29574,"papyrus":29575,"##lster":29576,"##nsor":29577,"##toy":29578,"bobbed":29579,"dismounted":29580,"endelle":29581,"inhuman":29582,"motorola":29583,"tbs":29584,"wince":29585,"wreath":29586,"##ticus":29587,"hideout":29588,"inspections":29589,"sanjay":29590,"disgrace":29591,"infused":29592,"pudding":29593,"stalks":29594,"##urbed":29595,"arsenic":29596,"leases":29597,"##hyl":29598,"##rrard":29599,"collarbone":29600,"##waite":29601,"##wil":29602,"dowry":29603,"##bant":29604,"##edance":29605,"genealogical":29606,"nitrate":29607,"salamanca":29608,"scandals":29609,"thyroid":29610,"necessitated":29611,"##!":29612,"##\"":29613,"###":29614,"##$":29615,"##%":29616,"##&":29617,"##'":29618,"##(":29619,"##)":29620,"##*":29621,"##+":29622,"##,":29623,"##-":29624,"##.":29625,"##/":29626,"##:":29627,"##;":29628,"##<":29629,"##=":29630,"##>":29631,"##?":29632,"##@":29633,"##[":29634,"##\\":29635,"##]":29636,"##^":29637,"##_":29638,"##`":29639,"##{":29640,"##|":29641,"##}":29642,"##~":29643,"##¡":29644,"##¢":29645,"##£":29646,"##¤":29647,"##¥":29648,"##¦":29649,"##§":29650,"##¨":29651,"##©":29652,"##ª":29653,"##«":29654,"##¬":29655,"##®":29656,"##±":29657,"##´":29658,"##µ":29659,"##¶":29660,"##·":29661,"##º":29662,"##»":29663,"##¼":29664,"##¾":29665,"##¿":29666,"##æ":29667,"##ð":29668,"##÷":29669,"##þ":29670,"##đ":29671,"##ħ":29672,"##ŋ":29673,"##œ":29674,"##ƒ":29675,"##ɐ":29676,"##ɑ":29677,"##ɒ":29678,"##ɔ":29679,"##ɕ":29680,"##ə":29681,"##ɡ":29682,"##ɣ":29683,"##ɨ":29684,"##ɪ":29685,"##ɫ":29686,"##ɬ":29687,"##ɯ":29688,"##ɲ":29689,"##ɴ":29690,"##ɹ":29691,"##ɾ":29692,"##ʀ":29693,"##ʁ":29694,"##ʂ":29695,"##ʃ":29696,"##ʉ":29697,"##ʊ":29698,"##ʋ":29699,"##ʌ":29700,"##ʎ":29701,"##ʐ":29702,"##ʑ":29703,"##ʒ":29704,"##ʔ":29705,"##ʰ":29706,"##ʲ":29707,"##ʳ":29708,"##ʷ":29709,"##ʸ":29710,"##ʻ":29711,"##ʼ":29712,"##ʾ":29713,"##ʿ":29714,"##ˈ":29715,"##ˡ":29716,"##ˢ":29717,"##ˣ":29718,"##ˤ":29719,"##β":29720,"##γ":29721,"##δ":29722,"##ε":29723,"##ζ":29724,"##θ":29725,"##κ":29726,"##λ":29727,"##μ":29728,"##ξ":29729,"##ο":29730,"##π":29731,"##ρ":29732,"##σ":29733,"##τ":29734,"##υ":29735,"##φ":29736,"##χ":29737,"##ψ":29738,"##ω":29739,"##б":29740,"##г":29741,"##д":29742,"##ж":29743,"##з":29744,"##м":29745,"##п":29746,"##с":29747,"##у":29748,"##ф":29749,"##х":29750,"##ц":29751,"##ч":29752,"##ш":29753,"##щ":29754,"##ъ":29755,"##э":29756,"##ю":29757,"##ђ":29758,"##є":29759,"##і":29760,"##ј":29761,"##љ":29762,"##њ":29763,"##ћ":29764,"##ӏ":29765,"##ա":29766,"##բ":29767,"##գ":29768,"##դ":29769,"##ե":29770,"##թ":29771,"##ի":29772,"##լ":29773,"##կ":29774,"##հ":29775,"##մ":29776,"##յ":29777,"##ն":29778,"##ո":29779,"##պ":29780,"##ս":29781,"##վ":29782,"##տ":29783,"##ր":29784,"##ւ":29785,"##ք":29786,"##־":29787,"##א":29788,"##ב":29789,"##ג":29790,"##ד":29791,"##ו":29792,"##ז":29793,"##ח":29794,"##ט":29795,"##י":29796,"##ך":29797,"##כ":29798,"##ל":29799,"##ם":29800,"##מ":29801,"##ן":29802,"##נ":29803,"##ס":29804,"##ע":29805,"##ף":29806,"##פ":29807,"##ץ":29808,"##צ":29809,"##ק":29810,"##ר":29811,"##ש":29812,"##ת":29813,"##،":29814,"##ء":29815,"##ب":29816,"##ت":29817,"##ث":29818,"##ج":29819,"##ح":29820,"##خ":29821,"##ذ":29822,"##ز":29823,"##س":29824,"##ش":29825,"##ص":29826,"##ض":29827,"##ط":29828,"##ظ":29829,"##ع":29830,"##غ":29831,"##ـ":29832,"##ف":29833,"##ق":29834,"##ك":29835,"##و":29836,"##ى":29837,"##ٹ":29838,"##پ":29839,"##چ":29840,"##ک":29841,"##گ":29842,"##ں":29843,"##ھ":29844,"##ہ":29845,"##ے":29846,"##अ":29847,"##आ":29848,"##उ":29849,"##ए":29850,"##क":29851,"##ख":29852,"##ग":29853,"##च":29854,"##ज":29855,"##ट":29856,"##ड":29857,"##ण":29858,"##त":29859,"##थ":29860,"##द":29861,"##ध":29862,"##न":29863,"##प":29864,"##ब":29865,"##भ":29866,"##म":29867,"##य":29868,"##र":29869,"##ल":29870,"##व":29871,"##श":29872,"##ष":29873,"##स":29874,"##ह":29875,"##ा":29876,"##ि":29877,"##ी":29878,"##ो":29879,"##।":29880,"##॥":29881,"##ং":29882,"##অ":29883,"##আ":29884,"##ই":29885,"##উ":29886,"##এ":29887,"##ও":29888,"##ক":29889,"##খ":29890,"##গ":29891,"##চ":29892,"##ছ":29893,"##জ":29894,"##ট":29895,"##ড":29896,"##ণ":29897,"##ত":29898,"##থ":29899,"##দ":29900,"##ধ":29901,"##ন":29902,"##প":29903,"##ব":29904,"##ভ":29905,"##ম":29906,"##য":29907,"##র":29908,"##ল":29909,"##শ":29910,"##ষ":29911,"##স":29912,"##হ":29913,"##া":29914,"##ি":29915,"##ী":29916,"##ে":29917,"##க":29918,"##ச":29919,"##ட":29920,"##த":29921,"##ந":29922,"##ன":29923,"##ப":29924,"##ம":29925,"##ய":29926,"##ர":29927,"##ல":29928,"##ள":29929,"##வ":29930,"##ா":29931,"##ி":29932,"##ு":29933,"##ே":29934,"##ை":29935,"##ನ":29936,"##ರ":29937,"##ಾ":29938,"##ක":29939,"##ය":29940,"##ර":29941,"##ල":29942,"##ව":29943,"##ා":29944,"##ก":29945,"##ง":29946,"##ต":29947,"##ท":29948,"##น":29949,"##พ":29950,"##ม":29951,"##ย":29952,"##ร":29953,"##ล":29954,"##ว":29955,"##ส":29956,"##อ":29957,"##า":29958,"##เ":29959,"##་":29960,"##།":29961,"##ག":29962,"##ང":29963,"##ད":29964,"##ན":29965,"##པ":29966,"##བ":29967,"##མ":29968,"##འ":29969,"##ར":29970,"##ལ":29971,"##ས":29972,"##မ":29973,"##ა":29974,"##ბ":29975,"##გ":29976,"##დ":29977,"##ე":29978,"##ვ":29979,"##თ":29980,"##ი":29981,"##კ":29982,"##ლ":29983,"##მ":29984,"##ნ":29985,"##ო":29986,"##რ":29987,"##ს":29988,"##ტ":29989,"##უ":29990,"##ᄀ":29991,"##ᄂ":29992,"##ᄃ":29993,"##ᄅ":29994,"##ᄆ":29995,"##ᄇ":29996,"##ᄉ":29997,"##ᄊ":29998,"##ᄋ":29999,"##ᄌ":30000,"##ᄎ":30001,"##ᄏ":30002,"##ᄐ":30003,"##ᄑ":30004,"##ᄒ":30005,"##ᅡ":30006,"##ᅢ":30007,"##ᅥ":30008,"##ᅦ":30009,"##ᅧ":30010,"##ᅩ":30011,"##ᅪ":30012,"##ᅭ":30013,"##ᅮ":30014,"##ᅯ":30015,"##ᅲ":30016,"##ᅳ":30017,"##ᅴ":30018,"##ᅵ":30019,"##ᆨ":30020,"##ᆫ":30021,"##ᆯ":30022,"##ᆷ":30023,"##ᆸ":30024,"##ᆼ":30025,"##ᴬ":30026,"##ᴮ":30027,"##ᴰ":30028,"##ᴵ":30029,"##ᴺ":30030,"##ᵀ":30031,"##ᵃ":30032,"##ᵇ":30033,"##ᵈ":30034,"##ᵉ":30035,"##ᵍ":30036,"##ᵏ":30037,"##ᵐ":30038,"##ᵒ":30039,"##ᵖ":30040,"##ᵗ":30041,"##ᵘ":30042,"##ᵣ":30043,"##ᵤ":30044,"##ᵥ":30045,"##ᶜ":30046,"##ᶠ":30047,"##‐":30048,"##‑":30049,"##‒":30050,"##–":30051,"##—":30052,"##―":30053,"##‖":30054,"##‘":30055,"##’":30056,"##‚":30057,"##“":30058,"##”":30059,"##„":30060,"##†":30061,"##‡":30062,"##•":30063,"##…":30064,"##‰":30065,"##′":30066,"##″":30067,"##›":30068,"##‿":30069,"##⁄":30070,"##⁰":30071,"##ⁱ":30072,"##⁴":30073,"##⁵":30074,"##⁶":30075,"##⁷":30076,"##⁸":30077,"##⁹":30078,"##⁻":30079,"##ⁿ":30080,"##₅":30081,"##₆":30082,"##₇":30083,"##₈":30084,"##₉":30085,"##₊":30086,"##₍":30087,"##₎":30088,"##ₐ":30089,"##ₑ":30090,"##ₒ":30091,"##ₓ":30092,"##ₕ":30093,"##ₖ":30094,"##ₗ":30095,"##ₘ":30096,"##ₚ":30097,"##ₛ":30098,"##ₜ":30099,"##₤":30100,"##₩":30101,"##€":30102,"##₱":30103,"##₹":30104,"##ℓ":30105,"##№":30106,"##ℝ":30107,"##™":30108,"##⅓":30109,"##⅔":30110,"##←":30111,"##↑":30112,"##→":30113,"##↓":30114,"##↔":30115,"##↦":30116,"##⇄":30117,"##⇌":30118,"##⇒":30119,"##∂":30120,"##∅":30121,"##∆":30122,"##∇":30123,"##∈":30124,"##∗":30125,"##∘":30126,"##√":30127,"##∞":30128,"##∧":30129,"##∨":30130,"##∩":30131,"##∪":30132,"##≈":30133,"##≡":30134,"##≤":30135,"##≥":30136,"##⊂":30137,"##⊆":30138,"##⊕":30139,"##⊗":30140,"##⋅":30141,"##─":30142,"##│":30143,"##■":30144,"##▪":30145,"##●":30146,"##★":30147,"##☆":30148,"##☉":30149,"##♠":30150,"##♣":30151,"##♥":30152,"##♦":30153,"##♯":30154,"##⟨":30155,"##⟩":30156,"##ⱼ":30157,"##⺩":30158,"##⺼":30159,"##⽥":30160,"##、":30161,"##。":30162,"##〈":30163,"##〉":30164,"##《":30165,"##》":30166,"##「":30167,"##」":30168,"##『":30169,"##』":30170,"##〜":30171,"##あ":30172,"##い":30173,"##う":30174,"##え":30175,"##お":30176,"##か":30177,"##き":30178,"##く":30179,"##け":30180,"##こ":30181,"##さ":30182,"##し":30183,"##す":30184,"##せ":30185,"##そ":30186,"##た":30187,"##ち":30188,"##っ":30189,"##つ":30190,"##て":30191,"##と":30192,"##な":30193,"##に":30194,"##ぬ":30195,"##ね":30196,"##の":30197,"##は":30198,"##ひ":30199,"##ふ":30200,"##へ":30201,"##ほ":30202,"##ま":30203,"##み":30204,"##む":30205,"##め":30206,"##も":30207,"##や":30208,"##ゆ":30209,"##よ":30210,"##ら":30211,"##り":30212,"##る":30213,"##れ":30214,"##ろ":30215,"##を":30216,"##ん":30217,"##ァ":30218,"##ア":30219,"##ィ":30220,"##イ":30221,"##ウ":30222,"##ェ":30223,"##エ":30224,"##オ":30225,"##カ":30226,"##キ":30227,"##ク":30228,"##ケ":30229,"##コ":30230,"##サ":30231,"##シ":30232,"##ス":30233,"##セ":30234,"##タ":30235,"##チ":30236,"##ッ":30237,"##ツ":30238,"##テ":30239,"##ト":30240,"##ナ":30241,"##ニ":30242,"##ノ":30243,"##ハ":30244,"##ヒ":30245,"##フ":30246,"##ヘ":30247,"##ホ":30248,"##マ":30249,"##ミ":30250,"##ム":30251,"##メ":30252,"##モ":30253,"##ャ":30254,"##ュ":30255,"##ョ":30256,"##ラ":30257,"##リ":30258,"##ル":30259,"##レ":30260,"##ロ":30261,"##ワ":30262,"##ン":30263,"##・":30264,"##ー":30265,"##一":30266,"##三":30267,"##上":30268,"##下":30269,"##不":30270,"##世":30271,"##中":30272,"##主":30273,"##久":30274,"##之":30275,"##也":30276,"##事":30277,"##二":30278,"##五":30279,"##井":30280,"##京":30281,"##人":30282,"##亻":30283,"##仁":30284,"##介":30285,"##代":30286,"##仮":30287,"##伊":30288,"##会":30289,"##佐":30290,"##侍":30291,"##保":30292,"##信":30293,"##健":30294,"##元":30295,"##光":30296,"##八":30297,"##公":30298,"##内":30299,"##出":30300,"##分":30301,"##前":30302,"##劉":30303,"##力":30304,"##加":30305,"##勝":30306,"##北":30307,"##区":30308,"##十":30309,"##千":30310,"##南":30311,"##博":30312,"##原":30313,"##口":30314,"##古":30315,"##史":30316,"##司":30317,"##合":30318,"##吉":30319,"##同":30320,"##名":30321,"##和":30322,"##囗":30323,"##四":30324,"##国":30325,"##國":30326,"##土":30327,"##地":30328,"##坂":30329,"##城":30330,"##堂":30331,"##場":30332,"##士":30333,"##夏":30334,"##外":30335,"##大":30336,"##天":30337,"##太":30338,"##夫":30339,"##奈":30340,"##女":30341,"##子":30342,"##学":30343,"##宀":30344,"##宇":30345,"##安":30346,"##宗":30347,"##定":30348,"##宣":30349,"##宮":30350,"##家":30351,"##宿":30352,"##寺":30353,"##將":30354,"##小":30355,"##尚":30356,"##山":30357,"##岡":30358,"##島":30359,"##崎":30360,"##川":30361,"##州":30362,"##巿":30363,"##帝":30364,"##平":30365,"##年":30366,"##幸":30367,"##广":30368,"##弘":30369,"##張":30370,"##彳":30371,"##後":30372,"##御":30373,"##德":30374,"##心":30375,"##忄":30376,"##志":30377,"##忠":30378,"##愛":30379,"##成":30380,"##我":30381,"##戦":30382,"##戸":30383,"##手":30384,"##扌":30385,"##政":30386,"##文":30387,"##新":30388,"##方":30389,"##日":30390,"##明":30391,"##星":30392,"##春":30393,"##昭":30394,"##智":30395,"##曲":30396,"##書":30397,"##月":30398,"##有":30399,"##朝":30400,"##木":30401,"##本":30402,"##李":30403,"##村":30404,"##東":30405,"##松":30406,"##林":30407,"##森":30408,"##楊":30409,"##樹":30410,"##橋":30411,"##歌":30412,"##止":30413,"##正":30414,"##武":30415,"##比":30416,"##氏":30417,"##民":30418,"##水":30419,"##氵":30420,"##氷":30421,"##永":30422,"##江":30423,"##沢":30424,"##河":30425,"##治":30426,"##法":30427,"##海":30428,"##清":30429,"##漢":30430,"##瀬":30431,"##火":30432,"##版":30433,"##犬":30434,"##王":30435,"##生":30436,"##田":30437,"##男":30438,"##疒":30439,"##発":30440,"##白":30441,"##的":30442,"##皇":30443,"##目":30444,"##相":30445,"##省":30446,"##真":30447,"##石":30448,"##示":30449,"##社":30450,"##神":30451,"##福":30452,"##禾":30453,"##秀":30454,"##秋":30455,"##空":30456,"##立":30457,"##章":30458,"##竹":30459,"##糹":30460,"##美":30461,"##義":30462,"##耳":30463,"##良":30464,"##艹":30465,"##花":30466,"##英":30467,"##華":30468,"##葉":30469,"##藤":30470,"##行":30471,"##街":30472,"##西":30473,"##見":30474,"##訁":30475,"##語":30476,"##谷":30477,"##貝":30478,"##貴":30479,"##車":30480,"##軍":30481,"##辶":30482,"##道":30483,"##郎":30484,"##郡":30485,"##部":30486,"##都":30487,"##里":30488,"##野":30489,"##金":30490,"##鈴":30491,"##镇":30492,"##長":30493,"##門":30494,"##間":30495,"##阝":30496,"##阿":30497,"##陳":30498,"##陽":30499,"##雄":30500,"##青":30501,"##面":30502,"##風":30503,"##食":30504,"##香":30505,"##馬":30506,"##高":30507,"##龍":30508,"##龸":30509,"##fi":30510,"##fl":30511,"##!":30512,"##(":30513,"##)":30514,"##,":30515,"##-":30516,"##.":30517,"##/":30518,"##:":30519,"##?":30520,"##~":30521}}}
\ No newline at end of file
diff --git a/bun.lock b/bun.lock
new file mode 100644
index 00000000..c31b3865
--- /dev/null
+++ b/bun.lock
@@ -0,0 +1,2037 @@
+{
+ "lockfileVersion": 1,
+ "configVersion": 0,
+ "workspaces": {
+ "": {
+ "name": "@soulcraft/brainy",
+ "dependencies": {
+ "@aws-sdk/client-s3": "^3.540.0",
+ "@azure/identity": "^4.0.0",
+ "@azure/storage-blob": "^12.17.0",
+ "@google-cloud/storage": "^7.14.0",
+ "@msgpack/msgpack": "^3.1.2",
+ "@types/js-yaml": "^4.0.9",
+ "boxen": "^8.0.1",
+ "chalk": "^5.3.0",
+ "chardet": "^2.0.0",
+ "cli-table3": "^0.6.5",
+ "commander": "^11.1.0",
+ "csv-parse": "^6.1.0",
+ "exifr": "^7.1.3",
+ "inquirer": "^12.9.3",
+ "js-yaml": "^4.1.0",
+ "mammoth": "^1.11.0",
+ "mime": "^4.1.0",
+ "onnxruntime-web": "^1.22.0",
+ "ora": "^8.2.0",
+ "pdfjs-dist": "^4.0.379",
+ "probe-image-size": "^7.2.3",
+ "prompts": "^2.4.2",
+ "roaring-wasm": "^1.1.0",
+ "uuid": "^9.0.1",
+ "ws": "^8.18.3",
+ "xlsx": "^0.18.5",
+ },
+ "devDependencies": {
+ "@rollup/plugin-commonjs": "^28.0.6",
+ "@rollup/plugin-node-resolve": "^16.0.1",
+ "@rollup/plugin-replace": "^6.0.2",
+ "@rollup/plugin-terser": "^0.4.4",
+ "@testcontainers/redis": "^11.5.1",
+ "@types/mime": "^3.0.4",
+ "@types/node": "^20.11.30",
+ "@types/probe-image-size": "^7.2.5",
+ "@types/uuid": "^10.0.0",
+ "@types/ws": "^8.18.1",
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
+ "@typescript-eslint/parser": "^8.0.0",
+ "@vitest/coverage-v8": "^3.2.4",
+ "jspdf": "^3.0.3",
+ "minio": "^8.0.5",
+ "standard-version": "^9.5.0",
+ "testcontainers": "^11.5.1",
+ "tsx": "^4.19.2",
+ "typescript": "^5.4.5",
+ "vitest": "^3.2.4",
+ },
+ },
+ },
+ "overrides": {
+ "boolean": "3.2.0",
+ },
+ "packages": {
+ "@ampproject/remapping": ["@ampproject/remapping@2.3.0", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="],
+
+ "@aws-crypto/crc32": ["@aws-crypto/crc32@5.2.0", "", { "dependencies": { "@aws-crypto/util": "^5.2.0", "@aws-sdk/types": "^3.222.0", "tslib": "^2.6.2" } }, "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg=="],
+
+ "@aws-crypto/crc32c": ["@aws-crypto/crc32c@5.2.0", "", { "dependencies": { "@aws-crypto/util": "^5.2.0", "@aws-sdk/types": "^3.222.0", "tslib": "^2.6.2" } }, "sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag=="],
+
+ "@aws-crypto/sha1-browser": ["@aws-crypto/sha1-browser@5.2.0", "", { "dependencies": { "@aws-crypto/supports-web-crypto": "^5.2.0", "@aws-crypto/util": "^5.2.0", "@aws-sdk/types": "^3.222.0", "@aws-sdk/util-locate-window": "^3.0.0", "@smithy/util-utf8": "^2.0.0", "tslib": "^2.6.2" } }, "sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg=="],
+
+ "@aws-crypto/sha256-browser": ["@aws-crypto/sha256-browser@5.2.0", "", { "dependencies": { "@aws-crypto/sha256-js": "^5.2.0", "@aws-crypto/supports-web-crypto": "^5.2.0", "@aws-crypto/util": "^5.2.0", "@aws-sdk/types": "^3.222.0", "@aws-sdk/util-locate-window": "^3.0.0", "@smithy/util-utf8": "^2.0.0", "tslib": "^2.6.2" } }, "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw=="],
+
+ "@aws-crypto/sha256-js": ["@aws-crypto/sha256-js@5.2.0", "", { "dependencies": { "@aws-crypto/util": "^5.2.0", "@aws-sdk/types": "^3.222.0", "tslib": "^2.6.2" } }, "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA=="],
+
+ "@aws-crypto/supports-web-crypto": ["@aws-crypto/supports-web-crypto@5.2.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg=="],
+
+ "@aws-crypto/util": ["@aws-crypto/util@5.2.0", "", { "dependencies": { "@aws-sdk/types": "^3.222.0", "@smithy/util-utf8": "^2.0.0", "tslib": "^2.6.2" } }, "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ=="],
+
+ "@aws-sdk/client-s3": ["@aws-sdk/client-s3@3.954.0", "", { "dependencies": { "@aws-crypto/sha1-browser": "5.2.0", "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", "@aws-sdk/core": "3.954.0", "@aws-sdk/credential-provider-node": "3.954.0", "@aws-sdk/middleware-bucket-endpoint": "3.953.0", "@aws-sdk/middleware-expect-continue": "3.953.0", "@aws-sdk/middleware-flexible-checksums": "3.954.0", "@aws-sdk/middleware-host-header": "3.953.0", "@aws-sdk/middleware-location-constraint": "3.953.0", "@aws-sdk/middleware-logger": "3.953.0", "@aws-sdk/middleware-recursion-detection": "3.953.0", "@aws-sdk/middleware-sdk-s3": "3.954.0", "@aws-sdk/middleware-ssec": "3.953.0", "@aws-sdk/middleware-user-agent": "3.954.0", "@aws-sdk/region-config-resolver": "3.953.0", "@aws-sdk/signature-v4-multi-region": "3.954.0", "@aws-sdk/types": "3.953.0", "@aws-sdk/util-endpoints": "3.953.0", "@aws-sdk/util-user-agent-browser": "3.953.0", "@aws-sdk/util-user-agent-node": "3.954.0", "@smithy/config-resolver": "^4.4.4", "@smithy/core": "^3.19.0", "@smithy/eventstream-serde-browser": "^4.2.6", "@smithy/eventstream-serde-config-resolver": "^4.3.6", "@smithy/eventstream-serde-node": "^4.2.6", "@smithy/fetch-http-handler": "^5.3.7", "@smithy/hash-blob-browser": "^4.2.7", "@smithy/hash-node": "^4.2.6", "@smithy/hash-stream-node": "^4.2.6", "@smithy/invalid-dependency": "^4.2.6", "@smithy/md5-js": "^4.2.6", "@smithy/middleware-content-length": "^4.2.6", "@smithy/middleware-endpoint": "^4.4.0", "@smithy/middleware-retry": "^4.4.16", "@smithy/middleware-serde": "^4.2.7", "@smithy/middleware-stack": "^4.2.6", "@smithy/node-config-provider": "^4.3.6", "@smithy/node-http-handler": "^4.4.6", "@smithy/protocol-http": "^5.3.6", "@smithy/smithy-client": "^4.10.1", "@smithy/types": "^4.10.0", "@smithy/url-parser": "^4.2.6", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", "@smithy/util-defaults-mode-browser": "^4.3.15", "@smithy/util-defaults-mode-node": "^4.2.18", "@smithy/util-endpoints": "^3.2.6", "@smithy/util-middleware": "^4.2.6", "@smithy/util-retry": "^4.2.6", "@smithy/util-stream": "^4.5.7", "@smithy/util-utf8": "^4.2.0", "@smithy/util-waiter": "^4.2.6", "tslib": "^2.6.2" } }, "sha512-DoeySsljzjuWRzqoETLszHGKKOOWlzuGZh3oAF7TkYRsrwbuYYmttrWomb9koogaF0S5YSPwCMCUbKbpF0lbTA=="],
+
+ "@aws-sdk/client-sso": ["@aws-sdk/client-sso@3.954.0", "", { "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", "@aws-sdk/core": "3.954.0", "@aws-sdk/middleware-host-header": "3.953.0", "@aws-sdk/middleware-logger": "3.953.0", "@aws-sdk/middleware-recursion-detection": "3.953.0", "@aws-sdk/middleware-user-agent": "3.954.0", "@aws-sdk/region-config-resolver": "3.953.0", "@aws-sdk/types": "3.953.0", "@aws-sdk/util-endpoints": "3.953.0", "@aws-sdk/util-user-agent-browser": "3.953.0", "@aws-sdk/util-user-agent-node": "3.954.0", "@smithy/config-resolver": "^4.4.4", "@smithy/core": "^3.19.0", "@smithy/fetch-http-handler": "^5.3.7", "@smithy/hash-node": "^4.2.6", "@smithy/invalid-dependency": "^4.2.6", "@smithy/middleware-content-length": "^4.2.6", "@smithy/middleware-endpoint": "^4.4.0", "@smithy/middleware-retry": "^4.4.16", "@smithy/middleware-serde": "^4.2.7", "@smithy/middleware-stack": "^4.2.6", "@smithy/node-config-provider": "^4.3.6", "@smithy/node-http-handler": "^4.4.6", "@smithy/protocol-http": "^5.3.6", "@smithy/smithy-client": "^4.10.1", "@smithy/types": "^4.10.0", "@smithy/url-parser": "^4.2.6", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", "@smithy/util-defaults-mode-browser": "^4.3.15", "@smithy/util-defaults-mode-node": "^4.2.18", "@smithy/util-endpoints": "^3.2.6", "@smithy/util-middleware": "^4.2.6", "@smithy/util-retry": "^4.2.6", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-FVyMAvlFhLK68DHWB1lSkCRTm25xl38bIZDd+jKt5+yDolCrG5+n9aIN8AA8jNO1HNGhZuMjSIQm9r5rGmJH8g=="],
+
+ "@aws-sdk/core": ["@aws-sdk/core@3.954.0", "", { "dependencies": { "@aws-sdk/types": "3.953.0", "@aws-sdk/xml-builder": "3.953.0", "@smithy/core": "^3.19.0", "@smithy/node-config-provider": "^4.3.6", "@smithy/property-provider": "^4.2.6", "@smithy/protocol-http": "^5.3.6", "@smithy/signature-v4": "^5.3.6", "@smithy/smithy-client": "^4.10.1", "@smithy/types": "^4.10.0", "@smithy/util-base64": "^4.3.0", "@smithy/util-middleware": "^4.2.6", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-5oYO5RP+mvCNXNj8XnF9jZo0EP0LTseYOJVNQYcii1D9DJqzHL3HJWurYh7cXxz7G7eDyvVYA01O9Xpt34TdoA=="],
+
+ "@aws-sdk/credential-provider-env": ["@aws-sdk/credential-provider-env@3.954.0", "", { "dependencies": { "@aws-sdk/core": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/property-provider": "^4.2.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-2HNkqBjfsvyoRuPAiFh86JBFMFyaCNhL4VyH6XqwTGKZffjG7hdBmzXPy7AT7G3oFh1k/1Zc27v0qxaKoK7mBA=="],
+
+ "@aws-sdk/credential-provider-http": ["@aws-sdk/credential-provider-http@3.954.0", "", { "dependencies": { "@aws-sdk/core": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/fetch-http-handler": "^5.3.7", "@smithy/node-http-handler": "^4.4.6", "@smithy/property-provider": "^4.2.6", "@smithy/protocol-http": "^5.3.6", "@smithy/smithy-client": "^4.10.1", "@smithy/types": "^4.10.0", "@smithy/util-stream": "^4.5.7", "tslib": "^2.6.2" } }, "sha512-CrWD5300+NE1OYRnSVDxoG7G0b5cLIZb7yp+rNQ5Jq/kqnTmyJXpVAsivq+bQIDaGzPXhadzpAMIoo7K/aHaag=="],
+
+ "@aws-sdk/credential-provider-ini": ["@aws-sdk/credential-provider-ini@3.954.0", "", { "dependencies": { "@aws-sdk/core": "3.954.0", "@aws-sdk/credential-provider-env": "3.954.0", "@aws-sdk/credential-provider-http": "3.954.0", "@aws-sdk/credential-provider-login": "3.954.0", "@aws-sdk/credential-provider-process": "3.954.0", "@aws-sdk/credential-provider-sso": "3.954.0", "@aws-sdk/credential-provider-web-identity": "3.954.0", "@aws-sdk/nested-clients": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/credential-provider-imds": "^4.2.6", "@smithy/property-provider": "^4.2.6", "@smithy/shared-ini-file-loader": "^4.4.1", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-WAFD8pVwRSoBsuXcoD+s/hrdsP9Z0PNUedSgkOGExuJVAabpM2cIIMzYNsdHio9XFZUSqHkv8mF5mQXuIZvuzg=="],
+
+ "@aws-sdk/credential-provider-login": ["@aws-sdk/credential-provider-login@3.954.0", "", { "dependencies": { "@aws-sdk/core": "3.954.0", "@aws-sdk/nested-clients": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/property-provider": "^4.2.6", "@smithy/protocol-http": "^5.3.6", "@smithy/shared-ini-file-loader": "^4.4.1", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-EYqaBWwdVbVK7prmsmgTWLPptoWREplPkFMFscOpVmseDvf/0IjYNbNLLtfuhy/6L7ZBGI9wat2k4u0MRivvxA=="],
+
+ "@aws-sdk/credential-provider-node": ["@aws-sdk/credential-provider-node@3.954.0", "", { "dependencies": { "@aws-sdk/credential-provider-env": "3.954.0", "@aws-sdk/credential-provider-http": "3.954.0", "@aws-sdk/credential-provider-ini": "3.954.0", "@aws-sdk/credential-provider-process": "3.954.0", "@aws-sdk/credential-provider-sso": "3.954.0", "@aws-sdk/credential-provider-web-identity": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/credential-provider-imds": "^4.2.6", "@smithy/property-provider": "^4.2.6", "@smithy/shared-ini-file-loader": "^4.4.1", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-UPBjw7Lnly5i+/rES8Z5U+nPaumzEUYOE/wrHkxyH6JjwFWn8w7R07fE5Z5cgYlIq1U1lQ7sxYwB3wHPpQ65Aw=="],
+
+ "@aws-sdk/credential-provider-process": ["@aws-sdk/credential-provider-process@3.954.0", "", { "dependencies": { "@aws-sdk/core": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/property-provider": "^4.2.6", "@smithy/shared-ini-file-loader": "^4.4.1", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-Y1/0O2LgbKM8iIgcVj/GNEQW6p90LVTCOzF2CI1pouoKqxmZ/1F7F66WHoa6XUOfKaCRj/R6nuMR3om9ThaM5A=="],
+
+ "@aws-sdk/credential-provider-sso": ["@aws-sdk/credential-provider-sso@3.954.0", "", { "dependencies": { "@aws-sdk/client-sso": "3.954.0", "@aws-sdk/core": "3.954.0", "@aws-sdk/token-providers": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/property-provider": "^4.2.6", "@smithy/shared-ini-file-loader": "^4.4.1", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-UXxGfkp/plFRdyidMLvNul5zoLKmHhVQOCrD2OgR/lg9jNqNmJ7abF+Qu8abo902iDkhU21Qj4M398cx6l8Kng=="],
+
+ "@aws-sdk/credential-provider-web-identity": ["@aws-sdk/credential-provider-web-identity@3.954.0", "", { "dependencies": { "@aws-sdk/core": "3.954.0", "@aws-sdk/nested-clients": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/property-provider": "^4.2.6", "@smithy/shared-ini-file-loader": "^4.4.1", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-XEyf1T08q1tG4zkTS4Dnf1cAQyrJUo/xlvi6XNpqGhY3bOmKUYE2h/K6eITIdytDL9VuCpWYQ6YRcIVtL29E0w=="],
+
+ "@aws-sdk/middleware-bucket-endpoint": ["@aws-sdk/middleware-bucket-endpoint@3.953.0", "", { "dependencies": { "@aws-sdk/types": "3.953.0", "@aws-sdk/util-arn-parser": "3.953.0", "@smithy/node-config-provider": "^4.3.6", "@smithy/protocol-http": "^5.3.6", "@smithy/types": "^4.10.0", "@smithy/util-config-provider": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-YHVRIOowtGIl/L2WuS83FgRlm31tU0aL1yryWaFtF+AFjA5BIeiFkxIZqaRGxJpJvFEBdohsyq6Ipv5mgWfezg=="],
+
+ "@aws-sdk/middleware-expect-continue": ["@aws-sdk/middleware-expect-continue@3.953.0", "", { "dependencies": { "@aws-sdk/types": "3.953.0", "@smithy/protocol-http": "^5.3.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-BQTVXrypQ0rbb7au/Hk4IS5GaJZlwk6O44Rjk6Kxb0IvGQhSurNTuesFiJx1sLbf+w+T31saPtODcfQQERqhCQ=="],
+
+ "@aws-sdk/middleware-flexible-checksums": ["@aws-sdk/middleware-flexible-checksums@3.954.0", "", { "dependencies": { "@aws-crypto/crc32": "5.2.0", "@aws-crypto/crc32c": "5.2.0", "@aws-crypto/util": "5.2.0", "@aws-sdk/core": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/is-array-buffer": "^4.2.0", "@smithy/node-config-provider": "^4.3.6", "@smithy/protocol-http": "^5.3.6", "@smithy/types": "^4.10.0", "@smithy/util-middleware": "^4.2.6", "@smithy/util-stream": "^4.5.7", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-hHOPDJyxucNodkgapLhA0VdwDBwVYN9DX20aA6j+3nwutAlZ5skaV7Bw0W3YC7Fh/ieDKKhcSZulONd4lVTwMg=="],
+
+ "@aws-sdk/middleware-host-header": ["@aws-sdk/middleware-host-header@3.953.0", "", { "dependencies": { "@aws-sdk/types": "3.953.0", "@smithy/protocol-http": "^5.3.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-jTGhfkONav+r4E6HLOrl5SzBqDmPByUYCkyB/c/3TVb8jX3wAZx8/q9bphKpCh+G5ARi3IdbSisgkZrJYqQ19Q=="],
+
+ "@aws-sdk/middleware-location-constraint": ["@aws-sdk/middleware-location-constraint@3.953.0", "", { "dependencies": { "@aws-sdk/types": "3.953.0", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-h0urrbteIQEybyIISaJfQLZ/+/lJPRzPWAQT4epvzfgv/4MKZI7K83dK7SfTwAooVKFBHiCMok2Cf0iHDt07Kw=="],
+
+ "@aws-sdk/middleware-logger": ["@aws-sdk/middleware-logger@3.953.0", "", { "dependencies": { "@aws-sdk/types": "3.953.0", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-PlWdVYgcuptkIC0ZKqVUhWNtSHXJSx7U9V8J7dJjRmsXC40X7zpEycvrkzDMJjeTDGcCceYbyYAg/4X1lkcIMw=="],
+
+ "@aws-sdk/middleware-recursion-detection": ["@aws-sdk/middleware-recursion-detection@3.953.0", "", { "dependencies": { "@aws-sdk/types": "3.953.0", "@aws/lambda-invoke-store": "^0.2.2", "@smithy/protocol-http": "^5.3.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-cmIJx0gWeesUKK4YwgE+VQL3mpACr3/J24fbwnc1Z5tntC86b+HQFzU5vsBDw6lLwyD46dBgWdsXFh1jL+ZaFw=="],
+
+ "@aws-sdk/middleware-sdk-s3": ["@aws-sdk/middleware-sdk-s3@3.954.0", "", { "dependencies": { "@aws-sdk/core": "3.954.0", "@aws-sdk/types": "3.953.0", "@aws-sdk/util-arn-parser": "3.953.0", "@smithy/core": "^3.19.0", "@smithy/node-config-provider": "^4.3.6", "@smithy/protocol-http": "^5.3.6", "@smithy/signature-v4": "^5.3.6", "@smithy/smithy-client": "^4.10.1", "@smithy/types": "^4.10.0", "@smithy/util-config-provider": "^4.2.0", "@smithy/util-middleware": "^4.2.6", "@smithy/util-stream": "^4.5.7", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-274CNmnRjknmfFb2o0Azxic54fnujaA8AYSeRUOho3lN48TVzx85eAFWj2kLgvUJO88pE3jBDPWboKQiQdXeUQ=="],
+
+ "@aws-sdk/middleware-ssec": ["@aws-sdk/middleware-ssec@3.953.0", "", { "dependencies": { "@aws-sdk/types": "3.953.0", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-OrhG1kcQ9zZh3NS3RovR028N0+UndQ957zF1k5HPLeFLwFwQN1uPOufzzPzAyXIIKtR69ARFsQI4mstZS4DMvw=="],
+
+ "@aws-sdk/middleware-user-agent": ["@aws-sdk/middleware-user-agent@3.954.0", "", { "dependencies": { "@aws-sdk/core": "3.954.0", "@aws-sdk/types": "3.953.0", "@aws-sdk/util-endpoints": "3.953.0", "@smithy/core": "^3.19.0", "@smithy/protocol-http": "^5.3.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-5PX8JDe3dB2+MqXeGIhmgFnm2rbVsSxhz+Xyuu1oxLtbOn+a9UDA+sNBufEBjt3UxWy5qwEEY1fxdbXXayjlGg=="],
+
+ "@aws-sdk/nested-clients": ["@aws-sdk/nested-clients@3.954.0", "", { "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", "@aws-sdk/core": "3.954.0", "@aws-sdk/middleware-host-header": "3.953.0", "@aws-sdk/middleware-logger": "3.953.0", "@aws-sdk/middleware-recursion-detection": "3.953.0", "@aws-sdk/middleware-user-agent": "3.954.0", "@aws-sdk/region-config-resolver": "3.953.0", "@aws-sdk/types": "3.953.0", "@aws-sdk/util-endpoints": "3.953.0", "@aws-sdk/util-user-agent-browser": "3.953.0", "@aws-sdk/util-user-agent-node": "3.954.0", "@smithy/config-resolver": "^4.4.4", "@smithy/core": "^3.19.0", "@smithy/fetch-http-handler": "^5.3.7", "@smithy/hash-node": "^4.2.6", "@smithy/invalid-dependency": "^4.2.6", "@smithy/middleware-content-length": "^4.2.6", "@smithy/middleware-endpoint": "^4.4.0", "@smithy/middleware-retry": "^4.4.16", "@smithy/middleware-serde": "^4.2.7", "@smithy/middleware-stack": "^4.2.6", "@smithy/node-config-provider": "^4.3.6", "@smithy/node-http-handler": "^4.4.6", "@smithy/protocol-http": "^5.3.6", "@smithy/smithy-client": "^4.10.1", "@smithy/types": "^4.10.0", "@smithy/url-parser": "^4.2.6", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", "@smithy/util-defaults-mode-browser": "^4.3.15", "@smithy/util-defaults-mode-node": "^4.2.18", "@smithy/util-endpoints": "^3.2.6", "@smithy/util-middleware": "^4.2.6", "@smithy/util-retry": "^4.2.6", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-JLUhf35fTQIDPLk6G5KPggL9tV//Hjhy6+N2zZeis76LuBRNhKDq8z1CFyKhjf00vXi/tDYdn9D7y9emI+5Y/g=="],
+
+ "@aws-sdk/region-config-resolver": ["@aws-sdk/region-config-resolver@3.953.0", "", { "dependencies": { "@aws-sdk/types": "3.953.0", "@smithy/config-resolver": "^4.4.4", "@smithy/node-config-provider": "^4.3.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-5MJgnsc+HLO+le0EK1cy92yrC7kyhGZSpaq8PcQvKs9qtXCXT5Tb6tMdkr5Y07JxYsYOV1omWBynvL6PWh08tQ=="],
+
+ "@aws-sdk/signature-v4-multi-region": ["@aws-sdk/signature-v4-multi-region@3.954.0", "", { "dependencies": { "@aws-sdk/middleware-sdk-s3": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/protocol-http": "^5.3.6", "@smithy/signature-v4": "^5.3.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-GJJbUaSlGrMSRWui3Oz8ByygpQlzDGm195yTKirgGyu4tfYrFr/QWrWT42EUktY/L4Irev1pdHTuLS+AGHO1gw=="],
+
+ "@aws-sdk/token-providers": ["@aws-sdk/token-providers@3.954.0", "", { "dependencies": { "@aws-sdk/core": "3.954.0", "@aws-sdk/nested-clients": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/property-provider": "^4.2.6", "@smithy/shared-ini-file-loader": "^4.4.1", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-rDyN3oQQKMOJgyQ9/LNbh4fAGAj8ePMGOAQzSP/kyzizmViI6STpBW1o/VRqiTgMNi1bvA9ZasDtfrJqcVt0iA=="],
+
+ "@aws-sdk/types": ["@aws-sdk/types@3.953.0", "", { "dependencies": { "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-M9Iwg9kTyqTErI0vOTVVpcnTHWzS3VplQppy8MuL02EE+mJ0BIwpWfsaAPQW+/XnVpdNpWZTsHcNE29f1+hR8g=="],
+
+ "@aws-sdk/util-arn-parser": ["@aws-sdk/util-arn-parser@3.953.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-9hqdKkn4OvYzzaLryq2xnwcrPc8ziY34i9szUdgBfSqEC6pBxbY9/lLXmrgzfwMSL2Z7/v2go4Od0p5eukKLMQ=="],
+
+ "@aws-sdk/util-endpoints": ["@aws-sdk/util-endpoints@3.953.0", "", { "dependencies": { "@aws-sdk/types": "3.953.0", "@smithy/types": "^4.10.0", "@smithy/url-parser": "^4.2.6", "@smithy/util-endpoints": "^3.2.6", "tslib": "^2.6.2" } }, "sha512-rjaS6jrFksopXvNg6YeN+D1lYwhcByORNlFuYesFvaQNtPOufbE5tJL4GJ3TMXyaY0uFR28N5BHHITPyWWfH/g=="],
+
+ "@aws-sdk/util-locate-window": ["@aws-sdk/util-locate-window@3.953.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-mPxK+I1LcrgC/RSa3G5AMAn8eN2Ay0VOgw8lSRmV1jCtO+iYvNeCqOdxoJUjOW6I5BA4niIRWqVORuRP07776Q=="],
+
+ "@aws-sdk/util-user-agent-browser": ["@aws-sdk/util-user-agent-browser@3.953.0", "", { "dependencies": { "@aws-sdk/types": "3.953.0", "@smithy/types": "^4.10.0", "bowser": "^2.11.0", "tslib": "^2.6.2" } }, "sha512-UF5NeqYesWuFao+u7LJvpV1SJCaLml5BtFZKUdTnNNMeN6jvV+dW/eQoFGpXF94RCqguX0XESmRuRRPQp+/rzQ=="],
+
+ "@aws-sdk/util-user-agent-node": ["@aws-sdk/util-user-agent-node@3.954.0", "", { "dependencies": { "@aws-sdk/middleware-user-agent": "3.954.0", "@aws-sdk/types": "3.953.0", "@smithy/node-config-provider": "^4.3.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" }, "peerDependencies": { "aws-crt": ">=1.0.0" }, "optionalPeers": ["aws-crt"] }, "sha512-fB5S5VOu7OFkeNzcblQlez4AjO5hgDFaa7phYt7716YWisY3RjAaQPlxgv+G3GltHHDJIfzEC5aRxdf62B9zMg=="],
+
+ "@aws-sdk/xml-builder": ["@aws-sdk/xml-builder@3.953.0", "", { "dependencies": { "@smithy/types": "^4.10.0", "fast-xml-parser": "5.2.5", "tslib": "^2.6.2" } }, "sha512-Zmrj21jQ2OeOJGr9spPiN00aQvXa/WUqRXcTVENhrMt+OFoSOfDFpYhUj9NQ09QmQ8KMWFoWuWW6iKurNqLvAA=="],
+
+ "@aws/lambda-invoke-store": ["@aws/lambda-invoke-store@0.2.2", "", {}, "sha512-C0NBLsIqzDIae8HFw9YIrIBsbc0xTiOtt7fAukGPnqQ/+zZNaq+4jhuccltK0QuWHBnNm/a6kLIRA6GFiM10eg=="],
+
+ "@azure/abort-controller": ["@azure/abort-controller@2.1.2", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA=="],
+
+ "@azure/core-auth": ["@azure/core-auth@1.10.1", "", { "dependencies": { "@azure/abort-controller": "^2.1.2", "@azure/core-util": "^1.13.0", "tslib": "^2.6.2" } }, "sha512-ykRMW8PjVAn+RS6ww5cmK9U2CyH9p4Q88YJwvUslfuMmN98w/2rdGRLPqJYObapBCdzBVeDgYWdJnFPFb7qzpg=="],
+
+ "@azure/core-client": ["@azure/core-client@1.10.1", "", { "dependencies": { "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.10.0", "@azure/core-rest-pipeline": "^1.22.0", "@azure/core-tracing": "^1.3.0", "@azure/core-util": "^1.13.0", "@azure/logger": "^1.3.0", "tslib": "^2.6.2" } }, "sha512-Nh5PhEOeY6PrnxNPsEHRr9eimxLwgLlpmguQaHKBinFYA/RU9+kOYVOQqOrTsCL+KSxrLLl1gD8Dk5BFW/7l/w=="],
+
+ "@azure/core-http-compat": ["@azure/core-http-compat@2.3.1", "", { "dependencies": { "@azure/abort-controller": "^2.1.2", "@azure/core-client": "^1.10.0", "@azure/core-rest-pipeline": "^1.22.0" } }, "sha512-az9BkXND3/d5VgdRRQVkiJb2gOmDU8Qcq4GvjtBmDICNiQ9udFmDk4ZpSB5Qq1OmtDJGlQAfBaS4palFsazQ5g=="],
+
+ "@azure/core-lro": ["@azure/core-lro@2.7.2", "", { "dependencies": { "@azure/abort-controller": "^2.0.0", "@azure/core-util": "^1.2.0", "@azure/logger": "^1.0.0", "tslib": "^2.6.2" } }, "sha512-0YIpccoX8m/k00O7mDDMdJpbr6mf1yWo2dfmxt5A8XVZVVMz2SSKaEbMCeJRvgQ0IaSlqhjT47p4hVIRRy90xw=="],
+
+ "@azure/core-paging": ["@azure/core-paging@1.6.2", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-YKWi9YuCU04B55h25cnOYZHxXYtEvQEbKST5vqRga7hWY9ydd3FZHdeQF8pyh+acWZvppw13M/LMGx0LABUVMA=="],
+
+ "@azure/core-rest-pipeline": ["@azure/core-rest-pipeline@1.22.2", "", { "dependencies": { "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.10.0", "@azure/core-tracing": "^1.3.0", "@azure/core-util": "^1.13.0", "@azure/logger": "^1.3.0", "@typespec/ts-http-runtime": "^0.3.0", "tslib": "^2.6.2" } }, "sha512-MzHym+wOi8CLUlKCQu12de0nwcq9k9Kuv43j4Wa++CsCpJwps2eeBQwD2Bu8snkxTtDKDx4GwjuR9E8yC8LNrg=="],
+
+ "@azure/core-tracing": ["@azure/core-tracing@1.3.1", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-9MWKevR7Hz8kNzzPLfX4EAtGM2b8mr50HPDBvio96bURP/9C+HjdH3sBlLSNNrvRAr5/k/svoH457gB5IKpmwQ=="],
+
+ "@azure/core-util": ["@azure/core-util@1.13.1", "", { "dependencies": { "@azure/abort-controller": "^2.1.2", "@typespec/ts-http-runtime": "^0.3.0", "tslib": "^2.6.2" } }, "sha512-XPArKLzsvl0Hf0CaGyKHUyVgF7oDnhKoP85Xv6M4StF/1AhfORhZudHtOyf2s+FcbuQ9dPRAjB8J2KvRRMUK2A=="],
+
+ "@azure/core-xml": ["@azure/core-xml@1.5.0", "", { "dependencies": { "fast-xml-parser": "^5.0.7", "tslib": "^2.8.1" } }, "sha512-D/sdlJBMJfx7gqoj66PKVmhDDaU6TKA49ptcolxdas29X7AfvLTmfAGLjAcIMBK7UZ2o4lygHIqVckOlQU3xWw=="],
+
+ "@azure/identity": ["@azure/identity@4.13.0", "", { "dependencies": { "@azure/abort-controller": "^2.0.0", "@azure/core-auth": "^1.9.0", "@azure/core-client": "^1.9.2", "@azure/core-rest-pipeline": "^1.17.0", "@azure/core-tracing": "^1.0.0", "@azure/core-util": "^1.11.0", "@azure/logger": "^1.0.0", "@azure/msal-browser": "^4.2.0", "@azure/msal-node": "^3.5.0", "open": "^10.1.0", "tslib": "^2.2.0" } }, "sha512-uWC0fssc+hs1TGGVkkghiaFkkS7NkTxfnCH+Hdg+yTehTpMcehpok4PgUKKdyCH+9ldu6FhiHRv84Ntqj1vVcw=="],
+
+ "@azure/logger": ["@azure/logger@1.3.0", "", { "dependencies": { "@typespec/ts-http-runtime": "^0.3.0", "tslib": "^2.6.2" } }, "sha512-fCqPIfOcLE+CGqGPd66c8bZpwAji98tZ4JI9i/mlTNTlsIWslCfpg48s/ypyLxZTump5sypjrKn2/kY7q8oAbA=="],
+
+ "@azure/msal-browser": ["@azure/msal-browser@4.27.0", "", { "dependencies": { "@azure/msal-common": "15.13.3" } }, "sha512-bZ8Pta6YAbdd0o0PEaL1/geBsPrLEnyY/RDWqvF1PP9RUH8EMLvUMGoZFYS6jSlUan6KZ9IMTLCnwpWWpQRK/w=="],
+
+ "@azure/msal-common": ["@azure/msal-common@15.13.3", "", {}, "sha512-shSDU7Ioecya+Aob5xliW9IGq1Ui8y4EVSdWGyI1Gbm4Vg61WpP95LuzcY214/wEjSn6w4PZYD4/iVldErHayQ=="],
+
+ "@azure/msal-node": ["@azure/msal-node@3.8.4", "", { "dependencies": { "@azure/msal-common": "15.13.3", "jsonwebtoken": "^9.0.0", "uuid": "^8.3.0" } }, "sha512-lvuAwsDpPDE/jSuVQOBMpLbXuVuLsPNRwWCyK3/6bPlBk0fGWegqoZ0qjZclMWyQ2JNvIY3vHY7hoFmFmFQcOw=="],
+
+ "@azure/storage-blob": ["@azure/storage-blob@12.29.1", "", { "dependencies": { "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-client": "^1.9.3", "@azure/core-http-compat": "^2.2.0", "@azure/core-lro": "^2.2.0", "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "@azure/core-tracing": "^1.2.0", "@azure/core-util": "^1.11.0", "@azure/core-xml": "^1.4.5", "@azure/logger": "^1.1.4", "@azure/storage-common": "^12.1.1", "events": "^3.0.0", "tslib": "^2.8.1" } }, "sha512-7ktyY0rfTM0vo7HvtK6E3UvYnI9qfd6Oz6z/+92VhGRveWng3kJwMKeUpqmW/NmwcDNbxHpSlldG+vsUnRFnBg=="],
+
+ "@azure/storage-common": ["@azure/storage-common@12.1.1", "", { "dependencies": { "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-http-compat": "^2.2.0", "@azure/core-rest-pipeline": "^1.19.1", "@azure/core-tracing": "^1.2.0", "@azure/core-util": "^1.11.0", "@azure/logger": "^1.1.4", "events": "^3.3.0", "tslib": "^2.8.1" } }, "sha512-eIOH1pqFwI6UmVNnDQvmFeSg0XppuzDLFeUNO/Xht7ODAzRLgGDh7h550pSxoA+lPDxBl1+D2m/KG3jWzCUjTg=="],
+
+ "@babel/code-frame": ["@babel/code-frame@7.27.1", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg=="],
+
+ "@babel/helper-string-parser": ["@babel/helper-string-parser@7.27.1", "", {}, "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="],
+
+ "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.28.5", "", {}, "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q=="],
+
+ "@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": { "parser": "bin/babel-parser.js" } }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/runtime": ["@babel/runtime@7.28.4", "", {}, "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ=="],
+
+ "@babel/types": ["@babel/types@7.28.5", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.28.5" } }, "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA=="],
+
+ "@balena/dockerignore": ["@balena/dockerignore@1.0.2", "", {}, "sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q=="],
+
+ "@bcoe/v8-coverage": ["@bcoe/v8-coverage@1.0.2", "", {}, "sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA=="],
+
+ "@colors/colors": ["@colors/colors@1.5.0", "", {}, "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ=="],
+
+ "@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.27.2", "", { "os": "aix", "cpu": "ppc64" }, "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw=="],
+
+ "@esbuild/android-arm": ["@esbuild/android-arm@0.27.2", "", { "os": "android", "cpu": "arm" }, "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA=="],
+
+ "@esbuild/android-arm64": ["@esbuild/android-arm64@0.27.2", "", { "os": "android", "cpu": "arm64" }, "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA=="],
+
+ "@esbuild/android-x64": ["@esbuild/android-x64@0.27.2", "", { "os": "android", "cpu": "x64" }, "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A=="],
+
+ "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.27.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg=="],
+
+ "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.27.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA=="],
+
+ "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.27.2", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g=="],
+
+ "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.27.2", "", { "os": "freebsd", "cpu": "x64" }, "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA=="],
+
+ "@esbuild/linux-arm": ["@esbuild/linux-arm@0.27.2", "", { "os": "linux", "cpu": "arm" }, "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw=="],
+
+ "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.27.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw=="],
+
+ "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.27.2", "", { "os": "linux", "cpu": "ia32" }, "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w=="],
+
+ "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.27.2", "", { "os": "linux", "cpu": "none" }, "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg=="],
+
+ "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.27.2", "", { "os": "linux", "cpu": "none" }, "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw=="],
+
+ "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.27.2", "", { "os": "linux", "cpu": "ppc64" }, "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ=="],
+
+ "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.27.2", "", { "os": "linux", "cpu": "none" }, "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA=="],
+
+ "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.27.2", "", { "os": "linux", "cpu": "s390x" }, "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w=="],
+
+ "@esbuild/linux-x64": ["@esbuild/linux-x64@0.27.2", "", { "os": "linux", "cpu": "x64" }, "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA=="],
+
+ "@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.27.2", "", { "os": "none", "cpu": "arm64" }, "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw=="],
+
+ "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.27.2", "", { "os": "none", "cpu": "x64" }, "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA=="],
+
+ "@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.27.2", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA=="],
+
+ "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.27.2", "", { "os": "openbsd", "cpu": "x64" }, "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg=="],
+
+ "@esbuild/openharmony-arm64": ["@esbuild/openharmony-arm64@0.27.2", "", { "os": "none", "cpu": "arm64" }, "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag=="],
+
+ "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.27.2", "", { "os": "sunos", "cpu": "x64" }, "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg=="],
+
+ "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.27.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg=="],
+
+ "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.27.2", "", { "os": "win32", "cpu": "ia32" }, "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ=="],
+
+ "@esbuild/win32-x64": ["@esbuild/win32-x64@0.27.2", "", { "os": "win32", "cpu": "x64" }, "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ=="],
+
+ "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.9.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g=="],
+
+ "@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.2", "", {}, "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew=="],
+
+ "@eslint/config-array": ["@eslint/config-array@0.21.1", "", { "dependencies": { "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", "minimatch": "^3.1.2" } }, "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA=="],
+
+ "@eslint/config-helpers": ["@eslint/config-helpers@0.4.2", "", { "dependencies": { "@eslint/core": "^0.17.0" } }, "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw=="],
+
+ "@eslint/core": ["@eslint/core@0.17.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ=="],
+
+ "@eslint/eslintrc": ["@eslint/eslintrc@3.3.3", "", { "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^10.0.1", "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.1", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" } }, "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ=="],
+
+ "@eslint/js": ["@eslint/js@9.39.2", "", {}, "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA=="],
+
+ "@eslint/object-schema": ["@eslint/object-schema@2.1.7", "", {}, "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA=="],
+
+ "@eslint/plugin-kit": ["@eslint/plugin-kit@0.4.1", "", { "dependencies": { "@eslint/core": "^0.17.0", "levn": "^0.4.1" } }, "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA=="],
+
+ "@google-cloud/paginator": ["@google-cloud/paginator@5.0.2", "", { "dependencies": { "arrify": "^2.0.0", "extend": "^3.0.2" } }, "sha512-DJS3s0OVH4zFDB1PzjxAsHqJT6sKVbRwwML0ZBP9PbU7Yebtu/7SWMRzvO2J3nUi9pRNITCfu4LJeooM2w4pjg=="],
+
+ "@google-cloud/projectify": ["@google-cloud/projectify@4.0.0", "", {}, "sha512-MmaX6HeSvyPbWGwFq7mXdo0uQZLGBYCwziiLIGq5JVX+/bdI3SAq6bP98trV5eTWfLuvsMcIC1YJOF2vfteLFA=="],
+
+ "@google-cloud/promisify": ["@google-cloud/promisify@4.0.0", "", {}, "sha512-Orxzlfb9c67A15cq2JQEyVc7wEsmFBmHjZWZYQMUyJ1qivXyMwdyNOs9odi79hze+2zqdTtu1E19IM/FtqZ10g=="],
+
+ "@google-cloud/storage": ["@google-cloud/storage@7.18.0", "", { "dependencies": { "@google-cloud/paginator": "^5.0.0", "@google-cloud/projectify": "^4.0.0", "@google-cloud/promisify": "<4.1.0", "abort-controller": "^3.0.0", "async-retry": "^1.3.3", "duplexify": "^4.1.3", "fast-xml-parser": "^4.4.1", "gaxios": "^6.0.2", "google-auth-library": "^9.6.3", "html-entities": "^2.5.2", "mime": "^3.0.0", "p-limit": "^3.0.1", "retry-request": "^7.0.0", "teeny-request": "^9.0.0", "uuid": "^8.0.0" } }, "sha512-r3ZwDMiz4nwW6R922Z1pwpePxyRwE5GdevYX63hRmAQUkUQJcBH/79EnQPDv5cOv1mFBgevdNWQfi3tie3dHrQ=="],
+
+ "@grpc/grpc-js": ["@grpc/grpc-js@1.14.3", "", { "dependencies": { "@grpc/proto-loader": "^0.8.0", "@js-sdsl/ordered-map": "^4.4.2" } }, "sha512-Iq8QQQ/7X3Sac15oB6p0FmUg/klxQvXLeileoqrTRGJYLV+/9tubbr9ipz0GKHjmXVsgFPo/+W+2cA8eNcR+XA=="],
+
+ "@grpc/proto-loader": ["@grpc/proto-loader@0.7.15", "", { "dependencies": { "lodash.camelcase": "^4.3.0", "long": "^5.0.0", "protobufjs": "^7.2.5", "yargs": "^17.7.2" }, "bin": { "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" } }, "sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ=="],
+
+ "@humanfs/core": ["@humanfs/core@0.19.1", "", {}, "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA=="],
+
+ "@humanfs/node": ["@humanfs/node@0.16.7", "", { "dependencies": { "@humanfs/core": "^0.19.1", "@humanwhocodes/retry": "^0.4.0" } }, "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ=="],
+
+ "@humanwhocodes/module-importer": ["@humanwhocodes/module-importer@1.0.1", "", {}, "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="],
+
+ "@humanwhocodes/retry": ["@humanwhocodes/retry@0.4.3", "", {}, "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ=="],
+
+ "@hutson/parse-repository-url": ["@hutson/parse-repository-url@3.0.2", "", {}, "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q=="],
+
+ "@inquirer/ansi": ["@inquirer/ansi@1.0.2", "", {}, "sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ=="],
+
+ "@inquirer/checkbox": ["@inquirer/checkbox@4.3.2", "", { "dependencies": { "@inquirer/ansi": "^1.0.2", "@inquirer/core": "^10.3.2", "@inquirer/figures": "^1.0.15", "@inquirer/type": "^3.0.10", "yoctocolors-cjs": "^2.1.3" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA=="],
+
+ "@inquirer/confirm": ["@inquirer/confirm@5.1.21", "", { "dependencies": { "@inquirer/core": "^10.3.2", "@inquirer/type": "^3.0.10" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ=="],
+
+ "@inquirer/core": ["@inquirer/core@10.3.2", "", { "dependencies": { "@inquirer/ansi": "^1.0.2", "@inquirer/figures": "^1.0.15", "@inquirer/type": "^3.0.10", "cli-width": "^4.1.0", "mute-stream": "^2.0.0", "signal-exit": "^4.1.0", "wrap-ansi": "^6.2.0", "yoctocolors-cjs": "^2.1.3" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A=="],
+
+ "@inquirer/editor": ["@inquirer/editor@4.2.23", "", { "dependencies": { "@inquirer/core": "^10.3.2", "@inquirer/external-editor": "^1.0.3", "@inquirer/type": "^3.0.10" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ=="],
+
+ "@inquirer/expand": ["@inquirer/expand@4.0.23", "", { "dependencies": { "@inquirer/core": "^10.3.2", "@inquirer/type": "^3.0.10", "yoctocolors-cjs": "^2.1.3" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew=="],
+
+ "@inquirer/external-editor": ["@inquirer/external-editor@1.0.3", "", { "dependencies": { "chardet": "^2.1.1", "iconv-lite": "^0.7.0" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA=="],
+
+ "@inquirer/figures": ["@inquirer/figures@1.0.15", "", {}, "sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g=="],
+
+ "@inquirer/input": ["@inquirer/input@4.3.1", "", { "dependencies": { "@inquirer/core": "^10.3.2", "@inquirer/type": "^3.0.10" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g=="],
+
+ "@inquirer/number": ["@inquirer/number@3.0.23", "", { "dependencies": { "@inquirer/core": "^10.3.2", "@inquirer/type": "^3.0.10" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg=="],
+
+ "@inquirer/password": ["@inquirer/password@4.0.23", "", { "dependencies": { "@inquirer/ansi": "^1.0.2", "@inquirer/core": "^10.3.2", "@inquirer/type": "^3.0.10" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA=="],
+
+ "@inquirer/prompts": ["@inquirer/prompts@7.10.1", "", { "dependencies": { "@inquirer/checkbox": "^4.3.2", "@inquirer/confirm": "^5.1.21", "@inquirer/editor": "^4.2.23", "@inquirer/expand": "^4.0.23", "@inquirer/input": "^4.3.1", "@inquirer/number": "^3.0.23", "@inquirer/password": "^4.0.23", "@inquirer/rawlist": "^4.1.11", "@inquirer/search": "^3.2.2", "@inquirer/select": "^4.4.2" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-Dx/y9bCQcXLI5ooQ5KyvA4FTgeo2jYj/7plWfV5Ak5wDPKQZgudKez2ixyfz7tKXzcJciTxqLeK7R9HItwiByg=="],
+
+ "@inquirer/rawlist": ["@inquirer/rawlist@4.1.11", "", { "dependencies": { "@inquirer/core": "^10.3.2", "@inquirer/type": "^3.0.10", "yoctocolors-cjs": "^2.1.3" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw=="],
+
+ "@inquirer/search": ["@inquirer/search@3.2.2", "", { "dependencies": { "@inquirer/core": "^10.3.2", "@inquirer/figures": "^1.0.15", "@inquirer/type": "^3.0.10", "yoctocolors-cjs": "^2.1.3" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA=="],
+
+ "@inquirer/select": ["@inquirer/select@4.4.2", "", { "dependencies": { "@inquirer/ansi": "^1.0.2", "@inquirer/core": "^10.3.2", "@inquirer/figures": "^1.0.15", "@inquirer/type": "^3.0.10", "yoctocolors-cjs": "^2.1.3" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w=="],
+
+ "@inquirer/type": ["@inquirer/type@3.0.10", "", { "peerDependencies": { "@types/node": ">=18" } }, "sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA=="],
+
+ "@isaacs/cliui": ["@isaacs/cliui@8.0.2", "", { "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" } }, "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="],
+
+ "@istanbuljs/schema": ["@istanbuljs/schema@0.1.3", "", {}, "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="],
+
+ "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.13", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA=="],
+
+ "@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="],
+
+ "@jridgewell/source-map": ["@jridgewell/source-map@0.3.11", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" } }, "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA=="],
+
+ "@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.5", "", {}, "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="],
+
+ "@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.31", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw=="],
+
+ "@js-sdsl/ordered-map": ["@js-sdsl/ordered-map@4.4.2", "", {}, "sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw=="],
+
+ "@msgpack/msgpack": ["@msgpack/msgpack@3.1.2", "", {}, "sha512-JEW4DEtBzfe8HvUYecLU9e6+XJnKDlUAIve8FvPzF3Kzs6Xo/KuZkZJsDH0wJXl/qEZbeeE7edxDNY3kMs39hQ=="],
+
+ "@napi-rs/canvas": ["@napi-rs/canvas@0.1.84", "", { "optionalDependencies": { "@napi-rs/canvas-android-arm64": "0.1.84", "@napi-rs/canvas-darwin-arm64": "0.1.84", "@napi-rs/canvas-darwin-x64": "0.1.84", "@napi-rs/canvas-linux-arm-gnueabihf": "0.1.84", "@napi-rs/canvas-linux-arm64-gnu": "0.1.84", "@napi-rs/canvas-linux-arm64-musl": "0.1.84", "@napi-rs/canvas-linux-riscv64-gnu": "0.1.84", "@napi-rs/canvas-linux-x64-gnu": "0.1.84", "@napi-rs/canvas-linux-x64-musl": "0.1.84", "@napi-rs/canvas-win32-x64-msvc": "0.1.84" } }, "sha512-88FTNFs4uuiFKP0tUrPsEXhpe9dg7za9ILZJE08pGdUveMIDeana1zwfVkqRHJDPJFAmGY3dXmJ99dzsy57YnA=="],
+
+ "@napi-rs/canvas-android-arm64": ["@napi-rs/canvas-android-arm64@0.1.84", "", { "os": "android", "cpu": "arm64" }, "sha512-pdvuqvj3qtwVryqgpAGornJLV6Ezpk39V6wT4JCnRVGy8I3Tk1au8qOalFGrx/r0Ig87hWslysPpHBxVpBMIww=="],
+
+ "@napi-rs/canvas-darwin-arm64": ["@napi-rs/canvas-darwin-arm64@0.1.84", "", { "os": "darwin", "cpu": "arm64" }, "sha512-A8IND3Hnv0R6abc6qCcCaOCujTLMmGxtucMTZ5vbQUrEN/scxi378MyTLtyWg+MRr6bwQJ6v/orqMS9datIcww=="],
+
+ "@napi-rs/canvas-darwin-x64": ["@napi-rs/canvas-darwin-x64@0.1.84", "", { "os": "darwin", "cpu": "x64" }, "sha512-AUW45lJhYWwnA74LaNeqhvqYKK/2hNnBBBl03KRdqeCD4tKneUSrxUqIv8d22CBweOvrAASyKN3W87WO2zEr/A=="],
+
+ "@napi-rs/canvas-linux-arm-gnueabihf": ["@napi-rs/canvas-linux-arm-gnueabihf@0.1.84", "", { "os": "linux", "cpu": "arm" }, "sha512-8zs5ZqOrdgs4FioTxSBrkl/wHZB56bJNBqaIsfPL4ZkEQCinOkrFF7xIcXiHiKp93J3wUtbIzeVrhTIaWwqk+A=="],
+
+ "@napi-rs/canvas-linux-arm64-gnu": ["@napi-rs/canvas-linux-arm64-gnu@0.1.84", "", { "os": "linux", "cpu": "arm64" }, "sha512-i204vtowOglJUpbAFWU5mqsJgH0lVpNk/Ml4mQtB4Lndd86oF+Otr6Mr5KQnZHqYGhlSIKiU2SYnUbhO28zGQA=="],
+
+ "@napi-rs/canvas-linux-arm64-musl": ["@napi-rs/canvas-linux-arm64-musl@0.1.84", "", { "os": "linux", "cpu": "arm64" }, "sha512-VyZq0EEw+OILnWk7G3ZgLLPaz1ERaPP++jLjeyLMbFOF+Tr4zHzWKiKDsEV/cT7btLPZbVoR3VX+T9/QubnURQ=="],
+
+ "@napi-rs/canvas-linux-riscv64-gnu": ["@napi-rs/canvas-linux-riscv64-gnu@0.1.84", "", { "os": "linux", "cpu": "none" }, "sha512-PSMTh8DiThvLRsbtc/a065I/ceZk17EXAATv9uNvHgkgo7wdEfTh2C3aveNkBMGByVO3tvnvD5v/YFtZL07cIg=="],
+
+ "@napi-rs/canvas-linux-x64-gnu": ["@napi-rs/canvas-linux-x64-gnu@0.1.84", "", { "os": "linux", "cpu": "x64" }, "sha512-N1GY3noO1oqgEo3rYQIwY44kfM11vA0lDbN0orTOHfCSUZTUyiYCY0nZ197QMahZBm1aR/vYgsWpV74MMMDuNA=="],
+
+ "@napi-rs/canvas-linux-x64-musl": ["@napi-rs/canvas-linux-x64-musl@0.1.84", "", { "os": "linux", "cpu": "x64" }, "sha512-vUZmua6ADqTWyHyei81aXIt9wp0yjeNwTH0KdhdeoBb6azHmFR8uKTukZMXfLCC3bnsW0t4lW7K78KNMknmtjg=="],
+
+ "@napi-rs/canvas-win32-x64-msvc": ["@napi-rs/canvas-win32-x64-msvc@0.1.84", "", { "os": "win32", "cpu": "x64" }, "sha512-YSs8ncurc1xzegUMNnQUTYrdrAuaXdPMOa+iYYyAxydOtg0ppV386hyYMsy00Yip1NlTgLCseRG4sHSnjQx6og=="],
+
+ "@pkgjs/parseargs": ["@pkgjs/parseargs@0.11.0", "", {}, "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="],
+
+ "@protobufjs/aspromise": ["@protobufjs/aspromise@1.1.2", "", {}, "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ=="],
+
+ "@protobufjs/base64": ["@protobufjs/base64@1.1.2", "", {}, "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg=="],
+
+ "@protobufjs/codegen": ["@protobufjs/codegen@2.0.4", "", {}, "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg=="],
+
+ "@protobufjs/eventemitter": ["@protobufjs/eventemitter@1.1.0", "", {}, "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q=="],
+
+ "@protobufjs/fetch": ["@protobufjs/fetch@1.1.0", "", { "dependencies": { "@protobufjs/aspromise": "^1.1.1", "@protobufjs/inquire": "^1.1.0" } }, "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ=="],
+
+ "@protobufjs/float": ["@protobufjs/float@1.0.2", "", {}, "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ=="],
+
+ "@protobufjs/inquire": ["@protobufjs/inquire@1.1.0", "", {}, "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q=="],
+
+ "@protobufjs/path": ["@protobufjs/path@1.1.2", "", {}, "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA=="],
+
+ "@protobufjs/pool": ["@protobufjs/pool@1.1.0", "", {}, "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw=="],
+
+ "@protobufjs/utf8": ["@protobufjs/utf8@1.1.0", "", {}, "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw=="],
+
+ "@rollup/plugin-commonjs": ["@rollup/plugin-commonjs@28.0.9", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "commondir": "^1.0.1", "estree-walker": "^2.0.2", "fdir": "^6.2.0", "is-reference": "1.2.1", "magic-string": "^0.30.3", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^2.68.0||^3.0.0||^4.0.0" } }, "sha512-PIR4/OHZ79romx0BVVll/PkwWpJ7e5lsqFa3gFfcrFPWwLXLV39JVUzQV9RKjWerE7B845Hqjj9VYlQeieZ2dA=="],
+
+ "@rollup/plugin-node-resolve": ["@rollup/plugin-node-resolve@16.0.3", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "@types/resolve": "1.20.2", "deepmerge": "^4.2.2", "is-module": "^1.0.0", "resolve": "^1.22.1" }, "peerDependencies": { "rollup": "^2.78.0||^3.0.0||^4.0.0" } }, "sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg=="],
+
+ "@rollup/plugin-replace": ["@rollup/plugin-replace@6.0.3", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "magic-string": "^0.30.3" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" } }, "sha512-J4RZarRvQAm5IF0/LwUUg+obsm+xZhYnbMXmXROyoSE1ATJe3oXSb9L5MMppdxP2ylNSjv6zFBwKYjcKMucVfA=="],
+
+ "@rollup/plugin-terser": ["@rollup/plugin-terser@0.4.4", "", { "dependencies": { "serialize-javascript": "^6.0.1", "smob": "^1.0.0", "terser": "^5.17.4" }, "peerDependencies": { "rollup": "^2.0.0||^3.0.0||^4.0.0" } }, "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A=="],
+
+ "@rollup/pluginutils": ["@rollup/pluginutils@5.3.0", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" } }, "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q=="],
+
+ "@rollup/rollup-android-arm-eabi": ["@rollup/rollup-android-arm-eabi@4.53.5", "", { "os": "android", "cpu": "arm" }, "sha512-iDGS/h7D8t7tvZ1t6+WPK04KD0MwzLZrG0se1hzBjSi5fyxlsiggoJHwh18PCFNn7tG43OWb6pdZ6Y+rMlmyNQ=="],
+
+ "@rollup/rollup-android-arm64": ["@rollup/rollup-android-arm64@4.53.5", "", { "os": "android", "cpu": "arm64" }, "sha512-wrSAViWvZHBMMlWk6EJhvg8/rjxzyEhEdgfMMjREHEq11EtJ6IP6yfcCH57YAEca2Oe3FNCE9DSTgU70EIGmVw=="],
+
+ "@rollup/rollup-darwin-arm64": ["@rollup/rollup-darwin-arm64@4.53.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-S87zZPBmRO6u1YXQLwpveZm4JfPpAa6oHBX7/ghSiGH3rz/KDgAu1rKdGutV+WUI6tKDMbaBJomhnT30Y2t4VQ=="],
+
+ "@rollup/rollup-darwin-x64": ["@rollup/rollup-darwin-x64@4.53.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-YTbnsAaHo6VrAczISxgpTva8EkfQus0VPEVJCEaboHtZRIb6h6j0BNxRBOwnDciFTZLDPW5r+ZBmhL/+YpTZgA=="],
+
+ "@rollup/rollup-freebsd-arm64": ["@rollup/rollup-freebsd-arm64@4.53.5", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-1T8eY2J8rKJWzaznV7zedfdhD1BqVs1iqILhmHDq/bqCUZsrMt+j8VCTHhP0vdfbHK3e1IQ7VYx3jlKqwlf+vw=="],
+
+ "@rollup/rollup-freebsd-x64": ["@rollup/rollup-freebsd-x64@4.53.5", "", { "os": "freebsd", "cpu": "x64" }, "sha512-sHTiuXyBJApxRn+VFMaw1U+Qsz4kcNlxQ742snICYPrY+DDL8/ZbaC4DVIB7vgZmp3jiDaKA0WpBdP0aqPJoBQ=="],
+
+ "@rollup/rollup-linux-arm-gnueabihf": ["@rollup/rollup-linux-arm-gnueabihf@4.53.5", "", { "os": "linux", "cpu": "arm" }, "sha512-dV3T9MyAf0w8zPVLVBptVlzaXxka6xg1f16VAQmjg+4KMSTWDvhimI/Y6mp8oHwNrmnmVl9XxJ/w/mO4uIQONA=="],
+
+ "@rollup/rollup-linux-arm-musleabihf": ["@rollup/rollup-linux-arm-musleabihf@4.53.5", "", { "os": "linux", "cpu": "arm" }, "sha512-wIGYC1x/hyjP+KAu9+ewDI+fi5XSNiUi9Bvg6KGAh2TsNMA3tSEs+Sh6jJ/r4BV/bx/CyWu2ue9kDnIdRyafcQ=="],
+
+ "@rollup/rollup-linux-arm64-gnu": ["@rollup/rollup-linux-arm64-gnu@4.53.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-Y+qVA0D9d0y2FRNiG9oM3Hut/DgODZbU9I8pLLPwAsU0tUKZ49cyV1tzmB/qRbSzGvY8lpgGkJuMyuhH7Ma+Vg=="],
+
+ "@rollup/rollup-linux-arm64-musl": ["@rollup/rollup-linux-arm64-musl@4.53.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-juaC4bEgJsyFVfqhtGLz8mbopaWD+WeSOYr5E16y+1of6KQjc0BpwZLuxkClqY1i8sco+MdyoXPNiCkQou09+g=="],
+
+ "@rollup/rollup-linux-loong64-gnu": ["@rollup/rollup-linux-loong64-gnu@4.53.5", "", { "os": "linux", "cpu": "none" }, "sha512-rIEC0hZ17A42iXtHX+EPJVL/CakHo+tT7W0pbzdAGuWOt2jxDFh7A/lRhsNHBcqL4T36+UiAgwO8pbmn3dE8wA=="],
+
+ "@rollup/rollup-linux-ppc64-gnu": ["@rollup/rollup-linux-ppc64-gnu@4.53.5", "", { "os": "linux", "cpu": "ppc64" }, "sha512-T7l409NhUE552RcAOcmJHj3xyZ2h7vMWzcwQI0hvn5tqHh3oSoclf9WgTl+0QqffWFG8MEVZZP1/OBglKZx52Q=="],
+
+ "@rollup/rollup-linux-riscv64-gnu": ["@rollup/rollup-linux-riscv64-gnu@4.53.5", "", { "os": "linux", "cpu": "none" }, "sha512-7OK5/GhxbnrMcxIFoYfhV/TkknarkYC1hqUw1wU2xUN3TVRLNT5FmBv4KkheSG2xZ6IEbRAhTooTV2+R5Tk0lQ=="],
+
+ "@rollup/rollup-linux-riscv64-musl": ["@rollup/rollup-linux-riscv64-musl@4.53.5", "", { "os": "linux", "cpu": "none" }, "sha512-GwuDBE/PsXaTa76lO5eLJTyr2k8QkPipAyOrs4V/KJufHCZBJ495VCGJol35grx9xryk4V+2zd3Ri+3v7NPh+w=="],
+
+ "@rollup/rollup-linux-s390x-gnu": ["@rollup/rollup-linux-s390x-gnu@4.53.5", "", { "os": "linux", "cpu": "s390x" }, "sha512-IAE1Ziyr1qNfnmiQLHBURAD+eh/zH1pIeJjeShleII7Vj8kyEm2PF77o+lf3WTHDpNJcu4IXJxNO0Zluro8bOw=="],
+
+ "@rollup/rollup-linux-x64-gnu": ["@rollup/rollup-linux-x64-gnu@4.53.5", "", { "os": "linux", "cpu": "x64" }, "sha512-Pg6E+oP7GvZ4XwgRJBuSXZjcqpIW3yCBhK4BcsANvb47qMvAbCjR6E+1a/U2WXz1JJxp9/4Dno3/iSJLcm5auw=="],
+
+ "@rollup/rollup-linux-x64-musl": ["@rollup/rollup-linux-x64-musl@4.53.5", "", { "os": "linux", "cpu": "x64" }, "sha512-txGtluxDKTxaMDzUduGP0wdfng24y1rygUMnmlUJ88fzCCULCLn7oE5kb2+tRB+MWq1QDZT6ObT5RrR8HFRKqg=="],
+
+ "@rollup/rollup-openharmony-arm64": ["@rollup/rollup-openharmony-arm64@4.53.5", "", { "os": "none", "cpu": "arm64" }, "sha512-3DFiLPnTxiOQV993fMc+KO8zXHTcIjgaInrqlG8zDp1TlhYl6WgrOHuJkJQ6M8zHEcntSJsUp1XFZSY8C1DYbg=="],
+
+ "@rollup/rollup-win32-arm64-msvc": ["@rollup/rollup-win32-arm64-msvc@4.53.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-nggc/wPpNTgjGg75hu+Q/3i32R00Lq1B6N1DO7MCU340MRKL3WZJMjA9U4K4gzy3dkZPXm9E1Nc81FItBVGRlA=="],
+
+ "@rollup/rollup-win32-ia32-msvc": ["@rollup/rollup-win32-ia32-msvc@4.53.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-U/54pTbdQpPLBdEzCT6NBCFAfSZMvmjr0twhnD9f4EIvlm9wy3jjQ38yQj1AGznrNO65EWQMgm/QUjuIVrYF9w=="],
+
+ "@rollup/rollup-win32-x64-gnu": ["@rollup/rollup-win32-x64-gnu@4.53.5", "", { "os": "win32", "cpu": "x64" }, "sha512-2NqKgZSuLH9SXBBV2dWNRCZmocgSOx8OJSdpRaEcRlIfX8YrKxUT6z0F1NpvDVhOsl190UFTRh2F2WDWWCYp3A=="],
+
+ "@rollup/rollup-win32-x64-msvc": ["@rollup/rollup-win32-x64-msvc@4.53.5", "", { "os": "win32", "cpu": "x64" }, "sha512-JRpZUhCfhZ4keB5v0fe02gQJy05GqboPOaxvjugW04RLSYYoB/9t2lx2u/tMs/Na/1NXfY8QYjgRljRpN+MjTQ=="],
+
+ "@smithy/abort-controller": ["@smithy/abort-controller@4.2.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-P7JD4J+wxHMpGxqIg6SHno2tPkZbBUBLbPpR5/T1DEUvw/mEaINBMaPFZNM7lA+ToSCZ36j6nMHa+5kej+fhGg=="],
+
+ "@smithy/chunked-blob-reader": ["@smithy/chunked-blob-reader@5.2.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-WmU0TnhEAJLWvfSeMxBNe5xtbselEO8+4wG0NtZeL8oR21WgH1xiO37El+/Y+H/Ie4SCwBy3MxYWmOYaGgZueA=="],
+
+ "@smithy/chunked-blob-reader-native": ["@smithy/chunked-blob-reader-native@4.2.1", "", { "dependencies": { "@smithy/util-base64": "^4.3.0", "tslib": "^2.6.2" } }, "sha512-lX9Ay+6LisTfpLid2zZtIhSEjHMZoAR5hHCR4H7tBz/Zkfr5ea8RcQ7Tk4mi0P76p4cN+Btz16Ffno7YHpKXnQ=="],
+
+ "@smithy/config-resolver": ["@smithy/config-resolver@4.4.4", "", { "dependencies": { "@smithy/node-config-provider": "^4.3.6", "@smithy/types": "^4.10.0", "@smithy/util-config-provider": "^4.2.0", "@smithy/util-endpoints": "^3.2.6", "@smithy/util-middleware": "^4.2.6", "tslib": "^2.6.2" } }, "sha512-s3U5ChS21DwU54kMmZ0UJumoS5cg0+rGVZvN6f5Lp6EbAVi0ZyP+qDSHdewfmXKUgNK1j3z45JyzulkDukrjAA=="],
+
+ "@smithy/core": ["@smithy/core@3.19.0", "", { "dependencies": { "@smithy/middleware-serde": "^4.2.7", "@smithy/protocol-http": "^5.3.6", "@smithy/types": "^4.10.0", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-middleware": "^4.2.6", "@smithy/util-stream": "^4.5.7", "@smithy/util-utf8": "^4.2.0", "@smithy/uuid": "^1.1.0", "tslib": "^2.6.2" } }, "sha512-Y9oHXpBcXQgYHOcAEmxjkDilUbSTkgKjoHYed3WaYUH8jngq8lPWDBSpjHblJ9uOgBdy5mh3pzebrScDdYr29w=="],
+
+ "@smithy/credential-provider-imds": ["@smithy/credential-provider-imds@4.2.6", "", { "dependencies": { "@smithy/node-config-provider": "^4.3.6", "@smithy/property-provider": "^4.2.6", "@smithy/types": "^4.10.0", "@smithy/url-parser": "^4.2.6", "tslib": "^2.6.2" } }, "sha512-xBmawExyTzOjbhzkZwg+vVm/khg28kG+rj2sbGlULjFd1jI70sv/cbpaR0Ev4Yfd6CpDUDRMe64cTqR//wAOyA=="],
+
+ "@smithy/eventstream-codec": ["@smithy/eventstream-codec@4.2.6", "", { "dependencies": { "@aws-crypto/crc32": "5.2.0", "@smithy/types": "^4.10.0", "@smithy/util-hex-encoding": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-OZfsI+YRG26XZik/jKMMg37acnBSbUiK/8nETW3uM3mLj+0tMmFXdHQw1e5WEd/IHN8BGOh3te91SNDe2o4RHg=="],
+
+ "@smithy/eventstream-serde-browser": ["@smithy/eventstream-serde-browser@4.2.6", "", { "dependencies": { "@smithy/eventstream-serde-universal": "^4.2.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-6OiaAaEbLB6dEkRbQyNzFSJv5HDvly3Mc6q/qcPd2uS/g3szR8wAIkh7UndAFKfMypNSTuZ6eCBmgCLR5LacTg=="],
+
+ "@smithy/eventstream-serde-config-resolver": ["@smithy/eventstream-serde-config-resolver@4.3.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-xP5YXbOVRVN8A4pDnSUkEUsL9fYFU6VNhxo8tgr13YnMbf3Pn4xVr+hSyLVjS1Frfi1Uk03ET5Bwml4+0CeYEw=="],
+
+ "@smithy/eventstream-serde-node": ["@smithy/eventstream-serde-node@4.2.6", "", { "dependencies": { "@smithy/eventstream-serde-universal": "^4.2.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-jhH7nJuaOpnTFcuZpWK9dqb6Ge2yGi1okTo0W6wkJrfwAm2vwmO74tF1v07JmrSyHBcKLQATEexclJw9K1Vj7w=="],
+
+ "@smithy/eventstream-serde-universal": ["@smithy/eventstream-serde-universal@4.2.6", "", { "dependencies": { "@smithy/eventstream-codec": "^4.2.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-olIfZ230B64TvPD6b0tPvrEp2eB0FkyL3KvDlqF4RVmIc/kn3orzXnV6DTQdOOW5UU+M5zKY3/BU47X420/oPw=="],
+
+ "@smithy/fetch-http-handler": ["@smithy/fetch-http-handler@5.3.7", "", { "dependencies": { "@smithy/protocol-http": "^5.3.6", "@smithy/querystring-builder": "^4.2.6", "@smithy/types": "^4.10.0", "@smithy/util-base64": "^4.3.0", "tslib": "^2.6.2" } }, "sha512-fcVap4QwqmzQwQK9QU3keeEpCzTjnP9NJ171vI7GnD7nbkAIcP9biZhDUx88uRH9BabSsQDS0unUps88uZvFIQ=="],
+
+ "@smithy/hash-blob-browser": ["@smithy/hash-blob-browser@4.2.7", "", { "dependencies": { "@smithy/chunked-blob-reader": "^5.2.0", "@smithy/chunked-blob-reader-native": "^4.2.1", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-CIbCTGGX5CI7tfewBPSYD9ycp2Vb2GW5xnXD1n7GcO9mu37EN7A6DvCHM9MX7pOeS1adMn5D+1yRwI3eABVbcA=="],
+
+ "@smithy/hash-node": ["@smithy/hash-node@4.2.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "@smithy/util-buffer-from": "^4.2.0", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-k3Dy9VNR37wfMh2/1RHkFf/e0rMyN0pjY0FdyY6ItJRjENYyVPRMwad6ZR1S9HFm6tTuIOd9pqKBmtJ4VHxvxg=="],
+
+ "@smithy/hash-stream-node": ["@smithy/hash-stream-node@4.2.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-+3T8LkH39YIhYHsv/Ec8lF+92nykZpU+XMBvAyXF/uLcTp86pxa5oSJk1vzaRY9N++qgDLYjzJ6OVbtAgDGwfw=="],
+
+ "@smithy/invalid-dependency": ["@smithy/invalid-dependency@4.2.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-E4t/V/q2T46RY21fpfznd1iSLTvCXKNKo4zJ1QuEFN4SE9gKfu2vb6bgq35LpufkQ+SETWIC7ZAf2GGvTlBaMQ=="],
+
+ "@smithy/is-array-buffer": ["@smithy/is-array-buffer@4.2.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ=="],
+
+ "@smithy/md5-js": ["@smithy/md5-js@4.2.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-ZXeh8UmH31JdcNsrQ1o9v1IVuva9JFwxIc6zTMxWX7wcmWvVR7Ai9aUEw5LraNKqdkAsb06clpM2sRH4Iy55Sg=="],
+
+ "@smithy/middleware-content-length": ["@smithy/middleware-content-length@4.2.6", "", { "dependencies": { "@smithy/protocol-http": "^5.3.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-0cjqjyfj+Gls30ntq45SsBtqF3dfJQCeqQPyGz58Pk8OgrAr5YiB7ZvDzjCA94p4r6DCI4qLm7FKobqBjf515w=="],
+
+ "@smithy/middleware-endpoint": ["@smithy/middleware-endpoint@4.4.0", "", { "dependencies": { "@smithy/core": "^3.19.0", "@smithy/middleware-serde": "^4.2.7", "@smithy/node-config-provider": "^4.3.6", "@smithy/shared-ini-file-loader": "^4.4.1", "@smithy/types": "^4.10.0", "@smithy/url-parser": "^4.2.6", "@smithy/util-middleware": "^4.2.6", "tslib": "^2.6.2" } }, "sha512-M6qWfUNny6NFNy8amrCGIb9TfOMUkHVtg9bHtEFGRgfH7A7AtPpn/fcrToGPjVDK1ECuMVvqGQOXcZxmu9K+7A=="],
+
+ "@smithy/middleware-retry": ["@smithy/middleware-retry@4.4.16", "", { "dependencies": { "@smithy/node-config-provider": "^4.3.6", "@smithy/protocol-http": "^5.3.6", "@smithy/service-error-classification": "^4.2.6", "@smithy/smithy-client": "^4.10.1", "@smithy/types": "^4.10.0", "@smithy/util-middleware": "^4.2.6", "@smithy/util-retry": "^4.2.6", "@smithy/uuid": "^1.1.0", "tslib": "^2.6.2" } }, "sha512-XPpNhNRzm3vhYm7YCsyw3AtmWggJbg1wNGAoqb7NBYr5XA5isMRv14jgbYyUV6IvbTBFZQdf2QpeW43LrRdStQ=="],
+
+ "@smithy/middleware-serde": ["@smithy/middleware-serde@4.2.7", "", { "dependencies": { "@smithy/protocol-http": "^5.3.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-PFMVHVPgtFECeu4iZ+4SX6VOQT0+dIpm4jSPLLL6JLSkp9RohGqKBKD0cbiXdeIFS08Forp0UHI6kc0gIHenSA=="],
+
+ "@smithy/middleware-stack": ["@smithy/middleware-stack@4.2.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-JSbALU3G+JS4kyBZPqnJ3hxIYwOVRV7r9GNQMS6j5VsQDo5+Es5nddLfr9TQlxZLNHPvKSh+XSB0OuWGfSWFcA=="],
+
+ "@smithy/node-config-provider": ["@smithy/node-config-provider@4.3.6", "", { "dependencies": { "@smithy/property-provider": "^4.2.6", "@smithy/shared-ini-file-loader": "^4.4.1", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-fYEyL59Qe82Ha1p97YQTMEQPJYmBS+ux76foqluaTVWoG9Px5J53w6NvXZNE3wP7lIicLDF7Vj1Em18XTX7fsA=="],
+
+ "@smithy/node-http-handler": ["@smithy/node-http-handler@4.4.6", "", { "dependencies": { "@smithy/abort-controller": "^4.2.6", "@smithy/protocol-http": "^5.3.6", "@smithy/querystring-builder": "^4.2.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-Gsb9jf4ido5BhPfani4ggyrKDd3ZK+vTFWmUaZeFg5G3E5nhFmqiTzAIbHqmPs1sARuJawDiGMGR/nY+Gw6+aQ=="],
+
+ "@smithy/property-provider": ["@smithy/property-provider@4.2.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-a/tGSLPtaia2krbRdwR4xbZKO8lU67DjMk/jfY4QKt4PRlKML+2tL/gmAuhNdFDioO6wOq0sXkfnddNFH9mNUA=="],
+
+ "@smithy/protocol-http": ["@smithy/protocol-http@5.3.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-qLRZzP2+PqhE3OSwvY2jpBbP0WKTZ9opTsn+6IWYI0SKVpbG+imcfNxXPq9fj5XeaUTr7odpsNpK6dmoiM1gJQ=="],
+
+ "@smithy/querystring-builder": ["@smithy/querystring-builder@4.2.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "@smithy/util-uri-escape": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-MeM9fTAiD3HvoInK/aA8mgJaKQDvm8N0dKy6EiFaCfgpovQr4CaOkJC28XqlSRABM+sHdSQXbC8NZ0DShBMHqg=="],
+
+ "@smithy/querystring-parser": ["@smithy/querystring-parser@4.2.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-YmWxl32SQRw/kIRccSOxzS/Ib8/b5/f9ex0r5PR40jRJg8X1wgM3KrR2In+8zvOGVhRSXgvyQpw9yOSlmfmSnA=="],
+
+ "@smithy/service-error-classification": ["@smithy/service-error-classification@4.2.6", "", { "dependencies": { "@smithy/types": "^4.10.0" } }, "sha512-Q73XBrzJlGTut2nf5RglSntHKgAG0+KiTJdO5QQblLfr4TdliGwIAha1iZIjwisc3rA5ulzqwwsYC6xrclxVQg=="],
+
+ "@smithy/shared-ini-file-loader": ["@smithy/shared-ini-file-loader@4.4.1", "", { "dependencies": { "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-tph+oQYPbpN6NamF030hx1gb5YN2Plog+GLaRHpoEDwp8+ZPG26rIJvStG9hkWzN2HBn3HcWg0sHeB0tmkYzqA=="],
+
+ "@smithy/signature-v4": ["@smithy/signature-v4@5.3.6", "", { "dependencies": { "@smithy/is-array-buffer": "^4.2.0", "@smithy/protocol-http": "^5.3.6", "@smithy/types": "^4.10.0", "@smithy/util-hex-encoding": "^4.2.0", "@smithy/util-middleware": "^4.2.6", "@smithy/util-uri-escape": "^4.2.0", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-P1TXDHuQMadTMTOBv4oElZMURU4uyEhxhHfn+qOc2iofW9Rd4sZtBGx58Lzk112rIGVEYZT8eUMK4NftpewpRA=="],
+
+ "@smithy/smithy-client": ["@smithy/smithy-client@4.10.1", "", { "dependencies": { "@smithy/core": "^3.19.0", "@smithy/middleware-endpoint": "^4.4.0", "@smithy/middleware-stack": "^4.2.6", "@smithy/protocol-http": "^5.3.6", "@smithy/types": "^4.10.0", "@smithy/util-stream": "^4.5.7", "tslib": "^2.6.2" } }, "sha512-1ovWdxzYprhq+mWqiGZlt3kF69LJthuQcfY9BIyHx9MywTFKzFapluku1QXoaBB43GCsLDxNqS+1v30ure69AA=="],
+
+ "@smithy/types": ["@smithy/types@4.10.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-K9mY7V/f3Ul+/Gz4LJANZ3vJ/yiBIwCyxe0sPT4vNJK63Srvd+Yk1IzP0t+nE7XFSpIGtzR71yljtnqpUTYFlQ=="],
+
+ "@smithy/url-parser": ["@smithy/url-parser@4.2.6", "", { "dependencies": { "@smithy/querystring-parser": "^4.2.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-tVoyzJ2vXp4R3/aeV4EQjBDmCuWxRa8eo3KybL7Xv4wEM16nObYh7H1sNfcuLWHAAAzb0RVyxUz1S3sGj4X+Tg=="],
+
+ "@smithy/util-base64": ["@smithy/util-base64@4.3.0", "", { "dependencies": { "@smithy/util-buffer-from": "^4.2.0", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ=="],
+
+ "@smithy/util-body-length-browser": ["@smithy/util-body-length-browser@4.2.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg=="],
+
+ "@smithy/util-body-length-node": ["@smithy/util-body-length-node@4.2.1", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA=="],
+
+ "@smithy/util-buffer-from": ["@smithy/util-buffer-from@4.2.0", "", { "dependencies": { "@smithy/is-array-buffer": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew=="],
+
+ "@smithy/util-config-provider": ["@smithy/util-config-provider@4.2.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q=="],
+
+ "@smithy/util-defaults-mode-browser": ["@smithy/util-defaults-mode-browser@4.3.15", "", { "dependencies": { "@smithy/property-provider": "^4.2.6", "@smithy/smithy-client": "^4.10.1", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-LiZQVAg/oO8kueX4c+oMls5njaD2cRLXRfcjlTYjhIqmwHnCwkQO5B3dMQH0c5PACILxGAQf6Mxsq7CjlDc76A=="],
+
+ "@smithy/util-defaults-mode-node": ["@smithy/util-defaults-mode-node@4.2.18", "", { "dependencies": { "@smithy/config-resolver": "^4.4.4", "@smithy/credential-provider-imds": "^4.2.6", "@smithy/node-config-provider": "^4.3.6", "@smithy/property-provider": "^4.2.6", "@smithy/smithy-client": "^4.10.1", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-Kw2J+KzYm9C9Z9nY6+W0tEnoZOofstVCMTshli9jhQbQCy64rueGfKzPfuFBnVUqZD9JobxTh2DzHmPkp/Va/Q=="],
+
+ "@smithy/util-endpoints": ["@smithy/util-endpoints@3.2.6", "", { "dependencies": { "@smithy/node-config-provider": "^4.3.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-v60VNM2+mPvgHCBXEfMCYrQ0RepP6u6xvbAkMenfe4Mi872CqNkJzgcnQL837e8NdeDxBgrWQRTluKq5Lqdhfg=="],
+
+ "@smithy/util-hex-encoding": ["@smithy/util-hex-encoding@4.2.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw=="],
+
+ "@smithy/util-middleware": ["@smithy/util-middleware@4.2.6", "", { "dependencies": { "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-qrvXUkxBSAFomM3/OEMuDVwjh4wtqK8D2uDZPShzIqOylPst6gor2Cdp6+XrH4dyksAWq/bE2aSDYBTTnj0Rxg=="],
+
+ "@smithy/util-retry": ["@smithy/util-retry@4.2.6", "", { "dependencies": { "@smithy/service-error-classification": "^4.2.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-x7CeDQLPQ9cb6xN7fRJEjlP9NyGW/YeXWc4j/RUhg4I+H60F0PEeRc2c/z3rm9zmsdiMFzpV/rT+4UHW6KM1SA=="],
+
+ "@smithy/util-stream": ["@smithy/util-stream@4.5.7", "", { "dependencies": { "@smithy/fetch-http-handler": "^5.3.7", "@smithy/node-http-handler": "^4.4.6", "@smithy/types": "^4.10.0", "@smithy/util-base64": "^4.3.0", "@smithy/util-buffer-from": "^4.2.0", "@smithy/util-hex-encoding": "^4.2.0", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-Uuy4S5Aj4oF6k1z+i2OtIBJUns4mlg29Ph4S+CqjR+f4XXpSFVgTCYLzMszHJTicYDBxKFtwq2/QSEDSS5l02A=="],
+
+ "@smithy/util-uri-escape": ["@smithy/util-uri-escape@4.2.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA=="],
+
+ "@smithy/util-utf8": ["@smithy/util-utf8@4.2.0", "", { "dependencies": { "@smithy/util-buffer-from": "^4.2.0", "tslib": "^2.6.2" } }, "sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw=="],
+
+ "@smithy/util-waiter": ["@smithy/util-waiter@4.2.6", "", { "dependencies": { "@smithy/abort-controller": "^4.2.6", "@smithy/types": "^4.10.0", "tslib": "^2.6.2" } }, "sha512-xU9HwUSik9UUCJmm530yvBy0AwlQFICveKmqvaaTukKkXEAhyiBdHtSrhPrH3rH+uz0ykyaE3LdgsX86C6mDCQ=="],
+
+ "@smithy/uuid": ["@smithy/uuid@1.1.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw=="],
+
+ "@testcontainers/redis": ["@testcontainers/redis@11.10.0", "", { "dependencies": { "testcontainers": "^11.10.0" } }, "sha512-w/Hnv1IH8jJ4wjIgpSzoll1KABz2L28+i6JAZVSZuSzQPqeTeFa3mZHnRcdKJggjEIMDwpFlqjGXYRYKNAk0Fw=="],
+
+ "@tootallnate/once": ["@tootallnate/once@2.0.0", "", {}, "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="],
+
+ "@types/caseless": ["@types/caseless@0.12.5", "", {}, "sha512-hWtVTC2q7hc7xZ/RLbxapMvDMgUnDvKvMOpKal4DrMyfGBUfB1oKaZlIRr6mJL+If3bAP6sV/QneGzF6tJjZDg=="],
+
+ "@types/chai": ["@types/chai@5.2.3", "", { "dependencies": { "@types/deep-eql": "*", "assertion-error": "^2.0.1" } }, "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA=="],
+
+ "@types/deep-eql": ["@types/deep-eql@4.0.2", "", {}, "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw=="],
+
+ "@types/docker-modem": ["@types/docker-modem@3.0.6", "", { "dependencies": { "@types/node": "*", "@types/ssh2": "*" } }, "sha512-yKpAGEuKRSS8wwx0joknWxsmLha78wNMe9R2S3UNsVOkZded8UqOrV8KoeDXoXsjndxwyF3eIhyClGbO1SEhEg=="],
+
+ "@types/dockerode": ["@types/dockerode@3.3.47", "", { "dependencies": { "@types/docker-modem": "*", "@types/node": "*", "@types/ssh2": "*" } }, "sha512-ShM1mz7rCjdssXt7Xz0u1/R2BJC7piWa3SJpUBiVjCf2A3XNn4cP6pUVaD8bLanpPVVn4IKzJuw3dOvkJ8IbYw=="],
+
+ "@types/estree": ["@types/estree@1.0.8", "", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="],
+
+ "@types/js-yaml": ["@types/js-yaml@4.0.9", "", {}, "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg=="],
+
+ "@types/json-schema": ["@types/json-schema@7.0.15", "", {}, "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="],
+
+ "@types/mime": ["@types/mime@3.0.4", "", {}, "sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw=="],
+
+ "@types/minimist": ["@types/minimist@1.2.5", "", {}, "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag=="],
+
+ "@types/needle": ["@types/needle@3.3.0", "", { "dependencies": { "@types/node": "*" } }, "sha512-UFIuc1gdyzAqeVUYpSL+cliw2MmU/ZUhVZKE7Zo4wPbgc8hbljeKSnn6ls6iG8r5jpegPXLUIhJ+Wb2kLVs8cg=="],
+
+ "@types/node": ["@types/node@20.19.27", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-N2clP5pJhB2YnZJ3PIHFk5RkygRX5WO/5f0WC08tp0wd+sv0rsJk3MqWn3CbNmT2J505a5336jaQj4ph1AdMug=="],
+
+ "@types/normalize-package-data": ["@types/normalize-package-data@2.4.4", "", {}, "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA=="],
+
+ "@types/pako": ["@types/pako@2.0.4", "", {}, "sha512-VWDCbrLeVXJM9fihYodcLiIv0ku+AlOa/TQ1SvYOaBuyrSKgEcro95LJyIsJ4vSo6BXIxOKxiJAat04CmST9Fw=="],
+
+ "@types/probe-image-size": ["@types/probe-image-size@7.2.5", "", { "dependencies": { "@types/needle": "*", "@types/node": "*" } }, "sha512-9Bg6d/GNnjmhMMxadDstwrSlquuuLf0jQuPszbU6n3QUfybif3V/ryD3J2i9iaiC5JB/FU/8E41n88SM/UB+Tg=="],
+
+ "@types/raf": ["@types/raf@3.4.3", "", {}, "sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw=="],
+
+ "@types/request": ["@types/request@2.48.13", "", { "dependencies": { "@types/caseless": "*", "@types/node": "*", "@types/tough-cookie": "*", "form-data": "^2.5.5" } }, "sha512-FGJ6udDNUCjd19pp0Q3iTiDkwhYup7J8hpMW9c4k53NrccQFFWKRho6hvtPPEhnXWKvukfwAlB6DbDz4yhH5Gg=="],
+
+ "@types/resolve": ["@types/resolve@1.20.2", "", {}, "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q=="],
+
+ "@types/ssh2": ["@types/ssh2@1.15.5", "", { "dependencies": { "@types/node": "^18.11.18" } }, "sha512-N1ASjp/nXH3ovBHddRJpli4ozpk6UdDYIX4RJWFa9L1YKnzdhTlVmiGHm4DZnj/jLbqZpes4aeR30EFGQtvhQQ=="],
+
+ "@types/ssh2-streams": ["@types/ssh2-streams@0.1.13", "", { "dependencies": { "@types/node": "*" } }, "sha512-faHyY3brO9oLEA0QlcO8N2wT7R0+1sHWZvQ+y3rMLwdY1ZyS1z0W3t65j9PqT4HmQ6ALzNe7RZlNuCNE0wBSWA=="],
+
+ "@types/tough-cookie": ["@types/tough-cookie@4.0.5", "", {}, "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA=="],
+
+ "@types/trusted-types": ["@types/trusted-types@2.0.7", "", {}, "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw=="],
+
+ "@types/uuid": ["@types/uuid@10.0.0", "", {}, "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ=="],
+
+ "@types/ws": ["@types/ws@8.18.1", "", { "dependencies": { "@types/node": "*" } }, "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg=="],
+
+ "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.50.0", "", { "dependencies": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.50.0", "@typescript-eslint/type-utils": "8.50.0", "@typescript-eslint/utils": "8.50.0", "@typescript-eslint/visitor-keys": "8.50.0", "ignore": "^7.0.0", "natural-compare": "^1.4.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.50.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-O7QnmOXYKVtPrfYzMolrCTfkezCJS9+ljLdKW/+DCvRsc3UAz+sbH6Xcsv7p30+0OwUbeWfUDAQE0vpabZ3QLg=="],
+
+ "@typescript-eslint/parser": ["@typescript-eslint/parser@8.50.0", "", { "dependencies": { "@typescript-eslint/scope-manager": "8.50.0", "@typescript-eslint/types": "8.50.0", "@typescript-eslint/typescript-estree": "8.50.0", "@typescript-eslint/visitor-keys": "8.50.0", "debug": "^4.3.4" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-6/cmF2piao+f6wSxUsJLZjck7OQsYyRtcOZS02k7XINSNlz93v6emM8WutDQSXnroG2xwYlEVHJI+cPA7CPM3Q=="],
+
+ "@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.50.0", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.50.0", "@typescript-eslint/types": "^8.50.0", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-Cg/nQcL1BcoTijEWyx4mkVC56r8dj44bFDvBdygifuS20f3OZCHmFbjF34DPSi07kwlFvqfv/xOLnJ5DquxSGQ=="],
+
+ "@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.50.0", "", { "dependencies": { "@typescript-eslint/types": "8.50.0", "@typescript-eslint/visitor-keys": "8.50.0" } }, "sha512-xCwfuCZjhIqy7+HKxBLrDVT5q/iq7XBVBXLn57RTIIpelLtEIZHXAF/Upa3+gaCpeV1NNS5Z9A+ID6jn50VD4A=="],
+
+ "@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.50.0", "", { "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-vxd3G/ybKTSlm31MOA96gqvrRGv9RJ7LGtZCn2Vrc5htA0zCDvcMqUkifcjrWNNKXHUU3WCkYOzzVSFBd0wa2w=="],
+
+ "@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.50.0", "", { "dependencies": { "@typescript-eslint/types": "8.50.0", "@typescript-eslint/typescript-estree": "8.50.0", "@typescript-eslint/utils": "8.50.0", "debug": "^4.3.4", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-7OciHT2lKCewR0mFoBrvZJ4AXTMe/sYOe87289WAViOocEmDjjv8MvIOT2XESuKj9jp8u3SZYUSh89QA4S1kQw=="],
+
+ "@typescript-eslint/types": ["@typescript-eslint/types@8.50.0", "", {}, "sha512-iX1mgmGrXdANhhITbpp2QQM2fGehBse9LbTf0sidWK6yg/NE+uhV5dfU1g6EYPlcReYmkE9QLPq/2irKAmtS9w=="],
+
+ "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.50.0", "", { "dependencies": { "@typescript-eslint/project-service": "8.50.0", "@typescript-eslint/tsconfig-utils": "8.50.0", "@typescript-eslint/types": "8.50.0", "@typescript-eslint/visitor-keys": "8.50.0", "debug": "^4.3.4", "minimatch": "^9.0.4", "semver": "^7.6.0", "tinyglobby": "^0.2.15", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-W7SVAGBR/IX7zm1t70Yujpbk+zdPq/u4soeFSknWFdXIFuWsBGBOUu/Tn/I6KHSKvSh91OiMuaSnYp3mtPt5IQ=="],
+
+ "@typescript-eslint/utils": ["@typescript-eslint/utils@8.50.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.50.0", "@typescript-eslint/types": "8.50.0", "@typescript-eslint/typescript-estree": "8.50.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-87KgUXET09CRjGCi2Ejxy3PULXna63/bMYv72tCAlDJC3Yqwln0HiFJ3VJMst2+mEtNtZu5oFvX4qJGjKsnAgg=="],
+
+ "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.50.0", "", { "dependencies": { "@typescript-eslint/types": "8.50.0", "eslint-visitor-keys": "^4.2.1" } }, "sha512-Xzmnb58+Db78gT/CCj/PVCvK+zxbnsw6F+O1oheYszJbBSdEjVhQi3C/Xttzxgi/GLmpvOggRs1RFpiJ8+c34Q=="],
+
+ "@typespec/ts-http-runtime": ["@typespec/ts-http-runtime@0.3.2", "", { "dependencies": { "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.0", "tslib": "^2.6.2" } }, "sha512-IlqQ/Gv22xUC1r/WQm4StLkYQmaaTsXAhUVsNE0+xiyf0yRFiH5++q78U3bw6bLKDCTmh0uqKB9eG9+Bt75Dkg=="],
+
+ "@vitest/coverage-v8": ["@vitest/coverage-v8@3.2.4", "", { "dependencies": { "@ampproject/remapping": "^2.3.0", "@bcoe/v8-coverage": "^1.0.2", "ast-v8-to-istanbul": "^0.3.3", "debug": "^4.4.1", "istanbul-lib-coverage": "^3.2.2", "istanbul-lib-report": "^3.0.1", "istanbul-lib-source-maps": "^5.0.6", "istanbul-reports": "^3.1.7", "magic-string": "^0.30.17", "magicast": "^0.3.5", "std-env": "^3.9.0", "test-exclude": "^7.0.1", "tinyrainbow": "^2.0.0" }, "peerDependencies": { "@vitest/browser": "3.2.4", "vitest": "3.2.4" }, "optionalPeers": ["@vitest/browser"] }, "sha512-EyF9SXU6kS5Ku/U82E259WSnvg6c8KTjppUncuNdm5QHpe17mwREHnjDzozC8x9MZ0xfBUFSaLkRv4TMA75ALQ=="],
+
+ "@vitest/expect": ["@vitest/expect@3.2.4", "", { "dependencies": { "@types/chai": "^5.2.2", "@vitest/spy": "3.2.4", "@vitest/utils": "3.2.4", "chai": "^5.2.0", "tinyrainbow": "^2.0.0" } }, "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig=="],
+
+ "@vitest/mocker": ["@vitest/mocker@3.2.4", "", { "dependencies": { "@vitest/spy": "3.2.4", "estree-walker": "^3.0.3", "magic-string": "^0.30.17" }, "peerDependencies": { "msw": "^2.4.9", "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" }, "optionalPeers": ["msw"] }, "sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ=="],
+
+ "@vitest/pretty-format": ["@vitest/pretty-format@3.2.4", "", { "dependencies": { "tinyrainbow": "^2.0.0" } }, "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA=="],
+
+ "@vitest/runner": ["@vitest/runner@3.2.4", "", { "dependencies": { "@vitest/utils": "3.2.4", "pathe": "^2.0.3", "strip-literal": "^3.0.0" } }, "sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ=="],
+
+ "@vitest/snapshot": ["@vitest/snapshot@3.2.4", "", { "dependencies": { "@vitest/pretty-format": "3.2.4", "magic-string": "^0.30.17", "pathe": "^2.0.3" } }, "sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ=="],
+
+ "@vitest/spy": ["@vitest/spy@3.2.4", "", { "dependencies": { "tinyspy": "^4.0.3" } }, "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw=="],
+
+ "@vitest/utils": ["@vitest/utils@3.2.4", "", { "dependencies": { "@vitest/pretty-format": "3.2.4", "loupe": "^3.1.4", "tinyrainbow": "^2.0.0" } }, "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA=="],
+
+ "@xmldom/xmldom": ["@xmldom/xmldom@0.8.11", "", {}, "sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw=="],
+
+ "@zxing/text-encoding": ["@zxing/text-encoding@0.9.0", "", {}, "sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA=="],
+
+ "JSONStream": ["JSONStream@1.3.5", "", { "dependencies": { "jsonparse": "^1.2.0", "through": ">=2.2.7 <3" }, "bin": "bin.js" }, "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ=="],
+
+ "abort-controller": ["abort-controller@3.0.0", "", { "dependencies": { "event-target-shim": "^5.0.0" } }, "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="],
+
+ "acorn": ["acorn@8.15.0", "", { "bin": "bin/acorn" }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
+
+ "acorn-jsx": ["acorn-jsx@5.3.2", "", { "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="],
+
+ "add-stream": ["add-stream@1.0.0", "", {}, "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ=="],
+
+ "adler-32": ["adler-32@1.3.1", "", {}, "sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A=="],
+
+ "agent-base": ["agent-base@7.1.4", "", {}, "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ=="],
+
+ "ajv": ["ajv@6.12.6", "", { "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="],
+
+ "ansi-align": ["ansi-align@3.0.1", "", { "dependencies": { "string-width": "^4.1.0" } }, "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w=="],
+
+ "ansi-regex": ["ansi-regex@6.2.2", "", {}, "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg=="],
+
+ "ansi-styles": ["ansi-styles@3.2.1", "", { "dependencies": { "color-convert": "^1.9.0" } }, "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="],
+
+ "archiver": ["archiver@7.0.1", "", { "dependencies": { "archiver-utils": "^5.0.2", "async": "^3.2.4", "buffer-crc32": "^1.0.0", "readable-stream": "^4.0.0", "readdir-glob": "^1.1.2", "tar-stream": "^3.0.0", "zip-stream": "^6.0.1" } }, "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ=="],
+
+ "archiver-utils": ["archiver-utils@5.0.2", "", { "dependencies": { "glob": "^10.0.0", "graceful-fs": "^4.2.0", "is-stream": "^2.0.1", "lazystream": "^1.0.0", "lodash": "^4.17.15", "normalize-path": "^3.0.0", "readable-stream": "^4.0.0" } }, "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA=="],
+
+ "argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="],
+
+ "array-ify": ["array-ify@1.0.0", "", {}, "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng=="],
+
+ "arrify": ["arrify@2.0.1", "", {}, "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug=="],
+
+ "asn1": ["asn1@0.2.6", "", { "dependencies": { "safer-buffer": "~2.1.0" } }, "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ=="],
+
+ "assertion-error": ["assertion-error@2.0.1", "", {}, "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA=="],
+
+ "ast-v8-to-istanbul": ["ast-v8-to-istanbul@0.3.9", "", { "dependencies": { "@jridgewell/trace-mapping": "^0.3.31", "estree-walker": "^3.0.3", "js-tokens": "^9.0.1" } }, "sha512-dSC6tJeOJxbZrPzPbv5mMd6CMiQ1ugaVXXPRad2fXUSsy1kstFn9XQWemV9VW7Y7kpxgQ/4WMoZfwdH8XSU48w=="],
+
+ "async": ["async@3.2.6", "", {}, "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA=="],
+
+ "async-lock": ["async-lock@1.4.1", "", {}, "sha512-Az2ZTpuytrtqENulXwO3GGv1Bztugx6TT37NIo7imr/Qo0gsYiGtSdBa2B6fsXhTpVZDNfu1Qn3pk531e3q+nQ=="],
+
+ "async-retry": ["async-retry@1.3.3", "", { "dependencies": { "retry": "0.13.1" } }, "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw=="],
+
+ "asynckit": ["asynckit@0.4.0", "", {}, "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="],
+
+ "available-typed-arrays": ["available-typed-arrays@1.0.7", "", { "dependencies": { "possible-typed-array-names": "^1.0.0" } }, "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ=="],
+
+ "b4a": ["b4a@1.7.3", "", { "peerDependencies": { "react-native-b4a": "*" }, "optionalPeers": ["react-native-b4a"] }, "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q=="],
+
+ "balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "bare-events": ["bare-events@2.8.2", "", { "peerDependencies": { "bare-abort-controller": "*" }, "optionalPeers": ["bare-abort-controller"] }, "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ=="],
+
+ "bare-fs": ["bare-fs@4.5.2", "", { "dependencies": { "bare-events": "^2.5.4", "bare-path": "^3.0.0", "bare-stream": "^2.6.4", "bare-url": "^2.2.2", "fast-fifo": "^1.3.2" }, "peerDependencies": { "bare-buffer": "*" }, "optionalPeers": ["bare-buffer"] }, "sha512-veTnRzkb6aPHOvSKIOy60KzURfBdUflr5VReI+NSaPL6xf+XLdONQgZgpYvUuZLVQ8dCqxpBAudaOM1+KpAUxw=="],
+
+ "bare-os": ["bare-os@3.6.2", "", {}, "sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A=="],
+
+ "bare-path": ["bare-path@3.0.0", "", { "dependencies": { "bare-os": "^3.0.1" } }, "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw=="],
+
+ "bare-stream": ["bare-stream@2.7.0", "", { "dependencies": { "streamx": "^2.21.0" }, "peerDependencies": { "bare-buffer": "*", "bare-events": "*" }, "optionalPeers": ["bare-buffer"] }, "sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A=="],
+
+ "bare-url": ["bare-url@2.3.2", "", { "dependencies": { "bare-path": "^3.0.0" } }, "sha512-ZMq4gd9ngV5aTMa5p9+UfY0b3skwhHELaDkhEHetMdX0LRkW9kzaym4oo/Eh+Ghm0CCDuMTsRIGM/ytUc1ZYmw=="],
+
+ "base64-arraybuffer": ["base64-arraybuffer@1.0.2", "", {}, "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ=="],
+
+ "base64-js": ["base64-js@1.5.1", "", {}, "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="],
+
+ "bcrypt-pbkdf": ["bcrypt-pbkdf@1.0.2", "", { "dependencies": { "tweetnacl": "^0.14.3" } }, "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w=="],
+
+ "bignumber.js": ["bignumber.js@9.3.1", "", {}, "sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ=="],
+
+ "bl": ["bl@4.1.0", "", { "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" } }, "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="],
+
+ "block-stream2": ["block-stream2@2.1.0", "", { "dependencies": { "readable-stream": "^3.4.0" } }, "sha512-suhjmLI57Ewpmq00qaygS8UgEq2ly2PCItenIyhMqVjo4t4pGzqMvfgJuX8iWTeSDdfSSqS6j38fL4ToNL7Pfg=="],
+
+ "bluebird": ["bluebird@3.4.7", "", {}, "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA=="],
+
+ "bowser": ["bowser@2.13.1", "", {}, "sha512-OHawaAbjwx6rqICCKgSG0SAnT05bzd7ppyKLVUITZpANBaaMFBAsaNkto3LoQ31tyFP5kNujE8Cdx85G9VzOkw=="],
+
+ "boxen": ["boxen@8.0.1", "", { "dependencies": { "ansi-align": "^3.0.1", "camelcase": "^8.0.0", "chalk": "^5.3.0", "cli-boxes": "^3.0.0", "string-width": "^7.2.0", "type-fest": "^4.21.0", "widest-line": "^5.0.0", "wrap-ansi": "^9.0.0" } }, "sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw=="],
+
+ "brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "browser-or-node": ["browser-or-node@2.1.1", "", {}, "sha512-8CVjaLJGuSKMVTxJ2DpBl5XnlNDiT4cQFeuCJJrvJmts9YrTZDizTX7PjC2s6W4x+MBGZeEY6dGMrF04/6Hgqg=="],
+
+ "buffer": ["buffer@6.0.3", "", { "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.2.1" } }, "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA=="],
+
+ "buffer-crc32": ["buffer-crc32@1.0.0", "", {}, "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w=="],
+
+ "buffer-equal-constant-time": ["buffer-equal-constant-time@1.0.1", "", {}, "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA=="],
+
+ "buffer-from": ["buffer-from@1.1.2", "", {}, "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="],
+
+ "buildcheck": ["buildcheck@0.0.7", "", {}, "sha512-lHblz4ahamxpTmnsk+MNTRWsjYKv965MwOrSJyeD588rR3Jcu7swE+0wN5F+PbL5cjgu/9ObkhfzEPuofEMwLA=="],
+
+ "bundle-name": ["bundle-name@4.1.0", "", { "dependencies": { "run-applescript": "^7.0.0" } }, "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q=="],
+
+ "byline": ["byline@5.0.0", "", {}, "sha512-s6webAy+R4SR8XVuJWt2V2rGvhnrhxN+9S15GNuTK3wKPOXFF6RNc+8ug2XhH+2s4f+uudG4kUVYmYOQWL2g0Q=="],
+
+ "cac": ["cac@6.7.14", "", {}, "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ=="],
+
+ "call-bind": ["call-bind@1.0.8", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.2" } }, "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww=="],
+
+ "call-bind-apply-helpers": ["call-bind-apply-helpers@1.0.2", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="],
+
+ "call-bound": ["call-bound@1.0.4", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "get-intrinsic": "^1.3.0" } }, "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg=="],
+
+ "callsites": ["callsites@3.1.0", "", {}, "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="],
+
+ "camelcase": ["camelcase@8.0.0", "", {}, "sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA=="],
+
+ "camelcase-keys": ["camelcase-keys@6.2.2", "", { "dependencies": { "camelcase": "^5.3.1", "map-obj": "^4.0.0", "quick-lru": "^4.0.1" } }, "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg=="],
+
+ "canvg": ["canvg@3.0.11", "", { "dependencies": { "@babel/runtime": "^7.12.5", "@types/raf": "^3.4.0", "core-js": "^3.8.3", "raf": "^3.4.1", "regenerator-runtime": "^0.13.7", "rgbcolor": "^1.0.1", "stackblur-canvas": "^2.0.0", "svg-pathdata": "^6.0.3" } }, "sha512-5ON+q7jCTgMp9cjpu4Jo6XbvfYwSB2Ow3kzHKfIyJfaCAOHLbdKPQqGKgfED/R5B+3TFFfe8pegYA+b423SRyA=="],
+
+ "cfb": ["cfb@1.2.2", "", { "dependencies": { "adler-32": "~1.3.0", "crc-32": "~1.2.0" } }, "sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA=="],
+
+ "chai": ["chai@5.3.3", "", { "dependencies": { "assertion-error": "^2.0.1", "check-error": "^2.1.1", "deep-eql": "^5.0.1", "loupe": "^3.1.0", "pathval": "^2.0.0" } }, "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw=="],
+
+ "chalk": ["chalk@5.6.2", "", {}, "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA=="],
+
+ "chardet": ["chardet@2.1.1", "", {}, "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ=="],
+
+ "check-error": ["check-error@2.1.1", "", {}, "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw=="],
+
+ "chownr": ["chownr@1.1.4", "", {}, "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="],
+
+ "cli-boxes": ["cli-boxes@3.0.0", "", {}, "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g=="],
+
+ "cli-cursor": ["cli-cursor@5.0.0", "", { "dependencies": { "restore-cursor": "^5.0.0" } }, "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw=="],
+
+ "cli-spinners": ["cli-spinners@2.9.2", "", {}, "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg=="],
+
+ "cli-table3": ["cli-table3@0.6.5", "", { "dependencies": { "string-width": "^4.2.0" }, "optionalDependencies": { "@colors/colors": "1.5.0" } }, "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ=="],
+
+ "cli-width": ["cli-width@4.1.0", "", {}, "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ=="],
+
+ "cliui": ["cliui@7.0.4", "", { "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }, "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="],
+
+ "codepage": ["codepage@1.15.0", "", {}, "sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA=="],
+
+ "color-convert": ["color-convert@1.9.3", "", { "dependencies": { "color-name": "1.1.3" } }, "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="],
+
+ "color-name": ["color-name@1.1.3", "", {}, "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="],
+
+ "combined-stream": ["combined-stream@1.0.8", "", { "dependencies": { "delayed-stream": "~1.0.0" } }, "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="],
+
+ "commander": ["commander@11.1.0", "", {}, "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ=="],
+
+ "commondir": ["commondir@1.0.1", "", {}, "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="],
+
+ "compare-func": ["compare-func@2.0.0", "", { "dependencies": { "array-ify": "^1.0.0", "dot-prop": "^5.1.0" } }, "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA=="],
+
+ "compress-commons": ["compress-commons@6.0.2", "", { "dependencies": { "crc-32": "^1.2.0", "crc32-stream": "^6.0.0", "is-stream": "^2.0.1", "normalize-path": "^3.0.0", "readable-stream": "^4.0.0" } }, "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg=="],
+
+ "concat-map": ["concat-map@0.0.1", "", {}, "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="],
+
+ "concat-stream": ["concat-stream@2.0.0", "", { "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A=="],
+
+ "conventional-changelog": ["conventional-changelog@3.1.25", "", { "dependencies": { "conventional-changelog-angular": "^5.0.12", "conventional-changelog-atom": "^2.0.8", "conventional-changelog-codemirror": "^2.0.8", "conventional-changelog-conventionalcommits": "^4.5.0", "conventional-changelog-core": "^4.2.1", "conventional-changelog-ember": "^2.0.9", "conventional-changelog-eslint": "^3.0.9", "conventional-changelog-express": "^2.0.6", "conventional-changelog-jquery": "^3.0.11", "conventional-changelog-jshint": "^2.0.9", "conventional-changelog-preset-loader": "^2.3.4" } }, "sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ=="],
+
+ "conventional-changelog-angular": ["conventional-changelog-angular@5.0.13", "", { "dependencies": { "compare-func": "^2.0.0", "q": "^1.5.1" } }, "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA=="],
+
+ "conventional-changelog-atom": ["conventional-changelog-atom@2.0.8", "", { "dependencies": { "q": "^1.5.1" } }, "sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw=="],
+
+ "conventional-changelog-codemirror": ["conventional-changelog-codemirror@2.0.8", "", { "dependencies": { "q": "^1.5.1" } }, "sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw=="],
+
+ "conventional-changelog-config-spec": ["conventional-changelog-config-spec@2.1.0", "", {}, "sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ=="],
+
+ "conventional-changelog-conventionalcommits": ["conventional-changelog-conventionalcommits@4.6.3", "", { "dependencies": { "compare-func": "^2.0.0", "lodash": "^4.17.15", "q": "^1.5.1" } }, "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g=="],
+
+ "conventional-changelog-core": ["conventional-changelog-core@4.2.4", "", { "dependencies": { "add-stream": "^1.0.0", "conventional-changelog-writer": "^5.0.0", "conventional-commits-parser": "^3.2.0", "dateformat": "^3.0.0", "get-pkg-repo": "^4.0.0", "git-raw-commits": "^2.0.8", "git-remote-origin-url": "^2.0.0", "git-semver-tags": "^4.1.1", "lodash": "^4.17.15", "normalize-package-data": "^3.0.0", "q": "^1.5.1", "read-pkg": "^3.0.0", "read-pkg-up": "^3.0.0", "through2": "^4.0.0" } }, "sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg=="],
+
+ "conventional-changelog-ember": ["conventional-changelog-ember@2.0.9", "", { "dependencies": { "q": "^1.5.1" } }, "sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A=="],
+
+ "conventional-changelog-eslint": ["conventional-changelog-eslint@3.0.9", "", { "dependencies": { "q": "^1.5.1" } }, "sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA=="],
+
+ "conventional-changelog-express": ["conventional-changelog-express@2.0.6", "", { "dependencies": { "q": "^1.5.1" } }, "sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ=="],
+
+ "conventional-changelog-jquery": ["conventional-changelog-jquery@3.0.11", "", { "dependencies": { "q": "^1.5.1" } }, "sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw=="],
+
+ "conventional-changelog-jshint": ["conventional-changelog-jshint@2.0.9", "", { "dependencies": { "compare-func": "^2.0.0", "q": "^1.5.1" } }, "sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA=="],
+
+ "conventional-changelog-preset-loader": ["conventional-changelog-preset-loader@2.3.4", "", {}, "sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g=="],
+
+ "conventional-changelog-writer": ["conventional-changelog-writer@5.0.1", "", { "dependencies": { "conventional-commits-filter": "^2.0.7", "dateformat": "^3.0.0", "handlebars": "^4.7.7", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.15", "meow": "^8.0.0", "semver": "^6.0.0", "split": "^1.0.0", "through2": "^4.0.0" }, "bin": "cli.js" }, "sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ=="],
+
+ "conventional-commits-filter": ["conventional-commits-filter@2.0.7", "", { "dependencies": { "lodash.ismatch": "^4.4.0", "modify-values": "^1.0.0" } }, "sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA=="],
+
+ "conventional-commits-parser": ["conventional-commits-parser@3.2.4", "", { "dependencies": { "JSONStream": "^1.0.4", "is-text-path": "^1.0.1", "lodash": "^4.17.15", "meow": "^8.0.0", "split2": "^3.0.0", "through2": "^4.0.0" }, "bin": "cli.js" }, "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q=="],
+
+ "conventional-recommended-bump": ["conventional-recommended-bump@6.1.0", "", { "dependencies": { "concat-stream": "^2.0.0", "conventional-changelog-preset-loader": "^2.3.4", "conventional-commits-filter": "^2.0.7", "conventional-commits-parser": "^3.2.0", "git-raw-commits": "^2.0.8", "git-semver-tags": "^4.1.1", "meow": "^8.0.0", "q": "^1.5.1" }, "bin": "cli.js" }, "sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw=="],
+
+ "core-js": ["core-js@3.47.0", "", {}, "sha512-c3Q2VVkGAUyupsjRnaNX6u8Dq2vAdzm9iuPj5FW0fRxzlxgq9Q39MDq10IvmQSpLgHQNyQzQmOo6bgGHmH3NNg=="],
+
+ "core-util-is": ["core-util-is@1.0.3", "", {}, "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="],
+
+ "cpu-features": ["cpu-features@0.0.10", "", { "dependencies": { "buildcheck": "~0.0.6", "nan": "^2.19.0" } }, "sha512-9IkYqtX3YHPCzoVg1Py+o9057a3i0fp7S530UWokCSaFVTc7CwXPRiOjRjBQQ18ZCNafx78YfnG+HALxtVmOGA=="],
+
+ "crc-32": ["crc-32@1.2.2", "", { "bin": { "crc32": "bin/crc32.njs" } }, "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ=="],
+
+ "crc32-stream": ["crc32-stream@6.0.0", "", { "dependencies": { "crc-32": "^1.2.0", "readable-stream": "^4.0.0" } }, "sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g=="],
+
+ "cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="],
+
+ "css-line-break": ["css-line-break@2.1.0", "", { "dependencies": { "utrie": "^1.0.2" } }, "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w=="],
+
+ "csv-parse": ["csv-parse@6.1.0", "", {}, "sha512-CEE+jwpgLn+MmtCpVcPtiCZpVtB6Z2OKPTr34pycYYoL7sxdOkXDdQ4lRiw6ioC0q6BLqhc6cKweCVvral8yhw=="],
+
+ "dargs": ["dargs@7.0.0", "", {}, "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg=="],
+
+ "dateformat": ["dateformat@3.0.3", "", {}, "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q=="],
+
+ "debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="],
+
+ "decamelize": ["decamelize@1.2.0", "", {}, "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="],
+
+ "decamelize-keys": ["decamelize-keys@1.1.1", "", { "dependencies": { "decamelize": "^1.1.0", "map-obj": "^1.0.0" } }, "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg=="],
+
+ "decode-uri-component": ["decode-uri-component@0.2.2", "", {}, "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ=="],
+
+ "deep-eql": ["deep-eql@5.0.2", "", {}, "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q=="],
+
+ "deep-is": ["deep-is@0.1.4", "", {}, "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="],
+
+ "deepmerge": ["deepmerge@4.3.1", "", {}, "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A=="],
+
+ "default-browser": ["default-browser@5.4.0", "", { "dependencies": { "bundle-name": "^4.1.0", "default-browser-id": "^5.0.0" } }, "sha512-XDuvSq38Hr1MdN47EDvYtx3U0MTqpCEn+F6ft8z2vYDzMrvQhVp0ui9oQdqW3MvK3vqUETglt1tVGgjLuJ5izg=="],
+
+ "default-browser-id": ["default-browser-id@5.0.1", "", {}, "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q=="],
+
+ "define-data-property": ["define-data-property@1.1.4", "", { "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "gopd": "^1.0.1" } }, "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A=="],
+
+ "define-lazy-prop": ["define-lazy-prop@3.0.0", "", {}, "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg=="],
+
+ "delayed-stream": ["delayed-stream@1.0.0", "", {}, "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="],
+
+ "detect-indent": ["detect-indent@6.1.0", "", {}, "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA=="],
+
+ "detect-newline": ["detect-newline@3.1.0", "", {}, "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA=="],
+
+ "dingbat-to-unicode": ["dingbat-to-unicode@1.0.1", "", {}, "sha512-98l0sW87ZT58pU4i61wa2OHwxbiYSbuxsCBozaVnYX2iCnr3bLM3fIes1/ej7h1YdOKuKt/MLs706TVnALA65w=="],
+
+ "docker-compose": ["docker-compose@1.3.0", "", { "dependencies": { "yaml": "^2.2.2" } }, "sha512-7Gevk/5eGD50+eMD+XDnFnOrruFkL0kSd7jEG4cjmqweDSUhB7i0g8is/nBdVpl+Bx338SqIB2GLKm32M+Vs6g=="],
+
+ "docker-modem": ["docker-modem@5.0.6", "", { "dependencies": { "debug": "^4.1.1", "readable-stream": "^3.5.0", "split-ca": "^1.0.1", "ssh2": "^1.15.0" } }, "sha512-ens7BiayssQz/uAxGzH8zGXCtiV24rRWXdjNha5V4zSOcxmAZsfGVm/PPFbwQdqEkDnhG+SyR9E3zSHUbOKXBQ=="],
+
+ "dockerode": ["dockerode@4.0.9", "", { "dependencies": { "@balena/dockerignore": "^1.0.2", "@grpc/grpc-js": "^1.11.1", "@grpc/proto-loader": "^0.7.13", "docker-modem": "^5.0.6", "protobufjs": "^7.3.2", "tar-fs": "^2.1.4", "uuid": "^10.0.0" } }, "sha512-iND4mcOWhPaCNh54WmK/KoSb35AFqPAUWFMffTQcp52uQt36b5uNwEJTSXntJZBbeGad72Crbi/hvDIv6us/6Q=="],
+
+ "dompurify": ["dompurify@3.3.1", "", { "optionalDependencies": { "@types/trusted-types": "^2.0.7" } }, "sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q=="],
+
+ "dot-prop": ["dot-prop@5.3.0", "", { "dependencies": { "is-obj": "^2.0.0" } }, "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q=="],
+
+ "dotgitignore": ["dotgitignore@2.1.0", "", { "dependencies": { "find-up": "^3.0.0", "minimatch": "^3.0.4" } }, "sha512-sCm11ak2oY6DglEPpCB8TixLjWAxd3kJTs6UIcSasNYxXdFPV+YKlye92c8H4kKFqV5qYMIh7d+cYecEg0dIkA=="],
+
+ "duck": ["duck@0.1.12", "", { "dependencies": { "underscore": "^1.13.1" } }, "sha512-wkctla1O6VfP89gQ+J/yDesM0S7B7XLXjKGzXxMDVFg7uEn706niAtyYovKbyq1oT9YwDcly721/iUWoc8MVRg=="],
+
+ "dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="],
+
+ "duplexify": ["duplexify@4.1.3", "", { "dependencies": { "end-of-stream": "^1.4.1", "inherits": "^2.0.3", "readable-stream": "^3.1.1", "stream-shift": "^1.0.2" } }, "sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA=="],
+
+ "eastasianwidth": ["eastasianwidth@0.2.0", "", {}, "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="],
+
+ "ecdsa-sig-formatter": ["ecdsa-sig-formatter@1.0.11", "", { "dependencies": { "safe-buffer": "^5.0.1" } }, "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="],
+
+ "emoji-regex": ["emoji-regex@10.6.0", "", {}, "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A=="],
+
+ "end-of-stream": ["end-of-stream@1.4.5", "", { "dependencies": { "once": "^1.4.0" } }, "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg=="],
+
+ "error-ex": ["error-ex@1.3.4", "", { "dependencies": { "is-arrayish": "^0.2.1" } }, "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ=="],
+
+ "es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="],
+
+ "es-errors": ["es-errors@1.3.0", "", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="],
+
+ "es-module-lexer": ["es-module-lexer@1.7.0", "", {}, "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA=="],
+
+ "es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="],
+
+ "es-set-tostringtag": ["es-set-tostringtag@2.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA=="],
+
+ "esbuild": ["esbuild@0.27.2", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.27.2", "@esbuild/android-arm": "0.27.2", "@esbuild/android-arm64": "0.27.2", "@esbuild/android-x64": "0.27.2", "@esbuild/darwin-arm64": "0.27.2", "@esbuild/darwin-x64": "0.27.2", "@esbuild/freebsd-arm64": "0.27.2", "@esbuild/freebsd-x64": "0.27.2", "@esbuild/linux-arm": "0.27.2", "@esbuild/linux-arm64": "0.27.2", "@esbuild/linux-ia32": "0.27.2", "@esbuild/linux-loong64": "0.27.2", "@esbuild/linux-mips64el": "0.27.2", "@esbuild/linux-ppc64": "0.27.2", "@esbuild/linux-riscv64": "0.27.2", "@esbuild/linux-s390x": "0.27.2", "@esbuild/linux-x64": "0.27.2", "@esbuild/netbsd-arm64": "0.27.2", "@esbuild/netbsd-x64": "0.27.2", "@esbuild/openbsd-arm64": "0.27.2", "@esbuild/openbsd-x64": "0.27.2", "@esbuild/openharmony-arm64": "0.27.2", "@esbuild/sunos-x64": "0.27.2", "@esbuild/win32-arm64": "0.27.2", "@esbuild/win32-ia32": "0.27.2", "@esbuild/win32-x64": "0.27.2" }, "bin": "bin/esbuild" }, "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw=="],
+
+ "escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="],
+
+ "escape-string-regexp": ["escape-string-regexp@4.0.0", "", {}, "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="],
+
+ "eslint": ["eslint@9.39.2", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.21.1", "@eslint/config-helpers": "^0.4.2", "@eslint/core": "^0.17.0", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "9.39.2", "@eslint/plugin-kit": "^0.4.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": "bin/eslint.js" }, "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw=="],
+
+ "eslint-scope": ["eslint-scope@8.4.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="],
+
+ "eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="],
+
+ "espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="],
+
+ "esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="],
+
+ "esrecurse": ["esrecurse@4.3.0", "", { "dependencies": { "estraverse": "^5.2.0" } }, "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="],
+
+ "estraverse": ["estraverse@5.3.0", "", {}, "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="],
+
+ "estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="],
+
+ "esutils": ["esutils@2.0.3", "", {}, "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="],
+
+ "event-target-shim": ["event-target-shim@5.0.1", "", {}, "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="],
+
+ "eventemitter3": ["eventemitter3@5.0.1", "", {}, "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA=="],
+
+ "events": ["events@3.3.0", "", {}, "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="],
+
+ "events-universal": ["events-universal@1.0.1", "", { "dependencies": { "bare-events": "^2.7.0" } }, "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw=="],
+
+ "exifr": ["exifr@7.1.3", "", {}, "sha512-g/aje2noHivrRSLbAUtBPWFbxKdKhgj/xr1vATDdUXPOFYJlQ62Ft0oy+72V6XLIpDJfHs6gXLbBLAolqOXYRw=="],
+
+ "expect-type": ["expect-type@1.3.0", "", {}, "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA=="],
+
+ "extend": ["extend@3.0.2", "", {}, "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="],
+
+ "fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="],
+
+ "fast-fifo": ["fast-fifo@1.3.2", "", {}, "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ=="],
+
+ "fast-json-stable-stringify": ["fast-json-stable-stringify@2.1.0", "", {}, "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="],
+
+ "fast-levenshtein": ["fast-levenshtein@2.0.6", "", {}, "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="],
+
+ "fast-png": ["fast-png@6.4.0", "", { "dependencies": { "@types/pako": "^2.0.3", "iobuffer": "^5.3.2", "pako": "^2.1.0" } }, "sha512-kAqZq1TlgBjZcLr5mcN6NP5Rv4V2f22z00c3g8vRrwkcqjerx7BEhPbOnWCPqaHUl2XWQBJQvOT/FQhdMT7X/Q=="],
+
+ "fast-xml-parser": ["fast-xml-parser@4.5.3", "", { "dependencies": { "strnum": "^1.1.1" }, "bin": { "fxparser": "src/cli/cli.js" } }, "sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig=="],
+
+ "fdir": ["fdir@6.5.0", "", { "peerDependencies": { "picomatch": "^3 || ^4" } }, "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg=="],
+
+ "fflate": ["fflate@0.8.2", "", {}, "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A=="],
+
+ "figures": ["figures@3.2.0", "", { "dependencies": { "escape-string-regexp": "^1.0.5" } }, "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg=="],
+
+ "file-entry-cache": ["file-entry-cache@8.0.0", "", { "dependencies": { "flat-cache": "^4.0.0" } }, "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ=="],
+
+ "filter-obj": ["filter-obj@1.1.0", "", {}, "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ=="],
+
+ "find-up": ["find-up@5.0.0", "", { "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" } }, "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="],
+
+ "flat-cache": ["flat-cache@4.0.1", "", { "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" } }, "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw=="],
+
+ "flatbuffers": ["flatbuffers@25.9.23", "", {}, "sha512-MI1qs7Lo4Syw0EOzUl0xjs2lsoeqFku44KpngfIduHBYvzm8h2+7K8YMQh1JtVVVrUvhLpNwqVi4DERegUJhPQ=="],
+
+ "flatted": ["flatted@3.3.3", "", {}, "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg=="],
+
+ "for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="],
+
+ "foreground-child": ["foreground-child@3.3.1", "", { "dependencies": { "cross-spawn": "^7.0.6", "signal-exit": "^4.0.1" } }, "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw=="],
+
+ "form-data": ["form-data@2.5.5", "", { "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "es-set-tostringtag": "^2.1.0", "hasown": "^2.0.2", "mime-types": "^2.1.35", "safe-buffer": "^5.2.1" } }, "sha512-jqdObeR2rxZZbPSGL+3VckHMYtu+f9//KXBsVny6JSX/pa38Fy+bGjuG8eW/H6USNQWhLi8Num++cU2yOCNz4A=="],
+
+ "frac": ["frac@1.1.2", "", {}, "sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA=="],
+
+ "fs-constants": ["fs-constants@1.0.0", "", {}, "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="],
+
+ "fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="],
+
+ "function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="],
+
+ "gaxios": ["gaxios@6.7.1", "", { "dependencies": { "extend": "^3.0.2", "https-proxy-agent": "^7.0.1", "is-stream": "^2.0.0", "node-fetch": "^2.6.9", "uuid": "^9.0.1" } }, "sha512-LDODD4TMYx7XXdpwxAVRAIAuB0bzv0s+ywFonY46k126qzQHT9ygyoa9tncmOiQmmDrik65UYsEkv3lbfqQ3yQ=="],
+
+ "gcp-metadata": ["gcp-metadata@6.1.1", "", { "dependencies": { "gaxios": "^6.1.1", "google-logging-utils": "^0.0.2", "json-bigint": "^1.0.0" } }, "sha512-a4tiq7E0/5fTjxPAaH4jpjkSv/uCaU2p5KC6HVGrvl0cDjA8iBZv4vv1gyzlmK0ZUKqwpOyQMKzZQe3lTit77A=="],
+
+ "generator-function": ["generator-function@2.0.1", "", {}, "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g=="],
+
+ "get-caller-file": ["get-caller-file@2.0.5", "", {}, "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="],
+
+ "get-east-asian-width": ["get-east-asian-width@1.4.0", "", {}, "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q=="],
+
+ "get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="],
+
+ "get-pkg-repo": ["get-pkg-repo@4.2.1", "", { "dependencies": { "@hutson/parse-repository-url": "^3.0.0", "hosted-git-info": "^4.0.0", "through2": "^2.0.0", "yargs": "^16.2.0" }, "bin": "src/cli.js" }, "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA=="],
+
+ "get-port": ["get-port@7.1.0", "", {}, "sha512-QB9NKEeDg3xxVwCCwJQ9+xycaz6pBB6iQ76wiWMl1927n0Kir6alPiP+yuiICLLU4jpMe08dXfpebuQppFA2zw=="],
+
+ "get-proto": ["get-proto@1.0.1", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="],
+
+ "get-tsconfig": ["get-tsconfig@4.13.0", "", { "dependencies": { "resolve-pkg-maps": "^1.0.0" } }, "sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ=="],
+
+ "git-raw-commits": ["git-raw-commits@2.0.11", "", { "dependencies": { "dargs": "^7.0.0", "lodash": "^4.17.15", "meow": "^8.0.0", "split2": "^3.0.0", "through2": "^4.0.0" }, "bin": "cli.js" }, "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A=="],
+
+ "git-remote-origin-url": ["git-remote-origin-url@2.0.0", "", { "dependencies": { "gitconfiglocal": "^1.0.0", "pify": "^2.3.0" } }, "sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw=="],
+
+ "git-semver-tags": ["git-semver-tags@4.1.1", "", { "dependencies": { "meow": "^8.0.0", "semver": "^6.0.0" }, "bin": "cli.js" }, "sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA=="],
+
+ "gitconfiglocal": ["gitconfiglocal@1.0.0", "", { "dependencies": { "ini": "^1.3.2" } }, "sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ=="],
+
+ "glob": ["glob@10.5.0", "", { "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" }, "bin": "dist/esm/bin.mjs" }, "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg=="],
+
+ "glob-parent": ["glob-parent@6.0.2", "", { "dependencies": { "is-glob": "^4.0.3" } }, "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="],
+
+ "globals": ["globals@14.0.0", "", {}, "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ=="],
+
+ "google-auth-library": ["google-auth-library@9.15.1", "", { "dependencies": { "base64-js": "^1.3.0", "ecdsa-sig-formatter": "^1.0.11", "gaxios": "^6.1.1", "gcp-metadata": "^6.1.0", "gtoken": "^7.0.0", "jws": "^4.0.0" } }, "sha512-Jb6Z0+nvECVz+2lzSMt9u98UsoakXxA2HGHMCxh+so3n90XgYWkq5dur19JAJV7ONiJY22yBTyJB1TSkvPq9Ng=="],
+
+ "google-logging-utils": ["google-logging-utils@0.0.2", "", {}, "sha512-NEgUnEcBiP5HrPzufUkBzJOD/Sxsco3rLNo1F1TNf7ieU8ryUzBhqba8r756CjLX7rn3fHl6iLEwPYuqpoKgQQ=="],
+
+ "gopd": ["gopd@1.2.0", "", {}, "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="],
+
+ "graceful-fs": ["graceful-fs@4.2.11", "", {}, "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="],
+
+ "gtoken": ["gtoken@7.1.0", "", { "dependencies": { "gaxios": "^6.0.0", "jws": "^4.0.0" } }, "sha512-pCcEwRi+TKpMlxAQObHDQ56KawURgyAf6jtIY046fJ5tIv3zDe/LEIubckAO8fj6JnAxLdmWkUfNyulQ2iKdEw=="],
+
+ "guid-typescript": ["guid-typescript@1.0.9", "", {}, "sha512-Y8T4vYhEfwJOTbouREvG+3XDsjr8E3kIr7uf+JZ0BYloFsttiHU0WfvANVsR7TxNUJa/WpCnw/Ino/p+DeBhBQ=="],
+
+ "handlebars": ["handlebars@4.7.8", "", { "dependencies": { "minimist": "^1.2.5", "neo-async": "^2.6.2", "source-map": "^0.6.1", "wordwrap": "^1.0.0" }, "optionalDependencies": { "uglify-js": "^3.1.4" }, "bin": "bin/handlebars" }, "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ=="],
+
+ "hard-rejection": ["hard-rejection@2.1.0", "", {}, "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA=="],
+
+ "has-flag": ["has-flag@4.0.0", "", {}, "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="],
+
+ "has-property-descriptors": ["has-property-descriptors@1.0.2", "", { "dependencies": { "es-define-property": "^1.0.0" } }, "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg=="],
+
+ "has-symbols": ["has-symbols@1.1.0", "", {}, "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="],
+
+ "has-tostringtag": ["has-tostringtag@1.0.2", "", { "dependencies": { "has-symbols": "^1.0.3" } }, "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw=="],
+
+ "hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="],
+
+ "hosted-git-info": ["hosted-git-info@4.1.0", "", { "dependencies": { "lru-cache": "^6.0.0" } }, "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA=="],
+
+ "html-entities": ["html-entities@2.6.0", "", {}, "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ=="],
+
+ "html-escaper": ["html-escaper@2.0.2", "", {}, "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="],
+
+ "html2canvas": ["html2canvas@1.4.1", "", { "dependencies": { "css-line-break": "^2.1.0", "text-segmentation": "^1.0.3" } }, "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA=="],
+
+ "http-proxy-agent": ["http-proxy-agent@5.0.0", "", { "dependencies": { "@tootallnate/once": "2", "agent-base": "6", "debug": "4" } }, "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w=="],
+
+ "https-proxy-agent": ["https-proxy-agent@7.0.6", "", { "dependencies": { "agent-base": "^7.1.2", "debug": "4" } }, "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw=="],
+
+ "iconv-lite": ["iconv-lite@0.4.24", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3" } }, "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="],
+
+ "ieee754": ["ieee754@1.2.1", "", {}, "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="],
+
+ "ignore": ["ignore@7.0.5", "", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="],
+
+ "immediate": ["immediate@3.0.6", "", {}, "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ=="],
+
+ "import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="],
+
+ "imurmurhash": ["imurmurhash@0.1.4", "", {}, "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="],
+
+ "indent-string": ["indent-string@4.0.0", "", {}, "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="],
+
+ "inherits": ["inherits@2.0.4", "", {}, "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="],
+
+ "ini": ["ini@1.3.8", "", {}, "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="],
+
+ "inquirer": ["inquirer@12.11.1", "", { "dependencies": { "@inquirer/ansi": "^1.0.2", "@inquirer/core": "^10.3.2", "@inquirer/prompts": "^7.10.1", "@inquirer/type": "^3.0.10", "mute-stream": "^2.0.0", "run-async": "^4.0.6", "rxjs": "^7.8.2" }, "peerDependencies": { "@types/node": ">=18" } }, "sha512-9VF7mrY+3OmsAfjH3yKz/pLbJ5z22E23hENKw3/LNSaA/sAt3v49bDRY+Ygct1xwuKT+U+cBfTzjCPySna69Qw=="],
+
+ "iobuffer": ["iobuffer@5.4.0", "", {}, "sha512-DRebOWuqDvxunfkNJAlc3IzWIPD5xVxwUNbHr7xKB8E6aLJxIPfNX3CoMJghcFjpv6RWQsrcJbghtEwSPoJqMA=="],
+
+ "ipaddr.js": ["ipaddr.js@2.3.0", "", {}, "sha512-Zv/pA+ciVFbCSBBjGfaKUya/CcGmUHzTydLMaTwrUUEM2DIEO3iZvueGxmacvmN50fGpGVKeTXpb2LcYQxeVdg=="],
+
+ "is-arguments": ["is-arguments@1.2.0", "", { "dependencies": { "call-bound": "^1.0.2", "has-tostringtag": "^1.0.2" } }, "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA=="],
+
+ "is-arrayish": ["is-arrayish@0.2.1", "", {}, "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="],
+
+ "is-callable": ["is-callable@1.2.7", "", {}, "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="],
+
+ "is-core-module": ["is-core-module@2.16.1", "", { "dependencies": { "hasown": "^2.0.2" } }, "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w=="],
+
+ "is-docker": ["is-docker@3.0.0", "", { "bin": "cli.js" }, "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ=="],
+
+ "is-extglob": ["is-extglob@2.1.1", "", {}, "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="],
+
+ "is-fullwidth-code-point": ["is-fullwidth-code-point@3.0.0", "", {}, "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="],
+
+ "is-generator-function": ["is-generator-function@1.1.2", "", { "dependencies": { "call-bound": "^1.0.4", "generator-function": "^2.0.0", "get-proto": "^1.0.1", "has-tostringtag": "^1.0.2", "safe-regex-test": "^1.1.0" } }, "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA=="],
+
+ "is-glob": ["is-glob@4.0.3", "", { "dependencies": { "is-extglob": "^2.1.1" } }, "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="],
+
+ "is-inside-container": ["is-inside-container@1.0.0", "", { "dependencies": { "is-docker": "^3.0.0" }, "bin": "cli.js" }, "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA=="],
+
+ "is-interactive": ["is-interactive@2.0.0", "", {}, "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ=="],
+
+ "is-module": ["is-module@1.0.0", "", {}, "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g=="],
+
+ "is-obj": ["is-obj@2.0.0", "", {}, "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="],
+
+ "is-plain-obj": ["is-plain-obj@1.1.0", "", {}, "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg=="],
+
+ "is-reference": ["is-reference@1.2.1", "", { "dependencies": { "@types/estree": "*" } }, "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ=="],
+
+ "is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="],
+
+ "is-stream": ["is-stream@2.0.1", "", {}, "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="],
+
+ "is-text-path": ["is-text-path@1.0.1", "", { "dependencies": { "text-extensions": "^1.0.0" } }, "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w=="],
+
+ "is-typed-array": ["is-typed-array@1.1.15", "", { "dependencies": { "which-typed-array": "^1.1.16" } }, "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ=="],
+
+ "is-unicode-supported": ["is-unicode-supported@2.1.0", "", {}, "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ=="],
+
+ "is-wsl": ["is-wsl@3.1.0", "", { "dependencies": { "is-inside-container": "^1.0.0" } }, "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw=="],
+
+ "isarray": ["isarray@1.0.0", "", {}, "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="],
+
+ "isexe": ["isexe@2.0.0", "", {}, "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="],
+
+ "istanbul-lib-coverage": ["istanbul-lib-coverage@3.2.2", "", {}, "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg=="],
+
+ "istanbul-lib-report": ["istanbul-lib-report@3.0.1", "", { "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^4.0.0", "supports-color": "^7.1.0" } }, "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw=="],
+
+ "istanbul-lib-source-maps": ["istanbul-lib-source-maps@5.0.6", "", { "dependencies": { "@jridgewell/trace-mapping": "^0.3.23", "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0" } }, "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A=="],
+
+ "istanbul-reports": ["istanbul-reports@3.2.0", "", { "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" } }, "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA=="],
+
+ "jackspeak": ["jackspeak@3.4.3", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw=="],
+
+ "js-tokens": ["js-tokens@9.0.1", "", {}, "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ=="],
+
+ "js-yaml": ["js-yaml@4.1.1", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": "bin/js-yaml.js" }, "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA=="],
+
+ "json-bigint": ["json-bigint@1.0.0", "", { "dependencies": { "bignumber.js": "^9.0.0" } }, "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ=="],
+
+ "json-buffer": ["json-buffer@3.0.1", "", {}, "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="],
+
+ "json-parse-better-errors": ["json-parse-better-errors@1.0.2", "", {}, "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="],
+
+ "json-parse-even-better-errors": ["json-parse-even-better-errors@2.3.1", "", {}, "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="],
+
+ "json-schema-traverse": ["json-schema-traverse@0.4.1", "", {}, "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="],
+
+ "json-stable-stringify-without-jsonify": ["json-stable-stringify-without-jsonify@1.0.1", "", {}, "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="],
+
+ "json-stringify-safe": ["json-stringify-safe@5.0.1", "", {}, "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="],
+
+ "jsonparse": ["jsonparse@1.3.1", "", {}, "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg=="],
+
+ "jsonwebtoken": ["jsonwebtoken@9.0.3", "", { "dependencies": { "jws": "^4.0.1", "lodash.includes": "^4.3.0", "lodash.isboolean": "^3.0.3", "lodash.isinteger": "^4.0.4", "lodash.isnumber": "^3.0.3", "lodash.isplainobject": "^4.0.6", "lodash.isstring": "^4.0.1", "lodash.once": "^4.0.0", "ms": "^2.1.1", "semver": "^7.5.4" } }, "sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g=="],
+
+ "jspdf": ["jspdf@3.0.4", "", { "dependencies": { "@babel/runtime": "^7.28.4", "fast-png": "^6.2.0", "fflate": "^0.8.1" }, "optionalDependencies": { "canvg": "^3.0.11", "core-js": "^3.6.0", "dompurify": "^3.2.4", "html2canvas": "^1.0.0-rc.5" } }, "sha512-dc6oQ8y37rRcHn316s4ngz/nOjayLF/FFxBF4V9zamQKRqXxyiH1zagkCdktdWhtoQId5K20xt1lB90XzkB+hQ=="],
+
+ "jszip": ["jszip@3.10.1", "", { "dependencies": { "lie": "~3.3.0", "pako": "~1.0.2", "readable-stream": "~2.3.6", "setimmediate": "^1.0.5" } }, "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g=="],
+
+ "jwa": ["jwa@2.0.1", "", { "dependencies": { "buffer-equal-constant-time": "^1.0.1", "ecdsa-sig-formatter": "1.0.11", "safe-buffer": "^5.0.1" } }, "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg=="],
+
+ "jws": ["jws@4.0.1", "", { "dependencies": { "jwa": "^2.0.1", "safe-buffer": "^5.0.1" } }, "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA=="],
+
+ "keyv": ["keyv@4.5.4", "", { "dependencies": { "json-buffer": "3.0.1" } }, "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw=="],
+
+ "kind-of": ["kind-of@6.0.3", "", {}, "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="],
+
+ "kleur": ["kleur@3.0.3", "", {}, "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="],
+
+ "lazystream": ["lazystream@1.0.1", "", { "dependencies": { "readable-stream": "^2.0.5" } }, "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw=="],
+
+ "levn": ["levn@0.4.1", "", { "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" } }, "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="],
+
+ "lie": ["lie@3.3.0", "", { "dependencies": { "immediate": "~3.0.5" } }, "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ=="],
+
+ "lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="],
+
+ "load-json-file": ["load-json-file@4.0.0", "", { "dependencies": { "graceful-fs": "^4.1.2", "parse-json": "^4.0.0", "pify": "^3.0.0", "strip-bom": "^3.0.0" } }, "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw=="],
+
+ "locate-path": ["locate-path@6.0.0", "", { "dependencies": { "p-locate": "^5.0.0" } }, "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="],
+
+ "lodash": ["lodash@4.17.21", "", {}, "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="],
+
+ "lodash.camelcase": ["lodash.camelcase@4.3.0", "", {}, "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA=="],
+
+ "lodash.includes": ["lodash.includes@4.3.0", "", {}, "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w=="],
+
+ "lodash.isboolean": ["lodash.isboolean@3.0.3", "", {}, "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="],
+
+ "lodash.isinteger": ["lodash.isinteger@4.0.4", "", {}, "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA=="],
+
+ "lodash.ismatch": ["lodash.ismatch@4.4.0", "", {}, "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g=="],
+
+ "lodash.isnumber": ["lodash.isnumber@3.0.3", "", {}, "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw=="],
+
+ "lodash.isplainobject": ["lodash.isplainobject@4.0.6", "", {}, "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="],
+
+ "lodash.isstring": ["lodash.isstring@4.0.1", "", {}, "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw=="],
+
+ "lodash.merge": ["lodash.merge@4.6.2", "", {}, "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="],
+
+ "lodash.once": ["lodash.once@4.1.1", "", {}, "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg=="],
+
+ "log-symbols": ["log-symbols@6.0.0", "", { "dependencies": { "chalk": "^5.3.0", "is-unicode-supported": "^1.3.0" } }, "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw=="],
+
+ "long": ["long@5.3.2", "", {}, "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA=="],
+
+ "lop": ["lop@0.4.2", "", { "dependencies": { "duck": "^0.1.12", "option": "~0.2.1", "underscore": "^1.13.1" } }, "sha512-RefILVDQ4DKoRZsJ4Pj22TxE3omDO47yFpkIBoDKzkqPRISs5U1cnAdg/5583YPkWPaLIYHOKRMQSvjFsO26cw=="],
+
+ "loupe": ["loupe@3.2.1", "", {}, "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ=="],
+
+ "lru-cache": ["lru-cache@10.4.3", "", {}, "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="],
+
+ "magic-string": ["magic-string@0.30.21", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.5" } }, "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ=="],
+
+ "magicast": ["magicast@0.3.5", "", { "dependencies": { "@babel/parser": "^7.25.4", "@babel/types": "^7.25.4", "source-map-js": "^1.2.0" } }, "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ=="],
+
+ "make-dir": ["make-dir@4.0.0", "", { "dependencies": { "semver": "^7.5.3" } }, "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw=="],
+
+ "mammoth": ["mammoth@1.11.0", "", { "dependencies": { "@xmldom/xmldom": "^0.8.6", "argparse": "~1.0.3", "base64-js": "^1.5.1", "bluebird": "~3.4.0", "dingbat-to-unicode": "^1.0.1", "jszip": "^3.7.1", "lop": "^0.4.2", "path-is-absolute": "^1.0.0", "underscore": "^1.13.1", "xmlbuilder": "^10.0.0" }, "bin": "bin/mammoth" }, "sha512-BcEqqY/BOwIcI1iR5tqyVlqc3KIaMRa4egSoK83YAVrBf6+yqdAAbtUcFDCWX8Zef8/fgNZ6rl4VUv+vVX8ddQ=="],
+
+ "map-obj": ["map-obj@4.3.0", "", {}, "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ=="],
+
+ "math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="],
+
+ "meow": ["meow@8.1.2", "", { "dependencies": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", "decamelize-keys": "^1.1.0", "hard-rejection": "^2.1.0", "minimist-options": "4.1.0", "normalize-package-data": "^3.0.0", "read-pkg-up": "^7.0.1", "redent": "^3.0.0", "trim-newlines": "^3.0.0", "type-fest": "^0.18.0", "yargs-parser": "^20.2.3" } }, "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q=="],
+
+ "mime": ["mime@4.1.0", "", { "bin": "bin/cli.js" }, "sha512-X5ju04+cAzsojXKes0B/S4tcYtFAJ6tTMuSPBEn9CPGlrWr8Fiw7qYeLT0XyH80HSoAoqWCaz+MWKh22P7G1cw=="],
+
+ "mime-db": ["mime-db@1.52.0", "", {}, "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="],
+
+ "mime-types": ["mime-types@2.1.35", "", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="],
+
+ "mimic-function": ["mimic-function@5.0.1", "", {}, "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA=="],
+
+ "min-indent": ["min-indent@1.0.1", "", {}, "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg=="],
+
+ "minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="],
+
+ "minimist": ["minimist@1.2.8", "", {}, "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="],
+
+ "minimist-options": ["minimist-options@4.1.0", "", { "dependencies": { "arrify": "^1.0.1", "is-plain-obj": "^1.1.0", "kind-of": "^6.0.3" } }, "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A=="],
+
+ "minio": ["minio@8.0.6", "", { "dependencies": { "async": "^3.2.4", "block-stream2": "^2.1.0", "browser-or-node": "^2.1.1", "buffer-crc32": "^1.0.0", "eventemitter3": "^5.0.1", "fast-xml-parser": "^4.4.1", "ipaddr.js": "^2.0.1", "lodash": "^4.17.21", "mime-types": "^2.1.35", "query-string": "^7.1.3", "stream-json": "^1.8.0", "through2": "^4.0.2", "web-encoding": "^1.1.5", "xml2js": "^0.5.0 || ^0.6.2" } }, "sha512-sOeh2/b/XprRmEtYsnNRFtOqNRTPDvYtMWh+spWlfsuCV/+IdxNeKVUMKLqI7b5Dr07ZqCPuaRGU/rB9pZYVdQ=="],
+
+ "minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="],
+
+ "mkdirp": ["mkdirp@1.0.4", "", { "bin": "bin/cmd.js" }, "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="],
+
+ "mkdirp-classic": ["mkdirp-classic@0.5.3", "", {}, "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="],
+
+ "modify-values": ["modify-values@1.0.1", "", {}, "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw=="],
+
+ "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="],
+
+ "mute-stream": ["mute-stream@2.0.0", "", {}, "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA=="],
+
+ "nan": ["nan@2.24.0", "", {}, "sha512-Vpf9qnVW1RaDkoNKFUvfxqAbtI8ncb8OJlqZ9wwpXzWPEsvsB1nvdUi6oYrHIkQ1Y/tMDnr1h4nczS0VB9Xykg=="],
+
+ "nanoid": ["nanoid@3.3.11", "", { "bin": "bin/nanoid.cjs" }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="],
+
+ "natural-compare": ["natural-compare@1.4.0", "", {}, "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="],
+
+ "needle": ["needle@2.9.1", "", { "dependencies": { "debug": "^3.2.6", "iconv-lite": "^0.4.4", "sax": "^1.2.4" }, "bin": "bin/needle" }, "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ=="],
+
+ "neo-async": ["neo-async@2.6.2", "", {}, "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="],
+
+ "node-fetch": ["node-fetch@2.7.0", "", { "dependencies": { "whatwg-url": "^5.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "optionalPeers": ["encoding"] }, "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A=="],
+
+ "normalize-package-data": ["normalize-package-data@3.0.3", "", { "dependencies": { "hosted-git-info": "^4.0.1", "is-core-module": "^2.5.0", "semver": "^7.3.4", "validate-npm-package-license": "^3.0.1" } }, "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA=="],
+
+ "normalize-path": ["normalize-path@3.0.0", "", {}, "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="],
+
+ "once": ["once@1.4.0", "", { "dependencies": { "wrappy": "1" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="],
+
+ "onetime": ["onetime@7.0.0", "", { "dependencies": { "mimic-function": "^5.0.0" } }, "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ=="],
+
+ "onnxruntime-common": ["onnxruntime-common@1.23.2", "", {}, "sha512-5LFsC9Dukzp2WV6kNHYLNzp8sT6V02IubLCbzw2Xd6X5GOlr65gAX6xiJwyi2URJol/s71gaQLC5F2C25AAR2w=="],
+
+ "onnxruntime-web": ["onnxruntime-web@1.23.2", "", { "dependencies": { "flatbuffers": "^25.1.24", "guid-typescript": "^1.0.9", "long": "^5.2.3", "onnxruntime-common": "1.23.2", "platform": "^1.3.6", "protobufjs": "^7.2.4" } }, "sha512-T09JUtMn+CZLk3mFwqiH0lgQf+4S7+oYHHtk6uhaYAAJI95bTcKi5bOOZYwORXfS/RLZCjDDEXGWIuOCAFlEjg=="],
+
+ "open": ["open@10.2.0", "", { "dependencies": { "default-browser": "^5.2.1", "define-lazy-prop": "^3.0.0", "is-inside-container": "^1.0.0", "wsl-utils": "^0.1.0" } }, "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA=="],
+
+ "option": ["option@0.2.4", "", {}, "sha512-pkEqbDyl8ou5cpq+VsnQbe/WlEy5qS7xPzMS1U55OCG9KPvwFD46zDbxQIj3egJSFc3D+XhYOPUzz49zQAVy7A=="],
+
+ "optionator": ["optionator@0.9.4", "", { "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.5" } }, "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g=="],
+
+ "ora": ["ora@8.2.0", "", { "dependencies": { "chalk": "^5.3.0", "cli-cursor": "^5.0.0", "cli-spinners": "^2.9.2", "is-interactive": "^2.0.0", "is-unicode-supported": "^2.0.0", "log-symbols": "^6.0.0", "stdin-discarder": "^0.2.2", "string-width": "^7.2.0", "strip-ansi": "^7.1.0" } }, "sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw=="],
+
+ "p-limit": ["p-limit@3.1.0", "", { "dependencies": { "yocto-queue": "^0.1.0" } }, "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="],
+
+ "p-locate": ["p-locate@5.0.0", "", { "dependencies": { "p-limit": "^3.0.2" } }, "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="],
+
+ "p-try": ["p-try@2.2.0", "", {}, "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="],
+
+ "package-json-from-dist": ["package-json-from-dist@1.0.1", "", {}, "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="],
+
+ "pako": ["pako@2.1.0", "", {}, "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug=="],
+
+ "parent-module": ["parent-module@1.0.1", "", { "dependencies": { "callsites": "^3.0.0" } }, "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="],
+
+ "parse-json": ["parse-json@4.0.0", "", { "dependencies": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" } }, "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw=="],
+
+ "path-exists": ["path-exists@4.0.0", "", {}, "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="],
+
+ "path-is-absolute": ["path-is-absolute@1.0.1", "", {}, "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="],
+
+ "path-key": ["path-key@3.1.1", "", {}, "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="],
+
+ "path-parse": ["path-parse@1.0.7", "", {}, "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="],
+
+ "path-scurry": ["path-scurry@1.11.1", "", { "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" } }, "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA=="],
+
+ "path-type": ["path-type@3.0.0", "", { "dependencies": { "pify": "^3.0.0" } }, "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg=="],
+
+ "pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="],
+
+ "pathval": ["pathval@2.0.1", "", {}, "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ=="],
+
+ "pdfjs-dist": ["pdfjs-dist@4.10.38", "", { "optionalDependencies": { "@napi-rs/canvas": "^0.1.65" } }, "sha512-/Y3fcFrXEAsMjJXeL9J8+ZG9U01LbuWaYypvDW2ycW1jL269L3js3DVBjDJ0Up9Np1uqDXsDrRihHANhZOlwdQ=="],
+
+ "performance-now": ["performance-now@2.1.0", "", {}, "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow=="],
+
+ "picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="],
+
+ "picomatch": ["picomatch@4.0.3", "", {}, "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q=="],
+
+ "pify": ["pify@2.3.0", "", {}, "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="],
+
+ "platform": ["platform@1.3.6", "", {}, "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg=="],
+
+ "possible-typed-array-names": ["possible-typed-array-names@1.1.0", "", {}, "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg=="],
+
+ "postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="],
+
+ "prelude-ls": ["prelude-ls@1.2.1", "", {}, "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="],
+
+ "probe-image-size": ["probe-image-size@7.2.3", "", { "dependencies": { "lodash.merge": "^4.6.2", "needle": "^2.5.2", "stream-parser": "~0.3.1" } }, "sha512-HubhG4Rb2UH8YtV4ba0Vp5bQ7L78RTONYu/ujmCu5nBI8wGv24s4E9xSKBi0N1MowRpxk76pFCpJtW0KPzOK0w=="],
+
+ "process": ["process@0.11.10", "", {}, "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="],
+
+ "process-nextick-args": ["process-nextick-args@2.0.1", "", {}, "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="],
+
+ "prompts": ["prompts@2.4.2", "", { "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" } }, "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q=="],
+
+ "proper-lockfile": ["proper-lockfile@4.1.2", "", { "dependencies": { "graceful-fs": "^4.2.4", "retry": "^0.12.0", "signal-exit": "^3.0.2" } }, "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA=="],
+
+ "properties-reader": ["properties-reader@2.3.0", "", { "dependencies": { "mkdirp": "^1.0.4" } }, "sha512-z597WicA7nDZxK12kZqHr2TcvwNU1GCfA5UwfDY/HDp3hXPoPlb5rlEx9bwGTiJnc0OqbBTkU975jDToth8Gxw=="],
+
+ "protobufjs": ["protobufjs@7.5.4", "", { "dependencies": { "@protobufjs/aspromise": "^1.1.2", "@protobufjs/base64": "^1.1.2", "@protobufjs/codegen": "^2.0.4", "@protobufjs/eventemitter": "^1.1.0", "@protobufjs/fetch": "^1.1.0", "@protobufjs/float": "^1.0.2", "@protobufjs/inquire": "^1.1.0", "@protobufjs/path": "^1.1.2", "@protobufjs/pool": "^1.1.0", "@protobufjs/utf8": "^1.1.0", "@types/node": ">=13.7.0", "long": "^5.0.0" } }, "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg=="],
+
+ "pump": ["pump@3.0.3", "", { "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA=="],
+
+ "punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="],
+
+ "q": ["q@1.5.1", "", {}, "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw=="],
+
+ "query-string": ["query-string@7.1.3", "", { "dependencies": { "decode-uri-component": "^0.2.2", "filter-obj": "^1.1.0", "split-on-first": "^1.0.0", "strict-uri-encode": "^2.0.0" } }, "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg=="],
+
+ "quick-lru": ["quick-lru@4.0.1", "", {}, "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g=="],
+
+ "raf": ["raf@3.4.1", "", { "dependencies": { "performance-now": "^2.1.0" } }, "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA=="],
+
+ "randombytes": ["randombytes@2.1.0", "", { "dependencies": { "safe-buffer": "^5.1.0" } }, "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="],
+
+ "read-pkg": ["read-pkg@3.0.0", "", { "dependencies": { "load-json-file": "^4.0.0", "normalize-package-data": "^2.3.2", "path-type": "^3.0.0" } }, "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA=="],
+
+ "read-pkg-up": ["read-pkg-up@3.0.0", "", { "dependencies": { "find-up": "^2.0.0", "read-pkg": "^3.0.0" } }, "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw=="],
+
+ "readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="],
+
+ "readdir-glob": ["readdir-glob@1.1.3", "", { "dependencies": { "minimatch": "^5.1.0" } }, "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA=="],
+
+ "redent": ["redent@3.0.0", "", { "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" } }, "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg=="],
+
+ "regenerator-runtime": ["regenerator-runtime@0.13.11", "", {}, "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="],
+
+ "require-directory": ["require-directory@2.1.1", "", {}, "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="],
+
+ "resolve": ["resolve@1.22.11", "", { "dependencies": { "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": "bin/resolve" }, "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ=="],
+
+ "resolve-from": ["resolve-from@4.0.0", "", {}, "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="],
+
+ "resolve-pkg-maps": ["resolve-pkg-maps@1.0.0", "", {}, "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw=="],
+
+ "restore-cursor": ["restore-cursor@5.1.0", "", { "dependencies": { "onetime": "^7.0.0", "signal-exit": "^4.1.0" } }, "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA=="],
+
+ "retry": ["retry@0.12.0", "", {}, "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow=="],
+
+ "retry-request": ["retry-request@7.0.2", "", { "dependencies": { "@types/request": "^2.48.8", "extend": "^3.0.2", "teeny-request": "^9.0.0" } }, "sha512-dUOvLMJ0/JJYEn8NrpOaGNE7X3vpI5XlZS/u0ANjqtcZVKnIxP7IgCFwrKTxENw29emmwug53awKtaMm4i9g5w=="],
+
+ "rgbcolor": ["rgbcolor@1.0.1", "", {}, "sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw=="],
+
+ "roaring-wasm": ["roaring-wasm@1.1.0", "", {}, "sha512-mhNqA0BOqIW7k4ZYSYe3kCyvn5T3VWT+2661G7fZH0C6XcVkGoTDLAqne7b47xCNQE6LhuYviMKBnzbOiBXkdw=="],
+
+ "rollup": ["rollup@4.53.5", "", { "dependencies": { "@types/estree": "1.0.8" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.53.5", "@rollup/rollup-android-arm64": "4.53.5", "@rollup/rollup-darwin-arm64": "4.53.5", "@rollup/rollup-darwin-x64": "4.53.5", "@rollup/rollup-freebsd-arm64": "4.53.5", "@rollup/rollup-freebsd-x64": "4.53.5", "@rollup/rollup-linux-arm-gnueabihf": "4.53.5", "@rollup/rollup-linux-arm-musleabihf": "4.53.5", "@rollup/rollup-linux-arm64-gnu": "4.53.5", "@rollup/rollup-linux-arm64-musl": "4.53.5", "@rollup/rollup-linux-loong64-gnu": "4.53.5", "@rollup/rollup-linux-ppc64-gnu": "4.53.5", "@rollup/rollup-linux-riscv64-gnu": "4.53.5", "@rollup/rollup-linux-riscv64-musl": "4.53.5", "@rollup/rollup-linux-s390x-gnu": "4.53.5", "@rollup/rollup-linux-x64-gnu": "4.53.5", "@rollup/rollup-linux-x64-musl": "4.53.5", "@rollup/rollup-openharmony-arm64": "4.53.5", "@rollup/rollup-win32-arm64-msvc": "4.53.5", "@rollup/rollup-win32-ia32-msvc": "4.53.5", "@rollup/rollup-win32-x64-gnu": "4.53.5", "@rollup/rollup-win32-x64-msvc": "4.53.5", "fsevents": "~2.3.2" }, "bin": "dist/bin/rollup" }, "sha512-iTNAbFSlRpcHeeWu73ywU/8KuU/LZmNCSxp6fjQkJBD3ivUb8tpDrXhIxEzA05HlYMEwmtaUnb3RP+YNv162OQ=="],
+
+ "run-applescript": ["run-applescript@7.1.0", "", {}, "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q=="],
+
+ "run-async": ["run-async@4.0.6", "", {}, "sha512-IoDlSLTs3Yq593mb3ZoKWKXMNu3UpObxhgA/Xuid5p4bbfi2jdY1Hj0m1K+0/tEuQTxIGMhQDqGjKb7RuxGpAQ=="],
+
+ "rxjs": ["rxjs@7.8.2", "", { "dependencies": { "tslib": "^2.1.0" } }, "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA=="],
+
+ "safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="],
+
+ "safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="],
+
+ "safer-buffer": ["safer-buffer@2.1.2", "", {}, "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="],
+
+ "sax": ["sax@1.4.3", "", {}, "sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ=="],
+
+ "semver": ["semver@7.7.3", "", { "bin": "bin/semver.js" }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
+
+ "serialize-javascript": ["serialize-javascript@6.0.2", "", { "dependencies": { "randombytes": "^2.1.0" } }, "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g=="],
+
+ "set-function-length": ["set-function-length@1.2.2", "", { "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2" } }, "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg=="],
+
+ "setimmediate": ["setimmediate@1.0.5", "", {}, "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="],
+
+ "shebang-command": ["shebang-command@2.0.0", "", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="],
+
+ "shebang-regex": ["shebang-regex@3.0.0", "", {}, "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="],
+
+ "siginfo": ["siginfo@2.0.0", "", {}, "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g=="],
+
+ "signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="],
+
+ "sisteransi": ["sisteransi@1.0.5", "", {}, "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="],
+
+ "smob": ["smob@1.5.0", "", {}, "sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig=="],
+
+ "source-map": ["source-map@0.6.1", "", {}, "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="],
+
+ "source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="],
+
+ "source-map-support": ["source-map-support@0.5.21", "", { "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w=="],
+
+ "spdx-correct": ["spdx-correct@3.2.0", "", { "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA=="],
+
+ "spdx-exceptions": ["spdx-exceptions@2.5.0", "", {}, "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w=="],
+
+ "spdx-expression-parse": ["spdx-expression-parse@3.0.1", "", { "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="],
+
+ "spdx-license-ids": ["spdx-license-ids@3.0.22", "", {}, "sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ=="],
+
+ "split": ["split@1.0.1", "", { "dependencies": { "through": "2" } }, "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg=="],
+
+ "split-ca": ["split-ca@1.0.1", "", {}, "sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ=="],
+
+ "split-on-first": ["split-on-first@1.1.0", "", {}, "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw=="],
+
+ "split2": ["split2@3.2.2", "", { "dependencies": { "readable-stream": "^3.0.0" } }, "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg=="],
+
+ "sprintf-js": ["sprintf-js@1.0.3", "", {}, "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="],
+
+ "ssf": ["ssf@0.11.2", "", { "dependencies": { "frac": "~1.1.2" } }, "sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g=="],
+
+ "ssh-remote-port-forward": ["ssh-remote-port-forward@1.0.4", "", { "dependencies": { "@types/ssh2": "^0.5.48", "ssh2": "^1.4.0" } }, "sha512-x0LV1eVDwjf1gmG7TTnfqIzf+3VPRz7vrNIjX6oYLbeCrf/PeVY6hkT68Mg+q02qXxQhrLjB0jfgvhevoCRmLQ=="],
+
+ "ssh2": ["ssh2@1.17.0", "", { "dependencies": { "asn1": "^0.2.6", "bcrypt-pbkdf": "^1.0.2" }, "optionalDependencies": { "cpu-features": "~0.0.10", "nan": "^2.23.0" } }, "sha512-wPldCk3asibAjQ/kziWQQt1Wh3PgDFpC0XpwclzKcdT1vql6KeYxf5LIt4nlFkUeR8WuphYMKqUA56X4rjbfgQ=="],
+
+ "stackback": ["stackback@0.0.2", "", {}, "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw=="],
+
+ "stackblur-canvas": ["stackblur-canvas@2.7.0", "", {}, "sha512-yf7OENo23AGJhBriGx0QivY5JP6Y1HbrrDI6WLt6C5auYZXlQrheoY8hD4ibekFKz1HOfE48Ww8kMWMnJD/zcQ=="],
+
+ "standard-version": ["standard-version@9.5.0", "", { "dependencies": { "chalk": "^2.4.2", "conventional-changelog": "3.1.25", "conventional-changelog-config-spec": "2.1.0", "conventional-changelog-conventionalcommits": "4.6.3", "conventional-recommended-bump": "6.1.0", "detect-indent": "^6.0.0", "detect-newline": "^3.1.0", "dotgitignore": "^2.1.0", "figures": "^3.1.0", "find-up": "^5.0.0", "git-semver-tags": "^4.0.0", "semver": "^7.1.1", "stringify-package": "^1.0.1", "yargs": "^16.0.0" }, "bin": "bin/cli.js" }, "sha512-3zWJ/mmZQsOaO+fOlsa0+QK90pwhNd042qEcw6hKFNoLFs7peGyvPffpEBbK/DSGPbyOvli0mUIFv5A4qTjh2Q=="],
+
+ "std-env": ["std-env@3.10.0", "", {}, "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg=="],
+
+ "stdin-discarder": ["stdin-discarder@0.2.2", "", {}, "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ=="],
+
+ "stream-chain": ["stream-chain@2.2.5", "", {}, "sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA=="],
+
+ "stream-events": ["stream-events@1.0.5", "", { "dependencies": { "stubs": "^3.0.0" } }, "sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg=="],
+
+ "stream-json": ["stream-json@1.9.1", "", { "dependencies": { "stream-chain": "^2.2.5" } }, "sha512-uWkjJ+2Nt/LO9Z/JyKZbMusL8Dkh97uUBTv3AJQ74y07lVahLY4eEFsPsE97pxYBwr8nnjMAIch5eqI0gPShyw=="],
+
+ "stream-parser": ["stream-parser@0.3.1", "", { "dependencies": { "debug": "2" } }, "sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ=="],
+
+ "stream-shift": ["stream-shift@1.0.3", "", {}, "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ=="],
+
+ "streamx": ["streamx@2.23.0", "", { "dependencies": { "events-universal": "^1.0.0", "fast-fifo": "^1.3.2", "text-decoder": "^1.1.0" } }, "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg=="],
+
+ "strict-uri-encode": ["strict-uri-encode@2.0.0", "", {}, "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ=="],
+
+ "string-width": ["string-width@7.2.0", "", { "dependencies": { "emoji-regex": "^10.3.0", "get-east-asian-width": "^1.0.0", "strip-ansi": "^7.1.0" } }, "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ=="],
+
+ "string-width-cjs": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
+
+ "string_decoder": ["string_decoder@1.3.0", "", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="],
+
+ "stringify-package": ["stringify-package@1.0.1", "", {}, "sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg=="],
+
+ "strip-ansi": ["strip-ansi@7.1.2", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA=="],
+
+ "strip-ansi-cjs": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "strip-bom": ["strip-bom@3.0.0", "", {}, "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA=="],
+
+ "strip-indent": ["strip-indent@3.0.0", "", { "dependencies": { "min-indent": "^1.0.0" } }, "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ=="],
+
+ "strip-json-comments": ["strip-json-comments@3.1.1", "", {}, "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="],
+
+ "strip-literal": ["strip-literal@3.1.0", "", { "dependencies": { "js-tokens": "^9.0.1" } }, "sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg=="],
+
+ "strnum": ["strnum@1.1.2", "", {}, "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA=="],
+
+ "stubs": ["stubs@3.0.0", "", {}, "sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw=="],
+
+ "supports-color": ["supports-color@7.2.0", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="],
+
+ "supports-preserve-symlinks-flag": ["supports-preserve-symlinks-flag@1.0.0", "", {}, "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="],
+
+ "svg-pathdata": ["svg-pathdata@6.0.3", "", {}, "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw=="],
+
+ "tar-fs": ["tar-fs@3.1.1", "", { "dependencies": { "pump": "^3.0.0", "tar-stream": "^3.1.5" }, "optionalDependencies": { "bare-fs": "^4.0.1", "bare-path": "^3.0.0" } }, "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg=="],
+
+ "tar-stream": ["tar-stream@3.1.7", "", { "dependencies": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", "streamx": "^2.15.0" } }, "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ=="],
+
+ "teeny-request": ["teeny-request@9.0.0", "", { "dependencies": { "http-proxy-agent": "^5.0.0", "https-proxy-agent": "^5.0.0", "node-fetch": "^2.6.9", "stream-events": "^1.0.5", "uuid": "^9.0.0" } }, "sha512-resvxdc6Mgb7YEThw6G6bExlXKkv6+YbuzGg9xuXxSgxJF7Ozs+o8Y9+2R3sArdWdW8nOokoQb1yrpFB0pQK2g=="],
+
+ "terser": ["terser@5.44.1", "", { "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.15.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": "bin/terser" }, "sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw=="],
+
+ "test-exclude": ["test-exclude@7.0.1", "", { "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^10.4.1", "minimatch": "^9.0.4" } }, "sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg=="],
+
+ "testcontainers": ["testcontainers@11.10.0", "", { "dependencies": { "@balena/dockerignore": "^1.0.2", "@types/dockerode": "^3.3.47", "archiver": "^7.0.1", "async-lock": "^1.4.1", "byline": "^5.0.0", "debug": "^4.4.3", "docker-compose": "^1.3.0", "dockerode": "^4.0.9", "get-port": "^7.1.0", "proper-lockfile": "^4.1.2", "properties-reader": "^2.3.0", "ssh-remote-port-forward": "^1.0.4", "tar-fs": "^3.1.1", "tmp": "^0.2.5", "undici": "^7.16.0" } }, "sha512-8hwK2EnrOZfrHPpDC7CPe03q7H8Vv8j3aXdcmFFyNV8dzpBzgZYmqyDtduJ8YQ5kbzj+A+jUXMQ6zI8B5U3z+g=="],
+
+ "text-decoder": ["text-decoder@1.2.3", "", { "dependencies": { "b4a": "^1.6.4" } }, "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA=="],
+
+ "text-extensions": ["text-extensions@1.9.0", "", {}, "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ=="],
+
+ "text-segmentation": ["text-segmentation@1.0.3", "", { "dependencies": { "utrie": "^1.0.2" } }, "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw=="],
+
+ "through": ["through@2.3.8", "", {}, "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="],
+
+ "through2": ["through2@4.0.2", "", { "dependencies": { "readable-stream": "3" } }, "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw=="],
+
+ "tinybench": ["tinybench@2.9.0", "", {}, "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg=="],
+
+ "tinyexec": ["tinyexec@0.3.2", "", {}, "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="],
+
+ "tinyglobby": ["tinyglobby@0.2.15", "", { "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.3" } }, "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ=="],
+
+ "tinypool": ["tinypool@1.1.1", "", {}, "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg=="],
+
+ "tinyrainbow": ["tinyrainbow@2.0.0", "", {}, "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw=="],
+
+ "tinyspy": ["tinyspy@4.0.4", "", {}, "sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q=="],
+
+ "tmp": ["tmp@0.2.5", "", {}, "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow=="],
+
+ "tr46": ["tr46@0.0.3", "", {}, "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="],
+
+ "trim-newlines": ["trim-newlines@3.0.1", "", {}, "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw=="],
+
+ "ts-api-utils": ["ts-api-utils@2.1.0", "", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ=="],
+
+ "tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="],
+
+ "tsx": ["tsx@4.21.0", "", { "dependencies": { "esbuild": "~0.27.0", "get-tsconfig": "^4.7.5" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "bin": "dist/cli.mjs" }, "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw=="],
+
+ "tweetnacl": ["tweetnacl@0.14.5", "", {}, "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA=="],
+
+ "type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="],
+
+ "type-fest": ["type-fest@4.41.0", "", {}, "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA=="],
+
+ "typedarray": ["typedarray@0.0.6", "", {}, "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="],
+
+ "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
+
+ "uglify-js": ["uglify-js@3.19.3", "", { "bin": { "uglifyjs": "bin/uglifyjs" } }, "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ=="],
+
+ "underscore": ["underscore@1.13.7", "", {}, "sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g=="],
+
+ "undici": ["undici@7.16.0", "", {}, "sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g=="],
+
+ "undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "uri-js": ["uri-js@4.4.1", "", { "dependencies": { "punycode": "^2.1.0" } }, "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="],
+
+ "util": ["util@0.12.5", "", { "dependencies": { "inherits": "^2.0.3", "is-arguments": "^1.0.4", "is-generator-function": "^1.0.7", "is-typed-array": "^1.1.3", "which-typed-array": "^1.1.2" } }, "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA=="],
+
+ "util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="],
+
+ "utrie": ["utrie@1.0.2", "", { "dependencies": { "base64-arraybuffer": "^1.0.2" } }, "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw=="],
+
+ "uuid": ["uuid@9.0.1", "", { "bin": "dist/bin/uuid" }, "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA=="],
+
+ "validate-npm-package-license": ["validate-npm-package-license@3.0.4", "", { "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew=="],
+
+ "vite": ["vite@7.3.0", "", { "dependencies": { "esbuild": "^0.27.0", "fdir": "^6.5.0", "picomatch": "^4.0.3", "postcss": "^8.5.6", "rollup": "^4.43.0", "tinyglobby": "^0.2.15" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", "jiti": ">=1.21.0", "less": "^4.0.0", "lightningcss": "^1.21.0", "sass": "^1.70.0", "sass-embedded": "^1.70.0", "stylus": ">=0.54.8", "sugarss": "^5.0.0", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["jiti", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss"], "bin": "bin/vite.js" }, "sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg=="],
+
+ "vite-node": ["vite-node@3.2.4", "", { "dependencies": { "cac": "^6.7.14", "debug": "^4.4.1", "es-module-lexer": "^1.7.0", "pathe": "^2.0.3", "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" }, "bin": "vite-node.mjs" }, "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg=="],
+
+ "vitest": ["vitest@3.2.4", "", { "dependencies": { "@types/chai": "^5.2.2", "@vitest/expect": "3.2.4", "@vitest/mocker": "3.2.4", "@vitest/pretty-format": "^3.2.4", "@vitest/runner": "3.2.4", "@vitest/snapshot": "3.2.4", "@vitest/spy": "3.2.4", "@vitest/utils": "3.2.4", "chai": "^5.2.0", "debug": "^4.4.1", "expect-type": "^1.2.1", "magic-string": "^0.30.17", "pathe": "^2.0.3", "picomatch": "^4.0.2", "std-env": "^3.9.0", "tinybench": "^2.9.0", "tinyexec": "^0.3.2", "tinyglobby": "^0.2.14", "tinypool": "^1.1.1", "tinyrainbow": "^2.0.0", "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0", "vite-node": "3.2.4", "why-is-node-running": "^2.3.0" }, "peerDependencies": { "@edge-runtime/vm": "*", "@types/debug": "^4.1.12", "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", "@vitest/browser": "3.2.4", "@vitest/ui": "3.2.4", "happy-dom": "*", "jsdom": "*" }, "optionalPeers": ["@edge-runtime/vm", "@types/debug", "@vitest/browser", "@vitest/ui", "happy-dom", "jsdom"], "bin": "vitest.mjs" }, "sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A=="],
+
+ "web-encoding": ["web-encoding@1.1.5", "", { "dependencies": { "util": "^0.12.3" }, "optionalDependencies": { "@zxing/text-encoding": "0.9.0" } }, "sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA=="],
+
+ "webidl-conversions": ["webidl-conversions@3.0.1", "", {}, "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="],
+
+ "whatwg-url": ["whatwg-url@5.0.0", "", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="],
+
+ "which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="],
+
+ "which-typed-array": ["which-typed-array@1.1.19", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="],
+
+ "why-is-node-running": ["why-is-node-running@2.3.0", "", { "dependencies": { "siginfo": "^2.0.0", "stackback": "0.0.2" }, "bin": "cli.js" }, "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w=="],
+
+ "widest-line": ["widest-line@5.0.0", "", { "dependencies": { "string-width": "^7.0.0" } }, "sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA=="],
+
+ "wmf": ["wmf@1.0.2", "", {}, "sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw=="],
+
+ "word": ["word@0.3.0", "", {}, "sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA=="],
+
+ "word-wrap": ["word-wrap@1.2.5", "", {}, "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="],
+
+ "wordwrap": ["wordwrap@1.0.0", "", {}, "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q=="],
+
+ "wrap-ansi": ["wrap-ansi@9.0.2", "", { "dependencies": { "ansi-styles": "^6.2.1", "string-width": "^7.0.0", "strip-ansi": "^7.1.0" } }, "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww=="],
+
+ "wrap-ansi-cjs": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="],
+
+ "wrappy": ["wrappy@1.0.2", "", {}, "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="],
+
+ "ws": ["ws@8.18.3", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg=="],
+
+ "wsl-utils": ["wsl-utils@0.1.0", "", { "dependencies": { "is-wsl": "^3.1.0" } }, "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw=="],
+
+ "xlsx": ["xlsx@0.18.5", "", { "dependencies": { "adler-32": "~1.3.0", "cfb": "~1.2.1", "codepage": "~1.15.0", "crc-32": "~1.2.1", "ssf": "~0.11.2", "wmf": "~1.0.1", "word": "~0.3.0" }, "bin": "bin/xlsx.njs" }, "sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ=="],
+
+ "xml2js": ["xml2js@0.6.2", "", { "dependencies": { "sax": ">=0.6.0", "xmlbuilder": "~11.0.0" } }, "sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA=="],
+
+ "xmlbuilder": ["xmlbuilder@10.1.1", "", {}, "sha512-OyzrcFLL/nb6fMGHbiRDuPup9ljBycsdCypwuyg5AAHvyWzGfChJpCXMG88AGTIMFhGZ9RccFN1e6lhg3hkwKg=="],
+
+ "xtend": ["xtend@4.0.2", "", {}, "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="],
+
+ "y18n": ["y18n@5.0.8", "", {}, "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="],
+
+ "yallist": ["yallist@4.0.0", "", {}, "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="],
+
+ "yaml": ["yaml@2.8.2", "", { "bin": "bin.mjs" }, "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A=="],
+
+ "yargs": ["yargs@16.2.0", "", { "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.0", "y18n": "^5.0.5", "yargs-parser": "^20.2.2" } }, "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw=="],
+
+ "yargs-parser": ["yargs-parser@20.2.9", "", {}, "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="],
+
+ "yocto-queue": ["yocto-queue@0.1.0", "", {}, "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="],
+
+ "yoctocolors-cjs": ["yoctocolors-cjs@2.1.3", "", {}, "sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw=="],
+
+ "zip-stream": ["zip-stream@6.0.1", "", { "dependencies": { "archiver-utils": "^5.0.0", "compress-commons": "^6.0.2", "readable-stream": "^4.0.0" } }, "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA=="],
+
+ "@aws-crypto/sha1-browser/@smithy/util-utf8": ["@smithy/util-utf8@2.3.0", "", { "dependencies": { "@smithy/util-buffer-from": "^2.2.0", "tslib": "^2.6.2" } }, "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A=="],
+
+ "@aws-crypto/sha256-browser/@smithy/util-utf8": ["@smithy/util-utf8@2.3.0", "", { "dependencies": { "@smithy/util-buffer-from": "^2.2.0", "tslib": "^2.6.2" } }, "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A=="],
+
+ "@aws-crypto/util/@smithy/util-utf8": ["@smithy/util-utf8@2.3.0", "", { "dependencies": { "@smithy/util-buffer-from": "^2.2.0", "tslib": "^2.6.2" } }, "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A=="],
+
+ "@aws-sdk/xml-builder/fast-xml-parser": ["fast-xml-parser@5.2.5", "", { "dependencies": { "strnum": "^2.1.0" }, "bin": { "fxparser": "src/cli/cli.js" } }, "sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ=="],
+
+ "@azure/core-xml/fast-xml-parser": ["fast-xml-parser@5.2.5", "", { "dependencies": { "strnum": "^2.1.0" }, "bin": { "fxparser": "src/cli/cli.js" } }, "sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ=="],
+
+ "@azure/msal-node/uuid": ["uuid@8.3.2", "", { "bin": "dist/bin/uuid" }, "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="],
+
+ "@babel/code-frame/js-tokens": ["js-tokens@4.0.0", "", {}, "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="],
+
+ "@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="],
+
+ "@eslint/eslintrc/ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="],
+
+ "@google-cloud/storage/mime": ["mime@3.0.0", "", { "bin": "cli.js" }, "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A=="],
+
+ "@google-cloud/storage/uuid": ["uuid@8.3.2", "", { "bin": "dist/bin/uuid" }, "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader": ["@grpc/proto-loader@0.8.0", "", { "dependencies": { "lodash.camelcase": "^4.3.0", "long": "^5.0.0", "protobufjs": "^7.5.3", "yargs": "^17.7.2" }, "bin": { "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" } }, "sha512-rc1hOQtjIWGxcxpb9aHAfLpIctjEnsDehj0DAiVfBlmT84uvR0uUtN2hEi/ecvWVjXUGf5qPF4qEgiLOx1YIMQ=="],
+
+ "@grpc/proto-loader/yargs": ["yargs@17.7.2", "", { "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" } }, "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w=="],
+
+ "@inquirer/core/signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="],
+
+ "@inquirer/core/wrap-ansi": ["wrap-ansi@6.2.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="],
+
+ "@inquirer/external-editor/iconv-lite": ["iconv-lite@0.7.1", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-2Tth85cXwGFHfvRgZWszZSvdo+0Xsqmw8k8ZwxScfcBneNUraK+dxRxRm24nszx80Y0TVio8kKLt5sLE7ZCLlw=="],
+
+ "@isaacs/cliui/string-width": ["string-width@5.1.2", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="],
+
+ "@isaacs/cliui/wrap-ansi": ["wrap-ansi@8.1.0", "", { "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" } }, "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="],
+
+ "@types/ssh2/@types/node": ["@types/node@18.19.130", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg=="],
+
+ "@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="],
+
+ "@typespec/ts-http-runtime/http-proxy-agent": ["http-proxy-agent@7.0.2", "", { "dependencies": { "agent-base": "^7.1.0", "debug": "^4.3.4" } }, "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig=="],
+
+ "@vitest/mocker/estree-walker": ["estree-walker@3.0.3", "", { "dependencies": { "@types/estree": "^1.0.0" } }, "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g=="],
+
+ "ansi-align/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
+
+ "archiver/readable-stream": ["readable-stream@4.7.0", "", { "dependencies": { "abort-controller": "^3.0.0", "buffer": "^6.0.3", "events": "^3.3.0", "process": "^0.11.10", "string_decoder": "^1.3.0" } }, "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg=="],
+
+ "archiver-utils/readable-stream": ["readable-stream@4.7.0", "", { "dependencies": { "abort-controller": "^3.0.0", "buffer": "^6.0.3", "events": "^3.3.0", "process": "^0.11.10", "string_decoder": "^1.3.0" } }, "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg=="],
+
+ "ast-v8-to-istanbul/estree-walker": ["estree-walker@3.0.3", "", { "dependencies": { "@types/estree": "^1.0.0" } }, "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g=="],
+
+ "async-retry/retry": ["retry@0.13.1", "", {}, "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg=="],
+
+ "bl/buffer": ["buffer@5.7.1", "", { "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }, "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="],
+
+ "camelcase-keys/camelcase": ["camelcase@5.3.1", "", {}, "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="],
+
+ "cli-table3/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
+
+ "cliui/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
+
+ "cliui/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "cliui/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="],
+
+ "compress-commons/readable-stream": ["readable-stream@4.7.0", "", { "dependencies": { "abort-controller": "^3.0.0", "buffer": "^6.0.3", "events": "^3.3.0", "process": "^0.11.10", "string_decoder": "^1.3.0" } }, "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg=="],
+
+ "conventional-changelog-writer/semver": ["semver@6.3.1", "", { "bin": "bin/semver.js" }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="],
+
+ "crc32-stream/readable-stream": ["readable-stream@4.7.0", "", { "dependencies": { "abort-controller": "^3.0.0", "buffer": "^6.0.3", "events": "^3.3.0", "process": "^0.11.10", "string_decoder": "^1.3.0" } }, "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg=="],
+
+ "decamelize-keys/map-obj": ["map-obj@1.0.1", "", {}, "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg=="],
+
+ "dockerode/tar-fs": ["tar-fs@2.1.4", "", { "dependencies": { "chownr": "^1.1.1", "mkdirp-classic": "^0.5.2", "pump": "^3.0.0", "tar-stream": "^2.1.4" } }, "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ=="],
+
+ "dockerode/uuid": ["uuid@10.0.0", "", { "bin": "dist/bin/uuid" }, "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ=="],
+
+ "dotgitignore/find-up": ["find-up@3.0.0", "", { "dependencies": { "locate-path": "^3.0.0" } }, "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="],
+
+ "eslint/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
+ "eslint/ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="],
+
+ "figures/escape-string-regexp": ["escape-string-regexp@1.0.5", "", {}, "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="],
+
+ "foreground-child/signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="],
+
+ "get-pkg-repo/through2": ["through2@2.0.5", "", { "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" } }, "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ=="],
+
+ "git-semver-tags/semver": ["semver@6.3.1", "", { "bin": "bin/semver.js" }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="],
+
+ "glob/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="],
+
+ "hosted-git-info/lru-cache": ["lru-cache@6.0.0", "", { "dependencies": { "yallist": "^4.0.0" } }, "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="],
+
+ "http-proxy-agent/agent-base": ["agent-base@6.0.2", "", { "dependencies": { "debug": "4" } }, "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="],
+
+ "jszip/pako": ["pako@1.0.11", "", {}, "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="],
+
+ "jszip/readable-stream": ["readable-stream@2.3.8", "", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="],
+
+ "lazystream/readable-stream": ["readable-stream@2.3.8", "", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="],
+
+ "load-json-file/pify": ["pify@3.0.0", "", {}, "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg=="],
+
+ "log-symbols/is-unicode-supported": ["is-unicode-supported@1.3.0", "", {}, "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ=="],
+
+ "mammoth/argparse": ["argparse@1.0.10", "", { "dependencies": { "sprintf-js": "~1.0.2" } }, "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="],
+
+ "meow/read-pkg-up": ["read-pkg-up@7.0.1", "", { "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", "type-fest": "^0.8.1" } }, "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg=="],
+
+ "meow/type-fest": ["type-fest@0.18.1", "", {}, "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw=="],
+
+ "minimist-options/arrify": ["arrify@1.0.1", "", {}, "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA=="],
+
+ "needle/debug": ["debug@3.2.7", "", { "dependencies": { "ms": "^2.1.1" } }, "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="],
+
+ "path-type/pify": ["pify@3.0.0", "", {}, "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg=="],
+
+ "read-pkg/normalize-package-data": ["normalize-package-data@2.5.0", "", { "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" } }, "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="],
+
+ "read-pkg-up/find-up": ["find-up@2.1.0", "", { "dependencies": { "locate-path": "^2.0.0" } }, "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ=="],
+
+ "readdir-glob/minimatch": ["minimatch@5.1.6", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g=="],
+
+ "restore-cursor/signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="],
+
+ "ssh-remote-port-forward/@types/ssh2": ["@types/ssh2@0.5.52", "", { "dependencies": { "@types/node": "*", "@types/ssh2-streams": "*" } }, "sha512-lbLLlXxdCZOSJMCInKH2+9V/77ET2J6NPQHpFI0kda61Dd1KglJs+fPQBchizmzYSOJBgdTajhPqBO1xxLywvg=="],
+
+ "standard-version/chalk": ["chalk@2.4.2", "", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }, "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="],
+
+ "stream-parser/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="],
+
+ "string-width-cjs/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
+
+ "string-width-cjs/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "strip-ansi-cjs/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "teeny-request/https-proxy-agent": ["https-proxy-agent@5.0.1", "", { "dependencies": { "agent-base": "6", "debug": "4" } }, "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="],
+
+ "terser/commander": ["commander@2.20.3", "", {}, "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="],
+
+ "test-exclude/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="],
+
+ "wrap-ansi/ansi-styles": ["ansi-styles@6.2.3", "", {}, "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg=="],
+
+ "wrap-ansi-cjs/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "wrap-ansi-cjs/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
+
+ "wrap-ansi-cjs/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "xml2js/xmlbuilder": ["xmlbuilder@11.0.1", "", {}, "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA=="],
+
+ "yargs/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
+
+ "zip-stream/readable-stream": ["readable-stream@4.7.0", "", { "dependencies": { "abort-controller": "^3.0.0", "buffer": "^6.0.3", "events": "^3.3.0", "process": "^0.11.10", "string_decoder": "^1.3.0" } }, "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg=="],
+
+ "@aws-crypto/sha1-browser/@smithy/util-utf8/@smithy/util-buffer-from": ["@smithy/util-buffer-from@2.2.0", "", { "dependencies": { "@smithy/is-array-buffer": "^2.2.0", "tslib": "^2.6.2" } }, "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA=="],
+
+ "@aws-crypto/sha256-browser/@smithy/util-utf8/@smithy/util-buffer-from": ["@smithy/util-buffer-from@2.2.0", "", { "dependencies": { "@smithy/is-array-buffer": "^2.2.0", "tslib": "^2.6.2" } }, "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA=="],
+
+ "@aws-crypto/util/@smithy/util-utf8/@smithy/util-buffer-from": ["@smithy/util-buffer-from@2.2.0", "", { "dependencies": { "@smithy/is-array-buffer": "^2.2.0", "tslib": "^2.6.2" } }, "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA=="],
+
+ "@aws-sdk/xml-builder/fast-xml-parser/strnum": ["strnum@2.1.2", "", {}, "sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ=="],
+
+ "@azure/core-xml/fast-xml-parser/strnum": ["strnum@2.1.2", "", {}, "sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs": ["yargs@17.7.2", "", { "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" } }, "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w=="],
+
+ "@grpc/proto-loader/yargs/cliui": ["cliui@8.0.1", "", { "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }, "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="],
+
+ "@grpc/proto-loader/yargs/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
+
+ "@grpc/proto-loader/yargs/yargs-parser": ["yargs-parser@21.1.1", "", {}, "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="],
+
+ "@inquirer/core/wrap-ansi/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "@inquirer/core/wrap-ansi/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
+
+ "@inquirer/core/wrap-ansi/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "@isaacs/cliui/string-width/emoji-regex": ["emoji-regex@9.2.2", "", {}, "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="],
+
+ "@isaacs/cliui/wrap-ansi/ansi-styles": ["ansi-styles@6.2.3", "", {}, "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg=="],
+
+ "@types/ssh2/@types/node/undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="],
+
+ "@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="],
+
+ "ansi-align/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
+
+ "ansi-align/string-width/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "cli-table3/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
+
+ "cli-table3/string-width/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "cliui/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
+
+ "cliui/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "cliui/wrap-ansi/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "dockerode/tar-fs/tar-stream": ["tar-stream@2.2.0", "", { "dependencies": { "bl": "^4.0.3", "end-of-stream": "^1.4.1", "fs-constants": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^3.1.1" } }, "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ=="],
+
+ "dotgitignore/find-up/locate-path": ["locate-path@3.0.0", "", { "dependencies": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" } }, "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="],
+
+ "eslint/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "get-pkg-repo/through2/readable-stream": ["readable-stream@2.3.8", "", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="],
+
+ "glob/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="],
+
+ "jszip/readable-stream/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="],
+
+ "jszip/readable-stream/string_decoder": ["string_decoder@1.1.1", "", { "dependencies": { "safe-buffer": "~5.1.0" } }, "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="],
+
+ "lazystream/readable-stream/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="],
+
+ "lazystream/readable-stream/string_decoder": ["string_decoder@1.1.1", "", { "dependencies": { "safe-buffer": "~5.1.0" } }, "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="],
+
+ "meow/read-pkg-up/find-up": ["find-up@4.1.0", "", { "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }, "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="],
+
+ "meow/read-pkg-up/read-pkg": ["read-pkg@5.2.0", "", { "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", "parse-json": "^5.0.0", "type-fest": "^0.6.0" } }, "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg=="],
+
+ "meow/read-pkg-up/type-fest": ["type-fest@0.8.1", "", {}, "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA=="],
+
+ "read-pkg-up/find-up/locate-path": ["locate-path@2.0.0", "", { "dependencies": { "p-locate": "^2.0.0", "path-exists": "^3.0.0" } }, "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA=="],
+
+ "read-pkg/normalize-package-data/hosted-git-info": ["hosted-git-info@2.8.9", "", {}, "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw=="],
+
+ "read-pkg/normalize-package-data/semver": ["semver@5.7.2", "", { "bin": "bin/semver" }, "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="],
+
+ "readdir-glob/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="],
+
+ "standard-version/chalk/escape-string-regexp": ["escape-string-regexp@1.0.5", "", {}, "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="],
+
+ "standard-version/chalk/supports-color": ["supports-color@5.5.0", "", { "dependencies": { "has-flag": "^3.0.0" } }, "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="],
+
+ "stream-parser/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
+
+ "string-width-cjs/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "teeny-request/https-proxy-agent/agent-base": ["agent-base@6.0.2", "", { "dependencies": { "debug": "4" } }, "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="],
+
+ "test-exclude/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="],
+
+ "wrap-ansi-cjs/ansi-styles/color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="],
+
+ "wrap-ansi-cjs/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
+
+ "wrap-ansi-cjs/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "yargs/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
+
+ "yargs/string-width/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "@aws-crypto/sha1-browser/@smithy/util-utf8/@smithy/util-buffer-from/@smithy/is-array-buffer": ["@smithy/is-array-buffer@2.2.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA=="],
+
+ "@aws-crypto/sha256-browser/@smithy/util-utf8/@smithy/util-buffer-from/@smithy/is-array-buffer": ["@smithy/is-array-buffer@2.2.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA=="],
+
+ "@aws-crypto/util/@smithy/util-utf8/@smithy/util-buffer-from/@smithy/is-array-buffer": ["@smithy/is-array-buffer@2.2.0", "", { "dependencies": { "tslib": "^2.6.2" } }, "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/cliui": ["cliui@8.0.1", "", { "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }, "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/yargs-parser": ["yargs-parser@21.1.1", "", {}, "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="],
+
+ "@grpc/proto-loader/yargs/cliui/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "@grpc/proto-loader/yargs/cliui/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="],
+
+ "@grpc/proto-loader/yargs/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
+
+ "@grpc/proto-loader/yargs/string-width/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "@inquirer/core/wrap-ansi/ansi-styles/color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="],
+
+ "@inquirer/core/wrap-ansi/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
+
+ "@inquirer/core/wrap-ansi/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "ansi-align/string-width/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "cli-table3/string-width/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "cliui/wrap-ansi/ansi-styles/color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="],
+
+ "dotgitignore/find-up/locate-path/p-locate": ["p-locate@3.0.0", "", { "dependencies": { "p-limit": "^2.0.0" } }, "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="],
+
+ "dotgitignore/find-up/locate-path/path-exists": ["path-exists@3.0.0", "", {}, "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ=="],
+
+ "eslint/chalk/ansi-styles/color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="],
+
+ "get-pkg-repo/through2/readable-stream/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="],
+
+ "get-pkg-repo/through2/readable-stream/string_decoder": ["string_decoder@1.1.1", "", { "dependencies": { "safe-buffer": "~5.1.0" } }, "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="],
+
+ "meow/read-pkg-up/find-up/locate-path": ["locate-path@5.0.0", "", { "dependencies": { "p-locate": "^4.1.0" } }, "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="],
+
+ "meow/read-pkg-up/read-pkg/normalize-package-data": ["normalize-package-data@2.5.0", "", { "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" } }, "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="],
+
+ "meow/read-pkg-up/read-pkg/parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="],
+
+ "meow/read-pkg-up/read-pkg/type-fest": ["type-fest@0.6.0", "", {}, "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg=="],
+
+ "read-pkg-up/find-up/locate-path/p-locate": ["p-locate@2.0.0", "", { "dependencies": { "p-limit": "^1.1.0" } }, "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg=="],
+
+ "read-pkg-up/find-up/locate-path/path-exists": ["path-exists@3.0.0", "", {}, "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ=="],
+
+ "standard-version/chalk/supports-color/has-flag": ["has-flag@3.0.0", "", {}, "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="],
+
+ "wrap-ansi-cjs/ansi-styles/color-convert/color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="],
+
+ "yargs/string-width/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/cliui/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/cliui/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/string-width/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+
+ "@grpc/proto-loader/yargs/cliui/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "@grpc/proto-loader/yargs/cliui/wrap-ansi/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "@grpc/proto-loader/yargs/string-width/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "@inquirer/core/wrap-ansi/ansi-styles/color-convert/color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="],
+
+ "cliui/wrap-ansi/ansi-styles/color-convert/color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="],
+
+ "dotgitignore/find-up/locate-path/p-locate/p-limit": ["p-limit@2.3.0", "", { "dependencies": { "p-try": "^2.0.0" } }, "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="],
+
+ "eslint/chalk/ansi-styles/color-convert/color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="],
+
+ "meow/read-pkg-up/find-up/locate-path/p-locate": ["p-locate@4.1.0", "", { "dependencies": { "p-limit": "^2.2.0" } }, "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="],
+
+ "meow/read-pkg-up/read-pkg/normalize-package-data/hosted-git-info": ["hosted-git-info@2.8.9", "", {}, "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw=="],
+
+ "meow/read-pkg-up/read-pkg/normalize-package-data/semver": ["semver@5.7.2", "", { "bin": "bin/semver" }, "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="],
+
+ "read-pkg-up/find-up/locate-path/p-locate/p-limit": ["p-limit@1.3.0", "", { "dependencies": { "p-try": "^1.0.0" } }, "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/cliui/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/cliui/wrap-ansi/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/string-width/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
+
+ "@grpc/proto-loader/yargs/cliui/wrap-ansi/ansi-styles/color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="],
+
+ "meow/read-pkg-up/find-up/locate-path/p-locate/p-limit": ["p-limit@2.3.0", "", { "dependencies": { "p-try": "^2.0.0" } }, "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="],
+
+ "read-pkg-up/find-up/locate-path/p-locate/p-limit/p-try": ["p-try@1.0.0", "", {}, "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/cliui/wrap-ansi/ansi-styles/color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="],
+
+ "@grpc/proto-loader/yargs/cliui/wrap-ansi/ansi-styles/color-convert/color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="],
+
+ "@grpc/grpc-js/@grpc/proto-loader/yargs/cliui/wrap-ansi/ansi-styles/color-convert/color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="],
+ }
+}
diff --git a/docs/MODEL_LOADING_QUICK_REFERENCE.md b/docs/MODEL_LOADING_QUICK_REFERENCE.md
deleted file mode 100644
index f94e2723..00000000
--- a/docs/MODEL_LOADING_QUICK_REFERENCE.md
+++ /dev/null
@@ -1,118 +0,0 @@
-# 🤖 Model Loading Quick Reference
-
-## 🚀 Common Scenarios
-
-### ✅ Development (Zero Config)
-```typescript
-const brain = new Brainy()
-await brain.init() // Downloads automatically (FP32 default)
-```
-
-### ⚡ Development (Optimized - v2.8.0+)
-```typescript
-// 75% smaller models, 99% accuracy
-const brain = new Brainy({
- embeddingOptions: { dtype: 'q8' }
-})
-await brain.init()
-```
-
-### 🐳 Docker Production
-```dockerfile
-# Both models (recommended)
-RUN npm run download-models
-
-# Or FP32 only (compatibility)
-RUN npm run download-models:fp32
-
-# Or Q8 only (space-constrained)
-RUN npm run download-models:q8
-
-ENV BRAINY_ALLOW_REMOTE_MODELS=false
-```
-
-### ☁️ Serverless/Lambda
-```bash
-# Build step
-npm run download-models
-
-# Runtime
-export BRAINY_ALLOW_REMOTE_MODELS=false
-```
-
-### 🔒 Air-Gapped/Offline
-```bash
-# Connected machine
-npm run download-models
-tar -czf brainy-models.tar.gz ./models
-
-# Offline machine
-tar -xzf brainy-models.tar.gz
-export BRAINY_ALLOW_REMOTE_MODELS=false
-```
-
-### 🌐 Browser/CDN
-```html
-
-
-```
-
-## 🚨 Troubleshooting
-
-| Error | Solution |
-|-------|----------|
-| "Failed to load embedding model" | `npm run download-models` |
-| "ENOENT: no such file" | Check `BRAINY_MODELS_PATH` |
-| "Network timeout" | Set `BRAINY_ALLOW_REMOTE_MODELS=false` |
-| "Permission denied" | `chmod 755 ./models` |
-| "Out of memory" | Increase container memory limit |
-
-## 🎯 Environment Variables
-
-| Variable | Values | Purpose |
-|----------|--------|---------|
-| `BRAINY_ALLOW_REMOTE_MODELS` | `true`/`false` | Allow/block downloads |
-| `BRAINY_MODELS_PATH` | `./models` | Model storage path |
-| `BRAINY_Q8_CONFIRMED` | `true`/`false` | Silence Q8 compatibility warnings |
-| `NODE_ENV` | `production` | Environment detection |
-
-## 📦 Model Info
-
-### FP32 (Default)
-- **Model**: All-MiniLM-L6-v2
-- **Dimensions**: 384 (fixed)
-- **Size**: 90MB
-- **Accuracy**: 100% (baseline)
-- **Location**: `./models/Xenova/all-MiniLM-L6-v2/onnx/model.onnx`
-
-### Q8 (Optional - v2.8.0+)
-- **Model**: All-MiniLM-L6-v2 (quantized)
-- **Dimensions**: 384 (same)
-- **Size**: 23MB (75% smaller!)
-- **Accuracy**: ~99% (minimal loss)
-- **Location**: `./models/Xenova/all-MiniLM-L6-v2/onnx/model_quantized.onnx`
-
-**⚠️ Important**: FP32 and Q8 create different embeddings and are incompatible!
-
-## ✅ Verification Commands
-
-```bash
-# Check FP32 model exists
-ls ./models/Xenova/all-MiniLM-L6-v2/onnx/model.onnx
-
-# Check Q8 model exists
-ls ./models/Xenova/all-MiniLM-L6-v2/onnx/model_quantized.onnx
-
-# Test offline mode
-BRAINY_ALLOW_REMOTE_MODELS=false npm test
-
-# Download fresh models (both)
-rm -rf ./models && npm run download-models
-
-# Download specific model variant
-rm -rf ./models && npm run download-models:q8
-```
\ No newline at end of file
diff --git a/docs/PRODUCTION_SERVICE_ARCHITECTURE.md b/docs/PRODUCTION_SERVICE_ARCHITECTURE.md
index 1f3f9e9a..a7e088f4 100644
--- a/docs/PRODUCTION_SERVICE_ARCHITECTURE.md
+++ b/docs/PRODUCTION_SERVICE_ARCHITECTURE.md
@@ -1,6 +1,8 @@
# Production Service Architecture Guide
-**How to use Brainy optimally in production Express/Node.js services**
+**How to use Brainy optimally in production services (Bun, Node.js, Deno)**
+
+> **Recommended Runtime:** [Bun](https://bun.sh) provides best performance with Brainy's Candle WASM engine. All examples work with both Bun and Node.js.
---
@@ -168,7 +170,57 @@ process.on('SIGTERM', async () => {
---
-### Pattern 3: Express Middleware
+### Pattern 3: Bun Server (Recommended)
+
+```typescript
+// server.ts - Clean Bun implementation
+import { Brainy } from '@soulcraft/brainy'
+
+let brain: Brainy | null = null
+
+async function getBrain(): Promise {
+ if (!brain) {
+ brain = new Brainy({ storage: { path: './brainy-data' } })
+ await brain.init()
+ }
+ return brain
+}
+
+// Initialize before server starts
+await getBrain()
+
+Bun.serve({
+ port: 3000,
+ async fetch(req) {
+ const url = new URL(req.url)
+
+ if (url.pathname === '/api/entities') {
+ const b = await getBrain()
+ const entities = await b.find({})
+ return Response.json(entities)
+ }
+
+ if (url.pathname === '/api/entity' && req.method === 'POST') {
+ const b = await getBrain()
+ const body = await req.json()
+ const id = await b.add(body)
+ return Response.json({ id })
+ }
+
+ return new Response('Not Found', { status: 404 })
+ }
+})
+
+console.log('Server running on http://localhost:3000')
+```
+
+**Benefits:**
+- ✅ Native Bun performance (~2x faster than Node.js)
+- ✅ No framework dependencies
+- ✅ Works with `bun --compile` for single-binary deployment
+- ✅ Built-in TypeScript support
+
+### Pattern 4: Express/Node.js Middleware (Legacy)
```typescript
// middleware/brainy.ts
diff --git a/docs/api/README.md b/docs/api/README.md
index 625ea5e6..cb378f41 100644
--- a/docs/api/README.md
+++ b/docs/api/README.md
@@ -1373,12 +1373,9 @@ const brain = new Brainy({
typeAware: true // Enable type-aware indexing (v4.0+)
},
- // Model configuration
- model: {
- type: 'transformers', // transformers | custom
- name: 'Xenova/all-MiniLM-L6-v2',
- device: 'auto' // auto | cpu | gpu
- },
+ // Model configuration (embedded in WASM - zero config needed)
+ // Model: all-MiniLM-L6-v2 (384 dimensions)
+ // Device: CPU via WASM (works everywhere)
// Cache configuration
cache: {
diff --git a/docs/architecture/augmentations-actual.md b/docs/architecture/augmentations-actual.md
index d8e42dbe..808c37aa 100644
--- a/docs/architecture/augmentations-actual.md
+++ b/docs/architecture/augmentations-actual.md
@@ -206,7 +206,7 @@ if (device === 'webgpu') {
// CUDA detection in Node:
if (device === 'cuda') {
- // Requires ONNX Runtime GPU packages
+ // Future: GPU acceleration support
}
```
diff --git a/docs/architecture/finite-type-system.md b/docs/architecture/finite-type-system.md
index abf96b0c..51ba515c 100644
--- a/docs/architecture/finite-type-system.md
+++ b/docs/architecture/finite-type-system.md
@@ -80,7 +80,7 @@ const entity = {
- ✅ **Semantic Understanding**: Types have meaning, not just structure
- ✅ **Tool Compatibility**: All augmentations understand core types
- ✅ **Concept Extraction**: NLP can map text to known types
-- ✅ **Type Inference**: Automatic type detection via keywords/synonyms
+- ✅ **Explicit Types**: Clear type specification in API
- ✅ **Query Optimization**: Type-aware query planning
- ✅ **Flexible Metadata**: Any fields within typed structure
- ✅ **Billion-Scale Ready**: Type tracking scales linearly
@@ -121,45 +121,51 @@ class TypeAwareMetadataIndex {
- **After**: PROJECTED 1.2MB memory for same dataset (385x reduction - calculated from Uint32Array size, not measured)
- **Scales to billions**: Memory grows with entity count, not key diversity
-### 2. Semantic Type Inference
+### 2. Explicit Type System
-**The Magic**: Map natural language to structured types:
+**The Design**: Specify types clearly in your API calls:
```typescript
-import { getSemanticTypeInference } from '@soulcraft/brainy'
+import { Brainy, NounType, VerbType } from '@soulcraft/brainy'
-const inference = getSemanticTypeInference()
+// Add entity with explicit type
+await brain.add({
+ data: { name: 'Alice', role: 'CEO of Acme Corp' },
+ type: NounType.Person // Explicit type specification
+})
-// Automatic type detection
-await inference.inferNounType('CEO of Acme Corp')
-// → 'person'
-
-await inference.inferNounType('San Francisco office building')
-// → 'place'
-
-await inference.inferVerbType('Alice manages Bob')
-// → 'manages' (relationship type)
+// Query with type filtering
+await brain.find({
+ query: 'Alice',
+ type: NounType.Person // Type-optimized search
+})
```
-**How It Works**:
-1. **Keyword Matching**: "CEO", "manager" → 'person'
-2. **Synonym Detection**: "building", "office" → 'place'
-3. **Semantic Embeddings**: Vector similarity to type prototypes
-4. **Context Analysis**: Surrounding words provide hints
+**Why Explicit Types?**:
+1. **Deterministic**: You control exactly how entities are classified
+2. **Predictable**: No inference surprises or edge cases
+3. **Fast**: No neural processing overhead on every add/query
+4. **Smaller**: No embedded keyword models needed
**Real-World Use Case**:
```typescript
-// Import unstructured data
-const text = "Apple announced a new product line in Cupertino"
+// Import data with known types
+await brain.add({
+ data: { name: 'Apple Inc.', industry: 'Technology' },
+ type: NounType.Organization
+})
-// Brainy automatically infers:
-// - "Apple" → noun type: 'organization'
-// - "product line" → noun type: 'product'
-// - "Cupertino" → noun type: 'place'
-// - "announced" → verb type: 'announces'
-// - "in" → verb type: 'locatedIn'
+await brain.add({
+ data: { name: 'Cupertino', country: 'USA' },
+ type: NounType.Location
+})
-// Creates typed, queryable knowledge graph automatically!
+// Create relationship
+await brain.relate({
+ from: appleId,
+ to: cupertinoId,
+ type: VerbType.LocatedIn
+})
```
### 3. Tool & Augmentation Compatibility
@@ -364,42 +370,47 @@ function processNoun(noun: Noun) {
---
-## Public API: Semantic Type Inference
+## Public API: Type System
-The type inference system is **fully public** for augmentation developers and external tools:
+The type system is **fully public** for developers and augmentation authors:
```typescript
import {
- getSemanticTypeInference,
- SemanticTypeInference
+ NounType,
+ VerbType,
+ getNounTypes,
+ getVerbTypes,
+ BrainyTypes,
+ suggestType
} from '@soulcraft/brainy'
-// Get singleton instance
-const inference = getSemanticTypeInference()
+// Get all available noun types
+const nounTypes = getNounTypes()
+// → ['Person', 'Organization', 'Location', 'Thing', 'Concept', ...]
-// Infer noun type from text
-const nounType = await inference.inferNounType('Software Engineer')
-// → 'person'
+// Get all available verb types
+const verbTypes = getVerbTypes()
+// → ['RelatedTo', 'Contains', 'CreatedBy', 'LocatedIn', ...]
-// Infer verb type from relationship text
-const verbType = await inference.inferVerbType('works at')
-// → 'worksAt'
+// Use types directly
+await brain.add({
+ data: { name: 'Alice' },
+ type: NounType.Person
+})
-// Get type keywords for reverse lookup
-const keywords = inference.getNounTypeKeywords('person')
-// → ['person', 'human', 'individual', 'user', 'employee', ...]
-
-// Get type synonyms
-const synonyms = inference.getNounTypeSynonyms('organization')
-// → ['company', 'corporation', 'business', 'firm', 'enterprise', ...]
+// Query by type
+await brain.find({
+ type: NounType.Person,
+ where: { name: 'Alice' }
+})
```
**Use Cases**:
-- **Import Tools**: Auto-detect entity types during data import
-- **Query Builders**: Suggest types based on user input
+- **Type-Safe Code**: Use TypeScript enums for compile-time checking
+- **Import Tools**: Specify entity types during data import
+- **Query Builders**: Filter by known types
- **Augmentations**: Type-specific processing pipelines
- **Visualization**: Type-appropriate rendering
-- **Data Validation**: Ensure correct type assignments
---
@@ -415,7 +426,7 @@ const synonyms = inference.getNounTypeSynonyms('organization')
| **Query Planning** | Impossible | Table statistics | Type statistics |
| **Tool Compatibility** | None | SQL only | Full ecosystem |
| **Semantic Understanding** | None | None | Built-in |
-| **Concept Extraction** | Manual | Manual | Automatic |
+| **Concept Extraction** | Manual | Manual | Via SmartExtractor |
| **Flexibility** | Infinite | Zero | Optimal balance |
---
@@ -483,7 +494,7 @@ Brainy's **Finite Noun/Verb Type System** is revolutionary because it achieves t
2. ✅ **Semantic understanding** (NLP integration)
3. ✅ **Tool compatibility** (ecosystem interoperability)
4. ✅ **Query optimization** (type-aware planning)
-5. ✅ **Concept extraction** (automatic type inference)
+5. ✅ **Concept extraction** (via SmartExtractor for imports)
6. ✅ **Developer experience** (clean architecture)
7. ✅ **Flexibility** (metadata freedom within types)
@@ -493,11 +504,10 @@ It's not schemaless chaos. It's not rigid relational constraints. It's **semanti
## Further Reading
-- [Type Inference System](../api/type-inference.md) - API reference for semantic type detection
- [Storage Architecture](./storage-architecture.md) - How types enable billion-scale storage
- [Augmentation System](./augmentations.md) - Building type-aware augmentations
-- [Concept Extraction](../guides/natural-language.md) - NLP integration with typed entities
- [Query Optimization](../api/query-optimization.md) - Type-aware query planning
+- [Import Flow](../guides/import-flow.md) - How types work in the import pipeline
---
diff --git a/docs/augmentations/api-server.md b/docs/augmentations/api-server.md
index 9546a41e..aa7973ca 100644
--- a/docs/augmentations/api-server.md
+++ b/docs/augmentations/api-server.md
@@ -25,7 +25,9 @@ Built-in authentication and rate limiting when needed.
The APIServerAugmentation is included in Brainy core. No additional installation required.
-For Node.js environments, you may want to install optional dependencies:
+**Bun** (recommended): No additional dependencies needed - use `Bun.serve()` directly.
+
+**Node.js**: Install optional Express dependencies:
```bash
npm install express cors ws
```
@@ -259,6 +261,30 @@ Authorization: Bearer your-token
## Environment Support
+### Bun ✅ (Recommended)
+Native performance with Bun.serve() - no Express required. Works with `bun --compile` for single-binary deployment.
+
+```typescript
+// Simple Bun server with Brainy
+import { Brainy } from '@soulcraft/brainy'
+
+const brain = new Brainy()
+await brain.init()
+
+Bun.serve({
+ port: 3000,
+ async fetch(req) {
+ const url = new URL(req.url)
+ if (url.pathname === '/api/search') {
+ const { query } = await req.json()
+ const results = await brain.search(query)
+ return Response.json(results)
+ }
+ return new Response('Not Found', { status: 404 })
+ }
+})
+```
+
### Node.js ✅
Full support with Express, WebSocket, and all features.
diff --git a/docs/features/complete-feature-list.md b/docs/features/complete-feature-list.md
index df02a3f7..b936ad71 100644
--- a/docs/features/complete-feature-list.md
+++ b/docs/features/complete-feature-list.md
@@ -256,9 +256,9 @@ if (device === 'webgpu') {
// Transformer models use WebGPU automatically
}
-// CUDA in Node.js (requires ONNX Runtime GPU)
+// CUDA in Node.js (future GPU support)
if (device === 'cuda') {
- // Automatically uses GPU for embeddings
+ // Future: GPU acceleration for embeddings
}
```
diff --git a/docs/guides/import-flow.md b/docs/guides/import-flow.md
index 77d11b36..de6c3e30 100644
--- a/docs/guides/import-flow.md
+++ b/docs/guides/import-flow.md
@@ -470,7 +470,7 @@ const verbType = await this.inferRelationship(
**Location**: `src/neural/SmartRelationshipExtractor.ts:100`
-The SmartRelationshipExtractor runs **4 signals in parallel** (just like entity extraction):
+The SmartRelationshipExtractor runs **3 signals in parallel**:
```
┌──────────────────────────────────────────────────────────┐
@@ -480,40 +480,34 @@ The SmartRelationshipExtractor runs **4 signals in parallel** (just like entity
│ Input Context: │
│ "Famous painting created by Leonardo da Vinci" │
│ │
-│ 1. VerbExactMatchSignal (40%) │
-│ → Searches 334 verb keywords │
-│ → Finds phrase: "created by" │
-│ → Maps to: VerbType.CreatedBy │
-│ → Confidence: 0.95 │
-│ │
-│ 2. VerbEmbeddingSignal (35%) │
+│ 1. VerbEmbeddingSignal (55%) │
│ → Embeds context: [0.23, -0.45, 0.78, ...] │
│ → Compares to 40 verb embeddings │
│ → Closest match: CreatedBy (similarity: 0.89) │
│ → Confidence: 0.89 │
│ │
-│ 3. VerbPatternSignal (20%) │
+│ 2. VerbPatternSignal (30%) │
│ → Tests 48+ regex patterns │
│ → Matches: /\bcreated?\s+by\b/i │
│ → Maps to: VerbType.CreatedBy │
│ → Confidence: 0.90 │
│ │
-│ 4. VerbContextSignal (5%) │
+│ 3. VerbContextSignal (15%) │
│ → Type pair: (Product, Person) │
│ → Hint suggests: CreatedBy │
│ → Confidence: 0.80 │
│ │
│ Ensemble Vote: │
-│ CreatedBy: 0.95×0.40 + 0.89×0.35 + 0.90×0.20 + 0.80×0.05│
-│ = 0.38 + 0.31 + 0.18 + 0.04 │
-│ = 0.91 │
+│ CreatedBy: 0.89×0.55 + 0.90×0.30 + 0.80×0.15 │
+│ = 0.49 + 0.27 + 0.12 │
+│ = 0.88 │
│ │
│ Agreement Boost: │
-│ → 4 signals agree on CreatedBy! │
-│ → Boost: +0.05 × (4-1) = +0.15 │
-│ → Final: 0.91 + 0.15 = 1.06 → capped at 0.99 │
+│ → 3 signals agree on CreatedBy! │
+│ → Boost: +0.05 × (3-1) = +0.10 │
+│ → Final: 0.88 + 0.10 = 0.98 │
│ │
-│ Winner: CreatedBy (0.99 confidence) 🎯 │
+│ Winner: CreatedBy (0.98 confidence) 🎯 │
└──────────────────────────────────────────────────────────┘
```
@@ -897,8 +891,8 @@ const vector = await this.embed('Mona Lisa')
```
**Embedding Service**:
-- Default: Uses `@xenova/transformers` (local, no API calls!)
-- Model: `Xenova/all-MiniLM-L6-v2` (384 dimensions)
+- Uses Candle WASM (local, no API calls, no downloads!)
+- Model: `all-MiniLM-L6-v2` embedded in WASM (384 dimensions)
- Performance: ~5-15ms per embedding
**Output**:
@@ -1868,10 +1862,9 @@ groupBy: 'type'
│ └─ ContextSignal (5%) │
│ │
│ SmartRelationshipExtractor (Verb Types): │
- │ ├─ VerbExactMatchSignal (40%) │
- │ ├─ VerbEmbeddingSignal (35%) │
- │ ├─ VerbPatternSignal (20%) │
- │ └─ VerbContextSignal (5%) │
+ │ ├─ VerbEmbeddingSignal (55%) │
+ │ ├─ VerbPatternSignal (30%) │
+ │ └─ VerbContextSignal (15%) │
│ │
│ Result: Intelligent entities + relationships │
└───────────────────────────────────────────────┘
diff --git a/docs/guides/model-loading.md b/docs/guides/model-loading.md
index 020c420e..415fe2e3 100644
--- a/docs/guides/model-loading.md
+++ b/docs/guides/model-loading.md
@@ -1,358 +1,236 @@
-# 🤖 Model Loading Guide
+# Model Loading Guide
-Brainy uses AI embedding models to understand and process your data. This guide explains how model loading works and how to handle different scenarios.
+Brainy uses AI embedding models to understand and process your data. With the Candle WASM engine, the model is **embedded at compile time** - no downloads, no configuration, no external dependencies.
-## 🚀 Zero Configuration (Default)
+## Zero Configuration (Default)
-**For most developers, no configuration is needed:**
+**For all developers, no configuration is needed:**
```typescript
const brain = new Brainy()
-await brain.init() // Models load automatically
+await brain.init() // Model is already embedded - nothing to download!
```
**What happens automatically:**
-1. Checks for local models in `./models/`
-2. Downloads All-MiniLM-L6-v2 if needed (384 dimensions)
-3. Configures optimal settings for your environment
-4. Ready to use immediately
+1. Candle WASM module loads (~90MB, includes model weights)
+2. Model initializes in ~200ms
+3. Ready to use immediately
-## 📦 Model Loading Cascade
+**No downloads. No CDN. No configuration. Just works.**
-Brainy tries multiple sources in this order:
+## How It Works
+
+The all-MiniLM-L6-v2 model is embedded in the WASM binary using Rust's `include_bytes!` macro:
```
-1. LOCAL CACHE (./models/)
- ↓ (if not found)
-2. CDN DOWNLOAD (fast mirrors)
- ↓ (if fails)
-3. GITHUB RELEASES (github.com/xenova/transformers.js)
- ↓ (if fails)
-4. HUGGINGFACE HUB (huggingface.co)
- ↓ (if fails)
-5. FALLBACK STRATEGIES (different model variants)
+candle_embeddings_bg.wasm (~90MB)
+├── Candle ML Runtime (~3MB)
+├── Model Weights (safetensors format, ~87MB)
+└── Tokenizer (HuggingFace tokenizers, ~450KB)
```
-## 🌍 Environment-Specific Behavior
+This single WASM file contains everything needed for sentence embeddings.
+
+## Environments
+
+### Bun (Recommended)
+
+```typescript
+// Works with Bun runtime
+bun run server.ts
+
+// Works with bun --compile (single binary deployment!)
+bun build --compile --target=bun server.ts
+./server // Self-contained binary with embedded model
+```
+
+### Node.js
+
+```typescript
+// Standard Node.js
+node dist/server.js
+
+// Runs identically to Bun
+```
### Browser
-```typescript
-// Automatically configured for browsers
-const brain = new Brainy() // Works in React, Vue, vanilla JS
-await brain.init() // Downloads models via CDN
-```
-### Node.js Development
```typescript
-// Zero config - downloads to ./models/
+// Model loads via WASM (single file, no additional assets)
const brain = new Brainy()
-await brain.init() // Downloads once, cached forever
-```
-
-### Production Server
-```typescript
-// Preload models during build/deployment
-const brain = new Brainy()
-await brain.init() // Uses cached local models
+await brain.init()
```
### Docker/Kubernetes
+
```dockerfile
-# Dockerfile - preload models
-RUN npm run download-models
-ENV BRAINY_ALLOW_REMOTE_MODELS=false
-```
-
-## 🛠️ Manual Model Management
-
-### Pre-download Models
-```bash
-# Download models during build/deployment
-npm run download-models
-
-# Custom location
-BRAINY_MODELS_PATH=./my-models npm run download-models
-```
-
-### Verify Models
-```bash
-# Check if models exist
-ls ./models/Xenova/all-MiniLM-L6-v2/
-
-# Should see:
-# - config.json
-# - tokenizer.json
-# - onnx/model.onnx
-```
-
-### Custom Model Path
-```typescript
-const brain = new Brainy({
- embedding: {
- cacheDir: './custom-models'
- }
-})
-```
-
-## 🔒 Offline & Air-Gapped Environments
-
-### Complete Offline Setup
-```bash
-# 1. Download models on connected machine
-npm run download-models
-
-# 2. Copy models to offline machine
-cp -r ./models /path/to/offline/project/
-
-# 3. Force local-only mode
-export BRAINY_ALLOW_REMOTE_MODELS=false
-```
-
-### Container/Server Deployment
-```dockerfile
-FROM node:18
+FROM oven/bun:1.1
WORKDIR /app
COPY package*.json ./
-RUN npm ci
-
-# Download models during build
-RUN npm run download-models
-
-# Force local-only in production
-ENV BRAINY_ALLOW_REMOTE_MODELS=false
-
+RUN bun install
COPY . .
EXPOSE 3000
-CMD ["npm", "start"]
+CMD ["bun", "run", "server.ts"]
+
+# That's it! No model download step needed.
+# Model is embedded in the npm package.
```
-## ⚙️ Environment Variables
+## Model Information
-### BRAINY_ALLOW_REMOTE_MODELS
-Controls whether remote model downloads are allowed:
+### all-MiniLM-L6-v2 (Embedded)
+- **Dimensions**: 384 (fixed)
+- **Format**: Safetensors (FP32)
+- **Size**: ~87MB (embedded in WASM)
+- **Total WASM Size**: ~90MB
+- **Language**: English-optimized, works with all languages
+- **Inference**: ~2-10ms per embedding
+- **Initialization**: ~200ms
-```bash
-# Allow remote downloads (default in most environments)
-export BRAINY_ALLOW_REMOTE_MODELS=true
+### Memory Usage
+- **Loaded WASM**: ~90MB
+- **Inference peak**: ~140MB total
+- **Steady state**: ~100MB
-# Force local-only (recommended for production)
-export BRAINY_ALLOW_REMOTE_MODELS=false
-```
+## Comparing to Previous Architecture
-### BRAINY_MODELS_PATH
-Custom model storage location:
+| Feature | Before (ONNX) | Now (Candle WASM) |
+|---------|--------------|-------------------|
+| Model downloads | Required on first use | None - embedded |
+| External dependencies | onnxruntime-web | None |
+| Model files | model.onnx, tokenizer.json | Embedded in WASM |
+| Offline support | Required setup | Works by default |
+| Bun compile | Broken | Works |
+| Configuration | Environment variables | None needed |
-```bash
-# Custom model path
-export BRAINY_MODELS_PATH=/opt/brainy/models
+## Troubleshooting
-# Relative path
-export BRAINY_MODELS_PATH=./my-custom-models
-```
+### "Failed to initialize Candle Embedding Engine"
-## 🚨 Troubleshooting
-
-### "Failed to load embedding model" Error
-
-**Cause**: Models not found locally and remote download blocked/failed.
+**Cause**: WASM loading issue.
**Solutions**:
```bash
-# Option 1: Allow remote downloads
-export BRAINY_ALLOW_REMOTE_MODELS=true
+# Rebuild the WASM
+npm run build:candle
-# Option 2: Download models manually
-npm run download-models
-
-# Option 3: Check internet connectivity
-ping huggingface.co
-
-# Option 4: Use custom model path
-export BRAINY_MODELS_PATH=/path/to/existing/models
+# Verify WASM exists
+ls dist/embeddings/wasm/pkg/candle_embeddings_bg.wasm
+# Should be ~90MB
```
-### Models Download Very Slowly
+### Out of Memory
-**Cause**: Network issues or regional restrictions.
-
-**Solutions**:
-```bash
-# Pre-download during build/CI
-npm run download-models
-
-# Use faster mirrors (automatic in newer versions)
-# No action needed - Brainy tries multiple CDNs
-```
-
-### Container Out of Memory During Model Load
-
-**Cause**: Limited container memory during model initialization.
+**Cause**: Container/environment has less than 256MB RAM.
**Solutions**:
```dockerfile
-# Increase memory limit
-docker run -m 2g my-app
-
-# Use quantized models (default)
-ENV BRAINY_MODEL_DTYPE=q8
-
-# Pre-load models at build time (recommended)
-RUN npm run download-models
+# Increase memory limit (recommended: 512MB+)
+docker run -m 512m my-app
```
-### Permission Denied Creating Model Cache
+### Slow Initialization (>500ms)
-**Cause**: Write permissions for model cache directory.
+**Cause**: Cold start, large WASM parsing.
**Solutions**:
-```bash
-# Make directory writable
-chmod 755 ./models
+```typescript
+// Initialize once at startup, not per-request
+await brain.init() // Do this once
-# Use custom writable path
-export BRAINY_MODELS_PATH=/tmp/brainy-models
-
-# Or use memory-only storage
-const brain = new Brainy({
- storage: { forceMemoryStorage: true }
+// Then reuse for all requests
+app.get('/api', async (req, res) => {
+ const results = await brain.find(req.query)
+ res.json(results)
})
```
-## 🎯 Best Practices
+## Migration from Previous Versions
+
+### From v6.x (ONNX)
+
+No changes needed for most users:
+
+```typescript
+// Same API - just upgrade
+const brain = new Brainy()
+await brain.init()
+```
+
+**What's removed:**
+- `BRAINY_ALLOW_REMOTE_MODELS` - no downloads
+- `BRAINY_MODELS_PATH` - no external model files
+- `npm run download-models` - no longer needed
+
+**What's new:**
+- Faster initialization
+- Works with `bun --compile`
+- No network requirements
+
+### From Custom Embedding Functions
+
+If you provided a custom embedding function, it still works:
+
+```typescript
+const brain = new Brainy({
+ embeddingFunction: myCustomEmbedder // Still supported
+})
+```
+
+## Advanced: Building Custom WASM
+
+For contributors who want to modify the embedding engine:
+
+```bash
+# Navigate to Candle WASM source
+cd src/embeddings/candle-wasm
+
+# Build with wasm-pack
+wasm-pack build --target web --release
+
+# Copy to pkg folder
+cp pkg/* ../wasm/pkg/
+
+# Build TypeScript
+npm run build
+```
+
+## Best Practices
### Development
```typescript
-// ✅ Zero config - just works
+// Just works - no setup
const brain = new Brainy()
await brain.init()
```
### Production
-```dockerfile
-# ✅ Pre-download models
-RUN npm run download-models
-
-# ✅ Force local-only
-ENV BRAINY_ALLOW_REMOTE_MODELS=false
-
-# ✅ Verify models exist
-RUN test -f ./models/Xenova/all-MiniLM-L6-v2/onnx/model.onnx
-```
-
-### CI/CD Pipeline
-```yaml
-# .github/workflows/build.yml
-- name: Download AI Models
- run: npm run download-models
-
-- name: Verify Models
- run: |
- test -f ./models/Xenova/all-MiniLM-L6-v2/onnx/model.onnx
- echo "✅ Models verified"
-
-- name: Test Offline Mode
- env:
- BRAINY_ALLOW_REMOTE_MODELS: false
- run: npm test
-```
-
-### Lambda/Serverless
```typescript
-// ✅ Models in deployment package
-const brain = new Brainy({
- embedding: {
- localFilesOnly: true, // No downloads in lambda
- cacheDir: './models' // Bundled with deployment
- }
-})
-```
-
-## 📊 Model Information
-
-### All-MiniLM-L6-v2 (Default)
-- **Dimensions**: 384 (fixed)
-- **Size**: ~80MB compressed, ~330MB uncompressed
-- **Language**: English (optimized)
-- **Speed**: Very fast inference
-- **Quality**: High quality for most use cases
-
-### Model Files Structure
-```
-models/
-└── Xenova/
- └── all-MiniLM-L6-v2/
- ├── config.json # Model configuration
- ├── tokenizer.json # Text tokenizer
- ├── tokenizer_config.json
- └── onnx/
- ├── model.onnx # Main model file
- └── model_quantized.onnx # Optimized version
-```
-
-## 🔄 Migration from Other Embedding Solutions
-
-### From OpenAI Embeddings
-```typescript
-// Before: OpenAI API calls
-const response = await openai.embeddings.create({
- model: "text-embedding-ada-002",
- input: "Your text"
-})
-
-// After: Local Brainy embeddings
+// Initialize once at startup
const brain = new Brainy()
-await brain.init() // One-time setup
-const id = await brain.add("Your text", { nounType: 'content' }) // Embedded automatically
-```
-
-### From Sentence Transformers
-```python
-# Before: Python sentence-transformers
-from sentence_transformers import SentenceTransformer
-model = SentenceTransformer('all-MiniLM-L6-v2')
-
-# After: JavaScript Brainy (same model!)
-const brain = new Brainy() // Uses same all-MiniLM-L6-v2
await brain.init()
+
+// Singleton pattern recommended
+export { brain }
```
-## 🚀 Advanced Configuration
+### Deployment
+```bash
+# Option 1: Bun compile (single binary)
+bun build --compile server.ts
+./server # Contains everything
-### Custom Embedding Options
-```typescript
-const brain = new Brainy({
- embedding: {
- model: 'Xenova/all-MiniLM-L6-v2', // Default
- dtype: 'q8', // Quantized for speed
- device: 'cpu', // CPU inference
- localFilesOnly: false, // Allow downloads
- verbose: true // Debug logging
- }
-})
-```
-
-### Multiple Model Support (Advanced)
-```typescript
-// Use custom embedding function
-import { createEmbeddingFunction } from 'brainy'
-
-const customEmbedder = createEmbeddingFunction({
- model: 'Xenova/all-MiniLM-L12-v2', // Larger model
- dtype: 'fp32' // Higher precision
-})
-
-const brain = new Brainy({
- embeddingFunction: customEmbedder
-})
+# Option 2: Docker
+docker build -t my-app .
+docker run -p 3000:3000 my-app
```
---
-## 📚 Additional Resources
+## Additional Resources
-- [Zero Configuration Guide](./zero-config.md)
-- [Enterprise Deployment](./enterprise-deployment.md)
+- [Production Service Architecture](../PRODUCTION_SERVICE_ARCHITECTURE.md)
+- [Zero Configuration Guide](../architecture/zero-config.md)
- [Troubleshooting Guide](../troubleshooting.md)
-- [API Reference](../api/README.md)
-**Need help?** Check our [troubleshooting guide](../troubleshooting.md) or [open an issue](https://github.com/your-repo/brainy/issues).
\ No newline at end of file
+**Need help?** [Open an issue](https://github.com/soulcraftlabs/brainy/issues)
diff --git a/docs/operations/capacity-planning.md b/docs/operations/capacity-planning.md
index 2f69eb53..3105c87b 100644
--- a/docs/operations/capacity-planning.md
+++ b/docs/operations/capacity-planning.md
@@ -49,10 +49,9 @@ else:
System Memory: 2048 MB
OS Reserved (20%): -410 MB
Available: 1638 MB
-Model Memory (Q8): -150 MB
- ├─ Weights: 22 MB
- ├─ ONNX Runtime: 30 MB
- └─ Workspace: 98 MB
+Model Memory: -140 MB
+ ├─ WASM + Weights: 90 MB
+ └─ Workspace: 50 MB
───────────────────────────
Available for Cache: 1488 MB
Dev Allocation (25%): 372 MB UnifiedCache
diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md
index 1e2e6e12..5fb5ce68 100644
--- a/docs/troubleshooting.md
+++ b/docs/troubleshooting.md
@@ -4,47 +4,48 @@ Common issues and solutions for Brainy.
## 🤖 Model Loading Issues
-### "Failed to load embedding model"
+### "Failed to initialize Candle Embedding Engine"
-**Symptoms**: Error during `brain.init()` with model loading failure.
+**Symptoms**: Error during `brain.init()` with WASM loading failure.
**Causes & Solutions**:
-1. **No local models + remote downloads blocked**
+1. **WASM file missing**
```bash
- # Solution: Download models manually
- npm run download-models
+ # Verify WASM exists (~90MB with embedded model)
+ ls -lh dist/embeddings/wasm/pkg/candle_embeddings_bg.wasm
+
+ # Rebuild if missing
+ npm run build
```
-2. **Network connectivity issues**
+2. **Memory too low**
```bash
- # Solution: Allow remote models
- export BRAINY_ALLOW_REMOTE_MODELS=true
-
- # Or pre-download in connected environment
- npm run download-models
+ # Ensure at least 256MB available
+ # For Docker:
+ docker run -m 512m my-app
```
-3. **Incorrect model path**
+3. **Corrupted WASM**
```bash
- # Check if models exist
- ls ./models/Xenova/all-MiniLM-L6-v2/onnx/model.onnx
-
- # Set correct path
- export BRAINY_MODELS_PATH=/correct/path/to/models
+ # Rebuild the Candle WASM
+ npm run build:candle
+ npm run build
```
-### Models Download Very Slowly
+### Slow Initialization (>500ms)
-**Symptoms**: Long wait times during first initialization.
+**Symptoms**: Long wait times during first `brain.init()`.
+
+**Cause**: WASM parsing takes ~200ms, which is normal for the 90MB file.
**Solutions**:
-```bash
-# Pre-download during build/CI
-npm run download-models
+```typescript
+// Initialize once at startup, not per-request
+await brain.init() // Do this once
-# For Docker - download during image build
-RUN npm run download-models
+// Reuse for all requests
+const results = await brain.find(query)
```
### Container Out of Memory During Model Load
@@ -388,8 +389,8 @@ node -e "console.log(process.memoryUsage())"
# Platform info
node -e "console.log(process.platform, process.arch)"
-# Brainy models
-ls -la ./models/Xenova/all-MiniLM-L6-v2/
+# Verify WASM file exists (model embedded inside)
+ls -la dist/embeddings/wasm/pkg/candle_embeddings_bg.wasm
```
### Report Issues
diff --git a/examples/debug-vector-similarity.js b/examples/debug-vector-similarity.js
deleted file mode 100644
index ff9514cd..00000000
--- a/examples/debug-vector-similarity.js
+++ /dev/null
@@ -1,61 +0,0 @@
-/**
- * Debug script to analyze vector similarity scores for threshold tuning
- */
-
-import { TypeInferenceSystem } from '../dist/query/typeInference.js';
-
-async function debugVectorSimilarity() {
- console.log('🔍 Vector Similarity Threshold Analysis\n');
- console.log('='.repeat(60));
-
- // Create hybrid system with debug enabled
- const system = new TypeInferenceSystem({
- enableVectorFallback: true,
- fallbackConfidenceThreshold: 0.7,
- vectorThreshold: 0.3, // Lower threshold to see more matches
- debug: true
- });
-
- // Test cases: unknown words, typos, medical terms
- const testQueries = [
- 'Find documnets', // Typo: document
- 'Find cardiologists', // Medical: person
- 'Find oncologists', // Medical: person
- 'Find pysicians', // Typo: physician -> person
- 'Find organiztions', // Typo: organization
- 'Find kompanies', // Severe typo: companies -> organization
- 'Find xyzabc', // Completely unknown
- 'neurologist', // Medical single word
- 'cardiologist' // Medical single word
- ];
-
- console.log('\n📊 Testing vector similarity with threshold = 0.3\n');
-
- for (const query of testQueries) {
- console.log(`\nQuery: "${query}"`);
- const start = performance.now();
-
- const results = await system.inferTypesAsync(query);
-
- const elapsed = performance.now() - start;
-
- if (results.length > 0) {
- console.log(` ✅ Matched ${results.length} types in ${elapsed.toFixed(2)}ms:`);
- for (const result of results.slice(0, 3)) {
- console.log(` - ${result.type}: ${(result.confidence * 100).toFixed(1)}% (${result.matchedKeywords.join(', ')})`);
- }
- } else {
- console.log(` ❌ No matches in ${elapsed.toFixed(2)}ms`);
- }
- }
-
- console.log('\n' + '='.repeat(60));
- console.log('✅ Analysis complete! Use these insights to tune thresholds.');
- console.log('='.repeat(60));
-}
-
-debugVectorSimilarity().catch(err => {
- console.error('❌ Error:', err.message);
- console.error(err.stack);
- process.exit(1);
-});
diff --git a/examples/hybrid-type-inference-demo.js b/examples/hybrid-type-inference-demo.js
deleted file mode 100644
index 9bbae00a..00000000
--- a/examples/hybrid-type-inference-demo.js
+++ /dev/null
@@ -1,96 +0,0 @@
-/**
- * Hybrid Type Inference Demo - REAL WORKING EXAMPLE
- *
- * Demonstrates the hybrid TypeInference system with vector similarity fallback
- * actually working end-to-end through the TypeAwareQueryPlanner.
- */
-
-import { TypeAwareQueryPlanner } from '../dist/query/typeAwareQueryPlanner.js';
-import { NounType } from '../dist/types/graphTypes.js';
-
-async function main() {
- console.log('🎯 Hybrid Type Inference Demo\n');
- console.log('='.repeat(60));
-
- // ========== Test 1: Synchronous Mode (Keyword Only) ==========
- console.log('\n📌 Test 1: Synchronous Mode (Keyword Matching Only)\n');
-
- const syncPlanner = new TypeAwareQueryPlanner();
-
- console.log('Query: "Find engineers"');
- const plan1 = syncPlanner.planQuery('Find engineers');
- console.log(`✅ Result: ${plan1.routing} routing`);
- console.log(` Types: ${plan1.targetTypes.join(', ')}`);
- console.log(` Confidence: ${(plan1.confidence * 100).toFixed(0)}%`);
- console.log(` Speedup: ${plan1.estimatedSpeedup.toFixed(1)}x`);
-
- console.log('\nQuery: "Find physicians" (unknown word - will fail in sync mode)');
- const plan2 = syncPlanner.planQuery('Find physicians');
- console.log(`⚠️ Result: ${plan2.routing} routing`);
- console.log(` Types: ${plan2.targetTypes.length} types (searches ALL)`);
- console.log(` Reason: ${plan2.reasoning}`);
-
- // ========== Test 2: Hybrid Mode (Keyword + Vector Fallback) ==========
- console.log('\n\n📌 Test 2: Hybrid Mode (Keyword + Vector Fallback)\n');
-
- const hybridPlanner = new TypeAwareQueryPlanner(undefined, {
- enableVectorFallback: true,
- debug: true,
- typeInferenceConfig: {
- fallbackConfidenceThreshold: 0.7,
- vectorThreshold: 0.5,
- debug: true
- }
- });
-
- console.log('Query: "Find engineers" (known keyword - fast path)');
- const plan3 = await hybridPlanner.planQueryAsync('Find engineers');
- console.log(`✅ Result: ${plan3.routing} routing`);
- console.log(` Types: ${plan3.targetTypes.join(', ')}`);
- console.log(` Confidence: ${(plan3.confidence * 100).toFixed(0)}%`);
-
- console.log('\n\nQuery: "Find physicians" (unknown word - vector fallback!)');
- const plan4 = await hybridPlanner.planQueryAsync('Find physicians');
- console.log(`✅ Result: ${plan4.routing} routing`);
- console.log(` Types: ${plan4.targetTypes.join(', ')}`);
- console.log(` Confidence: ${(plan4.confidence * 100).toFixed(0)}%`);
- console.log(` Speedup: ${plan4.estimatedSpeedup.toFixed(1)}x`);
-
- console.log('\n\nQuery: "Find documnets" (typo - vector fallback handles it!)');
- const plan5 = await hybridPlanner.planQueryAsync('Find documnets');
- console.log(`✅ Result: ${plan5.routing} routing`);
- console.log(` Types: ${plan5.targetTypes.join(', ')}`);
- console.log(` Confidence: ${(plan5.confidence * 100).toFixed(0)}%`);
-
- // ========== Performance Comparison ==========
- console.log('\n\n📌 Performance Comparison\n');
-
- console.log('Synchronous (keyword-only):');
- const start1 = performance.now();
- syncPlanner.planQuery('Find engineers');
- const elapsed1 = performance.now() - start1;
- console.log(` Latency: ${elapsed1.toFixed(2)}ms (fast path)`);
-
- console.log('\nHybrid with known keyword (should use fast path):');
- const start2 = performance.now();
- await hybridPlanner.planQueryAsync('Find engineers');
- const elapsed2 = performance.now() - start2;
- console.log(` Latency: ${elapsed2.toFixed(2)}ms (fast path)`);
-
- console.log('\nHybrid with unknown word (triggers vector fallback):');
- const start3 = performance.now();
- await hybridPlanner.planQueryAsync('Find cardiologists');
- const elapsed3 = performance.now() - start3;
- console.log(` Latency: ${elapsed3.toFixed(2)}ms (includes vector similarity)`);
-
- console.log('\n' + '='.repeat(60));
- console.log('✅ Demo Complete! The hybrid system is ACTUALLY WORKING!');
- console.log('='.repeat(60));
-}
-
-// Run the demo
-main().catch(error => {
- console.error('\n❌ Demo failed:', error.message);
- console.error(error.stack);
- process.exit(1);
-});
diff --git a/examples/production-ready-demo.js b/examples/production-ready-demo.js
deleted file mode 100644
index 33d3b76c..00000000
--- a/examples/production-ready-demo.js
+++ /dev/null
@@ -1,107 +0,0 @@
-/**
- * Production-Ready Hybrid Type Inference - Comprehensive Demo
- *
- * Demonstrates all three inference modes:
- * 1. Fast path: Keyword matching (0.01-0.1ms)
- * 2. Fuzzy path: Edit distance matching for typos (0.1-0.5ms)
- * 3. Vector path: Semantic similarity fallback (50-150ms first call, 2-5ms cached)
- */
-
-import { TypeAwareQueryPlanner } from '../dist/query/typeAwareQueryPlanner.js';
-
-async function comprehensiveDemo() {
- console.log('🎯 Production-Ready Hybrid Type Inference Demo\n');
- console.log('='.repeat(60));
-
- // Initialize hybrid planner
- const planner = new TypeAwareQueryPlanner(undefined, {
- enableVectorFallback: true,
- debug: false,
- typeInferenceConfig: {
- fallbackConfidenceThreshold: 0.7,
- vectorThreshold: 0.3
- }
- });
-
- console.log('\n📌 Test Suite: All Three Inference Modes\n');
-
- // ========== Fast Path: Exact Keywords ==========
- console.log('1️⃣ FAST PATH - Exact keyword matches (0.01-0.1ms)');
- console.log('-'.repeat(60));
-
- const fastTests = [
- 'Find engineers in San Francisco',
- 'Show cardiologists',
- 'List oncologists and neurologists',
- 'Search documents about AI'
- ];
-
- for (const query of fastTests) {
- const start = performance.now();
- const plan = await planner.planQueryAsync(query);
- const elapsed = performance.now() - start;
-
- console.log(` "${query}"`);
- console.log(` → ${plan.routing}: [${plan.targetTypes.join(', ')}]`);
- console.log(` → Confidence: ${(plan.confidence * 100).toFixed(0)}%, Speedup: ${plan.estimatedSpeedup.toFixed(1)}x, Latency: ${elapsed.toFixed(2)}ms\n`);
- }
-
- // ========== Fuzzy Path: Typo Correction ==========
- console.log('\n2️⃣ FUZZY PATH - Typo correction via edit distance (0.1-0.5ms)');
- console.log('-'.repeat(60));
-
- const fuzzyTests = [
- 'Find pysicians', // physician (1 char substitution)
- 'Show organiztions', // organization (2 chars: missing 'a', extra 't')
- 'List enginners', // engineer (1 char: extra 'n')
- 'Search documnets' // documents (1 char: swapped 'n'/'m')
- ];
-
- for (const query of fuzzyTests) {
- const start = performance.now();
- const plan = await planner.planQueryAsync(query);
- const elapsed = performance.now() - start;
-
- console.log(` "${query}"`);
- console.log(` → ${plan.routing}: [${plan.targetTypes.join(', ')}]`);
- console.log(` → Confidence: ${(plan.confidence * 100).toFixed(0)}%, Speedup: ${plan.estimatedSpeedup.toFixed(1)}x, Latency: ${elapsed.toFixed(2)}ms\n`);
- }
-
- // ========== Vector Path: Semantic Fallback ==========
- console.log('\n3️⃣ VECTOR PATH - Semantic similarity fallback (2-150ms)');
- console.log('-'.repeat(60));
-
- const vectorTests = [
- 'Find cardiovascular specialists', // Should match via vector similarity
- 'Search publications', // Should match document
- 'List facilities' // Should match location/organization
- ];
-
- for (const query of vectorTests) {
- const start = performance.now();
- const plan = await planner.planQueryAsync(query);
- const elapsed = performance.now() - start;
-
- console.log(` "${query}"`);
- console.log(` → ${plan.routing}: [${plan.targetTypes.slice(0, 3).join(', ')}${plan.targetTypes.length > 3 ? '...' : ''}]`);
- console.log(` → Confidence: ${(plan.confidence * 100).toFixed(0)}%, Speedup: ${plan.estimatedSpeedup.toFixed(1)}x, Latency: ${elapsed.toFixed(2)}ms\n`);
- }
-
- // ========== Performance Summary ==========
- console.log('\n📊 Performance Summary');
- console.log('-'.repeat(60));
- console.log(' Fast Path (exact match): < 0.1ms ✅ 95% of queries');
- console.log(' Fuzzy Path (typo correction): 0.1-0.5ms ✅ 3-4% of queries');
- console.log(' Vector Path (semantic): 2-150ms ✅ 1-2% of queries');
- console.log(' Weighted Average Latency: ~0.5ms ✅ Production-ready!');
-
- console.log('\n' + '='.repeat(60));
- console.log('✅ All three inference modes working in production!');
- console.log('='.repeat(60));
-}
-
-comprehensiveDemo().catch(error => {
- console.error('\n❌ Demo failed:', error.message);
- console.error(error.stack);
- process.exit(1);
-});
diff --git a/examples/test-threshold-tuning.js b/examples/test-threshold-tuning.js
deleted file mode 100644
index 96716c34..00000000
--- a/examples/test-threshold-tuning.js
+++ /dev/null
@@ -1,77 +0,0 @@
-/**
- * Test different vector thresholds to find optimal balance
- */
-
-import { TypeInferenceSystem } from '../dist/query/typeInference.js';
-
-async function testThresholds() {
- console.log('🎯 Vector Threshold Tuning Test\n');
- console.log('='.repeat(60));
-
- // Test queries: typos and edge cases
- const testCases = [
- { query: 'Find pysicians', expected: 'person', description: 'Typo: physician' },
- { query: 'Find documnets', expected: 'document', description: 'Typo: documents' },
- { query: 'Find organiztions', expected: 'organization', description: 'Typo: organizations' },
- { query: 'Find kompanies', expected: 'organization', description: 'Severe typo: companies' },
- { query: 'Find enginners', expected: 'person', description: 'Typo: engineers' },
- { query: 'Find xyzabc', expected: null, description: 'Nonsense word (should fail)' }
- ];
-
- // Test with different thresholds
- const thresholds = [0.35, 0.30, 0.25, 0.20];
-
- for (const threshold of thresholds) {
- console.log(`\n📊 Testing with vectorThreshold = ${threshold}`);
- console.log('-'.repeat(60));
-
- const system = new TypeInferenceSystem({
- enableVectorFallback: true,
- fallbackConfidenceThreshold: 0.7,
- vectorThreshold: threshold,
- debug: false
- });
-
- let successes = 0;
- let falsePositives = 0;
-
- for (const testCase of testCases) {
- const results = await system.inferTypesAsync(testCase.query);
- const matched = results.length > 0;
- const correctType = results.length > 0 && results[0].type === testCase.expected;
-
- if (testCase.expected === null) {
- // Should NOT match
- if (!matched) {
- successes++;
- console.log(` ✅ "${testCase.query}" correctly returned no matches`);
- } else {
- falsePositives++;
- console.log(` ❌ "${testCase.query}" false positive: ${results[0].type} (${(results[0].confidence * 100).toFixed(1)}%)`);
- }
- } else {
- // Should match expected type
- if (correctType) {
- successes++;
- console.log(` ✅ "${testCase.query}" → ${results[0].type} (${(results[0].confidence * 100).toFixed(1)}%)`);
- } else if (matched) {
- console.log(` ⚠️ "${testCase.query}" → ${results[0].type} (expected ${testCase.expected})`);
- } else {
- console.log(` ❌ "${testCase.query}" no match (expected ${testCase.expected})`);
- }
- }
- }
-
- const accuracy = (successes / testCases.length) * 100;
- console.log(`\n Accuracy: ${successes}/${testCases.length} (${accuracy.toFixed(0)}%), False positives: ${falsePositives}`);
- }
-
- console.log('\n' + '='.repeat(60));
- console.log('✅ Threshold tuning complete!');
- console.log('='.repeat(60));
-}
-
-testThresholds().catch(err => {
- console.error('❌ Error:', err.message);
- process.exit(1);
-});
diff --git a/package.json b/package.json
index 97b2320d..e662c8b0 100644
--- a/package.json
+++ b/package.json
@@ -68,16 +68,16 @@
"bun": ">=1.0.0"
},
"scripts": {
- "build": "npm run build:types:if-needed && npm run build:patterns:if-needed && npm run build:keywords:if-needed && tsc && tsc -p tsconfig.cli.json",
+ "build": "npm run build:types:if-needed && npm run build:patterns:if-needed && tsc && tsc -p tsconfig.cli.json && npm run build:copy-wasm",
+ "build:copy-wasm": "node -e \"const fs=require('fs');const src='src/embeddings/wasm/pkg';const dst='dist/embeddings/wasm/pkg';if(fs.existsSync(src)){fs.mkdirSync(dst,{recursive:true});fs.readdirSync(src).forEach(f=>fs.copyFileSync(src+'/'+f,dst+'/'+f));console.log('Copied WASM pkg to dist')}\"",
"build:types": "tsx scripts/buildTypeEmbeddings.ts",
"build:types:if-needed": "node scripts/check-type-embeddings.cjs || npm run build:types",
"build:types:force": "npm run build:types",
"build:patterns": "tsx scripts/buildEmbeddedPatterns.ts",
"build:patterns:if-needed": "node scripts/check-patterns.cjs || npm run build:patterns",
"build:patterns:force": "npm run build:patterns",
- "build:keywords": "tsx scripts/buildKeywordEmbeddings.ts",
- "build:keywords:if-needed": "node scripts/check-keyword-embeddings.cjs || npm run build:keywords",
- "build:keywords:force": "npm run build:keywords",
+ "build:candle": "./scripts/build-candle-wasm.sh",
+ "build:candle:dev": "./scripts/build-candle-wasm.sh --dev",
"prepare": "npm run build",
"test": "npm run test:unit",
"test:watch": "NODE_OPTIONS='--max-old-space-size=8192' vitest --config tests/configs/vitest.unit.config.ts",
@@ -94,10 +94,7 @@
"test:bun": "bun tests/integration/bun-compile-test.ts",
"test:bun:compile": "bun build tests/integration/bun-compile-test.ts --compile --outfile /tmp/brainy-bun-test && /tmp/brainy-bun-test",
"test:wasm": "npx vitest run tests/integration/wasm-embeddings.test.ts",
- "download-model": "node scripts/download-model.cjs",
- "download-models": "node scripts/download-models.cjs",
- "download-models:q8": "node scripts/download-models.cjs",
- "models:verify": "node scripts/ensure-models.js",
+ "typecheck": "tsc --noEmit",
"lint": "eslint --ext .ts,.js src/",
"lint:fix": "eslint --ext .ts,.js src/ --fix",
"format": "prettier --write \"src/**/*.{ts,js}\"",
@@ -146,12 +143,8 @@
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
+ "dist/**/*.wasm",
"bin/",
- "assets/models/**/*",
- "scripts/download-models.cjs",
- "scripts/download-model.cjs",
- "scripts/ensure-models.js",
- "scripts/prepare-models.js",
"brainy.png",
"LICENSE",
"README.md",
@@ -187,7 +180,6 @@
"@azure/identity": "^4.0.0",
"@azure/storage-blob": "^12.17.0",
"@google-cloud/storage": "^7.14.0",
- "onnxruntime-web": "^1.22.0",
"@msgpack/msgpack": "^3.1.2",
"@types/js-yaml": "^4.0.9",
"boxen": "^8.0.1",
diff --git a/scripts/build-candle-wasm.sh b/scripts/build-candle-wasm.sh
new file mode 100755
index 00000000..0fc3cc6c
--- /dev/null
+++ b/scripts/build-candle-wasm.sh
@@ -0,0 +1,132 @@
+#!/bin/bash
+# Build script for Candle WASM embedding engine
+#
+# Requirements:
+# - Rust toolchain (rustup)
+# - wasm-pack (cargo install wasm-pack)
+# - Build tools (build-essential on Ubuntu/Debian)
+#
+# Usage:
+# ./scripts/build-candle-wasm.sh
+# ./scripts/build-candle-wasm.sh --release
+
+set -euo pipefail
+
+SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
+CANDLE_DIR="$PROJECT_ROOT/src/embeddings/candle-wasm"
+OUTPUT_DIR="$PROJECT_ROOT/src/embeddings/wasm/pkg"
+
+# Colors for output
+RED='\033[0;31m'
+GREEN='\033[0;32m'
+YELLOW='\033[1;33m'
+NC='\033[0m' # No Color
+
+echo -e "${GREEN}Building Candle WASM embedding engine...${NC}"
+
+# Check prerequisites
+check_prerequisites() {
+ local missing=()
+
+ if ! command -v rustc &> /dev/null; then
+ missing+=("rust (install via: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh)")
+ fi
+
+ if ! command -v wasm-pack &> /dev/null; then
+ missing+=("wasm-pack (install via: cargo install wasm-pack)")
+ fi
+
+ if ! command -v cc &> /dev/null && ! command -v gcc &> /dev/null; then
+ missing+=("C compiler (install via: sudo apt-get install build-essential)")
+ fi
+
+ if [ ${#missing[@]} -gt 0 ]; then
+ echo -e "${RED}Missing prerequisites:${NC}"
+ for prereq in "${missing[@]}"; do
+ echo " - $prereq"
+ done
+ exit 1
+ fi
+
+ echo -e "${GREEN}All prerequisites found.${NC}"
+}
+
+# Download model files if not present
+download_model() {
+ local MODEL_DIR="$PROJECT_ROOT/assets/models/all-MiniLM-L6-v2"
+ local SAFETENSORS="$MODEL_DIR/model.safetensors"
+ local TOKENIZER="$MODEL_DIR/tokenizer.json"
+ local CONFIG="$MODEL_DIR/config.json"
+
+ if [ -f "$SAFETENSORS" ] && [ -f "$TOKENIZER" ] && [ -f "$CONFIG" ]; then
+ echo -e "${GREEN}Model files already present.${NC}"
+ return
+ fi
+
+ echo -e "${YELLOW}Downloading model files...${NC}"
+ mkdir -p "$MODEL_DIR"
+
+ # Download from HuggingFace Hub
+ local HF_URL="https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2/resolve/main"
+
+ if [ ! -f "$SAFETENSORS" ]; then
+ curl -L "$HF_URL/model.safetensors" -o "$SAFETENSORS"
+ fi
+
+ if [ ! -f "$TOKENIZER" ]; then
+ curl -L "$HF_URL/tokenizer.json" -o "$TOKENIZER"
+ fi
+
+ if [ ! -f "$CONFIG" ]; then
+ curl -L "$HF_URL/config.json" -o "$CONFIG"
+ fi
+
+ echo -e "${GREEN}Model files downloaded.${NC}"
+}
+
+# Build WASM
+build_wasm() {
+ local BUILD_MODE="${1:-release}"
+
+ echo -e "${GREEN}Building WASM (${BUILD_MODE})...${NC}"
+ cd "$CANDLE_DIR"
+
+ if [ "$BUILD_MODE" = "release" ]; then
+ wasm-pack build --target web --release --out-dir "$OUTPUT_DIR"
+ else
+ wasm-pack build --target web --dev --out-dir "$OUTPUT_DIR"
+ fi
+
+ echo -e "${GREEN}WASM build complete. Output: $OUTPUT_DIR${NC}"
+}
+
+# Main
+main() {
+ local mode="release"
+
+ while [[ $# -gt 0 ]]; do
+ case $1 in
+ --dev|--debug)
+ mode="dev"
+ shift
+ ;;
+ --release)
+ mode="release"
+ shift
+ ;;
+ *)
+ echo "Unknown option: $1"
+ exit 1
+ ;;
+ esac
+ done
+
+ check_prerequisites
+ download_model
+ build_wasm "$mode"
+
+ echo -e "${GREEN}Done! WASM package ready at: $OUTPUT_DIR${NC}"
+}
+
+main "$@"
diff --git a/scripts/buildKeywordEmbeddings.ts b/scripts/buildKeywordEmbeddings.ts
deleted file mode 100644
index fbf115fe..00000000
--- a/scripts/buildKeywordEmbeddings.ts
+++ /dev/null
@@ -1,571 +0,0 @@
-/**
- * Build Keyword Embeddings - Generate pre-computed embeddings for all keywords
- *
- * Extracts keywords from TypeInferenceSystem, adds strategic synonyms,
- * and generates semantic embeddings for fast type inference.
- *
- * Output: src/neural/embeddedKeywordEmbeddings.ts (~2-3MB)
- * Runtime: ~60-90 seconds (one-time build cost)
- */
-
-import { TransformerEmbedding } from '../src/utils/embedding.js'
-import { NounType, VerbType } from '../src/types/graphTypes.js'
-import { writeFileSync } from 'fs'
-import { prodLog } from '../src/utils/logger.js'
-
-interface KeywordDefinition {
- keyword: string
- type: NounType | VerbType
- typeCategory: 'noun' | 'verb'
- confidence: number
- isCanonical: boolean
-}
-
-/**
- * Extract and expand keywords with synonyms (NOUNS + VERBS)
- */
-function buildExpandedKeywordList(): KeywordDefinition[] {
- const keywords: KeywordDefinition[] = []
-
- // Helper to add noun keywords
- const addNoun = (words: string[], type: NounType, confidence: number, isCanonical = true) => {
- for (const word of words) {
- keywords.push({ keyword: word, type, typeCategory: 'noun', confidence, isCanonical })
- }
- }
-
- // Helper to add verb keywords
- const addVerb = (words: string[], type: VerbType, confidence: number, isCanonical = true) => {
- for (const word of words) {
- keywords.push({ keyword: word, type, typeCategory: 'verb', confidence, isCanonical })
- }
- }
-
- // Legacy alias for noun keywords
- const add = addNoun
-
- // ========== Person Type ==========
- // Core professional roles (canonical)
- add(['person', 'people', 'individual', 'human'], NounType.Person, 0.95, true)
- add(['employee', 'worker', 'staff', 'personnel'], NounType.Person, 0.90, true)
-
- // Engineering & Tech
- add(['engineer', 'developer', 'programmer', 'architect', 'designer', 'technician'], NounType.Person, 0.95, true)
- add(['coder', 'techie'], NounType.Person, 0.85, false) // Synonyms
-
- // Medical
- add(['doctor', 'physician', 'surgeon', 'nurse', 'therapist'], NounType.Person, 0.95, true)
- add(['cardiologist', 'oncologist', 'neurologist', 'psychiatrist', 'psychologist'], NounType.Person, 0.90, true)
- add(['radiologist', 'pathologist', 'anesthesiologist', 'dermatologist'], NounType.Person, 0.90, true)
- add(['pediatrician', 'obstetrician', 'gynecologist', 'ophthalmologist'], NounType.Person, 0.90, true)
- add(['dentist', 'orthodontist', 'pharmacist', 'paramedic', 'emt'], NounType.Person, 0.90, true)
- add(['medic', 'practitioner', 'clinician'], NounType.Person, 0.85, false) // Medical synonyms
-
- // Management & Leadership
- add(['manager', 'director', 'executive', 'leader', 'supervisor', 'coordinator'], NounType.Person, 0.95, true)
- add(['ceo', 'cto', 'cfo', 'coo', 'vp', 'president', 'founder', 'owner'], NounType.Person, 0.95, true)
-
- // Professional services
- add(['analyst', 'consultant', 'specialist', 'expert', 'professional'], NounType.Person, 0.90, true)
- add(['lawyer', 'attorney', 'judge', 'paralegal'], NounType.Person, 0.95, true)
- add(['accountant', 'auditor', 'banker', 'trader', 'broker'], NounType.Person, 0.90, true)
- add(['advisor', 'counselor'], NounType.Person, 0.85, false)
-
- // Education & Research
- add(['teacher', 'professor', 'instructor', 'educator', 'tutor'], NounType.Person, 0.95, true)
- add(['student', 'pupil', 'learner', 'trainee', 'intern'], NounType.Person, 0.90, true)
- add(['researcher', 'scientist', 'scholar', 'academic'], NounType.Person, 0.95, true)
-
- // Creative professions
- add(['artist', 'musician', 'painter', 'sculptor', 'performer'], NounType.Person, 0.90, true)
- add(['author', 'writer', 'journalist', 'editor', 'reporter'], NounType.Person, 0.90, true)
-
- // Sales & Marketing
- add(['salesperson', 'marketer', 'recruiter', 'agent'], NounType.Person, 0.85, true)
-
- // Social relationships
- add(['friend', 'colleague', 'coworker', 'teammate', 'partner'], NounType.Person, 0.85, true)
- add(['customer', 'client', 'vendor', 'supplier', 'contractor'], NounType.Person, 0.85, true)
- add(['mentor', 'mentee', 'coach', 'volunteer', 'activist', 'advocate', 'supporter'], NounType.Person, 0.80, true)
-
- // Demographics
- add(['male', 'female', 'adult', 'child', 'teen', 'senior', 'junior'], NounType.Person, 0.75, true)
-
- // Multi-word professions (important for semantic matching)
- add(['software engineer', 'software developer', 'web developer'], NounType.Person, 0.95, true)
- add(['data scientist', 'data engineer', 'machine learning engineer', 'ml engineer'], NounType.Person, 0.95, true)
- add(['product manager', 'project manager', 'engineering manager'], NounType.Person, 0.95, true)
- add(['ux designer', 'ui designer', 'graphic designer'], NounType.Person, 0.90, true)
- add(['medical doctor', 'registered nurse', 'healthcare worker'], NounType.Person, 0.90, false)
-
- // ========== Organization Type ==========
- add(['organization', 'company', 'business', 'corporation', 'enterprise'], NounType.Organization, 0.95, true)
- add(['firm', 'agency', 'bureau', 'office', 'department'], NounType.Organization, 0.90, true)
- add(['startup', 'venture', 'subsidiary', 'branch', 'division'], NounType.Organization, 0.90, true)
- add(['institution', 'foundation', 'association', 'society', 'club'], NounType.Organization, 0.90, true)
- add(['nonprofit', 'ngo', 'charity', 'trust', 'federation'], NounType.Organization, 0.90, true)
- add(['government', 'ministry', 'administration', 'authority'], NounType.Organization, 0.90, true)
- add(['university', 'college', 'school', 'academy', 'institute'], NounType.Organization, 0.90, true)
- add(['hospital', 'clinic', 'medical center'], NounType.Organization, 0.90, true)
- add(['bank', 'credit union'], NounType.Organization, 0.90, true)
- add(['manufacturer', 'factory', 'plant', 'facility'], NounType.Organization, 0.85, true)
- add(['retailer', 'store', 'shop', 'outlet', 'chain'], NounType.Organization, 0.85, true)
- add(['restaurant', 'hotel', 'resort', 'casino'], NounType.Organization, 0.85, true)
- add(['publisher', 'studio', 'gallery', 'museum', 'library'], NounType.Organization, 0.85, true)
- add(['lab', 'laboratory', 'research center'], NounType.Organization, 0.85, true)
- add(['team', 'squad', 'crew', 'group', 'committee'], NounType.Organization, 0.80, true)
-
- // Organization synonyms
- add(['corp', 'inc', 'llc', 'ltd'], NounType.Organization, 0.85, false)
-
- // ========== Location Type ==========
- add(['location', 'place', 'area', 'region', 'zone', 'district'], NounType.Location, 0.90, true)
- add(['city', 'town', 'village', 'municipality', 'metro'], NounType.Location, 0.95, true)
- add(['country', 'nation', 'state', 'province', 'territory'], NounType.Location, 0.95, true)
- add(['county', 'parish', 'prefecture', 'canton'], NounType.Location, 0.85, true)
- add(['continent', 'island', 'peninsula', 'archipelago'], NounType.Location, 0.90, true)
- add(['street', 'road', 'avenue', 'boulevard', 'lane', 'drive'], NounType.Location, 0.85, true)
- add(['address', 'building', 'structure', 'tower', 'complex'], NounType.Location, 0.85, true)
- add(['headquarters', 'hq', 'campus', 'site'], NounType.Location, 0.85, true)
- add(['center', 'venue', 'space', 'room'], NounType.Location, 0.80, true)
- add(['warehouse', 'depot', 'terminal', 'station', 'port'], NounType.Location, 0.85, true)
- add(['park', 'garden', 'plaza', 'square', 'mall'], NounType.Location, 0.85, true)
- add(['neighborhood', 'suburb', 'downtown', 'uptown'], NounType.Location, 0.80, true)
- add(['north', 'south', 'east', 'west', 'central'], NounType.Location, 0.70, true)
- add(['coastal', 'inland', 'urban', 'rural', 'remote'], NounType.Location, 0.70, true)
-
- // Common cities (for better semantic matching)
- add(['san francisco', 'new york', 'los angeles', 'chicago', 'boston'], NounType.Location, 0.95, true)
- add(['seattle', 'austin', 'denver', 'portland', 'miami'], NounType.Location, 0.95, true)
- add(['london', 'paris', 'berlin', 'tokyo', 'beijing'], NounType.Location, 0.95, true)
- add(['silicon valley', 'bay area', 'new york city', 'washington dc'], NounType.Location, 0.95, true)
-
- // ========== Document Type ==========
- add(['document', 'file', 'text', 'writing', 'manuscript'], NounType.Document, 0.95, true)
- add(['report', 'summary', 'brief', 'overview', 'analysis'], NounType.Document, 0.90, true)
- add(['article', 'essay', 'paper', 'publication', 'journal'], NounType.Document, 0.90, true)
- add(['book', 'ebook', 'novel', 'chapter', 'volume'], NounType.Document, 0.90, true)
- add(['manual', 'guide', 'handbook', 'reference', 'documentation'], NounType.Document, 0.90, true)
- add(['tutorial', 'walkthrough', 'instructions'], NounType.Document, 0.85, true)
- add(['specification', 'spec', 'standard', 'protocol'], NounType.Document, 0.85, true)
- add(['proposal', 'pitch', 'presentation', 'slide', 'deck'], NounType.Document, 0.85, true)
- add(['contract', 'agreement', 'license', 'terms', 'policy'], NounType.Document, 0.90, true)
- add(['invoice', 'receipt', 'statement', 'bill', 'voucher'], NounType.Document, 0.85, true)
- add(['form', 'application', 'survey', 'questionnaire'], NounType.Document, 0.85, true)
- add(['transcript', 'minutes', 'record', 'log', 'entry'], NounType.Document, 0.85, true)
- add(['note', 'memo', 'message', 'email', 'letter'], NounType.Document, 0.85, true)
- add(['whitepaper', 'thesis', 'dissertation', 'abstract'], NounType.Document, 0.90, true)
- add(['readme', 'changelog', 'wiki'], NounType.Document, 0.85, true)
- add(['cv', 'resume', 'portfolio', 'profile'], NounType.Document, 0.85, true)
-
- // Document synonyms
- add(['doc', 'docs', 'howto'], NounType.Document, 0.80, false)
-
- // ========== Media Type ==========
- add(['media', 'multimedia', 'content'], NounType.Media, 0.90, true)
- add(['image', 'photo', 'picture', 'photograph', 'illustration'], NounType.Media, 0.90, true)
- add(['graphic', 'icon', 'logo', 'banner', 'thumbnail'], NounType.Media, 0.85, true)
- add(['video', 'movie', 'film', 'clip', 'recording'], NounType.Media, 0.90, true)
- add(['animation', 'gif', 'stream', 'broadcast'], NounType.Media, 0.85, true)
- add(['audio', 'sound', 'music', 'song', 'track', 'album'], NounType.Media, 0.90, true)
- add(['podcast', 'episode', 'audiobook'], NounType.Media, 0.85, true)
- add(['screenshot', 'asset', 'resource', 'attachment'], NounType.Media, 0.80, true)
-
- // ========== Concept Type ==========
- add(['concept', 'idea', 'notion', 'theory', 'principle'], NounType.Concept, 0.90, true)
- add(['philosophy', 'ideology', 'belief', 'doctrine'], NounType.Concept, 0.85, true)
- add(['topic', 'subject', 'theme', 'matter', 'issue'], NounType.Concept, 0.85, true)
- add(['category', 'classification', 'taxonomy', 'domain'], NounType.Concept, 0.80, true)
- add(['field', 'discipline', 'specialty'], NounType.Concept, 0.85, true)
- add(['technology', 'tech', 'innovation', 'invention'], NounType.Concept, 0.90, true)
- add(['science', 'scientific', 'research'], NounType.Concept, 0.90, true)
-
- // Scientific domains
- add(['mathematics', 'math', 'statistics', 'algebra', 'calculus'], NounType.Concept, 0.85, true)
- add(['physics', 'quantum', 'mechanics', 'thermodynamics'], NounType.Concept, 0.85, true)
- add(['chemistry', 'biology', 'genetics', 'neuroscience'], NounType.Concept, 0.85, true)
- add(['engineering', 'architecture', 'design'], NounType.Concept, 0.85, true)
-
- // Computer science
- add(['computer science', 'programming', 'algorithm'], NounType.Concept, 0.90, true)
- add(['artificial intelligence', 'machine learning', 'deep learning'], NounType.Concept, 0.95, true)
- add(['ai', 'ml'], NounType.Concept, 0.90, true)
- add(['data science', 'analytics', 'big data'], NounType.Concept, 0.90, true)
- add(['natural language processing', 'computer vision'], NounType.Concept, 0.90, true)
-
- // Humanities
- add(['history', 'literature', 'poetry', 'fiction'], NounType.Concept, 0.85, true)
- add(['art', 'music', 'sports'], NounType.Concept, 0.85, true)
- add(['politics', 'economics', 'psychology', 'sociology'], NounType.Concept, 0.85, true)
- add(['religion', 'spiritual', 'philosophy'], NounType.Concept, 0.85, true)
-
- // ========== Event Type ==========
- add(['event', 'occasion', 'happening', 'occurrence'], NounType.Event, 0.90, true)
- add(['meeting', 'conference', 'summit', 'convention'], NounType.Event, 0.90, true)
- add(['seminar', 'symposium', 'forum', 'workshop'], NounType.Event, 0.90, true)
- add(['training', 'bootcamp', 'course', 'webinar'], NounType.Event, 0.85, true)
- add(['presentation', 'talk', 'lecture', 'session', 'class'], NounType.Event, 0.85, true)
- add(['party', 'celebration', 'gathering', 'ceremony'], NounType.Event, 0.85, true)
- add(['festival', 'carnival', 'fair', 'exhibition'], NounType.Event, 0.85, true)
- add(['concert', 'performance', 'show'], NounType.Event, 0.85, true)
- add(['game', 'match', 'tournament', 'championship', 'race'], NounType.Event, 0.85, true)
- add(['launch', 'release', 'premiere', 'debut', 'announcement'], NounType.Event, 0.85, true)
-
- // ========== Product Type ==========
- add(['product', 'item', 'goods', 'merchandise', 'commodity'], NounType.Product, 0.90, true)
- add(['offering', 'solution', 'package', 'bundle'], NounType.Product, 0.85, true)
- add(['software', 'app', 'application', 'program', 'tool'], NounType.Product, 0.90, true)
- add(['platform', 'system', 'framework', 'library'], NounType.Product, 0.85, true)
- add(['device', 'gadget', 'machine', 'equipment'], NounType.Product, 0.85, true)
- add(['hardware', 'component', 'part', 'accessory'], NounType.Product, 0.85, true)
- add(['vehicle', 'car', 'automobile', 'truck', 'bike'], NounType.Product, 0.85, true)
- add(['phone', 'smartphone', 'mobile', 'tablet'], NounType.Product, 0.90, true)
- add(['computer', 'laptop', 'desktop', 'pc', 'mac'], NounType.Product, 0.90, true)
- add(['watch', 'wearable', 'tracker', 'monitor'], NounType.Product, 0.85, true)
- add(['camera', 'lens', 'sensor', 'scanner'], NounType.Product, 0.85, true)
-
- // ========== Service Type ==========
- add(['service', 'support', 'assistance'], NounType.Service, 0.90, true)
- add(['consulting', 'advisory', 'guidance'], NounType.Service, 0.85, true)
- add(['maintenance', 'repair', 'installation', 'setup'], NounType.Service, 0.85, true)
- add(['hosting', 'cloud', 'saas', 'paas', 'iaas'], NounType.Service, 0.85, true)
- add(['delivery', 'shipping', 'logistics', 'transport'], NounType.Service, 0.85, true)
- add(['subscription', 'membership', 'plan'], NounType.Service, 0.85, true)
- add(['training', 'education', 'coaching', 'mentoring'], NounType.Service, 0.85, true)
- add(['healthcare', 'medical', 'dental', 'therapy'], NounType.Service, 0.85, true)
- add(['legal', 'accounting', 'financial', 'insurance'], NounType.Service, 0.85, true)
- add(['marketing', 'advertising', 'promotion'], NounType.Service, 0.85, true)
-
- // ========== User Type ==========
- add(['user', 'account', 'profile', 'identity'], NounType.Person, 0.90, true)
- add(['username', 'login', 'credential'], NounType.Person, 0.85, true)
- add(['subscriber', 'follower', 'fan', 'supporter'], NounType.Person, 0.85, true)
- add(['member', 'participant', 'contributor', 'author'], NounType.Person, 0.85, true)
- add(['viewer', 'reader', 'listener', 'watcher'], NounType.Person, 0.80, true)
- add(['player', 'gamer', 'competitor'], NounType.Person, 0.80, true)
- add(['guest', 'visitor', 'attendee'], NounType.Person, 0.80, true)
-
- // ========== Task & Project Types ==========
- add(['task', 'todo', 'action', 'activity', 'job'], NounType.Task, 0.85, true)
- add(['assignment', 'duty', 'work'], NounType.Task, 0.85, true)
- add(['ticket', 'issue', 'bug', 'defect', 'problem'], NounType.Task, 0.85, true)
- add(['feature', 'enhancement', 'improvement', 'request'], NounType.Task, 0.85, true)
- add(['project', 'program', 'initiative'], NounType.Project, 0.90, true)
- add(['campaign', 'drive', 'venture'], NounType.Project, 0.85, true)
- add(['plan', 'strategy', 'roadmap'], NounType.Project, 0.85, true)
- add(['milestone', 'deliverable', 'objective', 'goal'], NounType.Project, 0.85, true)
- add(['sprint', 'iteration', 'cycle', 'phase'], NounType.Project, 0.80, true)
-
- // ========== Other Types ==========
- add(['process', 'procedure', 'method', 'approach'], NounType.Process, 0.80, true)
- add(['workflow', 'pipeline', 'sequence'], NounType.Process, 0.80, true)
- add(['algorithm', 'logic', 'routine', 'operation'], NounType.Process, 0.75, true)
-
- add(['collection', 'set', 'group', 'batch'], NounType.Collection, 0.80, true)
- add(['list', 'array', 'series'], NounType.Collection, 0.80, true)
- add(['dataset', 'data', 'database'], NounType.Collection, 0.85, true)
- add(['repository', 'archive', 'library'], NounType.Collection, 0.80, true)
-
- add(['state', 'status', 'condition'], NounType.State, 0.75, true)
- add(['active', 'inactive', 'pending', 'completed'], NounType.State, 0.70, true)
-
- add(['role', 'position', 'title'], NounType.Role, 0.80, true)
- add(['permission', 'access', 'privilege'], NounType.Role, 0.75, true)
-
- add(['hypothesis', 'theory', 'conjecture'], NounType.Hypothesis, 0.85, true)
- add(['experiment', 'study', 'trial', 'test'], NounType.Experiment, 0.85, true)
- add(['regulation', 'rule', 'law', 'statute'], NounType.Regulation, 0.85, true)
- add(['interface', 'api', 'endpoint'], NounType.Interface, 0.85, true)
- add(['resource', 'asset', 'capacity'], NounType.Resource, 0.80, true)
-
- // ==================== VERB TYPES ====================
- // Now add all 127 VerbTypes with keywords and synonyms
-
- console.log('\n Adding verb keywords...')
-
- // ========== Core Relationship Types ==========
- addVerb(['related to', 'related', 'connected to', 'associated with', 'linked to'], VerbType.RelatedTo, 0.90, true)
- addVerb(['connection', 'association', 'link', 'relationship'], VerbType.RelatedTo, 0.85, false)
-
- addVerb(['contains', 'includes', 'has', 'comprises', 'encompasses'], VerbType.Contains, 0.95, true)
- addVerb(['holding', 'containing', 'including'], VerbType.Contains, 0.85, false)
-
- addVerb(['part of', 'belongs to', 'component of', 'element of', 'member of'], VerbType.PartOf, 0.95, true)
- addVerb(['within', 'inside', 'subset of'], VerbType.PartOf, 0.85, false)
-
- addVerb(['located at', 'positioned at', 'situated at', 'found at', 'based at'], VerbType.LocatedAt, 0.95, true)
- addVerb(['location', 'position', 'whereabouts'], VerbType.LocatedAt, 0.85, false)
-
- addVerb(['references', 'cites', 'refers to', 'mentions', 'points to'], VerbType.References, 0.95, true)
- addVerb(['citation', 'reference', 'pointer'], VerbType.References, 0.85, false)
-
- // ========== Temporal/Causal Types ==========
- addVerb(['precedes', 'comes before', 'happens before', 'leads to', 'prior to'], VerbType.Precedes, 0.90, true)
- addVerb(['preceding', 'earlier than', 'before'], VerbType.Precedes, 0.85, false)
-
- addVerb(['succeeds', 'comes after', 'follows', 'happens after', 'subsequent to'], VerbType.Precedes, 0.90, true)
- addVerb(['succeeding', 'later than', 'after'], VerbType.Precedes, 0.85, false)
-
- addVerb(['causes', 'results in', 'leads to', 'brings about', 'triggers'], VerbType.Causes, 0.95, true)
- addVerb(['influences', 'affects', 'impacts', 'produces'], VerbType.Causes, 0.90, true)
- addVerb(['causation', 'consequence', 'effect'], VerbType.Causes, 0.85, false)
-
- addVerb(['depends on', 'relies on', 'contingent on', 'conditional on'], VerbType.DependsOn, 0.95, true)
- addVerb(['dependency', 'reliance', 'dependence'], VerbType.DependsOn, 0.85, false)
-
- addVerb(['requires', 'needs', 'necessitates', 'demands', 'calls for'], VerbType.Requires, 0.95, true)
- addVerb(['requirement', 'necessity', 'prerequisite'], VerbType.Requires, 0.85, false)
-
- // ========== Creation/Transformation Types ==========
- addVerb(['creates', 'makes', 'builds', 'produces', 'generates'], VerbType.Creates, 0.95, true)
- addVerb(['constructs', 'develops', 'crafts', 'forms'], VerbType.Creates, 0.90, true)
- addVerb(['creation', 'production', 'generation'], VerbType.Creates, 0.85, false)
-
- addVerb(['transforms', 'converts', 'changes', 'morphs', 'alters'], VerbType.Transforms, 0.95, true)
- addVerb(['transformation', 'conversion', 'metamorphosis'], VerbType.Transforms, 0.85, false)
-
- addVerb(['becomes', 'turns into', 'evolves into', 'transitions to'], VerbType.Becomes, 0.95, true)
- addVerb(['becoming', 'transition', 'evolution'], VerbType.Becomes, 0.85, false)
-
- addVerb(['modifies', 'updates', 'changes', 'edits', 'adjusts'], VerbType.Modifies, 0.95, true)
- addVerb(['alters', 'amends', 'revises', 'tweaks'], VerbType.Modifies, 0.90, true)
- addVerb(['modification', 'update', 'change'], VerbType.Modifies, 0.85, false)
-
- addVerb(['consumes', 'uses up', 'depletes', 'exhausts', 'drains'], VerbType.Consumes, 0.95, true)
- addVerb(['consumption', 'usage', 'depletion'], VerbType.Consumes, 0.85, false)
-
- // ========== Ownership/Attribution Types ==========
- addVerb(['owns', 'possesses', 'holds', 'controls', 'has'], VerbType.Owns, 0.95, true)
- addVerb(['ownership', 'possession', 'control'], VerbType.Owns, 0.85, false)
-
- addVerb(['attributed to', 'credited to', 'ascribed to', 'assigned to'], VerbType.AttributedTo, 0.95, true)
- addVerb(['attribution', 'credit', 'acknowledgment'], VerbType.AttributedTo, 0.85, false)
-
- addVerb(['created by', 'made by', 'built by', 'authored by', 'developed by'], VerbType.Creates, 0.95, true)
- addVerb(['creator', 'author', 'maker'], VerbType.Creates, 0.85, false)
-
- addVerb(['belongs to', 'owned by', 'property of', 'part of'], VerbType.Owns, 0.95, true)
- addVerb(['belonging', 'membership'], VerbType.Owns, 0.85, false)
-
- // ========== Social/Organizational Types ==========
- addVerb(['member of', 'belongs to', 'affiliated with', 'part of'], VerbType.MemberOf, 0.95, true)
- addVerb(['works for', 'employed by', 'serves'], VerbType.MemberOf, 0.90, true)
- addVerb(['membership', 'affiliation'], VerbType.MemberOf, 0.85, false)
-
- addVerb(['works with', 'collaborates with', 'partners with', 'cooperates with'], VerbType.WorksWith, 0.95, true)
- addVerb(['teams with', 'joins forces with'], VerbType.WorksWith, 0.90, true)
- addVerb(['collaboration', 'partnership', 'cooperation'], VerbType.WorksWith, 0.85, false)
-
- addVerb(['friend of', 'friends with', 'befriends', 'friendly with'], VerbType.FriendOf, 0.95, true)
- addVerb(['friendship', 'companionship'], VerbType.FriendOf, 0.85, false)
-
- addVerb(['follows', 'tracks', 'monitors', 'subscribes to', 'watches'], VerbType.Follows, 0.95, true)
- addVerb(['following', 'follower', 'subscriber'], VerbType.Follows, 0.85, false)
-
- addVerb(['likes', 'enjoys', 'prefers', 'favors', 'appreciates'], VerbType.Likes, 0.95, true)
- addVerb(['fond of', 'partial to'], VerbType.Likes, 0.90, true)
-
- addVerb(['reports to', 'answers to', 'subordinate to', 'under'], VerbType.ReportsTo, 0.95, true)
- addVerb(['reporting', 'subordination'], VerbType.ReportsTo, 0.85, false)
-
- addVerb(['supervises', 'manages', 'oversees', 'directs', 'leads'], VerbType.ReportsTo, 0.95, true)
- addVerb(['supervision', 'management', 'oversight'], VerbType.ReportsTo, 0.85, false)
-
- addVerb(['mentors', 'coaches', 'guides', 'advises', 'teaches'], VerbType.Mentors, 0.95, true)
- addVerb(['mentorship', 'coaching', 'guidance'], VerbType.Mentors, 0.85, false)
-
- addVerb(['communicates with', 'talks to', 'corresponds with', 'exchanges with'], VerbType.Communicates, 0.95, true)
- addVerb(['speaks with', 'chats with', 'discusses with'], VerbType.Communicates, 0.90, true)
- addVerb(['communication', 'correspondence', 'dialogue'], VerbType.Communicates, 0.85, false)
-
- // ========== Descriptive/Functional Types ==========
- addVerb(['describes', 'explains', 'details', 'characterizes', 'portrays'], VerbType.Describes, 0.95, true)
- addVerb(['depicts', 'illustrates', 'outlines'], VerbType.Describes, 0.90, true)
- addVerb(['description', 'explanation', 'account'], VerbType.Describes, 0.85, false)
-
- addVerb(['defines', 'specifies', 'determines', 'establishes', 'sets'], VerbType.Defines, 0.95, true)
- addVerb(['definition', 'specification', 'determination'], VerbType.Defines, 0.85, false)
-
- addVerb(['categorizes', 'classifies', 'groups', 'sorts', 'organizes'], VerbType.Categorizes, 0.95, true)
- addVerb(['categorization', 'classification', 'taxonomy'], VerbType.Categorizes, 0.85, false)
-
- addVerb(['measures', 'quantifies', 'gauges', 'assesses', 'evaluates'], VerbType.Measures, 0.95, true)
- addVerb(['measurement', 'quantification', 'assessment'], VerbType.Measures, 0.85, false)
-
- addVerb(['evaluates', 'assesses', 'judges', 'appraises', 'reviews'], VerbType.Evaluates, 0.95, true)
- addVerb(['rates', 'scores', 'critiques'], VerbType.Evaluates, 0.90, true)
- addVerb(['evaluation', 'assessment', 'appraisal'], VerbType.Evaluates, 0.85, false)
-
- addVerb(['uses', 'utilizes', 'employs', 'applies', 'leverages'], VerbType.Uses, 0.95, true)
- addVerb(['usage', 'utilization', 'application'], VerbType.Uses, 0.85, false)
-
- addVerb(['implements', 'executes', 'realizes', 'enacts', 'carries out'], VerbType.Implements, 0.95, true)
- addVerb(['implementation', 'execution', 'realization'], VerbType.Implements, 0.85, false)
-
- addVerb(['extends', 'expands', 'broadens', 'enlarges', 'builds on'], VerbType.Extends, 0.95, true)
- addVerb(['enhances', 'augments', 'amplifies'], VerbType.Extends, 0.90, true)
- addVerb(['extension', 'expansion', 'enhancement'], VerbType.Extends, 0.85, false)
-
- // ========== Enhanced Relationship Types ==========
- addVerb(['inherits', 'derives from', 'inherits from', 'descended from'], VerbType.Inherits, 0.95, true)
- addVerb(['inheritance', 'derivation', 'legacy'], VerbType.Inherits, 0.85, false)
-
- addVerb(['conflicts with', 'contradicts', 'opposes', 'clashes with'], VerbType.Conflicts, 0.95, true)
- addVerb(['disagrees with', 'incompatible with'], VerbType.Conflicts, 0.90, true)
- addVerb(['conflict', 'contradiction', 'opposition'], VerbType.Conflicts, 0.85, false)
-
- addVerb(['synchronizes with', 'coordinates with', 'syncs with', 'aligns with'], VerbType.Synchronizes, 0.95, true)
- addVerb(['synchronization', 'coordination', 'alignment'], VerbType.Synchronizes, 0.85, false)
-
- addVerb(['competes with', 'rivals', 'contests', 'vies with'], VerbType.Competes, 0.95, true)
- addVerb(['competition', 'rivalry', 'contest'], VerbType.Competes, 0.85, false)
-
- return keywords
-}
-
-/**
- * Main build function
- */
-async function buildKeywordEmbeddings() {
- console.log('🔨 Building Keyword Embeddings for Semantic Type Inference\n')
- console.log('='.repeat(70))
-
- // Step 1: Build keyword list
- console.log('\n📝 Step 1: Building expanded keyword dictionary...')
- const keywords = buildExpandedKeywordList()
-
- const canonical = keywords.filter(k => k.isCanonical).length
- const synonyms = keywords.filter(k => !k.isCanonical).length
-
- console.log(`✅ Generated ${keywords.length} keywords (${canonical} canonical, ${synonyms} synonyms)`)
-
- // Step 2: Initialize embedder
- console.log('\n🎯 Step 2: Initializing TransformerEmbedding model...')
- const embedder = new TransformerEmbedding({ verbose: true })
- await embedder.init()
- console.log('✅ Embedder initialized')
-
- // Step 3: Generate embeddings
- console.log(`\n🚀 Step 3: Generating embeddings for ${keywords.length} keywords...`)
- console.log('(This may take 60-90 seconds)\n')
-
- const embeddings = []
- let processed = 0
- const startTime = Date.now()
-
- for (const def of keywords) {
- const embedding = await embedder.embed(def.keyword)
-
- embeddings.push({
- keyword: def.keyword,
- type: def.type,
- typeCategory: def.typeCategory,
- confidence: def.confidence,
- isCanonical: def.isCanonical,
- embedding: Array.from(embedding)
- })
-
- processed++
- if (processed % 50 === 0) {
- const elapsed = ((Date.now() - startTime) / 1000).toFixed(1)
- const rate = (processed / (Date.now() - startTime) * 1000).toFixed(1)
- const eta = ((keywords.length - processed) / parseFloat(rate)).toFixed(0)
- console.log(` Progress: ${processed}/${keywords.length} (${(processed/keywords.length*100).toFixed(1)}%) - ${rate}/sec - ETA: ${eta}s`)
- }
- }
-
- const totalTime = ((Date.now() - startTime) / 1000).toFixed(1)
- console.log(`\n✅ All embeddings generated in ${totalTime}s`)
-
- // Step 4: Generate TypeScript file
- console.log('\n📄 Step 4: Writing embeddedKeywordEmbeddings.ts...')
-
- const sizeKB = (embeddings.length * 384 * 4 / 1024).toFixed(1)
- const sizeMB = (parseFloat(sizeKB) / 1024).toFixed(2)
-
- // Calculate stats
- const nounKeywords = embeddings.filter(e => e.typeCategory === 'noun').length
- const verbKeywords = embeddings.filter(e => e.typeCategory === 'verb').length
- const canonicalKeywords = embeddings.filter(e => e.isCanonical).length
- const synonymKeywords = embeddings.filter(e => !e.isCanonical).length
-
- const output = `/**
- * Pre-computed Keyword Embeddings for Unified Semantic Type Inference
- *
- * Generated by: scripts/buildKeywordEmbeddings.ts
- * Generated on: ${new Date().toISOString()}
- * Total keywords: ${embeddings.length} (${nounKeywords} nouns + ${verbKeywords} verbs)
- * Canonical: ${canonicalKeywords}, Synonyms: ${synonymKeywords}
- * Embedding dimension: 384
- * Total size: ${sizeMB}MB
- *
- * This file contains pre-computed semantic embeddings for ALL type inference keywords.
- * Supports unified noun + verb semantic inference via SemanticTypeInference.
- * Used for O(log n) semantic matching via HNSW index.
- */
-
-import { NounType, VerbType } from '../types/graphTypes.js'
-import { Vector } from '../coreTypes.js'
-
-export interface KeywordEmbedding {
- keyword: string
- type: NounType | VerbType
- typeCategory: 'noun' | 'verb'
- confidence: number
- isCanonical: boolean
- embedding: Vector
-}
-
-// Use 'any' type to avoid TypeScript union complexity issues with 1050+ literal types
-const KEYWORD_EMBEDDINGS: any = ${JSON.stringify(embeddings, null, 2)}
-
-export function getKeywordEmbeddings(): KeywordEmbedding[] {
- return KEYWORD_EMBEDDINGS
-}
-
-export function getKeywordCount(): number {
- return KEYWORD_EMBEDDINGS.length
-}
-
-export function getNounKeywordCount(): number {
- return ${nounKeywords}
-}
-
-export function getVerbKeywordCount(): number {
- return ${verbKeywords}
-}
-
-export function getEmbeddingDimension(): number {
- return 384
-}
-`
-
- writeFileSync('src/neural/embeddedKeywordEmbeddings.ts', output, 'utf-8')
-
- console.log(`✅ Generated src/neural/embeddedKeywordEmbeddings.ts`)
- console.log(` Total keywords: ${embeddings.length} (${nounKeywords} nouns + ${verbKeywords} verbs)`)
- console.log(` Canonical: ${canonicalKeywords}, Synonyms: ${synonymKeywords}`)
- console.log(` Size: ${sizeMB}MB (${sizeKB}KB)`)
-
- console.log('\n' + '='.repeat(70))
- console.log('✅ Keyword embeddings build complete!')
- console.log('='.repeat(70))
-
- return embeddings.length
-}
-
-// Run if called directly
-if (import.meta.url === `file://${process.argv[1]}`) {
- buildKeywordEmbeddings()
- .then(count => {
- console.log(`\n🎉 Success! Generated embeddings for ${count} keywords.`)
- process.exit(0)
- })
- .catch(error => {
- console.error('\n❌ Build failed:', error.message)
- console.error(error.stack)
- process.exit(1)
- })
-}
-
-export { buildKeywordEmbeddings }
diff --git a/scripts/check-keyword-embeddings.cjs b/scripts/check-keyword-embeddings.cjs
deleted file mode 100644
index dab28aaa..00000000
--- a/scripts/check-keyword-embeddings.cjs
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
- * Check if keyword embeddings need to be rebuilt
- * Exits with code 1 if rebuild needed, 0 if up-to-date
- */
-
-const fs = require('fs')
-const path = require('path')
-
-const EMBEDDED_FILE = 'src/neural/embeddedKeywordEmbeddings.ts'
-const BUILD_SCRIPT = 'scripts/buildKeywordEmbeddings.ts'
-
-const embeddedPath = path.join(process.cwd(), EMBEDDED_FILE)
-const buildScriptPath = path.join(process.cwd(), BUILD_SCRIPT)
-
-// Check if embedded file exists
-if (!fs.existsSync(embeddedPath)) {
- console.log('⚠️ Keyword embeddings file not found. Build required.')
- process.exit(1)
-}
-
-// Check if build script is newer than embedded file
-const embeddedStat = fs.statSync(embeddedPath)
-const buildScriptStat = fs.statSync(buildScriptPath)
-
-if (buildScriptStat.mtime > embeddedStat.mtime) {
- console.log('⚠️ Build script is newer than keyword embeddings. Rebuild required.')
- process.exit(1)
-}
-
-console.log('✅ Embedded keyword embeddings are up-to-date. Skipping rebuild.')
-process.exit(0)
diff --git a/scripts/download-model.cjs b/scripts/download-model.cjs
deleted file mode 100644
index 652c41ed..00000000
--- a/scripts/download-model.cjs
+++ /dev/null
@@ -1,175 +0,0 @@
-#!/usr/bin/env node
-/**
- * Download Model Assets
- *
- * Downloads the all-MiniLM-L6-v2 Q8 model from Hugging Face.
- * Run: node scripts/download-model.cjs
- */
-
-const fs = require('node:fs')
-const path = require('node:path')
-const https = require('node:https')
-
-const MODEL_DIR = path.join(__dirname, '..', 'assets', 'models', 'all-MiniLM-L6-v2-q8')
-const BASE_URL = 'https://huggingface.co/Xenova/all-MiniLM-L6-v2/resolve/main/onnx'
-
-const FILES = [
- {
- name: 'model_quantized.onnx',
- url: `${BASE_URL}/model_quantized.onnx`,
- dest: 'model.onnx',
- },
- {
- name: 'tokenizer.json',
- url: 'https://huggingface.co/Xenova/all-MiniLM-L6-v2/resolve/main/tokenizer.json',
- dest: 'tokenizer.json',
- },
- {
- name: 'config.json',
- url: 'https://huggingface.co/Xenova/all-MiniLM-L6-v2/resolve/main/config.json',
- dest: 'config.json',
- },
- {
- name: 'vocab.txt',
- url: 'https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2/resolve/main/vocab.txt',
- dest: 'vocab.txt',
- },
-]
-
-/**
- * Follow redirects and download file
- */
-function downloadFile(url, destPath, maxRedirects = 5) {
- return new Promise((resolve, reject) => {
- if (maxRedirects === 0) {
- reject(new Error('Too many redirects'))
- return
- }
-
- const doRequest = (reqUrl) => {
- const parsedUrl = new URL(reqUrl)
- const options = {
- hostname: parsedUrl.hostname,
- path: parsedUrl.pathname + parsedUrl.search,
- headers: {
- 'User-Agent': 'Brainy-Model-Downloader/1.0',
- },
- }
-
- https.get(options, (response) => {
- // Handle redirects
- if (response.statusCode >= 300 && response.statusCode < 400 && response.headers.location) {
- response.resume() // Consume response data to free memory
- const redirectUrl = response.headers.location.startsWith('http')
- ? response.headers.location
- : new URL(response.headers.location, reqUrl).toString()
- console.log(` ↳ Redirecting to: ${redirectUrl.slice(0, 80)}...`)
- downloadFile(redirectUrl, destPath, maxRedirects - 1)
- .then(resolve)
- .catch(reject)
- return
- }
-
- if (response.statusCode !== 200) {
- reject(new Error(`HTTP ${response.statusCode}`))
- return
- }
-
- const fileStream = fs.createWriteStream(destPath)
- let downloadedBytes = 0
- const totalBytes = parseInt(response.headers['content-length'] || '0', 10)
-
- response.on('data', (chunk) => {
- downloadedBytes += chunk.length
- if (totalBytes > 0) {
- const percent = Math.round((downloadedBytes / totalBytes) * 100)
- process.stdout.write(`\r Progress: ${percent}% (${Math.round(downloadedBytes / 1024 / 1024)}MB)`)
- }
- })
-
- response.pipe(fileStream)
-
- fileStream.on('finish', () => {
- fileStream.close()
- console.log(`\n ✅ Downloaded: ${path.basename(destPath)} (${Math.round(downloadedBytes / 1024 / 1024)}MB)`)
- resolve()
- })
-
- fileStream.on('error', (err) => {
- fs.unlink(destPath, () => {}) // Delete partial file
- reject(err)
- })
- }).on('error', reject)
- }
-
- doRequest(url)
- })
-}
-
-/**
- * Convert vocab.txt to vocab.json
- */
-function convertVocabToJson(vocabTxtPath, vocabJsonPath) {
- console.log('📝 Converting vocab.txt to vocab.json...')
- const content = fs.readFileSync(vocabTxtPath, 'utf-8')
- const lines = content.split('\n').filter(line => line.trim())
-
- const vocab = {}
- for (let i = 0; i < lines.length; i++) {
- vocab[lines[i]] = i
- }
-
- fs.writeFileSync(vocabJsonPath, JSON.stringify(vocab))
- console.log(` ✅ Created vocab.json with ${Object.keys(vocab).length} tokens`)
-
- // Remove vocab.txt since we have vocab.json
- fs.unlinkSync(vocabTxtPath)
-}
-
-async function main() {
- console.log('🔽 Downloading all-MiniLM-L6-v2 Q8 model assets...\n')
-
- // Create model directory
- fs.mkdirSync(MODEL_DIR, { recursive: true })
- console.log(`📁 Model directory: ${MODEL_DIR}\n`)
-
- // Download each file
- for (const file of FILES) {
- const destPath = path.join(MODEL_DIR, file.dest)
-
- // Check if already exists
- if (fs.existsSync(destPath)) {
- const stats = fs.statSync(destPath)
- if (stats.size > 0) {
- console.log(`⏭️ Skipping ${file.name} (already exists)`)
- continue
- }
- }
-
- console.log(`📥 Downloading ${file.name}...`)
- try {
- await downloadFile(file.url, destPath)
- } catch (error) {
- console.error(` ❌ Failed to download ${file.name}: ${error.message}`)
- process.exit(1)
- }
- }
-
- // Convert vocab.txt to vocab.json
- const vocabTxtPath = path.join(MODEL_DIR, 'vocab.txt')
- const vocabJsonPath = path.join(MODEL_DIR, 'vocab.json')
- if (fs.existsSync(vocabTxtPath) && !fs.existsSync(vocabJsonPath)) {
- convertVocabToJson(vocabTxtPath, vocabJsonPath)
- }
-
- console.log('\n✅ All model assets downloaded successfully!')
- console.log('\nModel files:')
- const files = fs.readdirSync(MODEL_DIR)
- for (const file of files) {
- const stats = fs.statSync(path.join(MODEL_DIR, file))
- const sizeMB = (stats.size / 1024 / 1024).toFixed(2)
- console.log(` - ${file}: ${sizeMB}MB`)
- }
-}
-
-main().catch(console.error)
diff --git a/scripts/download-models.cjs b/scripts/download-models.cjs
deleted file mode 100755
index 0a7f8523..00000000
--- a/scripts/download-models.cjs
+++ /dev/null
@@ -1,264 +0,0 @@
-#!/usr/bin/env node
-/**
- * Download and bundle models for offline usage
- */
-
-const fs = require('fs').promises
-const path = require('path')
-
-const MODEL_NAME = 'Xenova/all-MiniLM-L6-v2'
-const OUTPUT_DIR = './models'
-
-// Always download Q8 model only
-const downloadType = 'q8'
-
-async function downloadModels() {
- // Use dynamic import for ES modules in CommonJS
- const { pipeline, env } = await import('@huggingface/transformers')
-
- // Configure transformers.js to use local cache
- env.cacheDir = './models-cache'
- env.allowRemoteModels = true
-
- try {
- console.log('🧠 Brainy Model Downloader v2.8.0')
- console.log('===================================')
- console.log(` Model: ${MODEL_NAME}`)
- console.log(` Type: Q8 (optimized, 99% accuracy)`)
- console.log(` Cache: ${env.cacheDir}`)
- console.log('')
-
- // Create output directory
- await fs.mkdir(OUTPUT_DIR, { recursive: true })
-
- // Download Q8 model only
- console.log('📥 Downloading Q8 model (quantized, 33MB, 99% accuracy)...')
- await downloadModelVariant('q8')
-
- // Copy ALL model files from cache to our models directory
- console.log('📋 Copying model files to bundle directory...')
-
- const cacheDir = path.resolve(env.cacheDir)
- const outputDir = path.resolve(OUTPUT_DIR)
-
- console.log(` From: ${cacheDir}`)
- console.log(` To: ${outputDir}`)
-
- // Copy the entire cache directory structure to ensure we get ALL files
- // including tokenizer.json, config.json, and all ONNX model files
- const modelCacheDir = path.join(cacheDir, 'Xenova', 'all-MiniLM-L6-v2')
-
- if (await dirExists(modelCacheDir)) {
- const targetModelDir = path.join(outputDir, 'Xenova', 'all-MiniLM-L6-v2')
- console.log(` Copying complete model: Xenova/all-MiniLM-L6-v2`)
- await copyDirectory(modelCacheDir, targetModelDir)
- } else {
- throw new Error(`Model cache directory not found: ${modelCacheDir}`)
- }
-
- console.log('✅ Model bundling complete!')
- console.log(` Total size: ${await calculateDirectorySize(outputDir)} MB`)
- console.log(` Location: ${outputDir}`)
-
- // Create a marker file with downloaded model info
- const markerData = {
- model: MODEL_NAME,
- bundledAt: new Date().toISOString(),
- version: '2.8.0',
- downloadType: downloadType,
- models: {}
- }
-
- // Check which models were downloaded
- const fp32Path = path.join(outputDir, 'Xenova/all-MiniLM-L6-v2/onnx/model.onnx')
- const q8Path = path.join(outputDir, 'Xenova/all-MiniLM-L6-v2/onnx/model_quantized.onnx')
-
- if (await fileExists(fp32Path)) {
- const stats = await fs.stat(fp32Path)
- markerData.models.fp32 = {
- file: 'onnx/model.onnx',
- size: stats.size,
- sizeFormatted: `${Math.round(stats.size / (1024 * 1024))}MB`
- }
- }
-
- if (await fileExists(q8Path)) {
- const stats = await fs.stat(q8Path)
- markerData.models.q8 = {
- file: 'onnx/model_quantized.onnx',
- size: stats.size,
- sizeFormatted: `${Math.round(stats.size / (1024 * 1024))}MB`
- }
- }
-
- await fs.writeFile(
- path.join(outputDir, '.brainy-models-bundled'),
- JSON.stringify(markerData, null, 2)
- )
-
- console.log('')
- console.log('✅ Download complete! Available models:')
- if (markerData.models.fp32) {
- console.log(` • FP32: ${markerData.models.fp32.sizeFormatted} (full precision)`)
- }
- if (markerData.models.q8) {
- console.log(` • Q8: ${markerData.models.q8.sizeFormatted} (quantized, 75% smaller)`)
- }
- console.log('')
- console.log('Air-gap deployment ready! 🚀')
-
- } catch (error) {
- console.error('❌ Error downloading models:', error)
- process.exit(1)
- }
-}
-
-// Download a specific model variant
-async function downloadModelVariant(dtype) {
- const { pipeline } = await import('@huggingface/transformers')
-
- try {
- // Load the model to force download
- const extractor = await pipeline('feature-extraction', MODEL_NAME, {
- dtype: dtype,
- cache_dir: './models-cache'
- })
-
- // Test the model
- const testResult = await extractor(['Hello world!'], {
- pooling: 'mean',
- normalize: true
- })
-
- console.log(` ✅ ${dtype.toUpperCase()} model downloaded and tested (${testResult.data.length} dimensions)`)
-
- // Dispose to free memory
- if (extractor.dispose) {
- await extractor.dispose()
- }
-
- } catch (error) {
- console.error(` ❌ Failed to download ${dtype} model:`, error)
- throw error
- }
-}
-
-async function findModelDirectories(baseDir, modelName) {
- const dirs = []
-
- try {
- // Convert model name to expected directory structure
- const modelPath = modelName.replace('/', '--')
-
- async function searchDirectory(currentDir) {
- try {
- const entries = await fs.readdir(currentDir, { withFileTypes: true })
-
- for (const entry of entries) {
- if (entry.isDirectory()) {
- const fullPath = path.join(currentDir, entry.name)
-
- // Check if this directory contains model files
- if (entry.name.includes(modelPath) || entry.name === 'onnx') {
- const hasModelFiles = await containsModelFiles(fullPath)
- if (hasModelFiles) {
- dirs.push(fullPath)
- }
- }
-
- // Recursively search subdirectories
- await searchDirectory(fullPath)
- }
- }
- } catch (error) {
- // Ignore access errors
- }
- }
-
- await searchDirectory(baseDir)
- } catch (error) {
- console.warn('Warning: Error searching for model directories:', error)
- }
-
- return dirs
-}
-
-async function containsModelFiles(dir) {
- try {
- const files = await fs.readdir(dir)
- return files.some(file =>
- file.endsWith('.onnx') ||
- file.endsWith('.json') ||
- file === 'config.json' ||
- file === 'tokenizer.json'
- )
- } catch (error) {
- return false
- }
-}
-
-async function dirExists(dir) {
- try {
- const stats = await fs.stat(dir)
- return stats.isDirectory()
- } catch (error) {
- return false
- }
-}
-
-async function fileExists(file) {
- try {
- const stats = await fs.stat(file)
- return stats.isFile()
- } catch (error) {
- return false
- }
-}
-
-async function copyDirectory(src, dest) {
- await fs.mkdir(dest, { recursive: true })
- const entries = await fs.readdir(src, { withFileTypes: true })
-
- for (const entry of entries) {
- const srcPath = path.join(src, entry.name)
- const destPath = path.join(dest, entry.name)
-
- if (entry.isDirectory()) {
- await copyDirectory(srcPath, destPath)
- } else {
- await fs.copyFile(srcPath, destPath)
- }
- }
-}
-
-async function calculateDirectorySize(dir) {
- let size = 0
-
- async function calculateSize(currentDir) {
- try {
- const entries = await fs.readdir(currentDir, { withFileTypes: true })
-
- for (const entry of entries) {
- const fullPath = path.join(currentDir, entry.name)
-
- if (entry.isDirectory()) {
- await calculateSize(fullPath)
- } else {
- const stats = await fs.stat(fullPath)
- size += stats.size
- }
- }
- } catch (error) {
- // Ignore access errors
- }
- }
-
- await calculateSize(dir)
- return Math.round(size / (1024 * 1024))
-}
-
-// Run the download
-downloadModels().catch(error => {
- console.error('Fatal error:', error)
- process.exit(1)
-})
\ No newline at end of file
diff --git a/scripts/ensure-models.js b/scripts/ensure-models.js
deleted file mode 100644
index 536a2341..00000000
--- a/scripts/ensure-models.js
+++ /dev/null
@@ -1,108 +0,0 @@
-#!/usr/bin/env node
-/**
- * Ensures transformer models are available for production
- * This script handles model availability in multiple ways:
- * 1. Check if models exist locally
- * 2. Download from CDN if needed
- * 3. Verify model integrity
- */
-
-import { existsSync } from 'fs'
-import { readFile, mkdir, writeFile } from 'fs/promises'
-import { join, dirname } from 'path'
-import { createHash } from 'crypto'
-import { fileURLToPath } from 'url'
-
-const __dirname = dirname(fileURLToPath(import.meta.url))
-const PROJECT_ROOT = join(__dirname, '..')
-
-// Model configuration
-const MODEL_CONFIG = {
- name: 'Xenova/all-MiniLM-L6-v2',
- files: {
- 'onnx/model.onnx': {
- size: 90555481, // 86.3 MB
- sha256: 'expected_hash_here' // We'd compute this from actual model
- },
- 'tokenizer.json': {
- size: 711661,
- sha256: 'expected_hash_here'
- },
- 'tokenizer_config.json': {
- size: 366,
- sha256: 'expected_hash_here'
- },
- 'config.json': {
- size: 650,
- sha256: 'expected_hash_here'
- }
- }
-}
-
-// CDN URLs for model files (would be your own CDN in production)
-const CDN_BASE = 'https://cdn.soulcraft.com/models'
-
-async function ensureModels() {
- const modelsDir = join(PROJECT_ROOT, 'models', 'Xenova', 'all-MiniLM-L6-v2')
-
- console.log('🔍 Checking for transformer models...')
-
- // Check if all model files exist
- let missingFiles = []
- for (const [filePath, info] of Object.entries(MODEL_CONFIG.files)) {
- const fullPath = join(modelsDir, filePath)
- if (!existsSync(fullPath)) {
- missingFiles.push(filePath)
- }
- }
-
- if (missingFiles.length === 0) {
- console.log('✅ All model files present')
-
- // Optionally verify integrity
- if (process.env.VERIFY_MODELS === 'true') {
- console.log('🔐 Verifying model integrity...')
- // Add hash verification here
- }
-
- return true
- }
-
- console.log(`⚠️ Missing ${missingFiles.length} model files`)
-
- // In production, models should be pre-bundled
- if (process.env.NODE_ENV === 'production' && !process.env.ALLOW_MODEL_DOWNLOAD) {
- throw new Error(
- 'Critical: Transformer models not found in production. ' +
- 'Run "npm run download-models" during build stage.'
- )
- }
-
- // Development: offer to download
- if (process.env.CI !== 'true') {
- console.log('📥 Would download models from CDN in development')
- console.log(' Run: npm run download-models')
- }
-
- return false
-}
-
-// Export for use in main code
-export async function verifyModelsAvailable() {
- try {
- return await ensureModels()
- } catch (error) {
- console.error('❌ Model verification failed:', error.message)
- return false
- }
-}
-
-// Run if called directly
-if (import.meta.url === `file://${process.argv[1]}`) {
- ensureModels()
- .then(success => process.exit(success ? 0 : 1))
- .catch(error => {
- console.error(error)
- process.exit(1)
- })
-}
\ No newline at end of file
diff --git a/scripts/prepare-models.js b/scripts/prepare-models.js
deleted file mode 100644
index 7e99128e..00000000
--- a/scripts/prepare-models.js
+++ /dev/null
@@ -1,387 +0,0 @@
-#!/usr/bin/env node
-/**
- * Prepare Models Script
- *
- * Intelligently handles model preparation for different deployment scenarios:
- * 1. Development: Models download automatically on first use
- * 2. Docker/CI: Pre-download during build stage
- * 3. Serverless: Bundle with deployment package
- * 4. Production: Verify models exist, fail fast if missing
- */
-
-import { existsSync } from 'fs'
-import { readFile, mkdir, writeFile, stat } from 'fs/promises'
-import { join, dirname } from 'path'
-import { fileURLToPath } from 'url'
-import { pipeline, env } from '@huggingface/transformers'
-import { execSync } from 'child_process'
-import https from 'https'
-import { createWriteStream } from 'fs'
-import { promisify } from 'util'
-import { finished } from 'stream'
-
-const streamFinished = promisify(finished)
-const __dirname = dirname(fileURLToPath(import.meta.url))
-
-// Model configuration
-const MODEL_CONFIG = {
- name: 'Xenova/all-MiniLM-L6-v2',
- expectedFiles: [
- 'config.json',
- 'tokenizer.json',
- 'tokenizer_config.json',
- 'onnx/model.onnx'
- ],
- fallbackUrls: {
- // GitHub Releases (our backup)
- github: 'https://github.com/soulcraftlabs/brainy-models/releases/download/v1.0/all-MiniLM-L6-v2.tar.gz',
- // Future CDN
- cdn: 'https://models.soulcraft.com/brainy/all-MiniLM-L6-v2.tar.gz'
- }
-}
-
-class ModelPreparer {
- constructor() {
- this.modelsDir = join(__dirname, '..', 'models')
- this.modelPath = join(this.modelsDir, ...MODEL_CONFIG.name.split('/'))
- }
-
- /**
- * Main entry point - intelligently prepares models based on context
- */
- async prepare() {
- console.log('🧠 Brainy Model Preparation')
- console.log('===========================')
-
- // Detect deployment context
- const context = this.detectContext()
- console.log(`📍 Context: ${context}`)
-
- switch (context) {
- case 'production':
- return await this.prepareProduction()
- case 'docker':
- return await this.prepareDocker()
- case 'ci':
- return await this.prepareCI()
- case 'development':
- return await this.prepareDevelopment()
- default:
- return await this.prepareDefault()
- }
- }
-
- /**
- * Detect the deployment context
- */
- detectContext() {
- // Check environment variables
- if (process.env.NODE_ENV === 'production') return 'production'
- if (process.env.DOCKER_BUILD === 'true') return 'docker'
- if (process.env.CI === 'true') return 'ci'
- if (process.env.NODE_ENV === 'development') return 'development'
-
- // Check for Docker build context
- if (existsSync('/.dockerenv')) return 'docker'
-
- // Check for common CI indicators
- if (process.env.GITHUB_ACTIONS || process.env.GITLAB_CI) return 'ci'
-
- // Default to development
- return 'development'
- }
-
- /**
- * Production: Models MUST exist, fail fast if not
- */
- async prepareProduction() {
- console.log('🏭 Production mode - verifying models...')
-
- const modelExists = await this.verifyModels()
-
- if (!modelExists) {
- console.error('❌ CRITICAL: Models not found in production!')
- console.error(' Models must be pre-downloaded during build stage.')
- console.error(' Run: npm run download-models')
- process.exit(1)
- }
-
- console.log('✅ Models verified for production')
- return true
- }
-
- /**
- * Docker: Download models during build stage
- */
- async prepareDocker() {
- console.log('🐳 Docker build - downloading models...')
-
- // Check if already exists
- if (await this.verifyModels()) {
- console.log('✅ Models already present')
- return true
- }
-
- // Download models
- return await this.downloadModels()
- }
-
- /**
- * CI: Download models for testing
- */
- async prepareCI() {
- console.log('🔧 CI environment - downloading models for tests...')
-
- // Check cache first
- if (await this.checkCICache()) {
- console.log('✅ Using cached models')
- return true
- }
-
- // Download and cache
- const success = await this.downloadModels()
- if (success) {
- await this.saveCICache()
- }
- return success
- }
-
- /**
- * Development: Optional download, will auto-download on first use
- */
- async prepareDevelopment() {
- console.log('💻 Development mode')
-
- if (await this.verifyModels()) {
- console.log('✅ Models already downloaded')
- return true
- }
-
- console.log('ℹ️ Models will download automatically on first use')
- console.log(' To pre-download now: npm run download-models')
-
- // Ask if they want to download now
- if (process.stdout.isTTY && !process.env.SKIP_PROMPT) {
- const readline = await import('readline')
- const rl = readline.createInterface({
- input: process.stdin,
- output: process.stdout
- })
-
- return new Promise((resolve) => {
- rl.question('Download models now? (y/N): ', async (answer) => {
- rl.close()
- if (answer.toLowerCase() === 'y') {
- resolve(await this.downloadModels())
- } else {
- resolve(true)
- }
- })
- })
- }
-
- return true
- }
-
- /**
- * Default: Try to be smart about it
- */
- async prepareDefault() {
- console.log('🤖 Auto-detecting best approach...')
-
- if (await this.verifyModels()) {
- console.log('✅ Models found')
- return true
- }
-
- // If running as part of install, don't download
- if (process.env.npm_lifecycle_event === 'postinstall') {
- console.log('ℹ️ Skipping download during install (will download on first use)')
- return true
- }
-
- // Otherwise download
- return await this.downloadModels()
- }
-
- /**
- * Verify all required model files exist
- */
- async verifyModels() {
- for (const file of MODEL_CONFIG.expectedFiles) {
- const filePath = join(this.modelPath, file)
- if (!existsSync(filePath)) {
- return false
- }
- }
-
- // Verify model.onnx size (should be ~87MB)
- const modelOnnxPath = join(this.modelPath, 'onnx', 'model.onnx')
- if (existsSync(modelOnnxPath)) {
- const stats = await stat(modelOnnxPath)
- const sizeMB = Math.round(stats.size / (1024 * 1024))
- if (sizeMB < 80 || sizeMB > 100) {
- console.warn(`⚠️ Model size unexpected: ${sizeMB}MB (expected ~87MB)`)
- return false
- }
- }
-
- return true
- }
-
- /**
- * Download models with fallback sources
- */
- async downloadModels() {
- console.log('📥 Downloading transformer models...')
-
- // Try transformers.js first (Hugging Face)
- try {
- await this.downloadFromTransformers()
- console.log('✅ Downloaded from Hugging Face')
- return true
- } catch (error) {
- console.warn('⚠️ Hugging Face download failed:', error.message)
- }
-
- // Try GitHub releases
- try {
- await this.downloadFromGitHub()
- console.log('✅ Downloaded from GitHub')
- return true
- } catch (error) {
- console.warn('⚠️ GitHub download failed:', error.message)
- }
-
- // Try CDN
- try {
- await this.downloadFromCDN()
- console.log('✅ Downloaded from CDN')
- return true
- } catch (error) {
- console.warn('⚠️ CDN download failed:', error.message)
- }
-
- console.error('❌ All download sources failed')
- return false
- }
-
- /**
- * Download using transformers.js (official Hugging Face)
- */
- async downloadFromTransformers() {
- env.cacheDir = this.modelsDir
- env.allowRemoteModels = true
-
- console.log(' Source: Hugging Face')
- console.log(' Model:', MODEL_CONFIG.name)
-
- // Load pipeline to trigger download
- const extractor = await pipeline('feature-extraction', MODEL_CONFIG.name)
-
- // Test it works
- const test = await extractor('test', { pooling: 'mean', normalize: true })
- console.log(` ✓ Model test passed (dims: ${test.data.length})`)
-
- return true
- }
-
- /**
- * Download from GitHub releases (our backup)
- */
- async downloadFromGitHub() {
- const url = MODEL_CONFIG.fallbackUrls.github
- console.log(' Source: GitHub Releases')
-
- // Download tar.gz
- const tempFile = join(this.modelsDir, 'temp-model.tar.gz')
- await this.downloadFile(url, tempFile)
-
- // Extract
- await mkdir(this.modelPath, { recursive: true })
- execSync(`tar -xzf ${tempFile} -C ${this.modelPath}`, { stdio: 'inherit' })
-
- // Cleanup
- await unlink(tempFile)
-
- return true
- }
-
- /**
- * Download from CDN (future)
- */
- async downloadFromCDN() {
- const url = MODEL_CONFIG.fallbackUrls.cdn
- console.log(' Source: Soulcraft CDN')
-
- // Similar to GitHub approach
- throw new Error('CDN not yet available')
- }
-
- /**
- * Download a file from URL
- */
- async downloadFile(url, destination) {
- await mkdir(dirname(destination), { recursive: true })
-
- return new Promise((resolve, reject) => {
- const file = createWriteStream(destination)
-
- https.get(url, (response) => {
- if (response.statusCode !== 200) {
- reject(new Error(`HTTP ${response.statusCode}`))
- return
- }
-
- response.pipe(file)
-
- file.on('finish', () => {
- file.close()
- resolve()
- })
- }).on('error', reject)
- })
- }
-
- /**
- * Check CI cache for models
- */
- async checkCICache() {
- // GitHub Actions cache
- if (process.env.GITHUB_ACTIONS) {
- const cachePath = process.env.RUNNER_TEMP + '/brainy-models'
- if (existsSync(cachePath)) {
- // Copy from cache
- execSync(`cp -r ${cachePath}/* ${this.modelsDir}/`, { stdio: 'inherit' })
- return true
- }
- }
-
- return false
- }
-
- /**
- * Save models to CI cache
- */
- async saveCICache() {
- // GitHub Actions cache
- if (process.env.GITHUB_ACTIONS) {
- const cachePath = process.env.RUNNER_TEMP + '/brainy-models'
- await mkdir(cachePath, { recursive: true })
- execSync(`cp -r ${this.modelsDir}/* ${cachePath}/`, { stdio: 'inherit' })
- }
- }
-}
-
-// Run the preparer
-const preparer = new ModelPreparer()
-preparer.prepare()
- .then(success => {
- if (!success) {
- process.exit(1)
- }
- })
- .catch(error => {
- console.error('❌ Fatal error:', error)
- process.exit(1)
- })
\ No newline at end of file
diff --git a/scripts/setup-dev.sh b/scripts/setup-dev.sh
new file mode 100755
index 00000000..f4c221a6
--- /dev/null
+++ b/scripts/setup-dev.sh
@@ -0,0 +1,224 @@
+#!/bin/bash
+# Development environment setup script for Brainy
+#
+# This script installs all dependencies needed to build Brainy,
+# including the Candle WASM embedding engine.
+#
+# Usage:
+# ./scripts/setup-dev.sh
+#
+# Requirements:
+# - sudo access (for system packages)
+# - Internet connection
+
+set -euo pipefail
+
+# Colors
+RED='\033[0;31m'
+GREEN='\033[0;32m'
+YELLOW='\033[1;33m'
+BLUE='\033[0;34m'
+NC='\033[0m'
+
+echo -e "${BLUE}======================================${NC}"
+echo -e "${BLUE} Brainy Development Setup${NC}"
+echo -e "${BLUE}======================================${NC}"
+echo ""
+
+# Detect OS
+detect_os() {
+ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
+ if command -v apt-get &> /dev/null; then
+ echo "debian"
+ elif command -v dnf &> /dev/null; then
+ echo "fedora"
+ elif command -v pacman &> /dev/null; then
+ echo "arch"
+ else
+ echo "linux-unknown"
+ fi
+ elif [[ "$OSTYPE" == "darwin"* ]]; then
+ echo "macos"
+ else
+ echo "unknown"
+ fi
+}
+
+OS=$(detect_os)
+echo -e "${GREEN}Detected OS: ${OS}${NC}"
+
+# Install system dependencies
+install_system_deps() {
+ echo -e "\n${YELLOW}Installing system dependencies...${NC}"
+
+ case $OS in
+ debian)
+ sudo apt-get update
+ sudo apt-get install -y build-essential pkg-config libssl-dev curl
+ ;;
+ fedora)
+ sudo dnf install -y gcc gcc-c++ make openssl-devel pkgconfig curl
+ ;;
+ arch)
+ sudo pacman -S --needed base-devel openssl pkg-config curl
+ ;;
+ macos)
+ if ! command -v gcc &> /dev/null; then
+ echo -e "${YELLOW}Installing Xcode command line tools...${NC}"
+ xcode-select --install 2>/dev/null || true
+ fi
+ ;;
+ *)
+ echo -e "${RED}Unknown OS. Please install build tools manually:${NC}"
+ echo " - C compiler (gcc or clang)"
+ echo " - pkg-config"
+ echo " - OpenSSL development headers"
+ exit 1
+ ;;
+ esac
+
+ echo -e "${GREEN}System dependencies installed.${NC}"
+}
+
+# Install Rust
+install_rust() {
+ echo -e "\n${YELLOW}Checking Rust installation...${NC}"
+
+ if command -v rustc &> /dev/null; then
+ RUST_VERSION=$(rustc --version)
+ echo -e "${GREEN}Rust already installed: ${RUST_VERSION}${NC}"
+ else
+ echo -e "${YELLOW}Installing Rust...${NC}"
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
+ source "$HOME/.cargo/env"
+ echo -e "${GREEN}Rust installed: $(rustc --version)${NC}"
+ fi
+
+ # Ensure cargo env is loaded
+ if [ -f "$HOME/.cargo/env" ]; then
+ source "$HOME/.cargo/env"
+ fi
+}
+
+# Install Rust WASM tools
+install_wasm_tools() {
+ echo -e "\n${YELLOW}Installing WASM build tools...${NC}"
+
+ # Add WASM target
+ if ! rustup target list --installed | grep -q wasm32-unknown-unknown; then
+ echo "Adding wasm32-unknown-unknown target..."
+ rustup target add wasm32-unknown-unknown
+ else
+ echo -e "${GREEN}WASM target already installed.${NC}"
+ fi
+
+ # Install wasm-pack
+ if ! command -v wasm-pack &> /dev/null; then
+ echo "Installing wasm-pack..."
+ cargo install wasm-pack
+ else
+ echo -e "${GREEN}wasm-pack already installed: $(wasm-pack --version)${NC}"
+ fi
+}
+
+# Install Node.js dependencies
+install_node_deps() {
+ echo -e "\n${YELLOW}Checking Node.js...${NC}"
+
+ if ! command -v node &> /dev/null; then
+ echo -e "${RED}Node.js not found. Please install Node.js 20+ first.${NC}"
+ echo "Visit: https://nodejs.org/"
+ exit 1
+ fi
+
+ NODE_VERSION=$(node --version)
+ echo -e "${GREEN}Node.js: ${NODE_VERSION}${NC}"
+
+ echo -e "\n${YELLOW}Installing npm dependencies...${NC}"
+ npm install
+ echo -e "${GREEN}npm dependencies installed.${NC}"
+}
+
+# Download model files
+download_models() {
+ echo -e "\n${YELLOW}Downloading model files...${NC}"
+
+ MODEL_DIR="assets/models/all-MiniLM-L6-v2"
+
+ if [ -f "$MODEL_DIR/model.safetensors" ] && [ -f "$MODEL_DIR/tokenizer.json" ]; then
+ echo -e "${GREEN}Model files already present.${NC}"
+ return
+ fi
+
+ mkdir -p "$MODEL_DIR"
+
+ HF_URL="https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2/resolve/main"
+
+ echo "Downloading model.safetensors..."
+ curl -L "$HF_URL/model.safetensors" -o "$MODEL_DIR/model.safetensors"
+
+ echo "Downloading tokenizer.json..."
+ curl -L "$HF_URL/tokenizer.json" -o "$MODEL_DIR/tokenizer.json"
+
+ echo "Downloading config.json..."
+ curl -L "$HF_URL/config.json" -o "$MODEL_DIR/config.json"
+
+ echo -e "${GREEN}Model files downloaded.${NC}"
+}
+
+# Build Candle WASM
+build_candle() {
+ echo -e "\n${YELLOW}Building Candle WASM...${NC}"
+
+ if [ -f "src/embeddings/wasm/pkg/candle_embeddings_bg.wasm" ]; then
+ echo -e "${GREEN}Candle WASM already built. Use 'npm run build:candle' to rebuild.${NC}"
+ return
+ fi
+
+ npm run build:candle
+ echo -e "${GREEN}Candle WASM built.${NC}"
+}
+
+# Build TypeScript
+build_typescript() {
+ echo -e "\n${YELLOW}Building TypeScript...${NC}"
+ npm run build
+ echo -e "${GREEN}TypeScript built.${NC}"
+}
+
+# Run tests
+run_tests() {
+ echo -e "\n${YELLOW}Running tests...${NC}"
+ npm run test:unit
+ echo -e "${GREEN}Tests passed.${NC}"
+}
+
+# Main
+main() {
+ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+ PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
+ cd "$PROJECT_ROOT"
+
+ install_system_deps
+ install_rust
+ install_wasm_tools
+ install_node_deps
+ download_models
+ build_candle
+ build_typescript
+
+ echo ""
+ echo -e "${GREEN}======================================${NC}"
+ echo -e "${GREEN} Setup Complete!${NC}"
+ echo -e "${GREEN}======================================${NC}"
+ echo ""
+ echo "You can now:"
+ echo " npm run build # Build TypeScript"
+ echo " npm run build:candle # Rebuild Candle WASM"
+ echo " npm run test:all # Run all tests"
+ echo " npm run test:wasm # Test WASM embeddings"
+ echo " npm run test:bun:compile # Test Bun compile"
+ echo ""
+}
+
+main "$@"
diff --git a/src/brainy.ts b/src/brainy.ts
index 1015bac3..cd45f57f 100644
--- a/src/brainy.ts
+++ b/src/brainy.ts
@@ -1600,31 +1600,6 @@ export class Brainy implements BrainyInterface {
const params: FindParams =
typeof query === 'string' ? await this.parseNaturalQuery(query) : query
- // Phase 3: Automatic type inference for 40% latency reduction
- if (params.query && !params.type && this.index instanceof TypeAwareHNSWIndex) {
- // Import Phase 3 components dynamically
- const { getQueryPlanner } = await import('./query/typeAwareQueryPlanner.js')
- const planner = getQueryPlanner()
- const plan = await planner.planQuery(params.query)
-
- // Use inferred types if confidence is sufficient
- if (plan.confidence > 0.6) {
- params.type = plan.targetTypes.length === 1
- ? plan.targetTypes[0]
- : plan.targetTypes
-
- // Log for analytics (production-friendly)
- if (this.config.verbose) {
- console.log(
- `[Phase 3] Inferred types: ${plan.routing} ` +
- `(${plan.targetTypes.length} types, ` +
- `${(plan.confidence * 100).toFixed(0)}% confidence, ` +
- `${plan.estimatedSpeedup.toFixed(1)}x estimated speedup)`
- )
- }
- }
- }
-
// Zero-config validation - only enforces universal truths
const { validateFindParams, recordQueryPerformance } = await import('./utils/paramValidation.js')
validateFindParams(params)
diff --git a/src/embeddings/EmbeddingManager.ts b/src/embeddings/EmbeddingManager.ts
index 500130c3..ea88ffd7 100644
--- a/src/embeddings/EmbeddingManager.ts
+++ b/src/embeddings/EmbeddingManager.ts
@@ -2,11 +2,11 @@
* Unified Embedding Manager
*
* THE single source of truth for all embedding operations in Brainy.
- * Uses direct ONNX WASM inference for universal compatibility.
+ * Uses Candle WASM inference for universal compatibility.
*
* Features:
* - Singleton pattern ensures ONE model instance
- * - Direct ONNX WASM (no transformers.js dependency)
+ * - Candle WASM (no transformers.js or ONNX Runtime dependency)
* - Bundled model (no runtime downloads)
* - Works everywhere: Node.js, Bun, Bun --compile, browsers
* - Memory monitoring
@@ -34,7 +34,7 @@ let globalInitPromise: Promise | null = null
/**
* Unified Embedding Manager - Clean, simple, reliable
*
- * Now powered by direct ONNX WASM for universal compatibility.
+ * Now powered by Candle WASM for universal compatibility.
*/
export class EmbeddingManager {
private engine: WASMEmbeddingEngine
diff --git a/src/embeddings/candle-wasm/.cargo/config.toml b/src/embeddings/candle-wasm/.cargo/config.toml
new file mode 100644
index 00000000..04d5419b
--- /dev/null
+++ b/src/embeddings/candle-wasm/.cargo/config.toml
@@ -0,0 +1,7 @@
+# Cargo configuration for WASM builds
+#
+# This enables getrandom's WASM support for both 0.2 and 0.3 versions
+
+[target.wasm32-unknown-unknown]
+# Enable getrandom JS support for WASM (for getrandom 0.3)
+rustflags = ['--cfg', 'getrandom_backend="wasm_js"']
diff --git a/src/embeddings/candle-wasm/Cargo.toml b/src/embeddings/candle-wasm/Cargo.toml
new file mode 100644
index 00000000..6c9d3390
--- /dev/null
+++ b/src/embeddings/candle-wasm/Cargo.toml
@@ -0,0 +1,55 @@
+[package]
+name = "candle-embeddings"
+version = "0.1.0"
+edition = "2021"
+description = "WASM-based sentence embeddings using Candle and all-MiniLM-L6-v2"
+license = "MIT"
+
+[lib]
+crate-type = ["cdylib", "rlib"]
+
+[dependencies]
+# Candle ML framework
+candle-core = "0.8"
+candle-nn = "0.8"
+candle-transformers = "0.8"
+
+# HuggingFace tokenizer with WASM support
+# Use unstable_wasm feature which provides fancy-regex instead of onig
+tokenizers = { version = "0.20", default-features = false, features = ["unstable_wasm"] }
+
+# WASM bindings
+wasm-bindgen = "0.2"
+wasm-bindgen-futures = "0.4"
+js-sys = "0.3"
+web-sys = { version = "0.3", features = ["console"] }
+
+# Serialization for model loading
+serde = { version = "1.0", features = ["derive"] }
+serde_json = "1.0"
+
+# Error handling
+anyhow = "1.0"
+
+# Async
+futures = "0.3"
+
+# WASM compatibility - force getrandom with js/wasm_js features
+# getrandom 0.2 (from tokenizers->rand) needs "js" feature
+# getrandom 0.3 (from candle->rand 0.9) needs "wasm_js" feature + rustflags
+[target.'cfg(target_arch = "wasm32")'.dependencies]
+getrandom_02 = { package = "getrandom", version = "0.2", features = ["js"] }
+getrandom = { version = "0.3", features = ["wasm_js"] }
+
+[dev-dependencies]
+wasm-bindgen-test = "0.3"
+
+[profile.release]
+opt-level = "z" # Optimize for size
+lto = true # Link-time optimization
+codegen-units = 1 # Single codegen unit for better optimization
+panic = "abort" # Abort on panic (smaller binary)
+
+[features]
+default = []
+simd = [] # Enable SIMD when browser support is available
diff --git a/src/embeddings/candle-wasm/src/lib.rs b/src/embeddings/candle-wasm/src/lib.rs
new file mode 100644
index 00000000..34f0fcab
--- /dev/null
+++ b/src/embeddings/candle-wasm/src/lib.rs
@@ -0,0 +1,402 @@
+//! Candle-based sentence embeddings for WASM
+//!
+//! This crate provides WASM-compatible sentence embeddings using HuggingFace's Candle framework.
+//! It supports the all-MiniLM-L6-v2 model for generating 384-dimensional embeddings.
+//!
+//! ## Features
+//! - Model weights embedded at compile time (zero runtime downloads)
+//! - Single WASM file contains everything
+//! - Works in all environments: Node.js, Bun, Bun compile, browsers
+//!
+//! ## Usage from JavaScript
+//! ```js
+//! import init, { EmbeddingEngine } from './candle_embeddings.js';
+//!
+//! await init();
+//! const engine = EmbeddingEngine.create_with_embedded_model();
+//!
+//! const embedding = engine.embed("Hello world");
+//! const embeddings = engine.embed_batch(["Hello", "World"]);
+//! ```
+
+use candle_core::{DType, Device, Tensor};
+use candle_nn::VarBuilder;
+use candle_transformers::models::bert::{BertModel, Config as BertConfig};
+use js_sys::{Array, Float32Array};
+use tokenizers::Tokenizer;
+use wasm_bindgen::prelude::*;
+
+/// Embedded model assets (compiled into WASM at build time)
+/// These files are included from assets/models/all-MiniLM-L6-v2/
+/// Path is relative to this lib.rs file: src/embeddings/candle-wasm/src/lib.rs
+const EMBEDDED_MODEL: &[u8] = include_bytes!("../../../../assets/models/all-MiniLM-L6-v2/model.safetensors");
+const EMBEDDED_TOKENIZER: &[u8] = include_bytes!("../../../../assets/models/all-MiniLM-L6-v2/tokenizer.json");
+const EMBEDDED_CONFIG: &[u8] = include_bytes!("../../../../assets/models/all-MiniLM-L6-v2/config.json");
+
+/// Model configuration constants for all-MiniLM-L6-v2
+const HIDDEN_SIZE: usize = 384;
+const MAX_SEQUENCE_LENGTH: usize = 256;
+
+/// Pooling strategy for aggregating token embeddings
+#[derive(Debug, Clone, Copy, PartialEq)]
+pub enum PoolingStrategy {
+ /// Mean pooling over all tokens (default for sentence-transformers)
+ Mean,
+ /// Use the [CLS] token embedding
+ Cls,
+}
+
+/// WASM-compatible embedding engine
+#[wasm_bindgen]
+pub struct EmbeddingEngine {
+ model: Option,
+ tokenizer: Option,
+ device: Device,
+ pooling: PoolingStrategy,
+}
+
+#[wasm_bindgen]
+impl EmbeddingEngine {
+ /// Create a new embedding engine instance (not loaded)
+ #[wasm_bindgen(constructor)]
+ pub fn new() -> Self {
+ EmbeddingEngine {
+ model: None,
+ tokenizer: None,
+ device: Device::Cpu,
+ pooling: PoolingStrategy::Mean,
+ }
+ }
+
+ /// Create a new engine with the embedded model already loaded
+ /// This is the recommended way to create an engine - zero external dependencies
+ #[wasm_bindgen]
+ pub fn create_with_embedded_model() -> Result {
+ let mut engine = EmbeddingEngine::new();
+ engine.load_embedded()?;
+ Ok(engine)
+ }
+
+ /// Load the embedded model (compiled into WASM)
+ #[wasm_bindgen]
+ pub fn load_embedded(&mut self) -> Result<(), JsValue> {
+ self.load(EMBEDDED_MODEL, EMBEDDED_TOKENIZER, EMBEDDED_CONFIG)
+ }
+
+ /// Load the model and tokenizer from bytes (for custom models)
+ ///
+ /// # Arguments
+ /// * `model_bytes` - SafeTensors format model weights
+ /// * `tokenizer_bytes` - tokenizer.json contents
+ /// * `config_bytes` - config.json contents
+ #[wasm_bindgen]
+ pub fn load(
+ &mut self,
+ model_bytes: &[u8],
+ tokenizer_bytes: &[u8],
+ config_bytes: &[u8],
+ ) -> Result<(), JsValue> {
+ // Parse config
+ let config: BertConfig = serde_json::from_slice(config_bytes)
+ .map_err(|e| JsValue::from_str(&format!("Failed to parse config: {}", e)))?;
+
+ // Load model from SafeTensors
+ let tensors = candle_core::safetensors::load_buffer(model_bytes, &self.device)
+ .map_err(|e| JsValue::from_str(&format!("Failed to load safetensors: {}", e)))?;
+
+ let vb = VarBuilder::from_tensors(tensors, DType::F32, &self.device);
+
+ let model = BertModel::load(vb, &config)
+ .map_err(|e| JsValue::from_str(&format!("Failed to create model: {}", e)))?;
+
+ // Load tokenizer
+ let tokenizer = Tokenizer::from_bytes(tokenizer_bytes)
+ .map_err(|e| JsValue::from_str(&format!("Failed to load tokenizer: {:?}", e)))?;
+
+ self.model = Some(model);
+ self.tokenizer = Some(tokenizer);
+
+ Ok(())
+ }
+
+ /// Check if the engine is ready for inference
+ #[wasm_bindgen]
+ pub fn is_ready(&self) -> bool {
+ self.model.is_some() && self.tokenizer.is_some()
+ }
+
+ /// Generate embedding for a single text
+ ///
+ /// Returns a Float32Array of 384 dimensions
+ #[wasm_bindgen]
+ pub fn embed(&self, text: &str) -> Result {
+ let texts = vec![text.to_string()];
+ let embeddings = self.embed_internal(&texts)?;
+
+ if let Some(first) = embeddings.into_iter().next() {
+ let arr = Float32Array::new_with_length(first.len() as u32);
+ arr.copy_from(&first);
+ Ok(arr)
+ } else {
+ Err(JsValue::from_str("No embedding generated"))
+ }
+ }
+
+ /// Generate embeddings for multiple texts
+ ///
+ /// Takes a JavaScript Array of strings
+ /// Returns a JavaScript Array of Float32Array
+ #[wasm_bindgen]
+ pub fn embed_batch(&self, texts: &Array) -> Result {
+ // Convert JS Array to Vec
+ let mut rust_texts: Vec = Vec::with_capacity(texts.length() as usize);
+ for i in 0..texts.length() {
+ let item = texts.get(i);
+ let text = item
+ .as_string()
+ .ok_or_else(|| JsValue::from_str(&format!("Item at index {} is not a string", i)))?;
+ rust_texts.push(text);
+ }
+
+ if rust_texts.is_empty() {
+ return Ok(Array::new());
+ }
+
+ // Get embeddings
+ let embeddings = self.embed_internal(&rust_texts)?;
+
+ // Convert to JS Array of Float32Array
+ let result = Array::new_with_length(embeddings.len() as u32);
+ for (i, embedding) in embeddings.into_iter().enumerate() {
+ let arr = Float32Array::new_with_length(embedding.len() as u32);
+ arr.copy_from(&embedding);
+ result.set(i as u32, arr.into());
+ }
+
+ Ok(result)
+ }
+
+ /// Internal embedding function that works with Rust types
+ fn embed_internal(&self, texts: &[String]) -> Result>, JsValue> {
+ let model = self
+ .model
+ .as_ref()
+ .ok_or_else(|| JsValue::from_str("Model not loaded. Call load_embedded() first."))?;
+ let tokenizer = self
+ .tokenizer
+ .as_ref()
+ .ok_or_else(|| JsValue::from_str("Tokenizer not loaded. Call load_embedded() first."))?;
+
+ // Tokenize all texts
+ let encodings = tokenizer
+ .encode_batch(texts.to_vec(), true)
+ .map_err(|e| JsValue::from_str(&format!("Tokenization failed: {:?}", e)))?;
+
+ let batch_size = encodings.len();
+ if batch_size == 0 {
+ return Ok(vec![]);
+ }
+
+ // Find max sequence length in batch
+ let max_len = encodings
+ .iter()
+ .map(|e| e.get_ids().len())
+ .max()
+ .unwrap_or(0)
+ .min(MAX_SEQUENCE_LENGTH);
+
+ // Prepare input tensors
+ let mut input_ids: Vec = Vec::with_capacity(batch_size * max_len);
+ let mut attention_mask: Vec = Vec::with_capacity(batch_size * max_len);
+ let mut token_type_ids: Vec = Vec::with_capacity(batch_size * max_len);
+
+ for encoding in &encodings {
+ let ids = encoding.get_ids();
+ let mask = encoding.get_attention_mask();
+ let types = encoding.get_type_ids();
+
+ let seq_len = ids.len().min(max_len);
+
+ // Add tokens
+ for i in 0..seq_len {
+ input_ids.push(ids[i] as i64);
+ attention_mask.push(mask[i] as i64);
+ token_type_ids.push(types[i] as i64);
+ }
+
+ // Pad to max_len
+ for _ in seq_len..max_len {
+ input_ids.push(0);
+ attention_mask.push(0);
+ token_type_ids.push(0);
+ }
+ }
+
+ // Create tensors
+ let input_ids = Tensor::from_vec(input_ids, (batch_size, max_len), &self.device)
+ .map_err(|e| JsValue::from_str(&format!("Failed to create input_ids tensor: {}", e)))?;
+
+ let attention_mask_tensor =
+ Tensor::from_vec(attention_mask.clone(), (batch_size, max_len), &self.device)
+ .map_err(|e| {
+ JsValue::from_str(&format!("Failed to create attention_mask tensor: {}", e))
+ })?;
+
+ let token_type_ids = Tensor::from_vec(token_type_ids, (batch_size, max_len), &self.device)
+ .map_err(|e| {
+ JsValue::from_str(&format!("Failed to create token_type_ids tensor: {}", e))
+ })?;
+
+ // Run model inference
+ let output = model
+ .forward(&input_ids, &token_type_ids, Some(&attention_mask_tensor))
+ .map_err(|e| JsValue::from_str(&format!("Model inference failed: {}", e)))?;
+
+ // Apply pooling
+ let embeddings = match self.pooling {
+ PoolingStrategy::Mean => {
+ self.mean_pooling(&output, &attention_mask_tensor, batch_size, max_len)?
+ }
+ PoolingStrategy::Cls => {
+ // Get [CLS] token (first token) embeddings
+ output
+ .narrow(1, 0, 1)
+ .map_err(|e| JsValue::from_str(&format!("CLS extraction failed: {}", e)))?
+ .squeeze(1)
+ .map_err(|e| JsValue::from_str(&format!("Squeeze failed: {}", e)))?
+ }
+ };
+
+ // Normalize embeddings (L2 normalization)
+ let embeddings = self.l2_normalize(&embeddings)?;
+
+ // Convert to Vec>
+ let embeddings_flat = embeddings
+ .to_vec2::()
+ .map_err(|e| JsValue::from_str(&format!("Failed to extract embeddings: {}", e)))?;
+
+ Ok(embeddings_flat)
+ }
+
+ /// Mean pooling over token embeddings, weighted by attention mask
+ fn mean_pooling(
+ &self,
+ token_embeddings: &Tensor,
+ attention_mask: &Tensor,
+ batch_size: usize,
+ seq_len: usize,
+ ) -> Result {
+ // Expand attention mask to match embedding dimensions
+ // attention_mask: [batch, seq] -> [batch, seq, hidden]
+ let mask = attention_mask
+ .unsqueeze(2)
+ .map_err(|e| JsValue::from_str(&format!("Unsqueeze failed: {}", e)))?
+ .expand((batch_size, seq_len, HIDDEN_SIZE))
+ .map_err(|e| JsValue::from_str(&format!("Expand failed: {}", e)))?
+ .to_dtype(DType::F32)
+ .map_err(|e| JsValue::from_str(&format!("Dtype conversion failed: {}", e)))?;
+
+ // Multiply embeddings by mask
+ let masked = token_embeddings
+ .mul(&mask)
+ .map_err(|e| JsValue::from_str(&format!("Mask multiplication failed: {}", e)))?;
+
+ // Sum over sequence dimension
+ let summed = masked
+ .sum(1)
+ .map_err(|e| JsValue::from_str(&format!("Sum failed: {}", e)))?;
+
+ // Sum attention mask for normalization
+ let mask_sum = mask
+ .sum(1)
+ .map_err(|e| JsValue::from_str(&format!("Mask sum failed: {}", e)))?
+ .clamp(1e-9, f64::INFINITY)
+ .map_err(|e| JsValue::from_str(&format!("Clamp failed: {}", e)))?;
+
+ // Divide by mask sum
+ summed
+ .div(&mask_sum)
+ .map_err(|e| JsValue::from_str(&format!("Division failed: {}", e)))
+ }
+
+ /// L2 normalize embeddings
+ fn l2_normalize(&self, embeddings: &Tensor) -> Result {
+ let norm = embeddings
+ .sqr()
+ .map_err(|e| JsValue::from_str(&format!("Sqr failed: {}", e)))?
+ .sum_keepdim(1)
+ .map_err(|e| JsValue::from_str(&format!("Sum keepdim failed: {}", e)))?
+ .sqrt()
+ .map_err(|e| JsValue::from_str(&format!("Sqrt failed: {}", e)))?
+ .clamp(1e-12, f64::INFINITY)
+ .map_err(|e| JsValue::from_str(&format!("Norm clamp failed: {}", e)))?;
+
+ embeddings
+ .broadcast_div(&norm)
+ .map_err(|e| JsValue::from_str(&format!("Normalize division failed: {}", e)))
+ }
+
+ /// Get the embedding dimension (384 for all-MiniLM-L6-v2)
+ #[wasm_bindgen]
+ pub fn dimension(&self) -> usize {
+ HIDDEN_SIZE
+ }
+
+ /// Get the maximum sequence length
+ #[wasm_bindgen]
+ pub fn max_sequence_length(&self) -> usize {
+ MAX_SEQUENCE_LENGTH
+ }
+}
+
+impl Default for EmbeddingEngine {
+ fn default() -> Self {
+ Self::new()
+ }
+}
+
+/// Calculate cosine similarity between two embeddings
+#[wasm_bindgen]
+pub fn cosine_similarity(a: &[f32], b: &[f32]) -> f32 {
+ if a.len() != b.len() || a.is_empty() {
+ return 0.0;
+ }
+
+ let mut dot = 0.0f32;
+ let mut norm_a = 0.0f32;
+ let mut norm_b = 0.0f32;
+
+ for i in 0..a.len() {
+ dot += a[i] * b[i];
+ norm_a += a[i] * a[i];
+ norm_b += b[i] * b[i];
+ }
+
+ if norm_a == 0.0 || norm_b == 0.0 {
+ return 0.0;
+ }
+
+ dot / (norm_a.sqrt() * norm_b.sqrt())
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn test_cosine_similarity() {
+ let a = vec![1.0, 0.0, 0.0];
+ let b = vec![1.0, 0.0, 0.0];
+ assert!((cosine_similarity(&a, &b) - 1.0).abs() < 1e-6);
+
+ let c = vec![0.0, 1.0, 0.0];
+ assert!(cosine_similarity(&a, &c).abs() < 1e-6);
+ }
+
+ #[test]
+ fn test_engine_creation() {
+ let engine = EmbeddingEngine::new();
+ assert!(!engine.is_ready());
+ assert_eq!(engine.dimension(), 384);
+ }
+}
diff --git a/src/embeddings/wasm/AssetLoader.ts b/src/embeddings/wasm/AssetLoader.ts
index 23285ad0..32fd0d93 100644
--- a/src/embeddings/wasm/AssetLoader.ts
+++ b/src/embeddings/wasm/AssetLoader.ts
@@ -1,13 +1,11 @@
/**
* Asset Loader
*
- * Resolves paths to model files (ONNX model, vocabulary) across environments.
- * Handles Node.js, Bun, and bundled scenarios.
+ * @deprecated This class is no longer used. Model weights are now embedded
+ * in the Candle WASM binary at compile time. Kept for backward compatibility.
*
- * Asset Resolution Order:
- * 1. Environment variable: BRAINY_MODEL_PATH
- * 2. Package-relative: node_modules/@soulcraft/brainy/assets/models/
- * 3. Project-relative: ./assets/models/
+ * Previously: Resolved paths to ONNX model files across environments.
+ * Now: Use CandleEmbeddingEngine which loads embedded model automatically.
*/
import { MODEL_CONSTANTS } from './types.js'
diff --git a/src/embeddings/wasm/CandleEmbeddingEngine.ts b/src/embeddings/wasm/CandleEmbeddingEngine.ts
new file mode 100644
index 00000000..1fe5d108
--- /dev/null
+++ b/src/embeddings/wasm/CandleEmbeddingEngine.ts
@@ -0,0 +1,312 @@
+/**
+ * Candle-based Embedding Engine
+ *
+ * TypeScript wrapper for the Candle WASM embedding module.
+ * Pure Rust/WASM implementation with model weights embedded at compile time.
+ * Works with Bun, Node.js, Bun compile, and browsers.
+ *
+ * Key features:
+ * - Model weights embedded in WASM at compile time (zero runtime downloads)
+ * - Single WASM file contains everything (~90MB)
+ * - Works in all environments: Node.js, Bun, Bun compile, browsers
+ * - Tokenization, mean pooling, and normalization in Rust
+ */
+
+import { EmbeddingResult, EngineStats, MODEL_CONSTANTS } from './types.js'
+
+// Type declaration for Bun global
+declare const Bun: {
+ file(path: string): { arrayBuffer(): Promise }
+} | undefined
+
+// Type definitions for the WASM module
+interface CandleWasmModule {
+ EmbeddingEngine: {
+ new (): CandleEngineInstance
+ create_with_embedded_model(): CandleEngineInstance
+ }
+ cosine_similarity: (a: Float32Array, b: Float32Array) => number
+}
+
+interface CandleEngineInstance {
+ load_embedded(): void
+ load(modelBytes: Uint8Array, tokenizerBytes: Uint8Array, configBytes: Uint8Array): void
+ is_ready(): boolean
+ embed(text: string): Float32Array
+ embed_batch(texts: string[]): Float32Array[]
+ dimension(): number
+ max_sequence_length(): number
+ free(): void
+}
+
+// Global singleton
+let globalInstance: CandleEmbeddingEngine | null = null
+let globalInitPromise: Promise | null = null
+
+/**
+ * Candle-based embedding engine
+ *
+ * Uses the Candle ML framework (Rust/WASM) for inference.
+ * Model weights are embedded in the WASM binary - no external files needed.
+ * Supports all-MiniLM-L6-v2 with 384-dimensional embeddings.
+ */
+export class CandleEmbeddingEngine {
+ private wasmModule: CandleWasmModule | null = null
+ private engine: CandleEngineInstance | null = null
+ private initialized = false
+ private embedCount = 0
+ private totalProcessingTimeMs = 0
+
+ private constructor() {
+ // Private constructor for singleton
+ }
+
+ /**
+ * Get the singleton instance
+ */
+ static getInstance(): CandleEmbeddingEngine {
+ if (!globalInstance) {
+ globalInstance = new CandleEmbeddingEngine()
+ }
+ return globalInstance
+ }
+
+ /**
+ * Initialize the embedding engine
+ */
+ async initialize(): Promise {
+ if (this.initialized) {
+ return
+ }
+
+ if (globalInitPromise) {
+ await globalInitPromise
+ return
+ }
+
+ globalInitPromise = this.performInit()
+
+ try {
+ await globalInitPromise
+ } finally {
+ globalInitPromise = null
+ }
+ }
+
+ /**
+ * Perform actual initialization
+ *
+ * Model weights are embedded in WASM - no file loading required.
+ */
+ private async performInit(): Promise {
+ const startTime = Date.now()
+ console.log('🚀 Initializing Candle Embedding Engine...')
+
+ try {
+ // Load the WASM module
+ console.log('📦 Loading Candle WASM module (includes embedded model)...')
+ const wasmModule = await this.loadWasmModule()
+ this.wasmModule = wasmModule
+
+ // Create engine with embedded model - no external files needed!
+ console.log('🧠 Creating engine with embedded model...')
+ this.engine = wasmModule.EmbeddingEngine.create_with_embedded_model()
+
+ if (!this.engine.is_ready()) {
+ throw new Error('Engine failed to initialize')
+ }
+
+ this.initialized = true
+ const initTime = Date.now() - startTime
+ console.log(`✅ Candle Embedding Engine ready in ${initTime}ms`)
+ } catch (error) {
+ this.initialized = false
+ this.engine = null
+ this.wasmModule = null
+ throw new Error(
+ `Failed to initialize Candle Embedding Engine: ${error instanceof Error ? error.message : String(error)}`
+ )
+ }
+ }
+
+ /**
+ * Load the WASM module
+ *
+ * The WASM file contains everything: runtime code + model weights.
+ */
+ private async loadWasmModule(): Promise {
+ try {
+ // Dynamic import of the WASM package
+ const wasmPkg = await import('./pkg/candle_embeddings.js')
+
+ // Determine if we're in Node.js or browser
+ const isNode = typeof process !== 'undefined' && process.versions?.node
+
+ if (isNode) {
+ // Server-side: load WASM bytes from file and use initSync
+ const path = await import('node:path')
+ const { fileURLToPath } = await import('node:url')
+
+ const thisDir = path.dirname(fileURLToPath(import.meta.url))
+ const wasmPath = path.join(thisDir, 'pkg', 'candle_embeddings_bg.wasm')
+
+ // Check if running in Bun (for Bun.file() support in compiled binaries)
+ const isBun = typeof Bun !== 'undefined'
+ let wasmBytes: Buffer | ArrayBuffer
+
+ if (isBun) {
+ // Bun runtime or compiled: Use Bun.file() which works in compiled binaries
+ wasmBytes = await Bun.file(wasmPath).arrayBuffer()
+ } else {
+ // Node.js: Use fs.readFileSync()
+ const fs = await import('node:fs')
+ if (!fs.existsSync(wasmPath)) {
+ throw new Error(`WASM file not found: ${wasmPath}`)
+ }
+ wasmBytes = fs.readFileSync(wasmPath)
+ }
+
+ wasmPkg.initSync({ module: wasmBytes })
+ } else {
+ // In browser: use default async init which uses fetch
+ await wasmPkg.default()
+ }
+
+ return wasmPkg as unknown as CandleWasmModule
+ } catch (error) {
+ throw new Error(
+ `Failed to load Candle WASM module. Make sure to run 'npm run build:candle' first. ` +
+ `Error: ${error instanceof Error ? error.message : String(error)}`
+ )
+ }
+ }
+
+ /**
+ * Generate embedding for text
+ */
+ async embed(text: string): Promise {
+ const result = await this.embedWithMetadata(text)
+ return result.embedding
+ }
+
+ /**
+ * Generate embedding with metadata
+ */
+ async embedWithMetadata(text: string): Promise {
+ if (!this.initialized) {
+ await this.initialize()
+ }
+
+ if (!this.engine) {
+ throw new Error('Engine not properly initialized')
+ }
+
+ const startTime = Date.now()
+
+ const embedding = this.engine.embed(text)
+ const embeddingArray = Array.from(embedding)
+
+ const processingTimeMs = Date.now() - startTime
+ this.embedCount++
+ this.totalProcessingTimeMs += processingTimeMs
+
+ return {
+ embedding: embeddingArray,
+ tokenCount: 0, // Candle handles tokenization internally
+ processingTimeMs,
+ }
+ }
+
+ /**
+ * Batch embed multiple texts
+ */
+ async embedBatch(texts: string[]): Promise {
+ if (!this.initialized) {
+ await this.initialize()
+ }
+
+ if (!this.engine) {
+ throw new Error('Engine not properly initialized')
+ }
+
+ if (texts.length === 0) {
+ return []
+ }
+
+ const embeddings = this.engine.embed_batch(texts)
+ this.embedCount += texts.length
+
+ return embeddings.map((e) => Array.from(e))
+ }
+
+ /**
+ * Check if initialized
+ */
+ isInitialized(): boolean {
+ return this.initialized
+ }
+
+ /**
+ * Get engine statistics
+ */
+ getStats(): EngineStats {
+ return {
+ initialized: this.initialized,
+ embedCount: this.embedCount,
+ totalProcessingTimeMs: this.totalProcessingTimeMs,
+ avgProcessingTimeMs: this.embedCount > 0 ? this.totalProcessingTimeMs / this.embedCount : 0,
+ modelName: MODEL_CONSTANTS.MODEL_NAME,
+ }
+ }
+
+ /**
+ * Dispose and free resources
+ */
+ async dispose(): Promise {
+ if (this.engine) {
+ this.engine.free()
+ this.engine = null
+ }
+ this.wasmModule = null
+ this.initialized = false
+ }
+
+ /**
+ * Reset singleton (for testing)
+ */
+ static resetInstance(): void {
+ if (globalInstance) {
+ globalInstance.dispose()
+ }
+ globalInstance = null
+ globalInitPromise = null
+ }
+}
+
+/**
+ * Calculate cosine similarity between two embeddings
+ */
+export function cosineSimilarity(a: number[], b: number[]): number {
+ if (a.length !== b.length || a.length === 0) {
+ return 0
+ }
+
+ let dot = 0
+ let normA = 0
+ let normB = 0
+
+ for (let i = 0; i < a.length; i++) {
+ dot += a[i] * b[i]
+ normA += a[i] * a[i]
+ normB += b[i] * b[i]
+ }
+
+ if (normA === 0 || normB === 0) {
+ return 0
+ }
+
+ return dot / (Math.sqrt(normA) * Math.sqrt(normB))
+}
+
+// Export singleton access
+export const candleEmbeddingEngine = CandleEmbeddingEngine.getInstance()
diff --git a/src/embeddings/wasm/ONNXInferenceEngine.ts b/src/embeddings/wasm/ONNXInferenceEngine.ts
deleted file mode 100644
index 0f9d7b1a..00000000
--- a/src/embeddings/wasm/ONNXInferenceEngine.ts
+++ /dev/null
@@ -1,193 +0,0 @@
-/**
- * ONNX Inference Engine
- *
- * Direct ONNX Runtime Web wrapper for running model inference.
- * Uses WASM backend for universal compatibility (Node.js, Bun, Browser).
- *
- * This replaces transformers.js dependency with direct ONNX control.
- */
-
-import * as ort from 'onnxruntime-web'
-import { InferenceConfig, MODEL_CONSTANTS } from './types.js'
-
-// Configure ONNX Runtime for WASM-only
-ort.env.wasm.numThreads = 1 // Single-threaded for stability
-ort.env.wasm.simd = true // Enable SIMD where available
-
-/**
- * ONNX Inference Engine using onnxruntime-web
- */
-export class ONNXInferenceEngine {
- private session: ort.InferenceSession | null = null
- private initialized = false
- private modelPath: string
- private config: InferenceConfig
-
- constructor(config: Partial = {}) {
- this.modelPath = config.modelPath ?? ''
- this.config = {
- modelPath: this.modelPath,
- numThreads: config.numThreads ?? 1,
- enableSimd: config.enableSimd ?? true,
- enableCpuMemArena: config.enableCpuMemArena ?? false,
- }
- }
-
- /**
- * Initialize the ONNX session
- */
- async initialize(modelPath?: string): Promise {
- if (this.initialized && this.session) {
- return
- }
-
- const path = modelPath ?? this.modelPath
- if (!path) {
- throw new Error('Model path is required')
- }
-
- try {
- // Configure session options
- const sessionOptions: ort.InferenceSession.SessionOptions = {
- executionProviders: ['wasm'],
- graphOptimizationLevel: 'all',
- enableCpuMemArena: this.config.enableCpuMemArena,
- // Additional WASM-specific options
- executionMode: 'sequential',
- }
-
- // Load model from file path or URL
- this.session = await ort.InferenceSession.create(path, sessionOptions)
-
- this.initialized = true
- } catch (error) {
- this.initialized = false
- this.session = null
- throw new Error(
- `Failed to initialize ONNX session: ${error instanceof Error ? error.message : String(error)}`
- )
- }
- }
-
- /**
- * Run inference on tokenized input
- *
- * @param inputIds - Token IDs [batchSize, seqLen]
- * @param attentionMask - Attention mask [batchSize, seqLen]
- * @param tokenTypeIds - Token type IDs [batchSize, seqLen] (optional, defaults to zeros)
- * @returns Hidden states [batchSize, seqLen, hiddenSize]
- */
- async infer(
- inputIds: number[][],
- attentionMask: number[][],
- tokenTypeIds?: number[][]
- ): Promise {
- if (!this.session) {
- throw new Error('Session not initialized. Call initialize() first.')
- }
-
- const batchSize = inputIds.length
- const seqLen = inputIds[0].length
-
- // Convert to BigInt64Array (ONNX int64 type)
- const inputIdsFlat = new BigInt64Array(batchSize * seqLen)
- const attentionMaskFlat = new BigInt64Array(batchSize * seqLen)
- const tokenTypeIdsFlat = new BigInt64Array(batchSize * seqLen)
-
- for (let b = 0; b < batchSize; b++) {
- for (let s = 0; s < seqLen; s++) {
- const idx = b * seqLen + s
- inputIdsFlat[idx] = BigInt(inputIds[b][s])
- attentionMaskFlat[idx] = BigInt(attentionMask[b][s])
- tokenTypeIdsFlat[idx] = tokenTypeIds
- ? BigInt(tokenTypeIds[b][s])
- : BigInt(0)
- }
- }
-
- // Create ONNX tensors
- const inputIdsTensor = new ort.Tensor('int64', inputIdsFlat, [batchSize, seqLen])
- const attentionMaskTensor = new ort.Tensor('int64', attentionMaskFlat, [batchSize, seqLen])
- const tokenTypeIdsTensor = new ort.Tensor('int64', tokenTypeIdsFlat, [batchSize, seqLen])
-
- try {
- // Run inference
- const feeds = {
- input_ids: inputIdsTensor,
- attention_mask: attentionMaskTensor,
- token_type_ids: tokenTypeIdsTensor,
- }
-
- const results = await this.session.run(feeds)
-
- // Extract last_hidden_state (the output we need for mean pooling)
- // Model outputs: last_hidden_state [batch, seq, hidden] and pooler_output [batch, hidden]
- const output = results.last_hidden_state ?? results.token_embeddings
-
- if (!output) {
- throw new Error('Model did not return expected output tensor')
- }
-
- return output.data as Float32Array
- } finally {
- // Dispose tensors to free memory
- inputIdsTensor.dispose()
- attentionMaskTensor.dispose()
- tokenTypeIdsTensor.dispose()
- }
- }
-
- /**
- * Infer single sequence (convenience method)
- */
- async inferSingle(
- inputIds: number[],
- attentionMask: number[],
- tokenTypeIds?: number[]
- ): Promise {
- return this.infer(
- [inputIds],
- [attentionMask],
- tokenTypeIds ? [tokenTypeIds] : undefined
- )
- }
-
- /**
- * Check if initialized
- */
- isInitialized(): boolean {
- return this.initialized
- }
-
- /**
- * Get model input/output names (for debugging)
- */
- getModelInfo(): { inputs: readonly string[]; outputs: readonly string[] } | null {
- if (!this.session) {
- return null
- }
-
- return {
- inputs: this.session.inputNames,
- outputs: this.session.outputNames,
- }
- }
-
- /**
- * Dispose of the session and free resources
- */
- async dispose(): Promise {
- if (this.session) {
- // Release the session
- this.session = null
- }
- this.initialized = false
- }
-}
-
-/**
- * Create an inference engine with default configuration
- */
-export function createInferenceEngine(modelPath: string): ONNXInferenceEngine {
- return new ONNXInferenceEngine({ modelPath })
-}
diff --git a/src/embeddings/wasm/WASMEmbeddingEngine.ts b/src/embeddings/wasm/WASMEmbeddingEngine.ts
index 3675daa8..5adb2baa 100644
--- a/src/embeddings/wasm/WASMEmbeddingEngine.ts
+++ b/src/embeddings/wasm/WASMEmbeddingEngine.ts
@@ -1,25 +1,23 @@
/**
* WASM Embedding Engine
*
- * The main embedding engine that combines all components:
- * - WordPieceTokenizer: Text → Token IDs
- * - ONNXInferenceEngine: Token IDs → Hidden States
- * - EmbeddingPostProcessor: Hidden States → Normalized Embedding
- *
- * This replaces transformers.js with a clean, production-grade implementation.
+ * The main embedding engine using Candle (Rust/WASM) for inference.
+ * This provides sentence embeddings using the all-MiniLM-L6-v2 model.
*
* Features:
* - Singleton pattern (one model instance)
* - Lazy initialization
* - Batch processing support
- * - Zero runtime dependencies
+ * - Works with Bun compile (no dynamic imports)
+ * - Pure WASM - no native dependencies
+ *
+ * Migration from ONNX Runtime:
+ * This implementation replaces the previous ONNX-based engine with Candle WASM.
+ * The interface remains identical for backward compatibility.
*/
-import { WordPieceTokenizer } from './WordPieceTokenizer.js'
-import { ONNXInferenceEngine } from './ONNXInferenceEngine.js'
-import { EmbeddingPostProcessor } from './EmbeddingPostProcessor.js'
-import { getAssetLoader } from './AssetLoader.js'
-import { EmbeddingResult, EngineStats, MODEL_CONSTANTS } from './types.js'
+import { CandleEmbeddingEngine } from './CandleEmbeddingEngine.js'
+import { EmbeddingResult, EngineStats } from './types.js'
// Global singleton instance
let globalInstance: WASMEmbeddingEngine | null = null
@@ -27,17 +25,17 @@ let globalInitPromise: Promise | null = null
/**
* WASM-based embedding engine
+ *
+ * Uses Candle (HuggingFace's Rust ML framework) for inference.
+ * Supports all-MiniLM-L6-v2 with 384-dimensional embeddings.
*/
export class WASMEmbeddingEngine {
- private tokenizer: WordPieceTokenizer | null = null
- private inference: ONNXInferenceEngine | null = null
- private postProcessor: EmbeddingPostProcessor | null = null
+ private candleEngine: CandleEmbeddingEngine
private initialized = false
- private embedCount = 0
- private totalProcessingTimeMs = 0
private constructor() {
- // Private constructor for singleton
+ // Get the Candle engine singleton
+ this.candleEngine = CandleEmbeddingEngine.getInstance()
}
/**
@@ -51,7 +49,7 @@ export class WASMEmbeddingEngine {
}
/**
- * Initialize all components
+ * Initialize the engine
*/
async initialize(): Promise {
// Already initialized
@@ -79,178 +77,50 @@ export class WASMEmbeddingEngine {
* Perform actual initialization
*/
private async performInit(): Promise {
- const startTime = Date.now()
- console.log('🚀 Initializing WASM Embedding Engine...')
-
- try {
- const assetLoader = getAssetLoader()
-
- // Verify assets exist
- const verification = await assetLoader.verifyAssets()
- if (!verification.valid) {
- throw new Error(
- `Missing model assets:\n${verification.errors.join('\n')}\n\n` +
- `Expected model at: ${verification.modelPath}\n` +
- `Expected vocab at: ${verification.vocabPath}\n\n` +
- `Run 'npm run download-model' to download the model files.`
- )
- }
-
- // Load vocabulary and create tokenizer
- console.log('📖 Loading vocabulary...')
- const vocab = await assetLoader.loadVocab()
- this.tokenizer = new WordPieceTokenizer(vocab)
- console.log(`✅ Vocabulary loaded: ${this.tokenizer.vocabSize} tokens`)
-
- // Initialize ONNX inference engine
- console.log('🧠 Loading ONNX model...')
- const modelPath = await assetLoader.getModelPath()
- this.inference = new ONNXInferenceEngine({ modelPath })
- await this.inference.initialize(modelPath)
- console.log('✅ ONNX model loaded')
-
- // Create post-processor
- this.postProcessor = new EmbeddingPostProcessor(MODEL_CONSTANTS.HIDDEN_SIZE)
-
- this.initialized = true
- const initTime = Date.now() - startTime
- console.log(`✅ WASM Embedding Engine ready in ${initTime}ms`)
-
- } catch (error) {
- this.initialized = false
- this.tokenizer = null
- this.inference = null
- this.postProcessor = null
- throw new Error(
- `Failed to initialize WASM Embedding Engine: ${error instanceof Error ? error.message : String(error)}`
- )
- }
+ await this.candleEngine.initialize()
+ this.initialized = true
}
/**
* Generate embedding for text
*/
async embed(text: string): Promise {
- const result = await this.embedWithMetadata(text)
- return result.embedding
+ return this.candleEngine.embed(text)
}
/**
* Generate embedding with metadata
*/
async embedWithMetadata(text: string): Promise {
- // Ensure initialized
- if (!this.initialized) {
- await this.initialize()
- }
-
- if (!this.tokenizer || !this.inference || !this.postProcessor) {
- throw new Error('Engine not properly initialized')
- }
-
- const startTime = Date.now()
-
- // 1. Tokenize
- const tokenized = this.tokenizer.encode(text)
-
- // 2. Run inference
- const hiddenStates = await this.inference.inferSingle(
- tokenized.inputIds,
- tokenized.attentionMask,
- tokenized.tokenTypeIds
- )
-
- // 3. Post-process (mean pool + normalize)
- const embedding = this.postProcessor.process(
- hiddenStates,
- tokenized.attentionMask,
- tokenized.inputIds.length
- )
-
- const processingTimeMs = Date.now() - startTime
- this.embedCount++
- this.totalProcessingTimeMs += processingTimeMs
-
- return {
- embedding: Array.from(embedding),
- tokenCount: tokenized.tokenCount,
- processingTimeMs,
- }
+ return this.candleEngine.embedWithMetadata(text)
}
/**
* Batch embed multiple texts
*/
async embedBatch(texts: string[]): Promise {
- // Ensure initialized
- if (!this.initialized) {
- await this.initialize()
- }
-
- if (!this.tokenizer || !this.inference || !this.postProcessor) {
- throw new Error('Engine not properly initialized')
- }
-
- if (texts.length === 0) {
- return []
- }
-
- // Tokenize all texts
- const batch = this.tokenizer.encodeBatch(texts)
- const seqLen = batch.inputIds[0].length
-
- // Run batch inference
- const hiddenStates = await this.inference.infer(
- batch.inputIds,
- batch.attentionMask,
- batch.tokenTypeIds
- )
-
- // Post-process each result
- const embeddings = this.postProcessor.processBatch(
- hiddenStates,
- batch.attentionMask,
- texts.length,
- seqLen
- )
-
- this.embedCount += texts.length
-
- return embeddings.map(e => Array.from(e))
+ return this.candleEngine.embedBatch(texts)
}
/**
* Check if initialized
*/
isInitialized(): boolean {
- return this.initialized
+ return this.initialized && this.candleEngine.isInitialized()
}
/**
* Get engine statistics
*/
getStats(): EngineStats {
- return {
- initialized: this.initialized,
- embedCount: this.embedCount,
- totalProcessingTimeMs: this.totalProcessingTimeMs,
- avgProcessingTimeMs: this.embedCount > 0
- ? this.totalProcessingTimeMs / this.embedCount
- : 0,
- modelName: MODEL_CONSTANTS.MODEL_NAME,
- }
+ return this.candleEngine.getStats()
}
/**
* Dispose and free resources
*/
async dispose(): Promise {
- if (this.inference) {
- await this.inference.dispose()
- this.inference = null
- }
- this.tokenizer = null
- this.postProcessor = null
+ await this.candleEngine.dispose()
this.initialized = false
}
@@ -263,6 +133,7 @@ export class WASMEmbeddingEngine {
}
globalInstance = null
globalInitPromise = null
+ CandleEmbeddingEngine.resetInstance()
}
}
diff --git a/src/embeddings/wasm/index.ts b/src/embeddings/wasm/index.ts
index f5b01bb8..014f5bb5 100644
--- a/src/embeddings/wasm/index.ts
+++ b/src/embeddings/wasm/index.ts
@@ -1,11 +1,15 @@
/**
* WASM Embedding Engine - Public Exports
*
- * Clean, production-grade embedding engine using direct ONNX WASM.
- * No transformers.js dependency, no runtime downloads, works everywhere.
+ * Clean, production-grade embedding engine using Candle (Rust/WASM).
+ * No ONNX Runtime dependency, no dynamic imports, works everywhere.
+ *
+ * Bun Compile Support:
+ * When compiled with `bun build --compile`, the WASM module is automatically
+ * embedded into the binary. No external files or runtime downloads needed.
*/
-// Main engine
+// Main engine (delegates to Candle)
export {
WASMEmbeddingEngine,
wasmEmbeddingEngine,
@@ -14,9 +18,15 @@ export {
getEmbeddingStats,
} from './WASMEmbeddingEngine.js'
-// Components (for advanced use)
+// Candle engine (direct access)
+export {
+ CandleEmbeddingEngine,
+ candleEmbeddingEngine,
+ cosineSimilarity,
+} from './CandleEmbeddingEngine.js'
+
+// Legacy components (for backward compatibility - not needed with Candle)
export { WordPieceTokenizer, createTokenizer } from './WordPieceTokenizer.js'
-export { ONNXInferenceEngine, createInferenceEngine } from './ONNXInferenceEngine.js'
export { EmbeddingPostProcessor, createPostProcessor } from './EmbeddingPostProcessor.js'
export { AssetLoader, getAssetLoader, createAssetLoader } from './AssetLoader.js'
diff --git a/src/embeddings/wasm/types.ts b/src/embeddings/wasm/types.ts
index cebc666f..f59b2f87 100644
--- a/src/embeddings/wasm/types.ts
+++ b/src/embeddings/wasm/types.ts
@@ -1,11 +1,13 @@
/**
* Type definitions for WASM Embedding Engine
*
- * Clean, production-grade types for direct ONNX WASM embeddings.
+ * Clean, production-grade types for Candle WASM embeddings.
+ * Model weights are embedded in WASM at compile time.
*/
/**
* Tokenizer configuration for WordPiece
+ * @deprecated Tokenization now happens in Rust/WASM - kept for backward compatibility
*/
export interface TokenizerConfig {
/** Vocabulary mapping word → token ID */
@@ -18,7 +20,7 @@ export interface TokenizerConfig {
sepTokenId: number
/** [PAD] token ID (0 for BERT-based models) */
padTokenId: number
- /** Maximum sequence length (512 for all-MiniLM-L6-v2) */
+ /** Maximum sequence length (256 for all-MiniLM-L6-v2 in Candle) */
maxLength: number
/** Whether to lowercase input (true for uncased models) */
doLowerCase: boolean
@@ -26,6 +28,7 @@ export interface TokenizerConfig {
/**
* Result of tokenization
+ * @deprecated Tokenization now happens in Rust/WASM - kept for backward compatibility
*/
export interface TokenizedInput {
/** Token IDs including [CLS] and [SEP] */
@@ -39,10 +42,11 @@ export interface TokenizedInput {
}
/**
- * ONNX inference engine configuration
+ * Inference engine configuration
+ * @deprecated Model is now embedded in WASM - kept for backward compatibility
*/
export interface InferenceConfig {
- /** Path to ONNX model file */
+ /** Path to model file (not used with embedded model) */
modelPath: string
/** Path to WASM files directory */
wasmPath?: string
@@ -50,7 +54,7 @@ export interface InferenceConfig {
numThreads: number
/** Enable SIMD if available */
enableSimd: boolean
- /** Enable CPU memory arena (false for memory efficiency) */
+ /** Enable CPU memory arena */
enableCpuMemArena: boolean
}
@@ -60,7 +64,7 @@ export interface InferenceConfig {
export interface EmbeddingResult {
/** 384-dimensional embedding vector */
embedding: number[]
- /** Number of tokens processed */
+ /** Number of tokens processed (0 when using Candle - handled internally) */
tokenCount: number
/** Processing time in milliseconds */
processingTimeMs: number
@@ -116,7 +120,7 @@ export const SPECIAL_TOKENS = {
*/
export const MODEL_CONSTANTS = {
HIDDEN_SIZE: 384,
- MAX_SEQUENCE_LENGTH: 512,
+ MAX_SEQUENCE_LENGTH: 256, // Candle uses 256 for efficiency
VOCAB_SIZE: 30522,
MODEL_NAME: 'all-MiniLM-L6-v2',
} as const
diff --git a/src/index.ts b/src/index.ts
index 7117fc48..a8d0e9e8 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -486,18 +486,6 @@ import { getNounTypes, getVerbTypes, getNounTypeMap, getVerbTypeMap } from './ut
// Export BrainyTypes for complete type management
import { BrainyTypes, TypeSuggestion, suggestType } from './utils/brainyTypes.js'
-// Export Semantic Type Inference - THE ONE unified system (nouns + verbs)
-import {
- inferTypes,
- inferNouns,
- inferVerbs,
- inferIntent,
- getSemanticTypeInference,
- SemanticTypeInference,
- type TypeInference,
- type SemanticTypeInferenceOptions
-} from './query/semanticTypeInference.js'
-
export {
NounType,
VerbType,
@@ -507,20 +495,11 @@ export {
getVerbTypeMap,
// BrainyTypes - complete type management
BrainyTypes,
- suggestType,
- // Semantic Type Inference - Unified noun + verb inference
- inferTypes, // Main function - returns all types (nouns + verbs)
- inferNouns, // Convenience - noun types only
- inferVerbs, // Convenience - verb types only
- inferIntent, // Best for query understanding - returns {nouns, verbs}
- getSemanticTypeInference,
- SemanticTypeInference
+ suggestType
}
export type {
- TypeSuggestion,
- TypeInference,
- SemanticTypeInferenceOptions
+ TypeSuggestion
}
// Export MCP (Model Control Protocol) components
diff --git a/src/neural/SmartRelationshipExtractor.ts b/src/neural/SmartRelationshipExtractor.ts
index d3475ca5..0967eab4 100644
--- a/src/neural/SmartRelationshipExtractor.ts
+++ b/src/neural/SmartRelationshipExtractor.ts
@@ -10,10 +10,9 @@
* - Comprehensive relationship intelligence built-in
*
* Ensemble Architecture:
- * - VerbExactMatchSignal (40%) - Explicit keywords and phrases
- * - VerbEmbeddingSignal (35%) - Neural similarity with verb embeddings
- * - VerbPatternSignal (20%) - Regex patterns and structures
- * - VerbContextSignal (5%) - Entity type pair hints
+ * - VerbEmbeddingSignal (55%) - Neural similarity with verb embeddings
+ * - VerbPatternSignal (30%) - Regex patterns and structures
+ * - VerbContextSignal (15%) - Entity type pair hints
*
* Performance:
* - Parallel signal execution (~15-20ms total)
@@ -24,11 +23,9 @@
import type { Brainy } from '../brainy.js'
import type { VerbType, NounType } from '../types/graphTypes.js'
-import { VerbExactMatchSignal } from './signals/VerbExactMatchSignal.js'
import { VerbEmbeddingSignal } from './signals/VerbEmbeddingSignal.js'
import { VerbPatternSignal } from './signals/VerbPatternSignal.js'
import { VerbContextSignal } from './signals/VerbContextSignal.js'
-import type { VerbSignal as ExactVerbSignal } from './signals/VerbExactMatchSignal.js'
import type { VerbSignal as EmbeddingVerbSignal } from './signals/VerbEmbeddingSignal.js'
import type { VerbSignal as PatternVerbSignal } from './signals/VerbPatternSignal.js'
import type { VerbSignal as ContextVerbSignal } from './signals/VerbContextSignal.js'
@@ -40,7 +37,7 @@ export interface RelationshipExtractionResult {
type: VerbType
confidence: number
weight: number
- source: 'ensemble' | 'exact-match' | 'pattern' | 'embedding' | 'context'
+ source: 'ensemble' | 'pattern' | 'embedding' | 'context'
evidence: string
metadata?: {
signalResults?: Array<{
@@ -61,10 +58,9 @@ export interface SmartRelationshipExtractorOptions {
enableEnsemble?: boolean // Use ensemble vs single best signal (default: true)
cacheSize?: number // LRU cache size (default: 2000)
weights?: { // Custom signal weights (must sum to 1.0)
- exactMatch?: number // Default: 0.40
- embedding?: number // Default: 0.35
- pattern?: number // Default: 0.20
- context?: number // Default: 0.05
+ embedding?: number // Default: 0.55
+ pattern?: number // Default: 0.30
+ context?: number // Default: 0.15
}
}
@@ -72,7 +68,7 @@ export interface SmartRelationshipExtractorOptions {
* Internal signal result wrapper
*/
interface SignalResult {
- signal: 'exact-match' | 'embedding' | 'pattern' | 'context'
+ signal: 'embedding' | 'pattern' | 'context'
type: VerbType | null
confidence: number
weight: number
@@ -97,7 +93,6 @@ export class SmartRelationshipExtractor {
private options: Required> & { weights: Required> }
// Signal instances
- private exactMatchSignal: VerbExactMatchSignal
private embeddingSignal: VerbEmbeddingSignal
private patternSignal: VerbPatternSignal
private contextSignal: VerbContextSignal
@@ -110,7 +105,6 @@ export class SmartRelationshipExtractor {
private stats = {
calls: 0,
cacheHits: 0,
- exactMatchWins: 0,
embeddingWins: 0,
patternWins: 0,
contextWins: 0,
@@ -129,10 +123,9 @@ export class SmartRelationshipExtractor {
enableEnsemble: options?.enableEnsemble ?? true,
cacheSize: options?.cacheSize ?? 2000,
weights: {
- exactMatch: options?.weights?.exactMatch ?? 0.40,
- embedding: options?.weights?.embedding ?? 0.35,
- pattern: options?.weights?.pattern ?? 0.20,
- context: options?.weights?.context ?? 0.05
+ embedding: options?.weights?.embedding ?? 0.55,
+ pattern: options?.weights?.pattern ?? 0.30,
+ context: options?.weights?.context ?? 0.15
}
}
@@ -143,24 +136,19 @@ export class SmartRelationshipExtractor {
}
// Initialize signals
- this.exactMatchSignal = new VerbExactMatchSignal(brain, {
- minConfidence: 0.50, // Lower threshold, ensemble will filter
- cacheSize: Math.floor(this.options.cacheSize / 4)
- })
-
this.embeddingSignal = new VerbEmbeddingSignal(brain, {
minConfidence: 0.50,
- cacheSize: Math.floor(this.options.cacheSize / 4)
+ cacheSize: Math.floor(this.options.cacheSize / 3)
})
this.patternSignal = new VerbPatternSignal(brain, {
minConfidence: 0.50,
- cacheSize: Math.floor(this.options.cacheSize / 4)
+ cacheSize: Math.floor(this.options.cacheSize / 3)
})
this.contextSignal = new VerbContextSignal(brain, {
minConfidence: 0.50,
- cacheSize: Math.floor(this.options.cacheSize / 4)
+ cacheSize: Math.floor(this.options.cacheSize / 3)
})
}
@@ -197,8 +185,7 @@ export class SmartRelationshipExtractor {
try {
// Execute all signals in parallel
- const [exactMatch, embeddingMatch, patternMatch, contextMatch] = await Promise.all([
- this.exactMatchSignal.classify(context).catch(() => null),
+ const [embeddingMatch, patternMatch, contextMatch] = await Promise.all([
this.embeddingSignal.classify(context, options?.contextVector).catch(() => null),
this.patternSignal.classify(subject, object, context).catch(() => null),
this.contextSignal.classify(options?.subjectType, options?.objectType).catch(() => null)
@@ -206,13 +193,6 @@ export class SmartRelationshipExtractor {
// Wrap results with weights
const signalResults: SignalResult[] = [
- {
- signal: 'exact-match',
- type: exactMatch?.type || null,
- confidence: exactMatch?.confidence || 0,
- weight: this.options.weights.exactMatch,
- evidence: exactMatch?.evidence || ''
- },
{
signal: 'embedding',
type: embeddingMatch?.type || null,
@@ -368,7 +348,7 @@ export class SmartRelationshipExtractor {
type: best.type!,
confidence: best.confidence,
weight: best.confidence,
- source: best.signal as any,
+ source: best.signal,
evidence: best.evidence,
metadata: undefined
}
@@ -381,8 +361,6 @@ export class SmartRelationshipExtractor {
// Track win counts
if (result.source === 'ensemble') {
this.stats.ensembleWins++
- } else if (result.source === 'exact-match') {
- this.stats.exactMatchWins++
} else if (result.source === 'embedding') {
this.stats.embeddingWins++
} else if (result.source === 'pattern') {
@@ -445,7 +423,6 @@ export class SmartRelationshipExtractor {
cacheHitRate: this.stats.calls > 0 ? this.stats.cacheHits / this.stats.calls : 0,
ensembleRate: this.stats.calls > 0 ? this.stats.ensembleWins / this.stats.calls : 0,
signalStats: {
- exactMatch: this.exactMatchSignal.getStats(),
embedding: this.embeddingSignal.getStats(),
pattern: this.patternSignal.getStats(),
context: this.contextSignal.getStats()
@@ -460,7 +437,6 @@ export class SmartRelationshipExtractor {
this.stats = {
calls: 0,
cacheHits: 0,
- exactMatchWins: 0,
embeddingWins: 0,
patternWins: 0,
contextWins: 0,
@@ -470,7 +446,6 @@ export class SmartRelationshipExtractor {
averageSignalsUsed: 0
}
- this.exactMatchSignal.resetStats()
this.embeddingSignal.resetStats()
this.patternSignal.resetStats()
this.contextSignal.resetStats()
@@ -483,7 +458,6 @@ export class SmartRelationshipExtractor {
this.cache.clear()
this.cacheOrder = []
- this.exactMatchSignal.clearCache()
this.embeddingSignal.clearCache()
this.patternSignal.clearCache()
this.contextSignal.clearCache()
diff --git a/src/neural/embeddedKeywordEmbeddings.ts b/src/neural/embeddedKeywordEmbeddings.ts
deleted file mode 100644
index c9db08b1..00000000
--- a/src/neural/embeddedKeywordEmbeddings.ts
+++ /dev/null
@@ -1,412700 +0,0 @@
-/**
- * Pre-computed Keyword Embeddings for Unified Semantic Type Inference
- *
- * Generated by: scripts/buildKeywordEmbeddings.ts
- * Generated on: 2025-11-06T17:59:17.355Z
- * Total keywords: 1050 (716 nouns + 334 verbs)
- * Canonical: 919, Synonyms: 131
- * Embedding dimension: 384
- * Total size: 1.54MB
- *
- * This file contains pre-computed semantic embeddings for ALL type inference keywords.
- * Supports unified noun + verb semantic inference via SemanticTypeInference.
- * Used for O(log n) semantic matching via HNSW index.
- */
-
-import { NounType, VerbType } from '../types/graphTypes.js'
-import { Vector } from '../coreTypes.js'
-
-export interface KeywordEmbedding {
- keyword: string
- type: NounType | VerbType
- typeCategory: 'noun' | 'verb'
- confidence: number
- isCanonical: boolean
- embedding: Vector
-}
-
-// Use 'any' type to avoid TypeScript union complexity issues with 1050+ literal types
-const KEYWORD_EMBEDDINGS: any = [
- {
- "keyword": "person",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.11833861470222473,
- 0.03336915373802185,
- -0.046314217150211334,
- -0.025134768337011337,
- -0.08549583703279495,
- -0.04026316478848457,
- 0.18337376415729523,
- 0.04254917427897453,
- 0.054608240723609924,
- 0.005116179119795561,
- 0.006142897065728903,
- -0.05538663640618324,
- -0.05065147206187248,
- -0.021632444113492966,
- -0.0016776329139247537,
- 0.02901625446975231,
- -0.021541185677051544,
- 0.05438724905252457,
- -0.012294329702854156,
- 0.01639869436621666,
- -0.09612832963466644,
- 0.0052789864130318165,
- -0.0671599805355072,
- 0.026991432532668114,
- 0.0071275606751441956,
- 0.009838815778493881,
- 0.016255445778369904,
- 0.012633949518203735,
- 0.012899178080260754,
- -0.0311812125146389,
- 0.027348846197128296,
- -0.03351900354027748,
- 0.07149422913789749,
- 0.055059973150491714,
- -0.07872403413057327,
- 0.03129846975207329,
- -0.024035202339291573,
- 0.06616532057523727,
- -0.026004629209637642,
- -0.005616806447505951,
- -0.005712228827178478,
- -0.041231948882341385,
- -0.06327219307422638,
- -0.035069745033979416,
- -0.00029194203671067953,
- -0.03478194400668144,
- 0.05731259286403656,
- -0.022807979956269264,
- -0.006080052815377712,
- -0.02209733985364437,
- -0.05355106294155121,
- 0.04092317819595337,
- -0.07458331435918808,
- -0.0026379143819212914,
- 0.0615614615380764,
- -0.03207153081893921,
- 0.03354252874851227,
- -0.00006179559568408877,
- 0.0324360728263855,
- -0.0046034203842282295,
- 0.029618963599205017,
- -0.03311505168676376,
- -0.07116375118494034,
- 0.0220441035926342,
- 0.06341162323951721,
- 0.044253528118133545,
- 0.03251746669411659,
- -0.06044481322169304,
- 0.017587685957551003,
- -0.06691756844520569,
- 0.004109962377697229,
- 0.030914979055523872,
- 0.012367014773190022,
- 0.009721905924379826,
- 0.08666600286960602,
- -0.11741679906845093,
- 0.03357565775513649,
- -0.039458077400922775,
- 0.06853228062391281,
- 0.09146454185247421,
- -0.010632789693772793,
- -0.03532522916793823,
- 0.029879095032811165,
- -0.00040044562774710357,
- 0.045846641063690186,
- 0.05287575349211693,
- 0.0026700824964791536,
- 0.06781706213951111,
- -0.021856768056750298,
- -0.02292438969016075,
- -0.07328683882951736,
- 0.07161162048578262,
- 0.05337844789028168,
- -0.03970811888575554,
- -0.08758362382650375,
- -0.0013061503414064646,
- -0.031872764229774475,
- -0.01056567020714283,
- -0.09564045071601868,
- 0.2742237448692322,
- -0.015702106058597565,
- 0.04471316188573837,
- 0.022389795631170273,
- 0.04282032698392868,
- 0.029779432341456413,
- 0.022471992298960686,
- -0.012765747494995594,
- 0.03866293653845787,
- -0.025341680273413658,
- -0.008958172984421253,
- -0.05129801109433174,
- -0.023481221869587898,
- -0.09544102847576141,
- 0.04805462807416916,
- 0.07270025461912155,
- 0.008506974205374718,
- -0.03574187681078911,
- -0.019425688311457634,
- 0.02285505272448063,
- -0.06457579880952835,
- 0.03941846266388893,
- 0.00324789946898818,
- 0.021540723741054535,
- -0.0060536740347743034,
- -0.056191667914390564,
- -0.040823906660079956,
- 0.06893009692430496,
- -7.717880076372536e-33,
- -0.012028214521706104,
- 0.022301336750388145,
- 0.05871231108903885,
- 0.07337398082017899,
- -0.05558966100215912,
- 0.037376757711172104,
- -0.012295993976294994,
- 0.025290200486779213,
- -0.005216339137405157,
- 0.05679516866803169,
- 0.010593387298285961,
- -0.11420386284589767,
- -0.06736467778682709,
- 0.04473819583654404,
- 0.024952556937932968,
- -0.03987438976764679,
- -0.033089540898799896,
- -0.011560842394828796,
- -0.12233137339353561,
- 0.01796611025929451,
- 0.07746461778879166,
- 0.05005120113492012,
- 0.01213938556611538,
- 0.011752435006201267,
- -0.04088061302900314,
- -0.027132965624332428,
- 0.06418195366859436,
- 0.002255827421322465,
- 0.002306841779500246,
- -0.011238174512982368,
- 0.024725954979658127,
- 0.06840582191944122,
- 0.007207054179161787,
- -0.01124503742903471,
- 0.003014409216120839,
- -0.03468560054898262,
- 0.009091898798942566,
- -0.05717382952570915,
- 0.014884687960147858,
- -0.08210909366607666,
- -0.017352845519781113,
- 0.01740696281194687,
- 0.027913926169276237,
- 0.03079107031226158,
- -0.1075051799416542,
- -0.01872948184609413,
- 0.07391469180583954,
- 0.006440639030188322,
- -0.017630891874432564,
- 0.03156428784132004,
- -0.026293030008673668,
- 0.019545039162039757,
- -0.08192096650600433,
- 0.007379280403256416,
- -0.03083363175392151,
- -0.06451412290334702,
- 0.0349525585770607,
- -0.009434972889721394,
- -0.014019899070262909,
- 0.013768259435892105,
- -0.03515864908695221,
- 0.12238389998674393,
- -0.037014853209257126,
- 0.055891022086143494,
- 0.038242824375629425,
- -0.06879317760467529,
- 0.019834287464618683,
- -0.05441496893763542,
- 0.03406659513711929,
- -0.007548263296484947,
- 0.010165249928832054,
- 0.018887557089328766,
- 0.059314195066690445,
- -0.020198101177811623,
- -0.04403868690133095,
- 0.011183841153979301,
- 0.014298881404101849,
- 0.006401451304554939,
- -0.08175089955329895,
- 0.026152146980166435,
- -0.05186941847205162,
- -0.03515877574682236,
- 0.031179342418909073,
- -0.07517948001623154,
- -0.04259282723069191,
- 0.041922107338905334,
- -0.07127158343791962,
- -0.03497898578643799,
- 0.044650278985500336,
- 0.0540802888572216,
- 0.003978226333856583,
- 0.039165645837783813,
- 0.02384052239358425,
- 0.07792378216981888,
- -0.03469083830714226,
- 5.0073675295549186e-33,
- 0.0118946498259902,
- -0.0009366155136376619,
- -0.010544134303927422,
- 0.08170309662818909,
- 0.0782582014799118,
- -0.03691153973340988,
- 0.022621313109993935,
- 0.06449487805366516,
- -0.04502013325691223,
- 0.05344941467046738,
- -0.0512666217982769,
- -0.017896689474582672,
- 0.11053421348333359,
- 0.01677911914885044,
- 0.02704465761780739,
- 0.10141730308532715,
- -0.030468342825770378,
- -0.007079452741891146,
- -0.017845518887043,
- 0.03707508742809296,
- -0.09259892255067825,
- -0.05594952031970024,
- -0.019936220720410347,
- -0.06239413842558861,
- -0.10319787263870239,
- -0.005409644450992346,
- 0.15990999341011047,
- -0.006115428637713194,
- -0.06611982733011246,
- -0.03730215132236481,
- 0.006479191593825817,
- 0.0375688374042511,
- -0.09762188792228699,
- -0.0631522685289383,
- -0.01794174127280712,
- 0.08998894691467285,
- -0.005084932316094637,
- 0.00033221521880477667,
- -0.018622057512402534,
- 0.020498991012573242,
- 0.044712673872709274,
- 0.12124945968389511,
- 0.06049080565571785,
- 0.010574648156762123,
- 0.0020477131474763155,
- 0.021041901782155037,
- -0.024088237434625626,
- -0.044512972235679626,
- 0.027292979881167412,
- 0.05788188427686691,
- -0.062174197286367416,
- 0.017357032746076584,
- -0.03332428261637688,
- 0.0007094799657352269,
- 0.03526666760444641,
- 0.02569173276424408,
- -0.006974120158702135,
- -0.036568399518728256,
- 0.04292009398341179,
- 0.030897151678800583,
- -0.05256481096148491,
- -0.035612743347883224,
- -0.015925440937280655,
- 0.07348909229040146,
- -0.024762803688645363,
- 0.021375242620706558,
- -0.07467639446258545,
- -0.006455183960497379,
- -0.04708537831902504,
- -0.021037667989730835,
- 0.1422605961561203,
- -0.0713476687669754,
- -0.023547004908323288,
- 0.02776619978249073,
- -0.034848541021347046,
- -0.05770513042807579,
- -0.0536702424287796,
- -0.016402367502450943,
- 0.07309518754482269,
- -0.0653068870306015,
- -0.036218371242284775,
- -0.029710588976740837,
- -0.03540832921862602,
- 0.018275195732712746,
- -0.03205112740397453,
- -0.04176304116845131,
- 0.011457309126853943,
- 0.04992424324154854,
- -0.016226572915911674,
- -0.00022930762497708201,
- 0.020905233919620514,
- 0.03681780397891998,
- -0.05740766227245331,
- -0.03861921280622482,
- -0.037785615772008896,
- -1.5316324208924925e-8,
- -0.057794008404016495,
- 0.016418812796473503,
- -0.027537452057003975,
- -0.02959013544023037,
- 0.0663074254989624,
- 0.038807377219200134,
- 0.0711776614189148,
- -0.07251336425542831,
- -0.004402899648994207,
- 0.013592446222901344,
- -0.010887496173381805,
- 0.0574645921587944,
- 0.11432908475399017,
- 0.015632594004273415,
- 0.07631277292966843,
- -0.09747499227523804,
- -0.010710432194173336,
- 0.025641510263085365,
- -0.04911356791853905,
- 0.02460557222366333,
- 0.042585987597703934,
- 0.021829040721058846,
- 0.03231257572770119,
- 0.019663939252495766,
- 0.01020666304975748,
- -0.012115743942558765,
- -0.07436095178127289,
- 0.08419229090213776,
- -0.05620580539107323,
- 0.028784416615962982,
- -0.018396826460957527,
- 0.1025986298918724,
- -0.0031090460252016783,
- -0.031091012060642242,
- 0.09078875929117203,
- 0.039741866290569305,
- 0.029669765383005142,
- -0.00462240120396018,
- 0.013826102949678898,
- 0.07084856182336807,
- -0.03724322468042374,
- 0.005314241163432598,
- -0.017551351338624954,
- 0.05275745317339897,
- 0.10185446590185165,
- 0.018464963883161545,
- -0.01505285780876875,
- -0.10636083781719208,
- -0.018001241609454155,
- -0.014466223306953907,
- -0.005117866210639477,
- -0.06016498804092407,
- 0.09121230989694595,
- 0.045738667249679565,
- -0.012975635938346386,
- -0.0871298536658287,
- 0.019289972260594368,
- 0.029774829745292664,
- -0.04820890352129936,
- -0.025524092838168144,
- 0.08622624725103378,
- -0.012341340072453022,
- -0.0000034983056593773654,
- 0.02044895850121975
- ]
- },
- {
- "keyword": "people",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.046546466648578644,
- 0.03843134641647339,
- -0.026814967393875122,
- 0.04365546628832817,
- -0.05751103535294533,
- -0.008455434814095497,
- 0.155702143907547,
- -0.02419184520840645,
- 0.03940261900424957,
- 0.044466253370046616,
- 0.03727549687027931,
- -0.04601861163973808,
- -0.03213457390666008,
- -0.036847345530986786,
- -0.03189558908343315,
- -0.0010508998529985547,
- -0.06179559603333473,
- -0.022993745282292366,
- -0.06684022396802902,
- -0.0395805649459362,
- -0.11437150835990906,
- -0.005002932623028755,
- -0.05417503044009209,
- 0.005808449815958738,
- -0.07123774290084839,
- 0.08481995761394501,
- -0.018041403964161873,
- -0.019075317308306694,
- 0.020850980654358864,
- -0.06121613457798958,
- -0.002429648069664836,
- -0.0188027024269104,
- 0.13589590787887573,
- 0.025566190481185913,
- -0.09371385723352432,
- 0.0698913112282753,
- 0.040940914303064346,
- 0.04826287925243378,
- -0.02555733174085617,
- -0.035692036151885986,
- 0.027176646515727043,
- -0.028484199196100235,
- 0.0031748381443321705,
- -0.043712057173252106,
- 0.03906818479299545,
- 0.037112656980752945,
- 0.06559329479932785,
- -0.023142844438552856,
- 0.04982718825340271,
- 0.047593578696250916,
- 0.04137614741921425,
- 0.036671265959739685,
- -0.04688795655965805,
- 0.025505267083644867,
- 0.00033608346711844206,
- -0.07571838796138763,
- -0.026972902938723564,
- 0.013162815012037754,
- 0.0028109934646636248,
- -0.04058641940355301,
- 0.06582377851009369,
- -0.05570684000849724,
- -0.06709562242031097,
- 0.04512013867497444,
- 0.07978709042072296,
- 0.029018769040703773,
- 0.015124554745852947,
- 0.06002840772271156,
- 0.03079637885093689,
- -0.03818697854876518,
- 0.021500781178474426,
- -0.002289666561409831,
- 0.045141302049160004,
- 0.013054718263447285,
- 0.057867955416440964,
- -0.07780066132545471,
- -0.03187260404229164,
- -0.0432274229824543,
- 0.039650630205869675,
- -0.01566789671778679,
- 0.050223514437675476,
- -0.02231883630156517,
- -0.028667427599430084,
- 0.016313306987285614,
- 0.04368606209754944,
- 0.05329734459519386,
- 0.010895339772105217,
- 0.05618540197610855,
- -0.042212121188640594,
- 0.007044313009828329,
- -0.07864169031381607,
- 0.03769245743751526,
- 0.10567935556173325,
- -0.006843050010502338,
- -0.08864983916282654,
- 0.05401325225830078,
- -0.011393633671104908,
- -0.023704493418335915,
- -0.042025692760944366,
- 0.24428294599056244,
- -0.029570436105132103,
- 0.0526307038962841,
- 0.024975353851914406,
- 0.025893963873386383,
- -0.006975555792450905,
- -0.01679646596312523,
- -0.07302635908126831,
- 0.013387316837906837,
- -0.008391065523028374,
- 0.01450599916279316,
- -0.02838653326034546,
- 0.04357827454805374,
- -0.09132831543684006,
- 0.016877248883247375,
- -0.006256975699216127,
- -0.047454267740249634,
- 0.01716306433081627,
- -0.0015539571177214384,
- -0.03551505133509636,
- -0.06234195828437805,
- 0.01073671318590641,
- 0.057572297751903534,
- 0.013422815129160881,
- 0.0013059393968433142,
- -0.007711176294833422,
- -0.0003421263536438346,
- -0.05250177159905434,
- -5.8811958671516364e-33,
- -0.0026366389356553555,
- -0.04522908478975296,
- 0.058188486844301224,
- 0.05022093653678894,
- -0.08046369254589081,
- -0.01050077099353075,
- -0.05087251961231232,
- 0.031232476234436035,
- 0.01791645959019661,
- 0.05766564607620239,
- -0.045419029891490936,
- -0.0731944590806961,
- -0.061935506761074066,
- 0.05638175457715988,
- 0.11122190952301025,
- -0.009434702806174755,
- -0.06646330654621124,
- -0.02038872241973877,
- -0.12397713959217072,
- 0.05944984778761864,
- -0.01815968006849289,
- 0.12661023437976837,
- -0.04168519750237465,
- 0.07258657366037369,
- -0.0605294331908226,
- -0.012348751537501812,
- 0.03265336900949478,
- -0.012148548848927021,
- 0.04639309644699097,
- 0.00006711616879329085,
- 0.07549440115690231,
- 0.06287737190723419,
- 0.022112663835287094,
- 0.004143276251852512,
- -0.007358594331890345,
- -0.012590768747031689,
- 0.052315473556518555,
- -0.07187189906835556,
- 0.00841849111020565,
- -0.03077765926718712,
- 0.009688451886177063,
- 0.04402875155210495,
- -0.008996961638331413,
- -0.00679492624476552,
- -0.07554870843887329,
- 0.0030274740420281887,
- 0.042361512780189514,
- 0.003008469007909298,
- -0.10003312677145004,
- 0.08348899334669113,
- -0.014540215954184532,
- -0.016399787738919258,
- -0.08290524035692215,
- 0.055022917687892914,
- 0.007091875653713942,
- -0.05252675339579582,
- 0.005837364587932825,
- 0.009928013198077679,
- -0.034404125064611435,
- -0.004496782086789608,
- -0.013576618395745754,
- 0.13625669479370117,
- 0.029768334701657295,
- 0.011300082318484783,
- 0.041929177939891815,
- -0.011578012257814407,
- 0.013057607226073742,
- -0.04831952229142189,
- 0.04673823341727257,
- 0.00515481224283576,
- -0.01377939060330391,
- 0.024938484653830528,
- 0.05218241363763809,
- 0.049139831215143204,
- 0.044809091836214066,
- 0.06519051641225815,
- 0.04362461343407631,
- 0.030542435124516487,
- -0.045759979635477066,
- 0.045304980129003525,
- 0.05368774011731148,
- -0.09127581864595413,
- 0.029389237985014915,
- -0.07763969898223877,
- -0.02956622652709484,
- 0.0538533590734005,
- -0.0693870559334755,
- -0.06915668398141861,
- 0.049171727150678635,
- 0.0287172868847847,
- -0.03478000685572624,
- 0.03073653019964695,
- 0.07627453655004501,
- 0.07787352800369263,
- -0.07285485416650772,
- 3.383652039976308e-33,
- -0.056898120790719986,
- 0.033979177474975586,
- -0.03135167434811592,
- 0.04505319520831108,
- 0.021501615643501282,
- -0.020390931516885757,
- 0.028737306594848633,
- -0.0808485820889473,
- -0.008508598431944847,
- 0.056329451501369476,
- -0.09893745929002762,
- -0.12380766123533249,
- 0.15510009229183197,
- 0.03246093913912773,
- 0.0064357370138168335,
- -0.003283783793449402,
- 0.05355200916528702,
- 0.014845095574855804,
- 0.026293186470866203,
- 0.03232481703162193,
- -0.08163207769393921,
- -0.05082283169031143,
- -0.05467484891414642,
- -0.03906812146306038,
- -0.03604826331138611,
- 0.03940252587199211,
- 0.03979886323213577,
- -0.05125757306814194,
- -0.009777496568858624,
- -0.03205603361129761,
- 0.03238754719495773,
- -0.030754171311855316,
- -0.0944657102227211,
- -0.08282019942998886,
- 0.0008860047673806548,
- 0.10310129821300507,
- -0.040259744971990585,
- 0.09318864345550537,
- -0.019615331664681435,
- -0.0355425626039505,
- 0.06610430777072906,
- 0.07397481054067612,
- -0.019204851239919662,
- 0.039604563266038895,
- -0.08804644644260406,
- 0.058643609285354614,
- -0.029652249068021774,
- -0.05033076927065849,
- -0.04454876109957695,
- 0.0028477786108851433,
- -0.025822732597589493,
- 0.018846934661269188,
- -0.07193054258823395,
- -0.053608641028404236,
- -0.019522646442055702,
- 0.01962393894791603,
- 0.014180338941514492,
- -0.0518549419939518,
- 0.04083416983485222,
- 0.04378415271639824,
- -0.019904974848031998,
- -0.0016371123492717743,
- -0.039658449590206146,
- 0.08783631026744843,
- -0.03641657531261444,
- 0.006541523151099682,
- -0.03381127491593361,
- -0.059898391366004944,
- -0.04225848242640495,
- -0.028988149017095566,
- 0.13388743996620178,
- -0.06400713324546814,
- -0.07830663025379181,
- -0.004608312621712685,
- -0.01126933004707098,
- 0.021844075992703438,
- -0.06041637063026428,
- 0.024763010442256927,
- 0.08037406206130981,
- -0.05001170560717583,
- 0.05902116745710373,
- -0.000758869806304574,
- -0.025898214429616928,
- 0.05970199033617973,
- -0.04246439039707184,
- -0.04023343324661255,
- 0.052366867661476135,
- 0.04291045293211937,
- -0.08013314008712769,
- 0.025877589359879494,
- 0.004831260535866022,
- 0.029681067913770676,
- -0.014830055646598339,
- -0.06449291855096817,
- -0.06022725999355316,
- -1.2457233466989237e-8,
- 0.019696934148669243,
- 0.03604710474610329,
- -0.0259102676063776,
- 0.008374701254069805,
- 0.056258391588926315,
- -0.018099848181009293,
- 0.026613730937242508,
- 0.07236909866333008,
- 0.02071385830640793,
- 0.05713694170117378,
- -0.01899952068924904,
- 0.07050377130508423,
- 0.03852221369743347,
- -0.01049799658358097,
- 0.0863286629319191,
- 0.006749538239091635,
- -0.038512516766786575,
- -0.028419608250260353,
- -0.05800315737724304,
- -0.023660682141780853,
- 0.009460383094847202,
- 0.004935164470225573,
- 0.009932957589626312,
- 0.01740526780486107,
- 0.008303006179630756,
- -0.008216696791350842,
- -0.021922379732131958,
- 0.04035044088959694,
- 0.00006727404979756102,
- 0.037459369748830795,
- -0.04218030720949173,
- 0.025536654517054558,
- -0.04279983788728714,
- 0.03875459358096123,
- 0.07958216965198517,
- -0.006941439583897591,
- -0.02354772575199604,
- -0.021208636462688446,
- 0.06626081466674805,
- -0.012258391827344894,
- -0.05836954340338707,
- 0.03414040431380272,
- 0.01955779455602169,
- 0.031464677304029465,
- 0.07205452769994736,
- -0.032145652920007706,
- -0.016790268942713737,
- -0.06056017056107521,
- -0.069048672914505,
- -0.04257867857813835,
- -0.03827960416674614,
- -0.0614379346370697,
- 0.0033688279800117016,
- 0.05573801323771477,
- -0.046038392931222916,
- -0.09049607068300247,
- 0.015700403600931168,
- 0.03742336109280586,
- -0.0050542643293738365,
- -0.05930747836828232,
- 0.09339264035224915,
- 0.00942163448780775,
- 0.05087242275476456,
- 0.060093145817518234
- ]
- },
- {
- "keyword": "individual",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.005044298712164164,
- 0.05770425871014595,
- -0.022585857659578323,
- 0.028527628630399704,
- -0.041697271168231964,
- -0.0649600476026535,
- 0.1203790009021759,
- -0.009899002499878407,
- 0.03332136943936348,
- 0.04103974252939224,
- 0.022900516167283058,
- -0.0421430841088295,
- -0.08813748508691788,
- -0.03926081955432892,
- 0.020120710134506226,
- 0.02946130558848381,
- 0.006342645734548569,
- -0.024132218211889267,
- -0.0071049886755645275,
- -0.000921978207770735,
- -0.14569126069545746,
- -0.002767754951491952,
- -0.02536926232278347,
- -0.012002795934677124,
- -0.017267804592847824,
- -0.01816839911043644,
- -0.004828327801078558,
- 0.03806348517537117,
- 0.05756031349301338,
- -0.07399075478315353,
- 0.005697100423276424,
- -0.03665531054139137,
- 0.1157212033867836,
- 0.05545327067375183,
- -0.022900423035025597,
- 0.04040210321545601,
- -0.009669385850429535,
- 0.08611895889043808,
- -0.007537876255810261,
- 0.021980807185173035,
- 0.017573600634932518,
- -0.033864572644233704,
- -0.06065173074603081,
- -0.03373190760612488,
- 0.03006724640727043,
- -0.04188352823257446,
- 0.019064826890826225,
- -0.030715452507138252,
- -0.00004838576205656864,
- 0.014578633941709995,
- 0.014844756573438644,
- 0.005901657976210117,
- -0.02759728580713272,
- 0.025726208463311195,
- 0.021435167640447617,
- -0.06576301157474518,
- -0.00995630118995905,
- -0.04516289383172989,
- 0.019700072705745697,
- -0.002549275290220976,
- -0.007938618771731853,
- -0.03771523758769035,
- -0.04128675162792206,
- 0.054908573627471924,
- 0.1262366622686386,
- 0.07135190814733505,
- 0.06895488500595093,
- -0.06096094101667404,
- 0.04672461375594139,
- -0.06208387389779091,
- 0.00903241615742445,
- -0.011109929531812668,
- 0.01598038338124752,
- 0.04800243675708771,
- 0.0841069221496582,
- -0.15406125783920288,
- 0.023860841989517212,
- 0.010204674676060677,
- 0.09299228340387344,
- 0.10691928118467331,
- -0.022764472290873528,
- 0.03889063745737076,
- -0.043558791279792786,
- -0.0038233897648751736,
- 0.06050074100494385,
- 0.0320734903216362,
- 0.019578445702791214,
- 0.08618909120559692,
- 0.002467008773237467,
- 0.05447253957390785,
- -0.07027048617601395,
- 0.06407703459262848,
- 0.10917595028877258,
- -0.023137925192713737,
- -0.013050139881670475,
- -0.0067288316786289215,
- -0.0019585606642067432,
- -0.0030583031475543976,
- -0.06619976460933685,
- 0.2342018336057663,
- -0.006815487984567881,
- 0.01325615681707859,
- 0.035060152411460876,
- 0.06514393538236618,
- -0.018675943836569786,
- 0.0043929568491876125,
- -0.028873488306999207,
- -0.016684241592884064,
- -0.009499520063400269,
- -0.039346370846033096,
- -0.05560548976063728,
- -0.02456805482506752,
- -0.08842918276786804,
- 0.019110798835754395,
- 0.02722671814262867,
- 0.010259752161800861,
- -0.06813041120767593,
- 0.04282745346426964,
- 0.022366823628544807,
- -0.02699108235538006,
- -0.020709427073597908,
- 0.011328569613397121,
- -0.00805588811635971,
- 0.01566363498568535,
- -0.05963752791285515,
- -0.014939328655600548,
- 0.02332097850739956,
- -6.59914740901558e-33,
- -0.03241291642189026,
- 0.05582301318645477,
- 0.0481879897415638,
- 0.05812160298228264,
- -0.03800791874527931,
- 0.055489517748355865,
- -0.011114881373941898,
- -0.004870218224823475,
- -0.015555464662611485,
- 0.019920727238059044,
- 0.0252232663333416,
- -0.022617818787693977,
- -0.03974238038063049,
- 0.053319018334150314,
- 0.05851712077856064,
- 0.04583298787474632,
- -0.06986523419618607,
- -0.004392576403915882,
- -0.07983408123254776,
- 0.044596392661333084,
- 0.03782927617430687,
- 0.13035403192043304,
- -0.06273333728313446,
- -0.011796979233622551,
- -0.05884425714612007,
- -0.05205215886235237,
- 0.061366476118564606,
- 0.005699298810213804,
- 0.003780792932957411,
- 0.00219705025665462,
- 0.025974631309509277,
- 0.01893688552081585,
- -0.010333382524549961,
- 0.003644418204203248,
- 0.005957919172942638,
- -0.038304924964904785,
- 0.0324748158454895,
- -0.007733598351478577,
- 0.006185948848724365,
- -0.05368407070636749,
- -0.03743823617696762,
- 0.0033212469425052404,
- 0.04035528749227524,
- 0.046850673854351044,
- -0.10641441494226456,
- -0.00128393922932446,
- 0.004560890607535839,
- 0.030391309410333633,
- -0.09189610928297043,
- 0.01599918119609356,
- -0.043088655918836594,
- 0.01681000366806984,
- -0.053519077599048615,
- 0.00040678936056792736,
- 0.048546258360147476,
- -0.04561016336083412,
- -0.013596215285360813,
- 0.002879938343539834,
- -0.051269739866256714,
- -0.0189212653785944,
- 0.028160961344838142,
- 0.10070627182722092,
- -0.05476389825344086,
- 0.017156800255179405,
- 0.0033537906128913164,
- -0.02007696032524109,
- 0.017202893272042274,
- -0.041425663977861404,
- 0.08537657558917999,
- -0.04877159744501114,
- 0.010801714845001698,
- 0.019893499091267586,
- 0.08085311949253082,
- -0.01730237528681755,
- -0.012234985828399658,
- 0.006515620741993189,
- 0.048673275858163834,
- 0.002285812981426716,
- -0.03951406851410866,
- 0.018880004063248634,
- -0.040511488914489746,
- -0.0004298397107049823,
- 0.013409745879471302,
- -0.02428171969950199,
- -0.02640589140355587,
- 0.04887836426496506,
- -0.028502101078629494,
- -0.05167022719979286,
- 0.12526799738407135,
- 0.0811912789940834,
- -0.021457534283399582,
- -0.01170126162469387,
- 0.04584936052560806,
- 0.059549689292907715,
- -0.06315278261899948,
- 4.267775871376306e-33,
- -0.07918959110975266,
- -0.04498464986681938,
- 0.007498045917600393,
- 0.013543088920414448,
- 0.10381690412759781,
- -0.03457216918468475,
- 0.016775991767644882,
- -0.024641284719109535,
- -0.009187488816678524,
- 0.04619478061795235,
- -0.10915219038724899,
- -0.044643811881542206,
- 0.0958394855260849,
- 0.03955717757344246,
- 0.013858315534889698,
- 0.0778636485338211,
- -0.030231459066271782,
- -0.013793597929179668,
- 0.02329535223543644,
- 0.03132292255759239,
- -0.039444997906684875,
- -0.03517043590545654,
- 0.025611205026507378,
- 0.0005374709726311266,
- -0.049509044736623764,
- 0.023764653131365776,
- 0.12103381752967834,
- 0.03372234106063843,
- -0.03583121299743652,
- -0.06064138934016228,
- 0.009870593436062336,
- 0.00253208982758224,
- -0.1114901676774025,
- -0.05970529839396477,
- -0.010322458110749722,
- 0.1015680581331253,
- -0.06141917034983635,
- 0.04867111146450043,
- -0.003907016012817621,
- 0.009463385678827763,
- 0.01716419868171215,
- 0.05841663107275963,
- -0.020369132980704308,
- 0.030291754752397537,
- -0.038814932107925415,
- 0.05773600935935974,
- 0.00013173108163755387,
- -0.07171881943941116,
- -0.010070309974253178,
- 0.0847792699933052,
- -0.13439029455184937,
- 0.04090164974331856,
- -0.017201539129018784,
- -0.09863928705453873,
- -0.016470136120915413,
- -0.01435486227273941,
- 0.054522644728422165,
- -0.08909573405981064,
- 0.00228063203394413,
- 0.021782200783491135,
- -0.029015054926276207,
- -0.045381657779216766,
- -0.03990458324551582,
- 0.10011119395494461,
- -0.023263312876224518,
- -0.003301215125247836,
- 0.0015729748411104083,
- -0.0230691060423851,
- -0.13123074173927307,
- -0.041982103139162064,
- 0.12253716588020325,
- -0.10758709162473679,
- -0.06321997195482254,
- -0.08252687007188797,
- 0.004725362174212933,
- -0.0665939524769783,
- -0.04706575348973274,
- 0.0019151095766574144,
- 0.026652127504348755,
- -0.0684698075056076,
- -0.012619417160749435,
- -0.005802646744996309,
- -0.04003171995282173,
- -0.0015079828444868326,
- -0.027245257049798965,
- -0.09855702519416809,
- 0.05701635032892227,
- 0.03137178719043732,
- -0.0004893206059932709,
- 0.04763472080230713,
- 0.08394461870193481,
- 0.01010708138346672,
- -0.09740991145372391,
- -0.07959983497858047,
- -0.019255485385656357,
- -1.3133335308168625e-8,
- -0.012037849985063076,
- 0.06969605386257172,
- -0.012841676361858845,
- 0.031218577176332474,
- 0.08764895051717758,
- 0.017424166202545166,
- 0.0012436851393431425,
- -0.09368617832660675,
- 0.004668089561164379,
- 0.08046723902225494,
- 0.019702520221471786,
- 0.00013758752902504057,
- 0.07881180942058563,
- 0.0016798106953501701,
- 0.11444449424743652,
- -0.03958112746477127,
- -0.042460501194000244,
- -0.01680540293455124,
- -0.047068171203136444,
- 0.018056660890579224,
- 0.031835898756980896,
- 0.02634650655090809,
- -0.0038730946835130453,
- -0.03730214387178421,
- -0.002012265147641301,
- -0.023425111547112465,
- -0.0529433973133564,
- -0.024938277900218964,
- -0.07973786443471909,
- 0.06916584074497223,
- -0.03345572575926781,
- 0.09209058433771133,
- -0.03992988541722298,
- -0.01370314136147499,
- 0.04230058193206787,
- 0.00005861152385477908,
- 0.006473999936133623,
- 0.009182602167129517,
- 0.062290165573358536,
- 0.00598145043477416,
- -0.03209145367145538,
- 0.0005974193918518722,
- 0.02373889461159706,
- 0.035009123384952545,
- 0.048663217574357986,
- 0.006542230024933815,
- -0.031633611768484116,
- -0.09519214183092117,
- -0.04000447690486908,
- 0.07678911834955215,
- 0.03054639883339405,
- -0.06167745962738991,
- 0.052857376635074615,
- 0.015618697740137577,
- 0.0626700222492218,
- -0.05203758180141449,
- 0.034245382994413376,
- 0.017151227220892906,
- -0.013598470017313957,
- -0.04333042353391647,
- 0.10084129124879837,
- 0.0002159464347641915,
- 0.027729999274015427,
- -0.01721940189599991
- ]
- },
- {
- "keyword": "human",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04830874502658844,
- 0.009957273490726948,
- -0.04802601411938667,
- 0.034938979893922806,
- -0.06852393597364426,
- -0.08869965374469757,
- 0.14066338539123535,
- -0.019993837922811508,
- 0.06363234668970108,
- 0.04231218248605728,
- 0.009585967287421227,
- -0.08455372601747513,
- -0.08738261461257935,
- -0.0033878472167998552,
- 0.03272583335638046,
- 0.005891149397939444,
- -0.030535496771335602,
- -0.028005534783005714,
- -0.014497090131044388,
- 0.01405332237482071,
- -0.07858755439519882,
- 0.06965488940477371,
- -0.03029858134686947,
- -0.007792324293404818,
- -0.06780543923377991,
- -0.003781941719353199,
- -0.01990632712841034,
- -0.025428639724850655,
- 0.04316719248890877,
- -0.0573357492685318,
- 0.02724037878215313,
- -0.05123046785593033,
- 0.10638178884983063,
- 0.05012473091483116,
- -0.054664839059114456,
- 0.0350353866815567,
- -0.02583581954240799,
- 0.019035527482628822,
- 0.004551538731902838,
- 0.01395265944302082,
- 0.008481588214635849,
- -0.13696181774139404,
- -0.04133763909339905,
- -0.04515684023499489,
- 0.019543174654245377,
- 0.007957395166158676,
- -0.007683089468628168,
- -0.04842394217848778,
- 0.00074014748679474,
- 0.016086000949144363,
- -0.04639684781432152,
- 0.05197538435459137,
- -0.04987477511167526,
- 0.024172378703951836,
- -0.005637201014906168,
- -0.049758922308683395,
- 0.036150798201560974,
- -0.007619350682944059,
- 0.02005498670041561,
- -0.053939592093229294,
- 0.038785550743341446,
- -0.021423568949103355,
- -0.057602863758802414,
- 0.05981704220175743,
- 0.06988636404275894,
- 0.0019218097440898418,
- 0.05076247826218605,
- -0.07003865391016006,
- 0.04342937842011452,
- -0.021622471511363983,
- 0.05181606858968735,
- -0.01697300747036934,
- 0.016630180180072784,
- -0.018530644476413727,
- 0.06037440150976181,
- -0.11081591248512268,
- 0.050043582916259766,
- -0.0643974170088768,
- 0.05487295985221863,
- 0.09706995636224747,
- 0.02012643963098526,
- 0.02502707950770855,
- -0.0010461951605975628,
- 0.012680341489613056,
- 0.01738002523779869,
- 0.060967639088630676,
- 0.01827472634613514,
- 0.0817243680357933,
- -0.0937303900718689,
- 0.015761688351631165,
- -0.05033155158162117,
- 0.02466817945241928,
- 0.07501013576984406,
- -0.0010272699873894453,
- -0.14810745418071747,
- 0.01593034341931343,
- -0.05870170518755913,
- -0.013938793912529945,
- -0.04084106162190437,
- 0.2317279726266861,
- -0.010897720232605934,
- 0.03146959841251373,
- -0.007104931399226189,
- 0.03578362986445427,
- 0.05942101776599884,
- 0.0015035425312817097,
- -0.02603001892566681,
- 0.00969275739043951,
- 0.02972588501870632,
- -0.00914179626852274,
- -0.05867404490709305,
- -0.016471847891807556,
- -0.08541025966405869,
- 0.06056195870041847,
- 0.04741029813885689,
- 0.02958601526916027,
- -0.05555146560072899,
- -0.02119687758386135,
- 0.05594589188694954,
- -0.08294089138507843,
- 0.03774868696928024,
- 0.042309753596782684,
- 0.005272945389151573,
- 0.04719164967536926,
- 0.044164977967739105,
- -0.10896517336368561,
- 0.04743066802620888,
- -8.770813712758246e-33,
- 0.03516339883208275,
- -0.055049553513526917,
- 0.10434553772211075,
- 0.023930391296744347,
- -0.04079104959964752,
- 0.06109519675374031,
- 0.014003228396177292,
- -0.018132483586668968,
- 0.0037237550131976604,
- 0.06944403052330017,
- -0.037344884127378464,
- -0.09005805850028992,
- -0.10004350543022156,
- 0.09770968556404114,
- 0.008630027063190937,
- -0.018076861277222633,
- -0.01971961371600628,
- -0.016553951427340508,
- -0.09282251447439194,
- 0.05842503160238266,
- 0.0281808003783226,
- 0.05854315683245659,
- -0.010136237367987633,
- 0.019047828391194344,
- -0.0018018767004832625,
- -0.05810340866446495,
- 0.01836089789867401,
- -0.04611833021044731,
- 0.008148552849888802,
- -0.005672745406627655,
- -0.03288840875029564,
- 0.04837531968951225,
- 0.015801087021827698,
- 0.026567665860056877,
- -0.04472415894269943,
- -0.052944932132959366,
- 0.04193316400051117,
- -0.03085433878004551,
- 0.012286786921322346,
- -0.038749124854803085,
- 0.038361962884664536,
- 0.038322217762470245,
- 0.05711620673537254,
- -0.011732388287782669,
- -0.028804916888475418,
- -0.021682867780327797,
- 0.06117673218250275,
- 0.011234389618039131,
- -0.07137239724397659,
- 0.015859533101320267,
- 0.001412859302945435,
- 0.016081638634204865,
- -0.023973580449819565,
- 0.015364008024334908,
- -0.0009735675412230194,
- -0.012633702717721462,
- 0.030112862586975098,
- 0.04004507139325142,
- -0.06940970569849014,
- 0.03220304846763611,
- -0.0057515609078109264,
- 0.09140320122241974,
- -0.013497870415449142,
- 0.07351063191890717,
- 0.08324762433767319,
- -0.11140729486942291,
- 0.032721441239118576,
- -0.0012199050979688764,
- 0.015369154512882233,
- 0.014151767827570438,
- -0.02881668508052826,
- 0.02864997833967209,
- 0.10082454979419708,
- 0.02942599728703499,
- -0.008984784595668316,
- -0.003540051868185401,
- 0.07473765313625336,
- -0.015159763395786285,
- -0.023865699768066406,
- 0.005542812868952751,
- -0.05254022777080536,
- -0.04649742320179939,
- 0.007498240098357201,
- -0.056818168610334396,
- -0.03496868908405304,
- 0.026685794815421104,
- 0.010188779793679714,
- -0.0843624398112297,
- 0.07423102855682373,
- 0.025220319628715515,
- -0.031305667012929916,
- -0.006185626145452261,
- 0.02944442816078663,
- 0.06136428937315941,
- -0.042628999799489975,
- 5.650451468873006e-33,
- -0.023935556411743164,
- -0.017328379675745964,
- -0.002906960202381015,
- 0.053339336067438126,
- 0.020041318610310555,
- -0.02763541042804718,
- 0.05386049672961235,
- 0.1087121069431305,
- -0.05446959659457207,
- 0.03951217606663704,
- -0.012566059827804565,
- -0.040342044085264206,
- 0.09835359454154968,
- 0.006643521599471569,
- 0.0762069970369339,
- 0.07106195390224457,
- -0.027712497860193253,
- -0.0035832177381962538,
- 0.06317045539617538,
- 0.03773476928472519,
- -0.08743584156036377,
- -0.004806877579540014,
- -0.04339724779129028,
- -0.04289163649082184,
- -0.06279683113098145,
- -0.0021090067457407713,
- 0.10194934159517288,
- -0.004965539555996656,
- -0.04379451274871826,
- 0.011548740789294243,
- 0.0028378500137478113,
- 0.03635687008500099,
- -0.08147097378969193,
- -0.026857571676373482,
- 0.013715839013457298,
- 0.07841278612613678,
- 0.014596612192690372,
- 0.035258106887340546,
- 0.017953716218471527,
- -0.02252783626317978,
- 0.03754190728068352,
- 0.053741250187158585,
- 0.004441704135388136,
- 0.05078454688191414,
- -0.0012452929513528943,
- 0.020131437107920647,
- -0.047586262226104736,
- -0.04471283778548241,
- -0.04503905773162842,
- 0.06638269126415253,
- -0.019540823996067047,
- 0.0065758852288126945,
- -0.03628164529800415,
- -0.12056975066661835,
- -0.028449367731809616,
- -0.030621305108070374,
- -0.0309889018535614,
- -0.07519327104091644,
- 0.09101279824972153,
- 0.011316273361444473,
- -0.002151993103325367,
- 0.03336849436163902,
- -0.030664833262562752,
- 0.10224082320928574,
- -0.11962399631738663,
- 0.048345740884542465,
- -0.040484774857759476,
- -0.01225984562188387,
- -0.09745530039072037,
- -0.01703108288347721,
- 0.15942837297916412,
- -0.03568769991397858,
- -0.05175602808594704,
- -0.03855244442820549,
- -0.010850131511688232,
- -0.06816087663173676,
- -0.04385892301797867,
- 0.006775112356990576,
- 0.06871506571769714,
- -0.08552108705043793,
- -0.06882519274950027,
- -0.04901154339313507,
- -0.05101896822452545,
- 0.019016388803720474,
- -0.042072467505931854,
- -0.020712338387966156,
- -0.010319390334188938,
- 0.05943334102630615,
- -0.03762274235486984,
- 0.014515350572764874,
- -0.014128529466688633,
- 0.03813881799578667,
- -0.06420915573835373,
- -0.005620529409497976,
- -0.060961246490478516,
- -1.460464105207393e-8,
- -0.006874977145344019,
- 0.030533282086253166,
- 0.03632869943976402,
- -0.010874946601688862,
- 0.09258688241243362,
- 0.042481500655412674,
- -0.02069319598376751,
- -0.03473057970404625,
- -0.003991763573139906,
- 0.020905110985040665,
- -0.04136842489242554,
- 0.025868576020002365,
- 0.0801183432340622,
- 0.09225775301456451,
- 0.036899253726005554,
- -0.046846721321344376,
- -0.0394713431596756,
- 0.028451086953282356,
- -0.026627609506249428,
- 0.037476807832717896,
- 0.03492647036910057,
- 0.04560196027159691,
- -0.040242165327072144,
- 0.03338780626654625,
- -0.013804271817207336,
- -0.04383919760584831,
- -0.05349856615066528,
- 0.07617536187171936,
- -0.06311613321304321,
- 0.03703648969531059,
- 0.025388313457369804,
- 0.1094474196434021,
- -0.06498970091342926,
- 0.0025922907516360283,
- 0.05954812839627266,
- 0.005540540907531977,
- 0.046218205243349075,
- -0.014521545730531216,
- -0.011972918175160885,
- 0.023484177887439728,
- -0.032317616045475006,
- 0.05487261340022087,
- 0.005045079160481691,
- -0.00485667958855629,
- 0.07761411368846893,
- -0.021977847442030907,
- 0.009024069644510746,
- -0.1217334046959877,
- -0.0000271510798484087,
- -0.03428908810019493,
- 0.012500740587711334,
- -0.07813642174005508,
- 0.06785779446363449,
- 0.05998895317316055,
- 0.025378569960594177,
- -0.0491456538438797,
- 0.003178922226652503,
- 0.027508199214935303,
- -0.05479297414422035,
- -0.013383513316512108,
- 0.10766308754682541,
- -0.015975525602698326,
- 0.010298609733581543,
- 0.022298188880085945
- ]
- },
- {
- "keyword": "employee",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06618596613407135,
- 0.11296887695789337,
- 0.018208030611276627,
- -0.014713075011968613,
- -0.0583101250231266,
- -0.049119312316179276,
- 0.17801612615585327,
- -0.025006208568811417,
- -0.021820958703756332,
- -0.030041528865695,
- 0.02189985290169716,
- -0.014108444564044476,
- -0.06730437278747559,
- 0.011719278059899807,
- -0.020566444844007492,
- 0.007952455431222916,
- 0.023786023259162903,
- 0.035098377615213394,
- -0.032561685889959335,
- -0.09726261347532272,
- -0.07073606550693512,
- -0.032575175166130066,
- -0.07865544408559799,
- 0.004705839790403843,
- 0.004711094778031111,
- 0.009441166184842587,
- -0.0005696413572877645,
- 0.07087884098291397,
- -0.040621284395456314,
- -0.057650912553071976,
- -0.024303652346134186,
- -0.07057516276836395,
- 0.034327998757362366,
- -0.008416413329541683,
- -0.0441027395427227,
- 0.018545782193541527,
- 0.009800856932997704,
- 0.08464077860116959,
- 0.023275865241885185,
- 0.009702112525701523,
- -0.04038567468523979,
- -0.05185120925307274,
- -0.029815606772899628,
- -0.015520519576966763,
- -0.01794581674039364,
- 0.021470453590154648,
- 0.06730926036834717,
- 0.00269825360737741,
- -0.0165764931589365,
- 0.03162743151187897,
- -0.007791122887283564,
- -0.04496126249432564,
- 0.04647001996636391,
- 0.06401553750038147,
- 0.04309609904885292,
- -0.06825164705514908,
- 0.03638126701116562,
- -0.05085035040974617,
- -0.017986668273806572,
- 0.02841619774699211,
- 0.01746496744453907,
- -0.09232427179813385,
- -0.02305273897945881,
- 0.020545458421111107,
- 0.07391775399446487,
- -0.02394684962928295,
- -0.032782088965177536,
- -0.07558412849903107,
- -0.05355357751250267,
- -0.07504313439130783,
- -0.0021658705081790686,
- -0.053691986948251724,
- -0.047682762145996094,
- 0.036722417920827866,
- 0.035069793462753296,
- -0.0380503349006176,
- 0.022481799125671387,
- 0.014688517898321152,
- 0.1005476638674736,
- -0.02081608772277832,
- 0.026273751631379128,
- 0.004313740413635969,
- 0.029280440881848335,
- 0.07744629681110382,
- -0.027825385332107544,
- 0.02107304334640503,
- 0.061642806977033615,
- 0.06211089342832565,
- 0.025866426527500153,
- 0.000524086703080684,
- -0.010216981172561646,
- 0.013396200723946095,
- 0.048766784369945526,
- -0.03856288269162178,
- -0.05871279537677765,
- -0.060240089893341064,
- -0.018852246925234795,
- 0.04990125820040703,
- -0.10867752134799957,
- 0.23717033863067627,
- -0.005509774200618267,
- 0.017844626680016518,
- 0.047880496829748154,
- -0.001065995660610497,
- -0.016721192747354507,
- 0.033770106732845306,
- 0.008213602937757969,
- 0.01663392223417759,
- -0.034278012812137604,
- -0.0508372001349926,
- -0.05259981006383896,
- 0.03620797395706177,
- -0.11530478298664093,
- -0.028812600299715996,
- 0.02641209401190281,
- -0.0005148774944245815,
- -0.07120110094547272,
- 0.02942677214741707,
- -0.0703747570514679,
- 0.003485847031697631,
- 0.022832803428173065,
- 0.03470727801322937,
- -0.06640732288360596,
- 0.06347937881946564,
- -0.11886586993932724,
- -0.07326009124517441,
- 0.044834159314632416,
- -6.611052962737502e-33,
- 0.024413220584392548,
- 0.011579650454223156,
- 0.032782912254333496,
- 0.030258461833000183,
- 0.07928294688463211,
- 0.0353245846927166,
- -0.005558112636208534,
- 0.020706333220005035,
- 0.022086506709456444,
- 0.030910924077033997,
- -0.08709264546632767,
- -0.03320851922035217,
- 0.02392406202852726,
- -0.011628048494458199,
- 0.03623594716191292,
- 0.0487198643386364,
- 0.029293162748217583,
- 0.10204771161079407,
- -0.06417734920978546,
- 0.04571615532040596,
- 0.007128000725060701,
- -0.0000033260835152759682,
- -0.09285911172628403,
- 0.05076496675610542,
- -0.0028405520133674145,
- -0.0006710013258270919,
- -0.03493853658437729,
- 0.01436117384582758,
- 0.012819841504096985,
- 0.027537953108549118,
- 0.05068211257457733,
- 0.02681078016757965,
- 0.043588776141405106,
- 0.002817793982103467,
- -0.06682156026363373,
- -0.08255334943532944,
- -0.022344190627336502,
- -0.04944201558828354,
- 0.010010992176830769,
- -0.08200408518314362,
- -0.003008056664839387,
- 0.011634878814220428,
- 0.125987246632576,
- 0.0074103232473134995,
- -0.04250633716583252,
- -0.04587541148066521,
- 0.04810032248497009,
- 0.016843583434820175,
- 0.04041290655732155,
- 0.12143344432115555,
- 0.005744055844843388,
- 0.009871828369796276,
- 0.042383864521980286,
- 0.019222155213356018,
- 0.023753568530082703,
- -0.04007885232567787,
- 0.0569574236869812,
- -0.0006866724579595029,
- 0.037969812750816345,
- -0.028173908591270447,
- 0.0008328894036822021,
- 0.13396120071411133,
- -0.07442845404148102,
- 0.07443656772375107,
- -0.008139663375914097,
- -0.05316515639424324,
- 0.039156474173069,
- -0.04003610834479332,
- 0.12333689630031586,
- -0.00008674000855535269,
- 0.0021558727603405714,
- 0.0675550326704979,
- 0.05294226109981537,
- -0.009664976969361305,
- -0.08738036453723907,
- 0.07973287254571915,
- -0.01055750623345375,
- 0.01779150776565075,
- -0.02596462331712246,
- 0.016352377831935883,
- -0.01588321477174759,
- -0.02606581524014473,
- 0.07910578697919846,
- -0.04431317001581192,
- 0.011082653887569904,
- 0.04902973026037216,
- 0.008147990331053734,
- -0.006870019715279341,
- 0.07364899665117264,
- 0.11477640271186829,
- -0.012819433584809303,
- 0.029610782861709595,
- 0.04106161370873451,
- 0.1281024068593979,
- -0.00244418834336102,
- 4.948276897907021e-33,
- -0.011534237302839756,
- 0.001217957935295999,
- -0.038315609097480774,
- -0.045420773327350616,
- 0.08726601302623749,
- 0.01012473739683628,
- 0.04329788312315941,
- -0.0178492721170187,
- -0.10200205445289612,
- 0.04221421852707863,
- -0.009655318222939968,
- -0.06430945545434952,
- 0.03991790488362312,
- 0.029879998415708542,
- 0.03242868930101395,
- 0.03431174159049988,
- 0.03251834213733673,
- -0.0416196845471859,
- -0.07562261074781418,
- 0.023960769176483154,
- -0.0423860102891922,
- 0.002480693394318223,
- 0.001792880822904408,
- 0.043064769357442856,
- 0.010180538520216942,
- 0.02470283769071102,
- 0.02341979555785656,
- 0.004838874097913504,
- -0.07564445585012436,
- -0.0485241562128067,
- -0.07391936331987381,
- -0.030648760497570038,
- -0.028454609215259552,
- 0.023735303431749344,
- 0.01338212564587593,
- -0.04550023749470711,
- -0.08795075863599777,
- -0.008246642537415028,
- 0.019523803144693375,
- 0.05348556488752365,
- 0.036605387926101685,
- 0.000044131713366368786,
- 0.06812745332717896,
- 0.1007104367017746,
- -0.02719038352370262,
- -0.020427221432328224,
- -0.033012811094522476,
- -0.07837368547916412,
- -0.0013228546595200896,
- 0.018981633707880974,
- -0.08196230232715607,
- -0.032906994223594666,
- -0.01235661469399929,
- -0.02093352936208248,
- -0.012882704846560955,
- -0.04387516900897026,
- -0.02321559190750122,
- -0.05566343292593956,
- 0.0022671555634588003,
- 0.012061608955264091,
- 0.01070514414459467,
- -0.04919954016804695,
- 0.048145703971385956,
- 0.1607029289007187,
- -0.05705742537975311,
- -0.02337678335607052,
- -0.0200815312564373,
- -0.026578763499855995,
- 0.00152416224591434,
- -0.016843974590301514,
- 0.03245680034160614,
- -0.039823126047849655,
- -0.04015117511153221,
- 0.002717483090236783,
- -0.033668436110019684,
- -0.07503373920917511,
- -0.05428333953022957,
- -0.07323835045099258,
- -0.03507065400481224,
- -0.04544196277856827,
- -0.06300459057092667,
- -0.022855883464217186,
- 0.05415730178356171,
- 0.05401447415351868,
- -0.0191414225846529,
- -0.002109332475811243,
- 0.0524471178650856,
- 0.02381494827568531,
- -0.017297955229878426,
- -0.041748058050870895,
- 0.020462319254875183,
- -0.014659002423286438,
- -0.11700551956892014,
- 0.036375001072883606,
- 0.03102402202785015,
- -1.282105621669416e-8,
- -0.03247511759400368,
- 0.019761713221669197,
- 0.005446992348879576,
- -0.07061060518026352,
- 0.06864454597234726,
- -0.0684862732887268,
- 0.03367330878973007,
- -0.05115709453821182,
- 0.03666482865810394,
- 0.04518628865480423,
- -0.005819934885948896,
- -0.01991252414882183,
- 0.0387938916683197,
- 0.04081927239894867,
- 0.15037356317043304,
- -0.0012486760970205069,
- -0.010993078351020813,
- 0.0314348042011261,
- -0.05809919163584709,
- -0.001812543487176299,
- 0.046148139983415604,
- 0.03929080814123154,
- 0.01570979878306389,
- 0.006428505759686232,
- -0.027430525049567223,
- 0.039730411022901535,
- -0.07664211094379425,
- 0.10344213247299194,
- 0.04392419755458832,
- 0.10206633061170578,
- 0.022860229015350342,
- 0.11766371876001358,
- -0.062324509024620056,
- -0.06362485885620117,
- -0.012456662952899933,
- -0.005561367608606815,
- 0.03067130595445633,
- -0.05694865062832832,
- -0.0014075362123548985,
- -0.03823620826005936,
- 0.01876862160861492,
- 0.022381717339158058,
- 0.026764804497361183,
- 0.0339696928858757,
- 0.031107787042856216,
- -0.03673774003982544,
- -0.01910514570772648,
- -0.04934002086520195,
- -0.06413008272647858,
- -0.03232685849070549,
- 0.007007468957453966,
- -0.02329954318702221,
- 0.06813902407884598,
- 0.05037202313542366,
- 0.014038525521755219,
- -0.0629536584019661,
- 0.009013802744448185,
- -0.049723852425813675,
- -0.10328186303377151,
- -0.020960364490747452,
- 0.09036832302808762,
- 0.018834268674254417,
- 0.07816819101572037,
- 0.01694634184241295
- ]
- },
- {
- "keyword": "worker",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.09434829652309418,
- 0.059924449771642685,
- -0.01726912334561348,
- 0.030526025220751762,
- -0.03331959247589111,
- -0.04864072799682617,
- 0.16088151931762695,
- -0.03546879068017006,
- -0.03883679211139679,
- -0.032623838633298874,
- -0.006973744370043278,
- -0.03199223428964615,
- -0.05385837331414223,
- 0.04127296805381775,
- -0.011635969392955303,
- 0.014337604865431786,
- 0.04298322647809982,
- 0.0013352683745324612,
- 0.015315776690840721,
- -0.08544537425041199,
- -0.05517258867621422,
- 0.0040372214280068874,
- -0.058620989322662354,
- 0.010898983106017113,
- 0.02424663119018078,
- 0.032603371888399124,
- 0.005986534524708986,
- 0.05655889958143234,
- 0.01389233861118555,
- -0.05609981715679169,
- -0.05831347033381462,
- -0.025122161954641342,
- 0.0015127932420000434,
- 0.025349335744976997,
- -0.018873095512390137,
- 0.022210272029042244,
- 0.03156619146466255,
- 0.06262819468975067,
- 0.025111138820648193,
- 0.013152777217328548,
- -0.00632853340357542,
- -0.06720219552516937,
- -0.020814724266529083,
- -0.037748515605926514,
- -0.022337110713124275,
- 0.021263832226395607,
- 0.07751335948705673,
- -0.01854713074862957,
- -0.0018268803833052516,
- 0.011535782366991043,
- -0.028617767617106438,
- -0.02814459800720215,
- 0.036803584545850754,
- 0.06215968728065491,
- 0.05194351449608803,
- -0.08885075896978378,
- 0.04834027960896492,
- -0.014238454401493073,
- -0.010706949047744274,
- 0.032080672681331635,
- 0.036243896931409836,
- -0.0634605884552002,
- -0.05044975504279137,
- 0.009933525696396828,
- 0.1256876438856125,
- -0.029234716668725014,
- -0.04810604080557823,
- -0.08167576044797897,
- -0.027116136625409126,
- -0.04261321946978569,
- 0.009377144277095795,
- -0.032008398324251175,
- -0.018796240910887718,
- 0.01422339677810669,
- 0.06089089810848236,
- -0.09972145408391953,
- 0.03992398455739021,
- -0.039798542857170105,
- 0.07928632944822311,
- -0.02503017894923687,
- -0.01573125645518303,
- -0.05810623615980148,
- -0.0010586844291538,
- 0.09475814551115036,
- -0.012126967310905457,
- -0.005887903738766909,
- 0.011748593300580978,
- 0.09614589810371399,
- 0.06269242614507675,
- -0.014205476269125938,
- -0.027623925358057022,
- 0.021929442882537842,
- 0.031933046877384186,
- -0.004312959965318441,
- -0.06595692038536072,
- -0.0583501011133194,
- -0.005207862239331007,
- 0.10528896749019623,
- -0.11356676369905472,
- 0.2299894541501999,
- 0.0032315689604729414,
- 0.01224739383906126,
- 0.09148479253053665,
- -0.013858813792467117,
- -0.019944317638874054,
- 0.03443039581179619,
- -0.04260002449154854,
- 0.04733283072710037,
- -0.05305614322423935,
- -0.033127207309007645,
- -0.03126578405499458,
- 0.023488041013479233,
- -0.1394643485546112,
- 0.04343050718307495,
- 0.022634275257587433,
- 0.028214463964104652,
- -0.0008319574408233166,
- 0.019851306453347206,
- -0.1003703773021698,
- 0.05929194763302803,
- 0.02238589897751808,
- 0.03512692078948021,
- -0.08978084474802017,
- 0.026595190167427063,
- -0.08938751369714737,
- -0.06934984773397446,
- 0.08622391521930695,
- -6.604124158223374e-33,
- 0.0271732360124588,
- -0.006563037168234587,
- 0.08558502793312073,
- 0.04640437662601471,
- 0.07283353805541992,
- 0.04376678913831711,
- 0.033830877393484116,
- 0.03171965479850769,
- 0.036778662353754044,
- 0.027933677658438683,
- -0.021803665906190872,
- 0.0037373891100287437,
- 0.013781706802546978,
- 0.05136730521917343,
- -0.003695607418194413,
- -0.014982734806835651,
- 0.028033968061208725,
- 0.012463412247598171,
- -0.10540209710597992,
- 0.03559248894453049,
- 0.004821103997528553,
- -0.015960074961185455,
- -0.09270991384983063,
- 0.02948763035237789,
- -0.027197767049074173,
- -0.0006086559733375907,
- 0.02348235994577408,
- -0.05528081953525543,
- 0.033356208354234695,
- 0.015106523409485817,
- 0.0028493308927863836,
- 0.07571647316217422,
- 0.043479882180690765,
- 0.03384456783533096,
- -0.06395566463470459,
- -0.055311303585767746,
- 0.010751575231552124,
- -0.06579066067934036,
- -0.009068196639418602,
- -0.12071812152862549,
- -0.013126480393111706,
- -0.003997377585619688,
- 0.09857426583766937,
- 0.011232302524149418,
- -0.013539494015276432,
- -0.031394049525260925,
- 0.052118007093667984,
- 0.0000524022507306654,
- 0.033869922161102295,
- 0.08487347513437271,
- 0.020137248560786247,
- 0.03973466157913208,
- 0.027846813201904297,
- 0.01098744384944439,
- 0.0022013362031430006,
- -0.033395860344171524,
- 0.06808679550886154,
- 0.020341087132692337,
- 0.012232635170221329,
- -0.024698402732610703,
- 0.0006850076606497169,
- 0.03575360029935837,
- -0.06814758479595184,
- 0.07137720286846161,
- 0.027855144813656807,
- -0.06457799673080444,
- -0.013588030822575092,
- -0.0032255419064313173,
- 0.07613565027713776,
- 0.014978675171732903,
- -0.028140408918261528,
- 0.07051973044872284,
- 0.08232306689023972,
- -0.00018654043378774077,
- -0.07264930009841919,
- 0.09390843659639359,
- -0.017444584518671036,
- 0.006418095901608467,
- -0.08646313101053238,
- -0.008307307958602905,
- -0.026547012850642204,
- -0.0038919567596167326,
- 0.054843392223119736,
- -0.04935608431696892,
- 0.027874775230884552,
- 0.08397103101015091,
- -0.04470953717827797,
- -0.002873889869078994,
- 0.09708033502101898,
- 0.058457132428884506,
- -0.013597245328128338,
- 0.0005151157383807003,
- 0.04384999722242355,
- 0.0929950401186943,
- -0.025624509900808334,
- 4.1440808048911844e-33,
- -0.07063155621290207,
- -0.01434750109910965,
- -0.07428742945194244,
- 0.05290040746331215,
- 0.08438204228878021,
- -0.00883796252310276,
- 0.035910509526729584,
- -0.02065315656363964,
- -0.052707552909851074,
- 0.06645268946886063,
- -0.036403167992830276,
- -0.032382555305957794,
- 0.004596466198563576,
- 0.030033467337489128,
- 0.05261075124144554,
- 0.05036524683237076,
- -0.029469657689332962,
- -0.008398697711527348,
- -0.05689936503767967,
- 0.05476727336645126,
- -0.05405769497156143,
- 0.029487965628504753,
- 0.02116832137107849,
- -0.0073498310521245,
- 0.006045205984264612,
- 0.03310713171958923,
- 0.048766568303108215,
- -0.0062525211833417416,
- -0.03281846269965172,
- -0.05383325740695,
- -0.07674026489257812,
- -0.006897838320583105,
- -0.0014949776232242584,
- -0.03805173933506012,
- -0.0071329823695123196,
- 0.03255102410912514,
- -0.056795284152030945,
- 0.015151262283325195,
- 0.010107927955687046,
- 0.02941984497010708,
- 0.06239340081810951,
- -0.0059112198650836945,
- 0.04278004169464111,
- 0.07940389215946198,
- -0.01622634194791317,
- -0.05861200764775276,
- -0.038214899599552155,
- -0.06854648143053055,
- -0.07405641674995422,
- 0.03976307809352875,
- -0.013625324703752995,
- 0.0029586765449494123,
- 0.020579228177666664,
- -0.03424988314509392,
- 0.013336467556655407,
- -0.0004930761060677469,
- -0.0718395933508873,
- -0.08728228509426117,
- -0.058618221431970596,
- 0.02062239870429039,
- 0.0034821575973182917,
- -0.03187490999698639,
- 0.025361109524965286,
- 0.1372949630022049,
- -0.05490492656826973,
- -0.04100657254457474,
- -0.03783199191093445,
- -0.0016163229010999203,
- -0.012575497850775719,
- -0.02681068517267704,
- 0.06553463637828827,
- -0.0009199194610118866,
- -0.0498039647936821,
- 0.021505942568182945,
- -0.044363752007484436,
- -0.08891130983829498,
- -0.028660859912633896,
- -0.027461310848593712,
- 0.004051867872476578,
- -0.016079921275377274,
- -0.07041241973638535,
- -0.054279521107673645,
- 0.050400082021951675,
- 0.018490737304091454,
- 0.020198361948132515,
- -0.007315678521990776,
- 0.0067026251927018166,
- 0.03838513791561127,
- -0.012532379478216171,
- -0.07747627794742584,
- 0.004993022885173559,
- -0.012250425294041634,
- -0.07168278843164444,
- 0.00005222628533374518,
- -0.0001233402144862339,
- -1.2098035462315693e-8,
- -0.01812884211540222,
- -0.0051164645701646805,
- -0.06713967025279999,
- -0.09691338241100311,
- 0.03888547047972679,
- -0.05092061311006546,
- -0.008853805251419544,
- -0.03768786042928696,
- 0.03814811259508133,
- 0.09907353669404984,
- -0.020012538880109787,
- -0.04701503366231918,
- 0.07316109538078308,
- 0.03387264162302017,
- 0.13244156539440155,
- -0.017016196623444557,
- 0.01228123065084219,
- 0.029436713084578514,
- -0.08754660934209824,
- -0.05641882121562958,
- 0.07436390966176987,
- 0.023434482514858246,
- 0.01694837398827076,
- 0.04752485454082489,
- -0.033222801983356476,
- 0.03163756802678108,
- -0.06717432290315628,
- 0.12398459017276764,
- 0.015304327011108398,
- 0.10030267387628555,
- -0.034985341131687164,
- 0.1306127905845642,
- -0.08722227066755295,
- -0.08560506254434586,
- -0.012948103249073029,
- 0.005606192164123058,
- 0.05282144621014595,
- -0.050488099455833435,
- -0.012250634841620922,
- -0.011207282543182373,
- 0.021810490638017654,
- 0.03756439685821533,
- -0.020991191267967224,
- 0.010731734335422516,
- 0.05790170654654503,
- -0.0608455054461956,
- -0.047666970640420914,
- -0.06438025832176208,
- -0.022333409637212753,
- -0.039266157895326614,
- -0.009085315279662609,
- -0.02961183339357376,
- 0.08010948449373245,
- 0.07711268216371536,
- 0.016871299594640732,
- -0.03585708141326904,
- 0.010527265258133411,
- -0.043226130306720734,
- -0.0767786055803299,
- 0.0039909654296934605,
- 0.12012676149606705,
- 0.004174960311502218,
- 0.04312601312994957,
- 0.033480968326330185
- ]
- },
- {
- "keyword": "staff",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.05354408547282219,
- -0.017914192751049995,
- -0.00872289203107357,
- -0.025748370215296745,
- -0.03179004788398743,
- -0.03703560307621956,
- 0.06490811705589294,
- -0.027242477983236313,
- 0.06037258356809616,
- 0.004650773946195841,
- 0.003796193515881896,
- -0.017158143222332,
- 0.006308980286121368,
- -0.007835783995687962,
- -0.03640656918287277,
- -0.06482302397489548,
- 0.004391370341181755,
- -0.012261019088327885,
- 0.03585149347782135,
- -0.027753589674830437,
- -0.042236145585775375,
- 0.0360896922647953,
- -0.047803010791540146,
- 0.01756635494530201,
- -0.031197693198919296,
- 0.005417210981249809,
- -0.0727921575307846,
- 0.049485038965940475,
- -0.05215882509946823,
- -0.08988621085882187,
- -0.03239354118704796,
- -0.02782568894326687,
- 0.037913352251052856,
- -0.00346353673376143,
- -0.0630478709936142,
- 0.10659690946340561,
- 0.015183907002210617,
- 0.02700663171708584,
- 0.04774407669901848,
- 0.013282593339681625,
- -0.07541022449731827,
- -0.07122496515512466,
- -0.028139445930719376,
- 0.01790189929306507,
- -0.011441249400377274,
- 0.015110885724425316,
- 0.02524014189839363,
- 0.014263528399169445,
- 0.031325895339250565,
- 0.03274957835674286,
- 0.05088864266872406,
- -0.06116509065032005,
- 0.00990938488394022,
- 0.08274102210998535,
- 0.020941084250807762,
- -0.0468476377427578,
- 0.06294023990631104,
- -0.04424828290939331,
- 0.009407438337802887,
- 0.02816122956573963,
- -0.008763972669839859,
- -0.039573609828948975,
- -0.0513991117477417,
- 0.019122080877423286,
- 0.010297369211912155,
- -0.04697427526116371,
- -0.05518738925457001,
- 0.02055622637271881,
- -0.036253366619348526,
- -0.10278371721506119,
- 0.025377558544278145,
- -0.03807160258293152,
- 0.07198140770196915,
- -0.006604146212339401,
- 0.06051523983478546,
- 0.07109062373638153,
- 0.0032313482370227575,
- -0.033774543553590775,
- 0.11545346677303314,
- -0.14261624217033386,
- 0.020182263106107712,
- -0.01634160429239273,
- 0.03003498911857605,
- 0.07302814722061157,
- -0.06926582008600235,
- -0.008999672718346119,
- 0.04419848322868347,
- -0.0027830859180539846,
- 0.02614774741232395,
- 0.035552773624658585,
- 0.013110285624861717,
- 0.07422332465648651,
- 0.06637099385261536,
- -0.015254518017172813,
- -0.09081920981407166,
- -0.012157931923866272,
- 0.03182324022054672,
- 0.026195436716079712,
- -0.11804962158203125,
- 0.24832859635353088,
- -0.023189641535282135,
- 0.0684305727481842,
- 0.06152057647705078,
- -0.05562061071395874,
- -0.08659582585096359,
- -0.047789059579372406,
- -0.03250422701239586,
- -0.024980157613754272,
- -0.02355876937508583,
- -0.051176972687244415,
- -0.009790804237127304,
- 0.044920142740011215,
- -0.17348235845565796,
- -0.028156377375125885,
- -0.001967331860214472,
- -0.0749339759349823,
- -0.009354107081890106,
- -0.01027730293571949,
- -0.08152400702238083,
- 0.007964100688695908,
- 0.03640798479318619,
- 0.04381641000509262,
- -0.08964771032333374,
- -0.013003895990550518,
- -0.05982594192028046,
- 0.022600891068577766,
- 0.06736870855093002,
- -6.0570957397827296e-33,
- 0.006886652670800686,
- 0.020520366728305817,
- 0.0371256098151207,
- -0.0037344645243138075,
- 0.08912789076566696,
- 0.004893274046480656,
- -0.004298941232264042,
- 0.07916586846113205,
- -0.021758586168289185,
- 0.0025774454697966576,
- -0.0010306205367669463,
- 0.05315146967768669,
- -0.008883162401616573,
- -0.029401632025837898,
- 0.05848328396677971,
- -0.023991316556930542,
- 0.04465228691697121,
- 0.02047506906092167,
- -0.009018364362418652,
- 0.024849344044923782,
- -0.05201531946659088,
- 0.04115276783704758,
- -0.039306700229644775,
- 0.04645552113652229,
- 0.035096604377031326,
- 0.0077047888189554214,
- -0.035098351538181305,
- -0.02059090882539749,
- 0.04687652364373207,
- 0.0463084913790226,
- 0.016407905146479607,
- -0.014521670527756214,
- 0.014879739843308926,
- -0.009630978107452393,
- -0.06469857692718506,
- -0.025573916733264923,
- -0.0279993936419487,
- -0.09127388149499893,
- 0.038411445915699005,
- -0.0919312834739685,
- -0.0382537879049778,
- 0.01645725965499878,
- 0.10380260646343231,
- -0.0039532058872282505,
- -0.06003150716423988,
- 0.00020425012917257845,
- 0.06325184553861618,
- 0.028581392019987106,
- 0.04528643563389778,
- 0.09193780273199081,
- 0.01780571974813938,
- -0.0023212749511003494,
- 0.06616675108671188,
- 0.0608212947845459,
- 0.06866791099309921,
- -0.05693179368972778,
- 0.0515773743391037,
- 0.0261431485414505,
- 0.022665943950414658,
- -0.03548336774110794,
- 0.07536833733320236,
- 0.14677393436431885,
- 0.00471894908696413,
- 0.09737683087587357,
- 0.029456503689289093,
- -0.11744871735572815,
- -0.005341636016964912,
- -0.06588229537010193,
- 0.13450676202774048,
- -0.08097624778747559,
- -0.06927419453859329,
- 0.01735035330057144,
- 0.0889594778418541,
- 0.06916044652462006,
- -0.11601629108190536,
- 0.013613077811896801,
- -0.02329634688794613,
- 0.008129994384944439,
- 0.012352020479738712,
- -0.04424934461712837,
- -0.018844885751605034,
- -0.019504986703395844,
- 0.013601114973425865,
- 0.018766140565276146,
- 0.012710519134998322,
- 0.00615741778165102,
- 0.04923808202147484,
- -0.012081301771104336,
- -0.016961317509412766,
- 0.009939592331647873,
- -0.05796473100781441,
- -0.003721322165802121,
- 0.048406682908535004,
- 0.11150204390287399,
- -0.07182712107896805,
- 4.548704327543447e-33,
- 0.014006869867444038,
- -0.01825222186744213,
- -0.05572376027703285,
- 0.003281210083514452,
- 0.03918541967868805,
- 0.05204695835709572,
- -0.0008542736177332699,
- -0.0567440502345562,
- -0.02505883201956749,
- 0.07673972100019455,
- -0.05015719309449196,
- -0.02277069352567196,
- -0.028887160122394562,
- 0.01923772692680359,
- 0.017970582470297813,
- -0.019758053123950958,
- 0.02136348932981491,
- -0.07348426431417465,
- -0.05077091604471207,
- -0.0156862810254097,
- -0.008033940568566322,
- 0.027767406776547432,
- 0.047881949692964554,
- 0.039924751967191696,
- 0.020480439066886902,
- 0.04512455686926842,
- 0.05153752118349075,
- -0.002445405814796686,
- -0.10506916791200638,
- -0.008088817819952965,
- -0.011181249283254147,
- -0.07847151160240173,
- 0.02792099118232727,
- -0.011376089416444302,
- 0.023423394188284874,
- 0.014044705778360367,
- 0.03252013400197029,
- 0.05865867808461189,
- -0.0482616201043129,
- 0.04049264267086983,
- 0.09478075057268143,
- -0.03719509765505791,
- 0.011030207388103008,
- 0.07332000136375427,
- -0.06956324726343155,
- -0.008189521729946136,
- -0.0432840958237648,
- -0.014923657290637493,
- -0.030385136604309082,
- 0.022723980247974396,
- -0.09313494712114334,
- -0.027103520929813385,
- -0.03693614527583122,
- -0.03581869974732399,
- 0.0038037081249058247,
- 0.011577539145946503,
- -0.027917776256799698,
- -0.08753205090761185,
- 0.04333040863275528,
- 0.0015036817640066147,
- 0.016182351857423782,
- -0.015462016686797142,
- -0.041669152677059174,
- 0.11289636790752411,
- -0.008928555995225906,
- -0.02357982099056244,
- -0.042358119040727615,
- 0.019861701875925064,
- -0.06344311684370041,
- 0.022507643327116966,
- -0.0008059857646003366,
- -0.01869065687060356,
- 0.0333017036318779,
- -0.0294793788343668,
- -0.07473241537809372,
- 0.013710723258554935,
- -0.04610103741288185,
- -0.0877685546875,
- -0.02907593920826912,
- 0.033909913152456284,
- -0.04492367431521416,
- -0.07284170389175415,
- 0.008912964724004269,
- 0.0826336219906807,
- -0.016916673630475998,
- 0.027019793167710304,
- 0.1247875988483429,
- 0.025460032746195793,
- -0.016920341178774834,
- -0.034653499722480774,
- 0.048173170536756516,
- -0.03350545093417168,
- 0.02765842154622078,
- 0.020840220153331757,
- 0.03127244487404823,
- -1.1668157107180832e-8,
- 0.024804959073662758,
- 0.020532459020614624,
- 0.0769636482000351,
- -0.03312179446220398,
- 0.06547246873378754,
- -0.0991571694612503,
- -0.008668147958815098,
- 0.013278313912451267,
- 0.04278797656297684,
- 0.09953062981367111,
- 0.01048966869711876,
- -0.02012215554714203,
- 0.033602695912122726,
- -0.007258102763444185,
- 0.1470605432987213,
- 0.019971970468759537,
- -0.07133787125349045,
- 0.021937698125839233,
- -0.0995454266667366,
- -0.05706937983632088,
- 0.007473887410014868,
- 0.03783721849322319,
- -0.0031859385780990124,
- -0.06972052901983261,
- 0.03364124149084091,
- 0.035964883863925934,
- -0.07991371303796768,
- 0.02860022708773613,
- -0.043874625116586685,
- 0.10264038294553757,
- 0.04172232374548912,
- 0.015450390987098217,
- -0.043944261968135834,
- -0.024186203256249428,
- 0.041053131222724915,
- 0.023172708228230476,
- -0.07985364645719528,
- -0.025855109095573425,
- 0.0026640703435987234,
- 0.026407191529870033,
- -0.014659623615443707,
- -0.023454679176211357,
- 0.009903887286782265,
- 0.0333416648209095,
- 0.039590757340192795,
- 0.03583206981420517,
- -0.010794777423143387,
- 0.0666845515370369,
- 0.011998383328318596,
- -0.0833723321557045,
- -0.032880108803510666,
- 0.015924522653222084,
- 0.012456654570996761,
- 0.06379044055938721,
- 0.0199752114713192,
- -0.0020309854298830032,
- 0.03476397693157196,
- -0.013375889509916306,
- -0.06920183449983597,
- 0.05084899067878723,
- 0.02477644383907318,
- 0.027135692536830902,
- 0.04881257191300392,
- 0.03266455605626106
- ]
- },
- {
- "keyword": "personnel",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03475513309240341,
- 0.03467881307005882,
- 0.02737560123205185,
- 0.02307155914604664,
- -0.05893025919795036,
- -0.024510104209184647,
- 0.14336030185222626,
- -0.03217093646526337,
- 0.003369932761415839,
- 0.07943961769342422,
- -0.006121016573160887,
- -0.03280383720993996,
- 0.018621519207954407,
- 0.008196880109608173,
- -0.02482040412724018,
- 0.0034986173268407583,
- 0.012942679226398468,
- 0.03166889399290085,
- 0.008336585946381092,
- -0.03201902657747269,
- -0.08643794804811478,
- 0.004364290274679661,
- -0.03939434513449669,
- 0.0019958883058279753,
- -0.0441625714302063,
- 0.013607056811451912,
- -0.05389169231057167,
- 0.03345595300197601,
- -0.08019820600748062,
- -0.0906907469034195,
- -0.03486756607890129,
- 0.012160053476691246,
- 0.07238323241472244,
- 0.03172662481665611,
- -0.04951081424951553,
- 0.09608406573534012,
- 0.036849379539489746,
- 0.032492127269506454,
- 0.023104114457964897,
- 0.033637635409832,
- -0.039521075785160065,
- -0.037274111062288284,
- 0.02501372992992401,
- -0.02422233857214451,
- 0.002797248074784875,
- 0.025854280218482018,
- 0.04989407956600189,
- -0.0398980975151062,
- 0.028473297134041786,
- 0.026782149448990822,
- 0.007483157329261303,
- -0.026206808164715767,
- 0.005314299836754799,
- 0.07652435451745987,
- 0.007578598335385323,
- -0.06666391342878342,
- 0.04746052622795105,
- -0.07185760140419006,
- -0.015768034383654594,
- -0.0013455268926918507,
- -0.034879717975854874,
- -0.04552670568227768,
- -0.04088323563337326,
- -0.02804737165570259,
- 0.07620149850845337,
- -0.0613582469522953,
- -0.004429799038916826,
- 0.00904176477342844,
- 0.023606399074196815,
- -0.05213499441742897,
- -0.0014512138441205025,
- -0.02070760168135166,
- -0.005355064757168293,
- 0.030275356024503708,
- 0.05130581557750702,
- -0.038798339664936066,
- -0.008661109954118729,
- -0.024381253868341446,
- 0.07182338833808899,
- -0.11069076508283615,
- 0.05967649072408676,
- -0.030845150351524353,
- 0.00038215803215280175,
- 0.03480925410985947,
- -0.01675667241215706,
- -0.001319362549111247,
- 0.04049186408519745,
- 0.05778369680047035,
- -0.03547079116106033,
- 0.04334992170333862,
- -0.03188023716211319,
- -0.007751530967652798,
- 0.09442504495382309,
- -0.007504328619688749,
- -0.05537504330277443,
- 0.016842780634760857,
- 0.015650808811187744,
- 0.010083964094519615,
- -0.06236736848950386,
- 0.21922166645526886,
- 0.020020216703414917,
- 0.03073708340525627,
- 0.021095899865031242,
- -0.059466276317834854,
- -0.10879023373126984,
- -0.0511765219271183,
- -0.039728809148073196,
- -0.003182221669703722,
- -0.019339172169566154,
- -0.04448382183909416,
- -0.009983374737203121,
- 0.037825148552656174,
- -0.14987371861934662,
- -0.011450165882706642,
- -0.017630791291594505,
- 0.001064053038135171,
- -0.06776311993598938,
- 0.0601070299744606,
- -0.04111107438802719,
- 0.009718222543597221,
- 0.0292527973651886,
- 0.007817939855158329,
- -0.03287757560610771,
- 0.03848695009946823,
- -0.03448517248034477,
- 0.000907216570340097,
- 0.03172726929187775,
- -5.808550683612804e-33,
- 0.01520619634538889,
- -0.028895093128085136,
- 0.04873407259583473,
- 0.0719299465417862,
- -0.014897306449711323,
- 0.018454013392329216,
- -0.02261892892420292,
- 0.03317838907241821,
- 0.00743314903229475,
- 0.011254535987973213,
- -0.08936075121164322,
- 0.0368834063410759,
- -0.005497131962329149,
- 0.013310289941728115,
- 0.09272561222314835,
- -0.05749263986945152,
- -0.03605913743376732,
- 0.07088794559240341,
- -0.05275541543960571,
- 0.06957031041383743,
- -0.04709848389029503,
- 0.05785968527197838,
- -0.11221141368150711,
- 0.058879248797893524,
- 0.031932368874549866,
- 0.020794367417693138,
- -0.039706382900476456,
- 0.03170596435666084,
- 0.0630090981721878,
- 0.0221127737313509,
- 0.03084506094455719,
- 0.035444822162389755,
- 0.029790367931127548,
- 0.018717218190431595,
- -0.00032028640271164477,
- 0.012021913193166256,
- -0.023431185632944107,
- -0.0493524931371212,
- 0.023322908207774162,
- -0.09532876312732697,
- -0.01763634942471981,
- 0.03387745842337608,
- 0.0451606810092926,
- 0.021933728829026222,
- -0.06011805310845375,
- -0.02484043501317501,
- 0.03761471062898636,
- -0.0054251099936664104,
- -0.0065534766763448715,
- 0.10108134150505066,
- -0.00972703006118536,
- 0.032167721539735794,
- 0.011926396749913692,
- -0.008190232329070568,
- 0.05986236035823822,
- -0.007508216425776482,
- 0.05590273439884186,
- 0.030547281727194786,
- -0.030295616015791893,
- -0.020738931372761726,
- 0.0339735709130764,
- 0.15888084471225739,
- 0.006397181190550327,
- 0.0882863849401474,
- 0.07468535751104355,
- -0.08803454786539078,
- -0.003910440485924482,
- -0.01897318847477436,
- 0.14484156668186188,
- -0.039001595228910446,
- -0.08525677025318146,
- 0.038713280111551285,
- 0.0589689165353775,
- -0.0028194687329232693,
- -0.0525469072163105,
- 0.031629715114831924,
- 0.04853202402591705,
- 0.013753257691860199,
- -0.023791931569576263,
- -0.015610536560416222,
- -0.01273093931376934,
- -0.057858649641275406,
- 0.016344180330634117,
- -0.026849869638681412,
- 0.04775804281234741,
- 0.0168518777936697,
- -0.007828690111637115,
- -0.0486440546810627,
- 0.027105022221803665,
- 0.08281493186950684,
- -0.04147501289844513,
- -0.012743017636239529,
- 0.02347513474524021,
- 0.13868536055088043,
- -0.06194932758808136,
- 3.7204958236761887e-33,
- 0.019241714850068092,
- 0.043338701128959656,
- -0.07811258733272552,
- 0.0306305680423975,
- 0.08135785162448883,
- 0.00944757740944624,
- 0.0454447977244854,
- -0.05344710499048233,
- -0.10696258395910263,
- 0.011651399545371532,
- -0.06793941557407379,
- -0.077967070043087,
- 0.009176327846944332,
- 0.02626248076558113,
- 0.038323789834976196,
- -0.034807220101356506,
- 0.028651989996433258,
- -0.015171901322901249,
- -0.04272207245230675,
- 0.04602034389972687,
- -0.005310507491230965,
- -0.0461859293282032,
- 0.013269665651023388,
- 0.016253044828772545,
- -0.023825915530323982,
- 0.06223060190677643,
- 0.059481505304574966,
- -0.032089073210954666,
- -0.0760473981499672,
- 0.015551771968603134,
- 0.021021975204348564,
- -0.05190068110823631,
- -0.06397265195846558,
- 0.0036316532641649246,
- -0.010701925493776798,
- -0.0333804152905941,
- -0.008866284042596817,
- 0.09001186490058899,
- -0.038223206996917725,
- 0.016383985057473183,
- 0.0387820340692997,
- 0.07234011590480804,
- -0.008787368424236774,
- 0.0612487830221653,
- -0.06309977173805237,
- -0.019609544426202774,
- -0.028503572568297386,
- -0.04688454419374466,
- -0.05753430351614952,
- 0.009789342992007732,
- -0.09553931653499603,
- -0.028121255338191986,
- -0.09111899882555008,
- -0.11009613424539566,
- -0.035746846348047256,
- -0.031679943203926086,
- -0.060882680118083954,
- -0.08001738786697388,
- 0.055991217494010925,
- 0.01412837766110897,
- 0.017134912312030792,
- -0.007109048776328564,
- -0.013353817164897919,
- 0.09085465222597122,
- -0.05725753307342529,
- 0.031262271106243134,
- -0.004433491732925177,
- 0.02951616607606411,
- -0.07764710485935211,
- 0.03992118313908577,
- 0.0924934521317482,
- -0.05410081520676613,
- 0.002256976906210184,
- 0.028994256630539894,
- -0.0033520294819027185,
- -0.042740024626255035,
- -0.10044112801551819,
- -0.04046684131026268,
- -0.0010776242706924677,
- -0.005310271866619587,
- 0.01640864834189415,
- -0.034755297005176544,
- -0.03354886174201965,
- 0.08441400527954102,
- -0.047469381242990494,
- 0.017809784039855003,
- 0.08662741631269455,
- 0.05146074667572975,
- -0.061357174068689346,
- -0.03829692676663399,
- 0.016852455213665962,
- -0.026668675243854523,
- -0.041186727583408356,
- -0.03246204927563667,
- -0.018757080659270287,
- -1.2737890742187119e-8,
- -0.016361594200134277,
- 0.0739825963973999,
- -0.012232428416609764,
- -0.0014977763639762998,
- 0.040431126952171326,
- -0.10664749890565872,
- -0.008074873127043247,
- -0.0336957648396492,
- 0.06737598031759262,
- 0.047748222947120667,
- -0.00042233907151967287,
- -0.018096651881933212,
- 0.06552781909704208,
- -0.0009513461263850331,
- 0.1951252520084381,
- 0.03860881179571152,
- -0.08718882501125336,
- -0.007918491028249264,
- -0.09258577227592468,
- -0.04522314667701721,
- 0.0033903082367032766,
- 0.0020537676755338907,
- -0.03729918599128723,
- 0.03130430728197098,
- 0.010942833498120308,
- 0.07290026545524597,
- -0.0723443254828453,
- 0.05790425464510918,
- 0.012945189140737057,
- 0.15251152217388153,
- -0.004865993279963732,
- 0.023332800716161728,
- -0.051138006150722504,
- -0.017265835776925087,
- 0.04988943785429001,
- -0.01774544082581997,
- 0.01625143364071846,
- -0.08645189553499222,
- 0.04325456544756889,
- -0.0495603084564209,
- -0.01381462812423706,
- 0.004273248836398125,
- 0.01959962584078312,
- 0.07040084898471832,
- 0.0969153419137001,
- -0.030344270169734955,
- 0.043644979596138,
- -0.03421507775783539,
- -0.07040229439735413,
- -0.07679741084575653,
- 0.002652103314176202,
- -0.03033309616148472,
- 0.020092854276299477,
- 0.12154748290777206,
- 0.008290177211165428,
- 0.016110045835375786,
- 0.023729700595140457,
- 0.011416562832891941,
- -0.06199914216995239,
- 0.007703530136495829,
- 0.023684006184339523,
- 0.0047936877235770226,
- 0.050600748509168625,
- 0.015629304572939873
- ]
- },
- {
- "keyword": "engineer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.08616519719362259,
- 0.06413514912128448,
- 0.025366932153701782,
- 0.06104458495974541,
- -0.03995058685541153,
- -0.11394365131855011,
- 0.1126646175980568,
- 0.030919281765818596,
- -0.061090774834156036,
- -0.04332829266786575,
- -0.027939345687627792,
- -0.12075648456811905,
- 0.0179376769810915,
- 0.006104385480284691,
- -0.11586523801088333,
- -0.00804226752370596,
- -0.018571525812149048,
- -0.039236653596162796,
- -0.03597308695316315,
- -0.15010355412960052,
- -0.020905839279294014,
- 0.01664748415350914,
- 0.013272762298583984,
- -0.008696033619344234,
- 0.027917366474866867,
- 0.053645726293325424,
- 0.01659947633743286,
- 0.019086109474301338,
- 0.0780283659696579,
- -0.1212279349565506,
- -0.054260823875665665,
- 0.043372247368097305,
- 0.026731885969638824,
- 0.01587597094476223,
- 0.007348084822297096,
- 0.03862062469124794,
- -0.00976108480244875,
- -0.03993652015924454,
- 0.07087672501802444,
- -0.01212368719279766,
- -0.07405346632003784,
- -0.07834931463003159,
- 0.05196838453412056,
- -0.019468003883957863,
- 0.009484750218689442,
- 0.02089558355510235,
- 0.10266175866127014,
- -0.10891285538673401,
- 0.02793509140610695,
- -0.02960757352411747,
- -0.03402217477560043,
- -0.02593385986983776,
- -0.02499423362314701,
- -0.03653862327337265,
- 0.03002219833433628,
- 0.01311873272061348,
- 0.03391650691628456,
- 0.000957500422373414,
- -0.02939164824783802,
- 0.041237637400627136,
- 0.02311386540532112,
- 0.007146906107664108,
- -0.040083251893520355,
- 0.05571376904845238,
- 0.03969051316380501,
- -0.030033612623810768,
- -0.04341023415327072,
- 0.01677579991519451,
- 0.007119526155292988,
- -0.07112148404121399,
- 0.06427254527807236,
- -0.04632474482059479,
- -0.005188914947211742,
- -0.013084053061902523,
- 0.09306513518095016,
- -0.05098659545183182,
- 0.055198609828948975,
- 0.030758246779441833,
- 0.08665402233600616,
- -0.01607820950448513,
- -0.04317539930343628,
- -0.0830812156200409,
- -0.14388717710971832,
- 0.009039746597409248,
- 0.017863713204860687,
- -0.011099150404334068,
- 0.010879859328269958,
- 0.0568535178899765,
- 0.01816151849925518,
- 0.010296698659658432,
- -0.005650586914271116,
- -0.003621625481173396,
- 0.014627550728619099,
- 0.07282783091068268,
- -0.007489205338060856,
- 0.07193249464035034,
- 0.01074619498103857,
- -0.044344108551740646,
- -0.1072496846318245,
- 0.18930573761463165,
- -0.0020153627265244722,
- 0.0723048746585846,
- -0.004686327185481787,
- 0.04025905579328537,
- -0.06796693801879883,
- -0.012317510321736336,
- -0.042172808200120926,
- 0.09471020102500916,
- 0.04252856224775314,
- -0.01734233647584915,
- -0.006168677005916834,
- 0.03634655103087425,
- -0.028781013563275337,
- 0.06800033152103424,
- -0.014881674200296402,
- -0.018912019208073616,
- 0.01674698106944561,
- 0.027311362326145172,
- 0.042736317962408066,
- 0.0069854045286774635,
- 0.0168906319886446,
- 0.01389359775930643,
- -0.0884825736284256,
- -0.008834218606352806,
- -0.08348637074232101,
- -0.06839673221111298,
- 0.026436125859618187,
- -5.04721091057604e-33,
- -0.012912058271467686,
- -0.01523097325116396,
- 0.026669500395655632,
- 0.016044344753026962,
- -0.021919388324022293,
- -0.01725255325436592,
- -0.04200902581214905,
- 0.06616916507482529,
- 0.014757692813873291,
- -0.0031044119969010353,
- 0.01678776741027832,
- 0.021024461835622787,
- -0.05748908594250679,
- 0.032444167882204056,
- 0.09477181732654572,
- -0.007229025010019541,
- -0.04635195806622505,
- 0.06367017328739166,
- -0.02933874912559986,
- 0.08034468442201614,
- -0.01905292272567749,
- -0.0314810536801815,
- -0.006225965451449156,
- 0.036121733486652374,
- 0.05658711493015289,
- -0.030021101236343384,
- 0.054029062390327454,
- -0.043576374650001526,
- -0.020724905654788017,
- 0.024949941784143448,
- -0.04803673177957535,
- 0.09429947286844254,
- 0.020335305482149124,
- -0.003226000815629959,
- -0.05125599354505539,
- -0.008999804966151714,
- -0.02995608188211918,
- -0.09416355937719345,
- 0.03530411794781685,
- 0.009749356657266617,
- -0.030513569712638855,
- 0.018122324720025063,
- 0.07173454016447067,
- 0.0020608322229236364,
- 0.04535475745797157,
- 0.02377791330218315,
- 0.07171040028333664,
- 0.03294627368450165,
- 0.03059677593410015,
- 0.008944232016801834,
- -0.061805784702301025,
- 0.012894297018647194,
- 0.10372675955295563,
- -0.03092455118894577,
- 0.11748208105564117,
- -0.003582603996619582,
- 0.09562194347381592,
- 0.03140954673290253,
- -0.02626870572566986,
- 0.06037767603993416,
- -0.07131323963403702,
- 0.1610320508480072,
- -0.02523036301136017,
- 0.018060684204101562,
- 0.035257451236248016,
- 0.011196666397154331,
- 0.035154424607753754,
- 0.05347410589456558,
- 0.02475646510720253,
- -0.020307237282395363,
- -0.1300511360168457,
- 0.0019043759675696492,
- 0.052189987152814865,
- -0.0239701010286808,
- -0.04624856263399124,
- 0.03159977123141289,
- -0.0575951486825943,
- 0.025260545313358307,
- -0.010108588263392448,
- 0.03686756268143654,
- 0.002171296626329422,
- 0.05511820316314697,
- 0.020190909504890442,
- -0.04906272143125534,
- 0.0852150097489357,
- 0.03712962940335274,
- -0.028205692768096924,
- -0.022953206673264503,
- 0.0665973573923111,
- 0.04815058410167694,
- -0.05500077083706856,
- -0.07948841899633408,
- 0.037694741040468216,
- 0.08857907354831696,
- -0.028111835941672325,
- 2.500825476795038e-33,
- -0.08839133381843567,
- 0.013879883103072643,
- -0.03955846279859543,
- 0.020570164546370506,
- 0.03979697450995445,
- -0.04612145200371742,
- 0.057845570147037506,
- -0.0323861688375473,
- 0.005010487046092749,
- 0.08210806548595428,
- 0.013264033943414688,
- -0.0129303690046072,
- 0.016555557027459145,
- 0.0037737577222287655,
- -0.046902596950531006,
- 0.01251012273132801,
- -0.020543430000543594,
- -0.1171155795454979,
- -0.08217882364988327,
- 0.02736535109579563,
- 0.010915827937424183,
- 0.07180697470903397,
- -0.06830872595310211,
- -0.04055973142385483,
- 0.01075534988194704,
- 0.015273750759661198,
- 0.003793182782828808,
- 0.03187604248523712,
- -0.03468364104628563,
- -0.010410240851342678,
- -0.009821567684412003,
- -0.007106264587491751,
- -0.046611715108156204,
- 0.03148637339472771,
- -0.00756157748401165,
- 0.025634007528424263,
- 0.015072911977767944,
- 0.05520530045032501,
- 0.02661827951669693,
- 0.00249830586835742,
- 0.050489142537117004,
- -0.03333611786365509,
- 0.05134503170847893,
- 0.09169439971446991,
- -0.03755510598421097,
- -0.05771956592798233,
- -0.005778544582426548,
- -0.028109261766076088,
- -0.02680842950940132,
- -0.0041695209220051765,
- 0.015655573457479477,
- 0.028558829799294472,
- 0.030880384147167206,
- -0.09099622070789337,
- 0.04717736691236496,
- -0.046046480536460876,
- -0.02916097454726696,
- -0.03600833937525749,
- 0.010304197669029236,
- -0.03798891603946686,
- 0.04810855910181999,
- -0.0020909570157527924,
- 0.08039287477731705,
- 0.10415516793727875,
- -0.12085484713315964,
- -0.006883001886308193,
- -0.001434461446478963,
- 0.04000518471002579,
- -0.08424446731805801,
- -0.03763573616743088,
- 0.1062437891960144,
- 0.04210283234715462,
- -0.025178465992212296,
- 0.0031162002123892307,
- -0.035578060895204544,
- -0.09137992560863495,
- -0.009664000943303108,
- -0.014953221194446087,
- -0.045999959111213684,
- -0.028299732133746147,
- 0.005823291372507811,
- 0.007020496763288975,
- 0.018198173493146896,
- 0.07136691361665726,
- -0.03398638218641281,
- -0.03827305883169174,
- -0.034146249294281006,
- 0.02123919688165188,
- 0.07643574476242065,
- -0.08123581111431122,
- -0.019994866102933884,
- 0.01657084748148918,
- -0.07756105065345764,
- -0.06729932129383087,
- -0.02441098354756832,
- -1.1481524175849245e-8,
- -0.054896797984838486,
- -0.047295909374952316,
- -0.030570948496460915,
- -0.11349129676818848,
- 0.002920480677857995,
- 0.00017201196169480681,
- -0.01727026328444481,
- -0.021869340911507607,
- -0.0020465669222176075,
- -0.04704641178250313,
- -0.0018746309215202928,
- 0.0014170757494866848,
- 0.04410606995224953,
- 0.06931053102016449,
- 0.09034273028373718,
- -0.04254832863807678,
- -0.004470663610845804,
- 0.09382424503564835,
- -0.023623721674084663,
- -0.09680474549531937,
- 0.04916442185640335,
- 0.005609196610748768,
- 0.09052597731351852,
- 0.0791647657752037,
- -0.04811231046915054,
- -0.02974536083638668,
- -0.0029802441131323576,
- -0.06651044636964798,
- 0.01911279745399952,
- 0.0561164990067482,
- -0.06138353422284126,
- 0.023610956966876984,
- 0.014869564212858677,
- -0.028381669893860817,
- 0.07171332836151123,
- -0.013639189302921295,
- 0.03279116749763489,
- -0.04655428230762482,
- 0.014393998309969902,
- 0.0230123158544302,
- -0.05778674781322479,
- 0.020866136997938156,
- 0.018532518297433853,
- 0.027660898864269257,
- 0.039039868861436844,
- -0.006373717449605465,
- -0.06896886229515076,
- -0.04514295235276222,
- 0.044996071606874466,
- 0.023291783407330513,
- 0.038193218410015106,
- -0.03961945325136185,
- 0.041729316115379333,
- -0.014423500746488571,
- 0.007233132608234882,
- 0.00812982115894556,
- -0.03464934974908829,
- -0.05207107961177826,
- -0.10620375722646713,
- -0.0028418449219316244,
- 0.06937357783317566,
- -0.023551732301712036,
- 0.10506463795900345,
- 0.023734021931886673
- ]
- },
- {
- "keyword": "developer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.03715133294463158,
- -0.0036023848224431276,
- 0.016748158261179924,
- 0.018996259197592735,
- -0.020227234810590744,
- -0.08697901666164398,
- 0.08520369231700897,
- 0.026157507672905922,
- -0.003842615056782961,
- 0.01479914877563715,
- -0.04880023002624512,
- -0.03923349827528,
- -0.04142867773771286,
- -0.0195522028952837,
- -0.05114800110459328,
- 0.07538411021232605,
- -0.07826027274131775,
- -0.02315670996904373,
- -0.008602386340498924,
- -0.11956553161144257,
- -0.0973174199461937,
- 0.02554973214864731,
- -0.0243499968200922,
- -0.00521589582785964,
- 0.07238397747278214,
- 0.02196764573454857,
- 0.011998049914836884,
- 0.005102328956127167,
- 0.1331571489572525,
- -0.08370158821344376,
- -0.0477370023727417,
- 0.0173359178006649,
- 0.06452969461679459,
- 0.036491040140390396,
- -0.031046316027641296,
- 0.02061569318175316,
- 0.00887212622910738,
- -0.028775379061698914,
- 0.01162269338965416,
- -0.03287047520279884,
- -0.06302404403686523,
- -0.051651306450366974,
- -0.05029688775539398,
- 0.022650009021162987,
- -0.026642082259058952,
- -0.030687842518091202,
- 0.020073547959327698,
- -0.038475681096315384,
- -0.03783566504716873,
- 0.0032806622330099344,
- 0.03393653407692909,
- -0.08815473318099976,
- -0.05439116805791855,
- -0.05323247238993645,
- -0.008615996688604355,
- -0.03542796149849892,
- 0.03264304995536804,
- 0.03051614575088024,
- 0.05289467051625252,
- 0.012787622399628162,
- 0.04443206638097763,
- -0.004326388705521822,
- -0.03048740141093731,
- 0.05575526878237724,
- 0.06386593729257584,
- -0.003050173632800579,
- -0.029595352709293365,
- 0.011531669646501541,
- -0.045150015503168106,
- -0.08459491282701492,
- -0.05954422429203987,
- -0.010952639393508434,
- -0.001593823661096394,
- 0.02393949218094349,
- 0.0960492417216301,
- -0.07954707741737366,
- 0.020546231418848038,
- -0.019138595089316368,
- 0.08291467279195786,
- -0.029643842950463295,
- 0.0643676370382309,
- 0.009554339572787285,
- -0.08428683131933212,
- 0.11751929670572281,
- 0.0032243519090116024,
- 0.04948333650827408,
- 0.07655394822359085,
- 0.11243992298841476,
- 0.06786086410284042,
- 0.01783871278166771,
- 0.012324972078204155,
- -0.018756980076432228,
- 0.06213724613189697,
- 0.01221766322851181,
- -0.09034144878387451,
- 0.005644769407808781,
- 0.04896364361047745,
- -0.0858495905995369,
- -0.0689944475889206,
- 0.22331655025482178,
- -0.06195346638560295,
- -0.02210809662938118,
- -0.0020708278752863407,
- -0.03364646062254906,
- -0.01758471317589283,
- 0.030631592497229576,
- -0.015208370983600616,
- 0.03866828978061676,
- -0.024635333567857742,
- 0.019424885511398315,
- -0.02691732533276081,
- 0.016159679740667343,
- -0.07064203917980194,
- 0.007689568214118481,
- 0.08728054910898209,
- 0.03937014192342758,
- -0.08524150401353836,
- 0.06777064502239227,
- 0.026833446696400642,
- 0.03300505504012108,
- 0.02609921433031559,
- 0.12363314628601074,
- -0.11252984404563904,
- -0.0010342522291466594,
- -0.037660904228687286,
- -0.024682918563485146,
- -0.008701685816049576,
- -5.40173670070618e-33,
- 0.08763543516397476,
- 0.00020006918930448592,
- -0.046326860785484314,
- 0.0550975576043129,
- 0.05310281366109848,
- -0.03628216311335564,
- 0.04053051769733429,
- 0.0589887760579586,
- -0.06048978492617607,
- 0.019203009083867073,
- 0.02542838454246521,
- -0.032221511006355286,
- -0.01624455489218235,
- 0.04849123954772949,
- 0.0742628276348114,
- 0.019463028758764267,
- 0.029194869101047516,
- -0.006688214838504791,
- -0.07786153256893158,
- 0.00891039427369833,
- -0.07559226453304291,
- -0.05807991698384285,
- -0.03831647336483002,
- 0.07260207086801529,
- 0.007307006977498531,
- 0.05220417305827141,
- 0.0038112790789455175,
- -0.00353039288893342,
- 0.05824912711977959,
- 0.004890181124210358,
- -0.04487863928079605,
- 0.023649442940950394,
- -0.018396520987153053,
- 0.026177121326327324,
- 0.01564948819577694,
- -0.008365988731384277,
- 0.005068956408649683,
- -0.08105118572711945,
- 0.02326691523194313,
- 0.05435042083263397,
- -0.0826549306511879,
- 0.029517117887735367,
- 0.039231423288583755,
- -0.0179123692214489,
- 0.0485832542181015,
- -0.016686905175447464,
- 0.02390800043940544,
- -0.05272505804896355,
- 0.006090913433581591,
- 0.05728185176849365,
- -0.05721251666545868,
- 0.04928232729434967,
- 0.03241308033466339,
- 0.03862280026078224,
- 0.013625027611851692,
- -0.04093613103032112,
- -0.004524138290435076,
- -0.057848453521728516,
- -0.017534300684928894,
- 0.0758419781923294,
- 0.0067395600490272045,
- 0.13701599836349487,
- -0.07592283189296722,
- -0.006365875247865915,
- -0.06622572243213654,
- 0.0015321465907618403,
- 0.05710485205054283,
- 0.03494560346007347,
- 0.11319262534379959,
- -0.05049808695912361,
- -0.07202083617448807,
- 0.04242951422929764,
- 0.1367354542016983,
- -0.024173185229301453,
- -0.08202999830245972,
- -0.01613074354827404,
- -0.04108767583966255,
- 0.0025366460904479027,
- -0.01599353365600109,
- 0.0013770965160802007,
- -0.002348731504753232,
- 0.0326167494058609,
- -0.04074080288410187,
- -0.026237348094582558,
- 0.030140338465571404,
- 0.010658599436283112,
- -0.01793292723596096,
- 0.04348812252283096,
- -0.018701452761888504,
- 0.0873434916138649,
- -0.08108716458082199,
- 0.017194660380482674,
- 0.033901140093803406,
- 0.044985249638557434,
- -0.012652955017983913,
- 3.7556008604375424e-33,
- -0.0992375835776329,
- -0.046345584094524384,
- -0.0843518078327179,
- 0.04621409997344017,
- 0.030738767236471176,
- -0.022021375596523285,
- 0.003148825140669942,
- 0.01624482125043869,
- 0.0221676304936409,
- 0.025041989982128143,
- -0.008079319261014462,
- 0.00200389395467937,
- -0.02955731190741062,
- 0.044553108513355255,
- 0.02274136058986187,
- 0.0033467398025095463,
- -0.05375261977314949,
- -0.04278071969747543,
- -0.017743539065122604,
- -0.009004075080156326,
- -0.05599990487098694,
- 0.005555497948080301,
- -0.03044799715280533,
- -0.04804230481386185,
- 0.02783665806055069,
- 0.016435978934168816,
- 0.010193963535130024,
- 0.038998767733573914,
- -0.01740897260606289,
- 0.01735142059624195,
- 0.04923175275325775,
- -0.009413856081664562,
- -0.08747566491365433,
- -0.00985798705369234,
- 0.0004332555108703673,
- -0.005380548071116209,
- -0.0012121377512812614,
- -0.03528520464897156,
- 0.03258289769291878,
- -0.014255800284445286,
- 0.050567593425512314,
- -0.0017176851397380233,
- 0.04718814045190811,
- 0.007181006949394941,
- -0.0005455771461129189,
- 0.04069842770695686,
- 0.00977956410497427,
- -0.04880357161164284,
- 0.02746976912021637,
- -0.05439652130007744,
- 0.011582516133785248,
- 0.03310283645987511,
- 0.00793663039803505,
- -0.11577608436346054,
- -0.0004823745402973145,
- 0.029853448271751404,
- 0.05606105178594589,
- -0.05136754363775253,
- 0.007592903450131416,
- 0.005942789372056723,
- 0.004993609618395567,
- 0.010220890864729881,
- 0.085540771484375,
- 0.035419948399066925,
- -0.11032926291227341,
- 0.02693539671599865,
- -0.0025328800547868013,
- 0.06007241830229759,
- -0.03589263930916786,
- -0.03019222803413868,
- 0.024345675483345985,
- 0.015176505781710148,
- -0.0500011146068573,
- -0.019415825605392456,
- -0.11200243979692459,
- -0.07137726247310638,
- -0.073507159948349,
- -0.06228126212954521,
- -0.03439353406429291,
- -0.012136382982134819,
- -0.011999240145087242,
- -0.04262494668364525,
- 0.023871703073382378,
- 0.056917596608400345,
- -0.025481123477220535,
- 0.011332228779792786,
- 0.0017565443413332105,
- 0.02528972178697586,
- -0.0046274084597826,
- -0.09336201846599579,
- -0.018290111795067787,
- 0.09942781925201416,
- -0.05475315451622009,
- -0.0160133745521307,
- -0.012873168103396893,
- -1.160504758956904e-8,
- 0.009698831476271152,
- -0.007734870538115501,
- -0.03610419109463692,
- -0.06862234324216843,
- 0.04283199831843376,
- 0.05511759966611862,
- -0.01572839356958866,
- 0.03298664465546608,
- 0.007687987759709358,
- 0.07221851497888565,
- 0.018430912867188454,
- -0.054522134363651276,
- -0.017242031171917915,
- 0.08988244831562042,
- 0.1390060931444168,
- -0.01782887428998947,
- 0.0019591888412833214,
- 0.06111898273229599,
- -0.06548956036567688,
- -0.08171618729829788,
- 0.021678507328033447,
- 0.07594304531812668,
- 0.00951269082725048,
- 0.0016475006705150008,
- -0.04864334315061569,
- -0.05644088238477707,
- 0.049352001398801804,
- 0.05582228675484657,
- -0.04339529946446419,
- 0.0427553728222847,
- 0.007991760969161987,
- 0.13954097032546997,
- -0.01887173019349575,
- -0.020581940189003944,
- 0.06484973430633545,
- -0.05432571470737457,
- 0.08593117445707321,
- -0.02773337811231613,
- 0.00908280722796917,
- 0.11397439986467361,
- -0.07106375694274902,
- 0.034616418182849884,
- 0.0690583661198616,
- 0.019322190433740616,
- -0.009906190447509289,
- -0.024507807567715645,
- 0.024785105139017105,
- -0.10690313577651978,
- -0.0075126634910702705,
- -0.06317707896232605,
- 0.04998400807380676,
- 0.002457566326484084,
- 0.0472000390291214,
- 0.00701286643743515,
- 0.08479135483503342,
- 0.02550080604851246,
- -0.052116140723228455,
- -0.0691429153084755,
- -0.10011912137269974,
- 0.010095956735312939,
- 0.029720857739448547,
- 0.030323339626193047,
- 0.11131888628005981,
- 0.030503669753670692
- ]
- },
- {
- "keyword": "programmer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.03520597144961357,
- 0.04566367343068123,
- -0.03841688856482506,
- 0.006571079604327679,
- -0.06596074998378754,
- -0.06854963302612305,
- 0.12580935657024384,
- 0.0666971206665039,
- -0.08591686189174652,
- -0.005141954403370619,
- -0.037717122584581375,
- -0.003300061449408531,
- 0.04502827674150467,
- -0.04723413661122322,
- -0.02907349355518818,
- 0.049660228192806244,
- -0.10548044741153717,
- -0.048968397080898285,
- 0.027017861604690552,
- -0.15613381564617157,
- -0.09932859987020493,
- -0.04421084374189377,
- -0.04926089569926262,
- -0.048649877309799194,
- 0.07208821922540665,
- 0.053761620074510574,
- 0.02277417853474617,
- -0.03247487172484398,
- 0.008271362632513046,
- -0.05475780367851257,
- -0.056006498634815216,
- 0.028440533205866814,
- 0.1030082181096077,
- 0.05411873012781143,
- -0.023907611146569252,
- 0.07843846827745438,
- -0.031561557203531265,
- -0.02814057096838951,
- 0.008246083743870258,
- -0.006149848457425833,
- -0.09742500633001328,
- -0.009999728761613369,
- 0.0008311290293931961,
- -0.013624516315758228,
- -0.007464461959898472,
- -0.002769316080957651,
- 0.02612200751900673,
- -0.03044448420405388,
- 0.008697697892785072,
- -0.012163774110376835,
- -0.08903376013040543,
- -0.07887303084135056,
- -0.007048513740301132,
- -0.09209538251161575,
- -0.021244166418910027,
- -0.03458621725440025,
- 0.046231724321842194,
- 0.04478466510772705,
- -0.019108684733510017,
- -0.00931638851761818,
- -0.02037651278078556,
- 0.010725535452365875,
- -0.07524523884057999,
- 0.01714174635708332,
- 0.11356185376644135,
- -0.01736024022102356,
- -0.0002754108572844416,
- 0.04387366771697998,
- -0.024746617302298546,
- -0.061257462948560715,
- -0.06704574078321457,
- -0.016989849507808685,
- -0.026038875803351402,
- 0.06156165152788162,
- 0.09781564772129059,
- -0.10084705054759979,
- 0.05383450910449028,
- 0.039632413536310196,
- 0.07140794396400452,
- -0.020858487114310265,
- 0.04532443732023239,
- -0.02307109162211418,
- -0.1002284437417984,
- 0.0724460706114769,
- -0.008617770858108997,
- 0.0038979249075055122,
- 0.0368870347738266,
- 0.13281890749931335,
- 0.07483651489019394,
- 0.008154918439686298,
- 0.0036482156720012426,
- -0.039785273373126984,
- 0.08960169553756714,
- 0.043744347989559174,
- -0.002289299387484789,
- 0.019809020683169365,
- 0.04406265169382095,
- -0.07260419428348541,
- -0.043359726667404175,
- 0.22955918312072754,
- -0.014987093396484852,
- -0.007053561508655548,
- 0.05855490639805794,
- -0.007103535812348127,
- -0.03991370648145676,
- 0.036969903856515884,
- 0.05015374347567558,
- 0.06258579343557358,
- 0.016125639900565147,
- -0.04304219037294388,
- -0.04601005092263222,
- 0.06141701713204384,
- 0.0024673668667674065,
- -0.014613546431064606,
- 0.015743155032396317,
- 0.06212807446718216,
- -0.023023786023259163,
- 0.10795248299837112,
- 0.004841542802751064,
- 0.05393417179584503,
- 0.0030853210482746363,
- 0.10869548469781876,
- -0.06430570036172867,
- 0.027382809668779373,
- -0.04612072557210922,
- -0.017415456473827362,
- -0.04393402487039566,
- -5.842216107136385e-33,
- -0.013583529740571976,
- -0.010618693195283413,
- -0.036366213113069534,
- 0.051803555339574814,
- 0.0304254200309515,
- -0.035407111048698425,
- 0.051728278398513794,
- 0.06334715336561203,
- -0.04974835738539696,
- 0.02313365414738655,
- 0.03767229989171028,
- -0.02972722239792347,
- -0.014094800688326359,
- 0.11893143504858017,
- 0.09101592004299164,
- -0.01732644811272621,
- 0.003116612322628498,
- 0.006054251454770565,
- -0.04201919585466385,
- 0.009207051247358322,
- -0.035561516880989075,
- -0.039084840565919876,
- -0.0010244775330647826,
- 0.03442547097802162,
- 0.04467785358428955,
- 0.018949590623378754,
- 0.004614435136318207,
- -0.009763015434145927,
- 0.0937218964099884,
- -0.0033944244496524334,
- -0.020722270011901855,
- 0.04598276689648628,
- -0.0733700841665268,
- 0.0058306241407990456,
- 0.011512801982462406,
- -0.015088483691215515,
- -0.004304556641727686,
- -0.06827311962842941,
- 0.0655212476849556,
- 0.00940156914293766,
- -0.033042699098587036,
- 0.02560415305197239,
- 0.04713527485728264,
- -0.04217744246125221,
- 0.06173119321465492,
- 0.027335958555340767,
- 0.036888353526592255,
- 0.05273992195725441,
- -0.10205540806055069,
- 0.06996321678161621,
- -0.06146498769521713,
- 0.06923406571149826,
- 0.05626837909221649,
- 0.013372823596000671,
- 0.014465241692960262,
- -0.01880474202334881,
- 0.04589039832353592,
- -0.017692700028419495,
- 0.017152514308691025,
- 0.06689592450857162,
- 0.005790797993540764,
- 0.13501137495040894,
- 0.024723555892705917,
- -0.016196470707654953,
- -0.05305037647485733,
- 0.0177144818007946,
- 0.0012231143191456795,
- 0.0422508679330349,
- 0.13974931836128235,
- 0.07032367587089539,
- -0.07130282372236252,
- 0.020238814875483513,
- 0.055755384266376495,
- -0.02361442707479,
- -0.06882338970899582,
- 0.010907355695962906,
- -0.07574190199375153,
- -0.029726102948188782,
- -0.025059452280402184,
- 0.030680086463689804,
- 0.01329217478632927,
- 0.015737615525722504,
- 0.016042394563555717,
- -0.04784573242068291,
- 0.09870300441980362,
- 0.05164998024702072,
- 0.00341400015167892,
- -0.018779626116156578,
- 0.022863775491714478,
- 0.05141858011484146,
- -0.041854895651340485,
- -0.017562903463840485,
- 0.025168735533952713,
- 0.05356288701295853,
- 0.013099618256092072,
- 3.937767219984472e-33,
- -0.07927976548671722,
- 0.010091383010149002,
- -0.08212777227163315,
- 0.031755972653627396,
- -0.029085874557495117,
- -0.007864708080887794,
- 0.057071004062891006,
- -0.031048046424984932,
- -0.04395443946123123,
- 0.006622466258704662,
- -0.013800876215100288,
- -0.005656465422362089,
- 0.025698712095618248,
- 0.012288382276892662,
- 0.04401758313179016,
- 0.005460625514388084,
- -0.07786675542593002,
- 0.006079403217881918,
- -0.045444753021001816,
- -0.0016728242626413703,
- -0.029330268502235413,
- 0.03927135095000267,
- -0.10268796980381012,
- -0.004619532730430365,
- 0.05172407254576683,
- -0.011906109750270844,
- 0.010568404570221901,
- 0.03717247024178505,
- -0.038533564656972885,
- 0.02393239364027977,
- 0.01646515168249607,
- -0.014534463174641132,
- -0.056966669857501984,
- -0.012659825384616852,
- 0.02261064201593399,
- 0.03332741558551788,
- 0.021045222878456116,
- -0.0002241478068754077,
- -0.01781770959496498,
- 0.056196510791778564,
- 0.07290931791067123,
- -0.06994697451591492,
- 0.004407004453241825,
- 0.08070796728134155,
- -0.05971815437078476,
- -0.007179210428148508,
- -0.013057864271104336,
- -0.010724677704274654,
- 0.011290177702903748,
- -0.020637664943933487,
- -0.05414504557847977,
- -0.010897199623286724,
- 0.04714459180831909,
- -0.11324084550142288,
- -0.00021884521993342787,
- -0.020682288333773613,
- 0.04716222360730171,
- -0.029009580612182617,
- 0.045543912798166275,
- -0.03665566071867943,
- -0.03658619895577431,
- -0.04570387303829193,
- 0.07801279425621033,
- 0.03756526857614517,
- -0.09235458076000214,
- -0.015907932072877884,
- -0.013127745129168034,
- 0.0545293428003788,
- -0.019429421052336693,
- -0.05015023052692413,
- 0.0878070667386055,
- 0.033140819519758224,
- -0.03714156895875931,
- 0.0332278273999691,
- -0.08792942017316818,
- 0.006119995843619108,
- -0.06815087795257568,
- 0.04785734787583351,
- -0.05985109880566597,
- 0.016902700066566467,
- 0.005973583087325096,
- -0.0505962111055851,
- 0.026974836364388466,
- 0.0720595121383667,
- -0.09996593743562698,
- 0.005248667672276497,
- 0.04960068687796593,
- -0.01698661409318447,
- -0.021582400426268578,
- -0.11632569134235382,
- -0.04520918056368828,
- 0.040360283106565475,
- -0.013646293431520462,
- -0.020156322047114372,
- -0.018882162868976593,
- -1.147703709847292e-8,
- 0.023461217060685158,
- -0.0683509036898613,
- -0.03227817267179489,
- -0.06979206949472427,
- 0.04156254231929779,
- 0.060835789889097214,
- -0.07218395173549652,
- -0.023702329024672508,
- -0.04297551140189171,
- 0.05290437117218971,
- 0.03675391525030136,
- -0.024845626205205917,
- 0.008354263380169868,
- 0.04499262571334839,
- 0.1212100237607956,
- -0.0007880692137405276,
- 0.030490560457110405,
- 0.07894964516162872,
- -0.057218603789806366,
- -0.018484914675354958,
- 0.06083444133400917,
- 0.011019071564078331,
- -0.023416385054588318,
- 0.11699552834033966,
- -0.041324183344841,
- -0.062460772693157196,
- 0.0258164182305336,
- 0.061733607202768326,
- 0.006215542554855347,
- 0.015040252357721329,
- -0.02034863457083702,
- 0.041286651045084,
- -0.0019290988566353917,
- -0.08834575861692429,
- -0.0005103814764879644,
- -0.038771990686655045,
- 0.07282382249832153,
- -0.03200265392661095,
- 0.007015473674982786,
- 0.0026688622310757637,
- -0.04924730211496353,
- 0.0025605361443012953,
- 0.03754318505525589,
- -0.003315093694254756,
- -0.019402019679546356,
- -0.04183575510978699,
- 0.03431137651205063,
- -0.042503464967012405,
- 0.000027585108909988776,
- -0.02768610790371895,
- 0.009147427044808865,
- 0.030943134799599648,
- 0.022320471704006195,
- 0.027931885793805122,
- 0.07160640507936478,
- -0.017481563612818718,
- -0.06769945472478867,
- -0.04348998889327049,
- -0.09880151599645615,
- 0.053269319236278534,
- -0.0017749525140970945,
- 0.03957895562052727,
- 0.05819651111960411,
- -0.06215447187423706
- ]
- },
- {
- "keyword": "architect",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04129459336400032,
- 0.08646104484796524,
- -0.015216019935905933,
- 0.028807131573557854,
- -0.06337117403745651,
- -0.07100419700145721,
- 0.024746904149651527,
- -0.041550666093826294,
- -0.005574008449912071,
- -0.011826539412140846,
- -0.07089372724294662,
- -0.09322310239076614,
- 0.028539475053548813,
- 0.013504976406693459,
- -0.037890732288360596,
- 0.008650222793221474,
- 0.0037237692158669233,
- 0.0331343412399292,
- 0.01772572658956051,
- -0.031506188213825226,
- -0.04174310341477394,
- 0.02922416850924492,
- -0.037966735661029816,
- -0.0485965795814991,
- 0.05595410242676735,
- 0.06944460421800613,
- 0.02321591228246689,
- -0.02236471138894558,
- 0.03465449810028076,
- -0.08455456793308258,
- -0.0007860191981308162,
- -0.0074707334861159325,
- 0.029818717390298843,
- 0.039539266377687454,
- 0.039250534027814865,
- 0.05734853073954582,
- 0.014402047730982304,
- 0.013631348498165607,
- 0.024551523849368095,
- -0.03763962164521217,
- -0.12786339223384857,
- -0.0035892759915441275,
- 0.024470241740345955,
- -0.037272363901138306,
- -0.023854127153754234,
- 0.006198756862431765,
- -0.02105976827442646,
- -0.06882559508085251,
- 0.0013795135309919715,
- -0.004019861109554768,
- -0.08002764731645584,
- -0.044264134019613266,
- -0.06972363591194153,
- -0.06609033048152924,
- -0.002327976282685995,
- 0.09637501090765,
- 0.008017204701900482,
- -0.00633779913187027,
- -0.061620671302080154,
- -0.05103495344519615,
- 0.06379964202642441,
- 0.009974484331905842,
- -0.030076131224632263,
- 0.05373670160770416,
- 0.06424744427204132,
- 0.04348403960466385,
- -0.048853550106287,
- -0.018295893445611,
- -0.030463553965091705,
- -0.08198146522045135,
- 0.07784126698970795,
- -0.1026717871427536,
- 0.035354603081941605,
- -0.015744414180517197,
- 0.12272751331329346,
- -0.03596924617886543,
- 0.04157363623380661,
- 0.008676169440150261,
- 0.06056242436170578,
- -0.0662328228354454,
- 0.06279277056455612,
- -0.0036404698621481657,
- -0.11170092225074768,
- 0.05842497572302818,
- 0.0462692454457283,
- 0.04015699028968811,
- -0.01987263187766075,
- 0.06729259341955185,
- 0.0337776280939579,
- -0.014523952268064022,
- 0.11192036420106888,
- -0.04662873595952988,
- -0.001249005552381277,
- 0.053355421870946884,
- 0.05907555669546127,
- 0.02200024574995041,
- -0.037357136607170105,
- -0.06993705779314041,
- -0.09776195883750916,
- 0.1938193142414093,
- -0.07280935347080231,
- 0.00045394341577775776,
- 0.023435473442077637,
- 0.04249866306781769,
- -0.07517918199300766,
- -0.0021660637576133013,
- 0.020376984030008316,
- 0.017789846286177635,
- -0.07390071451663971,
- -0.02603480964899063,
- -0.016102541238069534,
- 0.011473370715975761,
- 0.022307131439447403,
- 0.04673308506608009,
- 0.008600925095379353,
- -0.012586231343448162,
- -0.012017566710710526,
- -0.025921953842043877,
- 0.06260352581739426,
- 0.04732516035437584,
- 0.017013560980558395,
- 0.035523422062397,
- -0.06037447974085808,
- 0.026717843487858772,
- -0.09219271689653397,
- -0.030346589162945747,
- -0.06259336322546005,
- -4.8622244666130906e-33,
- 0.003184914356097579,
- 0.04173349216580391,
- 0.057100534439086914,
- 0.07618697732686996,
- 0.04717126116156578,
- -0.06810979545116425,
- 0.034465741366147995,
- 0.06263523548841476,
- 0.024251025170087814,
- 0.017401419579982758,
- 0.07106463611125946,
- -0.036628272384405136,
- -0.05004514008760452,
- 0.10583431273698807,
- 0.06826303154230118,
- 0.013944627717137337,
- -0.009477267041802406,
- 0.08293040841817856,
- -0.07550942897796631,
- -0.0010683879954740405,
- -0.03415926918387413,
- 0.043873678892850876,
- -0.002241204958409071,
- -0.02750394679605961,
- 0.05574424937367439,
- 0.024447595700621605,
- 0.05106405168771744,
- -0.02127092517912388,
- -0.07778992503881454,
- 0.018961483612656593,
- -0.056414421647787094,
- 0.0337698794901371,
- -0.0396084226667881,
- -0.0009305032435804605,
- -0.04353194683790207,
- 0.04230686277151108,
- -0.051566410809755325,
- -0.0838366448879242,
- -0.02378450520336628,
- -0.04202545806765556,
- -0.042116329073905945,
- 0.04282243177294731,
- 0.0466226302087307,
- -0.00551234744489193,
- 0.04227021336555481,
- 0.028884097933769226,
- 0.05519557744264603,
- 0.04114463925361633,
- 0.06370984017848969,
- 0.020195098593831062,
- 0.007510607596486807,
- 0.05724634975194931,
- -0.03654712811112404,
- 0.06763861328363419,
- 0.07293273508548737,
- -0.06557450443506241,
- 0.011633713729679585,
- 0.05495510250329971,
- 0.03045247495174408,
- 0.027052566409111023,
- -0.028893794864416122,
- 0.1152883917093277,
- -0.05845830589532852,
- 0.11653544753789902,
- -0.006869275122880936,
- -0.014970339834690094,
- -0.014729646034538746,
- 0.03162607178092003,
- 0.08757392317056656,
- 0.024337325245141983,
- -0.06231480464339256,
- -0.015309714712202549,
- 0.0697459802031517,
- 0.02876363694667816,
- -0.08866694569587708,
- -0.007074891123920679,
- -0.07233252376317978,
- 0.004638228565454483,
- -0.05312022566795349,
- 0.05999032407999039,
- -0.024520648643374443,
- 0.11079450696706772,
- 0.036115117371082306,
- -0.012051348574459553,
- 0.049199510365724564,
- 0.042729489505290985,
- 0.047536805272102356,
- 0.0016525578685104847,
- 0.03510350361466408,
- 0.09876903146505356,
- -0.11150539666414261,
- -0.028485480695962906,
- 0.02536102384328842,
- 0.06081346794962883,
- -0.06810961663722992,
- 3.5643067872564774e-33,
- -0.07488025724887848,
- -0.06950848549604416,
- -0.03807413578033447,
- -0.03709452599287033,
- 0.02863394096493721,
- -0.04677392542362213,
- -0.051958635449409485,
- -0.07759989798069,
- 0.010436923243105412,
- -0.0034045949578285217,
- 0.035342466086149216,
- 0.05726591870188713,
- 0.09703193604946136,
- -0.006540391594171524,
- 0.046056538820266724,
- -0.023055536672472954,
- 0.033381137996912,
- -0.13048315048217773,
- -0.06581395864486694,
- 0.032705966383218765,
- 0.03219424560666084,
- 0.026253126561641693,
- -0.06805960088968277,
- -0.06327170133590698,
- -0.0229079220443964,
- 0.02307097241282463,
- -0.008354314602911472,
- 0.05788629129528999,
- 0.009697934612631798,
- -0.004045136272907257,
- -0.03266053646802902,
- -0.04137284308671951,
- -0.02852793224155903,
- 0.05553683266043663,
- -0.01815483719110489,
- 0.08233844488859177,
- 0.00007657702371943742,
- -0.005821911618113518,
- -0.018396733328700066,
- 0.03292402625083923,
- -0.004494065418839455,
- -0.010375356301665306,
- 0.04083981737494469,
- 0.08164028823375702,
- -0.0004209606850054115,
- -0.014463532716035843,
- -0.011559432372450829,
- -0.024973589926958084,
- -0.06109452620148659,
- -0.07755416631698608,
- -0.0066542127169668674,
- 0.06782249361276627,
- -0.0051184589974582195,
- -0.12025266885757446,
- 0.07093449681997299,
- -0.019675957038998604,
- 0.011687200516462326,
- -0.027181148529052734,
- 0.09044767916202545,
- 0.09495526552200317,
- 0.014310628175735474,
- 0.04984583705663681,
- -0.001083695562556386,
- 0.0661497637629509,
- -0.060327980667352676,
- 0.005561104044318199,
- -0.044023603200912476,
- -0.04664361849427223,
- -0.08722931146621704,
- 0.02385493740439415,
- 0.0715152844786644,
- 0.02658437006175518,
- -0.10354000329971313,
- 0.09715814143419266,
- -0.04928329214453697,
- -0.07834537327289581,
- 0.04483484476804733,
- 0.03339802846312523,
- -0.00455833226442337,
- -0.08445177227258682,
- -0.09766395390033722,
- -0.06064604967832565,
- -0.03556818142533302,
- 0.09879935532808304,
- 0.0332869328558445,
- -0.01842593587934971,
- 0.006774576846510172,
- -0.03701825812458992,
- 0.010457503609359264,
- -0.001293929642997682,
- 0.03448996692895889,
- 0.00619121128693223,
- 0.0018879465060308576,
- -0.06729703396558762,
- -0.02430965192615986,
- -1.097995117049777e-8,
- -0.040315330028533936,
- 0.008689665235579014,
- -0.022225271910429,
- -0.05038874223828316,
- 0.004408954177051783,
- -0.03904012218117714,
- 0.06520549207925797,
- 0.00286865490488708,
- -0.017345089465379715,
- -0.045579638332128525,
- 0.04981223866343498,
- -0.04131394624710083,
- 0.02934957854449749,
- 0.07022026181221008,
- 0.03735014423727989,
- -0.10385341197252274,
- -0.026851868256926537,
- 0.037441834807395935,
- -0.042845986783504486,
- -0.06132488697767258,
- 0.06836047768592834,
- 0.02879243902862072,
- -0.014219840057194233,
- -0.025103271007537842,
- -0.0016489076660946012,
- -0.00046601195936091244,
- -0.022867493331432343,
- -0.021085146814584732,
- 0.005555137991905212,
- 0.0793263390660286,
- -0.042077500373125076,
- 0.06827796995639801,
- 0.028888078406453133,
- -0.006290290039032698,
- 0.010814104229211807,
- 0.03314341977238655,
- 0.09167374670505524,
- -0.02641819603741169,
- -0.04455603286623955,
- -0.05319879949092865,
- -0.024765921756625175,
- 0.013698793016374111,
- 0.019713563844561577,
- -0.03394749388098717,
- 0.04097149521112442,
- 0.032079026103019714,
- 0.004435461480170488,
- 0.0035518421791493893,
- 0.04802744463086128,
- -0.014788943342864513,
- -0.016465341672301292,
- -0.016527947038412094,
- 0.016371730715036392,
- 0.014038639143109322,
- 0.03272616118192673,
- -0.049894534051418304,
- 0.053396906703710556,
- -0.061261147260665894,
- -0.05161183699965477,
- -0.021516723558306694,
- 0.1320955455303192,
- 0.03594103828072548,
- -0.01776227541267872,
- 0.03493424877524376
- ]
- },
- {
- "keyword": "designer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.08578571677207947,
- 0.1288871467113495,
- -0.009899943135678768,
- 0.05333399027585983,
- -0.04502122476696968,
- -0.0735999271273613,
- 0.12465178966522217,
- -0.025330111384391785,
- -0.018738701939582825,
- -0.006504301447421312,
- -0.08394352346658707,
- -0.034410253167152405,
- 0.02237161435186863,
- -0.058539602905511856,
- -0.03291323408484459,
- 0.00955711305141449,
- 0.012013490311801434,
- -0.015481832437217236,
- 0.0026177281979471445,
- -0.03952609375119209,
- -0.07136121392250061,
- -0.01480264775454998,
- -0.006612864322960377,
- 0.00549822673201561,
- -0.0060141244903206825,
- 0.04722277447581291,
- 0.02732071466743946,
- 0.03415875881910324,
- 0.05700405687093735,
- -0.13943082094192505,
- -0.02596765011548996,
- 0.04234026372432709,
- 0.0364249013364315,
- 0.01604779250919819,
- 0.004050936549901962,
- 0.022725652903318405,
- 0.022016093134880066,
- 0.042698729783296585,
- 0.03153545409440994,
- 0.028552191331982613,
- -0.10467765480279922,
- -0.0688355416059494,
- -0.06675088405609131,
- 0.015071763657033443,
- 0.021878857165575027,
- -0.00957232154905796,
- 0.01599501632153988,
- 0.0006845136522315443,
- -0.05882244184613228,
- 0.016073523089289665,
- -0.03352787345647812,
- -0.07182440906763077,
- -0.046967267990112305,
- -0.030129311606287956,
- 0.011759065091609955,
- 0.08120924234390259,
- -0.004287031013518572,
- 0.011683845892548561,
- 0.008477659896016121,
- -0.04356757923960686,
- 0.03215232491493225,
- -0.011114245280623436,
- -0.05183219909667969,
- 0.054772403091192245,
- 0.0307195782661438,
- 0.044255949556827545,
- -0.046391889452934265,
- 0.03285634517669678,
- -0.06371825188398361,
- -0.09032601863145828,
- 0.1051258072257042,
- -0.08732513338327408,
- 0.0054556941613554955,
- 0.018536385148763657,
- 0.13436488807201385,
- -0.0667526051402092,
- 0.10185806453227997,
- -0.06473149359226227,
- -0.006447178777307272,
- -0.000519152672495693,
- 0.021355515345931053,
- 0.01760457642376423,
- -0.08784865587949753,
- 0.07274071127176285,
- 0.05788106098771095,
- 0.03280539810657501,
- 0.013276061974465847,
- 0.06099527329206467,
- 0.04151448979973793,
- -0.004314301535487175,
- 0.009997203014791012,
- 0.00717998156324029,
- 0.02819354087114334,
- 0.0024514347314834595,
- -0.0356786884367466,
- 0.03985638543963432,
- 0.0159879419952631,
- -0.03386916220188141,
- 0.013925344683229923,
- 0.2120678722858429,
- -0.057009730488061905,
- 0.012208339758217335,
- 0.024164848029613495,
- 0.05808935686945915,
- -0.03725697845220566,
- -0.0024901642464101315,
- -0.008495130576193333,
- 0.07844068109989166,
- -0.03999064117670059,
- 0.014936063438653946,
- -0.05204584449529648,
- -0.03370621055364609,
- -0.060152869671583176,
- 0.05653247609734535,
- 0.059495050460100174,
- -0.002266791183501482,
- -0.05191108211874962,
- 0.045470673590898514,
- 0.08414765447378159,
- 0.014892661944031715,
- 0.028557587414979935,
- 0.05135008320212364,
- -0.08569616079330444,
- -0.027456993237137794,
- -0.14361487329006195,
- -0.04087238386273384,
- -0.009719889611005783,
- -5.2168262965340496e-33,
- 0.0014806303661316633,
- 0.029436450451612473,
- 0.06837885826826096,
- 0.04348194599151611,
- 0.06300389766693115,
- -0.013021925464272499,
- 0.046728070825338364,
- 0.041545212268829346,
- -0.013737772591412067,
- 0.07514917850494385,
- 0.016538377851247787,
- -0.0463624969124794,
- -0.05936438590288162,
- 0.10942867398262024,
- 0.03309852257370949,
- 0.028215572237968445,
- 0.0002025471767410636,
- 0.003901395248249173,
- -0.09281700104475021,
- -0.023846080526709557,
- -0.02367601916193962,
- 0.02824433147907257,
- 0.00035218853736296296,
- 0.03590654581785202,
- 0.01998811960220337,
- 0.03165625408291817,
- 0.03484818711876869,
- 0.03416559845209122,
- -0.004130206070840359,
- 0.014828398823738098,
- -0.05405193939805031,
- 0.06192460656166077,
- 0.05972081795334816,
- -0.016464704647660255,
- -0.12026491016149521,
- -0.00487904530018568,
- -0.0026240346487611532,
- -0.09083828330039978,
- 0.07166225463151932,
- -0.034991052001714706,
- -0.01855812966823578,
- 0.03378164395689964,
- 0.03402727469801903,
- 0.0520474947988987,
- -0.03626127168536186,
- 0.08352431654930115,
- 0.13090653717517853,
- 0.027383577078580856,
- -0.004976876080036163,
- 0.03127054125070572,
- -0.0483768992125988,
- 0.05095532536506653,
- 0.022107182070612907,
- 0.045437268912792206,
- 0.07126153260469437,
- -0.11763385683298111,
- 0.0049723368138074875,
- -0.03062393330037594,
- -0.0005457214429043233,
- 0.02382543496787548,
- 0.0009784841677173972,
- 0.15830112993717194,
- -0.027745366096496582,
- 0.06019334867596626,
- 0.012130890041589737,
- -0.006474463734775782,
- 0.06430228799581528,
- -0.0023442301899194717,
- 0.053967297077178955,
- -0.06559618562459946,
- -0.10133946686983109,
- 0.025931593030691147,
- 0.061056822538375854,
- -0.017687136307358742,
- -0.0700857862830162,
- 0.029051639139652252,
- -0.03291229158639908,
- 0.04557177796959877,
- -0.011557351797819138,
- 0.0541703887283802,
- -0.020533697679638863,
- 0.09188096970319748,
- 0.027468418702483177,
- 0.006790383718907833,
- 0.04053410142660141,
- 0.01711527444422245,
- 0.009075881913304329,
- 0.026224356144666672,
- 0.011170465499162674,
- 0.04339912533760071,
- -0.09863827377557755,
- -0.027706043794751167,
- 0.05021141469478607,
- 0.023611102253198624,
- -0.045882150530815125,
- 3.534628126292107e-33,
- -0.1045536994934082,
- -0.04563679173588753,
- 0.012368421070277691,
- -0.0026828928384929895,
- 0.06277327239513397,
- -0.0170905739068985,
- -0.05388855189085007,
- -0.01870231330394745,
- 0.01389344036579132,
- 0.06435417383909225,
- 0.09206189215183258,
- -0.0024151199031621218,
- 0.049120139330625534,
- -0.0021450005006045103,
- 0.005101838149130344,
- 0.009133739396929741,
- 0.009244419634342194,
- -0.06994736939668655,
- -0.07723382860422134,
- -0.022003794088959694,
- 0.0389668345451355,
- 0.04410991072654724,
- -0.10165413469076157,
- -0.03683759644627571,
- -0.0874844565987587,
- 0.009750996716320515,
- 0.008244766853749752,
- 0.04042920842766762,
- -0.03327758610248566,
- 0.04704158380627632,
- -0.01630322076380253,
- -0.10266974568367004,
- -0.06361967325210571,
- 0.03154068440198898,
- 0.03619370609521866,
- 0.014032627455890179,
- -0.09761572629213333,
- 0.017093367874622345,
- 0.01675884611904621,
- 0.007033367175608873,
- 0.011214540340006351,
- -0.02753705158829689,
- 0.07250586152076721,
- 0.10882513225078583,
- -0.018805891275405884,
- -0.07490146905183792,
- -0.030666464939713478,
- -0.0757981613278389,
- 0.07208075374364853,
- -0.050326600670814514,
- -0.011292854323983192,
- 0.057128675282001495,
- 0.04120645299553871,
- -0.09370889514684677,
- 0.008955365046858788,
- -0.04486220329999924,
- -0.02860533632338047,
- -0.04135376214981079,
- 0.10124444961547852,
- 0.022650260478258133,
- 0.016757506877183914,
- 0.04788530617952347,
- 0.030342893674969673,
- 0.02651621587574482,
- -0.028040189296007156,
- 0.024784903973340988,
- -0.0016385610215365887,
- -0.03305725008249283,
- -0.009592646732926369,
- -0.022983772680163383,
- 0.11642549186944962,
- 0.021703368052840233,
- -0.08293990045785904,
- 0.04238998144865036,
- -0.09585912525653839,
- -0.09010317176580429,
- -0.003062222618609667,
- 0.04593320190906525,
- -0.006881164386868477,
- 0.0240715891122818,
- -0.009679402224719524,
- -0.019788671284914017,
- 0.005735303740948439,
- 0.05486955866217613,
- -0.015486162155866623,
- 0.0008162123849615455,
- -0.03633240982890129,
- 0.05237727239727974,
- 0.026018140837550163,
- -0.07711024582386017,
- -0.0016751076327636838,
- 0.0379766970872879,
- -0.02140938490629196,
- 0.011873572133481503,
- -0.04449351131916046,
- -1.1736058347366907e-8,
- 0.006491220556199551,
- -0.028876041993498802,
- 0.01823408529162407,
- -0.062318310141563416,
- -0.002522231312468648,
- 0.006790274754166603,
- -0.025394054129719734,
- -0.06571538001298904,
- -0.040861573070287704,
- 0.004662817809730768,
- 0.04317265376448631,
- 0.019567083567380905,
- 0.0424894280731678,
- 0.059775274246931076,
- 0.052402518689632416,
- -0.13190127909183502,
- 0.0010688253678381443,
- 0.08713781088590622,
- -0.016114693135023117,
- -0.11067209392786026,
- 0.034605540335178375,
- 0.042565714567899704,
- 0.031787145882844925,
- -0.011197607032954693,
- -0.020506180822849274,
- 0.014301269315183163,
- -0.005252615548670292,
- -0.03487749397754669,
- -0.0437171496450901,
- 0.0682271271944046,
- -0.028359560295939445,
- 0.0612347386777401,
- -0.012160185724496841,
- -0.020841363817453384,
- -0.009246897883713245,
- -0.06739634275436401,
- -0.009362560696899891,
- -0.0510251484811306,
- -0.030449599027633667,
- -0.0003493617696221918,
- -0.015955457463860512,
- 0.020786460489034653,
- 0.03061681054532528,
- 0.035927511751651764,
- -0.05195567011833191,
- -0.0619194395840168,
- 0.07537376135587692,
- -0.06448416411876678,
- -0.023452691733837128,
- 0.026379741728305817,
- -0.041001807898283005,
- -0.02536233514547348,
- 0.034625083208084106,
- -0.04042370989918709,
- -0.020101290196180344,
- -0.04285868629813194,
- -0.017307821661233902,
- 0.0033180564641952515,
- -0.06975013762712479,
- -0.01410400215536356,
- 0.0414905771613121,
- -0.02308041974902153,
- 0.022788703441619873,
- 0.03340018913149834
- ]
- },
- {
- "keyword": "technician",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07571934163570404,
- 0.044931989163160324,
- 0.03451550379395485,
- 0.01003252062946558,
- -0.060691941529512405,
- -0.10527060925960541,
- 0.19559700787067413,
- 0.043589282780885696,
- -0.026635732501745224,
- -0.021536508575081825,
- 0.008305398747324944,
- -0.033630602061748505,
- 0.10032185912132263,
- 0.03361445292830467,
- -0.1504940539598465,
- -0.031931012868881226,
- 0.027258919551968575,
- -0.06408922374248505,
- 0.0343460850417614,
- -0.10208579152822495,
- -0.07810793817043304,
- 0.03301434963941574,
- -0.016655806452035904,
- -0.002220180118456483,
- 0.011567906476557255,
- -0.032368436455726624,
- -0.004604435060173273,
- 0.016204088926315308,
- -0.04950264096260071,
- -0.060706015676259995,
- -0.10721221566200256,
- 0.021616268903017044,
- -0.04568900167942047,
- 0.07267753779888153,
- -0.046702735126018524,
- 0.010729053057730198,
- 0.03405212238430977,
- 0.04831678047776222,
- 0.05604679137468338,
- -0.021175619214773178,
- -0.018343931064009666,
- -0.11558341979980469,
- 0.005349666345864534,
- 0.0293267872184515,
- 0.05181758850812912,
- 0.008939935825765133,
- 0.07573217153549194,
- -0.10088792443275452,
- 0.030231354758143425,
- 0.014779129065573215,
- 0.009254681877791882,
- 0.0012055145343765616,
- 0.013935863971710205,
- 0.033868689090013504,
- 0.04040439799427986,
- -0.022166185081005096,
- 0.03760938718914986,
- 0.021772228181362152,
- 0.027747100219130516,
- 0.02056996151804924,
- 0.045054059475660324,
- -0.012010875158011913,
- -0.06740835309028625,
- -0.01801569014787674,
- 0.12851649522781372,
- -0.01697203889489174,
- -0.05491505190730095,
- 0.01444654818624258,
- 0.05817645415663719,
- -0.07323815673589706,
- -0.012611367739737034,
- 0.0302258413285017,
- 0.0058211772702634335,
- 0.08788256347179413,
- 0.07995373010635376,
- -0.03543694317340851,
- 0.07053613662719727,
- -0.005488301627337933,
- 0.049498897045850754,
- -0.00039420981192961335,
- 0.027104569599032402,
- -0.038189392536878586,
- -0.05885741114616394,
- 0.03830675780773163,
- 0.005506768822669983,
- -0.00006734904309269041,
- -0.02593381702899933,
- 0.08179573714733124,
- -0.05664871633052826,
- -0.025485340505838394,
- 0.011937359347939491,
- -0.003896873677149415,
- 0.021118398755788803,
- -0.01367080956697464,
- -0.07243736833333969,
- -0.04720928892493248,
- 0.015003765933215618,
- -0.05424774810671806,
- -0.058127790689468384,
- 0.2112703174352646,
- 0.049933042377233505,
- 0.003714305581524968,
- 0.011645824648439884,
- 0.03270445764064789,
- -0.04812733829021454,
- -0.015178211964666843,
- -0.04979642108082771,
- 0.023664934560656548,
- 0.005881255026906729,
- -0.02866348996758461,
- -0.01405901275575161,
- 0.0107860853895545,
- -0.10044658929109573,
- 0.015725115314126015,
- -0.027116263285279274,
- 0.11664918810129166,
- -0.0562116764485836,
- 0.09170820564031601,
- 0.01782301254570484,
- 0.036555081605911255,
- -0.0015725403791293502,
- 0.06307953596115112,
- -0.09604436904191971,
- 0.014133418910205364,
- 0.02670828066766262,
- -0.019805103540420532,
- 0.05244094133377075,
- -4.635125570189948e-33,
- 0.0016019968315958977,
- 0.09274482727050781,
- 0.005339637398719788,
- 0.09591703861951828,
- 0.02969461679458618,
- 0.026440231129527092,
- 0.006520833354443312,
- 0.03472835570573807,
- -0.0007036146707832813,
- 0.03537779673933983,
- -0.016930552199482918,
- 0.08967407792806625,
- -0.06465236842632294,
- -0.023281719535589218,
- 0.06960663944482803,
- -0.011063764803111553,
- -0.055190764367580414,
- -0.016720447689294815,
- -0.05555833876132965,
- 0.004393790382891893,
- -0.01586737297475338,
- -0.0325256772339344,
- -0.049000270664691925,
- 0.06810446828603745,
- 0.02477818727493286,
- -0.03540607914328575,
- -0.06977364420890808,
- -0.0028927272651344538,
- 0.05225781351327896,
- 0.00032248138450086117,
- -0.037665192037820816,
- 0.10546635091304779,
- 0.012435926124453545,
- -0.006670553237199783,
- 0.028125187382102013,
- -0.057247985154390335,
- -0.019645536318421364,
- -0.0917571559548378,
- 0.05538181588053703,
- -0.04152892902493477,
- -0.016710689291357994,
- 0.02642713114619255,
- 0.05472167581319809,
- 0.02372097596526146,
- 0.02317085862159729,
- -0.04277599975466728,
- 0.06354068219661713,
- 0.03218156471848488,
- 0.047666437923908234,
- 0.05809326469898224,
- -0.056303489953279495,
- -0.021136388182640076,
- 0.026043569669127464,
- -0.07223672419786453,
- 0.0510433167219162,
- 0.0239818524569273,
- 0.08706323802471161,
- 0.01274705771356821,
- 0.0032467907294631004,
- 0.0429733470082283,
- 0.010042824782431126,
- 0.08472655713558197,
- -0.013628601096570492,
- 0.04054191708564758,
- 0.011503386311233044,
- -0.020021142438054085,
- 0.025105440989136696,
- 0.03894415125250816,
- 0.12084580957889557,
- 0.017380623146891594,
- -0.08844081312417984,
- 0.015337335877120495,
- 0.0652192011475563,
- -0.038807209581136703,
- -0.03442120552062988,
- 0.044149238616228104,
- -0.05721646547317505,
- 0.02237655408680439,
- -0.03959057852625847,
- -0.03307776525616646,
- 0.027321266010403633,
- -0.05461029335856438,
- 0.01828748732805252,
- 0.0026020603254437447,
- 0.08998630195856094,
- 0.04085904732346535,
- -0.036970652639865875,
- -0.03829227015376091,
- 0.07174164056777954,
- 0.0652952492237091,
- -0.058709800243377686,
- -0.010752164758741856,
- 0.01309577189385891,
- 0.07064248621463776,
- -0.045928701758384705,
- 3.783266854668114e-33,
- -0.04822864755988121,
- -0.031001850962638855,
- -0.03173551335930824,
- 0.06903911381959915,
- 0.07292007654905319,
- -0.0643707811832428,
- 0.035471606999635696,
- -0.01446861494332552,
- -0.05252235010266304,
- 0.0821090042591095,
- 0.06576815247535706,
- 0.009343285113573074,
- -0.03894994035363197,
- -0.0412411168217659,
- 0.048300132155418396,
- -0.008465430699288845,
- -0.05119295418262482,
- -0.03114253282546997,
- -0.014054211787879467,
- 0.03788462653756142,
- -0.019538776949048042,
- -0.05290719121694565,
- -0.0799022987484932,
- -0.00444511603564024,
- 0.02090570703148842,
- 0.031620368361473083,
- -0.016295017674565315,
- 0.04621410742402077,
- -0.020007578656077385,
- 0.0028366874903440475,
- -0.03227267041802406,
- -0.012604485265910625,
- 0.04715421795845032,
- 0.07940615713596344,
- -0.010216645896434784,
- 0.04472837224602699,
- 0.06993506103754044,
- 0.059186533093452454,
- 0.008531850762665272,
- 0.02068476751446724,
- 0.03067496418952942,
- 0.006608308758586645,
- -0.01010831817984581,
- 0.07563044875860214,
- -0.0637139230966568,
- -0.03862067684531212,
- 0.028943046927452087,
- -0.03172827139496803,
- -0.008594464510679245,
- -0.010460915975272655,
- 0.0307066198438406,
- -0.026429273188114166,
- 0.03933403640985489,
- -0.0008277952438220382,
- 0.002908410970121622,
- 0.03941952437162399,
- 0.028612837195396423,
- 0.0029533342458307743,
- -0.014561226591467857,
- -0.023802580311894417,
- 0.0776374414563179,
- -0.052807390689849854,
- 0.032229773700237274,
- 0.0493539422750473,
- -0.05408906564116478,
- -0.04601864144206047,
- 0.016614601016044617,
- 0.09695350378751755,
- -0.03402162343263626,
- 0.01918783038854599,
- 0.08989541977643967,
- 0.011031040921807289,
- 0.020078206434845924,
- -0.11126863211393356,
- -0.04609730467200279,
- -0.08288724720478058,
- -0.07968571782112122,
- -0.05000202730298042,
- -0.05527348443865776,
- -0.041297923773527145,
- -0.05239306017756462,
- -0.03841608762741089,
- -0.0011068192543461919,
- 0.0783197432756424,
- -0.026348985731601715,
- 0.05504476651549339,
- 0.034763235598802567,
- 0.04115859419107437,
- 0.009484684094786644,
- -0.1043187826871872,
- -0.005434532184153795,
- 0.011323519982397556,
- -0.06560888886451721,
- -0.09088865667581558,
- -0.06197184696793556,
- -1.0714322762339634e-8,
- -0.031004544347524643,
- 0.0037733062636107206,
- -0.10009685903787613,
- -0.07910337299108505,
- 0.03931393101811409,
- -0.0196438729763031,
- -0.021133938804268837,
- -0.010111190378665924,
- -0.029848067089915276,
- 0.0009562052437104285,
- -0.039416685700416565,
- -0.05536317452788353,
- 0.05397973209619522,
- -0.0050016604363918304,
- 0.13544374704360962,
- -0.02348180301487446,
- 0.0009252188028767705,
- 0.0661119818687439,
- -0.05071553960442543,
- 0.02263469435274601,
- 0.0316731333732605,
- 0.0019576146733015776,
- 0.03013511933386326,
- 0.08328594267368317,
- -0.01516725867986679,
- 0.0162077397108078,
- -0.012705881148576736,
- 0.09379086643457413,
- 0.05120794102549553,
- 0.09846261888742447,
- -0.07029145956039429,
- -0.02823285013437271,
- -0.06807891279459,
- -0.07609148323535919,
- 0.015343553386628628,
- -0.01507700327783823,
- 0.043905582278966904,
- -0.07713216543197632,
- 0.02243145927786827,
- -0.03406326472759247,
- -0.019461821764707565,
- -0.040984999388456345,
- -0.08881855010986328,
- 0.06538306921720505,
- 0.011759292334318161,
- -0.05317151919007301,
- -0.004003612324595451,
- -0.03953412547707558,
- 0.021826855838298798,
- -0.022987982258200645,
- 0.05782005935907364,
- -0.027398720383644104,
- 0.04657119885087013,
- -0.010529930703341961,
- -0.009944234974682331,
- -0.010137800127267838,
- 0.01660916395485401,
- -0.02393098548054695,
- -0.07272028177976608,
- 0.03673674538731575,
- 0.01484461035579443,
- 0.01260242611169815,
- 0.07096908986568451,
- -0.07446668297052383
- ]
- },
- {
- "keyword": "coder",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.12544797360897064,
- -0.06325936317443848,
- -0.050697211176157,
- -0.03830938786268234,
- -0.04656767472624779,
- -0.04025818035006523,
- 0.03445000573992729,
- -0.008257055655121803,
- -0.027840280905365944,
- -0.055253006517887115,
- 0.055575184524059296,
- -0.03215658292174339,
- -0.007621686905622482,
- -0.030152078717947006,
- -0.014769075438380241,
- 0.031048942357301712,
- -0.07387343794107437,
- -0.025185689330101013,
- -0.00844777375459671,
- -0.08188211917877197,
- -0.10888738185167313,
- -0.014242453500628471,
- -0.0728757455945015,
- 0.02851615473628044,
- 0.027994798496365547,
- 0.03600621595978737,
- -0.017772415652871132,
- 0.06357525289058685,
- 0.07159513235092163,
- -0.06453652679920197,
- 0.08210813254117966,
- 0.0499105304479599,
- 0.08337567746639252,
- 0.04112483933568001,
- -0.013514009304344654,
- 0.00781688280403614,
- -0.03764670342206955,
- -0.02473738230764866,
- -0.02339283376932144,
- 0.02806437388062477,
- -0.07684055715799332,
- -0.011205644346773624,
- -0.015047105960547924,
- -0.03897380083799362,
- -0.043723877519369125,
- -0.05011671781539917,
- 0.0009023720631375909,
- -0.023411480709910393,
- -0.002379724057391286,
- -0.024212127551436424,
- -0.020845497027039528,
- 0.024351749569177628,
- 0.01271833572536707,
- -0.07297039031982422,
- 0.02625669725239277,
- -0.0749676376581192,
- 0.07706771045923233,
- -0.04707127809524536,
- 0.00602903263643384,
- 0.022356852889060974,
- 0.0023096916265785694,
- 0.0637974962592125,
- 0.018764294683933258,
- 0.047384683042764664,
- -0.04910491406917572,
- -0.006158832460641861,
- -0.0035844913218170404,
- 0.09394314140081406,
- -0.01887294091284275,
- -0.08501961827278137,
- -0.07410971820354462,
- -0.03960872069001198,
- -0.047734420746564865,
- 0.083372563123703,
- 0.010070680640637875,
- -0.039973367005586624,
- 0.009975004941225052,
- -0.00549184437841177,
- 0.10208429396152496,
- -0.013096082955598831,
- -0.024159317836165428,
- -0.06177138164639473,
- -0.036639075726270676,
- 0.09030675888061523,
- 0.028189677745103836,
- 0.03598625212907791,
- 0.06864084303379059,
- 0.06454325467348099,
- 0.046864598989486694,
- 0.049679946154356,
- -0.022254792973399162,
- -0.025327568873763084,
- 0.06873340904712677,
- 0.03169109299778938,
- -0.10821273177862167,
- -0.04291699081659317,
- 0.03237007558345795,
- -0.04844905063509941,
- -0.019121214747428894,
- 0.1684284806251526,
- -0.018586259335279465,
- -0.08180615305900574,
- 0.028913581743836403,
- -0.0673811286687851,
- -0.04287536069750786,
- -0.03237463906407356,
- 0.09269114583730698,
- 0.09275684505701065,
- 0.0992865115404129,
- 0.021444018930196762,
- -0.011008081026375294,
- 0.042234934866428375,
- -0.02852145954966545,
- -0.06654941290616989,
- 0.06268113851547241,
- 0.01853422448039055,
- -0.062301915138959885,
- 0.055263493210077286,
- 0.11844268441200256,
- 0.013750827871263027,
- 0.028906267136335373,
- -0.026430759578943253,
- -0.11446167528629303,
- -0.026802806183695793,
- 0.05640135332942009,
- -0.07497874647378922,
- -0.004562660586088896,
- -3.0021040224436635e-33,
- -0.0041625648736953735,
- -0.0320919044315815,
- -0.007050754502415657,
- 0.008888613432645798,
- 0.030808376148343086,
- -0.009814180433750153,
- 0.007802508305758238,
- 0.020572535693645477,
- -0.06212916597723961,
- 0.005135398358106613,
- 0.039338380098342896,
- -0.10143714398145676,
- -0.06452213227748871,
- 0.10365860909223557,
- 0.030192481353878975,
- -0.016908546909689903,
- -0.04303636774420738,
- -0.04186921566724777,
- -0.0827697142958641,
- -0.014931284822523594,
- -0.03181038796901703,
- -0.03673700615763664,
- -0.0007826441433280706,
- 0.07423808425664902,
- -0.01182605605572462,
- 0.05928194150328636,
- -0.021929806098341942,
- -0.05673247575759888,
- 0.06590144336223602,
- 0.0012040846049785614,
- 0.020489506423473358,
- -0.05469248443841934,
- 0.005114277824759483,
- -0.008450851775705814,
- 0.04894626885652542,
- 0.0123449033126235,
- -0.019328856840729713,
- -0.02024182863533497,
- -0.07024232298135757,
- 0.018285013735294342,
- 0.002790802624076605,
- 0.011766890995204449,
- -0.03948812931776047,
- -0.03597503527998924,
- 0.10432706028223038,
- -0.04668230563402176,
- 0.016472799703478813,
- 0.025260064750909805,
- -0.058830853551626205,
- 0.06024183705449104,
- 0.023732313886284828,
- 0.03059214912354946,
- -0.030430980026721954,
- 0.03923188894987106,
- 0.01178695261478424,
- -0.007000548765063286,
- -0.022201882675290108,
- -0.07287342101335526,
- 0.06966530531644821,
- 0.07481031119823456,
- -0.030235372483730316,
- 0.03073413111269474,
- -0.003470571944490075,
- -0.024792734533548355,
- 0.054214805364608765,
- -0.046194687485694885,
- 0.0845244750380516,
- -0.10470613092184067,
- 0.012412144802510738,
- 0.02224227413535118,
- -0.02756713144481182,
- 0.02035488747060299,
- 0.10748276114463806,
- 0.05134085565805435,
- 0.0068116458132863045,
- 0.04480439051985741,
- -0.06370840966701508,
- -0.008407296612858772,
- -0.06850358843803406,
- -0.07935977727174759,
- -0.08739332854747772,
- 0.027999864891171455,
- 0.010178257711231709,
- 0.04069017618894577,
- -0.06800304353237152,
- 0.04071061685681343,
- 0.01706553064286709,
- -0.09859444946050644,
- -0.001815195195376873,
- 0.12337756156921387,
- -0.029309643432497978,
- -0.07620158046483994,
- 0.025354791432619095,
- -0.024387463927268982,
- -0.020897259935736656,
- 2.0400370177314785e-33,
- -0.0035328639205545187,
- -0.013610626570880413,
- 0.03788171336054802,
- 0.05392302945256233,
- 0.007057065609842539,
- -0.05555981770157814,
- 0.06785868853330612,
- 0.05719219520688057,
- 0.06400850415229797,
- 0.009245993569493294,
- 0.02196926809847355,
- -0.0062384577468037605,
- 0.04876207560300827,
- 0.012609579600393772,
- 0.14278972148895264,
- 0.08304498344659805,
- -0.0019261272391304374,
- 0.03865374997258186,
- -0.019254477694630623,
- 0.05470624193549156,
- 0.05896243453025818,
- 0.02211395837366581,
- 0.0022875431459397078,
- -0.009509876370429993,
- -0.0645185336470604,
- 0.03841470554471016,
- -0.03089030086994171,
- 0.10265003889799118,
- 0.06263231486082077,
- -0.06532573699951172,
- 0.05368459224700928,
- -0.025519780814647675,
- 0.013857178390026093,
- -0.07099481672048569,
- -0.0024651060812175274,
- 0.016658861190080643,
- 0.09751192480325699,
- 0.02583806961774826,
- -0.01691512018442154,
- 0.014277427457273006,
- 0.04641520977020264,
- 0.02196515165269375,
- -0.03642577677965164,
- 0.1220906674861908,
- 0.00383845460601151,
- -0.011630346067249775,
- -0.03992052376270294,
- -0.022630786523222923,
- 0.04008687287569046,
- 0.01594478450715542,
- -0.05538295954465866,
- 0.007505796384066343,
- -0.006521511357277632,
- -0.04074057191610336,
- 0.024432558566331863,
- 0.023342963308095932,
- -0.029245922341942787,
- -0.06324360519647598,
- -0.023167526349425316,
- 0.06827498227357864,
- 0.0154865188524127,
- -0.05620228499174118,
- 0.04457181319594383,
- 0.007775064092129469,
- -0.023888852447271347,
- -0.042665474116802216,
- 0.011350170709192753,
- 0.014600342139601707,
- -0.05893430486321449,
- -0.028436094522476196,
- 0.06678836047649384,
- 0.006229671183973551,
- -0.023320559412240982,
- 0.01831340417265892,
- -0.023367231711745262,
- -0.041562050580978394,
- -0.11713311821222305,
- -0.03515187278389931,
- -0.05663396045565605,
- -0.010370590724050999,
- -0.026159143075346947,
- -0.06372597068548203,
- 0.020823314785957336,
- 0.014530576765537262,
- 0.004114876501262188,
- 0.030154448002576828,
- 0.04352704435586929,
- -0.015148499980568886,
- -0.00004560577144729905,
- -0.07963026314973831,
- 0.0022425276692956686,
- 0.04519357532262802,
- 0.10038184374570847,
- -0.019809193909168243,
- -0.0428188256919384,
- -1.2808629712424136e-8,
- -0.030286381021142006,
- -0.013812577351927757,
- -0.05351004749536514,
- -0.055908672511577606,
- -0.023426011204719543,
- 0.012994684278964996,
- -0.014767863787710667,
- 0.018140481784939766,
- -0.03045612946152687,
- 0.043949685990810394,
- 0.13711445033550262,
- -0.030890898779034615,
- -0.05594652146100998,
- 0.02828904055058956,
- 0.10715486854314804,
- -0.0016678451793268323,
- -0.023193348199129105,
- 0.03067132458090782,
- -0.017748024314641953,
- 0.004075126722455025,
- 0.02430717647075653,
- 0.048850368708372116,
- -0.011216901242733002,
- -0.03960442170500755,
- -0.04050338268280029,
- -0.02190185897052288,
- 0.03028583712875843,
- 0.13708044588565826,
- 0.03485172986984253,
- 0.008590204641222954,
- 0.05589652061462402,
- 0.13674308359622955,
- 0.05705576390028,
- -0.04091726616024971,
- 0.04877447336912155,
- -0.045351289212703705,
- -0.051571525633335114,
- -0.0219488013535738,
- 0.04416055232286453,
- 0.05873497202992439,
- 0.03665486350655556,
- -0.010408041998744011,
- -0.07226436585187912,
- -0.04170691967010498,
- 0.013048391789197922,
- -0.01630772091448307,
- 0.03087598644196987,
- -0.13836917281150818,
- -0.015628932043910027,
- -0.03282846137881279,
- 0.019138729199767113,
- 0.04463837668299675,
- -0.017499277368187904,
- 0.05385250225663185,
- 0.13335251808166504,
- -0.007326273713260889,
- -0.03958423435688019,
- 0.026261812075972557,
- -0.06102307513356209,
- 0.06598545610904694,
- -0.033260565251111984,
- 0.017240343615412712,
- -0.009296027943491936,
- -0.005955392494797707
- ]
- },
- {
- "keyword": "techie",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.07638581097126007,
- 0.019295072183012962,
- 0.0628272071480751,
- -0.06336753070354462,
- -0.04451851546764374,
- -0.046610333025455475,
- 0.19648024439811707,
- 0.04249291121959686,
- -0.02181457169353962,
- 0.024832822382450104,
- 0.054983533918857574,
- -0.08066956698894501,
- 0.07354996353387833,
- 0.0036435530055314302,
- -0.04282738268375397,
- -0.03596009686589241,
- -0.037092890590429306,
- -0.1023988425731659,
- -0.05801258608698845,
- -0.07649654150009155,
- -0.060696013271808624,
- 0.07832042127847672,
- 0.004716521129012108,
- -0.010743754915893078,
- -0.054397568106651306,
- -0.035760778933763504,
- 0.04449363797903061,
- 0.017085108906030655,
- -0.006045062560588121,
- -0.012383542954921722,
- -0.07795719802379608,
- 0.05648183822631836,
- -0.053035758435726166,
- 0.01804639957845211,
- -0.03437773883342743,
- -0.0853327065706253,
- -0.028603628277778625,
- 0.04080783203244209,
- 0.05902676656842232,
- -0.021500490605831146,
- 0.013694928959012032,
- -0.11526463180780411,
- -0.10027839243412018,
- -0.029259318485856056,
- 0.07061299681663513,
- -0.023187872022390366,
- 0.023930931463837624,
- -0.0818793922662735,
- 0.06413348019123077,
- 0.006605068221688271,
- -0.02390141412615776,
- -0.02438916265964508,
- -0.038740430027246475,
- 0.020808694884181023,
- 0.03359859064221382,
- 0.018487615510821342,
- 0.10658151656389236,
- -0.012898342683911324,
- 0.05167798697948456,
- 0.005709337070584297,
- 0.08105577528476715,
- -0.06568873673677444,
- -0.052180152386426926,
- 0.02085927315056324,
- 0.11469291895627975,
- 0.02178419940173626,
- -0.07030287384986877,
- 0.09384690225124359,
- 0.00015498511493206024,
- -0.06108669191598892,
- 0.034710802137851715,
- -0.005782835651189089,
- -0.011877254582941532,
- 0.04639872908592224,
- 0.031448204070329666,
- -0.014687645249068737,
- 0.04009721055626869,
- -0.019685892388224602,
- 0.09168323874473572,
- 0.009405115619301796,
- -0.029797697439789772,
- -0.04761964827775955,
- -0.024223506450653076,
- -0.03016802854835987,
- 0.030736887827515602,
- -0.038380492478609085,
- -0.018013261258602142,
- 0.05668064206838608,
- -0.0031653677579015493,
- -0.018850799649953842,
- -0.029701532796025276,
- 0.023020416498184204,
- 0.05864571034908295,
- -0.0106850890442729,
- 0.019109070301055908,
- -0.07750704139471054,
- -0.013204649090766907,
- -0.1402074098587036,
- -0.0944223403930664,
- 0.10404594242572784,
- -0.019620424136519432,
- 0.06061605364084244,
- 0.03307325392961502,
- 0.04183335229754448,
- -0.0035338797606527805,
- -0.0011921676341444254,
- -0.007417597807943821,
- 0.06005760282278061,
- 0.0845441147685051,
- -0.021979358047246933,
- -0.031070740893483162,
- -0.025517454370856285,
- -0.032829951494932175,
- 0.020034512504935265,
- 0.0014594401000067592,
- 0.0805736854672432,
- -0.07956718653440475,
- 0.10908131301403046,
- 0.07511533796787262,
- -0.07096480578184128,
- 0.04959302395582199,
- -0.005037842784076929,
- -0.07255943864583969,
- 0.028835518285632133,
- 0.05356752127408981,
- -0.06647779047489166,
- 0.01500096544623375,
- -3.50274504607796e-33,
- 0.05277705565094948,
- 0.09569103270769119,
- 0.0050635263323783875,
- 0.080805204808712,
- 0.07918182760477066,
- -0.0011383129749447107,
- -0.05522041767835617,
- 0.01910058595240116,
- -0.0374283641576767,
- -0.027079898864030838,
- -0.06093043088912964,
- 0.06083029881119728,
- -0.06117238476872444,
- 0.03441418707370758,
- 0.05912722647190094,
- -0.05404454842209816,
- -0.11358561366796494,
- 0.04010249301791191,
- -0.0063844542019069195,
- -0.00006524966738652438,
- -0.01741710491478443,
- 0.006670910399407148,
- 0.04631102457642555,
- 0.04642140865325928,
- 0.019224300980567932,
- -0.02672210894525051,
- -0.05567213520407677,
- 0.014462416060268879,
- 0.03604080528020859,
- 0.026904793456196785,
- -0.0420670360326767,
- -0.024881774559617043,
- 0.005816572345793247,
- -0.03429611399769783,
- 0.03548159450292587,
- -0.05559259653091431,
- 0.017145387828350067,
- -0.08313970267772675,
- 0.027535727247595787,
- 0.03925285115838051,
- 0.005501213483512402,
- 0.031524382531642914,
- 0.020073942840099335,
- 0.000028526861569844186,
- 0.0038789366371929646,
- -0.0312536247074604,
- 0.07878430932760239,
- -0.005156687460839748,
- 0.00717115867882967,
- 0.03323213383555412,
- -0.079136922955513,
- 0.02016000635921955,
- -0.04799875244498253,
- -0.017522666603326797,
- -0.027997290715575218,
- 0.006555979605764151,
- 0.06453607976436615,
- 0.013855827040970325,
- 0.05635756626725197,
- -0.027638142928481102,
- 0.09715601056814194,
- 0.04954955354332924,
- 0.09754076600074768,
- -0.015491509810090065,
- -0.0031445256900042295,
- 0.037164364010095596,
- 0.03709902986884117,
- 0.011878111399710178,
- 0.025279849767684937,
- 0.0550522617995739,
- -0.07856062054634094,
- 0.05655636638402939,
- 0.04363490268588066,
- 0.004044009372591972,
- 0.02407095581293106,
- 0.018369536846876144,
- -0.01889798976480961,
- 0.002587574068456888,
- -0.09184391051530838,
- -0.05994794890284538,
- -0.05133635923266411,
- -0.041147612035274506,
- 0.016366029158234596,
- 0.012044652365148067,
- 0.0466696061193943,
- -0.009111839346587658,
- -0.03139333799481392,
- 0.007775829639285803,
- 0.03235902264714241,
- -0.02927597239613533,
- -0.045559439808130264,
- 0.025580259039998055,
- 0.023255174979567528,
- 0.09965172410011292,
- -0.07456602901220322,
- 3.288259204039141e-33,
- -0.10617779195308685,
- -0.01651984266936779,
- 0.022909391671419144,
- 0.0858960896730423,
- 0.06246878206729889,
- -0.12081633508205414,
- -0.03734962269663811,
- 0.08917320519685745,
- 0.010183541104197502,
- 0.05412060394883156,
- 0.09497955441474915,
- -0.030376162379980087,
- 0.010468019172549248,
- -0.0979926586151123,
- 0.008275488391518593,
- 0.08933613449335098,
- 0.021417563781142235,
- -0.01437212061136961,
- -0.010165688581764698,
- -0.04310287907719612,
- 0.056308306753635406,
- -0.09181401878595352,
- -0.04211801663041115,
- -0.01663568802177906,
- -0.022187108173966408,
- 0.0778227224946022,
- -0.06379038095474243,
- -0.0021989312954247,
- -0.001187615329399705,
- 0.02063918113708496,
- 0.0464215949177742,
- -0.008987235836684704,
- -0.0007479235646314919,
- 0.025595633313059807,
- 0.03419483080506325,
- 0.11368073523044586,
- 0.03396664932370186,
- 0.04680171608924866,
- 0.029924672096967697,
- 0.06513547152280807,
- 0.10821236670017242,
- 0.009552319534122944,
- -0.03741457313299179,
- 0.11535792797803879,
- -0.05676475912332535,
- -0.056693512946367264,
- -0.024210557341575623,
- -0.048831142485141754,
- 0.024006133899092674,
- 0.024896549060940742,
- 0.08761545270681381,
- 0.004893014673143625,
- 0.05430940166115761,
- -0.0530967079102993,
- -0.006323770619928837,
- 0.04456475004553795,
- 0.07494886964559555,
- 0.029444396495819092,
- -0.12244261056184769,
- -0.023808814585208893,
- 0.0462883859872818,
- -0.025647440925240517,
- 0.01872970722615719,
- 0.011530495248734951,
- -0.05599264055490494,
- -0.017537014558911324,
- -0.029169347137212753,
- 0.12421990931034088,
- -0.05112236738204956,
- 0.029642323032021523,
- 0.0264415442943573,
- 0.001319923554547131,
- -0.019001083448529243,
- -0.06755554676055908,
- -0.061423979699611664,
- -0.06035396084189415,
- -0.029313931241631508,
- -0.010500273667275906,
- -0.003927574027329683,
- -0.02131948247551918,
- -0.06570293754339218,
- 0.0012251572916284204,
- 0.029501501470804214,
- 0.049618907272815704,
- -0.06168656051158905,
- 0.10638867318630219,
- 0.012299513444304466,
- -0.009126926772296429,
- -0.03681536018848419,
- -0.09605327248573303,
- 0.0047416649758815765,
- -0.0017679722514003515,
- 0.006098967511206865,
- -0.00436553405597806,
- -0.06372999399900436,
- -1.2881717914581259e-8,
- 0.025725873187184334,
- 0.006496934220194817,
- -0.0423160158097744,
- -0.004496341105550528,
- 0.02645067684352398,
- -0.019559236243367195,
- -0.053047508001327515,
- 0.01356153842061758,
- -0.017126070335507393,
- -0.022806741297245026,
- -0.013472422957420349,
- -0.02681686542928219,
- -0.02825060300529003,
- 0.06375192850828171,
- 0.10629714280366898,
- 0.04464618116617203,
- -0.1325540542602539,
- 0.04830532148480415,
- -0.029002459719777107,
- -0.00943075306713581,
- 0.04334098845720291,
- 0.024140842258930206,
- 0.01821456477046013,
- -0.017730405554175377,
- -0.0066518355160951614,
- 0.05209651216864586,
- -0.06568150222301483,
- 0.02314813621342182,
- 0.0210800189524889,
- 0.05109260976314545,
- -0.039550166577100754,
- 0.034993551671504974,
- -0.11943227797746658,
- 0.01377998199313879,
- 0.01905367150902748,
- 0.03285561874508858,
- 0.020811602473258972,
- -0.02691962569952011,
- -0.030009426176548004,
- 0.047836560755968094,
- -0.0481259785592556,
- -0.024887163192033768,
- -0.016739506274461746,
- 0.013363497331738472,
- -0.04701375216245651,
- 0.0010490968124940991,
- 0.050773635506629944,
- -0.04127144441008568,
- 0.018183903768658638,
- -0.03209444135427475,
- 0.022502167150378227,
- 0.043036021292209625,
- 0.010134699754416943,
- 0.07215671986341476,
- 0.009886568412184715,
- 0.03428197652101517,
- -0.00744786998257041,
- 0.02812882326543331,
- -0.06981777399778366,
- 0.046928245574235916,
- 0.014630653895437717,
- 0.005924828816205263,
- 0.03233545646071434,
- -0.04749826714396477
- ]
- },
- {
- "keyword": "doctor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.03400152921676636,
- 0.08917920291423798,
- 0.03286739066243172,
- 0.03147483244538307,
- -0.06835474073886871,
- -0.058147888630628586,
- 0.11735545843839645,
- 0.09544959664344788,
- 0.014702577143907547,
- -0.005991028156131506,
- -0.09163672477006912,
- -0.023835627362132072,
- -0.04390241205692291,
- 0.05065688118338585,
- -0.10474111139774323,
- -0.027108628302812576,
- -0.03804176673293114,
- -0.0074271103367209435,
- 0.02589588053524494,
- -0.0358055979013443,
- -0.11517728865146637,
- 0.1236128956079483,
- -0.01262428518384695,
- 0.0546928346157074,
- -0.004238023888319731,
- 0.04102059826254845,
- -0.029365241527557373,
- -0.04238288849592209,
- -0.026816945523023605,
- -0.08657790720462799,
- 0.0322871133685112,
- 0.009812050499022007,
- 0.021293679252266884,
- -0.01892922632396221,
- -0.009816688485443592,
- -0.027446633204817772,
- -0.03658931329846382,
- 0.05283995345234871,
- 0.03320729732513428,
- 0.06621111929416656,
- 0.024026885628700256,
- -0.042885374277830124,
- 0.004901330452412367,
- 0.04310072213411331,
- 0.03078826516866684,
- -0.009708460420370102,
- 0.06588521599769592,
- 0.0007475672173313797,
- 0.08857022970914841,
- 0.02778223529458046,
- -0.08846212178468704,
- -0.019491588696837425,
- -0.07216769456863403,
- 0.026636075228452682,
- 0.01816340535879135,
- -0.021777048707008362,
- -0.007616851013153791,
- -0.012729651294648647,
- -0.09029452502727509,
- 0.008668656460940838,
- -0.05790161341428757,
- 0.024595338851213455,
- 0.01018747128546238,
- 0.028203649446368217,
- 0.04853569343686104,
- 0.04957554116845131,
- -0.018172431737184525,
- -0.0003636484034359455,
- -0.004473769571632147,
- 0.04359385743737221,
- -0.008003988303244114,
- -0.012019088491797447,
- 0.061808571219444275,
- 0.0808289498090744,
- 0.05187021568417549,
- -0.0288909450173378,
- 0.05962897464632988,
- -0.03367053344845772,
- 0.04739989712834358,
- 0.003209579037502408,
- 0.04546230658888817,
- -0.055316030979156494,
- -0.11768418550491333,
- -0.021486470475792885,
- -0.027046069502830505,
- -0.0032364381477236748,
- 0.03457747772336006,
- 0.02726730704307556,
- -0.09638849645853043,
- -0.04661070182919502,
- 0.03160351142287254,
- -0.0469544380903244,
- 0.10148212313652039,
- 0.030048197135329247,
- -0.0042068506591022015,
- 0.044688861817121506,
- -0.04757344350218773,
- -0.07979395240545273,
- -0.06672526895999908,
- 0.20366071164608002,
- -0.008747999556362629,
- -0.021133476868271828,
- 0.028938578441739082,
- 0.075607068836689,
- 0.018617430701851845,
- -0.01251996774226427,
- -0.05755482614040375,
- -0.01863105222582817,
- 0.005996178835630417,
- -0.0027330045122653246,
- 0.012240215204656124,
- 0.029764870181679726,
- -0.012423031963407993,
- 0.007658824790269136,
- -0.020273244008421898,
- 0.042293481528759,
- 0.01984885148704052,
- 0.00469298055395484,
- 0.016502272337675095,
- 0.05093197152018547,
- -0.0622728168964386,
- 0.01837015338242054,
- -0.06216675043106079,
- -0.03088134340941906,
- -0.0432751402258873,
- 0.012500900775194168,
- 0.04122752323746681,
- -4.025644973600039e-33,
- 0.017884764820337296,
- -0.05268489569425583,
- 0.08934254944324493,
- 0.015830490738153458,
- 0.01206027902662754,
- 0.08239356428384781,
- 0.003067431505769491,
- 0.004035813733935356,
- 0.043594829738140106,
- -0.04739702120423317,
- 0.0001273173256777227,
- 0.011405852623283863,
- -0.03333086520433426,
- -0.0324443057179451,
- -0.0491604283452034,
- 0.08063904941082001,
- -0.03156859800219536,
- 0.043517354875802994,
- -0.06939070671796799,
- 0.03611312061548233,
- -0.03356293588876724,
- 0.038341160863637924,
- -0.07301677018404007,
- 0.09359099715948105,
- -0.0166021715849638,
- -0.003390776226297021,
- 0.007209607865661383,
- -0.058143094182014465,
- 0.16389472782611847,
- -0.0028181876987218857,
- -0.017672810703516006,
- 0.02993139997124672,
- 0.0028052625712007284,
- -0.04400867596268654,
- -0.025787489488720894,
- -0.03289906680583954,
- -0.05931077525019646,
- -0.024145251139998436,
- 0.03027983196079731,
- -0.014742650091648102,
- -0.03947925567626953,
- -0.012338327243924141,
- 0.017945410683751106,
- 0.04618003964424133,
- 0.021732013672590256,
- 0.01971999555826187,
- 0.008193415589630604,
- 0.032995086163282394,
- -0.08105473220348358,
- 0.04977063089609146,
- -0.017281396314501762,
- -0.013056108728051186,
- -0.0005705690709874034,
- -0.014251763001084328,
- 0.06704562157392502,
- -0.08050549030303955,
- 0.02528921514749527,
- -0.02450988069176674,
- -0.007557839620858431,
- 0.008974701166152954,
- 0.09418408572673798,
- 0.09626950323581696,
- -0.007383006624877453,
- 0.04106246307492256,
- -0.01818464882671833,
- -0.08393168449401855,
- 0.027947107329964638,
- -0.06184355169534683,
- 0.011073273606598377,
- 0.02308708056807518,
- -0.0909276232123375,
- 0.038800835609436035,
- 0.026224417611956596,
- 0.017967071384191513,
- -0.03039521723985672,
- -0.013622820377349854,
- -0.01955479569733143,
- -0.02681276947259903,
- -0.10091070085763931,
- -0.02495507150888443,
- -0.013154316693544388,
- 0.04424014315009117,
- -0.0002816312189679593,
- 0.09595625847578049,
- 0.010651200078427792,
- -0.018301531672477722,
- -0.09384377300739288,
- 0.034588705748319626,
- 0.02876223623752594,
- -0.013378085568547249,
- -0.11467207968235016,
- -0.014473839662969112,
- 0.05573956295847893,
- 0.0966653972864151,
- -0.062134478241205215,
- 2.663700688348028e-33,
- -0.023553404957056046,
- -0.06191706284880638,
- -0.0023798372130841017,
- 0.07500529289245605,
- 0.0732998326420784,
- -0.042882829904556274,
- 0.05384447053074837,
- 0.03312487527728081,
- 0.014492347836494446,
- 0.051357243210077286,
- -0.01959226466715336,
- -0.030552025884389877,
- 0.031845346093177795,
- -0.0024382099509239197,
- 0.0026796164456754923,
- -0.016801243647933006,
- -0.03801225498318672,
- -0.016622500494122505,
- -0.030380958691239357,
- 0.07603918015956879,
- -0.05068739131093025,
- 0.02507401816546917,
- -0.020780811086297035,
- -0.0438663512468338,
- -0.05164090916514397,
- 0.057597097009420395,
- 0.08870070427656174,
- 0.01918804831802845,
- -0.028263991698622704,
- -0.03285893425345421,
- 0.005385463126003742,
- -0.027187218889594078,
- -0.04297714680433273,
- -0.10244487971067429,
- -0.07159415632486343,
- 0.19233497977256775,
- -0.00206154678016901,
- -0.036687616258859634,
- -0.025197068229317665,
- 0.023517664521932602,
- 0.07545378059148788,
- -0.042125195264816284,
- 0.04195510596036911,
- 0.08840174227952957,
- 0.033050041645765305,
- -0.008650257252156734,
- -0.05566536635160446,
- 0.03922325372695923,
- 0.012042628601193428,
- 0.017497362568974495,
- -0.10974065959453583,
- -0.022794527933001518,
- 0.0007697479450143874,
- -0.035373955965042114,
- -0.007253218907862902,
- -0.05455314368009567,
- -0.07208729535341263,
- -0.03331073746085167,
- 0.008442399092018604,
- -0.008021640591323376,
- -0.012695047073066235,
- -0.017071695998311043,
- -0.033319007605314255,
- 0.08581148087978363,
- -0.1177263855934143,
- 0.03993995487689972,
- 0.04409551993012428,
- 0.018947813659906387,
- -0.034354448318481445,
- 0.03518353030085564,
- 0.06348229199647903,
- 0.021649731323122978,
- -0.06608196347951889,
- 0.021449312567710876,
- 0.004066350869834423,
- -0.006081898231059313,
- -0.06648212671279907,
- -0.007691659033298492,
- -0.004803291987627745,
- -0.03033818118274212,
- -0.014491354115307331,
- -0.12445101141929626,
- 0.02217559888958931,
- 0.10516040772199631,
- -0.09192492067813873,
- -0.008416383527219296,
- 0.035168636590242386,
- -0.036722756922245026,
- -0.025265168398618698,
- -0.019269540905952454,
- 0.033610884100198746,
- 0.039183035492897034,
- -0.08012540638446808,
- -0.026383349671959877,
- 0.055785369127988815,
- -1.2197023835369691e-8,
- -0.002399486256763339,
- -0.05507146194577217,
- -0.020249629393219948,
- -0.0368223711848259,
- 0.05932069942355156,
- -0.08637242019176483,
- -0.05027797445654869,
- 0.05130580812692642,
- 0.04255489632487297,
- 0.06970996409654617,
- 0.0007481807260774076,
- -0.0026447719428688288,
- -0.0031632708851248026,
- -0.002539414446800947,
- 0.09270336478948593,
- -0.03347304090857506,
- -0.042891234159469604,
- 0.07069859653711319,
- -0.02487177401781082,
- -0.0345308855175972,
- -0.05141487717628479,
- -0.0322762057185173,
- 0.07612518966197968,
- 0.02457561157643795,
- 0.004095968324691057,
- 0.007054264657199383,
- 0.030606258660554886,
- 0.0008098038961179554,
- -0.003531775437295437,
- 0.12056994438171387,
- 0.025232549756765366,
- 0.07662635296583176,
- -0.019489994272589684,
- -0.031012224033474922,
- -0.006266856100410223,
- -0.10618595778942108,
- 0.02205170877277851,
- -0.06693178415298462,
- 0.011839387938380241,
- 0.00551514932885766,
- -0.023228054866194725,
- 0.04110602289438248,
- 0.034138813614845276,
- 0.0037510034162551165,
- -0.04614494368433952,
- -0.0650356262922287,
- 0.11166498810052872,
- 0.0024736670311540365,
- -0.01486957911401987,
- -0.03509151190519333,
- 0.06798537075519562,
- -0.0024308885913342237,
- 0.08834311366081238,
- -0.0037098180036991835,
- -0.00029831600841134787,
- 0.03006136789917946,
- 0.05386911705136299,
- 0.01402952428907156,
- -0.11030444502830505,
- 0.027136370539665222,
- 0.10807999968528748,
- -0.03212491795420647,
- 0.045716654509305954,
- 0.06451419740915298
- ]
- },
- {
- "keyword": "physician",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.013085685670375824,
- 0.06130200996994972,
- 0.03071656823158264,
- 0.016394609585404396,
- -0.131388857960701,
- -0.05434432253241539,
- 0.11460213363170624,
- 0.11541228741407394,
- -0.01838456280529499,
- -0.0036225009243935347,
- -0.05736006423830986,
- 0.02869989164173603,
- -0.0394456572830677,
- -0.011129865422844887,
- -0.12176671624183655,
- -0.03401563689112663,
- -0.03137383982539177,
- -0.025831932201981544,
- 0.0435817614197731,
- -0.005204333458095789,
- -0.14254771173000336,
- 0.1035158708691597,
- -0.008870602585375309,
- 0.05653069168329239,
- 0.008298433385789394,
- 0.03953668475151062,
- -0.018704459071159363,
- -0.044595085084438324,
- 0.0015370157780125737,
- -0.032009467482566833,
- 0.027621986344456673,
- 0.014684841968119144,
- 0.03964189812541008,
- 0.004015482496470213,
- -0.007877492345869541,
- 0.008776524104177952,
- -0.03831092268228531,
- 0.0519515797495842,
- 0.022169368341565132,
- 0.08625606447458267,
- 0.01979955844581127,
- -0.05130339413881302,
- 0.01476725097745657,
- 0.03753172233700752,
- 0.004290192387998104,
- -0.02148778922855854,
- 0.011324325576424599,
- -0.004636578261852264,
- 0.05248647555708885,
- 0.02769167721271515,
- -0.10088903456926346,
- -0.027828339487314224,
- -0.03324490413069725,
- -0.0045220935717225075,
- 0.0031419754959642887,
- -0.07182507961988449,
- 0.0015875136014074087,
- -0.025391574949026108,
- -0.08664046972990036,
- 0.007862094789743423,
- -0.004224387928843498,
- 0.04604668170213699,
- -0.02914210967719555,
- 0.05675375089049339,
- -0.004383283667266369,
- 0.017966922372579575,
- -0.021818848326802254,
- -0.01949196681380272,
- 0.027046166360378265,
- -0.020598750561475754,
- 0.004274513106793165,
- -0.02747131511569023,
- 0.04380640387535095,
- 0.09484750032424927,
- 0.06883809715509415,
- -0.0910254418849945,
- 0.028724219650030136,
- -0.016703788191080093,
- 0.03147903084754944,
- -0.01872403733432293,
- 0.08980804681777954,
- 0.013376162387430668,
- -0.11349896341562271,
- -0.004271855112165213,
- -0.02648845873773098,
- 0.015138800255954266,
- 0.016079537570476532,
- 0.07005636394023895,
- -0.04178804159164429,
- -0.10297688096761703,
- 0.0343790240585804,
- -0.036273013800382614,
- 0.060966093093156815,
- -0.009696080349385738,
- -0.006349017843604088,
- 0.048765070736408234,
- -0.0238950215280056,
- -0.12556274235248566,
- -0.07314514368772507,
- 0.18470551073551178,
- 0.014636466279625893,
- -0.014080512337386608,
- 0.016190197318792343,
- 0.04888817295432091,
- -0.016212744638323784,
- -0.02691795863211155,
- -0.02364545315504074,
- -0.030994949862360954,
- 0.008226796984672546,
- 0.0009486221242696047,
- 0.009581468999385834,
- 0.042779840528964996,
- -0.037365734577178955,
- -0.006080041639506817,
- -0.012530537322163582,
- 0.1081274002790451,
- 0.014402026310563087,
- 0.0569680891931057,
- 0.01596979610621929,
- 0.000392051471862942,
- -0.05101531371474266,
- -0.025094404816627502,
- -0.10769559442996979,
- -0.06388985365629196,
- -0.006407780107110739,
- -0.023642919957637787,
- 0.059114597737789154,
- -5.0264505783145646e-33,
- 0.0016846228390932083,
- 0.0022178450599312782,
- 0.07765568792819977,
- 0.01563309319317341,
- 0.048748236149549484,
- 0.08389967679977417,
- 0.05227953940629959,
- -0.020385852083563805,
- 0.017012683674693108,
- -0.10583140701055527,
- -0.008856115862727165,
- -0.04991618171334267,
- -0.019635718315839767,
- 0.019700566306710243,
- -0.048993971198797226,
- 0.025699518620967865,
- -0.08483196794986725,
- 0.10869705677032471,
- -0.0561729371547699,
- 0.03312608599662781,
- -0.01856415905058384,
- 0.019546760246157646,
- -0.03628105670213699,
- 0.08539436757564545,
- 0.009804232977330685,
- 0.01562026608735323,
- 0.017100265249609947,
- -0.022784307599067688,
- 0.11200286448001862,
- -0.011399953626096249,
- -0.002279337728396058,
- 0.06951624900102615,
- -0.04577673599123955,
- -0.04963095858693123,
- -0.008276714943349361,
- 0.037526726722717285,
- -0.064740389585495,
- -0.035528574138879776,
- 0.05247120559215546,
- -0.017398126423358917,
- -0.06445475667715073,
- 0.016200494021177292,
- 0.08073167502880096,
- 0.03082822822034359,
- 0.023312883451581,
- 0.007622974459081888,
- -0.020698819309473038,
- 0.007590203545987606,
- -0.12138668447732925,
- 0.03540977090597153,
- -0.01164991594851017,
- -0.009807483293116093,
- 0.030327366665005684,
- -0.02957196533679962,
- 0.06329328566789627,
- -0.06839463114738464,
- 0.024976234883069992,
- 0.034229978919029236,
- -0.010434652678668499,
- 0.005845977459102869,
- 0.13385118544101715,
- 0.08925367146730423,
- -0.04160759970545769,
- 0.012997562997043133,
- -0.05515645071864128,
- -0.06997896730899811,
- -0.029090913012623787,
- -0.03901541605591774,
- 0.037152696400880814,
- 0.04160822182893753,
- -0.04617214947938919,
- 0.026889454573392868,
- 0.010987767018377781,
- -0.0019060694612562656,
- -0.037467725574970245,
- 0.015138572081923485,
- -0.0513576902449131,
- -0.03749562427401543,
- -0.0274250116199255,
- 0.01837838999927044,
- -0.03628195449709892,
- 0.03362765908241272,
- 0.008569969795644283,
- 0.10756565630435944,
- 0.039079636335372925,
- -0.011972676031291485,
- -0.03777746111154556,
- 0.04967986047267914,
- 0.03131352365016937,
- -0.0029577116947621107,
- -0.129906564950943,
- -0.010085978545248508,
- 0.0076128095388412476,
- 0.08947239071130753,
- -0.06582282483577728,
- 3.2284096438509934e-33,
- -0.020393265411257744,
- -0.04120522737503052,
- 0.007376231253147125,
- 0.06009283289313316,
- 0.07669905573129654,
- -0.04680158942937851,
- 0.062203411012887955,
- 0.012771901674568653,
- 0.03596927970647812,
- 0.01823480799794197,
- 0.03348822891712189,
- 0.0028411848470568657,
- -0.01209933776408434,
- -0.016734614968299866,
- -0.029084615409374237,
- 0.018099470064044,
- -0.05629124864935875,
- -0.022967496886849403,
- -0.04217808321118355,
- 0.04363647848367691,
- -0.03544957563281059,
- 0.005314265843480825,
- -0.03163357824087143,
- -0.005157082807272673,
- -0.02483920380473137,
- 0.025157641619443893,
- 0.062477339059114456,
- 0.035519856959581375,
- -0.03412808105349541,
- -0.06222997233271599,
- -0.0237685889005661,
- -0.009132413193583488,
- -0.058963973075151443,
- -0.09104497730731964,
- -0.0365770198404789,
- 0.1466750204563141,
- -0.02706197276711464,
- 0.014932370744645596,
- -0.024184919893741608,
- 0.007470671087503433,
- 0.10176102072000504,
- -0.06245282664895058,
- 0.024782102555036545,
- 0.08662087470293045,
- 0.02184116095304489,
- -0.03903267905116081,
- -0.01932813599705696,
- 0.008966232649981976,
- 0.017844419926404953,
- 0.00505681661888957,
- -0.08351778239011765,
- -0.01755802147090435,
- 0.03560176491737366,
- 0.01455270778387785,
- 0.0002042497944785282,
- -0.010361051186919212,
- -0.06697472929954529,
- -0.03177674859762192,
- 0.00874246284365654,
- -0.05702470615506172,
- -0.004549818113446236,
- -0.0054465243592858315,
- -0.038717057555913925,
- 0.08868934214115143,
- -0.09052766114473343,
- 0.030842328444123268,
- 0.03433863818645477,
- 0.003875080030411482,
- -0.026907656341791153,
- -0.0013663503341376781,
- 0.08270873874425888,
- -0.015284485183656216,
- -0.04913219437003136,
- -0.0005355068715289235,
- 0.00724682817235589,
- -0.018154393881559372,
- -0.08751072734594345,
- -0.002389201195910573,
- -0.014879608526825905,
- -0.029432374984025955,
- 0.01314333826303482,
- -0.16687528789043427,
- 0.008121013641357422,
- 0.14655520021915436,
- -0.08514481782913208,
- 0.014094781130552292,
- 0.05255869776010513,
- -0.050647761672735214,
- -0.04037288948893547,
- -0.01035497710108757,
- 0.022910786792635918,
- 0.029942408204078674,
- -0.05889095366001129,
- -0.023476209491491318,
- 0.027491657063364983,
- -1.1880924688512096e-8,
- 0.017594024538993835,
- -0.03803971782326698,
- -0.010410693474113941,
- -0.06940203905105591,
- 0.04006966948509216,
- -0.09473808109760284,
- -0.05349889397621155,
- 0.029370976611971855,
- 0.028995690867304802,
- 0.07817738503217697,
- 0.008493654429912567,
- -0.004688917193561792,
- 0.038096845149993896,
- -0.013888895511627197,
- 0.11530737578868866,
- -0.005557038355618715,
- 0.00472605787217617,
- 0.12439503520727158,
- -0.05945919081568718,
- -0.028444280847907066,
- -0.016094230115413666,
- 0.0016607565339654684,
- 0.050820909440517426,
- 0.053632378578186035,
- -0.020637519657611847,
- 0.011226654052734375,
- 0.04703834280371666,
- 0.00630361819639802,
- 0.013422764837741852,
- 0.07397230714559555,
- 0.0179330725222826,
- 0.04530014470219612,
- -0.020129835233092308,
- -0.022086989134550095,
- 0.010247519239783287,
- -0.0761893093585968,
- -0.013897152617573738,
- -0.07897467911243439,
- 0.02711554244160652,
- -0.019889717921614647,
- -0.0023826677352190018,
- 0.06440076231956482,
- 0.024449296295642853,
- 0.017356734722852707,
- 0.025096870958805084,
- -0.06283549219369888,
- 0.05320315435528755,
- 0.03374854475259781,
- 0.025152094662189484,
- -0.022513985633850098,
- 0.018381735309958458,
- 0.02132454514503479,
- 0.08845986425876617,
- -0.050693217664957047,
- -0.05097491294145584,
- 0.012792067602276802,
- 0.06363660097122192,
- 0.00930043961852789,
- -0.12426448613405228,
- 0.011081801727414131,
- 0.10429851710796356,
- 0.00032908323919400573,
- 0.10939276963472366,
- 0.06396946310997009
- ]
- },
- {
- "keyword": "surgeon",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.05841327831149101,
- 0.089214026927948,
- 0.00835028663277626,
- -0.00751760508865118,
- -0.11560434103012085,
- -0.10576041042804718,
- 0.09641262888908386,
- 0.036266762763261795,
- 0.0010359925217926502,
- 0.025015462189912796,
- -0.02730555459856987,
- 0.0017907264409586787,
- 0.001676215324550867,
- 0.04170014336705208,
- -0.15305274724960327,
- -0.0329975001513958,
- 0.025683816522359848,
- 0.008275373838841915,
- 0.006966815795749426,
- -0.0473942905664444,
- -0.04804282635450363,
- 0.0749620869755745,
- -0.031114958226680756,
- 0.03390679880976677,
- -0.015740223228931427,
- -0.02920662797987461,
- -0.0490436777472496,
- -0.014027276076376438,
- -0.01485112402588129,
- -0.04026389494538307,
- -0.03536978363990784,
- -0.08470568060874939,
- -0.00623690290376544,
- -0.0007523531676270068,
- 0.010333639569580555,
- -0.0071534765884280205,
- 0.012003622949123383,
- 0.01941470429301262,
- 0.02687210589647293,
- 0.050419628620147705,
- -0.027488641440868378,
- -0.06741777062416077,
- -0.04414442181587219,
- 0.028750423341989517,
- 0.014026334509253502,
- -0.01292564906179905,
- 0.027861833572387695,
- -0.018393289297819138,
- 0.033263448625802994,
- 0.03290999308228493,
- -0.10615867376327515,
- -0.014103511348366737,
- -0.1126934140920639,
- 0.04737429320812225,
- 0.0142062371596694,
- 0.010277524590492249,
- -0.02219608798623085,
- -0.024292191490530968,
- -0.07445120811462402,
- -0.030664796009659767,
- 0.008356341160833836,
- -0.006114400923252106,
- -0.030236613005399704,
- 0.08313548564910889,
- -0.016294267028570175,
- -0.024754129350185394,
- 0.021502073854207993,
- -0.06763792037963867,
- -0.008840959519147873,
- 0.028366561979055405,
- 0.11307337135076523,
- -0.04961634799838066,
- 0.05325305834412575,
- 0.04987352713942528,
- 0.0476493313908577,
- -0.052100855857133865,
- 0.10701322555541992,
- 0.0251837857067585,
- 0.04366159811615944,
- -0.002815136918798089,
- 0.059303976595401764,
- -0.030789043754339218,
- -0.052080411463975906,
- -0.003541522426530719,
- -0.03736935555934906,
- 0.0026599427219480276,
- -0.03474164009094238,
- 0.028256455436348915,
- -0.04944625869393349,
- 0.009084215387701988,
- 0.01949050836265087,
- -0.028548503294587135,
- 0.025293035432696342,
- -0.025343023240566254,
- -0.0114247752353549,
- 0.045742347836494446,
- -0.06724884361028671,
- -0.06012140214443207,
- -0.06390911340713501,
- 0.20252637565135956,
- -0.013822514563798904,
- 0.009254875592887402,
- 0.0003235945478081703,
- 0.04678048938512802,
- -0.023490820080041885,
- -0.0416792668402195,
- -0.02562115155160427,
- 0.023146748542785645,
- -0.029587553814053535,
- -0.022088805213570595,
- -0.009085002355277538,
- 0.05677708610892296,
- 0.03405509144067764,
- 0.05384146049618721,
- -0.011994109489023685,
- 0.08159478008747101,
- 0.008308615535497665,
- 0.025295976549386978,
- 0.027778713032603264,
- 0.06051407754421234,
- -0.061802737414836884,
- 0.038606733083724976,
- -0.090651735663414,
- -0.030878378078341484,
- -0.05259019508957863,
- -0.010551804676651955,
- 0.010974220000207424,
- -5.266329302383053e-33,
- 0.023165440186858177,
- -0.06817036867141724,
- 0.0646200180053711,
- -0.008520913310348988,
- -0.0254374872893095,
- 0.050855815410614014,
- -0.01891840063035488,
- -0.061308667063713074,
- 0.018267227336764336,
- -0.015917696058750153,
- -0.008629427291452885,
- -0.04872795194387436,
- -0.014266300946474075,
- -0.03462253510951996,
- 0.009454553946852684,
- 0.09635767340660095,
- -0.026214206591248512,
- 0.13304965198040009,
- -0.06542260944843292,
- 0.004592113196849823,
- -0.033463697880506516,
- 0.10407412797212601,
- -0.026321686804294586,
- 0.0686861053109169,
- 0.03149430453777313,
- -0.0016368996584787965,
- -0.0027476258110255003,
- -0.07285172492265701,
- 0.06038931384682655,
- 0.022199129685759544,
- -0.03548017144203186,
- 0.048432350158691406,
- 0.03952924907207489,
- -0.029431581497192383,
- -0.03119594417512417,
- -0.00013101600052323192,
- -0.04453297704458237,
- -0.09118718653917313,
- 0.06902189552783966,
- -0.00886780209839344,
- -0.022091185674071312,
- 0.004513206426054239,
- 0.04051913321018219,
- 0.03851098194718361,
- -0.005364934913814068,
- 0.017663484439253807,
- 0.041785091161727905,
- 0.06154894828796387,
- 0.01792851835489273,
- -0.027696210891008377,
- 0.0013648110907524824,
- 0.02719862572848797,
- 0.03563496470451355,
- -0.023552369326353073,
- 0.06815285980701447,
- -0.035616546869277954,
- 0.06021996960043907,
- -0.003025936661288142,
- 0.017662862315773964,
- 0.01584033854305744,
- 0.01256446074694395,
- 0.072843037545681,
- 0.027749205008149147,
- 0.04962645098567009,
- 0.016360022127628326,
- -0.10587067157030106,
- 0.023402618244290352,
- -0.036882348358631134,
- 0.028751226142048836,
- -0.010476933792233467,
- -0.1046639084815979,
- 0.02979774959385395,
- 0.04292460158467293,
- -0.0077163842506706715,
- -0.032033614814281464,
- 0.04648704081773758,
- 0.014331097714602947,
- 0.02701607160270214,
- -0.06575270742177963,
- -0.034518271684646606,
- -0.02324199490249157,
- 0.0478636734187603,
- 0.05299919471144676,
- 0.029901226982474327,
- 0.06290578842163086,
- 0.015285098925232887,
- -0.08545186370611191,
- 0.025956695899367332,
- 0.05853431299328804,
- 0.04546229541301727,
- -0.15671618282794952,
- -0.07083059847354889,
- -0.038101568818092346,
- 0.05634107068181038,
- -0.06294278055429459,
- 3.600687602730458e-33,
- -0.07725358009338379,
- -0.06330104917287827,
- 0.04972163587808609,
- 0.06661850959062576,
- 0.0741795152425766,
- -0.042952436953783035,
- -0.04315321519970894,
- 0.02965378575026989,
- 0.01339829433709383,
- 0.02671084925532341,
- -0.0015929869841784239,
- 0.04627280682325363,
- 0.047632019966840744,
- -0.04052956774830818,
- 0.01576591283082962,
- -0.007759507745504379,
- -0.036616094410419464,
- -0.07788319140672684,
- -0.0868486687541008,
- 0.03180228918790817,
- 0.0032581749837845564,
- 0.05467185005545616,
- -0.017202749848365784,
- -0.05347030982375145,
- -0.05688057094812393,
- 0.036759763956069946,
- 0.05379532650113106,
- 0.064792200922966,
- -0.025148792192339897,
- -0.014545627869665623,
- -0.000021736210328526795,
- -0.030836261808872223,
- -0.054216139018535614,
- -0.06676088273525238,
- -0.00997662078589201,
- 0.20327924191951752,
- -0.005865541286766529,
- -0.018410684540867805,
- -0.007736774627119303,
- 0.026951339095830917,
- 0.0748027041554451,
- -0.10971628129482269,
- 0.07537098973989487,
- 0.08192691951990128,
- 0.0189452413469553,
- -0.08655573427677155,
- 0.014193149283528328,
- 0.04865683242678642,
- 0.06595034897327423,
- 0.001639454741962254,
- -0.1060437262058258,
- 0.05349176004528999,
- -0.003163397079333663,
- -0.008717063814401627,
- 0.04007060453295708,
- -0.02047848328948021,
- -0.09414585679769516,
- -0.07584693282842636,
- 0.03716433793306351,
- 0.002100543584674597,
- 0.012811458669602871,
- 0.0029585009906440973,
- 0.03557046502828598,
- 0.06367984414100647,
- -0.05014144629240036,
- 0.07224596291780472,
- 0.03572467714548111,
- 0.010363948531448841,
- -0.09712649136781693,
- 0.035339321941137314,
- 0.09901321679353714,
- -0.00003170374475303106,
- -0.06835641711950302,
- 0.01348026655614376,
- -0.02620181441307068,
- -0.03274039924144745,
- -0.019940806552767754,
- -0.004886575974524021,
- -0.029964495450258255,
- 0.009250783361494541,
- -0.029745236039161682,
- -0.09033624082803726,
- 0.013019011355936527,
- 0.11882360279560089,
- -0.021953437477350235,
- -0.001489792251959443,
- 0.09378965944051743,
- -0.019511133432388306,
- -0.03780919313430786,
- -0.04064470902085304,
- 0.04751431196928024,
- -0.011176221072673798,
- -0.04733642190694809,
- -0.09327869862318039,
- 0.055085860192775726,
- -1.1187998971706747e-8,
- -0.027512548491358757,
- 0.022901257500052452,
- -0.02391660585999489,
- -0.04422749951481819,
- 0.0012799946125596762,
- -0.07803437858819962,
- -0.05727020651102066,
- 0.05987837165594101,
- 0.02849206142127514,
- 0.022873513400554657,
- -0.012337609194219112,
- 0.017893118783831596,
- 0.051882095634937286,
- -0.03729607164859772,
- 0.061396434903144836,
- -0.07658880203962326,
- -0.047481805086135864,
- 0.05724542960524559,
- -0.04740409180521965,
- -0.09319604933261871,
- -0.04656320437788963,
- -0.04318700358271599,
- 0.07852073758840561,
- 0.02293981797993183,
- -0.033996958285570145,
- 0.02220335602760315,
- 0.00531583558768034,
- -0.024412738159298897,
- -0.014806658960878849,
- 0.1464507281780243,
- 0.022136960178613663,
- 0.004844205919653177,
- -0.000537516491021961,
- 0.0003907908103428781,
- 0.021266905590891838,
- -0.0420212484896183,
- 0.031700197607278824,
- -0.031349312514066696,
- 0.052095625549554825,
- -0.023655369877815247,
- 0.008209722116589546,
- 0.04320146143436432,
- 0.08661206811666489,
- 0.08254591375589371,
- -0.052379854023456573,
- 0.0018921549199149013,
- 0.027762550860643387,
- 0.0346878245472908,
- -0.002023631939664483,
- -0.004275673069059849,
- 0.06725111603736877,
- -0.025699790567159653,
- 0.028477299958467484,
- -0.00686378451064229,
- -0.04323509335517883,
- 0.007310645654797554,
- 0.07898171246051788,
- 0.011730733327567577,
- -0.04568448290228844,
- 0.07598666846752167,
- 0.06972938030958176,
- -0.04506324604153633,
- 0.08767478913068771,
- 0.0488010011613369
- ]
- },
- {
- "keyword": "nurse",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07403963059186935,
- -0.010938216932117939,
- -0.036035362631082535,
- 0.0610954649746418,
- -0.02819001115858555,
- 0.0032033645547926426,
- 0.06987840682268143,
- 0.0008911476470530033,
- 0.008443547412753105,
- -0.029385335743427277,
- -0.08870472013950348,
- 0.013512271456420422,
- -0.038893602788448334,
- 0.053845345973968506,
- -0.11494855582714081,
- -0.00012628127296920866,
- -0.004002201370894909,
- 0.02560933120548725,
- 0.024963058531284332,
- -0.03796544298529625,
- -0.09962132573127747,
- 0.07026920467615128,
- -0.027421068400144577,
- 0.04132283478975296,
- 0.04368375241756439,
- 0.02393466979265213,
- -0.03194770961999893,
- -0.009159326553344727,
- 0.008420501835644245,
- -0.014005186036229134,
- -0.06811520457267761,
- -0.04092006757855415,
- -0.005286437924951315,
- 0.05070282146334648,
- -0.0679943859577179,
- 0.029544364660978317,
- 0.009320640936493874,
- 0.040305398404598236,
- 0.0051443083211779594,
- 0.019369015470147133,
- 0.02301175706088543,
- -0.050241149961948395,
- 0.00560117419809103,
- 0.002250822726637125,
- 0.06180064007639885,
- 0.016903884708881378,
- 0.054531969130039215,
- 0.025007983669638634,
- 0.012044884264469147,
- 0.02776382677257061,
- -0.04104302078485489,
- -0.07691314071416855,
- -0.09736769646406174,
- 0.07364346086978912,
- 0.07850794494152069,
- -0.021735284477472305,
- 0.019343949854373932,
- -0.03381265327334404,
- -0.07978922128677368,
- 0.003945725038647652,
- -0.05679591745138168,
- 0.03462868556380272,
- 0.031107142567634583,
- 0.037807293236255646,
- 0.06790824979543686,
- -0.016320277005434036,
- -0.06758953630924225,
- 0.028644228354096413,
- 0.006602503824979067,
- -0.05900173261761665,
- 0.012672070413827896,
- -0.04710838198661804,
- 0.04447068274021149,
- 0.04196662828326225,
- 0.055651117116212845,
- 0.0015137855662032962,
- 0.10064590722322464,
- -0.023405559360980988,
- 0.06304927915334702,
- 0.04860832542181015,
- 0.029334528371691704,
- -0.0537664070725441,
- -0.0218052938580513,
- 0.05348920822143555,
- -0.02687857300043106,
- -0.043904807418584824,
- 0.020212864503264427,
- 0.013011707924306393,
- 0.0023764707148075104,
- -0.07769980281591415,
- 0.020432474091649055,
- 0.02726099267601967,
- -0.005537915509194136,
- 0.04887683317065239,
- -0.0561988539993763,
- 0.05764347314834595,
- -0.012373900040984154,
- 0.004607161972671747,
- -0.059456732124090195,
- 0.16937491297721863,
- -0.025125669315457344,
- 0.07791686803102493,
- -0.0027864468283951283,
- 0.06727247685194016,
- -0.02741055190563202,
- -0.012959548272192478,
- 0.060622189193964005,
- -0.06956496089696884,
- -0.04334663599729538,
- 0.031930554658174515,
- -0.020392831414937973,
- 0.07868676632642746,
- -0.07677960395812988,
- 0.019047217443585396,
- -0.030688593164086342,
- 0.030678479000926018,
- 0.021619420498609543,
- -0.04308824986219406,
- -0.03146796673536301,
- 0.1013178825378418,
- -0.0527898408472538,
- 0.013233602046966553,
- -0.1002635508775711,
- 0.005625023972243071,
- -0.011146378703415394,
- -0.01206112653017044,
- 0.05270594358444214,
- -3.724394424159088e-33,
- -0.002861566375941038,
- -0.015233744867146015,
- 0.1325714886188507,
- 0.06115652248263359,
- 0.10123584419488907,
- 0.07814488559961319,
- 0.01093264389783144,
- -0.022073868662118912,
- 0.016955703496932983,
- 0.01923719234764576,
- -0.040486253798007965,
- 0.012816871516406536,
- -0.05089578777551651,
- -0.03441552817821503,
- 0.005555450450628996,
- 0.020495880395174026,
- -0.05060487240552902,
- 0.008017531596124172,
- -0.03392459824681282,
- 0.06178521364927292,
- -0.0012297453358769417,
- 0.03826427087187767,
- -0.0980975329875946,
- 0.10606212168931961,
- -0.02265756018459797,
- 0.008070548996329308,
- -0.01336157601326704,
- -0.0003938295703846961,
- 0.07031506299972534,
- 0.03616003692150116,
- -0.0012619320768862963,
- -0.00579851632937789,
- -0.07686362415552139,
- -0.07567816227674484,
- -0.038478605449199677,
- -0.11783295124769211,
- -0.03164099156856537,
- -0.06347155570983887,
- -0.034399181604385376,
- -0.012620784342288971,
- -0.037148986011743546,
- 0.04506193473935127,
- 0.060303423553705215,
- 0.06803113222122192,
- 0.0011219994630664587,
- 0.016716254875063896,
- 0.013157734647393227,
- -0.003728559473529458,
- -0.012766573578119278,
- -0.004182806704193354,
- -0.03131378814578056,
- -0.04812510311603546,
- -0.0563061386346817,
- -0.04511456936597824,
- 0.061542849987745285,
- -0.05117546021938324,
- 0.02304685115814209,
- 0.04522751271724701,
- 0.019491489976644516,
- 0.04976717755198479,
- 0.0036955378018319607,
- 0.01657699979841709,
- -0.008137797005474567,
- 0.035769809037446976,
- 0.06163420528173447,
- -0.05855388939380646,
- -0.0011647671926766634,
- -0.03331192582845688,
- 0.13478074967861176,
- -0.037939947098493576,
- -0.04810170829296112,
- 0.019230302423238754,
- 0.0461733378469944,
- 0.02092800661921501,
- -0.06137101352214813,
- 0.06132020428776741,
- 0.024830443784594536,
- -0.027675693854689598,
- -0.020697154104709625,
- -0.09499125182628632,
- -0.021133769303560257,
- 0.04905381798744202,
- -0.053878068923950195,
- 0.08257727324962616,
- 0.03343646600842476,
- -0.01888822577893734,
- -0.09152527898550034,
- -0.017459522932767868,
- 0.010322700254619122,
- -0.016744976863265038,
- -0.06227725371718407,
- 0.03567913919687271,
- 0.07576804608106613,
- -0.017119087278842926,
- -0.1027994155883789,
- 2.3529514098684636e-33,
- -0.03895766660571098,
- 0.019330602139234543,
- -0.08260020613670349,
- 0.05727813020348549,
- 0.07452666014432907,
- -0.08431441336870193,
- 0.004156781360507011,
- 0.024938713759183884,
- 0.08329077064990997,
- 0.06051064282655716,
- 0.027000989764928818,
- -0.09100279211997986,
- 0.01708013005554676,
- 0.05689508095383644,
- -0.013309575617313385,
- 0.05515104532241821,
- -0.018048394471406937,
- -0.037075065076351166,
- -0.06561128795146942,
- 0.006408218760043383,
- -0.02430579625070095,
- 0.01674640364944935,
- 0.017308734357357025,
- -0.03654590994119644,
- 0.02803761139512062,
- 0.09595269709825516,
- -0.043977756053209305,
- 0.051307715475559235,
- -0.04964245483279228,
- -0.01287196297198534,
- -0.025923315435647964,
- 0.03178205341100693,
- 0.02159402146935463,
- 0.02046428993344307,
- -0.07205244153738022,
- 0.07216224819421768,
- 0.04682092368602753,
- -0.043371424078941345,
- -0.0036230976693332195,
- -0.035502102226018906,
- 0.14709776639938354,
- -0.06323853880167007,
- -0.01909358613193035,
- 0.10999589413404465,
- 0.009956692345440388,
- -0.037402283400297165,
- 0.00030889632762409747,
- 0.04659886285662651,
- 0.037406302988529205,
- -0.026956716552376747,
- -0.10980691760778427,
- -0.08033853024244308,
- -0.027834773063659668,
- -0.002351349452510476,
- 0.06017344072461128,
- -0.04395546019077301,
- -0.019338387995958328,
- -0.0726243332028389,
- -0.003414499806240201,
- 0.04101354256272316,
- 0.10597245395183563,
- 0.025097046047449112,
- -0.08191774785518646,
- 0.056206636130809784,
- -0.05555311217904091,
- 0.014349398203194141,
- 0.020151710137724876,
- -0.007979685440659523,
- -0.022950489073991776,
- 0.023436378687620163,
- 0.0783691480755806,
- 0.08810453116893768,
- -0.005995248910039663,
- 0.04217833653092384,
- -0.05448080226778984,
- 0.04131369665265083,
- -0.004169711377471685,
- -0.03989071771502495,
- -0.040892716497182846,
- -0.011274307034909725,
- -0.12294305115938187,
- -0.12595787644386292,
- -0.02060369774699211,
- 0.03815701976418495,
- -0.04502789303660393,
- -0.015501431189477444,
- 0.07343896478414536,
- 0.025761820375919342,
- -0.02884608879685402,
- -0.07368402928113937,
- -0.008340397849678993,
- -0.017522752285003662,
- -0.03250211477279663,
- -0.05856260657310486,
- -0.016126645728945732,
- -1.1419594159178814e-8,
- -0.04070280119776726,
- -0.00522911362349987,
- 0.003137781284749508,
- -0.08767113834619522,
- 0.04068553447723389,
- -0.07563920319080353,
- -0.04495832324028015,
- 0.04027599096298218,
- 0.05286543443799019,
- 0.06944801658391953,
- -0.005805374588817358,
- 0.005650494247674942,
- 0.06654322892427444,
- -0.05277637764811516,
- 0.16106635332107544,
- 0.019719192758202553,
- 0.020410822704434395,
- 0.04900139942765236,
- -0.03859247267246246,
- -0.03531738370656967,
- 0.03825454041361809,
- 0.010095628909766674,
- -0.0354987196624279,
- -0.018759695813059807,
- -0.03536658734083176,
- -0.005943765863776207,
- -0.04885591194033623,
- 0.0751829594373703,
- -0.04615207388997078,
- 0.08562808483839035,
- 0.037200089544057846,
- 0.06940983235836029,
- 0.03664584830403328,
- -0.022503962740302086,
- -0.07660016417503357,
- -0.03962406888604164,
- 0.08813845366239548,
- -0.09601770341396332,
- -0.0017936800140887499,
- -0.06935752183198929,
- -0.012603456154465675,
- -0.015631500631570816,
- 0.008152940310537815,
- -0.019910722970962524,
- -0.012700416147708893,
- -0.023164058104157448,
- 0.10269994288682938,
- -0.02544400654733181,
- 0.052816007286310196,
- -0.056569963693618774,
- 0.053706858307123184,
- -0.05319845676422119,
- 0.0792798101902008,
- 0.02243870310485363,
- -0.01929524913430214,
- 0.029167108237743378,
- -0.025322910398244858,
- -0.020629892125725746,
- -0.06398075073957443,
- 0.03168872743844986,
- 0.03489106148481369,
- -0.01143715251237154,
- 0.07802119851112366,
- 0.0265603419393301
- ]
- },
- {
- "keyword": "therapist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.061070509254932404,
- 0.004553236532956362,
- -0.014978691935539246,
- 0.08230399340391159,
- -0.055489443242549896,
- 0.0384681299328804,
- 0.14585275948047638,
- 0.04631393775343895,
- 0.03683066368103027,
- -0.04095898196101189,
- -0.03216489776968956,
- 0.004473808221518993,
- -0.0053989398293197155,
- 0.05733232945203781,
- -0.008184521459043026,
- 0.05658027529716492,
- 0.055941760540008545,
- 0.0008709004032425582,
- 0.05600837618112564,
- -0.048883937299251556,
- -0.15758007764816284,
- 0.06186872720718384,
- -0.01173745933920145,
- 0.044463831931352615,
- 0.0017860535299405456,
- 0.03274442255496979,
- -0.06311441212892532,
- -0.07566642761230469,
- -0.04064483568072319,
- -0.024473821744322777,
- -0.031584274023771286,
- -0.025699598714709282,
- -0.0887528657913208,
- 0.02906513586640358,
- -0.00941164419054985,
- 0.018632598221302032,
- -0.07882629334926605,
- 0.08050893992185593,
- -0.027490034699440002,
- 0.010704691521823406,
- -0.03417573124170303,
- 0.03527580946683884,
- 0.010571922175586224,
- -0.035472139716148376,
- -0.0009393388754688203,
- -0.003918680362403393,
- 0.0004219943948555738,
- 0.008030437864363194,
- 0.006891779135912657,
- -0.0213426873087883,
- -0.04651477560400963,
- 0.03427828103303909,
- -0.00618879497051239,
- -0.025071140378713608,
- 0.026274995878338814,
- -0.02079005539417267,
- 0.033745281398296356,
- 0.07447966933250427,
- -0.055171139538288116,
- 0.12369892001152039,
- 0.04752698913216591,
- -0.0003088466473855078,
- -0.04800580069422722,
- 0.012684850953519344,
- 0.15136995911598206,
- 0.00001627555684535764,
- -0.019473971799016,
- 0.08740144222974777,
- 0.05564139783382416,
- -0.042075660079717636,
- -0.033251892775297165,
- -0.02141030877828598,
- 0.07504778355360031,
- 0.043103884905576706,
- 0.08314396440982819,
- -0.0636497512459755,
- 0.016533609479665756,
- -0.02576495334506035,
- 0.08458038419485092,
- 0.026727313175797462,
- -0.012221872806549072,
- 0.05226140469312668,
- -0.010462157428264618,
- 0.008669210597872734,
- -0.00033747628913260996,
- -0.008546436205506325,
- 0.012948823161423206,
- 0.05672060698270798,
- -0.029054300859570503,
- 0.03797758370637894,
- -0.021150359883904457,
- 0.00001072832219506381,
- -0.03983333706855774,
- -0.01647605560719967,
- 0.005971650592982769,
- -0.007809972856193781,
- -0.09046041965484619,
- -0.019169533625245094,
- -0.08086512982845306,
- 0.2529584467411041,
- 0.0046187397092580795,
- 0.03551649674773216,
- -0.034987036138772964,
- 0.06061045080423355,
- -0.0004016493330709636,
- -0.023331906646490097,
- -0.04836612939834595,
- -0.012307316064834595,
- -0.04262664169073105,
- 0.00598284974694252,
- -0.00825351383537054,
- -0.057573363184928894,
- -0.021191613748669624,
- -0.010297914035618305,
- 0.012507610954344273,
- 0.0940738171339035,
- 0.05389111489057541,
- 0.0043672737665474415,
- 0.03128274157643318,
- 0.08003439754247665,
- 0.04853207245469093,
- -0.010399173945188522,
- -0.014516759663820267,
- 0.056730110198259354,
- -0.11100214719772339,
- -0.004539692774415016,
- -0.01837409846484661,
- -5.048729869682493e-33,
- 0.03007609397172928,
- -0.022883573547005653,
- 0.06539297848939896,
- 0.015325184911489487,
- -0.05023110657930374,
- 0.057008493691682816,
- 0.012641310691833496,
- -0.014895112253725529,
- -0.0062932828441262245,
- -0.03485050052404404,
- 0.01971735805273056,
- 0.0036143881734460592,
- 0.043660037219524384,
- 0.02687970921397209,
- -0.07573564350605011,
- -0.030638881027698517,
- -0.03584478795528412,
- 0.10366356372833252,
- -0.014732726849615574,
- -0.017882267013192177,
- -0.021717021241784096,
- 0.1412091851234436,
- 0.001970551675185561,
- 0.10409990698099136,
- -0.07763377577066422,
- -0.003959989175200462,
- -0.0004817703738808632,
- -0.014624093659222126,
- 0.038999155163764954,
- 0.018147902563214302,
- -0.04081561788916588,
- 0.09678518772125244,
- 0.010139533318579197,
- -0.019394559785723686,
- -0.019772473722696304,
- -0.041368480771780014,
- -0.022763757035136223,
- -0.0905037596821785,
- 0.018200401216745377,
- -0.08445363491773605,
- -0.011133051477372646,
- 0.051309920847415924,
- -0.02941480092704296,
- -0.002779435133561492,
- 0.006370834540575743,
- 0.050058621913194656,
- 0.008163229562342167,
- -0.07475872337818146,
- -0.12023509293794632,
- 0.04599843546748161,
- -0.020033951848745346,
- 0.024213578552007675,
- -0.029784303158521652,
- -0.045053768903017044,
- 0.011305417865514755,
- -0.03998170793056488,
- 0.010134854353964329,
- 0.025612251833081245,
- 0.06541837751865387,
- 0.02350515127182007,
- 0.0909912958741188,
- 0.07145809382200241,
- -0.07650002092123032,
- -0.08786904811859131,
- -0.03340417891740799,
- -0.05034302547574043,
- 0.019346121698617935,
- -0.06232643499970436,
- 0.040966931730508804,
- -0.00532816257327795,
- -0.13343939185142517,
- 0.07925780862569809,
- 0.06781832128763199,
- 0.0475955568253994,
- -0.004597906954586506,
- -0.06326937675476074,
- 0.008741193450987339,
- -0.03425406664609909,
- -0.13708510994911194,
- 0.0074386680498719215,
- -0.01204803679138422,
- 0.01651904731988907,
- -0.054193392395973206,
- 0.07385923713445663,
- 0.043907757848501205,
- -0.003445448586717248,
- -0.10460367798805237,
- 0.020697467029094696,
- -0.009477758780121803,
- 0.02244851551949978,
- -0.05407266318798065,
- -0.014516467228531837,
- 0.04656890034675598,
- 0.07995288074016571,
- -0.03266245871782303,
- 3.704881952619407e-33,
- -0.005730901844799519,
- -0.06424558162689209,
- 0.0017644105246290565,
- -0.017340801656246185,
- 0.06657667458057404,
- -0.09103940427303314,
- -0.049290772527456284,
- 0.011680543422698975,
- -0.005927405320107937,
- 0.11424174904823303,
- 0.00027116260025650263,
- -0.05444180592894554,
- 0.0553860068321228,
- 0.08785375207662582,
- -0.028766028583049774,
- 0.0205190759152174,
- -0.03545540198683739,
- -0.01903834566473961,
- -0.03738589957356453,
- -0.011934098787605762,
- 0.008438934572041035,
- 0.07110137492418289,
- 0.0022378121502697468,
- -0.027005635201931,
- 0.04184914380311966,
- 0.02376038208603859,
- 0.016589252278208733,
- -0.03767073526978493,
- 0.03330688923597336,
- -0.021186435595154762,
- 0.011517036706209183,
- -0.04040364548563957,
- -0.03901149332523346,
- -0.04701770842075348,
- -0.017010925337672234,
- 0.07366195321083069,
- -0.008699195459485054,
- 0.053268831223249435,
- -0.08933243155479431,
- -0.05668693780899048,
- 0.015925420448184013,
- -0.06605294346809387,
- -0.009480535052716732,
- 0.04277588427066803,
- 0.060158610343933105,
- 0.01807369291782379,
- -0.020385246723890305,
- 0.018619220703840256,
- 0.01092017162591219,
- -0.003667296841740608,
- -0.08263413608074188,
- 0.01990596577525139,
- 0.06034400314092636,
- -0.06073293834924698,
- 0.030303357169032097,
- -0.084780253469944,
- -0.0046141850762069225,
- -0.040979355573654175,
- -0.07014938443899155,
- -0.03425432741641998,
- 0.03327606990933418,
- -0.015618061646819115,
- -0.0357617549598217,
- 0.06489676237106323,
- 0.0012487893691286445,
- 0.02378275617957115,
- -0.022991621866822243,
- 0.027295202016830444,
- -0.07350833714008331,
- 0.0274667926132679,
- 0.06473982334136963,
- 0.03487932309508324,
- -0.012998847290873528,
- -0.0000749902828829363,
- 0.025354672223329544,
- 0.022755704820156097,
- -0.07496684044599533,
- -0.07128378003835678,
- -0.04318058118224144,
- 0.012737477198243141,
- -0.10193340480327606,
- -0.08161276578903198,
- 0.08390870690345764,
- 0.08802112191915512,
- 0.009494232945144176,
- -0.015025514177978039,
- 0.025849884375929832,
- 0.046995390206575394,
- 0.012000282295048237,
- -0.03140733391046524,
- -0.008895890787243843,
- -0.04113192856311798,
- -0.012784219346940517,
- -0.05585114285349846,
- 0.005439444445073605,
- -1.1719576420432531e-8,
- -0.002817389788106084,
- -0.0777149572968483,
- -0.011685749515891075,
- -0.06675653904676437,
- 0.00030230573611333966,
- 0.06877554953098297,
- -0.01961706392467022,
- 0.06133287772536278,
- -0.026951754465699196,
- 0.08736824244260788,
- -0.01512794941663742,
- -0.014719082973897457,
- 0.009198914282023907,
- -0.01610461249947548,
- 0.06479721516370773,
- -0.07711247354745865,
- 0.06889130920171738,
- 0.09900349378585815,
- 0.007573472335934639,
- -0.037690240889787674,
- 0.011670686304569244,
- 0.011232418939471245,
- 0.04417436569929123,
- -0.0008681464241817594,
- -0.05026587098836899,
- -0.010315322317183018,
- -0.006564585026353598,
- 0.054434433579444885,
- -0.08856471627950668,
- -0.004293886013329029,
- 0.04480835422873497,
- 0.022577524185180664,
- 0.00410697516053915,
- -0.06942325085401535,
- -0.05169087275862694,
- -0.034170057624578476,
- 0.022488228976726532,
- -0.038705192506313324,
- -0.02336590178310871,
- 0.001576796406880021,
- -0.030074935406446457,
- 0.028833547607064247,
- 0.06895662844181061,
- 0.017795007675886154,
- 0.01898663118481636,
- -0.04901355877518654,
- 0.0990154817700386,
- -0.05211702361702919,
- -0.010383488610386848,
- -0.04463867470622063,
- 0.04033731296658516,
- 0.03780565783381462,
- 0.009351019747555256,
- 0.023421648889780045,
- 0.03750311955809593,
- 0.006063553504645824,
- 0.040364738553762436,
- -0.05478080362081528,
- -0.12937214970588684,
- 0.016230346634984016,
- 0.0775342658162117,
- 0.05244801938533783,
- 0.07159753888845444,
- 0.03013121895492077
- ]
- },
- {
- "keyword": "cardiologist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.02449977584183216,
- 0.0433410108089447,
- -0.025467680767178535,
- 0.049256935715675354,
- -0.08272076398134232,
- -0.07758819311857224,
- 0.0707722157239914,
- 0.05936907231807709,
- 0.016550002619624138,
- -0.05402074754238129,
- -0.04008045420050621,
- -0.06204527989029884,
- -0.07981681823730469,
- 0.07488424330949783,
- -0.13933165371418,
- -0.042463269084692,
- -0.007369332946836948,
- -0.010495872236788273,
- 0.04692121222615242,
- 0.013313965871930122,
- -0.1212647557258606,
- 0.08980246633291245,
- 0.0009240619256161153,
- 0.019954390823841095,
- -0.03378637880086899,
- -0.002177040558308363,
- -0.014940280467271805,
- -0.0948965847492218,
- -0.051838070154190063,
- 0.00014663832553196698,
- 0.020816516131162643,
- 0.022576376795768738,
- 0.11671748012304306,
- 0.011859213933348656,
- -0.028614947572350502,
- 0.017421752214431763,
- 0.04988321661949158,
- 0.0748683288693428,
- -0.0650944858789444,
- 0.09208785742521286,
- -0.0049337600357830524,
- 0.0022807330824434757,
- 0.03061803989112377,
- 0.010405635461211205,
- 0.029619574546813965,
- -0.046851664781570435,
- 0.02299496904015541,
- -0.04770488664507866,
- -0.03609052300453186,
- 0.059601251035928726,
- 0.005010272841900587,
- -0.07921546697616577,
- -0.07252611219882965,
- -0.03462984785437584,
- 0.016719860956072807,
- 0.01298240665346384,
- -0.014252972789108753,
- -0.030090216547250748,
- -0.0442519336938858,
- -0.04670621082186699,
- 0.020750898867845535,
- 0.047132961452007294,
- -0.026600554585456848,
- 0.03648767247796059,
- 0.008266489952802658,
- -0.04924676939845085,
- 0.02091536670923233,
- 0.04759075120091438,
- 0.07557214051485062,
- -0.028146758675575256,
- 0.10781116038560867,
- -0.014500836841762066,
- 0.04470150172710419,
- 0.040963366627693176,
- 0.07354655861854553,
- 0.009536763653159142,
- 0.03317062184214592,
- 0.006281798705458641,
- 0.07483132183551788,
- -0.023226749151945114,
- 0.0358877032995224,
- -0.08151735365390778,
- -0.06067347526550293,
- -0.042971860617399216,
- 0.005715685430914164,
- 0.058023352175951004,
- -0.028436977416276932,
- 0.0481073334813118,
- -0.07784809172153473,
- -0.09823445230722427,
- 0.07977548241615295,
- 0.00023566775780636817,
- -0.003896524431183934,
- 0.017081864178180695,
- -0.07828108966350555,
- -0.018975311890244484,
- 0.006842565257102251,
- -0.020870262756943703,
- -0.07248269021511078,
- 0.07924634963274002,
- 0.06268531829118729,
- 0.018252912908792496,
- -0.028220338746905327,
- 0.10455796122550964,
- 0.0063131507486104965,
- -0.06149495393037796,
- 0.014900615438818932,
- -0.049408260732889175,
- 0.016655251383781433,
- -0.04364706575870514,
- 0.07432477921247482,
- 0.004344035871326923,
- -0.04655568674206734,
- -0.020999740809202194,
- 0.06184328347444534,
- 0.12012798339128494,
- -0.005498409736901522,
- 0.041130974888801575,
- -0.013891548849642277,
- 0.10954181849956512,
- -0.060308028012514114,
- -0.026270106434822083,
- -0.06660741567611694,
- -0.04536686837673187,
- -0.047795619815588,
- 0.02399984747171402,
- -0.015615991316735744,
- -5.433647790746655e-34,
- 0.06040186434984207,
- 0.008673288859426975,
- 0.07287942618131638,
- 0.019885284826159477,
- 0.04379062354564667,
- 0.032814785838127136,
- -0.03733589127659798,
- -0.01878133788704872,
- 0.03004283271729946,
- -0.024720191955566406,
- 0.02691693790256977,
- 0.03621000424027443,
- -0.006512844935059547,
- -0.011460958048701286,
- -0.025346869602799416,
- 0.002886643400415778,
- -0.1268177032470703,
- 0.049018099904060364,
- -0.0529165118932724,
- 0.02054128609597683,
- -0.04436298832297325,
- 0.015964942052960396,
- -0.06855703890323639,
- 0.02709277905523777,
- -0.011318682692945004,
- -0.009536825120449066,
- -0.01100680511444807,
- -0.08333144336938858,
- 0.13647028803825378,
- 0.020358849316835403,
- -0.014789525419473648,
- 0.007210864219814539,
- -0.016485704109072685,
- -0.01931149698793888,
- -0.02169674262404442,
- 0.08161034435033798,
- -0.06444984674453735,
- 0.0028843835461884737,
- -0.007634978741407394,
- 0.015131864696741104,
- -0.040883664041757584,
- -0.005225207190960646,
- 0.007865584455430508,
- -0.015159047208726406,
- 0.016873344779014587,
- -0.007500851061195135,
- 0.05797169357538223,
- 0.012967072427272797,
- -0.023084718734025955,
- 0.016743171960115433,
- -0.017542151734232903,
- -0.0574379526078701,
- 0.05315130576491356,
- -0.03210538625717163,
- 0.04992491006851196,
- -0.014816085807979107,
- 0.03879928961396217,
- 0.05611295625567436,
- -0.0033897976391017437,
- -0.0016002596821635962,
- 0.04955684393644333,
- 0.12331143766641617,
- -0.05951668322086334,
- 0.00844981987029314,
- -0.06392327696084976,
- -0.04628048092126846,
- -0.04522387683391571,
- -0.08088512718677521,
- -0.00025494745932519436,
- 0.030625417828559875,
- -0.06504914909601212,
- 0.023989349603652954,
- 0.004153964575380087,
- -0.05039074644446373,
- -0.04972880333662033,
- 0.07126657664775848,
- -0.041841380298137665,
- 0.07109048217535019,
- -0.1341150999069214,
- -0.03835280239582062,
- -0.02776065096259117,
- 0.03575613722205162,
- -0.013212017714977264,
- -0.023296043276786804,
- 0.02635020762681961,
- 0.049667831510305405,
- 0.005546793807297945,
- 0.007017642725259066,
- 0.003360327798873186,
- 0.08089939504861832,
- -0.06573671847581863,
- 0.06690195947885513,
- 0.06610938906669617,
- 0.028801007196307182,
- -0.01823519915342331,
- -1.5544980659338749e-34,
- -0.03474947810173035,
- -0.08520456403493881,
- -0.02466140314936638,
- -0.0072413720190525055,
- 0.09439190477132797,
- -0.061634525656700134,
- 0.03848720341920853,
- 0.06064864620566368,
- 0.08794785290956497,
- -0.053783394396305084,
- 0.02531745843589306,
- 0.05260312557220459,
- -0.007426486816257238,
- 0.026232479140162468,
- 0.014060228131711483,
- 0.04189433157444,
- -0.051578082144260406,
- -0.03863373398780823,
- -0.025604713708162308,
- -0.011511319316923618,
- -0.008698594756424427,
- -0.001783907413482666,
- -0.08667285740375519,
- 0.011732705868780613,
- -0.024206293746829033,
- 0.04809792712330818,
- 0.08292742818593979,
- -0.040896814316511154,
- 0.022329658269882202,
- -0.10395430773496628,
- 0.01262705959379673,
- -0.034829020500183105,
- -0.04878216236829758,
- 0.007352940738201141,
- -0.08012758195400238,
- 0.11091861873865128,
- 0.016290253028273582,
- 0.09455197304487228,
- 0.000892854412086308,
- 0.012881655246019363,
- -0.03979680314660072,
- -0.004678600002080202,
- 0.03678830340504646,
- 0.04708528891205788,
- 0.03862421587109566,
- -0.012269457802176476,
- 0.08821725100278854,
- 0.025517364963889122,
- -0.023169703781604767,
- -0.02524612657725811,
- -0.11924339830875397,
- -0.06618238985538483,
- -0.021975429728627205,
- 0.0458136722445488,
- 0.0049992152489721775,
- -0.0012930212542414665,
- -0.09166119992733002,
- 0.025764407590031624,
- -0.04325413703918457,
- -0.05079343542456627,
- 0.017625892534852028,
- -0.0350099578499794,
- 0.011424497701227665,
- 0.03449051454663277,
- -0.04862156882882118,
- 0.1031469777226448,
- 0.019534453749656677,
- -0.0014570900239050388,
- -0.051148973405361176,
- 0.008433100767433643,
- 0.0612812303006649,
- 0.09645941853523254,
- -0.08995216339826584,
- 0.034616753458976746,
- -0.007506777998059988,
- -0.011464828625321388,
- -0.021601315587759018,
- -0.06055092439055443,
- -0.04502179101109505,
- -0.083822101354599,
- 0.0013030957197770476,
- -0.08235655725002289,
- -0.004929529037326574,
- 0.05865030363202095,
- -0.019240928813815117,
- -0.00028051852132193744,
- 0.054577603936195374,
- -0.05680245906114578,
- -0.025222647935152054,
- -0.0568559393286705,
- 0.03592021018266678,
- 0.03713919594883919,
- -0.032561495900154114,
- -0.05065888166427612,
- 0.025734826922416687,
- -1.3544317667424366e-8,
- -0.03900666534900665,
- -0.005240747705101967,
- -0.08545241504907608,
- -0.060881756246089935,
- 0.007073273882269859,
- -0.1003100723028183,
- 0.02830655686557293,
- 0.02361650951206684,
- 0.016472594812512398,
- 0.004144142381846905,
- 0.0294148251414299,
- 0.06961275637149811,
- 0.03331068903207779,
- -0.07204627245664597,
- 0.0837983712553978,
- -0.04069586098194122,
- 0.007631276734173298,
- 0.01676938682794571,
- -0.014701486565172672,
- -0.02779104746878147,
- 0.04992545768618584,
- -0.010396309196949005,
- 0.10031729936599731,
- 0.02839832194149494,
- -0.03567216917872429,
- 0.003063797252252698,
- 0.03744024410843849,
- -0.022868303582072258,
- 0.03939119726419449,
- 0.07835119962692261,
- 0.045541875064373016,
- 0.05975465103983879,
- 0.023283185437321663,
- 0.0007075847825035453,
- 0.0897151306271553,
- -0.06561189889907837,
- -0.005919729359447956,
- -0.03761720657348633,
- 0.008357109501957893,
- 0.04741821065545082,
- -0.013828165829181671,
- -0.019034110009670258,
- -0.002094566822052002,
- 0.032317645847797394,
- -0.04879962280392647,
- -0.14867554605007172,
- 0.09813830256462097,
- 0.006693654228001833,
- 0.09596005082130432,
- -0.02963104471564293,
- 0.023331141099333763,
- 0.03947624936699867,
- 0.040625978261232376,
- -0.019168460741639137,
- -0.026978209614753723,
- 0.03644059970974922,
- 0.05040634050965309,
- 0.007067713420838118,
- -0.12446792423725128,
- 0.04461618885397911,
- 0.04675455763936043,
- -0.014482603408396244,
- 0.1092313900589943,
- 0.06149933859705925
- ]
- },
- {
- "keyword": "oncologist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.018349776044487953,
- 0.04956749826669693,
- -0.06994771957397461,
- 0.02950352244079113,
- -0.040597185492515564,
- -0.06864243745803833,
- 0.06371695548295975,
- 0.07700096070766449,
- 0.05605222284793854,
- -0.028487732633948326,
- -0.08008602261543274,
- -0.010125950910151005,
- -0.0593765489757061,
- -0.0075462996028363705,
- -0.12879376113414764,
- 0.030762866139411926,
- 0.004121879581362009,
- 0.036987822502851486,
- -0.0030884593725204468,
- -0.0717078447341919,
- -0.11967481672763824,
- 0.056569769978523254,
- 0.055145490914583206,
- 0.027286138385534286,
- 0.003633680287748575,
- -0.0793738141655922,
- -0.04692074656486511,
- 0.02390948124229908,
- -0.07272390276193619,
- 0.0020035847555845976,
- -0.027442853897809982,
- -0.051605455577373505,
- -0.03167499974370003,
- 0.01106081809848547,
- -0.044922299683094025,
- 0.017712628468871117,
- -0.025980154052376747,
- 0.18302573263645172,
- -0.026377607136964798,
- 0.04588983952999115,
- -0.016719715669751167,
- -0.07579617947340012,
- -0.001535532297566533,
- 0.06833179295063019,
- -0.00246799155138433,
- -0.1201392188668251,
- -0.03210113197565079,
- -0.07311730086803436,
- 0.06300310045480728,
- 0.08568885922431946,
- -0.07768071442842484,
- -0.019949717447161674,
- -0.08531250059604645,
- 0.017589151859283447,
- -0.013950580731034279,
- 0.0038767755031585693,
- -0.030260073021054268,
- 0.03661827743053436,
- -0.0227710772305727,
- -0.006235368084162474,
- -0.006578708067536354,
- -0.005547700449824333,
- -0.02966478280723095,
- 0.10354778915643692,
- 0.07539518922567368,
- -0.004115492571145296,
- 0.04275013878941536,
- -0.009548183530569077,
- -0.03370366618037224,
- 0.02143961377441883,
- 0.052069805562496185,
- -0.0247793048620224,
- 0.08622052520513535,
- 0.07416880130767822,
- 0.037232328206300735,
- -0.06274350732564926,
- 0.07621617615222931,
- 0.04957553371787071,
- 0.0852852389216423,
- 0.013862847350537777,
- 0.14796355366706848,
- -0.051150985062122345,
- 0.03345715254545212,
- -0.009134824387729168,
- -0.05826752632856369,
- -0.02503514103591442,
- 0.0048883697018027306,
- 0.025444673374295235,
- -0.0129805076867342,
- -0.009498147293925285,
- 0.040048640221357346,
- 0.06119018420577049,
- 0.07271867990493774,
- 0.03104083426296711,
- -0.08917742967605591,
- 0.03276271000504494,
- -0.014021302573382854,
- -0.038819748908281326,
- -0.02531621605157852,
- 0.13436734676361084,
- -0.04551219195127487,
- -0.029321501031517982,
- 0.028133923187851906,
- 0.074544757604599,
- 0.03852967172861099,
- -0.0005673656123690307,
- -0.07372637838125229,
- -0.08450552821159363,
- -0.004486517980694771,
- 0.0354558564722538,
- 0.06748039275407791,
- 0.022586697712540627,
- -0.02464553900063038,
- 0.018394364044070244,
- 0.045308712869882584,
- 0.11627732962369919,
- -0.031215013936161995,
- -0.06430914252996445,
- -0.005178491584956646,
- -0.011789943091571331,
- -0.020560842007398605,
- -0.03547629714012146,
- -0.10000946372747421,
- -0.02269980125129223,
- -0.018410637974739075,
- 0.0334705151617527,
- 0.014420108869671822,
- -2.5734379668972385e-33,
- 0.06257807463407516,
- -0.056019801646471024,
- 0.10033542662858963,
- 0.05737467482686043,
- 0.015831422060728073,
- 0.06973141431808472,
- 0.054439976811409,
- -0.028681058436632156,
- -0.04699831083416939,
- -0.055828776210546494,
- 0.06774143874645233,
- -0.00546421529725194,
- -0.015396581962704659,
- -0.010037870146334171,
- -0.06179526448249817,
- -0.0021104838233441114,
- -0.04897117242217064,
- -0.016419542953372,
- -0.10593951493501663,
- 0.0020066702272742987,
- -0.02886541560292244,
- 0.031165963038802147,
- -0.030143404379487038,
- -0.007321894634515047,
- 0.035091932862997055,
- -0.0031616881024092436,
- -0.02898370288312435,
- -0.020377550274133682,
- 0.004447211977094412,
- 0.016211047768592834,
- -0.008302141912281513,
- 0.0019808781798928976,
- -0.04434056580066681,
- -0.027886541560292244,
- 0.027022473514080048,
- 0.021121881902217865,
- -0.04088541865348816,
- 0.02196778915822506,
- 0.024513065814971924,
- 0.0046827467158436775,
- -0.017749769613146782,
- 0.04054446518421173,
- 0.055097345262765884,
- 0.0010471389396116138,
- -0.019203489646315575,
- -0.005656366236507893,
- 0.010239357128739357,
- -0.01950756460428238,
- 0.01542153861373663,
- 0.06449463963508606,
- -0.015362674370408058,
- -0.024438824504613876,
- 0.01897699572145939,
- 0.012051805853843689,
- 0.08123104274272919,
- -0.02896590158343315,
- -0.002998722018674016,
- 0.03171417489647865,
- 0.01235074084252119,
- 0.020014818757772446,
- 0.05977153405547142,
- 0.07671234756708145,
- -0.04204203560948372,
- 0.037329480051994324,
- -0.010543995536863804,
- -0.08012339472770691,
- -0.03892248123884201,
- -0.13967402279376984,
- 0.018699703738093376,
- -0.023625537753105164,
- -0.08276203274726868,
- 0.05129002034664154,
- 0.08322113007307053,
- -0.05268137902021408,
- -0.05966232344508171,
- 0.02895599603652954,
- -0.011381897144019604,
- -0.030565403401851654,
- -0.0935901403427124,
- 0.05837932229042053,
- 0.03635767847299576,
- -0.0391835980117321,
- -0.05827024579048157,
- 0.028124041855335236,
- -0.014696112833917141,
- 0.023267844691872597,
- -0.05039779469370842,
- -0.009079019539058208,
- -0.009691662155091763,
- 0.0014972715871408582,
- -0.04959893226623535,
- -0.005771053023636341,
- 0.08850618451833725,
- 0.03652244433760643,
- -0.06295021623373032,
- 1.2276381781988103e-33,
- -0.03698533773422241,
- -0.06998414546251297,
- 0.03495529294013977,
- 0.029102535918354988,
- 0.09790283441543579,
- 0.009667576290667057,
- 0.002583309542387724,
- 0.0012711196905001998,
- -0.02662588655948639,
- 0.019353484734892845,
- 0.03517957031726837,
- 0.053490832448005676,
- 0.042336832731962204,
- 0.02459707297384739,
- -0.002318503800779581,
- 0.004700397606939077,
- -0.07960610836744308,
- -0.03499037027359009,
- -0.07860080152750015,
- 0.03308149427175522,
- 0.00399710051715374,
- 0.09326814115047455,
- -0.11009664088487625,
- 0.009958922863006592,
- -0.04865384101867676,
- 0.06057471036911011,
- 0.10529638081789017,
- -0.02065325900912285,
- -0.07393831759691238,
- -0.018113629892468452,
- -0.007632710505276918,
- 0.021992990747094154,
- -0.014787333086133003,
- -0.04534902051091194,
- -0.025583133101463318,
- 0.10879287868738174,
- 0.024970008060336113,
- -0.03833945468068123,
- -0.012059573084115982,
- 0.009025117382407188,
- 0.08189660310745239,
- -0.03351285308599472,
- -0.04236505553126335,
- 0.03266216069459915,
- 0.07363057136535645,
- 0.0411599799990654,
- -0.052040137350559235,
- 0.08413005620241165,
- 0.0644586831331253,
- -0.015417085960507393,
- -0.07957389950752258,
- 0.021266913041472435,
- -0.034364253282547,
- -0.0017538786632940173,
- 0.07135888189077377,
- -0.06702887266874313,
- -0.08023242652416229,
- -0.04508556053042412,
- -0.03888179361820221,
- 0.022235875949263573,
- 0.024100998416543007,
- -0.034464556723833084,
- -0.02738996408879757,
- 0.06381937861442566,
- -0.007603503298014402,
- 0.10293413698673248,
- -0.025687681511044502,
- 0.03240145742893219,
- -0.03789757564663887,
- 0.0320030115544796,
- 0.01648123376071453,
- -0.039609480649232864,
- -0.11701185256242752,
- -0.05525181069970131,
- 0.018765510991215706,
- -0.0066493297927081585,
- 0.0090590575709939,
- -0.05148167163133621,
- -0.009049653075635433,
- 0.07715491950511932,
- -0.04312702268362045,
- -0.12456773221492767,
- 0.048348091542720795,
- 0.09804141521453857,
- 0.008715568110346794,
- -0.031509432941675186,
- 0.025325002148747444,
- -0.037384405732154846,
- -0.03754156082868576,
- -0.02477329596877098,
- 0.05925321206450462,
- -0.044728945940732956,
- -0.04010365903377533,
- -0.06787510961294174,
- 0.004678844008594751,
- -1.3156001621439373e-8,
- 0.0592561736702919,
- -0.04762665182352066,
- 0.009815189987421036,
- -0.07940235733985901,
- 0.05364132300019264,
- -0.021325740963220596,
- -0.00975019671022892,
- -0.009015027433633804,
- 0.01048625260591507,
- 0.09277984499931335,
- -0.04029314965009689,
- 0.0854112058877945,
- 0.04439644142985344,
- 0.01020082738250494,
- 0.10147795081138611,
- -0.027169670909643173,
- -0.054598767310380936,
- 0.08956057578325272,
- -0.042748626321554184,
- -0.022959090769290924,
- -0.009254327975213528,
- -0.02331670932471752,
- 0.03676106035709381,
- 0.04403289407491684,
- 0.024396469816565514,
- -0.001298824092373252,
- -0.024963486939668655,
- 0.0015223061200231314,
- -0.005768728442490101,
- 0.10216409713029861,
- -0.009398473426699638,
- 0.0334482304751873,
- 0.0000652894887025468,
- -0.00551579799503088,
- -0.019125716760754585,
- -0.08984331041574478,
- 0.06758149713277817,
- -0.06912558525800705,
- 0.014493834227323532,
- 0.00525313476100564,
- 0.007331698201596737,
- 0.03484874963760376,
- 0.006987034343183041,
- 0.03361232206225395,
- -0.09174548089504242,
- 0.012302563525736332,
- 0.026900270953774452,
- 0.01922975480556488,
- -0.009480996988713741,
- -0.06095266714692116,
- -0.017033083364367485,
- 0.012962426990270615,
- 0.05754096806049347,
- -0.03440513089299202,
- -0.018718412145972252,
- 0.022247159853577614,
- 0.035296812653541565,
- 0.07356839627027512,
- -0.06980635225772858,
- -0.0321001335978508,
- 0.09349820762872696,
- -0.017985964193940163,
- 0.11082099378108978,
- 0.0004553327744361013
- ]
- },
- {
- "keyword": "neurologist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03327176719903946,
- -0.02446897327899933,
- 0.022225230932235718,
- 0.0006773908389732242,
- -0.10975271463394165,
- -0.039009712636470795,
- 0.11864916235208511,
- 0.03943753242492676,
- -0.003088251920416951,
- -0.022014835849404335,
- 0.0059326328337192535,
- -0.0056086149998009205,
- -0.05064157769083977,
- 0.06973288953304291,
- -0.1462089568376541,
- 0.023615950718522072,
- -0.000394732051063329,
- -0.03783198073506355,
- 0.04548946022987366,
- -0.042059075087308884,
- -0.13788621127605438,
- 0.06337537616491318,
- -0.013814399018883705,
- -0.009150081314146519,
- 0.042293988168239594,
- 0.03587961941957474,
- -0.025665605440735817,
- -0.07665278762578964,
- -0.016981761902570724,
- -0.005069353152066469,
- 0.0286861639469862,
- 0.009710302576422691,
- -0.08407856523990631,
- 0.013722897507250309,
- 0.03397712856531143,
- 0.010128718800842762,
- -0.07576965540647507,
- 0.04628324508666992,
- 0.013812137767672539,
- 0.09642918407917023,
- -0.03636674955487251,
- -0.010700814425945282,
- 0.009599157609045506,
- 0.02815936878323555,
- -0.02784113399684429,
- 0.020127752795815468,
- 0.0699695348739624,
- -0.04669561982154846,
- 0.00897060614079237,
- -0.062076468020677567,
- -0.049448225647211075,
- -0.10535355657339096,
- -0.04735015332698822,
- 0.019424086436629295,
- 0.03323156386613846,
- 0.040458403527736664,
- 0.010885625146329403,
- -0.00008491252810927108,
- -0.12182726711034775,
- 0.07109051942825317,
- 0.01612633839249611,
- 0.04882065951824188,
- -0.022630291059613228,
- -0.007031688932329416,
- 0.11771939694881439,
- 0.0743374228477478,
- -0.02382376603782177,
- -0.05239766091108322,
- 0.018595129251480103,
- -0.007287662476301193,
- 0.0815248042345047,
- -0.033142149448394775,
- 0.027741335332393646,
- 0.02486630715429783,
- 0.039000120013952255,
- -0.024402238428592682,
- 0.05839405208826065,
- 0.008497084490954876,
- 0.12005218118429184,
- -0.0643157884478569,
- 0.06622200459241867,
- 0.020167892798781395,
- -0.03776649013161659,
- -0.043919797986745834,
- 0.08444333076477051,
- 0.005658100824803114,
- -0.0048044295981526375,
- 0.06734275072813034,
- -0.07970305532217026,
- -0.024632789194583893,
- 0.0440763421356678,
- -0.08003821223974228,
- -0.028585651889443398,
- -0.035125527530908585,
- -0.06527029722929001,
- -0.008689125068485737,
- -0.025927061215043068,
- -0.00943064596503973,
- -0.027473386377096176,
- 0.14424441754817963,
- 0.009896500036120415,
- -0.0012328963493928313,
- 0.04650850221514702,
- 0.08729642629623413,
- -0.0424751341342926,
- 0.02393890917301178,
- 0.03293271362781525,
- -0.07677356898784637,
- 0.011785957030951977,
- 0.0011737189488485456,
- -0.01154229324311018,
- 0.07040783762931824,
- -0.048814557492733,
- 0.024324575439095497,
- -0.015740010887384415,
- 0.03557784855365753,
- 0.016553068533539772,
- 0.12877385318279266,
- 0.09572172164916992,
- 0.0260158684104681,
- -0.053067151457071304,
- 0.01417299173772335,
- -0.10135965794324875,
- -0.029429391026496887,
- 0.0018349840538576245,
- 0.07457583397626877,
- -0.07513146102428436,
- 2.88684968268423e-35,
- 0.006759910844266415,
- 0.006321649998426437,
- 0.01335996761918068,
- -0.011749868281185627,
- -0.021456429734826088,
- 0.04802335053682327,
- 0.011344391852617264,
- -0.016796404495835304,
- 0.09614935517311096,
- 0.0012154700234532356,
- 0.008990883827209473,
- 0.026248671114444733,
- 0.023999031633138657,
- 0.03328069671988487,
- -0.054880350828170776,
- 0.042965106666088104,
- -0.06111564114689827,
- 0.0559055358171463,
- -0.0589163713157177,
- -0.01855628937482834,
- -0.024155352264642715,
- 0.045286476612091064,
- -0.07000385969877243,
- 0.04682377725839615,
- -0.06279075890779495,
- -0.057469580322504044,
- -0.0606466643512249,
- -0.029123850166797638,
- 0.11498556286096573,
- -0.00677589513361454,
- -0.02481597289443016,
- 0.033100880682468414,
- -0.06575292348861694,
- -0.04060828685760498,
- -0.011220306158065796,
- 0.006600682623684406,
- 0.009970948100090027,
- -0.03646204620599747,
- 0.028921283781528473,
- -0.0017399737844243646,
- 0.0006315185455605388,
- 0.06372351199388504,
- 0.014099166728556156,
- -0.008722332306206226,
- -0.007313080132007599,
- 0.06407938152551651,
- 0.05079454183578491,
- -0.009246135130524635,
- -0.00040689369780011475,
- -0.06419280171394348,
- -0.05866378918290138,
- -0.05197786167263985,
- 0.033722590655088425,
- -0.023922666907310486,
- 0.05022257938981056,
- 0.0026991222985088825,
- 0.023158453404903412,
- -0.011690637096762657,
- 0.09276139736175537,
- -0.008672116324305534,
- 0.07831097394227982,
- 0.051368288695812225,
- -0.04767785966396332,
- 0.006050669122487307,
- 0.033841077238321304,
- -0.06281506270170212,
- 0.0017258363077417016,
- -0.0436057448387146,
- 0.04943157732486725,
- -0.034646011888980865,
- -0.0799696296453476,
- 0.05529600754380226,
- 0.07520090788602829,
- -0.031964097172021866,
- -0.06433785706758499,
- -0.02473180741071701,
- -0.015244756825268269,
- -0.0461423359811306,
- -0.07806678861379623,
- -0.03423074260354042,
- -0.020270412787795067,
- 0.003937538247555494,
- 0.01034692395478487,
- 0.005343492608517408,
- 0.07687032967805862,
- 0.09628914296627045,
- -0.04781150072813034,
- 0.022284597158432007,
- 0.017821745947003365,
- 0.030231045559048653,
- -0.09438390284776688,
- -0.015653638169169426,
- 0.04099486395716667,
- 0.022141503170132637,
- -0.06320913136005402,
- -5.52113763122645e-34,
- -0.09201720356941223,
- -0.034499917179346085,
- -0.05553548038005829,
- 0.03170407563447952,
- 0.07526035606861115,
- -0.005579348653554916,
- 0.06273042410612106,
- 0.06296293437480927,
- -0.013557749800384045,
- 0.02431049942970276,
- 0.06416402012109756,
- 0.01739378832280636,
- 0.0414203405380249,
- -0.015830479562282562,
- 0.035596899688243866,
- -0.05780274048447609,
- -0.1482529640197754,
- 0.006897982209920883,
- 0.03339797630906105,
- 0.021447354927659035,
- 0.01846538856625557,
- 0.08184316009283066,
- -0.09104450047016144,
- -0.03082488663494587,
- 0.022415125742554665,
- 0.044294290244579315,
- 0.0736258327960968,
- -0.021978000178933144,
- -0.06776978075504303,
- 0.02450665831565857,
- -0.042220551520586014,
- 0.015393219888210297,
- -0.0216814037412405,
- -0.04571866989135742,
- -0.026970813050866127,
- 0.1269880086183548,
- -0.04670509696006775,
- -0.036598652601242065,
- -0.058264438062906265,
- 0.023849649354815483,
- 0.03344561904668808,
- 0.005471606273204088,
- 0.06351221352815628,
- 0.08849669992923737,
- 0.06041407212615013,
- -0.07369697839021683,
- -0.058218471705913544,
- 0.04286894202232361,
- 0.006932810880243778,
- -0.008508710190653801,
- -0.07747218012809753,
- 0.002256494713947177,
- -0.04492071270942688,
- -0.06562976539134979,
- -0.017436806112527847,
- -0.0037488348316401243,
- -0.06114644929766655,
- -0.06297022104263306,
- -0.02726142853498459,
- -0.024293499067425728,
- -0.011810822412371635,
- -0.06473781168460846,
- -0.04429417848587036,
- 0.04616183415055275,
- -0.03180839866399765,
- 0.11776448041200638,
- 0.015559551306068897,
- 0.050881173461675644,
- 0.02210160158574581,
- -0.01064898818731308,
- 0.04121290147304535,
- 0.11143381893634796,
- -0.01180252805352211,
- 0.006278736516833305,
- 0.005322821903973818,
- -0.0021976062562316656,
- -0.011361891403794289,
- 0.010657204315066338,
- 0.03676344081759453,
- -0.0069371056742966175,
- -0.008507126942276955,
- -0.1009306013584137,
- -0.03703886643052101,
- 0.14763255417346954,
- 0.006570653524249792,
- 0.02882879413664341,
- -0.01704240031540394,
- -0.022168390452861786,
- -0.01860763505101204,
- -0.09119363129138947,
- 0.03385830670595169,
- -0.001506777829490602,
- -0.06324142962694168,
- -0.03531814366579056,
- -0.0053377533331513405,
- -1.537329730183501e-8,
- -0.007000769022852182,
- -0.012141678482294083,
- -0.007095556706190109,
- -0.05237968638539314,
- 0.03805689513683319,
- -0.10199778527021408,
- -0.0015716954367235303,
- -0.001919878413900733,
- -0.006083429325371981,
- 0.04870754852890968,
- 0.02999393828213215,
- -0.028679778799414635,
- -0.024636587128043175,
- -0.006999744102358818,
- 0.016735432669520378,
- -0.015012575313448906,
- 0.033643148839473724,
- 0.13635405898094177,
- -0.022586889564990997,
- -0.013333146460354328,
- 0.06530610471963882,
- -0.001968907192349434,
- 0.09972196817398071,
- 0.04422423243522644,
- 0.004605537746101618,
- -0.017950819805264473,
- 0.007025925442576408,
- 0.062127310782670975,
- -0.03173835575580597,
- 0.0032468584831804037,
- -0.006562213879078627,
- 0.0783531591296196,
- 0.01142699271440506,
- -0.040540359914302826,
- 0.051068104803562164,
- -0.06493733078241348,
- 0.03137418255209923,
- -0.02013510651886463,
- 0.009550829418003559,
- 0.015825022011995316,
- -0.06475209444761276,
- -0.04192196577787399,
- 0.07969547808170319,
- 0.050704918801784515,
- -0.01931193098425865,
- -0.0368628092110157,
- 0.05327058210968971,
- -0.037637483328580856,
- 0.060161203145980835,
- -0.05453233793377876,
- 0.03652755171060562,
- 0.007613326422870159,
- 0.04733756557106972,
- -0.016963867470622063,
- -0.07361020892858505,
- 0.035517554730176926,
- 0.04402604326605797,
- 0.02601216733455658,
- -0.17732758820056915,
- 0.02910824865102768,
- 0.0421060249209404,
- -0.016394032165408134,
- 0.009911035187542439,
- -0.018684132024645805
- ]
- },
- {
- "keyword": "psychiatrist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03713104501366615,
- 0.011818616650998592,
- -0.058075979351997375,
- 0.07403893023729324,
- -0.13792112469673157,
- 0.007888528518378735,
- 0.10443304479122162,
- 0.07450313121080399,
- -0.0029747039079666138,
- -0.0002676672884263098,
- -0.06749173998832703,
- 0.0031398176215589046,
- -0.025185834616422653,
- 0.030703099444508553,
- 0.007005433086305857,
- 0.0714045837521553,
- -0.007951266132295132,
- -0.017831899225711823,
- -0.020325232297182083,
- -0.040869150310754776,
- -0.16386014223098755,
- 0.04860582575201988,
- 0.01478057075291872,
- 0.019582873210310936,
- -0.02732941508293152,
- 0.10044488310813904,
- -0.0404694601893425,
- -0.013613601215183735,
- 0.013586373068392277,
- -0.02205473557114601,
- 0.015731319785118103,
- 0.021558018401265144,
- 0.004039302002638578,
- 0.03268371522426605,
- -0.011459839530289173,
- 0.021331490948796272,
- -0.020960349589586258,
- 0.06810973584651947,
- 0.044511646032333374,
- 0.03980199247598648,
- -0.05042189732193947,
- -0.02039511688053608,
- 0.018552590161561966,
- -0.006939393002539873,
- -0.03214136138558388,
- -0.05766718462109566,
- -0.01677229441702366,
- 0.020803093910217285,
- 0.016125012189149857,
- -0.07058224827051163,
- -0.04329098016023636,
- 0.015211855061352253,
- -0.022558648139238358,
- 0.08577299863100052,
- 0.002455046633258462,
- -0.051315195858478546,
- 0.013630540110170841,
- 0.09044407308101654,
- -0.06802961975336075,
- 0.10085119307041168,
- -0.034335020929574966,
- 0.006424975115805864,
- -0.039699118584394455,
- 0.008114893920719624,
- 0.1158018633723259,
- 0.01720554754137993,
- -0.05326075851917267,
- 0.003401675494387746,
- 0.054592620581388474,
- -0.00306309899315238,
- -0.05173952877521515,
- -0.06108371913433075,
- 0.017977362498641014,
- -0.02444453164935112,
- 0.05601795017719269,
- -0.05926976725459099,
- 0.06574707478284836,
- 0.0011417330242693424,
- 0.06701628863811493,
- 0.01620424911379814,
- 0.07445747405290604,
- -0.025307849049568176,
- -0.04880257323384285,
- 0.02446078136563301,
- 0.009625221602618694,
- -0.03199205547571182,
- 0.05389656499028206,
- 0.0652666836977005,
- -0.05937795713543892,
- 0.005818740464746952,
- -0.03192935138940811,
- -0.03978736698627472,
- 0.0473187118768692,
- -0.004181533586233854,
- -0.0364798940718174,
- 0.006961071398109198,
- -0.07725408673286438,
- -0.0608481839299202,
- -0.10329706966876984,
- 0.25933384895324707,
- 0.008491422981023788,
- 0.008808888494968414,
- 0.013096069917082787,
- 0.04119081422686577,
- -0.012252702377736568,
- -0.026982661336660385,
- -0.0006570841651409864,
- -0.0021580527536571026,
- -0.039765868335962296,
- -0.003029746236279607,
- -0.07065737247467041,
- -0.04261550307273865,
- -0.01320317666977644,
- -0.017321081832051277,
- 0.0242175180464983,
- 0.04340478777885437,
- 0.001907551777549088,
- 0.016017384827136993,
- 0.008630391210317612,
- 0.03858902305364609,
- 0.049136269837617874,
- 0.04588056728243828,
- -0.04600923880934715,
- 0.08541066199541092,
- -0.04659215360879898,
- 0.0462958961725235,
- -0.055869247764348984,
- -4.873900064252633e-33,
- -0.0007135419873520732,
- -0.048571474850177765,
- 0.07286299765110016,
- -0.005901294760406017,
- -0.052899546921253204,
- 0.10474374145269394,
- 0.013420711271464825,
- 0.013440917246043682,
- 0.04561728239059448,
- -0.0073640719056129456,
- 0.015050152316689491,
- -0.00817581545561552,
- -0.045503634959459305,
- 0.06293370574712753,
- -0.04604116454720497,
- 0.04215322062373161,
- -0.003186861053109169,
- 0.02891605719923973,
- -0.010891997255384922,
- -0.0026145444717258215,
- -0.022445617243647575,
- 0.12469300627708435,
- -0.024602139368653297,
- 0.10374965518712997,
- 0.00958319753408432,
- -0.013377916067838669,
- 0.0015390794724225998,
- -0.0005117278778925538,
- 0.08570003509521484,
- 0.01874340884387493,
- -0.01270558312535286,
- 0.06452851742506027,
- -0.058650944381952286,
- -0.018208760768175125,
- -0.0350491963326931,
- -0.04125915467739105,
- -0.03262105584144592,
- -0.018915269523859024,
- 0.036743804812431335,
- -0.015722621232271194,
- 0.0038001136854290962,
- 0.05443421006202698,
- 0.0006940945168025792,
- 0.04250209406018257,
- 0.013875225558876991,
- 0.03363746404647827,
- -0.05831063911318779,
- -0.028370195999741554,
- -0.09735213220119476,
- 0.10305433720350266,
- -0.05440574511885643,
- 0.0035377461463212967,
- -0.03336362913250923,
- -0.0007008645334281027,
- -0.015839654952287674,
- -0.08071593940258026,
- 0.04414263367652893,
- -0.04089401289820671,
- 0.018971143290400505,
- -0.034434884786605835,
- 0.07661519944667816,
- 0.12385091930627823,
- -0.02721545100212097,
- -0.04299177974462509,
- 0.042072899639606476,
- -0.1301889270544052,
- 0.06893394142389297,
- 0.002798729809001088,
- 0.02245824970304966,
- 0.03175182640552521,
- -0.08173589408397675,
- 0.06486592441797256,
- 0.06931795179843903,
- 0.02968348190188408,
- -0.01216171681880951,
- -0.05653287470340729,
- -0.0019615436904132366,
- -0.046240873634815216,
- -0.09235908091068268,
- -0.0227082297205925,
- 0.02198420837521553,
- 0.027034882456064224,
- -0.06436707079410553,
- 0.01764649525284767,
- -0.00976471696048975,
- -0.003489541122689843,
- -0.0232529379427433,
- -0.00011203913891222328,
- 0.006724763195961714,
- 0.009391571395099163,
- -0.09395035356283188,
- -0.03578902781009674,
- 0.06236760690808296,
- 0.07755886763334274,
- -0.060968637466430664,
- 2.5664610405831236e-33,
- -0.006690588779747486,
- -0.07446645945310593,
- -0.020401882007718086,
- 0.02632906287908554,
- 0.0498526431620121,
- 0.009156273677945137,
- -0.009805703535676003,
- -0.01692572422325611,
- 0.002932654693722725,
- 0.08513141423463821,
- -0.05005420371890068,
- -0.040648359805345535,
- 0.10652820765972137,
- 0.0406324528157711,
- -0.004506467841565609,
- -0.048696111887693405,
- -0.08436041325330734,
- -0.060622744262218475,
- -0.02504485659301281,
- -0.010982364416122437,
- -0.0532965324819088,
- 0.03893672302365303,
- -0.04890064150094986,
- 0.014619887806475163,
- -0.01564490608870983,
- 0.029295602813363075,
- 0.10321780294179916,
- -0.05370134115219116,
- -0.01512359268963337,
- 0.020876368507742882,
- 0.012993142940104008,
- -0.0034217776264995337,
- -0.06766530871391296,
- -0.07643279433250427,
- -0.02199806645512581,
- 0.1270233690738678,
- -0.002376487012952566,
- -0.05000236630439758,
- -0.05698376148939133,
- -0.06005803495645523,
- 0.014339468441903591,
- 0.0032135024666786194,
- 0.01877588778734207,
- 0.050539497286081314,
- -0.0018617782043293118,
- 0.013576005585491657,
- -0.014100855216383934,
- 0.03218444436788559,
- -0.015298094600439072,
- -0.008823062293231487,
- -0.11570653319358826,
- 0.011394059285521507,
- -0.003273984417319298,
- -0.029948513954877853,
- -0.01580473966896534,
- -0.09004431217908859,
- -0.10302271693944931,
- -0.07720965147018433,
- -0.060007937252521515,
- 0.001271502231247723,
- 0.04969662055373192,
- 0.010584518313407898,
- -0.0577610619366169,
- 0.06090854853391647,
- -0.10124757140874863,
- -0.0055718086659908295,
- 0.00618760148063302,
- 0.027848413214087486,
- -0.04521951824426651,
- 0.006331285927444696,
- 0.12374194711446762,
- 0.006034716963768005,
- 0.014474633149802685,
- 0.06544345617294312,
- 0.009937907569110394,
- 0.02896544151008129,
- -0.0644230917096138,
- -0.005473131779581308,
- -0.01988738588988781,
- -0.018466763198375702,
- -0.022920643910765648,
- -0.09054712951183319,
- 0.0018204055959358811,
- 0.06838591396808624,
- -0.06942020356655121,
- -0.0612986721098423,
- 0.04329153522849083,
- 0.056134216487407684,
- -0.003837083699181676,
- -0.047112125903367996,
- 0.04445907846093178,
- 0.017998557537794113,
- -0.0657363310456276,
- -0.04631860926747322,
- 0.024221297353506088,
- -1.247629910494652e-8,
- 0.06812243163585663,
- -0.08402824401855469,
- -0.004655290860682726,
- -0.031542468816041946,
- 0.06448156386613846,
- -0.0080227330327034,
- -0.001217678771354258,
- 0.026970762759447098,
- -0.020743655040860176,
- 0.0683722272515297,
- 0.0269196555018425,
- -0.013654201291501522,
- -0.014346920885145664,
- 0.009873646311461926,
- 0.047453805804252625,
- -0.06090206280350685,
- 0.05170634388923645,
- 0.10983922332525253,
- 0.02147405594587326,
- -0.008375952951610088,
- -0.050884000957012177,
- 0.007684800773859024,
- 0.03260524570941925,
- -0.013187858276069164,
- -0.008081617765128613,
- 0.004246515687555075,
- 0.004217832814902067,
- -0.034043923020362854,
- -0.06623213738203049,
- 0.06849496066570282,
- 0.05305415764451027,
- 0.04635835811495781,
- -0.00868303794413805,
- -0.03525703027844429,
- -0.05154621601104736,
- -0.07198132574558258,
- 0.05710894614458084,
- -0.0468849316239357,
- -0.005670065525919199,
- -0.03328917175531387,
- 0.031620193272829056,
- -0.00999410916119814,
- 0.026187820360064507,
- 0.0053434246219694614,
- -0.02082415483891964,
- -0.03473126143217087,
- 0.13742679357528687,
- -0.040914386510849,
- 0.026652807369828224,
- -0.04249855875968933,
- 0.028549544513225555,
- 0.05737541988492012,
- 0.05004504323005676,
- 0.01572183333337307,
- 0.05900269374251366,
- -0.01976882666349411,
- -0.01967666856944561,
- 0.02315870299935341,
- -0.13908207416534424,
- -0.0039006450679153204,
- 0.1211584061384201,
- 0.03553517535328865,
- 0.026283515617251396,
- 0.04205489531159401
- ]
- },
- {
- "keyword": "psychologist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.010751601308584213,
- 0.06289085000753403,
- -0.05315664783120155,
- 0.08945434540510178,
- -0.02413969486951828,
- 0.028128495439887047,
- 0.069306880235672,
- 0.05787140130996704,
- -0.006530242506414652,
- 0.026748841628432274,
- -0.018369274213910103,
- -0.013855843804776669,
- -0.07083159685134888,
- 0.04995506629347801,
- -0.009959345683455467,
- 0.049483977258205414,
- -0.005174003541469574,
- -0.05375970900058746,
- -0.006786446552723646,
- -0.05176210030913353,
- -0.10475613176822662,
- 0.01166151836514473,
- 0.05235777422785759,
- 0.008227950893342495,
- -0.02615482732653618,
- 0.08002154529094696,
- -0.03278825804591179,
- -0.05533277615904808,
- 0.028217166662216187,
- -0.016068177297711372,
- 0.03254706412553787,
- -0.011820181272923946,
- 0.022285187616944313,
- 0.022505376487970352,
- -0.023979509249329567,
- -0.03184198588132858,
- -0.00759823527187109,
- 0.09818436950445175,
- 0.044359564781188965,
- 0.03420049324631691,
- -0.044716473668813705,
- -0.03446668013930321,
- 0.021772056818008423,
- 0.010527709499001503,
- -0.07601097971200943,
- -0.03767046332359314,
- -0.04202822968363762,
- -0.01148441806435585,
- -0.04983525723218918,
- -0.04547121748328209,
- -0.06469593942165375,
- 0.05476371943950653,
- 0.02428961731493473,
- 0.001036016270518303,
- 0.017576605081558228,
- -0.03016817197203636,
- 0.04511062800884247,
- 0.10733354091644287,
- -0.056977737694978714,
- 0.07297682762145996,
- 0.055284805595874786,
- -0.04053574427962303,
- -0.07048521935939789,
- 0.06108321622014046,
- 0.10345287621021271,
- 0.04785171151161194,
- -0.06349031627178192,
- -0.017716510221362114,
- 0.032586462795734406,
- -0.02598961628973484,
- -0.0391799695789814,
- -0.056259799748659134,
- 0.03914296627044678,
- 0.014084117487072945,
- 0.10386494547128677,
- -0.052816443145275116,
- 0.010044676251709461,
- -0.04174378514289856,
- 0.0668814554810524,
- 0.04676728695631027,
- 0.05477616935968399,
- -0.0020691417157649994,
- -0.06294162571430206,
- 0.004855714272707701,
- 0.04019194096326828,
- -0.021435150876641273,
- -0.001827434403821826,
- 0.05687549337744713,
- -0.07990375906229019,
- 0.02602068893611431,
- -0.031135618686676025,
- -0.04827798530459404,
- 0.009641238488256931,
- 0.034245241433382034,
- -0.09941215813159943,
- 0.025264592841267586,
- -0.07113777101039886,
- -0.04677633196115494,
- -0.05460156872868538,
- 0.2009677290916443,
- 0.007142264395952225,
- 0.05645691975951195,
- -0.02963990531861782,
- 0.11583246290683746,
- 0.007760229520499706,
- 0.006996491923928261,
- -0.04143675044178963,
- -0.027871470898389816,
- -0.016455423086881638,
- 0.029690559953451157,
- -0.05644654110074043,
- 0.002054019132629037,
- -0.01447882130742073,
- 0.059886638075113297,
- 0.07233678549528122,
- 0.00461178831756115,
- -0.031475190073251724,
- 0.05982214957475662,
- 0.039372265338897705,
- 0.011960911564528942,
- 0.11941956728696823,
- 0.04128144308924675,
- -0.058399543166160583,
- 0.06634050607681274,
- -0.017715856432914734,
- 0.006661036517471075,
- -0.026418985798954964,
- -4.090613811686017e-33,
- 0.038528695702552795,
- -0.05544866621494293,
- 0.021533682942390442,
- -0.030616076663136482,
- -0.053590208292007446,
- 0.09501023590564728,
- -0.013506205752491951,
- -0.0015148110687732697,
- 0.0401126891374588,
- 0.05493230000138283,
- 0.0057958317920565605,
- 0.053411491215229034,
- 0.0467880479991436,
- 0.08333535492420197,
- -0.07441484183073044,
- 0.014913929626345634,
- -0.039669524878263474,
- 0.08694382011890411,
- 0.012487932108342648,
- -0.028923459351062775,
- -0.014859810471534729,
- 0.10046344995498657,
- 0.0025343825109302998,
- 0.0526740737259388,
- 0.019269783049821854,
- -0.0018786576110869646,
- -0.000003866574843414128,
- 0.0010916723404079676,
- 0.07988082617521286,
- 0.00808190181851387,
- -0.05668055638670921,
- 0.03877897560596466,
- -0.08058351278305054,
- -0.025322556495666504,
- -0.0033688435796648264,
- -0.031237544491887093,
- 0.003759966464713216,
- -0.05354255065321922,
- 0.021564675495028496,
- -0.015811989083886147,
- -0.029272496700286865,
- 0.06600242853164673,
- 0.031823594123125076,
- 0.039119504392147064,
- 0.00013203322305344045,
- 0.05500762537121773,
- -0.05857890844345093,
- -0.06961432099342346,
- -0.09401041269302368,
- 0.04021851718425751,
- -0.12762366235256195,
- -0.00020576272800099105,
- -0.007711673155426979,
- -0.040922291576862335,
- 0.009761861525475979,
- -0.047195784747600555,
- 0.06077365577220917,
- -0.02477956749498844,
- 0.04112205281853676,
- -0.05210059508681297,
- 0.08803973346948624,
- 0.06892568618059158,
- -0.07360903918743134,
- -0.043736737221479416,
- 0.04272261634469032,
- -0.06371544301509857,
- 0.00903520081192255,
- -0.03583572059869766,
- 0.07970934361219406,
- 0.0037214690819382668,
- -0.09063617885112762,
- 0.11048456281423569,
- 0.07767470926046371,
- -0.013430383056402206,
- -0.0040610600262880325,
- -0.06752360612154007,
- 0.00932211335748434,
- -0.015799224376678467,
- -0.11778992414474487,
- -0.005967797711491585,
- 0.006702521815896034,
- -0.008445994928479195,
- -0.05999477207660675,
- 0.002310205949470401,
- 0.010839054360985756,
- 0.038143131881952286,
- -0.07727283239364624,
- -0.017600825056433678,
- 0.0016154891345649958,
- 0.023604953661561012,
- -0.057086579501628876,
- -0.055631570518016815,
- 0.05715847387909889,
- 0.09196802228689194,
- -0.05888301134109497,
- 2.44076175622985e-33,
- -0.007346758618950844,
- 0.005896597635000944,
- 0.016352947801351547,
- -0.0015725574921816587,
- 0.0845198705792427,
- -0.017806921154260635,
- 0.025516275316476822,
- 0.03559696674346924,
- -0.014552735723555088,
- 0.022944511845707893,
- -0.03364744782447815,
- -0.08306095004081726,
- 0.0661364272236824,
- 0.08930551260709763,
- 0.037006448954343796,
- 0.0008929899777285755,
- -0.0722191259264946,
- -0.029353324323892593,
- -0.075871042907238,
- -0.023802991956472397,
- -0.048567481338977814,
- 0.09365206956863403,
- -0.09226243942975998,
- -0.025177353993058205,
- 0.027133719995617867,
- 0.016793467104434967,
- 0.016822243109345436,
- -0.08460172265768051,
- -0.055710870772600174,
- -0.015267622657120228,
- -0.009853944182395935,
- -0.016311796382069588,
- -0.042420994490385056,
- -0.035342246294021606,
- -0.00536518357694149,
- 0.0778190866112709,
- -0.006494048051536083,
- -0.04120108112692833,
- -0.07003849744796753,
- -0.056548792868852615,
- 0.012561793439090252,
- 0.003535667434334755,
- 0.0009228429407812655,
- 0.01945015974342823,
- 0.025650152936577797,
- 0.03512229025363922,
- -0.04100651293992996,
- 0.03431357070803642,
- -0.04067207872867584,
- 0.024977345019578934,
- -0.08429569005966187,
- 0.03330815210938454,
- -0.03590959310531616,
- -0.04507874697446823,
- 0.016868142411112785,
- -0.09291702508926392,
- -0.03713246434926987,
- -0.04553677514195442,
- -0.06997843831777573,
- -0.0013136775232851505,
- 0.06290315091609955,
- 0.019181279465556145,
- -0.04586049169301987,
- 0.05865063518285751,
- -0.05927545204758644,
- 0.031327370554208755,
- -0.03566138818860054,
- 0.0530724972486496,
- -0.002068738918751478,
- 0.015273675322532654,
- 0.1314205676317215,
- 0.03590269386768341,
- 0.00984975229948759,
- 0.019829830154776573,
- 0.053338613361120224,
- 0.026146259158849716,
- -0.11253906041383743,
- -0.042585622519254684,
- -0.04669470340013504,
- 0.06436936557292938,
- -0.07988425344228745,
- -0.12177331000566483,
- 0.024666666984558105,
- 0.11871415376663208,
- -0.0301833413541317,
- -0.01777094230055809,
- 0.017852608114480972,
- 0.026884004473686218,
- -0.017662296071648598,
- -0.04705246910452843,
- -0.010289288125932217,
- 0.005105082411319017,
- -0.04401639476418495,
- 0.03241058439016342,
- 0.056636128574609756,
- -1.1742768535327741e-8,
- 0.01970883458852768,
- -0.09944029152393341,
- 0.009142882190644741,
- -0.03818781301379204,
- 0.03840917348861694,
- 0.03424150496721268,
- -0.009120235219597816,
- 0.009801597334444523,
- -0.04708809405565262,
- 0.060268063098192215,
- 0.0031471801921725273,
- 0.011134868487715721,
- -0.007237845100462437,
- 0.023965831845998764,
- 0.003023891244083643,
- -0.09292303025722504,
- 0.08621174097061157,
- 0.060300856828689575,
- 0.030828962102532387,
- -0.024488795548677444,
- 0.0037808269262313843,
- 0.010804124176502228,
- -0.020201552659273148,
- 0.034401729702949524,
- -0.010325271636247635,
- -0.005782692693173885,
- -0.06308077275753021,
- -0.014323086477816105,
- -0.07204306870698929,
- 0.047702688723802567,
- 0.012310662306845188,
- 0.06842562556266785,
- 0.046375423669815063,
- -0.0344243049621582,
- 0.047119319438934326,
- -0.03782172128558159,
- 0.057016994804143906,
- -0.029287759214639664,
- -0.009269071742892265,
- -0.01679202914237976,
- 0.004573990125209093,
- -0.011251693591475487,
- 0.023313399404287338,
- 0.05521399527788162,
- 0.0068821352906525135,
- -0.06719828397035599,
- 0.030064329504966736,
- -0.03693674877285957,
- 0.025008928030729294,
- -0.04522306099534035,
- 0.00776361720636487,
- 0.018362052738666534,
- -0.005225210450589657,
- -0.004414470866322517,
- 0.07442106306552887,
- -0.02028874307870865,
- -0.030132364481687546,
- 0.0007638848037458956,
- -0.18709678947925568,
- 0.002237043110653758,
- 0.14504611492156982,
- 0.06112951412796974,
- 0.0611470602452755,
- -0.022983239963650703
- ]
- },
- {
- "keyword": "radiologist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.002352690091356635,
- 0.04779445007443428,
- -0.029982706531882286,
- 0.036660950630903244,
- -0.0665750727057457,
- -0.08059962093830109,
- 0.1366337090730667,
- 0.06947913765907288,
- -0.048042427748441696,
- 0.01704731583595276,
- 0.004989770241081715,
- -0.029945604503154755,
- 0.04985152930021286,
- 0.11178194731473923,
- -0.12921299040317535,
- -0.03730934113264084,
- -0.02723119594156742,
- -0.054490189999341965,
- 0.020075567066669464,
- -0.05217771232128143,
- -0.20255006849765778,
- 0.10341629385948181,
- 0.011808697134256363,
- -0.008605238050222397,
- 0.07784246653318405,
- -0.02212413027882576,
- -0.019085748121142387,
- -0.06267601251602173,
- -0.054518118500709534,
- -0.046421658247709274,
- 0.005054004490375519,
- 0.04253852367401123,
- 0.005400443449616432,
- 0.03919996693730354,
- 0.016168955713510513,
- -0.0009458996937610209,
- 0.014723667874932289,
- 0.03434786945581436,
- -0.004834782797843218,
- 0.056023310869932175,
- -0.05890768766403198,
- -0.06492836028337479,
- 0.010310092009603977,
- 0.03655766695737839,
- -0.08704043924808502,
- 0.012114275246858597,
- 0.05982034653425217,
- -0.04046664014458656,
- 0.07597006857395172,
- 0.03949399292469025,
- 0.01095189806073904,
- -0.05639992281794548,
- -0.08878035098314285,
- 0.07116831094026566,
- 0.016329266130924225,
- -0.012674106284976006,
- -0.03273111954331398,
- -0.007922821678221226,
- -0.06385189294815063,
- 0.014840335585176945,
- -0.034341610968112946,
- 0.005795344244688749,
- -0.05511247366666794,
- 0.04137320816516876,
- 0.12048467248678207,
- 0.03090723045170307,
- -0.0014104057336226106,
- -0.030929964035749435,
- 0.016465025022625923,
- -0.009973403066396713,
- 0.03909451141953468,
- -0.004069112241268158,
- 0.034411877393722534,
- 0.03841426968574524,
- 0.016648050397634506,
- -0.030992377549409866,
- 0.0727192685008049,
- 0.05124223604798317,
- 0.11433190107345581,
- -0.0017761989729478955,
- 0.03795255348086357,
- -0.034627318382263184,
- -0.07126248627901077,
- -0.07557104527950287,
- 0.039248235523700714,
- 0.004518324509263039,
- -0.02719142846763134,
- 0.04840881749987602,
- -0.05836700648069382,
- -0.05363912507891655,
- 0.0037598011549562216,
- -0.014872212894260883,
- -0.05245676636695862,
- -0.0011320550693199039,
- -0.021519411355257034,
- 0.03290516138076782,
- 0.03378669545054436,
- -0.04132840409874916,
- -0.020075034350156784,
- 0.15192735195159912,
- 0.0448392853140831,
- -0.05147211253643036,
- 0.0006128189852461219,
- 0.09518137574195862,
- -0.055317219346761703,
- -0.12284576892852783,
- -0.034474872052669525,
- 0.00649285176768899,
- -0.03507088124752045,
- -0.02986319549381733,
- 0.04591839760541916,
- 0.08333796262741089,
- -0.023961704224348068,
- -0.003226260654628277,
- 0.015848433598876,
- 0.08387584984302521,
- 0.046449583023786545,
- 0.06462296843528748,
- -0.005709927529096603,
- 0.021718746051192284,
- -0.08277915418148041,
- -0.021410733461380005,
- -0.09713000804185867,
- -0.022947173565626144,
- 0.028857780620455742,
- 0.03197232261300087,
- -0.0063342261128127575,
- -1.628093287680462e-33,
- 0.012818397954106331,
- 0.0729629173874855,
- 0.05627099424600601,
- 0.019085001200437546,
- -0.01769484207034111,
- 0.07651460915803909,
- -0.03246184438467026,
- 0.018647918477654457,
- 0.017865432426333427,
- -0.008137872442603111,
- -0.00024046891485340893,
- 0.0885411724448204,
- -0.001103956252336502,
- -0.03529081121087074,
- 0.011895284987986088,
- 0.05223783850669861,
- -0.08836144953966141,
- 0.10462505370378494,
- -0.1142449602484703,
- -0.001981523120775819,
- -0.046602532267570496,
- 0.031554706394672394,
- -0.0494762659072876,
- 0.10191936045885086,
- 0.030917828902602196,
- 0.025753125548362732,
- -0.021486949175596237,
- -0.07590626925230026,
- 0.09456143528223038,
- -0.007095556240528822,
- -0.02554665319621563,
- 0.029413068667054176,
- -0.027578309178352356,
- 0.017183074727654457,
- -0.030909322202205658,
- -9.231904982698325e-7,
- -0.07194220274686813,
- -0.030065316706895828,
- 0.052764639258384705,
- -0.008616895414888859,
- 0.04083040729165077,
- 0.03510625287890434,
- 0.030122611671686172,
- 0.023638373240828514,
- 0.029489003121852875,
- -0.007903213612735271,
- 0.01481007132679224,
- 0.0006882498855702579,
- -0.023262418806552887,
- -0.008684602566063404,
- -0.0644136369228363,
- -0.03048798069357872,
- -0.03944733366370201,
- -0.058131154626607895,
- 0.10557091981172562,
- 0.013353425078094006,
- 0.06029851362109184,
- 0.025425834581255913,
- -0.028789078816771507,
- -0.004928565584123135,
- 0.04372495785355568,
- 0.07611773908138275,
- 0.006113776005804539,
- 0.025100519880652428,
- 0.014776953496038914,
- -0.11739390343427658,
- -0.046393781900405884,
- -0.042497579008340836,
- 0.017302772030234337,
- 0.064328633248806,
- -0.10738003253936768,
- 0.06349893659353256,
- 0.07498946785926819,
- -0.05108435079455376,
- 0.019500287249684334,
- 0.036615077406167984,
- -0.04293804615736008,
- 0.006473548244684935,
- -0.07285376638174057,
- 0.0022941255010664463,
- -0.06544152647256851,
- -0.009731277823448181,
- -0.0008570195059292018,
- 0.002504318952560425,
- 0.025184132158756256,
- 0.046418990939855576,
- -0.07730838656425476,
- 0.000533432699739933,
- 0.030343616381287575,
- 0.05848592519760132,
- -0.0655677318572998,
- 0.02899174578487873,
- 0.0006962292827665806,
- 0.0350065715610981,
- -0.04495612159371376,
- 8.076103530919982e-34,
- -0.047246672213077545,
- -0.06095859780907631,
- 0.016965700313448906,
- 0.020505528897047043,
- 0.08195444196462631,
- -0.09014418721199036,
- 0.04725949466228485,
- 0.0375908799469471,
- 0.00034675991628319025,
- 0.02438102662563324,
- 0.08179500699043274,
- 0.0062653799541294575,
- -0.02694397047162056,
- -0.012466870248317719,
- -0.01734534464776516,
- -0.020615169778466225,
- -0.02447388879954815,
- -0.04248543456196785,
- -0.0070987544022500515,
- 0.016574515029788017,
- -0.01043051015585661,
- 0.046370379626750946,
- -0.04065536707639694,
- -0.05713373050093651,
- -0.03663348779082298,
- 0.008025920949876308,
- 0.10919541120529175,
- -0.04293898865580559,
- 0.01963750831782818,
- 0.013492896221578121,
- -0.07539644837379456,
- -0.012058505788445473,
- -0.008028875105082989,
- -0.019802609458565712,
- 0.05116408318281174,
- 0.10917655378580093,
- 0.007667498663067818,
- 0.05477499961853027,
- -0.039154745638370514,
- 0.034020476043224335,
- 0.007999690249562263,
- 0.007560095749795437,
- 0.0314934179186821,
- 0.039624907076358795,
- 0.005289698485285044,
- -0.062350597232580185,
- 0.025551196187734604,
- 0.06520713120698929,
- 0.003994519356638193,
- -0.01925804279744625,
- -0.05218886956572533,
- -0.03964700177311897,
- 0.0058363801799714565,
- -0.0029578106477856636,
- -0.0306500606238842,
- -0.01919127069413662,
- -0.07497473806142807,
- -0.027890292927622795,
- 0.025276727974414825,
- -0.004598282743245363,
- 0.04224149137735367,
- -0.018827319145202637,
- -0.01505426224321127,
- 0.005553415510803461,
- -0.10092534869909286,
- 0.07098373770713806,
- -0.0001212559945997782,
- 0.012841352261602879,
- -0.03768843784928322,
- 0.06709815561771393,
- 0.08767198026180267,
- -0.04574330896139145,
- -0.023910120129585266,
- 0.02311534248292446,
- 0.020481398329138756,
- 0.0029380035120993853,
- -0.005312015768140554,
- 0.009874565526843071,
- -0.032014843076467514,
- -0.03647014871239662,
- -0.00005836499985889532,
- -0.07580791413784027,
- -0.042571164667606354,
- 0.1217498853802681,
- 0.03289910778403282,
- 0.07328499108552933,
- -0.010155821219086647,
- -0.0608857199549675,
- -0.024744350463151932,
- -0.10337173193693161,
- 0.06775622814893723,
- 0.05299878865480423,
- -0.06064491346478462,
- -0.037397563457489014,
- 0.019593877717852592,
- -1.1839489388876245e-8,
- -0.06186792999505997,
- -0.039241090416908264,
- -0.03259510174393654,
- -0.06950846314430237,
- 0.05080828443169594,
- -0.06399103999137878,
- 0.000947649241425097,
- 0.04725855216383934,
- 0.04457489773631096,
- 0.012081487104296684,
- -0.006991117261350155,
- 0.010905511677265167,
- 0.0036195507273077965,
- -0.0325898751616478,
- 0.09021106362342834,
- -0.03673240542411804,
- -0.000831006036605686,
- 0.05179349333047867,
- -0.022252138704061508,
- -0.0008015374769456685,
- -0.017242643982172012,
- -0.054604433476924896,
- 0.10896643251180649,
- 0.06503444910049438,
- -0.04109436273574829,
- 0.028238927945494652,
- 0.058291323482990265,
- 0.015939168632030487,
- 0.04959022253751755,
- 0.07727108895778656,
- 0.015924708917737007,
- 0.06836669147014618,
- -0.026088658720254898,
- -0.02900090627372265,
- -0.0069379801861941814,
- -0.05010959506034851,
- 0.014279545284807682,
- -0.047484878450632095,
- -0.022025344893336296,
- 0.06290265172719955,
- -0.02374204993247986,
- 0.009881772100925446,
- 0.04203284904360771,
- 0.03746313601732254,
- -0.0678853690624237,
- -0.032670408487319946,
- 0.10253889113664627,
- -0.01017690822482109,
- 0.060206733644008636,
- -0.07128243893384933,
- 0.005372281186282635,
- -0.044974200427532196,
- 0.05622158944606781,
- -0.06959468871355057,
- -0.10120957344770432,
- 0.0665605440735817,
- 0.12319718301296234,
- -0.043623026460409164,
- -0.09608311951160431,
- 0.07644699513912201,
- 0.005885373335331678,
- -0.04520957171916962,
- 0.014774927869439125,
- 0.010752622969448566
- ]
- },
- {
- "keyword": "pathologist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.007716881576925516,
- 0.020569216459989548,
- -0.009409407153725624,
- 0.07073357701301575,
- -0.07364865392446518,
- -0.0717148557305336,
- 0.06713221967220306,
- 0.020888473838567734,
- -0.013494163751602173,
- 0.009371439926326275,
- 0.016564348712563515,
- -0.04920172691345215,
- -0.011783177964389324,
- 0.09463892132043839,
- -0.1428937017917633,
- 0.05977177992463112,
- -0.04581663757562637,
- 0.031153269112110138,
- 0.06198052316904068,
- -0.08434801548719406,
- -0.14484407007694244,
- 0.14148086309432983,
- 0.026512596756219864,
- -0.03047625906765461,
- -0.025404050946235657,
- -0.052762266248464584,
- -0.0115455761551857,
- -0.036640629172325134,
- -0.05308662727475166,
- -0.03430141508579254,
- 0.01788392849266529,
- 0.001196505269035697,
- -0.06826231628656387,
- 0.006859182845801115,
- 0.022736936807632446,
- 0.02221602573990822,
- -0.00006843075243523344,
- 0.07592131942510605,
- 0.024444224312901497,
- 0.049863263964653015,
- 0.01753709465265274,
- -0.040373414754867554,
- 0.03959101065993309,
- -0.0016091407742351294,
- -0.004078018944710493,
- -0.036737095564603806,
- -0.008434629067778587,
- -0.017707664519548416,
- -0.009632578119635582,
- 0.004850297700613737,
- -0.03538576140999794,
- -0.06730187684297562,
- -0.09120871126651764,
- -0.057814594358205795,
- -0.02905733697116375,
- -0.04520630091428757,
- -0.0026371602434664965,
- 0.06819527596235275,
- -0.05149691179394722,
- -0.03659992665052414,
- 0.027492687106132507,
- 0.009958215989172459,
- -0.08090732991695404,
- 0.0314302071928978,
- 0.08239986002445221,
- -0.015126043930649757,
- 0.0031846859492361546,
- 0.004714537877589464,
- 0.06770876049995422,
- 0.004385219421237707,
- 0.042014822363853455,
- -0.013535688631236553,
- 0.04472053796052933,
- 0.05508775636553764,
- 0.018446067348122597,
- -0.0030622032936662436,
- -0.0030851210467517376,
- 0.07648511976003647,
- 0.08551909774541855,
- -0.045668985694646835,
- 0.07684964686632156,
- 0.011632019653916359,
- 0.00030819489620625973,
- 0.0009896840201690793,
- 0.03353508189320564,
- 0.045713335275650024,
- 0.013865558430552483,
- 0.0314975306391716,
- -0.06178583204746246,
- -0.014636433683335781,
- 0.10296086221933365,
- -0.06959806382656097,
- 0.0027464814484119415,
- -0.00929243490099907,
- -0.0656740665435791,
- 0.05961351841688156,
- -0.04622778668999672,
- -0.036540236324071884,
- -0.04343242943286896,
- 0.14184927940368652,
- -0.037196509540081024,
- -0.0880415216088295,
- -0.017227789387106895,
- 0.056118205189704895,
- 0.039567697793245316,
- -0.039552170783281326,
- -0.06759298592805862,
- -0.05890496447682381,
- 0.03738853707909584,
- 0.02011578343808651,
- -0.007540338207036257,
- 0.002730737440288067,
- -0.023170555010437965,
- 0.037452202290296555,
- 0.0627826675772667,
- 0.009991263970732689,
- 0.04135749489068985,
- 0.06953491270542145,
- 0.028656991198658943,
- 0.009874962270259857,
- -0.0739312395453453,
- 0.010055553168058395,
- -0.042365912348032,
- -0.04024464637041092,
- 0.016260048374533653,
- 0.0013443661155179143,
- 0.012283464893698692,
- -1.659110910178816e-33,
- 0.04431261494755745,
- 0.03136179968714714,
- 0.09830361604690552,
- -0.03604067862033844,
- 0.01557962317019701,
- 0.02505159191787243,
- -0.03082127310335636,
- -0.03687797114253044,
- 0.007129084784537554,
- -0.027361484244465828,
- 0.028441505506634712,
- -0.0026014246977865696,
- -0.03083333931863308,
- -0.007893146015703678,
- -0.032383423298597336,
- 0.04355035722255707,
- 0.0031710457988083363,
- 0.08926095813512802,
- -0.06478438526391983,
- -0.03956587240099907,
- -0.053628772497177124,
- 0.047449201345443726,
- -0.017754487693309784,
- -0.01781398244202137,
- 0.014365684241056442,
- -0.08296462148427963,
- 0.026824772357940674,
- -0.06897426396608353,
- 0.05974496155977249,
- 0.024305224418640137,
- -0.003569198539480567,
- -0.017822254449129105,
- -0.022563135251402855,
- 0.0032492768950760365,
- 0.004254746716469526,
- 0.04929885268211365,
- -0.00784835871309042,
- -0.03957022726535797,
- 0.014823838137090206,
- -0.015917429700493813,
- -0.008155347779393196,
- 0.00030418153619393706,
- 0.07100991159677505,
- 0.007012081332504749,
- -0.03207928314805031,
- 0.04894986376166344,
- 0.03226277977228165,
- -0.017989197745919228,
- -0.08955097943544388,
- 0.06101471558213234,
- -0.05215708538889885,
- -0.0018979898886755109,
- 0.01999780908226967,
- -0.02903037890791893,
- 0.06401555240154266,
- -0.026850808411836624,
- 0.03276579827070236,
- -0.0137769915163517,
- 0.03028426133096218,
- -0.024506667628884315,
- 0.10489434748888016,
- 0.14646413922309875,
- -0.052840832620859146,
- 0.025490902364253998,
- -0.02616080269217491,
- -0.13543131947517395,
- -0.010459239594638348,
- -0.05574262887239456,
- 0.019236857071518898,
- 0.06822527199983597,
- -0.10752483457326889,
- 0.04796794801950455,
- 0.06992761045694351,
- -0.03939858078956604,
- -0.0002823385875672102,
- -0.006299959495663643,
- -0.0895891934633255,
- -0.000322990701533854,
- -0.06111728027462959,
- -0.02255159430205822,
- -0.11749698966741562,
- 0.028237713500857353,
- 0.003956272266805172,
- 0.0044862073846161366,
- 0.019528942182660103,
- 0.05221476033329964,
- -0.07319957762956619,
- 0.0636197030544281,
- 0.02130231447517872,
- 0.013638450764119625,
- -0.008665643632411957,
- 0.027638452127575874,
- 0.0010154516203328967,
- 0.08375870436429977,
- -0.06963880360126495,
- 1.3704759865160804e-33,
- -0.07350750267505646,
- -0.06154300644993782,
- 0.1108095794916153,
- 0.06449148058891296,
- 0.02988210693001747,
- -0.05333583429455757,
- -0.015268376097083092,
- 0.040654994547367096,
- 0.06518155336380005,
- 0.029568349942564964,
- 0.010234249755740166,
- 0.0399443581700325,
- 0.07328677922487259,
- 0.0027342098765075207,
- 0.044950488954782486,
- -0.01997688226401806,
- -0.05864166095852852,
- -0.027992969378829002,
- -0.04680761694908142,
- -0.016293741762638092,
- -0.05377025157213211,
- 0.0221728328615427,
- -0.07729874551296234,
- -0.10556111484766006,
- -0.020478995516896248,
- 0.01474644523113966,
- 0.14622557163238525,
- -0.01783154159784317,
- -0.009286905638873577,
- 0.0021619144827127457,
- 0.003877282841131091,
- -0.01904275454580784,
- -0.06004631519317627,
- -0.10807879269123077,
- -0.05091563239693642,
- 0.1590774953365326,
- 0.03177177533507347,
- -0.013068408705294132,
- -0.04681823402643204,
- -0.03648281842470169,
- 0.019422920420765877,
- -0.010931801982223988,
- 0.015320983715355396,
- 0.028168385848402977,
- 0.05040441453456879,
- -0.017947498708963394,
- 0.04230864346027374,
- 0.10909128189086914,
- 0.01790422759950161,
- -0.0025806010235100985,
- -0.06334009021520615,
- 0.049397923052310944,
- 0.026576073840260506,
- 0.011058013886213303,
- 0.049340929836034775,
- 0.0018006800673902035,
- -0.1227925568819046,
- -0.02553335204720497,
- -0.034529149532318115,
- 0.005149305332452059,
- -0.012449615634977818,
- -0.0041915783658623695,
- -0.0400589294731617,
- 0.08341982215642929,
- -0.023413747549057007,
- 0.02781771309673786,
- 0.0048904018476605415,
- 0.0460851825773716,
- -0.075309157371521,
- 0.026179399341344833,
- 0.06219245120882988,
- 0.04382490739226341,
- -0.07117538899183273,
- -0.00599548639729619,
- 0.003322564298287034,
- -0.01968557760119438,
- -0.0417616106569767,
- -0.05046101659536362,
- -0.01696729101240635,
- 0.048625800758600235,
- -0.021807294338941574,
- -0.07851951569318771,
- -0.01176904421299696,
- 0.11494386941194534,
- 0.0314338281750679,
- -0.025498434901237488,
- 0.0005404312396422029,
- -0.07960774004459381,
- -0.011857455596327782,
- -0.008717124350368977,
- 0.10571592301130295,
- 0.0021416128147393465,
- -0.08607358485460281,
- -0.032051000744104385,
- -0.02855413220822811,
- -1.3200334159080285e-8,
- -0.04026016592979431,
- -0.054297734051942825,
- -0.01638646237552166,
- -0.09273210167884827,
- 0.07160162925720215,
- -0.0313064344227314,
- 0.02754983678460121,
- 0.10512889176607132,
- 0.019147921353578568,
- 0.11120970547199249,
- 0.0014981267740949988,
- -0.018684279173612595,
- 0.022033805027604103,
- 0.05133241415023804,
- 0.03495851904153824,
- -0.08623132109642029,
- 0.04553082957863808,
- 0.07421176880598068,
- -0.05615546926856041,
- 0.0013492928119376302,
- 0.02148653380572796,
- -0.04268451780080795,
- 0.06431892514228821,
- 0.032523855566978455,
- 0.024407684803009033,
- -0.013709912076592445,
- 0.008683756925165653,
- -0.014110594987869263,
- -0.026640551164746284,
- 0.041626330465078354,
- 0.004375416785478592,
- 0.05466960743069649,
- -0.07860106229782104,
- 0.00865987315773964,
- -0.020826047286391258,
- -0.03013378381729126,
- 0.016901565715670586,
- 0.0017749352846294641,
- -0.001989674521610141,
- 0.09411188960075378,
- -0.001991895493119955,
- 0.022408269345760345,
- 0.08067743480205536,
- 0.049004919826984406,
- -0.044941700994968414,
- -0.05966867879033089,
- 0.10283105075359344,
- 0.011068301275372505,
- 0.009816504083573818,
- -0.036410242319107056,
- 0.02249908074736595,
- -0.001416844897903502,
- 0.08585842698812485,
- -0.02344330959022045,
- 0.009448684751987457,
- -0.0060025546699762344,
- 0.09478646516799927,
- -0.010545831173658371,
- -0.0977318212389946,
- 0.07984944432973862,
- 0.048669420182704926,
- -0.03899465128779411,
- 0.05502483621239662,
- 0.01633693091571331
- ]
- },
- {
- "keyword": "anesthesiologist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.02142704464495182,
- 0.043701156973838806,
- -0.018423162400722504,
- 0.058556657284498215,
- -0.11416439712047577,
- -0.026812797412276268,
- 0.05933723598718643,
- 0.08247052133083344,
- 0.04001953825354576,
- -0.005896587390452623,
- -0.08834709227085114,
- 0.00033625843934714794,
- 0.027016647160053253,
- 0.06129195913672447,
- -0.18093754351139069,
- 0.01307198591530323,
- 0.026272721588611603,
- -0.05818137153983116,
- 0.05527365580201149,
- -0.04242197424173355,
- -0.08335041999816895,
- 0.03867571800947189,
- 0.015728754922747612,
- 0.0057998839765787125,
- 0.047166354954242706,
- -0.021942641586065292,
- -0.029942335560917854,
- -0.07264967262744904,
- -0.04238022118806839,
- 0.004548813682049513,
- -0.010044997557997704,
- -0.09563089907169342,
- 0.08130054920911789,
- -0.023576145991683006,
- -0.01024986244738102,
- 0.10300134867429733,
- 0.020916853100061417,
- 0.07236993312835693,
- 0.003104992676526308,
- 0.1176549568772316,
- 0.015016601420938969,
- -0.040586259216070175,
- -0.07404988259077072,
- 0.03193596750497818,
- -0.009693464264273643,
- -0.004609645809978247,
- -0.0038351183757185936,
- -0.07681835442781448,
- -0.018659841269254684,
- 0.07615606486797333,
- -0.03861520066857338,
- -0.033695779740810394,
- -0.03750981017947197,
- 0.03709441423416138,
- -0.014334230683743954,
- -0.05486374348402023,
- -0.0029730508103966713,
- 0.02328038401901722,
- -0.10052002966403961,
- -0.03637612983584404,
- -0.007558007724583149,
- 0.06578616797924042,
- -0.038545411080121994,
- 0.05398646742105484,
- 0.052750226110219955,
- 0.014433548785746098,
- 0.0385124534368515,
- -0.030377153307199478,
- -0.005201486870646477,
- -0.058753348886966705,
- 0.04221995174884796,
- -0.06293360888957977,
- 0.14337579905986786,
- 0.0480232797563076,
- 0.015735149383544922,
- -0.05852530524134636,
- 0.06488579511642456,
- -0.022057464346289635,
- -0.004128548316657543,
- -0.013046671636402607,
- 0.06844473630189896,
- -0.08812008798122406,
- -0.07270883023738861,
- -0.01899625174701214,
- 0.03636519983410835,
- 0.02822641283273697,
- -0.00827571377158165,
- -0.017911801114678383,
- -0.07543142139911652,
- -0.054162394255399704,
- 0.012906631454825401,
- -0.08675853908061981,
- 0.048218321055173874,
- -0.007146353367716074,
- 0.0547415167093277,
- 0.02610442042350769,
- -0.048879969865083694,
- 0.029946692287921906,
- -0.03121558204293251,
- 0.032904092222452164,
- -0.01136418804526329,
- 0.005324441008269787,
- -0.04296839237213135,
- 0.10141502320766449,
- 0.051490381360054016,
- -0.010568181052803993,
- -0.03962532803416252,
- -0.04388144984841347,
- 0.01769772171974182,
- -0.04684831202030182,
- 0.008778685703873634,
- 0.04470226913690567,
- 0.02696184068918228,
- 0.04410932585597038,
- 0.0303695909678936,
- 0.010776378214359283,
- -0.04618934541940689,
- 0.09197667241096497,
- 0.03425558656454086,
- 0.04108806699514389,
- 0.01509424764662981,
- -0.024183843284845352,
- -0.07794193923473358,
- -0.05127115547657013,
- -0.020396897569298744,
- 0.03473370149731636,
- -0.06577872484922409,
- 1.8991221299093864e-34,
- 0.10753259062767029,
- -0.02870330587029457,
- 0.07090464979410172,
- -0.013508085161447525,
- -0.002136648865416646,
- 0.07561978697776794,
- -0.08019622415304184,
- -0.004809961188584566,
- 0.08816499263048172,
- 0.04681752249598503,
- -0.04665709659457207,
- -0.03117411583662033,
- 0.02984350360929966,
- -0.08968664705753326,
- -0.048012278974056244,
- -0.0041057029739022255,
- -0.061397746205329895,
- 0.0018104120390489697,
- -0.06542277336120605,
- -0.02206415683031082,
- -0.05835270881652832,
- 0.03505640849471092,
- -0.07418034970760345,
- 0.053914543241262436,
- -0.012001249939203262,
- -0.03810222074389458,
- -0.005565323401242495,
- -0.03664960712194443,
- 0.04469282925128937,
- 0.011614072136580944,
- -0.058111440390348434,
- 0.015631910413503647,
- -0.02056189253926277,
- -0.03746427968144417,
- -0.0371021032333374,
- -0.015959348529577255,
- -0.040359191596508026,
- -0.0053063733503222466,
- 0.03549249470233917,
- -0.0584678128361702,
- -0.0689370408654213,
- 0.043840356171131134,
- 0.05549043044447899,
- 0.018982291221618652,
- -0.014815779402852058,
- 0.020730160176753998,
- 0.022377846762537956,
- 0.01396072469651699,
- 0.06324277818202972,
- -0.03201769292354584,
- -0.053944580256938934,
- -0.054787833243608475,
- 0.07176591455936432,
- -0.03706996142864227,
- 0.03666214272379875,
- 0.01867886260151863,
- 0.053023532032966614,
- 0.036808695644140244,
- 0.0860230103135109,
- 0.09978701919317245,
- 0.010161212645471096,
- 0.10599420219659805,
- 0.0005794886383228004,
- -0.03243117779493332,
- 0.012264073826372623,
- -0.035061314702034,
- 0.025810301303863525,
- -0.07547221332788467,
- 0.026746414601802826,
- -0.002211738610640168,
- -0.13481444120407104,
- 0.06772000342607498,
- 0.012723047286272049,
- 0.008993258699774742,
- -0.04965369775891304,
- -0.0016397790750488639,
- 0.017964577302336693,
- 0.019748402759432793,
- -0.04962692782282829,
- -0.10592599958181381,
- 0.052324239164590836,
- -0.06581312417984009,
- 0.042400114238262177,
- 0.07993800938129425,
- 0.0465208925306797,
- 0.04187887907028198,
- -0.06423502415418625,
- 0.010936779901385307,
- -0.029273344203829765,
- 0.05622325465083122,
- -0.0465535968542099,
- -0.004768761806190014,
- 0.028754115104675293,
- -0.02301175892353058,
- -0.0266873799264431,
- -1.5557283860759035e-33,
- 0.020941603928804398,
- -0.017745239660143852,
- -0.062163084745407104,
- 0.016994964331388474,
- 0.10935432463884354,
- -0.021827440708875656,
- -0.004348506219685078,
- 0.049722228199243546,
- -0.07314568012952805,
- 0.053804364055395126,
- 0.09250134229660034,
- 0.10031502693891525,
- 0.050370294600725174,
- -0.001877974602393806,
- 0.031438302248716354,
- 0.04424624517560005,
- -0.004547287710011005,
- -0.07847093045711517,
- -0.09065040946006775,
- 0.01881537027657032,
- 0.028020190075039864,
- 0.05331761762499809,
- -0.09567426145076752,
- -0.05319865420460701,
- -0.010339065454900265,
- 0.06805652379989624,
- 0.053422097116708755,
- 0.01258715707808733,
- -0.04242432862520218,
- -0.06361737102270126,
- -0.07693233340978622,
- 0.00902312807738781,
- -0.0626387819647789,
- -0.0850692018866539,
- -0.038380399346351624,
- 0.06587518751621246,
- -0.028616443276405334,
- -0.02650396153330803,
- -0.05024315416812897,
- -0.034425318241119385,
- 0.10452970862388611,
- 0.0022812967654317617,
- 0.07125593721866608,
- 0.055291324853897095,
- 0.06142386049032211,
- 0.0003156139573547989,
- -0.04677344486117363,
- 0.013377058319747448,
- 0.009358281269669533,
- -0.056981220841407776,
- -0.08412732928991318,
- -0.023863138630986214,
- -0.03870013356208801,
- 0.02405352145433426,
- 0.05366065353155136,
- -0.07269681990146637,
- -0.10022076964378357,
- -0.05720675736665726,
- 0.041236039251089096,
- -0.05343415215611458,
- 0.08426781743764877,
- -0.062267642468214035,
- 0.0850374773144722,
- 0.05747042968869209,
- -0.081861712038517,
- 0.030901562422513962,
- 0.016003893688321114,
- 0.02995404787361622,
- -0.025050731375813484,
- 0.007586079649627209,
- 0.08129223436117172,
- 0.008150113746523857,
- -0.040585365146398544,
- -0.050503481179475784,
- -0.014470330439507961,
- -0.04468148201704025,
- -0.03704052418470383,
- -0.0526902936398983,
- -0.00759911397472024,
- -0.023341679945588112,
- 0.008143670856952667,
- -0.04857931286096573,
- 0.02489718422293663,
- 0.07371131330728531,
- 0.014719794504344463,
- 0.0015104797203093767,
- 0.08364681154489517,
- 0.003342965617775917,
- -0.03693733364343643,
- -0.04659561067819595,
- 0.01609637774527073,
- 0.03423167020082474,
- -0.025132663547992706,
- -0.025726011022925377,
- 0.06707120686769485,
- -1.5972108968753673e-8,
- -0.040483132004737854,
- -0.0014459211379289627,
- 0.013951367698609829,
- -0.05558782070875168,
- -0.004398889373987913,
- -0.0918188989162445,
- -0.014247935265302658,
- 0.012136615812778473,
- -0.050368182361125946,
- 0.019319240003824234,
- 0.0025238569360226393,
- -0.0016976225888356566,
- 0.04521305114030838,
- 0.016031863167881966,
- 0.06782524287700653,
- 0.009171922691166401,
- -0.028643878176808357,
- 0.10812881588935852,
- -0.0013546381378546357,
- 0.002183091128244996,
- 0.00013376647257246077,
- -0.038084935396909714,
- 0.08005433529615402,
- 0.01003835629671812,
- 0.10375946015119553,
- 0.05360034480690956,
- -0.019782597199082375,
- -0.060006435960531235,
- 0.011036953888833523,
- 0.08666424453258514,
- -0.024346202611923218,
- 0.04720815271139145,
- 0.03312034159898758,
- -0.021030766889452934,
- 0.007777342572808266,
- -0.023038195446133614,
- 0.037533991038799286,
- -0.03884474188089371,
- 0.006100625731050968,
- -0.01893017441034317,
- -0.019798429682850838,
- -0.014085019007325172,
- 0.04287758842110634,
- 0.12914328277111053,
- -0.03544711694121361,
- -0.09511208534240723,
- 0.09176785498857498,
- 0.029765723273158073,
- 0.010516643524169922,
- 0.00552826002240181,
- 0.055393364280462265,
- -0.07396601885557175,
- 0.06582042574882507,
- -0.020291820168495178,
- 0.013867159374058247,
- -0.004361933562904596,
- 0.00006769712490495294,
- -0.017613502219319344,
- -0.08420288562774658,
- 0.0006140147452242672,
- 0.07428872585296631,
- -0.04109698161482811,
- 0.02281266450881958,
- -0.0035877868067473173
- ]
- },
- {
- "keyword": "dermatologist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03256858140230179,
- 0.041065286844968796,
- 0.02398575469851494,
- 0.0662274956703186,
- -0.0061793760396540165,
- -0.05182637646794319,
- 0.10905684530735016,
- 0.06697253882884979,
- -0.10736947506666183,
- 0.002868815790861845,
- -0.013499644584953785,
- -0.0953945592045784,
- -0.022910598665475845,
- 0.07363324612379074,
- -0.10476846992969513,
- 0.0104600191116333,
- -0.02454131841659546,
- 0.019907863810658455,
- 0.06323603540658951,
- -0.0794977992773056,
- -0.11581018567085266,
- 0.06360632181167603,
- 0.026109401136636734,
- -0.06393742561340332,
- 0.0069139087572693825,
- -0.019798144698143005,
- 0.007939910516142845,
- -0.012344572693109512,
- -0.04875021427869797,
- -0.044869255274534225,
- -0.038743484765291214,
- 0.01894291676580906,
- -0.057097092270851135,
- 0.004059839062392712,
- -0.0016157199861481786,
- -0.0553920641541481,
- -0.03304383531212807,
- 0.04102812707424164,
- 0.07664403319358826,
- 0.1122751235961914,
- -0.05928933620452881,
- -0.04205979034304619,
- -0.041715290397405624,
- 0.004460692405700684,
- 0.00807696208357811,
- -0.0022546721156686544,
- 0.04474067687988281,
- 0.025038249790668488,
- 0.033973559737205505,
- 0.0028099720366299152,
- 0.022742046043276787,
- -0.06573458760976791,
- -0.016147317364811897,
- -0.02767224796116352,
- -0.05926448479294777,
- -0.01604817435145378,
- 0.022594524547457695,
- -0.06847773492336273,
- -0.06393659859895706,
- 0.0016817200230434537,
- -0.0022938421461731195,
- -0.09167439490556717,
- -0.044921450316905975,
- 0.0121932877227664,
- 0.08246875554323196,
- -0.04560568556189537,
- 0.07478901743888855,
- -0.02459186501801014,
- 0.030205631628632545,
- -0.027296477928757668,
- 0.009185121394693851,
- 0.01578807644546032,
- 0.013879801146686077,
- 0.15266692638397217,
- 0.049859147518873215,
- -0.013632504269480705,
- 0.016027413308620453,
- 0.024217579513788223,
- 0.08122763782739639,
- 0.01109397318214178,
- 0.03442058712244034,
- 0.012370328418910503,
- 0.03982911258935928,
- 0.0018177470192313194,
- 0.016236724331974983,
- 0.01383449137210846,
- -0.03411375731229782,
- 0.021331412717700005,
- -0.01690482906997204,
- -0.06625276803970337,
- 0.0679936558008194,
- 0.02782866172492504,
- -0.022630497813224792,
- 0.004308374132961035,
- -0.005894678179174662,
- 0.06652428209781647,
- -0.00511536980047822,
- 0.0677919089794159,
- -0.05025815591216087,
- 0.14442920684814453,
- -0.07520423829555511,
- -0.10303142666816711,
- -0.08640266954898834,
- 0.015620570629835129,
- -0.01762283407151699,
- -0.09609708189964294,
- -0.04208878427743912,
- -0.048145972192287445,
- 0.03451772779226303,
- -0.007624047342687845,
- 0.05384737625718117,
- -0.03134049102663994,
- -0.04609772562980652,
- 0.0002916711673606187,
- -0.020940575748682022,
- 0.0583692342042923,
- 0.1188962310552597,
- 0.02029474265873432,
- 0.05679790675640106,
- -0.00494297593832016,
- -0.026025330647826195,
- -0.005402201786637306,
- -0.023901470005512238,
- -0.06898467242717743,
- -0.016904357820749283,
- 0.03610578924417496,
- 0.05770888552069664,
- -9.054387582227714e-34,
- -0.014671193435788155,
- 0.10329889506101608,
- 0.04793349280953407,
- -0.01591004803776741,
- -0.0008826815756037831,
- 0.07820087671279907,
- -0.010542022995650768,
- -0.023842904716730118,
- 0.0035357752349227667,
- -0.05787967890501022,
- -0.015771228820085526,
- 0.06714948266744614,
- -0.048213183879852295,
- -0.019760098308324814,
- -0.04490823671221733,
- 0.07416879385709763,
- 0.01791241206228733,
- 0.08017653971910477,
- -0.037313561886548996,
- -0.07960963249206543,
- -0.009962709620594978,
- 0.07702560722827911,
- -0.027526292949914932,
- 0.030882887542247772,
- -0.057930197566747665,
- 0.0603858157992363,
- -0.001423753798007965,
- -0.06864839047193527,
- 0.12441177666187286,
- -0.007089865859597921,
- -0.007741729263216257,
- 0.06795605272054672,
- 0.0006045267800800502,
- 0.011736778542399406,
- 0.018827762454748154,
- 0.04546118155121803,
- -0.01247601117938757,
- -0.008030164986848831,
- 0.0007646649610251188,
- -0.08652182668447495,
- -0.011078701354563236,
- -0.015363762155175209,
- 0.06142691150307655,
- -0.046148814260959625,
- 0.009565052576363087,
- 0.0707298293709755,
- 0.024420250207185745,
- 0.01877710036933422,
- -0.03909546881914139,
- 0.04358477145433426,
- -0.025363653898239136,
- 0.007283621001988649,
- 0.006182356737554073,
- 0.006389155518263578,
- 0.0529826395213604,
- 0.0002558940905146301,
- 0.00843934528529644,
- -0.03885003179311752,
- 0.02259862795472145,
- 0.05873040109872818,
- 0.06279812753200531,
- 0.10168066620826721,
- -0.05442255362868309,
- 0.05091957375407219,
- -0.040302176028490067,
- -0.09818433225154877,
- -0.06948992609977722,
- -0.02570142038166523,
- 0.013586516492068768,
- 0.03717632219195366,
- -0.04819903522729874,
- 0.0963934063911438,
- 0.07166766375303268,
- 0.0642646923661232,
- -0.0010732616065070033,
- 0.02797679603099823,
- -0.0265399981290102,
- 0.056555647403001785,
- -0.09584173560142517,
- -0.039710137993097305,
- -0.07195288687944412,
- 0.031485192477703094,
- 0.023661065846681595,
- -0.005586533807218075,
- 0.011955799534916878,
- 0.05264778807759285,
- -0.08878124505281448,
- 0.09048314392566681,
- 0.04740240424871445,
- -0.0002347920963075012,
- -0.054995033890008926,
- 0.012538829818367958,
- -0.013483245857059956,
- 0.06270009279251099,
- -0.08611204475164413,
- -6.0256983775077625e-34,
- -0.037657588720321655,
- -0.09805799275636673,
- -0.01358507014811039,
- 0.04197944700717926,
- 0.05769690126180649,
- -0.0030065651517361403,
- 0.0031822046730667353,
- 0.0781572163105011,
- 0.05198940262198448,
- 0.0594768151640892,
- 0.09446347504854202,
- -0.011643219739198685,
- 0.02678751014173031,
- -0.03444746509194374,
- 0.002872281474992633,
- 0.01955576054751873,
- -0.02483827993273735,
- -0.002110437722876668,
- -0.05207294598221779,
- -0.022132031619548798,
- -0.07912842184305191,
- 0.014996683225035667,
- -0.026748336851596832,
- -0.031210456043481827,
- -0.022018752992153168,
- -0.0022846623323857784,
- 0.12859971821308136,
- -0.08691323548555374,
- -0.07075851410627365,
- 0.009962515905499458,
- -0.0011221154127269983,
- -0.03135969862341881,
- 0.002226828830316663,
- -0.04420116916298866,
- -0.037935469299554825,
- 0.05520709604024887,
- -0.04438728466629982,
- -0.018842030316591263,
- -0.011956964619457722,
- 0.057189010083675385,
- 0.009621018543839455,
- -0.09232855588197708,
- -0.03683033585548401,
- 0.0723995566368103,
- 0.060651995241642,
- 0.006139144767075777,
- -0.08876867592334747,
- 0.06121009960770607,
- 0.003959817346185446,
- -0.0046264734119176865,
- -0.066671222448349,
- -0.01422689389437437,
- 0.02753090299665928,
- -0.07212157547473907,
- -0.0042076255194842815,
- 0.004555458668619394,
- -0.08681266754865646,
- 0.008061901666224003,
- -0.024591149762272835,
- 0.09290323406457901,
- 0.03820793330669403,
- -0.01703212782740593,
- -0.030680911615490913,
- 0.06632515043020248,
- -0.03306766599416733,
- 0.045796625316143036,
- -0.026182834059000015,
- 0.00444076070562005,
- -0.014267466962337494,
- 0.04186294972896576,
- 0.04176529124379158,
- 0.03843729943037033,
- -0.06046903505921364,
- -0.008117389865219593,
- -0.05472959205508232,
- -0.04610882326960564,
- 0.008231009356677532,
- -0.02588256448507309,
- -0.04065943509340286,
- 0.028969835489988327,
- -0.019965676590800285,
- -0.13520604372024536,
- 0.016727710142731667,
- 0.14144271612167358,
- 0.021356705576181412,
- -0.013503000140190125,
- -0.013529453426599503,
- -0.05017627030611038,
- -0.006096717901527882,
- -0.06607021391391754,
- 0.01213962584733963,
- 0.0351966954767704,
- -0.0802185907959938,
- -0.04189430549740791,
- -0.012078627943992615,
- -1.4448277241285723e-8,
- 0.048282500356435776,
- -0.08983956277370453,
- 0.009185602888464928,
- -0.0971975177526474,
- -0.011702905409038067,
- 0.014435987919569016,
- -0.0009536695433780551,
- 0.0528283566236496,
- 0.03711012750864029,
- 0.043929025530815125,
- -0.05311133712530136,
- 0.020744455978274345,
- -0.019185906276106834,
- 0.03420109301805496,
- 0.012989824637770653,
- -0.06540799885988235,
- 0.10675906389951706,
- 0.10641229152679443,
- -0.03198874741792679,
- -0.05864964798092842,
- -0.027769742533564568,
- -0.011370847001671791,
- 0.1352061927318573,
- 0.034992001950740814,
- -0.026454875245690346,
- -0.014012557454407215,
- 0.06860580295324326,
- 0.063960000872612,
- -0.02587566338479519,
- 0.005999419372528791,
- 0.010300710797309875,
- 0.019746771082282066,
- -0.026876451447606087,
- -0.025527212768793106,
- -0.01825343258678913,
- -0.0101621737703681,
- 0.03370506688952446,
- -0.06525885313749313,
- 0.046187400817871094,
- 0.090854711830616,
- -0.05193404480814934,
- 0.05035366863012314,
- -0.00568015780299902,
- -0.01562931388616562,
- -0.058092307299375534,
- -0.04274982959032059,
- 0.04043855145573616,
- -0.0308280810713768,
- 0.029272709041833878,
- -0.04455038532614708,
- 0.015753531828522682,
- -0.006535753142088652,
- 0.03142660856246948,
- 0.0036134112160652876,
- -0.0553642213344574,
- -0.009434840641915798,
- 0.06545550376176834,
- 0.010520236566662788,
- -0.06143679842352867,
- 0.052647434175014496,
- 0.04857774078845978,
- -0.06701025366783142,
- 0.06116033345460892,
- 0.11850959062576294
- ]
- },
- {
- "keyword": "pediatrician",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.05141806975007057,
- 0.03906833007931709,
- 0.025708714500069618,
- 0.004455130081623793,
- -0.11648400127887726,
- -0.10752697288990021,
- 0.006268906872719526,
- 0.03326665982604027,
- 0.009503619745373726,
- 0.042157579213380814,
- -0.020849885419011116,
- -0.013906079344451427,
- -0.04486026242375374,
- 0.04974832013249397,
- -0.13283859193325043,
- 0.016595711931586266,
- -0.03219999745488167,
- 0.026703065261244774,
- 0.03206944465637207,
- -0.15587519109249115,
- -0.05834491178393364,
- 0.09336712956428528,
- 0.025918204337358475,
- 0.04741271585226059,
- 0.03332756087183952,
- 0.04691446200013161,
- -0.01811891607940197,
- -0.007500451058149338,
- -0.0092157032340765,
- 0.0091046541929245,
- -0.023724254220724106,
- -0.02015603333711624,
- 0.046148885041475296,
- -0.009552075527608395,
- -0.012115352787077427,
- 0.07567281275987625,
- 0.019139546900987625,
- 0.04767468944191933,
- 0.05053171515464783,
- 0.06172547861933708,
- -0.020133044570684433,
- -0.0005492026102729142,
- 0.005649972707033157,
- -0.03661835938692093,
- -0.017689324915409088,
- -0.06082278862595558,
- 0.03497517853975296,
- -0.04565468430519104,
- 0.06622304767370224,
- 0.011359857395291328,
- -0.04940980672836304,
- -0.054424919188022614,
- -0.05238867923617363,
- 0.06960416585206985,
- -0.021974150091409683,
- -0.011335118673741817,
- -0.027997581288218498,
- -0.05610177293419838,
- -0.053111013025045395,
- -0.0037711120676249266,
- -0.06524494290351868,
- 0.061429861932992935,
- -0.059002261608839035,
- 0.059063177555799484,
- 0.004126975778490305,
- -0.039392564445734024,
- -0.011068098247051239,
- -0.06874500215053558,
- 0.07892586290836334,
- -0.07333146780729294,
- 0.05776118114590645,
- -0.02774031087756157,
- 0.12397957593202591,
- 0.1186259537935257,
- 0.06029815226793289,
- -0.000014272354746935889,
- 0.06655813753604889,
- 0.04672081395983696,
- 0.056419506669044495,
- -0.06471988558769226,
- 0.05929518863558769,
- -0.019509080797433853,
- -0.06193944811820984,
- -0.0271921306848526,
- -0.023242086172103882,
- -0.001203381922096014,
- -0.017601378262043,
- 0.03355567902326584,
- -0.05925244465470314,
- -0.06272803246974945,
- 0.05169205367565155,
- 0.003455309895798564,
- 0.07597875595092773,
- 0.02010798640549183,
- 0.009914243593811989,
- 0.021267535164952278,
- -0.017781537026166916,
- -0.12314220517873764,
- -0.06377928704023361,
- 0.10450488328933716,
- 0.0008359075291082263,
- -0.014997828751802444,
- 0.06581605970859528,
- 0.12724526226520538,
- -0.0440560020506382,
- -0.08917561918497086,
- -0.01033101323992014,
- -0.07624384015798569,
- -0.04041833430528641,
- -0.002390134148299694,
- 0.003716129343956709,
- 0.04887546971440315,
- 0.013543653301894665,
- 0.04193395376205444,
- -0.03208523988723755,
- 0.014085009694099426,
- 0.03751244395971298,
- 0.01493704505264759,
- 0.03174344450235367,
- 0.05811425670981407,
- -0.03352721780538559,
- 0.029115838930010796,
- -0.07167050242424011,
- -0.05970807000994682,
- -0.02026904560625553,
- 0.001353093539364636,
- -0.05022556707262993,
- -3.1119174190005354e-33,
- -0.033309996128082275,
- 0.023909620940685272,
- 0.09244497120380402,
- 0.048676859587430954,
- -0.029470358043909073,
- 0.09372538328170776,
- 0.06493164598941803,
- -0.017921989783644676,
- 0.05212154611945152,
- -0.08003115653991699,
- -0.01693093404173851,
- 0.043063919991254807,
- -0.0023556207306683064,
- -0.009735491126775742,
- -0.014792196452617645,
- 0.06136498600244522,
- -0.0982552319765091,
- 0.0672764703631401,
- -0.04326627030968666,
- 0.12263815104961395,
- -0.045691825449466705,
- 0.060848839581012726,
- -0.06352385878562927,
- 0.024811463430523872,
- 0.03845987841486931,
- 0.01767982728779316,
- -0.002922964980825782,
- -0.020451607182621956,
- 0.10085644572973251,
- 0.030697163194417953,
- -0.019323071464896202,
- -0.003429848002269864,
- -0.0660257562994957,
- -0.0343351736664772,
- -0.0708417296409607,
- 0.0407143160700798,
- -0.005685371346771717,
- -0.044494133442640305,
- 0.03280310332775116,
- 0.021514389663934708,
- -0.10540738701820374,
- 0.0192121509462595,
- 0.08013810962438583,
- 0.04868554696440697,
- -0.023911187425255775,
- 0.08403458446264267,
- 0.03157881274819374,
- 0.0019327618647366762,
- -0.025605857372283936,
- -0.011206678114831448,
- 0.030385851860046387,
- -0.04946683719754219,
- -0.02728738635778427,
- -0.12088222801685333,
- 0.02077740803360939,
- 0.021113473922014236,
- 0.05225202441215515,
- 0.03850748762488365,
- -0.012919318862259388,
- -0.04850540682673454,
- 0.11092787235975266,
- 0.09404805302619934,
- -0.055360086262226105,
- -0.011851774528622627,
- -0.03414638713002205,
- -0.09224571287631989,
- 0.027591098099946976,
- -0.01091629359871149,
- 0.07793103158473969,
- -0.0110448207706213,
- -0.09366532415151596,
- 0.05080895125865936,
- 0.033209364861249924,
- -0.023090854287147522,
- -0.04133187234401703,
- -0.013340889476239681,
- 0.023701362311840057,
- -0.010519389994442463,
- -0.04808707535266876,
- 0.014635286293923855,
- -0.010228167288005352,
- -0.005398424342274666,
- 0.004013285506516695,
- 0.03670075908303261,
- 0.02446441911160946,
- -0.02199701964855194,
- -0.08613403141498566,
- 0.05207085981965065,
- -0.005010668188333511,
- 0.027748282998800278,
- -0.1004626452922821,
- -0.061486877501010895,
- 0.027277255430817604,
- 0.13899129629135132,
- -0.0686970055103302,
- 7.487355348600716e-34,
- -0.007524578366428614,
- -0.052619390189647675,
- 0.002649192465469241,
- 0.058568768203258514,
- 0.0603310763835907,
- -0.05306658893823624,
- 0.01476068701595068,
- 0.03630336374044418,
- 0.030066240578889847,
- -0.004805332515388727,
- 0.026311364024877548,
- 0.05011129751801491,
- 0.004516012966632843,
- -0.012466873042285442,
- -0.024233518168330193,
- 0.016410909593105316,
- -0.029099730774760246,
- 0.003383488627150655,
- -0.03646014258265495,
- -0.03146258741617203,
- 0.03069494664669037,
- 0.048941414803266525,
- -0.09273992478847504,
- -0.032987598329782486,
- 0.00870159175246954,
- -0.03691265359520912,
- 0.04340069741010666,
- 0.00966070219874382,
- -0.05817493796348572,
- -0.0011275630677118897,
- 0.03224235028028488,
- -0.011361036449670792,
- 0.018428843468427658,
- -0.001964606111869216,
- -0.02015269361436367,
- 0.07120467722415924,
- -0.009814289398491383,
- -0.007744361646473408,
- -0.06698479503393173,
- 0.007437255699187517,
- 0.09641659259796143,
- -0.10125856101512909,
- 0.05390002205967903,
- 0.06732703745365143,
- 0.018559452146291733,
- -0.014551802538335323,
- 0.031402427703142166,
- 0.036046575754880905,
- 0.03602856025099754,
- 0.006612066179513931,
- -0.09543227404356003,
- 0.015402182005345821,
- -0.03363610431551933,
- -0.04928574338555336,
- 0.01507172454148531,
- 0.003878907300531864,
- -0.027238896116614342,
- -0.03279900550842285,
- 0.05604012310504913,
- 0.011903779581189156,
- 0.05241245776414871,
- -0.10398732125759125,
- -0.07330682873725891,
- 0.05512429028749466,
- -0.11446281522512436,
- 0.039449527859687805,
- -0.02276976779103279,
- -0.007780904415994883,
- -0.02984793856739998,
- 0.04338669404387474,
- 0.11401519179344177,
- 0.031346045434474945,
- -0.002052545314654708,
- -0.06480371952056885,
- -0.04508807137608528,
- 0.0055918083526194096,
- -0.026795368641614914,
- -0.039682019501924515,
- -0.034320294857025146,
- 0.015025665052235126,
- -0.011158764362335205,
- -0.14619800448417664,
- -0.030168695375323296,
- 0.11922519654035568,
- -0.03459201753139496,
- -0.0632043331861496,
- 0.0801190659403801,
- -0.03188629075884819,
- -0.050904445350170135,
- -0.0480273962020874,
- 0.047049690037965775,
- -0.00440183375030756,
- -0.06142307445406914,
- -0.10289909690618515,
- 0.02657661959528923,
- -1.2209493860382281e-8,
- 0.04987679421901703,
- 0.005894148256629705,
- -0.02921784110367298,
- 0.007809076923877001,
- 0.03216537460684776,
- -0.006850985810160637,
- -0.06495168805122375,
- 0.015422449447214603,
- 0.05777085945010185,
- 0.05717439576983452,
- -0.0492548942565918,
- -0.01610303297638893,
- 0.0007402062183246017,
- -0.0013613805640488863,
- 0.048264920711517334,
- 0.0007044622907415032,
- -0.011491117998957634,
- 0.10333729535341263,
- 0.010482673533260822,
- -0.012245973572134972,
- -0.020927324891090393,
- 0.01844792068004608,
- 0.027774550020694733,
- 0.056104231625795364,
- -0.00006132286944193766,
- -0.07795177400112152,
- 0.04364209622144699,
- 0.01777069643139839,
- -0.06463336944580078,
- 0.013652709312736988,
- -0.006012611091136932,
- 0.035319164395332336,
- -0.05468711629509926,
- -0.021632511168718338,
- -0.017148902639746666,
- -0.07186509668827057,
- -0.041044704616069794,
- -0.022529684007167816,
- 0.05531715974211693,
- 0.015915075317025185,
- 0.047848865389823914,
- 0.01620127260684967,
- 0.0776858851313591,
- -0.0013718298869207501,
- 0.00289422320201993,
- 0.007504584733396769,
- 0.0598459392786026,
- 0.01843550056219101,
- 0.10860128700733185,
- 0.007724488619714975,
- 0.004149841144680977,
- -0.02630547061562538,
- 0.04151060804724693,
- -0.050720926374197006,
- 0.013759482651948929,
- 0.014169925823807716,
- 0.04431663826107979,
- -0.02245856449007988,
- -0.09839553385972977,
- 0.04335056617856026,
- 0.0570075660943985,
- 0.013116355985403061,
- 0.06425449252128601,
- 0.07076232135295868
- ]
- },
- {
- "keyword": "obstetrician",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.014788164757192135,
- 0.06141166016459465,
- -0.059440791606903076,
- 0.018067730590701103,
- -0.03362216800451279,
- -0.04127275571227074,
- 0.020121878013014793,
- 0.05366739258170128,
- 0.008717765100300312,
- 0.047364894300699234,
- -0.04786917567253113,
- -0.06772260367870331,
- -0.06083877012133598,
- -0.016155816614627838,
- -0.04400762915611267,
- 0.04675500467419624,
- 0.008910498581826687,
- -0.05403571575880051,
- 0.015344399027526379,
- -0.053530022501945496,
- -0.06254159659147263,
- 0.018987879157066345,
- 0.05155792832374573,
- 0.015786051750183105,
- 0.08368232846260071,
- 0.013106594793498516,
- -0.01943640038371086,
- 0.004901979584246874,
- 0.05562024563550949,
- 0.004470213782042265,
- -0.008219951763749123,
- -0.03630725294351578,
- 0.10383393615484238,
- -0.024954473599791527,
- -0.043857380747795105,
- -0.03536061570048332,
- 0.024415990337729454,
- 0.03949674218893051,
- 0.03563864529132843,
- 0.029446911066770554,
- 0.045024070888757706,
- 0.01851470395922661,
- -0.0541260726749897,
- 0.015698129311203957,
- 0.04450368136167526,
- -0.00635827612131834,
- 0.024949930608272552,
- 0.02418849989771843,
- 0.02475176937878132,
- 0.020542005077004433,
- -0.021356597542762756,
- -0.12590229511260986,
- -0.03999762982130051,
- 0.09459737688302994,
- -0.011893529444932938,
- -0.07812917232513428,
- -0.007662682328373194,
- -0.08134628087282181,
- -0.08324980735778809,
- -0.09150325506925583,
- -0.08483249694108963,
- 0.08504742383956909,
- -0.0075524416752159595,
- 0.028070997446775436,
- -0.0028757641557604074,
- 0.02335481159389019,
- -0.0058085001073777676,
- -0.02419404685497284,
- 0.03499831259250641,
- -0.031355928629636765,
- 0.011622551828622818,
- -0.00004741027078125626,
- 0.12946964800357819,
- 0.16945882141590118,
- 0.0013388068182393909,
- -0.004583142232149839,
- 0.06775566190481186,
- 0.04168117046356201,
- -0.006022067274898291,
- -0.09525347501039505,
- 0.0014861560193821788,
- -0.03807913511991501,
- -0.10029947757720947,
- 0.019355598837137222,
- 0.005069358740001917,
- 0.012952740304172039,
- -0.007405921816825867,
- 0.03712388500571251,
- -0.03386019915342331,
- -0.10878464579582214,
- 0.029473837465047836,
- -0.0234194528311491,
- 0.06863152980804443,
- 0.021276595070958138,
- 0.023695439100265503,
- 0.02075910195708275,
- -0.005848461762070656,
- -0.1108485534787178,
- -0.00858666468411684,
- 0.07830759882926941,
- -0.10268064588308334,
- 0.03939467668533325,
- 0.017062252387404442,
- 0.1627207100391388,
- -0.0837838277220726,
- -0.03431961312890053,
- -0.07441850751638412,
- -0.040489111095666885,
- -0.04109182208776474,
- -0.028951775282621384,
- -0.03859005495905876,
- -0.039956558495759964,
- 0.003983044996857643,
- 0.04168813303112984,
- -0.009319682605564594,
- -0.004966119769960642,
- -0.005470062140375376,
- 0.04193985089659691,
- 0.03573903813958168,
- -0.007719147019088268,
- -0.07653959095478058,
- 0.06960522383451462,
- -0.0698404461145401,
- 0.003349965438246727,
- -0.007886861450970173,
- -0.027914678677916527,
- 0.05499205365777016,
- 4.1689085800651046e-36,
- -0.013443095609545708,
- -0.014888354577124119,
- 0.09914708882570267,
- 0.016937708482146263,
- -0.032725006341934204,
- 0.10303440690040588,
- 0.004135265480726957,
- -0.05363081395626068,
- 0.08837137371301651,
- 0.021615998819470406,
- -0.015433122403919697,
- -0.022750627249479294,
- 0.006968910805881023,
- -0.05653959885239601,
- 0.037442874163389206,
- 0.015140045434236526,
- -0.05991252884268761,
- 0.04266003146767616,
- -0.06149641051888466,
- 0.15150459110736847,
- -0.04115058854222298,
- 0.039755478501319885,
- -0.11398923397064209,
- -0.02356748841702938,
- 0.05647564306855202,
- 0.02162878029048443,
- -0.01185301411896944,
- -0.016913453117012978,
- -0.009282378479838371,
- 0.023515217006206512,
- 0.020971152931451797,
- 0.01824491284787655,
- -0.035383567214012146,
- -0.06364742666482925,
- -0.08783938735723495,
- -0.04124969244003296,
- -0.001551697263494134,
- -0.04894505813717842,
- 0.007577315904200077,
- -0.015343597158789635,
- -0.09388820081949234,
- -0.054664984345436096,
- 0.06576002389192581,
- 0.08303600549697876,
- -0.021867865696549416,
- 0.057621002197265625,
- 0.045947346836328506,
- -0.002526101190596819,
- 0.052660368382930756,
- 0.02814057655632496,
- 0.04734574630856514,
- -0.06854888796806335,
- -0.012098176404833794,
- -0.03709821775555611,
- 0.058112163096666336,
- 0.010497568175196648,
- 0.011526853777468204,
- 0.002480427036061883,
- -0.006838880479335785,
- -0.023160435259342194,
- 0.06727135926485062,
- 0.009029044769704342,
- -0.03875724971294403,
- -0.035687901079654694,
- -0.08410254120826721,
- -0.05871497094631195,
- 0.018492743372917175,
- -0.012957040220499039,
- 0.07325505465269089,
- 0.03737884387373924,
- -0.11619710177183151,
- 0.05047034099698067,
- -0.015541419386863708,
- -0.023119084537029266,
- -0.036023885011672974,
- 0.08311483263969421,
- 0.020970184355974197,
- 0.03459431603550911,
- -0.008113003335893154,
- -0.05788898095488548,
- 0.012725348584353924,
- 0.025408688932657242,
- 0.046933725476264954,
- -0.018898554146289825,
- 0.0727071613073349,
- 0.07067140191793442,
- -0.0748264342546463,
- 0.10072801262140274,
- 0.022231794893741608,
- 0.03279496356844902,
- -0.10165420919656754,
- 0.05447469651699066,
- -0.007410808932036161,
- 0.07547331601381302,
- -0.004365853499621153,
- -1.2117223520306611e-33,
- -0.019804999232292175,
- -0.027647610753774643,
- -0.057783160358667374,
- 0.057108987122774124,
- 0.005336071364581585,
- -0.11482381075620651,
- -0.0030572768300771713,
- 0.01933293044567108,
- -0.00969403050839901,
- 0.047493115067481995,
- 0.06777584552764893,
- 0.018081001937389374,
- 0.10871448367834091,
- -0.029931271448731422,
- 0.06959729641675949,
- 0.007210706360638142,
- -0.04893380403518677,
- 0.05065876990556717,
- -0.0014122442808002234,
- 0.025334717705845833,
- -0.016638047993183136,
- 0.003312092972919345,
- -0.054719116538763046,
- -0.12914174795150757,
- 0.026452364400029182,
- 0.008921434171497822,
- 0.04210156574845314,
- 0.03412278741598129,
- -0.00994336511939764,
- -0.08474629372358322,
- -0.07838055491447449,
- 0.046990763396024704,
- -0.042082346975803375,
- -0.03866850957274437,
- 0.027207765728235245,
- 0.012349649332463741,
- -0.07819835841655731,
- 0.07448631525039673,
- -0.06200287491083145,
- -0.02193525806069374,
- 0.0017502971459180117,
- -0.031747736036777496,
- 0.01687142252922058,
- 0.06038247048854828,
- -0.04535875469446182,
- 0.032067347317934036,
- 0.04506020247936249,
- 0.07686391472816467,
- 0.08438859134912491,
- 0.007564470637589693,
- -0.07984956353902817,
- -0.030551472678780556,
- -0.031160015612840652,
- -0.0187543872743845,
- 0.03699449077248573,
- 0.023368239402770996,
- -0.03216437250375748,
- -0.08949323743581772,
- 0.06997855752706528,
- -0.021279556676745415,
- 0.08933546394109726,
- -0.011088719591498375,
- 0.011972896754741669,
- 0.058891233056783676,
- -0.08699967712163925,
- 0.04338577762246132,
- -0.006548415869474411,
- 0.02454100176692009,
- -0.02117202617228031,
- 0.052519336342811584,
- 0.05755491554737091,
- -0.006145991384983063,
- -0.00905098021030426,
- -0.02650187723338604,
- -0.029627202078700066,
- -0.03953706473112106,
- -0.03287522494792938,
- -0.063848115503788,
- 0.02032899670302868,
- 0.01492469385266304,
- -0.015674134716391563,
- -0.04917089268565178,
- 0.010900594294071198,
- 0.050149038434028625,
- -0.047185227274894714,
- -0.05295819044113159,
- -0.020032411441206932,
- -0.028180979192256927,
- -0.020708885043859482,
- -0.04834466800093651,
- -0.0062166787683963776,
- 0.0571974478662014,
- -0.023368163034319878,
- -0.029773354530334473,
- 0.031368330121040344,
- -1.503588364926145e-8,
- -0.045839328318834305,
- 0.013611228205263615,
- -0.020261498168110847,
- -0.008809592574834824,
- 0.03901335597038269,
- -0.12430264055728912,
- -0.07335038483142853,
- -0.023143745958805084,
- 0.008979182690382004,
- 0.011356202885508537,
- -0.07015140354633331,
- 0.039460476487874985,
- 0.027285611256957054,
- 0.02374516986310482,
- -0.013695056550204754,
- -0.01075747050344944,
- 0.014562536962330341,
- 0.07163434475660324,
- 0.027816887944936752,
- -0.022146662697196007,
- 0.0066529824398458,
- -0.02553369104862213,
- 0.0365658663213253,
- 0.027136733755469322,
- 0.00470466073602438,
- 0.029686810448765755,
- 0.06437978893518448,
- 0.04051651433110237,
- 0.02770015224814415,
- 0.040118489414453506,
- 0.05057034268975258,
- 0.07759400457143784,
- 0.08697609603404999,
- -0.039937205612659454,
- -0.033996015787124634,
- -0.032465625554323196,
- -0.0819849744439125,
- 0.0004318747960496694,
- 0.013340422883629799,
- -0.005456029903143644,
- 0.04526491090655327,
- -0.04728812724351883,
- 0.10450345277786255,
- -0.017016135156154633,
- 0.008447244763374329,
- -0.002920544706285,
- 0.07684744894504547,
- 0.028554797172546387,
- -0.0006105944630689919,
- -0.05031994730234146,
- -0.001790679176338017,
- -0.09714478999376297,
- 0.018678775057196617,
- 0.05636007711291313,
- 0.0260948296636343,
- -0.011583671905100346,
- -0.019792543724179268,
- -0.05964168533682823,
- -0.06848520785570145,
- 0.12110060453414917,
- -0.02305002696812153,
- -0.048456571996212006,
- 0.14208075404167175,
- 0.02461356110870838
- ]
- },
- {
- "keyword": "gynecologist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04130198806524277,
- 0.0023508770391345024,
- -0.03776775300502777,
- 0.016613949090242386,
- -0.10087557882070541,
- -0.07084476947784424,
- 0.07488895952701569,
- 0.026308219879865646,
- 0.022585634142160416,
- 0.02354291081428528,
- -0.02722291462123394,
- 0.019072145223617554,
- -0.08503524959087372,
- 0.047457605600357056,
- -0.09265527129173279,
- 0.00025800836738198996,
- 0.0411384180188179,
- -0.0016992839518934488,
- 0.023887543007731438,
- -0.0562821701169014,
- -0.04149400815367699,
- 0.04927248880267143,
- 0.0288440752774477,
- -0.025868041440844536,
- 0.031010093167424202,
- -0.09652646631002426,
- -0.04377575218677521,
- -0.00796914380043745,
- -0.028856318444013596,
- -0.010386122390627861,
- -0.03389858454465866,
- -0.011198798194527626,
- -0.015697142109274864,
- 0.026952644810080528,
- -0.027536096051335335,
- -0.022351834923028946,
- -0.053948093205690384,
- 0.054034024477005005,
- 0.08525242656469345,
- 0.043718282133340836,
- 0.03137178346514702,
- -0.07096163183450699,
- -0.026696834713220596,
- 0.036586858332157135,
- -0.0011727906530722976,
- 0.0428367480635643,
- 0.05447181314229965,
- 0.008743287064135075,
- -0.02182050049304962,
- -0.022955624386668205,
- 0.02221347577869892,
- -0.12088247388601303,
- -0.06269951909780502,
- 0.03322864696383476,
- 0.04051780700683594,
- -0.07583408802747726,
- -0.015077393501996994,
- -0.027937905862927437,
- -0.05685790255665779,
- -0.012856329791247845,
- -0.048335056751966476,
- 0.07838402688503265,
- -0.002709398278966546,
- 0.07847405970096588,
- -0.00034241043613292277,
- -0.026345614343881607,
- 0.04568248242139816,
- 0.04082968458533287,
- 0.01285804808139801,
- 0.01821189932525158,
- 0.04886772483587265,
- 0.031146498396992683,
- 0.026074569672346115,
- 0.0762142464518547,
- 0.011865583248436451,
- 0.002217239234596491,
- 0.05805586650967598,
- 0.06845886260271072,
- 0.06261374801397324,
- -0.009704065509140491,
- 0.06361277401447296,
- -0.0691157728433609,
- 0.008861653506755829,
- 0.04164857044816017,
- 0.006805010139942169,
- -0.032622624188661575,
- -0.01100599393248558,
- 0.053503017872571945,
- -0.0334392786026001,
- -0.12236487865447998,
- 0.03844918683171272,
- -0.0212005153298378,
- 0.05839649960398674,
- -0.008576455526053905,
- -0.024506675079464912,
- 0.08252578228712082,
- -0.038584571331739426,
- -0.065690778195858,
- -0.04564154893159866,
- 0.08082432299852371,
- -0.11091320961713791,
- 0.027594340965151787,
- -0.008692672476172447,
- 0.14343585073947906,
- -0.0809047520160675,
- 0.03848424553871155,
- -0.04483594000339508,
- 0.013770290650427341,
- -0.05308191478252411,
- 0.0030120944138616323,
- -0.009770645759999752,
- 0.031158171594142914,
- 0.0007826135843060911,
- 0.013831988908350468,
- -0.0007879165350459516,
- 0.002521722111850977,
- 0.056439369916915894,
- 0.054400019347667694,
- 0.053848747164011,
- 0.004835843574255705,
- -0.07678674161434174,
- -0.03862651064991951,
- -0.07554545998573303,
- -0.033002082258462906,
- -0.005540655460208654,
- 0.0511428639292717,
- 0.05784083530306816,
- -3.737883485861825e-35,
- 0.025570450350642204,
- -0.04967106878757477,
- 0.15063543617725372,
- -0.012989708222448826,
- 0.0023435160983353853,
- 0.14631162583827972,
- 0.0161147303879261,
- -0.04386305809020996,
- 0.0541452057659626,
- -0.036187440156936646,
- 0.012225053273141384,
- 0.030357973650097847,
- -0.020672623068094254,
- -0.08581700921058655,
- -0.04428451135754585,
- 0.06955539435148239,
- -0.012295680120587349,
- 0.05222162976861,
- -0.09211359173059464,
- 0.04970480874180794,
- -0.07933229207992554,
- 0.07322170585393906,
- -0.03158549591898918,
- -0.002017925027757883,
- -0.003958328161388636,
- -0.010218671523034573,
- -0.025456463918089867,
- -0.0667944848537445,
- 0.011181201785802841,
- 0.009878212586045265,
- -0.03259908780455589,
- -0.054124653339385986,
- 0.043984126299619675,
- -0.02452564798295498,
- -0.024265287443995476,
- -0.01454552635550499,
- -0.07602082937955856,
- -0.0712844729423523,
- 0.031892456114292145,
- -0.019564716145396233,
- -0.07963664829730988,
- -0.04300052300095558,
- 0.09693672508001328,
- 0.041294679045677185,
- -0.06600010395050049,
- 0.07716767489910126,
- -0.019132200628519058,
- -0.0058159613981842995,
- -0.02307613380253315,
- 0.02526395581662655,
- -0.025602832436561584,
- -0.0017148759216070175,
- -0.0776793509721756,
- -0.005765705835074186,
- 0.020466992631554604,
- 0.04891197383403778,
- 0.06419424712657928,
- -0.03217492997646332,
- -0.009735343046486378,
- 0.029345231130719185,
- 0.061439383774995804,
- 0.1104988306760788,
- -0.028849128633737564,
- 0.007129925303161144,
- -0.04690302535891533,
- -0.08998040109872818,
- -0.014597385190427303,
- -0.036353446543216705,
- 0.002740799216553569,
- 0.11736972630023956,
- -0.11783944070339203,
- 0.07137205451726913,
- 0.08459771424531937,
- 0.033717673271894455,
- 0.017171066254377365,
- 0.009799688123166561,
- 0.00731302285566926,
- -0.0068798549473285675,
- -0.0253892969340086,
- -0.09570052474737167,
- -0.011575269512832165,
- -0.04097617417573929,
- -0.03150523081421852,
- 0.042931269854307175,
- 0.01924995891749859,
- 0.04990963637828827,
- -0.06379028409719467,
- 0.05590269714593887,
- 0.04799351841211319,
- 0.04849974066019058,
- -0.09008686244487762,
- -0.020934421569108963,
- 0.084228515625,
- 0.033962711691856384,
- -0.04434662684798241,
- -1.0250616551372553e-33,
- -0.027305610477924347,
- -0.015702638775110245,
- 0.009085381403565407,
- 0.019046436995267868,
- 0.09793353825807571,
- -0.0033692270517349243,
- 0.06448426842689514,
- -0.07065698504447937,
- -0.02778705582022667,
- 0.0771753266453743,
- 0.04985542222857475,
- 0.017478732392191887,
- 0.04923100396990776,
- 0.02638688124716282,
- 0.03654251992702484,
- 0.0011178404092788696,
- -0.026688290759921074,
- -0.09903810918331146,
- -0.05344199016690254,
- 0.019635243341326714,
- -0.05077172815799713,
- 0.024341288954019547,
- -0.015018741600215435,
- -0.06763532757759094,
- -0.005567529704421759,
- -0.030482152476906776,
- 0.09793390333652496,
- 0.0032997678499668837,
- -0.04049477353692055,
- 0.006788549479097128,
- -0.033198993653059006,
- 0.007444887422025204,
- -0.03619297593832016,
- -0.045797932893037796,
- 0.057231735438108444,
- 0.0612090528011322,
- 0.04142950847744942,
- -0.023168258368968964,
- -0.005430153105407953,
- -0.007958517409861088,
- 0.03681904822587967,
- -0.03199430927634239,
- 0.001634844928048551,
- 0.04346420243382454,
- -0.0007887956453487277,
- 0.10828068107366562,
- 0.012638935819268227,
- 0.0962890163064003,
- 0.0342179499566555,
- -0.008161595091223717,
- -0.13072942197322845,
- -0.02491643652319908,
- -0.07284985482692719,
- 0.0022337252739816904,
- 0.031754862517118454,
- -0.012214526534080505,
- -0.01784827746450901,
- -0.009476084262132645,
- -0.010900933295488358,
- 0.05834709107875824,
- 0.029555849730968475,
- -0.018661275506019592,
- -0.033228617161512375,
- 0.05967435985803604,
- -0.02614499442279339,
- 0.03817783296108246,
- -0.014480089768767357,
- 0.0026624847669154406,
- -0.00517346290871501,
- 0.06999947875738144,
- 0.04132447391748428,
- 0.018131695687770844,
- -0.04378488287329674,
- 0.01183369942009449,
- -0.022829363122582436,
- -0.036777786910533905,
- -0.05697920173406601,
- -0.17649973928928375,
- -0.01432580966502428,
- -0.0007870407425798476,
- -0.014259710907936096,
- -0.0924079492688179,
- 0.015284601598978043,
- 0.10594780743122101,
- 0.003156180027872324,
- -0.05227206274867058,
- 0.04897715523838997,
- -0.014106524176895618,
- 0.0030126182828098536,
- -0.022867165505886078,
- 0.009654791094362736,
- 0.08062248677015305,
- -0.034036148339509964,
- -0.006449912674725056,
- 0.04849330335855484,
- -1.4523203084593206e-8,
- -0.09290332347154617,
- 0.00832324754446745,
- -0.03913173824548721,
- -0.11201516538858414,
- 0.06747020035982132,
- -0.13294801115989685,
- -0.06343503296375275,
- 0.008803458884358406,
- 0.03640167415142059,
- 0.07624144852161407,
- -0.026221241801977158,
- 0.0077660419046878815,
- 0.005170783028006554,
- -0.0253058560192585,
- 0.03508419916033745,
- -0.03722528740763664,
- -0.007086250465363264,
- 0.06021125242114067,
- -0.011006874963641167,
- -0.03767753019928932,
- 0.02134162187576294,
- -0.054207999259233475,
- -0.053364429622888565,
- 0.02652590721845627,
- -0.012550846673548222,
- 0.06044906750321388,
- 0.08306232839822769,
- 0.06284502893686295,
- -0.027704162523150444,
- 0.03825947269797325,
- 0.10905668139457703,
- 0.04140918329358101,
- 0.06479057669639587,
- 0.010316555388271809,
- -0.07058753073215485,
- -0.0539143942296505,
- 0.0017165375174954534,
- -0.013126395642757416,
- 0.05992121621966362,
- 0.01726284809410572,
- -0.043456096202135086,
- -0.005469329655170441,
- 0.06809401512145996,
- 0.04645368084311485,
- -0.052197977900505066,
- -0.005628712475299835,
- 0.08639806509017944,
- -0.02132558450102806,
- 0.012901422567665577,
- 0.03261541202664375,
- 0.05025015398859978,
- -0.043497007340192795,
- 0.039401981979608536,
- 0.04696694388985634,
- 0.012536482885479927,
- -0.04195913299918175,
- 0.04658820107579231,
- -0.04152531549334526,
- -0.053691036999225616,
- 0.057795342057943344,
- -0.035740360617637634,
- -0.05287161469459534,
- 0.10858804732561111,
- 0.021002117544412613
- ]
- },
- {
- "keyword": "ophthalmologist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.025799788534641266,
- -0.005941030569374561,
- -0.0030425835866481066,
- 0.0186880175024271,
- -0.0656229630112648,
- -0.128557950258255,
- 0.12718360126018524,
- 0.07183751463890076,
- -0.036888252943754196,
- 0.027527516707777977,
- 0.009794032201170921,
- -0.06478817015886307,
- -0.04746194928884506,
- 0.10189173370599747,
- -0.09602732211351395,
- 0.06860364228487015,
- -0.03805262967944145,
- -0.017370829358696938,
- 0.027178458869457245,
- -0.06606075167655945,
- -0.036271609365940094,
- 0.02654138393700123,
- 0.029921947047114372,
- -0.08956905454397202,
- 0.015768444165587425,
- 0.008873412385582924,
- -0.012750552967190742,
- -0.015732256695628166,
- -0.006554334424436092,
- -0.01865656115114689,
- -0.05292673036456108,
- -0.011119818314909935,
- -0.011552724987268448,
- -0.0048830099403858185,
- 0.04397759214043617,
- 0.0033287322148680687,
- -0.04872719943523407,
- 0.017974404618144035,
- 0.005962470546364784,
- 0.08187282830476761,
- -0.07034467160701752,
- 0.032218266278505325,
- -0.051887959241867065,
- -0.01959007978439331,
- 0.041071295738220215,
- 0.019305674359202385,
- 0.034978993237018585,
- 0.004440774209797382,
- -0.007602881174534559,
- -0.07247357815504074,
- -0.08419959992170334,
- -0.09927400946617126,
- -0.0838504359126091,
- -0.017957590520381927,
- 0.002319598337635398,
- 0.03229440748691559,
- -0.07792124152183533,
- -0.026855843141674995,
- -0.01908302865922451,
- -0.01603282243013382,
- 0.0019278101390227675,
- 0.02535545453429222,
- -0.07414375245571136,
- 0.03579822927713394,
- -0.004602685105055571,
- -0.015823764726519585,
- 0.0449114553630352,
- -0.0834227055311203,
- 0.03902413696050644,
- -0.033479224890470505,
- -0.034306373447179794,
- 0.009114195592701435,
- 0.09258387982845306,
- 0.05521088093519211,
- 0.01634952612221241,
- -0.03237441927194595,
- 0.08407653123140335,
- -0.07778060436248779,
- 0.10028576850891113,
- 0.025983868166804314,
- 0.08506070822477341,
- -0.04919164627790451,
- -0.0008536786190234125,
- -0.02524719387292862,
- 0.05609427019953728,
- 0.022296471521258354,
- -0.06400144845247269,
- 0.02289705164730549,
- -0.06544434279203415,
- -0.06837667524814606,
- 0.005859482567757368,
- -0.027893895283341408,
- -0.0723171979188919,
- -0.02973894774913788,
- -0.028505560010671616,
- 0.01364076416939497,
- 0.04131697118282318,
- 0.0012958201114088297,
- -0.06041910499334335,
- 0.1296355277299881,
- -0.004143477883189917,
- -0.06018628552556038,
- 0.036298926919698715,
- 0.08323927223682404,
- -0.05975684896111488,
- -0.05189322680234909,
- 0.055569715797901154,
- -0.02763892151415348,
- 0.02164197340607643,
- 0.007510472554713488,
- 0.05852505937218666,
- 0.10558577626943588,
- -0.01559862308204174,
- -0.05460130423307419,
- -0.012541880831122398,
- 0.0515361949801445,
- -0.02684580348432064,
- 0.02577739767730236,
- 0.1468740552663803,
- 0.005734546575695276,
- -0.04620726406574249,
- 0.06297373026609421,
- -0.009122886694967747,
- 0.04216157644987106,
- 0.06395526975393295,
- 0.06685055047273636,
- -0.025444811210036278,
- 1.1165080442980251e-33,
- 0.030048390850424767,
- 0.05065961182117462,
- 0.06659995019435883,
- 0.009474821388721466,
- -0.02162155881524086,
- 0.07140420377254486,
- -0.008730794303119183,
- 0.0422770194709301,
- -0.02398376725614071,
- -0.048138223588466644,
- 0.03130113705992699,
- 0.004217635374516249,
- -0.018075009807944298,
- -0.01393438782542944,
- 0.05141731724143028,
- 0.013541207648813725,
- -0.00029776935116387904,
- 0.10917393863201141,
- -0.06561396270990372,
- 0.006891424767673016,
- -0.0691884458065033,
- 0.008852291852235794,
- -0.030655652284622192,
- 0.09941551834344864,
- -0.012833697721362114,
- 0.0007277833065018058,
- 0.047216933220624924,
- -0.047313086688518524,
- 0.04072771966457367,
- 0.030469458550214767,
- 0.02626953460276127,
- 0.10252255946397781,
- -0.03384305536746979,
- -0.00841575674712658,
- 0.002335145603865385,
- 0.032938726246356964,
- -0.01311296597123146,
- -0.03675215318799019,
- 0.02988208271563053,
- -0.047393396496772766,
- -0.05424854904413223,
- 0.06878794729709625,
- 0.046779632568359375,
- -0.002441074000671506,
- -0.010015253908932209,
- 0.06594855338335037,
- -0.05102521926164627,
- 0.0960952565073967,
- -0.02352077327668667,
- 0.04386279359459877,
- -0.01900780387222767,
- -0.06786882877349854,
- -0.026217082515358925,
- -0.06724448502063751,
- 0.0022834704723209143,
- 0.04582387953996658,
- 0.032830726355314255,
- -0.0315638929605484,
- 0.052492789924144745,
- 0.02091449685394764,
- 0.026639331132173538,
- 0.03348593786358833,
- -0.10311415046453476,
- 0.04792971536517143,
- -0.032683659344911575,
- -0.08199551701545715,
- -0.04411778599023819,
- -0.04516490548849106,
- -0.021716803312301636,
- -0.007287606131285429,
- -0.09227406978607178,
- -0.0052046701312065125,
- 0.0797005146741867,
- 0.012636642903089523,
- 0.004020833410322666,
- 0.043613966554403305,
- -0.0077747320756316185,
- 0.0715465322136879,
- -0.0741574615240097,
- 0.020036153495311737,
- 0.0007510738214477897,
- 0.024682993069291115,
- 0.044569551944732666,
- -0.06342513859272003,
- 0.012122693471610546,
- 0.03877503052353859,
- -0.018481140956282616,
- 0.0073797632940113544,
- -0.0032802019268274307,
- 0.03589105233550072,
- 0.00000987201838142937,
- -0.008172823116183281,
- -0.049082159996032715,
- -0.02224745973944664,
- -0.04440062865614891,
- -2.2510658043529265e-33,
- -0.01049494743347168,
- -0.08290547877550125,
- -0.04976634308695793,
- -0.006490884814411402,
- 0.04372421279549599,
- 0.00950548704713583,
- 0.0813138484954834,
- 0.05641159042716026,
- 0.09389413148164749,
- -0.03462592139840126,
- 0.040695443749427795,
- -0.007186809089034796,
- 0.02380593679845333,
- -0.05256744101643562,
- 0.004409824963659048,
- -0.03335127234458923,
- -0.04904846474528313,
- -0.002795618027448654,
- -0.019524604082107544,
- 0.08136541396379471,
- -0.03144443780183792,
- 0.03929418325424194,
- -0.036521174013614655,
- -0.08297384530305862,
- 0.005852023605257273,
- 0.0410439670085907,
- 0.04095598682761192,
- -0.040314074605703354,
- -0.09667174518108368,
- -0.022600946947932243,
- -0.03835819661617279,
- -0.021191738545894623,
- 0.025480378419160843,
- -0.01979854702949524,
- -0.030078768730163574,
- 0.09830919653177261,
- -0.0645371675491333,
- -0.0732160210609436,
- -0.026308167725801468,
- 0.06292755156755447,
- 0.03509562090039253,
- -0.0756160318851471,
- 0.056150831282138824,
- 0.024644330143928528,
- 0.05601819232106209,
- -0.0037216458003968,
- -0.011362466961145401,
- 0.037613287568092346,
- 0.007303270511329174,
- -0.06537744402885437,
- -0.10305780917406082,
- 0.018254637718200684,
- -0.01344170793890953,
- -0.06626276671886444,
- -0.02490852214396,
- -0.012988518923521042,
- -0.06651439517736435,
- -0.004808576311916113,
- 0.03901805728673935,
- 0.022412531077861786,
- 0.07761364430189133,
- -0.04628400504589081,
- -0.00027074231184087694,
- 0.10725078731775284,
- -0.003054224420338869,
- 0.07589416205883026,
- 0.006169130560010672,
- -0.022283345460891724,
- 0.06467145681381226,
- -0.0017205268377438188,
- 0.06767904758453369,
- -0.0025524250231683254,
- -0.06059218570590019,
- -0.003284045495092869,
- 0.02152688056230545,
- -0.04494387283921242,
- -0.035679567605257034,
- 0.07177504897117615,
- -0.03963141888380051,
- 0.103287473320961,
- 0.032499898225069046,
- -0.061463069170713425,
- 0.01039054710417986,
- 0.20678749680519104,
- -0.0052125598303973675,
- 0.015029720030725002,
- 0.03619413077831268,
- -0.05559476464986801,
- -0.0505036860704422,
- -0.06030604615807533,
- -0.022728294134140015,
- 0.018288880586624146,
- -0.07723154872655869,
- -0.01828867197036743,
- 0.03733675926923752,
- -1.7202951951844625e-8,
- -0.026945246383547783,
- -0.023260455578565598,
- -0.022707151249051094,
- -0.04003756120800972,
- 0.0013317540287971497,
- -0.05304351821541786,
- 0.004659758415073156,
- 0.03145964816212654,
- -0.017365261912345886,
- 0.021030927076935768,
- -0.013884871266782284,
- 0.04265664890408516,
- -0.011742005124688148,
- 0.03422319516539574,
- 0.005193179007619619,
- -0.08134174346923828,
- 0.03028203174471855,
- 0.056144099682569504,
- -0.004399883560836315,
- -0.027306877076625824,
- -0.04091377928853035,
- -0.034512199461460114,
- 0.0828184261918068,
- 0.03612064942717552,
- -0.028839020058512688,
- 0.010082658380270004,
- -0.02442585676908493,
- 0.018194101750850677,
- 0.0026999120600521564,
- 0.1022857278585434,
- 0.04246216639876366,
- 0.07848470658063889,
- 0.02712712436914444,
- -0.07354897260665894,
- -0.04812952131032944,
- -0.06237909197807312,
- -0.04936510697007179,
- -0.012481389567255974,
- 0.03836501017212868,
- 0.04299348220229149,
- -0.05497602000832558,
- 0.021230028942227364,
- 0.0813254863023758,
- 0.09792742878198624,
- -0.01877918653190136,
- 0.006519128102809191,
- 0.07779368758201599,
- -0.0745600163936615,
- 0.03958893567323685,
- -0.06080973148345947,
- 0.0018684499664232135,
- -0.0043040681630373,
- 0.006282792426645756,
- 0.003939762245863676,
- -0.16054131090641022,
- -0.040452249348163605,
- 0.09154211729764938,
- -0.014163992367684841,
- -0.16423378884792328,
- -0.010053304955363274,
- 0.03276512026786804,
- -0.03148537129163742,
- 0.030955299735069275,
- 0.02492688223719597
- ]
- },
- {
- "keyword": "dentist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.08272374421358109,
- 0.0193098783493042,
- -0.04019736126065254,
- -0.015391106717288494,
- -0.15812785923480988,
- -0.08710666000843048,
- 0.029711080715060234,
- 0.08397228270769119,
- -0.014507883228361607,
- 0.07194232195615768,
- -0.02938210591673851,
- -0.09379232674837112,
- -0.04533030837774277,
- 0.057520970702171326,
- -0.063443124294281,
- 0.015677236020565033,
- 0.004239724949002266,
- 0.003505357075482607,
- 0.010710661299526691,
- -0.06070597469806671,
- -0.04320555925369263,
- 0.09325972199440002,
- -0.025928597897291183,
- -0.03769702836871147,
- 0.03851716220378876,
- 0.06244303286075592,
- -0.03435381501913071,
- -0.08778069913387299,
- 0.040569983422756195,
- 0.03576034680008888,
- -0.02993610128760338,
- -0.030506158247590065,
- 0.10607093572616577,
- -0.07132262736558914,
- -0.024152014404535294,
- -0.02614695578813553,
- -0.04946710914373398,
- 0.05707225576043129,
- 0.06281110644340515,
- 0.013518491759896278,
- -0.03470241278409958,
- 0.020572490990161896,
- 0.02670135162770748,
- 0.0007920503849163651,
- 0.03790979087352753,
- -0.017256595194339752,
- 0.059213973581790924,
- -0.028992528095841408,
- -0.004974252078682184,
- -0.02759590931236744,
- 0.004571354482322931,
- -0.032657478004693985,
- -0.032593734562397,
- -0.023002471774816513,
- -0.03339965641498566,
- -0.00020413377205841243,
- -0.004923535976558924,
- -0.011756079271435738,
- 0.005777400452643633,
- 0.06873158365488052,
- 0.033801864832639694,
- -0.010082392022013664,
- -0.031042706221342087,
- 0.12317153811454773,
- -0.04072185605764389,
- 0.04222732037305832,
- 0.006828035227954388,
- -0.049153972417116165,
- -0.058460649102926254,
- 0.017685744911432266,
- -0.0023765803780406713,
- -0.01853976957499981,
- 0.0885985940694809,
- 0.010350361466407776,
- 0.12275908887386322,
- -0.08186672627925873,
- 0.14858205616474152,
- 0.03939623758196831,
- 0.01213577575981617,
- -0.022811423987150192,
- 0.053658999502658844,
- -0.027271714061498642,
- -0.03664529323577881,
- 0.01567467860877514,
- 0.0027638382744044065,
- -0.02104923687875271,
- -0.013625488616526127,
- -0.0010252512292936444,
- -0.03113224357366562,
- -0.05162184685468674,
- 0.0026891108136624098,
- 0.010585702024400234,
- 0.013420186936855316,
- 0.014620677568018436,
- -0.041966069489717484,
- 0.04027697443962097,
- -0.01610432006418705,
- 0.049409471452236176,
- -0.040600694715976715,
- 0.24083340167999268,
- -0.052654609084129333,
- 0.013857991434633732,
- -0.01609928347170353,
- 0.05207007750868797,
- 0.00773210683837533,
- -0.001927639706991613,
- -0.08354174345731735,
- -0.03142369166016579,
- 0.0007252677460201085,
- 0.0013456039596349,
- -0.009944302961230278,
- 0.06109005585312843,
- -0.03815123811364174,
- -0.00023182427685242146,
- 0.028189940378069878,
- -0.02962411753833294,
- -0.001428064308129251,
- 0.0019600940868258476,
- 0.024366242811083794,
- 0.0992116928100586,
- -0.032739583402872086,
- -0.019123921170830727,
- -0.11418851464986801,
- -0.02869151532649994,
- -0.029849685728549957,
- -0.04738042503595352,
- 0.05549021437764168,
- -5.285531002603735e-33,
- 0.030929405242204666,
- -0.0416666716337204,
- 0.026296865195035934,
- -0.02266300469636917,
- 0.00911918468773365,
- 0.06894689798355103,
- 0.018773943185806274,
- 0.03719083592295647,
- -0.018282756209373474,
- 0.011753899976611137,
- 0.039906296879053116,
- -0.026311693713068962,
- -0.07862982898950577,
- -0.01226424053311348,
- -0.041936829686164856,
- 0.14292028546333313,
- -0.07447052747011185,
- 0.03327548876404762,
- -0.07490944862365723,
- 0.05137699842453003,
- -0.0475337840616703,
- 0.009632267989218235,
- -0.052266430109739304,
- 0.14207011461257935,
- -0.036687254905700684,
- -0.008608261123299599,
- 0.024766143411397934,
- -0.1010780930519104,
- 0.06172529235482216,
- 0.003522162791341543,
- -0.036874350160360336,
- 0.011665469035506248,
- 0.02257632464170456,
- -0.0585080049932003,
- 0.024363471195101738,
- 0.024001607671380043,
- -0.002821392146870494,
- -0.05344976857304573,
- -0.028423666954040527,
- -0.05389924719929695,
- -0.013471347279846668,
- 0.07166554778814316,
- -0.003623398719355464,
- 0.008039032109081745,
- 0.01594349555671215,
- -0.021060289815068245,
- 0.0023300021421164274,
- 0.112244613468647,
- 0.028693649917840958,
- 0.04429540038108826,
- -0.03382756933569908,
- -0.03669501841068268,
- -0.030469845980405807,
- 0.08343364298343658,
- -0.02373548410832882,
- -0.011995234526693821,
- 0.030810020864009857,
- 0.04389696940779686,
- 0.003519561141729355,
- 0.0424712710082531,
- -0.06812641769647598,
- -0.014736027456820011,
- -0.008628755807876587,
- 0.04840552806854248,
- -0.05194660276174545,
- -0.035491473972797394,
- 0.004585096146911383,
- -0.033432718366384506,
- 0.01366396714001894,
- -0.040749140083789825,
- -0.08237475156784058,
- 0.04670681804418564,
- -0.09002241492271423,
- -0.013112489134073257,
- -0.07277785241603851,
- 0.016729915514588356,
- 0.11100783944129944,
- 0.08115030825138092,
- -0.0726265236735344,
- 0.0012129107490181923,
- 0.0005473381606861949,
- 0.02444997802376747,
- 0.020040292292833328,
- -0.04704323038458824,
- -0.03187873214483261,
- 0.0584016777575016,
- -0.05980513617396355,
- -0.05958027020096779,
- 0.08559571206569672,
- 0.04383284971117973,
- -0.09762595593929291,
- -0.051781490445137024,
- 0.004347026813775301,
- 0.049707964062690735,
- -0.0396745391190052,
- 2.8019274364032054e-33,
- -0.045140694826841354,
- -0.02897638827562332,
- -0.009804705157876015,
- 0.04391229897737503,
- 0.06403731554746628,
- 0.05143348127603531,
- -0.03393767401576042,
- 0.009148753248155117,
- -0.0206742063164711,
- 0.0014853171305730939,
- 0.033593881875276566,
- 0.08667482435703278,
- 0.11317764967679977,
- -0.030514366924762726,
- 0.00024300206860061735,
- 0.006498089991509914,
- 0.02246454358100891,
- -0.04149217903614044,
- -0.08699143677949905,
- 0.026701638475060463,
- 0.014413061551749706,
- 0.07511544972658157,
- -0.024119826033711433,
- -0.07393007725477219,
- -0.04155150055885315,
- 0.05731324851512909,
- -0.04304831847548485,
- -0.00234952918253839,
- -0.058959126472473145,
- 0.01730608567595482,
- -0.045698150992393494,
- -0.0017191143706440926,
- -0.04215775057673454,
- -0.017360903322696686,
- -0.06647991389036179,
- 0.13868318498134613,
- -0.009450545534491539,
- -0.029970664530992508,
- -0.051017168909311295,
- 0.024281946942210197,
- 0.033367790281772614,
- 0.004666815046221018,
- 0.05942491069436073,
- 0.09547797590494156,
- -0.005167013965547085,
- 0.03346987068653107,
- 0.011457923799753189,
- 0.01684909127652645,
- -0.03103097900748253,
- 0.04361993819475174,
- -0.07139698415994644,
- 0.054070450365543365,
- -0.03992237150669098,
- 0.02196473255753517,
- -0.02134649269282818,
- 0.0224941186606884,
- -0.032606881111860275,
- -0.0610785074532032,
- 0.013850334100425243,
- -0.004178072325885296,
- 0.03406473249197006,
- 0.0021648539695888758,
- 0.017960555851459503,
- 0.07096374034881592,
- -0.06155996397137642,
- -0.02311752364039421,
- 0.008233948610723019,
- 0.0011129484046250582,
- -0.027932506054639816,
- 0.011579486541450024,
- 0.06539185345172882,
- 0.027710743248462677,
- -0.0024389547761529684,
- -0.029147842898964882,
- -0.004339071922004223,
- -0.012030107900500298,
- -0.029006406664848328,
- -0.1411464810371399,
- -0.06253987550735474,
- -0.035739462822675705,
- -0.06360521167516708,
- -0.030273810029029846,
- 0.04075217619538307,
- 0.08916642516851425,
- -0.023897048085927963,
- -0.08175325393676758,
- 0.04482956603169441,
- -0.0019132932648062706,
- 0.008815193548798561,
- -0.02251579239964485,
- -0.006391330622136593,
- 0.09311297535896301,
- -0.024857856333255768,
- -0.09890227764844894,
- 0.10815411061048508,
- -1.1508745068056214e-8,
- -0.01451541855931282,
- 0.01017814315855503,
- -0.06496147811412811,
- -0.03300613537430763,
- 0.013390133157372475,
- -0.0844234749674797,
- -0.07168961316347122,
- 0.00561745697632432,
- -0.019534101709723473,
- 0.0626993477344513,
- 0.052632953971624374,
- 0.03353225812315941,
- -0.05129033327102661,
- -0.04532238468527794,
- 0.07585369795560837,
- -0.04304838553071022,
- 0.03865935653448105,
- 0.014816328883171082,
- -0.030188115313649178,
- -0.05615569278597832,
- -0.07205568999052048,
- -0.0031483459752053022,
- 0.08853908628225327,
- -0.0033094948157668114,
- 0.0035095997154712677,
- -0.04043122008442879,
- 0.03885219618678093,
- 0.09725064039230347,
- -0.016924776136875153,
- 0.10250023007392883,
- -0.039297915995121,
- 0.10678040981292725,
- -0.029045313596725464,
- -0.03521158918738365,
- 0.015262959524989128,
- -0.023042308166623116,
- 0.03183002024888992,
- -0.03812827169895172,
- -0.031007878482341766,
- -0.02083980105817318,
- -0.006867606658488512,
- -0.009855956770479679,
- 0.008970726281404495,
- 0.053275760263204575,
- -0.08848670870065689,
- 0.01305372454226017,
- 0.09067157655954361,
- 0.08504830300807953,
- 0.0695042759180069,
- 0.023842215538024902,
- -0.013815021142363548,
- 0.008609266020357609,
- 0.022150201722979546,
- -0.03199758380651474,
- -0.03378482535481453,
- 0.008300191722810268,
- 0.05546614155173302,
- -0.01522254478186369,
- -0.009014016948640347,
- 0.026630863547325134,
- 0.027895938605070114,
- -0.053367093205451965,
- 0.08638022840023041,
- 0.013486447744071484
- ]
- },
- {
- "keyword": "orthodontist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.10202803462743759,
- 0.02955460362136364,
- 0.005659072194248438,
- -0.06030919775366783,
- -0.17301784455776215,
- -0.04650518298149109,
- -0.021727878600358963,
- 0.06296089291572571,
- -0.03726557269692421,
- 0.09331589192152023,
- 0.01838797517120838,
- -0.05931217595934868,
- -0.07243822515010834,
- 0.03978126496076584,
- -0.06146497279405594,
- 0.052310895174741745,
- -0.015872370451688766,
- 0.05600452050566673,
- 0.005242395680397749,
- -0.07112602889537811,
- 0.015241235494613647,
- 0.07528277486562729,
- 0.019871726632118225,
- 0.01958196610212326,
- 0.001871375716291368,
- 0.05640153959393501,
- -0.057227183133363724,
- -0.03474346175789833,
- 0.05961380526423454,
- 0.025555988773703575,
- -0.06505797803401947,
- -0.046957533806562424,
- 0.05316641926765442,
- -0.02424909733235836,
- -0.009154810570180416,
- -0.06336598098278046,
- 0.047820985317230225,
- 0.009545340202748775,
- -0.018441610038280487,
- 0.04225455969572067,
- -0.04703841730952263,
- -0.006764551158994436,
- -0.03728596866130829,
- -0.02157636359333992,
- 0.04442818462848663,
- -0.016739141196012497,
- 0.03465770557522774,
- -0.013573436997830868,
- -0.021264301612973213,
- 0.007141864392906427,
- 0.009944730438292027,
- -0.054316867142915726,
- 0.023351382464170456,
- -0.03867819905281067,
- -0.024600351229310036,
- 0.07344675064086914,
- 0.010341677814722061,
- 0.010070825926959515,
- -0.0660376250743866,
- 0.07622309029102325,
- 0.03847624734044075,
- -0.019753960892558098,
- -0.06625030934810638,
- 0.1043655052781105,
- -0.052416589111089706,
- 0.03481513634324074,
- -0.006165800616145134,
- -0.006994029972702265,
- 0.012113054282963276,
- -0.05399938300251961,
- 0.042259372770786285,
- -0.05278223752975464,
- 0.04264679551124573,
- 0.11245821416378021,
- 0.15609058737754822,
- -0.04963516816496849,
- 0.14572888612747192,
- 0.025091078132390976,
- 0.052479129284620285,
- -0.012600376270711422,
- 0.005569437984377146,
- -0.0235451590269804,
- -0.025307556614279747,
- -0.00789462961256504,
- 0.006698897108435631,
- -0.04132795333862305,
- -0.036584604531526566,
- 0.0600389800965786,
- -0.022497428581118584,
- -0.05984589084982872,
- -0.0067885578610002995,
- -0.02269567735493183,
- -0.021530553698539734,
- -0.04818037152290344,
- 0.01313250046223402,
- 0.045198991894721985,
- -0.03312567248940468,
- 0.030533330515027046,
- -0.011438491754233837,
- 0.13416773080825806,
- -0.027601726353168488,
- 0.0032520515378564596,
- 0.015161543153226376,
- 0.05535510927438736,
- -0.06365132331848145,
- 0.019721640273928642,
- -0.05974278599023819,
- -0.006790610961616039,
- 0.06882243603467941,
- 0.008795086294412613,
- -0.015181309543550014,
- -0.007345883175730705,
- -0.007989107631146908,
- 0.03891507908701897,
- -0.021633289754390717,
- -0.04660093039274216,
- -0.0102922935038805,
- 0.05287262052297592,
- 0.10004836320877075,
- 0.050336968153715134,
- -0.0238901786506176,
- -0.018935522064566612,
- -0.09645871818065643,
- 0.04828347638249397,
- -0.049911241978406906,
- 0.0008513062493875623,
- -0.06710747629404068,
- -1.0333121561120892e-33,
- 0.02590048313140869,
- 0.04874265193939209,
- 0.022281311452388763,
- -0.05670217424631119,
- 0.004226950462907553,
- 0.05052999034523964,
- 0.011844835244119167,
- 0.03481844440102577,
- -0.020795129239559174,
- -0.021804776042699814,
- 0.056125711649656296,
- -0.03529685363173485,
- -0.08046717941761017,
- 0.031891532242298126,
- 0.012903094291687012,
- 0.00785275548696518,
- -0.0432438887655735,
- 0.06311385333538055,
- -0.14001759886741638,
- 0.046979062259197235,
- -0.00503989914432168,
- 0.04055897518992424,
- -0.02980472519993782,
- 0.072663813829422,
- 0.007762312423437834,
- -0.031195607036352158,
- 0.07067179679870605,
- -0.06621108949184418,
- 0.026450328528881073,
- -0.0029375727754086256,
- 0.03368188813328743,
- -0.0318281464278698,
- -0.025990774855017662,
- -0.11481710523366928,
- 0.01488529797643423,
- -0.06330426782369614,
- 0.040185052901506424,
- -0.05239041894674301,
- -0.00032009981805458665,
- -0.04662927985191345,
- 0.037460342049598694,
- 0.06249026954174042,
- 0.030464045703411102,
- 0.009997827000916004,
- -0.033662453293800354,
- 0.02051394246518612,
- 0.08295144885778427,
- 0.11116571724414825,
- 0.004001221619546413,
- -0.01044244971126318,
- 0.01213857438415289,
- -0.04299212619662285,
- -0.05376897007226944,
- 0.009758612141013145,
- -0.00404508737847209,
- -0.011994232423603535,
- 0.017614634707570076,
- -0.0032332069240510464,
- -0.05155005306005478,
- -0.009905795566737652,
- -0.02016870118677616,
- 0.04234381020069122,
- 0.039035290479660034,
- 0.031034179031848907,
- -0.02505289763212204,
- -0.10670700669288635,
- 0.007836266420781612,
- -0.021925557404756546,
- 0.054328080266714096,
- -0.02876872383058071,
- -0.0825396478176117,
- -0.008779198862612247,
- -0.05206441879272461,
- -0.027455106377601624,
- -0.0696893185377121,
- 0.0040755365043878555,
- 0.040603406727313995,
- 0.11038881540298462,
- -0.06556008011102676,
- 0.0013018628815189004,
- 0.00275126239284873,
- 0.006236795336008072,
- 0.031100481748580933,
- -0.03099207766354084,
- 0.016062073409557343,
- -0.0042681521736085415,
- -0.017457162961363792,
- -0.06254224479198456,
- 0.0552801713347435,
- 0.0457950085401535,
- 0.012867293320596218,
- -0.04252914711833,
- -0.003302164375782013,
- 0.06676314026117325,
- -0.026792772114276886,
- -5.5213121186691505e-34,
- -0.055107079446315765,
- -0.03330954909324646,
- -0.01644519716501236,
- 0.042931269854307175,
- 0.0733640193939209,
- 0.031109530478715897,
- -0.020217476412653923,
- 0.09923170506954193,
- -0.02295735850930214,
- -0.01001661829650402,
- 0.07451479136943817,
- 0.0629061907529831,
- 0.13281218707561493,
- -0.07645375281572342,
- 0.06210246682167053,
- 0.04741240292787552,
- 0.04744322597980499,
- 0.029378095641732216,
- -0.06714871525764465,
- 0.015721440315246582,
- 0.06160868704319,
- 0.04988386854529381,
- -0.05236023664474487,
- -0.07388061285018921,
- -0.024612508714199066,
- 0.05528564751148224,
- -0.014105692505836487,
- -0.02923397719860077,
- -0.11550720036029816,
- 0.07928860187530518,
- -0.04560527950525284,
- -0.00834130123257637,
- -0.04802894592285156,
- 0.03960192948579788,
- -0.004930304363369942,
- 0.03967538848519325,
- -0.055226411670446396,
- -0.013344898819923401,
- -0.04281255230307579,
- -0.011735307984054089,
- 0.0015343190170824528,
- 0.05141332745552063,
- 0.04098501428961754,
- -0.0009269205620512366,
- -0.02942725643515587,
- -0.04292741045355797,
- 0.04774605855345726,
- 0.06371189653873444,
- -0.05109643563628197,
- 0.03963128849864006,
- -0.0867844671010971,
- 0.025562405586242676,
- 0.03584947809576988,
- -0.04502236098051071,
- -0.028108589351177216,
- -0.009365292266011238,
- -0.05105986446142197,
- -0.11383097618818283,
- -0.033223964273929596,
- 0.004788998980075121,
- 0.01430010050535202,
- -0.02299174852669239,
- 0.018722787499427795,
- 0.04859123006463051,
- -0.024678615853190422,
- 0.06879587471485138,
- -0.012275573797523975,
- -0.030655207112431526,
- -0.08260863274335861,
- -0.02785376086831093,
- 0.07684307545423508,
- 0.0562492311000824,
- 0.0391017347574234,
- -0.00641631381586194,
- -0.06452866643667221,
- -0.026190338656306267,
- -0.04299585893750191,
- -0.08773848414421082,
- -0.06826592236757278,
- 0.028185920789837837,
- -0.11846649646759033,
- -0.05976012349128723,
- -0.04980706423521042,
- 0.10243358463048935,
- -0.0339522548019886,
- 0.01796547695994377,
- 0.02891022525727749,
- 0.07992779463529587,
- 0.0323588065803051,
- 0.03370673581957817,
- -0.001377939828671515,
- 0.07269899547100067,
- 0.010136127471923828,
- -0.0484887920320034,
- 0.0857425108551979,
- -1.5148421184107974e-8,
- -0.02765796333551407,
- 0.027891354635357857,
- -0.031740739941596985,
- -0.046174775809049606,
- 0.007925553247332573,
- -0.04071449488401413,
- -0.07698512822389603,
- -0.025895219296216965,
- -0.08224199712276459,
- -0.023609686642885208,
- 0.06849836558103561,
- -0.004108251538127661,
- 0.00586468493565917,
- -0.01082578394562006,
- 0.07498615235090256,
- -0.06874609738588333,
- 0.1213221549987793,
- 0.0904635563492775,
- -0.033599790185689926,
- -0.01634630374610424,
- -0.01965373568236828,
- -0.025834592059254646,
- 0.07377607375383377,
- 0.04903680831193924,
- -0.06922858953475952,
- -0.023665228858590126,
- 0.030032074078917503,
- 0.08121711760759354,
- 0.01837017759680748,
- 0.08860047161579132,
- -0.021525995805859566,
- 0.11166474223136902,
- 0.008622679859399796,
- -0.08868927508592606,
- 0.016087163239717484,
- 0.00419751089066267,
- 0.0016704073641449213,
- -0.03195316717028618,
- -0.004283358342945576,
- -0.04219137877225876,
- -0.015662861987948418,
- -0.05108584091067314,
- 0.08197224140167236,
- 0.05249379947781563,
- 0.034230343997478485,
- -0.03168773651123047,
- 0.09853921085596085,
- 0.007080927491188049,
- 0.06621785461902618,
- -0.0022100424394011497,
- -0.014811097644269466,
- 0.020118674263358116,
- -0.0027661204803735018,
- -0.027521992102265358,
- -0.05763165280222893,
- -0.006567006930708885,
- 0.026134561747312546,
- -0.015460844151675701,
- -0.09468059986829758,
- 0.03692282363772392,
- 0.045206647366285324,
- -0.09912342578172684,
- 0.08679264038801193,
- 0.008468247018754482
- ]
- },
- {
- "keyword": "pharmacist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.08190193772315979,
- 0.03542287275195122,
- -0.03947149217128754,
- -0.027728239074349403,
- -0.07751383632421494,
- -0.0362398587167263,
- 0.10718685388565063,
- 0.10583874583244324,
- -0.009048820473253727,
- -0.04506692662835121,
- -0.05985813960433006,
- 0.01568988524377346,
- -0.02105669677257538,
- 0.06586117297410965,
- -0.0681879073381424,
- -0.023798061534762383,
- 0.020179294049739838,
- 0.024235963821411133,
- 0.02099301479756832,
- -0.03623591735959053,
- -0.11392862349748611,
- 0.044639382511377335,
- 0.055374521762132645,
- 0.06154017895460129,
- 0.003953838720917702,
- 0.04632652550935745,
- -0.013849842362105846,
- 0.011032777838408947,
- -0.07697244733572006,
- -0.017540020868182182,
- 0.04622185230255127,
- 0.013619636185467243,
- 0.05090908706188202,
- 0.029305126518011093,
- -0.025635723024606705,
- 0.01277169305831194,
- -0.08530113846063614,
- 0.11656800657510757,
- 0.061157651245594025,
- 0.07387591898441315,
- 0.006070495117455721,
- -0.03147328272461891,
- 0.015971940010786057,
- 0.032422564923763275,
- 0.05447240173816681,
- -0.10115785896778107,
- 0.0003299251548014581,
- 0.03449104353785515,
- 0.09347828477621078,
- 0.09076700359582901,
- -0.07387658208608627,
- -0.07724874466657639,
- -0.0478782020509243,
- 0.05960719659924507,
- -0.009412521496415138,
- -0.011106728576123714,
- -0.026782307773828506,
- -0.025451909750699997,
- -0.031356245279312134,
- 0.054655130952596664,
- -0.048779573291540146,
- 0.024463294073939323,
- -0.01615959405899048,
- 0.07402103394269943,
- 0.07322061061859131,
- 0.062441155314445496,
- 0.019318172708153725,
- -0.024628356099128723,
- 0.05113460496068001,
- -0.09317626804113388,
- -0.003937743604183197,
- -0.06552430242300034,
- 0.0216340571641922,
- 0.09316804260015488,
- 0.02422134205698967,
- -0.07929157465696335,
- 0.06409936398267746,
- 0.015815366059541702,
- -0.026666149497032166,
- -0.003493547672405839,
- 0.05543568730354309,
- -0.08240145444869995,
- -0.11731474101543427,
- 0.06775996834039688,
- 0.04263687878847122,
- 0.01425276417285204,
- -0.014299511909484863,
- 0.028880298137664795,
- 0.058224573731422424,
- -0.010579356923699379,
- 0.06931524723768234,
- 0.03616638109087944,
- 0.015104730613529682,
- -0.06945513188838959,
- -0.06279421597719193,
- -0.01277744211256504,
- -0.04137088730931282,
- 0.019320962950587273,
- -0.13554559648036957,
- 0.16988420486450195,
- -0.026572804898023605,
- -0.029536036774516106,
- 0.0028221290558576584,
- 0.004382772836834192,
- -0.008660804480314255,
- 0.014274324290454388,
- 0.04790085554122925,
- -0.09364176541566849,
- -0.03425204008817673,
- 0.013181100599467754,
- -0.016051707789301872,
- 0.016458403319120407,
- -0.07426359504461288,
- 0.004928446374833584,
- -0.020926641300320625,
- 0.07803887873888016,
- 0.02196432650089264,
- -0.0005086057935841382,
- 0.01667810045182705,
- 0.009792336262762547,
- -0.03517390042543411,
- -0.013931134715676308,
- -0.025706252083182335,
- -0.04473600164055824,
- -0.012459701858460903,
- 0.046105414628982544,
- 0.02806863561272621,
- -4.899176223366685e-34,
- -0.028679542243480682,
- 0.03636537864804268,
- 0.12036304175853729,
- 0.0739583820104599,
- 0.02644156664609909,
- 0.07772454619407654,
- 0.0029011669103056192,
- -0.0474165678024292,
- -0.027635617181658745,
- -0.058661941438913345,
- -0.08752543479204178,
- -0.001735140336677432,
- -0.029287012293934822,
- 0.06971116364002228,
- -0.005858766846358776,
- 0.014351451769471169,
- -0.01609109714627266,
- 0.04837590083479881,
- 0.01804295927286148,
- 0.020435160025954247,
- -0.0026943522971123457,
- 0.02120828814804554,
- -0.06446462124586105,
- 0.05244763195514679,
- -0.046742916107177734,
- 0.05486450344324112,
- 0.010471911169588566,
- 0.038109809160232544,
- 0.1078185886144638,
- 0.023485668003559113,
- -0.004731314722448587,
- 0.04402955621480942,
- -0.033304061740636826,
- -0.05144869536161423,
- -0.062067002058029175,
- -0.022326519712805748,
- -0.07213914394378662,
- -0.05103723332285881,
- 0.06940297037363052,
- -0.06271987408399582,
- -0.026421252638101578,
- 0.023681916296482086,
- 0.05422135442495346,
- 0.04535575211048126,
- 0.03282388299703598,
- 0.00932255294173956,
- -0.040820181369781494,
- 0.06508836895227432,
- -0.050238337367773056,
- 0.06363857537508011,
- -0.022660396993160248,
- -0.06663704663515091,
- 0.02051663026213646,
- 0.06350933015346527,
- -0.040763724595308304,
- 0.000617708545178175,
- -0.041666336357593536,
- -0.026032492518424988,
- 0.03257426992058754,
- 0.05539535731077194,
- 0.0656558945775032,
- 0.15970732271671295,
- -0.0818808525800705,
- 0.03333735093474388,
- -0.05638476833701134,
- -0.04222201928496361,
- -0.06194350868463516,
- -0.07477330416440964,
- 0.047929201275110245,
- 0.06059940531849861,
- -0.04330071434378624,
- 0.006355872843414545,
- 0.0753389373421669,
- 0.049480173736810684,
- 0.04551531746983528,
- 0.042916327714920044,
- -0.022686470299959183,
- -0.011447574011981487,
- -0.0040540629997849464,
- 0.015431016683578491,
- -0.02698635682463646,
- -0.05170541629195213,
- 0.03778046742081642,
- 0.1420157104730606,
- -0.014922873117029667,
- 0.031081216409802437,
- -0.023323338478803635,
- -0.026875965297222137,
- 0.0368945337831974,
- 0.0220680870115757,
- -0.09131181240081787,
- -0.05432852730154991,
- 0.023879583925008774,
- 0.06266018748283386,
- -0.038728103041648865,
- -1.1437339628310078e-33,
- 0.049869436770677567,
- -0.05698787048459053,
- 0.015899494290351868,
- -0.014676027931272984,
- 0.09084241837263107,
- -0.04121515527367592,
- 0.03656912222504616,
- -0.02539682388305664,
- 0.01427896972745657,
- 0.03261261805891991,
- 0.06724269688129425,
- 0.0025380661245435476,
- 0.06113550066947937,
- -0.03339900076389313,
- 0.0361504927277565,
- 0.0427374392747879,
- 0.014352851547300816,
- -0.04153818264603615,
- -0.05797722935676575,
- -0.0287619698792696,
- -0.03273691609501839,
- -0.05183037742972374,
- 0.0618758425116539,
- -0.010243073105812073,
- 0.022814851254224777,
- -0.0303577221930027,
- 0.1121131107211113,
- 0.043550439178943634,
- -0.04558973014354706,
- -0.025278359651565552,
- -0.09002409875392914,
- 0.022425461560487747,
- -0.06777561455965042,
- -0.028767697513103485,
- -0.06839901208877563,
- 0.11889958381652832,
- -0.05263542756438255,
- -0.022786468267440796,
- -0.015591978095471859,
- -0.004878573585301638,
- 0.05310601368546486,
- -0.028871944174170494,
- -0.022983139380812645,
- 0.03310348466038704,
- 0.026997365057468414,
- -0.022000864148139954,
- -0.0266822949051857,
- 0.008110874332487583,
- 0.0435858853161335,
- -0.05695532634854317,
- -0.06827100366353989,
- 0.0711997002363205,
- 0.07994262129068375,
- -0.0054721832275390625,
- 0.044451311230659485,
- -0.03233468532562256,
- 0.001727089169435203,
- -0.07560845464468002,
- 0.06143564730882645,
- -0.03252920135855675,
- -0.022353708744049072,
- -0.00710779195651412,
- -0.01521294191479683,
- 0.04111970588564873,
- -0.006714166142046452,
- -0.0749259889125824,
- -0.026059268042445183,
- 0.022676803171634674,
- -0.024539003148674965,
- -0.04134403541684151,
- 0.1183634102344513,
- -0.03275306895375252,
- 0.03687266632914543,
- 0.005453759338706732,
- -0.0372893363237381,
- -0.04614206776022911,
- -0.0989147201180458,
- -0.10973665863275528,
- -0.01833084225654602,
- -0.028119128197431564,
- -0.016610553488135338,
- -0.12468146532773972,
- -0.04712827131152153,
- 0.1373593509197235,
- -0.07732182741165161,
- -0.028871988877654076,
- 0.04151412844657898,
- -0.05435311049222946,
- 0.02713712677359581,
- -0.03214334324002266,
- -0.025153866037726402,
- 0.019267186522483826,
- -0.07577060908079147,
- -0.004611866548657417,
- -0.02297801896929741,
- -1.616617772981499e-8,
- 0.0457930825650692,
- -0.011870091781020164,
- 0.0886489748954773,
- -0.004473149310797453,
- 0.017407521605491638,
- 0.005894981324672699,
- -0.06538762897253036,
- -0.05970235913991928,
- 0.02144774980843067,
- 0.008150072768330574,
- 0.026293419301509857,
- 0.04798893257975578,
- 0.028833437711000443,
- 0.033465493470430374,
- 0.008491022512316704,
- 0.0008010867168195546,
- 0.010640847496688366,
- 0.09015398472547531,
- -0.008508032187819481,
- -0.0005788530106656253,
- -0.007138015702366829,
- 0.02414313517510891,
- 0.01757788099348545,
- 0.01219699252396822,
- 0.0017635523108765483,
- -0.012849899008870125,
- 0.04379161074757576,
- 0.036915577948093414,
- -0.04251473769545555,
- 0.018801474943757057,
- -0.037342142313718796,
- 0.0030579909216612577,
- 0.03332836553454399,
- -0.056375086307525635,
- 0.004981613717973232,
- -0.042943086475133896,
- -0.026055825874209404,
- -0.06501784175634384,
- -0.019321246072649956,
- -0.05885593593120575,
- -0.08174362033605576,
- 0.004484813194721937,
- -0.019417718052864075,
- 0.045901309698820114,
- -0.012704594060778618,
- -0.045316360890865326,
- 0.05706561729311943,
- -0.01432300265878439,
- 0.01646486110985279,
- -0.028446391224861145,
- 0.02320716716349125,
- 0.05214886739850044,
- 0.048844482749700546,
- -0.04306014999747276,
- -0.04184901341795921,
- -0.06288270652294159,
- 0.006061982363462448,
- -0.06753493845462799,
- -0.10684308409690857,
- -0.05848338454961777,
- 0.03677291423082352,
- -0.04491971805691719,
- 0.05077312886714935,
- 0.024466190487146378
- ]
- },
- {
- "keyword": "paramedic",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.02620430663228035,
- 0.0623541958630085,
- -0.09158989787101746,
- -0.03798537701368332,
- -0.04115266725420952,
- -0.02961226925253868,
- 0.10058944672346115,
- 0.07261224091053009,
- -0.026693223044276237,
- 0.0457792654633522,
- 0.05805891752243042,
- -0.0448889434337616,
- 0.0038585138972848654,
- 0.06635887920856476,
- -0.07536160200834274,
- 0.010071340017020702,
- -0.043569523841142654,
- -0.04913752153515816,
- -0.09031645953655243,
- -0.027085531502962112,
- -0.023919235914945602,
- 0.12164247035980225,
- -0.022867050021886826,
- 0.01924210600554943,
- -0.07645456492900848,
- -0.005619682837277651,
- -0.03562009334564209,
- -0.01348237507045269,
- -0.013871531933546066,
- 0.009490741416811943,
- 0.012199937365949154,
- -0.06293521821498871,
- -0.04128541797399521,
- 0.023438915610313416,
- 0.016507601365447044,
- 0.038178227841854095,
- 0.019553406164050102,
- 0.057740468531847,
- -0.01356545276939869,
- 0.07356199622154236,
- -0.0017589908093214035,
- -0.015712961554527283,
- -0.04427033290266991,
- -0.002307061804458499,
- 0.09643565118312836,
- 0.03971898928284645,
- 0.05053450167179108,
- 0.040844205766916275,
- 0.06343439221382141,
- -0.00575986597687006,
- -0.012051272206008434,
- -0.04042350500822067,
- -0.018523991107940674,
- 0.038169749081134796,
- 0.007645819801837206,
- -0.046116750687360764,
- -0.06437550485134125,
- 0.02679002843797207,
- -0.04779839515686035,
- -0.14246690273284912,
- -0.08131898194551468,
- 0.03822288662195206,
- 0.028689606115221977,
- 0.01897052675485611,
- -0.02526445873081684,
- -0.03539029508829117,
- 0.017812367528676987,
- -0.060810428112745285,
- 0.054918527603149414,
- -0.0030093728564679623,
- -0.007504291832447052,
- -0.020459884777665138,
- 0.0957392156124115,
- 0.06599728763103485,
- -0.0658990889787674,
- -0.055288344621658325,
- 0.11717307567596436,
- -0.02036745660007,
- 0.024703051894903183,
- -0.05302433669567108,
- 0.14203597605228424,
- -0.12660229206085205,
- -0.049716491252183914,
- 0.05488678067922592,
- 0.0026921199169009924,
- 0.040395498275756836,
- 0.0008483053534291685,
- 0.019318128004670143,
- -0.018444759771227837,
- -0.008672756142914295,
- 0.03945387527346611,
- -0.016180764883756638,
- 0.04065077006816864,
- -0.011288951151072979,
- -0.04248589277267456,
- 0.08181380480527878,
- -0.021944865584373474,
- -0.02035897970199585,
- -0.11555063724517822,
- 0.09347645938396454,
- -0.008812994696199894,
- -0.06997489184141159,
- 0.04716436192393303,
- 0.04298070818185806,
- 0.022474898025393486,
- -0.002469956176355481,
- -0.036237869411706924,
- -0.061917372047901154,
- 0.0137171670794487,
- 0.06086482107639313,
- -0.011566141620278358,
- 0.0865267813205719,
- -0.03973876312375069,
- -0.007517005316913128,
- 0.014978643506765366,
- 0.05924484133720398,
- -0.05461542680859566,
- 0.045012619346380234,
- -0.02131015621125698,
- -0.04526546970009804,
- 0.023557599633932114,
- -0.0034482998307794333,
- -0.0992470234632492,
- -0.002583333756774664,
- 0.06487028300762177,
- -0.0005996215040795505,
- 0.060014378279447556,
- -3.229952847528432e-33,
- 0.08451955020427704,
- 0.026965929195284843,
- 0.08626198768615723,
- 0.01276740524917841,
- -0.04062937945127487,
- 0.012311038561165333,
- -0.025308115407824516,
- -0.0036631913390010595,
- 0.056850582361221313,
- 0.035847000777721405,
- -0.06302236765623093,
- -0.06519637256860733,
- 0.05562933534383774,
- 0.01137193851172924,
- -0.023483118042349815,
- 0.0020361619535833597,
- -0.07458341121673584,
- 0.005686196498572826,
- -0.11499880254268646,
- 0.016752365976572037,
- -0.03848393261432648,
- 0.02958916872739792,
- -0.08992335945367813,
- 0.03094388172030449,
- 0.008233430795371532,
- -0.011948641389608383,
- -0.01187166664749384,
- -0.05247124657034874,
- 0.102727510035038,
- -0.004834078252315521,
- -0.02242344431579113,
- 0.05115494877099991,
- -0.0156012661755085,
- -0.024269195273518562,
- -0.006114472169429064,
- 0.07879221439361572,
- 0.009456830099225044,
- -0.030991876497864723,
- -0.034248631447553635,
- -0.021426931023597717,
- -0.02691151574254036,
- 0.040838442742824554,
- 0.0858798399567604,
- 0.04177279770374298,
- 0.017039932310581207,
- -0.10170229524374008,
- 0.02524338848888874,
- -0.036670491099357605,
- -0.0236276276409626,
- 0.0012040468864142895,
- -0.04014762118458748,
- -0.007824812084436417,
- 0.09377089142799377,
- -0.06460528075695038,
- 0.1020263135433197,
- -0.013933404348790646,
- 0.040152404457330704,
- 0.044041719287633896,
- 0.029844416305422783,
- 0.012526649981737137,
- 0.053624339401721954,
- -0.01563923805952072,
- -0.08082165569067001,
- 0.05678093433380127,
- 0.04710593447089195,
- -0.07307656854391098,
- -0.008355827070772648,
- -0.019722050055861473,
- 0.11714950948953629,
- 0.0028374791145324707,
- -0.13522759079933167,
- 0.03384677693247795,
- 0.0031707859598100185,
- -0.009179767221212387,
- -0.08569688349962234,
- 0.03339901566505432,
- -0.042676154524087906,
- -0.02964775636792183,
- -0.02746524289250374,
- -0.04454301670193672,
- -0.04878782108426094,
- -0.002559107495471835,
- 0.008318498730659485,
- 0.10232467949390411,
- 0.11256754398345947,
- -0.012435944750905037,
- -0.04009384661912918,
- 0.01709788292646408,
- -0.04794307425618172,
- -0.07223712652921677,
- -0.10446023941040039,
- 0.062357254326343536,
- -0.027379443868994713,
- 0.03360598906874657,
- -0.007588156498968601,
- 1.1979047832787298e-33,
- -0.005376364104449749,
- 0.009628767147660255,
- -0.033987533301115036,
- 0.15656371414661407,
- 0.0873294398188591,
- -0.004904196597635746,
- -0.011314758099615574,
- -0.013235272839665413,
- -0.005498815793544054,
- 0.07055114954710007,
- -0.00606636144220829,
- -0.04103844240307808,
- 0.04993801936507225,
- 0.023447180166840553,
- 0.04835904389619827,
- 0.05479416623711586,
- -0.1288629025220871,
- 0.01948894001543522,
- -0.05207258090376854,
- -0.004887055139988661,
- -0.0005970558268018067,
- 0.008392269723117352,
- -0.007832491770386696,
- -0.08013524860143661,
- -0.07562114298343658,
- 0.03377251699566841,
- 0.0036122724413871765,
- 0.006932846736162901,
- -0.05106554925441742,
- -0.04904818534851074,
- -0.030584903433918953,
- -0.04466049000620842,
- -0.00034867526846937835,
- 0.007786833681166172,
- -0.05662408471107483,
- 0.1039845198392868,
- -0.0029293920379132032,
- 0.021988166496157646,
- -0.042237915098667145,
- 0.03777439519762993,
- 0.029435478150844574,
- -0.0008434287738054991,
- 0.057468827813863754,
- 0.07307963073253632,
- -0.009037149138748646,
- -0.036403365433216095,
- -0.008398828096687794,
- -0.015651749446988106,
- 0.019845902919769287,
- -0.0370529405772686,
- -0.06911651045084,
- 0.0019416315481066704,
- -0.04150800034403801,
- 0.026661977171897888,
- 0.07998427003622055,
- -0.06298880279064178,
- -0.147652730345726,
- -0.09081213176250458,
- -0.019590361043810844,
- -0.03869716450572014,
- 0.05607045069336891,
- 0.003882201388478279,
- -0.03363686800003052,
- 0.06660769879817963,
- -0.027453796938061714,
- 0.045484043657779694,
- 0.048309989273548126,
- -0.003946654964238405,
- -0.09970715641975403,
- 0.053637418895959854,
- 0.05320393294095993,
- 0.030648324638605118,
- -0.02266230620443821,
- -0.02487943321466446,
- 0.004626178182661533,
- -0.10732702910900116,
- -0.03204488754272461,
- -0.013180207461118698,
- 0.022823024541139603,
- 0.0002860005188267678,
- 0.07703189551830292,
- -0.09215356409549713,
- 0.0019371830858290195,
- 0.08409286290407181,
- -0.03771379962563515,
- 0.045859355479478836,
- 0.07930257171392441,
- 0.04936905577778816,
- -0.022551855072379112,
- -0.023615041747689247,
- 0.017578333616256714,
- 0.03412399813532829,
- 0.04726087674498558,
- 0.01095542497932911,
- -0.03502854332327843,
- -1.3736396020647135e-8,
- -0.021376194432377815,
- 0.11244425177574158,
- -0.07712265104055405,
- -0.04156392067670822,
- -0.060448918491601944,
- 0.003933236468583345,
- -0.0009703834657557309,
- 0.011890353634953499,
- 0.003830868052318692,
- 0.017720311880111694,
- -0.039478644728660583,
- 0.0017417342169210315,
- 0.06344466656446457,
- 0.007728807628154755,
- 0.09539592266082764,
- -0.038450688123703,
- -0.07770702242851257,
- 0.021168239414691925,
- -0.04287391155958176,
- 0.02276933565735817,
- 0.04340369999408722,
- -0.038933273404836655,
- -0.03398846462368965,
- 0.03920983895659447,
- 0.04829976335167885,
- 0.025380907580256462,
- -0.04208196699619293,
- -0.03531986102461815,
- -0.013633083552122116,
- 0.08881783485412598,
- -0.024133412167429924,
- 0.05311530828475952,
- -0.028979094699025154,
- -0.06524885445833206,
- -0.06166040897369385,
- -0.008206956088542938,
- 0.03665032610297203,
- -0.01293871458619833,
- -0.017278317362070084,
- 0.022488322108983994,
- 0.003792139235883951,
- -0.010379579849541187,
- 0.00281096575781703,
- 0.022502699866890907,
- 0.0766906589269638,
- -0.05845942720770836,
- 0.10011047124862671,
- -0.016744663938879967,
- -0.022657936438918114,
- -0.039529211819171906,
- 0.028537044301629066,
- -0.06576617807149887,
- 0.07746786624193192,
- 0.007968949154019356,
- -0.010419986210763454,
- 0.0028743434231728315,
- 0.013056574389338493,
- -0.00150694465264678,
- -0.0383155457675457,
- 0.05463793873786926,
- 0.01672588288784027,
- -0.0023690294474363327,
- -0.038798294961452484,
- 0.02393326722085476
- ]
- },
- {
- "keyword": "emt",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.041759803891181946,
- 0.070876345038414,
- 0.056177034974098206,
- 0.03042059764266014,
- 0.029351044446229935,
- -0.10450287163257599,
- 0.13538549840450287,
- 0.08261619508266449,
- 0.016479546204209328,
- -0.044768624007701874,
- 0.051350004971027374,
- -0.011566867120563984,
- 0.04231769219040871,
- 0.03350231051445007,
- -0.071934275329113,
- 0.047175969928503036,
- 0.04684443771839142,
- -0.015589645132422447,
- -0.014243261888623238,
- -0.04877813160419464,
- -0.10772310197353363,
- 0.0671677514910698,
- 0.0003076265857089311,
- -0.08203202486038208,
- 0.005660657305270433,
- -0.009813260287046432,
- -0.05016374588012695,
- 0.05423690751194954,
- -0.04839857295155525,
- -0.11119813472032547,
- 0.053425710648298264,
- -0.15122397243976593,
- -0.023209398612380028,
- 0.03524349257349968,
- -0.08021000772714615,
- 0.005383382085710764,
- 0.042161617428064346,
- 0.010613842867314816,
- 0.034860651940107346,
- 0.04934580996632576,
- -0.02656613476574421,
- -0.04108917713165283,
- -0.05966674163937569,
- -0.028417842462658882,
- 0.04175173491239548,
- 0.00607474846765399,
- 0.0509042888879776,
- -0.05063726007938385,
- 0.016097716987133026,
- 0.01630372367799282,
- 0.10302731394767761,
- -0.0003016043920069933,
- -0.044845592230558395,
- 0.0027780579403042793,
- 0.04994222894310951,
- -0.06904134899377823,
- 0.0031349877826869488,
- 0.021519910544157028,
- -0.01833951845765114,
- -0.027630992233753204,
- -0.043207284063100815,
- -0.00793776661157608,
- -0.05598494037985802,
- -0.03267771378159523,
- -0.019800733774900436,
- -0.003655575215816498,
- 0.03532281517982483,
- 0.039973437786102295,
- 0.038912005722522736,
- -0.035395387560129166,
- -0.033356085419654846,
- -0.010682455264031887,
- -0.04531557485461235,
- 0.0414641872048378,
- -0.003863888792693615,
- 0.034508079290390015,
- 0.0669107511639595,
- -0.0271295178681612,
- 0.07776587456464767,
- 0.0728304460644722,
- 0.05115688964724541,
- 0.022496843710541725,
- -0.03911396861076355,
- -0.024650607258081436,
- 0.06648144870996475,
- -0.016738858073949814,
- -0.02281177043914795,
- 0.023603899404406548,
- -0.09970971196889877,
- 0.07529725879430771,
- -0.012215622700750828,
- -0.06556340306997299,
- -0.013494397513568401,
- 0.05228206887841225,
- 0.03881165385246277,
- -0.010051591321825981,
- -0.0689404159784317,
- -0.008091160096228123,
- -0.13245250284671783,
- 0.17542794346809387,
- -0.05012046545743942,
- 0.03282732889056206,
- -0.006960763130337,
- 0.03867875412106514,
- -0.02994990535080433,
- -0.12326915562152863,
- -0.008416950702667236,
- -0.05999932438135147,
- -0.026850104331970215,
- -0.06777820736169815,
- -0.03815607726573944,
- -0.021186236292123795,
- -0.043130889534950256,
- -0.021419445052742958,
- 0.014788990840315819,
- 0.01383261103183031,
- -0.008666202425956726,
- 0.10495197027921677,
- 0.05661679804325104,
- -0.0004457937611732632,
- 0.004694684874266386,
- 0.04389246553182602,
- -0.041549865156412125,
- 0.008629463613033295,
- 0.0675492212176323,
- -0.0526634082198143,
- 0.027233906090259552,
- -1.9210459490305616e-33,
- 0.020116383209824562,
- -0.06584695726633072,
- -0.013875511474907398,
- 0.07598885893821716,
- 0.034263066947460175,
- 0.08185989409685135,
- -0.03143767639994621,
- 0.027401506900787354,
- 0.060797207057476044,
- 0.016395002603530884,
- -0.06163104251027107,
- -0.03138678893446922,
- 0.028518376871943474,
- 0.02424267865717411,
- -0.0008930798503570259,
- -0.00009320934623247012,
- -0.045692455023527145,
- -0.004477338399738073,
- -0.0497610978782177,
- -0.04634563624858856,
- -0.014534804970026016,
- -0.002387859160080552,
- 0.0049411035142838955,
- 0.025888066738843918,
- -0.04317987710237503,
- -0.10127970576286316,
- 0.008855295367538929,
- -0.06065618246793747,
- 0.0348641537129879,
- 0.009617753326892853,
- -0.12312490493059158,
- 0.0926004946231842,
- 0.05776824429631233,
- 0.018655262887477875,
- -0.012081972323358059,
- 0.022398754954338074,
- 0.06226842850446701,
- 0.013475518673658371,
- 0.05685440078377724,
- -0.05222658812999725,
- 0.015081698074936867,
- 0.05040108039975166,
- 0.0070554460398852825,
- -0.03366704285144806,
- 0.07645800709724426,
- 0.02109997346997261,
- 0.005557986441999674,
- -0.041312385350465775,
- 0.03821798041462898,
- 0.014872854575514793,
- -0.0022994857281446457,
- -0.07593102753162384,
- 0.03103005141019821,
- -0.06408919394016266,
- 0.05761658400297165,
- 0.020384712144732475,
- -0.02054816670715809,
- 0.058718930929899216,
- 0.0031588573474437,
- 0.030390027910470963,
- 0.0029346097726374865,
- 0.04772791638970375,
- 0.0003545616928022355,
- 0.00791129283607006,
- -0.0023606778122484684,
- 0.009953861124813557,
- -0.06473439186811447,
- -0.04723643139004707,
- 0.041860323399305344,
- 0.0708741620182991,
- -0.0071619353257119656,
- 0.009013420902192593,
- 0.0191924050450325,
- -0.07805925607681274,
- -0.010343650355935097,
- -0.015918491408228874,
- -0.015831569209694862,
- 0.07586245238780975,
- -0.0036056179087609053,
- -0.07879361510276794,
- -0.03548692911863327,
- -0.037561897188425064,
- 0.002199847949668765,
- -0.005460665095597506,
- 0.12052986770868301,
- -0.017496544867753983,
- -0.10188223421573639,
- 0.017802448943257332,
- -0.0007345043122768402,
- 0.016481798142194748,
- -0.04940493032336235,
- 0.07586947083473206,
- 0.0206817127764225,
- 0.07593467831611633,
- -0.0016099285567179322,
- 1.984388931492559e-33,
- -0.03790690377354622,
- -0.006967021618038416,
- -0.016232440248131752,
- 0.061412226408720016,
- 0.03134504705667496,
- 0.03756668418645859,
- 0.029066452756524086,
- 0.12318040430545807,
- -0.03050803393125534,
- 0.13175727427005768,
- -0.022774476557970047,
- -0.10801654309034348,
- 0.06347037106752396,
- -0.0664154589176178,
- 0.07573417574167252,
- -0.02271641045808792,
- -0.06336366385221481,
- -0.021863704547286034,
- -0.03250620514154434,
- 0.09645023196935654,
- -0.04928255081176758,
- 0.019222430884838104,
- 0.10106024146080017,
- -0.009423230774700642,
- 0.03728419914841652,
- 0.05943155288696289,
- -0.022851813584566116,
- 0.00011982632713625208,
- -0.08569127321243286,
- -0.0652257576584816,
- -0.04202110692858696,
- -0.047219887375831604,
- 0.06515954434871674,
- 0.0522383376955986,
- -0.039787739515304565,
- 0.0533134751021862,
- 0.11731743812561035,
- 0.05412145331501961,
- -0.0434793159365654,
- -0.04788212105631828,
- 0.08734691143035889,
- 0.03350939229130745,
- 0.004049074370414019,
- 0.10707028955221176,
- 0.0002104373270412907,
- 0.03833070024847984,
- -0.062280550599098206,
- -0.0002093530201818794,
- 0.04271116480231285,
- -0.03534445911645889,
- -0.0761634036898613,
- -0.08668583631515503,
- 0.01101621799170971,
- -0.025035414844751358,
- 0.006904068402945995,
- -0.0773681104183197,
- 0.0008745320374146104,
- -0.0657024085521698,
- -0.08069901168346405,
- 0.01874561235308647,
- 0.04937821999192238,
- -0.014081986621022224,
- 0.010932840406894684,
- 0.07746870070695877,
- -0.007836958393454552,
- -0.03044131211936474,
- -0.007883899845182896,
- -0.007498208899050951,
- -0.03786306083202362,
- 0.049206897616386414,
- 0.062070101499557495,
- 0.0738270953297615,
- -0.035590339452028275,
- -0.09035229682922363,
- -0.013512317091226578,
- -0.04977941885590553,
- -0.08119353652000427,
- -0.025053709745407104,
- -0.028999509289860725,
- -0.04762258380651474,
- -0.02764824964106083,
- -0.037738244980573654,
- -0.04821775481104851,
- 0.019786769524216652,
- -0.040631331503391266,
- 0.06268260627985,
- 0.056343480944633484,
- 0.001714362413622439,
- -0.016365278512239456,
- 0.013433912768959999,
- -0.017146557569503784,
- 0.055852387100458145,
- 0.0031193802133202553,
- 0.10418029874563217,
- 0.02913425676524639,
- -1.33498003762611e-8,
- 0.04369862377643585,
- 0.008465002290904522,
- -0.016546333208680153,
- 0.0027983481995761395,
- -0.05090908706188202,
- 0.009963820688426495,
- 0.0038353879936039448,
- 0.049037884920835495,
- -0.00894656591117382,
- -0.007093648426234722,
- -0.03434078022837639,
- 0.04650507867336273,
- -0.0023243632167577744,
- 0.06157800555229187,
- 0.08201631158590317,
- -0.057426128536462784,
- 0.024238834157586098,
- 0.02995229698717594,
- -0.005800219718366861,
- 0.061971332877874374,
- 0.015580490231513977,
- -0.0022809444926679134,
- 0.05807206407189369,
- 0.08244679123163223,
- 0.038936346769332886,
- -0.01033922377973795,
- -0.051236435770988464,
- 0.08252422511577606,
- 0.03912181407213211,
- 0.010687019675970078,
- 0.018061771988868713,
- -0.005763084627687931,
- -0.06067965179681778,
- 0.024861110374331474,
- -0.1485627442598343,
- -0.028068363666534424,
- 0.0569952093064785,
- -0.12465517222881317,
- -0.024455104023218155,
- 0.052449967712163925,
- -0.010792908258736134,
- -0.0531601756811142,
- 0.05966268107295036,
- -0.04278982803225517,
- -0.012759087607264519,
- -0.056142330169677734,
- 0.010780359618365765,
- -0.028434690088033676,
- -0.06108735874295235,
- 0.0021003885194659233,
- 0.07490702718496323,
- -0.029546452686190605,
- 0.032783135771751404,
- 0.029033515602350235,
- 0.035599157214164734,
- 0.018940668553113937,
- -0.0026821219362318516,
- -0.02604810893535614,
- -0.01036460604518652,
- 0.04290090873837471,
- 0.053488727658987045,
- -0.04130735620856285,
- 0.04360319301486015,
- 0.03835491091012955
- ]
- },
- {
- "keyword": "medic",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.024127798154950142,
- 0.05251910537481308,
- -0.058160845190286636,
- -0.020450104027986526,
- -0.06294498592615128,
- -0.04713127762079239,
- 0.09609491378068924,
- 0.1069379448890686,
- 0.0098488237708807,
- 0.026981519535183907,
- 0.018397783860564232,
- -0.022152846679091454,
- 0.027984755113720894,
- 0.01244155503809452,
- -0.021266629919409752,
- -0.008371351286768913,
- -0.05589272826910019,
- 0.013065791688859463,
- -0.03370381519198418,
- 0.0581727959215641,
- -0.058183036744594574,
- 0.13700929284095764,
- 0.021771283820271492,
- 0.052747372537851334,
- -0.09858369082212448,
- 0.05985930934548378,
- -0.04614856094121933,
- 0.04486769810318947,
- -0.04498332738876343,
- -0.030234061181545258,
- 0.0006406825850717723,
- 0.0457046702504158,
- 0.0834646075963974,
- 0.013870175927877426,
- 0.062061045318841934,
- 0.019627738744020462,
- -0.03685930371284485,
- 0.04781109839677811,
- 0.008707892149686813,
- 0.0272393599152565,
- -0.025239301845431328,
- -0.07052873820066452,
- 0.015867600217461586,
- 0.027656298130750656,
- 0.009183110669255257,
- 0.016182688996195793,
- 0.008105071261525154,
- 0.0009537784499116242,
- 0.12827108800411224,
- 0.03248392045497894,
- -0.14344841241836548,
- 0.013023264706134796,
- -0.024514859542250633,
- 0.07853613793849945,
- -0.043680496513843536,
- -0.046668317168951035,
- -0.019797010347247124,
- -0.07016383856534958,
- -0.055278874933719635,
- -0.07951458543539047,
- -0.058946024626493454,
- 0.0409705825150013,
- 0.007675160188227892,
- 0.016285352408885956,
- -0.04623441770672798,
- -0.02782241813838482,
- -0.0675659105181694,
- -0.03339587524533272,
- 0.05995621904730797,
- -0.024410896003246307,
- 0.03552081063389778,
- -0.09575021266937256,
- 0.05622147396206856,
- 0.0360044501721859,
- -0.01680576801300049,
- 0.033992163836956024,
- 0.11695796251296997,
- -0.005676932167261839,
- 0.09337249398231506,
- -0.05486959591507912,
- 0.04517104849219322,
- -0.04539124295115471,
- -0.06297647953033447,
- 0.05180158466100693,
- -0.041779957711696625,
- 0.008230378851294518,
- 0.09257766604423523,
- 0.007290414534509182,
- 0.02933437190949917,
- -0.06768478453159332,
- 0.045813415199518204,
- 0.04331494867801666,
- 0.05724934861063957,
- -0.053610946983098984,
- 0.045060258358716965,
- -0.0007060891948640347,
- 0.0002266170922666788,
- -0.09143871068954468,
- -0.0937073826789856,
- 0.19594785571098328,
- -0.045530904084444046,
- -0.017244163900613785,
- 0.017862971872091293,
- 0.06056055426597595,
- -0.0029587936587631702,
- -0.05404074862599373,
- -0.002481770236045122,
- 0.011121590621769428,
- 0.009490261785686016,
- -0.05715469643473625,
- -0.046220242977142334,
- 0.02980642393231392,
- -0.024460148066282272,
- 0.04863419011235237,
- 0.02711789309978485,
- 0.07380594313144684,
- -0.021522898226976395,
- 0.014633829705417156,
- 0.035503365099430084,
- -0.021710170432925224,
- 0.032623957842588425,
- -0.09517977386713028,
- -0.0877729281783104,
- -0.02711905911564827,
- 0.042332567274570465,
- 0.016869867220520973,
- -0.0032055536285042763,
- -3.590969570527019e-33,
- 0.05054096505045891,
- -0.017831038683652878,
- 0.07103875279426575,
- -0.08351380378007889,
- -0.023693803697824478,
- 0.030104979872703552,
- 0.007465641479939222,
- -0.05799886956810951,
- 0.007895213551819324,
- -0.018250461667776108,
- -0.08240354061126709,
- -0.007026130799204111,
- -0.012618201784789562,
- 0.0824873298406601,
- 0.02442748285830021,
- -0.012689942494034767,
- -0.03911441192030907,
- 0.06452254951000214,
- -0.002988600404933095,
- -0.008280317299067974,
- 0.002132873749360442,
- 0.05002370476722717,
- -0.014588330872356892,
- 0.029389703646302223,
- 0.004420432262122631,
- 0.020699767395853996,
- -0.0766117200255394,
- -0.07725167274475098,
- 0.09473097324371338,
- 0.004945004358887672,
- -0.019075503572821617,
- 0.04527418687939644,
- 0.014284573495388031,
- 0.002055575605481863,
- 0.01743120513856411,
- 0.09811563044786453,
- -0.0622163787484169,
- -0.024235179647803307,
- -0.020881328731775284,
- -0.00961376167833805,
- -0.0532369390130043,
- 0.07856456935405731,
- 0.041207633912563324,
- 0.034266695380210876,
- 0.042777739465236664,
- -0.006913892459124327,
- -0.06556043773889542,
- -0.008029792457818985,
- -0.03917745500802994,
- -0.030559109523892403,
- 0.027331845834851265,
- 0.07694685459136963,
- -0.024576924741268158,
- -0.05119113624095917,
- 0.004572299309074879,
- -0.04935918375849724,
- 0.08060847967863083,
- 0.0500529445707798,
- 0.014737943187355995,
- -0.037308476865291595,
- 0.051870133727788925,
- 0.018028220161795616,
- 0.023922208696603775,
- 0.04176899045705795,
- 0.06150355190038681,
- -0.056178025901317596,
- 0.039333269000053406,
- -0.035475824028253555,
- 0.10069476068019867,
- 0.010107550770044327,
- -0.10317321121692657,
- 0.09053327143192291,
- 0.04012148827314377,
- 0.06493592262268066,
- -0.10026485472917557,
- -0.012792114168405533,
- -0.0338747613132,
- -0.04238472133874893,
- -0.007057371083647013,
- -0.03454127162694931,
- -0.05280643701553345,
- 0.015466421842575073,
- -0.05391387268900871,
- 0.11456359922885895,
- 0.047957390546798706,
- -0.0284464992582798,
- -0.05337873101234436,
- 0.006917465478181839,
- -0.07173439860343933,
- -0.07463426887989044,
- -0.06790760159492493,
- 0.007643526419997215,
- 0.04021809250116348,
- 0.03846145048737526,
- -0.08854681998491287,
- 2.1441253894578612e-33,
- -0.008335420861840248,
- -0.06840749830007553,
- -0.013491935096681118,
- 0.10648398846387863,
- 0.027174601331353188,
- -0.039083611220121384,
- -0.05104397237300873,
- 0.018425289541482925,
- -0.0022780720610171556,
- 0.0957338809967041,
- 0.031083442270755768,
- -0.05124865844845772,
- 0.06713781505823135,
- -0.031059350818395615,
- 0.0025156482588499784,
- 0.08764991164207458,
- 0.03568815812468529,
- 0.00334851979278028,
- -0.024897541850805283,
- 0.05083101987838745,
- 0.03880396857857704,
- 0.05304195359349251,
- 0.020580915734171867,
- -0.03034740500152111,
- -0.008817463181912899,
- -0.0013094003079459071,
- 0.043765705078840256,
- 0.05167863890528679,
- -0.11213305592536926,
- -0.06606452912092209,
- 0.011610937304794788,
- -0.008251003921031952,
- -0.019882747903466225,
- -0.07604065537452698,
- 0.042284879833459854,
- 0.10456996411085129,
- -0.006863119546324015,
- -0.04758458212018013,
- -0.009913036599755287,
- 0.015844937413930893,
- 0.07915264368057251,
- -0.040424544364213943,
- 0.047569308429956436,
- 0.13425859808921814,
- 0.031123200431466103,
- -0.061636604368686676,
- -0.037420567125082016,
- 0.053641706705093384,
- 0.044569991528987885,
- 0.022175772115588188,
- -0.05315412953495979,
- 0.004406831227242947,
- -0.02507617324590683,
- -0.028665978461503983,
- 0.04828957840800285,
- -0.017652209848165512,
- -0.07984292507171631,
- -0.07532044500112534,
- -0.13935580849647522,
- -0.05202220380306244,
- 0.05065007880330086,
- -0.06447794288396835,
- -0.11204882711172104,
- 0.020107710734009743,
- -0.036146391183137894,
- 0.021236440166831017,
- 0.005335260182619095,
- -0.01659896969795227,
- -0.03214645758271217,
- -0.027146439999341965,
- 0.07318028807640076,
- 0.002681767800822854,
- -0.04257805272936821,
- 0.006048575043678284,
- 0.0027021802961826324,
- -0.07684516161680222,
- -0.06517103314399719,
- -0.054074566811323166,
- 0.037565261125564575,
- 0.019072020426392555,
- 0.0037409833166748285,
- -0.053598351776599884,
- 0.031071171164512634,
- 0.019573543220758438,
- -0.022857561707496643,
- 0.017932558432221413,
- 0.048687081784009933,
- 0.006882551126182079,
- -0.02845109812915325,
- 0.020382434129714966,
- 0.045828063040971756,
- 0.00636537978425622,
- 0.02808704786002636,
- -0.05874595046043396,
- -0.05708790197968483,
- -1.2351996758752648e-8,
- 0.07898759096860886,
- 0.014808463864028454,
- -0.022350341081619263,
- 0.008307117037475109,
- 0.011117939837276936,
- -0.08205190300941467,
- -0.07786903530359268,
- 0.015463232062757015,
- 0.014222892932593822,
- 0.03542080149054527,
- 0.014133762568235397,
- 0.025232592597603798,
- 0.02656543254852295,
- -0.052098702639341354,
- 0.07441648840904236,
- 0.00955929048359394,
- -0.04613913968205452,
- 0.07806950807571411,
- -0.07696466892957687,
- -0.045533426105976105,
- -0.03730153292417526,
- -0.06558652967214584,
- 0.025539442896842957,
- 0.00778706930577755,
- -0.03748983144760132,
- 0.005875213537365198,
- -0.03412355110049248,
- -0.061586443334817886,
- 0.030540229752659798,
- 0.03269629925489426,
- 0.06362158060073853,
- 0.006701957900077105,
- -0.032051652669906616,
- -0.01785966195166111,
- -0.02521984651684761,
- -0.055722665041685104,
- 0.050252631306648254,
- -0.06110334396362305,
- 0.014948218129575253,
- 0.021017540246248245,
- 0.08341716974973679,
- 0.021191488951444626,
- -0.0019701605197042227,
- -0.008761350065469742,
- 0.007648698519915342,
- 0.002862322609871626,
- 0.02166052721440792,
- -0.01820516400039196,
- -0.00014599574205931276,
- -0.138435497879982,
- 0.030827166512608528,
- 0.013392669148743153,
- 0.05930757895112038,
- 0.03106827661395073,
- 0.015220332890748978,
- 0.02931845746934414,
- 0.029313793405890465,
- 0.05982306972146034,
- -0.06981859356164932,
- 0.07381558418273926,
- 0.020858924835920334,
- 0.027401579543948174,
- 0.03200434148311615,
- 0.01859484426677227
- ]
- },
- {
- "keyword": "practitioner",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.00581129128113389,
- 0.028641585260629654,
- -0.022454451769590378,
- 0.001983257010579109,
- -0.08633743226528168,
- -0.03209269419312477,
- 0.09956307709217072,
- 0.09599773585796356,
- -0.013591407798230648,
- -0.008043244481086731,
- -0.033609505742788315,
- -0.014054394327104092,
- -0.018366826698184013,
- 0.028553565964102745,
- -0.05565369129180908,
- 0.09014356881380081,
- 0.0024554117117077112,
- 0.02140643820166588,
- 0.13626347482204437,
- 0.01797274872660637,
- -0.15533685684204102,
- 0.0714980885386467,
- -0.02241203747689724,
- 0.05577860400080681,
- -0.03543105721473694,
- 0.07578666508197784,
- 0.0006083195330575109,
- -0.043249376118183136,
- 0.06379277259111404,
- -0.02953379973769188,
- 0.0015766130527481437,
- 0.05238202586770058,
- -0.012141278013586998,
- -0.013482384383678436,
- -0.015802185982465744,
- 0.03937004879117012,
- -0.06538427621126175,
- 0.07912939041852951,
- -0.03927138075232506,
- 0.07438617199659348,
- 0.007014311384409666,
- -0.028836334124207497,
- -0.027589991688728333,
- -0.017289867624640465,
- 0.0663161426782608,
- -0.02064809761941433,
- -0.040111392736434937,
- 0.017627010121941566,
- 0.028444644063711166,
- -0.0039245933294296265,
- -0.11415357142686844,
- -0.06741507351398468,
- -0.01267792098224163,
- 0.035426948219537735,
- -0.03900665044784546,
- -0.07482405751943588,
- 0.03048628196120262,
- 0.009066847153007984,
- -0.03834887593984604,
- 0.01850288175046444,
- 0.004769175313413143,
- 0.01964438334107399,
- -0.06577353924512863,
- 0.023035932332277298,
- 0.08843641728162766,
- 0.005917623173445463,
- 0.023230332881212234,
- 0.005352988839149475,
- 0.015502934344112873,
- -0.06571729481220245,
- 0.002197378082200885,
- 0.00134465959854424,
- 0.07288717478513718,
- 0.05723053589463234,
- 0.022139927372336388,
- -0.07720872759819031,
- -0.012874346226453781,
- -0.024824952706694603,
- 0.08379793912172318,
- -0.0029791933484375477,
- 0.08736371248960495,
- 0.08292068541049957,
- -0.01211585383862257,
- -0.008980073034763336,
- -0.0165069792419672,
- 0.009863962419331074,
- 0.019125593826174736,
- 0.046188194304704666,
- 0.00028467681840993464,
- -0.007932184264063835,
- 0.012684129178524017,
- 0.001435128622688353,
- 0.01596425659954548,
- -0.00206282758153975,
- 0.004068066831678152,
- 0.03277549892663956,
- -0.0364934504032135,
- -0.03315155580639839,
- -0.05795799940824509,
- 0.23412401974201202,
- -0.009118042886257172,
- -0.015726730227470398,
- -0.03006090596318245,
- 0.020610997453331947,
- -0.0324542336165905,
- 0.00031983418739400804,
- -0.05884689837694168,
- -0.10019079595804214,
- 0.027130810543894768,
- 0.03159693256020546,
- 0.013402567245066166,
- 0.014806854538619518,
- -0.11426222324371338,
- -0.019518457353115082,
- 0.013264570385217667,
- 0.05469304323196411,
- -0.03809397667646408,
- 0.08607899397611618,
- -0.019037237390875816,
- 0.018888309597969055,
- -0.05670134350657463,
- -0.012586432509124279,
- -0.060614340007305145,
- -0.0365254208445549,
- 0.025872310623526573,
- 0.0012999767204746604,
- 0.04843351989984512,
- -5.81623988603512e-33,
- -0.015661800280213356,
- 0.01831422932446003,
- 0.0724678635597229,
- 0.10738330334424973,
- 0.027927646413445473,
- 0.06487947702407837,
- 0.027647364884614944,
- -0.016792047768831253,
- -0.007564246188849211,
- -0.05086517333984375,
- 0.025764882564544678,
- 0.007097791880369186,
- -0.019352266564965248,
- 0.05327596142888069,
- -0.030346428975462914,
- -0.040831927210092545,
- -0.03513287752866745,
- 0.08273137360811234,
- -0.011590227484703064,
- -0.031143847852945328,
- -0.0334426648914814,
- 0.044406574219465256,
- -0.054826520383358,
- 0.05630068480968475,
- -0.028185397386550903,
- 0.02466832473874092,
- 0.017513886094093323,
- 0.009492390789091587,
- 0.07140006124973297,
- 0.02193630114197731,
- -0.00311964750289917,
- 0.009699600748717785,
- -0.03145194798707962,
- -0.03470734506845474,
- 0.022017857059836388,
- 0.025311458855867386,
- -0.022685866802930832,
- -0.12456011772155762,
- 0.015690509229898453,
- -0.05362396314740181,
- -0.029518695548176765,
- 0.012736380100250244,
- 0.08730953186750412,
- 0.02654719166457653,
- -0.010341274552047253,
- 0.009060964919626713,
- 0.004291193094104528,
- -0.021977702155709267,
- -0.10589919239282608,
- 0.04701976478099823,
- -0.022826021537184715,
- 0.030049728229641914,
- -0.026069805026054382,
- -0.017923500388860703,
- 0.0452953465282917,
- -0.06173773854970932,
- -0.017045188695192337,
- 0.052119433879852295,
- 0.019506391137838364,
- -0.005532742477953434,
- 0.06031453236937523,
- 0.09906352311372757,
- -0.08570640534162521,
- 0.018183628097176552,
- -0.020366499200463295,
- -0.07771213352680206,
- -0.03157076612114906,
- -0.0659971758723259,
- 0.06200607493519783,
- 0.019528113305568695,
- -0.05406519025564194,
- 0.06840191781520844,
- 0.050552140921354294,
- -0.004890228156000376,
- -0.038136113435029984,
- -0.028352679684758186,
- -0.030587496235966682,
- -0.014772478491067886,
- -0.08011474460363388,
- 0.037463653832674026,
- -0.13563160598278046,
- 0.025717701762914658,
- -0.04042116552591324,
- 0.0360674150288105,
- 0.007306727580726147,
- 0.007881305180490017,
- -0.047585226595401764,
- -0.01638467237353325,
- 0.032069481909275055,
- -0.010579167865216732,
- -0.09080174565315247,
- -0.023475466296076775,
- 0.034931059926748276,
- 0.10180499404668808,
- -0.054812606424093246,
- 4.343557053437942e-33,
- -0.026458164677023888,
- -0.04617815092206001,
- 0.013801566325128078,
- 0.11978437751531601,
- 0.07578055560588837,
- -0.0470922589302063,
- 0.0211897324770689,
- 0.03722180053591728,
- -0.007969621568918228,
- 0.003782819025218487,
- 0.017655907198786736,
- 0.00414271978661418,
- 0.017837049439549446,
- 0.022174499928951263,
- 0.008518118411302567,
- 0.018953684717416763,
- -0.08674637228250504,
- -0.011664997786283493,
- -0.03726042062044144,
- 0.01750537008047104,
- 0.007824968546628952,
- 0.008159046061336994,
- 0.03898338973522186,
- -0.004666777327656746,
- -0.004070954862982035,
- 0.04476524889469147,
- 0.06296877562999725,
- -0.012727363966405392,
- 0.00951992254704237,
- -0.01626024954020977,
- -0.0034485231153666973,
- -0.07005427777767181,
- -0.07483244687318802,
- -0.039683688431978226,
- -0.04981765151023865,
- 0.12105465680360794,
- 0.018012119457125664,
- -0.05268194526433945,
- -0.07332102954387665,
- 0.01971893571317196,
- 0.02083316259086132,
- -0.00801604613661766,
- 0.00010328531061531976,
- 0.06649001687765121,
- 0.021844830363988876,
- -0.013348603621125221,
- 0.025879040360450745,
- 0.031238680705428123,
- 0.1394668072462082,
- 0.008688393980264664,
- -0.06567034870386124,
- 0.016806339845061302,
- -0.03238411992788315,
- -0.08310192078351974,
- -0.010300062596797943,
- -0.08047716319561005,
- 0.0008598501444794238,
- -0.07454127818346024,
- -0.02859906107187271,
- -0.01776397041976452,
- 0.06555759906768799,
- -0.0060331858694553375,
- -0.08207222074270248,
- 0.10970158129930496,
- -0.01719805970788002,
- 0.07868845760822296,
- 0.022369354963302612,
- 0.07496744394302368,
- 0.004238511901348829,
- -0.023524144664406776,
- 0.09355024993419647,
- 0.022865477949380875,
- -0.04318346828222275,
- -0.04359453171491623,
- 0.02297968789935112,
- 0.007720623165369034,
- 0.0038672834634780884,
- -0.0739576667547226,
- -0.022252196446061134,
- -0.05996515601873398,
- -0.04622042551636696,
- -0.12798964977264404,
- 0.000031178533390630037,
- 0.10185843706130981,
- -0.041569389402866364,
- 0.022717736661434174,
- 0.02194098010659218,
- -0.07452763617038727,
- -0.051456332206726074,
- 0.030858349055051804,
- 0.005375458858907223,
- 0.059918999671936035,
- -0.05667934566736221,
- -0.035583946853876114,
- 0.023029061034321785,
- -1.1763700236144814e-8,
- -0.001480916398577392,
- -0.003128423122689128,
- 0.03395780920982361,
- -0.05270818620920181,
- 0.05769268795847893,
- -0.0841238796710968,
- -0.05577947571873665,
- -0.028901683166623116,
- -0.02700345404446125,
- 0.14079099893569946,
- -0.0369056798517704,
- -0.04598989337682724,
- 0.03250041976571083,
- 0.009911838918924332,
- 0.1660948097705841,
- -0.05152621492743492,
- -0.023969577625393867,
- 0.13346260786056519,
- -0.08017566055059433,
- -0.043671607971191406,
- 0.03771330788731575,
- 0.015564273111522198,
- 0.059619609266519547,
- -0.028200779110193253,
- -0.0246158167719841,
- -0.011346868239343166,
- -0.03944665938615799,
- 0.011985601857304573,
- -0.009814916178584099,
- 0.08176960051059723,
- 0.011374696157872677,
- 0.0817367285490036,
- 0.0021841744892299175,
- -0.024118667468428612,
- 0.02225191704928875,
- -0.041264038532972336,
- -0.010631722398102283,
- 0.01742488704621792,
- -0.001129140262492001,
- 0.04480879008769989,
- -0.07218880206346512,
- -0.008431291207671165,
- 0.030718747526407242,
- -0.0074875084683299065,
- -0.09855124354362488,
- -0.04112131893634796,
- 0.0657801404595375,
- 0.015533242374658585,
- 0.029620792716741562,
- 0.0014461805112659931,
- 0.019805757328867912,
- -0.01976502314209938,
- 0.08531233668327332,
- -0.010481300763785839,
- -0.002449546242132783,
- 0.020342115312814713,
- 0.07216666638851166,
- -0.04600944742560387,
- -0.10391343384981155,
- -0.004228276666253805,
- 0.026395242661237717,
- -0.0072018541395664215,
- 0.05374610424041748,
- 0.04816484823822975
- ]
- },
- {
- "keyword": "clinician",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.016794763505458832,
- 0.0094681978225708,
- -0.032442331314086914,
- 0.01399803813546896,
- -0.08179860562086105,
- -0.10648646950721741,
- 0.12403714656829834,
- 0.09312914311885834,
- 0.01327785849571228,
- -0.022420158609747887,
- -0.02691841498017311,
- -0.03455541655421257,
- -0.011879454366862774,
- 0.061148568987846375,
- -0.08455565571784973,
- 0.008440796285867691,
- 0.012973728589713573,
- 0.007877083495259285,
- 0.024474143981933594,
- -0.021868985146284103,
- -0.13966764509677887,
- 0.05204600468277931,
- 0.0475267693400383,
- 0.06744543462991714,
- -0.03282041847705841,
- -0.012158599682152271,
- -0.009496686980128288,
- 0.009869313798844814,
- -0.025185609236359596,
- 0.035998035222291946,
- -0.017176663503050804,
- 0.02141197957098484,
- -0.04460778832435608,
- -0.021702174097299576,
- 0.03452366590499878,
- -0.04691457003355026,
- -0.041120484471321106,
- 0.07006894052028656,
- 0.03328120335936546,
- 0.06907481700181961,
- -0.024866526946425438,
- -0.06840553134679794,
- -0.008185734041035175,
- 0.030929870903491974,
- 0.019495854154229164,
- -0.010685986839234829,
- 0.05321548879146576,
- 0.04382497817277908,
- 0.065616674721241,
- -0.010857146233320236,
- -0.07868880778551102,
- -0.047903936356306076,
- -0.0340944267809391,
- 0.02332112565636635,
- -0.04135836288332939,
- -0.012973252683877945,
- -0.03145936504006386,
- -0.061677370220422745,
- -0.05571300908923149,
- 0.042776841670274734,
- -0.023035753518342972,
- -0.007261977065354586,
- -0.01316730584949255,
- 0.09801263362169266,
- -0.012792414985597134,
- -0.018405945971608162,
- -0.007323695812374353,
- -0.015228122472763062,
- 0.07233291119337082,
- 0.006527350749820471,
- -0.013328886590898037,
- -0.028074193745851517,
- 0.009348548017442226,
- 0.1366567760705948,
- 0.03759963437914848,
- -0.020998666062951088,
- 0.08803620934486389,
- -0.01704285852611065,
- 0.08773960173130035,
- 0.006215690169483423,
- 0.04833712801337242,
- 0.0007453110883943737,
- 0.04373236745595932,
- 0.02553340420126915,
- -0.009447450749576092,
- 0.01947648823261261,
- 0.036171432584524155,
- 0.07388249784708023,
- -0.07429218292236328,
- -0.07175137847661972,
- 0.029202906414866447,
- 0.02723594568669796,
- 0.012066698633134365,
- -0.009422877803444862,
- -0.04773513972759247,
- -0.01273001916706562,
- -0.010176886804401875,
- -0.06770426779985428,
- -0.04570034518837929,
- 0.1785009354352951,
- -0.09832676500082016,
- -0.0258045457303524,
- 0.03548344969749451,
- 0.08258632570505142,
- -0.02822905406355858,
- -0.07113415002822876,
- -0.0716942623257637,
- -0.06876309216022491,
- -0.010169941000640392,
- 0.008482331410050392,
- 0.018788792192935944,
- 0.005037839990109205,
- -0.06542087346315384,
- 0.025663206353783607,
- 0.016734052449464798,
- 0.0488971509039402,
- 0.03249770402908325,
- 0.0019678387325257063,
- -0.011789718642830849,
- 0.09419671446084976,
- -0.035788726061582565,
- -0.023298146203160286,
- -0.056204959750175476,
- -0.04265621304512024,
- 0.04501354694366455,
- 0.03539763391017914,
- 0.053388748317956924,
- -4.668348713964032e-33,
- -0.009678352624177933,
- -0.010509751737117767,
- 0.09178701043128967,
- 0.03626197576522827,
- 0.017774486914277077,
- 0.13217921555042267,
- 0.0017187835182994604,
- -0.023431843146681786,
- 0.0166368056088686,
- -0.02617584355175495,
- 0.04368991404771805,
- 0.03981553018093109,
- 0.01546595897525549,
- -0.0008739323820918798,
- -0.007294082082808018,
- 0.05440925434231758,
- -0.07766778022050858,
- 0.05909169465303421,
- -0.11082234978675842,
- 0.02438453584909439,
- -0.0751708373427391,
- 0.0909893736243248,
- -0.017640506848692894,
- 0.08848053216934204,
- -0.04234713688492775,
- 0.006025194656103849,
- -0.025801798328757286,
- -0.03514542058110237,
- 0.1326710283756256,
- 0.0284991804510355,
- -0.049010660499334335,
- -0.0266672745347023,
- 0.02455301582813263,
- -0.04725084826350212,
- -0.005479686427861452,
- 0.07468806952238083,
- -0.018634269014000893,
- -0.06702017784118652,
- 0.03688567876815796,
- -0.018897714093327522,
- -0.06571467220783234,
- 0.0018172954441979527,
- 0.03164920583367348,
- 0.03705734387040138,
- -0.007428362499922514,
- 0.0638016015291214,
- -0.018336724489927292,
- -0.04650449752807617,
- -0.07504096627235413,
- -0.02178758755326271,
- -0.0378306619822979,
- 0.004661273211240768,
- -0.05764137953519821,
- 0.00021911047224421054,
- 0.05440974235534668,
- -0.03676208481192589,
- 0.03629856929183006,
- 0.03247542679309845,
- 0.018791627138853073,
- 0.024121765047311783,
- 0.08395839482545853,
- 0.1214207261800766,
- -0.03670680150389671,
- -0.0041120462119579315,
- -0.039020780473947525,
- -0.09598259627819061,
- 0.006470917258411646,
- -0.051868367940187454,
- 0.007675074972212315,
- 0.014164434745907784,
- -0.08238086104393005,
- 0.06546753644943237,
- 0.07007825374603271,
- 0.08883153647184372,
- -0.026709893718361855,
- -0.0139077827334404,
- -0.004056720528751612,
- 0.029910994693636894,
- -0.05302773788571358,
- -0.033196013420820236,
- -0.013695069588720798,
- 0.022351952269673347,
- 0.0017402508528903127,
- 0.08000380545854568,
- 0.028454745188355446,
- 0.01924191415309906,
- -0.08619531244039536,
- 0.03114449977874756,
- -0.006182802375406027,
- -0.04089709743857384,
- -0.09477602690458298,
- 0.00267892237752676,
- 0.04025906324386597,
- 0.11554571986198425,
- -0.08692750334739685,
- 2.2029458410760622e-33,
- -0.039349403232336044,
- -0.03340677544474602,
- -0.006886351387947798,
- 0.07555195689201355,
- 0.10054384171962738,
- 0.004759568255394697,
- 0.032969385385513306,
- 0.03996746614575386,
- -0.012921710498631,
- -0.011300290934741497,
- 0.022262176498770714,
- -0.032403796911239624,
- 0.02252936363220215,
- 0.009820425882935524,
- 0.0189085453748703,
- 0.0314905159175396,
- -0.057816196233034134,
- -0.038108814507722855,
- -0.08672839403152466,
- 0.04801616445183754,
- 0.01213372964411974,
- 0.01130873803049326,
- 0.00021977194410283118,
- -0.07600971311330795,
- -0.034715790301561356,
- -0.011596507392823696,
- 0.017563892528414726,
- 0.031855639070272446,
- -0.035814449191093445,
- -0.04285458102822304,
- -0.0053545827977359295,
- 0.009021191857755184,
- -0.03614259138703346,
- -0.09323396533727646,
- 0.0006633689627051353,
- 0.11221863329410553,
- 0.032424911856651306,
- 0.008123349398374557,
- -0.013126249425113201,
- 0.022047407925128937,
- 0.058031316846609116,
- -0.07830389589071274,
- -0.053949128836393356,
- 0.07475259155035019,
- 0.06415601819753647,
- 0.04013810679316521,
- 0.014225817285478115,
- -0.003083143848925829,
- 0.09126926958560944,
- -0.028390388935804367,
- -0.12561041116714478,
- -0.008776425383985043,
- -0.03256819024682045,
- -0.02689015492796898,
- -0.013979432173073292,
- -0.08037146180868149,
- -0.023787887766957283,
- -0.03304215893149376,
- -0.05965225026011467,
- 0.03306405246257782,
- 0.0501442477107048,
- -0.07683282345533371,
- -0.05270647630095482,
- 0.11665403097867966,
- -0.010345776565372944,
- 0.02272980846464634,
- -0.0007175947539508343,
- 0.0266543198376894,
- 0.006602901965379715,
- 0.0066678873263299465,
- 0.038167983293533325,
- -0.02251625806093216,
- -0.11299651861190796,
- 0.003957014065235853,
- 0.01708064042031765,
- -0.025731954723596573,
- -0.068449966609478,
- -0.13639900088310242,
- -0.023694340139627457,
- -0.026193369179964066,
- -0.07853350043296814,
- -0.1577870398759842,
- 0.022461194545030594,
- 0.09695447236299515,
- 0.004939347971230745,
- -0.04847489669919014,
- 0.07730688899755478,
- -0.062009647488594055,
- -0.0574256107211113,
- -0.021888557821512222,
- 0.05038575455546379,
- 0.024449873715639114,
- -0.10271002352237701,
- -0.06829830259084702,
- 0.02150312252342701,
- -1.305095143067092e-8,
- 0.014011149294674397,
- -0.021878110244870186,
- 0.0107831796631217,
- -0.0380777008831501,
- 0.024526163935661316,
- -0.04559694975614548,
- -0.0738561674952507,
- 0.052481286227703094,
- 0.073980912566185,
- 0.08277750760316849,
- 0.0075937295332551,
- 0.05754240229725838,
- 0.029640324413776398,
- 0.009991776198148727,
- 0.029451729729771614,
- 0.006375059951096773,
- -0.035781968384981155,
- 0.0736905112862587,
- -0.03672600910067558,
- -0.04528230056166649,
- -0.023466167971491814,
- -0.04144562408328056,
- 0.07659351825714111,
- -0.048245325684547424,
- 0.0017175596440210938,
- 0.013502857647836208,
- 0.016803087666630745,
- 0.04192917421460152,
- -0.04836416617035866,
- -0.000821924302726984,
- 0.013009977526962757,
- 0.04556630179286003,
- -0.01539988350123167,
- 0.013385411351919174,
- 0.0016182241961359978,
- -0.07087282836437225,
- -0.008372591808438301,
- -0.04660892114043236,
- 0.02206752821803093,
- 0.01809600554406643,
- 0.013097932562232018,
- -0.03795718774199486,
- -0.00047296113916672766,
- 0.050472691655159,
- -0.02491212636232376,
- -0.03297556936740875,
- 0.07138460129499435,
- 0.010125285014510155,
- 0.042206596583127975,
- -0.06096428260207176,
- 0.05480635538697243,
- -0.00291474349796772,
- 0.07714949548244476,
- 0.00962461531162262,
- -0.0660267174243927,
- 0.026941101998090744,
- 0.04625238478183746,
- 0.0072288368828594685,
- -0.10284709185361862,
- 0.0459718257188797,
- 0.0020241327583789825,
- 0.0018302621319890022,
- 0.065132275223732,
- 0.003412161022424698
- ]
- },
- {
- "keyword": "manager",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.06451263278722763,
- 0.04755806922912598,
- -0.015401186421513557,
- 0.055772505700588226,
- -0.014892620034515858,
- -0.02231632173061371,
- 0.12895040214061737,
- 0.015682412311434746,
- -0.0010967518901452422,
- 0.04951953515410423,
- 0.0482003390789032,
- -0.1063038781285286,
- -0.016685256734490395,
- 0.013344716280698776,
- 0.024464039131999016,
- -0.0004531559825409204,
- 0.0036137020215392113,
- 0.05142981931567192,
- -0.009856403805315495,
- -0.14285850524902344,
- -0.05665215477347374,
- -0.014940050430595875,
- -0.06370461732149124,
- 0.014026535674929619,
- -0.07933079451322556,
- -0.010800887830555439,
- -0.05899060517549515,
- 0.07895980775356293,
- -0.05985275283455849,
- -0.12723982334136963,
- -0.014629827812314034,
- -0.03492109477519989,
- 0.04909868910908699,
- 0.003863914404064417,
- -0.04186081513762474,
- 0.08942882716655731,
- -0.038603249937295914,
- -0.006759839132428169,
- 0.03608466312289238,
- 0.0014829247957095504,
- -0.003962127957493067,
- -0.04080399125814438,
- -0.0275883749127388,
- -0.07830733060836792,
- 0.009212596341967583,
- 0.04944329336285591,
- 0.0390610471367836,
- -0.00814890954643488,
- -0.039474669843912125,
- -0.03319382295012474,
- -0.0594470240175724,
- 0.013371136970818043,
- 0.018026091158390045,
- 0.019102122634649277,
- 0.05974455922842026,
- 0.03979308530688286,
- 0.010378383100032806,
- -0.00035477723577059805,
- -0.038783278316259384,
- -0.030621394515037537,
- -0.02150792069733143,
- -0.019352035596966743,
- -0.10964936017990112,
- 0.01724070869386196,
- -0.00007412382547045127,
- -0.03772725537419319,
- -0.04541730880737305,
- 0.047698523849248886,
- -0.012778419069945812,
- -0.017527036368846893,
- 0.05441005155444145,
- -0.12503407895565033,
- -0.005860871635377407,
- -0.027873028069734573,
- 0.021257447078824043,
- -0.058452632278203964,
- 0.0041205994784832,
- 0.02262551337480545,
- 0.09873267263174057,
- 0.014896325767040253,
- 0.02964767813682556,
- -0.03537430986762047,
- -0.008211027830839157,
- 0.03394246846437454,
- -0.012674315832555294,
- -0.0056580714881420135,
- 0.0017646380001679063,
- 0.018986068665981293,
- 0.009936039336025715,
- 0.0656270682811737,
- 0.026777485385537148,
- -0.005392344668507576,
- 0.04468758776783943,
- 0.03006923198699951,
- -0.10358127951622009,
- 0.024507353082299232,
- 0.032750751823186874,
- -0.00260130874812603,
- -0.06553532928228378,
- 0.25785064697265625,
- 0.01993531733751297,
- 0.032701797783374786,
- 0.009195585735142231,
- -0.002238539047539234,
- -0.008988041430711746,
- -0.016263993456959724,
- 0.01783258095383644,
- 0.06368107348680496,
- -0.018051059916615486,
- -0.032937485724687576,
- 0.030252404510974884,
- 0.03726222738623619,
- -0.09052792936563492,
- -0.016994481906294823,
- 0.03628283366560936,
- -0.018719548359513283,
- -0.02565837651491165,
- 0.013279274106025696,
- -0.027955016121268272,
- 0.041258662939071655,
- 0.011940745636820793,
- 0.026880327612161636,
- -0.0774887353181839,
- 0.06586670130491257,
- -0.15662597119808197,
- 0.03722083568572998,
- 0.011329017579555511,
- -4.731009909702553e-33,
- 0.042190100997686386,
- -0.04705853760242462,
- 0.029183141887187958,
- 0.02351650968194008,
- 0.030848374590277672,
- 0.05873339623212814,
- 0.013848253525793552,
- 0.10307780653238297,
- 0.05521326884627342,
- -0.003183044958859682,
- 0.06440531462430954,
- -0.015912212431430817,
- -0.029925977811217308,
- -0.07105568051338196,
- 0.061795685440301895,
- 0.001153946970589459,
- -0.05090731009840965,
- 0.10387340933084488,
- -0.018834058195352554,
- -0.03221684321761131,
- -0.05277937278151512,
- 0.05339046195149422,
- -0.031276214867830276,
- -0.04018589109182358,
- 0.057622894644737244,
- 0.02195148542523384,
- -0.03286640718579292,
- -0.0687389224767685,
- 0.08814690262079239,
- 0.022379061207175255,
- 0.0640316903591156,
- 0.05531575530767441,
- -0.024271555244922638,
- -0.03762596845626831,
- -0.04232684522867203,
- 0.016703074797987938,
- -0.09597618877887726,
- -0.06960012018680573,
- -0.008212591521441936,
- -0.08495195209980011,
- -0.06936076283454895,
- -0.010962516069412231,
- 0.030388744547963142,
- -0.0023219967260956764,
- -0.04623429849743843,
- -0.009797806851565838,
- 0.06318744271993637,
- -0.023029346019029617,
- 0.030297676101326942,
- 0.03693260997533798,
- -0.021099969744682312,
- -0.041065022349357605,
- 0.011467200703918934,
- 0.013452019542455673,
- 0.04603442922234535,
- -0.01420366857200861,
- 0.07853873074054718,
- -0.0067689744755625725,
- 0.037047259509563446,
- 0.0006078663864172995,
- 0.041940782219171524,
- 0.09251674264669418,
- -0.02154548279941082,
- 0.07617603242397308,
- 0.0680520161986351,
- -0.062084589153528214,
- 0.0356401689350605,
- -0.06508994102478027,
- 0.0761210024356842,
- 0.0003195159079041332,
- -0.03427016735076904,
- 0.007199790794402361,
- 0.04992974177002907,
- 0.027776502072811127,
- 0.05616867542266846,
- -0.01048190612345934,
- -0.0008126703323796391,
- 0.08738367259502411,
- -0.13007499277591705,
- 0.04068945720791817,
- -0.01309291459619999,
- -0.01340885553508997,
- 0.02455323375761509,
- -0.026116114109754562,
- 0.06223201006650925,
- 0.03780254349112511,
- 0.003932058345526457,
- -0.00167633849196136,
- 0.1018114909529686,
- 0.12437894195318222,
- -0.08310363441705704,
- -0.006230078637599945,
- 0.03640270605683327,
- 0.13547834753990173,
- -0.04358329996466637,
- 3.390169054125664e-33,
- 0.00021607292001135647,
- -0.04813464358448982,
- -0.007322275545448065,
- 0.02279328927397728,
- 0.04504244029521942,
- 0.019489681348204613,
- -0.05158505588769913,
- 0.02443564310669899,
- -0.05718235671520233,
- -0.024436576291918755,
- -0.020098166540265083,
- 0.0416996106505394,
- 0.07735352963209152,
- 0.04340260848402977,
- 0.0009040296426974237,
- 0.022884348407387733,
- 0.06529814749956131,
- -0.10594818741083145,
- -0.11955177038908005,
- 0.008588774129748344,
- -0.05437619239091873,
- 0.006036205682903528,
- -0.011251244693994522,
- 0.012025069445371628,
- -0.09248143434524536,
- 0.022959230467677116,
- 0.02758023515343666,
- -0.00191162945702672,
- -0.039395518600940704,
- 0.026779592037200928,
- 0.04023556038737297,
- -0.07591458410024643,
- -0.0645977258682251,
- 0.000268379517365247,
- -0.03578833118081093,
- 0.04387648031115532,
- -0.03103029727935791,
- 0.04360242933034897,
- -0.04880848526954651,
- 0.124874047935009,
- 0.021846605464816093,
- -0.00781219732016325,
- 0.03944343701004982,
- 0.05380607023835182,
- -0.02164682187139988,
- 0.018092811107635498,
- -0.06565138697624207,
- -0.04578913748264313,
- -0.04353299364447594,
- 0.012218371033668518,
- -0.14126816391944885,
- 0.001123164314776659,
- -0.09373556822538376,
- -0.06833435595035553,
- -0.007141780108213425,
- -0.002178868977352977,
- -0.05480436608195305,
- -0.03329870104789734,
- -0.02129908837378025,
- -0.01844141259789467,
- -0.02132510207593441,
- 0.026831137016415596,
- -0.023590924218297005,
- 0.0727568194270134,
- -0.06825762242078781,
- 0.0775383710861206,
- 0.021984823048114777,
- -0.0480479821562767,
- 0.010173060931265354,
- -0.008016638457775116,
- 0.05175580456852913,
- 0.015634728595614433,
- 0.012847715988755226,
- 0.05643482133746147,
- -0.06024620682001114,
- 0.009620591066777706,
- -0.03521125763654709,
- -0.026223428547382355,
- -0.009656761772930622,
- -0.08455973863601685,
- -0.027345212176442146,
- -0.038504838943481445,
- 0.004899599123746157,
- 0.052120041102170944,
- -0.06658005714416504,
- -0.045437972992658615,
- 0.06909900903701782,
- 0.007626503240317106,
- 0.002146829152479768,
- -0.051599834114313126,
- 0.052497170865535736,
- 0.015195478685200214,
- -0.03124077618122101,
- 0.0054744151420891285,
- 0.08085445314645767,
- -1.2268738913689958e-8,
- -0.017900267615914345,
- 0.0022433956619352102,
- 0.014956198632717133,
- -0.05483030527830124,
- 0.08549397438764572,
- -0.036387789994478226,
- -0.0364733450114727,
- -0.043526582419872284,
- 0.08294468373060226,
- 0.030452631413936615,
- 0.026144394651055336,
- -0.02798980101943016,
- -0.05710875615477562,
- -0.01343948021531105,
- 0.07839252054691315,
- -0.04289258271455765,
- -0.041328057646751404,
- 0.060327835381031036,
- 0.02007455751299858,
- -0.0018072060775011778,
- -0.005228486843407154,
- 0.04071673005819321,
- -0.005468894261866808,
- 0.022320227697491646,
- 0.06332211941480637,
- 0.0009318814845755696,
- -0.0481082908809185,
- 0.06371493637561798,
- -0.010036869905889034,
- 0.09775235503911972,
- 0.03695721551775932,
- 0.07785157859325409,
- -0.021151889115571976,
- 0.03037632629275322,
- 0.03140241652727127,
- -0.008737466298043728,
- 0.024380996823310852,
- -0.06768880039453506,
- 0.0164438895881176,
- -0.04776228964328766,
- -0.03145105019211769,
- -0.012292447499930859,
- 0.03319590911269188,
- 0.02967977151274681,
- -0.048068854957818985,
- 0.0695611760020256,
- 0.07633530348539352,
- -0.027805088087916374,
- 0.019385870546102524,
- -0.07253934442996979,
- -0.027002708986401558,
- 0.029632864519953728,
- 0.08663465082645416,
- 0.05247367173433304,
- 0.02254614792764187,
- -0.051773104816675186,
- 0.013423400931060314,
- -0.042349155992269516,
- -0.1081613227725029,
- -0.0009344283025711775,
- 0.07764872163534164,
- -0.01173493079841137,
- -0.0010267560137435794,
- 0.027815479785203934
- ]
- },
- {
- "keyword": "director",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.02574850060045719,
- -0.02237260341644287,
- 0.011327843181788921,
- 0.041588231921195984,
- -0.014400292187929153,
- -0.020301075652241707,
- 0.10487475246191025,
- 0.008005480282008648,
- 0.043316490948200226,
- -0.02375590242445469,
- 0.03377855196595192,
- -0.05312265083193779,
- 0.01301098894327879,
- 0.05183131620287895,
- -0.04637797549366951,
- -0.006239472888410091,
- 0.00965186394751072,
- 0.05215948447585106,
- 0.016241146251559258,
- -0.0816214308142662,
- -0.07102721184492111,
- 0.03990521281957626,
- 0.025138676166534424,
- -0.027822241187095642,
- -0.0027406865265220404,
- -0.013130580075085163,
- -0.023099204525351524,
- -0.05032126605510712,
- -0.07972904294729233,
- -0.10232183337211609,
- 0.002178330672904849,
- 0.04284565523266792,
- 0.023493321612477303,
- -0.012148857116699219,
- -0.0010333745740354061,
- 0.08114801347255707,
- -0.024763908237218857,
- -0.03013312816619873,
- -0.02776513807475567,
- -0.011691741645336151,
- -0.024859225377440453,
- -0.0009048005449585617,
- 0.028295686468482018,
- -0.02517036162316799,
- -0.025919239968061447,
- -0.018503807485103607,
- 0.024998214095830917,
- -0.040830761194229126,
- -0.01159240584820509,
- 0.01532343402504921,
- -0.06216050684452057,
- 0.005732954014092684,
- 0.0034986583050340414,
- -0.04051515460014343,
- 0.03433217108249664,
- -0.000875708123203367,
- 0.012691513635218143,
- 0.02447209507226944,
- 0.030047304928302765,
- -0.01051095500588417,
- 0.03988853469491005,
- 0.023101134225726128,
- -0.05881093069911003,
- -0.01972065307199955,
- 0.1264394074678421,
- -0.04715849086642265,
- 0.009083249606192112,
- 0.024444270879030228,
- -0.09101598709821701,
- -0.05810098722577095,
- 0.02633487805724144,
- -0.0209508053958416,
- -0.01960035413503647,
- -0.019826281815767288,
- 0.030871381983160973,
- -0.06597740948200226,
- 0.020770421251654625,
- 0.04704338684678078,
- 0.05517461895942688,
- -0.09033456444740295,
- 0.0775865912437439,
- -0.046867381781339645,
- -0.07534043490886688,
- 0.053632888942956924,
- -0.0027047384064644575,
- 0.05448690056800842,
- 0.04610825702548027,
- 0.06238860264420509,
- -0.024793650954961777,
- 0.01591300219297409,
- 0.036894503980875015,
- -0.07502785325050354,
- 0.0068799154832959175,
- 0.062826007604599,
- -0.10058906674385071,
- 0.025798343122005463,
- -0.043335411697626114,
- 0.04937015846371651,
- -0.024117745459079742,
- 0.2141394466161728,
- -0.019620176404714584,
- -0.0033162590116262436,
- -0.0928497314453125,
- -0.019990533590316772,
- -0.009777841158211231,
- 0.0011669578962028027,
- 0.006675567477941513,
- 0.013977120630443096,
- -0.030894076451659203,
- -0.014978564344346523,
- -0.03376301750540733,
- 0.024069800972938538,
- -0.047071512788534164,
- 0.027065934613347054,
- 0.113783098757267,
- -0.0423981137573719,
- 0.013847404159605503,
- 0.03716364502906799,
- -0.004563251510262489,
- 0.02447810024023056,
- 0.03369966149330139,
- 0.035366687923669815,
- -0.061998412013053894,
- 0.06876585632562637,
- -0.05207341909408569,
- -0.040032267570495605,
- 0.023855388164520264,
- -5.36992708888896e-33,
- 0.047716520726680756,
- 0.06456271559000015,
- 0.10053812712430954,
- -0.009055191650986671,
- -0.007754222955554724,
- 0.014114074409008026,
- 0.039018623530864716,
- 0.11137665808200836,
- -0.05706587806344032,
- 0.052648209035396576,
- -0.02785474620759487,
- -0.0951671302318573,
- -0.08973965793848038,
- -0.05209124833345413,
- 0.0052517494186758995,
- 0.0296337753534317,
- 0.04082658514380455,
- 0.022789092734456062,
- -0.04412293806672096,
- -0.06272049993276596,
- -0.03464142978191376,
- 0.1766241043806076,
- -0.0655563473701477,
- 0.041057758033275604,
- 0.02992936223745346,
- -0.07870431244373322,
- 0.03009572997689247,
- 0.0028584233950823545,
- 0.14087696373462677,
- 0.03589903935790062,
- 0.006843757815659046,
- 0.05704064294695854,
- -0.0373060368001461,
- 0.025484012439846992,
- 0.02135819010436535,
- 0.016766371205449104,
- -0.13535110652446747,
- -0.028848640620708466,
- 0.010387210175395012,
- 0.01718556135892868,
- -0.03916667774319649,
- 0.004407276399433613,
- -0.03404293209314346,
- 0.005303907673805952,
- -0.08370241522789001,
- 0.008250786922872066,
- 0.034077152609825134,
- -0.00037999055348336697,
- -0.07073085755109787,
- 0.11215782910585403,
- -0.03788541629910469,
- 0.008622982539236546,
- 0.0007825417560525239,
- 0.027213098481297493,
- 0.043117884546518326,
- -0.02082865871489048,
- 0.006885462906211615,
- -0.03670879825949669,
- 0.03441499173641205,
- -0.02050226740539074,
- 0.01774902455508709,
- 0.15597032010555267,
- -0.088127002120018,
- 0.09391198307275772,
- -0.0940898135304451,
- -0.034431394189596176,
- 0.06819402426481247,
- -0.07284379750490189,
- 0.06982729583978653,
- 0.032043542712926865,
- -0.12179339677095413,
- 0.02372499741613865,
- 0.04674355313181877,
- 0.041846536099910736,
- -0.06681497395038605,
- 0.015153526328504086,
- -0.06466421484947205,
- 0.03016640990972519,
- -0.09901972860097885,
- 0.044902678579092026,
- -0.11571017652750015,
- 0.0517105869948864,
- 0.029528774321079254,
- 0.015118462964892387,
- 0.03442932665348053,
- -0.016711091622710228,
- -0.055650223046541214,
- -0.03351758420467377,
- 0.01777978241443634,
- 0.07923443615436554,
- -0.006736115086823702,
- -0.031647007912397385,
- 0.013129424303770065,
- 0.08132600039243698,
- -0.002743468387052417,
- 4.104535705561584e-33,
- 0.03558160364627838,
- -0.04140046611428261,
- -0.0003971108526457101,
- -0.054342418909072876,
- -0.025101743638515472,
- -0.043743573129177094,
- -0.019903386011719704,
- 0.0003882777818944305,
- -0.04531501233577728,
- -0.01834341697394848,
- -0.10363982617855072,
- 0.02883019484579563,
- 0.056138016283512115,
- 0.06266836076974869,
- 0.05474773794412613,
- 0.030777188017964363,
- 0.03438587859272957,
- -0.04732657968997955,
- -0.04876498132944107,
- -0.0049578957259655,
- -0.07713724672794342,
- 0.010834124870598316,
- -0.02979060262441635,
- -0.011627616360783577,
- -0.05095107480883598,
- 0.03597068041563034,
- 0.06047990173101425,
- 0.06793922185897827,
- 0.004370006732642651,
- 0.009897466748952866,
- 0.005348986480385065,
- -0.10154542326927185,
- -0.09155846387147903,
- -0.0005479721585288644,
- -0.07124815881252289,
- 0.07212843745946884,
- 0.0045846193097531796,
- -0.008137183263897896,
- -0.026770753785967827,
- 0.020955730229616165,
- 0.03907211124897003,
- -0.005571717396378517,
- 0.0929630696773529,
- 0.07811567187309265,
- -0.0002705430088099092,
- -0.05265539884567261,
- 0.06773613393306732,
- -0.0467710867524147,
- -0.043576546013355255,
- 0.030540449544787407,
- -0.08615823090076447,
- 0.010598316788673401,
- -0.011206287890672684,
- -0.0576656349003315,
- 0.06171812862157822,
- 0.006007242947816849,
- -0.018379395827651024,
- 0.029539555311203003,
- 0.07783098518848419,
- 0.014457435347139835,
- -0.016611820086836815,
- 0.044391196221113205,
- -0.02180996909737587,
- -0.06317132711410522,
- -0.09940027445554733,
- 0.010861815884709358,
- -0.06994841247797012,
- 0.00035714919795282185,
- 0.01575114205479622,
- -0.009270905517041683,
- 0.07682012021541595,
- -0.025100206956267357,
- -0.09938103705644608,
- 0.03704831749200821,
- -0.06299776583909988,
- -0.017646972090005875,
- -0.0998138040304184,
- -0.011793162673711777,
- 0.006117552053183317,
- -0.0013632163172587752,
- -0.019339505583047867,
- -0.03549143671989441,
- 0.01286313496530056,
- 0.13117101788520813,
- -0.015584960579872131,
- 0.038025062531232834,
- 0.029477253556251526,
- -0.031429536640644073,
- 0.036625638604164124,
- -0.019095933064818382,
- 0.06109660863876343,
- 0.012036159634590149,
- 0.1276456117630005,
- 0.014737237244844437,
- -0.030445650219917297,
- -1.2417991079871626e-8,
- -0.039216700941324234,
- 0.015450217761099339,
- 0.00890233926475048,
- -0.00904169213026762,
- 0.06569238752126694,
- -0.057216886430978775,
- 0.030241621658205986,
- 0.06757063418626785,
- 0.04377823323011398,
- 0.09139951318502426,
- 0.02220112644135952,
- -0.03344743698835373,
- 0.05201154202222824,
- -0.015251356177031994,
- 0.019705461338162422,
- -0.04756398871541023,
- 0.03126220405101776,
- 0.06239539384841919,
- -0.012571289204061031,
- 0.029565608128905296,
- 0.017497697845101357,
- 0.03827459365129471,
- 0.004934097174555063,
- 0.05529273301362991,
- -0.05672772228717804,
- -0.02446695975959301,
- 0.015643350780010223,
- -0.029591163620352745,
- -0.011396383866667747,
- 0.08073563873767853,
- 0.0011812116717919707,
- 0.056877173483371735,
- -0.05897051468491554,
- -0.0530318059027195,
- -0.030061544850468636,
- -0.04206104576587677,
- 0.007584635633975267,
- -0.03929814696311951,
- 0.00845393817871809,
- 0.003532006172463298,
- -0.02713947743177414,
- 0.09559306502342224,
- 0.03845997527241707,
- 0.03632671758532524,
- 0.03378565236926079,
- -0.004108816850930452,
- 0.08265646547079086,
- -0.06081866845488548,
- -0.02802700363099575,
- -0.052397698163986206,
- -0.020394787192344666,
- 0.025313323363661766,
- -0.004867457319051027,
- 0.08218565583229065,
- 0.061784323304891586,
- -0.029725976288318634,
- 0.043078746646642685,
- -0.012584585696458817,
- -0.10496239364147186,
- 0.025237474590539932,
- 0.019183391705155373,
- 0.0035305367782711983,
- -0.0014959584223106503,
- 0.029582595452666283
- ]
- },
- {
- "keyword": "executive",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.013541118241846561,
- 0.04950973019003868,
- 0.07443263381719589,
- 0.00481127854436636,
- -0.011989856138825417,
- 0.0069137029349803925,
- 0.09475624561309814,
- 0.03374268487095833,
- 0.028340743854641914,
- 0.07544475793838501,
- -0.0012687115231528878,
- 0.0019480368355289102,
- -0.07013342529535294,
- 0.01730230078101158,
- -0.0121036721393466,
- 0.06443717330694199,
- 0.017021458595991135,
- 0.023702863603830338,
- -0.09082220494747162,
- -0.07872579246759415,
- -0.011412985622882843,
- -0.0009589692926965654,
- -0.03444182127714157,
- -0.03074176050722599,
- -0.045747045427560806,
- -0.012473524548113346,
- -0.061896827071905136,
- -0.013007542118430138,
- -0.10293872654438019,
- -0.1388094574213028,
- 0.06158038228750229,
- -0.1432749480009079,
- 0.08871753513813019,
- 0.012101934291422367,
- -0.03239106386899948,
- 0.019299479201436043,
- -0.03255455940961838,
- 0.01986587420105934,
- 0.0636158436536789,
- -0.06913983076810837,
- -0.019777433946728706,
- -0.023214761167764664,
- -0.059372566640377045,
- -0.051363859325647354,
- 0.0017410804284736514,
- 0.018000159412622452,
- 0.02198668010532856,
- -0.053034283220767975,
- -0.04296230897307396,
- -0.04103429242968559,
- 0.005477834027260542,
- -0.09366635233163834,
- 0.044520679861307144,
- -0.04644978418946266,
- 0.026217615231871605,
- 0.008325459435582161,
- 0.04136989265680313,
- -0.06278583407402039,
- 0.02281428873538971,
- -0.037666067481040955,
- -0.061699509620666504,
- -0.052572090178728104,
- -0.051488135010004044,
- 0.00424103531986475,
- 0.0682685598731041,
- -0.027775991708040237,
- 0.03125305101275444,
- -0.09037666022777557,
- -0.07617057859897614,
- -0.08900130540132523,
- 0.016955440863966942,
- -0.08700428903102875,
- -0.015940392389893532,
- -0.021794550120830536,
- 0.009421959519386292,
- -0.041507188230752945,
- 0.0382273867726326,
- 0.05606238916516304,
- 0.05506371706724167,
- -0.06594587117433548,
- 0.05749422311782837,
- 0.029683582484722137,
- -0.05181911587715149,
- 0.03978753462433815,
- 0.020728813484311104,
- 0.0519307404756546,
- -0.025769874453544617,
- 0.005471864249557257,
- 0.018598319962620735,
- 0.04525476694107056,
- -0.03985118493437767,
- -0.08687625825405121,
- 0.04024306684732437,
- 0.00738111324608326,
- -0.09907197207212448,
- 0.042811859399080276,
- -0.02572072111070156,
- -0.04545827582478523,
- -0.07557802647352219,
- 0.2163003534078598,
- -0.014139220118522644,
- 0.01236654818058014,
- 0.012823720462620258,
- -0.009998894296586514,
- -0.0560624897480011,
- -0.01542254351079464,
- 0.08262733370065689,
- 0.016924498602747917,
- -0.02245710976421833,
- -0.020629223436117172,
- -0.07085267454385757,
- -0.028590554371476173,
- -0.003611505962908268,
- -0.023647025227546692,
- 0.0156991146504879,
- -0.016235606744885445,
- -0.04238388314843178,
- 0.045298028737306595,
- 0.05868900194764137,
- -0.04589224234223366,
- 0.07976633310317993,
- 0.07098078727722168,
- 0.026217086240649223,
- 0.034424010664224625,
- -0.08284815400838852,
- -0.040460456162691116,
- -0.0030824649147689342,
- -5.2947924287202764e-33,
- 0.010964283719658852,
- -0.004484687931835651,
- 0.01419746782630682,
- 0.07159937173128128,
- 0.048137117177248,
- 0.03479663282632828,
- -0.04302138835191727,
- -0.002420569071546197,
- -0.012912682257592678,
- 0.012971345335245132,
- -0.019345326349139214,
- 0.03573368489742279,
- 0.004264504183083773,
- 0.006481693591922522,
- -0.02503151074051857,
- 0.018854081630706787,
- 0.028600381687283516,
- 0.07137851417064667,
- 0.011572764255106449,
- 0.0008662162581458688,
- -0.03653685376048088,
- 0.053735364228487015,
- -0.03783496469259262,
- -0.001684738090261817,
- 0.04706656187772751,
- -0.018115907907485962,
- -0.03774360939860344,
- -0.03008498065173626,
- 0.07194387912750244,
- 0.030454402789473534,
- -0.018662428483366966,
- -0.0015364827122539282,
- -0.04116140678524971,
- 0.061971984803676605,
- -0.009003639221191406,
- 0.0031787536572664976,
- -0.027743488550186157,
- -0.05142302066087723,
- 0.07036767154932022,
- -0.027741894125938416,
- -0.06748092919588089,
- 0.021358447149395943,
- 0.06405419856309891,
- 0.046309906989336014,
- -0.055588286370038986,
- -0.009635727852582932,
- 0.05216047540307045,
- 0.03757156804203987,
- 0.105647973716259,
- 0.08868564665317535,
- 0.013993256725370884,
- -0.044755224138498306,
- 0.07580666244029999,
- 0.003993563819676638,
- 0.03811836242675781,
- -0.011851197108626366,
- 0.06509535759687424,
- 0.023075081408023834,
- 0.053063586354255676,
- -0.01962335780262947,
- 0.0504593662917614,
- 0.19057156145572662,
- -0.12586776912212372,
- 0.09061256796121597,
- -0.003665885655209422,
- -0.005038021132349968,
- 0.0042320070788264275,
- 0.002151160268113017,
- 0.10625402629375458,
- 0.019797932356595993,
- 0.005984662100672722,
- 0.018926361575722694,
- 0.11542045325040817,
- 0.05073336884379387,
- -0.10684950649738312,
- 0.022052224725484848,
- -0.05251583829522133,
- 0.006449215579777956,
- -0.028901778161525726,
- 0.0037135432939976454,
- -0.03603096678853035,
- -0.00932768639177084,
- 0.060399193316698074,
- 0.003700677305459976,
- 0.07783088833093643,
- 0.034052375704050064,
- 0.009457874111831188,
- 0.026467610150575638,
- 0.08152870833873749,
- 0.11099071800708771,
- -0.07190624624490738,
- 0.0388154610991478,
- 0.052997712045907974,
- 0.11129948496818542,
- -0.030455317348241806,
- 3.633308305649746e-33,
- -0.015022131614387035,
- -0.0027682820800691843,
- 0.013624054379761219,
- -0.032231610268354416,
- 0.05068642646074295,
- 0.07387170940637589,
- 0.018146324902772903,
- -0.0863569900393486,
- -0.04304857552051544,
- -0.034934792667627335,
- -0.005990037694573402,
- -0.03085930459201336,
- 0.04836628958582878,
- 0.042576029896736145,
- 0.0682738721370697,
- -0.04880690947175026,
- -0.002295114565640688,
- -0.04474162310361862,
- -0.06907805055379868,
- -0.017246337607502937,
- -0.005082284566015005,
- 0.0263801421970129,
- -0.057156000286340714,
- 0.05653444305062294,
- -0.03163686394691467,
- -0.009780138731002808,
- 0.013186495751142502,
- 0.0264738742262125,
- -0.04380575940012932,
- -0.00897358637303114,
- -0.07041050493717194,
- -0.02378094010055065,
- -0.040233515202999115,
- 0.06690315902233124,
- -0.049943361431360245,
- 0.02928769215941429,
- -0.0453803613781929,
- -0.03298277407884598,
- -0.051808953285217285,
- 0.022537481039762497,
- 0.00005694512219633907,
- -0.045488785952329636,
- 0.06567700952291489,
- 0.0636737123131752,
- -0.011417625471949577,
- 0.010061072185635567,
- -0.0962425097823143,
- -0.018049761652946472,
- -0.050948675721883774,
- 0.04820038005709648,
- -0.1591111719608307,
- -0.0037256027571856976,
- -0.05023358762264252,
- -0.05525195226073265,
- 0.006918282248079777,
- 0.0330800823867321,
- 0.0712863951921463,
- -0.019760744646191597,
- 0.05603139102458954,
- -0.003171292832121253,
- 0.005630004219710827,
- 0.05006256699562073,
- 0.06018920987844467,
- 0.0684984028339386,
- -0.01711835153400898,
- 0.00810539536178112,
- 0.028971584513783455,
- -0.04225938767194748,
- 0.009463273920118809,
- -0.029129786416888237,
- 0.060818325728178024,
- -0.10539624840021133,
- -0.12120784819126129,
- -0.044796574860811234,
- -0.013864219188690186,
- 0.026252876967191696,
- -0.07850635051727295,
- -0.02101469226181507,
- -0.0074748690240085125,
- 0.001855267328210175,
- -0.00206369673833251,
- 0.005086123012006283,
- -0.0162041075527668,
- -0.012417335994541645,
- -0.03388229012489319,
- 0.013722355477511883,
- -0.023390578106045723,
- -0.07406225800514221,
- -0.013150651939213276,
- -0.04364681988954544,
- 0.010177817195653915,
- -0.06415116786956787,
- 0.028092673048377037,
- 0.029322603717446327,
- 0.013789516873657703,
- -1.1311516168177604e-8,
- -0.022359279915690422,
- 0.05711841583251953,
- 0.046526532620191574,
- -0.029584193602204323,
- 0.06539783626794815,
- -0.050883665680885315,
- -0.014716915786266327,
- -0.04527077078819275,
- 0.05590233951807022,
- 0.03380744904279709,
- 0.03247688338160515,
- -0.0029608255717903376,
- -0.004608810879290104,
- -0.005857736803591251,
- 0.09273975342512131,
- -0.05858679488301277,
- 0.00625863391906023,
- 0.11735156178474426,
- 0.012431705370545387,
- 0.037157196551561356,
- -0.009497351013123989,
- 0.05779918283224106,
- 0.003200582694262266,
- -0.0372791513800621,
- 0.018856678158044815,
- -0.024862341582775116,
- 0.007085514720529318,
- 0.0932183489203453,
- -0.032453663647174835,
- 0.09686381369829178,
- 0.01559741422533989,
- 0.08841131627559662,
- -0.04392232000827789,
- -0.0269594918936491,
- -0.03631889075040817,
- -0.028110161423683167,
- -0.01737072691321373,
- -0.020645886659622192,
- -0.00027610117103904486,
- 0.03673066943883896,
- -0.015820994973182678,
- -0.003897686954587698,
- 0.1046866700053215,
- 0.005824357736855745,
- -0.0017239649314433336,
- 0.05550704523921013,
- 0.02025727368891239,
- -0.007021509110927582,
- 0.038842104375362396,
- -0.05827002972364426,
- -0.009443691931664944,
- 0.03783314675092697,
- 0.023343145847320557,
- 0.008309758268296719,
- 0.012118511833250523,
- -0.019804324954748154,
- 0.020431989803910255,
- -0.062030475586652756,
- -0.1347348690032959,
- -0.0227871872484684,
- 0.12443502247333527,
- -0.007933995686471462,
- 0.06267541646957397,
- 0.0247537549585104
- ]
- },
- {
- "keyword": "leader",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07325078547000885,
- 0.11633242666721344,
- 0.0214395672082901,
- 0.02741311304271221,
- -0.036232177168130875,
- 0.0035976183135062456,
- 0.08651627600193024,
- -0.00654357997700572,
- -0.013760875910520554,
- 0.01936378702521324,
- 0.014516574330627918,
- -0.01934901997447014,
- 0.02912508323788643,
- 0.04521602392196655,
- -0.010388128459453583,
- -0.029379939660429955,
- -0.06899704039096832,
- 0.08890008926391602,
- -0.09648563712835312,
- -0.07319750636816025,
- -0.10788455605506897,
- -0.011296339333057404,
- -0.022930733859539032,
- -0.0011741736670956016,
- -0.045339543372392654,
- 0.046334948390722275,
- -0.03078351356089115,
- -0.0032612578943371773,
- -0.0051590194925665855,
- -0.1284576654434204,
- 0.025962578132748604,
- -0.1062072142958641,
- 0.06872417777776718,
- 0.024112902581691742,
- -0.0269556175917387,
- 0.05106807500123978,
- 0.003689947770908475,
- -0.0497937835752964,
- 0.0035116716753691435,
- -0.029425349086523056,
- 0.006126535590738058,
- -0.04047128185629845,
- -0.06970833241939545,
- -0.0293851587921381,
- 0.019691521301865578,
- 0.05518532544374466,
- -0.01643683947622776,
- -0.02961103431880474,
- -0.00939301960170269,
- -0.045213837176561356,
- 0.012932127341628075,
- 0.03496180847287178,
- -0.03384745493531227,
- 0.011662675067782402,
- 0.06451001018285751,
- -0.0061919125728309155,
- 0.008782963268458843,
- -0.03250960633158684,
- 0.054815977811813354,
- -0.03213261440396309,
- 0.0016349245561286807,
- 0.008952835574746132,
- -0.07923142611980438,
- 0.006059504579752684,
- 0.01336792390793562,
- 0.004820058587938547,
- 0.0008874299819581211,
- -0.013313928619027138,
- -0.039970703423023224,
- 0.04688817262649536,
- 0.05089700594544411,
- -0.023579314351081848,
- 0.013012346811592579,
- -0.01923294924199581,
- -0.0182659812271595,
- -0.06013549491763115,
- 0.05503581836819649,
- -0.036683905869722366,
- 0.04717176780104637,
- 0.08560584485530853,
- 0.011953380890190601,
- 0.014337623491883278,
- -0.059722770005464554,
- 0.10512790828943253,
- 0.012231048196554184,
- -0.024104371666908264,
- -0.010431777685880661,
- 0.0012883953750133514,
- -0.04055590555071831,
- 0.01268770731985569,
- -0.008612260222434998,
- 0.01332357432693243,
- 0.06694852560758591,
- 0.04167064651846886,
- -0.05721427500247955,
- 0.006768112536519766,
- -0.031316276639699936,
- -0.055473893880844116,
- -0.0663941353559494,
- 0.24269817769527435,
- -0.0008835674379952252,
- -0.015587538480758667,
- -0.019309792667627335,
- -0.0798453614115715,
- 0.03190489485859871,
- 0.0060181948356330395,
- 0.011050727218389511,
- 0.06819877028465271,
- -0.08072882890701294,
- -0.05079018697142601,
- -0.03548729792237282,
- -0.06284670531749725,
- -0.035211823880672455,
- 0.07927892357110977,
- 0.06559266895055771,
- -0.01930619403719902,
- -0.03628098964691162,
- 0.017407231032848358,
- -0.015734009444713593,
- -0.074469193816185,
- 0.08995606750249863,
- -0.010017164051532745,
- -0.01042640395462513,
- 0.03257480636239052,
- -0.01493103802204132,
- -0.00892605260014534,
- 0.0320916473865509,
- -6.408419777174818e-33,
- -0.014647776260972023,
- 0.01744566485285759,
- 0.06515806168317795,
- 0.06352255493402481,
- 0.007782080210745335,
- 0.1056366115808487,
- 0.06186140701174736,
- -0.01638222113251686,
- -0.0492590069770813,
- 0.07106462866067886,
- -0.019731387495994568,
- 0.0004884361987933517,
- -0.0594085156917572,
- 0.0066848681308329105,
- 0.015075402334332466,
- -0.07248759269714355,
- 0.016029471531510353,
- -0.0028923549689352512,
- -0.08418300747871399,
- -0.007322898134589195,
- -0.014424068853259087,
- 0.06404823809862137,
- -0.014057232066988945,
- -0.0004342025495134294,
- 0.0638720691204071,
- -0.062139298766851425,
- 0.024376004934310913,
- -0.05944135785102844,
- 0.052917320281267166,
- 0.01769501529633999,
- 0.007852998562157154,
- -0.010956935584545135,
- -0.08090800046920776,
- 0.009755480103194714,
- -0.03332700580358505,
- -0.016460712999105453,
- -0.001174948294647038,
- -0.06989133358001709,
- 0.01371278427541256,
- -0.0526086688041687,
- -0.03837829828262329,
- 0.017729198560118675,
- -0.051003869622945786,
- -0.013226003386080265,
- 0.012920981273055077,
- 0.03299817070364952,
- 0.07063660770654678,
- -0.00785661768168211,
- 0.01849779672920704,
- 0.037020955234766006,
- -0.09847382456064224,
- -0.023731891065835953,
- 0.023542087525129318,
- 0.015650838613510132,
- 0.0913366824388504,
- -0.017648497596383095,
- 0.07300862669944763,
- 0.08876210451126099,
- -0.039561107754707336,
- -0.028042497113347054,
- 0.0709264874458313,
- 0.01518696267157793,
- -0.12931865453720093,
- 0.0712282732129097,
- 0.039395809173583984,
- -0.05375267565250397,
- 0.006933975499123335,
- -0.02716955356299877,
- 0.04026171192526817,
- 0.002654850948601961,
- 0.019448790699243546,
- 0.01959087699651718,
- 0.024434182792901993,
- 0.029660824686288834,
- -0.03157540038228035,
- 0.014111828990280628,
- -0.005546702537685633,
- 0.030302509665489197,
- -0.01393533032387495,
- -0.040975164622068405,
- -0.060292068868875504,
- -0.042311202734708786,
- 0.07403066009283066,
- -0.028730489313602448,
- 0.051663197576999664,
- 0.012332906946539879,
- 0.005777962040156126,
- -0.037499211728572845,
- 0.0719815045595169,
- 0.07675785571336746,
- -0.06560695171356201,
- 0.00855360645800829,
- 0.06605911254882812,
- 0.07838548719882965,
- -0.11792031675577164,
- 4.8834965062591584e-33,
- 0.02615170367062092,
- 0.014874819666147232,
- 0.08543785661458969,
- 0.04892636090517044,
- 0.05575135722756386,
- 0.04722961038351059,
- 0.011223646812140942,
- -0.028383534401655197,
- -0.034196414053440094,
- 0.0056958794593811035,
- -0.03815070912241936,
- -0.008874448947608471,
- 0.018352508544921875,
- 0.03725969418883324,
- 0.09100881963968277,
- 0.014086302369832993,
- 0.03529681637883186,
- -0.053571850061416626,
- -0.04141506925225258,
- -0.01944427564740181,
- -0.1352057158946991,
- 0.0579444095492363,
- -0.04546316713094711,
- 0.043355852365493774,
- -0.04406563192605972,
- -0.008452139794826508,
- 0.044685348868370056,
- 0.004217534326016903,
- 0.007234558463096619,
- -0.004092163871973753,
- 0.07131354510784149,
- -0.03749997541308403,
- -0.08829100430011749,
- -0.03546286001801491,
- -0.032181210815906525,
- 0.08042557537555695,
- 0.03538743034005165,
- -0.030825046822428703,
- 0.009221510961651802,
- 0.10361785441637039,
- -0.0298476405441761,
- 0.015295544639229774,
- 0.09466880559921265,
- 0.008120691403746605,
- -0.024290524423122406,
- 0.026889720931649208,
- -0.009331324137747288,
- 0.009724014438688755,
- -0.09609538316726685,
- 0.06747347861528397,
- -0.09569180011749268,
- 0.055055372416973114,
- -0.04113750532269478,
- -0.017955629155039787,
- 0.0022727029863744974,
- 0.04362863674759865,
- -0.02215723693370819,
- 0.0388101190328598,
- -0.035998761653900146,
- -0.014805707149207592,
- 0.03478344902396202,
- 0.006724011618643999,
- -0.02161557972431183,
- 0.01968265324831009,
- -0.03911421820521355,
- 0.018066545948386192,
- -0.010122792795300484,
- -0.02506845071911812,
- 0.01815043017268181,
- 0.07579335570335388,
- -0.017395487055182457,
- -0.08149679750204086,
- -0.07139379531145096,
- 0.04821457713842392,
- -0.06377919763326645,
- -0.09153656661510468,
- -0.15946704149246216,
- 0.03320145979523659,
- 0.002026570728048682,
- -0.08574332296848297,
- -0.0568520687520504,
- -0.04160122573375702,
- -0.03530045598745346,
- -0.02849380113184452,
- -0.025668445974588394,
- -0.018602298572659492,
- 0.08546128869056702,
- 0.02221900410950184,
- 0.017159679904580116,
- 0.021437931805849075,
- 0.06595208495855331,
- -0.053477633744478226,
- -0.020639590919017792,
- -0.0055199661292135715,
- -0.03407339006662369,
- -1.3648751462369546e-8,
- -0.01835038512945175,
- 0.06488444656133652,
- -0.022306393831968307,
- 0.027935007587075233,
- 0.03973644971847534,
- 0.0008768714033067226,
- -0.026314785704016685,
- -0.08161227405071259,
- 0.08700840175151825,
- 0.10248158872127533,
- 0.03504619002342224,
- -0.012905593030154705,
- 0.003202881198376417,
- -0.004610689822584391,
- 0.08742173761129379,
- -0.03779546543955803,
- -0.03291851282119751,
- 0.013125646859407425,
- 0.03546939045190811,
- -0.04143347963690758,
- -0.0504254475235939,
- 0.026036635041236877,
- -0.02456805668771267,
- -0.022820208221673965,
- -0.0207896176725626,
- 0.03390505909919739,
- -0.08033204078674316,
- 0.14222127199172974,
- 0.008425937034189701,
- 0.08855943381786346,
- -0.00905551202595234,
- 0.08215097337961197,
- -0.10196952521800995,
- 0.00879478920251131,
- -0.007120745722204447,
- 0.02111215889453888,
- -0.020990833640098572,
- -0.011102084070444107,
- 0.018671313300728798,
- 0.0011218177387490869,
- 0.021431874483823776,
- 0.11843203753232956,
- 0.07109376043081284,
- 0.026465672999620438,
- -0.09356328845024109,
- 0.06519711017608643,
- 0.0764090046286583,
- -0.027157772332429886,
- -0.021087976172566414,
- -0.09333602339029312,
- 0.007198582403361797,
- 0.013984997756779194,
- 0.05065552145242691,
- 0.07487162947654724,
- 0.052596308290958405,
- 0.028149208053946495,
- 0.02161302976310253,
- 0.029824720695614815,
- -0.054671838879585266,
- 0.006405877880752087,
- 0.15410633385181427,
- -0.031555209308862686,
- -0.005404098425060511,
- 0.0395989716053009
- ]
- },
- {
- "keyword": "supervisor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04753904044628143,
- 0.0387829951941967,
- 0.01091191079467535,
- 0.035413119941949844,
- 0.005802422761917114,
- -0.04246586933732033,
- 0.1260189563035965,
- -0.01270729023963213,
- -0.0662137120962143,
- -0.03708019107580185,
- -0.01576927676796913,
- -0.05967375263571739,
- -0.055209074169397354,
- 0.06207665055990219,
- -0.06176222488284111,
- 0.04661811143159866,
- 0.057511068880558014,
- 0.020161567255854607,
- 0.02262093499302864,
- -0.09610781818628311,
- -0.09275447577238083,
- -0.015518875792622566,
- -0.028732961043715477,
- 0.004954977426677942,
- -0.022190295159816742,
- 0.054080214351415634,
- -0.05536416172981262,
- 0.010271779261529446,
- -0.011193828657269478,
- -0.07661960273981094,
- -0.020533304661512375,
- -0.0623357929289341,
- -0.011565977707505226,
- -0.012569588609039783,
- 0.013669717125594616,
- 0.03876081109046936,
- 0.015013136900961399,
- 0.035978298634290695,
- -0.006328224670141935,
- 0.009123348630964756,
- 0.01080690324306488,
- 0.024826953187584877,
- -0.039688341319561005,
- -0.07740079611539841,
- -0.01590844802558422,
- 0.030936947092413902,
- 0.0116985272616148,
- 0.01689176820218563,
- -0.02528463676571846,
- -0.02232791855931282,
- -0.05538918077945709,
- -0.018986012786626816,
- 0.008264616131782532,
- 0.03447456285357475,
- 0.017344865947961807,
- -0.008507687598466873,
- 0.07199631631374359,
- -0.025677161291241646,
- 0.014681834727525711,
- 0.025202404707670212,
- -0.019713066518306732,
- -0.03747142478823662,
- -0.022543201223015785,
- -0.005328605882823467,
- 0.08376581221818924,
- -0.040289506316185,
- -0.055252302438020706,
- -0.0228729248046875,
- -0.031693294644355774,
- 0.018461761996150017,
- -0.001435378915630281,
- -0.012481126934289932,
- -0.05314365774393082,
- 0.014752388931810856,
- 0.028415119275450706,
- -0.09023261070251465,
- 0.023004822432994843,
- -0.022711478173732758,
- 0.08269739896059036,
- 0.016950422897934914,
- -0.020236212760210037,
- -0.003361346898600459,
- -0.03196117281913757,
- 0.0262520182877779,
- -0.04766697809100151,
- -0.028534747660160065,
- 0.06188514828681946,
- 0.05256536975502968,
- 0.016242079436779022,
- 0.007827692665159702,
- -0.01964634470641613,
- -0.008737734518945217,
- 0.0252519603818655,
- 0.007033703848719597,
- -0.14423711597919464,
- -0.03213844075798988,
- -0.035282064229249954,
- 0.02214762568473816,
- -0.058348365128040314,
- 0.23509807884693146,
- 0.001422697794623673,
- -0.01894315518438816,
- 0.00116175867151469,
- -0.008113893680274487,
- -0.014064137823879719,
- 0.04106610268354416,
- -0.051145125180482864,
- -0.03258512169122696,
- 0.00013501140347216278,
- -0.011705566197633743,
- -0.014004762284457684,
- 0.03060760907828808,
- -0.08152709901332855,
- 0.005665213335305452,
- 0.021302128210663795,
- 0.043694667518138885,
- -0.026566551998257637,
- 0.038240887224674225,
- -0.01472151093184948,
- 0.09545159339904785,
- 0.049380186945199966,
- 0.0011712777195498347,
- -0.01756368950009346,
- 0.06512845307588577,
- -0.06778354942798615,
- -0.028298133984208107,
- -0.021601350978016853,
- -5.049463451625803e-33,
- 0.028664277866482735,
- -0.025083385407924652,
- 0.07486338168382645,
- -0.005339195020496845,
- 0.08589212596416473,
- 0.05499973148107529,
- 0.017398735508322716,
- 0.08255963027477264,
- -0.01740940287709236,
- -0.033170636743307114,
- -0.010703852400183678,
- -0.0034944377839565277,
- 0.01649291068315506,
- -0.04117553308606148,
- -0.036496344953775406,
- 0.0025086381938308477,
- 0.058974090963602066,
- 0.09275483340024948,
- -0.042860642075538635,
- 0.0019552328158169985,
- -0.04622812941670418,
- 0.04304118826985359,
- -0.08263889700174332,
- 0.05462852865457535,
- 0.016268370673060417,
- -0.03499437868595123,
- -0.0035305293276906013,
- -0.01907077059149742,
- 0.1000172570347786,
- 0.0415046252310276,
- -0.01253112405538559,
- 0.047160521149635315,
- -0.02892458252608776,
- 0.011565033346414566,
- -0.0204655509442091,
- -0.032097768038511276,
- -0.006155949551612139,
- -0.11616791039705276,
- 0.02415352873504162,
- -0.08948273211717606,
- -0.035769153386354446,
- -0.0013114240719005466,
- 0.07916652411222458,
- -0.02976338192820549,
- -0.050367098301649094,
- -0.01052774302661419,
- 0.10245910286903381,
- -0.025485809892416,
- 0.01627444103360176,
- 0.10785031318664551,
- -0.05741763114929199,
- -0.06262645125389099,
- 0.05179527401924133,
- 0.02262406423687935,
- 0.0035641328431665897,
- -0.034082893282175064,
- 0.06512647122144699,
- -0.00046887953067198396,
- 0.03465113043785095,
- -0.028755424544215202,
- 0.052008576691150665,
- 0.06161370500922203,
- -0.11133651435375214,
- 0.0491182878613472,
- 0.014464575797319412,
- -0.09422034025192261,
- 0.042893990874290466,
- -0.024749109521508217,
- 0.16160044074058533,
- -0.008154932409524918,
- -0.09592749178409576,
- 0.029356708750128746,
- 0.07156017422676086,
- 0.029716596007347107,
- -0.026963165029883385,
- 0.004176754504442215,
- -0.041039738804101944,
- 0.00036108368658460677,
- -0.08479616791009903,
- 0.00041999059612862766,
- -0.050090301781892776,
- 0.017501812428236008,
- 0.009174156002700329,
- -0.040730927139520645,
- 0.02632717415690422,
- 0.048138558864593506,
- -0.02789205126464367,
- 0.02264232374727726,
- 0.09758247435092926,
- 0.11183017492294312,
- -0.07680663466453552,
- -0.0202627032995224,
- 0.09658339619636536,
- 0.12800468504428864,
- -0.07763420790433884,
- 3.457005826203496e-33,
- 0.047948114573955536,
- -0.0641532763838768,
- 0.03057757019996643,
- -0.026559051126241684,
- 0.08666185289621353,
- -0.03721470385789871,
- 0.005397430155426264,
- -0.01667650043964386,
- -0.016695821657776833,
- -0.028287509456276894,
- -0.022084081545472145,
- -0.037660516798496246,
- 0.08128245919942856,
- 0.021232692524790764,
- 0.03443312644958496,
- 0.04340503364801407,
- 0.04500182718038559,
- -0.04251221567392349,
- -0.043589185923337936,
- -0.022782599553465843,
- -0.118484728038311,
- -0.029593870043754578,
- 0.028470708057284355,
- -0.0023112292401492596,
- -0.07886122912168503,
- -0.008284704759716988,
- 0.06751558929681778,
- -0.05202163755893707,
- -0.018431372940540314,
- 0.02646537870168686,
- -0.06440284848213196,
- -0.059158001095056534,
- -0.06472161412239075,
- 0.019506949931383133,
- -0.002000314649194479,
- 0.039047788828611374,
- -0.05396901071071625,
- -0.005588917061686516,
- -0.049828752875328064,
- 0.058506112545728683,
- 0.04161808639764786,
- 0.03882615640759468,
- 0.04869427531957626,
- 0.07144545763731003,
- -0.015645651146769524,
- -0.02358344942331314,
- -0.03848611190915108,
- -0.001767969923093915,
- -0.053599029779434204,
- 0.0016390644013881683,
- -0.15159955620765686,
- 0.020380042493343353,
- -0.03527895361185074,
- -0.04240122810006142,
- -0.04690737649798393,
- 0.016956014558672905,
- 0.025039317086338997,
- -0.016830306500196457,
- -0.03485134616494179,
- 0.028329120948910713,
- 0.008977566845715046,
- -0.028462333604693413,
- 0.01158915925770998,
- 0.09770814329385757,
- -0.00923130102455616,
- 0.005705822724848986,
- -0.050516583025455475,
- 0.010087527334690094,
- 0.017764639109373093,
- 0.021712949499487877,
- 0.02172323875129223,
- 0.05595087632536888,
- -0.03942061588168144,
- 0.0717163160443306,
- -0.02619723603129387,
- -0.05285158380866051,
- -0.08862590789794922,
- -0.062480855733156204,
- -0.01737622544169426,
- -0.027077604085206985,
- -0.0379197858273983,
- -0.027666306123137474,
- 0.02453693374991417,
- 0.03438034653663635,
- -0.007048584520816803,
- 0.024499639868736267,
- -0.007527044974267483,
- 0.060908932238817215,
- 0.016513392329216003,
- -0.04557879641652107,
- 0.0627911239862442,
- -0.02188223972916603,
- -0.03863802179694176,
- 0.05587894469499588,
- 0.014249974861741066,
- -1.1529131427323591e-8,
- -0.041600391268730164,
- 0.017152508720755577,
- -0.009152623824775219,
- -0.04732365161180496,
- 0.09735841304063797,
- -0.03931405022740364,
- -0.010593220591545105,
- -0.06306865066289902,
- 0.07388269156217575,
- 0.05988062918186188,
- 0.0268058143556118,
- -0.03927294537425041,
- -0.0053737047128379345,
- -0.011991514824330807,
- 0.1602727770805359,
- -0.025360234081745148,
- 0.024187609553337097,
- 0.05693250522017479,
- 0.003967998083680868,
- 0.05552128702402115,
- 0.042964134365320206,
- 0.029962360858917236,
- -0.03237638995051384,
- 0.04734925180673599,
- -0.048154931515455246,
- 0.0064016967080533504,
- -0.03599490597844124,
- 0.1296444982290268,
- -0.02419252321124077,
- 0.1418800950050354,
- 0.008672728203237057,
- 0.060259923338890076,
- -0.053949542343616486,
- -0.04026954621076584,
- 0.015442288480699062,
- -0.02325555682182312,
- -0.00051560637075454,
- -0.07147563248872757,
- 0.02296985685825348,
- -0.0066552311182022095,
- 0.023157421499490738,
- 0.05955793336033821,
- 0.051068808883428574,
- -0.00022016318689566106,
- -0.0034348247572779655,
- 0.03869151324033737,
- 0.059772782027721405,
- -0.08750038594007492,
- -0.007013979833573103,
- -0.06832271069288254,
- -0.016696782782673836,
- -0.011647656559944153,
- 0.03457827866077423,
- 0.05839129909873009,
- 0.08575661480426788,
- -0.051469624042510986,
- 0.003594420151785016,
- -0.05367817357182503,
- -0.1475209891796112,
- 0.026388375088572502,
- 0.12490054219961166,
- 0.03410464525222778,
- 0.07510002702474594,
- 0.03629196807742119
- ]
- },
- {
- "keyword": "coordinator",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04400757700204849,
- 0.026485126465559006,
- -0.06290167570114136,
- 0.05252699553966522,
- -0.015280766412615776,
- 0.003528439672663808,
- 0.14102981984615326,
- -0.00689271604642272,
- 0.06018560752272606,
- 0.05004018172621727,
- -0.00839462224394083,
- -0.013470059260725975,
- 0.007791994605213404,
- 0.04487966373562813,
- -0.020784227177500725,
- 0.026432527229189873,
- -0.003774859244003892,
- 0.041636429727077484,
- -0.023451855406165123,
- -0.12267754226922989,
- -0.055769216269254684,
- 0.05866697430610657,
- -0.04409846290946007,
- 0.031801700592041016,
- -0.03248964250087738,
- -0.05318567529320717,
- -0.09642251580953598,
- -0.03625328466296196,
- -0.05373522639274597,
- -0.09921856969594955,
- -0.021336834877729416,
- -0.04181024059653282,
- 0.05444004014134407,
- 0.046480562537908554,
- -0.0540180429816246,
- 0.039864473044872284,
- -0.02182084135711193,
- 0.0163064356893301,
- 0.008771548978984356,
- 0.016562193632125854,
- -0.02340531535446644,
- -0.03529098629951477,
- -0.012373537756502628,
- -0.052630845457315445,
- -0.023089146241545677,
- 0.08073588460683823,
- 0.022291645407676697,
- 0.017414415255188942,
- -0.035781413316726685,
- 0.004724516067653894,
- 0.0012065444607287645,
- -0.023285772651433945,
- -0.02560698799788952,
- 0.012665662914514542,
- 0.08373396843671799,
- 0.09098231792449951,
- -0.01583794318139553,
- -0.02659452334046364,
- 0.004373491741716862,
- 0.018066762015223503,
- 0.07363177090883255,
- -0.004283517599105835,
- -0.09785658121109009,
- 0.032698292285203934,
- 0.008794695138931274,
- -0.0948743224143982,
- 0.020665233954787254,
- 0.0018633505096659064,
- 0.05497545376420021,
- -0.08504075556993484,
- -0.001010314910672605,
- -0.033680085092782974,
- 0.019847532734274864,
- -0.04042474552989006,
- 0.10608774423599243,
- -0.03601768612861633,
- 0.07993871718645096,
- -0.04726986959576607,
- 0.06411326676607132,
- -0.06721452623605728,
- 0.04111205041408539,
- 0.027321530506014824,
- 0.0618293471634388,
- 0.037277765572071075,
- 0.009261158294975758,
- -0.02144555188715458,
- -0.027253756299614906,
- 0.06438889354467392,
- 0.05594329908490181,
- 0.027466965839266777,
- -0.02054506167769432,
- -0.049070436507463455,
- 0.016571776941418648,
- -0.06062792241573334,
- -0.027723446488380432,
- 0.10102773457765579,
- -0.04251222684979439,
- -0.06541740894317627,
- -0.08835405111312866,
- 0.25010862946510315,
- -0.04131380841135979,
- 0.04255494102835655,
- 0.00025661036488600075,
- -0.027349060401320457,
- -0.039139822125434875,
- -0.013009604066610336,
- -0.025294985622167587,
- 0.0004683037113863975,
- -0.038110584020614624,
- 0.013391558080911636,
- -0.01993807777762413,
- 0.06807337701320648,
- -0.036436937749385834,
- 0.013923699036240578,
- -0.03084169700741768,
- 0.026448417454957962,
- -0.00011427818390075117,
- 0.04544157534837723,
- -0.021192517131567,
- 0.06879585236310959,
- 0.03322916477918625,
- 0.019794819876551628,
- -0.06948737800121307,
- 0.07679381221532822,
- -0.04747755452990532,
- 0.02295750565826893,
- -0.009787555783987045,
- -4.716387494662293e-33,
- 0.03345845639705658,
- 0.04682113975286484,
- 0.039264049381017685,
- 0.03721657767891884,
- 0.006145248655229807,
- 0.05882679298520088,
- 0.0725240409374237,
- -0.04471810162067413,
- -0.060377467423677444,
- 0.017412889748811722,
- 0.05269163101911545,
- 0.01386044267565012,
- -0.053262218832969666,
- -0.03908238187432289,
- 0.009990626014769077,
- -0.0358273945748806,
- -0.02026985213160515,
- 0.13377267122268677,
- -0.08425485342741013,
- 0.016153665259480476,
- -0.030337877571582794,
- 0.08097411692142487,
- -0.06888969242572784,
- 0.0293302983045578,
- 0.03603382781147957,
- 0.026078293099999428,
- 0.003139943117275834,
- -0.023099998012185097,
- 0.033631887286901474,
- 0.001701141009107232,
- -0.002236258005723357,
- 0.028635898604989052,
- -0.01661829464137554,
- 0.03520231321454048,
- 0.02346259541809559,
- -0.04720023274421692,
- -0.07068641483783722,
- -0.09072616696357727,
- 0.014142791740596294,
- 0.0031316515523940325,
- -0.06454622000455856,
- 0.020216867327690125,
- -0.027012532576918602,
- -0.02213016338646412,
- -0.04307694360613823,
- -0.05340547859668732,
- 0.08017965406179428,
- 0.05056409165263176,
- 0.06056539714336395,
- 0.022698909044265747,
- 0.04614947736263275,
- -0.08322371542453766,
- 0.00236553349532187,
- -0.026074407622218132,
- 0.03605380654335022,
- 0.001158219645731151,
- 0.09301799535751343,
- -0.012965877540409565,
- 0.045487675815820694,
- 0.0391678512096405,
- 0.008403307758271694,
- -0.002735802670940757,
- -0.09644048660993576,
- 0.027012920007109642,
- 0.05162579193711281,
- -0.1104230135679245,
- 0.05477338656783104,
- -0.017345678061246872,
- 0.0970928892493248,
- -0.02183537930250168,
- -0.08871166408061981,
- -0.0024028574116528034,
- 0.018772993236780167,
- 0.032751258462667465,
- -0.00994066335260868,
- 0.01230623759329319,
- -0.0014680466847494245,
- 0.07599765062332153,
- -0.04473203420639038,
- 0.0140618197619915,
- 0.009655849076807499,
- -0.016933757811784744,
- 0.014479032717645168,
- 0.028528574854135513,
- -0.015272695571184158,
- -0.016297927126288414,
- -0.028377395123243332,
- 0.06358827650547028,
- 0.01039382629096508,
- 0.07618159800767899,
- -0.045175593346357346,
- 0.0509948804974556,
- 0.06476369500160217,
- 0.04496576264500618,
- -0.009478296153247356,
- 4.4111696517873165e-33,
- -0.002587393159046769,
- -0.0384952612221241,
- -0.011310538277029991,
- 0.02647172287106514,
- 0.009755955077707767,
- -0.0072900946252048016,
- -0.02465554140508175,
- -0.038144469261169434,
- -0.0794195905327797,
- -0.06569113582372665,
- 0.04063671827316284,
- -0.001854918897151947,
- -0.004997710231691599,
- -0.0004527731507550925,
- 0.011379438452422619,
- -0.011142665520310402,
- -0.007417299319058657,
- -0.07180429995059967,
- -0.012205871753394604,
- 0.03299263119697571,
- 0.018045950680971146,
- -0.037705376744270325,
- 0.008014139719307423,
- -0.07132107019424438,
- -0.027030715718865395,
- 0.002539151581004262,
- 0.015399239957332611,
- 0.08000866323709488,
- -0.04127628356218338,
- 0.03429396450519562,
- -0.05441439524292946,
- -0.09578613191843033,
- 0.02648787759244442,
- 0.04135872423648834,
- -0.02519202046096325,
- 0.051087912172079086,
- -0.035276785492897034,
- 0.041472066193819046,
- -0.059167176485061646,
- 0.06775973737239838,
- 0.07734274864196777,
- 0.014021145179867744,
- 0.046584151685237885,
- 0.08835842460393906,
- -0.009415889158844948,
- 0.015977157279849052,
- 0.007943576201796532,
- 0.025955956429243088,
- -0.029991481453180313,
- 0.047061678022146225,
- -0.15209785103797913,
- -0.024747613817453384,
- -0.07719536870718002,
- -0.09346390515565872,
- -0.02249191515147686,
- 0.09442457556724548,
- -0.001184960245154798,
- -0.042492542415857315,
- 0.03637855127453804,
- -0.07120770215988159,
- 0.07122844457626343,
- 0.04160810261964798,
- -0.023725159466266632,
- 0.08455874770879745,
- 0.031616099178791046,
- 0.05912308767437935,
- -0.011892146430909634,
- -0.012695062905550003,
- -0.04290655627846718,
- 0.06136494502425194,
- 0.03395727276802063,
- 0.0023347469978034496,
- 0.021198680624365807,
- -0.0816979855298996,
- -0.023915771394968033,
- -0.005028260871767998,
- -0.08641824126243591,
- -0.03249421715736389,
- -0.029641231521964073,
- 0.012975165620446205,
- -0.10746482759714127,
- -0.044387198984622955,
- -0.014156470075249672,
- 0.05021670088171959,
- 0.08121632784605026,
- 0.008938436396420002,
- 0.005090948659926653,
- 0.03832494467496872,
- 0.004919871222227812,
- -0.007926195859909058,
- -0.00382803613319993,
- -0.0028451140969991684,
- 0.07921051979064941,
- -0.016454508528113365,
- 0.03022180311381817,
- -1.072073274599461e-8,
- -0.06100047752261162,
- 0.029180290177464485,
- -0.07405313104391098,
- -0.05877324193716049,
- 0.05492789298295975,
- 0.003637053305283189,
- -0.023076718673110008,
- -0.058070164173841476,
- 0.04427175968885422,
- 0.14133794605731964,
- 0.030315330252051353,
- -0.041900575160980225,
- 0.014209148474037647,
- -0.045939695090055466,
- 0.13644742965698242,
- -0.04529169946908951,
- -0.015443789772689342,
- 0.04208524152636528,
- -0.04515315219759941,
- -0.016760995611548424,
- -0.018446555361151695,
- 0.06493448466062546,
- -0.016694851219654083,
- 0.04096338525414467,
- 0.01760137267410755,
- -0.0005075840163044631,
- -0.031646888703107834,
- 0.20069783926010132,
- -0.010343559086322784,
- 0.1104697734117508,
- 0.036503858864307404,
- -0.003964967094361782,
- -0.047592680901288986,
- -0.06280827522277832,
- -0.04039575904607773,
- 0.011052753776311874,
- -0.07057696580886841,
- -0.08977904170751572,
- 0.08347724378108978,
- -0.0142676318064332,
- 0.0356808602809906,
- 0.11473081260919571,
- 0.004502780269831419,
- 0.04094890505075455,
- -0.0062727187760174274,
- 0.0169080700725317,
- 0.06513459235429764,
- -0.018743598833680153,
- 0.01048904936760664,
- -0.058445610105991364,
- -0.013843047432601452,
- -0.017796672880649567,
- 0.022749613970518112,
- 0.04163727909326553,
- 0.009265757165849209,
- 0.026214489713311195,
- 0.011225533671677113,
- -0.0564846433699131,
- -0.04425442963838577,
- 0.019594477489590645,
- -0.05260932072997093,
- 0.02050960250198841,
- 0.028689762577414513,
- -0.06933391839265823
- ]
- },
- {
- "keyword": "ceo",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.017958685755729675,
- 0.018217451870441437,
- 0.04671860858798027,
- 0.013460678979754448,
- -0.019223496317863464,
- -0.06243845447897911,
- 0.11995889991521835,
- 0.049606628715991974,
- 0.06906555593013763,
- 0.02385162189602852,
- -0.0019592316821217537,
- -0.012646941468119621,
- -0.02918553352355957,
- 0.023055939003825188,
- -0.07532219588756561,
- 0.05455108731985092,
- 0.02877819910645485,
- 0.07654352486133575,
- -0.0712699145078659,
- -0.12317099422216415,
- -0.03418596088886261,
- -0.06820593774318695,
- -0.05393381416797638,
- -0.022497154772281647,
- 0.021993132308125496,
- 0.04098866134881973,
- -0.054830051958560944,
- 0.05722145736217499,
- -0.0645853653550148,
- -0.10513130575418472,
- 0.000308287882944569,
- -0.1184612363576889,
- 0.07292042672634125,
- 0.005537668243050575,
- -0.0485660582780838,
- 0.05190075933933258,
- -0.014550554566085339,
- 0.026604382321238518,
- 0.02338257059454918,
- -0.05461706221103668,
- 0.06430508941411972,
- -0.05150891840457916,
- -0.044689424335956573,
- -0.06822667270898819,
- 0.009118238463997841,
- 0.03889957815408707,
- 0.0336376391351223,
- 0.016416534781455994,
- -0.010475538671016693,
- 0.03174507990479469,
- -0.04268771782517433,
- -0.07255767285823822,
- -0.005934572778642178,
- -0.03236909955739975,
- 0.04821138083934784,
- 0.017674922943115234,
- -0.008168558590114117,
- -0.044667623937129974,
- 0.06744924932718277,
- -0.04979593679308891,
- -0.0006877261912450194,
- -0.04228098317980766,
- -0.04913059249520302,
- 0.08711592853069305,
- 0.15981116890907288,
- -0.031798720359802246,
- 0.026777954772114754,
- -0.02984618954360485,
- -0.09905601292848587,
- 0.00873794686049223,
- 0.06636010855436325,
- -0.047346632927656174,
- 0.0238638948649168,
- 0.004951655399054289,
- -0.025798102840781212,
- -0.0010956482728943229,
- 0.052856504917144775,
- 0.06109437718987465,
- 0.061531372368335724,
- -0.04126261919736862,
- 0.06669870018959045,
- 0.05078704282641411,
- -0.053897205740213394,
- 0.03734347224235535,
- -0.03599518537521362,
- 0.05419019237160683,
- 0.021197006106376648,
- 0.022251160815358162,
- 0.02071320079267025,
- 0.007334254682064056,
- -0.05584422126412392,
- -0.021178945899009705,
- 0.012769241817295551,
- -0.0032989485189318657,
- -0.11197293549776077,
- 0.02503741905093193,
- -0.03824174776673317,
- -0.015352308750152588,
- -0.11732976883649826,
- 0.19887885451316833,
- 0.00022847592481411994,
- 0.0610954649746418,
- -0.007123802322894335,
- -0.039859361946582794,
- -0.028569966554641724,
- -0.005032880697399378,
- 0.04705582186579704,
- 0.04601085186004639,
- -0.01579916849732399,
- 0.015160351060330868,
- -0.0626048892736435,
- 0.010812087915837765,
- -0.054676175117492676,
- -0.04458324983716011,
- -0.02523784153163433,
- -0.03393077477812767,
- -0.013492092490196228,
- 0.01552103366702795,
- 0.04792778193950653,
- -0.08530890941619873,
- 0.07853956520557404,
- 0.033719588071107864,
- -0.039977751672267914,
- 0.04230082780122757,
- -0.1051630824804306,
- -0.002430989872664213,
- -0.03390908241271973,
- -4.4179680498969e-33,
- -0.04923921078443527,
- 0.026326676830649376,
- 0.07822233438491821,
- 0.06634246557950974,
- 0.029646877199411392,
- 0.013875986449420452,
- 0.010281164199113846,
- -0.022917645052075386,
- -0.007295615971088409,
- 0.006926479283720255,
- -0.05522973835468292,
- -0.034316372126340866,
- 0.014513293281197548,
- -0.05402332544326782,
- -0.019945107400417328,
- 0.018721964210271835,
- 0.030218783766031265,
- 0.014182403683662415,
- -0.0387871079146862,
- -0.004379868507385254,
- 0.027308965101838112,
- 0.0611613504588604,
- -0.05993467941880226,
- 0.06569119542837143,
- 0.0525655671954155,
- -0.08665628731250763,
- -0.0291993860155344,
- -0.07351502031087875,
- 0.0418655164539814,
- 0.03462090343236923,
- 0.003004601923748851,
- 0.045890986919403076,
- -0.042858369648456573,
- 0.010574009269475937,
- 0.003359603462740779,
- -0.01768684946000576,
- 0.003878126386553049,
- -0.03841721639037132,
- -0.006187602411955595,
- 0.0239427350461483,
- -0.09479610621929169,
- 0.009562347084283829,
- 0.0008119451813399792,
- 0.022879667580127716,
- -0.09766007959842682,
- -0.006289791315793991,
- 0.07719425112009048,
- 0.0332397036254406,
- 0.11684741079807281,
- -0.008794985711574554,
- -0.025897089391946793,
- -0.05469688028097153,
- 0.0622476227581501,
- -0.014405437745153904,
- 0.07332092523574829,
- -0.019184255972504616,
- 0.03794267028570175,
- -0.05575842037796974,
- -0.011658841744065285,
- 0.001372205326333642,
- -0.03204585239291191,
- 0.08623684197664261,
- -0.11680445075035095,
- 0.07430765777826309,
- -0.03976772353053093,
- -0.011369351297616959,
- 0.057192131876945496,
- -0.006915491074323654,
- 0.07133626192808151,
- 0.008686607703566551,
- 0.017241651192307472,
- 0.029109008610248566,
- 0.04386691376566887,
- 0.010482309386134148,
- -0.13790397346019745,
- 0.05715176835656166,
- -0.01999131590127945,
- 0.026207920163869858,
- -0.031062457710504532,
- 0.027021221816539764,
- 0.05781135335564613,
- 0.0296331699937582,
- 0.09856308251619339,
- 0.004659566562622786,
- 0.09053055942058563,
- 0.04813447594642639,
- -0.021853163838386536,
- 0.03457466885447502,
- 0.057148028165102005,
- 0.10610227286815643,
- -0.059572719037532806,
- -0.028147466480731964,
- 0.06863687187433243,
- 0.08686289936304092,
- -0.06645473092794418,
- 3.633750218057258e-33,
- -0.031573764979839325,
- -0.022916972637176514,
- 0.0518278107047081,
- -0.004755755420774221,
- 0.043859560042619705,
- -0.019106175750494003,
- 0.0357079915702343,
- -0.02985040470957756,
- 0.021352354437112808,
- -0.002043704502284527,
- 0.0021341084502637386,
- 0.022679204121232033,
- 0.07638268917798996,
- 0.008772819302976131,
- 0.03399083763360977,
- 0.03190351650118828,
- 0.028478756546974182,
- -0.07849733531475067,
- -0.06903555244207382,
- -0.04973606765270233,
- -0.026800012215971947,
- 0.061667319387197495,
- -0.06881150603294373,
- 0.04459495469927788,
- -0.05217799171805382,
- 0.04422474279999733,
- -0.0006747012957930565,
- 0.11286001652479172,
- -0.025643881410360336,
- 0.0437016487121582,
- -0.019944002851843834,
- -0.03497353196144104,
- -0.03067781962454319,
- 0.03369023650884628,
- 0.009302549064159393,
- 0.11710894852876663,
- -0.043191201984882355,
- -0.006240557879209518,
- 0.013376360759139061,
- 0.04193359613418579,
- -0.0075215185061097145,
- 0.002467479556798935,
- 0.08391645550727844,
- 0.046490851789712906,
- 0.007544518914073706,
- 0.005338810384273529,
- -0.057064495980739594,
- -0.046584028750658035,
- -0.006583963055163622,
- 0.031069545075297356,
- -0.12982243299484253,
- -0.03458503261208534,
- -0.05020512267947197,
- 0.004765452817082405,
- 0.013474127277731895,
- 0.030179664492607117,
- -0.03575091063976288,
- 0.04370163381099701,
- 0.04830735921859741,
- -0.006036285310983658,
- 0.017877239733934402,
- -0.0034966582898050547,
- 0.050166625529527664,
- 0.08023456484079361,
- -0.042510610073804855,
- 0.06228514388203621,
- -0.005811136681586504,
- -0.019491057842969894,
- -0.08501499891281128,
- -0.022222815081477165,
- 0.04043898358941078,
- -0.058544907718896866,
- -0.14046917855739594,
- -0.06856438517570496,
- -0.023557322099804878,
- 0.05758661776781082,
- -0.11994004994630814,
- 0.037539929151535034,
- -0.026902761310338974,
- 0.033229414373636246,
- -0.0012411208590492606,
- -0.012898110784590244,
- 0.013757678680121899,
- 0.029278956353664398,
- -0.002701002173125744,
- -0.005636661779135466,
- 0.016544917598366737,
- -0.043606795370578766,
- 0.007675748784095049,
- -0.052347976714372635,
- 0.02660677768290043,
- -0.10894951224327087,
- -0.01951957866549492,
- 0.021402614191174507,
- 0.012671833857893944,
- -1.0671905137371596e-8,
- -0.04114646464586258,
- -0.0043998053297400475,
- 0.010666083544492722,
- -0.06869452446699142,
- 0.11329883337020874,
- -0.018431561067700386,
- 0.03953014314174652,
- -0.0649196058511734,
- 0.06806810200214386,
- 0.057151585817337036,
- -0.01717497780919075,
- -0.027339793741703033,
- -0.012679805979132652,
- 0.006440687458962202,
- 0.08237036317586899,
- -0.04354996234178543,
- -0.023361260071396828,
- 0.09446225315332413,
- -0.008884355425834656,
- 0.0025800757575780153,
- 0.013707318343222141,
- 0.05616525933146477,
- 0.013312991708517075,
- -0.010420416481792927,
- -0.02008100040256977,
- 0.012143144384026527,
- 0.026485133916139603,
- 0.01766444370150566,
- 0.00581919401884079,
- 0.11577105522155762,
- 0.009035326540470123,
- 0.034894295036792755,
- -0.036736831068992615,
- -0.006874169688671827,
- -0.028227558359503746,
- -0.02741686813533306,
- -0.01725456863641739,
- -0.0041257599368691444,
- 0.012991778552532196,
- -0.008484196849167347,
- 0.009021997451782227,
- 0.04384705796837807,
- 0.07629623264074326,
- 0.04069212079048157,
- -0.0512029193341732,
- 0.010627029463648796,
- -0.04806188493967056,
- -0.028433052822947502,
- -0.0018074881518259645,
- -0.05490102991461754,
- 0.00874313060194254,
- 0.05512097105383873,
- 0.03608411177992821,
- -0.006741032470017672,
- 0.013120968826115131,
- -0.15304189920425415,
- 0.04479670897126198,
- 0.00881805457174778,
- -0.09861275553703308,
- -0.01326080597937107,
- 0.06272932887077332,
- -0.06527183949947357,
- 0.07659371942281723,
- 0.008900044485926628
- ]
- },
- {
- "keyword": "cto",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04152389615774155,
- -0.0018032521475106478,
- -0.06582928448915482,
- -0.010867265053093433,
- -0.06411722302436829,
- -0.030604058876633644,
- 0.09363776445388794,
- 0.04149869084358215,
- -0.07231433689594269,
- 0.03364833816885948,
- 0.0072917272336781025,
- -0.05837779864668846,
- -0.07236582785844803,
- 0.03171781450510025,
- -0.036499664187431335,
- 0.016657909378409386,
- 0.05515768751502037,
- 0.011462666094303131,
- -0.05066853016614914,
- -0.009254492819309235,
- -0.06680256128311157,
- 0.022998560220003128,
- -0.08339547365903854,
- 0.022326340898871422,
- -0.028973011299967766,
- 0.0343688502907753,
- 0.0086202472448349,
- 0.01414914894849062,
- -0.02100035548210144,
- -0.03070014901459217,
- -0.08298865705728531,
- 0.05721420794725418,
- 0.018515408039093018,
- 0.014402269385755062,
- -0.032319240272045135,
- 0.057441677898168564,
- -0.04329872503876686,
- -0.04621483385562897,
- 0.05181323364377022,
- -0.020906422287225723,
- 0.0307008009403944,
- -0.03449349105358124,
- 0.01943155750632286,
- -0.003983689937740564,
- 0.04906769096851349,
- 0.03317422419786453,
- 0.036948200315237045,
- 0.02891615778207779,
- 0.03089285083115101,
- -0.02424621395766735,
- 0.022459834814071655,
- -0.06069880351424217,
- -0.03799540549516678,
- 0.01531012263149023,
- -0.05397016927599907,
- 0.04686547443270683,
- 0.00999450869858265,
- -0.01962335966527462,
- 0.020414963364601135,
- -0.031427618116140366,
- -0.013478025794029236,
- 0.0054367114789783955,
- -0.04280422255396843,
- 0.17162539064884186,
- 0.09679014980792999,
- 0.014587490819394588,
- -0.02861013263463974,
- 0.00751799950376153,
- -0.02996504306793213,
- -0.07912424206733704,
- 0.01966506615281105,
- 0.05263807997107506,
- 0.0638376921415329,
- 0.0015520304441452026,
- -0.009659173898398876,
- 0.06737154722213745,
- 0.021334229037165642,
- 0.018838729709386826,
- 0.10111360996961594,
- -0.033778756856918335,
- 0.07027465850114822,
- 0.07999380677938461,
- -0.022819891571998596,
- -0.0928855910897255,
- 0.06120070442557335,
- 0.04347012937068939,
- -0.01179656945168972,
- -0.022389233112335205,
- 0.05913842096924782,
- 0.06913646310567856,
- -0.004581696353852749,
- 0.06556528061628342,
- 0.05589798092842102,
- -0.04564903676509857,
- -0.06726567447185516,
- -0.060105953365564346,
- 0.04931360110640526,
- -0.02518497221171856,
- -0.0803624838590622,
- 0.15987762808799744,
- -0.005902556702494621,
- 0.11898882687091827,
- -0.0012825814774259925,
- 0.05346916243433952,
- 0.05927745997905731,
- -0.04025161638855934,
- -0.0030063821468502283,
- -0.0534023754298687,
- 0.02473112754523754,
- 0.05905573442578316,
- -0.06277354806661606,
- 0.08065906912088394,
- -0.04178207740187645,
- -0.0692773163318634,
- -0.0028901833575218916,
- 0.03283706679940224,
- -0.034080903977155685,
- -0.003179881488904357,
- 0.10749706625938416,
- -0.04134681448340416,
- -0.028443878516554832,
- -0.08876161277294159,
- -0.1323169618844986,
- -0.010338962078094482,
- -0.004631752148270607,
- -0.08660352230072021,
- 0.0099535146728158,
- -1.5630313284013793e-33,
- -0.04722428694367409,
- 0.07492771744728088,
- 0.041618410497903824,
- 0.028423907235264778,
- 0.10910040885210037,
- 0.007342088036239147,
- -0.020602189004421234,
- -0.06982900947332382,
- -0.07489807158708572,
- -0.024657733738422394,
- -0.07850100100040436,
- 0.05145076662302017,
- -0.006444700062274933,
- 0.0014775976305827498,
- 0.08231114596128464,
- 0.05000177025794983,
- 0.004255649633705616,
- 0.10754355788230896,
- -0.03734242916107178,
- -0.055848512798547745,
- -0.04591957852244377,
- 0.017874741926789284,
- -0.011480974964797497,
- 0.04618644341826439,
- -0.04066309705376625,
- 0.12502624094486237,
- -0.05509937182068825,
- -0.05437075346708298,
- -0.04869259521365166,
- 0.02717067301273346,
- -0.04494890943169594,
- 0.0774761438369751,
- 0.0228765606880188,
- 0.04854275658726692,
- -0.009187606163322926,
- -0.04668295755982399,
- -0.05766518414020538,
- -0.030187789350748062,
- 0.03472314774990082,
- 0.033151913434267044,
- -0.031461089849472046,
- -0.0075990306213498116,
- -0.06343525648117065,
- 0.002143972320482135,
- -0.03996140509843826,
- -0.09309720247983932,
- -0.011642304249107838,
- -0.04806648939847946,
- 0.013392460532486439,
- 0.005052555818110704,
- 0.015362179838120937,
- -0.011815862730145454,
- -0.12546205520629883,
- -0.0031302401330322027,
- 0.018084771931171417,
- -0.12715822458267212,
- 0.004704540129750967,
- -0.003731171600520611,
- 0.06317441165447235,
- -0.021812679246068,
- 0.05987141653895378,
- 0.06537684798240662,
- -0.0662960335612297,
- -0.000599064223933965,
- -0.09383494406938553,
- -0.04971493035554886,
- -0.025798115879297256,
- -0.06401651352643967,
- 0.13036760687828064,
- -0.02217918448150158,
- -0.015396557748317719,
- 0.004966504406183958,
- 0.08915825188159943,
- 0.01160330418497324,
- 0.0475577786564827,
- 0.0010631243931129575,
- 0.0499015748500824,
- -0.044154442846775055,
- -0.024674389511346817,
- 0.001642571180127561,
- 0.03436804190278053,
- -0.01848735101521015,
- 0.004209301434457302,
- 0.05164353922009468,
- 0.06774275749921799,
- 0.022065041586756706,
- 0.03784029185771942,
- 0.01691531389951706,
- 0.000805849558673799,
- 0.03943664953112602,
- -0.061589814722537994,
- 0.051439810544252396,
- 0.03893137723207474,
- 0.01280219852924347,
- 0.024082966148853302,
- 1.6949807529521733e-33,
- -0.005300345364958048,
- -0.037528183311223984,
- -0.007445380091667175,
- -0.01741907186806202,
- 0.0019331262446939945,
- -0.02805251069366932,
- -0.03326096013188362,
- -0.0655096024274826,
- 0.04460149258375168,
- -0.010497559793293476,
- 0.01888343319296837,
- 0.008707722648978233,
- 0.048534370958805084,
- 0.07472831755876541,
- 0.017557086423039436,
- 0.03781138360500336,
- 0.11028162389993668,
- -0.030764266848564148,
- -0.06065807864069939,
- -0.04682276397943497,
- 0.0683107003569603,
- -0.03455592319369316,
- -0.07247624546289444,
- 0.018843499943614006,
- -0.004050158895552158,
- 0.018126236274838448,
- -0.013731283135712147,
- 0.007932629436254501,
- 0.014848561026155949,
- -0.011003406718373299,
- 0.011615287512540817,
- -0.07741069048643112,
- -0.018101444467902184,
- 0.05789625272154808,
- -0.01818006858229637,
- 0.10056225210428238,
- 0.023788245394825935,
- 0.06203818693757057,
- 0.039263490587472916,
- 0.08637840300798416,
- 0.11195305734872818,
- -0.05059150606393814,
- 0.03252827003598213,
- 0.0807725042104721,
- -0.08133289217948914,
- -0.003874955466017127,
- -0.005042597185820341,
- -0.04806867241859436,
- 0.017304420471191406,
- 0.11126495152711868,
- 0.04067997634410858,
- 0.03613961860537529,
- -0.04129256680607796,
- 0.019191892817616463,
- -0.012388922274112701,
- 0.07084615528583527,
- -0.029422251507639885,
- -0.0644620731472969,
- -0.07440372556447983,
- -0.020795373246073723,
- 0.029599253088235855,
- 0.022445540875196457,
- -0.084877148270607,
- 0.026093726977705956,
- 0.0020671028178185225,
- 0.01634952798485756,
- -0.022174304351210594,
- 0.06625697761774063,
- -0.11599598824977875,
- 0.010751200839877129,
- 0.04428337886929512,
- 0.07778781652450562,
- -0.0468403659760952,
- -0.10704844444990158,
- -0.024753257632255554,
- -0.10307738184928894,
- -0.1013420820236206,
- 0.0534505620598793,
- 0.010209341533482075,
- 0.00913043413311243,
- -0.05041428282856941,
- -0.037830714136362076,
- 0.019994838163256645,
- 0.061516840010881424,
- -0.04158329218626022,
- 0.038622960448265076,
- 0.03139427676796913,
- -0.03826909884810448,
- 0.025710947811603546,
- -0.029034188017249107,
- 0.01758529618382454,
- -0.02977064996957779,
- 0.02906855009496212,
- -0.028027327731251717,
- 0.011738506145775318,
- -1.4554294658353228e-8,
- -0.025073060765862465,
- -0.015415268950164318,
- -0.023909930139780045,
- -0.025375306606292725,
- 0.11506841331720352,
- 0.06345072388648987,
- -0.013701396994292736,
- 0.025945909321308136,
- -0.006405348423868418,
- 0.004049863666296005,
- 0.07463853061199188,
- 0.001857000752352178,
- 0.032768551260232925,
- 0.01782866381108761,
- 0.057216353714466095,
- 0.04257180541753769,
- -0.10520443320274353,
- 0.02118651196360588,
- -0.01147752907127142,
- 0.009087441489100456,
- -0.019042739644646645,
- 0.02887720800936222,
- -0.0012901301961392164,
- -0.005451803095638752,
- -0.012150628492236137,
- 0.03637444227933884,
- 0.047770313918590546,
- 0.07021573185920715,
- -0.05678071454167366,
- 0.048645880073308945,
- -0.00023952846822794527,
- 0.03401396796107292,
- -0.04867519065737724,
- -0.013807661831378937,
- -0.004818710498511791,
- -0.023109089583158493,
- -0.0028937645256519318,
- -0.01117526926100254,
- -0.03762651979923248,
- -0.043019793927669525,
- -0.031518448144197464,
- 0.01735423132777214,
- 0.025366732850670815,
- 0.06121987849473953,
- -0.061036061495542526,
- 0.052842773497104645,
- 0.037231773138046265,
- -0.07489285618066788,
- -0.012209616601467133,
- -0.14142054319381714,
- -0.020192822441458702,
- 0.015675896778702736,
- 0.04996635764837265,
- 0.03284454345703125,
- 0.025085333734750748,
- -0.07663936167955399,
- 0.0776088610291481,
- 0.03673240914940834,
- -0.07727647572755814,
- 0.03296110779047012,
- 0.04273323342204094,
- -0.010053230449557304,
- 0.04765667766332626,
- -0.037527136504650116
- ]
- },
- {
- "keyword": "cfo",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04786527156829834,
- -0.04453904926776886,
- -0.02500639297068119,
- 0.08189466595649719,
- 0.05162042751908302,
- -0.027784956619143486,
- 0.03576802834868431,
- 0.036613550037145615,
- 0.01496350672096014,
- -0.01976798288524151,
- -0.03505660220980644,
- -0.03942805156111717,
- -0.06931588798761368,
- 0.018692361190915108,
- -0.05186546966433525,
- -0.03703165426850319,
- 0.026433788239955902,
- -0.010347459465265274,
- -0.08796679973602295,
- -0.055768877267837524,
- -0.051112785935401917,
- 0.0071733249351382256,
- -0.08159748464822769,
- -0.010395718738436699,
- -0.008186793886125088,
- 0.03579555079340935,
- -0.05787237733602524,
- 0.04436426982283592,
- -0.011651917360723019,
- -0.03845838084816933,
- -0.0754002183675766,
- 0.07195975631475449,
- 0.07947464287281036,
- -0.00045444563147611916,
- 0.06325186789035797,
- 0.04932818561792374,
- 0.043221134692430496,
- -0.02540946938097477,
- 0.027019508183002472,
- -0.010089203715324402,
- -0.04089275747537613,
- -0.06820671260356903,
- 0.06501853466033936,
- 0.017568105831742287,
- 0.019320592284202576,
- 0.007242756895720959,
- 0.02349572628736496,
- 0.06590607017278671,
- 0.09078148007392883,
- 0.07305613905191422,
- -0.02249791845679283,
- -0.0457182303071022,
- -0.057228926569223404,
- 0.030725084245204926,
- 0.03893086686730385,
- 0.07616257667541504,
- -0.0130165359005332,
- -0.08406753093004227,
- 0.005073823034763336,
- -0.03040711022913456,
- -0.03788082301616669,
- -0.04875227063894272,
- -0.01677939109504223,
- 0.10959561914205551,
- 0.14525474607944489,
- 0.005520713981240988,
- 0.011557633988559246,
- 0.021791504696011543,
- -0.04365526884794235,
- -0.09821881353855133,
- 0.01695426180958748,
- -0.04381683096289635,
- -0.020737597718834877,
- 0.05501673370599747,
- 0.07503964751958847,
- 0.04292973875999451,
- 0.009374738670885563,
- 0.00968876201659441,
- 0.15222187340259552,
- -0.042504679411649704,
- 0.1700945645570755,
- 0.01446740422397852,
- -0.019767574965953827,
- -0.02822931855916977,
- -0.05438852682709694,
- 0.004249561578035355,
- 0.036535680294036865,
- 0.005216284189373255,
- 0.06075484678149223,
- 0.0757300928235054,
- -0.020503023639321327,
- -0.05289217829704285,
- 0.053927212953567505,
- -0.05330372229218483,
- -0.0985020250082016,
- 0.03909974917769432,
- -0.059952326118946075,
- 0.0031145631801337004,
- -0.026060273870825768,
- 0.15820875763893127,
- -0.031054504215717316,
- 0.06531708687543869,
- -0.013272982090711594,
- -0.008242495357990265,
- -0.007439509034156799,
- -0.02348925732076168,
- 0.018898073583841324,
- 0.056060679256916046,
- 0.03702954947948456,
- 0.054821912199258804,
- -0.034345708787441254,
- 0.10337289422750473,
- -0.07915753871202469,
- -0.0441448949277401,
- -0.00916443020105362,
- 0.008938634768128395,
- 0.034531060606241226,
- -0.010354208759963512,
- 0.04066036269068718,
- 0.08919760584831238,
- -0.018508628010749817,
- 0.009334881789982319,
- -0.08585753291845322,
- -0.021304594352841377,
- -0.060652270913124084,
- -0.03304174914956093,
- -0.04117593541741371,
- -1.558247984748494e-33,
- -0.008636800572276115,
- -0.0003161756612826139,
- 0.09315899759531021,
- 0.05030156672000885,
- 0.07307758182287216,
- 0.022495539858937263,
- -0.017302943393588066,
- -0.020601702854037285,
- -0.09021962434053421,
- 0.10660098493099213,
- -0.040294308215379715,
- 0.061958860605955124,
- -0.009807201102375984,
- -0.0013886220986023545,
- 0.09273426979780197,
- -0.06164420396089554,
- -0.018573211506009102,
- 0.031787432730197906,
- -0.003303241217508912,
- 0.0011856943601742387,
- 0.0019155998015776277,
- 0.039083730429410934,
- -0.004980431403964758,
- 0.0009428916382603347,
- 0.09530629962682724,
- 0.02767685428261757,
- -0.07272998988628387,
- -0.010765530169010162,
- 0.048041462898254395,
- 0.04016915708780289,
- 0.026616740971803665,
- 0.022563304752111435,
- -0.04580553248524666,
- -0.004235194995999336,
- -0.038234155625104904,
- -0.06686396151781082,
- -0.08365985006093979,
- -0.056962765753269196,
- -0.032539915293455124,
- -0.01936628296971321,
- -0.050770048052072525,
- 0.02300315722823143,
- -0.10100891441106796,
- 0.052574168890714645,
- -0.05068494379520416,
- -0.040355488657951355,
- -0.0268698763102293,
- -0.03149912506341934,
- 0.11258608847856522,
- -0.031584061682224274,
- 0.018265314400196075,
- 0.02371007576584816,
- -0.0598113052546978,
- -0.0735420510172844,
- 0.05880464240908623,
- -0.06789051741361618,
- 0.028636543080210686,
- -0.02517222985625267,
- 0.005514947231858969,
- -0.026672599837183952,
- -0.01568017154932022,
- 0.0999661386013031,
- -0.1454826444387436,
- -0.00858383346349001,
- -0.06699717789888382,
- -0.0009102248004637659,
- -0.02844994142651558,
- -0.00033413193887099624,
- 0.07995425909757614,
- -0.026306601241230965,
- -0.044193729758262634,
- -0.03754245117306709,
- 0.01075433474034071,
- 0.08200716972351074,
- 0.0031067258678376675,
- -0.013398295268416405,
- 0.0421183817088604,
- 0.004909381736069918,
- -0.06131299212574959,
- -0.04319864511489868,
- -0.006726170890033245,
- 0.016554441303014755,
- 0.0076848422177135944,
- 0.10433216392993927,
- 0.03445233777165413,
- 0.0616118386387825,
- -0.02072967402637005,
- 0.023346440866589546,
- -0.004485244397073984,
- -0.02308610826730728,
- -0.04680534079670906,
- 0.019156131893396378,
- 0.1320992112159729,
- 0.04298025742173195,
- -0.022670313715934753,
- 5.725806809738957e-34,
- -0.021896639838814735,
- -0.04667148366570473,
- -0.017661461606621742,
- -0.04423980787396431,
- -0.026560841128230095,
- -0.010375129990279675,
- -0.021446526050567627,
- -0.05175572261214256,
- 0.03103378415107727,
- 0.011855936609208584,
- 0.01135841105133295,
- 0.03369729593396187,
- 0.02775830216705799,
- -0.015879880636930466,
- -0.022473080083727837,
- 0.031980060040950775,
- 0.026176685467362404,
- -0.07585230469703674,
- -0.05837688967585564,
- -0.0407719723880291,
- 0.044290941208601,
- -0.027462394908070564,
- 0.07037607580423355,
- -0.019079729914665222,
- -0.02368292212486267,
- 0.015378028154373169,
- -0.043382514268159866,
- 0.055145978927612305,
- -0.0002466974838171154,
- 0.07875753194093704,
- -0.025636306032538414,
- -0.027960211038589478,
- 0.0019384443294256926,
- 0.0943596363067627,
- -0.029321614652872086,
- -0.011049535125494003,
- -0.06974461674690247,
- 0.06138795241713524,
- 0.021232588216662407,
- 0.04453250765800476,
- 0.02390970103442669,
- 0.002599935047328472,
- -0.02130395732820034,
- 0.04323158413171768,
- -0.01350247673690319,
- 0.02048528380692005,
- 0.009311907924711704,
- -0.10811188071966171,
- 0.03910776227712631,
- 0.04219049960374832,
- -0.05790996551513672,
- 0.009099004790186882,
- -0.10030847042798996,
- 0.0058950684033334255,
- -0.005098305176943541,
- 0.06936902552843094,
- 0.038891151547431946,
- -0.058776143938302994,
- 0.0018602857599034905,
- -0.012821477837860584,
- 0.04428059235215187,
- 0.062367651611566544,
- -0.005539439618587494,
- 0.03675344958901405,
- 0.04765892028808594,
- 0.08849714696407318,
- -0.046063538640737534,
- 0.004110024776309729,
- -0.0805559903383255,
- 0.004948461893945932,
- 0.055074356496334076,
- 0.03772541508078575,
- -0.048034489154815674,
- 0.02264154702425003,
- -0.03215403854846954,
- 0.00010732053488027304,
- -0.05532651022076607,
- 0.029155518859624863,
- -0.0689358189702034,
- 0.11724568158388138,
- -0.06365534663200378,
- 0.002159596187993884,
- -0.09037379920482635,
- 0.13296756148338318,
- -0.01350037008523941,
- -0.035707905888557434,
- 0.10196756571531296,
- -0.04591269791126251,
- 0.03356792405247688,
- 0.04002910852432251,
- -0.007041548378765583,
- -0.01634879782795906,
- 0.0665116012096405,
- -0.03354860097169876,
- 0.0010857554152607918,
- -1.190753984303683e-8,
- -0.11000116169452667,
- -0.014560469426214695,
- 0.018779143691062927,
- -0.017747977748513222,
- 0.03878723084926605,
- 0.004065754823386669,
- -0.016577482223510742,
- -0.1212000921368599,
- 0.04245573282241821,
- 0.007447340991348028,
- 0.024624932557344437,
- 0.058493826538324356,
- -0.004027094691991806,
- -0.013161803595721722,
- 0.06297703832387924,
- -0.023787496611475945,
- -0.08598129451274872,
- 0.03163004666566849,
- -0.023150626569986343,
- -0.004477165173739195,
- -0.006847148295491934,
- 0.03718338534235954,
- 0.016849519684910774,
- 0.03250923007726669,
- -0.022248297929763794,
- -0.052890755236148834,
- 0.02515675313770771,
- 0.04322071745991707,
- -0.01638021692633629,
- 0.08669695258140564,
- -0.026034537702798843,
- 0.06659449636936188,
- -0.023816043511033058,
- -0.05075383558869362,
- -0.10150155425071716,
- -0.014620816335082054,
- -0.0017399259377270937,
- -0.08996626734733582,
- -0.07037913054227829,
- -0.00396935036405921,
- -0.01276269368827343,
- 0.029240652918815613,
- 0.0470135472714901,
- 0.010394098237156868,
- 0.04950603097677231,
- -0.0056345597840845585,
- 0.029158104211091995,
- -0.026247568428516388,
- -0.021472321823239326,
- -0.09017631411552429,
- 0.06788503378629684,
- 0.016200421378016472,
- -0.008899140171706676,
- 0.07926097512245178,
- 0.02926010638475418,
- -0.0775015652179718,
- -0.04176975041627884,
- 0.018490243703126907,
- -0.04311871901154518,
- -0.009042352437973022,
- -0.04249730706214905,
- -0.02627674862742424,
- 0.08660776913166046,
- 0.0008575877291150391
- ]
- },
- {
- "keyword": "coo",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.024554090574383736,
- 0.04004140943288803,
- -0.04666776955127716,
- -0.010625378228724003,
- -0.03576364740729332,
- -0.10631183534860611,
- 0.11499789357185364,
- -0.005551882553845644,
- 0.03318106755614281,
- 0.02447260357439518,
- 0.04646000266075134,
- -0.06092924624681473,
- -0.08049014955759048,
- 0.029654482379555702,
- -0.03862178698182106,
- -0.0172126442193985,
- 0.04633447527885437,
- -0.029667414724826813,
- -0.07111858576536179,
- -0.08321365714073181,
- -0.10173164308071136,
- 0.04445626959204674,
- -0.12696917355060577,
- 0.03942013159394264,
- 0.015961796045303345,
- 0.03664067015051842,
- 0.0011900728568434715,
- 0.09299685806035995,
- -0.019250361248850822,
- -0.01347376685589552,
- -0.10049451887607574,
- 0.16434402763843536,
- 0.007133012171834707,
- -0.0048163048923015594,
- -0.050689615309238434,
- -0.07685955613851547,
- 0.022985022515058517,
- -0.04803786426782608,
- -0.0005049308529123664,
- 0.07039206475019455,
- -0.0007854567957110703,
- -0.004020027816295624,
- -0.02703789435327053,
- 0.04876021668314934,
- 0.013970867730677128,
- 0.01757635362446308,
- 0.04169347137212753,
- -0.0620303601026535,
- 0.10369020700454712,
- 0.010327541269361973,
- -0.02277964912354946,
- 0.018472084775567055,
- -0.09961194545030594,
- -0.10132574290037155,
- -0.04817763343453407,
- 0.08349181711673737,
- -0.028753623366355896,
- -0.03070703148841858,
- 0.08977597206830978,
- -0.0470648892223835,
- -0.011744528077542782,
- -0.014850909821689129,
- -0.051767945289611816,
- 0.13689573109149933,
- 0.05067778751254082,
- -0.010421455837786198,
- 0.04310319945216179,
- 0.027670735493302345,
- -0.09180068224668503,
- 0.04411330074071884,
- 0.037951406091451645,
- 0.004422339145094156,
- -0.00869582686573267,
- 0.01443859376013279,
- 0.019863100722432137,
- 0.006576146464794874,
- 0.05044928938150406,
- 0.008978105150163174,
- 0.054761528968811035,
- -0.04610908776521683,
- -0.023671330884099007,
- 0.028088031336665154,
- 0.009540176950395107,
- -0.01400151476264,
- -0.007295044604688883,
- 0.0555543452501297,
- 0.059691257774829865,
- -0.06355705857276917,
- -0.020469117909669876,
- -0.03893059864640236,
- -0.05128715932369232,
- 0.030750567093491554,
- 0.06382366269826889,
- -0.03117276355624199,
- -0.028724025934934616,
- -0.05200246721506119,
- -0.022798575460910797,
- 0.007507294416427612,
- -0.07293886691331863,
- 0.1347612589597702,
- -0.0013909379485994577,
- 0.03483882173895836,
- -0.007398648653179407,
- 0.011678812094032764,
- 0.0599871426820755,
- 0.00960657186806202,
- -0.0361209362745285,
- 0.06070375069975853,
- 0.13156035542488098,
- 0.056361064314842224,
- -0.08323079347610474,
- -0.03230055049061775,
- -0.00387158733792603,
- -0.01431894488632679,
- -0.019417526200413704,
- 0.031040184199810028,
- 0.0633736327290535,
- 0.06018504500389099,
- 0.050569649785757065,
- -0.01568135805428028,
- 0.01901111751794815,
- -0.029881546273827553,
- -0.06685976684093475,
- 0.024236835539340973,
- 0.0008204558398574591,
- -0.05457190424203873,
- 0.004632782656699419,
- -7.878062120165197e-34,
- -0.016489561647176743,
- -0.0028837884310632944,
- 0.06032969430088997,
- -0.018754007294774055,
- 0.038671597838401794,
- -0.02573798969388008,
- -0.044159192591905594,
- -0.03515129163861275,
- -0.04975888878107071,
- -0.035704005509614944,
- -0.06757001578807831,
- 0.01836405321955681,
- -0.03737052157521248,
- -0.00540531799197197,
- 0.0635010227560997,
- 0.07514334470033646,
- 0.019460134208202362,
- 0.08688145875930786,
- 0.002137673320248723,
- 0.04751494526863098,
- -0.009839652106165886,
- -0.018481899052858353,
- 0.03411811590194702,
- -0.020067809149622917,
- -0.07669362425804138,
- 0.04168073460459709,
- 0.016895262524485588,
- -0.03550604730844498,
- -0.03790298104286194,
- 0.023790864273905754,
- 0.00005407181379268877,
- 0.04537125676870346,
- -0.017790205776691437,
- -0.0256387647241354,
- 0.019940398633480072,
- -0.03292897716164589,
- -0.020974507555365562,
- -0.03593063727021217,
- -0.044377271085977554,
- 0.039139535278081894,
- -0.010592693462967873,
- -0.04476024955511093,
- -0.06384062021970749,
- 0.0525810681283474,
- 0.0012764043640345335,
- 0.07470044493675232,
- 0.013772297650575638,
- -0.0669483095407486,
- 0.02399805188179016,
- -0.031089406460523605,
- -0.05420058220624924,
- 0.03374895453453064,
- -0.14583073556423187,
- 0.04663662612438202,
- -0.0031275469809770584,
- -0.07047554105520248,
- 0.04862826317548752,
- -0.012310937978327274,
- 0.03601707145571709,
- -0.055431682616472244,
- -0.024349994957447052,
- 0.052368730306625366,
- -0.029950173571705818,
- -0.005697491113096476,
- -0.07349198311567307,
- -0.04959004744887352,
- -0.013288927264511585,
- 0.028172198683023453,
- 0.023688750341534615,
- 0.03561960905790329,
- 0.007548359222710133,
- 0.00659926375374198,
- -0.023555539548397064,
- 0.012296020053327084,
- 0.0030707265250384808,
- -0.020491760224103928,
- 0.015649346634745598,
- 0.038404207676649094,
- -0.0516769215464592,
- -0.031332843005657196,
- 0.1039755791425705,
- -0.06723097711801529,
- -0.019466422498226166,
- 0.04432602971792221,
- 0.09470394998788834,
- -0.018008867278695107,
- -0.04189417511224747,
- -0.06845207512378693,
- -0.07585445046424866,
- 0.03990147262811661,
- -0.05884417146444321,
- 0.08300327509641647,
- 0.04265471547842026,
- -0.02730736881494522,
- -0.033514659851789474,
- -1.1948168835970395e-34,
- -0.006921716500073671,
- -0.05168983340263367,
- -0.013849405571818352,
- -0.02241203747689724,
- 0.027032414451241493,
- 0.023381251841783524,
- 0.006188781466335058,
- -0.021768124774098396,
- 0.03344020992517471,
- 0.05177181214094162,
- 0.016362296417355537,
- -0.044533874839544296,
- 0.08496915549039841,
- 0.02051522023975849,
- -0.0027787843719124794,
- 0.0035023035015910864,
- 0.047646038234233856,
- 0.028474858030676842,
- -0.04850998893380165,
- -0.01782231591641903,
- 0.04873460531234741,
- -0.019459854811429977,
- -0.0025331410579383373,
- 0.002013819757848978,
- -0.044831451028585434,
- 0.025323351845145226,
- -0.020304342731833458,
- 0.011158089153468609,
- 0.018180932849645615,
- 0.03567611426115036,
- 0.08034563064575195,
- -0.08066470175981522,
- -0.05476414039731026,
- -0.008893630467355251,
- 0.017216099426150322,
- 0.09332332760095596,
- -0.07502481341362,
- 0.012792033143341541,
- 0.05491586774587631,
- 0.03282707929611206,
- -0.012448958121240139,
- -0.04518379271030426,
- 0.1364627480506897,
- -0.01408418919891119,
- 0.0071904584765434265,
- -0.007667153142392635,
- 0.058725450187921524,
- -0.037867508828639984,
- 0.021329699084162712,
- 0.12587031722068787,
- -0.09131628274917603,
- 0.020221928134560585,
- -0.06202517822384834,
- -0.09750223904848099,
- -0.017719052731990814,
- -0.012095488607883453,
- -0.021993931382894516,
- -0.02582291141152382,
- 0.008166760206222534,
- -0.01656355708837509,
- -0.005514884367585182,
- 0.03497963398694992,
- -0.12796194851398468,
- -0.003108636010438204,
- 0.04255622252821922,
- 0.035878736525774,
- -0.010624517686665058,
- 0.034219857305288315,
- -0.08719798177480698,
- 0.026656528934836388,
- 0.07561413943767548,
- 0.01836356334388256,
- -0.0734158381819725,
- 0.035924576222896576,
- -0.07419967651367188,
- -0.04677816852927208,
- -0.07329721003770828,
- 0.059642694890499115,
- -0.029154259711503983,
- 0.004328519571572542,
- -0.13154062628746033,
- -0.02153681218624115,
- 0.03749004378914833,
- 0.11621863394975662,
- -0.012482302263379097,
- 0.051779791712760925,
- -0.04510728269815445,
- 0.027814025059342384,
- 0.006293801590800285,
- -0.018476929515600204,
- 0.018790490925312042,
- -0.005983233917504549,
- 0.12218110263347626,
- -0.014962518587708473,
- 0.018740393221378326,
- -1.6113805401118952e-8,
- 0.006829242222011089,
- 0.029564740136265755,
- 0.05777791142463684,
- -0.0015646867686882615,
- 0.11348920315504074,
- 0.08102907985448837,
- -0.003313775174319744,
- -0.08284318447113037,
- 0.007100274786353111,
- 0.05754430592060089,
- 0.11146119236946106,
- -0.07296658307313919,
- 0.018652139231562614,
- 0.10879078507423401,
- -0.011786777526140213,
- 0.015146348625421524,
- -0.09357161074876785,
- 0.02373540960252285,
- 0.021375348791480064,
- -0.03427620604634285,
- -0.033723119646310806,
- 0.01858556643128395,
- -0.03619937598705292,
- 0.05135341361165047,
- -0.025709424167871475,
- 0.047282371670007706,
- -0.011042259633541107,
- 0.10731319338083267,
- -0.017520533874630928,
- 0.029240170493721962,
- -0.010335668921470642,
- 0.017400521785020828,
- -0.000999642419628799,
- -0.011729064397513866,
- 0.0143417464569211,
- 0.021565191447734833,
- -0.0344679020345211,
- -0.023307152092456818,
- 0.014077273197472095,
- -0.0026443914975970984,
- -0.0621185377240181,
- 0.09810982644557953,
- 0.017727835103869438,
- 0.033046212047338486,
- -0.08306055516004562,
- 0.021727539598941803,
- 0.06483162939548492,
- -0.023007014766335487,
- -0.03826715424656868,
- -0.05652625858783722,
- -0.02495480515062809,
- -0.03008119948208332,
- 0.06302180886268616,
- 0.08014912903308868,
- 0.061354268342256546,
- -0.01361559797078371,
- 0.0532730408012867,
- -0.007634883746504784,
- -0.042436107993125916,
- 0.06678864359855652,
- 0.11813069134950638,
- -0.03943699598312378,
- 0.0644855722784996,
- -0.004674538504332304
- ]
- },
- {
- "keyword": "vp",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.042756956070661545,
- 0.0440291203558445,
- -0.0008954746299423277,
- -0.038649048656225204,
- 0.02313530631363392,
- 0.039442405104637146,
- 0.021042820066213608,
- 0.015720529481768608,
- 0.03296906501054764,
- -0.002935835625976324,
- -0.010440181940793991,
- 0.01576387695968151,
- 0.06437437981367111,
- 0.029276922345161438,
- 0.0335453599691391,
- -0.04190569743514061,
- 0.04264064505696297,
- -0.004626727197319269,
- 0.009615063667297363,
- -0.048730529844760895,
- -0.08762972801923752,
- -0.052602771669626236,
- 0.0024353221524506807,
- -0.06914780288934708,
- -0.02599235624074936,
- 0.05159939453005791,
- -0.03709762915968895,
- 0.01583792269229889,
- 0.024843711405992508,
- -0.08920672535896301,
- 0.006898488383740187,
- -0.08275919407606125,
- -0.04385969415307045,
- 0.06371796876192093,
- -0.033182524144649506,
- 0.029934044927358627,
- -0.0802830308675766,
- -0.03220082074403763,
- -0.011752191931009293,
- 0.09021026641130447,
- 0.013989252969622612,
- -0.062339261174201965,
- -0.03341488912701607,
- -0.027286235243082047,
- 0.019719993695616722,
- 0.05011483281850815,
- 0.028539137914776802,
- 0.00749044306576252,
- 0.05022570118308067,
- -0.08097930997610092,
- 0.0453278087079525,
- -0.04276924207806587,
- 0.027493221685290337,
- 0.005542976316064596,
- -0.04134656488895416,
- 0.041355330497026443,
- -0.025930212810635567,
- -0.02937556989490986,
- 0.002707874169573188,
- -0.03052946925163269,
- 0.039289623498916626,
- 0.009238804690539837,
- -0.08892521262168884,
- 0.017144767567515373,
- -0.03134626895189285,
- -0.02071109414100647,
- 0.05745985358953476,
- 0.0845041498541832,
- 0.006527316756546497,
- -0.0033110189251601696,
- -0.0568029023706913,
- 0.0543103888630867,
- -0.00546937296167016,
- -0.002931298455223441,
- -0.0054520247504115105,
- -0.04191315919160843,
- 0.06445924937725067,
- -0.0006325045833364129,
- 0.09995297342538834,
- -0.04485552757978439,
- 0.08570412546396255,
- 0.02526940405368805,
- -0.15961423516273499,
- -0.02908676490187645,
- 0.01958353817462921,
- 0.024480493739247322,
- 0.05685590207576752,
- -0.0004508047131821513,
- 0.027913514524698257,
- -0.0002656086871866137,
- -0.027167610824108124,
- 0.017250828444957733,
- 0.08333755284547806,
- 0.03724134340882301,
- -0.019246695563197136,
- 0.0007746887858957052,
- 0.01950475201010704,
- -0.019103746861219406,
- -0.03970082476735115,
- 0.23268352448940277,
- 0.029121406376361847,
- 0.01460776012390852,
- -0.041644107550382614,
- -0.008880233392119408,
- 0.029537323862314224,
- 0.01872428134083748,
- -0.027256082743406296,
- 0.11281800270080566,
- 0.03752635791897774,
- 0.024456804618239403,
- -0.10190209746360779,
- 0.00784361083060503,
- 0.021812334656715393,
- -0.005985842552036047,
- -0.011913172900676727,
- -0.02930406481027603,
- -0.09184233844280243,
- 0.004216236062347889,
- -0.0006208432023413479,
- 0.03258391469717026,
- 0.008668332360684872,
- 0.027941616252064705,
- -0.038940444588661194,
- 0.005243872758001089,
- -0.0899488627910614,
- -0.033774569630622864,
- 0.05828888341784477,
- -5.170195905004868e-33,
- -0.025071801617741585,
- -0.012497181072831154,
- 0.06394381076097488,
- -0.044213615357875824,
- 0.02152504213154316,
- 0.17619715631008148,
- -0.04545649513602257,
- -0.0388333797454834,
- -0.048708271235227585,
- 0.025729557499289513,
- -0.01524442620575428,
- -0.011451282538473606,
- 0.0670076534152031,
- 0.03818869590759277,
- 0.012548040598630905,
- 0.03692818060517311,
- 0.042844854295253754,
- 0.0693301260471344,
- 0.045568980276584625,
- -0.05382757633924484,
- -0.04228084906935692,
- 0.05260045453906059,
- 0.05427287146449089,
- 0.07241233438253403,
- 0.01004132628440857,
- -0.05247369408607483,
- 0.004990024026483297,
- 0.003948726691305637,
- 0.08768825232982635,
- 0.025913236662745476,
- 0.024463238194584846,
- -0.029434122145175934,
- -0.05498048663139343,
- 0.07788550853729248,
- -0.02093230001628399,
- 0.013127235695719719,
- 0.0019484709482640028,
- -0.07672089338302612,
- 0.029012832790613174,
- -0.04719649627804756,
- -0.0026269101072102785,
- 0.036563172936439514,
- -0.06709364056587219,
- 0.0011399331269785762,
- -0.025566093623638153,
- 0.03553986921906471,
- 0.08689825236797333,
- 0.041756387799978256,
- -0.03579406067728996,
- -0.0005799109931103885,
- -0.04065699502825737,
- 0.030787242576479912,
- -0.10304637253284454,
- -0.007567830849438906,
- -0.05131798982620239,
- 0.012518377043306828,
- 0.03580445796251297,
- 0.00848986767232418,
- -0.01938009448349476,
- -0.06104256957769394,
- 0.02752016671001911,
- 0.11715573072433472,
- -0.021396538242697716,
- -0.04054757580161095,
- -0.025364279747009277,
- -0.040376290678977966,
- -0.08442647010087967,
- -0.007220599800348282,
- 0.05032828077673912,
- -0.04698668420314789,
- -0.03430948406457901,
- -0.02854131907224655,
- 0.08334812521934509,
- 0.026435159146785736,
- -0.0036114563699811697,
- -0.022012626752257347,
- -0.048077065497636795,
- 0.038355790078639984,
- -0.0005224494962021708,
- 0.06184539198875427,
- -0.15536944568157196,
- 0.06469939649105072,
- 0.06697481870651245,
- 0.01803548075258732,
- 0.0026979614049196243,
- 0.04021002724766731,
- -0.026342298835515976,
- -0.0330670140683651,
- 0.05840596929192543,
- 0.05870160087943077,
- -0.07187686115503311,
- -0.029967285692691803,
- 0.10212704539299011,
- 0.03595436364412308,
- -0.02322915755212307,
- 3.922597832729095e-33,
- -0.13631850481033325,
- -0.026631472632288933,
- -0.05182724446058273,
- 0.09156305342912674,
- 0.06959570199251175,
- 0.029457159340381622,
- 0.024756357073783875,
- -0.028330950066447258,
- -0.12161381542682648,
- -0.02039048634469509,
- -0.027961110696196556,
- -0.013798515312373638,
- 0.10746742784976959,
- -0.010409108363091946,
- 0.06236565113067627,
- 0.016404272988438606,
- 0.03894411772489548,
- -0.04014943540096283,
- -0.02781434915959835,
- 0.060291435569524765,
- -0.035249270498752594,
- -0.02895534783601761,
- 0.009433410130441189,
- 0.10124333202838898,
- 0.01878000982105732,
- -0.011863229796290398,
- 0.14231713116168976,
- 0.031199702993035316,
- -0.08769530057907104,
- 0.04643501341342926,
- 0.03848617896437645,
- -0.03736216947436333,
- -0.14733698964118958,
- 0.07585886120796204,
- -0.016740527004003525,
- 0.0099770063534379,
- 0.008324707858264446,
- -0.008097123354673386,
- 0.028647974133491516,
- 0.011921247467398643,
- 0.031205790117383003,
- -0.0667136013507843,
- 0.06455186754465103,
- 0.0448395200073719,
- -0.07091114670038223,
- -0.025207646191120148,
- -0.04722728952765465,
- -0.022314857691526413,
- -0.015918171033263206,
- -0.0022540923673659563,
- -0.09926673024892807,
- 0.014023544266819954,
- -0.014127829112112522,
- 0.034355394542217255,
- 0.004291764460504055,
- -0.04629457741975784,
- -0.1061149537563324,
- 0.08061085641384125,
- 0.1329791396856308,
- 0.0056955995969474316,
- 0.052748408168554306,
- 0.05804029107093811,
- 0.006673083174973726,
- 0.07302757352590561,
- -0.03900841251015663,
- -0.0073868692852556705,
- 0.020382031798362732,
- -0.00151050987187773,
- 0.04935644939541817,
- -0.05540059134364128,
- 0.031046034768223763,
- 0.06327380239963531,
- -0.08917983621358871,
- -0.03360319137573242,
- -0.04998466372489929,
- -0.024565430358052254,
- -0.028524121269583702,
- 0.011975099332630634,
- -0.059723954647779465,
- 0.008694972842931747,
- -0.011986251920461655,
- -0.025981279090046883,
- -0.04227409139275551,
- -0.07758929580450058,
- -0.009545273147523403,
- 0.006522356998175383,
- 0.03813176229596138,
- 0.003288914216682315,
- 0.033008601516485214,
- -0.0032232035882771015,
- -0.02009424939751625,
- -0.05522706359624863,
- -0.019384300336241722,
- -0.042920734733343124,
- 0.05297074466943741,
- -1.1518927145459656e-8,
- 0.06326796859502792,
- 0.006764375139027834,
- 0.06982024759054184,
- 0.01545126922428608,
- 0.01767292059957981,
- -0.004952150862663984,
- -0.043507177382707596,
- -0.037315547466278076,
- 0.007881724275648594,
- 0.04143882542848587,
- 0.05844974145293236,
- -0.08199439197778702,
- 0.030945129692554474,
- -0.04967518150806427,
- 0.029369713738560677,
- -0.03240375593304634,
- -0.012938953004777431,
- 0.12524691224098206,
- 0.0026620959397405386,
- -0.0153584536164999,
- -0.016265397891402245,
- 0.0120622543618083,
- -0.033028021454811096,
- 0.07177405804395676,
- 0.06767676025629044,
- -0.01571507565677166,
- 0.0024611265398561954,
- 0.011799465864896774,
- -0.001833154819905758,
- -0.040333133190870285,
- 0.029971817508339882,
- 0.009912566281855106,
- -0.053388264030218124,
- -0.07249941676855087,
- 0.010657847858965397,
- 0.013117478229105473,
- -0.06685371696949005,
- 0.010545973666012287,
- -0.02001945488154888,
- -0.00455885985866189,
- 0.05027219280600548,
- 0.032460641115903854,
- 0.05669940263032913,
- 0.0012392540229484439,
- -0.0833069384098053,
- 0.002426345366984606,
- 0.07220619916915894,
- -0.0699959248304367,
- 0.006230060011148453,
- -0.051422763615846634,
- -0.00764160230755806,
- -0.010353202000260353,
- 0.005372334737330675,
- 0.12054004520177841,
- 0.09196865558624268,
- -0.029592663049697876,
- -0.015185479074716568,
- 0.0028198568616062403,
- -0.09249792248010635,
- 0.045369118452072144,
- -0.0074998000636696815,
- -0.012484582141041756,
- -0.06381075829267502,
- -0.03452850505709648
- ]
- },
- {
- "keyword": "president",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.05290064215660095,
- 0.08999504894018173,
- 0.011118941940367222,
- -0.014125267043709755,
- -0.05397447943687439,
- 0.03692452609539032,
- 0.10522688925266266,
- 0.008344941772520542,
- 0.037466589361429214,
- 0.022724386304616928,
- -0.03325545787811279,
- -0.04935653880238533,
- 0.01239105872809887,
- -0.02182827703654766,
- -0.024281440302729607,
- 0.009838977828621864,
- 0.0006894203834235668,
- 0.040846943855285645,
- -0.11000292748212814,
- -0.03965309262275696,
- -0.015280669555068016,
- 0.0458303727209568,
- -0.054942552000284195,
- -0.006755974609404802,
- -0.059015125036239624,
- 0.036103904247283936,
- -0.08856553584337234,
- -0.02198656275868416,
- -0.044876012951135635,
- -0.107317253947258,
- 0.049730729311704636,
- -0.1600901335477829,
- 0.034120213240385056,
- -0.0002742446376942098,
- -0.0650336891412735,
- -0.048042114824056625,
- -0.018757475540041924,
- 0.0027699980419129133,
- 0.0730641633272171,
- -0.07000186294317245,
- -0.018756989389657974,
- -0.07137223333120346,
- -0.030598534271121025,
- -0.03433942422270775,
- 0.034797124564647675,
- 0.006728628184646368,
- 0.03993653878569603,
- 0.013145571574568748,
- 0.04350486025214195,
- 0.03711593896150589,
- 0.05197279155254364,
- 0.04273210093379021,
- -0.025577198714017868,
- 0.03771902248263359,
- 0.026909278705716133,
- -0.047363169491291046,
- -0.04790815711021423,
- -0.02329407073557377,
- 0.03438938409090042,
- -0.0041150678880512714,
- -0.019650187343358994,
- -0.02582497149705887,
- -0.04294607415795326,
- 0.0007415143772959709,
- 0.053176477551460266,
- -0.010799034498631954,
- -0.030742857605218887,
- -0.05147603154182434,
- -0.032493580132722855,
- -0.000880343490280211,
- 0.00203792960382998,
- 0.018327035009860992,
- -0.0005058152601122856,
- 0.03815525025129318,
- -0.007993782870471478,
- -0.05371503904461861,
- 0.05887509882450104,
- 0.06745962053537369,
- 0.07145126909017563,
- 0.03381700813770294,
- 0.07933498173952103,
- 0.011947985738515854,
- -0.05054692551493645,
- 0.00420379638671875,
- 0.028077956289052963,
- 0.029529763385653496,
- -0.047762226313352585,
- 0.006900137756019831,
- -0.04064898192882538,
- 0.010231616906821728,
- -0.013254398480057716,
- -0.0338648222386837,
- 0.10931286960840225,
- 0.019118573516607285,
- -0.09642023593187332,
- 0.0332951582968235,
- -0.03383253142237663,
- -0.015347232110798359,
- -0.08249958604574203,
- 0.24057869613170624,
- -0.022499410435557365,
- 0.009689177386462688,
- 0.011984582990407944,
- 0.007951219566166401,
- 0.006804715842008591,
- 0.08135624974966049,
- -0.03727356344461441,
- 0.06065919250249863,
- -0.039512671530246735,
- -0.006683290936052799,
- -0.026884526014328003,
- -0.017069045454263687,
- 0.00753964576870203,
- 0.02889169752597809,
- -0.00937484111636877,
- -0.05982517823576927,
- -0.003104718402028084,
- -0.03691620007157326,
- 0.007605307269841433,
- -0.0016926467651501298,
- 0.021203964948654175,
- 0.06932049244642258,
- -0.01751606911420822,
- 0.009673815220594406,
- -0.0735366940498352,
- -0.05893217399716377,
- 0.06720157712697983,
- -4.62710869871734e-33,
- -0.03670712932944298,
- -0.0338439866900444,
- 0.0642230287194252,
- 0.07083263993263245,
- -0.05570516735315323,
- 0.08653971552848816,
- -0.030827179551124573,
- -0.049406591802835464,
- 0.012931532226502895,
- 0.022325167432427406,
- -0.004251227248460054,
- 0.00700312340632081,
- -0.04645591601729393,
- 0.033145319670438766,
- 0.05025241896510124,
- 0.031546756625175476,
- -0.005172912497073412,
- 0.006175941787660122,
- -0.06566882133483887,
- -0.0038885099347680807,
- -0.023003512993454933,
- 0.049583952873945236,
- 0.05150146782398224,
- 0.08342120051383972,
- 0.06089424714446068,
- -0.008971838280558586,
- -0.03258226811885834,
- -0.018343476578593254,
- 0.05658924579620361,
- 0.030759206041693687,
- 0.020508138462901115,
- 0.011879497207701206,
- -0.031095346435904503,
- -0.016777554526925087,
- -0.029012424871325493,
- -0.08869387209415436,
- 0.002729720203205943,
- -0.06239427253603935,
- 0.014194844290614128,
- -0.049955062568187714,
- -0.011106274090707302,
- 0.01623775251209736,
- 0.040960945188999176,
- 0.0706934705376625,
- 0.003615468740463257,
- -0.042328596115112305,
- 0.0998077392578125,
- 0.11485609412193298,
- 0.018993649631738663,
- 0.05549163371324539,
- -0.03344123810529709,
- 0.02382342331111431,
- 0.0021281044464558363,
- -0.023436948657035828,
- -0.005891244858503342,
- -0.08627742528915405,
- 0.04146045818924904,
- -0.01781989261507988,
- -0.026398517191410065,
- -0.06318864226341248,
- -0.0019941881764680147,
- 0.06584461033344269,
- -0.04103672876954079,
- 0.1135912537574768,
- -0.030713997781276703,
- -0.036001577973365784,
- -0.028064116835594177,
- -0.07039958238601685,
- -0.0038020634092390537,
- -0.0004677659017033875,
- 0.018403450027108192,
- -0.036856796592473984,
- 0.031673554331064224,
- -0.006655218079686165,
- 0.005535529460757971,
- 0.05185423418879509,
- 0.07217354327440262,
- -0.001631447346881032,
- -0.04579498618841171,
- -0.032283343374729156,
- -0.10506045818328857,
- 0.0516134537756443,
- 0.10379903018474579,
- 0.027750615030527115,
- 0.016950765624642372,
- 0.06544267386198044,
- -0.02362515777349472,
- -0.031559426337480545,
- 0.09123460203409195,
- 0.07326720654964447,
- -0.11656788736581802,
- -0.0015037592966109514,
- 0.05160808935761452,
- 0.046025123447179794,
- -0.0013179958332329988,
- 2.2161751116396055e-33,
- -0.0499250590801239,
- 0.0021935610566288233,
- 0.017898205667734146,
- 0.043387968093156815,
- 0.07441339641809464,
- 0.01048440020531416,
- -0.018587742000818253,
- -0.0652054026722908,
- -0.07856889069080353,
- -0.03698800131678581,
- -0.029585491865873337,
- 0.013627487234771252,
- 0.08292316645383835,
- 0.07786009460687637,
- 0.03233463689684868,
- 0.007089036051183939,
- 0.06726472824811935,
- -0.0661902129650116,
- -0.08758868277072906,
- 0.019137779250741005,
- -0.10225650668144226,
- 0.04987165331840515,
- -0.04801769554615021,
- -0.05603114888072014,
- -0.04289940372109413,
- -0.033875852823257446,
- 0.02426302060484886,
- -0.018277473747730255,
- -0.041598644107580185,
- -0.030116187408566475,
- -0.0525447241961956,
- 0.018157323822379112,
- -0.04679914563894272,
- 0.009602601639926434,
- 0.02364688366651535,
- 0.13625341653823853,
- 0.051758989691734314,
- -0.10809890180826187,
- 0.028155269101262093,
- 0.020361395552754402,
- 0.08273564279079437,
- 0.000691362889483571,
- 0.006236658431589603,
- 0.09221717715263367,
- -0.056814298033714294,
- -0.005006649997085333,
- -0.10557307302951813,
- 0.04789460450410843,
- -0.06334652006626129,
- 0.00301230326294899,
- -0.11558707803487778,
- 0.018248235806822777,
- -0.019627170637249947,
- -0.02172221429646015,
- 0.006212166044861078,
- -0.004387948662042618,
- -0.04447236284613609,
- 0.023499252274632454,
- 0.06820928305387497,
- 0.05333796516060829,
- -0.06168055534362793,
- 0.005770595278590918,
- -0.0009263707906939089,
- -0.02484210394322872,
- -0.05969018116593361,
- 0.0490441769361496,
- -0.036595169454813004,
- 0.07353509962558746,
- -0.013392752036452293,
- -0.006289083044975996,
- 0.06281566619873047,
- -0.058304693549871445,
- -0.08887592703104019,
- 0.08889151364564896,
- -0.007138427346944809,
- 0.01121465303003788,
- -0.06800999492406845,
- -0.0026831815484911203,
- -0.022969510406255722,
- -0.04562923684716225,
- -0.027608778327703476,
- -0.05317675694823265,
- -0.0679076611995697,
- -0.03146674484014511,
- -0.07256046682596207,
- 0.009585210122168064,
- 0.05356186255812645,
- -0.09986967593431473,
- -0.0178606566041708,
- -0.026216860860586166,
- 0.03515968844294548,
- -0.02602745033800602,
- -0.0382988266646862,
- -0.03483039140701294,
- -0.015083509497344494,
- -1.2954858519265144e-8,
- 0.0353628508746624,
- 0.07214812189340591,
- 0.03283008188009262,
- -0.018227295950055122,
- 0.026099402457475662,
- 0.04986274614930153,
- 0.0066358232870697975,
- -0.05407736077904701,
- 0.06143125519156456,
- -0.005452951416373253,
- 0.005431859288364649,
- -0.01988103799521923,
- 0.02808808721601963,
- -0.06650136411190033,
- 0.07926709204912186,
- -0.059902843087911606,
- -0.052059855312108994,
- 0.11559409648180008,
- -0.0002192269457736984,
- 0.010719393379986286,
- -0.056589119136333466,
- 0.04361966624855995,
- 0.03732028976082802,
- -0.008142088539898396,
- 0.049487851560115814,
- -0.0027661083731800318,
- 0.020587656646966934,
- 0.0881105363368988,
- -0.04227888584136963,
- 0.10830257087945938,
- -0.0012685877736657858,
- 0.07222387939691544,
- -0.11566608399152756,
- -0.0557391531765461,
- 0.008540959097445011,
- 0.028222277760505676,
- -0.02016603946685791,
- -0.03246075659990311,
- 0.0644979253411293,
- -0.03530365228652954,
- -0.01553099974989891,
- 0.12258448451757431,
- 0.04242502152919769,
- 0.006948457099497318,
- -0.05411451309919357,
- -0.022776678204536438,
- 0.07638929784297943,
- -0.000701836368534714,
- 0.025105483829975128,
- 0.013668420724570751,
- -0.045156024396419525,
- 0.045836906880140305,
- 0.07982078939676285,
- 0.01741565577685833,
- 0.05890331789851189,
- -0.05135326087474823,
- 0.03137461468577385,
- 0.012929312884807587,
- -0.0681379958987236,
- 0.011192424222826958,
- 0.11290842294692993,
- -0.0010666631860658526,
- 0.05725724250078201,
- 0.030243709683418274
- ]
- },
- {
- "keyword": "founder",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.05798657611012459,
- 0.044844672083854675,
- -0.023248206824064255,
- 0.03700099140405655,
- -0.0700763463973999,
- -0.04439769312739372,
- 0.11975798010826111,
- 0.014978217892348766,
- -0.011470809578895569,
- 0.02651168406009674,
- 0.02366062067449093,
- -0.020813480019569397,
- 0.03843918815255165,
- -0.038163017481565475,
- -0.09656690806150436,
- 0.025436870753765106,
- -0.0416359081864357,
- 0.01842852309346199,
- -0.005935841239988804,
- -0.09122124314308167,
- -0.12205278873443604,
- -0.03777918964624405,
- -0.006114711984992027,
- 0.0012830080231651664,
- 0.053199779242277145,
- 0.07837824523448944,
- 0.02325120009481907,
- 0.031096819788217545,
- 0.06403377652168274,
- -0.1062854677438736,
- 0.003744911402463913,
- -0.08703428506851196,
- 0.0677630603313446,
- 0.03634709119796753,
- -0.05297299474477768,
- 0.021164393052458763,
- 0.08757776021957397,
- 0.01069424394518137,
- -0.060266848653554916,
- 0.003538033924996853,
- 0.005694064311683178,
- -0.03880542516708374,
- 0.031525544822216034,
- -0.01420636847615242,
- 0.003489816328510642,
- 0.05139828100800514,
- 0.0358000174164772,
- 0.025711800903081894,
- 0.037855442613363266,
- 0.03127801790833473,
- -0.023988405242562294,
- 0.000529188197106123,
- 0.04763021320104599,
- -0.050003405660390854,
- 0.04611838608980179,
- 0.016067638993263245,
- -0.015760337933897972,
- 0.04668653383851051,
- 0.03750094398856163,
- -0.06825850903987885,
- 0.07918062061071396,
- -0.012429898604750633,
- -0.06263884902000427,
- 0.05620283633470535,
- 0.07915645837783813,
- 0.01294246967881918,
- 0.009912915527820587,
- -0.014587550424039364,
- 0.022382527589797974,
- -0.004174445290118456,
- 0.041749123483896255,
- 0.010404931381344795,
- -0.011179675348103046,
- 0.07353096455335617,
- -0.019053835421800613,
- -0.030530160292983055,
- 0.0565398670732975,
- 0.04596564173698425,
- 0.006952536758035421,
- 0.03595755994319916,
- 0.031117279082536697,
- 0.012373623438179493,
- -0.026073602959513664,
- 0.09744012355804443,
- -0.014857282862067223,
- 0.036791130900382996,
- 0.012296907603740692,
- 0.03158224746584892,
- 0.049800410866737366,
- -0.04212406277656555,
- 0.010631472803652287,
- 0.025070223957300186,
- 0.00890841893851757,
- -0.03137071058154106,
- -0.06460709124803543,
- 0.038549747318029404,
- -0.04222627729177475,
- -0.029286375269293785,
- -0.08692760020494461,
- 0.23838281631469727,
- 0.005442464258521795,
- -0.010107777081429958,
- 0.010421417653560638,
- 0.016660770401358604,
- 0.061211131513118744,
- 0.03057289682328701,
- -0.016248958185315132,
- 0.046329889446496964,
- 0.00815197080373764,
- 0.015465190634131432,
- -0.037382274866104126,
- 0.004998038522899151,
- -0.037209078669548035,
- 0.04289405047893524,
- 0.0870300754904747,
- -0.01059902086853981,
- -0.03323167935013771,
- 0.05212381109595299,
- -0.010003559291362762,
- -0.06627322733402252,
- 0.03707895055413246,
- 0.05523120239377022,
- -0.08658330887556076,
- -0.017732739448547363,
- -0.08782496303319931,
- 0.01435045339167118,
- 0.0035960660316050053,
- -4.52704768083947e-33,
- -0.06237643584609032,
- 0.10662353783845901,
- 0.059463053941726685,
- 0.08498096466064453,
- 0.005747759249061346,
- 0.036433324217796326,
- 0.037641070783138275,
- -0.014673931524157524,
- -0.06736438721418381,
- 0.0008292092243209481,
- 0.027784492820501328,
- -0.006343294866383076,
- -0.01548690814524889,
- -0.04790785163640976,
- 0.0469801239669323,
- -0.0007003119681030512,
- 0.0003526982618495822,
- -0.0627654567360878,
- -0.008138570003211498,
- -0.011525173671543598,
- -0.009465949609875679,
- 0.047322388738393784,
- -0.018563522025942802,
- 0.016371482983231544,
- 0.01960265450179577,
- -0.05908466503024101,
- 0.00036343230749480426,
- -0.041228003799915314,
- 0.03106268309056759,
- 0.03085322119295597,
- 0.010470370762050152,
- -0.00659880181774497,
- -0.0920993983745575,
- -0.007593581452965736,
- 0.029018545523285866,
- -0.028937768191099167,
- -0.010420276783406734,
- -0.1316072791814804,
- -0.012900120578706264,
- -0.007445807568728924,
- -0.005046283360570669,
- 0.017849264666438103,
- 0.05178649723529816,
- -0.0252712182700634,
- -0.05600840970873833,
- -0.015177113004028797,
- 0.038651544600725174,
- 0.0030071772634983063,
- 0.13849861919879913,
- 0.01011873222887516,
- -0.05620580539107323,
- -0.058366239070892334,
- -0.028479542583227158,
- -0.004715719260275364,
- 0.014955330640077591,
- -0.05656072124838829,
- -0.04652061685919762,
- 0.027126004919409752,
- -0.034344401210546494,
- -0.013623674400150776,
- 0.002993475180119276,
- 0.06622675061225891,
- -0.10229718685150146,
- 0.11278209835290909,
- -0.07333982735872269,
- -0.0863504558801651,
- 0.055420324206352234,
- -0.038127608597278595,
- 0.023150328546762466,
- -0.018888764083385468,
- 0.07517466694116592,
- 0.01915016397833824,
- -0.016583191230893135,
- -0.059376947581768036,
- -0.08083447813987732,
- 0.03924036771059036,
- -0.044635046273469925,
- 0.03493000939488411,
- -0.06632770597934723,
- 0.062163494527339935,
- -0.019618162885308266,
- 0.0017653651302680373,
- -0.002825789153575897,
- 0.033609963953495026,
- -0.036263201385736465,
- 0.019740285351872444,
- -0.016061443835496902,
- -0.008959658443927765,
- -0.014189093373715878,
- 0.0452624075114727,
- -0.058073800057172775,
- -0.025301102548837662,
- 0.10910383611917496,
- 0.0511283203959465,
- -0.09206618368625641,
- 3.1822725926071725e-33,
- -0.004603281617164612,
- -0.08020132035017014,
- 0.11524490267038345,
- 0.06354589015245438,
- 0.10076155513525009,
- -0.0637647956609726,
- 0.002803328912705183,
- 0.024671422317624092,
- -0.03781888261437416,
- -0.04092665761709213,
- 0.0750335231423378,
- 0.04136086627840996,
- -0.004008294548839331,
- -0.004319552797824144,
- -0.0027341332752257586,
- 0.041729286313056946,
- 0.02919814921915531,
- -0.01171350572258234,
- -0.008760743774473667,
- -0.09717977046966553,
- -0.028641389682888985,
- -0.03815030679106712,
- -0.06541190296411514,
- -0.0420963354408741,
- -0.008234977722167969,
- 0.024585798382759094,
- 0.07503563165664673,
- 0.1246742457151413,
- -0.04049241170287132,
- 0.02112845703959465,
- 0.02966862916946411,
- 0.05851046368479729,
- -0.048872895538806915,
- 0.002675573108717799,
- -0.0376678965985775,
- 0.16767793893814087,
- -0.0483957976102829,
- 0.028144201263785362,
- -0.011900302022695541,
- -0.04581223055720329,
- 0.009796320460736752,
- 0.09861995279788971,
- 0.021154940128326416,
- 0.03481655940413475,
- 0.01826629601418972,
- 0.03346152603626251,
- 0.02095358818769455,
- -0.00440168147906661,
- 0.027163052931427956,
- 0.025891674682497978,
- -0.0812659040093422,
- -0.0008013524347916245,
- 0.09796151518821716,
- -0.06329319626092911,
- 0.0324702225625515,
- -0.008400295861065388,
- 0.016632266342639923,
- 0.012599227018654346,
- 0.006134759169071913,
- 0.029767772182822227,
- 0.0034042205661535263,
- -0.021410886198282242,
- -0.005516337230801582,
- 0.11505462229251862,
- -0.09914446622133255,
- 0.012571003288030624,
- -0.02735375240445137,
- 0.09621447324752808,
- -0.12260613590478897,
- -0.09471115469932556,
- 0.056959860026836395,
- -0.05338303744792938,
- -0.028390314429998398,
- 0.009690999053418636,
- -0.12344975769519806,
- -0.005028444807976484,
- -0.06302458792924881,
- 0.012572935782372952,
- -0.029844466596841812,
- -0.007839161902666092,
- -0.06527053564786911,
- -0.0454549640417099,
- -0.009322602301836014,
- 0.03940344974398613,
- -0.023805875331163406,
- -0.023656070232391357,
- 0.006021139677613974,
- -0.016769811511039734,
- 0.04237450659275055,
- 0.006692780181765556,
- 0.05030958727002144,
- -0.048153091222047806,
- -0.036414314061403275,
- -0.04704393818974495,
- -0.009324129670858383,
- -1.0481796763883722e-8,
- -0.10768096894025803,
- -0.002865046029910445,
- 0.007656543981283903,
- -0.03258104249835014,
- 0.07828234881162643,
- 0.05714363232254982,
- 0.06562040746212006,
- -0.061088744550943375,
- -0.016577880829572678,
- 0.043948832899332047,
- -0.0995873287320137,
- 0.02001628279685974,
- 0.007949192076921463,
- 0.02819669060409069,
- 0.09432534873485565,
- -0.09432170540094376,
- -0.020553436130285263,
- 0.08828575164079666,
- -0.044315263628959656,
- 0.016490131616592407,
- 0.04275889694690704,
- 0.0395137295126915,
- 0.04068197309970856,
- -0.08330236375331879,
- -0.022547418251633644,
- 0.02233760431408882,
- 0.04768456146121025,
- -0.014153177849948406,
- 0.022199582308530807,
- 0.06585989147424698,
- -0.016348393633961678,
- 0.11428426206111908,
- -0.06353654712438583,
- -0.017015960067510605,
- -0.026071758940815926,
- 0.017883336171507835,
- -0.034200672060251236,
- -0.015359257347881794,
- -0.003818502416834235,
- -0.04245036840438843,
- -0.024269290268421173,
- 0.10194285213947296,
- 0.04197809845209122,
- -0.012961956672370434,
- -0.051164835691452026,
- 0.04582243785262108,
- -0.007783896755427122,
- 0.014087141491472721,
- -0.00350775383412838,
- -0.042387161403894424,
- 0.011841503903269768,
- 0.03280090168118477,
- 0.06293103843927383,
- 0.009143359959125519,
- -0.0022295783273875713,
- -0.09920432418584824,
- -0.012761186808347702,
- 0.03131227195262909,
- -0.04006226733326912,
- -0.06865289807319641,
- 0.025574641302227974,
- -0.05647925287485123,
- 0.042360104620456696,
- 0.011030754074454308
- ]
- },
- {
- "keyword": "owner",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04631250724196434,
- 0.09661010652780533,
- 0.0021167469676584005,
- 0.011247544549405575,
- -0.07675741612911224,
- -0.07058730721473694,
- 0.1247054785490036,
- 0.007779241539537907,
- 0.010272554121911526,
- -0.01773710548877716,
- -0.011334973387420177,
- -0.0317852646112442,
- 0.011245028115808964,
- -0.025248277932405472,
- -0.06840342283248901,
- 0.027509000152349472,
- -0.10103058815002441,
- 0.016032418236136436,
- -0.05460932478308678,
- -0.05326665937900543,
- -0.07735056430101395,
- -0.031376712024211884,
- -0.0047134580090641975,
- 0.030586520209908485,
- 0.003211842617020011,
- 0.04507116228342056,
- 0.017840413376688957,
- 0.06763774156570435,
- 0.07838788628578186,
- -0.09307841211557388,
- 0.03351568803191185,
- -0.0894847959280014,
- 0.10210634022951126,
- 0.01504193339496851,
- -0.02807481400668621,
- 0.0011310812551528215,
- -0.017801960930228233,
- -0.03561272844672203,
- 0.0039218333549797535,
- 0.04685896635055542,
- 0.04568268731236458,
- -0.07176872342824936,
- -0.011908684857189655,
- -0.009352807886898518,
- 0.022519798949360847,
- 0.10511800646781921,
- 0.03962733969092369,
- 0.008476759307086468,
- 0.05990390479564667,
- 0.0443594828248024,
- 0.0011718857567757368,
- 0.08477610349655151,
- -0.03211960196495056,
- -0.001314929686486721,
- 0.05592888966202736,
- 0.050225090235471725,
- -0.02098790556192398,
- 0.058012720197439194,
- 0.017411481589078903,
- -0.04878181219100952,
- 0.0652821958065033,
- -0.004577888175845146,
- -0.07659438997507095,
- 0.03304284065961838,
- 0.07412005215883255,
- -0.029926994815468788,
- -0.006465143524110317,
- -0.020015956833958626,
- -0.04255186766386032,
- -0.026854099705815315,
- 0.11457530409097672,
- 0.01562502048909664,
- 0.008337954059243202,
- 0.00011703333439072594,
- -0.03414217010140419,
- -0.057502757757902145,
- 0.026807155460119247,
- 0.015472527593374252,
- 0.009908649139106274,
- 0.004889308009296656,
- 0.026229074224829674,
- -0.001841262448579073,
- -0.032623738050460815,
- -0.01394089125096798,
- -0.058517664670944214,
- 0.06736698746681213,
- 0.05483600124716759,
- 0.1005430817604065,
- 0.04593951255083084,
- 0.08195953071117401,
- -0.0012832494685426354,
- -0.01499332394450903,
- 0.11339151114225388,
- -0.022762473672628403,
- -0.07576989382505417,
- 0.07224979996681213,
- -0.029786579310894012,
- 0.012518749572336674,
- -0.14922823011875153,
- 0.2518782913684845,
- -0.02734898403286934,
- 0.03541352227330208,
- -0.04520813748240471,
- 0.00283854641020298,
- 0.013079829514026642,
- 0.0452650748193264,
- -0.025054199621081352,
- 0.10336184501647949,
- -0.04951467365026474,
- -0.040247842669487,
- -0.06288675963878632,
- 0.005630828440189362,
- -0.07741476595401764,
- 0.09173540025949478,
- 0.029246823862195015,
- -0.021951649338006973,
- -0.049622051417827606,
- 0.016058187931776047,
- 0.08620011806488037,
- -0.09439519792795181,
- 0.024756714701652527,
- -0.012683611363172531,
- -0.011497510597109795,
- 0.00992191955447197,
- -0.07451022416353226,
- 0.004211094230413437,
- -0.02743709273636341,
- -5.0701602337239374e-33,
- 0.016786852851510048,
- 0.07337288558483124,
- -0.018045170232653618,
- 0.010214045643806458,
- 0.02023685723543167,
- 0.002938320627436042,
- 0.007396663073450327,
- 0.013382630422711372,
- -0.056234609335660934,
- 0.052155815064907074,
- 0.06375180929899216,
- -0.04354282468557358,
- -0.07244420796632767,
- -0.031515590846538544,
- 0.08701246976852417,
- 0.0438217855989933,
- -0.028866754844784737,
- -0.006696749944239855,
- -0.044493041932582855,
- -0.019233303144574165,
- -0.013489846140146255,
- 0.12429523468017578,
- -0.041495129466056824,
- 0.11975623667240143,
- -0.006992221809923649,
- -0.057510703802108765,
- -0.025201786309480667,
- 0.009571672417223454,
- 0.034555960446596146,
- 0.016314225271344185,
- 0.03690481558442116,
- 0.00923064909875393,
- -0.02029985561966896,
- -0.04197096452116966,
- -0.03756314516067505,
- -0.03773941099643707,
- -0.054045889526605606,
- -0.061136018484830856,
- -0.02998124621808529,
- 0.007089950144290924,
- -0.0101168779656291,
- -0.031039640307426453,
- -0.04127593711018562,
- 0.011799956671893597,
- -0.09717942029237747,
- -0.04671284556388855,
- 0.030531520023941994,
- -0.008981242775917053,
- -0.03569791093468666,
- 0.0787850096821785,
- -0.033258870244026184,
- -0.030451534315943718,
- -0.0866607278585434,
- 0.015691863372921944,
- 0.013396193273365498,
- -0.07216664403676987,
- 0.031119462102651596,
- -0.04008334130048752,
- -0.009834187105298042,
- -0.05297801271080971,
- 0.014280211180448532,
- 0.11069288104772568,
- 0.007666616700589657,
- 0.09215153008699417,
- 0.0050597661174833775,
- -0.03242718055844307,
- 0.09091968834400177,
- -0.05479462817311287,
- 0.031885724514722824,
- -0.0033281079959124327,
- -0.030203616246581078,
- 0.007705993484705687,
- 0.012209953740239143,
- 0.0024263884406536818,
- 0.025668522343039513,
- -0.021369924768805504,
- -0.06641849130392075,
- 0.062443848699331284,
- -0.008729630149900913,
- 0.02026272751390934,
- -0.017161184921860695,
- -0.0047638858668506145,
- 0.044398561120033264,
- 0.04033937677741051,
- -0.06482093036174774,
- 0.04156726971268654,
- -0.07129137963056564,
- 0.0015110528329387307,
- 0.05139179155230522,
- 0.0658191666007042,
- -0.010132786817848682,
- 0.008963098749518394,
- 0.03505389019846916,
- 0.07404083013534546,
- -0.06576819717884064,
- 3.564543722836565e-33,
- -0.03864265978336334,
- -0.08240876346826553,
- 0.029114888980984688,
- -0.007030950393527746,
- 0.021244235336780548,
- -0.036158978939056396,
- 0.0115031898021698,
- -0.02791263908147812,
- -0.010771035216748714,
- -0.025947606191039085,
- -0.07958123087882996,
- 0.006455434486269951,
- 0.06519830226898193,
- 0.08930294215679169,
- 0.03375869616866112,
- 0.027662644162774086,
- 0.038268640637397766,
- -0.09184150397777557,
- -0.030358685180544853,
- -0.046700917184352875,
- -0.09814275801181793,
- 0.0431479886174202,
- 0.01201560627669096,
- 0.022284016013145447,
- -0.013394818641245365,
- 0.01219866145402193,
- 0.056272804737091064,
- 0.0923391804099083,
- 0.012806439772248268,
- -0.024337060749530792,
- 0.014757521450519562,
- -0.05595264211297035,
- -0.016814686357975006,
- -0.02702689729630947,
- 0.003109693294391036,
- 0.08982422947883606,
- -0.03579080477356911,
- 0.029801717028021812,
- -0.016693059355020523,
- 0.03770371899008751,
- 0.02496049925684929,
- 0.09843248128890991,
- 0.11933691799640656,
- 0.09883617609739304,
- -0.02898312173783779,
- 0.06734437495470047,
- -0.014164269901812077,
- -0.11598648130893707,
- 0.03497949242591858,
- 0.06965413689613342,
- -0.015770137310028076,
- 0.030029039829969406,
- 0.056809600442647934,
- 0.016457339748740196,
- -0.004160047974437475,
- 0.013223297894001007,
- 0.04461166635155678,
- -0.009218820370733738,
- 0.0293060764670372,
- 0.00655775424093008,
- 0.01418333314359188,
- 0.04547843337059021,
- -0.015855960547924042,
- 0.10126639902591705,
- -0.06602278351783752,
- 0.011680666357278824,
- -0.03217419981956482,
- -0.05540084466338158,
- -0.05517848953604698,
- -0.08085311204195023,
- 0.061124287545681,
- -0.09948333352804184,
- -0.07284612208604813,
- -0.03272407874464989,
- -0.028660481795668602,
- 0.011845288798213005,
- -0.07628656923770905,
- 0.03722042217850685,
- -0.009278103709220886,
- -0.06695391237735748,
- -0.06447041034698486,
- -0.0025754207745194435,
- 0.012145540677011013,
- 0.062263838946819305,
- -0.02468419447541237,
- -0.04791160672903061,
- -0.011139405891299248,
- -0.06189185753464699,
- -0.0032804501242935658,
- -0.005382001865655184,
- 0.05240371450781822,
- 0.03218547999858856,
- -0.04325254261493683,
- -0.06681494414806366,
- -0.02244703657925129,
- -1.2241886615527164e-8,
- -0.0614018514752388,
- 0.008066561073064804,
- 0.04447713494300842,
- -0.006670581176877022,
- 0.08174773305654526,
- -0.003640704555436969,
- 0.06103738024830818,
- -0.02483471669256687,
- 0.03461924567818642,
- 0.09106069803237915,
- 0.006278489716351032,
- 0.018268488347530365,
- 0.0007770881056785583,
- -0.007429726887494326,
- 0.04851587116718292,
- -0.05532507970929146,
- -0.03671102225780487,
- 0.0641789361834526,
- -0.024162089452147484,
- 0.01254652813076973,
- 0.0412721186876297,
- -0.004567704163491726,
- 0.07432745397090912,
- -0.06460455805063248,
- -0.060239531099796295,
- 0.026255499571561813,
- -0.03779543563723564,
- -0.009952669963240623,
- -0.02729780413210392,
- 0.08749928325414658,
- -0.008019261993467808,
- 0.1356666088104248,
- -0.022586507722735405,
- 0.003545251674950123,
- 0.020706327632069588,
- -0.06920289993286133,
- -0.04812519997358322,
- 0.03207434341311455,
- 0.00025608757277950644,
- -0.007513945456594229,
- -0.07607229053974152,
- 0.04886089637875557,
- -0.018807996064424515,
- 0.009823103435337543,
- -0.020958371460437775,
- 0.015824884176254272,
- 0.014565651305019855,
- -0.04645902290940285,
- -0.05270964652299881,
- -0.04809769243001938,
- 0.00879653450101614,
- -0.04574344679713249,
- -0.0067853122018277645,
- 0.03166704997420311,
- -0.06148557737469673,
- -0.058613743633031845,
- 0.030309544876217842,
- 0.037337783724069595,
- -0.05117414891719818,
- -0.059238508343696594,
- 0.05525277927517891,
- 0.006100140977650881,
- 0.022934621199965477,
- 0.024430250748991966
- ]
- },
- {
- "keyword": "analyst",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.035764411091804504,
- 0.03245612978935242,
- -0.1307324469089508,
- 0.05866174027323723,
- -0.060362983494997025,
- 0.008948714472353458,
- 0.11726688593626022,
- 0.04547389969229698,
- 0.02689439244568348,
- 0.013492134399712086,
- -0.07257959246635437,
- -0.03772306814789772,
- -0.037974413484334946,
- 0.05862954258918762,
- -0.09423095732927322,
- 0.03379308059811592,
- -0.011923978105187416,
- -0.033328548073768616,
- -0.05166015401482582,
- -0.06812427192926407,
- -0.15464521944522858,
- -0.031064355745911598,
- -0.047129902988672256,
- -0.007854726165533066,
- 0.05727248266339302,
- 0.030876902863383293,
- -0.0392804779112339,
- 0.024839973077178,
- 0.01782391220331192,
- -0.09576405584812164,
- -0.018530093133449554,
- 0.0012151869013905525,
- 0.1332041174173355,
- 0.04182528331875801,
- -0.034072984009981155,
- -0.01111477892845869,
- -0.045989926904439926,
- 0.06091095507144928,
- 0.06738162785768509,
- 0.06131528317928314,
- -0.020047130063176155,
- -0.01251983642578125,
- -0.02953328751027584,
- 0.006475706119090319,
- 0.01982739195227623,
- -0.051349516957998276,
- 0.03481433540582657,
- -0.006411583628505468,
- 0.0418902263045311,
- 0.03413797914981842,
- -0.179246187210083,
- -0.010123953223228455,
- -0.040941160172224045,
- 0.004787052050232887,
- 0.023789940401911736,
- 0.011081159114837646,
- 0.021518157795071602,
- 0.0019619499798864126,
- -0.0067561171017587185,
- 0.01903301104903221,
- -0.02017096057534218,
- 0.013784689828753471,
- 0.003621288575232029,
- 0.07208998501300812,
- 0.10997212678194046,
- 0.017126940190792084,
- -0.07827268540859222,
- 0.046501677483320236,
- -0.07415600121021271,
- 0.0003465590998530388,
- -0.017172232270240784,
- -0.049894075840711594,
- -0.021946433931589127,
- -0.031073657795786858,
- 0.031267814338207245,
- -0.02258719503879547,
- 0.02370205707848072,
- -0.0028755376115441322,
- 0.09399662911891937,
- -0.018758678808808327,
- 0.05014815181493759,
- -0.10087988525629044,
- -0.08319535851478577,
- 0.02009550668299198,
- -0.005372465588152409,
- -0.03459404781460762,
- 0.0015367974992841482,
- -0.02561413124203682,
- 0.0011842468520626426,
- 0.03138053044676781,
- 0.011718003079295158,
- 0.0027531152591109276,
- 0.07662100344896317,
- 0.0008803417440503836,
- 0.015461198054254055,
- 0.03002730756998062,
- -0.038504164665937424,
- -0.07815802842378616,
- -0.04817996174097061,
- 0.24835236370563507,
- 0.0022989739663898945,
- -0.027876466512680054,
- 0.0029118156526237726,
- 0.002170826541259885,
- -0.11158456653356552,
- -0.04608789458870888,
- -0.006325444672256708,
- 0.010650981217622757,
- -0.018114449456334114,
- 0.01996581070125103,
- -0.002463385695591569,
- 0.08567730337381363,
- -0.07074137032032013,
- 0.07263035327196121,
- 0.032386232167482376,
- -0.014630741439759731,
- -0.018663853406906128,
- 0.07595625519752502,
- 0.028907237574458122,
- 0.028936220332980156,
- -0.021731451153755188,
- 0.06014006957411766,
- 0.004810228943824768,
- 0.06032532826066017,
- -0.04435006529092789,
- 0.0282711423933506,
- -0.05238019675016403,
- -4.497825993303982e-33,
- -0.047010794281959534,
- -0.020099017769098282,
- 0.00009368674363940954,
- 0.0446113757789135,
- -0.056053005158901215,
- 0.007148993667215109,
- -0.04809495061635971,
- -0.01827310025691986,
- 0.03539912775158882,
- 0.02940123714506626,
- 0.011982946656644344,
- 0.13569489121437073,
- 0.023112641647458076,
- -0.026937922462821007,
- 0.045141883194446564,
- 0.06960795074701309,
- -0.02001187950372696,
- 0.0910329595208168,
- -0.0730372965335846,
- -0.004985000006854534,
- -0.003381710033863783,
- 0.01383273396641016,
- -0.05601050704717636,
- 0.018580613657832146,
- -0.010098148137331009,
- -0.0003488257061690092,
- 0.06664576381444931,
- -0.09056420624256134,
- 0.0023744686041027308,
- 0.016149083152413368,
- 0.03749329596757889,
- 0.04687520116567612,
- -0.039364300668239594,
- -0.01053432747721672,
- -0.02762635238468647,
- -0.0471004992723465,
- -0.019765788689255714,
- -0.05800674855709076,
- 0.07400531321763992,
- 0.05846952646970749,
- -0.037956248968839645,
- -0.012556057423353195,
- 0.03558366373181343,
- -0.005462004337459803,
- 0.006062573287636042,
- 0.02266715094447136,
- 0.015734825283288956,
- 0.04033853858709335,
- -0.021928835660219193,
- 0.015969038009643555,
- -0.07460206747055054,
- -0.09857567399740219,
- 0.04792596772313118,
- -0.01773052290081978,
- 0.0393875315785408,
- 0.030808867886662483,
- 0.020428385585546494,
- -0.05253417789936066,
- 0.020421363413333893,
- -0.027543187141418457,
- 0.005074440035969019,
- 0.1420915424823761,
- -0.02435222640633583,
- -0.029785500839352608,
- -0.0995611920952797,
- -0.0026624687016010284,
- -0.00006254468462429941,
- 0.07372685521841049,
- 0.07401261478662491,
- 0.0282526146620512,
- -0.04253669083118439,
- -0.010700421407818794,
- 0.09188858419656754,
- 0.0201614648103714,
- -0.018808864057064056,
- -0.025035753846168518,
- 4.241081796863e-7,
- 0.03712943196296692,
- -0.002523791743442416,
- -0.03283149376511574,
- -0.011289163492619991,
- 0.05004661902785301,
- 0.0572611540555954,
- -0.01407811138778925,
- 0.03432109206914902,
- -0.020584143698215485,
- -0.06677643954753876,
- -0.02365970052778721,
- 0.05723683908581734,
- 0.09377281367778778,
- -0.08127570152282715,
- 0.006780022289603949,
- -0.028366750106215477,
- 0.11116825044155121,
- -0.010491055436432362,
- 3.468706770439978e-33,
- -0.06945943832397461,
- -0.06447868049144745,
- -0.04227505996823311,
- 0.07406563311815262,
- 0.051969971507787704,
- -0.07859668135643005,
- 0.07357010990381241,
- -0.021708732470870018,
- 0.0074194082990288734,
- 0.01853358931839466,
- -0.00667674420401454,
- -0.03344714269042015,
- -0.009431102313101292,
- -0.0157959945499897,
- -0.016190119087696075,
- -0.05393041670322418,
- 0.008878347463905811,
- -0.0797031968832016,
- -0.07213401794433594,
- 0.010789078660309315,
- -0.04371469467878342,
- -0.06679246574640274,
- -0.05598011240363121,
- -0.05492040514945984,
- 0.023404814302921295,
- 0.060868773609399796,
- 0.07159235328435898,
- -0.0027365172281861305,
- -0.014195072464644909,
- 0.027519477531313896,
- -0.03356051817536354,
- -0.06118309125304222,
- -0.05706626921892166,
- 0.010008745826780796,
- -0.020001649856567383,
- 0.13241970539093018,
- 0.03776892274618149,
- -0.03987457975745201,
- -0.024432489648461342,
- -0.0091555742546916,
- 0.0287904292345047,
- -0.03770070895552635,
- 0.047938983887434006,
- 0.08809482306241989,
- 0.04535546898841858,
- 0.02521900087594986,
- 0.02802826464176178,
- 0.038526128977537155,
- 0.003467324422672391,
- 0.01503413263708353,
- -0.05413699150085449,
- 0.02975674718618393,
- -0.0022913983557373285,
- -0.027005739510059357,
- -0.09452783316373825,
- 0.005385492462664843,
- 0.06450952589511871,
- -0.05109097436070442,
- -0.04367074742913246,
- 0.05309462919831276,
- 0.050207097083330154,
- -0.025441141799092293,
- 0.054272159934043884,
- 0.018052635714411736,
- -0.08308236300945282,
- 0.04231378808617592,
- 0.009641182608902454,
- 0.009922334924340248,
- -0.008405904285609722,
- -0.02396734431385994,
- 0.12599913775920868,
- -0.0021136561408638954,
- -0.022010354325175285,
- 0.04264860600233078,
- -0.032166868448257446,
- 0.07002019137144089,
- -0.11860454082489014,
- -0.011262769810855389,
- 0.0057165613397955894,
- 0.0434209443628788,
- -0.06042051687836647,
- 0.004113462753593922,
- -0.0037443237379193306,
- 0.052428070455789566,
- -0.004743275232613087,
- 0.04718482121825218,
- -0.058451734483242035,
- -0.004108482506126165,
- -0.003394464496523142,
- -0.07464206963777542,
- -0.0268605537712574,
- -0.028700334951281548,
- -0.028860896825790405,
- -0.033975306898355484,
- -0.011245543137192726,
- -1.188405018837102e-8,
- -0.08471325784921646,
- -0.010355309583246708,
- 0.10260041058063507,
- -0.03368587791919708,
- 0.05697770044207573,
- -0.041706107556819916,
- -0.0644860714673996,
- -0.07900793105363846,
- 0.055322952568531036,
- 0.010892719030380249,
- 0.024393653497099876,
- -0.004899554420262575,
- -0.03392258286476135,
- 0.058665480464696884,
- 0.08131387829780579,
- -0.04023691639304161,
- 0.004083025734871626,
- -0.017574192956089973,
- 0.0003838669217657298,
- 0.0016337803099304438,
- 0.06862079352140427,
- 0.022687410935759544,
- 0.015784725546836853,
- 0.05064890533685684,
- 0.06152033805847168,
- -0.06649061292409897,
- -0.07384778559207916,
- 0.0725831612944603,
- 0.008126907050609589,
- 0.05582242086529732,
- -0.010903578251600266,
- 0.10216894745826721,
- -0.02083699218928814,
- -0.07457926124334335,
- 0.036448702216148376,
- 0.007212404627352953,
- 0.07863616198301315,
- -0.03563893958926201,
- 0.025811005383729935,
- 0.006932151969522238,
- -0.08662662655115128,
- 0.0004130452580284327,
- 0.009099580347537994,
- -0.014756347984075546,
- -0.0007120457594282925,
- -0.004488552454859018,
- -0.01837870106101036,
- 0.008844589814543724,
- 0.030665908008813858,
- -0.05477524548768997,
- 0.023267002776265144,
- -0.030866924673318863,
- 0.008783412165939808,
- 0.08152787387371063,
- 0.07119274139404297,
- -0.012048118747770786,
- 0.01741751842200756,
- -0.041216347366571426,
- -0.07436175644397736,
- 0.06402336061000824,
- 0.07832552492618561,
- -0.05002220720052719,
- 0.026393434032797813,
- 0.007464982569217682
- ]
- },
- {
- "keyword": "consultant",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.007248858921229839,
- -0.0021415262017399073,
- -0.06904090940952301,
- 0.004324440378695726,
- -0.11766266822814941,
- -0.01486274879425764,
- 0.06486095488071442,
- 0.011667701415717602,
- -0.009794890880584717,
- -0.027000410482287407,
- -0.061241261661052704,
- 0.0403277724981308,
- 0.002352398354560137,
- 0.08928431570529938,
- -0.032743602991104126,
- 0.06943197548389435,
- 0.01973835937678814,
- 0.0031752202194184065,
- 0.07653715461492538,
- -0.10783147811889648,
- -0.17076480388641357,
- -0.007592026609927416,
- -0.013507501222193241,
- 0.010161012411117554,
- 0.0032231025397777557,
- 0.026236316189169884,
- 0.01765425316989422,
- -0.015991557389497757,
- 0.023212824016809464,
- -0.04553043842315674,
- -0.020591409876942635,
- 0.08477748185396194,
- 0.01288369670510292,
- -0.05964433401823044,
- 0.024078436195850372,
- 0.12401540577411652,
- -0.0695013478398323,
- 0.048080433160066605,
- 0.03691759333014488,
- 0.003249302040785551,
- -0.004144953563809395,
- -0.029460124671459198,
- -0.037820152938365936,
- -0.020777318626642227,
- -0.02703620120882988,
- -0.010492994450032711,
- -0.00906550232321024,
- 0.03370548412203789,
- 0.00017504522111266851,
- 0.01693931594491005,
- -0.06471724808216095,
- -0.05838790535926819,
- -0.018018702045083046,
- -0.051059871912002563,
- -0.013220916502177715,
- -0.0339442640542984,
- -0.04597778990864754,
- 0.011320375837385654,
- -0.013614388182759285,
- -0.05401094630360603,
- -0.005730276461690664,
- 0.012286408804357052,
- -0.04391835257411003,
- 0.048190850764513016,
- 0.06631360203027725,
- 0.0502622164785862,
- -0.04292917996644974,
- 0.055417727679014206,
- -0.02740001119673252,
- -0.10033497214317322,
- -0.00862941239029169,
- -0.07081875205039978,
- -0.015540712513029575,
- -0.011403706856071949,
- 0.03409949317574501,
- 0.012653439305722713,
- 0.04521087557077408,
- 0.009505987167358398,
- 0.11170026659965515,
- -0.08801393210887909,
- 0.025535674765706062,
- 0.09170114248991013,
- -0.01535946037620306,
- 0.044772565364837646,
- -0.05367900803685188,
- -0.00905302818864584,
- 0.031379811465740204,
- 0.04330745339393616,
- 0.04234437271952629,
- -0.011592493392527103,
- 0.037579748779535294,
- 0.0012634721351787448,
- 0.022077549248933792,
- 0.0006614943267777562,
- -0.07399601489305496,
- 0.06739290058612823,
- -0.03167043998837471,
- -0.021391330286860466,
- -0.057042308151721954,
- 0.234552800655365,
- -0.014581228606402874,
- -0.01792009547352791,
- -0.013746339827775955,
- 0.00314292311668396,
- -0.06682945042848587,
- 0.033005572855472565,
- -0.021047398447990417,
- 0.029848625883460045,
- 0.028644829988479614,
- 0.04528893157839775,
- -0.05347442254424095,
- 0.04435764625668526,
- -0.05684364214539528,
- -0.037064436823129654,
- -0.012650921009480953,
- -0.015657106414437294,
- -0.0303328987210989,
- 0.0690101683139801,
- 0.03571373596787453,
- 0.060436591506004333,
- -0.017180010676383972,
- 0.03271356597542763,
- -0.04315534234046936,
- -0.021488457918167114,
- 0.006471519824117422,
- 0.025651244446635246,
- -0.01981351524591446,
- -6.1230575032531684e-33,
- -0.01757274754345417,
- 0.09800483286380768,
- 0.052603598684072495,
- 0.07575178891420364,
- 0.0023238924331963062,
- 0.010686048306524754,
- 0.07164569944143295,
- -0.0007361483294516802,
- 0.023557286709547043,
- 0.017328783869743347,
- 0.0571771077811718,
- 0.13927452266216278,
- 0.0004337179707363248,
- -0.013667789287865162,
- -0.033072616904973984,
- -0.05321842432022095,
- 0.05692487582564354,
- 0.08013831079006195,
- -0.04472663626074791,
- -0.0645439401268959,
- -0.07315236330032349,
- 0.03763415291905403,
- -0.020863458514213562,
- 0.08932878822088242,
- 0.03331736847758293,
- -0.003377016633749008,
- 0.054300352931022644,
- 0.019971754401922226,
- 0.1318792849779129,
- 0.03091551922261715,
- -0.008764016442000866,
- 0.05076140537858009,
- -0.04062771424651146,
- -0.010597508400678635,
- -0.02086305432021618,
- 0.03934018313884735,
- -0.09326742589473724,
- -0.13315150141716003,
- 0.02921123057603836,
- 0.029684623703360558,
- -0.09913483262062073,
- 0.0643710047006607,
- 0.013632835820317268,
- -0.0003766492009162903,
- -0.043197888880968094,
- 0.0027898107655346394,
- 0.10283847898244858,
- 0.023750802502036095,
- -0.06841857731342316,
- 0.04247947037220001,
- -0.08447334170341492,
- -0.019630052149295807,
- 0.004093826282769442,
- 0.05632542446255684,
- 0.07430031895637512,
- -0.028369497507810593,
- 0.07805795967578888,
- -0.05872664228081703,
- 0.04611951485276222,
- 0.014931722544133663,
- 0.04219784587621689,
- 0.03826011344790459,
- -0.06434521824121475,
- -0.00007336214912356809,
- -0.00958308856934309,
- -0.05523978918790817,
- -0.006158454809337854,
- 0.029132632538676262,
- 0.007217220962047577,
- -0.018934335559606552,
- -0.02944832481443882,
- 0.059912871569395065,
- 0.11756553500890732,
- -0.001027883030474186,
- -0.06918548047542572,
- 0.0022645171266049147,
- -0.08531077206134796,
- 0.040970075875520706,
- -0.017721660435199738,
- 0.0123259536921978,
- -0.0214335136115551,
- 0.04054597020149231,
- 0.02187289111316204,
- 0.05587959662079811,
- 0.07863225042819977,
- 0.019124729558825493,
- -0.02385583706200123,
- 0.021280944347381592,
- 0.031237879768013954,
- 0.08097958564758301,
- -0.12204429507255554,
- 0.031259261071681976,
- 0.0050835199654102325,
- 0.11199720948934555,
- 0.03435636684298515,
- 4.9514143657977624e-33,
- -0.0425042062997818,
- -0.009037977084517479,
- 0.042927321046590805,
- 0.038516491651535034,
- 0.1026681438088417,
- -0.05994231626391411,
- 0.00690128980204463,
- -0.0222228541970253,
- -0.016606496647000313,
- 0.019738730043172836,
- -0.047803543508052826,
- -0.045287564396858215,
- -0.02978636883199215,
- 0.010798105970025063,
- -0.05253157392144203,
- 0.022610509768128395,
- 0.02593296580016613,
- -0.08783027529716492,
- 0.049952369183301926,
- -0.03932875394821167,
- -0.04646110162138939,
- 0.02187381498515606,
- -0.0773770660161972,
- -0.00936957448720932,
- -0.03681649640202522,
- 0.04333454743027687,
- 0.01820955239236355,
- -0.045770999044179916,
- -0.028560778126120567,
- 0.05672598257660866,
- -0.03989614173769951,
- -0.07534060627222061,
- -0.07262192666530609,
- 0.02650108002126217,
- -0.052386123687028885,
- 0.09212563186883926,
- -0.012130631133913994,
- -0.02262205071747303,
- -0.04371894523501396,
- 0.007170564495027065,
- 0.041852790862321854,
- -0.046053458005189896,
- 0.04383106157183647,
- 0.02772359549999237,
- -0.036450985819101334,
- -0.06466960161924362,
- 0.05646907165646553,
- -0.054179076105356216,
- 0.09525083750486374,
- -0.046057675033807755,
- -0.06884970515966415,
- 0.07484608143568039,
- -0.011117602698504925,
- -0.04606082662940025,
- -0.060394350439310074,
- -0.005076609086245298,
- 0.14519456028938293,
- -0.014627210795879364,
- 0.05322639271616936,
- 0.002375389449298382,
- 0.06934171169996262,
- -0.012257849797606468,
- -0.0019792213570326567,
- 0.07457752525806427,
- -0.05372990295290947,
- 0.017830736935138702,
- 0.015287148766219616,
- -0.027247164398431778,
- 0.02791968733072281,
- -0.03012758120894432,
- 0.02314205840229988,
- 0.0011701018083840609,
- -0.0433904193341732,
- -0.03466702625155449,
- -0.025227349251508713,
- -0.01568714529275894,
- -0.009611457586288452,
- -0.07779436558485031,
- -0.03160983696579933,
- -0.005108125973492861,
- -0.03528127819299698,
- -0.0927557423710823,
- 0.006716627161949873,
- 0.11332851648330688,
- -0.03559312969446182,
- -0.0031933120917528868,
- -0.004892467521131039,
- -0.061395928263664246,
- -0.025984831154346466,
- -0.028178099542856216,
- -0.07361883670091629,
- -0.0003634883905760944,
- 0.014581444673240185,
- 0.007130553014576435,
- 0.009925306774675846,
- -1.3132838816432013e-8,
- -0.05698307603597641,
- -0.013404203578829765,
- 0.020165253430604935,
- -0.02002783678472042,
- 0.007702602539211512,
- -0.07581481337547302,
- -0.06554704159498215,
- 0.05237846449017525,
- 0.04356440156698227,
- 0.11067803204059601,
- 0.016075806692242622,
- -0.044544197618961334,
- -0.01783260703086853,
- 0.06731522083282471,
- 0.047412529587745667,
- -0.05176594480872154,
- 0.03241274505853653,
- 0.08004522323608398,
- -0.07665708661079407,
- -0.031481269747018814,
- -0.003801946993917227,
- 0.057814307510852814,
- -0.0043284050188958645,
- -0.020823996514081955,
- 0.045229826122522354,
- -0.022726137191057205,
- -0.027915485203266144,
- 0.06540735810995102,
- -0.01256190799176693,
- 0.03425111249089241,
- -0.012336951680481434,
- -0.013513009063899517,
- 0.029843555763363838,
- -0.043511632829904556,
- 0.03100481443107128,
- -0.09944816678762436,
- 0.02084893174469471,
- 0.011643254198133945,
- 0.010289660654962063,
- 0.03366921469569206,
- -0.12169300764799118,
- 0.07364080846309662,
- 0.02881249040365219,
- 0.023528896272182465,
- -0.039503902196884155,
- 0.03219713270664215,
- 0.02686808444559574,
- -0.0350310318171978,
- 0.004339125938713551,
- -0.025470366701483727,
- 0.018601492047309875,
- -0.03487163037061691,
- 0.09698792546987534,
- -0.008566022850573063,
- 0.03208685666322708,
- -0.00973258912563324,
- 0.07863545417785645,
- -0.035427842289209366,
- -0.06730055063962936,
- 0.06445297598838806,
- -0.060338377952575684,
- -0.04219957813620567,
- 0.0220229160040617,
- -0.021712785586714745
- ]
- },
- {
- "keyword": "specialist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.006872559431940317,
- 0.06877012550830841,
- 0.011077772825956345,
- 0.03311081603169441,
- -0.07353313267230988,
- -0.057178374379873276,
- 0.12095331400632858,
- 0.07743287086486816,
- -0.068150095641613,
- -0.013023371808230877,
- -0.016246547922492027,
- -0.004097961820662022,
- -0.050175990909338,
- 0.08322957903146744,
- -0.08630932122468948,
- 0.0073187509551644325,
- 0.029818464070558548,
- -0.01519354060292244,
- -0.035905707627534866,
- -0.07452432811260223,
- -0.13286542892456055,
- 0.020403848960995674,
- 0.007219899445772171,
- 0.026888584718108177,
- -0.033280521631240845,
- -0.04101000353693962,
- -0.029528783634305,
- 0.017797738313674927,
- -0.017480332404375076,
- -0.0735032707452774,
- -0.005292467772960663,
- -0.01648586615920067,
- -0.04987369850277901,
- 0.027900025248527527,
- -0.03417101502418518,
- 0.03900005668401718,
- -0.012633646838366985,
- 0.03581796959042549,
- 0.047072771936655045,
- 0.037747111171483994,
- 0.0032031326554715633,
- -0.03672177344560623,
- -0.01675896905362606,
- 0.02269657514989376,
- 0.009028545580804348,
- -0.018495187163352966,
- 0.046801287680864334,
- -0.03667888417840004,
- 0.07200673222541809,
- -0.04040345922112465,
- -0.08857034146785736,
- -0.08466405421495438,
- -0.028159884735941887,
- 0.024079754948616028,
- 0.0226873978972435,
- -0.06365402787923813,
- 0.011580470949411392,
- -0.02114400640130043,
- -0.028780357912182808,
- -0.027185983955860138,
- 0.03652353212237358,
- 0.007996485568583012,
- -0.08006925880908966,
- -0.008417434990406036,
- 0.028933152556419373,
- -0.012510646134614944,
- -0.050085145980119705,
- -0.020098067820072174,
- 0.05620772764086723,
- -0.003111426020041108,
- 0.01670658588409424,
- -0.035486575216054916,
- 0.014778385870158672,
- 0.07439938932657242,
- 0.05213601514697075,
- -0.09706654399633408,
- 0.04161517694592476,
- 0.018741652369499207,
- 0.09808235615491867,
- -0.005216160323470831,
- 0.03652915358543396,
- -0.0217354204505682,
- 0.0026579147670418024,
- -0.01285582035779953,
- -0.007587234489619732,
- -0.019991712644696236,
- -0.00019344082102179527,
- 0.015401512384414673,
- -0.017626114189624786,
- -0.029868455603718758,
- 0.01632469706237316,
- -0.02286382019519806,
- 0.08681902289390564,
- -0.0019051339477300644,
- -0.03555108979344368,
- 0.037166792899370193,
- -0.010285861790180206,
- -0.09862760454416275,
- -0.05580313131213188,
- 0.2598027288913727,
- 0.031087541952729225,
- -0.03362549468874931,
- 0.061883531510829926,
- 0.08482541888952255,
- -0.021804144605994225,
- -0.0033251845743507147,
- -0.057357463985681534,
- 0.030717022716999054,
- 0.017496483400464058,
- 0.00266082095913589,
- 0.024624628946185112,
- 0.05484315752983093,
- -0.03542139753699303,
- 0.011531573720276356,
- -0.04058487340807915,
- 0.08782460540533066,
- -0.011195341125130653,
- 0.023925453424453735,
- 0.02901528589427471,
- 0.023738691583275795,
- -0.01324397511780262,
- 0.02306043915450573,
- -0.07233411073684692,
- -0.04484141245484352,
- 0.019643133506178856,
- 0.0856131911277771,
- 0.018931372091174126,
- -5.430342355733441e-33,
- 0.028836339712142944,
- -0.03951366990804672,
- 0.038958098739385605,
- 0.0935889184474945,
- -0.008039253763854504,
- 0.05428772792220116,
- 0.012598454020917416,
- -0.027592647820711136,
- 0.020431509241461754,
- -0.05561960116028786,
- 0.03205037862062454,
- 0.0009690039441920817,
- -0.017172209918498993,
- -0.03962567448616028,
- -0.004305027890950441,
- 0.049123987555503845,
- -0.047906432300806046,
- 0.10229118913412094,
- -0.06740690767765045,
- 0.041498806327581406,
- -0.04030951112508774,
- 0.047967053949832916,
- -0.03155158460140228,
- 0.05882957577705383,
- 0.036276575177907944,
- 0.02377631887793541,
- 0.04207562282681465,
- -0.05370374023914337,
- 0.0609172098338604,
- 0.003354824148118496,
- 0.003263006452471018,
- 0.024850642308592796,
- -0.018806802108883858,
- -0.01009813416749239,
- 0.016540778800845146,
- -0.016615955159068108,
- -0.09399157762527466,
- -0.08942082524299622,
- 0.07321229577064514,
- -0.009289837442338467,
- -0.014469572342932224,
- -0.008738677017390728,
- 0.0023689987137913704,
- -0.007653665263205767,
- -0.044635362923145294,
- -0.012640110217034817,
- 0.039002981036901474,
- 0.04155861213803291,
- 0.0024359622038900852,
- 0.006086643785238266,
- -0.0008285961230285466,
- -0.02451920136809349,
- -0.026026207953691483,
- -0.04216738045215607,
- 0.06077245622873306,
- -0.025582941249012947,
- 0.08750466257333755,
- -0.007370199076831341,
- 0.027710314840078354,
- 0.0025646176654845476,
- 0.06044739484786987,
- 0.09380210936069489,
- -0.025736000388860703,
- 0.08939749002456665,
- -0.042905014008283615,
- -0.10586675256490707,
- -0.010867905803024769,
- -0.014083094894886017,
- 0.0134399039670825,
- 0.03849630057811737,
- -0.08350612968206406,
- 0.09860730171203613,
- 0.11337937414646149,
- 0.006065682973712683,
- -0.044266317039728165,
- -0.010236025787889957,
- -0.026976989582180977,
- 0.015071932226419449,
- -0.0994037315249443,
- 0.06716673076152802,
- -0.009422916918992996,
- 0.0401633158326149,
- 0.031843796372413635,
- 0.06491462886333466,
- -0.05316954478621483,
- 0.01476719044148922,
- -0.06121206283569336,
- 0.010569654405117035,
- 0.08782460540533066,
- 0.03484977409243584,
- -0.10688852518796921,
- -0.008931709453463554,
- -0.03264675661921501,
- 0.0775783509016037,
- -0.05348992347717285,
- 4.081860786876207e-33,
- -0.034523509442806244,
- -0.033990371972322464,
- 0.011769012548029423,
- 0.01386518869549036,
- 0.09035078436136246,
- -0.05046844854950905,
- 0.018796874210238457,
- 0.04693572595715523,
- 0.01891147345304489,
- 0.031272318214178085,
- 0.011957178823649883,
- 0.029780199751257896,
- 0.008713630959391594,
- -0.030780959874391556,
- 0.00373781006783247,
- 0.005650592967867851,
- -0.0997939333319664,
- -0.04768854379653931,
- -0.04752500727772713,
- 0.0525844469666481,
- -0.03327399864792824,
- -0.025098595768213272,
- -0.021107301115989685,
- -0.003152698278427124,
- -0.038502804934978485,
- 0.045303743332624435,
- 0.07440154254436493,
- 0.09302635490894318,
- -0.03716379776597023,
- -0.05569839850068092,
- 0.0301319919526577,
- -0.06561875343322754,
- -0.011786825023591518,
- -0.0645163431763649,
- -0.06720314174890518,
- 0.14060091972351074,
- -0.05027088150382042,
- 0.0018983088666573167,
- -0.0475534126162529,
- 0.044476091861724854,
- 0.062055688351392746,
- -0.051362741738557816,
- 0.03469499573111534,
- 0.0986892506480217,
- 0.027245407924056053,
- -0.0598493292927742,
- 0.02957852929830551,
- -0.028458893299102783,
- 0.07174086570739746,
- -0.007334905676543713,
- -0.08124095946550369,
- 0.022699495777487755,
- 0.024553002789616585,
- -0.05577044561505318,
- 0.027747534215450287,
- 0.003423244459554553,
- -0.05576317757368088,
- -0.05463995784521103,
- -0.04906921461224556,
- 0.01228190865367651,
- 0.002649042522534728,
- -0.019537026062607765,
- 0.0207706019282341,
- 0.13705068826675415,
- -0.06914861500263214,
- 0.03316790983080864,
- -0.03427056595683098,
- -0.0249466672539711,
- -0.024353425949811935,
- 0.0009512953693047166,
- 0.11421669274568558,
- -0.011168940924108028,
- -0.07195478677749634,
- -0.019295621663331985,
- -0.020679090172052383,
- -0.013904806226491928,
- -0.02828269451856613,
- -0.022638414055109024,
- 0.018890291452407837,
- 0.06622866541147232,
- -0.10625718533992767,
- -0.08900202810764313,
- 0.06750205159187317,
- 0.09400160610675812,
- 0.0029584867879748344,
- 0.04325900971889496,
- -0.04783017188310623,
- -0.04484909027814865,
- 0.010848388075828552,
- -0.04907108098268509,
- 0.0445345975458622,
- -0.030088864266872406,
- -0.09736776351928711,
- -0.035061635076999664,
- 0.06673167645931244,
- -1.1332303095912266e-8,
- -0.0145747484639287,
- 0.013407932594418526,
- -0.05427929386496544,
- -0.026303473860025406,
- -0.01356678456068039,
- -0.060804687440395355,
- -0.06945658475160599,
- -0.024574046954512596,
- 0.03156531602144241,
- 0.10249748826026917,
- -0.03917272761464119,
- -0.015123466029763222,
- 0.03762650489807129,
- -0.032189249992370605,
- 0.09343928843736649,
- -0.09902524948120117,
- -0.03639831766486168,
- 0.1213388741016388,
- -0.09626694023609161,
- 0.03481687232851982,
- -0.0030037497635930777,
- -0.011954140849411488,
- 0.06856212764978409,
- -0.000756799359805882,
- -0.01653241366147995,
- -0.007269903551787138,
- -0.0030581848695874214,
- 0.07534758746623993,
- -0.004367646295577288,
- 0.12606339156627655,
- -0.005301461089402437,
- 0.09250593185424805,
- -0.010470411740243435,
- -0.032542601227760315,
- 0.011171066202223301,
- -0.047229353338479996,
- 0.048170387744903564,
- -0.021637020632624626,
- 0.0128594059497118,
- 0.011294499039649963,
- 0.02262929268181324,
- 0.01911596581339836,
- 0.003517774399369955,
- 0.08616388589143753,
- -0.014562757685780525,
- 0.026517175137996674,
- 0.009564869105815887,
- -0.03782983496785164,
- 0.03801095858216286,
- -0.02181209810078144,
- 0.03130365535616875,
- -0.02077769674360752,
- 0.03817708045244217,
- 0.02266320213675499,
- -0.04554632306098938,
- 0.06591402739286423,
- 0.02252189628779888,
- -0.033303696662187576,
- -0.11100514978170395,
- 0.030430350452661514,
- 0.042682260274887085,
- -0.07946076989173889,
- 0.06309785693883896,
- 0.044762685894966125
- ]
- },
- {
- "keyword": "expert",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.018127255141735077,
- 0.075148805975914,
- 0.014526392333209515,
- 0.06858120113611221,
- -0.05826897919178009,
- -0.06246460601687431,
- 0.12383858114480972,
- 0.11720190942287445,
- -0.05236194282770157,
- 0.029434289783239365,
- -0.051160216331481934,
- -0.0071956440806388855,
- 0.056473009288311005,
- 0.049334585666656494,
- -0.08555564284324646,
- 0.09150253981351852,
- -0.06401683390140533,
- -0.063878133893013,
- -0.11700410395860672,
- -0.04987311735749245,
- -0.08337611705064774,
- -0.07691900432109833,
- 0.0016912930877879262,
- -0.007621838245540857,
- -0.038549792021512985,
- 0.07511548697948456,
- 0.005266885738819838,
- 0.03135180473327637,
- -0.019938649609684944,
- -0.11071687936782837,
- -0.0045030200853943825,
- -0.0011376810725778341,
- 0.0033182434272021055,
- -0.022913962602615356,
- -0.005154482554644346,
- 0.054872896522283554,
- -0.08538757264614105,
- 0.07878781855106354,
- 0.08576536923646927,
- 0.006001192610710859,
- 0.04422569274902344,
- -0.057260915637016296,
- 0.026950670406222343,
- 0.014199834316968918,
- 0.016417553648352623,
- 0.06508577615022659,
- 0.0033639068715274334,
- -0.006102035753428936,
- 0.06804228574037552,
- 0.002925732173025608,
- -0.11350487172603607,
- -0.06400253623723984,
- -0.009467889554798603,
- -0.05590686574578285,
- 0.005263242870569229,
- 0.003630076302215457,
- -0.029572464525699615,
- -0.0027410241309553385,
- 0.03827403113245964,
- -0.0003811288042925298,
- 0.04851813614368439,
- 0.02592584304511547,
- -0.1343880146741867,
- -0.0029619161505252123,
- 0.09576328843832016,
- 0.0038803250063210726,
- 0.009113827720284462,
- 0.008900902234017849,
- -0.015652000904083252,
- -0.024952420964837074,
- -0.056373681873083115,
- 0.06085798889398575,
- -0.027143137529492378,
- 0.0439295694231987,
- 0.04251991957426071,
- -0.06728047132492065,
- 0.01658572256565094,
- 0.018082350492477417,
- 0.040818020701408386,
- 0.014392882585525513,
- -0.025566523894667625,
- 0.036095187067985535,
- -0.04823895916342735,
- 0.012080332264304161,
- 0.013464726507663727,
- -0.03504800796508789,
- -0.0800689160823822,
- 0.03100961074233055,
- -0.018207121640443802,
- -0.018080322071909904,
- -0.015683162957429886,
- -0.03468993678689003,
- 0.07315009832382202,
- 0.016838407143950462,
- 0.007867416366934776,
- 0.1163102462887764,
- 0.0444168746471405,
- -0.03517504036426544,
- -0.13266853988170624,
- 0.25239163637161255,
- -0.014157667756080627,
- -0.08897857367992401,
- -0.03620404750108719,
- 0.005007221829146147,
- -0.01280020922422409,
- -0.019583746790885925,
- -0.017362797632813454,
- 0.04885856434702873,
- 0.034407470375299454,
- -0.05248215049505234,
- -0.03443504869937897,
- -0.0029929254669696093,
- -0.017327552661299706,
- 0.007708679884672165,
- -0.015532811172306538,
- 0.10336951911449432,
- -0.03937555477023125,
- 0.06088050827383995,
- 0.028805408626794815,
- -0.017500024288892746,
- 0.020071769133210182,
- 0.05335783585906029,
- 0.016841137781739235,
- -0.010298688896000385,
- 0.07976758480072021,
- 0.006855573505163193,
- 0.008793606422841549,
- -6.179456987521652e-33,
- 0.009125948883593082,
- 0.026363329961895943,
- 0.02217419072985649,
- 0.07974613457918167,
- 0.01315423846244812,
- 0.005219197832047939,
- 0.005487161688506603,
- -0.018674567341804504,
- 0.054653726518154144,
- -0.015482812188565731,
- 0.036973100155591965,
- 0.05206326022744179,
- -0.0689670518040657,
- -0.045855812728405,
- 0.09874240309000015,
- 0.04437629505991936,
- -0.016001515090465546,
- 0.04125894233584404,
- -0.04940055310726166,
- 0.013739955611526966,
- 0.0011439085938036442,
- 0.020192531868815422,
- -0.033476315438747406,
- 0.01581450365483761,
- -0.0989098846912384,
- -0.04178566485643387,
- 0.08211495727300644,
- -0.020030174404382706,
- 0.07210908830165863,
- -0.0028140556532889605,
- -0.025505471974611282,
- -0.021920345723628998,
- 0.01537836529314518,
- -0.07454872876405716,
- 0.047633249312639236,
- -0.019721975550055504,
- -0.003452600911259651,
- -0.033081263303756714,
- -0.004520895890891552,
- 0.024172011762857437,
- -0.0664837509393692,
- 0.015168760903179646,
- -0.031310178339481354,
- 0.09410890936851501,
- -0.059254664927721024,
- 0.034707892686128616,
- 0.038846634328365326,
- -0.02256699465215206,
- -0.07737257331609726,
- 0.020032096654176712,
- -0.011089694686233997,
- -0.01611781120300293,
- -0.030933095142245293,
- 0.016670623794198036,
- 0.019618183374404907,
- 0.09544571489095688,
- 0.05781922861933708,
- -0.03097524680197239,
- 0.0019031063420698047,
- -0.048363521695137024,
- 0.005887383595108986,
- 0.1412326991558075,
- -0.020128339529037476,
- 0.028927607461810112,
- -0.040098223835229874,
- 0.014995112083852291,
- -0.015022845938801765,
- 0.016815053299069405,
- 0.04013946279883385,
- -0.0076185003854334354,
- -0.05881597101688385,
- 0.03770723193883896,
- 0.07718788832426071,
- 0.042013779282569885,
- -0.09102355688810349,
- -0.02536977268755436,
- -0.08878383785486221,
- 0.07288554310798645,
- 0.005812476389110088,
- -0.007154983468353748,
- -0.008708522655069828,
- 0.04790637642145157,
- 0.037073202431201935,
- -0.021852480247616768,
- 0.05045243352651596,
- 0.03384360671043396,
- 0.007178237196058035,
- -0.024222780019044876,
- 0.08246160298585892,
- 0.0036417117808014154,
- -0.06316405534744263,
- -0.027387546375393867,
- -0.01671682298183441,
- 0.03236985206604004,
- -0.06334832310676575,
- 5.3382772708350545e-33,
- -0.0692882314324379,
- -0.028074858710169792,
- -0.012413514778017998,
- 0.10569293051958084,
- 0.05350816994905472,
- -0.04590294882655144,
- -0.03034830652177334,
- 0.05528658255934715,
- -0.03219904005527496,
- 0.04505380615592003,
- 0.00673660496249795,
- 0.01088112872093916,
- 0.03399311378598213,
- 0.025295715779066086,
- 0.011448840610682964,
- 0.03331705927848816,
- -0.08406857401132584,
- 0.007868762128055096,
- 0.014117440208792686,
- -0.018209263682365417,
- -0.062386635690927505,
- -0.10465862601995468,
- -0.06927181035280228,
- 0.061806995421648026,
- -0.09462426602840424,
- 0.008448345586657524,
- 0.012456830590963364,
- 0.0627814382314682,
- -0.026423824951052666,
- -0.01098463125526905,
- 0.03638436645269394,
- -0.053168829530477524,
- -0.03670627251267433,
- -0.017562342807650566,
- 0.0048856656067073345,
- 0.14933720231056213,
- -0.03050687164068222,
- -0.00918994564563036,
- -0.012936670333147049,
- 0.03858225420117378,
- 0.01815800368785858,
- 0.046789854764938354,
- -0.013181864283978939,
- 0.052231695502996445,
- -0.08892811089754105,
- -0.015146598219871521,
- 0.010613634251058102,
- -0.012139014899730682,
- 0.07956233620643616,
- -0.02035977691411972,
- -0.08966229856014252,
- 0.02710724249482155,
- -0.03735321760177612,
- -0.07961099594831467,
- -0.041606344282627106,
- 0.03844672068953514,
- 0.07363930344581604,
- 0.04447818547487259,
- 0.026237772777676582,
- 0.014723103493452072,
- 0.0144988764077425,
- -0.04032869264483452,
- -0.013313048519194126,
- 0.09042292833328247,
- -0.0033610130194574594,
- 0.048128657042980194,
- -0.06800124794244766,
- -0.0057757943868637085,
- 0.043463241308927536,
- 0.045270007103681564,
- 0.04886870086193085,
- -0.018794212490320206,
- -0.0432962067425251,
- 0.02797185443341732,
- 0.02472730726003647,
- -0.00040453902329318225,
- -0.0600702278316021,
- -0.010785555467009544,
- -0.012588424608111382,
- -0.05557471886277199,
- -0.05013279244303703,
- -0.09237696975469589,
- 0.008495379239320755,
- 0.014162294566631317,
- 0.01454363577067852,
- 0.05946226790547371,
- 0.029080508276820183,
- -0.002758971881121397,
- 0.004260336980223656,
- -0.0508737787604332,
- 0.014818779192864895,
- -0.013663353398442268,
- -0.0640188530087471,
- -0.04593490809202194,
- -0.036074042320251465,
- -1.307100561120933e-8,
- -0.06891480088233948,
- 0.009379271417856216,
- -0.015929309651255608,
- 0.01473842840641737,
- 0.020421495661139488,
- -0.030268874019384384,
- -0.10801471769809723,
- -0.04297110065817833,
- -0.042212553322315216,
- 0.019565438851714134,
- 0.08830098062753677,
- -0.04932224750518799,
- 0.024065028876066208,
- 0.043005652725696564,
- 0.06226611137390137,
- -0.043529901653528214,
- 0.037734076380729675,
- 0.12752538919448853,
- -0.07380083948373795,
- 0.0524730384349823,
- 0.09008965641260147,
- -0.003564462997019291,
- 0.02460658922791481,
- -0.009425870142877102,
- 0.09401154518127441,
- -0.018123650923371315,
- -0.027973458170890808,
- 0.10201845318078995,
- -0.05018548294901848,
- 0.08761034160852432,
- -0.06114014983177185,
- 0.012105700559914112,
- 0.03096698597073555,
- 0.019290661439299583,
- 0.0668049305677414,
- 0.000568295014090836,
- 0.0297248438000679,
- -0.05275847017765045,
- -0.01974545046687126,
- 0.0037633541505783796,
- -0.038017284125089645,
- -0.048332586884498596,
- 0.004374011419713497,
- 0.023636681959033012,
- 0.0034146509133279324,
- -0.008485816419124603,
- 0.05955129861831665,
- -0.038793593645095825,
- 0.05490727722644806,
- 0.05593482777476311,
- -0.024182602763175964,
- -0.045436229556798935,
- 0.045446235686540604,
- 0.06245758756995201,
- 0.07438329607248306,
- -0.051435139030218124,
- -0.0020387950353324413,
- 0.0023012834135442972,
- -0.05187400430440903,
- 0.005888422019779682,
- 0.08580859005451202,
- 0.026375750079751015,
- 0.04394284263253212,
- 0.04194875806570053
- ]
- },
- {
- "keyword": "professional",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03143252432346344,
- 0.019718565046787262,
- -0.0013633453054353595,
- 0.022249002009630203,
- -0.030720392242074013,
- -0.024006767198443413,
- 0.058596305549144745,
- 0.10358817130327225,
- -0.02621774934232235,
- 0.06063924729824066,
- -0.054378166794776917,
- 0.0028683177661150694,
- -0.008692556992173195,
- 0.034038662910461426,
- -0.026095399633049965,
- 0.004900266416370869,
- 0.0030605460051447153,
- -0.05067054554820061,
- -0.008194527588784695,
- 0.0026722114998847246,
- -0.11551105976104736,
- -0.0011782131623476744,
- 0.0301592405885458,
- 0.038827087730169296,
- 0.0029219770804047585,
- -0.006094180978834629,
- -0.005163837224245071,
- 0.0774863213300705,
- -0.06455264240503311,
- -0.07372019439935684,
- -0.03548470512032509,
- -0.009544759057462215,
- 0.07671094685792923,
- 0.01813053898513317,
- 0.005067457444965839,
- -0.0006038544233888388,
- -0.059546370059251785,
- 0.11247357726097107,
- 0.0442546010017395,
- 0.04247630760073662,
- 0.010982094332575798,
- -0.07013321667909622,
- -0.07755032926797867,
- -0.028510652482509613,
- 0.014818649739027023,
- 0.0044510699808597565,
- 0.024849243462085724,
- -0.005359487142413855,
- 0.046950917690992355,
- -0.0037193673197180033,
- -0.06534505635499954,
- -0.09331785887479782,
- -0.01646699383854866,
- 0.008785395883023739,
- -0.03074066899716854,
- -0.022475365549325943,
- 0.03882185369729996,
- -0.07295674085617065,
- 0.008377013728022575,
- -0.02840692736208439,
- -0.015579484403133392,
- 0.01824408397078514,
- -0.12043535709381104,
- 0.027670176699757576,
- 0.06014585867524147,
- 0.011927338317036629,
- -0.0433838777244091,
- 0.02621360309422016,
- 0.028609653934836388,
- -0.0702688917517662,
- -0.08295712620019913,
- -0.006052540149539709,
- 0.03682024031877518,
- 0.09779743105173111,
- 0.1180630549788475,
- -0.0653020367026329,
- 0.0026163917500525713,
- -0.06163804233074188,
- 0.048575595021247864,
- -0.02059943601489067,
- 0.010644769296050072,
- 0.011550189927220345,
- -0.04833546280860901,
- -0.00017658753495197743,
- -0.04030393809080124,
- 0.017170464619994164,
- 0.03249480202794075,
- -0.009110845625400543,
- -0.01966671645641327,
- -0.012462766841053963,
- -0.03425035625696182,
- 0.013082306832075119,
- 0.056452780961990356,
- 0.01075125951319933,
- -0.062244970351457596,
- 0.010457243770360947,
- -0.008978679776191711,
- -0.10723894834518433,
- -0.03412483632564545,
- 0.24089087545871735,
- -0.008092588745057583,
- -0.03738267719745636,
- 0.017701830714941025,
- -0.028737252578139305,
- -0.034867022186517715,
- 0.013868308626115322,
- 0.018662361428141594,
- 0.06549864262342453,
- -0.053118880838155746,
- 0.04553200677037239,
- 0.006448325701057911,
- -0.010191421024501324,
- -0.12446094304323196,
- -0.0028108765836805105,
- 0.0006151560810394585,
- 0.13856731355190277,
- -0.1264839619398117,
- 0.08244751393795013,
- 0.08581096678972244,
- -0.04935231804847717,
- 0.006504860706627369,
- 0.04421079531311989,
- -0.06195856258273125,
- -0.010569371283054352,
- -0.04750609025359154,
- -0.053921446204185486,
- 0.07910110801458359,
- -5.7060843104195634e-33,
- 0.02617218904197216,
- 0.02615196444094181,
- 0.013254792429506779,
- 0.07671013474464417,
- 0.002324607688933611,
- 0.03966381028294563,
- -0.0021380784455686808,
- 0.001548922504298389,
- -0.016230221837759018,
- -0.02575998194515705,
- 0.015422569587826729,
- 0.06779961287975311,
- 0.0033665800001472235,
- 0.019786495715379715,
- 0.03464818000793457,
- 0.038859810680150986,
- -0.02442285791039467,
- 0.010385707020759583,
- -0.00537657318636775,
- 0.047609347850084305,
- -0.041986629366874695,
- 0.05056821182370186,
- -0.0049192290753126144,
- 0.05819723755121231,
- -0.023205924779176712,
- -0.004948614165186882,
- 0.00261214398778975,
- -0.01062323059886694,
- 0.06820210814476013,
- 0.011175085790455341,
- -0.05049125850200653,
- -0.020808765664696693,
- 0.03825640305876732,
- -0.006909110117703676,
- 0.0965493693947792,
- 0.05177085101604462,
- -0.02380353957414627,
- -0.054466214030981064,
- 0.05449932813644409,
- 0.0008851428283378482,
- -0.02839505672454834,
- -0.03556011617183685,
- 0.012519021518528461,
- 0.06398522853851318,
- 0.008109066635370255,
- 0.011737433262169361,
- -0.021653013303875923,
- 0.01522679254412651,
- -0.06616669148206711,
- 0.044641438871622086,
- 0.06381954252719879,
- -0.011438054963946342,
- -0.005733695346862078,
- 0.007096972316503525,
- -0.011228721588850021,
- 0.005977298133075237,
- 0.0590767040848732,
- -0.0023097768425941467,
- -0.024923957884311676,
- 0.006004977505654097,
- 0.09665864706039429,
- 0.17325568199157715,
- -0.03480540215969086,
- 0.04066416248679161,
- 0.016477597877383232,
- 0.0006471970700658858,
- -0.007765002548694611,
- 0.08669491857290268,
- 0.0656348466873169,
- -0.028420906513929367,
- -0.07717759162187576,
- 0.08654095977544785,
- 0.10105599462985992,
- 0.034770771861076355,
- -0.06584443897008896,
- -0.04381060600280762,
- -0.017581770196557045,
- -0.008078964427113533,
- 0.006429668981581926,
- 0.08140908181667328,
- -0.05127548798918724,
- 0.07451311498880386,
- -0.07855124771595001,
- 0.05014590919017792,
- 0.02936609834432602,
- -0.020170211791992188,
- -0.021310001611709595,
- 0.0038055789191275835,
- 0.08840743452310562,
- 0.08070091158151627,
- -0.08981197327375412,
- -0.009524564258754253,
- 0.028533615171909332,
- 0.12167956680059433,
- -0.050249118357896805,
- 4.700859581629915e-33,
- 0.014792431145906448,
- -0.03313843905925751,
- 0.036391645669937134,
- 0.17264531552791595,
- 0.06757719069719315,
- -0.04785368591547012,
- -0.003175711026415229,
- 0.004269266501069069,
- -0.00296762608923018,
- 0.06585965305566788,
- 0.01715254597365856,
- -0.059817709028720856,
- 0.0065224627032876015,
- -0.0049547916278243065,
- 0.0645170733332634,
- -0.020935073494911194,
- -0.11371959745883942,
- -0.023898232728242874,
- -0.04284020885825157,
- 0.04690031707286835,
- 0.08187585324048996,
- -0.043336283415555954,
- -0.00428560096770525,
- 0.0014282793272286654,
- -0.0318559855222702,
- -0.008917421102523804,
- 0.03377422317862511,
- 0.08585041016340256,
- -0.07941471040248871,
- -0.0008005900890566409,
- 0.06681779772043228,
- -0.012187998741865158,
- -0.05308466777205467,
- -0.00892673246562481,
- -0.07636662572622299,
- 0.13345681130886078,
- -0.04166126251220703,
- 0.026085034012794495,
- -0.013148564845323563,
- 0.007178730331361294,
- 0.00825287215411663,
- -0.024133432656526566,
- -0.05368184298276901,
- 0.02176082506775856,
- -0.03172053024172783,
- -0.025457283481955528,
- 0.006833180319517851,
- -0.06862518936395645,
- 0.049429379403591156,
- 0.002760311122983694,
- -0.08833525329828262,
- 0.003174424171447754,
- -0.0018222096841782331,
- -0.10446926206350327,
- -0.03326961770653725,
- -0.031825415790081024,
- 0.03602680563926697,
- -0.004182667005807161,
- -0.030461385846138,
- -0.01716003566980362,
- -0.01126486249268055,
- -0.008554944768548012,
- 0.03349865972995758,
- 0.07465622574090958,
- -0.02408643439412117,
- 0.02200067602097988,
- 0.01224852167069912,
- 0.021112771704792976,
- -0.054098982363939285,
- 0.04031287133693695,
- 0.06684524565935135,
- 0.011592613533139229,
- -0.10885659605264664,
- -0.0512348897755146,
- -0.045527972280979156,
- 0.003939394373446703,
- -0.050580717623233795,
- -0.0013559061335399747,
- -0.03710291162133217,
- 0.07758058607578278,
- -0.04322062432765961,
- -0.0677972063422203,
- 0.015931863337755203,
- 0.04650146886706352,
- -0.03260020911693573,
- 0.045740142464637756,
- -0.056001655757427216,
- -0.034175340086221695,
- -0.0594140961766243,
- 0.007257734425365925,
- 0.04225216433405876,
- -0.0076978253200650215,
- -0.042073749005794525,
- -0.029277632012963295,
- -0.002675829455256462,
- -1.2296392348787322e-8,
- 0.011544235050678253,
- 0.0827878937125206,
- 0.0038999265525490046,
- -0.015129097737371922,
- 0.06732208281755447,
- -0.0947982594370842,
- -0.06066446378827095,
- -0.07899776846170425,
- 0.022141864523291588,
- 0.04209732264280319,
- 0.005724736489355564,
- -0.09250986576080322,
- 0.030409792438149452,
- -0.00003941945033147931,
- 0.09387759864330292,
- -0.010338641703128815,
- -0.004759710747748613,
- 0.10820755362510681,
- -0.06875266134738922,
- 0.011898341588675976,
- 0.03982109948992729,
- -0.006773964501917362,
- -0.04075928032398224,
- 0.035560235381126404,
- -0.004466408863663673,
- 0.008436689153313637,
- -0.05210122466087341,
- 0.034291770309209824,
- -0.056320175528526306,
- 0.09505961835384369,
- 0.02789638563990593,
- 0.029346857219934464,
- 0.0017578472616150975,
- -0.09540361911058426,
- 0.06395918130874634,
- -0.05599052459001541,
- 0.07038258016109467,
- -0.033180106431245804,
- -0.060248587280511856,
- 0.045489076524972916,
- 0.027037693187594414,
- -0.009606508538126945,
- 0.017042966559529305,
- -0.015394466929137707,
- -0.026523303240537643,
- 0.006009429693222046,
- 0.05636901780962944,
- -0.00027464638696983457,
- -0.013809524476528168,
- 0.040163613855838776,
- 0.025464968755841255,
- -0.020788155496120453,
- 0.01111454889178276,
- -0.0001774819102138281,
- -0.03743516653776169,
- 0.03996403515338898,
- -0.014423707500100136,
- -0.06120074912905693,
- -0.11409451067447662,
- 0.002061437116935849,
- 0.05543261021375656,
- -0.045304425060749054,
- 0.05200325697660446,
- 0.01550699770450592
- ]
- },
- {
- "keyword": "lawyer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.058201879262924194,
- 0.10897646099328995,
- -0.01563986763358116,
- 0.0030743503011763096,
- -0.0582025907933712,
- 0.004408394917845726,
- 0.0918298065662384,
- 0.07844669371843338,
- 0.02531779371201992,
- 0.01377155538648367,
- -0.0164395309984684,
- 0.010422569699585438,
- -0.02102747932076454,
- -0.00023466946731787175,
- 0.022493582218885422,
- 0.07192259281873703,
- 0.008398327976465225,
- 0.0014358130283653736,
- -0.12241873890161514,
- -0.036564283072948456,
- -0.1568150818347931,
- 0.045610081404447556,
- -0.03484610095620155,
- 0.004492816049605608,
- 0.008130090311169624,
- -0.028511207550764084,
- -0.03480423614382744,
- -0.02370676025748253,
- 0.006043925415724516,
- -0.07338086515665054,
- 0.014666823670268059,
- -0.0026439763605594635,
- 0.027703629806637764,
- 0.0254999790340662,
- -0.026397621259093285,
- -0.026843659579753876,
- -0.03176047280430794,
- 0.03227446228265762,
- 0.04164183884859085,
- 0.06160030514001846,
- 0.03920193761587143,
- 0.017534978687763214,
- -0.01195541676133871,
- 0.007433177437633276,
- 0.03005354106426239,
- 0.012784354388713837,
- 0.0670374408364296,
- 0.04653530567884445,
- 0.02867121249437332,
- 0.011207965202629566,
- -0.10978727042675018,
- 0.0021328602451831102,
- -0.033003225922584534,
- 0.01776629313826561,
- -0.014199644327163696,
- -0.03526386246085167,
- 0.020029159262776375,
- 0.05279655382037163,
- 0.004474582150578499,
- 0.023298095911741257,
- 0.0006934028933756053,
- 0.04662473872303963,
- -0.011818387545645237,
- 0.010950361378490925,
- 0.0070824832655489445,
- 0.04815793037414551,
- 0.032122619450092316,
- 0.08547193557024002,
- -0.05343922972679138,
- -0.02533629909157753,
- 0.0346623919904232,
- -0.025568177923560143,
- 0.005708159413188696,
- -0.005586558021605015,
- -0.02587655745446682,
- -0.06571938842535019,
- 0.05872684344649315,
- 0.045205648988485336,
- 0.08151622861623764,
- -0.07931167632341385,
- 0.00601954385638237,
- -0.07484254240989685,
- -0.14462849497795105,
- -0.05190549045801163,
- -0.03831987828016281,
- -0.0021746072452515364,
- 0.04445548728108406,
- 0.053234755992889404,
- 0.019367411732673645,
- 0.053773846477270126,
- 0.026219703257083893,
- -0.07430564612150192,
- 0.11112258583307266,
- 0.005522482562810183,
- -0.05408424139022827,
- 0.060263004153966904,
- -0.012041307054460049,
- -0.0762074738740921,
- -0.06054111197590828,
- 0.25582635402679443,
- -0.0012435594107955694,
- 0.0024359228555113077,
- 0.03376460075378418,
- 0.013659123331308365,
- 0.030906181782484055,
- -0.0035258519928902388,
- -0.00040173716843128204,
- 0.027389291673898697,
- 0.01372700184583664,
- 0.031182285398244858,
- 0.012465298175811768,
- 0.05529211461544037,
- -0.016053849831223488,
- 0.017186559736728668,
- 0.012737838551402092,
- 0.08452162146568298,
- 0.011935560032725334,
- 0.10001973807811737,
- 0.0887690857052803,
- -0.02953970991075039,
- -0.01574414223432541,
- 0.1176295354962349,
- -0.07059723138809204,
- 0.01894465833902359,
- -0.037468764930963516,
- -0.06214518845081329,
- -0.029370799660682678,
- -5.629071798025441e-33,
- -0.015025554224848747,
- -0.043395861983299255,
- -0.0025430922396481037,
- 0.03337618336081505,
- 0.028684934601187706,
- 0.0047666882164776325,
- -0.008217436261475086,
- 0.004090447910130024,
- -0.06241421401500702,
- 0.020417286083102226,
- -0.013786074705421925,
- -0.025071822106838226,
- -0.027527257800102234,
- -0.0588790625333786,
- 0.0018178977770730853,
- 0.10186608880758286,
- -0.11814077198505402,
- 0.008354086428880692,
- -0.00766327790915966,
- -0.05288691073656082,
- -0.031204624101519585,
- 0.03662854805588722,
- -0.024608857929706573,
- 0.16152802109718323,
- -0.048099637031555176,
- -0.07294293493032455,
- 0.09771813452243805,
- -0.060679562389850616,
- 0.10075294226408005,
- -0.0037500152830034494,
- 0.014273086562752724,
- 0.03610740974545479,
- 0.0744275152683258,
- -0.0018899545539170504,
- 0.06114742159843445,
- 0.01581842079758644,
- -0.07055363059043884,
- -0.031113717705011368,
- 0.04102746769785881,
- 0.023452913388609886,
- -0.06641632318496704,
- -0.017745526507496834,
- 0.035700857639312744,
- -0.0026992144994437695,
- -0.036690086126327515,
- 0.0052949064411222935,
- -0.02858809009194374,
- 0.0029112561605870724,
- -0.05900390446186066,
- 0.04874814301729202,
- -0.025379996746778488,
- -0.021519513800740242,
- 0.04898112267255783,
- -0.01461067982017994,
- 0.01661951281130314,
- -0.0211466234177351,
- -0.047192707657814026,
- 0.017040517181158066,
- -0.02242846041917801,
- -0.008892920799553394,
- 0.01416056603193283,
- 0.1388353705406189,
- 0.001110554556362331,
- 0.04756271839141846,
- -0.08092352002859116,
- -0.051816899329423904,
- -0.018926993012428284,
- 0.019426826387643814,
- 0.05546313151717186,
- -0.07378092408180237,
- -0.035093147307634354,
- 0.04621608182787895,
- 0.07357920706272125,
- 0.01707327738404274,
- -0.03365446999669075,
- -0.024606794118881226,
- 0.011473705060780048,
- -0.019724642857909203,
- -0.009236662648618221,
- -0.0356469601392746,
- -0.053984634578228,
- 0.03805020451545715,
- 0.0011182883754372597,
- 0.05759037286043167,
- 0.0373198576271534,
- -0.02512906864285469,
- -0.0646791011095047,
- -0.049175381660461426,
- 0.030392656102776527,
- 0.05433171987533569,
- -0.09615764021873474,
- -0.014946161769330502,
- 0.0434596948325634,
- 0.07955758273601532,
- 0.0350211076438427,
- 4.0209488736685037e-33,
- -0.07998046278953552,
- -0.14919514954090118,
- 0.041576799005270004,
- 0.028286535292863846,
- 0.029687432572245598,
- -0.04859071597456932,
- 0.0110165448859334,
- 0.007154545746743679,
- -0.08928421139717102,
- 0.03987495228648186,
- -0.09293467551469803,
- -0.06415066868066788,
- 0.06253334134817123,
- 0.0032628842163830996,
- 0.00039734842721372843,
- 0.02573198825120926,
- 0.009103037416934967,
- -0.038987286388874054,
- -0.022487571462988853,
- 0.03622697293758392,
- -0.00007000287587288767,
- -0.0728415921330452,
- 0.004070482216775417,
- 0.042187999933958054,
- -0.0542292445898056,
- 0.01923813298344612,
- 0.09480807930231094,
- 0.007367881014943123,
- 0.010284013114869595,
- 0.0098966583609581,
- -0.007497845683246851,
- -0.015786688774824142,
- -0.13154636323451996,
- -0.05774199962615967,
- -0.07611715793609619,
- 0.0882631242275238,
- 0.09902235120534897,
- -0.050659652799367905,
- -0.03799859806895256,
- -0.04243945702910423,
- 0.0648997500538826,
- -0.028304221108555794,
- 0.10517748445272446,
- 0.05966205149888992,
- -0.04156927019357681,
- -0.016729874536395073,
- 0.03961247205734253,
- -0.001369535573758185,
- 0.022127298638224602,
- -0.03248884156346321,
- -0.04576919227838516,
- -0.004283732734620571,
- 0.03583541885018349,
- 0.03391804173588753,
- -0.0035092956386506557,
- -0.0453813374042511,
- 0.026001079007983208,
- -0.0033047515898942947,
- -0.009370583109557629,
- 0.01439300924539566,
- 0.015736766159534454,
- 0.04200875014066696,
- 0.0002886954171117395,
- 0.0641128420829773,
- -0.07276113331317902,
- 0.019245829433202744,
- -0.026847869157791138,
- 0.026819108054041862,
- -0.04531537741422653,
- -0.024147851392626762,
- 0.1184319481253624,
- -0.033877644687891006,
- -0.0651865005493164,
- -0.016375435516238213,
- 0.021470068022608757,
- 0.025838296860456467,
- -0.07348710298538208,
- -0.04895691201090813,
- -0.059313107281923294,
- -0.04519861564040184,
- 0.04425540193915367,
- -0.07924928516149521,
- -0.009584053419530392,
- 0.0948038250207901,
- -0.08374527841806412,
- -0.0015831203199923038,
- 0.015723329037427902,
- 0.005307551007717848,
- 0.037592217326164246,
- 0.03691825270652771,
- 0.011245585978031158,
- 0.004366127774119377,
- 0.013032115064561367,
- 0.032817162573337555,
- 0.030949706211686134,
- -1.2568349916364241e-8,
- -0.04537057504057884,
- 0.015123430639505386,
- 0.016942935064435005,
- -0.10305625200271606,
- -0.04305756464600563,
- -0.035957492887973785,
- -0.036372918635606766,
- -0.0017923517152667046,
- -0.016244642436504364,
- -0.007649105973541737,
- 0.014720886014401913,
- -0.024284927174448967,
- -0.03187708929181099,
- -0.011550381779670715,
- 0.014942215755581856,
- -0.08455073088407516,
- 0.040778979659080505,
- 0.02692645974457264,
- 0.030062129721045494,
- 0.039213456213474274,
- -0.08419351279735565,
- -0.020385650917887688,
- -0.0035495227202773094,
- 0.04829584062099457,
- 0.010648881085216999,
- 0.0010969506110996008,
- 0.028379429131746292,
- 0.05554503947496414,
- 0.01963600143790245,
- 0.07854128628969193,
- -0.03131586313247681,
- 0.10941669344902039,
- -0.012491680681705475,
- -0.0826360359787941,
- -0.03712410852313042,
- -0.10246274620294571,
- 0.0031021705362945795,
- -0.040784407407045364,
- 0.009772145189344883,
- 0.005013483110815287,
- -0.0715690478682518,
- -0.020341042429208755,
- 0.013887259177863598,
- -0.005303711164742708,
- 0.01770239695906639,
- -0.040967971086502075,
- 0.042273737490177155,
- 0.05765102431178093,
- 0.02923639677464962,
- -0.024611739441752434,
- 0.03483178839087486,
- -0.042332857847213745,
- 0.024105414748191833,
- 0.01385190524160862,
- 0.048909276723861694,
- 0.011039731092751026,
- 0.05290632322430611,
- 0.04602181911468506,
- -0.09148988127708435,
- 0.010624034330248833,
- 0.1309259980916977,
- -0.02802993357181549,
- 0.06631938368082047,
- 0.05501158908009529
- ]
- },
- {
- "keyword": "attorney",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.05649185925722122,
- 0.13178104162216187,
- -0.017025506123900414,
- 0.014080439694225788,
- -0.08634472638368607,
- -0.007591302040964365,
- 0.06259598582983017,
- 0.029517358168959618,
- 0.055040549486875534,
- 0.0024641368072479963,
- -0.017128339037299156,
- 0.027113012969493866,
- -0.039275873452425,
- -0.01860678195953369,
- 0.025752892717719078,
- 0.09051252156496048,
- 0.017357198521494865,
- 0.048620350658893585,
- -0.06423669308423996,
- -0.03600044548511505,
- -0.09069973975419998,
- 0.014980127103626728,
- -0.04163474217057228,
- 0.0021586802322417498,
- -0.006294331047683954,
- 0.004973491653800011,
- -0.0021688102278858423,
- -0.014378557913005352,
- 0.010990985669195652,
- -0.06466171890497208,
- 0.01105576939880848,
- -0.04523828998208046,
- 0.01926329918205738,
- 0.00007701549475314096,
- -0.004622042644768953,
- -0.012680338695645332,
- -0.032864898443222046,
- 0.04236023500561714,
- 0.033825524151325226,
- 0.06833798438310623,
- 0.01995553821325302,
- -0.012430495582520962,
- -0.009442311711609364,
- -0.0076088435016572475,
- -0.003987393341958523,
- -0.0048085046000778675,
- 0.05178290605545044,
- 0.06484341621398926,
- 0.0242854505777359,
- 0.04752403870224953,
- -0.10861311852931976,
- -0.00587840611115098,
- -0.01712970621883869,
- 0.04096853733062744,
- -0.03675376996397972,
- -0.020151199772953987,
- 0.04752671718597412,
- 0.010587186552584171,
- 0.02463146112859249,
- 0.03274361044168472,
- -0.0030394853092730045,
- 0.0573958121240139,
- -0.019509127363562584,
- 0.0569201335310936,
- 0.020144134759902954,
- 0.001034736866131425,
- 0.048189397901296616,
- 0.006484339479357004,
- -0.08724755048751831,
- -0.10153985768556595,
- 0.054259516298770905,
- -0.043246880173683167,
- -0.0037314605433493853,
- -0.0038096143398433924,
- -0.019133713096380234,
- -0.05875701084733009,
- 0.057112645357847214,
- 0.029851974919438362,
- 0.06301514059305191,
- -0.05909401923418045,
- 0.046187445521354675,
- -0.004601939115673304,
- -0.09299663454294205,
- -0.0443192757666111,
- -0.0513034425675869,
- 0.023521723225712776,
- 0.04314238578081131,
- 0.05831911042332649,
- 0.041080307215452194,
- 0.04545792564749718,
- 0.043630145490169525,
- -0.06375350803136826,
- 0.125471830368042,
- 0.0006168240215629339,
- -0.010534821078181267,
- 0.05797108635306358,
- -0.011820901185274124,
- -0.05252278596162796,
- -0.07859528809785843,
- 0.22853046655654907,
- -0.0027925153262913227,
- -0.012521306052803993,
- -0.012794280424714088,
- 0.0065461378544569016,
- 0.010966203175485134,
- -0.006439403630793095,
- -0.010968550108373165,
- -0.004605968948453665,
- -0.01871735043823719,
- 0.0638628676533699,
- -0.008113313466310501,
- 0.040252506732940674,
- -0.04456961154937744,
- 0.05394820496439934,
- 0.03760245069861412,
- 0.051775913685560226,
- -0.023760322481393814,
- 0.11205167323350906,
- 0.11411353945732117,
- -0.057729654014110565,
- -0.023812049999833107,
- 0.09411659836769104,
- -0.023962192237377167,
- 0.026743454858660698,
- -0.0211309976875782,
- -0.02333713509142399,
- -0.035722680389881134,
- -4.8863999773056895e-33,
- -0.005995364859700203,
- 0.03427768871188164,
- -0.015009822323918343,
- 0.045155804604291916,
- 0.03657079115509987,
- 0.015989085659384727,
- -0.020528536289930344,
- 0.005095188971608877,
- -0.023038668558001518,
- 0.03456908091902733,
- 0.00038423322257585824,
- 0.010623997077345848,
- -0.014168048277497292,
- -0.07821610569953918,
- -0.02985868789255619,
- 0.07132221758365631,
- -0.09935265779495239,
- 0.03816703334450722,
- -0.020630549639463425,
- -0.05535741150379181,
- -0.04829514026641846,
- 0.027877623215317726,
- -0.02997058629989624,
- 0.14242252707481384,
- -0.04046112298965454,
- -0.024278784170746803,
- 0.07137774676084518,
- -0.042482975870370865,
- 0.012386990711092949,
- 0.005507987923920155,
- 0.03678838536143303,
- 0.005332620814442635,
- 0.08172351121902466,
- -0.0022639913950115442,
- 0.04586904123425484,
- 0.020917674526572227,
- -0.054715290665626526,
- -0.024067848920822144,
- 0.00981393177062273,
- 0.005910716950893402,
- -0.05425864830613136,
- -0.034135229885578156,
- 0.1052757054567337,
- 0.005873853340744972,
- -0.07795494049787521,
- -0.02926340140402317,
- -0.0010381665779277682,
- 0.008111408911645412,
- -0.056520674377679825,
- 0.06983699649572372,
- -0.03236236423254013,
- -0.008177743293344975,
- -0.023705309256911278,
- 0.014330596663057804,
- 0.031190305948257446,
- -0.030495760962367058,
- -0.01333495881408453,
- -0.005994011182337999,
- 0.006580509711056948,
- -0.03976551070809364,
- 0.03429289907217026,
- 0.11988463997840881,
- -0.026958728209137917,
- 0.04296763986349106,
- -0.06977850198745728,
- -0.08667132258415222,
- -0.01747966557741165,
- 0.007872742600739002,
- 0.05121201276779175,
- -0.07491401582956314,
- -0.06165866553783417,
- 0.036204464733600616,
- 0.12074242532253265,
- 0.0015409777406603098,
- -0.05992388725280762,
- -0.06650731712579727,
- -0.004890562035143375,
- 0.02260061912238598,
- -0.036713872104883194,
- -0.031772829592227936,
- -0.07385522872209549,
- 0.024720152840018272,
- 0.0371062234044075,
- 0.08550204336643219,
- 0.0005335802561603487,
- -0.014527231454849243,
- -0.10398894548416138,
- -0.05331047996878624,
- 0.02795637585222721,
- 0.07157542556524277,
- -0.09497397392988205,
- -0.01810445450246334,
- 0.01955382712185383,
- 0.09638972580432892,
- 0.03413308411836624,
- 2.7861844446388256e-33,
- -0.06346823275089264,
- -0.15149861574172974,
- 0.03867443650960922,
- -0.011117157526314259,
- 0.023659268394112587,
- -0.0915093943476677,
- 0.023590125143527985,
- 0.007162549067288637,
- -0.052186645567417145,
- -0.035592030733823776,
- -0.09575648605823517,
- -0.011372175067663193,
- 0.03226879611611366,
- 0.04356193542480469,
- 0.012643829919397831,
- 0.009045868180692196,
- 0.03358928859233856,
- -0.02742968499660492,
- 0.0010507936822250485,
- -0.03743543475866318,
- -0.022623352706432343,
- -0.053401000797748566,
- 0.053500495851039886,
- 0.013818386942148209,
- -0.04293644055724144,
- 0.0012076355051249266,
- 0.11978186666965485,
- 0.031902991235256195,
- 0.003328452119603753,
- 0.001425540423952043,
- -0.028288044035434723,
- -0.06943587958812714,
- -0.0848303884267807,
- -0.003701280103996396,
- -0.08622745424509048,
- 0.047880709171295166,
- 0.07025648653507233,
- -0.05779823288321495,
- -0.062381330877542496,
- -0.008519712835550308,
- 0.06733108311891556,
- 0.0020280624739825726,
- 0.14868314564228058,
- 0.08809571713209152,
- -0.02276032790541649,
- 0.006753440015017986,
- 0.03944159671664238,
- -0.03587404265999794,
- 0.016643283888697624,
- -0.05347815901041031,
- -0.1029733195900917,
- -0.016080377623438835,
- 0.035755690187215805,
- 0.009767487645149231,
- -0.01799301989376545,
- -0.027346419170498848,
- 0.09509839117527008,
- -0.029652895405888557,
- -0.022671494632959366,
- 0.005463788751512766,
- 0.02390076406300068,
- 0.07789283990859985,
- 0.0017558126710355282,
- 0.06871946156024933,
- -0.03817711025476456,
- 0.02495109848678112,
- -0.053686466068029404,
- -0.016461623832583427,
- -0.02946534752845764,
- -0.012313272804021835,
- 0.09354595094919205,
- -0.08300534635782242,
- -0.11453600227832794,
- -0.043234098702669144,
- 0.015657300129532814,
- 0.011314460076391697,
- -0.04703443869948387,
- -0.04986871778964996,
- -0.05472499132156372,
- -0.06990566849708557,
- 0.01567293144762516,
- -0.05836482718586922,
- -0.024324430152773857,
- 0.07575167715549469,
- -0.045801810920238495,
- -0.014440963044762611,
- 0.026555757969617844,
- -0.06475501507520676,
- 0.028972359374165535,
- 0.0745556578040123,
- 0.04559852555394173,
- 0.04549497738480568,
- 0.003980239387601614,
- 0.03345928713679314,
- 0.02391969785094261,
- -1.1867586025005039e-8,
- -0.05491529777646065,
- 0.037510376423597336,
- 0.07855218648910522,
- -0.08209484070539474,
- 0.03614262118935585,
- -0.06764048337936401,
- 0.01939765363931656,
- -0.01577642746269703,
- 0.014282896183431149,
- 0.0029974067583680153,
- 0.009324503131210804,
- -0.04706616699695587,
- -0.005608673207461834,
- -0.016781773418188095,
- 0.03121095709502697,
- -0.0833817571401596,
- 0.004342618864029646,
- 0.033354949206113815,
- -0.0005567485350184143,
- 0.02450430765748024,
- -0.08452395349740982,
- 0.012010072357952595,
- -0.024959716945886612,
- -0.0009061713935807347,
- -0.00020545498409774154,
- 0.007471021264791489,
- 0.010453708469867706,
- 0.046610962599515915,
- -0.006099245045334101,
- 0.13405674695968628,
- -0.07046259194612503,
- 0.13989213109016418,
- 0.008520920760929585,
- -0.06211818754673004,
- -0.05954258143901825,
- -0.10883034020662308,
- 0.000915867742151022,
- -0.021225126460194588,
- 0.02356533706188202,
- -0.052080556750297546,
- -0.0726979672908783,
- 0.006632321514189243,
- 0.040896572172641754,
- -0.006983758881688118,
- -0.00516623817384243,
- -0.014988847076892853,
- 0.01336181815713644,
- 0.029597396031022072,
- 0.03438667953014374,
- 0.0012117194710299373,
- 0.007013831287622452,
- -0.05049419030547142,
- 0.0018985157366842031,
- 0.016925331205129623,
- 0.022067857906222343,
- -0.03203478828072548,
- 0.06950400769710541,
- 0.02170516923069954,
- -0.06665292382240295,
- 0.021653909236192703,
- 0.11702364683151245,
- -0.0003233547031413764,
- 0.05012187361717224,
- 0.054500844329595566
- ]
- },
- {
- "keyword": "judge",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.016334807500243187,
- 0.10705927014350891,
- -0.07395763695240021,
- -0.030564485117793083,
- -0.008812112733721733,
- 0.03368033468723297,
- 0.17886567115783691,
- 0.05356152728199959,
- 0.00997144915163517,
- 0.018522856757044792,
- 0.03363212198019028,
- -0.09895045310258865,
- 0.022362973541021347,
- -0.05337084084749222,
- -0.06423596292734146,
- 0.06362947821617126,
- 0.08867564052343369,
- 0.004398802760988474,
- -0.024700326845049858,
- -0.04026566073298454,
- -0.10136408358812332,
- 0.08380714058876038,
- 0.0005374975153245032,
- -0.008338794112205505,
- -0.0502038411796093,
- -0.0013017620658501983,
- -0.07422720640897751,
- -0.010249326005578041,
- -0.019217228516936302,
- -0.08899778127670288,
- -0.030339958146214485,
- 0.010444398038089275,
- 0.02344145067036152,
- 0.0271834135055542,
- -0.04777118191123009,
- -0.07694482058286667,
- 0.017919117584824562,
- 0.012112801894545555,
- 0.005916142370551825,
- -0.05447990447282791,
- 0.02819165028631687,
- 0.005806130822747946,
- -0.041497014462947845,
- -0.005950622726231813,
- 0.028193660080432892,
- -0.021418867632746696,
- -0.003105154959484935,
- 0.011921202763915062,
- 0.027212275192141533,
- 0.01668720692396164,
- -0.05262107774615288,
- 0.0024190291296690702,
- 0.05634249374270439,
- 0.006586560979485512,
- -0.014273800887167454,
- 0.04833798110485077,
- -0.02330019883811474,
- 0.08037861436605453,
- 0.016784576699137688,
- 0.0010010846890509129,
- 0.01437092013657093,
- -0.01037379540503025,
- -0.046516649425029755,
- 0.030986212193965912,
- 0.025573302060365677,
- 0.025484826415777206,
- 0.01326080970466137,
- -0.040193893015384674,
- 0.01525629311800003,
- -0.05736710503697395,
- 0.03797845542430878,
- 0.06413500010967255,
- 0.0581541582942009,
- -0.034292541444301605,
- -0.04293527826666832,
- 0.004011199809610844,
- 0.04246266558766365,
- -0.0547984279692173,
- 0.12316098064184189,
- 0.003609165782108903,
- -0.07019291818141937,
- -0.07762221246957779,
- -0.09809292107820511,
- -0.05914706364274025,
- 0.0177778210490942,
- -0.06289295852184296,
- 0.03923078998923302,
- -0.007519586943089962,
- 0.00714919064193964,
- 0.025808649137616158,
- 0.04339408501982689,
- 0.022913165390491486,
- 0.01207667775452137,
- -0.041861508041620255,
- -0.06354042887687683,
- 0.013342911377549171,
- -0.03895307704806328,
- 0.022008175030350685,
- 0.0620272159576416,
- 0.3033786416053772,
- 0.021067656576633453,
- 0.04520483314990997,
- -0.04268018901348114,
- -0.00213278247974813,
- 0.04831734299659729,
- -0.008849975652992725,
- -0.04585425928235054,
- 0.0049654701724648476,
- -0.00996575877070427,
- -0.05535460636019707,
- -0.0337909460067749,
- 0.004737287759780884,
- 0.05353885516524315,
- 0.06887979060411453,
- 0.045292943716049194,
- 0.0804564356803894,
- 0.04558131843805313,
- 0.03565768525004387,
- -0.0002151692460756749,
- -0.049824927002191544,
- -0.01891695149242878,
- 0.04867563396692276,
- -0.09966087341308594,
- 0.05543336644768715,
- 0.003238669829443097,
- -0.044717077165842056,
- -0.018814632669091225,
- -5.715601773899393e-33,
- 0.010569277219474316,
- -0.09303919970989227,
- 0.021569620817899704,
- -0.09505977481603622,
- 0.01235185656696558,
- 0.06086404249072075,
- -0.0563400499522686,
- -0.004084248095750809,
- -0.06810054183006287,
- 0.03812461718916893,
- 0.030276084318757057,
- -0.023590192198753357,
- -0.015007680281996727,
- -0.07194901257753372,
- 0.04035021737217903,
- 0.10210055857896805,
- -0.04616963490843773,
- 0.0335448794066906,
- -0.047251008450984955,
- 0.002580381464213133,
- 0.019247369840741158,
- 0.0006201136857271194,
- -0.003204463981091976,
- 0.0942234918475151,
- -0.10910622775554657,
- -0.010516975075006485,
- 0.06554491817951202,
- -0.029605766758322716,
- 0.07564642280340195,
- 0.01366480439901352,
- -0.026116322726011276,
- 0.032555319368839264,
- 0.09420429915189743,
- 0.04283730313181877,
- 0.02644137293100357,
- -0.025599757209420204,
- -0.018115945160388947,
- 0.02674245648086071,
- 0.03935663774609566,
- -0.08018992096185684,
- -0.038331661373376846,
- -0.010878421366214752,
- 0.030804531648755074,
- -0.04221063852310181,
- -0.09622129052877426,
- 0.005727970972657204,
- -0.018526144325733185,
- -0.00974476058036089,
- -0.017829865217208862,
- 0.05911312624812126,
- -0.04594725742936134,
- -0.04060060530900955,
- 0.041551489382982254,
- 0.051505040377378464,
- -0.04478512331843376,
- 0.03343390300869942,
- -0.012898026034235954,
- 0.024446599185466766,
- 0.013775574043393135,
- 0.020033465698361397,
- -0.02969220094382763,
- 0.14335620403289795,
- -0.008434299379587173,
- -0.016483016312122345,
- -0.02277272380888462,
- -0.06414857506752014,
- -0.006865568459033966,
- -0.0705602839589119,
- 0.0531434640288353,
- -0.05534110218286514,
- -0.007744546514004469,
- 0.015817387029528618,
- 0.053437523543834686,
- 0.040785714983940125,
- -0.016337867826223373,
- -0.03751571103930473,
- 0.07125004380941391,
- 0.04499729722738266,
- -0.0833774283528328,
- -0.035938724875450134,
- 0.012658671475946903,
- 0.056644000113010406,
- -0.007244425360113382,
- 0.042774464935064316,
- 0.057553842663764954,
- -0.08153928816318512,
- -0.08823823928833008,
- -0.027430923655629158,
- 0.05701354518532753,
- 0.01938401535153389,
- -0.026438862085342407,
- -0.014232255518436432,
- 0.0818236693739891,
- 0.01649053581058979,
- 0.013731232844293118,
- 4.4350736967532724e-33,
- -0.08011597394943237,
- -0.05955309048295021,
- 0.011791102588176727,
- 0.05796248838305473,
- -0.02487265318632126,
- -0.06287331134080887,
- -0.05460368096828461,
- -0.016116568818688393,
- -0.08743378520011902,
- -0.045321881771087646,
- -0.13465619087219238,
- -0.020900432020425797,
- 0.07736791670322418,
- 0.011965608224272728,
- -0.009828673675656319,
- 0.016393352299928665,
- 0.0371590219438076,
- -0.02127523347735405,
- -0.028711911290884018,
- -0.003684979397803545,
- 0.07768053561449051,
- 0.03819206729531288,
- -0.06517687439918518,
- 0.08879473060369492,
- -0.07999280095100403,
- 0.016169842332601547,
- 0.10365141183137894,
- -0.07381217181682587,
- -0.03278302773833275,
- 0.017072074115276337,
- -0.03497013822197914,
- -0.054041460156440735,
- -0.022547800093889236,
- 0.0022580851800739765,
- -0.014025421813130379,
- -0.03321041911840439,
- 0.11615129560232162,
- -0.03190868720412254,
- -0.017313707619905472,
- 0.06988668441772461,
- -0.04338952153921127,
- 0.004354814998805523,
- -0.0027108201757073402,
- -0.0317842997610569,
- 0.013854749500751495,
- 0.01949315145611763,
- -0.0046247029677033424,
- 0.10543297976255417,
- -0.004577774554491043,
- 0.005383000709116459,
- -0.11655379831790924,
- 0.020761027932167053,
- 0.01310014259070158,
- 0.02395341359078884,
- -0.00287785567343235,
- -0.09137891978025436,
- -0.03013370931148529,
- 0.041214313358068466,
- -0.03897297754883766,
- 0.01149731781333685,
- 0.03862759470939636,
- 0.05056437477469444,
- -0.06687851995229721,
- 0.027197325602173805,
- -0.03707137331366539,
- 0.05013582482933998,
- -0.04980248957872391,
- -0.03154632821679115,
- -0.024367766454815865,
- 0.023869432508945465,
- 0.027745895087718964,
- -0.047697462141513824,
- -0.025012949481606483,
- 0.03649380803108215,
- 0.028763771057128906,
- 0.03689367696642876,
- -0.013569439761340618,
- 0.10165151953697205,
- -0.036236464977264404,
- -0.028702542185783386,
- 0.007689988240599632,
- -0.05913347750902176,
- 0.03978963568806648,
- 0.022029327228665352,
- 0.009520112536847591,
- 0.0037588151171803474,
- -0.009864379651844501,
- -0.03671034798026085,
- 0.0186797883361578,
- 0.007849541492760181,
- 0.024432741105556488,
- -0.03360622748732567,
- 0.02536115236580372,
- -0.07258303463459015,
- -0.045338600873947144,
- -1.2735918986095385e-8,
- -0.036922477185726166,
- -0.02751474268734455,
- 0.009666684083640575,
- 0.038356274366378784,
- 0.017993580549955368,
- 0.008501739241182804,
- 0.05800434947013855,
- 0.035680606961250305,
- -0.017725279554724693,
- -0.009803110733628273,
- 0.05231833830475807,
- -0.00628304248675704,
- -0.017427368089556694,
- -0.07400289922952652,
- 0.054685164242982864,
- -0.049267034977674484,
- 0.05954999476671219,
- 0.00941439252346754,
- -0.033438850194215775,
- 0.028368698433041573,
- -0.07500818371772766,
- -0.014096647500991821,
- 0.01669624261558056,
- 0.028668761253356934,
- 0.00330552039667964,
- -0.03192887455224991,
- 0.005944938398897648,
- 0.052766796201467514,
- -0.001823339844122529,
- 0.058002445846796036,
- 0.03618048131465912,
- 0.12964829802513123,
- -0.06372538954019547,
- -0.05901455506682396,
- 0.04985868185758591,
- -0.027590882033109665,
- -0.06010108068585396,
- 0.015849266201257706,
- 0.02456066943705082,
- 0.06593666970729828,
- -0.05070027709007263,
- 0.07809057086706161,
- 0.04948724806308746,
- 0.01779971830546856,
- -0.01057531125843525,
- -0.038364019244909286,
- 0.036014486104249954,
- 0.05677531287074089,
- 0.029165765270590782,
- -0.029560020193457603,
- 0.025862736627459526,
- -0.06281215697526932,
- 0.06022564321756363,
- -0.003608168801292777,
- 0.06281628459692001,
- 0.0005830077570863068,
- 0.08442521095275879,
- 0.000024766155547695234,
- -0.0650462806224823,
- 0.0007651591440662742,
- 0.15394669771194458,
- -0.04644272103905678,
- 0.03693775087594986,
- -0.0024560512974858284
- ]
- },
- {
- "keyword": "paralegal",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.014843322336673737,
- 0.013094782829284668,
- -0.06850685924291611,
- -0.049057237803936005,
- -0.09794066846370697,
- 0.02541745826601982,
- 0.047197937965393066,
- 0.06120271608233452,
- 0.036212243139743805,
- 0.0187826007604599,
- 0.106947161257267,
- 0.018394961953163147,
- -0.021860715001821518,
- 0.05014835670590401,
- -0.00943099893629551,
- 0.043081365525722504,
- -0.008184612728655338,
- -0.046407170593738556,
- -0.072768934071064,
- -0.05677008256316185,
- 0.0029749032109975815,
- 0.04352957755327225,
- -0.13330931961536407,
- -0.028634104877710342,
- 0.013084874488413334,
- 0.007066297810524702,
- 0.015550049021840096,
- -0.03667333349585533,
- 0.06680556386709213,
- -0.028914958238601685,
- 0.014529836364090443,
- -0.0030152907129377127,
- -0.08826294541358948,
- 0.01668476313352585,
- 0.06515650451183319,
- -0.04333561286330223,
- -0.002493229229003191,
- 0.04188895598053932,
- 0.07366418838500977,
- 0.09838272631168365,
- -0.010215899907052517,
- 0.021885687485337257,
- -0.04162397235631943,
- -0.06300196796655655,
- 0.0030804662965238094,
- -0.024779237806797028,
- 0.041317012161016464,
- 0.04210445284843445,
- 0.0012136963196098804,
- 0.011081567034125328,
- -0.012238896451890469,
- -0.005002947524189949,
- 0.0025326234754174948,
- 0.067363440990448,
- 0.0159255750477314,
- -0.056224655359983444,
- -0.007408777717500925,
- 0.07194536179304123,
- -0.024580586701631546,
- -0.03675403818488121,
- -0.07007167488336563,
- 0.016742950305342674,
- -0.019584784284234047,
- -0.007182607892900705,
- -0.028149645775556564,
- 0.007659709081053734,
- -0.010012869723141193,
- -0.03893250226974487,
- -0.03808495029807091,
- 0.026662979274988174,
- -0.021818973124027252,
- -0.03202090784907341,
- 0.02022973634302616,
- 0.02372995764017105,
- -0.03327805921435356,
- -0.07041459530591965,
- 0.07557326555252075,
- -0.07112889736890793,
- 0.05097248777747154,
- -0.11844901740550995,
- 0.12665021419525146,
- -0.008628876879811287,
- -0.11987388134002686,
- -0.004035307094454765,
- 0.009762200526893139,
- -0.06309650093317032,
- 0.024484390392899513,
- 0.0543508380651474,
- 0.004631713032722473,
- 0.0028774146921932697,
- 0.07035442441701889,
- -0.05301348492503166,
- -0.014267966151237488,
- -0.03882259130477905,
- -0.08254343271255493,
- 0.10766663402318954,
- -0.053217563778162,
- -0.036584336310625076,
- -0.034552428871393204,
- 0.13647325336933136,
- -0.00948919728398323,
- 0.0029064342379570007,
- 0.061459001153707504,
- 0.014251883141696453,
- 0.0031598955392837524,
- 0.005324906203895807,
- 0.008877336978912354,
- 0.02646341733634472,
- 0.03284766897559166,
- -0.00293505541048944,
- -0.057365864515304565,
- 0.032253146171569824,
- -0.01686711236834526,
- -0.012728595174849033,
- 0.008808857761323452,
- 0.11985138058662415,
- 0.03251686692237854,
- 0.08605959266424179,
- 0.006920596584677696,
- -0.16438347101211548,
- 0.058159876614809036,
- 0.07742364704608917,
- -0.05542674660682678,
- 0.04153474420309067,
- 0.006212631706148386,
- -0.06424698233604431,
- -0.0381152406334877,
- -2.8930996966079436e-33,
- 0.01772690750658512,
- -0.028001558035612106,
- -0.028385700657963753,
- 0.0038918207865208387,
- -0.01301858201622963,
- -0.007943414151668549,
- 0.0119509631767869,
- 0.042943984270095825,
- 0.023235691711306572,
- 0.08253495395183563,
- 0.011057170107960701,
- -0.030084675177931786,
- -0.03639271855354309,
- -0.06117885187268257,
- 0.011979504488408566,
- 0.030057137832045555,
- -0.10632078349590302,
- 0.04581642150878906,
- -0.0820777639746666,
- 0.010209786705672741,
- -0.05427120625972748,
- 0.08907503634691238,
- -0.013972437009215355,
- 0.022130871191620827,
- -0.08516287803649902,
- -0.0358269065618515,
- 0.06603440642356873,
- -0.09298038482666016,
- 0.05559208616614342,
- 0.023654116317629814,
- 0.06817156821489334,
- 0.022978557273745537,
- 0.0016121050575748086,
- 0.007799126207828522,
- 0.057256799191236496,
- 0.07177939265966415,
- -0.0018324052216485143,
- -0.01978377252817154,
- 0.025581149384379387,
- -0.005561286583542824,
- -0.0848393663764,
- -0.00004270487988833338,
- 0.05882270261645317,
- 0.0429631806910038,
- -0.030109990388154984,
- -0.030079128220677376,
- 0.023747725412249565,
- -0.08989869803190231,
- -0.031783170998096466,
- 0.021342964842915535,
- -0.01402245182543993,
- -0.07119495421648026,
- 0.10128189623355865,
- -0.06798277050256729,
- 0.07449406385421753,
- -0.062377508729696274,
- 0.012496060691773891,
- 0.05630049109458923,
- 0.04599666967988014,
- -0.022774942219257355,
- 0.06327376514673233,
- 0.004537535831332207,
- -0.1155097708106041,
- 0.027523769065737724,
- -0.050803959369659424,
- -0.006842554081231356,
- -0.05260035768151283,
- 0.004757629707455635,
- 0.1328449547290802,
- -0.07120407372713089,
- -0.07229159027338028,
- 0.08694931119680405,
- 0.06159193068742752,
- -0.020191799849271774,
- 0.00046480572200380266,
- 0.018926460295915604,
- 0.005495145916938782,
- -0.012459180317819118,
- -0.02309310808777809,
- -0.03651730716228485,
- -0.05480942502617836,
- -0.0009436803520657122,
- -0.011753281578421593,
- 0.07988867163658142,
- 0.143922358751297,
- -0.007103309500962496,
- -0.04194534197449684,
- -0.04081367328763008,
- 0.007141841109842062,
- -0.023480553179979324,
- -0.04611334949731827,
- 0.047578442841768265,
- -0.030748290941119194,
- 0.15085935592651367,
- 0.05597510188817978,
- 2.062090026436874e-33,
- -0.04156285151839256,
- -0.03346465900540352,
- -0.002611633623018861,
- 0.08800528943538666,
- 0.056177735328674316,
- -0.03445348143577576,
- -0.020817095413804054,
- 0.042246848344802856,
- -0.05312904343008995,
- 0.03750450909137726,
- -0.09377389401197433,
- -0.02733498066663742,
- 0.06857695430517197,
- 0.04919141158461571,
- 0.045779336243867874,
- -0.0008961951243691146,
- -0.06817170232534409,
- -0.003456150647252798,
- -0.05913263559341431,
- -0.03741913288831711,
- -0.03082258254289627,
- 0.06525083631277084,
- -0.019820891320705414,
- -0.02421383187174797,
- -0.04730672761797905,
- 0.03708237037062645,
- -0.018395500257611275,
- -0.04092979431152344,
- -0.03925701975822449,
- 0.04101700708270073,
- -0.004155165981501341,
- -0.02123553864657879,
- -0.022961895912885666,
- -0.013202164322137833,
- -0.07218178361654282,
- 0.034624699503183365,
- 0.013077695854008198,
- -0.0045209298841655254,
- -0.07993265241384506,
- -0.00597715238109231,
- -0.018329665064811707,
- -0.02600991167128086,
- 0.09717120230197906,
- 0.031901612877845764,
- 0.020861223340034485,
- -0.015160175040364265,
- -0.012935544364154339,
- -0.0725044310092926,
- 0.10257516801357269,
- -0.0511525422334671,
- -0.05961214005947113,
- 0.0745784118771553,
- -0.021071838214993477,
- 0.005667771212756634,
- 0.04978667199611664,
- -0.03418514505028725,
- -0.10507935285568237,
- -0.08149174600839615,
- -0.0646757185459137,
- 0.0037753817159682512,
- 0.09703122079372406,
- 0.054012738168239594,
- -0.010303382761776447,
- 0.04064349830150604,
- -0.002284449990838766,
- 0.03818586841225624,
- -0.029378291219472885,
- 0.008491656742990017,
- -0.07909195870161057,
- 0.051750123500823975,
- 0.031701914966106415,
- 0.0018516451818868518,
- -0.07241285592317581,
- -0.050899188965559006,
- 0.04857249930500984,
- -0.02214767225086689,
- -0.0009106651414185762,
- -0.033343344926834106,
- -0.01536970678716898,
- 0.027712713927030563,
- 0.02343522198498249,
- -0.08222085982561111,
- -0.03272080048918724,
- 0.06764965504407883,
- -0.05731530860066414,
- 0.05136600509285927,
- 0.015141007490456104,
- 0.06958948075771332,
- 0.046396948397159576,
- -0.019069332629442215,
- 0.03588961809873581,
- 0.0031870545353740454,
- 0.05749603360891342,
- 0.010500493459403515,
- 0.01692534238100052,
- -1.2896943069051758e-8,
- -0.031351204961538315,
- 0.07458029687404633,
- -0.04313816502690315,
- -0.018366627395153046,
- -0.04963228851556778,
- -0.03267834335565567,
- 0.0633973777294159,
- 0.002084719482809305,
- -0.01279984600841999,
- 0.011655517853796482,
- -0.04061955586075783,
- -0.03302079811692238,
- 0.010206218808889389,
- -0.0044950093142688274,
- 0.011693287640810013,
- -0.0617164671421051,
- 0.020410913974046707,
- 0.010017232969403267,
- 0.04286891594529152,
- 0.0324217863380909,
- 0.03324894234538078,
- -0.03280361741781235,
- -0.03925303369760513,
- 0.042046237736940384,
- -0.014764253981411457,
- 0.000238631313550286,
- 0.026459936052560806,
- 0.045161448419094086,
- -0.013326502405107021,
- 0.04717627912759781,
- 0.029647894203662872,
- 0.09069374203681946,
- -0.05734967812895775,
- -0.06644507497549057,
- -0.08642784506082535,
- -0.023106275126338005,
- -0.038873832672834396,
- 0.022943688556551933,
- -0.007946307770907879,
- 0.031233612447977066,
- -0.014233824796974659,
- -0.038029007613658905,
- 0.06538749486207962,
- 0.011209024116396904,
- 0.06310153007507324,
- 0.002394351875409484,
- 0.05705894157290459,
- -0.005901589524000883,
- 0.011682627722620964,
- -0.014550969004631042,
- 0.008981802500784397,
- -0.08423709124326706,
- 0.044150933623313904,
- -0.0754997655749321,
- -0.00046603530063293874,
- -0.005711186211556196,
- 0.0692903995513916,
- 0.046085212379693985,
- -0.14635808765888214,
- -0.038714561611413956,
- 0.12584188580513,
- 0.008165623061358929,
- 0.057035304605960846,
- 0.07492417842149734
- ]
- },
- {
- "keyword": "accountant",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04308932647109032,
- 0.07070359587669373,
- -0.05270373821258545,
- 0.008315576240420341,
- -0.09760458767414093,
- -0.004944703076034784,
- 0.10673852264881134,
- 0.02616671286523342,
- 0.033565230667591095,
- 0.007389422971755266,
- 0.0019245526054874063,
- -0.11384785920381546,
- -0.05954644829034805,
- -0.006466403137892485,
- -0.059138525277376175,
- -0.016411159187555313,
- -0.030545789748430252,
- -0.008340082131326199,
- 0.032357357442379,
- -0.054764244705438614,
- -0.04184789955615997,
- 0.019904499873518944,
- -0.06453921645879745,
- -0.03270377591252327,
- 0.09699980914592743,
- -0.015266945585608482,
- -0.050179071724414825,
- -0.0007637584931217134,
- -0.019398847594857216,
- -0.09367383271455765,
- -0.037630729377269745,
- -0.029714254662394524,
- 0.03140005096793175,
- -0.009730773977935314,
- 0.039296701550483704,
- -0.012138250283896923,
- 0.0010895570740103722,
- 0.0945231094956398,
- 0.07706542313098907,
- 0.009288066066801548,
- -0.03190382197499275,
- -0.03824663534760475,
- -0.019915657117962837,
- -0.05836272984743118,
- 0.0022142177913337946,
- -0.022836077958345413,
- 0.05751313641667366,
- 0.013936922885477543,
- -0.0025079594925045967,
- 0.06692734360694885,
- -0.08763714134693146,
- -0.037867315113544464,
- -0.006776767782866955,
- -0.041451163589954376,
- 0.06137211248278618,
- -0.03231525793671608,
- 0.00042900253902189434,
- -0.013626276515424252,
- 0.023025408387184143,
- -0.049093589186668396,
- -0.0569303072988987,
- 0.00038109379238449037,
- -0.003419890534132719,
- 0.043738000094890594,
- 0.07080694288015366,
- 0.04304541274905205,
- -0.0263848677277565,
- 0.045408494770526886,
- -0.12390685826539993,
- -0.0665775015950203,
- -0.03088272362947464,
- -0.10471256822347641,
- -0.028495723381638527,
- -0.024739744141697884,
- 0.0687170922756195,
- -0.09936276078224182,
- 0.018118049949407578,
- 0.023037608712911606,
- -0.0028722782153636217,
- -0.007991863414645195,
- 0.07235120981931686,
- 0.048639290034770966,
- -0.10696905106306076,
- 0.005163780879229307,
- 0.010273630730807781,
- -0.018364423885941505,
- 0.031607307493686676,
- -0.02155645191669464,
- 0.06497249752283096,
- -0.018347300589084625,
- 0.04151219502091408,
- -0.028752867132425308,
- 0.12207885086536407,
- -0.008833604864776134,
- -0.04993352293968201,
- 0.019102204591035843,
- -0.0199471153318882,
- -0.001861587748862803,
- 0.05379925295710564,
- 0.25165340304374695,
- 0.01782815530896187,
- 0.06639914959669113,
- -0.003192056203261018,
- 0.017458122223615646,
- -0.0552198626101017,
- 0.022723568603396416,
- 0.08619413524866104,
- -0.027739016339182854,
- 0.01813996396958828,
- -0.004619700368493795,
- -0.03316422551870346,
- 0.04909747093915939,
- -0.13603490591049194,
- -0.03487105295062065,
- 0.060872096568346024,
- 0.07646650075912476,
- -0.015543833374977112,
- 0.02369481697678566,
- 0.02341914176940918,
- -0.038221947848796844,
- -0.007141811773180962,
- 0.08984343707561493,
- -0.09412124752998352,
- -0.004192187916487455,
- -0.036171022802591324,
- 0.028438249602913857,
- 0.05744102969765663,
- -4.9194585518706585e-33,
- -0.014830551110208035,
- 0.013312621973454952,
- 0.06086432933807373,
- 0.031238781288266182,
- 0.02090618759393692,
- 0.005530283786356449,
- 0.027414964511990547,
- 0.04637175798416138,
- 0.005813212133944035,
- 0.08551115542650223,
- 0.036372821778059006,
- 0.040090225636959076,
- -0.05499059334397316,
- -0.0398770347237587,
- -0.0035816773306578398,
- 0.07262884825468063,
- -0.06700145453214645,
- 0.05769092217087746,
- -0.021451083943247795,
- 0.013529057614505291,
- -0.04056159034371376,
- 0.013812469318509102,
- 0.033428896218538284,
- 0.009047199971973896,
- 0.09943456947803497,
- -0.009695488028228283,
- -0.01608617603778839,
- -0.04577995464205742,
- 0.05775199830532074,
- 0.03977479413151741,
- 0.0710979551076889,
- 0.014766693115234375,
- -0.01732497476041317,
- 0.002146457089111209,
- 0.009020916186273098,
- 0.01703784614801407,
- -0.07957494258880615,
- -0.04473847895860672,
- 0.06749887019395828,
- 0.014103437773883343,
- -0.04841966927051544,
- -0.0045074643567204475,
- 0.07590845227241516,
- -0.020517436787486076,
- -0.09848237782716751,
- 0.06343354284763336,
- 0.0727057233452797,
- 0.07458649575710297,
- 0.02763218805193901,
- 0.09444427490234375,
- -0.0017542154528200626,
- -0.06488775461912155,
- -0.029509805142879486,
- -0.03381960839033127,
- 0.06732688099145889,
- -0.020998068153858185,
- 0.016352253034710884,
- -0.03064669854938984,
- -0.046238355338573456,
- -0.015700332820415497,
- 0.08322194963693619,
- 0.06928031891584396,
- -0.06375067681074142,
- 0.03697025775909424,
- -0.14083628356456757,
- 0.020213767886161804,
- -0.01803053729236126,
- 0.02439247816801071,
- 0.09169352799654007,
- -0.07625526189804077,
- -0.04591499641537666,
- -0.01048374269157648,
- 0.0025280851405113935,
- 0.011967617087066174,
- -0.005262681748718023,
- 0.009922793135046959,
- -0.0020784076768904924,
- 0.02493603713810444,
- -0.05180901661515236,
- 0.025774125009775162,
- -0.04575604200363159,
- 0.025084517896175385,
- -0.03529424965381622,
- -0.008853339590132236,
- 0.05189744755625725,
- 0.08102742582559586,
- 0.015817729756236076,
- -0.0026637702248990536,
- 0.03488774225115776,
- 0.025967376306653023,
- -0.10118407756090164,
- 0.009442890994250774,
- 0.03742032125592232,
- 0.10691704601049423,
- 0.0032885964028537273,
- 2.576209745842279e-33,
- -0.015894999727606773,
- -0.07953394204378128,
- 0.018934788182377815,
- -0.03779918700456619,
- -0.01610478013753891,
- -0.04211463779211044,
- 0.09699897468090057,
- -0.027316484600305557,
- -0.018600989133119583,
- 0.03106183558702469,
- -0.0742998942732811,
- 0.03748222440481186,
- 0.022944442927837372,
- 0.019865037873387337,
- 0.026758629828691483,
- -0.035167086869478226,
- 0.006477673538029194,
- -0.03282220661640167,
- -0.01891692914068699,
- -0.02896384708583355,
- -0.015525898896157742,
- 0.07463611662387848,
- 0.10985875874757767,
- 0.0007197667146101594,
- -0.032800011336803436,
- 0.04063249006867409,
- 0.01765827089548111,
- 0.017589617520570755,
- 0.04035826399922371,
- 0.008838308043777943,
- -0.05967098847031593,
- -0.0439007394015789,
- -0.015842432156205177,
- -0.007690654136240482,
- -0.08068913966417313,
- -0.04223888739943504,
- -0.04973192140460014,
- -0.03320959582924843,
- -0.019573785364627838,
- -0.02129473350942135,
- 0.006132691167294979,
- -0.033871229737997055,
- 0.05604143068194389,
- 0.11989370733499527,
- 0.03271016851067543,
- -0.04608459025621414,
- 0.004384116735309362,
- 0.02871808223426342,
- 0.04787337779998779,
- -0.008784351870417595,
- -0.05617696791887283,
- 0.03270746394991875,
- 0.009024850092828274,
- 0.032971546053886414,
- -0.029925469309091568,
- 0.12965191900730133,
- 0.0076744589023292065,
- -0.06261034309864044,
- 0.028828153386712074,
- -0.023497693240642548,
- -0.02421652525663376,
- 0.09937532246112823,
- 0.04078076779842377,
- 0.119248166680336,
- -0.02381187118589878,
- 0.004928059875965118,
- -0.01025763526558876,
- -0.011213964782655239,
- -0.0003570241678971797,
- -0.03759515658020973,
- 0.05775100365281105,
- -0.06868122518062592,
- -0.07601732015609741,
- -0.08408799767494202,
- -0.07838558405637741,
- 0.055199168622493744,
- -0.11813925951719284,
- -0.04025924205780029,
- 0.00017227802891284227,
- 0.021337559446692467,
- -0.07478926330804825,
- 0.015583764761686325,
- 0.0065384660847485065,
- 0.0586121566593647,
- -0.08853037655353546,
- -0.09231844544410706,
- 0.046597275882959366,
- -0.09798766672611237,
- 0.05269277095794678,
- -0.003222852014005184,
- 0.0041373963467776775,
- -0.0003144851070828736,
- 0.05839447304606438,
- -0.01346631534397602,
- -0.01604093424975872,
- -1.1940673338983743e-8,
- -0.04565344750881195,
- 0.01253092847764492,
- 0.02831198275089264,
- -0.04016174376010895,
- 0.020870676264166832,
- -0.13734839856624603,
- -0.02599242515861988,
- -0.006096158176660538,
- -0.03300245851278305,
- 0.05012563243508339,
- 0.08725333213806152,
- 0.015410030260682106,
- -0.014768773689866066,
- -0.0005215842975303531,
- 0.033285513520240784,
- -0.06644534319639206,
- 0.01844148151576519,
- 0.015700075775384903,
- -0.02511846087872982,
- 0.02336380071938038,
- -0.002308508614078164,
- -0.02157946676015854,
- -0.030136743560433388,
- 0.06645707786083221,
- -0.04069104045629501,
- -0.0212408434599638,
- 0.035160474479198456,
- 0.05941179767251015,
- -0.0007003643549978733,
- -0.01938183419406414,
- -0.010310470126569271,
- 0.07854904979467392,
- 0.03408879041671753,
- -0.04791953042149544,
- -0.0620248056948185,
- -0.005597514566034079,
- 0.009119556285440922,
- -0.042821817100048065,
- -0.010039355605840683,
- -0.026277536526322365,
- -0.06349918246269226,
- -0.03513156622648239,
- 0.0355149507522583,
- -0.001964960712939501,
- -0.03226957842707634,
- -0.006147303152829409,
- -0.029575977474451065,
- -0.00717812217772007,
- 0.05556279793381691,
- -0.03508051484823227,
- -0.00926652830094099,
- -0.03402581438422203,
- 0.05490177869796753,
- 0.03306584805250168,
- -0.006145024206489325,
- -0.052330516278743744,
- -0.0181136354804039,
- 0.004183650948107243,
- -0.0929386168718338,
- 0.028894249349832535,
- 0.14245924353599548,
- -0.03437739610671997,
- 0.062258459627628326,
- 0.005657828412950039
- ]
- },
- {
- "keyword": "auditor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.036880332976579666,
- 0.08351102471351624,
- -0.038578931242227554,
- 0.029753822833299637,
- -0.046255603432655334,
- -0.02623298391699791,
- 0.1541994959115982,
- -0.05576867237687111,
- 0.01246763113886118,
- 0.0003871713997796178,
- 0.010923455469310284,
- -0.08431000262498856,
- -0.0067661963403224945,
- -0.020288247615098953,
- -0.13301554322242737,
- -0.03325238823890686,
- 0.019704239442944527,
- -0.006344815716147423,
- 0.04194610193371773,
- 0.01587642915546894,
- -0.07449577003717422,
- 0.0033101574517786503,
- -0.0481400303542614,
- -0.04725579544901848,
- 0.00042591203236952424,
- -0.04797521233558655,
- -0.04076552763581276,
- 0.031295161694288254,
- -0.03565055504441261,
- -0.11007869243621826,
- -0.054995596408843994,
- -0.04081447795033455,
- 0.026675671339035034,
- -0.003610318060964346,
- 0.01702398620545864,
- 0.000862690678332001,
- 0.0033321892842650414,
- 0.002862857421860099,
- 0.046993426978588104,
- 0.011715088970959187,
- -0.05109091103076935,
- -0.0339084193110466,
- -0.05327486991882324,
- -0.05011410266160965,
- -0.03652917966246605,
- -0.05428587272763252,
- 0.04019544646143913,
- -0.0014476497890427709,
- 0.02467656135559082,
- 0.0351499579846859,
- -0.0641142725944519,
- -0.027184447273612022,
- -0.02543581835925579,
- -0.07297186553478241,
- 0.041789792478084564,
- -0.03491789475083351,
- -0.009872985072433949,
- -0.03816775605082512,
- 0.02196403406560421,
- -0.056377168744802475,
- 0.021910445764660835,
- 0.05372803658246994,
- -0.0527663379907608,
- 0.08690807223320007,
- -0.0011578027624636889,
- 0.019146446138620377,
- -0.0365721769630909,
- 0.035580433905124664,
- -0.045527104288339615,
- -0.12521138787269592,
- 0.045520223677158356,
- -0.09031418710947037,
- -0.008136549033224583,
- -0.0697818398475647,
- 0.011437893845140934,
- -0.03273617476224899,
- 0.041510872542858124,
- 0.0007289128843694925,
- 0.030790505930781364,
- -0.047366030514240265,
- 0.03743080049753189,
- 0.03324515372514725,
- -0.03363939747214317,
- 0.03939025476574898,
- 0.014424795284867287,
- -0.006050845142453909,
- 0.008679640479385853,
- -0.012844166718423367,
- 0.015635941177606583,
- 0.04152506962418556,
- 0.08839506655931473,
- -0.0060208635404706,
- 0.03248653933405876,
- -0.014846846461296082,
- 0.022223567590117455,
- -0.03251611813902855,
- -0.015346301719546318,
- 0.0451088510453701,
- 0.08240128308534622,
- 0.2709595561027527,
- 0.00744832307100296,
- 0.07426564395427704,
- -0.10023032873868942,
- 0.026973171159625053,
- -0.08827367424964905,
- -0.02582552470266819,
- 0.029894370585680008,
- -0.020813200622797012,
- 0.031224612146615982,
- 0.02290741726756096,
- -0.03478406369686127,
- 0.07052557170391083,
- -0.03235374763607979,
- 0.0022971329744905233,
- 0.08811108767986298,
- 0.04139456897974014,
- -0.00949055328965187,
- 0.015222377143800259,
- 0.016569165512919426,
- 0.02183137834072113,
- 0.05233730003237724,
- 0.04509119316935539,
- -0.04499261826276779,
- -0.04433241859078407,
- 0.02667466551065445,
- -0.010934481397271156,
- 0.05352095142006874,
- -6.429619817791898e-33,
- 0.021777119487524033,
- 0.06481973826885223,
- 0.04074886813759804,
- 0.01693546585738659,
- -0.01824260875582695,
- 0.07640111446380615,
- -0.026542970910668373,
- 0.06796736270189285,
- -0.06327574700117111,
- 0.08783772587776184,
- 0.0008627885254099965,
- 0.00458942074328661,
- -0.03832386061549187,
- -0.04544278606772423,
- 0.02728346176445484,
- 0.15006357431411743,
- -0.04028038680553436,
- 0.09617720544338226,
- -0.02705322578549385,
- -0.008370938710868359,
- -0.027182994410395622,
- -0.056248266249895096,
- 0.027866676449775696,
- 0.037323907017707825,
- 0.06273841857910156,
- -0.048673320561647415,
- 0.0016229498432949185,
- -0.009408721700310707,
- -0.023458635434508324,
- 0.07561848312616348,
- 0.022130362689495087,
- -0.016471199691295624,
- 0.03681318089365959,
- 0.010021230205893517,
- -0.04046690836548805,
- 0.0047508603893220425,
- -0.048301812261343,
- -0.032587550580501556,
- 0.016395533457398415,
- -0.025060057640075684,
- -0.031188467517495155,
- -0.0037808814086019993,
- 0.021956171840429306,
- 0.0036571072414517403,
- -0.05510035529732704,
- 0.04688509553670883,
- 0.028896478936076164,
- 0.0720582902431488,
- 0.04901668801903725,
- 0.06548775732517242,
- 0.005254022311419249,
- -0.03414139896631241,
- -0.059619490057229996,
- 0.04116098955273628,
- 0.011071864515542984,
- 0.0422150082886219,
- 0.03672061860561371,
- -0.002921240869909525,
- 0.0019996431656181812,
- -0.00046894847764633596,
- 0.05370467156171799,
- 0.1278039962053299,
- -0.058470044285058975,
- -0.014663913287222385,
- -0.030393602326512337,
- -0.01912839710712433,
- 0.00858551636338234,
- 0.00754758482798934,
- 0.06255672127008438,
- -0.03435884043574333,
- -0.12157244980335236,
- -0.05897211655974388,
- -0.01351515855640173,
- 0.02924306131899357,
- -0.03453397750854492,
- -0.025018975138664246,
- -0.012213783338665962,
- 0.057979777455329895,
- 0.03357955813407898,
- 0.07123158127069473,
- -0.07076460123062134,
- 0.016560018062591553,
- 0.03182829171419144,
- -0.045278649777173996,
- -0.012601971626281738,
- 0.03399672731757164,
- -0.008493026718497276,
- -0.021727612242102623,
- 0.0305620264261961,
- 0.05377944931387901,
- -0.07003781944513321,
- 0.0014911711914464831,
- 0.04217010363936424,
- 0.021185927093029022,
- -0.06013016775250435,
- 3.770883389024186e-33,
- -0.07583530247211456,
- -0.08751513808965683,
- -0.01606767810881138,
- -0.059235699474811554,
- -0.07641395926475525,
- -0.029703475534915924,
- 0.022143099457025528,
- 0.0008652603137306869,
- 0.0006843566661700606,
- 0.04974137246608734,
- -0.04035916551947594,
- -0.033257581293582916,
- 0.12218118458986282,
- 0.01809253729879856,
- 0.014650600962340832,
- -0.03095390275120735,
- 0.019202059134840965,
- -0.04435219615697861,
- -0.021380433812737465,
- 0.04556480422616005,
- 0.07949023693799973,
- 0.05688668414950371,
- 0.0841754749417305,
- -0.009999697096645832,
- -0.040580932050943375,
- 0.05735276639461517,
- 0.012973029166460037,
- 0.07478053122758865,
- 0.03135627880692482,
- -0.004094624891877174,
- -0.060399603098630905,
- -0.04529784619808197,
- -0.0030486765317618847,
- 0.0889369547367096,
- -0.0352332778275013,
- 0.010669629089534283,
- 0.06574465334415436,
- -0.04843950271606445,
- -0.04733547568321228,
- 0.012683680281043053,
- 0.022723834961652756,
- 0.027002375572919846,
- 0.10282173752784729,
- 0.046301066875457764,
- -0.012622013688087463,
- -0.024024371057748795,
- -0.0032343033235520124,
- 0.03183244541287422,
- 0.04084593430161476,
- -0.05343443527817726,
- -0.07646065950393677,
- 0.019786830991506577,
- 0.006275935564190149,
- 0.07264375686645508,
- -0.07324791699647903,
- 0.04291631653904915,
- -0.05394556000828743,
- -0.023537952452898026,
- 0.03081357479095459,
- 0.06944189965724945,
- 0.049031224101781845,
- 0.08051446080207825,
- 0.03553469479084015,
- 0.1067301407456398,
- -0.0106242960318923,
- 0.01896589994430542,
- 0.03904375806450844,
- -0.00818100105971098,
- -0.017591459676623344,
- -0.04790179803967476,
- 0.061601974070072174,
- -0.08902280777692795,
- -0.12902957201004028,
- -0.00016793017857708037,
- -0.05451282486319542,
- 0.04149739816784859,
- -0.0859651044011116,
- -0.07932234555482864,
- -0.0402914322912693,
- -0.014265515841543674,
- 0.003015952417626977,
- 0.01583489589393139,
- -0.0019268703181296587,
- 0.0216385405510664,
- -0.029498962685465813,
- -0.09741853177547455,
- 0.06290730834007263,
- -0.035644982010126114,
- 0.04815380647778511,
- 0.014790273271501064,
- -0.054970771074295044,
- -0.008981586433947086,
- 0.020125318318605423,
- -0.1047803983092308,
- -0.0005424869013950229,
- -1.2568349916364241e-8,
- -0.006694449577480555,
- 0.014736196957528591,
- 0.0996737852692604,
- -0.03530289605259895,
- 0.04044249653816223,
- -0.17319725453853607,
- -0.014178433455526829,
- 0.010148598812520504,
- -0.02570512890815735,
- -0.022219568490982056,
- 0.06948677450418472,
- -0.00784599594771862,
- -0.006444774568080902,
- -0.041781067848205566,
- 0.05144026130437851,
- -0.09936598688364029,
- -0.010885982774198055,
- 0.06844067573547363,
- -0.052092742174863815,
- 0.015444151125848293,
- 0.03885307535529137,
- 0.02005058340728283,
- -0.03924386575818062,
- -0.04957333579659462,
- 0.02031642757356167,
- -0.0693962574005127,
- 0.00015397868992295116,
- 0.03516586497426033,
- -0.01909811794757843,
- 0.02860563062131405,
- -0.058508459478616714,
- 0.10948962718248367,
- -0.008821849711239338,
- -0.024258052930235863,
- -0.12801207602024078,
- 0.016897020861506462,
- 0.009553186595439911,
- -0.049802254885435104,
- 0.00904918648302555,
- -0.05553938448429108,
- -0.04208729416131973,
- -0.0369420163333416,
- 0.05247372016310692,
- -0.01248952653259039,
- -0.0717950314283371,
- -0.02382262982428074,
- 0.023404603824019432,
- -0.023859461769461632,
- 0.07239320874214172,
- -0.03158135712146759,
- 0.019784679636359215,
- -0.04043074697256088,
- 0.0503089465200901,
- 0.0449773333966732,
- -0.002431774279102683,
- -0.05308428406715393,
- 0.00897354818880558,
- 0.0045191440731287,
- -0.005014810711145401,
- 0.02234458737075329,
- 0.10984647274017334,
- 0.016277985647320747,
- 0.09033786505460739,
- -0.0383954718708992
- ]
- },
- {
- "keyword": "banker",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.009008455090224743,
- 0.02536897175014019,
- -0.095074862241745,
- -0.021165478974580765,
- -0.14299960434436798,
- -0.07518094778060913,
- 0.15908467769622803,
- 0.001190353068523109,
- 0.006620294414460659,
- -0.034996818751096725,
- 0.008274253457784653,
- -0.09377378225326538,
- -0.012511100620031357,
- -0.040711741894483566,
- 0.005711308680474758,
- 0.008938903920352459,
- 0.009263002313673496,
- -0.0035987715236842632,
- -0.025403933599591255,
- -0.06812699884176254,
- -0.08991573005914688,
- -0.0429222472012043,
- -0.08078876882791519,
- -0.0181651022285223,
- 0.04154336079955101,
- -0.04267038777470589,
- 0.001138511230237782,
- 0.0096332598477602,
- -0.03348878398537636,
- -0.07334185391664505,
- -0.013575965538620949,
- 0.037488605827093124,
- 0.038545820862054825,
- -0.02282746136188507,
- 0.00002447962287988048,
- 0.010037591680884361,
- 0.04128860682249069,
- 0.09688612073659897,
- 0.07089567929506302,
- -0.03710443526506424,
- -0.050880130380392075,
- -0.07436291128396988,
- 0.030825207009911537,
- -0.02334711328148842,
- -0.03249846771359444,
- 0.012426523491740227,
- 0.06654824316501617,
- 0.03845429793000221,
- -0.02057802490890026,
- 0.017255762591958046,
- -0.05278888717293739,
- -0.0358501560986042,
- -0.016599614173173904,
- 0.010062379762530327,
- 0.04275420680642128,
- 0.028670230880379677,
- 0.0406668558716774,
- 0.00774814747273922,
- 0.03457915782928467,
- -0.014464672654867172,
- -0.030143722891807556,
- 0.04432245343923569,
- -0.027736688032746315,
- 0.029754819348454475,
- 0.06204957515001297,
- 0.030100805684924126,
- -0.03653988987207413,
- 0.005441812798380852,
- -0.04465387016534805,
- -0.058633048087358475,
- -0.005478157661855221,
- -0.15473872423171997,
- -0.06355571001768112,
- -0.07403892278671265,
- 0.0427597314119339,
- -0.03176053613424301,
- 0.09866014868021011,
- 0.007312953006476164,
- 0.07242149114608765,
- 0.002806022297590971,
- -0.020206166431307793,
- -0.08886796236038208,
- -0.06316131353378296,
- 0.015325458720326424,
- -0.01328178308904171,
- -0.0018847619649022818,
- -0.02336183562874794,
- -0.01681828685104847,
- 0.04543745890259743,
- 0.005293442402034998,
- 0.015006208792328835,
- 0.01701643317937851,
- 0.07847370207309723,
- -0.049672216176986694,
- -0.02633233368396759,
- 0.0010484165977686644,
- -0.047511860728263855,
- -0.038136787712574005,
- 0.004068589769303799,
- 0.26985663175582886,
- 0.04699278622865677,
- 0.04592382535338402,
- 0.02852899394929409,
- 0.06464356184005737,
- -0.011138406582176685,
- 0.015835627913475037,
- 0.058297306299209595,
- 0.011982090771198273,
- 0.010124506428837776,
- -0.029636362567543983,
- 0.0028271798510104418,
- 0.05604599043726921,
- -0.001427569193765521,
- 0.025782395154237747,
- 0.04324670881032944,
- 0.038508255034685135,
- 0.015539968386292458,
- 0.005607028026133776,
- 0.0010279801208525896,
- 0.05242803692817688,
- 0.0355195552110672,
- 0.12787386775016785,
- -0.12914246320724487,
- -0.011385046876966953,
- -0.0617268905043602,
- 0.024428479373455048,
- 0.009760272689163685,
- -5.6835526551081926e-33,
- -0.043834250420331955,
- -0.0023380822967737913,
- 0.04452480375766754,
- -0.015597593039274216,
- 0.03814588487148285,
- 0.057809360325336456,
- -0.03465515002608299,
- 0.02703339047729969,
- -0.025729089975357056,
- 0.09539453685283661,
- 0.040264297276735306,
- -0.02368970401585102,
- 0.00888904184103012,
- 0.006588405463844538,
- -0.02324019931256771,
- 0.08526001125574112,
- -0.014862230978906155,
- 0.027891894802451134,
- 0.0045351372100412846,
- 0.06402404606342316,
- -0.041598089039325714,
- 0.016085566952824593,
- 0.003786753863096237,
- 0.03689304739236832,
- 0.05426568165421486,
- -0.036520570516586304,
- -0.009102738462388515,
- -0.03594399243593216,
- 0.12956281006336212,
- 0.04342445358633995,
- -0.019422773271799088,
- -0.019085584208369255,
- -0.009583022445440292,
- -0.019440174102783203,
- -0.03265247493982315,
- -0.002791481325402856,
- -0.03674890846014023,
- -0.08058276772499084,
- 0.039327580481767654,
- -0.027583250775933266,
- -0.055788010358810425,
- 0.012448642402887344,
- 0.04589502140879631,
- 0.024961482733488083,
- -0.04567179083824158,
- 0.08004021644592285,
- -0.0008857876528054476,
- 0.052717141807079315,
- -0.02151891030371189,
- 0.06868717819452286,
- -0.06474210321903229,
- -0.02470031939446926,
- -0.08123451471328735,
- 0.029755445197224617,
- -0.00938993226736784,
- -0.0625084936618805,
- 0.060870591551065445,
- 0.04565226659178734,
- -0.05287837237119675,
- -0.011381908319890499,
- -0.00396442785859108,
- 0.10766366869211197,
- -0.06631214171648026,
- 0.035997383296489716,
- -0.029919328168034554,
- -0.0039414335042238235,
- 0.022144222632050514,
- 0.0820930004119873,
- 0.0017656957497820258,
- -0.05596083775162697,
- -0.07061385363340378,
- 0.027818500995635986,
- 0.07423556596040726,
- 0.06567250192165375,
- -0.04359039291739464,
- 0.01626736856997013,
- 0.00805909838527441,
- 0.020206207409501076,
- -0.00014045510033611208,
- 0.034678153693675995,
- 0.030276915058493614,
- 0.0643429160118103,
- 0.02569361962378025,
- 0.0016497897449880838,
- 0.0414753183722496,
- 0.06728062778711319,
- 0.00901434849947691,
- -0.09567032009363174,
- 0.073806032538414,
- 0.011725160293281078,
- -0.12840445339679718,
- -0.027322417125105858,
- 0.08228245377540588,
- 0.08665844053030014,
- -0.03320514038205147,
- 3.0480237909035746e-33,
- -0.07868871092796326,
- -0.0683334693312645,
- -0.02003486640751362,
- 0.01277997437864542,
- -0.006500743329524994,
- -0.007507779635488987,
- 0.058468014001846313,
- -0.033548999577760696,
- -0.024332955479621887,
- -0.03388442099094391,
- -0.06809693574905396,
- 0.01630292646586895,
- 0.04295894503593445,
- 0.016154911369085312,
- 0.09245249629020691,
- -0.008966311812400818,
- 0.005111887585371733,
- -0.03921276330947876,
- 0.015743548050522804,
- -0.002002134220674634,
- -0.009192896075546741,
- 0.028013233095407486,
- -0.004899732768535614,
- 0.05843145772814751,
- -0.023647654801607132,
- 0.028382381424307823,
- -0.0026710713282227516,
- -0.007460154127329588,
- -0.018108194693922997,
- 0.037114161998033524,
- -0.04732820764183998,
- -0.020461110398173332,
- 0.021833904087543488,
- -0.06252675503492355,
- -0.07298947125673294,
- 0.07175691425800323,
- 0.03650081902742386,
- -0.044770315289497375,
- -0.0609070286154747,
- 0.07031030207872391,
- 0.017721669748425484,
- -0.051240891218185425,
- 0.010997122153639793,
- 0.029828939586877823,
- -0.016910970211029053,
- 0.015665529295802116,
- 0.032177116721868515,
- -0.04050714895129204,
- -0.009692711755633354,
- -0.0030094461981207132,
- -0.05506337434053421,
- 0.054591432213783264,
- -0.0062994505278766155,
- 0.044717177748680115,
- -0.04406628757715225,
- 0.08708682656288147,
- 0.1134294643998146,
- -0.011550397612154484,
- 0.04243064671754837,
- 0.007436549291014671,
- -0.057137832045555115,
- 0.013077616691589355,
- 0.05069264397025108,
- 0.11611977219581604,
- -0.08691927790641785,
- -0.04558552801609039,
- -0.014920394867658615,
- -0.033929094672203064,
- -0.027808010578155518,
- -0.030120188370347023,
- 0.04820716008543968,
- 0.004055169876664877,
- -0.032115302979946136,
- 0.03635629266500473,
- -0.040344323962926865,
- 0.10841401666402817,
- -0.07670401781797409,
- -0.07928518205881119,
- 0.01544489711523056,
- -0.0313115268945694,
- -0.08194189518690109,
- -0.01307294238358736,
- 0.051292844116687775,
- 0.04942572861909866,
- 0.0074457102455198765,
- -0.10350047796964645,
- 0.03227575868368149,
- -0.034166380763053894,
- 0.06889892369508743,
- -0.09145854413509369,
- 0.024975614622235298,
- -0.05479149892926216,
- -0.03533725067973137,
- -0.061782822012901306,
- 0.009823727421462536,
- -1.1561514412505858e-8,
- -0.026148779317736626,
- -0.05740675702691078,
- 0.008283184841275215,
- -0.04178013280034065,
- 0.040739595890045166,
- -0.02546711079776287,
- -0.03206252679228783,
- -0.017953354865312576,
- -0.03779817000031471,
- 0.057751644402742386,
- 0.026892822235822678,
- 0.024605806916952133,
- -0.06294605135917664,
- -0.00872669368982315,
- 0.03986910358071327,
- -0.01727915368974209,
- 0.059030842036008835,
- -0.03383295610547066,
- -0.030017022043466568,
- 0.022230364382267,
- 0.01087871566414833,
- 0.008886534720659256,
- -0.0007959312642924488,
- -0.0027037523686885834,
- -0.06519404798746109,
- -0.06782988458871841,
- 0.015528380870819092,
- 0.12379254400730133,
- 0.009272050112485886,
- -0.03496875613927841,
- -0.04033919423818588,
- 0.08049922436475754,
- 0.002556283725425601,
- -0.08472457528114319,
- 0.03528527542948723,
- 0.02765129692852497,
- 0.05780097469687462,
- -0.01730710081756115,
- -0.005451365374028683,
- 0.026533715426921844,
- -0.07632724195718765,
- -0.05589677765965462,
- -0.06302980333566666,
- -0.024743013083934784,
- 0.03998822346329689,
- 0.010657944716513157,
- -0.005286797881126404,
- 0.02140251360833645,
- 0.057483211159706116,
- -0.061652783304452896,
- -0.0003372352512087673,
- 0.010788210667669773,
- 0.12027889490127563,
- 0.048005204647779465,
- 0.07113528251647949,
- -0.06415445357561111,
- -0.044761259108781815,
- -0.024942653253674507,
- -0.06265097111463547,
- 0.003649780759587884,
- 0.09715773910284042,
- -0.0399191714823246,
- 0.032954420894384384,
- -0.12817980349063873
- ]
- },
- {
- "keyword": "trader",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06665434688329697,
- -0.007275157142430544,
- -0.04147458076477051,
- 0.05020518600940704,
- -0.07769393920898438,
- -0.036306511610746384,
- 0.16373082995414734,
- 0.05556400865316391,
- 0.0018745559500530362,
- -0.03586897626519203,
- 0.05078833922743797,
- -0.039414361119270325,
- -0.05958470329642296,
- 0.03525807708501816,
- -0.016143903136253357,
- -0.0001234977098647505,
- -0.01460288930684328,
- 0.057405270636081696,
- -0.025552107021212578,
- -0.049086976796388626,
- -0.14423896372318268,
- -0.07865991443395615,
- -0.053118977695703506,
- -0.0017040289239957929,
- 0.053635258227586746,
- 0.025782635435461998,
- 0.026679735630750656,
- 0.0011081051779910922,
- 0.027514485642313957,
- -0.061045560985803604,
- -0.07116558402776718,
- 0.01010979525744915,
- 0.0562780424952507,
- 0.032165657728910446,
- -0.01179924514144659,
- 0.00790657289326191,
- -0.008913407102227211,
- 0.024728629738092422,
- 0.05019032210111618,
- -0.03539663553237915,
- 0.035369113087654114,
- -0.04328233003616333,
- -0.03547464311122894,
- -0.031086726114153862,
- 0.021768609061837196,
- -0.009839877486228943,
- 0.056373026221990585,
- 0.045285388827323914,
- 0.03254383057355881,
- 0.0676993876695633,
- -0.11153751611709595,
- 0.02527645230293274,
- -0.06784991174936295,
- -0.010614059865474701,
- -0.018610430881381035,
- 0.02033456228673458,
- -0.04462980851531029,
- -0.02665182389318943,
- 0.10003190487623215,
- -0.022333113476634026,
- 0.07567431777715683,
- -0.020646972581744194,
- -0.023253174498677254,
- 0.01966831274330616,
- 0.07160047441720963,
- 0.013721780851483345,
- -0.0301984790712595,
- 0.013502414338290691,
- -0.12709154188632965,
- -0.01281135156750679,
- 0.043326567858457565,
- -0.03630205988883972,
- -0.05519447475671768,
- -0.007773085497319698,
- -0.009057002142071724,
- -0.09717679023742676,
- 0.05825529992580414,
- -0.03687194734811783,
- 0.07610276341438293,
- 0.012736247852444649,
- -0.013751299120485783,
- 0.061172667890787125,
- -0.05711868032813072,
- -0.053051721304655075,
- -0.05881602689623833,
- -0.01510276086628437,
- 0.03870248794555664,
- 0.0348319411277771,
- 0.08022785186767578,
- -0.020948337391018867,
- 0.0026304610073566437,
- 0.006070294883102179,
- -0.0051072025671601295,
- -0.006724581588059664,
- -0.04876640811562538,
- 0.013270352967083454,
- 0.031999025493860245,
- 0.07636475563049316,
- -0.050297271460294724,
- 0.19656062126159668,
- 0.10666124522686005,
- -0.0005218407604843378,
- -0.07950654625892639,
- -0.007756408769637346,
- -0.07849585264921188,
- 0.014927567914128304,
- -0.06072160601615906,
- 0.019233619794249535,
- 0.0037094030994921923,
- 0.04291606321930885,
- -0.12955410778522491,
- 0.07181036472320557,
- -0.09353552758693695,
- -0.02569068782031536,
- -0.05143408849835396,
- 0.09310518950223923,
- -0.03711770102381706,
- 0.008508561179041862,
- 0.03682231530547142,
- 0.0809389054775238,
- 0.01583273895084858,
- 0.05028727278113365,
- -0.04545096680521965,
- -0.03745066002011299,
- -0.07646133005619049,
- -0.006080560851842165,
- 0.036521896719932556,
- -5.028881647568859e-33,
- -0.09990043938159943,
- 0.01685541309416294,
- -0.008178230375051498,
- 0.03647903352975845,
- 0.035158537328243256,
- 0.04392961785197258,
- 0.046916455030441284,
- -0.052163269370794296,
- -0.08878720551729202,
- 0.02923665940761566,
- -0.06193281710147858,
- 0.05958595126867294,
- -0.055885013192892075,
- 0.07489199936389923,
- 0.002395175863057375,
- 0.009936931543052197,
- 0.015524834394454956,
- -0.03501042351126671,
- 0.09308824688196182,
- -0.11277473717927933,
- 0.005857618525624275,
- 0.008104152977466583,
- -0.0157163105905056,
- 0.07561686635017395,
- -0.00311204488389194,
- 0.004943598993122578,
- 0.011294669471681118,
- -0.028616033494472504,
- 0.10824727267026901,
- 0.045027878135442734,
- 0.049737926572561264,
- -0.03005378134548664,
- 0.0017844822723418474,
- 0.020917929708957672,
- -0.04310880973935127,
- 0.009637489914894104,
- -0.013763091526925564,
- -0.04378398135304451,
- -0.0026306496001780033,
- -0.026850957423448563,
- -0.06452953815460205,
- 0.06535521894693375,
- -0.028176842257380486,
- 0.0022627864964306355,
- -0.05100008100271225,
- 0.0030510311480611563,
- 0.022875448688864708,
- 0.021679187193512917,
- -0.018242042511701584,
- 0.021046631038188934,
- -0.09931622445583344,
- 0.014133155345916748,
- -0.01889723353087902,
- -0.028594234958291054,
- -0.008523649536073208,
- -0.06532522290945053,
- 0.03582402691245079,
- -0.029528090730309486,
- -0.10033257305622101,
- 0.007135866209864616,
- 0.06556841731071472,
- 0.07178528606891632,
- 0.021521693095564842,
- 0.0430193692445755,
- -0.06978779286146164,
- 0.03840828314423561,
- -0.0328742079436779,
- 0.026747651398181915,
- -0.04929082468152046,
- 0.009692810475826263,
- -0.029303109273314476,
- 0.02515215240418911,
- 0.14202876389026642,
- 0.02292114682495594,
- 0.0032721252646297216,
- 0.02382056415081024,
- 0.0023548428434878588,
- 0.0733480378985405,
- -0.0139142582193017,
- -0.02375119738280773,
- -0.045884184539318085,
- -0.024987416341900826,
- 0.06630498915910721,
- 0.10601384937763214,
- -0.03904780000448227,
- 0.027333375066518784,
- -0.08888775110244751,
- -0.05711783096194267,
- 0.08711571991443634,
- 0.06399957090616226,
- -0.13684198260307312,
- 0.012555270455777645,
- 0.04741957411170006,
- 0.039834897965192795,
- -0.034808628261089325,
- 3.413201396562088e-33,
- -0.07614125311374664,
- -0.021214354783296585,
- 0.008057182654738426,
- 0.04672858119010925,
- -0.037274181842803955,
- -0.015771429985761642,
- 0.04611829295754433,
- 0.005364968441426754,
- 0.0024798924569040537,
- 0.01604568026959896,
- -0.03498755022883415,
- -0.060628000646829605,
- 0.05761764571070671,
- -0.016847938299179077,
- 0.010820068418979645,
- 0.01804772950708866,
- 0.048450782895088196,
- 0.040792789310216904,
- 0.026953762397170067,
- -0.04097467660903931,
- -0.005336011294275522,
- -0.02093537524342537,
- -0.06573713570833206,
- 0.03576172515749931,
- 0.05133802816271782,
- 0.023580847308039665,
- 0.03788289800286293,
- 0.031412575393915176,
- -0.021998433396220207,
- 0.046782251447439194,
- 0.02528766542673111,
- 0.003104281611740589,
- 0.05072375014424324,
- 0.027107328176498413,
- -0.061167191714048386,
- 0.09144997596740723,
- 0.007677984423935413,
- 0.02849932387471199,
- 0.016896149143576622,
- 0.01538699958473444,
- 0.05374351143836975,
- -0.0268337931483984,
- 0.0572332926094532,
- 0.11311595886945724,
- -0.05492481589317322,
- -0.03741832450032234,
- 0.003931441344320774,
- -0.007549522444605827,
- 0.1357903927564621,
- 0.008755604736506939,
- -0.03792475536465645,
- 0.08556599169969559,
- 0.041584562510252,
- -0.0610060878098011,
- -0.06224069744348526,
- 0.06878980249166489,
- -0.008688312023878098,
- 0.021250268444418907,
- -0.017269782721996307,
- -0.006096048280596733,
- -0.04313460364937782,
- 0.036414023488759995,
- 0.06263783574104309,
- 0.03923061862587929,
- 0.011748772114515305,
- 0.026854965835809708,
- -0.00408740621060133,
- -0.0376165434718132,
- 0.04987959936261177,
- -0.042950570583343506,
- 0.11271880567073822,
- -0.025169992819428444,
- -0.06915188580751419,
- -0.024805275723338127,
- 0.0267422366887331,
- 0.022253362461924553,
- -0.06937113404273987,
- -0.008329459466040134,
- -0.008832608349621296,
- -0.0006600162014365196,
- 0.00014972113422118127,
- -0.04755150526762009,
- 0.06297913938760757,
- 0.05190013349056244,
- -0.034587204456329346,
- 0.029919490218162537,
- -0.015348708257079124,
- 0.07869639247655869,
- 0.052504200488328934,
- -0.07405002415180206,
- -0.01618148945271969,
- -0.04669789597392082,
- -0.026883341372013092,
- -0.062188293784856796,
- -0.05240218713879585,
- -1.1138181932324187e-8,
- -0.054106805473566055,
- -0.06059962511062622,
- 0.043514054268598557,
- -0.011609728448092937,
- -0.0212118998169899,
- 0.04428637772798538,
- 0.019114267081022263,
- -0.021562280133366585,
- -0.035406164824962616,
- 0.10636626183986664,
- -0.020497510209679604,
- -0.01182875782251358,
- -0.11488330364227295,
- 0.03009987436234951,
- 0.02087005041539669,
- -0.054420020431280136,
- 0.01937541738152504,
- 0.006691097281873226,
- -0.018612997606396675,
- -0.05505818501114845,
- 0.06032169237732887,
- 0.017497001215815544,
- 0.08599260449409485,
- 0.021769236773252487,
- -0.0036765753757208586,
- -0.032821957021951675,
- 0.04502033814787865,
- 0.10842753946781158,
- 0.004518032539635897,
- -0.011409102939069271,
- -0.05273832008242607,
- 0.060244981199502945,
- -0.0045851715840399265,
- -0.01065976731479168,
- -0.014984244480729103,
- -0.004064689390361309,
- 0.014913884922862053,
- 0.022020714357495308,
- -0.05870357155799866,
- 0.02520286664366722,
- -0.10180781781673431,
- -0.006631959229707718,
- 0.006699581164866686,
- -0.04014259949326515,
- -0.01651589386165142,
- 0.04095577821135521,
- -0.02998223714530468,
- -0.0065179383382201195,
- 0.11456337571144104,
- -0.08448513597249985,
- 0.0017978682881221175,
- -0.056559037417173386,
- 0.10820737481117249,
- 0.015483606606721878,
- 0.022509057074785233,
- -0.0074292924255132675,
- -0.018885109573602676,
- -0.00026851121219806373,
- -0.022460123524069786,
- -0.0792582631111145,
- 0.028658246621489525,
- -0.08155812323093414,
- -0.026690391823649406,
- 0.009715997613966465
- ]
- },
- {
- "keyword": "broker",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.017526481300592422,
- -0.008103201165795326,
- -0.09138939529657364,
- 0.03092612326145172,
- -0.07421617209911346,
- -0.010297822766005993,
- 0.06750474870204926,
- -0.008101234212517738,
- 0.030470367521047592,
- -0.009832336567342281,
- 0.023371798917651176,
- -0.039779599756002426,
- -0.018275970593094826,
- -0.017280779778957367,
- -0.04471004009246826,
- -0.046556390821933746,
- 0.04798250272870064,
- 0.04479188844561577,
- -0.04491044953465462,
- -0.06656916439533234,
- -0.17722198367118835,
- -0.024838043376803398,
- -0.09126297384500504,
- 0.004042153712362051,
- 0.07506383210420609,
- -0.05312025174498558,
- -0.016648070886731148,
- 0.02994425967335701,
- -0.040755413472652435,
- -0.11359871178865433,
- -0.010633734986186028,
- -0.058147132396698,
- -0.04091300442814827,
- 0.07150142639875412,
- 0.002970631467178464,
- 0.005170176737010479,
- 0.0009478997671976686,
- 0.048955921083688736,
- -0.00786089152097702,
- -0.05204344913363457,
- 0.0634331926703453,
- -0.029944125562906265,
- -0.0026368049439042807,
- -0.00023082728148438036,
- 0.025556348264217377,
- 0.024019813165068626,
- 0.010562810115516186,
- 0.0409490168094635,
- 0.05099580064415932,
- 0.018918946385383606,
- -0.08434831351041794,
- -0.02518227882683277,
- -0.0686441957950592,
- 0.058192454278469086,
- -0.008972033858299255,
- 0.01820862665772438,
- -0.04422483965754509,
- 0.04154438152909279,
- 0.020708533003926277,
- -0.00638217618688941,
- -0.018628956750035286,
- -0.027247469872236252,
- -0.006885428912937641,
- 0.03876633569598198,
- 0.074278324842453,
- 0.0014261784963309765,
- 0.03544727340340614,
- 0.03449130058288574,
- -0.06374327093362808,
- -0.08005543798208237,
- 0.013914994895458221,
- -0.07515586912631989,
- -0.05407069995999336,
- -0.023596515879034996,
- 0.024329163134098053,
- -0.041530534625053406,
- 0.06064290180802345,
- 0.017164425924420357,
- 0.09159313887357712,
- -0.009076631627976894,
- -0.014960150234401226,
- -0.00018465278844814748,
- -0.06732814759016037,
- 0.016222642734646797,
- -0.03759453445672989,
- -0.03193246200680733,
- 0.013888051733374596,
- 0.032226528972387314,
- 0.05647257715463638,
- -0.037648748606443405,
- 0.03765150159597397,
- 0.03103688545525074,
- 0.030460380017757416,
- 0.018737569451332092,
- -0.06104574352502823,
- 0.024162765592336655,
- 0.04312529042363167,
- 0.0351569801568985,
- -0.0036978337448090315,
- 0.1818230003118515,
- 0.031687457114458084,
- -0.03401096165180206,
- -0.14493036270141602,
- -0.03590278699994087,
- -0.08006592839956284,
- 0.0025776238180696964,
- -0.003059391165152192,
- -0.020728282630443573,
- -0.028470762073993683,
- 0.0106428237631917,
- -0.10008040815591812,
- 0.07572035491466522,
- -0.08544470369815826,
- -0.0901884213089943,
- -0.030678419396281242,
- 0.06209215521812439,
- 0.008023887872695923,
- -0.0010802815668284893,
- 0.06686688959598541,
- -0.06088807061314583,
- -0.03257459029555321,
- 0.037132423371076584,
- -0.05634085834026337,
- -0.026717940345406532,
- -0.037345871329307556,
- 0.015023543499410152,
- 0.054001882672309875,
- -4.010697828245364e-33,
- -0.06084788218140602,
- 0.007285282481461763,
- 0.045669421553611755,
- 0.09834223985671997,
- 0.0476452112197876,
- 0.05790581926703453,
- 0.06695246696472168,
- -0.010663164779543877,
- -0.09722704440355301,
- 0.0365324430167675,
- -0.008382702246308327,
- 0.032797712832689285,
- -0.10666529089212418,
- 0.025091545656323433,
- 0.0014914453495293856,
- -0.05148051306605339,
- -0.017702212557196617,
- 0.02770363539457321,
- 0.04587133973836899,
- -0.06369731575250626,
- -0.06425829231739044,
- 0.05341329798102379,
- -0.05051504448056221,
- 0.05840124189853668,
- 0.021476974710822105,
- 0.0039771851152181625,
- 0.017171761021018028,
- -0.08261705189943314,
- 0.06147618964314461,
- 0.030481399968266487,
- 0.04582644999027252,
- 0.02571430429816246,
- -0.106849804520607,
- 0.058239296078681946,
- -0.01446634903550148,
- 0.038491733372211456,
- -0.012521153315901756,
- -0.03367600217461586,
- -0.005966114811599255,
- -0.0024104744661599398,
- -0.10310527682304382,
- 0.012949436902999878,
- -0.0382746122777462,
- -0.03953859210014343,
- -0.05353925749659538,
- 0.022795287892222404,
- -0.016646286472678185,
- 0.0032058311626315117,
- 0.048348329961299896,
- 0.011020498350262642,
- -0.0341724269092083,
- -0.002624784829095006,
- 0.07994725555181503,
- 0.024661246687173843,
- 0.026424329727888107,
- -0.05213070288300514,
- 0.06802596896886826,
- -0.037610217928886414,
- -0.05567897856235504,
- 0.018081311136484146,
- 0.02149268053472042,
- 0.050512608140707016,
- -0.04014090448617935,
- 0.02830122783780098,
- -0.02891244925558567,
- 0.04334382712841034,
- -0.0025582395028322935,
- 0.03560049459338188,
- 0.002349893795326352,
- 0.020977940410375595,
- -0.02723616547882557,
- 0.00016361889720428735,
- 0.17304638028144836,
- -0.00684649171307683,
- -0.002321223495528102,
- -0.024746078997850418,
- -0.021730495616793633,
- 0.029150595888495445,
- 0.01732456311583519,
- -0.00711108697578311,
- 0.04538990184664726,
- -0.020010733976960182,
- 0.011020666919648647,
- 0.09642674773931503,
- 0.008256041444838047,
- -0.0018393456703051925,
- -0.08314573019742966,
- -0.008910436183214188,
- 0.090810626745224,
- 0.08534660935401917,
- -0.12444968521595001,
- 0.024399811401963234,
- 0.08601237088441849,
- 0.10569562762975693,
- 0.002185836201533675,
- 2.984719746691948e-33,
- -0.08621950447559357,
- -0.07536417990922928,
- -0.0211501307785511,
- 0.10571685433387756,
- -0.017149949446320534,
- -0.03806095942854881,
- 0.022437307983636856,
- -0.03436527028679848,
- 0.0455528162419796,
- 0.027055732905864716,
- -0.033646345138549805,
- -0.0713772401213646,
- 0.06911680102348328,
- -0.017198272049427032,
- 0.0025860886089503765,
- -0.06753257662057877,
- -0.03259000554680824,
- -0.02779257670044899,
- 0.03844049572944641,
- -0.03891813009977341,
- -0.022380948066711426,
- -0.05861518532037735,
- -0.023211779072880745,
- 0.04783714935183525,
- 0.06023817136883736,
- -0.005957948509603739,
- 0.0353085957467556,
- 0.11979296803474426,
- -0.013556763529777527,
- 0.01692734844982624,
- 0.039698440581560135,
- -0.055501457303762436,
- 0.023007728159427643,
- 0.07176187634468079,
- -0.09703592211008072,
- 0.06718572229146957,
- 0.05231848359107971,
- 0.0703253448009491,
- -0.027870692312717438,
- 0.006944811437278986,
- 0.012407495640218258,
- -0.07955899089574814,
- 0.056196581572294235,
- 0.1105383113026619,
- -0.019626174122095108,
- 0.007570491638034582,
- 0.0593731589615345,
- 0.031367745250463486,
- 0.1095578670501709,
- 0.04761793091893196,
- -0.04435999318957329,
- 0.06530958414077759,
- 0.03465066850185394,
- 0.0006676323246210814,
- -0.04321731999516487,
- 0.08230174332857132,
- 0.003016578732058406,
- 0.05026452988386154,
- 0.04506935179233551,
- -0.0071278223767876625,
- 0.036367855966091156,
- 0.03332468494772911,
- 0.0379168875515461,
- 0.08913376182317734,
- 0.009476760402321815,
- 0.042978912591934204,
- -0.002525843447074294,
- -0.07150862365961075,
- -0.006142800208181143,
- -0.012224101461470127,
- 0.09258060157299042,
- -0.0498984269797802,
- 0.005017704796046019,
- -0.03868672251701355,
- 0.07204852253198624,
- 0.030259504914283752,
- -0.0102772181853652,
- -0.034242987632751465,
- -0.013142069801688194,
- 0.02622382715344429,
- -0.017255647107958794,
- -0.006384117994457483,
- 0.06516633927822113,
- 0.06117454916238785,
- 0.004081779159605503,
- 0.009180029854178429,
- 0.019011344760656357,
- 0.023435747250914574,
- 0.02314489707350731,
- -0.02222464047372341,
- -0.004257873632013798,
- -0.005245306063443422,
- 0.022136420011520386,
- -0.09697499871253967,
- -0.044409774243831635,
- -1.0531662653079366e-8,
- -0.04794221371412277,
- -0.04369531571865082,
- 0.018240056931972504,
- -0.0315907783806324,
- 0.00817202590405941,
- 0.025827186182141304,
- 0.061802998185157776,
- 0.016498683020472527,
- -0.01825043372809887,
- 0.10135265439748764,
- 0.04397054761648178,
- -0.051845256239175797,
- -0.10515788942575455,
- -0.036269430071115494,
- -0.0038171594496816397,
- -0.10319656133651733,
- 0.014258372597396374,
- 0.016233352944254875,
- -0.03310047835111618,
- -0.021049661561846733,
- 0.024480346590280533,
- 0.04985055327415466,
- 0.061673007905483246,
- -0.0074626849964261055,
- -0.016984356567263603,
- -0.0207208301872015,
- 0.06814790517091751,
- 0.11856139451265335,
- 0.03409883752465248,
- 0.015071464702486992,
- -0.06999146938323975,
- 0.016599560156464577,
- 0.06595110148191452,
- -0.0712863951921463,
- -0.09934736043214798,
- 0.003121346002444625,
- -0.04192592576146126,
- 0.04091785475611687,
- 0.0020749152172356844,
- 0.004171562381088734,
- -0.11635874211788177,
- 0.005177851766347885,
- 0.01569918356835842,
- -0.04551741108298302,
- -0.023631704971194267,
- 0.06408251821994781,
- -0.04329196363687515,
- 0.011934923939406872,
- 0.10827121138572693,
- -0.03243833780288696,
- -0.026179924607276917,
- -0.04758435860276222,
- 0.11119837313890457,
- 0.010546747595071793,
- -0.005831215064972639,
- 0.0168333500623703,
- -0.016921762377023697,
- -0.03684217482805252,
- 0.04288012906908989,
- -0.013998121954500675,
- -0.01128065399825573,
- -0.058138228952884674,
- -0.041032448410987854,
- 0.022126812487840652
- ]
- },
- {
- "keyword": "advisor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.030318444594740868,
- 0.014905450865626335,
- -0.03012676350772381,
- 0.07463064044713974,
- -0.002960135694593191,
- -0.031865112483501434,
- 0.10173267871141434,
- 0.007908489555120468,
- -0.02059083990752697,
- 0.031519994139671326,
- -0.04049496352672577,
- -0.057124506682157516,
- -0.057758793234825134,
- 0.05609649419784546,
- -0.044702790677547455,
- 0.0764658972620964,
- 0.028814801946282387,
- -0.013528633862733841,
- -0.03491497039794922,
- -0.10759282112121582,
- -0.09894610196352005,
- 0.028233602643013,
- -0.0356447659432888,
- -0.00813891552388668,
- -0.025431256741285324,
- 0.040193621069192886,
- -0.04072225093841553,
- 0.016477907076478004,
- -0.053207702934741974,
- -0.028559479862451553,
- -0.021475039422512054,
- -0.015192752704024315,
- 0.005844240542501211,
- 0.017616506665945053,
- -0.003745542373508215,
- 0.051751092076301575,
- -0.014281073585152626,
- 0.05441034957766533,
- 0.052877817302942276,
- -0.010137165896594524,
- -0.043803904205560684,
- -0.016526779159903526,
- -0.005789817776530981,
- -0.08312727510929108,
- -0.016411377117037773,
- -0.02126363478600979,
- 0.0064978161826729774,
- 0.013357927091419697,
- 0.023737402632832527,
- -0.06683792173862457,
- -0.1096901148557663,
- -0.06568513810634613,
- -0.07311102002859116,
- -0.014883161522448063,
- 0.005615724250674248,
- 0.01454425323754549,
- 0.04252840578556061,
- -0.038689177483320236,
- 0.026520658284425735,
- 0.0349513441324234,
- -0.009644818492233753,
- -0.019332604482769966,
- -0.030778585001826286,
- -0.0012161008780822158,
- 0.058313097804784775,
- -0.01687544584274292,
- -0.05024222657084465,
- 0.011580445803701878,
- -0.0040492224507033825,
- -0.03695899248123169,
- -0.01880539208650589,
- -0.035345930606126785,
- -0.07416428625583649,
- -0.018636764958500862,
- 0.018931858241558075,
- -0.008458892814815044,
- 0.04941244795918465,
- 0.03409038111567497,
- 0.0895744264125824,
- -0.07248736172914505,
- -0.0035459985956549644,
- 0.02366708032786846,
- 0.011029195971786976,
- -0.00689280591905117,
- -0.025584569200873375,
- -0.023963386192917824,
- 0.01471367571502924,
- -0.020507415756583214,
- 0.038657594472169876,
- 0.03219827637076378,
- 0.050029315054416656,
- -0.011915383860468864,
- 0.027969669550657272,
- 0.01518850214779377,
- -0.07628817111253738,
- 0.010903478600084782,
- -0.04849283769726753,
- -0.10455665737390518,
- -0.12873651087284088,
- 0.2572934329509735,
- -0.04930770769715309,
- 0.005668973550200462,
- -0.021236814558506012,
- 0.018338464200496674,
- -0.04455519840121269,
- -0.01961640827357769,
- 0.007918814197182655,
- -0.05196826159954071,
- 0.005183584056794643,
- 0.033728841692209244,
- -0.02147715352475643,
- 0.037889514118433,
- -0.032532792538404465,
- 0.028158094733953476,
- 0.012825747951865196,
- 0.004930159077048302,
- -0.00686209462583065,
- 0.043635159730911255,
- 0.038471728563308716,
- 0.10978139191865921,
- 0.006884987466037273,
- 0.018790218979120255,
- -0.029849382117390633,
- 0.05204123258590698,
- -0.03865782171487808,
- -0.03105379082262516,
- -0.07250387966632843,
- -5.435357308507636e-33,
- -0.04437113180756569,
- 0.07449924945831299,
- 0.13183848559856415,
- 0.02733072079718113,
- -0.02263021469116211,
- 0.0268198661506176,
- -0.0015054591931402683,
- 0.017337080091238022,
- 0.03763990476727486,
- -0.005156554747372866,
- 0.05132560059428215,
- 0.0690600574016571,
- -0.01817506179213524,
- -0.0066350772976875305,
- -0.035738505423069,
- 0.007125054020434618,
- 0.03373130410909653,
- 0.12618960440158844,
- -0.038029007613658905,
- -0.011806751601397991,
- -0.049677520990371704,
- 0.05757522210478783,
- -0.0375942662358284,
- -0.022179139778017998,
- 0.000857286446262151,
- 0.007555532734841108,
- 0.03145892545580864,
- 0.01074916310608387,
- 0.07799338549375534,
- 0.022314976900815964,
- -0.045392800122499466,
- 0.042200952768325806,
- -0.044611990451812744,
- -0.0626416727900505,
- -0.010868142358958721,
- 0.009250874631106853,
- -0.03222828730940819,
- -0.10504207760095596,
- 0.021403688937425613,
- -0.037255194038152695,
- -0.07476726174354553,
- 0.012442967854440212,
- 0.09730091691017151,
- -0.02398836985230446,
- -0.04597810283303261,
- -0.018874559551477432,
- 0.08795803785324097,
- 0.041495732963085175,
- 0.04542471095919609,
- 0.0456780269742012,
- -0.07906260341405869,
- -0.11141154915094376,
- -0.029668370261788368,
- 0.00881305243819952,
- -0.007903573103249073,
- -0.02150055766105652,
- 0.053215403109788895,
- -0.024871546775102615,
- 0.05443844199180603,
- -0.06567128747701645,
- 0.05319221690297127,
- 0.011124196462333202,
- -0.1286531388759613,
- 0.009487573988735676,
- -0.03608240187168121,
- -0.0645943135023117,
- -0.004956777673214674,
- 0.02325649932026863,
- 0.08274118602275848,
- -0.0016844342462718487,
- -0.09654096513986588,
- 0.06114232540130615,
- 0.1399764120578766,
- 0.006149988621473312,
- -0.045202769339084625,
- -0.03256400674581528,
- -0.02958735264837742,
- 0.0284609142690897,
- -0.06787987798452377,
- -0.008646935224533081,
- -0.05038467049598694,
- 0.0681653767824173,
- 0.03349008038640022,
- 0.009727489203214645,
- 0.029844706878066063,
- 0.022365029901266098,
- -0.016014650464057922,
- 0.007541470229625702,
- 0.09428701549768448,
- 0.06880883872509003,
- -0.11397618055343628,
- -0.00610731216147542,
- 0.045332152396440506,
- 0.09799625724554062,
- -0.02943088859319687,
- 3.442806589129532e-33,
- 0.03023989126086235,
- -0.053175441920757294,
- -0.019247213378548622,
- -0.007898450829088688,
- 0.1505807638168335,
- -0.0178423672914505,
- -0.014260051771998405,
- 0.0052573890425264835,
- -0.02122841775417328,
- -0.05631748214364052,
- -0.018068138509988785,
- -0.010634617879986763,
- 0.07964445650577545,
- -0.005583000369369984,
- 0.027274297550320625,
- -0.04972127079963684,
- 0.0629865974187851,
- -0.06866428256034851,
- 0.01737869344651699,
- -0.05981353670358658,
- -0.03924524784088135,
- -0.0301049891859293,
- 0.02952330745756626,
- 0.006170698441565037,
- -0.03901578485965729,
- -0.03942705690860748,
- 0.05531102791428566,
- 0.053189005702733994,
- -0.06338393688201904,
- 0.028473814949393272,
- -0.018639618530869484,
- -0.034807443618774414,
- -0.009222177788615227,
- 0.07540986686944962,
- -0.027773955836892128,
- 0.09685855358839035,
- -0.017222942784428596,
- -0.0548541285097599,
- -0.06498102843761444,
- 0.10308100283145905,
- 0.045591793954372406,
- -0.040408506989479065,
- 0.1259966492652893,
- 0.03759416937828064,
- -0.022440984845161438,
- -0.01725206896662712,
- 0.020477717742323875,
- 0.03702772036194801,
- 0.020300347357988358,
- -0.025034036487340927,
- -0.10941382497549057,
- 0.042521748691797256,
- -0.07777008414268494,
- -0.09894923865795135,
- -0.05174563452601433,
- 0.037247490137815475,
- 0.09776865690946579,
- -0.0135904960334301,
- 0.05035948008298874,
- 0.029771650210022926,
- 0.0037612991873174906,
- 0.006280549801886082,
- -0.007535536307841539,
- 0.12837167084217072,
- -0.04910094290971756,
- 0.031208984553813934,
- -0.06416330486536026,
- 0.03587571531534195,
- 0.012671472504734993,
- -0.008717745542526245,
- 0.07083083689212799,
- -0.011280584149062634,
- -0.04077070206403732,
- -0.0006592072313651443,
- -0.01149157527834177,
- -0.01898796297609806,
- -0.07847243547439575,
- -0.05428650975227356,
- 0.000359398836735636,
- -0.039178188890218735,
- -0.03656288608908653,
- -0.061664506793022156,
- -0.03090578503906727,
- 0.05435239151120186,
- 0.00028507556999102235,
- -0.031829338520765305,
- 0.007187774870544672,
- 0.013808822259306908,
- -0.02160818502306938,
- -0.04477473348379135,
- 0.03655504062771797,
- -0.03663775697350502,
- 0.01519249752163887,
- -0.03182676061987877,
- -0.0168334748595953,
- -1.1638035424255122e-8,
- -0.035585515201091766,
- 0.014732212759554386,
- 0.06365785747766495,
- -0.011676878668367863,
- 0.040061529725790024,
- -0.037960413843393326,
- 0.004391742870211601,
- -0.06003522872924805,
- 0.05572947859764099,
- 0.04698723182082176,
- 0.022276300936937332,
- -0.06457795947790146,
- 0.0005170390359126031,
- -0.014246879145503044,
- 0.0954960361123085,
- -0.03808734565973282,
- 0.005719505716115236,
- 0.10630682110786438,
- -0.009789488278329372,
- 0.06308519095182419,
- 0.044429756700992584,
- 0.03226909786462784,
- -0.003833079244941473,
- -0.009538265876471996,
- 0.0164245143532753,
- -0.010363719426095486,
- 0.0047222222201526165,
- 0.09994973987340927,
- -0.019573485478758812,
- 0.15913908183574677,
- 0.007163120899349451,
- 0.02427111752331257,
- -0.006951663177460432,
- -0.03500334545969963,
- 0.022598814219236374,
- 0.0021223416551947594,
- -0.000366816355381161,
- -0.06317026913166046,
- 0.0240633562207222,
- 0.0633431151509285,
- -0.01587393693625927,
- 0.06073552370071411,
- 0.030320825055241585,
- -0.022171104326844215,
- 0.005955768749117851,
- 0.060973525047302246,
- 0.055333446711301804,
- -0.07166093587875366,
- 0.062035493552684784,
- -0.03067913092672825,
- -0.004864383488893509,
- 0.03615297004580498,
- 0.034302279353141785,
- 0.01638970710337162,
- 0.05170835927128792,
- -0.06110832095146179,
- 0.043925415724515915,
- -0.014366861432790756,
- -0.11426994204521179,
- 0.0703827440738678,
- 0.12214881926774979,
- -0.026404527947306633,
- 0.03313405066728592,
- 0.03760194033384323
- ]
- },
- {
- "keyword": "counselor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.07309108227491379,
- -0.01642240583896637,
- -0.05107485502958298,
- 0.06786210089921951,
- 0.013667359948158264,
- 0.029554376378655434,
- 0.11803485453128815,
- 0.02195066213607788,
- 0.030944444239139557,
- 0.0252104252576828,
- 0.012479518540203571,
- -0.08894062042236328,
- -0.049462396651506424,
- 0.06833254545927048,
- 0.03852352499961853,
- 0.021269455552101135,
- 0.02844439446926117,
- 0.010102801024913788,
- -0.0032130859326571226,
- -0.09269969910383224,
- -0.11393860727548599,
- 0.047927550971508026,
- 0.002375507727265358,
- 0.045142337679862976,
- 0.06148311495780945,
- 0.03793046250939369,
- -0.06658368557691574,
- -0.07513068616390228,
- -0.020620230585336685,
- -0.04747115448117256,
- 0.007367085665464401,
- -0.004294422455132008,
- 0.033005423843860626,
- 0.00484117167070508,
- -0.007728319149464369,
- 0.002480077324435115,
- 0.0009975937427952886,
- 0.05621900036931038,
- 0.05765029415488243,
- -0.015017865225672722,
- -0.04096869379281998,
- 0.06024402007460594,
- 0.06965583562850952,
- -0.0015425161691382527,
- -0.027176152914762497,
- -0.04335576295852661,
- -0.0009216952603310347,
- -0.02631431259214878,
- -0.01759091205894947,
- -0.06843195110559464,
- -0.003678105538710952,
- 0.013177227228879929,
- -0.013276573270559311,
- -0.009261331520974636,
- 0.023205388337373734,
- 0.040945135056972504,
- 0.02393721416592598,
- 0.07070113718509674,
- 0.004071429371833801,
- 0.11932997405529022,
- -0.02133447304368019,
- 0.014595502987504005,
- -0.002744110766798258,
- 0.027895651757717133,
- 0.015265093185007572,
- 0.04334816709160805,
- -0.009959964081645012,
- 0.10372273623943329,
- 0.0893896222114563,
- -0.011611045338213444,
- -0.03828795999288559,
- -0.04953628405928612,
- 0.013073981739580631,
- -0.004849208518862724,
- 0.11422394216060638,
- -0.042305223643779755,
- 0.06303062289953232,
- 0.0005300753400661051,
- 0.051838360726833344,
- 0.019864115864038467,
- -0.0610135942697525,
- -0.013719218783080578,
- -0.03830995783209801,
- 0.022102847695350647,
- -0.053759098052978516,
- -0.025416793301701546,
- 0.02156498283147812,
- 0.0007272378425113857,
- 0.028216326609253883,
- 0.011325170285999775,
- 0.028515378013253212,
- -0.015123930759727955,
- -0.0037644312251359224,
- -0.019117722287774086,
- -0.13680003583431244,
- -0.0017976620001718402,
- -0.0661984458565712,
- -0.060120344161987305,
- 0.006221532355993986,
- 0.26483485102653503,
- -0.005514586344361305,
- 0.01717665232717991,
- -0.10025845468044281,
- 0.04479541629552841,
- -0.01716010645031929,
- -0.004765956662595272,
- -0.00030427228193730116,
- 0.023060930892825127,
- 0.012122368440032005,
- 0.0091790072619915,
- -0.008707020431756973,
- 0.015475003980100155,
- -0.00351623329333961,
- 0.027415066957473755,
- 0.03800995647907257,
- 0.03236154094338417,
- 0.11742797493934631,
- -0.0019640312530100346,
- 0.09501450508832932,
- 0.13661736249923706,
- 0.026893705129623413,
- 0.04081379994750023,
- -0.025596635416150093,
- 0.054854616522789,
- -0.08228366076946259,
- -0.04483747109770775,
- -0.0018677987391129136,
- -3.73801619963321e-33,
- 0.06426496058702469,
- -0.021059440448880196,
- 0.07092957198619843,
- 0.014304837211966515,
- 0.015484357252717018,
- 0.051368553191423416,
- -0.007277279626578093,
- 0.03757408261299133,
- -0.03464643284678459,
- 0.010271078906953335,
- 0.04447099193930626,
- -0.01719195954501629,
- -0.025408204644918442,
- 0.044898852705955505,
- -0.054390799254179,
- -0.01701837033033371,
- -0.07914808392524719,
- 0.04999423399567604,
- -0.04442083090543747,
- 0.01344401016831398,
- -0.05625573918223381,
- 0.056330133229494095,
- 0.0031898210290819407,
- 0.07984508574008942,
- -0.024159003049135208,
- -0.03769411891698837,
- 0.016674594953656197,
- 0.011984141543507576,
- 0.1028679758310318,
- 0.01801467500627041,
- -0.045239634811878204,
- 0.014965544454753399,
- 0.0051316083408892155,
- 0.014981036074459553,
- -0.005445278249680996,
- 0.05833478271961212,
- -0.047218531370162964,
- -0.04223517328500748,
- -0.004390454851090908,
- -0.03584112599492073,
- -0.08196518570184708,
- 0.052679575979709625,
- 0.019259460270404816,
- -0.0256968904286623,
- 0.031896766275167465,
- 0.011647192761301994,
- -0.020440392196178436,
- -0.0567738302052021,
- -0.08679363131523132,
- 0.06439302116632462,
- -0.07947677373886108,
- -0.013558320701122284,
- 0.02001720480620861,
- -0.05660085007548332,
- -0.02338486909866333,
- -0.03397734835743904,
- 0.060593970119953156,
- 0.05280519276857376,
- 0.0053165266290307045,
- -0.04221848398447037,
- 0.047594767063856125,
- -0.005726656410843134,
- -0.1076032891869545,
- -0.051182087510824203,
- 0.0025100759230554104,
- -0.018463129177689552,
- 0.011101748794317245,
- -0.048609476536512375,
- 0.11307301372289658,
- -0.104000523686409,
- -0.16109120845794678,
- 0.09217190742492676,
- 0.05615696310997009,
- 0.04989616945385933,
- 0.024478912353515625,
- -0.03180970624089241,
- -0.050513554364442825,
- -0.0400419756770134,
- -0.07378365099430084,
- 0.0059541999362409115,
- 0.00045888908789493144,
- 0.021410983055830002,
- -0.05271999165415764,
- 0.02869136817753315,
- 0.10693829506635666,
- -0.024476421996951103,
- -0.05512182414531708,
- -0.03172841668128967,
- 0.031579308211803436,
- 0.0479971207678318,
- -0.07815179228782654,
- 0.012376389466226101,
- 0.07838306576013565,
- 0.07743489742279053,
- 0.058182492852211,
- 3.0406178091514096e-33,
- 0.010863136500120163,
- -0.03069046325981617,
- 0.022080834954977036,
- -0.05893217399716377,
- 0.03263964131474495,
- -0.04986616224050522,
- -0.0028277328237891197,
- 0.023363467305898666,
- 0.004249454475939274,
- 0.03361823037266731,
- 0.010915638878941536,
- -0.032521847635507584,
- 0.03118402697145939,
- 0.07569914311170578,
- 0.007167815696448088,
- 0.002778467256575823,
- 0.032233066856861115,
- 0.011619952507317066,
- -0.025795675814151764,
- -0.000988601939752698,
- -0.04617439955472946,
- 0.03222278505563736,
- -0.08075553178787231,
- -0.007253850810229778,
- 0.06461793929338455,
- 0.00045074112131260335,
- -0.015525706112384796,
- 0.048894044011831284,
- 0.04225749522447586,
- -0.02915782481431961,
- 0.015340231359004974,
- -0.0065625919960439205,
- -0.04343816637992859,
- -0.025520717725157738,
- -0.032663244754076004,
- 0.026004061102867126,
- 0.02018897794187069,
- 0.030672281980514526,
- -0.11546710133552551,
- -0.05121031776070595,
- 0.03341449052095413,
- -0.05306817218661308,
- 0.009531861171126366,
- -0.020142467692494392,
- -0.0025372339878231287,
- 0.027233779430389404,
- -0.03323213756084442,
- 0.028028573840856552,
- -0.05866023525595665,
- 0.0022254223003983498,
- -0.16331495344638824,
- -0.023928837850689888,
- 0.018953267484903336,
- -0.011376716196537018,
- 0.06802809238433838,
- -0.07316111028194427,
- 0.04629011079668999,
- -0.011016419157385826,
- -0.07046855986118317,
- -0.012248221784830093,
- 0.0332237146794796,
- 0.021091412752866745,
- -0.011922983452677727,
- 0.06211642920970917,
- -0.022457120940089226,
- -0.02745790034532547,
- -0.012332924641668797,
- 0.014047889038920403,
- -0.09632326662540436,
- 0.021957628428936005,
- 0.07642672210931778,
- 0.07014509290456772,
- 0.003642460098490119,
- -0.03035307489335537,
- -0.023441407829523087,
- -0.013434980995953083,
- -0.12126899510622025,
- -0.04081614688038826,
- -0.07574297487735748,
- -0.013322608545422554,
- -0.031208956614136696,
- -0.07745346426963806,
- 0.03536466881632805,
- 0.05443065986037254,
- 0.06009172275662422,
- -0.06868359446525574,
- 0.07066816091537476,
- 0.05012134462594986,
- 0.011008234694600105,
- -0.05805094912648201,
- -0.049206625670194626,
- -0.0172470323741436,
- 0.01099054329097271,
- -0.015601877123117447,
- -0.008497138507664204,
- -1.0944567918613757e-8,
- -0.00998565275222063,
- -0.1018025279045105,
- -0.08881523460149765,
- -0.0418909415602684,
- 0.0005043857963755727,
- 0.05514414235949516,
- -0.027552518993616104,
- -0.013553556986153126,
- -0.028075993061065674,
- 0.055482588708400726,
- 0.048630472272634506,
- 0.02586822584271431,
- 0.018604116514325142,
- 0.0034077030140906572,
- 0.032972656190395355,
- -0.06437226384878159,
- 0.07076726853847504,
- -0.01885361038148403,
- 0.041859425604343414,
- 0.000002770171931842924,
- -0.02481411024928093,
- -0.01804867573082447,
- -0.029567070305347443,
- 0.0879770815372467,
- -0.061963118612766266,
- 0.008444832637906075,
- 0.03726617246866226,
- 0.13706684112548828,
- -0.040779102593660355,
- 0.03995419666171074,
- 0.04329017549753189,
- 0.006927978713065386,
- 0.027164321392774582,
- -0.03828895837068558,
- -0.03491763398051262,
- -0.035059764981269836,
- 0.009669344872236252,
- -0.07498649507761002,
- -0.006812691688537598,
- 0.03497440740466118,
- -0.013445126824080944,
- -0.022905051708221436,
- 0.04234764724969864,
- -0.010688127018511295,
- 0.06821104884147644,
- -0.000003255362116760807,
- 0.06340242177248001,
- -0.029488367959856987,
- -0.0006145613733679056,
- -0.050526753067970276,
- 0.032685715705156326,
- -0.007709539961069822,
- -0.003094749990850687,
- 0.02282589115202427,
- 0.058051761239767075,
- -0.02792578749358654,
- 0.06292694061994553,
- -0.03544363006949425,
- -0.1559804528951645,
- 0.008379446342587471,
- 0.10100086033344269,
- -0.010122769512236118,
- 0.09721548855304718,
- -0.06106128916144371
- ]
- },
- {
- "keyword": "teacher",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.045472402125597,
- 0.03444011136889458,
- -0.012014389038085938,
- 0.06823701411485672,
- -0.06926517933607101,
- -0.05500461906194687,
- 0.11051971465349197,
- 0.013601399026811123,
- 0.052695054560899734,
- 0.06557755172252655,
- 0.007043207995593548,
- 0.020667538046836853,
- -0.03240877017378807,
- 0.05205899849534035,
- -0.024037912487983704,
- 0.05603561922907829,
- -0.010627646930515766,
- 0.030908619984984398,
- -0.05391841009259224,
- -0.09837158024311066,
- -0.08254721015691757,
- 0.058365579694509506,
- -0.05397068336606026,
- 0.017026575282216072,
- 0.039381399750709534,
- 0.08169431239366531,
- 0.02060229703783989,
- -0.09297212213277817,
- -0.008512357249855995,
- -0.11111171543598175,
- -0.04950891435146332,
- -0.0814160406589508,
- 0.013923708349466324,
- 0.02640199474990368,
- -0.012310276739299297,
- 0.023298244923353195,
- 0.043461818248033524,
- 0.0579458586871624,
- -0.006395027972757816,
- -0.03445602208375931,
- -0.03612064942717552,
- -0.01352863758802414,
- -0.011833781376481056,
- -0.01587439887225628,
- -0.0033322800882160664,
- 0.009141173213720322,
- 0.06828919798135757,
- -0.07219235599040985,
- 0.03161623328924179,
- -0.04388514906167984,
- 0.03451528772711754,
- -0.045786771923303604,
- -0.08547867089509964,
- -0.024948012083768845,
- -0.005011184606701136,
- 0.011845729313790798,
- 0.005303934216499329,
- 0.026450693607330322,
- 0.014835217036306858,
- 0.005921469535678625,
- -0.04143413528800011,
- 0.02668716199696064,
- -0.013732165098190308,
- 0.04719952493906021,
- 0.053625207394361496,
- -0.0043257903307676315,
- -0.07304321974515915,
- 0.046411432325839996,
- -0.004960741847753525,
- -0.006057645194232464,
- -0.003264247439801693,
- 0.020531369373202324,
- 0.07462344318628311,
- 0.0006911383825354278,
- 0.07997212558984756,
- -0.10026530921459198,
- 0.04396210238337517,
- -0.016865817829966545,
- 0.10175228118896484,
- -0.04545946046710014,
- -0.0288655124604702,
- -0.08811520040035248,
- -0.0005451787146739662,
- 0.011796723119914532,
- 0.06233353912830353,
- -0.035866402089595795,
- 0.008032844401896,
- 0.033312879502773285,
- 0.017871880903840065,
- -0.04932304844260216,
- 0.029009882360696793,
- 0.005915108136832714,
- -0.005121591035276651,
- 0.07048850506544113,
- -0.04150199890136719,
- 0.006207554135471582,
- -0.010323449037969112,
- -0.010016788728535175,
- -0.06257781386375427,
- 0.2392943650484085,
- -0.06749630719423294,
- 0.059382420033216476,
- 0.018082665279507637,
- 0.021654896438121796,
- 0.005544507876038551,
- -0.0319022573530674,
- -0.061884328722953796,
- -0.017497386783361435,
- -0.026023905724287033,
- -0.035011209547519684,
- -0.022041676566004753,
- -0.004810323938727379,
- -0.0763416662812233,
- 0.06335310637950897,
- 0.05958360433578491,
- 0.04418346658349037,
- 0.07210767269134521,
- 0.01296937931329012,
- -0.09073001146316528,
- -0.015135464258491993,
- 0.03936448693275452,
- 0.07827678322792053,
- -0.06909988820552826,
- 0.005138350185006857,
- -0.07629924267530441,
- -0.09110844135284424,
- -0.0029562031850218773,
- -4.134125102423689e-33,
- 0.08800365775823593,
- 0.004635497462004423,
- 0.03008362464606762,
- 0.021432561799883842,
- -0.004334065597504377,
- 0.057580702006816864,
- 0.08196180313825607,
- 0.0519564114511013,
- 0.021563075482845306,
- 0.002167945262044668,
- 0.05008574575185776,
- -0.02436220832169056,
- -0.05620889365673065,
- 0.02961275726556778,
- -0.010670318268239498,
- 0.09846723824739456,
- -0.06118909642100334,
- 0.00027094315737485886,
- -0.06847213953733444,
- 0.025450291112065315,
- -0.04768700897693634,
- 0.09319115430116653,
- 0.005704024340957403,
- 0.038197774440050125,
- -0.020519422367215157,
- 0.003572238376364112,
- 0.050106070935726166,
- -0.029973190277814865,
- 0.11861205846071243,
- 0.019337458536028862,
- 0.016761597245931625,
- -0.00424290681257844,
- -0.04768861085176468,
- -0.04703345149755478,
- 0.06770435720682144,
- -0.058102771639823914,
- 0.013815143145620823,
- -0.05223866179585457,
- -0.017189642414450645,
- 0.01103359553962946,
- 0.05437469109892845,
- -0.06187436729669571,
- 0.09684977680444717,
- -0.03215989097952843,
- -0.017188485711812973,
- 0.01595930941402912,
- 0.055974651128053665,
- 0.06485632807016373,
- -0.0113874776288867,
- 0.08813247084617615,
- -0.07074099034070969,
- -0.036387719213962555,
- -0.06994660198688507,
- 0.003558934899047017,
- 0.03432993218302727,
- -0.02857120893895626,
- 0.06757578998804092,
- 0.0559307225048542,
- -0.02844441495835781,
- -0.019498677924275398,
- -0.05679728835821152,
- 0.11072281002998352,
- -0.027646126225590706,
- 0.0819767490029335,
- 0.03250950202345848,
- -0.05988427996635437,
- -0.04295370727777481,
- -0.0181485153734684,
- 0.09621336311101913,
- -0.049240317195653915,
- -0.03893536329269409,
- 0.03552686795592308,
- -0.022674469277262688,
- 0.027357175946235657,
- -0.01703445054590702,
- -0.04926598072052002,
- -0.04218537360429764,
- -0.058334510773420334,
- -0.03461267426609993,
- -0.03187450394034386,
- 0.053020577877759933,
- -0.05889621004462242,
- 0.0452800914645195,
- -0.043339259922504425,
- 0.0016700814012438059,
- -0.018501082435250282,
- -0.047180917114019394,
- -0.06368599086999893,
- 0.12113803625106812,
- 0.040155019611120224,
- -0.025588981807231903,
- -0.017819935455918312,
- 0.015889542177319527,
- 0.11334031820297241,
- -0.01192115992307663,
- 2.678162758611996e-33,
- 0.016826122999191284,
- -0.00041599167161621153,
- -0.0494951456785202,
- 0.08419446647167206,
- 0.06984676420688629,
- -0.023226000368595123,
- 0.0425204373896122,
- 0.023844148963689804,
- 0.003422100329771638,
- 0.005420986097306013,
- -0.031216295436024666,
- -0.0299824308604002,
- -0.014686258509755135,
- 0.04338635131716728,
- 0.03156891465187073,
- -0.013113744556903839,
- -0.028877614066004753,
- -0.039855536073446274,
- -0.019332585856318474,
- -0.05490237474441528,
- -0.10858497768640518,
- 0.02809944376349449,
- -0.05879588797688484,
- -0.013705725781619549,
- 0.028918882831931114,
- -0.014976792968809605,
- 0.01659957692027092,
- 0.03786817938089371,
- -0.04799313098192215,
- 0.05415130779147148,
- 0.006209367886185646,
- -0.02411934733390808,
- 0.07010840624570847,
- -0.031220952048897743,
- -0.08993811160326004,
- 0.13506342470645905,
- 0.012950657866895199,
- -0.005040554795414209,
- -0.03084043227136135,
- 0.026248786598443985,
- 0.016505490988492966,
- -0.06950726360082626,
- 0.007866419851779938,
- 0.050878431648015976,
- 0.0017694493290036917,
- -0.00831929687410593,
- 0.010299764573574066,
- 0.04221606254577637,
- 0.01943298801779747,
- 0.01847049966454506,
- -0.10186489671468735,
- -0.028111128136515617,
- 0.0278379675000906,
- -0.08244018256664276,
- 0.09719604253768921,
- 0.0265335850417614,
- 0.01587517186999321,
- -0.059843044728040695,
- -0.013079684227705002,
- 0.010335813276469707,
- 0.02311910130083561,
- -0.030302846804261208,
- 0.024283796548843384,
- 0.08161912113428116,
- -0.02069215662777424,
- -0.031020598486065865,
- -0.06713603436946869,
- 0.06256401538848877,
- -0.023323187604546547,
- -0.02578362450003624,
- 0.11802909523248672,
- 0.046073105186223984,
- -0.027780359610915184,
- -0.006417765747755766,
- -0.055367305874824524,
- 0.0003450159274507314,
- -0.05938083305954933,
- -0.000343481166055426,
- 0.0028957929462194443,
- 0.008809776045382023,
- -0.044740427285432816,
- -0.10007017850875854,
- 0.04213738441467285,
- 0.018559452146291733,
- -0.022525038570165634,
- 0.027543658390641212,
- 0.06097770482301712,
- 0.0054442849941551685,
- 0.01348084956407547,
- -0.07571621984243393,
- 0.04120098426938057,
- 0.054486826062202454,
- 0.0036956218536943197,
- -0.04165460914373398,
- -0.010158760473132133,
- -1.1675861166793311e-8,
- -0.02448527328670025,
- -0.04578094556927681,
- -0.03913434222340584,
- -0.08731696754693985,
- 0.06745743751525879,
- -0.0033374265767633915,
- 0.03223055228590965,
- -0.008264880627393723,
- -0.02766372263431549,
- 0.07796896249055862,
- 0.007828822359442711,
- -0.01440818328410387,
- 0.05262453109025955,
- -0.029979348182678223,
- 0.11463676393032074,
- -0.0458240807056427,
- 0.03253761678934097,
- 0.023589788004755974,
- -0.026492958888411522,
- -0.006877206265926361,
- 0.08180572837591171,
- -0.029604744166135788,
- 0.0067794956266880035,
- 0.006612245459109545,
- -0.02872828207910061,
- -0.06100388616323471,
- 0.027147531509399414,
- 0.14475663006305695,
- -0.05649610981345177,
- 0.10412056744098663,
- -0.03758413344621658,
- 0.08282369375228882,
- -0.04963086172938347,
- -0.06222964823246002,
- -0.016969719901680946,
- 0.004349612630903721,
- 0.05868227407336235,
- -0.08706445246934891,
- -0.012550026178359985,
- 0.06996197998523712,
- -0.025071630254387856,
- 0.02166522480547428,
- 0.06107128784060478,
- -0.02313282899558544,
- 0.03795773163437843,
- 0.058030277490615845,
- 0.001398921711370349,
- -0.07154359668493271,
- 0.0012705663684755564,
- 0.0113096097484231,
- -0.056947752833366394,
- -0.03883735090494156,
- 0.038321565836668015,
- 0.0022513866424560547,
- 0.01691698655486107,
- -0.038692373782396317,
- -0.04874042421579361,
- 0.00026270945090800524,
- -0.15249797701835632,
- -0.03633781895041466,
- 0.07686477899551392,
- 0.009835194796323776,
- 0.024482809007167816,
- 0.05718689784407616
- ]
- },
- {
- "keyword": "professor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04483776539564133,
- 0.06893333047628403,
- -0.036785788834095,
- 0.021423358470201492,
- -0.07697214931249619,
- -0.06157372519373894,
- 0.06243719533085823,
- -0.0020085664000362158,
- 0.037231530994176865,
- 0.010822872631251812,
- -0.017827557399868965,
- 0.05242996662855148,
- -0.042756035923957825,
- 0.06202458217740059,
- -0.005513834301382303,
- 0.02710484154522419,
- -0.035630494356155396,
- -0.04796895757317543,
- -0.0383470244705677,
- -0.0923704132437706,
- 0.0014789566630497575,
- 0.065895676612854,
- -0.017723998054862022,
- -0.05259890481829643,
- 0.06829926371574402,
- 0.029200701043009758,
- -0.010112490504980087,
- -0.060587234795093536,
- 0.00975990854203701,
- -0.09829692542552948,
- -0.013186898082494736,
- 0.019299974665045738,
- -0.013770212419331074,
- -0.046276193112134933,
- -0.005169691983610392,
- -0.026679476723074913,
- -0.0007606622530147433,
- 0.07563759386539459,
- 0.06159272417426109,
- -0.04618909955024719,
- -0.04819539934396744,
- -0.014520916156470776,
- 0.041687916964292526,
- 0.013328456319868565,
- -0.05007311329245567,
- -0.010847285389900208,
- 0.08553942292928696,
- -0.04090927168726921,
- 0.053370267152786255,
- -0.0017611505463719368,
- -0.02219732664525509,
- -0.005297423340380192,
- -0.03136767819523811,
- -0.03613951429724693,
- 0.02298661135137081,
- -0.008188952691853046,
- 0.04798273369669914,
- -0.013187941163778305,
- -0.011702463962137699,
- -0.013252366334199905,
- -0.03993941843509674,
- 0.022470122203230858,
- -0.030280940234661102,
- 0.051473647356033325,
- 0.11517082154750824,
- -0.017383776605129242,
- -0.04526890441775322,
- 0.016974681988358498,
- -0.025460610166192055,
- 0.051332566887140274,
- -0.0586831271648407,
- 0.01825675554573536,
- 0.011882396414875984,
- -0.002998426789417863,
- 0.08186764270067215,
- -0.041116926819086075,
- 0.06719213724136353,
- 0.024706661701202393,
- 0.09406550228595734,
- -0.01623057760298252,
- -0.031364697962999344,
- -0.07806387543678284,
- 0.01960439421236515,
- -0.023392491042613983,
- -0.005109472665935755,
- -0.02055172622203827,
- 0.025555387139320374,
- -0.028027627617120743,
- -0.01440145168453455,
- -0.005470274016261101,
- 0.01874563656747341,
- -0.04209000617265701,
- 0.10935135930776596,
- 0.03575475141406059,
- -0.05706395208835602,
- 0.07192418724298477,
- -0.07204820960760117,
- 0.005685741081833839,
- -0.04449862986803055,
- 0.25748226046562195,
- -0.02274811826646328,
- 0.0388546884059906,
- 0.009244897402822971,
- 0.021350398659706116,
- -0.010495507158339024,
- 0.03784123808145523,
- -0.03202308341860771,
- 0.007910076528787613,
- 0.043353933840990067,
- 0.024098584428429604,
- 0.011272703297436237,
- -0.007031736895442009,
- -0.029065854847431183,
- 0.021570304408669472,
- 0.02325514145195484,
- -0.008805971592664719,
- 0.053853437304496765,
- 0.01329834759235382,
- -0.0007616401999257505,
- -0.002440045587718487,
- 0.036712825298309326,
- 0.053280968219041824,
- -0.08046536147594452,
- 0.029565148055553436,
- -0.05094294995069504,
- -0.0449405312538147,
- 0.019395673647522926,
- -4.3178519307213353e-33,
- 0.044364914298057556,
- 0.031879350543022156,
- 0.035656582564115524,
- -0.013967213220894337,
- 0.00372412265278399,
- -0.016652274876832962,
- 0.010857835412025452,
- 0.023999907076358795,
- -0.020675748586654663,
- 0.0055302223190665245,
- -0.025074942037463188,
- 0.09986533224582672,
- -0.04659975692629814,
- 0.04944336414337158,
- -0.031216826289892197,
- 0.0249781496822834,
- 0.03930390998721123,
- 0.001992784673348069,
- -0.02537289261817932,
- 0.02914389967918396,
- -0.020520243793725967,
- 0.0817984864115715,
- 0.04313840717077255,
- 0.04521055519580841,
- 0.017725467681884766,
- 0.01923471875488758,
- 0.06950272619724274,
- 0.0118648586794734,
- 0.09780653566122055,
- 0.0437861904501915,
- 0.017765870317816734,
- -0.023158231750130653,
- -0.06961530447006226,
- -0.056090015918016434,
- 0.07524553686380386,
- -0.025362595915794373,
- 0.022030116990208626,
- -0.03261546790599823,
- 0.011924094520509243,
- 0.0012788299936801195,
- 0.019285505637526512,
- -0.022533029317855835,
- 0.02193382941186428,
- 0.02521331049501896,
- -0.02574421465396881,
- 0.02041802555322647,
- 0.10350971668958664,
- 0.05695018544793129,
- -0.04427424073219299,
- 0.07076196372509003,
- -0.11396388709545135,
- -0.06851121783256531,
- -0.019925110042095184,
- -0.03590400516986847,
- 0.05300920084118843,
- -0.057178743183612823,
- 0.0847877562046051,
- 0.03432505577802658,
- -0.026280375197529793,
- -0.01676417514681816,
- -0.06638816744089127,
- 0.09286586195230484,
- -0.04802602902054787,
- 0.09755116701126099,
- -0.033602021634578705,
- -0.089706651866436,
- -0.02782386541366577,
- -0.034976959228515625,
- 0.08100505918264389,
- -0.051477961242198944,
- -0.06948085129261017,
- 0.06343921273946762,
- -0.023858733475208282,
- 0.004572220612317324,
- 0.013090405613183975,
- -0.038812145590782166,
- -0.03032281994819641,
- -0.020406408235430717,
- -0.06864523887634277,
- -0.0330754779279232,
- -0.020866885781288147,
- -0.03609854355454445,
- 0.0060354359447956085,
- -0.0046660443767905235,
- -0.08906971663236618,
- -0.0100001385435462,
- -0.02562531642615795,
- -0.0008895114297047257,
- 0.12879729270935059,
- 0.013423705473542213,
- -0.09005889296531677,
- -0.04013756662607193,
- 0.03709724545478821,
- 0.14701329171657562,
- -0.019269771873950958,
- 2.162496345780298e-33,
- 0.036083120852708817,
- -0.027086254209280014,
- 0.006662306375801563,
- 0.07839787751436234,
- 0.10937566310167313,
- 0.015020905062556267,
- 0.004701815079897642,
- 0.01399717852473259,
- -0.039773713797330856,
- -0.02798246033489704,
- -0.05312047526240349,
- 0.01021713949739933,
- 0.024847611784934998,
- 0.08365818113088608,
- 0.07563671469688416,
- -0.0005870459717698395,
- 0.04385057091712952,
- -0.07972924411296844,
- -0.0838456079363823,
- -0.03211988881230354,
- -0.0497315414249897,
- 0.03300826624035835,
- -0.03118188865482807,
- -0.03950648009777069,
- -0.05927656218409538,
- 0.019828597083687782,
- 0.051045216619968414,
- -0.016399841755628586,
- -0.12492138147354126,
- 0.023895297199487686,
- -0.051958777010440826,
- -0.005298472475260496,
- -0.027532195672392845,
- -0.007185037713497877,
- -0.06110114976763725,
- 0.16742977499961853,
- 0.04819944128394127,
- 0.002512456616386771,
- -0.05389165133237839,
- 0.0252020675688982,
- 0.06880180537700653,
- -0.009525991976261139,
- -0.00985261332243681,
- 0.11347649246454239,
- 0.03439290449023247,
- -0.017018692567944527,
- -0.032986532896757126,
- 0.006399489939212799,
- -0.00015367305604740977,
- 0.01836608536541462,
- -0.14337147772312164,
- 0.04426426440477371,
- 0.061508506536483765,
- -0.1423226296901703,
- 0.07961037009954453,
- -0.039646804332733154,
- 0.050014376640319824,
- -0.04028867185115814,
- -0.0036854809150099754,
- 0.05796466022729874,
- -0.05052722245454788,
- -0.03807540237903595,
- 0.00713707460090518,
- 0.06824780255556107,
- -0.0218603927642107,
- 0.027951542288064957,
- -0.0755365639925003,
- 0.0034199790097773075,
- 0.007777682505548,
- 0.004626773763448,
- 0.08965054154396057,
- -0.004143966361880302,
- -0.031317539513111115,
- 0.007042827550321817,
- -0.049241431057453156,
- 0.02650248073041439,
- -0.06456630676984787,
- -0.05781882628798485,
- -0.050545837730169296,
- 0.011667955666780472,
- -0.009805862791836262,
- -0.13307850062847137,
- -0.009686553850769997,
- 0.04503338411450386,
- -0.08496107161045074,
- -0.029206013306975365,
- 0.04695352539420128,
- -0.014634967781603336,
- 0.008569605648517609,
- -0.0612972155213356,
- 0.03404873609542847,
- 0.00473804771900177,
- -0.0082471938803792,
- -0.05671536177396774,
- 0.014736291021108627,
- -1.2198412058239683e-8,
- -0.042971886694431305,
- 0.022494301199913025,
- 0.059236980974674225,
- -0.06936594843864441,
- -0.008284430019557476,
- 0.03331509977579117,
- 0.05422167852520943,
- -0.021578466519713402,
- 0.007072023581713438,
- 0.09946192800998688,
- 0.0319085419178009,
- -0.013614440336823463,
- 0.008720521815121174,
- 0.018915308639407158,
- 0.11770464479923248,
- -0.016566473990678787,
- 0.006448870059102774,
- 0.02402069978415966,
- -0.03929299861192703,
- -0.02021561563014984,
- 0.021673034876585007,
- -0.011739660054445267,
- 0.03090016357600689,
- 0.023670967668294907,
- 0.028672929853200912,
- -0.018508460372686386,
- 0.04083617031574249,
- 0.0905074030160904,
- -0.01646273024380207,
- 0.10338740050792694,
- -0.08385062217712402,
- 0.06973539292812347,
- -0.06655657291412354,
- -0.09611200541257858,
- -0.017679870128631592,
- -0.03361595794558525,
- 0.05244690179824829,
- -0.07941164821386337,
- 0.04452815279364586,
- 0.004289158154278994,
- -0.06772539019584656,
- -0.027145396918058395,
- 0.004626603797078133,
- -0.04275386035442352,
- -0.019301367923617363,
- 0.05535439774394035,
- 0.04050854593515396,
- -0.001672370475716889,
- 0.009916749782860279,
- -0.006589923985302448,
- -0.03829820826649666,
- -0.004602264147251844,
- 0.008375180885195732,
- 0.002050365088507533,
- -0.007754191290587187,
- -0.04319986701011658,
- -0.017237549647688866,
- 0.01806715503334999,
- -0.1422707438468933,
- -0.05614576116204262,
- 0.09722117334604263,
- -0.0042802635580301285,
- 0.021171264350414276,
- -0.060150396078825
- ]
- },
- {
- "keyword": "instructor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.024832140654325485,
- -0.006083028391003609,
- -0.05896598845720291,
- 0.01850064843893051,
- -0.07522128522396088,
- -0.046516116708517075,
- 0.09844303131103516,
- -0.015768198296427727,
- 0.007000314071774483,
- 0.00887074414640665,
- 0.07101278752088547,
- 0.033467818051576614,
- 0.009250706993043423,
- 0.03060932271182537,
- -0.047681260854005814,
- 0.003036327427253127,
- 0.002115309238433838,
- 0.012379989959299564,
- -0.030236700549721718,
- -0.07628478854894638,
- -0.050785403698682785,
- 0.09296473115682602,
- -0.007776003796607256,
- 0.045411501079797745,
- -0.03320251405239105,
- -0.0002543871814850718,
- -0.029422614723443985,
- 0.015691233798861504,
- 0.023216431960463524,
- -0.13319110870361328,
- -0.03316275775432587,
- 0.012540244497358799,
- 0.04822496324777603,
- 0.0386076420545578,
- -0.05096401274204254,
- 0.015412031672894955,
- 0.0009847875917330384,
- 0.004096694756299257,
- -0.009728965349495411,
- -0.0018263881793245673,
- -0.0635230541229248,
- -0.008924719877541065,
- 0.013810200616717339,
- -0.020278170704841614,
- 0.011502762325108051,
- 0.025667935609817505,
- 0.03250446170568466,
- -0.08192066103219986,
- 0.0634373351931572,
- -0.012466351501643658,
- -0.014444452710449696,
- -0.0783236101269722,
- -0.023885546252131462,
- -0.040494922548532486,
- 0.02902987226843834,
- -0.02395707182586193,
- 0.019617756828665733,
- -0.006878368556499481,
- -0.020010460168123245,
- 0.035885829478502274,
- -0.032581228762865067,
- 0.06204536184668541,
- -0.08823668211698532,
- 0.03784430772066116,
- 0.009948790073394775,
- -0.013849894516170025,
- -0.002410921733826399,
- 0.057170215994119644,
- 0.05744698643684387,
- -0.022767335176467896,
- -0.04891077056527138,
- -0.016350485384464264,
- 0.008071256801486015,
- 0.054839812219142914,
- 0.05050394684076309,
- -0.09695440530776978,
- 0.06670387834310532,
- 0.025280077010393143,
- 0.07373219728469849,
- 0.0013457031454890966,
- -0.0010198440868407488,
- -0.050457898527383804,
- 0.019418032839894295,
- 0.014662952162325382,
- 0.05514958128333092,
- -0.03319157660007477,
- 0.016535207629203796,
- 0.0498092956840992,
- 0.023083945736289024,
- -0.0194864384829998,
- 0.017478981986641884,
- -0.028865624219179153,
- -0.030922019854187965,
- -0.004347608890384436,
- -0.06780866533517838,
- 0.03539387509226799,
- -0.03855545446276665,
- 0.01624085195362568,
- -0.029607897624373436,
- 0.22341051697731018,
- -0.024201489984989166,
- 0.01451977901160717,
- -0.009624611586332321,
- -0.028244495391845703,
- -0.05582477152347565,
- -0.0006645945832133293,
- -0.021157199516892433,
- 0.008943498134613037,
- 0.04441382735967636,
- -0.00161309028044343,
- -0.020671483129262924,
- -0.0006613414734601974,
- -0.10673197358846664,
- 0.015306578949093819,
- 0.03527095541357994,
- 0.06699208915233612,
- 0.04078548029065132,
- 0.011175807565450668,
- -0.0628897175192833,
- 0.056578628718853,
- -0.013927451334893703,
- 0.03635954484343529,
- -0.047332409769296646,
- 0.02657131291925907,
- -0.019190199673175812,
- -0.06571140885353088,
- -0.04249167814850807,
- -4.4824530985891186e-33,
- 0.09150779992341995,
- 0.026274310424923897,
- 0.0262686088681221,
- 0.09218951314687729,
- 0.014401756227016449,
- -0.01123396772891283,
- 0.022897645831108093,
- 0.025551114231348038,
- -0.017665855586528778,
- 0.022701321169734,
- 0.06326577812433243,
- 0.02850925363600254,
- -0.035554297268390656,
- 0.034933820366859436,
- 0.08769282698631287,
- -0.017916973680257797,
- -0.043030720204114914,
- 0.024893995374441147,
- -0.022210443392395973,
- 0.012527145445346832,
- -0.022449346259236336,
- 0.048548195511102676,
- -0.023305991664528847,
- 0.0033232118003070354,
- -0.0001476485631428659,
- 0.024116769433021545,
- 0.0581815131008625,
- 0.008358174003660679,
- 0.15936996042728424,
- 0.026687027886509895,
- 0.0029313915874809027,
- -0.011715433560311794,
- -0.039773765951395035,
- -0.04229059815406799,
- 0.11234846711158752,
- -0.018622316420078278,
- 0.003776018973439932,
- 0.025140495970845222,
- -0.012221794575452805,
- 0.0034603034146130085,
- -0.0015906570479273796,
- 0.01821933314204216,
- 0.01592300646007061,
- -0.00882276427000761,
- 0.00349162588827312,
- -0.00007902424840722233,
- 0.08121411502361298,
- 0.051932044327259064,
- -0.0038863217923790216,
- 0.0675300881266594,
- -0.10857225954532623,
- -0.07251600176095963,
- 0.03132975101470947,
- -0.01707395538687706,
- 0.04913069307804108,
- -0.014083482325077057,
- 0.07792290300130844,
- 0.07414260506629944,
- -0.06710793823003769,
- 0.002506870776414871,
- -0.04044518619775772,
- 0.12694799900054932,
- -0.05566003918647766,
- 0.12598983943462372,
- -0.03605066239833832,
- -0.07921166718006134,
- -0.04017968103289604,
- -0.022723019123077393,
- 0.11365186423063278,
- -0.03943122550845146,
- -0.10603053867816925,
- 0.028463667258620262,
- -0.007582458201795816,
- 0.004224302712827921,
- 0.024062534794211388,
- -0.05246393382549286,
- -0.07300659269094467,
- -0.03859773650765419,
- -0.04359360411763191,
- 0.003249522065743804,
- 0.016020338982343674,
- -0.040170490741729736,
- 0.03257715329527855,
- 0.021770834922790527,
- -0.0341588631272316,
- -0.04739663377404213,
- -0.019202232360839844,
- -0.05458156019449234,
- 0.11540877819061279,
- 0.05147015303373337,
- -0.056932318955659866,
- -0.0433468259871006,
- -0.00795565452426672,
- 0.08885829895734787,
- 0.03321894258260727,
- 3.3336398981366046e-33,
- 0.06026102229952812,
- 0.03443395346403122,
- -0.006010678596794605,
- 0.10614505410194397,
- 0.09224612265825272,
- 0.02957751601934433,
- 0.017856722697615623,
- 0.08253566175699234,
- -0.07389944046735764,
- -0.06605137884616852,
- 0.013917815871536732,
- 0.02505936101078987,
- -0.025704359635710716,
- 0.03819604590535164,
- 0.04405546933412552,
- -0.024159349501132965,
- -0.09297730773687363,
- -0.02250465750694275,
- -0.040495362132787704,
- -0.016588250175118446,
- -0.02974853292107582,
- -0.022795166820287704,
- 0.0610060952603817,
- -0.08697966486215591,
- 0.0010743243619799614,
- 0.029966862872242928,
- 0.07206565141677856,
- 0.11999399214982986,
- -0.03126395866274834,
- 0.027766242623329163,
- -0.005819261074066162,
- -0.04217902198433876,
- 0.049370475113391876,
- -0.03841858357191086,
- -0.08745533972978592,
- 0.1442914605140686,
- 0.03220212832093239,
- 0.05917073041200638,
- -0.04931933432817459,
- 0.07939475774765015,
- 0.055582884699106216,
- -0.04678845778107643,
- -0.005828750319778919,
- 0.010030037723481655,
- -0.002998994430527091,
- -0.0697375237941742,
- 0.06660398840904236,
- -0.004639717284590006,
- 0.07302134484052658,
- 0.008527225814759731,
- -0.14421197772026062,
- -0.0624009408056736,
- 0.011842941865324974,
- -0.12588046491146088,
- 0.07802670449018478,
- -0.06423355638980865,
- 0.03774534538388252,
- -0.07474804669618607,
- -0.03633026033639908,
- 0.015183932147920132,
- 0.005386280361562967,
- 0.02317720279097557,
- 0.005538241472095251,
- 0.07780534029006958,
- -0.020982516929507256,
- 0.012776234187185764,
- -0.01056669745594263,
- 0.06292889267206192,
- -0.03745468333363533,
- 0.048351142555475235,
- 0.0623113214969635,
- 0.05263116955757141,
- 0.022196264937520027,
- -0.0348648875951767,
- -0.012011886574327946,
- -0.015115241520106792,
- -0.06475505977869034,
- 0.02588602714240551,
- -0.06880924105644226,
- 0.012376555241644382,
- -0.021444063633680344,
- -0.1152336373925209,
- -0.04439692199230194,
- 0.0990123376250267,
- -0.02271226793527603,
- 0.023095278069376945,
- 0.04637736827135086,
- 0.027433685958385468,
- -0.030323609709739685,
- -0.055891960859298706,
- 0.04365871846675873,
- 0.05365060642361641,
- 0.006040187552571297,
- -0.06208197772502899,
- -0.04110873118042946,
- -1.0635333502762023e-8,
- -0.07856902480125427,
- 0.023452863097190857,
- -0.02917204052209854,
- -0.05453295633196831,
- 0.04704210162162781,
- 0.048684075474739075,
- 0.0014337130123749375,
- -0.030044863000512123,
- -0.044052135199308395,
- 0.08008362352848053,
- 0.05396367236971855,
- -0.020693780854344368,
- 0.04777225852012634,
- -0.04865967109799385,
- 0.09620146453380585,
- -0.009059201925992966,
- -0.032887574285268784,
- 0.028829555958509445,
- -0.0495537668466568,
- -0.018234074115753174,
- 0.0720299780368805,
- -0.036227911710739136,
- 0.05402388051152229,
- 0.018487608060240746,
- -0.05629853531718254,
- -0.0761721134185791,
- 0.016136493533849716,
- 0.163230761885643,
- -0.00465310737490654,
- 0.05206921324133873,
- -0.04840971529483795,
- 0.04489971324801445,
- -0.03804021701216698,
- -0.06918831169605255,
- -0.02401473931968212,
- -0.023719703778624535,
- 0.004850833676755428,
- -0.0789271667599678,
- 0.004180465824902058,
- 0.06159558519721031,
- -0.05614488571882248,
- -0.03563723713159561,
- 0.030031438916921616,
- -0.00445269700139761,
- 0.06712134182453156,
- 0.05215127021074295,
- -0.013842357322573662,
- -0.04513252153992653,
- 0.03185189887881279,
- -0.03943626955151558,
- -0.030355580151081085,
- -0.004435800015926361,
- -0.012716825120151043,
- 0.0315588004887104,
- -0.004280575085431337,
- 0.028291473165154457,
- -0.015232541598379612,
- -0.010254601016640663,
- -0.13484898209571838,
- -0.019425243139266968,
- -0.027553904801607132,
- -0.019575219601392746,
- -0.03685721009969711,
- 0.013142849318683147
- ]
- },
- {
- "keyword": "educator",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.009488845244050026,
- 0.07791297882795334,
- -0.032070960849523544,
- 0.06292469799518585,
- -0.06357128173112869,
- -0.05412868410348892,
- 0.06941008567810059,
- 0.01201558206230402,
- 0.053783759474754333,
- 0.07777929306030273,
- 0.018700864166021347,
- 0.02116229385137558,
- -0.05223158746957779,
- 0.005979493726044893,
- -0.03601330891251564,
- 0.06944035738706589,
- -0.03809991851449013,
- 0.007760119158774614,
- 0.004566473420709372,
- -0.06224362924695015,
- -0.04750421270728111,
- 0.09145082533359528,
- -0.03330761939287186,
- 0.028865542262792587,
- 0.011334141716361046,
- 0.09178396314382553,
- 0.03937973827123642,
- -0.08240311592817307,
- -0.005675212945789099,
- -0.07798431068658829,
- -0.016059530898928642,
- -0.08983629941940308,
- 0.06215764209628105,
- 0.009458190761506557,
- -0.006393141578882933,
- 0.08662213385105133,
- 0.057513196021318436,
- 0.06440979242324829,
- 0.016147082671523094,
- -0.05462726205587387,
- -0.08033854514360428,
- 0.007162780035287142,
- -0.013363327831029892,
- -0.023495173081755638,
- 0.017665712162852287,
- -0.00047785285278223455,
- 0.01841031201183796,
- -0.056857846677303314,
- 0.019701028242707253,
- -0.026150789111852646,
- -0.005512816831469536,
- -0.10010018199682236,
- -0.021444298326969147,
- -0.039413053542375565,
- -0.017102032899856567,
- 0.039785005152225494,
- -0.02628527395427227,
- 0.01769409142434597,
- -0.007661023642867804,
- -0.008879424072802067,
- -0.04552548751235008,
- 0.010504350997507572,
- -0.04655428230762482,
- 0.0978449136018753,
- 0.029862595722079277,
- -0.020915338769555092,
- -0.03973552957177162,
- 0.03691684454679489,
- -0.0078949686139822,
- -0.08613258600234985,
- -0.02985803782939911,
- 0.00359865534119308,
- 0.10589608550071716,
- 0.052421942353248596,
- 0.10241469740867615,
- -0.0606277771294117,
- 0.029399283230304718,
- -0.006902458146214485,
- 0.0762045830488205,
- -0.05164593085646629,
- 0.049727439880371094,
- 0.0162024088203907,
- -0.016687525436282158,
- 0.0019210035679861903,
- 0.02502310276031494,
- -0.008541767485439777,
- 0.018116788938641548,
- 0.041326768696308136,
- 0.015684494748711586,
- -0.03459294140338898,
- 0.02011585421860218,
- -0.016904033720493317,
- 0.052414946258068085,
- 0.043081700801849365,
- -0.012693158350884914,
- 0.011658765375614166,
- -0.012019946239888668,
- -0.13113053143024445,
- -0.05063148960471153,
- 0.23132601380348206,
- -0.06031496077775955,
- 0.02859417162835598,
- 0.038876283913850784,
- 0.016540907323360443,
- -0.00010728112101787701,
- -0.06555046886205673,
- -0.08859162032604218,
- -0.026341373100876808,
- -0.017748471349477768,
- 0.025812897831201553,
- -0.025022076442837715,
- 0.036069076508283615,
- -0.05199332907795906,
- 0.0952456146478653,
- 0.018953576683998108,
- 0.06264074146747589,
- 0.017278606072068214,
- 0.04579342156648636,
- -0.000004733300556836184,
- 0.010583512485027313,
- 0.017889225855469704,
- 0.040828727185726166,
- -0.05492210015654564,
- -0.05206773802638054,
- -0.02917543239891529,
- -0.10530424863100052,
- 0.03694421797990799,
- -5.013215981292244e-33,
- 0.007687080185860395,
- 0.02249864488840103,
- 0.03292063996195793,
- 0.06368068605661392,
- -0.020769700407981873,
- 0.016186732798814774,
- 0.10947563499212265,
- -0.03940139710903168,
- -0.0019910491537302732,
- 0.007542924024164677,
- 0.08319590985774994,
- 0.05303661897778511,
- -0.011372709646821022,
- 0.06902677565813065,
- 0.02932473085820675,
- 0.06491441279649734,
- -0.09284066408872604,
- 0.05354242026805878,
- 0.011352808214724064,
- 0.039198316633701324,
- -0.04954521358013153,
- 0.05237201973795891,
- -0.007688133977353573,
- -0.02568037249147892,
- 0.01931595802307129,
- 0.03567125275731087,
- 0.02510310336947441,
- 0.011330269277095795,
- 0.05259111896157265,
- -0.00008224630437325686,
- 0.043280038982629776,
- -0.012193155474960804,
- -0.045278917998075485,
- -0.038411084562540054,
- 0.046047549694776535,
- -0.009833937510848045,
- 0.02066948637366295,
- -0.05788273736834526,
- -0.016422582790255547,
- -0.005563594400882721,
- 0.017665687948465347,
- -0.05246766284108162,
- 0.1018093079328537,
- 0.03808296099305153,
- 0.009014700539410114,
- 0.04802780598402023,
- 0.0510263554751873,
- 0.01818811148405075,
- -0.05281555652618408,
- 0.08222080022096634,
- -0.06282415241003036,
- -0.06251556426286697,
- -0.03579407185316086,
- -0.06312742829322815,
- 0.05548003315925598,
- -0.009006158448755741,
- 0.015622510574758053,
- 0.07821644097566605,
- -0.023210793733596802,
- -0.044276293367147446,
- -0.03851371631026268,
- 0.11408678442239761,
- -0.04350200667977333,
- 0.023104669526219368,
- -0.04027337580919266,
- -0.05963435024023056,
- -0.031058678403496742,
- -0.0002586512127891183,
- 0.09069004654884338,
- -0.056289006024599075,
- -0.018086349591612816,
- 0.02649063803255558,
- 0.012885130941867828,
- 0.023947900161147118,
- -0.05459100008010864,
- -0.09223460406064987,
- -0.0031135431490838528,
- -0.07167743891477585,
- -0.01421052310615778,
- 0.014743159525096416,
- 0.028139788657426834,
- -0.03973187878727913,
- 0.059274718165397644,
- -0.0315823033452034,
- 0.06905124336481094,
- -0.009550860151648521,
- -0.0514809750020504,
- 0.014820746146142483,
- 0.10351327806711197,
- 0.03203033655881882,
- -0.09130324423313141,
- 0.030224695801734924,
- -0.026769286021590233,
- 0.13739566504955292,
- -0.013353439047932625,
- 3.1569024857805505e-33,
- 0.03749142587184906,
- 0.018156757578253746,
- -0.04360015317797661,
- 0.12906022369861603,
- 0.0499199703335762,
- -0.031425341963768005,
- 0.057987578213214874,
- 0.057256102561950684,
- -0.01655961386859417,
- -0.03704165667295456,
- -0.005253978073596954,
- 0.01685859076678753,
- -0.033832743763923645,
- 0.06643955409526825,
- -0.03319612890481949,
- -0.022141337394714355,
- -0.01900191232562065,
- -0.03132523223757744,
- -0.04434793069958687,
- -0.01198235061019659,
- -0.05008440092206001,
- 0.011538934893906116,
- -0.09754244983196259,
- -0.01454433985054493,
- 0.029087301343679428,
- -0.021893618628382683,
- 0.001252687186934054,
- 0.05542599782347679,
- -0.11008104681968689,
- 0.009952006861567497,
- 0.05842297151684761,
- -0.027796080335974693,
- 0.07987884432077408,
- 0.007230838760733604,
- -0.06813523173332214,
- 0.07425568252801895,
- 0.036833591759204865,
- 0.04017021879553795,
- -0.053847696632146835,
- 0.07078023999929428,
- -0.006001167930662632,
- -0.0403561033308506,
- -0.00828102882951498,
- 0.049014173448085785,
- -0.024788420647382736,
- 0.043058354407548904,
- 0.05195063352584839,
- 0.00799477007240057,
- 0.06538248062133789,
- 0.029720529913902283,
- -0.13450662791728973,
- -0.0552062913775444,
- -0.006399125792086124,
- -0.08236272633075714,
- 0.10872562974691391,
- 0.01473644282668829,
- 0.08882920444011688,
- -0.058259449899196625,
- -0.012093162164092064,
- -0.025350160896778107,
- 0.06536059826612473,
- -0.03862877935171127,
- 0.013264799490571022,
- 0.06862989813089371,
- 0.005347042810171843,
- -0.009829878807067871,
- -0.04432344064116478,
- 0.02570328302681446,
- -0.05066610127687454,
- 0.019492825493216515,
- 0.07526534795761108,
- 0.03891368955373764,
- -0.034855034202337265,
- -0.11501657217741013,
- -0.0521242581307888,
- 0.05593588203191757,
- -0.056274380534887314,
- 0.004334586206823587,
- -0.01963934488594532,
- 0.012362232431769371,
- -0.04282333329319954,
- -0.11545570194721222,
- 0.024958103895187378,
- 0.017540859058499336,
- -0.014428713358938694,
- 0.015787364915013313,
- 0.030373888090252876,
- -0.040340010076761246,
- -0.04194007068872452,
- -0.04651655629277229,
- 0.015657158568501472,
- 0.005623843986541033,
- 0.009024095721542835,
- -0.05627528950572014,
- 0.0037788571789860725,
- -1.1668453758773012e-8,
- -0.019171668216586113,
- -0.05609673634171486,
- -0.018053250387310982,
- -0.10356120765209198,
- 0.06640245020389557,
- 0.017030613496899605,
- 0.030475584790110588,
- -0.03152340278029442,
- -0.03238959237933159,
- 0.07427312433719635,
- -0.04043584316968918,
- 0.01500408723950386,
- -0.013158360496163368,
- -0.011219409294426441,
- 0.13264161348342896,
- -0.045905180275440216,
- -0.017320243641734123,
- 0.054426103830337524,
- -0.06889328360557556,
- 0.000183456257218495,
- 0.07716004550457001,
- -0.026431459933519363,
- -0.02109818160533905,
- -0.009802017360925674,
- -0.01374992448836565,
- -0.057020753622055054,
- 0.028262073174118996,
- 0.08094640076160431,
- -0.02751128189265728,
- 0.023722320795059204,
- -0.06288162618875504,
- 0.059180960059165955,
- 0.0019166949205100536,
- -0.08845271170139313,
- -0.014538207091391087,
- 0.008379483595490456,
- -0.0028322318103164434,
- -0.033330369740724564,
- 0.03478526324033737,
- 0.061185792088508606,
- -0.06536269187927246,
- 0.019307924434542656,
- 0.07895907014608383,
- -0.05160188302397728,
- 0.013047725893557072,
- 0.04713292419910431,
- -0.0036026856396347284,
- 0.06755389273166656,
- -0.00901116244494915,
- 0.03580974414944649,
- -0.04551096260547638,
- -0.07475296407938004,
- 0.018386051058769226,
- -0.06925932317972183,
- 0.0697326585650444,
- -0.039600830525159836,
- -0.030915211886167526,
- -0.060888227075338364,
- -0.09848412871360779,
- -0.03922443091869354,
- 0.06303173303604126,
- -0.03224584832787514,
- 0.05807126313447952,
- 0.007169098127633333
- ]
- },
- {
- "keyword": "tutor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.06482306867837906,
- 0.0028347112238407135,
- -0.038428451865911484,
- 0.029957223683595657,
- -0.03047570027410984,
- -0.05162782594561577,
- 0.06360241025686264,
- 0.03143943101167679,
- -0.018464893102645874,
- 0.027118265628814697,
- 0.03918773680925369,
- -0.02124003879725933,
- 0.010225780308246613,
- 0.044750843197107315,
- -0.0234995037317276,
- 0.030733468011021614,
- -0.04167892411351204,
- 0.007679412141442299,
- -0.048062194138765335,
- -0.1525423377752304,
- -0.11006706207990646,
- -0.035090647637844086,
- 0.012209313921630383,
- -0.013703316450119019,
- 0.05495035648345947,
- 0.022407762706279755,
- 0.0008543860167264938,
- -0.03442356735467911,
- 0.041069481521844864,
- -0.08091341704130173,
- -0.09107940644025803,
- -0.013366466388106346,
- -0.03879118338227272,
- 0.03406824544072151,
- -0.03388404846191406,
- 0.042068034410476685,
- 0.03957163915038109,
- 0.0490303598344326,
- -0.05110195279121399,
- -0.0026991027407348156,
- -0.04984617605805397,
- 0.01040028128772974,
- -0.003314140485599637,
- -0.009162296541035175,
- -0.014548923820257187,
- -0.04341735318303108,
- -0.003501745406538248,
- -0.06066204980015755,
- 0.03420862928032875,
- 0.01862465962767601,
- -0.0406653992831707,
- -0.08138337731361389,
- -0.05964569374918938,
- 0.0059333802200853825,
- 0.05908789113163948,
- 0.051505111157894135,
- 0.013717846013605595,
- 0.006363220978528261,
- 0.04496903717517853,
- -0.041303250938653946,
- -0.023990020155906677,
- -0.02307949773967266,
- -0.03469907119870186,
- -0.018803127110004425,
- -0.029291903600096703,
- -0.0178971104323864,
- -0.019602399319410324,
- 0.02413344942033291,
- 0.011318674311041832,
- 0.0016298977425321937,
- -0.08272822946310043,
- -0.0017087174346670508,
- 0.03247329220175743,
- 0.03890162706375122,
- 0.06878126412630081,
- -0.051713813096284866,
- 0.014851236715912819,
- -0.021705012768507004,
- 0.036322589963674545,
- -0.025563353672623634,
- -0.044911909848451614,
- -0.015016165561974049,
- -0.02229951322078705,
- 0.004630425479263067,
- 0.014921504072844982,
- -0.05255750194191933,
- 0.05075295269489288,
- 0.02846045047044754,
- 0.06315933167934418,
- -0.020519260317087173,
- 0.06069431081414223,
- -0.0358097143471241,
- -0.04866652190685272,
- 0.020729441195726395,
- -0.05341758206486702,
- 0.02582043781876564,
- -0.004934764001518488,
- -0.03554583340883255,
- -0.041485317051410675,
- 0.23205441236495972,
- -0.04394199326634407,
- 0.038254715502262115,
- 0.05447166785597801,
- -0.06159689649939537,
- -0.08572423458099365,
- -0.0008403186220675707,
- -0.021445682272315025,
- -0.0034767314791679382,
- 0.06512736529111862,
- -0.019439853727817535,
- -0.06829743832349777,
- -0.03378904610872269,
- -0.028671100735664368,
- 0.04515686631202698,
- 0.041653603315353394,
- 0.019490623846650124,
- 0.1460392326116562,
- 0.008298031985759735,
- -0.033008281141519547,
- 0.042931243777275085,
- 0.04137912020087242,
- 0.09225992113351822,
- -0.042655881494283676,
- 0.0482512041926384,
- -0.02381085604429245,
- -0.09412254393100739,
- -0.05422160029411316,
- -4.3211385394578375e-33,
- 0.09867528825998306,
- 0.08290466666221619,
- 0.05237617343664169,
- 0.05352836474776268,
- 0.03267764672636986,
- 0.01357008796185255,
- 0.04479249194264412,
- 0.05422830209136009,
- -0.03716857731342316,
- 0.05696769803762436,
- 0.013634110800921917,
- -0.018173884600400925,
- -0.05758635699748993,
- 0.021779397502541542,
- 0.005298437550663948,
- 0.02135419100522995,
- 0.04146837815642357,
- -0.012855603359639645,
- -0.052739135921001434,
- -0.03668847680091858,
- -0.038932278752326965,
- 0.018159449100494385,
- -0.004732323810458183,
- -0.00958819966763258,
- -0.0004644925065804273,
- 0.034892402589321136,
- 0.0428265817463398,
- 0.01454070396721363,
- 0.1338607668876648,
- 0.0024863111320883036,
- -0.03168914094567299,
- -0.025097353383898735,
- -0.1036854237318039,
- 0.018210917711257935,
- 0.026572318747639656,
- -0.05154277756810188,
- 0.034108683466911316,
- -0.044734347611665726,
- 0.046649664640426636,
- -0.009453927166759968,
- 0.014829329214990139,
- 0.002100322162732482,
- 0.07429017871618271,
- -0.05515122041106224,
- -0.004285353701561689,
- 0.009811820462346077,
- 0.10327761620283127,
- 0.035833146423101425,
- -0.003432763507589698,
- 0.06382054835557938,
- -0.13673603534698486,
- -0.016672270372509956,
- -0.03196074813604355,
- -0.02142312377691269,
- 0.003222013358026743,
- 0.04689698666334152,
- 0.026537230238318443,
- 0.04986179620027542,
- -0.06340575963258743,
- -0.037846554070711136,
- -0.006435186602175236,
- 0.03581656143069267,
- -0.08292870223522186,
- 0.02139493077993393,
- -0.08046787977218628,
- -0.07218492031097412,
- -0.03615761548280716,
- 0.001824425533413887,
- 0.1294841468334198,
- -0.05827203765511513,
- -0.13596078753471375,
- 0.03686816990375519,
- -0.010579357855021954,
- 0.03742866590619087,
- -0.03287334740161896,
- -0.02036224864423275,
- 0.0018927570199593902,
- -0.05646252632141113,
- 0.07393110543489456,
- -0.03935554623603821,
- 0.042571909725666046,
- -0.04808974266052246,
- -0.006026310846209526,
- 0.03495657444000244,
- -0.04097692668437958,
- -0.028630733489990234,
- 0.015712860971689224,
- -0.0634242370724678,
- 0.06468447297811508,
- 0.01701725274324417,
- -0.09488093107938766,
- -0.02967565879225731,
- -0.049165572971105576,
- 0.027529703453183174,
- 0.012272425927221775,
- 2.852003679419227e-33,
- 0.05008784309029579,
- 0.02966967225074768,
- -0.07055023312568665,
- 0.05068933591246605,
- 0.08266741037368774,
- 0.028874823823571205,
- 0.029633497819304466,
- 0.014125269837677479,
- 0.04205862060189247,
- -0.05601303279399872,
- -0.0036292464938014746,
- 0.010494749993085861,
- -0.034481678158044815,
- 0.0316147543489933,
- 0.04319961741566658,
- 0.04958365485072136,
- 0.0093763442710042,
- 0.056935425847768784,
- 0.014612426050007343,
- -0.058395951986312866,
- -0.10670708864927292,
- 0.05504632368683815,
- 0.013635938987135887,
- -0.0605313740670681,
- 0.011410659179091454,
- -0.02356129139661789,
- 0.10824231058359146,
- 0.10392066836357117,
- -0.07583840191364288,
- 0.11939068883657455,
- 0.018238579854369164,
- -0.04392189532518387,
- 0.10223603993654251,
- -0.0016880057519301772,
- -0.046387653797864914,
- 0.06607181578874588,
- 0.03173617646098137,
- 0.03444606438279152,
- -0.05089637637138367,
- 0.04289025440812111,
- 0.10071352124214172,
- -0.024810757488012314,
- 0.045325521379709244,
- -0.026773616671562195,
- -0.00013537172344513237,
- 0.0052172038704156876,
- -0.030659707263112068,
- 0.045545220375061035,
- 0.02848704159259796,
- 0.025044232606887817,
- -0.09553325921297073,
- -0.04368789494037628,
- 0.02326243557035923,
- -0.11266005784273148,
- 0.044239748269319534,
- -0.03024463914334774,
- 0.0847451463341713,
- -0.04273322969675064,
- 0.014747794717550278,
- 0.003064317163079977,
- 0.039244234561920166,
- 0.02159189060330391,
- 0.004839309491217136,
- 0.03780953586101532,
- -0.050413817167282104,
- -0.006197293289005756,
- -0.10483741760253906,
- 0.03919340297579765,
- -0.018688056617975235,
- 0.02366645820438862,
- 0.04986557364463806,
- 0.0726376473903656,
- 0.043545931577682495,
- -0.061736658215522766,
- -0.021524978801608086,
- -0.035562023520469666,
- -0.08012890070676804,
- 0.03457832708954811,
- -0.014462853781878948,
- -0.10683733224868774,
- 0.061911433935165405,
- -0.07430891692638397,
- -0.005775699391961098,
- 0.04671370983123779,
- 0.015580496750772,
- 0.0030357649084180593,
- 0.06673245877027512,
- 0.1306627243757248,
- 0.04631009325385094,
- -0.06122751161456108,
- -0.015785228461027145,
- 0.08523058146238327,
- 0.07346288859844208,
- -0.0027921295259147882,
- -0.05613523721694946,
- -1.1409204248025162e-8,
- -0.0014228580985218287,
- 0.044148918241262436,
- -0.03319455683231354,
- -0.009570539928972721,
- -0.014516727067530155,
- 0.055762384086847305,
- -0.006159319542348385,
- -0.007640466094017029,
- -0.028483519330620766,
- 0.08554631471633911,
- 0.01489465031772852,
- -0.04026748985052109,
- 0.04614337533712387,
- -0.04389273002743721,
- 0.08857667446136475,
- 0.07351335883140564,
- 0.021488690748810768,
- 0.0404755175113678,
- -0.03923562169075012,
- -0.02292436547577381,
- 0.06021568551659584,
- 0.021526381373405457,
- -0.022464793175458908,
- 0.05556622892618179,
- -0.012106158770620823,
- -0.02477109618484974,
- 0.0728018507361412,
- 0.1733122617006302,
- -0.004145093262195587,
- 0.01762957125902176,
- -0.029122402891516685,
- 0.028007542714476585,
- -0.011216770857572556,
- -0.09533294290304184,
- -0.03742039203643799,
- 0.010002638213336468,
- -0.008192362263798714,
- -0.07564537227153778,
- 0.006735688075423241,
- 0.018615255132317543,
- -0.03563451021909714,
- -0.03166886046528816,
- 0.029086917638778687,
- -0.05418137460947037,
- 0.04482320323586464,
- 0.040801532566547394,
- 0.04346150904893875,
- -0.11155050247907639,
- 0.0004373235860839486,
- -0.010122003965079784,
- -0.0284037496894598,
- -0.03978102281689644,
- -0.0031677752267569304,
- 0.0013210196048021317,
- 0.05557173490524292,
- -0.009789148345589638,
- -0.03393055126070976,
- 0.02044767141342163,
- -0.07443467527627945,
- 0.029545744881033897,
- -0.010887093842029572,
- 0.062016818672418594,
- -0.00643496960401535,
- 0.0008237502770498395
- ]
- },
- {
- "keyword": "student",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.02192661538720131,
- 0.10604659467935562,
- 0.013978351838886738,
- -0.007800155784934759,
- -0.048822060227394104,
- -0.09190717339515686,
- 0.12239845097064972,
- 0.022295482456684113,
- 0.0015080024022608995,
- 0.04091263189911842,
- 0.08430450409650803,
- -0.031651876866817474,
- -0.01498182862997055,
- -0.011101526208221912,
- -0.022930879145860672,
- -0.0064230733551084995,
- -0.05473098158836365,
- -0.0447186604142189,
- -0.019101059064269066,
- -0.05651912838220596,
- -0.07082150876522064,
- -0.004845504183322191,
- -0.05365218594670296,
- 0.05681869387626648,
- 0.059780046343803406,
- 0.055221956223249435,
- 0.009107437916100025,
- -0.021240320056676865,
- -0.02135380730032921,
- -0.05587583780288696,
- -0.04870014265179634,
- 0.034939590841531754,
- 0.032160088419914246,
- 0.011964300647377968,
- -0.020379789173603058,
- -0.016996126621961594,
- 0.016293425112962723,
- 0.04170628637075424,
- 0.04979294538497925,
- 0.017762156203389168,
- -0.08535366505384445,
- -0.05950921028852463,
- 0.008753446862101555,
- 0.006257717963308096,
- 0.016741015017032623,
- -0.0263819582760334,
- 0.010269289836287498,
- -0.05385538190603256,
- 0.05866352841258049,
- 0.027222638949751854,
- -0.05332975462079048,
- -0.045550838112831116,
- -0.06963951140642166,
- -0.025843486189842224,
- 0.021765826269984245,
- -0.04874945059418678,
- 0.0039783623069524765,
- -0.040913138538599014,
- -0.03826721012592316,
- -0.0022178192157298326,
- -0.024428727105259895,
- 0.005867667496204376,
- -0.04792948067188263,
- 0.028065480291843414,
- 0.01655309461057186,
- -0.03485389053821564,
- -0.019085051491856575,
- -0.06468416005373001,
- 0.05223381891846657,
- 0.05191430822014809,
- 0.03631839528679848,
- -0.022863086313009262,
- 0.012228772044181824,
- 0.044152211397886276,
- 0.0700158104300499,
- -0.06121715530753136,
- 0.06545693427324295,
- 0.047329049557447433,
- 0.11467009037733078,
- 0.012407539412379265,
- -0.005884778220206499,
- -0.016946399584412575,
- -0.022773955017328262,
- -0.012349464930593967,
- 0.016336049884557724,
- -0.04091306030750275,
- 0.03251398354768753,
- 0.039694610983133316,
- -0.024678677320480347,
- -0.01100815087556839,
- -0.02380308322608471,
- 0.017467157915234566,
- -0.0040788305923342705,
- 0.017931658774614334,
- -0.057898763567209244,
- -0.03488200530409813,
- 0.009494038298726082,
- -0.028194766491651535,
- -0.03366103395819664,
- 0.27061107754707336,
- -0.07986045628786087,
- 0.07311459630727768,
- 0.07488635182380676,
- 0.013135628774762154,
- -0.0727057009935379,
- -0.02645992301404476,
- 0.038635995239019394,
- -0.012773767113685608,
- 0.022644992917776108,
- 0.014476539567112923,
- 0.020539481192827225,
- -0.001229895162396133,
- -0.07385506480932236,
- 0.008924533613026142,
- 0.06368517875671387,
- 0.011867908760905266,
- 0.05778491124510765,
- 0.0006659853388555348,
- -0.008090347982943058,
- 0.08453446626663208,
- 0.03488580137491226,
- 0.06452541053295135,
- -0.08172273635864258,
- -0.03605809062719345,
- -0.0920020118355751,
- -0.16728995740413666,
- -0.03672143816947937,
- -4.972325308272937e-33,
- 0.06158570945262909,
- 0.048446014523506165,
- -0.0032122840639203787,
- 0.039459582418203354,
- -0.02596902847290039,
- -0.015815719962120056,
- 0.02964935079216957,
- 0.06668730080127716,
- -0.05379531905055046,
- 0.00527919689193368,
- 0.0010565156117081642,
- -0.007481557782739401,
- 0.031241564080119133,
- 0.04961435869336128,
- 0.1252126395702362,
- -0.004137619398534298,
- -0.024815130978822708,
- -0.0070932707749307156,
- -0.03509172052145004,
- 0.04953218623995781,
- 0.013346781022846699,
- -0.030447542667388916,
- 0.026850711554288864,
- 0.006458804477006197,
- -0.05600741505622864,
- -0.051187627017498016,
- 0.0012772713089361787,
- 0.005324847996234894,
- 0.09413205087184906,
- 0.010396900586783886,
- 0.08548779040575027,
- -0.00658414326608181,
- -0.08955315500497818,
- -0.028917044401168823,
- 0.01777283288538456,
- -0.013640984892845154,
- 0.037104636430740356,
- -0.039825163781642914,
- -0.009199480526149273,
- -0.047799836844205856,
- 0.0075303055346012115,
- 0.015633944422006607,
- 0.06880880892276764,
- 0.028041204437613487,
- 0.010421709157526493,
- 0.03301122784614563,
- 0.042349379509687424,
- 0.018025582656264305,
- -0.02776799164712429,
- 0.004031631629914045,
- -0.1070844903588295,
- -0.07949253916740417,
- -0.07530338317155838,
- -0.05196371674537659,
- 0.0019494810840114951,
- 0.0009026264888234437,
- 0.04665544629096985,
- 0.0047656474635005,
- -0.08099555969238281,
- -0.058200035244226456,
- 0.010067260824143887,
- 0.08491279184818268,
- -0.03226061537861824,
- 0.006525527685880661,
- -0.030207110568881035,
- -0.016478663310408592,
- -0.023874182254076004,
- -0.04107097163796425,
- 0.17942476272583008,
- -0.08880108594894409,
- -0.08943825960159302,
- -0.00647061737254262,
- 0.022786477580666542,
- -0.009409569203853607,
- -0.04227384552359581,
- 0.017825879156589508,
- -0.03477133810520172,
- -0.037557221949100494,
- -0.008283349685370922,
- 0.01768038049340248,
- 0.0404185988008976,
- -0.09967485815286636,
- 0.03211566060781479,
- -0.022490743547677994,
- -0.02127658575773239,
- 0.06949011981487274,
- -0.00093738833675161,
- -0.09948211908340454,
- 0.08545103669166565,
- 0.03592069447040558,
- -0.007331619504839182,
- -0.04477124288678169,
- 0.024824067950248718,
- 0.10137022286653519,
- -0.0026016016490757465,
- 3.1906057455285486e-33,
- 0.06766580790281296,
- 0.010651761665940285,
- -0.06162876635789871,
- 0.06141584366559982,
- 0.09691432118415833,
- 0.010865256190299988,
- 0.016572363674640656,
- 0.03655712679028511,
- -0.05754684656858444,
- -0.00909061823040247,
- -0.006240721791982651,
- 0.003973836544901133,
- 0.011275145225226879,
- 0.03821653500199318,
- 0.03589203208684921,
- 0.051184557378292084,
- -0.0075309742242097855,
- -0.010257497429847717,
- -0.07700790464878082,
- 0.027294326573610306,
- -0.08151711523532867,
- 0.0007292567752301693,
- 0.013552694581449032,
- -0.025710538029670715,
- -0.024709083139896393,
- -0.03636715188622475,
- 0.10073632746934891,
- 0.01574590988457203,
- -0.03426510468125343,
- 0.0295203048735857,
- 0.05180918052792549,
- -0.0234780665487051,
- -0.013911045156419277,
- -0.044792599976062775,
- -0.04386039078235626,
- 0.10280338674783707,
- -0.020855052396655083,
- 0.03169076517224312,
- -0.055210862308740616,
- 0.07858110219240189,
- 0.09461919963359833,
- -0.059242840856313705,
- 0.022369662299752235,
- 0.08813771605491638,
- 0.053000133484601974,
- 0.027225233614444733,
- 0.04106207564473152,
- 0.02608523890376091,
- 0.019433140754699707,
- 0.02814137004315853,
- -0.07824311405420303,
- -0.049850042909383774,
- 0.051639921963214874,
- -0.0925273522734642,
- 0.06538120657205582,
- 0.01479426771402359,
- -0.022829214110970497,
- -0.058202579617500305,
- 0.005883864127099514,
- 0.020881379023194313,
- 0.031185723841190338,
- -0.036237142980098724,
- 0.021666204556822777,
- 0.08448566496372223,
- -0.10155603289604187,
- -0.004487595520913601,
- -0.06769709289073944,
- 0.04248007386922836,
- -0.02958376705646515,
- 0.03203834593296051,
- 0.04419713094830513,
- 0.017947951331734657,
- -0.05153268575668335,
- -0.015971632674336433,
- -0.04437139257788658,
- -0.044777002185583115,
- -0.04277022182941437,
- 0.011843814514577389,
- -0.02829105779528618,
- 0.03907211497426033,
- -0.0007544431136921048,
- -0.055229268968105316,
- -0.02160702832043171,
- 0.04604419693350792,
- -0.03855867311358452,
- -0.07969846576452255,
- 0.04039634391665459,
- 0.01071259006857872,
- 0.02266724221408367,
- -0.010433492250740528,
- 0.011059869080781937,
- 0.07852991670370102,
- -0.022731533274054527,
- -0.0941152349114418,
- 0.0031356094405055046,
- -1.2398211346464905e-8,
- -0.029619233682751656,
- 0.0004229250189382583,
- -0.05531344190239906,
- 0.04223475977778435,
- 0.023707501590251923,
- 0.08135268092155457,
- 0.00738390302285552,
- -0.04278301075100899,
- 0.04842798039317131,
- 0.09109727293252945,
- -0.006121987942606211,
- -0.026107216253876686,
- 0.041347332298755646,
- -0.05926152318716049,
- 0.10780848562717438,
- 0.02586696296930313,
- 0.018153566867113113,
- 0.03495517373085022,
- -0.004197619389742613,
- 0.0005927086458541453,
- 0.03927818313241005,
- -0.08432532101869583,
- 0.029084745794534683,
- 0.06709565222263336,
- -0.027820130810141563,
- -0.014710168354213238,
- 0.039492301642894745,
- 0.16770918667316437,
- -0.07576259225606918,
- 0.021717816591262817,
- -0.03571392595767975,
- 0.06083130091428757,
- -0.014779498800635338,
- -0.09355679154396057,
- 0.04509608820080757,
- -0.01765277236700058,
- 0.03630661964416504,
- -0.044414423406124115,
- 0.06690270453691483,
- 0.013109990395605564,
- -0.006729329936206341,
- -0.07941305637359619,
- 0.009716670028865337,
- 0.01100264210253954,
- 0.06906990706920624,
- 0.053533151745796204,
- -0.04392993450164795,
- -0.028352204710245132,
- 0.04442727938294411,
- -0.000026337198505643755,
- -0.024198392406105995,
- 0.008366081863641739,
- 0.007911022752523422,
- 0.011873151175677776,
- 0.05522928014397621,
- 0.005684858188033104,
- -0.05249069631099701,
- 0.029109608381986618,
- -0.12900009751319885,
- -0.017867786809802055,
- 0.12379905581474304,
- 0.015713656321167946,
- -0.01708485744893551,
- 0.00045335074537433684
- ]
- },
- {
- "keyword": "pupil",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.033574532717466354,
- 0.007265515625476837,
- -0.026125017553567886,
- 0.011194773949682713,
- -0.03690173849463463,
- -0.05187184363603592,
- 0.1324242353439331,
- 0.07929215580224991,
- -0.010163521394133568,
- 0.03008344955742359,
- 0.042259443551301956,
- -0.05352720990777016,
- -0.009608888998627663,
- 0.003387130331248045,
- -0.07342419028282166,
- -0.03656119480729103,
- -0.025356119498610497,
- -0.10454708337783813,
- 0.039567410945892334,
- 0.006950629409402609,
- -0.0029034640174359083,
- 0.029600366950035095,
- -0.010386609472334385,
- -0.011179480701684952,
- 0.024311488494277,
- 0.10193514823913574,
- 0.0754593089222908,
- -0.032676707953214645,
- -0.004187229089438915,
- -0.06128493696451187,
- -0.04507607966661453,
- 0.06633976101875305,
- -0.0338018499314785,
- -0.02751804329454899,
- -0.005731180775910616,
- 0.019579235464334488,
- -0.026380017399787903,
- -0.029189884662628174,
- -0.06261660158634186,
- -0.011981017887592316,
- -0.008427768014371395,
- -0.00020482101535890251,
- -0.03263680264353752,
- -0.006122560240328312,
- 0.016203736886382103,
- -0.04680759087204933,
- 0.036397747695446014,
- 0.01882188208401203,
- -0.016182977706193924,
- 0.04245901480317116,
- -0.08707825839519501,
- -0.0712505578994751,
- -0.037956610321998596,
- -0.00007572020695079118,
- 0.03033427521586418,
- 0.05089468136429787,
- -0.031180035322904587,
- 0.03174881264567375,
- 0.004906958434730768,
- -0.023305123671889305,
- 0.008036521263420582,
- -0.03460317477583885,
- -0.030699698254466057,
- -0.04135965555906296,
- 0.02015937864780426,
- 0.009356612339615822,
- 0.004049671348184347,
- -0.09550358355045319,
- 0.060248132795095444,
- -0.02834510989487171,
- -0.005515172146260738,
- 0.009647522121667862,
- 0.09057675302028656,
- -0.05959451571106911,
- -0.010337318293750286,
- -0.06748764216899872,
- 0.03691045194864273,
- -0.10887312889099121,
- 0.1056058257818222,
- 0.0133672459051013,
- 0.046741511672735214,
- 0.024293581023812294,
- 0.02462446130812168,
- -0.015027439221739769,
- 0.01443285308778286,
- -0.02905059978365898,
- 0.011688148602843285,
- -0.00014334263687487692,
- -0.04260558262467384,
- 0.06269389390945435,
- -0.04655581712722778,
- -0.00960471574217081,
- -0.08663548529148102,
- 0.0050265113823115826,
- 0.004895290359854698,
- 0.0015216300962492824,
- 0.021848903968930244,
- -0.15265099704265594,
- -0.09829245507717133,
- 0.23490212857723236,
- -0.024343913421034813,
- 0.008754854090511799,
- 0.02692301571369171,
- 0.037323351949453354,
- -0.06410042941570282,
- -0.00299654109403491,
- 0.004116771277040243,
- -0.011229727417230606,
- 0.003532530041411519,
- -0.01858438178896904,
- -0.09589185565710068,
- -0.012405904941260815,
- -0.020584749057888985,
- 0.030566297471523285,
- 0.03508486971259117,
- -0.053074564784765244,
- -0.016021067276597023,
- 0.0024655088782310486,
- 0.020876947790384293,
- 0.062435224652290344,
- 0.11301405727863312,
- 0.08003544062376022,
- -0.006282635033130646,
- 0.044794704765081406,
- 0.017025375738739967,
- -0.04098822921514511,
- -0.0445544458925724,
- -6.198860725833882e-33,
- 0.014061297290027142,
- 0.0008157963748089969,
- -0.018301919102668762,
- -0.01098849717527628,
- -0.045710377395153046,
- 0.007915344089269638,
- 0.027545511722564697,
- 0.06546756625175476,
- -0.01978924125432968,
- -0.0749843418598175,
- 0.026251889765262604,
- -0.019687434658408165,
- -0.047980181872844696,
- 0.06046552583575249,
- 0.05708133056759834,
- 0.04568453133106232,
- 0.03419538214802742,
- 0.13381202518939972,
- -0.017235590144991875,
- 0.008725314401090145,
- -0.020898733288049698,
- 0.02478945255279541,
- -0.04260190576314926,
- 0.011005555279552937,
- 0.014079376123845577,
- -0.03875035420060158,
- -0.00420044083148241,
- -0.029716365039348602,
- 0.011185596697032452,
- 0.03912241384387016,
- 0.04642168805003166,
- 0.048647645860910416,
- -0.02841539867222309,
- -0.06287546455860138,
- -0.007457756903022528,
- -0.06332385540008545,
- 0.06864248961210251,
- -0.05751259997487068,
- -0.02818353846669197,
- 0.00413275882601738,
- 0.015137973241508007,
- 0.07134728878736496,
- 0.07739871740341187,
- 0.03690367192029953,
- -0.02850651741027832,
- 0.10066895186901093,
- -0.05395234748721123,
- 0.030209127813577652,
- -0.1051594689488411,
- 0.0219922736287117,
- -0.008254952728748322,
- -0.043381351977586746,
- -0.02018072083592415,
- -0.07206697016954422,
- -0.013375502079725266,
- 0.019186584278941154,
- -0.03111385926604271,
- 0.013361459597945213,
- -0.007773858029395342,
- -0.04880569502711296,
- 0.022082950919866562,
- 0.06102472543716431,
- -0.07551149278879166,
- 0.0010240072151646018,
- -0.026249222457408905,
- -0.0830346867442131,
- -0.03267331048846245,
- 0.007090121041983366,
- -0.03011275827884674,
- -0.04314020648598671,
- -0.10425034910440445,
- -0.005472391843795776,
- 0.07278856635093689,
- -0.0028364532627165318,
- -0.06238030269742012,
- -0.03321012109518051,
- 0.02279594913125038,
- 0.012136655859649181,
- 0.02769572101533413,
- -0.06414678692817688,
- -0.006516505964100361,
- 0.026371270418167114,
- 0.051275789737701416,
- -0.08775804191827774,
- 0.0876283124089241,
- 0.01599922403693199,
- 0.02059381641447544,
- -0.07844490557909012,
- 0.017865147441625595,
- -0.0699935182929039,
- 0.009400971233844757,
- 0.03605252131819725,
- -0.022720443084836006,
- 0.029121723026037216,
- -0.023138048127293587,
- 4.665983398924987e-33,
- 0.01242656260728836,
- -0.07084879279136658,
- -0.06071687117218971,
- 0.1029311865568161,
- -0.018888121470808983,
- 0.0245420653373003,
- 0.038040462881326675,
- 0.00878140889108181,
- 0.039511412382125854,
- -0.01721005141735077,
- -0.01700103096663952,
- -0.03854062780737877,
- -0.02258061245083809,
- 0.006630925927311182,
- 0.0628814548254013,
- -0.054983679205179214,
- 0.0075129796750843525,
- 0.03247649967670441,
- 0.06869423389434814,
- -0.02048320882022381,
- -0.03323334828019142,
- -0.069382444024086,
- 0.03949292004108429,
- -0.12067314982414246,
- -0.009931045584380627,
- 0.0036974947433918715,
- 0.05575226992368698,
- -0.08148118108510971,
- -0.13131606578826904,
- 0.07229670882225037,
- 0.039702463895082474,
- 0.017784567549824715,
- -0.022237000986933708,
- -0.006114160176366568,
- 0.023548096418380737,
- 0.09408626705408096,
- -0.06885571777820587,
- -0.07823636382818222,
- -0.07701197266578674,
- 0.05273576080799103,
- 0.02025856450200081,
- -0.02030949294567108,
- 0.12075678259134293,
- 0.02127406932413578,
- 0.04259143024682999,
- 0.00034342316212132573,
- 0.05383527651429176,
- 0.03335988149046898,
- 0.004573404788970947,
- 0.016604850068688393,
- -0.03772910311818123,
- -0.01441910956054926,
- 0.009099168702960014,
- -0.01435351837426424,
- -0.058320824056863785,
- -0.04596896469593048,
- 0.05119329318404198,
- 0.0030870072077959776,
- 0.07647587358951569,
- -0.018336305394768715,
- 0.07457238435745239,
- 0.00449546379968524,
- -0.08715834468603134,
- 0.04769910126924515,
- 0.027597563341259956,
- 0.024769073352217674,
- -0.0051934970542788506,
- 0.019824296236038208,
- 0.13291949033737183,
- 0.0145142562687397,
- 0.09213338792324066,
- 0.01229039952158928,
- 0.03032173402607441,
- 0.01375473104417324,
- 0.035129982978105545,
- 0.006810568273067474,
- -0.03690676391124725,
- 0.06114741414785385,
- -0.026773890480399132,
- -0.04676031321287155,
- -0.051562532782554626,
- 0.009188314899802208,
- 0.018113305792212486,
- 0.05134535953402519,
- -0.006556446198374033,
- -0.03840019181370735,
- 0.12379468232393265,
- 0.05319381505250931,
- -0.029835892841219902,
- 0.009003485552966595,
- -0.0487414114177227,
- 0.0322209931910038,
- -0.0006875803228467703,
- -0.0805269405245781,
- 0.023318219929933548,
- -1.1890439743922343e-8,
- -0.04258003830909729,
- 0.03123726136982441,
- -0.03610720485448837,
- 0.009516510181128979,
- 0.05277280882000923,
- -0.050977420061826706,
- -0.0253311600536108,
- 0.03465466573834419,
- 0.006494706030935049,
- 0.02344471402466297,
- 0.0008843088871799409,
- 0.05269233509898186,
- 0.09026238322257996,
- 0.030490221455693245,
- 0.09357672184705734,
- 0.009698815643787384,
- 0.026031749323010445,
- 0.07870935648679733,
- -0.06076847016811371,
- -0.013864467851817608,
- -0.012684762477874756,
- 0.045220714062452316,
- -0.005025939084589481,
- -0.017139993607997894,
- 0.002311078133061528,
- -0.007784030865877867,
- -0.009359795600175858,
- 0.10568735748529434,
- -0.04768741503357887,
- 0.0662851333618164,
- 0.0657980889081955,
- 0.06933903694152832,
- -0.05536186695098877,
- -0.11415934562683105,
- -0.0385066494345665,
- 0.004031147807836533,
- 0.056331098079681396,
- 0.040503162890672684,
- 0.061830781400203705,
- 0.04592479020357132,
- -0.07743245363235474,
- -0.12576942145824432,
- 0.05679189786314964,
- -0.006318637169897556,
- 0.053881168365478516,
- -0.03234849497675896,
- 0.09111052751541138,
- -0.04352826252579689,
- 0.015258213505148888,
- -0.05306028947234154,
- -0.04304603487253189,
- 0.0656643807888031,
- 0.000021312593162292615,
- 0.05669054016470909,
- 0.04689103364944458,
- -0.06841081380844116,
- 0.03160611540079117,
- 0.03752734139561653,
- -0.10795609652996063,
- -0.02420113980770111,
- 0.11025860160589218,
- 0.10106034576892853,
- -0.025006627663969994,
- -0.0018677512416616082
- ]
- },
- {
- "keyword": "learner",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03395480662584305,
- -0.0030536847189068794,
- 0.010293305851519108,
- 0.0500018373131752,
- -0.0043884566985070705,
- -0.018296299502253532,
- 0.10130493342876434,
- 0.021522698923945427,
- -0.004131656140089035,
- 0.044636521488428116,
- 0.05018674209713936,
- -0.009074940346181393,
- 0.03645334392786026,
- -0.000733855995349586,
- -0.05956938490271568,
- 0.03164367377758026,
- -0.08582136034965515,
- 0.030502622947096825,
- -0.0584530234336853,
- -0.11253678053617477,
- -0.1212804988026619,
- 0.00842702854424715,
- -0.007330856751650572,
- 0.05549921840429306,
- 0.004330875352025032,
- 0.043640073388814926,
- 0.012722351588308811,
- -0.009712405502796173,
- 0.02551165409386158,
- -0.06645043939352036,
- -0.0005045103025622666,
- -0.02554295025765896,
- 0.0682266354560852,
- 0.0166269950568676,
- -0.07807835191488266,
- 0.04248306155204773,
- 0.009445328265428543,
- 0.04463456943631172,
- -0.002802044851705432,
- 0.017418960109353065,
- -0.01363337505608797,
- -0.08260080218315125,
- -0.04415884241461754,
- -0.03846671059727669,
- 0.012101924978196621,
- 0.022873247042298317,
- 0.017368042841553688,
- -0.03864147886633873,
- 0.017794594168663025,
- -0.003254340495914221,
- -0.07340174168348312,
- -0.06704012304544449,
- -0.06431382149457932,
- -0.07131697237491608,
- 0.003933607134968042,
- 0.03962266445159912,
- 0.02433185838162899,
- 0.03614579141139984,
- -0.022751158103346825,
- 0.011510462500154972,
- 0.0001683635637164116,
- -0.020420391112565994,
- -0.04930177703499794,
- 0.044163867831230164,
- 0.020191174000501633,
- -0.01616036891937256,
- -0.024576561525464058,
- 0.08756900578737259,
- -0.0466637946665287,
- -0.047869473695755005,
- -0.05324075371026993,
- 0.06140897050499916,
- 0.013144249096512794,
- 0.03232041746377945,
- 0.05592430382966995,
- -0.10704788565635681,
- 0.02502649649977684,
- 0.018427424132823944,
- 0.07817020267248154,
- -0.02129867859184742,
- -0.009225458838045597,
- 0.013618115335702896,
- -0.0520562008023262,
- 0.03185271471738815,
- 0.051157306879758835,
- -0.013838696293532848,
- -0.01250764075666666,
- 0.044104017317295074,
- 0.07753784954547882,
- -0.05661517754197121,
- -0.018376680091023445,
- -0.016681402921676636,
- 0.027517838403582573,
- 0.02645135298371315,
- 0.001415423583239317,
- 0.029439102858304977,
- -0.01354928407818079,
- -0.015192774124443531,
- -0.08603408932685852,
- 0.20357082784175873,
- -0.03788665309548378,
- -0.05015106871724129,
- 0.013561633415520191,
- 0.018054910004138947,
- -0.019653208553791046,
- 0.007236476521939039,
- -0.04672194644808769,
- 0.03209869936108589,
- 0.01731363870203495,
- -0.04530322924256325,
- 0.019034389406442642,
- 0.034066278487443924,
- -0.032724760472774506,
- 0.017926659435033798,
- 0.07825188338756561,
- 0.04613863304257393,
- -0.020025495439767838,
- 0.007071047555655241,
- 0.0621318519115448,
- 0.049750447273254395,
- -0.00798924919217825,
- 0.031488087028265,
- -0.0010560203809291124,
- 0.018087971955537796,
- 0.03547850251197815,
- -0.1392643004655838,
- -0.024530082941055298,
- -3.51798128957454e-33,
- 0.04014763608574867,
- -0.007465385366231203,
- 0.058307163417339325,
- 0.03896670415997505,
- 0.0007502379012294114,
- -0.020878702402114868,
- 0.03853405639529228,
- 0.010168077424168587,
- 0.035792604088783264,
- -0.00822470337152481,
- 0.07680628448724747,
- 0.008394595235586166,
- -0.04905914515256882,
- 0.08984141796827316,
- 0.1232917383313179,
- 0.0021389168687164783,
- -0.10716617107391357,
- 0.05862871930003166,
- -0.04560646787285805,
- -0.06484603881835938,
- 0.02823152206838131,
- -0.03247581794857979,
- -0.0037410978693515062,
- 0.01644684188067913,
- -0.085555300116539,
- -0.023447738960385323,
- 0.028375675901770592,
- -0.04279521852731705,
- 0.046934179961681366,
- -0.014727667905390263,
- 0.011041357181966305,
- -0.026571005582809448,
- 0.050249967724084854,
- -0.04564446955919266,
- 0.024873828515410423,
- -0.06269355118274689,
- 0.0716194435954094,
- 0.021108945831656456,
- -0.036968816071748734,
- -0.1089308112859726,
- -0.020546361804008484,
- -0.016404572874307632,
- 0.027747556567192078,
- 0.012360415421426296,
- -0.011001473292708397,
- 0.018166538327932358,
- 0.0571310892701149,
- -0.04048699140548706,
- -0.05773279443383217,
- 0.03925922140479088,
- -0.009317344054579735,
- -0.06138967350125313,
- -0.010089369490742683,
- 0.003366767428815365,
- 0.06104453653097153,
- 0.08572844415903091,
- 0.012308486737310886,
- 0.011634250171482563,
- -0.0063471379689872265,
- -0.01742285117506981,
- -0.03811611607670784,
- 0.14975711703300476,
- 0.058093126863241196,
- 0.03390168771147728,
- 0.017350612208247185,
- 0.006545003037899733,
- 0.05463649705052376,
- -0.010507909581065178,
- 0.04655300825834274,
- -0.013318735174834728,
- -0.07277846336364746,
- 0.009113122709095478,
- 0.003967443481087685,
- 0.03400355204939842,
- 0.029749678447842598,
- -0.02939627133309841,
- -0.05624699965119362,
- -0.005000255536288023,
- 0.0311671681702137,
- -0.04599219560623169,
- 0.00675190007314086,
- -0.03174726665019989,
- 0.0450688935816288,
- -0.03325851634144783,
- -0.04172567278146744,
- 0.010166038759052753,
- 0.03469841927289963,
- -0.06919752061367035,
- 0.13298451900482178,
- 0.1007886454463005,
- -0.029216423630714417,
- -0.025937389582395554,
- -0.04214773327112198,
- 0.04887267202138901,
- -0.012597634457051754,
- 2.5047407913382378e-33,
- -0.06335896253585815,
- 0.013311711139976978,
- -0.012453571893274784,
- 0.16209550201892853,
- 0.02803473174571991,
- -0.03489633649587631,
- -0.014593157917261124,
- 0.045868583023548126,
- -0.010099598206579685,
- -0.030655503273010254,
- -0.03869015350937843,
- 0.04059552401304245,
- 0.04741394892334938,
- 0.055114295333623886,
- 0.07183142751455307,
- 0.0031214917544275522,
- 0.003303937613964081,
- 0.030201178044080734,
- -0.04217865690588951,
- 0.03847440332174301,
- -0.016955187544226646,
- -0.041824616491794586,
- -0.08816485106945038,
- -0.012118346989154816,
- -0.09635686129331589,
- -0.017744367942214012,
- -0.01452516671270132,
- 0.12599949538707733,
- -0.019798293709754944,
- -0.003998194355517626,
- 0.07545652240514755,
- -0.036852408200502396,
- 0.03801000863313675,
- -0.03830581530928612,
- -0.0296244565397501,
- 0.06126432865858078,
- 0.03548717498779297,
- 0.005210132338106632,
- -0.049758732318878174,
- 0.05556473508477211,
- 0.03774084150791168,
- -0.015945320948958397,
- -0.0717388167977333,
- 0.007364719640463591,
- -0.03307335823774338,
- -0.031416065990924835,
- 0.04984413459897041,
- -0.06060222163796425,
- 0.05619022995233536,
- 0.019659992307424545,
- -0.025226052850484848,
- -0.0272285845130682,
- -0.04621749371290207,
- -0.16763955354690552,
- -0.018889179453253746,
- 0.014184832572937012,
- 0.047780342400074005,
- -0.07211069762706757,
- 0.014297514222562313,
- 0.01304620411247015,
- 0.008111942559480667,
- -0.05098956450819969,
- -0.025889605283737183,
- 0.06231163069605827,
- -0.024762870743870735,
- -0.0651990994811058,
- -0.01772299036383629,
- 0.07931934297084808,
- -0.0007968473364599049,
- 0.06528501957654953,
- 0.12793324887752533,
- 0.009451033547520638,
- -0.07413283735513687,
- -0.07392729073762894,
- -0.0024033079389482737,
- -0.016268018633127213,
- -0.08034273982048035,
- 0.028508702293038368,
- -0.09566077589988708,
- -0.03661298379302025,
- -0.07574176788330078,
- -0.07983479648828506,
- 0.03448062390089035,
- 0.0325222983956337,
- 0.010298319160938263,
- 0.0641551986336708,
- 0.07325578480958939,
- 0.0035902811214327812,
- 0.02539004199206829,
- -0.05512568727135658,
- 0.0324915386736393,
- -0.0028858808800578117,
- 0.013956665061414242,
- -0.0001499006466474384,
- -0.09141881763935089,
- -1.4676432513738291e-8,
- -0.0782175362110138,
- 0.008771033957600594,
- 0.019531497731804848,
- -0.0367477610707283,
- 0.02750680409371853,
- -0.019723594188690186,
- -0.027389299124479294,
- 0.04286738112568855,
- -0.04286476969718933,
- 0.06603246182203293,
- 0.025422478094697,
- -0.0231263879686594,
- 0.009608409367501736,
- 0.022188277915120125,
- 0.09585429728031158,
- 0.05989436060190201,
- 0.09535522013902664,
- 0.06317606568336487,
- -0.07141182571649551,
- 0.004929667338728905,
- 0.13561873137950897,
- 0.002128477208316326,
- 0.04570921137928963,
- -0.037200599908828735,
- -0.02369813807308674,
- -0.027646580711007118,
- -0.07032784074544907,
- 0.11494165658950806,
- -0.018340447917580605,
- 0.026567108929157257,
- 0.017871424555778503,
- 0.11063659191131592,
- -0.009965735487639904,
- -0.04588943347334862,
- 0.13128818571567535,
- 0.056087031960487366,
- 0.0003870402870234102,
- -0.038102488964796066,
- -0.02973487228155136,
- 0.037777483463287354,
- -0.1003565713763237,
- 0.0064699104987084866,
- 0.033395636826753616,
- 0.006303410045802593,
- -0.035733822733163834,
- 0.015788041055202484,
- -0.04231088608503342,
- -0.11354166269302368,
- -0.02116258814930916,
- -0.014904818497598171,
- 0.0017112449277192354,
- 0.030237840488553047,
- 0.04291364178061485,
- 0.003587725106626749,
- 0.13646572828292847,
- -0.029537487775087357,
- -0.01598788984119892,
- -0.002969310386106372,
- -0.1096583679318428,
- 0.006564433220773935,
- 0.026872286573052406,
- 0.016682002693414688,
- -0.03865460306406021,
- 0.042539358139038086
- ]
- },
- {
- "keyword": "trainee",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06565818935632706,
- -0.01016407459974289,
- 0.017513401806354523,
- 0.029707353562116623,
- -0.05600547417998314,
- -0.045774247497320175,
- 0.09132032841444016,
- -0.041883256286382675,
- -0.07247554510831833,
- -0.028766844421625137,
- 0.025259951129555702,
- -0.07969953119754791,
- 0.0235521849244833,
- 0.04227476939558983,
- -0.058131203055381775,
- 0.013294302858412266,
- 0.0759362205862999,
- -0.014311868697404861,
- 0.022950993850827217,
- -0.08355408906936646,
- -0.07594893872737885,
- 0.0032411401625722647,
- -0.000596613681409508,
- 0.026685863733291626,
- -0.014852003194391727,
- 0.007196811959147453,
- -0.01648065075278282,
- 0.07779265940189362,
- -0.06370501220226288,
- -0.06743360310792923,
- -0.04107218235731125,
- 0.010707366280257702,
- 0.01519991084933281,
- -0.01658579148352146,
- -0.035338666290044785,
- 0.10740180313587189,
- 0.0007721847505308688,
- 0.04987335577607155,
- 0.057337913662195206,
- 0.025870803743600845,
- -0.03054552897810936,
- -0.0693226158618927,
- -0.06077773869037628,
- -0.023431628942489624,
- 0.07127360999584198,
- 0.006798406597226858,
- 0.06332138925790787,
- -0.07780860364437103,
- -0.01845499500632286,
- 0.005589616484940052,
- -0.04164649546146393,
- -0.06154383346438408,
- 0.012851684354245663,
- 0.01642492413520813,
- 0.044315408915281296,
- -0.07099922746419907,
- 0.032928869128227234,
- -0.005137495696544647,
- -0.01657116413116455,
- 0.0035865402314811945,
- -0.041777245700359344,
- 0.033889032900333405,
- -0.06958632916212082,
- -0.009247719310224056,
- 0.02546110190451145,
- -0.08071841299533844,
- -0.044555678963661194,
- -0.022313250228762627,
- 0.07219786942005157,
- -0.07392258197069168,
- -0.0036835474893450737,
- 0.018899669870734215,
- -0.015591854229569435,
- 0.027466634288430214,
- 0.033195625990629196,
- -0.003604163648560643,
- 0.1042993813753128,
- 0.009563472121953964,
- 0.09224312752485275,
- -0.07010800391435623,
- 0.01344755757600069,
- 0.045121584087610245,
- -0.013078387826681137,
- 0.04243476688861847,
- -0.024579806253314018,
- -0.037384841591119766,
- 0.023406459018588066,
- 0.03024534322321415,
- -0.00795635487884283,
- 0.04670845344662666,
- -0.00276484084315598,
- 0.011912832967936993,
- 0.013227256014943123,
- 0.03941284865140915,
- -0.032366424798965454,
- -0.020161613821983337,
- -0.05272825062274933,
- 0.023206867277622223,
- -0.10005859285593033,
- 0.19656042754650116,
- -0.01629994623363018,
- -0.01208619773387909,
- -0.007710346020758152,
- 0.04802767187356949,
- -0.06707704812288284,
- -0.009847925044596195,
- -0.007509496994316578,
- 0.05933814123272896,
- -0.0021752456668764353,
- -0.028191931545734406,
- 0.02361449971795082,
- 0.04580288007855415,
- -0.15988293290138245,
- -0.0028693692293018103,
- 0.01506025716662407,
- 0.07162799686193466,
- -0.09244406968355179,
- -0.008933965116739273,
- -0.04320942610502243,
- 0.11519013345241547,
- -0.0249869916588068,
- 0.03666947782039642,
- -0.11374233663082123,
- 0.020912110805511475,
- -0.05041341111063957,
- -0.07450621575117111,
- 0.026673052459955215,
- -4.927579013782933e-33,
- 0.04683312773704529,
- 0.011188767850399017,
- 0.05938992649316788,
- 0.04768909141421318,
- 0.07977007329463959,
- 0.053149085491895676,
- 0.07602094858884811,
- 0.0019017087761312723,
- 0.011358441784977913,
- -0.0054596541449427605,
- -0.017417876049876213,
- 0.026596589013934135,
- -0.0008639535517431796,
- -0.003149457508698106,
- 0.024641208350658417,
- 0.014869359321892262,
- -0.027072494849562645,
- 0.002374358242377639,
- -0.027625583112239838,
- -0.008659408427774906,
- -0.019904786720871925,
- 0.05433674529194832,
- -0.02873222343623638,
- 0.015925925225019455,
- 0.01768013834953308,
- -0.04579942300915718,
- -0.0021323023829609156,
- 0.015393495559692383,
- 0.08954309672117233,
- 0.0359053798019886,
- 0.0026919571682810783,
- 0.0738900676369667,
- 0.01902683824300766,
- -0.036118991672992706,
- -0.0024035186506807804,
- 0.023086242377758026,
- -0.037519026547670364,
- -0.055711716413497925,
- -0.038485076278448105,
- -0.021469663828611374,
- -0.05912356451153755,
- -0.0051842546090483665,
- 0.07443202286958694,
- 0.038774095475673676,
- -0.04694128781557083,
- -0.023421572521328926,
- 0.045187752693891525,
- 0.00995227787643671,
- -0.05298290401697159,
- 0.09977343678474426,
- -0.052460215985774994,
- -0.020604245364665985,
- 0.006302415858954191,
- -0.047690700739622116,
- 0.04877326637506485,
- 0.014327436685562134,
- 0.06998662650585175,
- 0.06390062719583511,
- -0.07218889147043228,
- -0.0608241967856884,
- 0.04558873549103737,
- 0.04029754176735878,
- -0.012095212005078793,
- 0.04958080127835274,
- 0.008981186896562576,
- -0.11622915416955948,
- 0.037787433713674545,
- -0.026777826249599457,
- 0.11929620057344437,
- -0.026532121002674103,
- -0.11405953019857407,
- 0.010812470689415932,
- 0.008914084173738956,
- -0.018008263781666756,
- -0.00802365317940712,
- -0.02921309880912304,
- -0.021200817078351974,
- 0.03396555036306381,
- -0.0017413944005966187,
- -0.025992846116423607,
- -0.02260749600827694,
- -0.010851955972611904,
- -0.023680010810494423,
- -0.005834256764501333,
- 0.07613097131252289,
- 0.012120088562369347,
- -0.008969031274318695,
- -0.03892025724053383,
- 0.135418102145195,
- 0.08982977271080017,
- -0.10158469527959824,
- -0.028546052053570747,
- 0.03220471367239952,
- 0.08880826085805893,
- 0.014711166732013226,
- 3.6222303734191995e-33,
- 0.07255221158266068,
- 0.041380856186151505,
- -0.02466534450650215,
- 0.08913319557905197,
- 0.06635236740112305,
- 0.03303500637412071,
- 0.026973562315106392,
- 0.06534382700920105,
- -0.12832219898700714,
- 0.09023222327232361,
- 0.04371302202343941,
- 0.010730206035077572,
- -0.026203779503703117,
- 0.007349562831223011,
- 0.020525425672531128,
- 0.01959221251308918,
- -0.09589406847953796,
- 0.004970905836671591,
- -0.0009032696834765375,
- 0.0467311292886734,
- 0.02358146756887436,
- 0.013866789638996124,
- 0.009225775487720966,
- 0.0037311390042304993,
- -0.020973555743694305,
- 0.039992112666368484,
- 0.060453977435827255,
- 0.11675429344177246,
- -0.06509681791067123,
- -0.037971388548612595,
- -0.006146370433270931,
- -0.017575858160853386,
- -0.03405027464032173,
- -0.01572258770465851,
- -0.03550776094198227,
- 0.10934136062860489,
- 0.03603744879364967,
- 0.004511515609920025,
- -0.037056803703308105,
- 0.11281735450029373,
- 0.03308144584298134,
- -0.05351954698562622,
- -0.01445749867707491,
- 0.131758451461792,
- -0.003229183843359351,
- -0.09000559896230698,
- 0.003167245304211974,
- -0.041054803878068924,
- 0.04274819418787956,
- 0.026753805577754974,
- -0.054738108068704605,
- -0.033808816224336624,
- -0.06090804934501648,
- -0.005396153312176466,
- 0.01430357526987791,
- -0.0317821279168129,
- -0.0560084730386734,
- -0.029351484030485153,
- 0.010164983570575714,
- -0.011046278290450573,
- 0.055048007518053055,
- 0.00009266533015761524,
- -0.010641315020620823,
- 0.0683031678199768,
- -0.0347033329308033,
- -0.032809093594551086,
- -0.0198544692248106,
- 0.016360552981495857,
- -0.01815066672861576,
- 0.029386963695287704,
- 0.06587956100702286,
- -0.012634415179491043,
- 0.028274601325392723,
- -0.03533889353275299,
- -0.060770053416490555,
- -0.0668492317199707,
- -0.03158160671591759,
- -0.05196356400847435,
- -0.04930559918284416,
- -0.02939286082983017,
- -0.006534564308822155,
- -0.11874307692050934,
- 0.039119262248277664,
- 0.138998880982399,
- -0.005694958847016096,
- -0.007702884264290333,
- 0.0747268795967102,
- 0.09037918597459793,
- -0.027645137161016464,
- -0.0786232128739357,
- 0.05279013514518738,
- -0.028276270255446434,
- -0.02255040779709816,
- -0.07806693017482758,
- -0.02088087983429432,
- -1.1535602695289526e-8,
- -0.046165648847818375,
- 0.04373115301132202,
- -0.032836079597473145,
- -0.018099648877978325,
- 0.06228887289762497,
- -0.016901932656764984,
- -0.055518291890621185,
- -0.002376448130235076,
- 0.00585993891581893,
- 0.08167657256126404,
- -0.009090148843824863,
- -0.022404197603464127,
- 0.059302639216184616,
- -0.053312547504901886,
- 0.13952817022800446,
- 0.014651676639914513,
- -0.05705264210700989,
- 0.07912106066942215,
- -0.05233066529035568,
- -0.02602836862206459,
- 0.0335221104323864,
- 0.0029447763226926327,
- 0.01277848333120346,
- 0.07287552952766418,
- -0.03525860980153084,
- -0.01752404309809208,
- -0.07112529873847961,
- 0.12355261296033859,
- 0.009833771735429764,
- 0.06145285815000534,
- -0.03813575208187103,
- 0.06408216059207916,
- -0.0013583628460764885,
- -0.09616632014513016,
- 0.01339651457965374,
- 0.015491227619349957,
- 0.04786067083477974,
- -0.07193373143672943,
- -0.031104015186429024,
- -0.04022132605314255,
- -0.024838043376803398,
- -0.09114926308393478,
- 0.03752535954117775,
- -0.02043752558529377,
- 0.01979885809123516,
- 0.053441524505615234,
- 0.004287239164113998,
- -0.0029372440185397863,
- 0.010495726950466633,
- 0.02723059430718422,
- -0.007899644784629345,
- -0.0005713460850529373,
- 0.047337647527456284,
- 0.06231485307216644,
- -0.004349370952695608,
- 0.01756122335791588,
- -0.015286981128156185,
- -0.034159354865550995,
- -0.11198300123214722,
- 0.06203915923833847,
- 0.02710718847811222,
- -0.025478621944785118,
- -0.000553147925529629,
- -0.05688413977622986
- ]
- },
- {
- "keyword": "intern",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.02273576334118843,
- 0.024554144591093063,
- 0.059099230915308,
- 0.014864671975374222,
- -0.04664779454469681,
- -0.07615438103675842,
- 0.005892905872315168,
- 0.009341581724584103,
- 0.011598769575357437,
- -0.009054440073668957,
- -0.039302319288253784,
- -0.011555531993508339,
- -0.009542410261929035,
- 0.014859798364341259,
- -0.05825447663664818,
- 0.011143267154693604,
- 0.037882737815380096,
- -0.05255560576915741,
- -0.05374934524297714,
- -0.1214604452252388,
- -0.05413363128900528,
- -0.05014898627996445,
- 0.0425233468413353,
- -0.04758475348353386,
- -0.011825731955468655,
- 0.017967745661735535,
- -0.03378710150718689,
- 0.037669871002435684,
- -0.04642851650714874,
- -0.08030124753713608,
- 0.0158856064081192,
- -0.0031145208049565554,
- 0.017104176804423332,
- -0.02626355178654194,
- 0.02395082637667656,
- 0.10385232418775558,
- 0.0028764239978045225,
- 0.003937482368201017,
- 0.14311237633228302,
- -0.020152293145656586,
- 0.005354615394026041,
- -0.036627545952796936,
- -0.024142157286405563,
- -0.05243220925331116,
- 0.009187222458422184,
- -0.07095741480588913,
- -0.023775793612003326,
- -0.024110525846481323,
- 0.019943568855524063,
- -0.021091576665639877,
- 0.004785378463566303,
- -0.06790929287672043,
- -0.0032107539009302855,
- 0.02429325133562088,
- 0.012684520334005356,
- 0.03535378351807594,
- 0.02778960019350052,
- -0.01386441383510828,
- 0.004937605932354927,
- 0.005247408524155617,
- 0.00729634752497077,
- -0.02940640226006508,
- 0.05663042142987251,
- 0.03612335026264191,
- -0.0023426562547683716,
- -0.056777823716402054,
- 0.029851695522665977,
- 0.00798836536705494,
- -0.01977653056383133,
- -0.09682837128639221,
- 0.015381129458546638,
- 0.01924675703048706,
- -0.10318241268396378,
- 0.06556793302297592,
- 0.0762118399143219,
- -0.02622460015118122,
- 0.10919082909822464,
- 0.033522773534059525,
- 0.0771046131849289,
- -0.04480332136154175,
- 0.030438704416155815,
- 0.04627459868788719,
- -0.038724131882190704,
- 0.03925767540931702,
- -0.03388231247663498,
- -0.044127266854047775,
- 0.01063496246933937,
- 0.010026603937149048,
- 0.015001814812421799,
- 0.06571846455335617,
- -0.04526643082499504,
- -0.04422764480113983,
- -0.03955980762839317,
- 0.010528813116252422,
- -0.014773580245673656,
- 0.019455187022686005,
- -0.007951043546199799,
- 0.0032068367581814528,
- -0.06000233441591263,
- 0.22657765448093414,
- 0.011970039457082748,
- -0.05092666298151016,
- -0.002582403365522623,
- 0.007533518597483635,
- -0.06553716957569122,
- -0.011867878958582878,
- 0.04949693754315376,
- -0.02568472921848297,
- -0.03413917124271393,
- -0.021453924477100372,
- -0.03265709802508354,
- -0.00991809368133545,
- 0.04253918305039406,
- 0.020979315042495728,
- 0.009256459772586823,
- 0.0754295140504837,
- 0.023526353761553764,
- 0.04742749407887459,
- 0.07225407660007477,
- 0.036417193710803986,
- 0.002131010638549924,
- 0.060436539351940155,
- -0.0666826143860817,
- 0.049416083842515945,
- -0.10112105309963226,
- 0.0007242889259941876,
- -0.027815688401460648,
- -5.504315480546718e-33,
- 0.006920916959643364,
- 0.042858466506004333,
- -0.02555927075445652,
- 0.049991488456726074,
- 0.07129133492708206,
- 0.016223419457674026,
- 0.005613365210592747,
- 0.08009368181228638,
- -0.06355924159288406,
- -0.03061581403017044,
- -0.03688473254442215,
- 0.028970059007406235,
- -0.017391778528690338,
- 0.001081480411812663,
- 0.04006759077310562,
- 0.08040954172611237,
- 0.014218125492334366,
- 0.09112747013568878,
- -0.07918209582567215,
- -0.027619214728474617,
- 0.01250627264380455,
- -0.045657869428396225,
- 0.012416686862707138,
- 0.043178364634513855,
- 0.04395649582147598,
- 0.025441572070121765,
- 0.029812239110469818,
- -0.0564676932990551,
- 0.11482413858175278,
- 0.002196797402575612,
- 0.040283188223838806,
- -0.0027093852404505014,
- -0.07147661596536636,
- -0.041228536516427994,
- -0.024742167443037033,
- 0.039202794432640076,
- -0.013617413118481636,
- -0.05169554054737091,
- -0.022883163765072823,
- -0.007465851493179798,
- -0.06666247546672821,
- 0.04756671190261841,
- 0.04293707385659218,
- -0.012963554821908474,
- -0.029298139736056328,
- 0.008767160587012768,
- 0.058519087731838226,
- 0.014558468014001846,
- 0.050561096519231796,
- 0.01834007166326046,
- -0.03611569479107857,
- -0.04876290634274483,
- 0.02273104526102543,
- -0.01920345053076744,
- 0.007034759037196636,
- 0.06704901903867722,
- 0.06371242552995682,
- -0.0017282066401094198,
- 0.029091082513332367,
- -0.050420843064785004,
- -0.0019030331168323755,
- 0.12410814315080643,
- -0.06330951303243637,
- 0.1217847391963005,
- -0.02542184852063656,
- -0.01519637182354927,
- -0.008865847252309322,
- -0.007774344179779291,
- 0.1811133325099945,
- -0.0023238523863255978,
- -0.0765448808670044,
- 0.013693333603441715,
- -0.015144937671720982,
- -0.035197626799345016,
- 0.025452373549342155,
- 0.02867061085999012,
- -0.10347743332386017,
- -0.044239457696676254,
- -0.014290334656834602,
- -0.04131443426012993,
- -0.0038991007022559643,
- -0.007868212647736073,
- 0.03777812421321869,
- 0.01595262810587883,
- 0.04761238023638725,
- 0.016702253371477127,
- -0.008955598808825016,
- 0.040403205901384354,
- 0.09994150698184967,
- 0.06884022057056427,
- -0.08637065440416336,
- -0.001758971018716693,
- 0.0046027423813939095,
- 0.04863620176911354,
- -0.0243342574685812,
- 2.792778049591977e-33,
- 0.030140435323119164,
- -0.038907382637262344,
- 0.0268824715167284,
- -0.04584669694304466,
- 0.08514245599508286,
- 0.04630763456225395,
- -0.07959955185651779,
- -0.001854229369200766,
- -0.06360836327075958,
- 0.0012770970351994038,
- 0.02042984962463379,
- -0.022832736372947693,
- -0.02473870851099491,
- 0.07532728463411331,
- 0.029894711449742317,
- 0.0387619212269783,
- -0.017669450491666794,
- -0.02158670872449875,
- -0.010757733136415482,
- -0.0021962150931358337,
- -0.033141184598207474,
- -0.011685400269925594,
- 0.04731576889753342,
- 0.07260515540838242,
- -0.06888411939144135,
- 0.005163255613297224,
- 0.09149763733148575,
- 0.07683709263801575,
- -0.0903995931148529,
- -0.012733719311654568,
- -0.023163247853517532,
- 0.0172533318400383,
- -0.09218183904886246,
- 0.04147574305534363,
- -0.024841656908392906,
- 0.1332404911518097,
- 0.026154963299632072,
- -0.05218454450368881,
- -0.05755427107214928,
- 0.032140158116817474,
- 0.08473154157400131,
- -0.058205924928188324,
- -0.010525831021368504,
- 0.11033120006322861,
- -0.07395690679550171,
- -0.030738528817892075,
- -0.09171361476182938,
- -0.02290746197104454,
- -0.03612319007515907,
- -0.008788530714809895,
- -0.21337148547172546,
- 0.0023824041709303856,
- -0.033143166452646255,
- -0.07368724793195724,
- -0.02437293529510498,
- -0.05478239059448242,
- 0.01001063734292984,
- 0.01506864558905363,
- 0.029999209567904472,
- 0.0005225782515481114,
- 0.0038340359460562468,
- 0.0073183393105864525,
- 0.035772353410720825,
- 0.05640331283211708,
- -0.08530576527118683,
- 0.0387728251516819,
- 0.003568964311853051,
- -0.03337991610169411,
- -0.022256415337324142,
- 0.03506606072187424,
- 0.08682894706726074,
- 0.02767171896994114,
- -0.09265894442796707,
- -0.008641395717859268,
- -0.004532964434474707,
- 0.014226767234504223,
- 0.014669768512248993,
- -0.011498277075588703,
- -0.04235243797302246,
- -0.049791451543569565,
- -0.03002014569938183,
- -0.09184624254703522,
- -0.017727548256516457,
- 0.06142602860927582,
- -0.018960386514663696,
- -0.020489750429987907,
- 0.024647431448101997,
- 0.045327287167310715,
- -0.025749752297997475,
- -0.011537394486367702,
- 0.039020638912916183,
- -0.0023825939279049635,
- -0.06895200163125992,
- -0.08975687623023987,
- -0.020758042111992836,
- -1.150401995886341e-8,
- 0.007396082393825054,
- 0.009355118498206139,
- 0.023585375398397446,
- 0.03432851284742355,
- -0.0028153760358691216,
- -0.06004710868000984,
- -0.07115302979946136,
- 0.01640908047556877,
- 0.07992459088563919,
- 0.010900991037487984,
- -0.019101424142718315,
- -0.06447733938694,
- 0.08537112176418304,
- -0.0283796489238739,
- 0.06194276362657547,
- 0.036979831755161285,
- -0.06403142958879471,
- 0.09922417253255844,
- -0.015536208637058735,
- 0.0054926155135035515,
- 0.03387105092406273,
- 0.044108953326940536,
- -0.017978020012378693,
- 0.05039876326918602,
- 0.03934681788086891,
- -0.027706541121006012,
- 0.017034107819199562,
- 0.028768982738256454,
- 0.006417538039386272,
- 0.11028172075748444,
- -0.08606759458780289,
- 0.11345676332712173,
- -0.02506534568965435,
- -0.05119030177593231,
- 0.009060246869921684,
- -0.015645461156964302,
- 0.012454250827431679,
- -0.07059834152460098,
- -0.01785174198448658,
- -0.033700425177812576,
- -0.053799524903297424,
- -0.03372936695814133,
- 0.06242876872420311,
- -0.13905338943004608,
- 0.007947329431772232,
- 0.03823351860046387,
- 0.016647590324282646,
- -0.06514395028352737,
- 0.09501373022794724,
- 0.02023184299468994,
- -0.04498787969350815,
- 0.03211276978254318,
- 0.021079180762171745,
- 0.037447426468133926,
- 0.06387846916913986,
- -0.006076912861317396,
- -0.018709177151322365,
- -0.049526605755090714,
- -0.09528710693120956,
- 0.02060011588037014,
- 0.09553223848342896,
- -0.04160343110561371,
- 0.031483959406614304,
- -0.03121122531592846
- ]
- },
- {
- "keyword": "researcher",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.006200126372277737,
- 0.08108047395944595,
- 0.0065442887134850025,
- 0.10453729331493378,
- -0.03218941390514374,
- -0.07207920402288437,
- 0.07742095738649368,
- 0.07599934935569763,
- -0.012149576097726822,
- 0.05531574413180351,
- 0.01145307905972004,
- -0.04966012388467789,
- -0.0372408926486969,
- 0.04465019330382347,
- -0.09505827724933624,
- 0.06348592787981033,
- -0.01905236579477787,
- -0.02287369593977928,
- -0.022141482681035995,
- -0.09319081902503967,
- -0.14689986407756805,
- -0.040491942316293716,
- 0.10429324209690094,
- 0.0035639337729662657,
- 0.017951175570487976,
- 0.04746419936418533,
- -0.017763158306479454,
- -0.016011720523238182,
- 0.02738155797123909,
- 0.01574983261525631,
- -0.02220386452972889,
- 0.0725618377327919,
- 0.0013732525985687971,
- 0.009891963563859463,
- -0.00911200512200594,
- 0.06394059211015701,
- -0.020447513088583946,
- 0.10019982606172562,
- 0.042051997035741806,
- 0.06569592654705048,
- -0.0031246242579072714,
- -0.040472619235515594,
- 0.045036450028419495,
- -0.029319703578948975,
- -0.037356097251176834,
- -0.046361058950424194,
- 0.04931437969207764,
- 0.001657166751101613,
- -0.04236648231744766,
- 0.016521096229553223,
- -0.1258993297815323,
- -0.06552263349294662,
- -0.01273268461227417,
- -0.044396597892045975,
- -0.038786549121141434,
- -0.053086962550878525,
- 0.01763739064335823,
- 0.013591132126748562,
- 0.01058198232203722,
- 0.005884930957108736,
- 0.09583105891942978,
- -0.01972281187772751,
- -0.12702809274196625,
- -0.02725881151854992,
- 0.07838411629199982,
- 0.012117012403905392,
- -0.03177878260612488,
- 0.018160218372941017,
- 0.012866731733083725,
- -0.03554510325193405,
- 0.04415227100253105,
- -0.003038430819287896,
- -0.0455901101231575,
- 0.07460389286279678,
- 0.12248782813549042,
- -0.0628509446978569,
- 0.022650742903351784,
- 0.030733665451407433,
- 0.13275398313999176,
- -0.026166032999753952,
- 0.09240812063217163,
- -0.0649213120341301,
- -0.04264426976442337,
- 0.021221332252025604,
- -0.06254007667303085,
- -0.040745411068201065,
- 0.0005418701912276447,
- 0.03762085735797882,
- -0.03036012314260006,
- -0.0063027264550328255,
- -0.022812949493527412,
- -0.05673813447356224,
- 0.012444042600691319,
- -0.011786873452365398,
- -0.07403668761253357,
- 0.01842603087425232,
- 0.009582770057022572,
- -0.0642523393034935,
- 0.0030194127466529608,
- 0.23503294587135315,
- 0.000496038468554616,
- -0.007458915468305349,
- 0.017555085942149162,
- 0.045030709356069565,
- -0.033372558653354645,
- -0.04868492856621742,
- -0.04279235377907753,
- -0.03586892411112785,
- 0.04651226848363876,
- 0.04205779731273651,
- -0.023459887132048607,
- 0.054400503635406494,
- -0.07787523418664932,
- 0.07681780308485031,
- 0.05605601891875267,
- 0.025722533464431763,
- -0.051275793462991714,
- 0.07200843840837479,
- -0.01621023379266262,
- 0.022078122943639755,
- -0.026904525235295296,
- 0.010233014822006226,
- -0.048333946615457535,
- -0.04579440876841545,
- -0.02488330379128456,
- -0.023517606779932976,
- -0.024881577119231224,
- -5.7287834736759264e-33,
- 0.01973646506667137,
- 0.03017856366932392,
- 0.02724508009850979,
- 0.08398868143558502,
- -0.011961240321397781,
- 0.011272122152149677,
- -0.04043431207537651,
- 0.0018407696625217795,
- -0.007975507527589798,
- -0.05584489926695824,
- 0.011403019540011883,
- 0.0027447862084954977,
- -0.005153966136276722,
- 0.03514408692717552,
- 0.022559452801942825,
- 0.00262624304741621,
- -0.05815533548593521,
- 0.060886040329933167,
- -0.08691231161355972,
- -0.018236659467220306,
- -0.005228942260146141,
- -0.035594191402196884,
- -0.005718801636248827,
- 0.0384029746055603,
- 0.0371030755341053,
- -0.06923262029886246,
- -0.004892039578408003,
- -0.07298088073730469,
- 0.058383893221616745,
- 0.011510789394378662,
- 0.03151831030845642,
- 0.033470429480075836,
- -0.05244770646095276,
- -0.039121415466070175,
- -0.02093452587723732,
- 0.02749546617269516,
- 0.03648441284894943,
- -0.09803452342748642,
- 0.05849152058362961,
- 0.018897607922554016,
- -0.004201101139187813,
- -0.0012410491472110152,
- 0.11331646144390106,
- 0.0170493982732296,
- -0.011277108453214169,
- 0.04422649368643761,
- 0.04753006622195244,
- 0.01050583552569151,
- -0.016919398680329323,
- 0.02632618322968483,
- -0.015508565120398998,
- 0.01873067021369934,
- -0.02280767634510994,
- -0.028126943856477737,
- 0.06933321058750153,
- 0.06428852677345276,
- 0.001942198257893324,
- -0.008209794759750366,
- 0.0070423549041152,
- -0.020293263718485832,
- 0.07061000913381577,
- 0.11474747955799103,
- -0.08502041548490524,
- -0.02335759811103344,
- -0.022488078102469444,
- 0.014083468355238438,
- 0.021388834342360497,
- 0.0028088127728551626,
- 0.11848125606775284,
- 0.0342736691236496,
- -0.057356446981430054,
- 0.008865614421665668,
- 0.039908647537231445,
- -0.008705784566700459,
- -0.10803797096014023,
- 0.013795926235616207,
- -0.043483130633831024,
- 0.05991107597947121,
- 0.014341315254569054,
- 0.07816460728645325,
- -0.012264938093721867,
- -0.0028507274109870195,
- -0.005685767624527216,
- -0.022902507334947586,
- -0.020481722429394722,
- 0.025660932064056396,
- -0.04500690847635269,
- 0.0028290406335145235,
- 0.08887960761785507,
- 0.05463935807347298,
- 0.009109552018344402,
- -0.0031027384102344513,
- -0.0043427119962871075,
- 0.060663457959890366,
- -0.07668934762477875,
- 5.0693245307089e-33,
- -0.0912073627114296,
- -0.06575585156679153,
- -0.000044053282181266695,
- 0.12725943326950073,
- 0.12323899567127228,
- -0.017986485734581947,
- 0.010574636980891228,
- -0.03174670413136482,
- 0.03311964124441147,
- 0.05409930273890495,
- -0.013884542509913445,
- -0.04123435169458389,
- 0.029692551121115685,
- 0.032699860632419586,
- 0.0011557271936908364,
- 0.02536950632929802,
- -0.0034996885806322098,
- -0.05438598617911339,
- -0.06571083515882492,
- 0.056419845670461655,
- -0.0811840370297432,
- -0.04748377948999405,
- -0.07280982285737991,
- -0.056507498025894165,
- -0.011927938088774681,
- 0.013149267062544823,
- 0.09873517602682114,
- -0.023807859048247337,
- -0.034007150679826736,
- -0.011308996006846428,
- 0.010567222721874714,
- -0.016364699229598045,
- -0.10910531878471375,
- -0.04295697063207626,
- -0.06173480674624443,
- 0.1416184902191162,
- 0.030495068058371544,
- -0.01971733383834362,
- -0.006668750196695328,
- -0.031132234260439873,
- 0.038795724511146545,
- 0.04444066807627678,
- -0.027429787442088127,
- 0.012239927425980568,
- 0.011706582270562649,
- 0.0015225826064124703,
- -0.018744435161352158,
- 0.028621504083275795,
- 0.02169453352689743,
- -0.032053813338279724,
- -0.01984279602766037,
- 0.0037761947605758905,
- -0.010535825043916702,
- -0.08305639773607254,
- 0.00882761925458908,
- -0.017720572650432587,
- 0.020580638200044632,
- -0.033913418650627136,
- -0.0004694979579653591,
- 0.06199956685304642,
- 0.02427179552614689,
- 0.007201774045825005,
- -0.034260399639606476,
- 0.14657096564769745,
- -0.08904961496591568,
- -0.016500502824783325,
- -0.024580903351306915,
- 0.03120705857872963,
- -0.03340010717511177,
- -0.025783877819776535,
- 0.11804713308811188,
- -0.008155543357133865,
- -0.011277832090854645,
- -0.03163084760308266,
- -0.04395737498998642,
- -0.022476227954030037,
- -0.07692869752645493,
- -0.031413596123456955,
- -0.0037525983061641455,
- -0.030665401369333267,
- -0.04654032364487648,
- -0.07477069646120071,
- 0.033199749886989594,
- 0.009724008850753307,
- 0.01820128783583641,
- 0.017197903245687485,
- -0.04382558912038803,
- 0.04419858381152153,
- -0.07144458591938019,
- -0.07811834663152695,
- -0.01898934505879879,
- -0.0914972573518753,
- -0.12941625714302063,
- -0.048345357179641724,
- 0.02316857874393463,
- -1.2232264978706553e-8,
- 0.03756953030824661,
- -0.01702510006725788,
- 0.013088421896100044,
- -0.024309519678354263,
- 0.025817906484007835,
- -0.02333308383822441,
- -0.052888061851263046,
- 0.00448812497779727,
- -0.009314621798694134,
- 0.049177855253219604,
- -0.035587359219789505,
- -0.0031583302188664675,
- 0.003020227886736393,
- 0.08126658946275711,
- 0.045122623443603516,
- -0.05894942209124565,
- 0.0370628647506237,
- 0.06751904636621475,
- -0.041572391986846924,
- 0.007990908809006214,
- 0.039423082023859024,
- 0.04742259904742241,
- 0.022595103830099106,
- 0.07193642109632492,
- 0.07665295898914337,
- 0.0006440645083785057,
- 0.00044737837743014097,
- 0.0917307659983635,
- 0.02668236568570137,
- 0.04437374323606491,
- -0.06666674464941025,
- 0.0720183476805687,
- -0.029840942472219467,
- -0.05696853622794151,
- 0.08914129436016083,
- -0.04081973060965538,
- 0.060433078557252884,
- -0.03543728590011597,
- -0.0016272985376417637,
- 0.008989709429442883,
- -0.028398500755429268,
- 0.01692061871290207,
- 0.0004849219985771924,
- 0.049677446484565735,
- -0.01810992695391178,
- 0.02661941573023796,
- 0.040058162063360214,
- 0.007386862765997648,
- 0.03035707212984562,
- 0.0061556501314044,
- -0.00669013150036335,
- -0.037058841437101364,
- 0.0594605877995491,
- 0.016037778928875923,
- 0.03773525357246399,
- 0.0014694764977321029,
- 0.03547118976712227,
- -0.010012686252593994,
- -0.07767753303050995,
- 0.006360163912177086,
- 0.16940538585186005,
- -0.04891730099916458,
- 0.03656812757253647,
- 0.021939875558018684
- ]
- },
- {
- "keyword": "scientist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04863400012254715,
- 0.08754939585924149,
- 0.03612900897860527,
- 0.10768898576498032,
- -0.02474445477128029,
- -0.05596416816115379,
- 0.09428037703037262,
- 0.0714542344212532,
- 0.0088784946128726,
- 0.07051696628332138,
- -0.01194540224969387,
- -0.09858312457799911,
- -0.06745536625385284,
- 0.049536388367414474,
- -0.15072864294052124,
- 0.025419218465685844,
- -0.06549001485109329,
- 0.005174185615032911,
- -0.0573359839618206,
- -0.07700815796852112,
- -0.12083697319030762,
- 0.042941175401210785,
- 0.035905271768569946,
- 0.0025870949029922485,
- 0.003549688495695591,
- 0.03699908405542374,
- -0.04585621878504753,
- -0.025553228333592415,
- -0.006338941399008036,
- -0.024238532409071922,
- -0.016653181985020638,
- 0.036459606140851974,
- 0.008101212792098522,
- -0.010457838885486126,
- -0.034929580986499786,
- 0.01782796159386635,
- -0.012214402668178082,
- 0.0007040284108370543,
- 0.06090264022350311,
- 0.039775677025318146,
- 0.018259041011333466,
- -0.07501126825809479,
- 0.04469290003180504,
- 0.02223130129277706,
- 0.0005085387965664268,
- -0.0252920500934124,
- 0.04465947300195694,
- -0.05423906072974205,
- 0.007727733347564936,
- 0.05641961097717285,
- -0.10697709769010544,
- -0.019601652398705482,
- -0.06530362367630005,
- -0.02587890625,
- 0.016716180369257927,
- -0.0380852073431015,
- 0.030034225434064865,
- 0.0056015909649431705,
- -0.01436672918498516,
- -0.047706957906484604,
- 0.07700804620981216,
- -0.014310761354863644,
- -0.12787048518657684,
- 0.00717878807336092,
- 0.15101267397403717,
- 0.005008777137845755,
- -0.01503483485430479,
- -0.007920158095657825,
- 0.029660817235708237,
- 0.034029487520456314,
- 0.06698182970285416,
- 0.022792167961597443,
- 0.012856606394052505,
- 0.03328978642821312,
- 0.08186845481395721,
- -0.048330482095479965,
- 0.041795238852500916,
- 0.05373205989599228,
- 0.14873330295085907,
- 0.027952533215284348,
- 0.08204224705696106,
- -0.1100941002368927,
- -0.1084669977426529,
- -0.02158099040389061,
- 0.006272909231483936,
- -0.012743482366204262,
- -0.0023680098820477724,
- 0.03628015145659447,
- -0.08794783800840378,
- -0.03448263183236122,
- 0.014986512251198292,
- -0.07547243684530258,
- 0.03633490204811096,
- 0.0022760103456676006,
- -0.0933731272816658,
- 0.1044871062040329,
- -0.021814396604895592,
- -0.034716732800006866,
- -0.0027600231114774942,
- 0.190049409866333,
- -0.0009016437106765807,
- 0.03021888993680477,
- -0.031654104590415955,
- 0.11057340353727341,
- 0.02347336895763874,
- -0.05916924029588699,
- -0.03326839208602905,
- -0.036138515919446945,
- 0.039268262684345245,
- 0.031140943989157677,
- 0.022490108385682106,
- 0.026378324255347252,
- -0.054022569209337234,
- 0.08677348494529724,
- 0.016936494037508965,
- 0.024428248405456543,
- 0.0013849081005901098,
- 0.05709033086895943,
- -0.020617114380002022,
- -0.014023974537849426,
- -0.0031853457912802696,
- 0.03875536099076271,
- -0.0683973878622055,
- 0.011165972799062729,
- 0.014761597849428654,
- -0.010009586811065674,
- 0.03125966340303421,
- -5.5896677580179396e-33,
- 0.02582034096121788,
- -0.03711812570691109,
- 0.0689842700958252,
- 0.050234440714120865,
- -0.005754335783421993,
- 0.062454599887132645,
- -0.037717465311288834,
- -0.04483146220445633,
- 0.00033306138357147574,
- -0.02301579713821411,
- 0.015012720599770546,
- 0.026306845247745514,
- -0.023072799667716026,
- 0.018706973642110825,
- -0.03553472459316254,
- 0.037776753306388855,
- -0.011356995441019535,
- -0.023354457691311836,
- -0.023845868185162544,
- 0.007493460550904274,
- -0.029902003705501556,
- 0.008040891028940678,
- -0.007547958288341761,
- 0.025495178997516632,
- 0.05505409464240074,
- -0.04798005521297455,
- -0.010366622358560562,
- -0.056443504989147186,
- 0.013833947479724884,
- 0.0032088595908135176,
- 0.021591605618596077,
- 0.03858672082424164,
- -0.06104813888669014,
- -0.0027356434147804976,
- 0.01401896309107542,
- -0.08778712153434753,
- -0.03646901622414589,
- -0.06723044067621231,
- 0.0023044408299028873,
- -0.002097452525049448,
- 0.025988774374127388,
- 0.03291880339384079,
- 0.020177917554974556,
- -0.007486430928111076,
- 0.023196358233690262,
- 0.009667625650763512,
- 0.033075544983148575,
- 0.054139360785484314,
- 0.003683015936985612,
- 0.044896259903907776,
- -0.033173199743032455,
- 0.002826339565217495,
- 0.010058365762233734,
- -0.06556887924671173,
- 0.12861593067646027,
- -0.011960836127400398,
- 0.02750052884221077,
- 0.00020887267601210624,
- -0.03483187407255173,
- 0.0128379687666893,
- 0.010173426009714603,
- 0.17338038980960846,
- 0.004715092480182648,
- 0.03591178357601166,
- 0.02804003469645977,
- -0.020519958809018135,
- -0.0071085309609770775,
- 0.010913600213825703,
- 0.027081560343503952,
- 0.01914658397436142,
- -0.05469410866498947,
- 0.0037755812518298626,
- -0.022980764508247375,
- -0.044424500316381454,
- -0.06175792217254639,
- 0.002208009362220764,
- -0.005829939153045416,
- -0.009985443204641342,
- -0.028939872980117798,
- -0.0003838174743577838,
- 0.006074913777410984,
- -0.010426001623272896,
- 0.016867833212018013,
- -0.04132847860455513,
- -0.06366179883480072,
- 0.03881072252988815,
- -0.08017309010028839,
- -0.016175301745533943,
- 0.0430888794362545,
- 0.019035544246435165,
- -0.029341641813516617,
- -0.05422231927514076,
- 0.05843124911189079,
- -0.02562914416193962,
- -0.1219111979007721,
- 3.573070832325827e-33,
- -0.08381148427724838,
- -0.07640858739614487,
- -0.006025706417858601,
- 0.08958552777767181,
- 0.06630315631628036,
- -0.02776060253381729,
- -0.012331952340900898,
- -0.026339804753661156,
- 0.0027742243837565184,
- 0.049603164196014404,
- 0.039278484880924225,
- 0.012600498273968697,
- 0.04125331714749336,
- -0.0503699854016304,
- 0.03802158311009407,
- 0.020644033327698708,
- -0.08685371279716492,
- -0.02406632900238037,
- -0.05115591362118721,
- 0.02102387137711048,
- -0.06422283500432968,
- 0.004891598131507635,
- -0.06468799710273743,
- -0.07211703062057495,
- -0.043234821408987045,
- 0.0308507289737463,
- 0.08644284307956696,
- -0.0344146303832531,
- -0.014673193916678429,
- -0.007236963137984276,
- -0.04867817834019661,
- -0.0068502225913107395,
- -0.05211527273058891,
- -0.07762327045202255,
- 0.002272009616717696,
- 0.15745945274829865,
- 0.08028100430965424,
- -0.025367308408021927,
- 0.0007092859596014023,
- -0.053501155227422714,
- 0.06193046644330025,
- 0.07696657627820969,
- 0.007978945970535278,
- 0.07702738791704178,
- 0.06947341561317444,
- -0.011691353283822536,
- -0.008851492777466774,
- 0.046662069857120514,
- -0.030699707567691803,
- 0.014006579294800758,
- -0.023852579295635223,
- 0.008957887068390846,
- -0.032203156501054764,
- -0.08263524621725082,
- 0.06561577320098877,
- 0.01000058650970459,
- -0.025579219684004784,
- -0.029571140184998512,
- 0.021076014265418053,
- 0.027897028252482414,
- 0.04712972044944763,
- -0.04391297325491905,
- 0.03395801782608032,
- 0.12565185129642487,
- -0.12375862151384354,
- 0.02376888506114483,
- -0.01986062526702881,
- 0.11953620612621307,
- -0.03861327841877937,
- -0.04695705324411392,
- 0.15649504959583282,
- 0.01756676845252514,
- -0.011484649032354355,
- -0.016046108677983284,
- -0.03183740749955177,
- 0.039510104805231094,
- -0.05070691928267479,
- -0.02043079026043415,
- 0.009909781627357006,
- -0.0026078028604388237,
- -0.04023546725511551,
- -0.051752615720033646,
- 0.020144978538155556,
- 0.03869285434484482,
- 0.0022816197015345097,
- -0.04891932010650635,
- 0.0017858499195426702,
- -0.030814342200756073,
- -0.02443854697048664,
- -0.060562025755643845,
- 0.012927592732012272,
- -0.049290627241134644,
- -0.08970199525356293,
- -0.017622416839003563,
- 0.049111902713775635,
- -1.1844486280665478e-8,
- 0.029909633100032806,
- -0.02125686965882778,
- 0.0053472318686544895,
- -0.10514219105243683,
- 0.07186336815357208,
- 0.009071551263332367,
- 0.011515471152961254,
- 0.00045548437628895044,
- -0.0035690220538526773,
- 0.05807342380285263,
- -0.017384281381964684,
- 0.03020944818854332,
- 0.05905459076166153,
- 0.07740535587072372,
- 0.09040801972150803,
- -0.0563211664557457,
- -0.008703703060746193,
- 0.059677623212337494,
- -0.07476247102022171,
- 0.013987043872475624,
- 0.024824878200888634,
- 0.035936493426561356,
- 0.057352129369974136,
- 0.04197864606976509,
- 0.021596401929855347,
- -0.027309967204928398,
- -0.006075749639421701,
- 0.04441189393401146,
- -0.029208971187472343,
- 0.040931250900030136,
- -0.0428675040602684,
- 0.04014674574136734,
- -0.04890420287847519,
- -0.006021644454449415,
- 0.032002516090869904,
- -0.06229463964700699,
- 0.02309497818350792,
- -0.050000060349702835,
- -0.008028687909245491,
- 0.006029083393514156,
- -0.05688518285751343,
- 0.052882418036460876,
- -0.028131799772381783,
- 0.07733353972434998,
- -0.0015721969539299607,
- -0.04236447438597679,
- 0.05675993487238884,
- -0.00026930595049634576,
- 0.01596042513847351,
- 0.034807346761226654,
- 0.01570487581193447,
- -0.013379119336605072,
- 0.06387422978878021,
- -0.045076701790094376,
- -0.033373862504959106,
- 0.014314851723611355,
- -0.01702311262488365,
- 0.013791996985673904,
- -0.11799758672714233,
- -0.01618090644478798,
- 0.12711964547634125,
- -0.014099452644586563,
- 0.07628724724054337,
- -0.01831890642642975
- ]
- },
- {
- "keyword": "scholar",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.017311187461018562,
- 0.0961201936006546,
- -0.015406923368573189,
- 0.05060935020446777,
- -0.0011516008526086807,
- -0.07281169295310974,
- 0.027034364640712738,
- -0.0009218559716828167,
- -0.03426114097237587,
- 0.05407395958900452,
- -0.029424874112010002,
- 0.018029073253273964,
- -0.05804592743515968,
- 0.0447361096739769,
- -0.06458313018083572,
- 0.0754486545920372,
- -0.0800023078918457,
- -0.0434349849820137,
- 0.0036679962649941444,
- -0.027318865060806274,
- -0.11727860569953918,
- 0.018702929839491844,
- 0.06455477327108383,
- 0.00883700605481863,
- 0.04011126980185509,
- -0.003947701305150986,
- -0.0480910986661911,
- -0.05833084508776665,
- 0.014417415484786034,
- -0.020232243463397026,
- -0.06324782222509384,
- 0.06798186898231506,
- 0.011492516845464706,
- 0.034737393260002136,
- -0.013599548488855362,
- 0.07301463186740875,
- 0.02206026390194893,
- 0.07683654874563217,
- 0.028546420857310295,
- 0.08311917632818222,
- 0.009045656770467758,
- -0.07806744426488876,
- -0.008699106052517891,
- 0.005863125901669264,
- -0.01226937584578991,
- -0.03654567524790764,
- -0.0236855186522007,
- 0.014189671725034714,
- -0.016588592901825905,
- 0.025663483887910843,
- -0.13878142833709717,
- -0.012955324724316597,
- -0.032203275710344315,
- -0.011688247323036194,
- -0.004330452531576157,
- 0.002989076543599367,
- 0.051266107708215714,
- -0.014037411659955978,
- -0.04216640442609787,
- -0.043114952743053436,
- 0.07269302755594254,
- -0.015984080731868744,
- -0.08528630435466766,
- 0.0469183623790741,
- 0.030928723514080048,
- 0.01276940107345581,
- 0.02969169244170189,
- -0.0006435096147470176,
- -0.023713570088148117,
- -0.04700478911399841,
- 0.01813974604010582,
- -0.009497324004769325,
- -0.01926966942846775,
- -0.0003513835836201906,
- 0.10207641124725342,
- -0.03870696946978569,
- -0.016048068180680275,
- -0.03455488383769989,
- 0.07625437527894974,
- -0.006792329717427492,
- 0.09822981804609299,
- 0.057548828423023224,
- -0.005190080963075161,
- -0.014570293016731739,
- -0.04860515519976616,
- -0.051455412060022354,
- 0.0023091824259608984,
- -0.07664338499307632,
- 0.024935534223914146,
- -0.02605322375893593,
- 0.024007776752114296,
- -0.0896393358707428,
- 0.0247731264680624,
- -0.042715705931186676,
- 0.003832052694633603,
- 0.06106220558285713,
- 0.03831694275140762,
- -0.14354056119918823,
- -0.01144200749695301,
- 0.25003376603126526,
- -0.02094137854874134,
- 0.019629012793302536,
- 0.04902368411421776,
- 0.03156614676117897,
- 0.0031357435509562492,
- -0.04834771156311035,
- -0.04826856777071953,
- -0.023412317037582397,
- 0.03222168609499931,
- 0.04616456851363182,
- 0.036786239594221115,
- 0.029991433024406433,
- -0.041314415633678436,
- 0.009980515576899052,
- 0.03688479959964752,
- 0.05102071166038513,
- 0.0011324589140713215,
- 0.08842911571264267,
- 0.017308775335550308,
- 0.022054672241210938,
- -0.019531935453414917,
- 0.013845202513039112,
- -0.030372444540262222,
- 0.0005218011792749166,
- -0.03045555390417576,
- -0.020373985171318054,
- -0.04782198369503021,
- -4.729619520290721e-33,
- 0.01562710851430893,
- 0.057380788028240204,
- 0.002558611799031496,
- 0.01615312322974205,
- -0.05913669988512993,
- -0.0005617372808046639,
- -0.02251214161515236,
- -0.04213529825210571,
- -0.061167191714048386,
- -0.10635629296302795,
- -0.03860809653997421,
- 0.0342647060751915,
- 0.01925092749297619,
- 0.035630352795124054,
- 0.004930172115564346,
- -0.010593106970191002,
- 0.014735441654920578,
- 0.10176762193441391,
- 0.017597949132323265,
- -0.007459498941898346,
- 0.0334022082388401,
- 0.01835622638463974,
- -0.00021004697191528976,
- -0.024221058934926987,
- 0.00033682098728604615,
- -0.01276230439543724,
- -0.021858131512999535,
- -0.08892428874969482,
- 0.009296411648392677,
- 0.031584545969963074,
- 0.0559256374835968,
- 0.007356458343565464,
- -0.0076370276510715485,
- 0.0033091281075030565,
- 0.02198006585240364,
- 0.04262677952647209,
- -0.0035761005710810423,
- -0.11050178855657578,
- 0.05453629046678543,
- -0.05230448767542839,
- 0.0069069149903953075,
- 0.037171944975852966,
- 0.09394868463277817,
- 0.002814088948071003,
- -0.048127733170986176,
- 0.049050312489271164,
- 0.04142458736896515,
- -0.05474084988236427,
- 0.01812749356031418,
- 0.033686187118291855,
- -0.047399964183568954,
- 0.005604798439890146,
- -0.06394066661596298,
- -0.02435220405459404,
- 0.03331400454044342,
- 0.004175136797130108,
- -0.0005640998133458197,
- 0.0747327208518982,
- -0.01218713540583849,
- -0.09733820706605911,
- 0.05415019020438194,
- 0.09786650538444519,
- -0.08538567274808884,
- -0.0034305481240153313,
- 0.025641310960054398,
- -0.03964754194021225,
- -0.06223747879266739,
- 0.02070527710020542,
- 0.06779422610998154,
- -0.003599714720621705,
- -0.04090278223156929,
- 0.056870996952056885,
- -0.0025387252680957317,
- -0.04428592324256897,
- -0.04345984011888504,
- 0.019038697704672813,
- 0.004345834255218506,
- -0.0591321662068367,
- -0.07043261080980301,
- 0.0020272277761250734,
- -0.1029411256313324,
- 0.029375161975622177,
- -0.014782930724322796,
- -0.0366867259144783,
- -0.027836529538035393,
- -0.0066607180051505566,
- -0.0007749467622488737,
- 0.012088341638445854,
- 0.12038135528564453,
- 0.0034354247618466616,
- -0.024675317108631134,
- -0.006244835443794727,
- 0.010094811208546162,
- 0.037982989102602005,
- -0.08649898320436478,
- 3.1286079694142734e-33,
- -0.03457469493150711,
- -0.10752906650304794,
- 0.04445446655154228,
- 0.12951642274856567,
- 0.09019871056079865,
- 0.0005637158756144345,
- -0.06753206998109818,
- 0.09580758959054947,
- -0.042171917855739594,
- 0.00034684999263845384,
- 0.023769447579979897,
- -0.10998629033565521,
- -0.00787904392927885,
- 0.017510540783405304,
- 0.07422803342342377,
- 0.019213223829865456,
- 0.015767434611916542,
- -0.05480244755744934,
- -0.03474368527531624,
- 0.12690094113349915,
- -0.04486382007598877,
- -0.05747755989432335,
- -0.022356178611516953,
- -0.02632077969610691,
- -0.0004989705630578101,
- 0.016863947734236717,
- 0.09471800178289413,
- -0.06283753365278244,
- -0.10735507309436798,
- -0.03899937868118286,
- 0.010113215073943138,
- -0.0037774827796965837,
- -0.11156110465526581,
- -0.0008535028318874538,
- 0.00030810959287919104,
- 0.11988934129476547,
- 0.018051909282803535,
- 0.03595313802361488,
- -0.03380535542964935,
- -0.0025834443513303995,
- 0.046296823769807816,
- 0.06486249715089798,
- -0.022079581394791603,
- 0.043008219450712204,
- 0.04124214127659798,
- -0.01896149292588234,
- -0.022942619398236275,
- 0.06006566435098648,
- 0.0610755980014801,
- -0.06152677163481712,
- -0.0655914768576622,
- 0.016650479286909103,
- 0.03119220957159996,
- -0.08054245263338089,
- 0.042209651321172714,
- -0.0036849919706583023,
- 0.030261555686593056,
- -0.01733732596039772,
- -0.028326986357569695,
- 0.02595871314406395,
- -0.006669914815574884,
- 0.0014552000211551785,
- -0.0827648863196373,
- 0.17187026143074036,
- -0.05411260575056076,
- 0.01587836444377899,
- -0.057245057076215744,
- 0.0686555802822113,
- -0.05955009162425995,
- 0.0013141146628186107,
- 0.05627251788973808,
- -0.01255625206977129,
- 0.0054925777949392796,
- 0.014270455576479435,
- 0.006950438022613525,
- 0.010932708159089088,
- -0.021656956523656845,
- -0.05375191569328308,
- 0.0170879103243351,
- -0.0161131601780653,
- 0.0013643078273162246,
- -0.06197084113955498,
- 0.0017922817496582866,
- 0.042603667825460434,
- 0.053054604679346085,
- -0.02259957604110241,
- 0.02804889716207981,
- -0.022095398977398872,
- -0.03672723472118378,
- -0.0410798080265522,
- 0.061782389879226685,
- -0.05656839534640312,
- -0.05093551054596901,
- -0.05183570832014084,
- 0.060478102415800095,
- -1.1444208247723964e-8,
- 0.0029756685253232718,
- 0.0011621912708505988,
- 0.002666487591341138,
- -0.0014156317338347435,
- 0.01547809224575758,
- -0.026930930092930794,
- -0.00481983320787549,
- -0.08919951319694519,
- -0.026116298511624336,
- 0.08062213659286499,
- -0.038861893117427826,
- -0.006936249323189259,
- 0.03440333157777786,
- 0.035110753029584885,
- 0.07752261310815811,
- -0.049919839948415756,
- 0.014775482006371021,
- 0.061249930411577225,
- -0.020836321637034416,
- 0.034925658255815506,
- 0.07045765966176987,
- -0.03644757717847824,
- 0.05476990342140198,
- -0.050936684012413025,
- 0.043742503970861435,
- 0.027153106406331062,
- -0.04251644015312195,
- 0.006882261484861374,
- 0.006103403866291046,
- 0.012626418843865395,
- -0.06737364828586578,
- 0.11518582701683044,
- -0.09839976578950882,
- -0.01002621278166771,
- 0.10865689069032669,
- 0.020818470045924187,
- 0.002383748535066843,
- -0.04642530903220177,
- -0.02793579362332821,
- 0.08375442028045654,
- 0.009463053196668625,
- 0.017010649666190147,
- -0.011789064854383469,
- -0.0211798045784235,
- 0.05046912655234337,
- 0.02040622942149639,
- -0.0032756661530584097,
- -0.036236803978681564,
- 0.03843478858470917,
- 0.03312898799777031,
- 0.0011074233334511518,
- -0.04864342883229256,
- 0.12189245223999023,
- -0.007316657807677984,
- 0.026297906413674355,
- -0.048688530921936035,
- 0.021109573543071747,
- 0.007209325674921274,
- -0.10895988345146179,
- -0.026463232934474945,
- 0.13708211481571198,
- -0.030391041189432144,
- 0.08925320208072662,
- -0.023309437558054924
- ]
- },
- {
- "keyword": "academic",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.009265629574656487,
- 0.05642525479197502,
- 0.05577516928315163,
- 0.042975444346666336,
- -0.034959182143211365,
- -0.06615543365478516,
- 0.021152572706341743,
- 0.025718528777360916,
- 0.02807551808655262,
- 0.08671629428863525,
- -0.01842881180346012,
- -0.03655344620347023,
- -0.10661832243204117,
- 0.027806660160422325,
- -0.043085381388664246,
- 0.03311610221862793,
- -0.07723363488912582,
- -0.05372064188122749,
- -0.021394725888967514,
- -0.09350334107875824,
- -0.05154416710138321,
- 0.03272766247391701,
- 0.042696379125118256,
- 0.007100355811417103,
- 0.03294316306710243,
- 0.018014397472143173,
- 0.005762285087257624,
- -0.03215490281581879,
- -0.05829581245779991,
- -0.111544668674469,
- -0.014707372523844242,
- 0.011320940218865871,
- 0.04843946918845177,
- 0.04044380784034729,
- 0.016911111772060394,
- 0.07073014229536057,
- 0.010336201637983322,
- 0.048835620284080505,
- 0.09088992327451706,
- 0.022211629897356033,
- -0.04820391908288002,
- -0.038119036704301834,
- 0.07587001472711563,
- -0.01464864145964384,
- 0.003980796318501234,
- -0.0718274787068367,
- 0.022993000224232674,
- -0.03794999420642853,
- 0.03402392566204071,
- -0.007727597374469042,
- -0.08868075162172318,
- -0.06146800518035889,
- -0.05062250792980194,
- -0.04924687743186951,
- -0.03765326738357544,
- -0.0068777501583099365,
- 0.052543558180332184,
- -0.013678448274731636,
- -0.03124265931546688,
- -0.016700981184840202,
- 0.00887609738856554,
- -0.015747886151075363,
- -0.061289455741643906,
- 0.03338368609547615,
- 0.07291148602962494,
- -0.027719534933567047,
- -0.02422945946455002,
- -0.0031024639029055834,
- 0.04291002079844475,
- 0.03374842554330826,
- 0.032250914722681046,
- -0.024074612185359,
- -0.002330319955945015,
- 0.09074194729328156,
- 0.18355315923690796,
- -0.04375193640589714,
- 0.05306548625230789,
- 0.011988968588411808,
- 0.10409030318260193,
- -0.015989825129508972,
- 0.07143934816122055,
- -0.0348237007856369,
- -0.08623730391263962,
- 0.0010608932934701443,
- -0.0008386826957575977,
- -0.08260758221149445,
- -0.027729032561182976,
- -0.002438938245177269,
- -0.007146461866796017,
- -0.014633066952228546,
- 0.010225275531411171,
- -0.058660078793764114,
- 0.05240533873438835,
- 0.018726129084825516,
- -0.013292747549712658,
- 0.0015048920176923275,
- 0.005414437502622604,
- -0.10395827889442444,
- 0.00986663717776537,
- 0.23378752171993256,
- -0.08254378288984299,
- 0.036072567105293274,
- 0.043745916336774826,
- 0.056140001863241196,
- -0.04875405505299568,
- -0.04358171671628952,
- 0.02542896568775177,
- -0.03802037239074707,
- 0.0215972438454628,
- 0.01223002653568983,
- 0.006757289171218872,
- 0.03763335198163986,
- -0.04099142923951149,
- 0.029219618067145348,
- 0.029076874256134033,
- 0.040381044149398804,
- 0.031118791550397873,
- 0.041770197451114655,
- 0.07142436504364014,
- 0.0487147681415081,
- 0.0005839884397573769,
- 0.026100080460309982,
- -0.035589225590229034,
- -0.06534705311059952,
- -0.05929524078965187,
- -0.056956201791763306,
- -0.006646378431469202,
- -5.179228109722999e-33,
- 0.03420532867312431,
- 0.004927240777760744,
- -0.02228539064526558,
- 0.025588508695364,
- -0.019399305805563927,
- -0.048475682735443115,
- -0.008219634182751179,
- 0.006499520968645811,
- -0.06067579612135887,
- 0.0046236757189035416,
- 0.01781374402344227,
- 0.11109600216150284,
- 0.011920385994017124,
- 0.0768338292837143,
- 0.05283711478114128,
- 0.02101186104118824,
- 0.028727518394589424,
- 0.08878538757562637,
- 0.020400138571858406,
- 0.051208894699811935,
- -0.004432191606611013,
- -0.0019485134398564696,
- 0.0003530499234329909,
- -0.015935705974698067,
- -0.006617872975766659,
- -0.04107974097132683,
- -0.011746501550078392,
- -0.045084234327077866,
- 0.026153992861509323,
- 0.02008306048810482,
- 0.0409255288541317,
- -0.04556218534708023,
- -0.10748094320297241,
- -0.05940718576312065,
- 0.03138941153883934,
- 0.018232082948088646,
- 0.005569573491811752,
- -0.06655068695545197,
- 0.07390619069337845,
- 0.019465666264295578,
- 0.014041800983250141,
- 0.020672699436545372,
- 0.08310844749212265,
- 0.044101886451244354,
- -0.02085968293249607,
- 0.06418104469776154,
- 0.0076842461712658405,
- 0.01473147701472044,
- 0.021748175844550133,
- 0.03685498610138893,
- -0.01361481286585331,
- -0.06789553165435791,
- 0.006623408757150173,
- -0.056763023138046265,
- 0.042442698031663895,
- 0.0038938887882977724,
- 0.01530958991497755,
- 0.037977609783411026,
- -0.0021206261590123177,
- -0.057240162044763565,
- 0.06712165474891663,
- 0.20208171010017395,
- -0.08552858233451843,
- 0.011288844048976898,
- -0.03211050108075142,
- -0.02364479936659336,
- -0.02939191274344921,
- 0.010149484500288963,
- 0.17249616980552673,
- -0.05508458614349365,
- -0.06241345778107643,
- -0.012755935080349445,
- 0.04355717450380325,
- 0.0087661724537611,
- -0.03380556032061577,
- -0.014667144976556301,
- -0.05646812543272972,
- -0.06646466255187988,
- 0.005344848148524761,
- 0.053782153874635696,
- -0.028570586815476418,
- -0.012852293439209461,
- -0.017537305131554604,
- 0.003425430739298463,
- 0.005958046298474073,
- -0.00987424235790968,
- 0.013760464265942574,
- -0.0077200583182275295,
- 0.10613102465867996,
- -0.0018267007544636726,
- -0.011144429445266724,
- -0.03189593926072121,
- -0.027915645390748978,
- 0.08398011326789856,
- -0.08350733667612076,
- 3.798115919712892e-33,
- 0.0722789391875267,
- -0.044136255979537964,
- -0.04211675375699997,
- 0.12415032833814621,
- 0.11059099435806274,
- 0.041307564824819565,
- 0.06775198131799698,
- -0.015766996890306473,
- 0.005111780948936939,
- 0.006161803379654884,
- 0.002157156355679035,
- -0.0793389305472374,
- 0.043983642011880875,
- 0.00901162438094616,
- 0.09464893490076065,
- -0.01821376010775566,
- -0.04233184829354286,
- -0.026056326925754547,
- -0.0748547837138176,
- 0.057140178978443146,
- -0.03326932713389397,
- -0.02399025671184063,
- 0.017415914684534073,
- -0.02383306249976158,
- 0.03126668557524681,
- -0.06987780332565308,
- 0.03526932746171951,
- 0.005617932882159948,
- -0.10002235323190689,
- -0.023920098319649696,
- 0.026512792333960533,
- 0.04422635957598686,
- -0.022180425003170967,
- 0.022032422944903374,
- -0.04558657854795456,
- 0.10908680409193039,
- 0.04465402662754059,
- 0.03578077629208565,
- -0.037752702832221985,
- 0.011879478581249714,
- 0.0916813313961029,
- -0.0018310685409232974,
- -0.02025858499109745,
- 0.06329328566789627,
- 0.05498509481549263,
- 0.006393881049007177,
- -0.027082493528723717,
- 0.07739660143852234,
- -0.012004510499536991,
- -0.009557672776281834,
- -0.10798685997724533,
- -0.020337779074907303,
- 0.035311635583639145,
- -0.10871782898902893,
- 0.05038990080356598,
- 0.002385602565482259,
- -0.0184666458517313,
- -0.03382689878344536,
- -0.04057227447628975,
- 0.04274759069085121,
- 0.02634558267891407,
- -0.015875274315476418,
- 0.002109111286699772,
- 0.10155580192804337,
- -0.06014593318104744,
- -0.0056760599836707115,
- -0.04791323095560074,
- 0.01113914791494608,
- -0.09998432546854019,
- 0.00981051940470934,
- 0.09129735827445984,
- -0.016286248341202736,
- -0.006333693861961365,
- -0.008643753826618195,
- -0.03640338405966759,
- 0.027407832443714142,
- -0.07669714838266373,
- -0.03956245258450508,
- 0.0015947044594213367,
- 0.013143409043550491,
- -0.002004287438467145,
- -0.05536028370261192,
- -0.0302553940564394,
- 0.022088292986154556,
- -0.009624969214200974,
- 0.008668297901749611,
- 0.0185143630951643,
- -0.001743898494169116,
- 0.0060971323400735855,
- -0.07288551330566406,
- -0.0011212199460715055,
- -0.045135173946619034,
- -0.023610135540366173,
- -0.07784777879714966,
- -0.008220515213906765,
- -1.1592378612590437e-8,
- -0.006159625481814146,
- 0.0032841453794389963,
- 0.01439344696700573,
- 0.002448664279654622,
- -0.014354642480611801,
- -0.001529970788396895,
- -0.009555775672197342,
- -0.06641647964715958,
- 0.037865303456783295,
- 0.021820949390530586,
- -0.02417166531085968,
- -0.05262294411659241,
- -0.0004723909078165889,
- 0.0238786730915308,
- 0.06584323197603226,
- 0.03778300806879997,
- 0.02779027260839939,
- 0.04820756986737251,
- -0.0322139672935009,
- 0.029777266085147858,
- 0.05959778279066086,
- -0.014772170223295689,
- 0.00553486542776227,
- 0.02925611473619938,
- -0.0028183802496641874,
- 0.01541666779667139,
- 0.046008408069610596,
- 0.04421478882431984,
- -0.04610605910420418,
- 0.03787543997168541,
- -0.06739794462919235,
- 0.051255445927381516,
- -0.016812602058053017,
- -0.0807534009218216,
- 0.02072080597281456,
- -0.04624099284410477,
- 0.05904205143451691,
- -0.0901574194431305,
- 0.008223002776503563,
- 0.017274364829063416,
- -0.027422195300459862,
- -0.07155992090702057,
- 0.006056744605302811,
- -0.05475873872637749,
- 0.06919503211975098,
- 0.05303311347961426,
- 0.0018771191826090217,
- 0.04212602227926254,
- 0.03890305757522583,
- 0.011071649380028248,
- 0.02777576632797718,
- -0.060703203082084656,
- -0.00902428850531578,
- -0.04613693803548813,
- 0.03064779005944729,
- 0.009813758544623852,
- 0.0007965231197886169,
- -0.0026584474835544825,
- -0.14164581894874573,
- -0.03579612448811531,
- 0.20426973700523376,
- -0.04350915551185608,
- 0.046337854117155075,
- -0.04052020609378815
- ]
- },
- {
- "keyword": "artist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.08443897217512131,
- 0.04611140489578247,
- 0.016163812950253487,
- -0.017392335459589958,
- 0.014886454679071903,
- 0.010688434354960918,
- 0.1655975729227066,
- -0.05652578920125961,
- 0.045006949454545975,
- -0.015929151326417923,
- -0.06580810993909836,
- -0.05359189957380295,
- 0.05107876658439636,
- -0.05529928579926491,
- -0.06580538302659988,
- 0.06871414929628372,
- -0.007789636496454477,
- 0.04937487468123436,
- -0.00712436530739069,
- -0.006740986835211515,
- -0.10257488489151001,
- 0.05772458016872406,
- -0.045917753130197525,
- 0.0095740407705307,
- 0.03080829046666622,
- 0.07002180069684982,
- 0.0004121822421438992,
- 0.021984292194247246,
- 0.0930020734667778,
- -0.08705540746450424,
- -0.008054414764046669,
- 0.038490548729896545,
- -0.0008172249072231352,
- 0.0435771718621254,
- 0.024642296135425568,
- 0.025991547852754593,
- -0.02727668546140194,
- 0.03653297573328018,
- 0.03448566794395447,
- 0.059369564056396484,
- -0.05312180519104004,
- 0.0033753199968487024,
- -0.10667888820171356,
- -0.05052785947918892,
- 0.02867472544312477,
- -0.03030186891555786,
- -0.017942149192094803,
- -0.0008285825606435537,
- -0.02267480082809925,
- 0.07114078849554062,
- -0.045505985617637634,
- 0.0021902229636907578,
- -0.06901505589485168,
- -0.04685797542333603,
- -0.006184812635183334,
- -0.03631366789340973,
- 0.04203556850552559,
- 0.04103097319602966,
- 0.01848500408232212,
- 0.009920557029545307,
- 0.012417404912412167,
- 0.019924096763134003,
- -0.013522741384804249,
- 0.020710863173007965,
- 0.06731591373682022,
- 0.10046524554491043,
- 0.014301452785730362,
- -0.023681970313191414,
- -0.06646344065666199,
- -0.06391440331935883,
- 0.05999066308140755,
- -0.010837804526090622,
- -0.07636361569166183,
- -0.003004532540217042,
- 0.038818564265966415,
- 0.006405209191143513,
- 0.019898224622011185,
- -0.01863873191177845,
- -0.010503093712031841,
- -0.08843856304883957,
- 0.07629328221082687,
- -0.015499222092330456,
- -0.057090405374765396,
- -0.03387158736586571,
- 0.035421330481767654,
- 0.05123899132013321,
- -0.024134043604135513,
- 0.006063397042453289,
- -0.012469650246202946,
- -0.0016084043309092522,
- 0.0062545896507799625,
- 0.06047450378537178,
- -0.04948921129107475,
- 0.028260232880711555,
- -0.009056643582880497,
- 0.01735987886786461,
- -0.01581694930791855,
- -0.09407926350831985,
- -0.0708186998963356,
- 0.22893042862415314,
- 0.04171714186668396,
- 0.0018581277690827847,
- 0.0018968008225783706,
- -0.02378353476524353,
- 0.04182753711938858,
- -0.011129830032587051,
- -0.04538604989647865,
- 0.05693751201033592,
- -0.06827586889266968,
- -0.030907882377505302,
- 0.02426464483141899,
- 0.02644134685397148,
- -0.01505384873598814,
- 0.03694888576865196,
- 0.0176136065274477,
- -0.011165361851453781,
- -0.02045230008661747,
- 0.0001625690929358825,
- 0.05423564463853836,
- -0.012457055039703846,
- 0.05962558090686798,
- 0.0290629044175148,
- -0.023326976224780083,
- 0.00714816665276885,
- -0.12514793872833252,
- -0.07071613520383835,
- -0.06707172095775604,
- -4.1457735167563685e-33,
- 0.06006737798452377,
- -0.07319678366184235,
- 0.059842124581336975,
- 0.04196630418300629,
- 0.0857941284775734,
- -0.04064192622900009,
- 0.007282282691448927,
- 0.011488904245197773,
- 0.03536570072174072,
- 0.05317066237330437,
- 0.03943997249007225,
- -0.03175792843103409,
- -0.055909451097249985,
- 0.07100200653076172,
- 0.07817473262548447,
- 0.025482548400759697,
- 0.051217492669820786,
- -0.024019422009587288,
- -0.01807355135679245,
- -0.040242329239845276,
- -0.03541701287031174,
- 0.0888286828994751,
- -0.00024188804673030972,
- 0.03789996728301048,
- -0.023142613470554352,
- 0.006469304673373699,
- -0.04848070442676544,
- -0.03873554989695549,
- 0.04243756830692291,
- 0.013627033680677414,
- -0.03953561931848526,
- 0.07750042527914047,
- 0.11410458385944366,
- -0.015689043328166008,
- -0.10912221670150757,
- -0.07765166461467743,
- -0.020008087158203125,
- -0.07096784561872482,
- 0.026521867141127586,
- 0.022663412615656853,
- 0.007593091111630201,
- 0.03029552474617958,
- 0.03454805538058281,
- -0.0029610120691359043,
- -0.0528210811316967,
- 0.05779372528195381,
- 0.027122043073177338,
- 0.02775486372411251,
- -0.005777561571449041,
- 0.07614029943943024,
- 0.01324325893074274,
- 0.015318249352276325,
- -0.06712013483047485,
- 0.05234396457672119,
- -0.008977049961686134,
- -0.026598447933793068,
- -0.028179112821817398,
- -0.016043176874518394,
- -0.0009771513286978006,
- -0.003988645039498806,
- 0.03957470878958702,
- 0.08078403025865555,
- -0.02347717061638832,
- 0.011084780097007751,
- 0.06555256992578506,
- 0.042842209339141846,
- 0.03677625581622124,
- -0.051815953105688095,
- 0.038798436522483826,
- -0.007754956372082233,
- -0.10706315189599991,
- -0.031192954629659653,
- 0.06681405007839203,
- -0.014549288898706436,
- -0.08252426981925964,
- -0.04979933425784111,
- 0.011297564953565598,
- 0.0002288880932610482,
- -0.03291826322674751,
- -0.05331283062696457,
- -0.07150746881961823,
- 0.02432183548808098,
- 0.019450923427939415,
- 0.03485177457332611,
- -0.019597938284277916,
- -0.02750577963888645,
- -0.0521068200469017,
- -0.04785022884607315,
- -0.012532521039247513,
- 0.07495274394750595,
- -0.0873204916715622,
- 0.014965718612074852,
- 0.01356640923768282,
- 0.04654514417052269,
- -0.07257085293531418,
- 3.5709152695600065e-33,
- -0.021618250757455826,
- 0.03117288276553154,
- 0.08043795078992844,
- 0.0943622812628746,
- 0.05596385523676872,
- -0.05411119386553764,
- 0.013903597369790077,
- 0.03476399555802345,
- 0.007793937344104052,
- 0.0651874989271164,
- -0.0236290842294693,
- -0.056424330919981,
- 0.03904451057314873,
- -0.003492881078273058,
- -0.006000219378620386,
- 0.016218701377511024,
- 0.05797308310866356,
- -0.02176196128129959,
- -0.025725824758410454,
- 0.03972484916448593,
- -0.08127543330192566,
- 0.03302963078022003,
- 0.03958049789071083,
- -0.09463537484407425,
- -0.044621068984270096,
- 0.05474795773625374,
- 0.07182139158248901,
- -0.006354222074151039,
- -0.039389804005622864,
- 0.0014081692788749933,
- 0.05371825397014618,
- -0.03906601667404175,
- -0.047936614602804184,
- -0.02016688510775566,
- -0.03229675441980362,
- 0.09780747443437576,
- -0.0405464842915535,
- 0.031616754829883575,
- -0.017029771581292152,
- 0.034515637904405594,
- 0.003141392720863223,
- 0.029446033760905266,
- 0.007166177500039339,
- 0.09144322574138641,
- -0.02102535590529442,
- -0.007569451350718737,
- -0.024043027311563492,
- 0.07669985294342041,
- 0.025538086891174316,
- 0.033914804458618164,
- 0.024551115930080414,
- -0.012875799089670181,
- 0.04633055627346039,
- -0.02979658544063568,
- -0.02112552709877491,
- -0.014490239322185516,
- 0.04125649854540825,
- -0.04108097776770592,
- -0.01833721250295639,
- 0.05787473917007446,
- -0.006450997665524483,
- 0.036040496081113815,
- -0.04113388806581497,
- -0.005254760384559631,
- -0.029822498559951782,
- 0.062032658606767654,
- -0.0169479139149189,
- -0.054483626037836075,
- -0.05902906134724617,
- 0.023626659065485,
- 0.0540938526391983,
- 0.053815118968486786,
- -0.0678122490644455,
- 0.07975932210683823,
- -0.07034515589475632,
- 0.0071590133011341095,
- -0.03178729861974716,
- 0.05333820730447769,
- 0.0019337079720571637,
- -0.11802732944488525,
- -0.07414664328098297,
- -0.07724873721599579,
- -0.10116742551326752,
- 0.09241853654384613,
- 0.006678408477455378,
- -0.016525346785783768,
- -0.023226618766784668,
- -0.052670832723379135,
- 0.0015671902801841497,
- 0.00871374923735857,
- 0.050529852509498596,
- 0.03701290115714073,
- -0.0403188019990921,
- -0.038110267370939255,
- -0.012462733313441277,
- -1.3938932674761872e-8,
- -0.02356964536011219,
- 0.01912384107708931,
- 0.02630385383963585,
- -0.09953781217336655,
- 0.11855203658342361,
- 0.04733360931277275,
- 0.08595483750104904,
- -0.09210418164730072,
- -0.02233183942735195,
- 0.0013457161840051413,
- 0.052393559366464615,
- 0.011947249062359333,
- 0.08200014382600784,
- 0.010035190731287003,
- 0.005376349203288555,
- -0.13479308784008026,
- -0.012319411151111126,
- 0.017312685027718544,
- -0.020120132714509964,
- -0.010096422396600246,
- -0.013389249332249165,
- -0.001780949649401009,
- 0.036277156323194504,
- -0.06649951636791229,
- -0.05979898199439049,
- 0.04766669124364853,
- -0.01538810133934021,
- 0.05177170783281326,
- -0.07037954032421112,
- 0.03428136557340622,
- -0.006214234512299299,
- 0.12760457396507263,
- -0.00015029218047857285,
- -0.007069691549986601,
- 0.09370190650224686,
- -0.028255796059966087,
- -0.02551691234111786,
- -0.06527116894721985,
- -0.1037154495716095,
- -0.020324990153312683,
- -0.017949528992176056,
- 0.09359902143478394,
- 0.06804104149341583,
- -0.031710486859083176,
- -0.044362545013427734,
- -0.04443448409438133,
- 0.10695220530033112,
- 0.04244077578186989,
- 0.037818312644958496,
- 0.011575911194086075,
- -0.05345962196588516,
- -0.06963278353214264,
- 0.06272914260625839,
- -0.012865474447607994,
- -0.02813435159623623,
- -0.1108320876955986,
- -0.03616654500365257,
- 0.09419955313205719,
- -0.03023061901330948,
- 0.01207960769534111,
- 0.0987117663025856,
- 0.012523926794528961,
- 0.03712332621216774,
- 0.008854552172124386
- ]
- },
- {
- "keyword": "musician",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.03509780764579773,
- 0.020584050565958023,
- 0.02459086664021015,
- -0.030262541025877,
- -0.1506909728050232,
- 0.05201685428619385,
- 0.15880081057548523,
- 0.0055017368867993355,
- -0.007893861271440983,
- 0.04350806772708893,
- -0.001748669776134193,
- -0.03691425919532776,
- 0.013208135962486267,
- -0.03662100061774254,
- 0.04127982258796692,
- 0.04763895273208618,
- -0.011703060008585453,
- 0.02664138935506344,
- -0.052080683410167694,
- -0.056477051228284836,
- -0.13845300674438477,
- 0.08001743257045746,
- -0.036364831030368805,
- 0.01779230125248432,
- 0.002488934900611639,
- 0.04483858868479729,
- -0.0373750776052475,
- 0.04975203797221184,
- -0.009882037527859211,
- -0.03690554201602936,
- -0.005635454319417477,
- 0.030973270535469055,
- -0.03549100086092949,
- -0.008430526591837406,
- -0.07504096627235413,
- 0.023309092968702316,
- -0.04866102337837219,
- 0.04250490665435791,
- -0.026949618011713028,
- -0.007464859634637833,
- 0.01616528443992138,
- -0.02481846511363983,
- -0.0452599935233593,
- -0.002621319144964218,
- -0.02639991231262684,
- -0.061623651534318924,
- -0.031095514073967934,
- -0.05625516548752785,
- -0.015844300389289856,
- 0.05684175342321396,
- -0.08710554242134094,
- 0.001011841930449009,
- 0.02656412497162819,
- -0.06026999279856682,
- 0.008197454735636711,
- -0.03550511598587036,
- -0.0003915661363862455,
- 0.12307284772396088,
- 0.01612507924437523,
- 0.02305551990866661,
- -0.014910914935171604,
- -0.02520417980849743,
- -0.06032727286219597,
- 0.004184233024716377,
- 0.03807470202445984,
- 0.037084951996803284,
- -0.0035045607946813107,
- -0.030894005671143532,
- -0.03684612363576889,
- 0.027994876727461815,
- 0.049171220511198044,
- -0.007897804491221905,
- 0.021065175533294678,
- -0.04803091660141945,
- 0.08640564233064651,
- -0.050714004784822464,
- 0.018186014145612717,
- -0.013156135566532612,
- 0.028966665267944336,
- 0.027965085580945015,
- 0.10659230500459671,
- -0.03852022439241409,
- -0.06649722158908844,
- -0.09712834656238556,
- -0.030040193349123,
- -0.021737249568104744,
- -0.03440238535404205,
- 0.03223567083477974,
- -0.0810902789235115,
- -0.03735964372754097,
- -0.021607793867588043,
- -0.0015794357750564814,
- -0.026979858055710793,
- 0.03230559453368187,
- -0.06279557943344116,
- 0.0659746527671814,
- 0.02604825422167778,
- -0.06819826364517212,
- -0.09085734188556671,
- 0.22311100363731384,
- 0.01943943277001381,
- 0.030802330002188683,
- 0.10613374412059784,
- 0.051856353878974915,
- -0.016203055158257484,
- -0.007927395403385162,
- -0.011728374287486076,
- 0.09782416373491287,
- -0.033972758799791336,
- -0.0862143337726593,
- 0.029737193137407303,
- 0.008138574659824371,
- -0.08875566720962524,
- 0.051210928708314896,
- 0.06878437101840973,
- 0.037854213267564774,
- -0.04834023118019104,
- 0.08506301790475845,
- 0.005975442938506603,
- -0.01031331717967987,
- 0.005176797043532133,
- 0.025126660242676735,
- -0.07412838935852051,
- 0.07150477916002274,
- -0.06448471546173096,
- -0.020348045974969864,
- 0.01631295308470726,
- -5.1313935711681936e-33,
- 0.05598905682563782,
- -0.07729780673980713,
- 0.10909108817577362,
- -0.012654244899749756,
- 0.0640324130654335,
- -0.041895754635334015,
- -0.013517146930098534,
- 0.04907049983739853,
- 0.02504957653582096,
- 0.006055906414985657,
- 0.06540830433368683,
- 0.00943018402904272,
- -0.013932657428085804,
- 0.033544499427080154,
- 0.030373087152838707,
- 0.022842390462756157,
- -0.022505033761262894,
- 0.007278566714376211,
- 0.03171268850564957,
- -0.03722135350108147,
- -0.022345079109072685,
- 0.03219616413116455,
- -0.005776614416390657,
- 0.061854779720306396,
- 0.024172337725758553,
- -0.03613448515534401,
- 0.06342292577028275,
- -0.08380935341119766,
- 0.05193454772233963,
- 0.003966534044593573,
- -0.014500610530376434,
- 0.024592246860265732,
- 0.006925955880433321,
- -0.0018569674575701356,
- 0.012285192497074604,
- 0.017971402034163475,
- -0.05050848424434662,
- -0.025382818654179573,
- -0.0017875644844025373,
- -0.0345192588865757,
- -0.03669208288192749,
- -0.016949858516454697,
- -0.03146516531705856,
- -0.03274356201291084,
- -0.07348300516605377,
- -0.012085404247045517,
- -0.015592506155371666,
- 0.04234199598431587,
- 0.03911000117659569,
- 0.0315595418214798,
- 0.01749158464372158,
- 0.04615527391433716,
- -0.009312140755355358,
- 0.0007245903834700584,
- 0.052718278020620346,
- -0.054151903837919235,
- 0.009570574387907982,
- 0.025760600343346596,
- -0.018981104716658592,
- 0.023744506761431694,
- 0.05809579789638519,
- 0.08749043196439743,
- 0.0008196427370421588,
- 0.03760936111211777,
- -0.015139303170144558,
- -0.03781069815158844,
- 0.05319001525640488,
- -0.102183997631073,
- 0.06079656258225441,
- -0.04682431370019913,
- -0.048162780702114105,
- -0.02542157843708992,
- 0.07026847451925278,
- -0.026013825088739395,
- -0.05191686749458313,
- 0.011662486009299755,
- -0.029344506561756134,
- -0.07126808166503906,
- -0.023845551535487175,
- -0.024617016315460205,
- -0.03592241555452347,
- 0.02815832756459713,
- -0.04268162325024605,
- 0.01074304524809122,
- -0.04060937464237213,
- 0.007463046349585056,
- -0.03302876278758049,
- -0.08630115538835526,
- 0.00871249008923769,
- 0.08348865061998367,
- -0.11005319654941559,
- 0.00839813519269228,
- -0.04317189380526543,
- 0.01461853925138712,
- -0.027622846886515617,
- 2.6191040857167612e-33,
- 0.014726776629686356,
- 0.029921304434537888,
- 0.07085882127285004,
- 0.0733562558889389,
- 0.04835653305053711,
- 0.01695978082716465,
- 0.05055536702275276,
- 0.08719312399625778,
- -0.014646956697106361,
- 0.012515862472355366,
- 0.003952214494347572,
- 0.022113028913736343,
- 0.05531170591711998,
- -0.09363987296819687,
- -0.04272402822971344,
- 0.006530982907861471,
- -0.105105921626091,
- 0.06350713223218918,
- 0.021546540781855583,
- 0.004046801012009382,
- -0.08823077380657196,
- 0.018670717254281044,
- 0.07581580430269241,
- -0.023487301543354988,
- -0.08994869142770767,
- -0.025611357763409615,
- 0.043060172349214554,
- 0.02708323486149311,
- -0.09125323593616486,
- -0.018162693828344345,
- 0.04813277721405029,
- 0.031164025887846947,
- 0.0021651547867804766,
- -0.1267712414264679,
- -0.024631548672914505,
- 0.11255846917629242,
- 0.031179843470454216,
- -0.010390399023890495,
- -0.013881300576031208,
- -0.012979215011000633,
- 0.010273181833326817,
- -0.000001095824927688227,
- 0.07504884153604507,
- 0.08316539973020554,
- 0.029483476653695107,
- -0.004410137888044119,
- -0.0027648431714624166,
- 0.0938786119222641,
- 0.01041705533862114,
- -0.005195902660489082,
- -0.012112223543226719,
- 0.0006112866685725749,
- 0.04665754735469818,
- -0.05725356936454773,
- 0.009434842504560947,
- 0.06653992086648941,
- -0.044502194970846176,
- -0.10552431643009186,
- -0.03129972144961357,
- 0.036094143986701965,
- -0.0018237067852169275,
- 0.025842683389782906,
- 0.010198496282100677,
- 0.02175171859562397,
- -0.018591484054923058,
- 0.0641884133219719,
- 0.006481223739683628,
- 0.025995243340730667,
- -0.03838103637099266,
- 0.026560543105006218,
- 0.06356849521398544,
- -0.0013448367826640606,
- -0.024280067533254623,
- 0.07788299024105072,
- -0.08629173040390015,
- 0.0022233612835407257,
- -0.11013538390398026,
- 0.006394972093403339,
- 0.03005855157971382,
- -0.033581458032131195,
- 0.02100764587521553,
- -0.029727615416049957,
- -0.04825880005955696,
- -0.00972362793982029,
- -0.05996581166982651,
- -0.03230545297265053,
- 0.08303862810134888,
- -0.023749755695462227,
- -0.024457287043333054,
- -0.013040968216955662,
- 0.08779769390821457,
- 0.020185131579637527,
- -0.08407346904277802,
- -0.042427171021699905,
- 0.03433388099074364,
- -1.2162836071638594e-8,
- -0.049668144434690475,
- 0.02727636694908142,
- -0.06108110770583153,
- -0.06318604201078415,
- 0.03807415813207626,
- 0.059708159416913986,
- 0.10602040588855743,
- -0.06423033028841019,
- 0.003209567628800869,
- 0.020881101489067078,
- 0.029263831675052643,
- -0.0762757733464241,
- 0.03898855298757553,
- 0.008784252218902111,
- 0.04286323860287666,
- -0.06952320784330368,
- -0.0037822984158992767,
- 0.10871145874261856,
- -0.040839165449142456,
- 0.07119867205619812,
- 0.05741293728351593,
- 0.0037951634731143713,
- 0.07814272493124008,
- -0.05791543796658516,
- -0.008417696692049503,
- -0.030973365530371666,
- -0.01734643615782261,
- 0.05157042667269707,
- -0.006097379606217146,
- 0.07117185741662979,
- -0.008006996475160122,
- 0.08050718903541565,
- -0.00029800718766637146,
- -0.04842060059309006,
- 0.0015342431142926216,
- -0.06253337860107422,
- 0.017464976757764816,
- -0.054670315235853195,
- -0.10586302727460861,
- 0.048015762120485306,
- -0.06286043673753738,
- 0.13699141144752502,
- 0.031155919656157494,
- -0.005929226521402597,
- -0.03980306163430214,
- -0.06702221184968948,
- 0.08572015911340714,
- 0.014374572783708572,
- -0.0006694456096738577,
- 0.037535410374403,
- -0.09544096142053604,
- -0.023601109161973,
- 0.06543008238077164,
- 0.002446369733661413,
- -0.007914929650723934,
- -0.02404925972223282,
- -0.03796648979187012,
- 0.1092282384634018,
- -0.09006039053201675,
- -0.0024527423083782196,
- 0.010462377220392227,
- -0.027312694117426872,
- 0.05359095335006714,
- -0.004376837983727455
- ]
- },
- {
- "keyword": "painter",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.09217089414596558,
- 0.08147794753313065,
- -0.0323428176343441,
- 0.005874758120626211,
- -0.016603846102952957,
- 0.03624585270881653,
- 0.10689245909452438,
- -0.023946717381477356,
- -0.06170133873820305,
- -0.06960108876228333,
- -0.030435634776949883,
- -0.07033447921276093,
- -0.00017785851377993822,
- 0.03146834671497345,
- -0.04184119775891304,
- 0.102625273168087,
- 0.00761984009295702,
- 0.034749504178762436,
- 0.020348092541098595,
- -0.028920968994498253,
- -0.1067037358880043,
- -0.011528350412845612,
- -0.05490567535161972,
- -0.05898085981607437,
- 0.08676329255104065,
- 0.05931246653199196,
- 0.008735758252441883,
- 0.0008657190483063459,
- 0.05658148229122162,
- -0.04574447125196457,
- -0.021685482934117317,
- 0.025312315672636032,
- 0.015046196058392525,
- -0.01872529275715351,
- 0.06752949208021164,
- 0.0009712670580483973,
- -0.04224967584013939,
- 0.08877138793468475,
- 0.005044228862971067,
- 0.02346736565232277,
- -0.05104842036962509,
- 0.02280161902308464,
- -0.0817042663693428,
- -0.017222899943590164,
- 0.03434591367840767,
- -0.06506899744272232,
- -0.008859743364155293,
- 0.05032036080956459,
- 0.009040777571499348,
- 0.0029883617535233498,
- -0.045869696885347366,
- -0.08145807683467865,
- -0.0961894616484642,
- -0.0955558493733406,
- 0.042642273008823395,
- -0.04139479622244835,
- 0.01583811268210411,
- 0.01729709468781948,
- 0.016517717391252518,
- -0.0013452080311253667,
- 0.005265178624540567,
- -0.003309419145807624,
- -0.05258621275424957,
- 0.052285175770521164,
- 0.06535309553146362,
- 0.023585377261042595,
- -0.038803670555353165,
- 0.0040262434631586075,
- -0.06959018111228943,
- -0.024001862853765488,
- 0.0773698166012764,
- -0.030865581706166267,
- -0.0026579496916383505,
- -0.04221406579017639,
- 0.08453091979026794,
- -0.021281186491250992,
- -0.01902402937412262,
- -0.003622928634285927,
- -0.017626427114009857,
- -0.06049971655011177,
- 0.10454055666923523,
- -0.06633485108613968,
- -0.08414340764284134,
- 0.039059385657310486,
- 0.01871265470981598,
- 0.029829582199454308,
- -0.05021970719099045,
- 0.005391459912061691,
- -0.012460490688681602,
- -0.011400017887353897,
- 0.014926070347428322,
- 0.0003080779279116541,
- -0.07008859515190125,
- -0.001144768437370658,
- 0.028251120820641518,
- 0.005774926859885454,
- 0.003232944058254361,
- -0.014498931355774403,
- -0.03937828168272972,
- 0.21464014053344727,
- 0.043298717588186264,
- -0.03502599895000458,
- -0.010249997489154339,
- -0.03813030570745468,
- 0.020394962280988693,
- 0.004392759408801794,
- -0.0412423275411129,
- 0.06214512512087822,
- -0.0753585696220398,
- -0.030635546892881393,
- -0.005653504282236099,
- 0.018445326015353203,
- -0.009553628042340279,
- 0.02618461474776268,
- 0.02433522790670395,
- -0.031456418335437775,
- 0.03765587881207466,
- -0.02916344441473484,
- -0.028195470571517944,
- 0.030061228200793266,
- -0.0020880952943116426,
- 0.09375512599945068,
- -0.05164262652397156,
- -0.005377493798732758,
- -0.10431656241416931,
- -0.05646110326051712,
- -0.005733678117394447,
- -5.279213455152035e-33,
- 0.05867350846529007,
- 0.028041841462254524,
- 0.036536552011966705,
- 0.0367203950881958,
- 0.037523817270994186,
- 0.04034852981567383,
- 0.020464589819312096,
- 0.03505811467766762,
- -0.055714696645736694,
- -0.02415418066084385,
- 0.0815742090344429,
- -0.060198500752449036,
- -0.02904902584850788,
- 0.138130322098732,
- -0.0152491619810462,
- 0.12867248058319092,
- 0.05160406976938248,
- -0.04965119808912277,
- 0.00228273612447083,
- -0.008238613605499268,
- -0.003686890471726656,
- 0.05709370598196983,
- -0.004114075563848019,
- 0.007888365536928177,
- -0.05702515318989754,
- 0.02767214924097061,
- -0.010114176198840141,
- -0.047649845480918884,
- 0.00035919377114623785,
- 0.041747432202100754,
- -0.047313034534454346,
- 0.06931740045547485,
- 0.03166642412543297,
- -0.00662537757307291,
- -0.07999416440725327,
- 0.00008782031363807619,
- -0.049312517046928406,
- -0.08581778407096863,
- 0.027848312631249428,
- 0.0010880668414756656,
- -0.02719060145318508,
- 0.04989321157336235,
- 0.014014099724590778,
- 0.010634944774210453,
- 0.025284534320235252,
- 0.02234765700995922,
- -0.0014058842789381742,
- 0.056012969464063644,
- -0.0099742840975523,
- 0.11127915978431702,
- -0.011429972015321255,
- 0.052817367017269135,
- -0.05522928759455681,
- 0.05390775948762894,
- -0.032052114605903625,
- -0.06527532637119293,
- 0.03362895920872688,
- -0.0064545441418886185,
- -0.07044658064842224,
- -0.041578780859708786,
- 0.0014795672614127398,
- 0.148014098405838,
- -0.07588181644678116,
- 0.09037235379219055,
- -0.011350478045642376,
- 0.010370705276727676,
- -0.0018284718971699476,
- -0.006750727072358131,
- -0.010554462671279907,
- 0.00038425502134487033,
- -0.07212626188993454,
- 0.01766597107052803,
- 0.057740941643714905,
- -0.06401261687278748,
- -0.027323292568325996,
- -0.010004185140132904,
- 0.00044391260598786175,
- -0.05803275853395462,
- -0.08381946384906769,
- 0.05805477872490883,
- -0.13454385101795197,
- 0.07337735593318939,
- -0.017392141744494438,
- -0.070079006254673,
- -0.05284562334418297,
- 0.03485611826181412,
- 0.01003285963088274,
- 0.00650661438703537,
- 0.0030067949555814266,
- 0.05907421186566353,
- -0.062217023223638535,
- -0.015115536749362946,
- 0.07377579808235168,
- -0.008851918391883373,
- -0.055372852832078934,
- 3.322005442799341e-33,
- -0.034046512097120285,
- 0.00856772530823946,
- 0.04153233766555786,
- 0.09342027455568314,
- 0.03319843113422394,
- -0.09704424440860748,
- 0.0162279661744833,
- 0.09460412710905075,
- 0.018166225403547287,
- 0.06912893056869507,
- 0.03774247318506241,
- -0.01170427817851305,
- -0.0028457751031965017,
- 0.0010735270334407687,
- 0.03950748220086098,
- -0.024348875507712364,
- 0.014575190842151642,
- 0.020438114181160927,
- -0.04089461266994476,
- -0.016304025426506996,
- -0.0063823615200817585,
- 0.01570531539618969,
- 0.023882273584604263,
- -0.03447018563747406,
- -0.08199586719274521,
- 0.08100143074989319,
- -0.01501687802374363,
- -0.06486300379037857,
- 0.007056748494505882,
- 0.07428187876939774,
- -0.00637312326580286,
- -0.06337010115385056,
- 0.0017237275606021285,
- -0.021370476111769676,
- -0.012562842108309269,
- 0.08341655880212784,
- 0.061869196593761444,
- -0.01023738831281662,
- -0.037407033145427704,
- 0.0919182151556015,
- 0.0157471876591444,
- -0.037212010473012924,
- 0.04264145344495773,
- 0.1026051715016365,
- -0.024497879669070244,
- -0.022304045036435127,
- -0.019140370190143585,
- 0.020261269062757492,
- -0.012687897309660912,
- 0.008627943694591522,
- -0.038347210735082626,
- 0.014524544589221478,
- 0.023785902187228203,
- -0.03005598857998848,
- 0.028288953006267548,
- -0.04772404953837395,
- 0.04685148596763611,
- -0.015291775576770306,
- -0.04075383022427559,
- 0.09486052393913269,
- 0.006230284925550222,
- 0.053814906626939774,
- -0.0657457560300827,
- 0.019480329006910324,
- -0.03357754275202751,
- 0.029152382165193558,
- -0.036130283027887344,
- 0.03928783908486366,
- -0.01582501269876957,
- -0.007477816194295883,
- 0.055863622575998306,
- 0.07679349929094315,
- -0.03633881360292435,
- 0.07520723342895508,
- -0.06331202387809753,
- -0.0019029862014576793,
- 0.02847622148692608,
- 0.06836230307817459,
- 0.05484410375356674,
- -0.0781182050704956,
- -0.0763489305973053,
- -0.04577100649476051,
- -0.0020322494674474,
- 0.0982542484998703,
- 0.04672747477889061,
- -0.018186237663030624,
- -0.08708301186561584,
- -0.0592203252017498,
- 0.04961045831441879,
- -0.06852030754089355,
- 0.10240118205547333,
- 0.02319633960723877,
- 0.01539949793368578,
- -0.0849013477563858,
- -0.034985605627298355,
- -1.1278796563374271e-8,
- -0.06306671351194382,
- 0.006726658903062344,
- 0.019934214651584625,
- -0.061986375600099564,
- 0.06111135333776474,
- -0.049332961440086365,
- 0.08267077058553696,
- -0.03409281000494957,
- -0.023550642654299736,
- 0.06008055433630943,
- 0.06708669662475586,
- -0.02417512983083725,
- 0.006546780467033386,
- -0.016488028690218925,
- 0.04218596592545509,
- -0.09158056974411011,
- 0.04727621376514435,
- -0.024904794991016388,
- -0.014214521273970604,
- -0.10034624487161636,
- -0.013337637297809124,
- -0.0014815612230449915,
- -0.0030562030151486397,
- -0.0048406957648694515,
- -0.043773896992206573,
- -0.04631534591317177,
- 0.0061621214263141155,
- 0.01258254423737526,
- -0.013814546167850494,
- 0.04746158793568611,
- -0.0509454719722271,
- 0.09696129709482193,
- -0.036340247839689255,
- 0.006904620211571455,
- 0.06333524733781815,
- -0.051100172102451324,
- -0.020287243649363518,
- -0.07761760801076889,
- -0.08214211463928223,
- 0.006262337788939476,
- -0.0551883727312088,
- 0.10937405377626419,
- 0.01899781823158264,
- -0.020947178825736046,
- 0.09137430042028427,
- -0.05046932026743889,
- 0.1369059532880783,
- -0.024494502693414688,
- -0.0001925385877257213,
- 0.00702244695276022,
- -0.0806838795542717,
- -0.04565991833806038,
- 0.10916084051132202,
- 0.03488470986485481,
- 0.03923466056585312,
- -0.05255048722028732,
- -0.027363257482647896,
- 0.014706575311720371,
- -0.03955063968896866,
- -0.0045140632428228855,
- 0.06169751286506653,
- 0.044492077082395554,
- 0.02037934958934784,
- 0.008105045184493065
- ]
- },
- {
- "keyword": "sculptor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.05703769251704216,
- 0.1046624705195427,
- -0.011800230480730534,
- -0.02379310317337513,
- -0.08352196216583252,
- -0.006770704407244921,
- 0.12679283320903778,
- -0.016505124047398567,
- -0.011016796343028545,
- 0.01055759284645319,
- -0.0692826583981514,
- -0.09734301269054413,
- 0.019713643938302994,
- 0.019719131290912628,
- -0.06945174932479858,
- 0.011625009588897228,
- 0.04636912792921066,
- 0.08166401088237762,
- 0.025599351152777672,
- 0.0014313794672489166,
- 0.030123258009552956,
- 0.02392788976430893,
- -0.03488409146666527,
- 0.024850817397236824,
- 0.06733028590679169,
- 0.027830081060528755,
- -0.016069862991571426,
- -0.03040650673210621,
- 0.0234280526638031,
- -0.06504607200622559,
- -0.08784095197916031,
- -0.10843851417303085,
- -0.06356433033943176,
- 0.007579520810395479,
- 0.040049854665994644,
- 0.020219655707478523,
- -0.006912670563906431,
- 0.0857367068529129,
- -0.02375253476202488,
- -0.0038774318527430296,
- -0.05630297586321831,
- -0.010499156080186367,
- -0.031142091378569603,
- 0.01666422002017498,
- 0.07015165686607361,
- 0.02616732008755207,
- 0.035212405025959015,
- 0.005364812910556793,
- 0.017591135576367378,
- 0.001611525658518076,
- -0.04272937774658203,
- -0.028256844729185104,
- -0.03318624198436737,
- -0.07665164023637772,
- 0.03806724771857262,
- -0.01464103814214468,
- 0.03495712950825691,
- -0.030107708647847176,
- 0.04604996740818024,
- -0.04187357425689697,
- 0.08171843737363815,
- -0.0062622567638754845,
- -0.013670585118234158,
- 0.037285082042217255,
- 0.03840849921107292,
- -0.011445012874901295,
- -0.019871436059474945,
- -0.07771553844213486,
- -0.005025993566960096,
- 0.022054022178053856,
- 0.11685153096914291,
- -0.0013936004834249616,
- 0.03506528213620186,
- -0.04605444148182869,
- 0.06010046228766441,
- -0.05266222357749939,
- 0.004612204153090715,
- -0.03626140207052231,
- -0.02616172842681408,
- -0.0181740615516901,
- 0.062329042702913284,
- -0.024313878268003464,
- 0.002091757720336318,
- 0.02210727520287037,
- 0.00354073871858418,
- 0.016918882727622986,
- -0.07014161348342896,
- 0.016771230846643448,
- -0.047330696135759354,
- -0.0175037682056427,
- -0.0019128596177324653,
- 0.03213643655180931,
- -0.08547426760196686,
- -0.02378307655453682,
- -0.0850415974855423,
- -0.015956124290823936,
- -0.02829878404736519,
- 0.02600242756307125,
- -0.02205229178071022,
- 0.22715795040130615,
- -0.03140144422650337,
- 0.018678922206163406,
- 0.054056111723184586,
- 0.0044430214911699295,
- -0.01789146289229393,
- -0.05999693274497986,
- -0.026030806824564934,
- 0.03564896062016487,
- -0.061472442001104355,
- 0.030025532469153404,
- -0.0027582074981182814,
- 0.03473854064941406,
- -0.0572073794901371,
- 0.06559064239263535,
- 0.019811812788248062,
- 0.025412213057279587,
- -0.029166845604777336,
- -0.01304940041154623,
- -0.045179497450590134,
- 0.0481158122420311,
- -0.011217533610761166,
- 0.04500627890229225,
- -0.02649545669555664,
- 0.06446186453104019,
- -0.07035771757364273,
- -0.03407633304595947,
- -0.03774946555495262,
- -4.941880739270609e-33,
- 0.015054344199597836,
- 0.026759708300232887,
- 0.1092672124505043,
- 0.0400138683617115,
- -0.025555631145834923,
- -0.004704399965703487,
- 0.049388982355594635,
- 0.0543784536421299,
- -0.012106907553970814,
- -0.025502726435661316,
- 0.052511055022478104,
- -0.06113424897193909,
- -0.04093486815690994,
- 0.06896952539682388,
- 0.01558748073875904,
- 0.03556716442108154,
- 0.04081990569829941,
- -0.06553806364536285,
- -0.0031129608396440744,
- -0.026498297229409218,
- -0.024035682901740074,
- 0.030466372147202492,
- -0.003218200756236911,
- 0.06354989856481552,
- -0.007533523254096508,
- 0.0006791213527321815,
- -0.014381937682628632,
- -0.029177110642194748,
- -0.05346851795911789,
- 0.03560156747698784,
- 0.024818312376737595,
- 0.02048547752201557,
- 0.03807256743311882,
- 0.02220344729721546,
- -0.008244812488555908,
- -0.07687939703464508,
- -0.011144028976559639,
- -0.08693887293338776,
- 0.027173353359103203,
- -0.023924442008137703,
- 0.04666253179311752,
- -0.015011179260909557,
- 0.0014880163362249732,
- 0.04282255843281746,
- -0.019693726673722267,
- 0.057011302560567856,
- 0.07695483416318893,
- 0.057958461344242096,
- 0.05783253535628319,
- 0.01943868398666382,
- 0.028401557356119156,
- 0.06315875053405762,
- -0.038057345896959305,
- -0.020979681983590126,
- 0.024884603917598724,
- -0.06052888557314873,
- -0.051057860255241394,
- 0.003361966460943222,
- -0.010348259471356869,
- -0.02944076433777809,
- 0.03807266429066658,
- 0.13709567487239838,
- -0.019100502133369446,
- 0.09703230857849121,
- -0.05835182964801788,
- -0.005379101727157831,
- 0.0018637600587680936,
- 0.01572278141975403,
- 0.052049241960048676,
- -0.03408041596412659,
- -0.11089887470006943,
- -0.01966182142496109,
- 0.06695511192083359,
- -0.05062652751803398,
- -0.04902238771319389,
- 0.0443974994122982,
- 0.00013795077393297106,
- -0.07769645005464554,
- -0.05152936279773712,
- 0.055164601653814316,
- -0.07525938004255295,
- 0.06319443136453629,
- 0.008985485881567001,
- -0.1032646894454956,
- -0.0472414456307888,
- 0.03470849618315697,
- 0.059200018644332886,
- -0.022947119548916817,
- 0.012510265223681927,
- 0.10225456207990646,
- -0.12303221225738525,
- -0.020862944424152374,
- -0.04415381699800491,
- 0.03373396024107933,
- -0.13733305037021637,
- 3.326691624497291e-33,
- -0.03447956219315529,
- -0.0746270939707756,
- 0.09000954031944275,
- 0.10448934882879257,
- 0.054521579295396805,
- -0.08070138096809387,
- -0.10727515071630478,
- 0.015692533925175667,
- 0.005261523649096489,
- -0.008848491124808788,
- 0.044036876410245895,
- -0.027560187503695488,
- 0.045760370790958405,
- -0.040323808789253235,
- 0.042389076203107834,
- -0.00627810088917613,
- -0.02422388456761837,
- -0.05978982895612717,
- -0.0496065728366375,
- 0.017801161855459213,
- -0.012805781327188015,
- 0.05807596072554588,
- 0.034687839448451996,
- -0.18120336532592773,
- -0.13884784281253815,
- 0.080082967877388,
- -0.05591993406414986,
- 0.029860489070415497,
- 0.009651532396674156,
- 0.025397803634405136,
- 0.012381453067064285,
- -0.052632205188274384,
- -0.0042219520546495914,
- -0.00106182845775038,
- -0.020436396822333336,
- 0.12302873283624649,
- 0.021048732101917267,
- -0.002339958678930998,
- 0.048884592950344086,
- 0.003803995903581381,
- 0.02815820649266243,
- -0.01429409347474575,
- 0.001859953161329031,
- 0.12368050962686539,
- -0.001913806889206171,
- -0.03697293996810913,
- 0.01282837800681591,
- 0.030279085040092468,
- 0.004573815036565065,
- -0.008860109373927116,
- -0.040756791830062866,
- 0.014224104583263397,
- 0.06760837137699127,
- -0.04288830608129501,
- 0.03594372048974037,
- 0.008318169042468071,
- -0.08889681845903397,
- -0.02740892581641674,
- 0.00690450519323349,
- 0.09209045767784119,
- 0.0763126090168953,
- -0.017209170386195183,
- -0.03481527417898178,
- 0.07914763689041138,
- 0.031138932332396507,
- 0.02183569222688675,
- 0.029484977945685387,
- 0.05851627513766289,
- -0.08830470591783524,
- 0.09066645801067352,
- 0.0384775809943676,
- 0.05133510008454323,
- -0.026148265227675438,
- 0.06967887282371521,
- -0.05632834509015083,
- -0.0022861368488520384,
- -0.02147127129137516,
- 0.048567138612270355,
- 0.034566204994916916,
- -0.04451523721218109,
- -0.11457761377096176,
- -0.030199890956282616,
- -0.05039014667272568,
- 0.06253432482481003,
- 0.05210417881608009,
- -0.017902985215187073,
- -0.015194008126854897,
- 0.03403637185692787,
- 0.0030601986218243837,
- 0.012344568967819214,
- 0.04902014881372452,
- 0.02928992174565792,
- 0.03257754072546959,
- -0.05810055881738663,
- 0.047949038445949554,
- -1.1157281321061419e-8,
- -0.03594197332859039,
- 0.03227998688817024,
- -0.004605243448168039,
- -0.0981510728597641,
- 0.03756897896528244,
- -0.04986032843589783,
- 0.07901675254106522,
- -0.06952554732561111,
- -0.02379119023680687,
- -0.024328114464879036,
- 0.022580446675419807,
- -0.02069682441651821,
- 0.009354233741760254,
- 0.0011135161621496081,
- 0.03525626286864281,
- -0.12162474542856216,
- -0.01755005307495594,
- 0.04764847084879875,
- -0.021046321839094162,
- -0.060372110456228256,
- 0.040016185492277145,
- -0.02306126058101654,
- 0.035923078656196594,
- -0.09040765464305878,
- -0.05040455609560013,
- 0.0205924604088068,
- -0.021551040932536125,
- -0.02236359938979149,
- -0.08203092217445374,
- 0.07139219343662262,
- -0.004685795400291681,
- 0.07006046175956726,
- -0.007386170327663422,
- -0.004747177939862013,
- 0.008482089266180992,
- 0.018691319972276688,
- -0.03708793967962265,
- -0.023765943944454193,
- -0.09405303746461868,
- -0.05566524341702461,
- 0.06989718973636627,
- 0.0431211031973362,
- 0.019957052543759346,
- 0.037081681191921234,
- 0.03657998889684677,
- 0.0028097566682845354,
- 0.12080121785402298,
- 0.0052743349224328995,
- 0.007509137969464064,
- 0.03403851017355919,
- -0.0072820354253053665,
- -0.002131352201104164,
- 0.042264603078365326,
- 0.003657846711575985,
- -0.05050726607441902,
- -0.034380123019218445,
- 0.07023169100284576,
- 0.0038972697220742702,
- -0.03937361761927605,
- -0.0038855518214404583,
- 0.037888407707214355,
- -0.06304274499416351,
- -0.014238995499908924,
- -0.010593613609671593
- ]
- },
- {
- "keyword": "performer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.0027751107700169086,
- 0.06613628566265106,
- -0.0038879404310137033,
- -0.10539600253105164,
- -0.12369847297668457,
- 0.04621613398194313,
- 0.16691774129867554,
- 0.016955936327576637,
- 0.003408006625249982,
- -0.030391352251172066,
- 0.013593735173344612,
- -0.0599425807595253,
- -0.0075510721653699875,
- 0.021553492173552513,
- 0.01961701177060604,
- 0.03158130124211311,
- 0.06219763308763504,
- 0.11024218797683716,
- 0.022983532398939133,
- -0.05069535970687866,
- -0.025439290329813957,
- 0.0333467461168766,
- -0.04571631923317909,
- 0.034375254064798355,
- -0.003132168436422944,
- -0.016331994906067848,
- -0.03229435160756111,
- 0.0019036851590499282,
- 0.08718971163034439,
- -0.04179137945175171,
- -0.014666304923593998,
- -0.07293331623077393,
- -0.02973349392414093,
- -0.004766338039189577,
- -0.06566350162029266,
- 0.027157410979270935,
- -0.035388801246881485,
- 0.06065404415130615,
- 0.006120061967521906,
- 0.056283216923475266,
- 0.018259666860103607,
- -0.03291081637144089,
- -0.053854480385780334,
- -0.03415845334529877,
- 0.0270833857357502,
- 0.0055124033242464066,
- 0.029547689482569695,
- -0.01918725110590458,
- -0.02647923119366169,
- 0.004614122677594423,
- -0.022313321009278297,
- -0.02197052352130413,
- 0.021403083577752113,
- -0.053804993629455566,
- 0.016136014834046364,
- -0.016889607533812523,
- 0.055472347885370255,
- -0.02229905314743519,
- 0.02559240721166134,
- -0.007441370747983456,
- -0.04837750643491745,
- -0.013375953771173954,
- -0.032478369772434235,
- -0.008268659934401512,
- 0.0054652150720357895,
- -0.025734173133969307,
- 0.021358665078878403,
- -0.05771622434258461,
- -0.002192447427660227,
- 0.010175416246056557,
- -0.017417501658201218,
- -0.019673548638820648,
- 0.04791088402271271,
- -0.008954840712249279,
- 0.017354944720864296,
- -0.08650002628564835,
- -0.02552327699959278,
- -0.09584295749664307,
- 0.016586141660809517,
- 0.041839346289634705,
- 0.1423685997724533,
- -0.10573109239339828,
- -0.012316282838582993,
- -0.0513279065489769,
- 0.008089636452496052,
- -0.01421205885708332,
- -0.024881726130843163,
- 0.03664976730942726,
- -0.04648420959711075,
- -0.0006316240760497749,
- -0.055667709559202194,
- 0.08730282634496689,
- -0.02755129709839821,
- -0.028955042362213135,
- -0.011625504121184349,
- -0.003871283261105418,
- -0.03533799201250076,
- -0.03792254626750946,
- -0.016662722453475,
- 0.24981743097305298,
- -0.019630631431937218,
- 0.0347898006439209,
- 0.03767165169119835,
- -0.019110480323433876,
- -0.024276427924633026,
- -0.007734715938568115,
- -0.04906940460205078,
- 0.05855247750878334,
- -0.04308426380157471,
- -0.06052527576684952,
- 0.044178832322359085,
- -0.010767146944999695,
- -0.09505920857191086,
- 0.03518678620457649,
- 0.10387038439512253,
- 0.005604615435004234,
- -0.05886606127023697,
- 0.046123094856739044,
- -0.03317276015877724,
- 0.020861266180872917,
- 0.057582251727581024,
- 0.02285122312605381,
- -0.0558522492647171,
- 0.0639532059431076,
- -0.08257853984832764,
- -0.01954221911728382,
- 0.030554763972759247,
- -7.04856902137768e-33,
- 0.02647409588098526,
- -0.08478031307458878,
- 0.030346805229783058,
- -0.03745157644152641,
- 0.023598380386829376,
- 0.05130487307906151,
- -0.024509822949767113,
- -0.0008348771370947361,
- 0.0010225259466096759,
- 0.015945319086313248,
- 0.06382442265748978,
- -0.05620841681957245,
- 0.014764041639864445,
- 0.03992491587996483,
- 0.013878352008759975,
- 0.00425002770498395,
- 0.08584430813789368,
- 0.042508430778980255,
- -0.08601771295070648,
- -0.008693842217326164,
- 0.0064726476557552814,
- 0.08416005223989487,
- -0.02659425511956215,
- 0.058431584388017654,
- 0.0029681178275495768,
- -0.01387318316847086,
- 0.028559090569615364,
- -0.032688889652490616,
- 0.00131904031150043,
- -0.03051169030368328,
- -0.004415600094944239,
- 0.02265036478638649,
- 0.009236310608685017,
- -0.0018889980856329203,
- 0.06251063197851181,
- -0.02896987833082676,
- 0.010483674705028534,
- -0.07858824729919434,
- -0.014301515184342861,
- -0.08170047402381897,
- -0.010847578756511211,
- -0.00014869510778225958,
- 0.012866860255599022,
- 0.007756459526717663,
- -0.12049964815378189,
- 0.049444857984781265,
- 0.01838197186589241,
- 0.06092274934053421,
- 0.07771934568881989,
- 0.04399625584483147,
- -0.011364089325070381,
- 0.051014967262744904,
- -0.034211426973342896,
- 0.02902279607951641,
- 0.05819174274802208,
- -0.057547375559806824,
- 0.0058914064429700375,
- 0.032089993357658386,
- 0.0038359886966645718,
- -0.04050679877400398,
- -0.04047202691435814,
- 0.12729814648628235,
- -0.0621982142329216,
- 0.0005723772919736803,
- -0.021702157333493233,
- -0.10715369880199432,
- 0.029134472832083702,
- -0.078872449696064,
- 0.10221314430236816,
- -0.048338279128074646,
- -0.018666066229343414,
- 0.013116559945046902,
- 0.0781649798154831,
- -0.07144179195165634,
- -0.02475038915872574,
- -0.043049365282058716,
- -0.08204170316457748,
- -0.018719177693128586,
- -0.03638880327343941,
- -0.0027450660709291697,
- -0.06386284530162811,
- -0.018159301951527596,
- 0.0069108521565794945,
- -0.07702887058258057,
- 0.058067403733730316,
- 0.012077844701707363,
- -0.001412965590134263,
- -0.059414803981781006,
- 0.03052574023604393,
- 0.1039169579744339,
- 0.0021919324062764645,
- 0.014899633824825287,
- -0.05343609303236008,
- 0.09994369000196457,
- -0.0589638315141201,
- 4.785223341820492e-33,
- 0.03199974447488785,
- 0.06858694553375244,
- 0.05353139340877533,
- 0.08703344315290451,
- 0.08789712935686111,
- 0.006606286857277155,
- -0.015086835250258446,
- -0.009407197125256062,
- -0.049343857914209366,
- -0.015704525634646416,
- -0.04243233799934387,
- 0.022988945245742798,
- 0.026406526565551758,
- -0.07377780973911285,
- 0.011943642050027847,
- 0.024674106389284134,
- -0.06858932971954346,
- 0.07241519540548325,
- -0.01093811821192503,
- 0.0221012681722641,
- -0.04401044175028801,
- 0.007619611453264952,
- 0.10326327383518219,
- -0.05633397772908211,
- -0.11320070922374725,
- -0.002839389257133007,
- 0.10814312845468521,
- -0.0035328431986272335,
- -0.036238379776477814,
- 0.002796352142468095,
- 0.03388506546616554,
- -0.0076651787385344505,
- -0.014137824065983295,
- -0.09562844783067703,
- -0.04784499481320381,
- 0.09038560837507248,
- 0.02974654547870159,
- -0.06202273070812225,
- -0.0184659194201231,
- 0.010089127346873283,
- 0.008289862424135208,
- 0.03159070387482643,
- 0.09863409399986267,
- 0.04403076320886612,
- -0.019392115995287895,
- 0.029149463400244713,
- -0.03889280557632446,
- 0.040200330317020416,
- 0.028613673523068428,
- 0.008237693458795547,
- -0.08798792213201523,
- 0.0012960914755240083,
- 0.008490161970257759,
- -0.0235887560993433,
- 0.03058905340731144,
- 0.02518385648727417,
- -0.023167917504906654,
- -0.10331180691719055,
- -0.013366349041461945,
- 0.04899449273943901,
- 0.028024399653077126,
- 0.04633937403559685,
- 0.02148248814046383,
- 0.03785880282521248,
- 0.04237515106797218,
- 0.0675245076417923,
- -0.03803154081106186,
- 0.04625823348760605,
- -0.03407137840986252,
- 0.06380745023488998,
- 0.02592228539288044,
- -0.015750128775835037,
- -0.004010799806565046,
- -0.014471614733338356,
- -0.082322858273983,
- -0.02278156206011772,
- -0.0926966518163681,
- 0.02980203367769718,
- 0.02976803667843342,
- -0.04082281142473221,
- -0.05121879279613495,
- -0.03061823546886444,
- -0.013395882211625576,
- -0.04064119979739189,
- -0.03927316889166832,
- -0.015913184732198715,
- 0.06662971526384354,
- 0.03020448423922062,
- -0.026852915063500404,
- 0.015015628188848495,
- 0.09040594100952148,
- 0.04434343799948692,
- -0.010586090385913849,
- -0.09401023387908936,
- 0.01784917339682579,
- -1.2691649509122271e-8,
- -0.09670566022396088,
- 0.030321912840008736,
- -0.05178212374448776,
- -0.04065795615315437,
- 0.04425179213285446,
- 0.05228792503476143,
- 0.06870900839567184,
- -0.08799304813146591,
- 0.016533056274056435,
- 0.03349564969539642,
- 0.06395136564970016,
- -0.10266292840242386,
- 0.07441683858633041,
- -0.04746848717331886,
- 0.11835968494415283,
- -0.07016637921333313,
- -0.03843254595994949,
- 0.0702105164527893,
- -0.04247623682022095,
- 0.004771046340465546,
- 0.007608223706483841,
- 0.02009991556406021,
- 0.01184849627315998,
- -0.03654861077666283,
- -0.03800537809729576,
- 0.027722032740712166,
- -0.06211390718817711,
- 0.15285858511924744,
- -0.05578354001045227,
- 0.08074750006198883,
- 0.031528450548648834,
- 0.06538117676973343,
- 0.002562123816460371,
- -0.056335944682359695,
- 0.029942555353045464,
- -0.026079976931214333,
- -0.051910918205976486,
- -0.01609588786959648,
- -0.02765844762325287,
- 0.06333296000957489,
- -0.002282863250002265,
- 0.004054164048284292,
- 0.0616438202559948,
- 0.07884063571691513,
- -0.028025250881910324,
- 0.0028200859669595957,
- 0.03882807493209839,
- -0.05681614950299263,
- 0.023455925285816193,
- 0.02507016249001026,
- -0.019307639449834824,
- -0.08798384666442871,
- 0.017275100573897362,
- 0.03400219604372978,
- 0.02376185916364193,
- -0.025957660749554634,
- 0.016663124784827232,
- 0.07316839694976807,
- -0.04322335124015808,
- 0.015649879351258278,
- 0.04612978547811508,
- 0.01668357662856579,
- 0.022740833461284637,
- 0.02254059910774231
- ]
- },
- {
- "keyword": "author",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.034648265689611435,
- 0.06747043877840042,
- 0.023561052978038788,
- 0.06503620743751526,
- -0.06523630023002625,
- 0.014160753227770329,
- 0.09021437913179398,
- 0.004788835998624563,
- 0.07205992192029953,
- 0.05187046527862549,
- -0.03559587523341179,
- 0.06358485668897629,
- -0.00443394435569644,
- -0.04502870887517929,
- -0.07733640819787979,
- 0.08088713884353638,
- -0.04462551325559616,
- 0.034060075879096985,
- 0.012163123115897179,
- -0.05790987238287926,
- -0.060121163725852966,
- 0.04695197194814682,
- -0.022703614085912704,
- 0.012344906106591225,
- 0.06694110482931137,
- 0.043093010783195496,
- -0.006175313610583544,
- 0.010705855675041676,
- 0.008368628099560738,
- -0.08233970403671265,
- -0.03714575245976448,
- 0.013058999553322792,
- 0.011796076782047749,
- 0.010799894109368324,
- -0.016450325027108192,
- -0.026360711082816124,
- 0.01152806170284748,
- 0.05526519566774368,
- 0.03480853512883186,
- -0.02336861379444599,
- -0.017921697348356247,
- -0.07439731806516647,
- 0.007806070148944855,
- 0.020413648337125778,
- 0.0056711221113801,
- -0.017066726461052895,
- -0.03341522440314293,
- -0.0220642052590847,
- 0.0028277181554585695,
- 0.04756449535489082,
- -0.03737255185842514,
- 0.0016442214837297797,
- -0.013061247766017914,
- -0.07706775516271591,
- 0.035552892833948135,
- 0.011432577855885029,
- -0.027849707752466202,
- 0.06782163679599762,
- 0.002241214970126748,
- -0.04443636164069176,
- 0.06805641204118729,
- 0.036778081208467484,
- -0.06898311525583267,
- 0.07068376243114471,
- 0.10713450610637665,
- 0.07751969993114471,
- 0.007805596571415663,
- 0.0061148484237492085,
- -0.09291503578424454,
- -0.03275159001350403,
- 0.036320291459560394,
- 0.05084007605910301,
- -0.03307110443711281,
- 0.019098006188869476,
- 0.05823493376374245,
- -0.04820536822080612,
- 0.001112693571485579,
- 0.001737614395096898,
- 0.06582199782133102,
- -0.042872123420238495,
- 0.022632557898759842,
- -0.010003930889070034,
- -0.04660220816731453,
- 0.037179455161094666,
- 0.015483121387660503,
- 0.07072725892066956,
- 0.00457800505682826,
- 0.0008263222989626229,
- 0.029710231348872185,
- 0.0002343355299672112,
- -0.0022462024353444576,
- -0.002137168310582638,
- 0.07851679623126984,
- -0.021876292303204536,
- -0.07532504200935364,
- 0.04111792892217636,
- -0.05605518817901611,
- -0.014453530311584473,
- -0.11883144825696945,
- 0.19670695066452026,
- -0.03553774207830429,
- 0.02701757661998272,
- -0.047911886125802994,
- 0.03465390205383301,
- 0.12289493530988693,
- -0.04476116970181465,
- 0.04086417704820633,
- 0.005929416976869106,
- -0.03913842514157295,
- -0.004311142954975367,
- -0.018986009061336517,
- 0.005832202732563019,
- -0.036592986434698105,
- 0.05005266144871712,
- 0.10280176997184753,
- 0.008153226226568222,
- 0.0020103920251131058,
- 0.00863646063953638,
- 0.014191602356731892,
- -0.004905046429485083,
- -0.009758959524333477,
- 0.003072971012443304,
- -0.06513882428407669,
- 0.007280176505446434,
- -0.10373548418283463,
- -0.05466930568218231,
- 0.003353351727128029,
- -4.180942471023048e-33,
- 0.017500804737210274,
- 0.05305818095803261,
- 0.0513102225959301,
- 0.09038825333118439,
- 0.09288404881954193,
- -0.02618739753961563,
- 0.04253018647432327,
- -0.038843508809804916,
- -0.05603721737861633,
- -0.03227737545967102,
- -0.0296782236546278,
- -0.008326342329382896,
- -0.03221781924366951,
- 0.004149974323809147,
- -0.013266023248434067,
- 0.016677800565958023,
- -0.023054739460349083,
- -0.024922164157032967,
- -0.03280853107571602,
- -0.04525110498070717,
- 0.006451069377362728,
- 0.06319437175989151,
- -0.0036991622764617205,
- 0.045454904437065125,
- -0.0392150953412056,
- -0.027916017919778824,
- 0.00404285779222846,
- -0.01396525651216507,
- 0.00457471888512373,
- 0.037741679698228836,
- 0.012073562480509281,
- 0.015577556565403938,
- -0.01443545613437891,
- -0.054656244814395905,
- -0.033953018486499786,
- -0.018761053681373596,
- -0.05029844865202904,
- -0.06393861025571823,
- 0.009209460578858852,
- 0.09819754213094711,
- -0.003805721877142787,
- -0.0012291226303204894,
- 0.02699287422001362,
- -0.07456790655851364,
- -0.04998547583818436,
- 0.02134261466562748,
- 0.07031400501728058,
- 0.004323287401348352,
- 0.11314357072114944,
- 0.05503921955823898,
- -0.061005134135484695,
- 0.025682229548692703,
- -0.05600278452038765,
- 0.014659241773188114,
- 0.04892679303884506,
- -0.03415362909436226,
- -0.031013764441013336,
- -0.013848025351762772,
- -0.01585126854479313,
- -0.018347637727856636,
- 0.006132478825747967,
- 0.1063636913895607,
- -0.07522634416818619,
- 0.07288414239883423,
- 0.053013093769550323,
- 0.005396767519414425,
- -0.0031032320111989975,
- -0.06257294118404388,
- 0.010384619235992432,
- 0.002551276469603181,
- -0.07521776854991913,
- 0.016855226829648018,
- 0.09534633904695511,
- -0.009517664089798927,
- -0.08369485288858414,
- -0.031275879591703415,
- -0.030569108203053474,
- 0.021258970722556114,
- -0.046060960739851,
- 0.013847761787474155,
- -0.04565488547086716,
- 0.00445911381393671,
- -0.002393909962847829,
- -0.01417210977524519,
- -0.11624012887477875,
- -0.024822000414133072,
- -0.0806552916765213,
- -0.04108882322907448,
- -0.006314347963780165,
- 0.09023746103048325,
- 0.004037105944007635,
- -0.045197226107120514,
- 0.017329016700387,
- 0.0036267400719225407,
- -0.07600851356983185,
- 3.226916766025449e-33,
- -0.09418074786663055,
- -0.10492361336946487,
- 0.030899960547685623,
- 0.03492050990462303,
- 0.025203794240951538,
- -0.06870082765817642,
- -0.03321800380945206,
- 0.04534124210476875,
- 0.028209321200847626,
- -0.03656682372093201,
- -0.03947567939758301,
- -0.05697427690029144,
- 0.08135867118835449,
- 0.06222062185406685,
- 0.050440069288015366,
- -0.03158425912261009,
- -0.012821760028600693,
- -0.06640788912773132,
- -0.07598999887704849,
- -0.034353744238615036,
- -0.038407664746046066,
- -0.03380972146987915,
- -0.02929765358567238,
- -0.10879692435264587,
- 0.05804739519953728,
- 0.061092618852853775,
- 0.1392805427312851,
- 0.08671732246875763,
- -0.07709015160799026,
- -0.00951886922121048,
- -0.004774651024490595,
- 0.04454069212079048,
- -0.08620110899209976,
- -0.05898745730519295,
- -0.05356442183256149,
- 0.13493655622005463,
- 0.0032928327564150095,
- 0.03221600130200386,
- -0.020561864599585533,
- -0.01721564494073391,
- 0.08385682106018066,
- 0.06121603026986122,
- 0.08901838213205338,
- 0.025296589359641075,
- 0.013381976634263992,
- 0.08202631771564484,
- 0.026718512177467346,
- -0.0006542372284457088,
- -0.0004953829338774085,
- 0.04474738612771034,
- 0.0001955228071892634,
- -0.01119622215628624,
- -0.013287486508488655,
- -0.016369283199310303,
- 0.052239786833524704,
- 0.01160386111587286,
- 0.05083810165524483,
- -0.007492222357541323,
- 0.0543329231441021,
- 0.018850177526474,
- -0.07531264424324036,
- 0.025498660281300545,
- 0.009555723518133163,
- 0.0669371709227562,
- -0.011318677105009556,
- -0.02134392224252224,
- -0.06519865244626999,
- 0.015210720710456371,
- -0.04493090137839317,
- -0.0443565733730793,
- 0.047973304986953735,
- -0.0831112340092659,
- -0.07238540053367615,
- 0.024928992614150047,
- -0.0454186350107193,
- -0.019224725663661957,
- -0.0608174093067646,
- -0.007394433952867985,
- -0.02642565220594406,
- -0.06620605289936066,
- -0.04383119195699692,
- -0.02850060723721981,
- -0.014045284129679203,
- 0.13357090950012207,
- -0.014506234787404537,
- 0.013841329142451286,
- -0.023894721642136574,
- -0.08267287164926529,
- -0.005581021308898926,
- 0.06576061993837357,
- 0.01811709627509117,
- 0.003460742300376296,
- 0.013470898382365704,
- -0.03816002234816551,
- -0.0016636920627206564,
- -1.2461270237906774e-8,
- -0.06549828499555588,
- 0.00040456769056618214,
- -0.02897563949227333,
- -0.021302025765180588,
- 0.08652142435312271,
- 0.0834255963563919,
- 0.07229504734277725,
- -0.027336863800883293,
- -0.011538582853972912,
- 0.07994495332241058,
- -0.008317748084664345,
- -0.016627689823508263,
- 0.05968695133924484,
- 0.02502601407468319,
- 0.051999371498823166,
- -0.12363579869270325,
- 0.02413039840757847,
- 0.06220013648271561,
- -0.05436810106039047,
- 0.03106549009680748,
- 0.07102860510349274,
- 0.012948493473231792,
- 0.0289826188236475,
- -0.14340484142303467,
- -0.0068700662814080715,
- 0.11357998847961426,
- -0.02689192444086075,
- 0.0005870840977877378,
- -0.011195514351129532,
- 0.059894878417253494,
- -0.0264787208288908,
- 0.16861994564533234,
- -0.038008060306310654,
- -0.03771297261118889,
- 0.05299478769302368,
- 0.02991192229092121,
- 0.03257507458329201,
- -0.0002516120730433613,
- -0.06547662615776062,
- 0.021428516134619713,
- -0.04416210576891899,
- 0.04906122758984566,
- -0.00483645498752594,
- -0.0044838618487119675,
- -0.02858499251306057,
- -0.06052432581782341,
- 0.008575830608606339,
- 0.041018541902303696,
- 0.021582815796136856,
- 0.033431995660066605,
- 0.016699690371751785,
- -0.041911326348781586,
- 0.0987534299492836,
- 0.0011475506471469998,
- -0.04333680495619774,
- -0.05667205899953842,
- 0.007057521026581526,
- 0.02921975590288639,
- -0.01917177252471447,
- -0.020833661779761314,
- 0.12277989089488983,
- -0.05002699792385101,
- 0.08717906475067139,
- 0.0200946107506752
- ]
- },
- {
- "keyword": "writer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.025035224854946136,
- -0.01390188280493021,
- 0.03063727356493473,
- 0.10784169286489487,
- -0.06607788801193237,
- 0.03402413800358772,
- 0.09119350463151932,
- -0.021078163757920265,
- 0.04985293745994568,
- 0.042667001485824585,
- -0.0278126560151577,
- 0.03854088857769966,
- -0.013542378321290016,
- -0.01968790404498577,
- -0.038636066019535065,
- 0.022707685828208923,
- -0.011028320528566837,
- -0.05160615220665932,
- -0.0205367561429739,
- -0.05320793762803078,
- -0.0633717030286789,
- 0.07241199910640717,
- -0.030113108456134796,
- 0.010296866297721863,
- 0.06738580763339996,
- 0.00426815589889884,
- -0.01770840771496296,
- -0.028894951567053795,
- -0.042007580399513245,
- -0.05713070556521416,
- -0.08631186187267303,
- 0.0055834390223026276,
- 0.018057607114315033,
- -0.005608636420220137,
- 0.036144454032182693,
- 0.023607898503541946,
- 0.024865426123142242,
- 0.08327921479940414,
- 0.0018998852465301752,
- -0.0886392667889595,
- -0.005052580498158932,
- -0.053895238786935806,
- 0.0016134425532072783,
- 0.021416300907731056,
- 0.01556890457868576,
- -0.06642980128526688,
- -0.028302622959017754,
- -0.011549816466867924,
- -0.0740303173661232,
- 0.03781983256340027,
- -0.06127843260765076,
- -0.013391338288784027,
- -0.03630745783448219,
- -0.054015371948480606,
- 0.03373965993523598,
- -0.049163538962602615,
- -0.0440971665084362,
- 0.0854080319404602,
- -0.007048370316624641,
- -0.04853785037994385,
- 0.05146056041121483,
- 0.013149391859769821,
- -0.05860595777630806,
- 0.0198651272803545,
- 0.0973290279507637,
- 0.009457254782319069,
- -0.036019131541252136,
- 0.07633102685213089,
- -0.10010000318288803,
- -0.028561852872371674,
- 0.027785005047917366,
- 0.03794964775443077,
- 0.007327626924961805,
- 0.009682636708021164,
- 0.06583032011985779,
- -0.11115933954715729,
- 0.021108828485012054,
- -0.05603443831205368,
- 0.08221585303544998,
- -0.012407784350216389,
- 0.056712254881858826,
- -0.002431375440210104,
- -0.07676701992750168,
- 0.06519287079572678,
- 0.0054153501987457275,
- -0.010761873796582222,
- 0.008084876462817192,
- 0.07827574014663696,
- -0.0033932968508452177,
- 0.021922336891293526,
- 0.008104371838271618,
- -0.041542112827301025,
- 0.05781649425625801,
- 0.0038753480184823275,
- -0.1386394500732422,
- -0.005908102262765169,
- -0.027398206293582916,
- 0.006737763062119484,
- -0.06966522336006165,
- 0.21528498828411102,
- 0.0014235024573281407,
- 0.03453581780195236,
- 0.025403015315532684,
- 0.03361489251255989,
- 0.07631345093250275,
- -0.054320547729730606,
- -0.00310695543885231,
- 0.006751175969839096,
- -0.10397014021873474,
- -0.011223365552723408,
- 0.0004419688193593174,
- 0.052951741963624954,
- -0.05997196584939957,
- 0.06294479966163635,
- 0.11424101144075394,
- 0.021321186795830727,
- -0.033283062279224396,
- 0.006124398671090603,
- 0.0015804447466507554,
- 0.058863017708063126,
- -0.031706806272268295,
- 0.07498368620872498,
- -0.0982886552810669,
- 0.03457234427332878,
- -0.09456318616867065,
- -0.09072192758321762,
- 0.044842589646577835,
- -3.827471319730786e-33,
- 0.06653965264558792,
- 0.03810414671897888,
- 0.023580633103847504,
- 0.06339413672685623,
- 0.022021953016519547,
- 0.03052005171775818,
- 0.025065381079912186,
- 0.00778425857424736,
- -0.03399723768234253,
- -0.07051895558834076,
- 0.0034978780895471573,
- -0.03640826418995857,
- -0.014024827629327774,
- 0.11345428228378296,
- 0.006964456755667925,
- 0.038438960909843445,
- -0.023356664925813675,
- 0.014545476995408535,
- -0.01308498252183199,
- -0.012536759488284588,
- 0.0075483848340809345,
- 0.06721136718988419,
- -0.027097336947917938,
- 0.008985625579953194,
- -0.09197112917900085,
- 0.008394123986363411,
- -0.028989361599087715,
- -0.08563202619552612,
- -0.019178548827767372,
- 0.022173672914505005,
- -0.055584684014320374,
- 0.0381648875772953,
- -0.004031239543110132,
- -0.0438656285405159,
- -0.053221940994262695,
- -0.09520917385816574,
- -0.00026105003780685365,
- -0.08263151347637177,
- 0.0481315478682518,
- 0.042810842394828796,
- -0.076536163687706,
- 0.012987018562853336,
- 0.003056354122236371,
- -0.08829675614833832,
- 0.01064364705234766,
- 0.09430863708257675,
- 0.031146610155701637,
- 0.04836529865860939,
- 0.038151368498802185,
- 0.0875115692615509,
- -0.02232455089688301,
- 0.006844426039606333,
- 0.04518517851829529,
- -0.0017234280239790678,
- 0.09153524041175842,
- -0.02863665111362934,
- 0.02481747418642044,
- -0.0612790584564209,
- 0.0544293113052845,
- -0.005681175738573074,
- 0.07444747537374496,
- 0.16122905910015106,
- -0.03948913887143135,
- 0.05967339873313904,
- -0.0164317823946476,
- -0.007066898513585329,
- -0.0014690986135974526,
- -0.04806922376155853,
- 0.04770781844854355,
- -0.02509138733148575,
- -0.04044843837618828,
- -0.021671654656529427,
- -0.016488878056406975,
- 0.04862016811966896,
- -0.04775859788060188,
- 0.023204727098345757,
- -0.005888546817004681,
- -0.02289748005568981,
- -0.07321411371231079,
- 0.03680584579706192,
- -0.015210847370326519,
- 0.03871027007699013,
- -0.04297869652509689,
- -0.05167688801884651,
- -0.02440769039094448,
- -0.010949821211397648,
- -0.06098131462931633,
- -0.027428848668932915,
- 0.031426966190338135,
- 0.07019800692796707,
- -0.021475834771990776,
- -0.04338005930185318,
- 0.055214229971170425,
- -0.030710482969880104,
- -0.049641210585832596,
- 3.366324885903203e-33,
- -0.0610087513923645,
- -0.04075510427355766,
- -0.04496439918875694,
- 0.03782716765999794,
- -0.046811576932668686,
- -0.06422936171293259,
- -0.019278671592473984,
- 0.002335811033844948,
- 0.015425045974552631,
- 0.044948332011699677,
- -0.08256946504116058,
- -0.0507839061319828,
- 0.04771595075726509,
- 0.04824257642030716,
- 0.00276519195176661,
- -0.058901868760585785,
- 0.010155810043215752,
- -0.06710349023342133,
- -0.059113986790180206,
- -0.030711987987160683,
- -0.024725407361984253,
- -0.0005050690961070359,
- -0.010555052198469639,
- -0.011519304476678371,
- 0.0875362902879715,
- 0.020209673792123795,
- 0.029141418635845184,
- 0.07015622407197952,
- -0.10325773805379868,
- -0.0750042125582695,
- 0.014715122058987617,
- 0.007674126420170069,
- 0.044586993753910065,
- -0.021973637863993645,
- -0.029415413737297058,
- 0.08293920010328293,
- 0.006955768447369337,
- 0.02364172786474228,
- -0.024220259860157967,
- 0.017306899651885033,
- 0.08368756622076035,
- -0.04844573140144348,
- 0.034594014286994934,
- 0.08860719203948975,
- -0.031127827242016792,
- 0.036968909204006195,
- -0.033630453050136566,
- -0.022382648661732674,
- 0.06787066906690598,
- 0.03343607857823372,
- -0.054862141609191895,
- 0.0023562998976558447,
- 0.008542995899915695,
- -0.015917900949716568,
- 0.017421696335077286,
- -0.008766360580921173,
- 0.028127474710345268,
- -0.09223991632461548,
- 0.003821290796622634,
- 0.025144454091787338,
- 0.002546624280512333,
- 0.039308443665504456,
- 0.019722839817404747,
- 0.054704226553440094,
- 0.02596629224717617,
- -0.06630998104810715,
- -0.0024235579185187817,
- 0.023365847766399384,
- -0.06572927534580231,
- -0.010644275695085526,
- 0.057439811527729034,
- -0.04920027032494545,
- -0.0006177932373248041,
- 0.04643205925822258,
- -0.041071124374866486,
- 0.024794690310955048,
- -0.08521727472543716,
- -0.02219022996723652,
- -0.02082502841949463,
- -0.029585540294647217,
- -0.0606084018945694,
- -0.03126796707510948,
- 0.021519655361771584,
- 0.09687282145023346,
- -0.02334674447774887,
- 0.008814342319965363,
- -0.03157959133386612,
- -0.011107735335826874,
- 0.021136879920959473,
- -0.007010931149125099,
- 0.04319034144282341,
- -0.02978825569152832,
- 0.05610944330692291,
- -0.0359281525015831,
- -0.03788962960243225,
- -1.2136768035020395e-8,
- -0.07782632857561111,
- -0.07018576562404633,
- -0.0000883378743310459,
- -0.04725349321961403,
- 0.01823633909225464,
- 0.06684323400259018,
- 0.09204045683145523,
- -0.049329973757267,
- 0.03236887603998184,
- 0.10475769639015198,
- 0.05182845890522003,
- -0.0703924372792244,
- 0.03034643828868866,
- -0.016130175441503525,
- 0.07644001394510269,
- -0.10190404206514359,
- 0.10465043038129807,
- 0.0022672840859740973,
- -0.059397418051958084,
- -0.010779078118503094,
- 0.09616038203239441,
- 0.013315432704985142,
- -0.061547596007585526,
- -0.018187208101153374,
- -0.016836537048220634,
- 0.025791140273213387,
- -0.007134206127375364,
- -0.005380776710808277,
- 0.003573616035282612,
- 0.05270097777247429,
- -0.0463830940425396,
- 0.08646158874034882,
- 0.021120045334100723,
- 0.022265149280428886,
- -0.021107159554958344,
- -0.002049242379143834,
- 0.06749814003705978,
- 0.010922368615865707,
- -0.048179253935813904,
- 0.05301004648208618,
- 0.01227099820971489,
- 0.10562092065811157,
- 0.03401998430490494,
- 0.004379550460726023,
- 0.06560913473367691,
- -0.06675387918949127,
- 0.04824824631214142,
- -0.028457917273044586,
- -0.006069292780011892,
- -0.00488888518884778,
- -0.02203899435698986,
- 0.020736973732709885,
- 0.1562502235174179,
- 0.06604127585887909,
- 0.01099811214953661,
- -0.026403559371829033,
- 0.018003243952989578,
- 0.055160973221063614,
- -0.06664391607046127,
- -0.03770499303936958,
- 0.15080025792121887,
- 0.028542665764689445,
- 0.05190879479050636,
- 0.009688255377113819
- ]
- },
- {
- "keyword": "journalist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.004227322060614824,
- 0.05953573063015938,
- -0.026124509051442146,
- 0.10539550334215164,
- 0.039389196783304214,
- 0.007463280111551285,
- 0.10648413002490997,
- 0.006065046414732933,
- -0.010246740654110909,
- 0.06946279853582382,
- 0.05706381797790527,
- -0.016908811405301094,
- 0.003749291645362973,
- 0.056828081607818604,
- -0.03290008381009102,
- -0.02144872210919857,
- 0.018469391390681267,
- 0.0012118801241740584,
- -0.06911936402320862,
- -0.06625068187713623,
- -0.1429961919784546,
- -0.0058023505844175816,
- 0.04650163650512695,
- 0.006865869741886854,
- 0.017933910712599754,
- -0.04074808955192566,
- -0.05438288301229477,
- -0.029935462400317192,
- 0.012412714771926403,
- -0.020205071195960045,
- -0.003968643490225077,
- -0.05429396033287048,
- 0.033400338143110275,
- 0.07262146472930908,
- 0.033099789172410965,
- 0.019452858716249466,
- 0.04011489823460579,
- 0.012033849023282528,
- 0.046220891177654266,
- 0.05909039080142975,
- 0.04991226643323898,
- -0.08510720729827881,
- 0.0063368030823767185,
- -0.04186157509684563,
- 0.006816687062382698,
- -0.029180483892560005,
- 0.006253665778785944,
- 0.06421956419944763,
- -0.03773673623800278,
- 0.018366066738963127,
- -0.08859272301197052,
- -0.04362671449780464,
- -0.017670614644885063,
- -0.07826794683933258,
- 0.05422212928533554,
- -0.0961444303393364,
- -0.0748661607503891,
- 0.11578576266765594,
- -0.008584631606936455,
- -0.01143454946577549,
- 0.03338979557156563,
- -0.03539787232875824,
- -0.10866374522447586,
- 0.0401092991232872,
- 0.0139028150588274,
- 0.008992454037070274,
- -0.0016907601384446025,
- 0.024175042286515236,
- 0.004735006019473076,
- -0.03669936954975128,
- 0.02455988898873329,
- 0.01940612494945526,
- 0.06837790459394455,
- 0.0033319061622023582,
- 0.019020704552531242,
- -0.1041564866900444,
- 0.07504317164421082,
- 0.012289137579500675,
- 0.07643802464008331,
- 0.012725823558866978,
- 0.0959712564945221,
- -0.06037058308720589,
- -0.030511194840073586,
- 0.016636105254292488,
- -0.02606024220585823,
- -0.08089472353458405,
- -0.019076032564044,
- -0.02785332500934601,
- -0.04340144619345665,
- -0.019231650978326797,
- -0.03447461873292923,
- -0.05949874967336655,
- 0.0750172883272171,
- 0.010941154323518276,
- -0.09268408268690109,
- 0.0034362750593572855,
- -0.02685767225921154,
- 0.015522516332566738,
- -0.0426463820040226,
- 0.20679236948490143,
- 0.0049687535502016544,
- -0.002611076459288597,
- 0.01135080773383379,
- 0.03605955094099045,
- 0.03544805571436882,
- -0.11490578949451447,
- -0.07939423620700836,
- 0.021901467815041542,
- -0.052673667669296265,
- 0.026679135859012604,
- -0.015749579295516014,
- 0.08782508224248886,
- -0.03442186117172241,
- 0.016236500814557076,
- 0.09109897166490555,
- 0.03395286574959755,
- -0.04306154325604439,
- 0.06221016123890877,
- -0.06821312010288239,
- 0.019824737682938576,
- -0.03807798773050308,
- 0.03844216465950012,
- -0.13499470055103302,
- 0.018886618316173553,
- -0.09526710212230682,
- -0.026425480842590332,
- 0.11250856518745422,
- -4.784244008089463e-33,
- 0.0037837179843336344,
- 0.016712594777345657,
- 0.03140036016702652,
- 0.06674482673406601,
- 0.006253588944673538,
- 0.0745006874203682,
- -0.05412290245294571,
- -0.031327519565820694,
- 0.02418215200304985,
- -0.040565066039562225,
- 0.012315711006522179,
- 0.0112707344815135,
- -0.044637639075517654,
- 0.026908859610557556,
- 0.013788648881018162,
- 0.08801274746656418,
- -0.09080438315868378,
- 0.06536277383565903,
- -0.032928213477134705,
- -0.03228476643562317,
- 0.004398181103169918,
- -0.04355256259441376,
- 0.02517397329211235,
- 0.043102722615003586,
- 0.048027317970991135,
- -0.03726961463689804,
- 0.06743725389242172,
- -0.10616031289100647,
- -0.0007042987272143364,
- 0.010204186663031578,
- -0.026518264785408974,
- 0.06184474006295204,
- -0.0038721871096640825,
- -0.0234545711427927,
- 0.03188198059797287,
- -0.00939982756972313,
- 0.005386194214224815,
- -0.07530613988637924,
- 0.029673166573047638,
- 0.07877109199762344,
- -0.0424506701529026,
- 0.03312349319458008,
- 0.053801700472831726,
- -0.010492612607777119,
- 0.0315079502761364,
- 0.05718444287776947,
- -0.05962299928069115,
- -0.012037623673677444,
- -0.01327489223331213,
- 0.006745815277099609,
- -0.0024201925843954086,
- -0.026508113369345665,
- -0.06205324828624725,
- -0.023352451622486115,
- 0.025776803493499756,
- 0.025958174839615822,
- 0.08321632444858551,
- -0.0200253427028656,
- 0.016533931717276573,
- -0.020765282213687897,
- 0.049124736338853836,
- 0.0786142498254776,
- -0.03073926828801632,
- 0.013997453264892101,
- 0.05041741952300072,
- -0.013544078916311264,
- -0.04256921261548996,
- 0.0068708001635968685,
- 0.021573642268776894,
- 0.007864193059504032,
- 0.00632490636780858,
- 0.028090858832001686,
- -0.0005304525839164853,
- -0.01217899564653635,
- -0.09238678216934204,
- 0.0393337681889534,
- -0.015403742901980877,
- -0.0024044094607234,
- -0.042023345828056335,
- 0.060862161219120026,
- -0.00027792531182058156,
- 0.04221466928720474,
- 0.027402766048908234,
- -0.0005645911442115903,
- -0.044093623757362366,
- 0.01572464033961296,
- -0.014042478054761887,
- -0.02895631641149521,
- 0.10401376336812973,
- 0.08412367850542068,
- -0.08162101358175278,
- 0.03292180597782135,
- 0.02962307073175907,
- 0.004622300621122122,
- -0.055871717631816864,
- 3.824620011246073e-33,
- -0.1036958396434784,
- -0.01765650324523449,
- -0.040510524064302444,
- 0.05507565662264824,
- -0.006716378498822451,
- -0.025454271584749222,
- 0.012543397024273872,
- 0.035951610654592514,
- 0.016627201810479164,
- 0.06213977932929993,
- -0.050430960953235626,
- -0.12486796826124191,
- 0.019082369282841682,
- 0.026076344773173332,
- -0.01793671026825905,
- 0.035186126828193665,
- -0.028924204409122467,
- -0.06967082619667053,
- -0.10347318649291992,
- 0.0680738314986229,
- -0.0013903386425226927,
- -0.05798566713929176,
- -0.07128633558750153,
- 0.0010325416224077344,
- 0.10416734963655472,
- -0.01652306318283081,
- 0.10176268219947815,
- 0.00038709238287992775,
- -0.04836725816130638,
- -0.04731988161802292,
- -0.030437622219324112,
- 0.010976741090416908,
- -0.0008244186174124479,
- -0.013001312501728535,
- -0.044006332755088806,
- 0.17493310570716858,
- 0.06105221435427666,
- 0.01265738531947136,
- -0.02061999775469303,
- 0.02811528369784355,
- 0.047700777649879456,
- -0.018828898668289185,
- -0.0070745088160037994,
- 0.038352832198143005,
- -0.038515716791152954,
- -0.0086747445166111,
- -0.03523282706737518,
- 0.019281763583421707,
- -0.02710947021842003,
- -0.013794692233204842,
- -0.07220292091369629,
- -0.033936865627765656,
- -0.015191949903964996,
- 0.07755137979984283,
- 0.010454525239765644,
- 0.051054131239652634,
- -0.1155008003115654,
- -0.010410062968730927,
- -0.030721701681613922,
- 0.026272963732481003,
- 0.025946268811821938,
- 0.08287641406059265,
- -0.021559014916419983,
- 0.052420880645513535,
- -0.03255908563733101,
- -0.035109274089336395,
- -0.01616370491683483,
- -0.01699826307594776,
- -0.0571221262216568,
- 0.012372463010251522,
- 0.12560617923736572,
- 0.0025854737032204866,
- 0.01960388943552971,
- -0.0145851606503129,
- -0.034720320254564285,
- 0.05560804530978203,
- -0.12455447018146515,
- 0.03957289457321167,
- -0.037012986838817596,
- 0.013249613344669342,
- -0.024468470364809036,
- -0.04340609908103943,
- 0.023603638634085655,
- 0.04657082259654999,
- 0.03636263683438301,
- -0.0011742470087483525,
- 0.07353769242763519,
- -0.0178982000797987,
- -0.018360164016485214,
- -0.05536724999547005,
- 0.07517605274915695,
- -0.04691248759627342,
- 0.010101398453116417,
- -0.01717507466673851,
- 0.04633079469203949,
- -1.1513607844904072e-8,
- -0.09313227981328964,
- -0.0817490890622139,
- -0.09319378435611725,
- -0.046145208179950714,
- 0.00674236798658967,
- -0.01665698178112507,
- 0.038202520459890366,
- -0.055947694927453995,
- 0.021128907799720764,
- 0.023246461525559425,
- -0.028811676427721977,
- -0.027587899938225746,
- -0.006822444964200258,
- 0.007567725144326687,
- 0.07219571620225906,
- -0.0947965607047081,
- 0.06770875304937363,
- 0.021753257140517235,
- 0.012301554903388023,
- -0.001759891165420413,
- 0.09097188711166382,
- -0.02503534033894539,
- -0.005751973483711481,
- 0.01832985132932663,
- 0.0663854330778122,
- -0.03114294447004795,
- -0.028120383620262146,
- 0.01987234130501747,
- 0.04277968779206276,
- 0.04506981000304222,
- -0.0921824648976326,
- 0.04749351367354393,
- -0.07840094715356827,
- -0.023212190717458725,
- 0.018398554995656013,
- 0.056732527911663055,
- 0.10056991130113602,
- -0.01915563829243183,
- -0.04713505506515503,
- 0.005570399574935436,
- -0.003181277774274349,
- 0.026232292875647545,
- -0.020274199545383453,
- 0.03613285347819328,
- 0.05693230405449867,
- -0.0037730694748461246,
- 0.05495573207736015,
- -0.005035681650042534,
- 0.0526234470307827,
- -0.0016855226131156087,
- -0.019533276557922363,
- -0.04243319854140282,
- 0.17620007693767548,
- 0.028666941449046135,
- -0.011596336960792542,
- -0.010724741034209728,
- 0.028074592351913452,
- 0.014255535788834095,
- -0.03930697217583656,
- -0.00010666888556443155,
- 0.06357014179229736,
- -0.0216127447783947,
- 0.02217516303062439,
- 0.012267829850316048
- ]
- },
- {
- "keyword": "editor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.043837010860443115,
- 0.0008382200612686574,
- -0.02889901213347912,
- 0.080040343105793,
- -0.005843127146363258,
- 0.011600089259445667,
- -0.0111747020855546,
- 0.045736875385046005,
- 0.0526876263320446,
- 0.07049062848091125,
- -0.04364079609513283,
- -0.008798164315521717,
- -0.02820555306971073,
- -0.028948752209544182,
- -0.020265430212020874,
- 0.0041563487611711025,
- 0.008745218627154827,
- 0.0016668846365064383,
- -0.07687893509864807,
- -0.03086954355239868,
- -0.14786739647388458,
- 0.06597672402858734,
- 0.040085602551698685,
- 0.028017383068799973,
- 0.01653592474758625,
- 0.021540094166994095,
- -0.06250747293233871,
- 0.021857773885130882,
- -0.022202976047992706,
- -0.09892463684082031,
- -0.028882239013910294,
- -0.02200629748404026,
- 0.0784803256392479,
- 0.003009847132489085,
- -0.002771087223663926,
- 0.10394690185785294,
- 0.01206692773848772,
- 0.01627938076853752,
- 0.0006532775005325675,
- -0.066952183842659,
- -0.06261072307825089,
- -0.07016243785619736,
- -0.0018585716607049108,
- -0.03871193528175354,
- 0.03138914704322815,
- -0.06961385905742645,
- -0.02735685370862484,
- -0.05099636688828468,
- 0.013327994383871555,
- 0.058575984090566635,
- -0.0032380027696490288,
- -0.07736030220985413,
- -0.09565035998821259,
- 0.000014442782230617013,
- -0.01355094462633133,
- 0.05835060402750969,
- 0.022446241229772568,
- 0.00679034274071455,
- 0.03916524350643158,
- -0.01771950162947178,
- -0.013995707966387272,
- 0.05439111962914467,
- -0.057209644466638565,
- 0.08377321064472198,
- 0.034041233360767365,
- 0.016028350219130516,
- 0.020433861762285233,
- 0.0650346577167511,
- -0.04691873490810394,
- -0.15397855639457703,
- 0.013545067980885506,
- -0.05670146644115448,
- -0.01685984618961811,
- 0.04883670061826706,
- 0.011614781804382801,
- -0.10810655355453491,
- -0.0011989776976406574,
- -0.005046117585152388,
- 0.04690831899642944,
- -0.028160888701677322,
- 0.10845423489809036,
- -0.07610095292329788,
- -0.050712909549474716,
- 0.07049249112606049,
- 0.055284760892391205,
- 0.04481649026274681,
- 0.08117207139730453,
- 0.0020375705789774656,
- 0.030712300911545753,
- 0.06118326261639595,
- 0.008475987240672112,
- 0.015592243522405624,
- 0.10749255865812302,
- -0.031202353537082672,
- -0.06444014608860016,
- 0.0034214004408568144,
- 0.005383072886615992,
- 0.023024210706353188,
- -0.03515629842877388,
- 0.2673473358154297,
- -0.0006944004562683403,
- -0.033236317336559296,
- 0.021394390612840652,
- -0.03373614326119423,
- 0.0355226956307888,
- -0.07293219119310379,
- 0.060057204216718674,
- 0.0023334347642958164,
- -0.04160607233643532,
- -0.019849101081490517,
- -0.014243579469621181,
- -0.04040398821234703,
- -0.00446869432926178,
- -0.03961656615138054,
- 0.08874424546957016,
- 0.005074560642242432,
- 0.05035918578505516,
- -0.00023592075740452856,
- 0.034475177526474,
- 0.07771684229373932,
- -0.0066944919526577,
- 0.012823563069105148,
- -0.10471756011247635,
- 0.02919352985918522,
- -0.0696592852473259,
- -0.02738514170050621,
- 0.03882644325494766,
- -4.264213388809345e-33,
- 0.1200956404209137,
- 0.0322832353413105,
- 0.0433918796479702,
- 0.05397478863596916,
- 0.043974388390779495,
- 0.01682964898645878,
- -0.0336327999830246,
- -0.004465186968445778,
- -0.09592750668525696,
- -0.07408857345581055,
- 0.03543322905898094,
- -0.03599311411380768,
- -0.0637596994638443,
- 0.11098261177539825,
- 0.054667942225933075,
- 0.05017775297164917,
- 0.007672032807022333,
- 0.06445085257291794,
- -0.003851892426609993,
- -0.07541758567094803,
- -0.07495256513357162,
- 0.020866261795163155,
- -0.0416664257645607,
- 0.05168816074728966,
- 0.0068264855071902275,
- 0.0269259475171566,
- 0.0377354696393013,
- -0.041053950786590576,
- 0.051304273307323456,
- 0.003941760864108801,
- -0.07013221085071564,
- -0.022031575441360474,
- 0.011378759518265724,
- -0.034338124096393585,
- -0.01979384943842888,
- -0.005128030199557543,
- -0.023476438596844673,
- -0.057724133133888245,
- 0.060794126242399216,
- -0.024746643379330635,
- -0.025567684322595596,
- -0.005287747830152512,
- -0.025171294808387756,
- -0.08082927763462067,
- 0.003964743111282587,
- 0.052012309432029724,
- 0.04643968865275383,
- 0.08798319101333618,
- 0.007838978432118893,
- 0.040036898106336594,
- 0.05396207049489021,
- 0.05094197764992714,
- 0.049042437225580215,
- 0.050986167043447495,
- -0.0009351951302960515,
- 0.0526454858481884,
- 0.08737268298864365,
- -0.03356641158461571,
- 0.037587303668260574,
- 0.014648592099547386,
- 0.0912301316857338,
- 0.17872686684131622,
- -0.03172692283987999,
- 0.06214924901723862,
- 0.00985621102154255,
- 0.02405831590294838,
- 0.04311981797218323,
- 0.020344188436865807,
- 0.04336721450090408,
- -0.03029695525765419,
- -0.14985568821430206,
- -0.08406408876180649,
- 0.03579328581690788,
- 0.03668585047125816,
- -0.0010421645129099488,
- -0.0361805185675621,
- -0.0956193134188652,
- -0.040841031819581985,
- -0.034179218113422394,
- -0.0011159137357026339,
- -0.06684053689241409,
- -0.03236997127532959,
- -0.05697731301188469,
- 0.011330781504511833,
- 0.0267840176820755,
- -0.022612273693084717,
- -0.040185876190662384,
- 0.02556466870009899,
- 0.04197552427649498,
- 0.02309640496969223,
- -0.02997720241546631,
- -0.015782412141561508,
- 0.01019847672432661,
- 0.01489553414285183,
- -0.043462324887514114,
- 4.271203172092922e-33,
- -0.07196751236915588,
- -0.07309049367904663,
- -0.03719675913453102,
- 0.05211146920919418,
- -0.02813066728413105,
- -0.033645886927843094,
- -0.06816451996564865,
- 0.020075447857379913,
- 0.0494411326944828,
- -0.048719678074121475,
- 0.019971180707216263,
- -0.022948959842324257,
- 0.0648733600974083,
- -0.034690696746110916,
- -0.010236243717372417,
- -0.022318001836538315,
- 0.027739275246858597,
- -0.04002553969621658,
- -0.0667608380317688,
- -0.019922640174627304,
- 0.029700784012675285,
- -0.11482732743024826,
- 0.06624027341604233,
- 0.05577901750802994,
- 0.013966890051960945,
- -0.005196038633584976,
- 0.061030663549900055,
- 0.11428593844175339,
- -0.0009714100160636008,
- -0.05237593501806259,
- -0.0014600802678614855,
- -0.053134895861148834,
- -0.036291081458330154,
- -0.05312284454703331,
- -0.04068493843078613,
- 0.04199141636490822,
- 0.08094267547130585,
- -0.026019571349024773,
- -0.043998345732688904,
- 0.037136003375053406,
- 0.07167045772075653,
- 0.029214179143309593,
- 0.027847185730934143,
- 0.15425169467926025,
- -0.020833780989050865,
- 0.07027526199817657,
- -0.0678711086511612,
- 0.040836166590452194,
- -0.007693749852478504,
- 0.0029445260297507048,
- -0.09808427840471268,
- 0.0019800711888819933,
- -0.0012196818133816123,
- -0.05334923416376114,
- 0.016684064641594887,
- -0.0372815765440464,
- -0.03462657332420349,
- -0.01907382160425186,
- -0.016117962077260017,
- -0.0750153437256813,
- -0.09310971945524216,
- 0.039322927594184875,
- -0.011532984673976898,
- 0.03194963186979294,
- 0.012584102340042591,
- 0.04796406999230385,
- -0.014669714495539665,
- 0.06086768954992294,
- -0.05070831999182701,
- -0.0031777494587004185,
- 0.11176180839538574,
- -0.01151553075760603,
- -0.01959512196481228,
- -0.001343041891232133,
- -0.04955232888460159,
- -0.07890670746564865,
- -0.020046032965183258,
- -0.02841753326356411,
- 0.02118069864809513,
- -0.0271314550191164,
- -0.018166203051805496,
- -0.011732385493814945,
- 0.03539483621716499,
- -0.053743813186883926,
- -0.07664259523153305,
- 0.009458556771278381,
- 0.017008846625685692,
- 0.04156601428985596,
- 0.030300062149763107,
- 0.008112476207315922,
- -0.005808072164654732,
- 0.04737546667456627,
- 0.057726044207811356,
- 0.029007770121097565,
- -0.047150857746601105,
- -1.1395066223940375e-8,
- -0.0024912136141210794,
- -0.009513611905276775,
- 0.04891280457377434,
- 0.0034636545460671186,
- 0.03389398753643036,
- -0.02051292359828949,
- -0.004994571208953857,
- 0.014451554976403713,
- 0.04377516359090805,
- 0.05210026353597641,
- 0.050658028572797775,
- -0.0422067753970623,
- -0.044812239706516266,
- -0.021577375009655952,
- 0.02495264634490013,
- -0.06136225536465645,
- -0.015788329765200615,
- 0.12481505423784256,
- -0.027399154379963875,
- -0.0025151483714580536,
- 0.05662638321518898,
- 0.038807228207588196,
- -0.0016351263038814068,
- -0.04518590867519379,
- 0.04390212520956993,
- -0.027897367253899574,
- 0.014738832600414753,
- 0.021608998998999596,
- -0.03950905054807663,
- 0.07217415422201157,
- -0.024676378816366196,
- 0.039480190724134445,
- 0.025962157174944878,
- 0.013294452801346779,
- -0.06065420061349869,
- -0.027398716658353806,
- 0.051038406789302826,
- 0.012913055717945099,
- -0.033918559551239014,
- -0.007773993071168661,
- 0.0022031546104699373,
- 0.016976283863186836,
- 0.021862855181097984,
- -0.061411816626787186,
- -0.03860582783818245,
- -0.02572128176689148,
- 0.10999484360218048,
- -0.002492147497832775,
- 0.05096122622489929,
- -0.06446738541126251,
- -0.0077580842189490795,
- -0.002489172387868166,
- 0.08079828321933746,
- 0.021586578339338303,
- 0.0076370458118617535,
- 0.027862386777997017,
- 0.023084333166480064,
- -0.0003051511012017727,
- -0.042188387364149094,
- -0.015884321182966232,
- 0.045392151921987534,
- -0.009254704229533672,
- 0.056616708636283875,
- 0.0023984755389392376
- ]
- },
- {
- "keyword": "reporter",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0644441619515419,
- 0.02159535512328148,
- -0.07789590954780579,
- 0.09162432700395584,
- 0.06785207241773605,
- 0.0068939365446567535,
- 0.09660163521766663,
- 0.04269666597247124,
- 0.023606231436133385,
- 0.059994686394929886,
- 0.049359653145074844,
- 0.003476158482953906,
- 0.028522711247205734,
- 0.056181423366069794,
- -0.06424566358327866,
- -0.060533057898283005,
- 0.05070803314447403,
- -0.022090477868914604,
- -0.09721117466688156,
- -0.09703149646520615,
- -0.09125946462154388,
- 0.002987576648592949,
- 0.05220026150345802,
- 0.047922879457473755,
- 0.026118583977222443,
- -0.04540053382515907,
- -0.06109582260251045,
- 0.023419447243213654,
- 0.04776683449745178,
- -0.057785481214523315,
- -0.0005421339301392436,
- -0.06142628937959671,
- 0.023369144648313522,
- 0.08018425852060318,
- 0.038099199533462524,
- -0.021568695083260536,
- -0.010716365650296211,
- 0.00821223296225071,
- -0.012784061022102833,
- 0.02747466415166855,
- 0.02847415953874588,
- -0.07010326534509659,
- 0.008595303632318974,
- -0.01460044551640749,
- -0.01973985880613327,
- -0.011240087449550629,
- 0.017816150560975075,
- 0.03439582511782646,
- -0.029333064332604408,
- 0.03693031892180443,
- -0.04757355898618698,
- -0.07598373293876648,
- -0.0005184639012441039,
- -0.05143655464053154,
- 0.02918233908712864,
- -0.023710686713457108,
- -0.044917576014995575,
- 0.05246662721037865,
- -0.0014534445945173502,
- 0.02277740277349949,
- 0.03930896148085594,
- -0.031568821519613266,
- -0.07790516316890717,
- 0.03077821247279644,
- -0.0023618312552571297,
- 0.03865929692983627,
- 0.029194485396146774,
- 0.01797385700047016,
- 0.0002593737735878676,
- -0.0856781154870987,
- -0.057039774954319,
- 0.03762010112404823,
- 0.03192958980798721,
- 0.016110016033053398,
- 0.01007103081792593,
- -0.08519265800714493,
- 0.07688655704259872,
- 0.0178187508136034,
- 0.0995660051703453,
- 0.03426503762602806,
- 0.09774695336818695,
- -0.12736010551452637,
- 0.003714562626555562,
- 0.045340392738580704,
- -0.006835948210209608,
- -0.05969396233558655,
- 0.0589788593351841,
- 0.0064728157594799995,
- -0.04267190396785736,
- 0.01961592398583889,
- -0.08724843710660934,
- -0.03536466136574745,
- 0.09320156276226044,
- -0.00019747327314689755,
- -0.12762333452701569,
- 0.04527870565652847,
- 0.002552460180595517,
- -0.00971833523362875,
- -0.013866698369383812,
- 0.2197345346212387,
- 0.013212949968874454,
- -0.0006427585612982512,
- 0.044880617409944534,
- -0.04722173511981964,
- 0.008559445850551128,
- -0.08969531208276749,
- -0.04100550338625908,
- 0.017849532887339592,
- -0.04323839396238327,
- 0.029865676537156105,
- 0.009910337626934052,
- 0.07394175976514816,
- -0.04778928682208061,
- 0.0004424606158863753,
- 0.1016371101140976,
- 0.019302144646644592,
- -0.10122191905975342,
- 0.08233058452606201,
- -0.07763151079416275,
- -0.0010923434747382998,
- 0.013433105312287807,
- 0.032607611268758774,
- -0.15905143320560455,
- 0.05304679647088051,
- -0.015974707901477814,
- -0.01801084168255329,
- 0.107547327876091,
- -5.6349613920650455e-33,
- 0.03480080887675285,
- 0.011108637787401676,
- 0.0040028952062129974,
- 0.06111357733607292,
- 0.041976433247327805,
- 0.12649278342723846,
- -0.03271130844950676,
- -0.022361397743225098,
- -0.010326455347239971,
- -0.045686911791563034,
- -0.02313767746090889,
- -0.0264509879052639,
- -0.051962271332740784,
- -0.015821784734725952,
- -0.022174233570694923,
- 0.0838976576924324,
- -0.0661608874797821,
- 0.05235942080616951,
- -0.09547574073076248,
- 0.013453635387122631,
- -0.008247686550021172,
- 0.00008864986739354208,
- -0.029464760795235634,
- 0.04942909628152847,
- 0.01270116213709116,
- -0.008016987703740597,
- 0.05076885595917702,
- -0.03924109414219856,
- 0.003370246384292841,
- -0.010537550784647465,
- -0.04842411354184151,
- 0.041354481130838394,
- 0.023907849565148354,
- 0.029400061815977097,
- 0.0595027431845665,
- -0.11088185757398605,
- -0.046440429985523224,
- -0.09790526330471039,
- -0.0003043186734430492,
- 0.05757462605834007,
- -0.01045948639512062,
- 0.06783748418092728,
- -0.027432994917035103,
- -0.0001836865267250687,
- 0.013655075803399086,
- 0.015776192769408226,
- -0.06629052758216858,
- 0.0025134377647191286,
- 0.0010848789243027568,
- -0.021169288083910942,
- 0.0009782938286662102,
- 0.057798877358436584,
- -0.05108040198683739,
- -0.05811590328812599,
- 0.011707378551363945,
- 0.05745977535843849,
- 0.08771340548992157,
- -0.04006414860486984,
- 0.0239087026566267,
- 0.001083731884136796,
- 0.01893548294901848,
- 0.07253438234329224,
- 0.003718618769198656,
- 0.021623337641358376,
- 0.03858290612697601,
- -0.030170870944857597,
- 0.004119907505810261,
- -0.001920056063681841,
- 0.0335724838078022,
- 0.00887269340455532,
- -0.027102084830403328,
- 0.027040960267186165,
- 0.06048531457781792,
- -0.04458438977599144,
- -0.04721973091363907,
- 0.02763136848807335,
- 0.006044183392077684,
- 0.0075064972043037415,
- -0.03121347539126873,
- 0.021728092804551125,
- 0.001801316044293344,
- -0.010846458375453949,
- -0.015436774119734764,
- 0.011257744394242764,
- -0.027712203562259674,
- -0.02184750884771347,
- -0.058097876608371735,
- -0.020087631419301033,
- 0.03470708057284355,
- 0.09934982657432556,
- -0.049465350806713104,
- 0.04570798948407173,
- 0.06857632845640182,
- 0.010501275770366192,
- -0.017629677429795265,
- 4.5529133320033604e-33,
- -0.09387294203042984,
- 0.04242320731282234,
- -0.0320657342672348,
- 0.03733443468809128,
- -0.010513135232031345,
- -0.04244505614042282,
- -0.0009713115869089961,
- 0.021634569391608238,
- -0.024723544716835022,
- 0.025739761069417,
- -0.017719203606247902,
- -0.09218669682741165,
- -0.05156782269477844,
- 0.023527568206191063,
- -0.06329522281885147,
- 0.046642452478408813,
- 0.018141767010092735,
- -0.050385262817144394,
- -0.09710606932640076,
- 0.017136886715888977,
- 0.061573877930641174,
- -0.05580223351716995,
- -0.05182492733001709,
- -0.010839123278856277,
- 0.07391884922981262,
- -0.016263380646705627,
- 0.15593403577804565,
- 0.054289378225803375,
- -0.04153372719883919,
- -0.012676055543124676,
- 0.001169024733826518,
- -0.025305576622486115,
- -0.0006413183873519301,
- 0.013228509575128555,
- -0.01591247133910656,
- 0.10959109663963318,
- 0.1043412908911705,
- -0.013796264305710793,
- -0.029562974348664284,
- 0.038579437881708145,
- 0.07417616248130798,
- -0.01741986721754074,
- -0.015548259019851685,
- 0.06240106746554375,
- -0.013307454995810986,
- 0.0067914994433522224,
- -0.03866446763277054,
- 0.05126846209168434,
- -0.025545263662934303,
- -0.028774267062544823,
- -0.10043742507696152,
- -0.02507232502102852,
- -0.032897964119911194,
- 0.04440511018037796,
- -0.015666494145989418,
- 0.009768659248948097,
- -0.08993027359247208,
- -0.014319108799099922,
- -0.06129467859864235,
- 0.018156731501221657,
- 0.020929649472236633,
- 0.035159431397914886,
- -0.031665172427892685,
- 0.06492816656827927,
- -0.03882085904479027,
- -0.006471702829003334,
- 0.018754471093416214,
- -0.009288051165640354,
- -0.010716676712036133,
- 0.043760452419519424,
- 0.10360326617956161,
- -0.0036406111903488636,
- 0.043865542858839035,
- -0.04633075371384621,
- 0.03343336656689644,
- 0.04677993804216385,
- -0.1260879933834076,
- 0.023827752098441124,
- -0.0330151729285717,
- 0.06226279214024544,
- -0.09270800650119781,
- -0.04748876392841339,
- 0.0027203354984521866,
- 0.05621896684169769,
- 0.062036775052547455,
- 0.05105935409665108,
- 0.05710618197917938,
- 0.023016607388854027,
- 0.019934309646487236,
- -0.04800320416688919,
- 0.054525312036275864,
- -0.00801105611026287,
- -0.005533706396818161,
- -0.03879033401608467,
- 0.04925552010536194,
- -1.1524443621624414e-8,
- -0.12480288743972778,
- -0.06062084436416626,
- -0.10490668565034866,
- -0.027272623032331467,
- 0.004058049526065588,
- -0.008217261172831059,
- -0.013433793559670448,
- -0.04534020274877548,
- 0.04584372788667679,
- 0.06368058174848557,
- -0.03773980587720871,
- -0.049867160618305206,
- -0.01295124925673008,
- 0.01556844636797905,
- 0.10883387178182602,
- -0.06149318441748619,
- 0.006385668180882931,
- 0.025379180908203125,
- -0.011569028720259666,
- -0.013533919118344784,
- 0.054097291082143784,
- -0.04252036660909653,
- -0.009300739504396915,
- 0.06120138242840767,
- 0.021730884909629822,
- -0.03866143524646759,
- -0.011036398820579052,
- 0.0883740782737732,
- 0.0029071576427668333,
- 0.05041011795401573,
- -0.045402638614177704,
- 0.08975432068109512,
- -0.0932367816567421,
- -0.0467180535197258,
- 0.011108762584626675,
- -0.0007652468630112708,
- 0.10844945162534714,
- 0.0010137311182916164,
- 0.013453874737024307,
- 0.04787594825029373,
- -0.002367225242778659,
- 0.02274734154343605,
- -0.02678546868264675,
- 0.05351572483778,
- 0.013295438140630722,
- 0.017711589112877846,
- 0.07216182351112366,
- -0.042520251125097275,
- 0.007954087108373642,
- -0.050708502531051636,
- 0.002624237909913063,
- -0.06274910271167755,
- 0.10143624246120453,
- 0.07136218994855881,
- -0.004216959234327078,
- 0.03713802248239517,
- 0.049436360597610474,
- -0.041089899837970734,
- -0.045641012489795685,
- 0.01683199219405651,
- 0.030472785234451294,
- -0.012307979166507721,
- 0.021235404536128044,
- 0.01062068622559309
- ]
- },
- {
- "keyword": "salesperson",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08521096408367157,
- 0.03321829438209534,
- -0.03561672940850258,
- -0.045484863221645355,
- -0.1346602737903595,
- -0.01660051941871643,
- 0.08718053251504898,
- 0.019917385652661324,
- -0.020230069756507874,
- -0.07038786262273788,
- 0.016176898032426834,
- 0.005819710902869701,
- -0.010665831156075,
- -0.01708373613655567,
- 0.009029068984091282,
- 0.012162966653704643,
- 0.033097706735134125,
- 0.0692208856344223,
- 0.011821539141237736,
- -0.03084348328411579,
- -0.04513341933488846,
- 0.03155313432216644,
- -0.09839482605457306,
- -0.009581913240253925,
- -0.0011084944708272815,
- 0.00650781812146306,
- -0.0038942021783441305,
- 0.02756579779088497,
- -0.05978326499462128,
- -0.06770721822977066,
- -0.03919048234820366,
- -0.02541535161435604,
- 0.025519875809550285,
- 0.10034580528736115,
- 0.055226881057024,
- -0.0007968542631715536,
- -0.012129325419664383,
- 0.06517237424850464,
- 0.05909430980682373,
- 0.029981929808855057,
- 0.015860602259635925,
- -0.048394232988357544,
- -0.07147186994552612,
- -0.028481263667345047,
- 0.014804186299443245,
- -0.05832325667142868,
- 0.042028285562992096,
- 0.04743938520550728,
- 0.028593814000487328,
- 0.016377998515963554,
- -0.0904776006937027,
- 0.03775427117943764,
- -0.013717657886445522,
- 0.06333949416875839,
- 0.013335985131561756,
- 0.008825176395475864,
- 0.0163972619920969,
- -0.028547564521431923,
- -0.005697301123291254,
- -0.008869009092450142,
- -0.007042959798127413,
- -0.06619103252887726,
- -0.03727061673998833,
- 0.002058111596852541,
- 0.060169562697410583,
- -0.014142483472824097,
- -0.08167523890733719,
- 0.006414785981178284,
- -0.07884925603866577,
- -0.04187212884426117,
- -0.017002098262310028,
- -0.023881664499640465,
- -0.028051119297742844,
- 0.039167243987321854,
- 0.07230305671691895,
- -0.09344097971916199,
- 0.04723265767097473,
- -0.09102573245763779,
- 0.03640465438365936,
- 0.031440746039152145,
- 0.03732052817940712,
- -0.05881020054221153,
- -0.11166985332965851,
- 0.0518045611679554,
- -0.028264453634619713,
- -0.0006788434693589807,
- 0.04677020385861397,
- 0.027621235698461533,
- -0.0076911561191082,
- 0.01473119854927063,
- -0.05209697410464287,
- -0.013283289037644863,
- -0.0265716053545475,
- -0.024862127378582954,
- -0.12534989416599274,
- -0.03619031608104706,
- 0.010495749302208424,
- 0.006440859753638506,
- -0.00825190357863903,
- 0.14148537814617157,
- -0.029766328632831573,
- 0.018948309123516083,
- 0.0722973421216011,
- -0.037746232002973557,
- -0.10908173024654388,
- -0.020333124324679375,
- -0.03674614429473877,
- 0.07718536257743835,
- -0.038316644728183746,
- -0.027105433866381645,
- -0.058026500046253204,
- 0.014588780701160431,
- -0.13492844998836517,
- 0.006083501502871513,
- 0.03909016400575638,
- 0.03385194018483162,
- -0.05130758509039879,
- 0.060176532715559006,
- -0.016039907932281494,
- -0.06448927521705627,
- 0.007653192151337862,
- 0.08936676383018494,
- -0.00854063406586647,
- 0.006970004644244909,
- -0.05034082010388374,
- -0.03211770951747894,
- 0.004584793467074633,
- -3.0942636979030925e-33,
- -0.06966114044189453,
- 0.02881733328104019,
- 0.04400914907455444,
- 0.04549826681613922,
- 0.021879229694604874,
- 0.08960739523172379,
- -0.01715093106031418,
- 0.03710215538740158,
- 0.03577167168259621,
- 0.06819663196802139,
- 0.03333711996674538,
- -0.004385762847959995,
- -0.08019175380468369,
- -0.02480529062449932,
- 0.020718256011605263,
- 0.12148445844650269,
- -0.013430476188659668,
- 0.03487294912338257,
- -0.05320639908313751,
- -0.006076471414417028,
- -0.031085466966032982,
- 0.08197452127933502,
- -0.07791896909475327,
- 0.0923331081867218,
- -0.03597452491521835,
- -0.014252504333853722,
- 0.07418229430913925,
- 0.01954055204987526,
- 0.11473356187343597,
- 0.02261614240705967,
- 0.0662456527352333,
- 0.050637856125831604,
- 0.04486281797289848,
- 0.04140181094408035,
- -0.008841061033308506,
- -0.031202977523207664,
- -0.08522981405258179,
- -0.11027514189481735,
- 0.10763701051473618,
- -0.04515615850687027,
- -0.1179695650935173,
- 0.02609977126121521,
- 0.10365735739469528,
- 0.025779448449611664,
- -0.08395877480506897,
- 0.049798306077718735,
- 0.03696775436401367,
- 0.03691697120666504,
- 0.053558848798274994,
- 0.11880891025066376,
- -0.054491765797138214,
- 0.0217577014118433,
- 0.07275842130184174,
- 0.08035030961036682,
- -0.02963704615831375,
- -0.11175831407308578,
- 0.03580467402935028,
- -0.06638140976428986,
- -0.04346701502799988,
- -0.008163196966052055,
- -0.06194747984409332,
- 0.13242997229099274,
- -0.01353126298636198,
- -0.02366316318511963,
- -0.1118844747543335,
- -0.06686096638441086,
- 0.02766428329050541,
- -0.07097766548395157,
- 0.08746732771396637,
- 0.02382636070251465,
- -0.0022768944036215544,
- 0.08735732734203339,
- 0.04838946461677551,
- 0.02661767415702343,
- -0.04177152365446091,
- 0.053740691393613815,
- 0.03454442322254181,
- 0.06578199565410614,
- 0.025204554200172424,
- -0.006942536681890488,
- -0.0075743542984128,
- 0.030780907720327377,
- 0.060098521411418915,
- 0.014929707162082195,
- 0.020571688190102577,
- 0.06125091016292572,
- -0.022394314408302307,
- -0.07850177586078644,
- 0.11057917773723602,
- 0.09428123384714127,
- -0.043171241879463196,
- 0.011123581789433956,
- -0.06407549977302551,
- 0.12275520712137222,
- -0.05538364127278328,
- 1.0297613366531405e-33,
- -0.025083355605602264,
- -0.07812140136957169,
- -0.03653250262141228,
- 0.07597017288208008,
- 0.05774318054318428,
- -0.008978876285254955,
- -0.022837026044726372,
- -0.014180440455675125,
- 0.0056088767014443874,
- -0.028269676491618156,
- -0.041925933212041855,
- 0.006647512316703796,
- 0.04471900686621666,
- 0.012314436957240105,
- 0.049231842160224915,
- 0.03176020830869675,
- 0.07533621788024902,
- -0.010596152395009995,
- -0.017345594242215157,
- -0.04033384472131729,
- 0.006254412233829498,
- 0.08544634282588959,
- -0.04257939010858536,
- -0.03074176050722599,
- -0.08111968636512756,
- -0.018559612333774567,
- 0.012645761482417583,
- 0.06484010815620422,
- -0.04437388852238655,
- -0.01762353628873825,
- -0.009130129590630531,
- -0.018945788964629173,
- -0.04156358167529106,
- -0.01080939918756485,
- -0.05893445760011673,
- 0.03621399775147438,
- 0.001998384715989232,
- -0.026234237477183342,
- 0.020323188975453377,
- 0.03611770272254944,
- 0.04901827126741409,
- 0.008635454811155796,
- 0.04777705296874046,
- 0.03410903736948967,
- 0.009146678261458874,
- -0.08215639740228653,
- 0.046158358454704285,
- -0.027610966935753822,
- 0.08087893575429916,
- 0.00792496558278799,
- -0.14042285084724426,
- 0.04779544472694397,
- 0.006011004559695721,
- -0.04279724881052971,
- -0.036065392196178436,
- 0.02878025360405445,
- 0.014899480156600475,
- -0.07268548011779785,
- 0.02206345461308956,
- 0.06201332435011864,
- 0.006681375205516815,
- 0.026409436017274857,
- 0.06097472831606865,
- 0.032161012291908264,
- -0.050312090665102005,
- -0.0389053113758564,
- 0.05494513362646103,
- -0.039210978895425797,
- 0.006864404305815697,
- -0.03390507772564888,
- 0.0984702855348587,
- -0.04494985193014145,
- -0.024523014202713966,
- -0.016022570431232452,
- -0.08387592434883118,
- -0.02828698419034481,
- -0.11837252974510193,
- -0.01910588890314102,
- 0.008070481941103935,
- -0.0489819198846817,
- -0.08063598722219467,
- -0.01891503855586052,
- 0.0372953936457634,
- 0.05401696264743805,
- 0.006198448594659567,
- 0.011489481665194035,
- 0.019118741154670715,
- 0.016745662316679955,
- 0.02450207620859146,
- -0.04862823337316513,
- -0.015462496317923069,
- 0.04214860498905182,
- -0.06309732049703598,
- -0.04361268877983093,
- -0.09182309359312057,
- -1.2853064390583313e-8,
- -0.0128093920648098,
- -0.005317067727446556,
- -0.00012865979806520045,
- -0.0007867984240874648,
- 0.05040249228477478,
- -0.04613317549228668,
- 0.050786249339580536,
- 0.0002871323376893997,
- 0.018044499680399895,
- 0.009185283444821835,
- 0.011077032424509525,
- -0.030080027878284454,
- -0.00417674332857132,
- 0.02024042047560215,
- 0.04117652401328087,
- -0.05118332430720329,
- 0.05660022795200348,
- 0.05767350271344185,
- -0.04432070255279541,
- -0.06457648426294327,
- 0.08140475302934647,
- 0.01803264580667019,
- 0.041180580854415894,
- 0.03899708390235901,
- -0.03515617549419403,
- 0.011177818290889263,
- 0.008714552037417889,
- 0.03453412279486656,
- -0.03810344263911247,
- 0.053231291472911835,
- -0.032221719622612,
- 0.07934467494487762,
- -0.006260119844228029,
- -0.05062643811106682,
- 0.047029752284288406,
- 0.0005255304276943207,
- 0.00017291160474997014,
- 0.000373388989828527,
- -0.05114782974123955,
- 0.006299265194684267,
- -0.01380003709346056,
- -0.00875097792595625,
- -0.0186040997505188,
- 0.11161338537931442,
- 0.04170054942369461,
- 0.002258691703900695,
- 0.05122285336256027,
- -0.029600435867905617,
- 0.04485953599214554,
- 0.001221174723468721,
- 0.01292480994015932,
- -0.012706680223345757,
- 0.012645534239709377,
- -0.04639154300093651,
- -0.009776465594768524,
- -0.05651313066482544,
- 0.032353952527046204,
- -0.036928776651620865,
- -0.029357561841607094,
- 0.023690348491072655,
- -0.009973603300750256,
- -0.04519651085138321,
- -0.03906198590993881,
- 0.05976277217268944
- ]
- },
- {
- "keyword": "marketer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.1375158429145813,
- -0.00391894718632102,
- -0.018283121287822723,
- 0.03384048864245415,
- 0.05761200934648514,
- -0.017781207337975502,
- 0.12344702333211899,
- 0.05413178727030754,
- 0.0062472340650856495,
- -0.07006710767745972,
- 0.0022013497073203325,
- -0.04029349982738495,
- 0.03497482091188431,
- 0.010036305524408817,
- 0.03296923264861107,
- 0.00299697439186275,
- -0.022632455453276634,
- -0.01902954652905464,
- -0.04745427891612053,
- -0.06046687811613083,
- -0.18560576438903809,
- 0.007656417787075043,
- -0.0649125725030899,
- 0.011282284744083881,
- -0.037880390882492065,
- -0.011387820355594158,
- 0.0018174905562773347,
- 0.03569743409752846,
- -0.05354642868041992,
- -0.10637804120779037,
- 0.06580870598554611,
- -0.021555911749601364,
- 0.06376698613166809,
- 0.05696835368871689,
- 0.04007025808095932,
- 0.0461062490940094,
- -0.08169876784086227,
- 0.035184286534786224,
- 0.007314737420529127,
- 0.07391934096813202,
- 0.007350372150540352,
- -0.10067600011825562,
- -0.08794454485177994,
- -0.05594635754823685,
- 0.010489718057215214,
- -0.02564782090485096,
- 0.06830035150051117,
- 0.02566971629858017,
- 0.0955047607421875,
- 0.04861273244023323,
- -0.13699890673160553,
- 0.00202835607342422,
- -0.04130071401596069,
- -0.023549187928438187,
- 0.013605793938040733,
- 0.046359799802303314,
- -0.03626716509461403,
- -0.0503079779446125,
- 0.03543787822127342,
- -0.0031291674822568893,
- -0.0054421089589595795,
- -0.022096389904618263,
- -0.021297141909599304,
- 0.04835880547761917,
- 0.06501542031764984,
- -0.04060538113117218,
- -0.04400401562452316,
- 0.07502149045467377,
- -0.06924961507320404,
- -0.0722203403711319,
- 0.09075555950403214,
- -0.02700195088982582,
- -0.08173751831054688,
- -0.0153513103723526,
- -0.02705128863453865,
- -0.011288977228105068,
- -0.00740530900657177,
- -0.011019572615623474,
- 0.049134060740470886,
- 0.00839595589786768,
- 0.01934092678129673,
- -0.10916794836521149,
- -0.09246065467596054,
- 0.0028294085059314966,
- -0.0667823925614357,
- -0.061156123876571655,
- 0.013934989459812641,
- -0.027685988694429398,
- 0.11216011643409729,
- 0.023645685985684395,
- -0.01833195798099041,
- 0.0053304522298276424,
- -0.029021674767136574,
- 0.04370845481753349,
- -0.02745113894343376,
- 0.00459677679464221,
- 0.005942871328443289,
- 0.035863544791936874,
- -0.038447167724370956,
- 0.1827671378850937,
- 0.011496499180793762,
- -0.06936096400022507,
- -0.012941829860210419,
- -0.009559441357851028,
- -0.06854456663131714,
- -0.07165029644966125,
- -0.02446574904024601,
- 0.11017216742038727,
- -0.0028921312186867,
- 0.056405045092105865,
- -0.027987221255898476,
- 0.04307977482676506,
- -0.0571930892765522,
- 0.008549068123102188,
- 0.04509243369102478,
- 0.02296430617570877,
- -0.03164353221654892,
- -0.021531343460083008,
- 0.06116003915667534,
- 0.0024883821606636047,
- 0.013350892812013626,
- 0.04749687761068344,
- -0.0405399352312088,
- -0.03795192018151283,
- 0.008346015587449074,
- -0.005349636077880859,
- 0.005922782700508833,
- -3.6347666533287346e-33,
- -0.09651059657335281,
- -0.018823327496647835,
- 0.06257155537605286,
- 0.03849092870950699,
- -0.012098249047994614,
- 0.03897881507873535,
- -0.02539079450070858,
- 0.0349077545106411,
- -0.0344620943069458,
- 0.005735055543482304,
- 0.004002535715699196,
- 0.02630823664367199,
- -0.08606612682342529,
- 0.08205734193325043,
- 0.06628047674894333,
- -0.008379305712878704,
- -0.03788304328918457,
- 0.025887729600071907,
- -0.0032012753654271364,
- -0.036154795438051224,
- -0.0074790348298847675,
- 0.03363722190260887,
- -0.049417644739151,
- 0.05164103955030441,
- -0.05422079935669899,
- -0.03750116750597954,
- -0.0014019020600244403,
- -0.08623902499675751,
- 0.09574415534734726,
- 0.005121559835970402,
- 0.02611565962433815,
- -0.0011058268137276173,
- 0.02675328217446804,
- 0.009316844865679741,
- -0.027898205444216728,
- -0.012859702110290527,
- -0.07398413866758347,
- -0.0551011823117733,
- -0.010802054777741432,
- -0.02852088212966919,
- -0.06648939847946167,
- 0.02346961945295334,
- 0.017773889005184174,
- 0.06856633722782135,
- -0.019337531179189682,
- 0.049597594887018204,
- -0.03398330882191658,
- 0.01090703159570694,
- 0.015959439799189568,
- 0.016496559605002403,
- 0.033896081149578094,
- -0.028191540390253067,
- -0.062114790081977844,
- 0.062218405306339264,
- 0.03251750394701958,
- 0.0207013301551342,
- -0.06154615059494972,
- -0.051360681653022766,
- -0.053183719515800476,
- 0.004422837868332863,
- 0.015754031017422676,
- 0.07765424996614456,
- -0.04815874248743057,
- -0.030402420088648796,
- 0.009321394376456738,
- -0.014165491797029972,
- 0.07874073088169098,
- -0.016385668888688087,
- 0.005667848512530327,
- 0.06246151775121689,
- -0.010313296690583229,
- 0.023240908980369568,
- 0.07685726135969162,
- 0.14158602058887482,
- 0.0022027548402547836,
- -0.046494580805301666,
- -0.03887394443154335,
- 0.10029751062393188,
- -0.015037803910672665,
- -0.043874599039554596,
- -0.020726239308714867,
- -0.011813622899353504,
- 0.020732786506414413,
- 0.07467685639858246,
- -0.07728612422943115,
- -0.0027197611052542925,
- -0.02125616930425167,
- -0.03908459469676018,
- 0.12273697555065155,
- 0.038547586649656296,
- -0.011908365413546562,
- 0.020624639466404915,
- -0.06005274876952171,
- 0.0744321346282959,
- -0.06799140572547913,
- 1.786355051248459e-33,
- -0.10895448923110962,
- -0.027458801865577698,
- 0.024279793724417686,
- 0.12050586193799973,
- -0.00585569953545928,
- -0.04014386609196663,
- -0.0057581206783652306,
- 0.040088556706905365,
- 0.09960563480854034,
- 0.03744714707136154,
- -0.0577571839094162,
- 0.03688899800181389,
- 0.11212813854217529,
- 0.007361765950918198,
- -0.03209652006626129,
- 0.02953983098268509,
- 0.051242150366306305,
- 0.008674993179738522,
- -0.06027650460600853,
- 0.013919886201620102,
- 0.017096467316150665,
- 0.01345423050224781,
- 0.0021676502656191587,
- 0.009259326383471489,
- -0.019630499184131622,
- -0.00642938120290637,
- -0.04242132231593132,
- 0.07051116228103638,
- 0.037356119602918625,
- 0.041182614862918854,
- 0.02707003429532051,
- -0.020190972834825516,
- 0.0531846284866333,
- -0.03833571821451187,
- -0.06738871335983276,
- 0.05333380028605461,
- -0.012081660330295563,
- -0.0024423720315098763,
- -0.0046555232256650925,
- 0.09254159778356552,
- 0.04894609749317169,
- -0.03879581764340401,
- 0.0005060718394815922,
- 0.1174132451415062,
- -0.0014866027049720287,
- -0.019069410860538483,
- 0.038545627146959305,
- -0.043675746768713,
- 0.05866926908493042,
- 0.006968288216739893,
- -0.10122274607419968,
- 0.05063081532716751,
- 0.004659201949834824,
- -0.05003403499722481,
- -0.022619182243943214,
- 0.00610042130574584,
- 0.026805171743035316,
- -0.060956668108701706,
- -0.05158047005534172,
- 0.038302965462207794,
- 0.10546406358480453,
- 0.04545161500573158,
- 0.0264383926987648,
- 0.04106145724654198,
- 0.0012144108768552542,
- -0.003955527674406767,
- 0.010864147916436195,
- -0.06592469662427902,
- -0.04271741211414337,
- -0.020335575565695763,
- 0.16180792450904846,
- -0.06907286494970322,
- -0.06391559541225433,
- 0.005235601682215929,
- -0.0135679692029953,
- 0.005258926190435886,
- -0.09483711421489716,
- 0.028630472719669342,
- -0.03552570939064026,
- -0.03219449892640114,
- -0.08975069224834442,
- 0.008737966418266296,
- 0.021369367837905884,
- -0.023950595408678055,
- 0.017142729833722115,
- 0.022145003080368042,
- 0.04436378553509712,
- -0.03521179407835007,
- 0.007130978163331747,
- -0.061166808009147644,
- 0.022827675566077232,
- -0.07011678814888,
- 0.06865362077951431,
- 0.013442580588161945,
- -0.08334808796644211,
- -1.3024479272871758e-8,
- -0.0644063651561737,
- -0.016333023086190224,
- 0.036319658160209656,
- 0.006567298900336027,
- -0.011874200776219368,
- -0.02315542660653591,
- 0.0430174358189106,
- -0.0096806101500988,
- 0.048355843871831894,
- 0.08339468389749527,
- 0.0499170757830143,
- -0.006695499178022146,
- -0.08425991237163544,
- 0.050665825605392456,
- 0.053977809846401215,
- -0.016750289127230644,
- 0.03472289443016052,
- 0.04120221361517906,
- -0.03341573476791382,
- -0.011274890974164009,
- 0.032895587384700775,
- 0.08452074229717255,
- 0.05453399941325188,
- -0.06534969806671143,
- 0.03418882191181183,
- 0.050388336181640625,
- 0.03854403644800186,
- 0.04759699106216431,
- 0.022639049217104912,
- 0.03360641002655029,
- -0.02239503152668476,
- 0.07171422243118286,
- -0.0069366819225251675,
- -0.050343506038188934,
- 0.04747600480914116,
- 0.02328428439795971,
- -0.032905254513025284,
- 0.007264826446771622,
- -0.043186649680137634,
- 0.03077152743935585,
- -0.09273476153612137,
- -0.005155322141945362,
- -0.013746028766036034,
- -0.011125790886580944,
- 0.038872428238391876,
- 0.040862783789634705,
- -0.027954433113336563,
- -0.016884880140423775,
- 0.040943171828985214,
- -0.05787975341081619,
- 0.026565151289105415,
- -0.00512379314750433,
- 0.06660494953393936,
- 0.011963359080255032,
- -0.0022412824910134077,
- -0.045967888087034225,
- -0.09368608891963959,
- 0.040060706436634064,
- -0.07504347711801529,
- -0.05287269502878189,
- 0.022744517773389816,
- -0.02573631890118122,
- -0.06019534543156624,
- 0.07260604947805405
- ]
- },
- {
- "keyword": "recruiter",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.12132932990789413,
- -0.01297065056860447,
- -0.02108130045235157,
- 0.08903910219669342,
- -0.0033230092376470566,
- -0.004365060944110155,
- 0.10005702078342438,
- -0.02663390524685383,
- -0.048077475279569626,
- -0.038133323192596436,
- -0.007858479395508766,
- -0.048601698130369186,
- 0.062337107956409454,
- 0.06278884410858154,
- -0.01700069196522236,
- 0.041832078248262405,
- 0.014354596845805645,
- 0.011849653907120228,
- 0.006845178082585335,
- -0.11442364752292633,
- -0.12862715125083923,
- 0.0006943067419342697,
- -0.05513013154268265,
- 0.023211540654301643,
- 0.05888741835951805,
- -0.06359868496656418,
- 0.01336260698735714,
- 0.03152131661772728,
- -0.053169578313827515,
- -0.05331661179661751,
- 0.00789452251046896,
- 0.059620849788188934,
- 0.01768997125327587,
- 0.10545243322849274,
- 0.04804162681102753,
- 0.07022667676210403,
- -0.008261889219284058,
- 0.02206779457628727,
- -0.03549725562334061,
- 0.04255405440926552,
- -0.04581153392791748,
- -0.10199812799692154,
- -0.019104432314634323,
- 0.007858889177441597,
- -0.031992122530937195,
- -0.0054031419567763805,
- 0.0015870772767812014,
- 0.04796437546610832,
- 0.05526090785861015,
- 0.07695244252681732,
- -0.02867753989994526,
- -0.05330778285861015,
- -0.02775260992348194,
- 0.03092336282134056,
- -0.010818646289408207,
- 0.02153031900525093,
- 0.022662853822112083,
- 0.0032406821846961975,
- -0.0356745645403862,
- -0.07063791900873184,
- -0.07282766699790955,
- 0.01982812210917473,
- 0.011683006770908833,
- 0.01693977229297161,
- 0.021119238808751106,
- -0.040085650980472565,
- -0.03170135244727135,
- 0.05653929337859154,
- 0.03513152897357941,
- -0.13347959518432617,
- 0.04211869835853577,
- 0.0037777931429445744,
- -0.1279849261045456,
- 0.06017559394240379,
- 0.03718619793653488,
- 0.029718276113271713,
- 0.03870691731572151,
- 0.09441374242305756,
- 0.13719786703586578,
- -0.060127079486846924,
- -0.005451147444546223,
- -0.08961623907089233,
- -0.08139055222272873,
- 0.005932486150413752,
- -0.02434583008289337,
- -0.0027640608604997396,
- 0.014373752288520336,
- 0.016744116321206093,
- 0.06342193484306335,
- 0.060425639152526855,
- 0.001058945432305336,
- -0.06686872243881226,
- -0.0012189550325274467,
- -0.0003273901529610157,
- -0.09185086935758591,
- -0.011345868930220604,
- 0.0089478874579072,
- 0.08622781932353973,
- -0.05522140488028526,
- 0.1343154013156891,
- -0.02474885992705822,
- -0.07672154903411865,
- 0.02501653879880905,
- 0.020822733640670776,
- -0.13006174564361572,
- -0.03232460841536522,
- 0.030224954709410667,
- 0.023836825042963028,
- 0.021265970543026924,
- 0.00028680122341029346,
- -0.021346956491470337,
- 0.07604946941137314,
- -0.04018304869532585,
- 0.034412603825330734,
- 0.013309513218700886,
- 0.09311255812644958,
- -0.038514718413352966,
- 0.05775314196944237,
- 0.06943835318088531,
- 0.01435771957039833,
- 0.013116348534822464,
- 0.038870807737112045,
- -0.05385958030819893,
- -0.02902085706591606,
- -0.03428944572806358,
- -0.07518676668405533,
- -0.009190774522721767,
- -3.6275682197978866e-33,
- 0.01982712373137474,
- 0.03952527791261673,
- 0.020341914147138596,
- 0.07979746162891388,
- 0.005152510479092598,
- -0.04488210007548332,
- 0.021466894075274467,
- 0.03223120793700218,
- -0.029057851061224937,
- 0.04347936436533928,
- -0.11122477799654007,
- 0.08754237741231918,
- 0.004863600712269545,
- 0.09516312181949615,
- 0.0711088553071022,
- -0.022834692150354385,
- -0.02318756654858589,
- 0.06672031432390213,
- -0.006689581088721752,
- 0.003535885363817215,
- -0.006223623175173998,
- 0.015340208075940609,
- -0.08490882068872452,
- 0.02943887561559677,
- 0.02529960311949253,
- -0.050105925649404526,
- -0.03207586705684662,
- -0.01600152812898159,
- 0.04142962023615837,
- 0.026850400492548943,
- 0.005369132850319147,
- 0.033326614648103714,
- 0.048265378922224045,
- -0.05090814456343651,
- 0.05915984511375427,
- -0.04060720279812813,
- 0.006478028371930122,
- -0.011697940528392792,
- -0.055325329303741455,
- -0.030385201796889305,
- -0.058734457939863205,
- 0.001342950388789177,
- 0.06395605206489563,
- 0.07914330065250397,
- 0.04814411327242851,
- -0.044481027871370316,
- 0.06624235957860947,
- -0.026664771139621735,
- 0.02297346107661724,
- 0.05609600991010666,
- -0.05144288018345833,
- -0.054682161659002304,
- -0.018816368654370308,
- 0.03718302771449089,
- 0.0741090327501297,
- 0.015023238025605679,
- 0.043684735894203186,
- 0.016726836562156677,
- -0.05001237243413925,
- -0.08268153667449951,
- -0.029670944437384605,
- 0.08382746577262878,
- -0.008403416723012924,
- -0.019364681094884872,
- -0.010263564065098763,
- -0.1621170938014984,
- 0.024827320128679276,
- -0.029995422810316086,
- 0.10362773388624191,
- 0.0411546491086483,
- -0.03191542997956276,
- 0.03216453269124031,
- 0.062195006757974625,
- 0.00618410250172019,
- -0.037484098225831985,
- -0.05224321410059929,
- 0.021050753071904182,
- 0.09047947824001312,
- 0.013036287389695644,
- -0.05784042179584503,
- 0.037731606513261795,
- -0.037780411541461945,
- -0.031175879761576653,
- 0.07333929091691971,
- 0.05407770723104477,
- 0.05365723744034767,
- 0.03957178071141243,
- -0.08786492794752121,
- 0.06415823101997375,
- 0.0264756940305233,
- -0.07050252705812454,
- -0.014146304689347744,
- -0.010851600207388401,
- 0.0541386641561985,
- 0.009942530654370785,
- 2.2935496395595825e-33,
- -0.017826272174715996,
- -0.03548353537917137,
- 0.0398874506354332,
- 0.0224648118019104,
- 0.06335955858230591,
- -0.028943577781319618,
- 0.08737695217132568,
- 0.010417205281555653,
- -0.02616812288761139,
- -0.008346863090991974,
- -0.028139282017946243,
- -0.0024616140872240067,
- 0.07331138104200363,
- 0.05560773238539696,
- 0.02213870733976364,
- 0.03165319561958313,
- -0.003379271598532796,
- 0.04107745364308357,
- -0.018678972497582436,
- 0.010379945859313011,
- -0.001745428889989853,
- -0.03298713639378548,
- 0.006848480552434921,
- -0.0423940047621727,
- 0.030222544446587563,
- -0.02608201652765274,
- -0.00455990107730031,
- 0.0808127298951149,
- -0.029782436788082123,
- 0.035560522228479385,
- 0.08537664264440536,
- -0.001606889651156962,
- -0.04081884026527405,
- 0.03060256689786911,
- -0.06410226225852966,
- 0.002301020547747612,
- 0.07432522624731064,
- 0.06115350127220154,
- -0.027048103511333466,
- -0.018664641305804253,
- 0.04602371156215668,
- -0.04783438518643379,
- 0.015371697023510933,
- 0.04871569573879242,
- -0.04786013066768646,
- -0.02396036870777607,
- 0.08729274570941925,
- -0.039882268756628036,
- -0.026141230016946793,
- -0.004467157181352377,
- -0.09993139654397964,
- -0.003053580643609166,
- 0.0116135124117136,
- -0.03817630186676979,
- -0.012331198900938034,
- -0.07546669989824295,
- -0.06318433582782745,
- -0.05834560841321945,
- 0.028076039627194405,
- 0.04063020646572113,
- 0.0705958753824234,
- 0.035182978957891464,
- 0.08970688283443451,
- 0.042311783879995346,
- -0.031923215836286545,
- -0.1031535267829895,
- 0.018927905708551407,
- 0.04080386459827423,
- -0.08738153427839279,
- 0.06550464034080505,
- 0.07472004741430283,
- -0.10903923958539963,
- -0.018544021993875504,
- 0.07042862474918365,
- -0.006219773553311825,
- -0.0959894135594368,
- -0.08412904292345047,
- 0.002032490912824869,
- -0.03009740449488163,
- -0.004190368577837944,
- -0.07527829706668854,
- -0.057786550372838974,
- -0.05886026844382286,
- -0.014882409013807774,
- 0.015510179102420807,
- -0.007539091166108847,
- 0.08456213027238846,
- 0.07708747684955597,
- 0.02466835454106331,
- -0.08749564737081528,
- -0.0224135909229517,
- -0.08950958400964737,
- -0.006088011898100376,
- -0.05589977279305458,
- -0.1105940043926239,
- -1.262154558645534e-8,
- -0.021250197663903236,
- 0.03125111013650894,
- -0.011409037746489048,
- 0.003168567782267928,
- 0.022664804011583328,
- -0.05920204892754555,
- -0.05693266540765762,
- 0.02685186266899109,
- 0.05156891793012619,
- 0.03613375127315521,
- -0.0010532295564189553,
- -0.02235153689980507,
- -0.010513247922062874,
- -0.0022674929350614548,
- 0.07499334216117859,
- 0.0118605000898242,
- -0.006345298606902361,
- 0.04946662113070488,
- -0.03139616921544075,
- -0.09409525245428085,
- 0.012045364826917648,
- 0.06208111718297005,
- 0.008429162204265594,
- 0.012974207289516926,
- -0.023564813658595085,
- 0.0769922062754631,
- -0.026763413101434708,
- 0.05411175638437271,
- 0.031367141753435135,
- 0.07702707499265671,
- -0.027882752940058708,
- 0.09760327637195587,
- -0.023172909393906593,
- -0.049179088324308395,
- 0.024650417268276215,
- 0.0006139407632872462,
- -0.010231124237179756,
- -0.03386494517326355,
- -0.04338110238313675,
- -0.047171853482723236,
- -0.07636464387178421,
- 0.05665133148431778,
- 0.03401258587837219,
- 0.008160347118973732,
- 0.06468961387872696,
- 0.00021121515601407737,
- 0.01989353448152542,
- -0.049516864120960236,
- 0.007942658849060535,
- -0.07702154666185379,
- 0.044074758887290955,
- -0.042991816997528076,
- -0.010573051869869232,
- 0.08271457999944687,
- 0.009863479062914848,
- -0.04537489637732506,
- -0.01204567402601242,
- 0.006219225469976664,
- -0.023318029940128326,
- 0.027188004925847054,
- 0.02368592657148838,
- -0.04538542032241821,
- -0.06536488234996796,
- 0.00558457849547267
- ]
- },
- {
- "keyword": "agent",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04255742207169533,
- 0.012387948110699654,
- -0.074894018471241,
- -0.010848628357052803,
- -0.03202635422348976,
- -0.027968840673565865,
- 0.09935896098613739,
- -0.03520017862319946,
- -0.014600456692278385,
- -0.010509134270250797,
- 0.008741420693695545,
- -0.04793946072459221,
- 0.014620375819504261,
- 0.03701641038060188,
- 0.016925517469644547,
- 0.024272652342915535,
- 0.061138227581977844,
- 0.07264622300863266,
- -0.050031062215566635,
- -0.05696263164281845,
- -0.05595925822854042,
- 0.005610699765384197,
- -0.03490828350186348,
- -0.03372838348150253,
- -0.0591806024312973,
- 0.0007846943917684257,
- -0.0056211375631392,
- -0.010739722289144993,
- -0.022794533520936966,
- -0.09015947580337524,
- 0.03162602335214615,
- 0.0243675597012043,
- 0.00279914028942585,
- 0.04572898894548416,
- 0.039543867111206055,
- 0.060338836163282394,
- -0.061315037310123444,
- 0.0033409150782972574,
- 0.0764726772904396,
- 0.04404665529727936,
- 0.014443938620388508,
- -0.062336038798093796,
- -0.06863828748464584,
- -0.0069418479688465595,
- -0.0020370131824165583,
- -0.012364172376692295,
- -0.015494309365749359,
- -0.01718331128358841,
- 0.007740085944533348,
- 0.012762787751853466,
- -0.09582947939634323,
- 0.0033470401540398598,
- -0.0303091611713171,
- 0.02225840464234352,
- -0.012387314811348915,
- -0.05532553046941757,
- -0.0056246123276650906,
- 0.00951010175049305,
- -0.00478689419105649,
- -0.07802724838256836,
- 0.0224442295730114,
- -0.005227142013609409,
- 0.005420922767370939,
- 0.06251350045204163,
- 0.012106846086680889,
- 0.04153147339820862,
- -0.10523166507482529,
- -0.02872939594089985,
- -0.029340215027332306,
- -0.1015411838889122,
- -0.001897844485938549,
- -0.03983280435204506,
- -0.004329315852373838,
- -0.06592104583978653,
- 0.01096492912620306,
- -0.07610151916742325,
- 0.030674424022436142,
- 0.014256451278924942,
- 0.11568298935890198,
- -0.01570817269384861,
- 0.013072527013719082,
- -0.07498663663864136,
- -0.05876047536730766,
- 0.08919677138328552,
- -0.03619808331131935,
- 0.01816611737012863,
- 0.048081327229738235,
- 0.030254710465669632,
- 0.033112525939941406,
- 0.04028003290295601,
- 0.02506229467689991,
- 0.00771687924861908,
- 0.08825577795505524,
- 0.04444506764411926,
- -0.006974473595619202,
- 0.09659329056739807,
- -0.06935421377420425,
- -0.033449623733758926,
- -0.08497080951929092,
- 0.2541396915912628,
- -0.020804667845368385,
- -0.023792555555701256,
- -0.07770787179470062,
- 0.029653524979948997,
- -0.010379723273217678,
- -0.02264368161559105,
- 0.0038461952935904264,
- 0.01650608517229557,
- 0.03422681242227554,
- -0.05221930518746376,
- -0.04051071032881737,
- 0.00015989149687811732,
- -0.03218093141913414,
- 0.0635003000497818,
- 0.08570553362369537,
- 0.0182020403444767,
- 0.01719609647989273,
- 0.09165681153535843,
- 0.02510356344282627,
- -0.065448097884655,
- 0.10763022303581238,
- 0.02237461879849434,
- -0.049609217792749405,
- 0.026563189923763275,
- 0.07192709296941757,
- 0.05310757830739021,
- 0.055564381182193756,
- -5.561636258512659e-33,
- 0.01626778207719326,
- 0.05436079949140549,
- 0.051304202526807785,
- 0.013613943941891193,
- 0.02030497044324875,
- 0.031194424256682396,
- 0.05899707227945328,
- 0.036143649369478226,
- -0.04274093732237816,
- 0.030819108709692955,
- 0.024827491492033005,
- 0.04179425910115242,
- -0.0976148471236229,
- 0.05151519924402237,
- -0.017173608765006065,
- 0.06658203154802322,
- -0.04923001304268837,
- 0.041129086166620255,
- -0.020961899310350418,
- -0.04133806750178337,
- -0.020053105428814888,
- 0.09224972128868103,
- -0.00809385348111391,
- 0.0660451278090477,
- -0.013426735997200012,
- 0.017380625009536743,
- -0.026802506297826767,
- -0.07290323823690414,
- 0.10870359092950821,
- 0.011544509790837765,
- 0.021955467760562897,
- 0.10413072258234024,
- -0.02949652634561062,
- 0.07430823892354965,
- -0.06974926590919495,
- -0.013165940530598164,
- -0.09622227400541306,
- -0.08662322163581848,
- 0.005862363614141941,
- 0.009273561649024487,
- -0.06519472599029541,
- 0.012740196660161018,
- 0.10029535740613937,
- -0.05896417796611786,
- -0.047618720680475235,
- -0.0720415860414505,
- 0.005696999374777079,
- 0.02219267003238201,
- 0.0725204274058342,
- 0.06974434107542038,
- 0.015770504251122475,
- 0.011415758170187473,
- 0.052715081721544266,
- 0.02654147706925869,
- 0.05644647777080536,
- -0.011805354617536068,
- 0.04747633635997772,
- 0.0073604583740234375,
- -0.018596921116113663,
- -0.00816340185701847,
- 0.024841753765940666,
- 0.047158896923065186,
- 0.013501716777682304,
- 0.07859092205762863,
- 0.008124747313559055,
- -0.08516975492238998,
- 0.019710075110197067,
- 0.05204320698976517,
- 0.047205373644828796,
- 0.033616259694099426,
- -0.03616372495889664,
- 0.06642158329486847,
- 0.060889240354299545,
- 0.01226201094686985,
- -0.06274296343326569,
- -0.04155561327934265,
- 0.00817555096000433,
- -0.028575636446475983,
- -0.03356437757611275,
- -0.0706474706530571,
- -0.046817343682050705,
- 0.030303744599223137,
- -0.025931205600500107,
- 0.0028213136829435825,
- 0.02120284177362919,
- -0.0039231060072779655,
- -0.06345552206039429,
- -0.07816154509782791,
- 0.0855560302734375,
- 0.08951103687286377,
- -0.09268359839916229,
- -0.00024268294509965926,
- -0.07370737940073013,
- 0.12871628999710083,
- -0.007094862870872021,
- 3.8603998552331956e-33,
- -0.04085481911897659,
- -0.08963122963905334,
- -0.0768539234995842,
- 0.042939335107803345,
- 0.030645061284303665,
- -0.06776084750890732,
- -0.020643314346671104,
- -0.009161379188299179,
- 0.04358317330479622,
- 0.04028051346540451,
- -0.05423255264759064,
- -0.008600068278610706,
- 0.05681906268000603,
- 0.005508136935532093,
- 0.04021917283535004,
- -0.0381319560110569,
- 0.06080198287963867,
- -0.05725570023059845,
- 0.00004868457472184673,
- -0.03715703636407852,
- -0.02205362170934677,
- 0.021737633273005486,
- -0.08224530518054962,
- -0.008173421956598759,
- 0.01944282278418541,
- 0.029743574559688568,
- 0.0729295015335083,
- 0.08082910627126694,
- 0.019072512164711952,
- -0.004945563618093729,
- 0.00526784174144268,
- -0.04073323309421539,
- -0.03155600652098656,
- 0.0022214585915207863,
- -0.02380305901169777,
- 0.14233878254890442,
- -0.004422646947205067,
- 0.025506947189569473,
- -0.058834258466959,
- 0.011832737363874912,
- 0.053949713706970215,
- -0.08442582190036774,
- -0.019574999809265137,
- 0.0481756329536438,
- -0.02495918795466423,
- -0.0020092297345399857,
- 0.023502470925450325,
- 0.035693902522325516,
- 0.006063353270292282,
- 0.03230372071266174,
- -0.08091125637292862,
- 0.03915255516767502,
- -0.044048044830560684,
- -0.05508323013782501,
- -0.06460987031459808,
- 0.05478707328438759,
- -0.004641318693757057,
- -0.001994532300159335,
- 0.026717202737927437,
- -0.025765404105186462,
- 0.004700746387243271,
- 0.07382778078317642,
- -0.010934892110526562,
- 0.08035743236541748,
- -0.07956905663013458,
- 0.022057417780160904,
- -0.048241499811410904,
- -0.0017127875471487641,
- 0.04012387618422508,
- -0.0361943282186985,
- 0.12183292210102081,
- -0.030906319618225098,
- -0.09726526588201523,
- 0.05574103444814682,
- 0.00206379615701735,
- -0.0029334062710404396,
- -0.11430327594280243,
- -0.0209067240357399,
- 0.012568063102662563,
- -0.0737389624118805,
- -0.09609979391098022,
- 0.007043023128062487,
- 0.007199948187917471,
- 0.03449144959449768,
- -0.02507120370864868,
- -0.007318903226405382,
- -0.005130460020154715,
- 0.028962086886167526,
- 0.02321932278573513,
- 0.008103840053081512,
- 0.025610515847802162,
- -0.005404573865234852,
- 0.004000985063612461,
- -0.02525150403380394,
- -0.09531817585229874,
- -1.2348952083129916e-8,
- -0.02456272579729557,
- 0.02182796038687229,
- 0.06540746241807938,
- -0.055870670825242996,
- 0.03967379033565521,
- -0.0774926021695137,
- 0.035438839346170425,
- -0.020487502217292786,
- 0.011297907680273056,
- 0.02673102542757988,
- 0.04958276078104973,
- -0.04945220798254013,
- 0.06200529634952545,
- 0.036573998630046844,
- 0.08111947029829025,
- -0.028267282992601395,
- -0.011599291115999222,
- 0.012447471730411053,
- -0.04648568108677864,
- -0.03533680737018585,
- 0.005789085291326046,
- -0.006953107193112373,
- -0.021969739347696304,
- -0.015865778550505638,
- -0.025776995345950127,
- -0.025559525936841965,
- -0.06973053514957428,
- 0.02893437258899212,
- -0.006751923821866512,
- 0.13385193049907684,
- -0.01469837874174118,
- 0.0479024201631546,
- -0.0074818795546889305,
- -0.05419972538948059,
- -0.008819814771413803,
- 0.03885785490274429,
- 0.014293993823230267,
- -0.12012152373790741,
- 0.01551835797727108,
- -0.06291455030441284,
- -0.044507965445518494,
- 0.022516531869769096,
- 0.02226957678794861,
- -0.05819261446595192,
- 0.07719377428293228,
- 0.0064043621532619,
- 0.015553656034171581,
- -0.08349868655204773,
- 0.10200463235378265,
- -0.07363041490316391,
- -0.07938443869352341,
- -0.021969912573695183,
- -0.028459154069423676,
- 0.07478968054056168,
- 0.06758620589971542,
- -0.06713388860225677,
- 0.05193318426609039,
- -0.04151361435651779,
- 0.006257017143070698,
- 0.02301083877682686,
- 0.0033716897014528513,
- 0.013734180480241776,
- 0.03484390303492546,
- -0.021438555791974068
- ]
- },
- {
- "keyword": "friend",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08534315228462219,
- 0.06054271012544632,
- 0.008781787939369678,
- 0.009744209237396717,
- 0.008883388713002205,
- -0.07812629640102386,
- 0.08771876990795135,
- 0.14253133535385132,
- 0.015797084197402,
- -0.04087870940566063,
- -0.030827568843960762,
- -0.010632317513227463,
- 0.027826135978102684,
- 0.03744177147746086,
- -0.02610953152179718,
- -0.00021102688333485276,
- -0.08547264337539673,
- -0.04611372947692871,
- -0.05122240632772446,
- -0.011040917597711086,
- -0.01647535338997841,
- 0.02804538793861866,
- 0.05675598606467247,
- 0.009388078935444355,
- 0.013184424489736557,
- 0.023570531979203224,
- -0.006022648885846138,
- 0.054847490042448044,
- 0.043171223253011703,
- -0.052153971046209335,
- -0.09121372550725937,
- 0.014641433022916317,
- -0.010957948863506317,
- 0.04712719842791557,
- 0.012807667255401611,
- -0.010755308903753757,
- -0.020845988765358925,
- -0.00539653655141592,
- 0.020305823534727097,
- -0.007973987609148026,
- 0.053576141595840454,
- -0.0006988345412537456,
- 0.013453567400574684,
- 0.0397506020963192,
- 0.04218142479658127,
- 0.0790511816740036,
- 0.05655166506767273,
- -0.01731147989630699,
- 0.04738597944378853,
- -0.026340104639530182,
- -0.024410879239439964,
- 0.005324905272573233,
- -0.08148041367530823,
- -0.030457179993391037,
- -0.016519568860530853,
- 0.017349371686577797,
- -0.06301882117986679,
- -0.01442765910178423,
- -0.03191744163632393,
- -0.10962576419115067,
- 0.03729865327477455,
- -0.014972160570323467,
- -0.061067163944244385,
- 0.002751557854935527,
- -0.004708245396614075,
- 0.09020718932151794,
- -0.019456569105386734,
- 0.06985516101121902,
- -0.07413184642791748,
- 0.02092989906668663,
- -0.04018101841211319,
- 0.031906209886074066,
- 0.07618369162082672,
- -0.0212172232568264,
- -0.03455237299203873,
- -0.049635183066129684,
- 0.08272866159677505,
- -0.04179398715496063,
- 0.030935484915971756,
- 0.019579721614718437,
- -0.032622795552015305,
- 0.04028921201825142,
- -0.061764080077409744,
- 0.025397304445505142,
- -0.07214517146348953,
- -0.06068434938788414,
- 0.04272518306970596,
- -0.07379812747240067,
- -0.04404790326952934,
- 0.0026159901171922684,
- 0.009127211757004261,
- 0.07814721018075943,
- 0.05273716524243355,
- -0.03825501352548599,
- -0.008863985538482666,
- -0.056392598897218704,
- 0.007838865742087364,
- 0.01498402189463377,
- -0.19892548024654388,
- 0.18877992033958435,
- -0.006904203910380602,
- 0.0622841976583004,
- 0.0754057765007019,
- -0.05582307651638985,
- 0.001992926700040698,
- -0.05401206016540527,
- -0.06955190002918243,
- 0.10742281377315521,
- -0.0810735747218132,
- -0.04007760435342789,
- -0.02437569946050644,
- -0.03631168603897095,
- 0.048227034509181976,
- 0.03556002676486969,
- 0.011352024041116238,
- 0.0880168080329895,
- -0.027807679027318954,
- 0.032851699739694595,
- -0.01781940460205078,
- -0.04502997174859047,
- 0.011704755015671253,
- 0.06933676451444626,
- 0.031671032309532166,
- 0.032474830746650696,
- 0.03039625473320484,
- -0.14211755990982056,
- -0.01159417163580656,
- -3.7845790002372196e-33,
- 0.044254135340452194,
- -0.018188711255788803,
- 0.01803772896528244,
- 0.0190880186855793,
- -0.0076321945525705814,
- 0.013483325019478798,
- 0.057802896946668625,
- 0.026648156344890594,
- -0.04344251751899719,
- -0.019553234800696373,
- 0.0388776957988739,
- -0.04675395041704178,
- -0.1321355253458023,
- -0.000107815649244003,
- 0.07053446769714355,
- 0.044233258813619614,
- 0.0032228606287389994,
- 0.1337026059627533,
- -0.02931685745716095,
- -0.03023364581167698,
- 0.03521575778722763,
- -0.076473169028759,
- -0.014314151369035244,
- -0.005437255371361971,
- -0.03841252624988556,
- 0.002509277081117034,
- 0.020458968356251717,
- -0.03786107897758484,
- 0.03155102580785751,
- 0.02619505114853382,
- 0.025206364691257477,
- 0.0149231543764472,
- -0.04312145709991455,
- 0.03255217522382736,
- 0.0023002128582447767,
- -0.01729649119079113,
- 0.00013861815386917442,
- -0.11392170190811157,
- -0.06794770807027817,
- 0.030047524720430374,
- 0.02278696559369564,
- 0.08623341470956802,
- -0.05134054645895958,
- 0.019366329535841942,
- 0.045770980417728424,
- 0.028785213828086853,
- 0.016873782500624657,
- 0.006277983542531729,
- -0.09589716047048569,
- -0.016908863559365273,
- 0.0024543271865695715,
- 0.0016469977563247085,
- -0.016687721014022827,
- 0.01998056471347809,
- -0.08615117520093918,
- -0.024601908400654793,
- 0.051822204142808914,
- -0.014554754830896854,
- -0.06522245705127716,
- 0.025340981781482697,
- -0.02659464254975319,
- 0.0882449671626091,
- -0.04507160559296608,
- -0.15306110680103302,
- -0.011113204061985016,
- -0.006394135765731335,
- 0.0329248271882534,
- -0.09572434425354004,
- 0.05559162050485611,
- -0.03748879209160805,
- -0.018231742084026337,
- 0.03656172752380371,
- 0.03287997096776962,
- -0.06529640406370163,
- -0.013044311664998531,
- -0.025156643241643906,
- 0.005888587795197964,
- -0.010956238955259323,
- 0.0034108818508684635,
- 0.042704988270998,
- 0.008820019662380219,
- -0.0715591236948967,
- 0.010288636200129986,
- 0.002155772177502513,
- 0.010951230302453041,
- 0.022181697189807892,
- 0.013686145655810833,
- -0.084264375269413,
- -0.002973941620439291,
- 0.03345790505409241,
- -0.06838110089302063,
- 0.02704533375799656,
- 0.07961821556091309,
- 0.06554508209228516,
- -0.006656069774180651,
- 2.3603658404862752e-33,
- -0.029023898765444756,
- 0.0003959753375966102,
- -0.02002524584531784,
- 0.02513301372528076,
- 0.05216796323657036,
- 0.04496428370475769,
- -0.030099283903837204,
- 0.07682603597640991,
- -0.029411345720291138,
- 0.05587294325232506,
- 0.012143963016569614,
- -0.029754839837551117,
- 0.051972899585962296,
- -0.007513417862355709,
- 0.021092476323246956,
- 0.07844278961420059,
- 0.02790127508342266,
- 0.025202423334121704,
- 0.024993831291794777,
- 0.006644695997238159,
- -0.08055780082941055,
- -0.050784461200237274,
- -0.019285494461655617,
- 0.0760343074798584,
- -0.06858066469430923,
- 0.01066660787910223,
- 0.01543897483497858,
- -0.05959207937121391,
- 0.029126392677426338,
- 0.022464048117399216,
- 0.10270355641841888,
- 0.00940104853361845,
- -0.15492768585681915,
- -0.0759706199169159,
- -0.04024762660264969,
- 0.14298304915428162,
- -0.014028823003172874,
- 0.026880823075771332,
- -0.017042655497789383,
- -0.03559285029768944,
- -0.020543940365314484,
- 0.028285838663578033,
- -0.008769892156124115,
- 0.02064845897257328,
- -0.060484420508146286,
- -0.026801155880093575,
- 0.08095788955688477,
- 0.03965624049305916,
- 0.03483195975422859,
- 0.056259073317050934,
- -0.038806214928627014,
- -0.039050254970788956,
- -0.024627970531582832,
- -0.004860811401158571,
- 0.06283624470233917,
- -0.03483008220791817,
- -0.029256772249937057,
- -0.02207859605550766,
- -0.010816006921231747,
- 0.06538274884223938,
- 0.01710343547165394,
- 0.023709287866950035,
- -0.03829313442111015,
- 0.08902681618928909,
- 0.039646852761507034,
- 0.04583306238055229,
- -0.038228508085012436,
- -0.032802242785692215,
- 0.07079574465751648,
- 0.03376525640487671,
- -0.05310501530766487,
- -0.03044912964105606,
- -0.0464136078953743,
- 0.08059998601675034,
- -0.050809044390916824,
- -0.0207668449729681,
- 0.017663905397057533,
- 0.05407458171248436,
- -0.02869311161339283,
- 0.06334404647350311,
- -0.024524744600057602,
- 0.012205073609948158,
- -0.0047856601886451244,
- 0.06393890827894211,
- -0.05192490667104721,
- -0.06513077020645142,
- 0.0021464689634740353,
- 0.10203482210636139,
- 0.024189582094550133,
- 0.04448510333895683,
- -0.016294756904244423,
- 0.030139708891510963,
- -0.055756792426109314,
- -0.0654822438955307,
- -0.021997183561325073,
- -1.360046120169045e-8,
- 0.007384477183222771,
- 0.012778463773429394,
- -0.0079088369384408,
- -0.05414357781410217,
- 0.04945831745862961,
- 0.07070278376340866,
- 0.020700257271528244,
- -0.017144769430160522,
- 0.048182353377342224,
- 0.09518466144800186,
- 0.13137930631637573,
- 0.020897207781672478,
- -0.014704758301377296,
- 0.032928626984357834,
- 0.003738868050277233,
- -0.038075368851423264,
- 0.032357461750507355,
- 0.03277092054486275,
- -0.0013158892979845405,
- 0.06426481902599335,
- -0.08376815170049667,
- -0.0021847588941454887,
- 0.01610158197581768,
- 0.039933618158102036,
- 0.04958700016140938,
- -0.030067982152104378,
- 0.03152045980095863,
- 0.058213010430336,
- -0.03816404938697815,
- 0.005714619532227516,
- -0.032653968781232834,
- 0.0836632251739502,
- 0.00972321443259716,
- -0.02951779216527939,
- -0.012481693178415298,
- 0.03888995572924614,
- -0.06560005992650986,
- -0.05664859712123871,
- -0.00928393192589283,
- 0.09419280290603638,
- 0.005575505550950766,
- -0.05599723011255264,
- 0.07307004928588867,
- -0.034193214029073715,
- -0.05372345447540283,
- -0.0147708086296916,
- 0.050129275768995285,
- -0.1029757559299469,
- -0.031105829402804375,
- -0.05449409410357475,
- 0.018073709681630135,
- -0.029582945629954338,
- -0.019983671605587006,
- 0.0635761246085167,
- 0.06680607050657272,
- -0.036238253116607666,
- 0.006669573485851288,
- 0.033258840441703796,
- 0.008577533066272736,
- -0.013017376884818077,
- 0.1121017262339592,
- -0.010524294339120388,
- -0.08148796111345291,
- 0.08817946165800095
- ]
- },
- {
- "keyword": "colleague",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.008370020426809788,
- 0.07178471982479095,
- -0.04299984872341156,
- 0.003190318588167429,
- -0.040298376232385635,
- -0.037835925817489624,
- 0.061593204736709595,
- 0.024646295234560966,
- 0.022971825674176216,
- -0.020068230107426643,
- 0.00602834764868021,
- 0.015599874779582024,
- 0.01230947207659483,
- 0.029018480330705643,
- -0.03712739422917366,
- 0.020671216771006584,
- -0.01424902118742466,
- 0.008061418309807777,
- -0.05362784117460251,
- -0.051929738372564316,
- -0.16504397988319397,
- -0.04217151924967766,
- -0.03712238371372223,
- -0.01412806287407875,
- 0.07975684851408005,
- -0.03375748172402382,
- 0.02784140594303608,
- 0.019426899030804634,
- -0.04919537156820297,
- -0.037073951214551926,
- -0.04669356346130371,
- -0.012779448181390762,
- 0.0020874107722193003,
- 0.014770758338272572,
- -0.02227276749908924,
- 0.043832357972860336,
- 0.008526557125151157,
- 0.1223282441496849,
- 0.06110826134681702,
- -0.017247939482331276,
- -0.03537684679031372,
- -0.10286351293325424,
- 0.012191319838166237,
- -0.03703722357749939,
- -0.013528641313314438,
- 0.035573579370975494,
- 0.027930419892072678,
- -0.020226063206791878,
- -0.017034271731972694,
- -0.014190622605383396,
- -0.05613135173916817,
- 0.014029103331267834,
- -0.00755207147449255,
- 0.07320952415466309,
- 0.05047810450196266,
- -0.02552187442779541,
- 0.03847772255539894,
- -0.013575087301433086,
- 0.013520746491849422,
- 0.0041564395651221275,
- 0.005336208734661341,
- -0.041222162544727325,
- -0.09513827413320541,
- 0.02628861740231514,
- 0.01497387234121561,
- -0.040685247629880905,
- -0.04434603825211525,
- 0.0005795963807031512,
- -0.05230897292494774,
- 0.015611303970217705,
- 0.002496243454515934,
- -0.013982119970023632,
- 0.015068566426634789,
- 0.020728571340441704,
- 0.09143595397472382,
- -0.03734301030635834,
- 0.02228756994009018,
- 0.012742165476083755,
- 0.11241292953491211,
- -0.05702611058950424,
- -0.0020706895738840103,
- 0.028090903535485268,
- -0.0016743037849664688,
- 0.06358502805233002,
- -0.01593482494354248,
- 0.02270078845322132,
- 0.05297570675611496,
- 0.02095809020102024,
- -0.011618857271969318,
- -0.019816763699054718,
- -0.07172234356403351,
- 0.04401654005050659,
- 0.0948520079255104,
- -0.03215700387954712,
- -0.07703349739313126,
- -0.007579560857266188,
- -0.03614741936326027,
- 0.053963832557201385,
- -0.16697929799556732,
- 0.26670733094215393,
- -0.02581169828772545,
- 0.019731134176254272,
- 0.05224726349115372,
- 0.022107675671577454,
- 0.006732387002557516,
- 0.041011128574609756,
- 0.018023619428277016,
- 0.020132971927523613,
- 0.024227797985076904,
- -0.06221669167280197,
- -0.02984248474240303,
- -0.012882320210337639,
- -0.18749764561653137,
- -0.05552027001976967,
- 0.046217549592256546,
- 0.006162506993860006,
- -0.007795752491801977,
- 0.031683679670095444,
- -0.02711547538638115,
- -0.05763596296310425,
- -0.00964388158172369,
- 0.03440680354833603,
- -0.09413737058639526,
- -0.001032432890497148,
- -0.0636410266160965,
- -0.02330337092280388,
- 0.056033581495285034,
- -4.943445983467126e-33,
- 0.04667746275663376,
- 0.0690692812204361,
- 0.023743044584989548,
- 0.0069255889393389225,
- 0.014717156067490578,
- 0.03841857984662056,
- -0.014097754843533039,
- 0.027974963188171387,
- -0.05339108780026436,
- -0.05766779184341431,
- -0.04147619754076004,
- 0.0011633498361334205,
- 0.022592628374695778,
- -0.004212717991322279,
- -0.008995374664664268,
- 0.042483579367399216,
- 0.05752824619412422,
- 0.051061153411865234,
- -0.062346529215574265,
- -0.005029802210628986,
- 0.0014807150000706315,
- 0.008685838431119919,
- -0.044845063239336014,
- 0.058322858065366745,
- -0.03814750909805298,
- -0.059454940259456635,
- 0.05078526586294174,
- -0.03872668370604515,
- 0.07810201495885849,
- 0.04623924195766449,
- 0.02842656522989273,
- 0.09635259211063385,
- 0.006390383467078209,
- -0.004057592246681452,
- -0.02410517819225788,
- 0.013117816299200058,
- 0.00900016725063324,
- -0.06663873046636581,
- 0.044402290135622025,
- -0.051724061369895935,
- 0.009440500289201736,
- 0.013943860307335854,
- 0.07149631530046463,
- -0.06536243110895157,
- -0.07004673779010773,
- -0.007386649958789349,
- 0.07546667009592056,
- 0.007930274121463299,
- -0.0031801278237253428,
- 0.0854276642203331,
- 0.02474929578602314,
- 0.020365048199892044,
- 0.0258406363427639,
- 0.11596070975065231,
- -0.0068203117698431015,
- -0.037442777305841446,
- 0.08035223931074142,
- -0.006370967719703913,
- 0.030297523364424706,
- -0.04345916956663132,
- 0.004560825880616903,
- 0.0880243107676506,
- -0.06936104595661163,
- 0.0977526530623436,
- -0.02623351663351059,
- -0.053290728479623795,
- -0.05167343094944954,
- -0.05088362470269203,
- 0.08647631108760834,
- -0.007698395289480686,
- -0.025451762601733208,
- 0.07732352614402771,
- -0.044111352413892746,
- -0.010708383284509182,
- -0.04875605180859566,
- 0.051237791776657104,
- -0.05234875530004501,
- -0.010147357359528542,
- 0.017775921151041985,
- 0.011999838054180145,
- -0.039918720722198486,
- -0.009828474372625351,
- 0.031226303428411484,
- -0.0018684585811570287,
- -0.10143478214740753,
- 0.06305773556232452,
- -0.07918637245893478,
- -0.006502432748675346,
- 0.1043148934841156,
- 0.1172468513250351,
- -0.0637599378824234,
- 0.0016865646466612816,
- 0.04356158524751663,
- 0.08139555156230927,
- 0.004660000093281269,
- 3.3884925053078035e-33,
- -0.00019265672017354518,
- -0.0046265609562397,
- -0.03029283881187439,
- 0.04298320412635803,
- 0.14541815221309662,
- -0.007623900193721056,
- 0.0405055470764637,
- -0.053288478404283524,
- -0.08462336659431458,
- 0.026623981073498726,
- -0.007890804670751095,
- -0.08304191380739212,
- 0.049873143434524536,
- 0.025467881932854652,
- 0.1478939801454544,
- 0.052194830030202866,
- -0.02154655195772648,
- -0.042825762182474136,
- 0.004251218866556883,
- 0.005604400299489498,
- -0.049773551523685455,
- -0.062175069004297256,
- 0.00904378853738308,
- -0.03952440246939659,
- -0.00923437625169754,
- 0.013240241445600986,
- 0.09028296172618866,
- -0.0067000919952988625,
- -0.02434745617210865,
- -0.05334799364209175,
- -0.09273151308298111,
- -0.030823132023215294,
- -0.059132255613803864,
- -0.044820453971624374,
- 0.03640779107809067,
- 0.14936059713363647,
- -0.08617488294839859,
- -0.035999737679958344,
- -0.03434300422668457,
- -0.005635734647512436,
- 0.015218524262309074,
- 0.038342274725437164,
- -0.00002825561023200862,
- 0.10565841943025589,
- 0.06530675292015076,
- -0.023544494062662125,
- 0.006766186095774174,
- -0.02095715142786503,
- 0.016307568177580833,
- 0.016466481611132622,
- -0.0503079928457737,
- 0.03194500505924225,
- 0.024962447583675385,
- -0.055830735713243484,
- -0.009242966771125793,
- -0.019716719165444374,
- 0.016717128455638885,
- -0.009306791238486767,
- 0.05830088257789612,
- -0.026625385507941246,
- -0.0354425422847271,
- -0.04170249029994011,
- -0.026639068499207497,
- 0.12456327676773071,
- -0.05763757601380348,
- -0.002499270485714078,
- -0.057076018303632736,
- 0.04232748597860336,
- -0.009036512114107609,
- -0.004077608697116375,
- 0.06422004848718643,
- -0.0233384408056736,
- -0.058158911764621735,
- -0.004872443154454231,
- -0.03565200790762901,
- -0.07883244007825851,
- -0.066770538687706,
- -0.06223750859498978,
- -0.006086796522140503,
- 0.0955401211977005,
- -0.020439669489860535,
- -0.014605878852307796,
- 0.06164247542619705,
- 0.03605910390615463,
- -0.022235698997974396,
- -0.0195445716381073,
- 0.010769391432404518,
- 0.0369664691388607,
- -0.023962361738085747,
- -0.01681588590145111,
- 0.043134670704603195,
- -0.009314018301665783,
- -0.0932985246181488,
- 0.007397423963993788,
- -0.006861244793981314,
- -1.2224421475082181e-8,
- -0.03706395998597145,
- 0.0018114063423126936,
- -0.018601447343826294,
- -0.04122927784919739,
- 0.05924186110496521,
- -0.034272171556949615,
- 0.05356613174080849,
- -0.008425210602581501,
- 0.02125219628214836,
- 0.06145269051194191,
- -0.026472538709640503,
- -0.037832826375961304,
- 0.06706386804580688,
- 0.052397314459085464,
- 0.08134517073631287,
- -0.04251982271671295,
- 0.027030279859900475,
- 0.019515415653586388,
- -0.08148704469203949,
- -0.017835795879364014,
- 0.0052690086886286736,
- -0.014207761734724045,
- 0.01125092338770628,
- 0.01479740533977747,
- -0.04578806832432747,
- -0.0034793128725141287,
- -0.03633332997560501,
- 0.08710600435733795,
- -0.009562530554831028,
- 0.06647728383541107,
- -0.025050250813364983,
- 0.09107562899589539,
- -0.0655629113316536,
- -0.09424085170030594,
- 0.04904425889253616,
- 0.006661490071564913,
- 0.015805646777153015,
- -0.021051038056612015,
- 0.02064713090658188,
- 0.020426329225301743,
- -0.008198549970984459,
- 0.016899222508072853,
- -0.016431139782071114,
- 0.04844395071268082,
- 0.047945547848939896,
- -0.025144359096884727,
- -0.003501686966046691,
- -0.10475566983222961,
- -0.033214569091796875,
- -0.028377579525113106,
- -0.05345456674695015,
- -0.023656558245420456,
- 0.016838815063238144,
- 0.053198084235191345,
- 0.023828726261854172,
- -0.01816488988697529,
- -0.0026951590552926064,
- -0.00915601011365652,
- -0.08663678169250488,
- -0.03202730417251587,
- 0.05211395397782326,
- 0.059053029865026474,
- 0.004840866196900606,
- 0.03009641356766224
- ]
- },
- {
- "keyword": "coworker",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.12706179916858673,
- 0.05929843708872795,
- -0.013772292993962765,
- -0.011752446182072163,
- -0.05999016761779785,
- -0.07674035429954529,
- 0.07724557816982269,
- -0.030491745099425316,
- 0.012371743097901344,
- -0.045319247990846634,
- -0.03628901392221451,
- -0.027051784098148346,
- -0.0410427562892437,
- 0.015384098514914513,
- -0.04211586341261864,
- 0.056329771876335144,
- -0.011180230416357517,
- 0.014321531169116497,
- -0.056646838784217834,
- -0.10847523808479309,
- -0.07764960825443268,
- -0.02574607916176319,
- -0.07537688314914703,
- -0.0185242947191,
- 0.10702425241470337,
- 0.006017677951604128,
- 0.012410328723490238,
- -0.00756105687469244,
- -0.07539582997560501,
- -0.03265069052577019,
- -0.010400163941085339,
- -0.03997141867876053,
- -0.00839169416576624,
- 0.04313866049051285,
- -0.040922701358795166,
- -0.003507517511025071,
- -0.014735342934727669,
- 0.1085515096783638,
- 0.07425475120544434,
- 0.03756355121731758,
- -0.034969769418239594,
- -0.09928639233112335,
- 0.027738524600863457,
- -0.02171224169433117,
- -0.007024089340120554,
- 0.020920822396874428,
- 0.07185734063386917,
- -0.030005227774381638,
- 0.0016589759616181254,
- 0.02445521205663681,
- -0.027301950380206108,
- -0.024065423756837845,
- 0.017177999019622803,
- 0.05023466423153877,
- 0.07829126715660095,
- -0.011076296679675579,
- 0.05388816073536873,
- 0.018457714468240738,
- 0.0012889285571873188,
- 0.012938123196363449,
- -0.012916306965053082,
- -0.04796469584107399,
- -0.025542572140693665,
- 0.04546095430850983,
- 0.03465329483151436,
- -0.02074400894343853,
- -0.0788949653506279,
- -0.0005551779177039862,
- -0.04651999846100807,
- -0.0020767981186509132,
- -0.0047014025039970875,
- 0.021752258762717247,
- -0.008905396796762943,
- 0.04250296577811241,
- 0.03169118985533714,
- -0.05330348014831543,
- 0.03734337165951729,
- 0.0009083126205950975,
- 0.13156485557556152,
- 0.001540877390652895,
- -0.003818249562755227,
- -0.02601129561662674,
- -0.04129777476191521,
- 0.08999565243721008,
- -0.013103482313454151,
- -0.003402136731892824,
- 0.06968443840742111,
- 0.02018270455300808,
- 0.008793612010776997,
- -0.01053896639496088,
- -0.06941080838441849,
- -0.043070390820503235,
- 0.037083957344293594,
- -0.021629896014928818,
- -0.10259462893009186,
- -0.024411149322986603,
- -0.042151693254709244,
- 0.05235575884580612,
- -0.09496652334928513,
- 0.1681855320930481,
- -0.07233459502458572,
- 0.0056819310411810875,
- 0.06331919878721237,
- 0.01595538668334484,
- -0.016556313261389732,
- 0.03859330713748932,
- -0.0028903495986014605,
- 0.026623398065567017,
- 0.0055666714906692505,
- -0.013640216551721096,
- -0.03665076196193695,
- 0.028833724558353424,
- -0.10561679303646088,
- -0.011911400593817234,
- 0.035352546721696854,
- 0.006083351559937,
- -0.012209544889628887,
- 0.009138901717960835,
- -0.023252682760357857,
- -0.06428974121809006,
- 0.04340069741010666,
- 0.026511788368225098,
- -0.027500048279762268,
- 0.0537559948861599,
- -0.07517978549003601,
- -0.0419871062040329,
- 0.038592979311943054,
- -8.373147279952928e-34,
- 0.027454396709799767,
- 0.0081543093547225,
- 0.05813563987612724,
- 0.06143835186958313,
- 0.06121480092406273,
- 0.06608334183692932,
- 0.005104422103613615,
- 0.059668004512786865,
- 0.01547265239059925,
- -0.002640232676640153,
- -0.0074582831002771854,
- -0.008537857793271542,
- -0.02411361038684845,
- -0.01909562572836876,
- -0.00281802611425519,
- 0.03613525629043579,
- -0.025121591985225677,
- 0.04585542157292366,
- -0.12245173752307892,
- 0.013938662596046925,
- -0.007233879528939724,
- 0.06121638044714928,
- -0.06394863873720169,
- 0.10252440720796585,
- -0.06314993649721146,
- -0.05564647167921066,
- 0.020737607032060623,
- -0.07002171874046326,
- 0.05834093689918518,
- 0.026969943195581436,
- -0.0007606469443999231,
- 0.0032825437374413013,
- 0.06438209116458893,
- -0.037844881415367126,
- -0.015827644616365433,
- -0.052968256175518036,
- 0.003879459807649255,
- -0.0681079849600792,
- 0.025292251259088516,
- -0.07813221961259842,
- -0.031216870993375778,
- -0.012873983010649681,
- 0.06517186760902405,
- 0.029579713940620422,
- -0.043626897037029266,
- 0.048192497342824936,
- 0.06014721095561981,
- -0.0007863418431952596,
- -0.005958880297839642,
- 0.06701353937387466,
- -0.05187688395380974,
- -0.01571284979581833,
- 0.04592760279774666,
- 0.07222606241703033,
- 0.06798767298460007,
- -0.05146586149930954,
- 0.06340625882148743,
- -0.06329184770584106,
- 0.02260012738406658,
- 0.01579550839960575,
- -0.03894702345132828,
- 0.1122492253780365,
- -0.040111228823661804,
- 0.07842115312814713,
- -0.05124995484948158,
- -0.08703424036502838,
- 0.0580625906586647,
- -0.028448883444070816,
- 0.10720648616552353,
- 0.0718848928809166,
- -0.026995697990059853,
- 0.12042491883039474,
- -0.04028508812189102,
- -0.028112905099987984,
- -0.018934769555926323,
- 0.07276113331317902,
- -0.03388907387852669,
- -0.025903718546032906,
- -0.0014918360393494368,
- -0.054321225732564926,
- -0.011812944896519184,
- 0.03220077231526375,
- 0.06313586980104446,
- -0.018119441345334053,
- -0.09911470860242844,
- 0.08067439496517181,
- -0.10663831233978271,
- -0.024195905774831772,
- 0.08700460195541382,
- 0.15853159129619598,
- -0.038079265505075455,
- -0.021660055965185165,
- 0.024660153314471245,
- 0.03582502156496048,
- 0.013017353601753712,
- -9.210410580070372e-34,
- -0.005279887933284044,
- -0.08893604576587677,
- -0.02415389008820057,
- 0.05447458103299141,
- 0.10950956493616104,
- -0.02725238725543022,
- 0.010629844851791859,
- 0.003685122588649392,
- -0.016347935423254967,
- 0.004369831643998623,
- 0.0072294739075005054,
- -0.006869466509670019,
- 0.03560175746679306,
- 0.04300804063677788,
- 0.10226272791624069,
- 0.049894437193870544,
- 0.01489102840423584,
- 0.009831029921770096,
- -0.052415743470191956,
- -0.03076343424618244,
- -0.01976502500474453,
- 0.0157083198428154,
- 0.02389298938214779,
- 0.0006988443783484399,
- 0.010953688994050026,
- -0.03023318201303482,
- 0.01860875077545643,
- -0.013055219314992428,
- -0.053514327853918076,
- -0.032691165804862976,
- -0.07257877290248871,
- -0.043610259890556335,
- 0.031765423715114594,
- -0.009392484091222286,
- 0.024327991530299187,
- 0.060307376086711884,
- -0.06002179905772209,
- 0.01642625778913498,
- -0.00946793518960476,
- 0.01764443702995777,
- 0.05303729325532913,
- 0.013575653545558453,
- -0.041027750819921494,
- 0.05137127265334129,
- 0.03707016631960869,
- -0.05637652426958084,
- -0.0648018941283226,
- -0.013835974037647247,
- 0.03444509953260422,
- 0.01538826897740364,
- -0.09227512776851654,
- -0.03237573057413101,
- -0.000648150104098022,
- -0.09041836112737656,
- 0.006705505307763815,
- -0.011458862572908401,
- 0.008501012809574604,
- -0.08552347868680954,
- 0.019948318600654602,
- 0.057194922119379044,
- -0.001970672979950905,
- -0.029232515022158623,
- 0.005909290164709091,
- 0.15292476117610931,
- -0.07187386602163315,
- -0.003505720989778638,
- -0.0354745090007782,
- 0.02877657674252987,
- -0.022890353575348854,
- 0.03414514288306236,
- 0.06534814089536667,
- -0.008860165253281593,
- -0.019761638715863228,
- 0.0752749964594841,
- -0.014895831234753132,
- -0.03473200276494026,
- -0.06363025307655334,
- -0.07839808613061905,
- -0.024452833458781242,
- -0.0004861959023401141,
- -0.10215197503566742,
- -0.03502560034394264,
- 0.0488828681409359,
- 0.024381263181567192,
- -0.014266317710280418,
- 0.02479494921863079,
- 0.0397743359208107,
- 0.043355170637369156,
- 0.013893414288759232,
- -0.05887576565146446,
- 0.032376646995544434,
- -0.04896140471100807,
- -0.02932845801115036,
- -0.005972478538751602,
- -0.01441585086286068,
- -1.5938697472961394e-8,
- -0.05553022772073746,
- 0.03947683423757553,
- -0.010969819501042366,
- -0.13323718309402466,
- 0.06198637932538986,
- -0.019022170454263687,
- 0.08448775857686996,
- -0.06751596182584763,
- 0.016745299100875854,
- 0.030095534399151802,
- 0.027379320934414864,
- -0.03654918819665909,
- 0.06507718563079834,
- -0.010190330445766449,
- 0.10358860343694687,
- -0.07030146569013596,
- 0.0911526083946228,
- 0.0181255079805851,
- -0.031918372958898544,
- -0.023289786651730537,
- 0.06259205937385559,
- 0.01677720621228218,
- -0.005739524029195309,
- -0.021233532577753067,
- -0.06400451064109802,
- 0.004903439898043871,
- -0.007155094761401415,
- 0.14012226462364197,
- 0.003315477166324854,
- 0.09199411422014236,
- 0.0013381510507315397,
- 0.11051799356937408,
- -0.049849364906549454,
- -0.06077539548277855,
- 0.08604937046766281,
- 0.029913196340203285,
- 0.01871580258011818,
- -0.06286206096410751,
- 0.014035052619874477,
- 0.04672994837164879,
- -0.05679095908999443,
- 0.01842987909913063,
- -0.015627281740307808,
- 0.014747045934200287,
- 0.0010705998865887523,
- -0.04818849265575409,
- 0.016928670927882195,
- -0.11057528853416443,
- -0.018572835251688957,
- -0.04361432045698166,
- -0.03095008246600628,
- 0.02365054003894329,
- 0.01438907627016306,
- 0.0319884791970253,
- -0.006762970704585314,
- -0.08420544117689133,
- 0.008290819823741913,
- -0.03215194121003151,
- -0.11971770226955414,
- -0.003819504752755165,
- 0.05083964392542839,
- 0.0054498640820384026,
- 0.014722171239554882,
- 0.05163811892271042
- ]
- },
- {
- "keyword": "teammate",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05560585483908653,
- 0.048438604921102524,
- -0.011281032115221024,
- -0.01618744432926178,
- -0.02259507030248642,
- -0.03990289196372032,
- 0.1421985626220703,
- 0.12516455352306366,
- 0.0783579871058464,
- -0.026530712842941284,
- 0.020224740728735924,
- -0.050054438412189484,
- 0.0473446249961853,
- 0.05773254483938217,
- -0.010871929116547108,
- 0.006911117117851973,
- -0.014793706126511097,
- 0.03563105687499046,
- -0.06702236831188202,
- -0.07947055250406265,
- -0.13671107590198517,
- -0.016606122255325317,
- -0.01957136020064354,
- 0.0061251139268279076,
- 0.0211449284106493,
- -0.007867892272770405,
- 0.05648425593972206,
- 0.00766325555741787,
- -0.06961489468812943,
- -0.046742893755435944,
- -0.07261404395103455,
- -0.07297568768262863,
- 0.05987158045172691,
- 0.023874271661043167,
- -0.04338594526052475,
- 0.09032349288463593,
- -0.01589200086891651,
- 0.058149829506874084,
- -0.007749453186988831,
- -0.04505087062716484,
- -0.0260515995323658,
- -0.0712926983833313,
- -0.02791549079120159,
- 0.004660336300730705,
- 0.0022115418687462807,
- 0.06994394958019257,
- 0.033538609743118286,
- 0.005567827261984348,
- -0.00334344943985343,
- 0.07733563333749771,
- -0.09867939352989197,
- 0.06419771909713745,
- -0.022225018590688705,
- 0.01272760983556509,
- 0.11308575421571732,
- 0.04800170660018921,
- -0.023404987528920174,
- -0.0163669865578413,
- 0.011114890687167645,
- 0.020083433017134666,
- 0.011121958494186401,
- -0.03691796958446503,
- -0.06708402186632156,
- 0.04250572994351387,
- -0.030754564329981804,
- 0.03756973147392273,
- -0.03720136731863022,
- 0.027054380625486374,
- -0.02801482006907463,
- 0.02736465446650982,
- 0.02427922561764717,
- 0.03843246027827263,
- -0.008625657297670841,
- -0.017324011772871017,
- 0.0075112502090632915,
- 0.035073522478342056,
- 0.07166800647974014,
- -0.045145925134420395,
- 0.1423734426498413,
- 0.014948384836316109,
- -0.0002684526261873543,
- 0.03962860628962517,
- -0.07868138700723648,
- 0.018358977511525154,
- -0.023265982046723366,
- 0.0017486492870375514,
- 0.03256450966000557,
- 0.02080588974058628,
- 0.03511272370815277,
- 0.05177701264619827,
- -0.07781526446342468,
- 0.06030017510056496,
- 0.059291936457157135,
- 0.011283116415143013,
- -0.08826106041669846,
- 0.05156903341412544,
- -0.012707721441984177,
- -0.027192868292331696,
- -0.12425762414932251,
- 0.23986323177814484,
- 0.032052408903837204,
- 0.00630729366093874,
- -0.009509033523499966,
- 0.008543631993234158,
- -0.018266640603542328,
- 0.02987285517156124,
- -0.011651401408016682,
- 0.056635063141584396,
- 0.008777284063398838,
- 0.0034205960109829903,
- 0.0005573719972744584,
- -0.034152012318372726,
- -0.1400664895772934,
- 0.008026382885873318,
- 0.02628903277218342,
- 0.021301817148923874,
- -0.042198263108730316,
- 0.04392135515809059,
- -0.007315225433558226,
- -0.022151293233036995,
- 0.01622949354350567,
- 0.011033634655177593,
- -0.0016041399212554097,
- 0.050057537853717804,
- -0.008699198253452778,
- -0.027601270005106926,
- -0.006327688228338957,
- -5.956762888836232e-33,
- 0.025497352704405785,
- -0.01492487732321024,
- 0.025499600917100906,
- 0.017165156081318855,
- -0.02402249351143837,
- -0.007848394103348255,
- 0.08291103690862656,
- -0.038888540118932724,
- -0.13382044434547424,
- -0.06798402965068817,
- -0.054291434586048126,
- 0.013154652900993824,
- 0.04587578400969505,
- 0.043539341539144516,
- 0.03639715537428856,
- 0.019503025338053703,
- -0.027852782979607582,
- 0.052909005433321,
- -0.01213126815855503,
- 0.021708253771066666,
- 0.019062643870711327,
- 0.0010602090042084455,
- 0.017792442813515663,
- 0.09378393739461899,
- -0.0873817577958107,
- -0.05786893889307976,
- -0.021259820088744164,
- -0.048744428902864456,
- 0.05238854140043259,
- 0.00015578513557557017,
- 0.00532102957367897,
- 0.04023658111691475,
- 0.00662265345454216,
- 0.010668606497347355,
- -0.07977462559938431,
- -0.05897572264075279,
- -0.006453386042267084,
- -0.0849740207195282,
- -0.03861169144511223,
- -0.020178094506263733,
- 0.058501437306404114,
- 0.003123811911791563,
- -0.05679793283343315,
- -0.05057821422815323,
- -0.05821044370532036,
- -0.07398493587970734,
- 0.034858983010053635,
- 0.010536919347941875,
- -0.0627024695277214,
- -0.06676672399044037,
- 0.015844451263546944,
- -0.0047931792214512825,
- 0.006681221537292004,
- 0.006633035838603973,
- -0.026001349091529846,
- -0.00134336668998003,
- 0.034536801278591156,
- 0.03131914511322975,
- -0.04428010806441307,
- -0.02410491742193699,
- 0.04499439150094986,
- 0.07043402642011642,
- 0.014196410775184631,
- 0.016343016177415848,
- -0.02870076522231102,
- -0.053290609270334244,
- 0.03488757088780403,
- 0.016210103407502174,
- 0.11976900696754456,
- -0.07819388061761856,
- 0.0001221618877025321,
- -0.05175381153821945,
- 0.0011039646342396736,
- 0.033787693828344345,
- 0.0504613034427166,
- 0.0022731665521860123,
- -0.011148718185722828,
- 0.06834957003593445,
- -0.007028702646493912,
- 0.0159116443246603,
- -0.08145708590745926,
- -0.06147775799036026,
- -0.05193941295146942,
- -0.016216043382883072,
- -0.10032371431589127,
- 0.013801188208162785,
- -0.049365609884262085,
- -0.07152371108531952,
- 0.011461311019957066,
- 0.10282952338457108,
- -0.037374887615442276,
- 0.006496896501630545,
- -0.0102172726765275,
- 0.05897388607263565,
- -0.028819628059864044,
- 4.328623867078683e-33,
- 0.03994837775826454,
- -0.019811196252703667,
- 0.041427310556173325,
- 0.025416120886802673,
- 0.13082313537597656,
- -0.023513222113251686,
- 0.03905379772186279,
- -0.0008229133673012257,
- -0.01856822706758976,
- 0.07997624576091766,
- -0.04198722168803215,
- -0.03215603157877922,
- 0.009845178574323654,
- -0.011076263152062893,
- 0.05471591651439667,
- 0.05853718891739845,
- 0.07276950031518936,
- 0.014502761885523796,
- 0.013422824442386627,
- 0.032675839960575104,
- 0.014985285699367523,
- -0.02136482112109661,
- 0.03551863506436348,
- 0.01022751722484827,
- -0.012434649281203747,
- 0.002185321878641844,
- 0.09390587359666824,
- 0.009427663870155811,
- 0.004142773803323507,
- -0.03581006079912186,
- 0.022402748465538025,
- 0.03925471007823944,
- -0.016490645706653595,
- -0.05901633948087692,
- 0.03781802952289581,
- 0.185133695602417,
- -0.05598325654864311,
- 0.02713002637028694,
- 0.0003833248920273036,
- 0.0017821063520386815,
- 0.03786306455731392,
- 0.021949591115117073,
- -0.011876828968524933,
- 0.0944797694683075,
- 0.033645085990428925,
- 0.03024820238351822,
- 0.06469625234603882,
- -0.030929338186979294,
- -0.012836015783250332,
- 0.11265654116868973,
- -0.0739738792181015,
- 0.026091579347848892,
- 0.01218073908239603,
- 0.009377720765769482,
- -0.008456951938569546,
- -0.027182837948203087,
- -0.006321790628135204,
- 0.00816356297582388,
- 0.03430744633078575,
- -0.04845385625958443,
- 0.0432426854968071,
- 0.0029405776876956224,
- -0.07820972800254822,
- 0.09151843190193176,
- -0.0029259470757097006,
- 0.02239798568189144,
- -0.07396262884140015,
- 0.0352497398853302,
- -0.005151472520083189,
- -0.0337604358792305,
- -0.05380953848361969,
- 0.00973262544721365,
- -0.032011862844228745,
- 0.05002656951546669,
- -0.08513607829809189,
- -0.04080266132950783,
- -0.15044598281383514,
- 0.02766415849328041,
- 0.02129080519080162,
- -0.03502782806754112,
- -0.06424738466739655,
- -0.01463567465543747,
- -0.020470257848501205,
- 0.06480450928211212,
- -0.05297088250517845,
- -0.049862440675497055,
- 0.06054354086518288,
- 0.15896274149417877,
- 0.014172738417983055,
- -0.008499100804328918,
- 0.019872145727276802,
- -0.01038357987999916,
- -0.07051592320203781,
- -0.004733211826533079,
- -0.039419516921043396,
- -1.342867594900099e-8,
- -0.03249498829245567,
- 0.07388240844011307,
- -0.051156267523765564,
- -0.009087317623198032,
- 0.001821229001507163,
- 0.04190806299448013,
- 0.0002217912406194955,
- -0.010891570709645748,
- 0.07552151381969452,
- 0.0954313576221466,
- 0.020782338455319405,
- -0.031892817467451096,
- 0.06685411185026169,
- -0.0009449665667489171,
- 0.053587790578603745,
- -0.008728889748454094,
- -0.04159894585609436,
- 0.023849748075008392,
- -0.043301355093717575,
- -0.0443657711148262,
- -0.048064619302749634,
- -0.013158612884581089,
- -0.020973725244402885,
- 0.05979763716459274,
- -0.044031403958797455,
- -0.03626176714897156,
- -0.10255071520805359,
- 0.11293259263038635,
- -0.018465077504515648,
- -0.06164998188614845,
- -0.023571066558361053,
- 0.01815255545079708,
- -0.053177256137132645,
- -0.01797870174050331,
- 0.05449461191892624,
- 0.035799652338027954,
- 0.0076475744135677814,
- -0.025658372789621353,
- 0.004048481117933989,
- 0.023228196427226067,
- -0.021804310381412506,
- -0.006161060184240341,
- -0.021905893459916115,
- -0.012708291411399841,
- 0.005843290593475103,
- -0.021494779735803604,
- 0.011748122051358223,
- -0.11424089223146439,
- -0.07802612334489822,
- -0.06103869900107384,
- 0.01515327487140894,
- 0.020141150802373886,
- -0.011663725599646568,
- 0.06904560327529907,
- 0.03804566338658333,
- 0.00850718654692173,
- -0.04079434275627136,
- 0.021258916705846786,
- -0.0011472675250843167,
- -0.01529762800782919,
- 0.06801973283290863,
- 0.10897966474294662,
- -0.021304013207554817,
- -0.0755520686507225
- ]
- },
- {
- "keyword": "partner",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.02657005749642849,
- 0.04317118600010872,
- 0.011033931747078896,
- 0.04454851150512695,
- -0.1363389939069748,
- 0.037302467972040176,
- 0.039017245173454285,
- 0.03770782798528671,
- 0.023205336183309555,
- -0.016057241708040237,
- 0.007630406878888607,
- -0.02529631368815899,
- -0.03392113372683525,
- 0.046063996851444244,
- 0.026168562471866608,
- -0.004229476675391197,
- -0.011693896725773811,
- 0.03553658351302147,
- -0.07689929753541946,
- -0.014216503128409386,
- -0.13560454547405243,
- -0.05515309423208237,
- -0.024800634011626244,
- -0.04287739098072052,
- 0.041183795779943466,
- -0.0014600217109546065,
- 0.01592615619301796,
- -0.01770557090640068,
- 0.020545976236462593,
- -0.062068141996860504,
- 0.00343282800167799,
- 0.02415171079337597,
- 0.0446382537484169,
- 0.0006414212984964252,
- -0.06920912116765976,
- 0.012735238298773766,
- -0.012998657301068306,
- -0.0005831283633597195,
- 0.05180659517645836,
- -0.05036332458257675,
- -0.01281796395778656,
- -0.05289198085665703,
- -0.03093235194683075,
- -0.032066602259874344,
- 0.02611265890300274,
- 0.054074957966804504,
- 0.04536295682191849,
- -0.014804637990891933,
- 0.010896677151322365,
- 0.031032035127282143,
- -0.11314766854047775,
- 0.03242451697587967,
- -0.010034405626356602,
- 0.015901809558272362,
- 0.023033585399389267,
- -0.007380850613117218,
- -0.028028642758727074,
- -0.04819687828421593,
- -0.010711639188230038,
- -0.03162640705704689,
- 0.07948097586631775,
- 0.049744799733161926,
- -0.06675343215465546,
- 0.041366711258888245,
- -0.061770595610141754,
- -0.023402098566293716,
- -0.016105758026242256,
- 0.09067888557910919,
- -0.07395947724580765,
- -0.005668069701641798,
- -0.01996803469955921,
- -0.006014426238834858,
- -0.010413006879389286,
- 0.0009763144189491868,
- 0.014386837370693684,
- -0.03189298138022423,
- 0.03881298750638962,
- -0.022280234843492508,
- 0.11855163425207138,
- -0.06026552990078926,
- -0.03506685793399811,
- 0.049538835883140564,
- -0.046236515045166016,
- 0.00714024156332016,
- -0.05247556045651436,
- -0.030248023569583893,
- 0.025601470842957497,
- 0.035144198685884476,
- 0.043940216302871704,
- -0.028673293069005013,
- -0.0589262954890728,
- 0.07035588473081589,
- 0.07052318006753922,
- -0.028475217521190643,
- -0.05439158156514168,
- 0.0707031786441803,
- -0.08238424360752106,
- -0.02765061892569065,
- -0.12593670189380646,
- 0.28600767254829407,
- -0.02634223736822605,
- 0.06260690093040466,
- -0.027919933199882507,
- 0.003138466738164425,
- -0.04428701847791672,
- 0.053664159029722214,
- -0.04071458801627159,
- 0.06952878087759018,
- 0.04682932794094086,
- 0.021521227434277534,
- -0.04796207696199417,
- -0.03453407809138298,
- -0.1174950897693634,
- 0.010157991200685501,
- 0.031071685254573822,
- -0.017637355253100395,
- -0.035653144121170044,
- 0.045487940311431885,
- 0.14421780407428741,
- -0.05818413197994232,
- 0.009377000853419304,
- 0.028292670845985413,
- -0.07304881513118744,
- -0.05690129101276398,
- 0.00998537428677082,
- -0.13325583934783936,
- 0.01477809902280569,
- -5.797138837518227e-33,
- 0.012568043544888496,
- 0.021254029124975204,
- 0.05506419390439987,
- 0.04519873857498169,
- 0.005279551260173321,
- 0.06521297246217728,
- 0.025300150737166405,
- -0.0024437408428639174,
- -0.06168088689446449,
- -0.01507499348372221,
- 0.02432820573449135,
- 0.04693722352385521,
- -0.0233635101467371,
- 0.058364298194646835,
- -0.007988419383764267,
- 0.0030858705285936594,
- 0.021940751001238823,
- 0.050675395876169205,
- -0.08033265918493271,
- -0.008003235794603825,
- -0.04319024831056595,
- 0.0764218345284462,
- -0.0013839275343343616,
- 0.07926582545042038,
- 0.006054142490029335,
- -0.09269696474075317,
- 0.03138948976993561,
- 0.007697971537709236,
- 0.04638723284006119,
- 0.004263774491846561,
- 0.029116570949554443,
- 0.026200734078884125,
- -0.01694822683930397,
- -0.04951614886522293,
- -0.037160132080316544,
- 0.02617119811475277,
- -0.05106713995337486,
- -0.12677158415317535,
- -0.02495933696627617,
- 0.025952791795134544,
- -0.005955118220299482,
- 0.008311446756124496,
- -0.0764237642288208,
- -0.020301256328821182,
- -0.07615553587675095,
- -0.004270082805305719,
- 0.029245372861623764,
- 0.021572822704911232,
- -0.025265345349907875,
- 0.04027147591114044,
- -0.03610340133309364,
- 0.06484993547201157,
- -0.11626637727022171,
- 0.019113587215542793,
- -0.0015203969087451696,
- 0.03533411771059036,
- 0.03734225407242775,
- -0.055589646100997925,
- -0.05891326442360878,
- -0.028895536437630653,
- 0.013115121982991695,
- 0.026931844651699066,
- 0.033480625599622726,
- -0.0419609397649765,
- -0.01908005028963089,
- 0.0022609196603298187,
- 0.03950885310769081,
- -0.005671342369168997,
- -0.053358037024736404,
- -0.012505129911005497,
- -0.1064225509762764,
- 0.007954844273626804,
- 0.046071939170360565,
- -0.06228116527199745,
- -0.04124334827065468,
- -0.033549971878528595,
- -0.033117327839136124,
- 0.03805343061685562,
- 0.0636790320277214,
- 0.041038479655981064,
- -0.04696960374712944,
- -0.0024556333664804697,
- 0.1004498302936554,
- 0.019504088908433914,
- -0.06253410130739212,
- 0.0245185736566782,
- -0.026264462620019913,
- -0.03314894810318947,
- 0.06873389333486557,
- 0.1349514126777649,
- -0.09258017688989639,
- 0.0007847875822335482,
- 0.04073689505457878,
- 0.05132828280329704,
- 0.04316486045718193,
- 4.2826550584638236e-33,
- -0.0032552171032875776,
- 0.019357377663254738,
- 0.028321899473667145,
- 0.059181712567806244,
- 0.0796847939491272,
- 0.053050506860017776,
- 0.08077660948038101,
- -0.05206488445401192,
- -0.09614692628383636,
- 0.12366065382957458,
- 0.017385149374604225,
- -0.07133617252111435,
- 0.08729199320077896,
- 0.019543953239917755,
- 0.018112095072865486,
- 0.020368773490190506,
- 0.043959084898233414,
- -0.01779802143573761,
- 0.035403016954660416,
- 0.05717545002698898,
- -0.02439182437956333,
- -0.022587638348340988,
- 0.05319514125585556,
- 0.008505221456289291,
- 0.009835883043706417,
- 0.02504909783601761,
- 0.10313782095909119,
- 0.001372121856547892,
- 0.02930624783039093,
- 0.013234962709248066,
- 0.040575966238975525,
- 0.020228294655680656,
- -0.11689205467700958,
- -0.06282482296228409,
- -0.004851329606026411,
- 0.14057159423828125,
- -0.028338436037302017,
- 0.0009560208418406546,
- -0.004915221128612757,
- -0.055198200047016144,
- 0.07737643271684647,
- 0.014644550159573555,
- 0.030967161059379578,
- 0.1387380212545395,
- -0.010162080638110638,
- 0.006288166157901287,
- 0.03444359451532364,
- -0.014058285392820835,
- 0.04576806351542473,
- 0.05219195783138275,
- -0.0027729386929422617,
- 0.011592790484428406,
- -0.02453802525997162,
- -0.08415377885103226,
- 0.048460863530635834,
- -0.021408503875136375,
- 0.056751854717731476,
- 0.028554202988743782,
- 0.00697263004258275,
- 0.02249879576265812,
- -0.00033476343378424644,
- 0.023203816264867783,
- -0.033000994473695755,
- 0.03960588574409485,
- 0.015728842467069626,
- 0.02580934390425682,
- -0.008047129958868027,
- 0.027467450127005577,
- 0.05492720380425453,
- -0.0389987975358963,
- 0.06445523351430893,
- -0.05949372053146362,
- -0.03220989555120468,
- -0.015461690723896027,
- -0.018499016761779785,
- -0.03024490736424923,
- -0.09181556850671768,
- -0.11444318294525146,
- 0.017778046429157257,
- 0.029990414157509804,
- -0.03511551395058632,
- -0.021570958197116852,
- 0.058433569967746735,
- 0.10024435073137283,
- -0.09059491008520126,
- -0.03363403305411339,
- 0.019254686310887337,
- -0.002048520604148507,
- -0.01007289718836546,
- 0.006795704364776611,
- -0.04138787463307381,
- 0.015521855093538761,
- -0.025185663253068924,
- -0.031768783926963806,
- 0.003925923723727465,
- -1.3568879353442753e-8,
- -0.05430234968662262,
- 0.00017940984980668873,
- -0.030663300305604935,
- -0.057711344212293625,
- 0.004536578431725502,
- 0.004173094406723976,
- 0.038963548839092255,
- -0.009810339659452438,
- 0.028773268684744835,
- 0.10404106974601746,
- -0.01948961615562439,
- -0.04190194979310036,
- 0.010938862338662148,
- 0.018555596470832825,
- 0.0955156683921814,
- -0.10859788954257965,
- 0.028317870572209358,
- 0.03426919877529144,
- -0.054313939064741135,
- -0.0033508199267089367,
- 0.01873055286705494,
- 0.003707881085574627,
- -0.034592363983392715,
- 0.020180070772767067,
- -0.051138002425432205,
- 0.07345462590456009,
- 0.0211301539093256,
- 0.12739402055740356,
- 0.0144124124199152,
- -0.004507715348154306,
- 0.01092983316630125,
- 0.026258600875735283,
- -0.04658627137541771,
- -0.06242707744240761,
- 0.025451526045799255,
- -0.03211846202611923,
- -0.023238731548190117,
- 0.021359192207455635,
- 0.052575040608644485,
- -0.021884728223085403,
- -0.05739937350153923,
- 0.05255422368645668,
- 0.01827460154891014,
- 0.014117652550339699,
- -0.06641687452793121,
- 0.050886161625385284,
- 0.011408797465264797,
- -0.01903388276696205,
- -0.022624898701906204,
- -0.02907591126859188,
- -0.04019298404455185,
- -0.03162781521677971,
- 0.04207470268011093,
- 0.025131575763225555,
- -0.05156852677464485,
- -0.01863311417400837,
- 0.006112299393862486,
- -0.005859951488673687,
- 0.00481148436665535,
- 0.00629766657948494,
- 0.0917968899011612,
- -0.07238800078630447,
- -0.007326378952711821,
- 0.01111533958464861
- ]
- },
- {
- "keyword": "customer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.10917306691408157,
- 0.0623205192387104,
- 0.023867124691605568,
- -0.03328119218349457,
- -0.09245713800191879,
- -0.060154981911182404,
- 0.18511837720870972,
- 0.03544116020202637,
- 0.045215725898742676,
- -0.05167247727513313,
- 0.04963310807943344,
- -0.029925307258963585,
- 0.02625688910484314,
- -0.026998469606041908,
- -0.0028635954950004816,
- -0.03525678813457489,
- 0.04458099976181984,
- -0.002320347586646676,
- -0.07948644459247589,
- -0.001964858965948224,
- -0.15824754536151886,
- -0.004387907683849335,
- -0.08229263126850128,
- 0.028313739225268364,
- -0.040805574506521225,
- 0.05534574016928673,
- 0.023572348058223724,
- 0.0739671066403389,
- 0.007069988176226616,
- -0.0666002705693245,
- -0.012408114969730377,
- 0.018092548474669456,
- 0.13462437689304352,
- -0.013077309355139732,
- 0.03441781550645828,
- -0.024627000093460083,
- -0.028780465945601463,
- -0.00483782310038805,
- 0.011042340658605099,
- -0.000541431363672018,
- -0.0017025561537593603,
- -0.07736081629991531,
- -0.09299102425575256,
- 0.016998181119561195,
- 0.07245291024446487,
- -0.005407213233411312,
- 0.06923842430114746,
- 0.01565362513065338,
- 0.07127749174833298,
- 0.04183218255639076,
- -0.08098579198122025,
- 0.001525148400105536,
- -0.026838310062885284,
- -0.03783247992396355,
- 0.03744378313422203,
- -0.011100944131612778,
- 0.03478337451815605,
- -0.011343063786625862,
- 0.027438197284936905,
- 0.006554399151355028,
- 0.020595045760273933,
- -0.04794546961784363,
- -0.011803075671195984,
- 0.07747712731361389,
- 0.02059837616980076,
- 0.04961048439145088,
- -0.07120054960250854,
- -0.061007190495729446,
- -0.0340685173869133,
- -0.03136738762259483,
- -0.020419375970959663,
- 0.028309324756264687,
- 0.01056862436234951,
- 0.026647597551345825,
- 0.0018954443512484431,
- 0.01760401763021946,
- 0.08089152723550797,
- -0.04168616607785225,
- 0.11376853287220001,
- 0.02359386533498764,
- -0.002583472989499569,
- -0.045862406492233276,
- -0.002358587458729744,
- -0.0024491429794579744,
- -0.01706075295805931,
- 0.0028710421174764633,
- 0.06292669475078583,
- -0.009302830323576927,
- -0.06134339049458504,
- -0.04913812503218651,
- 0.007282409351319075,
- 0.050766076892614365,
- 0.03939380124211311,
- -0.027236580848693848,
- -0.08952893316745758,
- -0.00631493516266346,
- 0.0002671360853128135,
- -0.07101977616548538,
- -0.06997710466384888,
- 0.2525455355644226,
- 0.007506912108510733,
- 0.05738838389515877,
- 0.030745983123779297,
- -0.0378333255648613,
- -0.05030288174748421,
- -0.015795988962054253,
- -0.04031283035874367,
- 0.08803089708089828,
- 0.003363054944202304,
- 0.001803598483093083,
- -0.05771752819418907,
- -0.03730132430791855,
- -0.08197112381458282,
- 0.022187374532222748,
- 0.058633483946323395,
- -0.050549112260341644,
- -0.048725176602602005,
- 0.050081074237823486,
- 0.01723114214837551,
- -0.010443069040775299,
- -0.003992617130279541,
- 0.050605446100234985,
- -0.03923759609460831,
- 0.0020147121977061033,
- -0.09002508223056793,
- -0.0627688467502594,
- 0.08907454460859299,
- -6.0384689297679966e-33,
- -0.05776360258460045,
- 0.0480169951915741,
- 0.032756052911281586,
- -0.013040348887443542,
- 0.020340457558631897,
- 0.04114772379398346,
- 0.03314433991909027,
- 0.046135034412145615,
- -0.039548441767692566,
- 0.045339204370975494,
- -0.02301075868308544,
- -0.016018247231841087,
- 0.010508471168577671,
- 0.008861218579113483,
- 0.01820712350308895,
- 0.06606520712375641,
- -0.04456039518117905,
- -0.03636738657951355,
- -0.04533858969807625,
- -0.03406007960438728,
- -0.022684350609779358,
- 0.025681616738438606,
- 0.021079430356621742,
- 0.11301090568304062,
- -0.02646295167505741,
- -0.047307875007390976,
- 0.049279116094112396,
- 0.0011363152880221605,
- 0.09274118393659592,
- 0.0170994084328413,
- 0.10125087946653366,
- 0.008187495172023773,
- 0.01663689687848091,
- 0.03776896372437477,
- -0.02934211865067482,
- 0.0024336373899132013,
- 0.00793717335909605,
- -0.12012894451618195,
- -0.025396065786480904,
- -0.02976052090525627,
- -0.03566000610589981,
- 0.038728855550289154,
- 0.04044894129037857,
- 0.03362666815519333,
- -0.052759766578674316,
- 0.008540171198546886,
- 0.05318348854780197,
- 0.021102074533700943,
- -0.05336450785398483,
- 0.038456905633211136,
- -0.03952741250395775,
- 0.019604111090302467,
- -0.06905651837587357,
- 0.09277933835983276,
- -0.007797583006322384,
- -0.009833197109401226,
- 0.07441642135381699,
- -0.04765963926911354,
- -0.023847874253988266,
- -0.024264341220259666,
- 0.07300776243209839,
- 0.05532087758183479,
- -0.007894364185631275,
- -0.006683585233986378,
- -0.002225246513262391,
- -0.04116053879261017,
- 0.04399694502353668,
- -0.06419248133897781,
- 0.07028650492429733,
- -0.008969917893409729,
- 0.014044957235455513,
- 0.024018419906497,
- 0.05175847187638283,
- 0.04215081036090851,
- -0.07811535149812698,
- -0.01229911856353283,
- -0.08715327829122543,
- 0.05809786915779114,
- 0.0240950845181942,
- 0.003472893266007304,
- -0.03603621944785118,
- 0.004994107875972986,
- 0.06479004770517349,
- 0.03414350375533104,
- 0.00989540759474039,
- 0.03178079053759575,
- 0.006982667837291956,
- -0.07129251956939697,
- 0.05092192813754082,
- 0.029774604365229607,
- -0.0449909083545208,
- 0.05366577208042145,
- 0.06514868885278702,
- 0.13267086446285248,
- 0.04321220517158508,
- 4.740763206736516e-33,
- -0.039432354271411896,
- 0.024237386882305145,
- -0.050710637122392654,
- 0.05564442649483681,
- 0.0607617162168026,
- -0.05835491791367531,
- -0.04131379351019859,
- -0.029975492507219315,
- -0.07632739841938019,
- 0.07667285948991776,
- -0.032786861062049866,
- -0.01854095235466957,
- 0.0131808677688241,
- -0.021525518968701363,
- 0.036520831286907196,
- 0.09480802714824677,
- 0.07442963123321533,
- -0.0593281015753746,
- -0.004303634632378817,
- -0.007776957470923662,
- -0.06947982311248779,
- -0.057625722140073776,
- -0.08562792837619781,
- -0.02930491790175438,
- -0.03181570768356323,
- 0.017117815092206,
- 0.07117914408445358,
- -0.015633180737495422,
- -0.04800725355744362,
- -0.052077896893024445,
- -0.008300280198454857,
- -0.016966190189123154,
- -0.039007946848869324,
- 0.007350963074713945,
- -0.008013065904378891,
- 0.04549305513501167,
- -0.00776529498398304,
- 0.0702851414680481,
- -0.012200994417071342,
- 0.054071299731731415,
- 0.0837247297167778,
- -0.016094433143734932,
- 0.053045641630887985,
- 0.07875718921422958,
- -0.011019869707524776,
- -0.045383524149656296,
- 0.05750136449933052,
- -0.08809392154216766,
- 0.05915748327970505,
- 0.06949855387210846,
- -0.12115873396396637,
- -0.0363498218357563,
- 0.016032055020332336,
- 0.01143332663923502,
- -0.058787908405065536,
- 0.025787217542529106,
- 0.059983354061841965,
- -0.002565312199294567,
- 0.03376329690217972,
- 0.0034606782719492912,
- 0.022194763645529747,
- 0.0008152280352078378,
- 0.029360642656683922,
- 0.0456499345600605,
- 0.010754251852631569,
- -0.02099398896098137,
- 0.00035482272505760193,
- -0.04234689846634865,
- 0.03639484569430351,
- -0.05328010767698288,
- 0.00945249292999506,
- -0.009510003961622715,
- -0.05034446716308594,
- 0.009552063420414925,
- -0.03719225153326988,
- -0.08324498683214188,
- -0.13191984593868256,
- -0.038582492619752884,
- -0.012777258642017841,
- -0.05544726923108101,
- 0.02028224617242813,
- -0.08532372862100601,
- 0.016243018209934235,
- 0.061625249683856964,
- -0.023085150867700577,
- -0.09894795715808868,
- 0.11720110476016998,
- 0.021844753995537758,
- -0.03921261802315712,
- -0.0392267145216465,
- 0.011330225504934788,
- 0.0732397511601448,
- -0.05478820577263832,
- -0.043659958988428116,
- -0.02060256153345108,
- -1.2584324693420967e-8,
- -0.05388447269797325,
- 0.011187998577952385,
- 0.05462876334786415,
- 0.0026698727160692215,
- 0.09455715119838715,
- -0.0330541767179966,
- 0.010055080987513065,
- 0.04378632828593254,
- -0.019222334027290344,
- 0.050617482513189316,
- 0.008105272427201271,
- -0.007200016174465418,
- -0.03018076904118061,
- 0.049290288239717484,
- 0.0873459130525589,
- -0.017156759276986122,
- -0.032636985182762146,
- -0.018507737666368484,
- -0.05709731578826904,
- 0.018562594428658485,
- -0.023875394836068153,
- 0.039850324392318726,
- 0.01564420945942402,
- -0.02319221943616867,
- 0.03136525675654411,
- 0.01984340511262417,
- -0.04494679719209671,
- 0.13267731666564941,
- 0.045261528342962265,
- -0.06586496531963348,
- -0.03394698724150658,
- 0.0504707433283329,
- -0.028827685862779617,
- -0.08548435568809509,
- 0.013195987790822983,
- -0.0110810287296772,
- -0.010179008357226849,
- -0.03896508365869522,
- 0.013609522022306919,
- 0.005662168841809034,
- -0.024267978966236115,
- -0.008953395299613476,
- -0.014027155935764313,
- -0.0038343737833201885,
- 0.07628833502531052,
- 0.030596397817134857,
- 0.0025429516099393368,
- -0.010311456397175789,
- -0.026471542194485664,
- 0.028514789417386055,
- -0.052225008606910706,
- -0.027097096666693687,
- 0.0767545998096466,
- 0.07162278890609741,
- -0.008967708796262741,
- -0.08557052165269852,
- 0.04101245105266571,
- 0.004566074348986149,
- -0.052807893604040146,
- 0.05354290083050728,
- 0.05787299573421478,
- 0.0609046071767807,
- -0.019432703033089638,
- -0.011761754751205444
- ]
- },
- {
- "keyword": "client",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.09558908641338348,
- 0.06443721055984497,
- -0.00034967123065143824,
- -0.06710965931415558,
- -0.08859149366617203,
- -0.013344178907573223,
- 0.1357598453760147,
- 0.037906188517808914,
- 0.05831553041934967,
- -0.028977718204259872,
- -0.01764942705631256,
- 0.03380151465535164,
- 0.017993176355957985,
- 0.04466712847352028,
- 0.03571368381381035,
- 0.01483022142201662,
- 0.04155631735920906,
- -0.028753293678164482,
- 0.056907154619693756,
- -0.01017751358449459,
- -0.21703825891017914,
- -0.022154906764626503,
- -0.09753300994634628,
- -0.007803481537848711,
- 0.013290325179696083,
- -0.03222689777612686,
- 0.022027945145964622,
- -0.0251418799161911,
- -0.018692314624786377,
- 0.012645302340388298,
- -0.03254000470042229,
- -0.002679311204701662,
- 0.0010151765309274197,
- 0.006814550142735243,
- -0.0428043007850647,
- 0.03306305781006813,
- -0.022204119712114334,
- 0.020938420668244362,
- -0.018737925216555595,
- 0.037537992000579834,
- 0.0008972738869488239,
- -0.04248575493693352,
- -0.05693835765123367,
- 0.07422196120023727,
- 0.055082615464925766,
- -0.028784876689314842,
- -0.005504716653376818,
- 0.047971710562705994,
- 0.010669110342860222,
- 0.05461878329515457,
- -0.08433572202920914,
- -0.010346384719014168,
- -0.062126487493515015,
- 0.059290479868650436,
- -0.01018341165035963,
- -0.03682440519332886,
- -0.022509358823299408,
- 0.07338426262140274,
- 0.007512764539569616,
- 0.05597281828522682,
- -0.018496576696634293,
- -0.002531156875193119,
- -0.0258824210613966,
- 0.07052922993898392,
- 0.08136224001646042,
- 0.06332320719957352,
- -0.07535618543624878,
- 0.02136131189763546,
- -0.09179838746786118,
- -0.02622089348733425,
- -0.008700801059603691,
- 0.0004970175796188414,
- -0.02606721594929695,
- -0.037715546786785126,
- -0.04231569543480873,
- -0.06313962489366531,
- 0.004335176665335894,
- 0.015534214675426483,
- 0.12189248949289322,
- -0.001074194093234837,
- 0.033004093915224075,
- 0.03511692211031914,
- -0.09198558330535889,
- 0.006302111316472292,
- -0.035668108612298965,
- 0.034224070608615875,
- 0.06337782740592957,
- 0.016363093629479408,
- 0.0044517056085169315,
- 0.021114004775881767,
- 0.004911662079393864,
- 0.04443757236003876,
- -0.03241606429219246,
- -0.03483729809522629,
- -0.08565815538167953,
- 0.02408837527036667,
- 0.05300435423851013,
- -0.016109345480799675,
- -0.08234543353319168,
- 0.28364360332489014,
- -0.018719248473644257,
- 0.02060209959745407,
- 0.03626832738518715,
- -0.035968925803899765,
- -0.04513335973024368,
- 0.019021084532141685,
- -0.07572493702173233,
- 0.04012126103043556,
- 0.02551891654729843,
- 0.02635033242404461,
- -0.07822023332118988,
- 0.003471418283879757,
- -0.09798884391784668,
- -0.030393021181225777,
- 0.04533575847744942,
- -0.01721845008432865,
- -0.058047208935022354,
- 0.08239860087633133,
- -0.0072881546802818775,
- 0.0034405975602567196,
- -0.0239860936999321,
- 0.056257545948028564,
- -0.023786889389157295,
- 0.021328464150428772,
- -0.035135261714458466,
- -0.04573541879653931,
- 0.08626531809568405,
- -5.953450198818821e-33,
- -0.026066791266202927,
- 0.0026589008048176765,
- 0.022486044093966484,
- 0.08111847937107086,
- 0.032819248735904694,
- 0.05848268046975136,
- 0.07686042785644531,
- 0.0055788131430745125,
- -0.11789479106664658,
- -0.037491414695978165,
- 0.0065202354453504086,
- 0.030122004449367523,
- 0.05729774758219719,
- 0.05300071835517883,
- 0.05632761865854263,
- -0.011003086343407631,
- 0.04343251883983612,
- 0.007493880577385426,
- 0.0534631721675396,
- -0.10093545913696289,
- -0.06359817832708359,
- -0.004070839378982782,
- 0.0372459851205349,
- 0.09387687593698502,
- -0.024074045941233635,
- -0.03362647444009781,
- -0.02133689634501934,
- 0.018747098743915558,
- 0.04006357118487358,
- 0.019225044175982475,
- 0.048801206052303314,
- 0.018718300387263298,
- -0.011563985608518124,
- 0.023390743881464005,
- -0.09471525996923447,
- -0.0384257435798645,
- -0.03619672358036041,
- -0.15181003510951996,
- 0.01947392337024212,
- -0.056162796914577484,
- -0.0732407495379448,
- 0.04201894626021385,
- -0.017159679904580116,
- 0.017867324873805046,
- -0.07193759828805923,
- -0.030374281108379364,
- 0.022514773532748222,
- 0.006847870536148548,
- -0.09256905317306519,
- 0.02182161435484886,
- -0.060450244694948196,
- 0.06465872377157211,
- 0.003943296615034342,
- 0.10831856727600098,
- -0.004675042815506458,
- -0.021428722888231277,
- 0.06094255670905113,
- -0.01638723723590374,
- -0.0346950925886631,
- -0.028752775862812996,
- 0.1124417781829834,
- 0.038201477378606796,
- -0.016310540959239006,
- -0.07026378065347672,
- -0.056101854890584946,
- -0.04032769799232483,
- -0.04802016541361809,
- 0.003142660018056631,
- 0.07558662444353104,
- -0.030582532286643982,
- -0.002241922542452812,
- 0.03676943480968475,
- 0.1435958743095398,
- 0.0009392270585522056,
- -0.015995066612958908,
- -0.005698541644960642,
- -0.07982882112264633,
- 0.024390285834670067,
- -0.0006515056593343616,
- -0.0318383127450943,
- -0.06085839495062828,
- -0.012118994258344173,
- 0.013703150674700737,
- 0.09026679396629333,
- 0.004127878230065107,
- 0.06117706745862961,
- 0.003257644595578313,
- -0.06121588125824928,
- -0.018122823908925056,
- 0.09459889680147171,
- -0.01622104085981846,
- 0.03437506780028343,
- 0.013163291849195957,
- 0.061337996274232864,
- 0.056149132549762726,
- 4.391124167027935e-33,
- -0.0593981072306633,
- -0.04966164752840996,
- -0.04699700325727463,
- 0.00005967626566416584,
- 0.06221573427319527,
- -0.07101712375879288,
- -0.035843268036842346,
- -0.009874457493424416,
- -0.07970213145017624,
- 0.08955010771751404,
- -0.01608886942267418,
- -0.04276152700185776,
- -0.008710455149412155,
- -0.007471481803804636,
- 0.0043451194651424885,
- 0.043919455260038376,
- 0.011582148261368275,
- -0.014686277136206627,
- -0.005190796684473753,
- -0.055585216730833054,
- -0.008656535297632217,
- -0.047642726451158524,
- 0.017102466896176338,
- 0.004833482671529055,
- 0.025606928393244743,
- -0.017178496345877647,
- 0.042859550565481186,
- 0.002538364613428712,
- 0.010368919931352139,
- -0.03754998371005058,
- 0.016493316739797592,
- -0.014436866156756878,
- -0.06937608122825623,
- -0.033563267439603806,
- 0.011377587914466858,
- 0.080597884953022,
- 0.04235392063856125,
- 0.044246722012758255,
- -0.04146923869848251,
- -0.034169621765613556,
- 0.12456411868333817,
- -0.06169021874666214,
- -0.022140363231301308,
- 0.08674368262290955,
- -0.011604334227740765,
- 0.011163839139044285,
- 0.008362623862922192,
- 0.0003712416801135987,
- 0.08354604989290237,
- 0.043423641473054886,
- -0.023148270323872566,
- 0.019561905413866043,
- 0.041102781891822815,
- -0.03473486378788948,
- -0.06769456714391708,
- 0.012811090797185898,
- 0.07215762138366699,
- -0.06093473359942436,
- 0.07436522841453552,
- -0.023940663784742355,
- 0.02658691257238388,
- -0.04755837842822075,
- -0.060112401843070984,
- 0.054461318999528885,
- -0.016670409590005875,
- -0.003915219102054834,
- 0.010042577981948853,
- 0.11366842687129974,
- 0.0789162665605545,
- -0.030501635745167732,
- -0.013989881612360477,
- -0.019582396373152733,
- -0.04647432267665863,
- 0.007135033141821623,
- 0.02879924327135086,
- -0.0474555529654026,
- -0.05294300615787506,
- -0.039866190403699875,
- 0.00814878474920988,
- -0.013044589199125767,
- -0.02220034785568714,
- -0.06649895012378693,
- 0.020063206553459167,
- 0.07654140889644623,
- -0.04992692917585373,
- -0.10234750807285309,
- 0.06882697343826294,
- 0.014919079840183258,
- -0.029838478192687035,
- -0.011124130338430405,
- -0.0008031748584471643,
- 0.058189574629068375,
- -0.0672651082277298,
- 0.014076764695346355,
- 0.02943550795316696,
- -1.2514183467260409e-8,
- -0.07318657636642456,
- -0.011010474525392056,
- 0.05187375098466873,
- -0.008529583923518658,
- 0.04026829078793526,
- 0.0355907641351223,
- -0.01691076159477234,
- 0.04117472469806671,
- 0.023214932531118393,
- 0.08840752393007278,
- -0.007179603911936283,
- -0.07202078402042389,
- -0.01898326352238655,
- 0.04203110933303833,
- 0.058185841888189316,
- 0.0038364510983228683,
- 0.0020830966532230377,
- 0.041738878935575485,
- -0.030533937737345695,
- 0.011333772912621498,
- -0.022187773138284683,
- 0.06947993487119675,
- 0.004878698382526636,
- -0.01917283795773983,
- -0.01128811202943325,
- -0.06623575091362,
- -0.0018988284282386303,
- 0.14162974059581757,
- -0.09054679423570633,
- -0.014196885749697685,
- -0.05491039529442787,
- 0.011111321859061718,
- -0.021043632179498672,
- -0.03861355409026146,
- 0.011457865126430988,
- 0.019459985196590424,
- -0.05812874436378479,
- -0.023743603378534317,
- -0.0023456045892089605,
- 0.06101546436548233,
- -0.0500841923058033,
- 0.0026171787176281214,
- 0.026902208104729652,
- 0.0016455380246043205,
- 0.031358297914266586,
- -0.005523719824850559,
- 0.03817319869995117,
- -0.022721951827406883,
- 0.027990976348519325,
- -0.02714782953262329,
- -0.06050383299589157,
- -0.03281761333346367,
- 0.05487917736172676,
- -0.002803514711558819,
- 0.00526021420955658,
- -0.015264276415109634,
- 0.022929897531867027,
- -0.028772594407200813,
- -0.0009505037451162934,
- 0.05164187029004097,
- 0.00008373402670258656,
- 0.09241554141044617,
- -0.007399689871817827,
- 0.024081600829958916
- ]
- },
- {
- "keyword": "vendor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07662548869848251,
- 0.08241526782512665,
- -0.058739226311445236,
- -0.018817702308297157,
- -0.0834028571844101,
- -0.045077964663505554,
- 0.11934159696102142,
- 0.016111504286527634,
- -0.026863668113946915,
- -0.05199970304965973,
- 0.016355251893401146,
- 0.010655109770596027,
- 0.009355754591524601,
- -0.018433062359690666,
- -0.008028240874409676,
- 0.03595733270049095,
- 0.00974517036229372,
- 0.02027982287108898,
- 0.03305111080408096,
- -0.012029271572828293,
- -0.1317705661058426,
- -0.05450260639190674,
- -0.058887582272291183,
- 0.025476237758994102,
- -0.010612274520099163,
- 0.035003818571567535,
- 0.004481786862015724,
- -0.016185197979211807,
- 0.07898865640163422,
- -0.10253626108169556,
- -0.02288137562572956,
- 0.03307622671127319,
- 0.028866738080978394,
- 0.003801798215135932,
- 0.002869807416573167,
- 0.02420223318040371,
- -0.027723832055926323,
- -0.011645241640508175,
- 0.033055007457733154,
- 0.040029387921094894,
- 0.026990048587322235,
- -0.057534970343112946,
- -0.11117299646139145,
- 0.03561273217201233,
- 0.040480442345142365,
- -0.05058392137289047,
- 0.015455012209713459,
- 0.04100580886006355,
- 0.031607843935489655,
- 0.006740679033100605,
- -0.04965763911604881,
- -0.04113868251442909,
- -0.03381139412522316,
- -0.0012217359617352486,
- 0.005377103574573994,
- -0.06988199055194855,
- -0.021498888731002808,
- -0.012851999141275883,
- 0.04288896173238754,
- -0.06847468763589859,
- 0.054232995957136154,
- -0.02480108104646206,
- -0.08600746095180511,
- 0.07222430408000946,
- 0.022703493013978004,
- 0.016878265887498856,
- -0.020106062293052673,
- 0.0003869114734698087,
- -0.09114187955856323,
- -0.06171748787164688,
- 0.007588434964418411,
- -0.01453584898263216,
- 0.021891938522458076,
- 0.02891354262828827,
- 0.04317811131477356,
- -0.0421568788588047,
- 0.05911228433251381,
- -0.05931046977639198,
- 0.0922037735581398,
- -0.009931192733347416,
- 0.03362540528178215,
- 0.0964282974600792,
- -0.007737660314887762,
- -0.0254033375531435,
- -0.02000424638390541,
- 0.02191976085305214,
- 0.03040952794253826,
- 0.12158507108688354,
- 0.035165999084711075,
- -0.039230965077877045,
- 0.013100216165184975,
- 0.013652005232870579,
- 0.005597931798547506,
- 0.009800233878195286,
- -0.020658010616898537,
- 0.07119636982679367,
- 0.005471356678754091,
- 0.004415345378220081,
- -0.02649540826678276,
- 0.2566956877708435,
- 0.0063147409819066525,
- 0.031222717836499214,
- -0.06093466281890869,
- 0.006853922735899687,
- -0.06410080194473267,
- 0.03858136385679245,
- -0.07098712772130966,
- 0.02066667750477791,
- 0.018127113580703735,
- 0.04172862321138382,
- -0.0694877877831459,
- 0.023223957046866417,
- -0.15005584061145782,
- -0.062197551131248474,
- -0.028287891298532486,
- 0.0273094791918993,
- -0.08168256282806396,
- 0.06104439124464989,
- -0.014851318672299385,
- -0.07824628800153732,
- -0.021368784829974174,
- 0.018818441778421402,
- -0.05400681495666504,
- -0.07846352458000183,
- -0.03488105535507202,
- 0.013050437904894352,
- 0.04505569115281105,
- -6.067703106930962e-33,
- -0.043879687786102295,
- 0.04453038424253464,
- -0.00007315727270906791,
- 0.027735836803913116,
- 0.08872584998607635,
- 0.03458087518811226,
- 0.05953742563724518,
- 0.01327061839401722,
- -0.03883858770132065,
- 0.05513354390859604,
- -0.04172986000776291,
- -0.023257657885551453,
- -0.06617270410060883,
- 0.03989596292376518,
- 0.03777112439274788,
- -0.003048885613679886,
- 0.01794535294175148,
- 0.047137558460235596,
- 0.003739728359505534,
- -0.028823664411902428,
- -0.07907523959875107,
- 0.0140184061601758,
- -0.00520816957578063,
- 0.09161800891160965,
- 0.024955250322818756,
- 0.0344165675342083,
- 0.023952841758728027,
- 0.017288003116846085,
- 0.10791552811861038,
- 0.03964582830667496,
- 0.056874606758356094,
- -0.013500181958079338,
- 0.07148092240095139,
- 0.0033224783837795258,
- -0.03690725937485695,
- -0.02189498208463192,
- -0.056595493108034134,
- -0.06956565380096436,
- 0.011469094082713127,
- -0.022484108805656433,
- 0.013358612544834614,
- 0.04455561563372612,
- 0.011160947382450104,
- 0.049621403217315674,
- -0.032199300825595856,
- -0.027261167764663696,
- 0.059820741415023804,
- 0.007774631027132273,
- 0.047486480325460434,
- 0.025669246912002563,
- -0.0884198397397995,
- 0.05115121975541115,
- -0.08320174366235733,
- 0.05685504153370857,
- 0.03812582045793533,
- -0.10369738936424255,
- 0.006585348397493362,
- -0.030229443684220314,
- -0.029789559543132782,
- 0.006932081654667854,
- 0.02709643356502056,
- 0.06463421881198883,
- 0.02160160429775715,
- 0.07385104149580002,
- 0.014902682974934578,
- -0.06274736672639847,
- -0.026516737416386604,
- -0.05169479176402092,
- -0.032449569553136826,
- 0.006710722576826811,
- -0.003986666910350323,
- 0.05208598077297211,
- 0.04672082141041756,
- 0.03137911483645439,
- -0.05330885574221611,
- 0.014538356103003025,
- 0.0022376684937626123,
- 0.08566675335168839,
- -0.0029478033538907766,
- -0.0750059112906456,
- -0.12966954708099365,
- -0.004005735740065575,
- 0.04725027084350586,
- 0.07370008528232574,
- -0.06581006944179535,
- 0.03174380958080292,
- -0.03950948640704155,
- -0.038111794739961624,
- 0.0803387463092804,
- 0.04833312705159187,
- -0.16126345098018646,
- 0.02289375476539135,
- -0.017918987199664116,
- 0.021586189046502113,
- 0.010828676633536816,
- 4.9908040794678633e-33,
- -0.025163166224956512,
- 0.006103611085563898,
- 0.0243021659553051,
- 0.04277078062295914,
- 0.0633503720164299,
- 0.0005417480133473873,
- -0.007769056595861912,
- -0.03058527782559395,
- -0.001925807329826057,
- 0.06940434873104095,
- -0.02961179055273533,
- 0.01668981835246086,
- 0.04069368541240692,
- -0.036566223949193954,
- 0.07563049346208572,
- 0.023478595539927483,
- -0.02413291484117508,
- -0.007922939956188202,
- 0.0063229757361114025,
- -0.003488712478429079,
- -0.0007249550544656813,
- -0.010663550347089767,
- -0.018823089078068733,
- -0.06326092034578323,
- -0.01689264550805092,
- 0.026870787143707275,
- 0.05673624202609062,
- 0.015393414534628391,
- 0.017418399453163147,
- 0.020236238837242126,
- 0.031275030225515366,
- -0.06942681968212128,
- -0.050645288079977036,
- 0.008612703531980515,
- -0.023043863475322723,
- 0.12429822236299515,
- -0.02493063174188137,
- 0.016723042353987694,
- 0.004953091964125633,
- -0.011226534843444824,
- 0.08691301196813583,
- -0.0003701708628796041,
- 0.004197732079774141,
- 0.08791752904653549,
- -0.025420837104320526,
- -0.1246117651462555,
- 0.004389684647321701,
- -0.07572426646947861,
- 0.1910170316696167,
- -0.034384582191705704,
- -0.019776633009314537,
- 0.06712242215871811,
- 0.05590417608618736,
- -0.06272503733634949,
- -0.057638149708509445,
- 0.005413363687694073,
- -0.029329556971788406,
- -0.00013896804011892527,
- 0.048061709851026535,
- 0.03197404742240906,
- 0.03955599293112755,
- 0.056966423988342285,
- 0.006718810647726059,
- 0.05456390604376793,
- -0.024104641750454903,
- 0.049605853855609894,
- 0.04044870659708977,
- 0.03461678326129913,
- -0.032516900449991226,
- -0.011163451708853245,
- 0.07968887686729431,
- -0.02812160737812519,
- -0.08562340587377548,
- 0.016417481005191803,
- -0.049427423626184464,
- -0.03512069210410118,
- -0.08053258806467056,
- -0.035986319184303284,
- 0.014348010532557964,
- -0.023588504642248154,
- 0.04156751558184624,
- -0.07358106970787048,
- 0.018276846036314964,
- 0.11384360492229462,
- -0.058844193816185,
- -0.02057303860783577,
- 0.08136246353387833,
- -0.0006889314972795546,
- -0.0003267514694016427,
- -0.019444938749074936,
- -0.00378075847402215,
- 0.04018799588084221,
- -0.051416438072919846,
- -0.013612978160381317,
- -0.017438724637031555,
- -1.2021430073616557e-8,
- -0.0762910470366478,
- 0.0014864327386021614,
- 0.024029776453971863,
- -0.0034221047535538673,
- 0.043665558099746704,
- -0.08320081233978271,
- -0.0027812703046947718,
- -0.0220427755266428,
- -0.03881528228521347,
- 0.09182186424732208,
- 0.011631682515144348,
- -0.08401614427566528,
- -0.013425861485302448,
- 0.04982792213559151,
- 0.06687742471694946,
- -0.03125385940074921,
- -0.0530821867287159,
- 0.028286868706345558,
- -0.08298607170581818,
- -0.059730373322963715,
- -0.006449348758906126,
- 0.078437939286232,
- 0.11332764476537704,
- -0.09770217537879944,
- 0.012958180159330368,
- 0.006034906022250652,
- 0.016782866790890694,
- 0.1207699403166771,
- 0.05024627596139908,
- 0.06811868399381638,
- 0.020679421722888947,
- 0.06884074211120605,
- 0.018263958394527435,
- -0.0407046303153038,
- 0.01825528033077717,
- -0.055653106421232224,
- -0.07725571095943451,
- 0.020944789052009583,
- -0.022512903437018394,
- 0.024227993562817574,
- -0.02953246235847473,
- 0.014216991141438484,
- 0.016931964084506035,
- 0.02990337461233139,
- -0.04372342675924301,
- 0.037141889333724976,
- -0.012556568719446659,
- 0.0032161609269678593,
- 0.0128090288490057,
- -0.015523212030529976,
- 0.013398916460573673,
- -0.0380425862967968,
- 0.050364721566438675,
- 0.02778421714901924,
- -0.07030142843723297,
- -0.03734784200787544,
- 0.012189369648694992,
- -0.03663013130426407,
- 0.04296689108014107,
- -0.05099412053823471,
- -0.01462670136243105,
- -0.0593084916472435,
- 0.022026827558875084,
- 0.013246106915175915
- ]
- },
- {
- "keyword": "supplier",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07769126445055008,
- 0.019393419846892357,
- -0.008154691196978092,
- 0.009620426222682,
- -0.051084112375974655,
- -0.027526680380105972,
- 0.09879492968320847,
- 0.006007963325828314,
- 0.008958500809967518,
- -0.03357381001114845,
- 0.07825927436351776,
- -0.037861429154872894,
- 0.024827323853969574,
- -0.019950879737734795,
- -0.09031575918197632,
- -0.01707998290657997,
- -0.01093206088989973,
- -0.016517385840415955,
- -0.03219078108668327,
- -0.08037544041872025,
- -0.15330791473388672,
- -0.03292127698659897,
- -0.022534126415848732,
- 0.015568986535072327,
- -0.008612196892499924,
- 0.054045211523771286,
- -0.05738670006394386,
- -0.035129472613334656,
- 0.09124065935611725,
- -0.08970998227596283,
- -0.009999318048357964,
- 0.03576074168086052,
- 0.018649280071258545,
- -0.031179407611489296,
- 0.006680490914732218,
- 0.007659570313990116,
- -0.002583237597718835,
- -0.053904950618743896,
- 0.01986374519765377,
- 0.01186436042189598,
- 0.005099025554955006,
- -0.011533409357070923,
- -0.0031078148167580366,
- 0.027717772871255875,
- 0.02988240495324135,
- 0.016720904037356377,
- 0.029760878533124924,
- 0.035149261355400085,
- 0.0057458761148154736,
- 0.07620841264724731,
- -0.04780279099941254,
- 0.004268298856914043,
- -0.03687746822834015,
- -0.006338175386190414,
- 0.03257980942726135,
- 0.022005543112754822,
- -0.03580255061388016,
- -0.046560365706682205,
- -0.024781273677945137,
- -0.06867079436779022,
- 0.00940611120313406,
- -0.010269684717059135,
- -0.06189320608973503,
- 0.009281179867684841,
- 0.07426992803812027,
- -0.021665647625923157,
- -0.059063881635665894,
- 0.03775794804096222,
- -0.09244070947170258,
- -0.014573261141777039,
- 0.048798851668834686,
- -0.06599926203489304,
- 0.03226562216877937,
- 0.04914884269237518,
- -0.008343581110239029,
- -0.0063207498751580715,
- 0.11251918971538544,
- -0.030007774010300636,
- 0.04818498715758324,
- -0.04082636907696724,
- 0.016105452552437782,
- 0.10284744203090668,
- -0.03653780370950699,
- -0.006549439858645201,
- 0.020482178777456284,
- -0.026111286133527756,
- 0.08285479247570038,
- 0.06180516630411148,
- 0.016699813306331635,
- -0.012470790185034275,
- -0.004869981203228235,
- -0.07023430615663528,
- 0.01154716219753027,
- 0.006732625421136618,
- -0.03594913333654404,
- 0.04481061175465584,
- 0.010726512409746647,
- 0.0008996512624435127,
- -0.07102745771408081,
- 0.20124909281730652,
- 0.02405240386724472,
- 0.052510544657707214,
- -0.04740691930055618,
- -0.03520914912223816,
- -0.06955526769161224,
- 0.0029868572019040585,
- -0.10623212903738022,
- 0.09434657543897629,
- 0.06634320318698883,
- 0.06734185665845871,
- -0.05425150319933891,
- 0.012659299187362194,
- -0.054844412952661514,
- -0.03597334772348404,
- 0.005422696005553007,
- -0.010336106643080711,
- -0.013791929930448532,
- 0.00371463387273252,
- 0.05534432455897331,
- -0.07691022753715515,
- -0.004707600921392441,
- 0.04261573404073715,
- -0.06172783300280571,
- -0.0763603150844574,
- -0.09161587804555893,
- -0.03239832818508148,
- -0.019293298944830894,
- -4.894824598381239e-33,
- -0.0049896822310984135,
- 0.0608532540500164,
- -0.006553558632731438,
- 0.021686621010303497,
- -0.008597498759627342,
- 0.07909916341304779,
- 0.020292920991778374,
- -0.0004374786512926221,
- -0.034461673349142075,
- 0.003460175823420286,
- -0.11370192468166351,
- 0.013531247153878212,
- -0.0436248742043972,
- 0.001397128333337605,
- 0.07566019892692566,
- -0.05511205270886421,
- 0.0006113981362432241,
- 0.025181379169225693,
- 0.060593750327825546,
- -0.020944736897945404,
- -0.08091334253549576,
- -0.005162646993994713,
- -0.00945234950631857,
- 0.08111168444156647,
- 0.05335450917482376,
- -0.06102738156914711,
- 0.024903636425733566,
- 0.047257911413908005,
- 0.03193966671824455,
- 0.02596965990960598,
- 0.09357092529535294,
- 0.026344355195760727,
- 0.03553173691034317,
- -0.08309322595596313,
- -0.041815146803855896,
- -0.0830196887254715,
- -0.09972654283046722,
- -0.09856222569942474,
- 0.020432310178875923,
- -0.006249082740396261,
- 0.04846084117889404,
- 0.039828892797231674,
- -0.015105923637747765,
- 0.06464126706123352,
- -0.027021586894989014,
- 0.005514131393283606,
- 0.02842053398489952,
- 0.03167121112346649,
- -0.005168313160538673,
- 0.008048479445278645,
- -0.13595463335514069,
- 0.015971289947628975,
- -0.029753457754850388,
- -0.0005485232104547322,
- 0.02780941314995289,
- -0.05603990703821182,
- 0.012335974723100662,
- -0.029221519827842712,
- 0.012688614428043365,
- 0.05072353780269623,
- 0.018117563799023628,
- 0.09135384857654572,
- -0.02179274521768093,
- 0.09099382907152176,
- 0.017060639336705208,
- -0.040195707231760025,
- 0.033273931592702866,
- -0.03677894547581673,
- -0.04929230734705925,
- -0.05445507541298866,
- -0.029860008507966995,
- -0.0012930541997775435,
- 0.024414436891674995,
- 0.03327586501836777,
- -0.031594306230545044,
- 0.002476948779076338,
- -0.022375360131263733,
- 0.1068497821688652,
- -0.0026016223710030317,
- -0.04509991407394409,
- -0.11501406133174896,
- 0.02286434732377529,
- 0.05376528576016426,
- 0.07422463595867157,
- -0.03635873645544052,
- -0.002643262268975377,
- -0.02942647784948349,
- 0.006613132078200579,
- 0.08233202248811722,
- 0.018147649243474007,
- -0.11659581959247589,
- 0.005259410943835974,
- -0.005428886506706476,
- 0.01331438310444355,
- 0.011071139015257359,
- 3.553084489625971e-33,
- -0.01691974140703678,
- 0.005722422618418932,
- 0.054102376103401184,
- 0.0025622087996453047,
- 0.0997428223490715,
- 0.0031376215629279613,
- 0.034910377115011215,
- -0.06717117875814438,
- 0.0731920376420021,
- 0.09075123816728592,
- -0.021538682281970978,
- 0.03440443053841591,
- 0.04473244771361351,
- 0.02571176365017891,
- 0.05531793087720871,
- 0.03222265467047691,
- 0.04992886260151863,
- -0.018486831337213516,
- -0.011529125273227692,
- -0.028907736763358116,
- 0.0005523814470507205,
- 0.02148156426846981,
- 0.0024132842663675547,
- -0.07860953360795975,
- 0.015963276848196983,
- 0.05200182646512985,
- 0.02545134164392948,
- 0.0077862488105893135,
- -0.07273246347904205,
- 0.0030537224374711514,
- -0.024798555299639702,
- -0.0553155317902565,
- -0.027441399171948433,
- 0.053876399993896484,
- -0.02622356452047825,
- 0.07069439440965652,
- -0.027236992493271828,
- 0.08097981661558151,
- 0.015202728100121021,
- -0.00488457502797246,
- 0.06140676140785217,
- 0.008925923146307468,
- 0.06275562196969986,
- 0.13719576597213745,
- -0.022540416568517685,
- -0.07187157869338989,
- -0.00047225624439306557,
- -0.06696614623069763,
- 0.1632978767156601,
- 0.0004805261269211769,
- -0.044833067804574966,
- 0.034429267048835754,
- 0.038906484842300415,
- -0.01203998364508152,
- -0.042348992079496384,
- 0.025763344019651413,
- -0.03661550208926201,
- 0.06747464090585709,
- 0.033747751265764236,
- -0.021116899326443672,
- 0.0448295883834362,
- 0.04347695782780647,
- 0.029574094340205193,
- 0.007765588816255331,
- 0.014108004979789257,
- 0.077442966401577,
- 0.028201621025800705,
- 0.01213722862303257,
- 0.0615200474858284,
- -0.06149301677942276,
- 0.07384965568780899,
- 0.001512444345280528,
- 0.00628661410883069,
- -0.011451934464275837,
- -0.053022854030132294,
- 0.002681394573301077,
- -0.08151179552078247,
- -0.0028326704632490873,
- -0.03962915018200874,
- 0.001067662495188415,
- 0.058961961418390274,
- -0.047680724412202835,
- 0.05666336789727211,
- 0.14366228878498077,
- -0.043044060468673706,
- -0.03462979570031166,
- 0.08971200883388519,
- -0.032908715307712555,
- 0.0064859529957175255,
- 0.003594615962356329,
- -0.020006505772471428,
- 0.00172018026933074,
- -0.07509196549654007,
- -0.01690857484936714,
- 0.0182949285954237,
- -1.1125457888283563e-8,
- -0.024759020656347275,
- -0.06265633553266525,
- 0.016782091930508614,
- -0.0006709771696478128,
- 0.03186224028468132,
- -0.043659232556819916,
- 0.04202820733189583,
- 0.02973032370209694,
- -0.04514167457818985,
- 0.092417411506176,
- -0.024431943893432617,
- -0.014663934707641602,
- -0.020284214988350868,
- 0.025783464312553406,
- 0.033693235367536545,
- -0.0003522715996950865,
- -0.06239599734544754,
- 0.05116921290755272,
- -0.08499285578727722,
- -0.09004093706607819,
- 0.004763012286275625,
- 0.07152125984430313,
- 0.14799150824546814,
- 0.005176065489649773,
- -0.05882120877504349,
- -0.004049703944474459,
- 0.06758955866098404,
- -0.049833476543426514,
- 0.03716101124882698,
- 0.052755314856767654,
- 0.05272839590907097,
- 0.043051186949014664,
- 0.02788308635354042,
- -0.1172124519944191,
- -0.0179973766207695,
- -0.08677607774734497,
- -0.04369201511144638,
- -0.027471112087368965,
- 0.02481827512383461,
- -0.03389079496264458,
- -0.10478276014328003,
- 0.02995971404016018,
- 0.02351589873433113,
- 0.05721752345561981,
- 0.03308529406785965,
- -0.020919013768434525,
- -0.09617336839437485,
- -0.043477918952703476,
- 0.0017852855380624533,
- -0.028244739398360252,
- 0.010241867043077946,
- 0.013874845579266548,
- 0.03490810841321945,
- 0.006874124985188246,
- -0.07086027413606644,
- -0.06627314537763596,
- -0.01955399103462696,
- -0.03625485673546791,
- -0.0021515360567718744,
- -0.005683449096977711,
- 0.014911394566297531,
- -0.04259592667222023,
- 0.1373019516468048,
- 0.0029115495271980762
- ]
- },
- {
- "keyword": "contractor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.09412359446287155,
- 0.06541505455970764,
- -0.0016034678556025028,
- -0.008255517110228539,
- -0.10245731472969055,
- -0.03229779750108719,
- 0.058362532407045364,
- 0.016144251450896263,
- -0.01131980400532484,
- 0.010144737549126148,
- -0.03549112379550934,
- -0.04819510877132416,
- 0.02181619592010975,
- 0.027539633214473724,
- -0.0794336199760437,
- 0.03854915499687195,
- 0.03714853897690773,
- 0.048668503761291504,
- 0.025133149698376656,
- -0.11518364399671555,
- -0.08891090750694275,
- 0.0402735210955143,
- -0.06529843062162399,
- -0.01729070208966732,
- 0.11364094913005829,
- 0.00804073829203844,
- -0.0022514278534799814,
- 0.04893367737531662,
- 0.04857248067855835,
- -0.042817361652851105,
- -0.058014366775751114,
- 0.011942843906581402,
- -0.0012708880240097642,
- 0.009310289286077023,
- 0.0461774505674839,
- 0.07080084085464478,
- -0.02628011256456375,
- -0.021229306235909462,
- -0.003178125014528632,
- -0.0016918090404942632,
- -0.01661057397723198,
- -0.04971672594547272,
- 0.013201883994042873,
- -0.02875402383506298,
- -0.018066037446260452,
- -0.0026640689466148615,
- 0.053591642528772354,
- -0.012732299044728279,
- 0.018326153978705406,
- 0.014522680081427097,
- 0.01584642380475998,
- 0.01630197837948799,
- -0.0008085792069323361,
- 0.012258348055183887,
- 0.016407763585448265,
- -0.004524610936641693,
- -0.014926017262041569,
- -0.019129255786538124,
- 0.02146553434431553,
- -0.023227311670780182,
- -0.0004686181200668216,
- 0.010910102166235447,
- -0.057334523648023605,
- 0.038454633206129074,
- 0.02651514858007431,
- -0.03128383681178093,
- -0.03029533103108406,
- -0.05686257779598236,
- -0.08351732045412064,
- -0.045383088290691376,
- 0.03554259240627289,
- -0.03811570256948471,
- 0.02943403460085392,
- -0.015378381125628948,
- 0.12391689419746399,
- -0.06585332751274109,
- 0.08164004981517792,
- 0.055621981620788574,
- 0.05202164500951767,
- -0.1513897031545639,
- 0.040525589138269424,
- 0.08118849247694016,
- -0.032551974058151245,
- 0.03720944747328758,
- -0.01228098850697279,
- -0.018649552017450333,
- 0.054468318819999695,
- 0.09887748956680298,
- 0.08055252581834793,
- -0.02703983709216118,
- 0.03211059793829918,
- -0.06428907066583633,
- 0.0019569783471524715,
- 0.02830582670867443,
- -0.06862150877714157,
- 0.016797620803117752,
- 0.0020103291608393192,
- -0.003966702613979578,
- -0.08371078222990036,
- 0.2193228304386139,
- -0.032820168882608414,
- -0.025136472657322884,
- -0.05339052900671959,
- -0.022167876362800598,
- -0.043490324169397354,
- 0.028430838137865067,
- -0.034540899097919464,
- 0.06745296716690063,
- -0.006335362792015076,
- 0.005689282901585102,
- -0.04682714119553566,
- -0.005085794720798731,
- -0.08055296540260315,
- -0.035593464970588684,
- 0.021085087209939957,
- -0.010868913494050503,
- -0.07412707805633545,
- 0.03091500699520111,
- 0.0187111496925354,
- -0.01337750256061554,
- 0.028960449621081352,
- 0.07225392758846283,
- -0.12047047913074493,
- -0.018666477873921394,
- -0.07691831141710281,
- -0.04134936258196831,
- 0.10690847784280777,
- -5.340701360591641e-33,
- 0.05903743952512741,
- 0.03085639700293541,
- 0.028062673285603523,
- 0.04905475676059723,
- 0.11384628713130951,
- 0.05795561149716377,
- 0.06881913542747498,
- 0.1006627231836319,
- -0.013206034898757935,
- 0.058865342289209366,
- 0.02200094237923622,
- -0.02791983261704445,
- -0.06459221243858337,
- 0.0732421800494194,
- 0.014567685313522816,
- -0.016525698825716972,
- -0.00428180955350399,
- 0.01811177469789982,
- -0.025153599679470062,
- 0.01267671212553978,
- -0.07873283326625824,
- 0.016160722821950912,
- -0.025610264390707016,
- 0.1190679743885994,
- 0.06883414834737778,
- -0.09285014122724533,
- 0.04463972523808479,
- 0.02655467577278614,
- 0.0021688181441277266,
- 0.03612435981631279,
- 0.00391565402969718,
- 0.057938963174819946,
- 0.06964987516403198,
- 0.03168299049139023,
- -0.03839606046676636,
- -0.005639026407152414,
- -0.04994218423962593,
- -0.06881368905305862,
- -0.0026842234656214714,
- 0.004163635428994894,
- -0.02796342223882675,
- -0.003414167556911707,
- 0.05678210034966469,
- -0.013290156610310078,
- 0.000010902628673647996,
- -0.04711958393454552,
- 0.08009058982133865,
- 0.05393506959080696,
- 0.036185044795274734,
- 0.04461393132805824,
- -0.042498327791690826,
- 0.05702890455722809,
- 0.025834769010543823,
- 0.05543019622564316,
- 0.060402702540159225,
- -0.05414443463087082,
- 0.02857004478573799,
- -0.03143945336341858,
- 0.0005190293304622173,
- -0.006142240483313799,
- -0.07165933400392532,
- 0.09462156891822815,
- -0.052377376705408096,
- 0.07277663797140121,
- -0.06580792367458344,
- -0.0579419881105423,
- 0.026005979627370834,
- 0.0035474272444844246,
- 0.0901578888297081,
- -0.04019623249769211,
- -0.07369949668645859,
- 0.012541052885353565,
- 0.039380382746458054,
- -0.034797705709934235,
- -0.08797587454319,
- 0.034541964530944824,
- -0.015680020675063133,
- 0.06782597303390503,
- 0.016119694337248802,
- 0.012222329154610634,
- -0.03944297879934311,
- 0.010073013603687286,
- 0.07872321456670761,
- 0.02757934480905533,
- 0.06409629434347153,
- 0.02750261500477791,
- 0.012817802838981152,
- 0.00155733828432858,
- 0.059409249573946,
- 0.044161781668663025,
- -0.10190213471651077,
- -0.008123963139951229,
- 0.0034977197647094727,
- 0.07173117250204086,
- 0.051198992878198624,
- 3.494814499971741e-33,
- -0.0779762789607048,
- 0.00913154985755682,
- -0.0038245331961661577,
- 0.016440022736787796,
- 0.06419146060943604,
- -0.0036319128703325987,
- 0.0016965961549431086,
- -0.0829661414027214,
- -0.011815475299954414,
- 0.050183527171611786,
- 0.03156489506363869,
- 0.0216808058321476,
- 0.008454822935163975,
- -0.024634812027215958,
- 0.009287366643548012,
- 0.0020827418193221092,
- -0.06124693527817726,
- -0.056403398513793945,
- -0.015100235119462013,
- 0.038452550768852234,
- -0.007129848934710026,
- 0.01792168989777565,
- -0.03086954541504383,
- -0.07047180831432343,
- 0.00025232008192688227,
- 0.010174618102610111,
- -0.016100041568279266,
- 0.047879625111818314,
- -0.056218985468149185,
- 0.041953183710575104,
- -0.048036128282547,
- -0.028940625488758087,
- -0.13217632472515106,
- -0.007017680909484625,
- -0.05088542029261589,
- 0.023969408124685287,
- -0.04740547388792038,
- 0.06612150371074677,
- -0.04646635055541992,
- -0.03932058811187744,
- 0.08289116621017456,
- -0.01239000540226698,
- 0.07699087262153625,
- 0.06661443412303925,
- -0.043869759887456894,
- -0.07652857154607773,
- 0.008479084819555283,
- -0.12333475798368454,
- 0.003655694192275405,
- 0.029217751696705818,
- -0.06752634048461914,
- 0.08720695972442627,
- -0.005037703551352024,
- -0.040480755269527435,
- -0.012593946419656277,
- -0.034105293452739716,
- -0.05428541079163551,
- -0.0018381434492766857,
- 0.07909272611141205,
- 0.040374506264925,
- 0.06997030228376389,
- 0.03591056540608406,
- 0.07919596135616302,
- 0.06397002190351486,
- -0.014524854719638824,
- 0.00802514050155878,
- 0.03792198747396469,
- 0.015529475174844265,
- 0.004196875263005495,
- 0.0025976512115448713,
- 0.04576074704527855,
- -0.02370096743106842,
- -0.024415429681539536,
- -0.036051057279109955,
- -0.0018274810863658786,
- -0.06092895567417145,
- -0.058413777500391006,
- -0.014500295743346214,
- -0.04790036380290985,
- 0.02394149638712406,
- 0.03205190598964691,
- -0.1034344956278801,
- 0.032785430550575256,
- 0.10522860288619995,
- -0.05910758301615715,
- -0.0716618001461029,
- 0.08096335828304291,
- 0.016242550686001778,
- 0.041021835058927536,
- 0.011023538187146187,
- -0.02307887002825737,
- 0.030766412615776062,
- -0.035630736500024796,
- -0.040247321128845215,
- -0.012140228413045406,
- -1.1070164340765132e-8,
- -0.04577530920505524,
- 0.010084709152579308,
- -0.11574219167232513,
- -0.09107119590044022,
- 0.07498954236507416,
- -0.11909698694944382,
- 0.03625667840242386,
- 0.016374865546822548,
- -0.026447109878063202,
- 0.012124104425311089,
- 0.06958796828985214,
- -0.0639793872833252,
- 0.041706424206495285,
- 0.027759961783885956,
- 0.04436149448156357,
- -0.06038571521639824,
- 0.013035156764090061,
- 0.04947522655129433,
- -0.07954201102256775,
- -0.10564620047807693,
- -0.005425166338682175,
- 0.042478371411561966,
- 0.06133311241865158,
- 0.0046391733922064304,
- -0.026064345613121986,
- 0.021372973918914795,
- 0.020599234849214554,
- 0.04389217495918274,
- 0.039928171783685684,
- 0.10310917347669601,
- -0.021367240697145462,
- 0.07847364991903305,
- -0.04014424607157707,
- -0.06674543768167496,
- 0.016526853665709496,
- -0.018435996025800705,
- -0.008877747692167759,
- -0.05565011128783226,
- 0.0031972993165254593,
- -0.015131461434066296,
- -0.043078139424324036,
- 0.09636048972606659,
- 0.03396405279636383,
- 0.02809108980000019,
- 0.07250960916280746,
- -0.03134908154606819,
- -0.003233948489651084,
- -0.0015039058635011315,
- 0.022659894078969955,
- -0.06437252461910248,
- -0.0035816740710288286,
- 0.0008564331801608205,
- 0.029578285291790962,
- -0.02295462042093277,
- 0.021485911682248116,
- -0.07620316743850708,
- 0.02159236930310726,
- -0.047335755079984665,
- -0.051823340356349945,
- -0.020523590967059135,
- -0.05373745411634445,
- -0.0237506665289402,
- 0.036469120532274246,
- -0.03991794213652611
- ]
- },
- {
- "keyword": "mentor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.04422856122255325,
- 0.06353819370269775,
- -0.03082076646387577,
- 0.009202610701322556,
- -0.0275693628937006,
- -0.03347921371459961,
- 0.03408433496952057,
- -0.01106809452176094,
- 0.00048026282456703484,
- -0.05126248672604561,
- -0.014599444344639778,
- 0.009788092225790024,
- 0.05285020172595978,
- 0.04166421294212341,
- -0.054205626249313354,
- 0.05719595402479172,
- -0.0607217438519001,
- 0.030091047286987305,
- -0.03330448642373085,
- -0.15433214604854584,
- -0.16486309468746185,
- -0.04916761815547943,
- 0.012323693372309208,
- -0.01572267711162567,
- 0.022116011008620262,
- 0.070314921438694,
- -0.045420654118061066,
- -0.02437674254179001,
- 0.012104352004826069,
- -0.0642375499010086,
- -0.019332487136125565,
- -0.07478618621826172,
- 0.043310053646564484,
- 0.02990461327135563,
- -0.022285105660557747,
- 0.13369712233543396,
- 0.03568139299750328,
- 0.05748951435089111,
- -0.015614720992743969,
- -0.00023877299099694937,
- 0.043368227779865265,
- 0.004506474360823631,
- -0.023865388706326485,
- -0.06807778030633926,
- 0.03887017071247101,
- -0.05114900320768356,
- 0.002258184365928173,
- 0.01767668128013611,
- -0.03181249648332596,
- 0.003851671703159809,
- -0.10125017911195755,
- -0.1077975183725357,
- -0.057416435331106186,
- 0.04548776522278786,
- 0.06608375906944275,
- 0.10549887269735336,
- 0.05361218750476837,
- 0.0187565665692091,
- -0.005820221267640591,
- 0.010242115706205368,
- -0.0026667178608477116,
- 0.023485710844397545,
- -0.12289342284202576,
- 0.009826785884797573,
- 0.007190132513642311,
- 0.016338927671313286,
- -0.038565218448638916,
- 0.020382707938551903,
- -0.0040590353310108185,
- -0.049175236374139786,
- 0.0016506074462085962,
- -0.03174420818686485,
- 0.043086692690849304,
- -0.025974055752158165,
- 0.09018569439649582,
- 0.01665429398417473,
- 0.05081535875797272,
- -0.02955523133277893,
- 0.10935000330209732,
- 0.003289360785856843,
- -0.029323121532797813,
- -0.005597988609224558,
- -0.047514788806438446,
- 0.024099647998809814,
- -0.002854475984349847,
- -0.03025500476360321,
- 0.007279023993760347,
- -0.03463676571846008,
- 0.07212936133146286,
- 0.08746872842311859,
- -0.0056091537699103355,
- 0.03736056759953499,
- -0.02834337390959263,
- -0.0005339458002708852,
- -0.058925967663526535,
- 0.03818419948220253,
- 0.03057258203625679,
- -0.04137720912694931,
- -0.06003208085894585,
- 0.24592433869838715,
- -0.003718840191140771,
- -0.00991764571517706,
- -0.016032937914133072,
- -0.023062841966748238,
- -0.02894444391131401,
- 0.053686726838350296,
- -0.03652806580066681,
- 0.03736594319343567,
- -0.001656773267313838,
- -0.01226361095905304,
- -0.05118619650602341,
- 0.05268287658691406,
- -0.05487745255231857,
- 0.034215182065963745,
- 0.042017433792352676,
- 0.05886557325720787,
- -0.0011033752234652638,
- 0.02641822025179863,
- -0.011980266310274601,
- 0.0030845648143440485,
- -0.023127606138586998,
- 0.06673292070627213,
- 0.030462894588708878,
- 0.021752260625362396,
- -0.06956683844327927,
- -0.0348319411277771,
- -0.07527291774749756,
- -5.990354476620902e-33,
- 0.03990337997674942,
- 0.0404374860227108,
- 0.0473543144762516,
- 0.029090935364365578,
- 0.01672368496656418,
- 0.015386644750833511,
- 0.019219908863306046,
- 0.009536020457744598,
- -0.04459254816174507,
- -0.05546487495303154,
- 0.05366091802716255,
- 0.01686272770166397,
- -0.029279377311468124,
- -0.039277397096157074,
- 0.04381701350212097,
- -0.006339678540825844,
- 0.00537358270958066,
- 0.0010492950677871704,
- -0.013058279640972614,
- -0.022728726267814636,
- -0.03051132708787918,
- -0.02697881869971752,
- -0.02106405235826969,
- 0.018250681459903717,
- 0.0774984210729599,
- -0.0008207717328332365,
- 0.02758893184363842,
- -0.0077386582270264626,
- 0.06719925999641418,
- 0.027615031227469444,
- -0.021971050649881363,
- 0.034852009266614914,
- -0.023358523845672607,
- -0.05955912545323372,
- -0.04325869306921959,
- 0.011223291046917439,
- -0.0004137465439271182,
- -0.1291542500257492,
- -0.0027607805095613003,
- -0.038341060280799866,
- -0.0034977190662175417,
- -0.0017436183989048004,
- 0.04838606342673302,
- -0.057959869503974915,
- 0.008061784319579601,
- 0.02734234556555748,
- 0.06966821849346161,
- -0.025647694244980812,
- -0.07634520530700684,
- 0.09273894131183624,
- -0.10428101569414139,
- -0.02435005083680153,
- 0.04392574727535248,
- -0.009345953352749348,
- -0.018204141408205032,
- 0.014643545262515545,
- 0.03715519234538078,
- 0.05884752795100212,
- 0.013113140128552914,
- -0.05459250137209892,
- 0.07916177064180374,
- -0.02373698726296425,
- -0.05488206446170807,
- 0.06571316719055176,
- 0.05073516070842743,
- -0.06489940732717514,
- -0.02395336888730526,
- -0.010390366427600384,
- 0.12055689841508865,
- -0.02327849715948105,
- -0.08831777423620224,
- 0.048802949488162994,
- 0.004914822056889534,
- 0.029983067885041237,
- -0.05256021022796631,
- -0.053724054247140884,
- -0.06379583477973938,
- -0.0501648485660553,
- 0.06144102290272713,
- -0.05351006239652634,
- -0.04469338431954384,
- -0.00011764826922444627,
- -0.04679924622178078,
- 0.07195275276899338,
- 0.07322202622890472,
- -0.024506282061338425,
- -0.034860894083976746,
- -0.026167631149291992,
- 0.07006114721298218,
- 0.05157143995165825,
- -0.09486120939254761,
- -0.029086148366332054,
- 0.04428355023264885,
- 0.08366371691226959,
- 0.021398179233074188,
- 4.5888544391217365e-33,
- 0.06701358407735825,
- -0.04523947462439537,
- 0.033999327570199966,
- 0.07021082192659378,
- 0.12055826187133789,
- -0.06618449836969376,
- -0.07585516571998596,
- -0.009844064712524414,
- 0.015499597415328026,
- 0.04787123203277588,
- -0.005849542561918497,
- 0.02900741994380951,
- -0.03970339894294739,
- 0.04678267240524292,
- 0.019130857661366463,
- -0.019747378304600716,
- 0.009931927546858788,
- 0.015515211038291454,
- 0.03155182674527168,
- -0.04376527667045593,
- 0.00268439925275743,
- 0.06229320913553238,
- 0.004373608622699976,
- 0.010430810041725636,
- 0.006609476171433926,
- -0.02187562733888626,
- 0.03547385707497597,
- 0.03476595878601074,
- -0.0460672564804554,
- 0.04994664713740349,
- 0.00397505983710289,
- 0.017962923273444176,
- 0.04528903216123581,
- -0.028038710355758667,
- -0.06638278067111969,
- 0.1355987936258316,
- 0.05322807654738426,
- -0.05133823677897453,
- -0.048307839781045914,
- 0.03819100186228752,
- 0.059162650257349014,
- -0.018876561895012856,
- -0.01885128952562809,
- -0.04152655974030495,
- -0.03275247663259506,
- 0.0761808305978775,
- 0.03921954333782196,
- 0.03630298748612404,
- -0.03354169800877571,
- -0.003048476530238986,
- -0.1002124696969986,
- 0.004597689490765333,
- -0.007821551524102688,
- -0.04129362106323242,
- 0.012443049810826778,
- 0.0045395419001579285,
- 0.10101355612277985,
- -0.007742010056972504,
- 0.03143310546875,
- -0.047500479966402054,
- 0.03096594475209713,
- -0.021366309374570847,
- -0.05984864756464958,
- 0.08273565769195557,
- -0.016711492091417313,
- -0.052322711795568466,
- -0.004999933298677206,
- 0.03433298319578171,
- -0.05611148476600647,
- 0.056937895715236664,
- -0.004651268944144249,
- 0.06004047766327858,
- -0.004149224609136581,
- 0.0588160939514637,
- -0.08372349292039871,
- -0.02952793426811695,
- -0.11513037234544754,
- -0.03723491355776787,
- -0.01559057179838419,
- -0.09978998452425003,
- -0.07268645614385605,
- -0.08669212460517883,
- 0.0015183454379439354,
- 0.021947743371129036,
- 0.07692141085863113,
- 0.0035040145739912987,
- 0.06540369987487793,
- 0.06633800268173218,
- 0.02918003313243389,
- -0.06593196094036102,
- -0.007908615283668041,
- -0.04736895114183426,
- -0.01260303147137165,
- -0.0005100195994600654,
- -0.04021267220377922,
- -1.2430527718265694e-8,
- -0.029825430363416672,
- 0.012292369268834591,
- -0.039567671716213226,
- 0.011428666301071644,
- 0.028611425310373306,
- 0.07302093505859375,
- -0.021465616300702095,
- 0.03339848294854164,
- 0.04464832693338394,
- 0.07954740524291992,
- 0.036587800830602646,
- -0.04378420114517212,
- 0.00787492748349905,
- -0.010292558930814266,
- 0.12500575184822083,
- -0.042829882353544235,
- 0.00733255734667182,
- 0.05499784275889397,
- -0.03933749720454216,
- -0.015944918617606163,
- 0.02817971259355545,
- 0.03909534588456154,
- -0.03573131933808327,
- 0.08891904354095459,
- 0.025209620594978333,
- -0.0990801677107811,
- -0.025231003761291504,
- 0.1968810111284256,
- -0.042229063808918,
- 0.01597488857805729,
- -0.016044119372963905,
- 0.053988900035619736,
- 0.0016580584924668074,
- -0.03084702044725418,
- -0.0034542069770395756,
- 0.01734461635351181,
- -0.010899786837399006,
- -0.07480375468730927,
- -0.008160166442394257,
- 0.052175235003232956,
- -0.04846731945872307,
- 0.0206089299172163,
- 0.04354386776685715,
- -0.026564577594399452,
- -0.06087472662329674,
- 0.0809541791677475,
- 0.04522442817687988,
- -0.009888970293104649,
- 0.021370558068156242,
- -0.04561787471175194,
- -0.006435334216803312,
- -0.014948109164834023,
- 0.030434677377343178,
- -0.06505268812179565,
- 0.04306821897625923,
- -0.0051815686747431755,
- 0.024961568415164948,
- 0.03826584666967392,
- -0.05700085312128067,
- 0.0056735374964773655,
- 0.12041949480772018,
- 0.021653566509485245,
- -0.00552005972713232,
- -0.07445185631513596
- ]
- },
- {
- "keyword": "mentee",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.017331168055534363,
- 0.06478992104530334,
- -0.00625493424013257,
- -0.0807017832994461,
- -0.03174850717186928,
- -0.06639754772186279,
- 0.07507658004760742,
- -0.0789894387125969,
- -0.059002138674259186,
- 0.02623012661933899,
- 0.04293777048587799,
- -0.04261108115315437,
- -0.004216137807816267,
- -0.021089082583785057,
- -0.043477702885866165,
- -0.06604333966970444,
- -0.048162851482629776,
- -0.0629476010799408,
- 0.0535428561270237,
- -0.001295156660489738,
- -0.031225435435771942,
- 0.035553790628910065,
- -0.06901255995035172,
- -0.09513922035694122,
- -0.031467556953430176,
- 0.023308463394641876,
- -0.06611132621765137,
- 0.025201408192515373,
- -0.016562271863222122,
- -0.08497856557369232,
- 0.09269878268241882,
- -0.028155988082289696,
- 0.06077008694410324,
- -0.02714540623128414,
- 0.023308400064706802,
- -0.07714875787496567,
- 0.05116383358836174,
- -0.05514826998114586,
- -0.041542746126651764,
- 0.07336903363466263,
- -0.06636987626552582,
- -0.07306301593780518,
- -0.058889634907245636,
- 0.03073235973715782,
- 0.061113107949495316,
- -0.01692427136003971,
- 0.007068886887282133,
- -0.049440380185842514,
- 0.030388904735445976,
- 0.044401876628398895,
- 0.047283072024583817,
- -0.006453492678701878,
- 0.013619601726531982,
- 0.01431507058441639,
- 0.11641991883516312,
- 0.05971923843026161,
- -0.007833264768123627,
- -0.01837630197405815,
- -0.022685326635837555,
- -0.06460181623697281,
- -0.004103872925043106,
- -0.001527912332676351,
- -0.09042888134717941,
- -0.011692606844007969,
- 0.02575860545039177,
- 0.008570731617510319,
- -0.025131279602646828,
- 0.003825987223535776,
- -0.029146596789360046,
- 0.05908706784248352,
- 0.11335577815771103,
- -0.02549680322408676,
- -0.07264494895935059,
- -0.02318130061030388,
- 0.018673310056328773,
- -0.01326876599341631,
- 0.02258918806910515,
- -0.04941179230809212,
- 0.10026012361049652,
- 0.029676387086510658,
- -0.09381029009819031,
- -0.04706864804029465,
- -0.032695114612579346,
- 0.068463996052742,
- -0.012922805733978748,
- -0.07382914423942566,
- 0.007108667399734259,
- -0.10220734030008316,
- 0.025226056575775146,
- 0.06380795687437057,
- -0.1524537205696106,
- -0.02978246659040451,
- -0.023027176037430763,
- 0.03397948667407036,
- -0.06948977708816528,
- -0.029537973925471306,
- -0.02327246032655239,
- 0.06866420805454254,
- -0.06613675504922867,
- 0.11930355429649353,
- 0.06157386302947998,
- 0.022629255428910255,
- -0.01735910028219223,
- -0.024092860519886017,
- -0.008631914854049683,
- 0.01554998941719532,
- -0.01257501170039177,
- 0.09194611012935638,
- 0.05998065695166588,
- 0.044732533395290375,
- -0.09170465916395187,
- 0.05391577631235123,
- -0.032587163150310516,
- 0.00557186221703887,
- 0.045265138149261475,
- -0.05855778977274895,
- 0.021867800503969193,
- 0.02950567752122879,
- -0.03479468449950218,
- -0.08112093806266785,
- -0.022929538041353226,
- 0.11810433864593506,
- -0.00040500881732441485,
- -0.011897597461938858,
- 0.03784696012735367,
- -0.09184505045413971,
- -0.024207619950175285,
- -4.3911884518752454e-33,
- 0.014119978994131088,
- 0.007677585817873478,
- 0.023477276787161827,
- 0.026083888486027718,
- 0.010977149941027164,
- 0.028415532782673836,
- -0.05003143846988678,
- 0.004438054282218218,
- -0.014646762982010841,
- -0.1134820431470871,
- 0.0013407462975010276,
- -0.02650628797709942,
- -0.07731179893016815,
- -0.034113701432943344,
- 0.10768716782331467,
- -0.034906577318906784,
- 0.0052474127151072025,
- -0.0063075656071305275,
- 0.02634839154779911,
- -0.00023873228929005563,
- -0.030327823013067245,
- 0.05263421684503555,
- 0.00038797385059297085,
- -0.014764959923923016,
- -0.01352824829518795,
- -0.06888660043478012,
- 0.039332740008831024,
- -0.01031579915434122,
- 0.01273219846189022,
- 0.022485123947262764,
- 0.03036825731396675,
- 0.0025633699260652065,
- 0.07391546666622162,
- 0.017275942489504814,
- 0.023822447285056114,
- -0.027179541066288948,
- 0.08917397260665894,
- -0.011931980028748512,
- -0.021320290863513947,
- 0.008154746145009995,
- 0.03355143964290619,
- -0.036609429866075516,
- -0.02622843347489834,
- 0.006553308572620153,
- 0.03941814973950386,
- 0.04524365812540054,
- 0.1018720269203186,
- 0.05543091520667076,
- 0.03312979266047478,
- 0.0030566928908228874,
- -0.06922020763158798,
- 0.04498783126473427,
- -0.0053269146010279655,
- 0.009851990267634392,
- -0.0064787850715219975,
- 0.10273494571447372,
- 0.023328280076384544,
- 0.06330280750989914,
- -0.04130390286445618,
- -0.008875426836311817,
- -0.004926962312310934,
- 0.0964011698961258,
- 0.09139708429574966,
- -0.020657232031226158,
- 0.013929178938269615,
- -0.011010360904037952,
- 0.07208918780088425,
- -0.014361978508532047,
- 0.09547867625951767,
- 0.06421387940645218,
- -0.11072695255279541,
- 0.011567517183721066,
- 0.04046979919075966,
- 0.052637480199337006,
- 0.07836274057626724,
- 0.019434968009591103,
- 0.05021698400378227,
- 0.09048067778348923,
- 0.019724931567907333,
- -0.04387745261192322,
- -0.019751882180571556,
- -0.05283799394965172,
- 0.02518712915480137,
- 0.0021942572202533484,
- 0.025241822004318237,
- -0.03984109312295914,
- 0.03278176486492157,
- -0.07159847766160965,
- 0.06575606018304825,
- 0.03504740819334984,
- -0.042750757187604904,
- -0.047061704099178314,
- 0.06748606264591217,
- 0.004892634227871895,
- -0.04012034088373184,
- 2.901403462170549e-33,
- -0.02763661928474903,
- -0.040142498910427094,
- 0.06817185878753662,
- 0.11937239021062851,
- 0.03939727321267128,
- 0.03401947021484375,
- -0.009981602430343628,
- 0.11279433220624924,
- -0.047606635838747025,
- -0.013163790106773376,
- -0.06919503211975098,
- -0.04622986912727356,
- 0.08800239115953445,
- -0.03340756520628929,
- 0.01624220423400402,
- 0.09288357198238373,
- 0.09652836620807648,
- 0.01903115026652813,
- -0.03922920301556587,
- 0.020411338657140732,
- -0.047023527324199677,
- 0.014920891262590885,
- 0.008323265239596367,
- -0.08813402056694031,
- -0.046118684113025665,
- 0.06482069939374924,
- 0.07746800035238266,
- -0.061699509620666504,
- -0.03659578785300255,
- 0.016146594658493996,
- 0.10819963365793228,
- -0.00694654555991292,
- -0.0672202855348587,
- -0.0009505242924205959,
- 0.03184717148542404,
- 0.07752705365419388,
- -0.04525458812713623,
- 0.10082311928272247,
- 0.03111458010971546,
- 0.03269699960947037,
- 0.019142434000968933,
- 0.06986477226018906,
- -0.0362597219645977,
- 0.04447309672832489,
- 0.06248282641172409,
- 0.02903762273490429,
- -0.029535651206970215,
- 0.03667959198355675,
- -0.056518543511629105,
- 0.002246055519208312,
- -0.10075028240680695,
- -0.03364710137248039,
- -0.05374758318066597,
- -0.057034771889448166,
- 0.05533275008201599,
- -0.0813894048333168,
- 0.028252024203538895,
- -0.03402471914887428,
- -0.055454522371292114,
- 0.031625162810087204,
- -0.037173639982938766,
- 0.03375687077641487,
- -0.10483632981777191,
- 0.005415528547018766,
- -0.022978074848651886,
- -0.0545034185051918,
- -0.016068745404481888,
- -0.10984408110380173,
- -0.004057740792632103,
- 0.019224002957344055,
- 0.07989240437746048,
- -0.050997741520404816,
- 0.06995595991611481,
- 0.05455249547958374,
- -0.0049663325771689415,
- -0.022005805745720863,
- 0.004665176849812269,
- 0.026734067127108574,
- -0.024564269930124283,
- -0.11370948702096939,
- -0.011856410652399063,
- -0.06997697800397873,
- 0.013131415471434593,
- 0.029931560158729553,
- -0.017963707447052002,
- 0.02955682761967182,
- 0.027467353269457817,
- 0.012869389727711678,
- -0.009784291498363018,
- 0.05561453849077225,
- -0.03397693112492561,
- 0.03696063533425331,
- -0.028957853093743324,
- -0.000055517390137538314,
- -0.05658283829689026,
- -1.348945488643949e-8,
- 0.07113926112651825,
- 0.015089820139110088,
- -0.013839293271303177,
- -0.02722497098147869,
- 0.0021709136199206114,
- 0.022860871627926826,
- -0.044250212609767914,
- -0.049191027879714966,
- 0.09876865893602371,
- 0.007575436495244503,
- -0.017392702400684357,
- -0.03802777826786041,
- -0.02191373147070408,
- -0.010935382917523384,
- 0.02399231120944023,
- 0.03980131447315216,
- 0.03947882354259491,
- -0.030831294134259224,
- -0.04962874576449394,
- -0.03588046506047249,
- -0.07043152302503586,
- 0.018925614655017853,
- -0.01768682152032852,
- 0.041640229523181915,
- -0.05735724791884422,
- 0.04496438056230545,
- 0.001718738698400557,
- 0.037442028522491455,
- -0.012817309238016605,
- 0.02473130263388157,
- 0.009681977331638336,
- 0.12157439440488815,
- -0.06888168305158615,
- -0.05673741176724434,
- 0.06384292244911194,
- 0.027072936296463013,
- 0.012822904624044895,
- 0.027580048888921738,
- 0.13303546607494354,
- -0.023795200511813164,
- -0.02844434231519699,
- -0.009005889296531677,
- 0.03350655362010002,
- 0.043176669627428055,
- -0.03210236504673958,
- -0.02157057262957096,
- 0.006647197995334864,
- 0.0651165321469307,
- -0.023343661800026894,
- -0.03193308785557747,
- 0.013988841325044632,
- 0.034669775515794754,
- 0.034355439245700836,
- 0.01834067516028881,
- 0.042993079870939255,
- 0.005701528396457434,
- -0.04060041904449463,
- 0.02330072969198227,
- -0.0671275332570076,
- -0.06323446333408356,
- 0.1201792061328888,
- -0.05187184736132622,
- 0.0025942048523575068,
- -0.018431616947054863
- ]
- },
- {
- "keyword": "coach",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.09734149277210236,
- 0.05697297304868698,
- -0.01374976709485054,
- 0.016277698799967766,
- -0.046837009489536285,
- 0.023930136114358902,
- 0.13098210096359253,
- 0.04047096520662308,
- 0.047327857464551926,
- -0.009409181773662567,
- -0.03315143659710884,
- 0.011219910345971584,
- 0.04078124836087227,
- 0.037986744195222855,
- -0.015080781653523445,
- 0.035488322377204895,
- -0.02970907837152481,
- 0.034159526228904724,
- -0.009221723303198814,
- -0.16656945645809174,
- -0.07180127501487732,
- 0.059554487466812134,
- -0.05453229323029518,
- 0.02925572730600834,
- -0.017903806641697884,
- 0.03500668331980705,
- -0.0548936128616333,
- -0.03324730321764946,
- -0.033968787640333176,
- -0.09226379543542862,
- 0.025872960686683655,
- -0.12270137667655945,
- 0.005728744436055422,
- 0.0044457269832491875,
- -0.06053851544857025,
- 0.04854767024517059,
- -0.050595398992300034,
- 0.029992448166012764,
- 0.015236742794513702,
- 0.011053727939724922,
- 0.042249199002981186,
- -0.036897800862789154,
- -0.043977100402116776,
- 0.0067093693651258945,
- 0.02679624781012535,
- 0.07686831057071686,
- 0.023008139804005623,
- -0.006911293603479862,
- -0.019097840413451195,
- 0.0031493331771343946,
- -0.06072406470775604,
- 0.01653853803873062,
- 0.04222768545150757,
- -0.020851045846939087,
- 0.0717611312866211,
- 0.014592775143682957,
- 0.008565264753997326,
- 0.008752926252782345,
- -0.021372847259044647,
- 0.06549986451864243,
- 0.04823209345340729,
- 0.01855018548667431,
- -0.11307681351900101,
- 0.048272330313920975,
- 0.035628583282232285,
- 0.021008415147662163,
- -0.08857166767120361,
- 0.0221920944750309,
- -0.0013007493689656258,
- -0.05331658944487572,
- 0.04407118633389473,
- -0.040522560477256775,
- 0.04077654704451561,
- -0.05736039951443672,
- 0.036411747336387634,
- -0.04284215718507767,
- 0.06641003489494324,
- 0.011579508893191814,
- 0.09244975447654724,
- -0.017166350036859512,
- -0.05277474969625473,
- -0.15642599761486053,
- -0.029962483793497086,
- 0.013304365798830986,
- 0.005895472597330809,
- 0.013352867215871811,
- -0.02999173477292061,
- -0.011391141451895237,
- 0.04096360132098198,
- 0.08705338835716248,
- -0.015387083403766155,
- -0.017722763121128082,
- 0.031071746721863747,
- -0.008829822763800621,
- -0.017246153205633163,
- 0.12887784838676453,
- -0.07836904376745224,
- -0.053387466818094254,
- -0.06312069296836853,
- 0.270027756690979,
- -0.023446036502718925,
- 0.04902573302388191,
- -0.017473440617322922,
- 0.009647849015891552,
- -0.02470368519425392,
- 0.03582670912146568,
- -0.018364736810326576,
- 0.06777270883321762,
- -0.04323169216513634,
- 0.01885860227048397,
- -0.03349652513861656,
- 0.029941357672214508,
- -0.04484071582555771,
- 0.09618008136749268,
- -0.003116994397714734,
- 0.011143147945404053,
- 0.007217250764369965,
- 0.024912776425480843,
- -0.059999730437994,
- 0.023993292823433876,
- 0.024867407977581024,
- 0.03832289204001427,
- -0.0779685527086258,
- 0.04316987842321396,
- -0.07504896819591522,
- -0.018457433208823204,
- -0.0015810715267434716,
- -5.644157798650307e-33,
- 0.039543427526950836,
- -0.039554379880428314,
- 0.06575925648212433,
- 0.03788432106375694,
- 0.024237267673015594,
- 0.059444066137075424,
- 0.07114151120185852,
- -0.011182391084730625,
- -0.005472687538713217,
- -0.02193685807287693,
- 0.06481950730085373,
- -0.027104686945676804,
- 0.004808116238564253,
- -0.005221565719693899,
- -0.034496091306209564,
- 0.03231392800807953,
- -0.045752719044685364,
- 0.019493546336889267,
- -0.022561637684702873,
- -0.018568433821201324,
- -0.0026116911321878433,
- 0.09183089435100555,
- -0.02791420742869377,
- 0.06755148619413376,
- 0.007818394340574741,
- -0.008001774549484253,
- -0.008696011267602444,
- -0.025317959487438202,
- 0.08638390898704529,
- 0.022450033575296402,
- -0.035433705896139145,
- 0.004559932742267847,
- -0.048419371247291565,
- -0.029983533546328545,
- -0.024701625108718872,
- -0.10997489094734192,
- -0.050216976553201675,
- -0.06804226338863373,
- 0.0015724505065008998,
- -0.004074841272085905,
- -0.034722283482551575,
- -0.006913675460964441,
- -0.0314565934240818,
- -0.01580151729285717,
- -0.007895521819591522,
- 0.01558990590274334,
- 0.036071546375751495,
- -0.03068259358406067,
- -0.018388113006949425,
- 0.030691077932715416,
- 0.01527509093284607,
- -0.041599079966545105,
- 0.001255915267392993,
- -0.07509153336286545,
- 0.06425268203020096,
- -0.053806375712156296,
- 0.07124260067939758,
- 0.06834175437688828,
- 0.039474766701459885,
- 0.02054522931575775,
- 0.028902580961585045,
- 0.06986334919929504,
- -0.009045449085533619,
- 0.06455019116401672,
- 0.06869696080684662,
- -0.10703420639038086,
- 0.07137278467416763,
- -0.0016816349234431982,
- 0.056621067225933075,
- -0.03680174797773361,
- -0.022841686382889748,
- 0.04706836864352226,
- 0.004629203584045172,
- 0.03382686898112297,
- 0.030654864385724068,
- -0.054798271507024765,
- -0.0124179907143116,
- -0.007350497413426638,
- -0.02647235430777073,
- 0.005999098066240549,
- 0.017951669171452522,
- -0.027109382674098015,
- -0.03603089973330498,
- 0.011466420255601406,
- 0.036336638033390045,
- 0.006216689012944698,
- -0.08222214132547379,
- 0.007707715500146151,
- 0.1055862158536911,
- 0.05188260227441788,
- -0.08077502250671387,
- -0.014656397514045238,
- 0.017129136249423027,
- 0.09234509617090225,
- -0.0026723791379481554,
- 4.083288645170471e-33,
- -0.03450244665145874,
- -0.004043221939355135,
- 0.02939567342400551,
- 0.07710867375135422,
- -0.007595783565193415,
- -0.06787485629320145,
- -0.03002438321709633,
- 0.054939672350883484,
- -0.0007532067247666419,
- 0.01899394579231739,
- -0.02080558054149151,
- 0.0248166061937809,
- 0.02854117564857006,
- 0.010365555994212627,
- -0.05071273818612099,
- 0.03653211519122124,
- -0.01875021867454052,
- -0.025956029072403908,
- -0.06040126457810402,
- -0.04450775310397148,
- -0.00010374742851126939,
- 0.09043347835540771,
- 0.011158564127981663,
- -0.02501489594578743,
- -0.0338619202375412,
- 0.010168408043682575,
- -0.06222499534487724,
- 0.09893636405467987,
- -0.035773247480392456,
- 0.02630975842475891,
- 0.022782398387789726,
- -0.06163685396313667,
- 0.01947469636797905,
- -0.051535464823246,
- -0.036914531141519547,
- 0.09738635271787643,
- 0.01584954746067524,
- 0.02185729146003723,
- -0.0465904138982296,
- 0.050124816596508026,
- 0.09164348989725113,
- -0.050649791955947876,
- 0.01157707441598177,
- 0.030196474865078926,
- -0.03278397396206856,
- 0.046158567070961,
- 0.01901257038116455,
- -0.05256202444434166,
- -0.030562538653612137,
- 0.045310378074645996,
- -0.1514827311038971,
- 0.00490035442635417,
- -0.062405843287706375,
- -0.02721473015844822,
- 0.012293671257793903,
- -0.062276262789964676,
- -0.03000185638666153,
- -0.010438704863190651,
- -0.03396860510110855,
- -0.03572662174701691,
- 0.01836918480694294,
- 0.015621011145412922,
- -0.020411236211657524,
- 0.0282292477786541,
- -0.01027324516326189,
- 0.0393582358956337,
- -0.030836258083581924,
- -0.0027733214665204287,
- 0.032732415944337845,
- 0.024632727727293968,
- 0.01992998830974102,
- 0.06184438616037369,
- -0.03597832843661308,
- 0.07779824733734131,
- -0.06467825174331665,
- 0.12533600628376007,
- -0.06860575824975967,
- 0.037435535341501236,
- -0.035297147929668427,
- 0.0250755213201046,
- -0.12291330844163895,
- -0.10561428219079971,
- -0.04383142292499542,
- 0.07960763573646545,
- 0.017823312431573868,
- 0.03719142824411392,
- 0.06175684928894043,
- -0.004737113602459431,
- 0.05830356106162071,
- -0.058944057673215866,
- 0.011488312855362892,
- -0.029016690328717232,
- 0.06068713217973709,
- -0.032582975924015045,
- 0.012693993747234344,
- -1.2711918628838248e-8,
- -0.04802381992340088,
- -0.009319640696048737,
- 0.042616572231054306,
- -0.03688536211848259,
- 0.05807558074593544,
- 0.008616095408797264,
- -0.029381440952420235,
- -0.06290899217128754,
- 0.03725464269518852,
- 0.05745524913072586,
- 0.052800580859184265,
- -0.005844634957611561,
- 0.04134185612201691,
- -0.013355279341340065,
- 0.10125329345464706,
- -0.030710764229297638,
- 0.0010140263475477695,
- 0.09884098917245865,
- 0.004438959527760744,
- 0.02126636542379856,
- -0.027124276384711266,
- 0.036780945956707,
- 0.04031204804778099,
- 0.02977757900953293,
- 0.023869184777140617,
- -0.06996233761310577,
- -0.07877074182033539,
- 0.12497106194496155,
- -0.0693398043513298,
- 0.060293249785900116,
- 0.024664536118507385,
- 0.07657750695943832,
- -0.047314856201410294,
- -0.024659764021635056,
- -0.008573205210268497,
- -0.02207682840526104,
- -0.039624471217393875,
- -0.13690674304962158,
- 0.019731642678380013,
- -0.0018395433435216546,
- -0.06215009465813637,
- 0.08971159905195236,
- 0.034182462841272354,
- 0.0071353488601744175,
- -0.02372453548014164,
- 0.036628659814596176,
- 0.07979778945446014,
- -0.02290583960711956,
- -0.05326646938920021,
- -0.0934656485915184,
- -0.04101353511214256,
- 0.04353376105427742,
- 0.04723910242319107,
- 0.03349994868040085,
- 0.028826968744397163,
- -0.001716446946375072,
- -0.018373070284724236,
- -0.05004742741584778,
- -0.09245239943265915,
- -0.017718935385346413,
- 0.014823393896222115,
- 0.04321764409542084,
- 0.007532790768891573,
- -0.032045360654592514
- ]
- },
- {
- "keyword": "volunteer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.0026335567235946655,
- 0.012912602163851261,
- 0.03187042474746704,
- 0.06209583207964897,
- -0.012426403351128101,
- -0.021017111837863922,
- 0.06079280376434326,
- -0.029402177780866623,
- 0.007417339365929365,
- 0.04638664424419403,
- 0.0030742506496608257,
- -0.10068043321371078,
- -0.024147674441337585,
- 0.0430094450712204,
- 0.03034922108054161,
- 0.007699509151279926,
- 0.004002903122454882,
- 0.007076331414282322,
- -0.054674986749887466,
- -0.02365001291036606,
- -0.10421209037303925,
- -0.0521368570625782,
- 0.012881881557404995,
- 0.007009362336248159,
- 0.005043235141783953,
- 0.040817782282829285,
- -0.015338354744017124,
- -0.02443251572549343,
- 0.044572554528713226,
- -0.0375620536506176,
- -0.009996253997087479,
- -0.0479847714304924,
- 0.02293972671031952,
- 0.018468419089913368,
- 0.034924160689115524,
- 0.14012978971004486,
- 0.01600569859147072,
- 0.004610211122781038,
- 0.002578859915956855,
- -0.019853288307785988,
- 0.0038530174642801285,
- -0.013814405538141727,
- -0.000879844999872148,
- 0.019507046788930893,
- 0.006905416026711464,
- 0.03150510787963867,
- -0.003327165963128209,
- 0.009884322993457317,
- 0.04575641080737114,
- -0.04884007200598717,
- 0.06558288633823395,
- 0.0031698548700660467,
- -0.056673794984817505,
- -0.010552858002483845,
- -0.015293103642761707,
- -0.003605941077694297,
- 0.02901112660765648,
- -0.019359329715371132,
- 0.0009436059044674039,
- -0.03518639877438545,
- 0.027001915499567986,
- 0.007505309768021107,
- -0.04033327475190163,
- 0.01329040713608265,
- 0.034578222781419754,
- 0.036153074353933334,
- 0.015166018158197403,
- 0.047340910881757736,
- 0.02365170791745186,
- -0.0919831395149231,
- 0.006487577222287655,
- 0.034019194543361664,
- 0.008959215134382248,
- 0.011453893035650253,
- 0.05450401455163956,
- -0.05034126713871956,
- 0.031102215871214867,
- -0.04242926836013794,
- 0.09457701444625854,
- -0.025840329006314278,
- -0.007078590337187052,
- -0.029163053259253502,
- -0.04712674394249916,
- 0.08215722441673279,
- -0.03313250467181206,
- 0.028056593611836433,
- 0.040185898542404175,
- 0.026354504749178886,
- 0.06154461205005646,
- 0.03143082559108734,
- -0.0941682681441307,
- 0.040971703827381134,
- 0.004981853533536196,
- -0.0012064117472618818,
- -0.12153180688619614,
- 0.035136859863996506,
- 0.07022014260292053,
- 0.06651921570301056,
- -0.10342907905578613,
- 0.3134956955909729,
- 0.030252061784267426,
- 0.013800488784909248,
- 0.04046066477894783,
- -0.03277945891022682,
- 0.008299867622554302,
- 0.021073654294013977,
- -0.0561760775744915,
- -0.03643479943275452,
- -0.017379267141222954,
- 0.018406672403216362,
- -0.0011787592666223645,
- 0.01780490018427372,
- 0.006241068709641695,
- 0.05586634576320648,
- 0.03656047210097313,
- 0.06255782395601273,
- -0.03041940927505493,
- -0.001991632394492626,
- -0.0005949168698862195,
- 0.08638074994087219,
- 0.054016124457120895,
- 0.033392760902643204,
- 0.007770800497382879,
- -0.007047036197036505,
- 0.0075088366866111755,
- -0.021854396909475327,
- 0.05036823824048042,
- -6.607879127990282e-33,
- 0.13940715789794922,
- -0.028592420741915703,
- 0.10533060133457184,
- 0.1148170679807663,
- 0.030364394187927246,
- 0.020397568121552467,
- -0.00835710670799017,
- 0.015620149672031403,
- -0.021084407344460487,
- -0.007233370095491409,
- 0.05593321844935417,
- 0.04302487522363663,
- 0.010072492994368076,
- 0.024560559540987015,
- 0.028869029134511948,
- -0.052103787660598755,
- -0.06857059895992279,
- -0.06903175264596939,
- -0.049294229596853256,
- 0.007814565673470497,
- 0.006556385196745396,
- -0.05309250205755234,
- -0.04141005128622055,
- 0.10765329748392105,
- 0.045013293623924255,
- -0.061454955488443375,
- 0.018595850095152855,
- -0.07628483325242996,
- 0.1144522950053215,
- -0.002290795324370265,
- 0.008265217766165733,
- 0.0514972023665905,
- 0.01866382732987404,
- -0.06451740115880966,
- -0.05486541613936424,
- -0.04590083658695221,
- 0.02400602400302887,
- -0.013403390534222126,
- -0.01791043020784855,
- -0.09631805121898651,
- -0.03022480569779873,
- 0.04219508543610573,
- 0.02719559706747532,
- -0.04517457261681557,
- 0.06035906821489334,
- -0.08428455144166946,
- 0.09701996296644211,
- -0.04913080111145973,
- -0.056954313069581985,
- 0.0872674211859703,
- 0.010791175067424774,
- -0.01792812906205654,
- -0.05149872973561287,
- -0.030950861051678658,
- -0.07561230659484863,
- -0.032222848385572433,
- 0.051228344440460205,
- 0.011333548463881016,
- -0.036599051207304,
- -0.025916652753949165,
- 0.11068003624677658,
- 0.027737371623516083,
- -0.019317835569381714,
- 0.06986690312623978,
- 0.08643105626106262,
- 0.002791415201500058,
- 0.0473109669983387,
- -0.03124690055847168,
- 0.04916542395949364,
- -0.035238880664110184,
- -0.05776630714535713,
- 0.02125553786754608,
- -0.09052194654941559,
- 0.012194795534014702,
- -0.08110759407281876,
- 0.0028848862275481224,
- 0.037972304970026016,
- -0.057070158421993256,
- 0.015835821628570557,
- 0.008476497605443,
- 0.07463549077510834,
- -0.04295273497700691,
- -0.07444246113300323,
- -0.003328177845105529,
- 0.048345137387514114,
- -0.03978912532329559,
- -0.07690846174955368,
- -0.08678946644067764,
- 0.019291842356324196,
- -0.020171649754047394,
- -0.07416245341300964,
- -0.005491035990417004,
- 0.03416694700717926,
- -0.00471496069803834,
- -0.044211577624082565,
- 4.42788444677204e-33,
- 0.047055721282958984,
- -0.0832623541355133,
- 0.0595526359975338,
- 0.033589333295822144,
- 0.1260254681110382,
- -0.016590623185038567,
- -0.018570488318800926,
- -0.07990973442792892,
- -0.00738122221082449,
- 0.09597256779670715,
- -0.09164248406887054,
- -0.03472010791301727,
- 0.09597452729940414,
- 0.0560050904750824,
- -0.008106821216642857,
- 0.0006319157546386123,
- -0.005901819095015526,
- 0.051935918629169464,
- -0.06562559306621552,
- 0.06746744364500046,
- -0.04800920933485031,
- 0.0631759837269783,
- 0.0681132823228836,
- 0.027083419263362885,
- 0.004462133161723614,
- 0.0052683488465845585,
- 0.014682700857520103,
- 0.032563965767621994,
- -0.046883534640073776,
- -0.03040134161710739,
- 0.012896111235022545,
- -0.010685554705560207,
- -0.02859553135931492,
- -0.04920486733317375,
- -0.07308882474899292,
- 0.0830359235405922,
- 0.08419692516326904,
- 0.04361763224005699,
- -0.08669765293598175,
- 0.015839572995901108,
- 0.05856013670563698,
- -0.01462612021714449,
- 0.021129457280039787,
- 0.020568426698446274,
- -0.028347931802272797,
- 0.08853519707918167,
- -0.0769878476858139,
- -0.0346468910574913,
- -0.08448777347803116,
- 0.021473772823810577,
- -0.08472934365272522,
- -0.06485564261674881,
- -0.06846056878566742,
- 0.028393425047397614,
- 0.040712956339120865,
- 0.0014747970271855593,
- -0.08808575570583344,
- -0.06105830892920494,
- -0.021757856011390686,
- -0.00980320107191801,
- -0.0009312258334830403,
- 0.01966741681098938,
- -0.029617635533213615,
- 0.05240675061941147,
- -0.029288137331604958,
- -0.0749645084142685,
- -0.005519694648683071,
- 0.028124907985329628,
- -0.12276652455329895,
- 0.01735754683613777,
- 0.07161732763051987,
- 0.038179852068424225,
- -0.007643338292837143,
- -0.09415265172719955,
- -0.024138689041137695,
- -0.040340669453144073,
- -0.0482502318918705,
- 0.02927256189286709,
- -0.0034956238232553005,
- -0.07771312445402145,
- 0.00849066860973835,
- -0.030659222975373268,
- 0.017699969932436943,
- -0.0313832052052021,
- -0.058354657143354416,
- 0.019179197028279305,
- 0.1089591532945633,
- 0.01589142344892025,
- -0.0230474304407835,
- -0.011668052524328232,
- -0.027601830661296844,
- 0.027482319623231888,
- 0.06524784117937088,
- 0.008489606902003288,
- 0.001827635569497943,
- -1.2644075120249454e-8,
- 0.08548229932785034,
- 0.03265383839607239,
- -0.085175521671772,
- -0.002311727497726679,
- 0.03272101655602455,
- -0.06317166984081268,
- -0.07526540011167526,
- 0.041988056153059006,
- 0.05745982006192207,
- 0.04850814864039421,
- 0.0321924053132534,
- -0.01275282446295023,
- 0.020007004961371422,
- 0.022944211959838867,
- 0.06193109229207039,
- -0.04112159088253975,
- -0.012209226377308369,
- -0.023906534537672997,
- -0.07191219925880432,
- -0.024903496727347374,
- 0.018316999077796936,
- -0.005774690303951502,
- -0.013868328183889389,
- 0.022905122488737106,
- 0.008896796964108944,
- -0.035291243344545364,
- -0.02803051471710205,
- 0.033830463886260986,
- -0.042980268597602844,
- 0.0411255843937397,
- -0.01774602383375168,
- 0.05319630727171898,
- -0.09951262176036835,
- -0.04708504304289818,
- -0.052444957196712494,
- -0.0587526373565197,
- 0.01996244303882122,
- -0.03504372388124466,
- -0.0016024552751332521,
- -0.0545915886759758,
- -0.031753383576869965,
- 0.08906204998493195,
- 0.012128735892474651,
- -0.025653688237071037,
- -0.003926938399672508,
- 0.04631419852375984,
- 0.006939643528312445,
- -0.013205980882048607,
- 0.03503948077559471,
- -0.0757291167974472,
- -0.01588262990117073,
- -0.04260603338479996,
- 0.04005046561360359,
- 0.03418303281068802,
- 0.016398509964346886,
- 0.03582117334008217,
- 0.004954186733812094,
- 0.053077831864356995,
- 0.003211334813386202,
- 0.01641969010233879,
- 0.0720362663269043,
- -0.07933733612298965,
- -0.07136739790439606,
- -0.03680627420544624
- ]
- },
- {
- "keyword": "activist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.0030567897483706474,
- 0.023721616715192795,
- -0.08902236819267273,
- 0.008643673732876778,
- 0.027191907167434692,
- 0.012430651113390923,
- 0.1440388262271881,
- -0.003049753373488784,
- 0.026788415387272835,
- 0.03154190629720688,
- 0.030438832938671112,
- 0.0021314427722245455,
- -0.019285084679722786,
- -0.038424815982580185,
- 0.009470267221331596,
- 0.0987032949924469,
- -0.0495699904859066,
- 0.04608310014009476,
- -0.10909420996904373,
- -0.05042773112654686,
- -0.14447012543678284,
- 0.011558094061911106,
- 0.03950067609548569,
- 0.1077520027756691,
- -0.028513606637716293,
- 0.057421691715717316,
- 0.023701202124357224,
- 0.01563364826142788,
- 0.07684095203876495,
- -0.0007538640056736767,
- -0.013560861349105835,
- -0.07405317574739456,
- -0.028547145426273346,
- 0.029750758782029152,
- -0.020193036645650864,
- 0.04756242781877518,
- 0.062773197889328,
- 0.052941083908081055,
- 0.02053459733724594,
- 0.012803277000784874,
- 0.0019904759246855974,
- -0.03479842469096184,
- 0.007925687357783318,
- -0.03709428012371063,
- 0.017426224425435066,
- -0.03231975436210632,
- 0.03200490400195122,
- -0.008574219420552254,
- -0.033683858811855316,
- -0.0506976954638958,
- 0.012482089921832085,
- -0.044720541685819626,
- -0.04098072648048401,
- -0.059581976383924484,
- 0.029200678691267967,
- -0.08878383785486221,
- 0.030357109382748604,
- 0.04549264907836914,
- 0.05034637823700905,
- -0.004028656519949436,
- 0.13206560909748077,
- -0.03804698958992958,
- -0.03782558813691139,
- 0.04887119308114052,
- -0.04042313992977142,
- 0.007075322791934013,
- -0.006897634360939264,
- 0.03386564552783966,
- 0.031012535095214844,
- -0.045940324664115906,
- 0.021827010437846184,
- 0.013596775010228157,
- 0.04952942207455635,
- -0.004717680159956217,
- -0.00811877753585577,
- -0.1056818813085556,
- 0.047380343079566956,
- 0.04338190704584122,
- 0.14086054265499115,
- 0.023195486515760422,
- 0.10091643780469894,
- 0.0005336463800631464,
- -0.029861966148018837,
- 0.021023718640208244,
- -0.005694101564586163,
- 0.004634329583495855,
- -0.021117348223924637,
- 0.07274791598320007,
- 0.034114617854356766,
- 0.007879789918661118,
- -0.04210369661450386,
- 0.07745572179555893,
- 0.09696085005998611,
- -0.006587445270270109,
- -0.10352128744125366,
- 0.00769692612811923,
- 0.022939283400774002,
- -0.04353524371981621,
- -0.12315376102924347,
- 0.2777690589427948,
- -0.012325549498200417,
- 0.02584134042263031,
- 0.026803573593497276,
- 0.035314902663230896,
- 0.029773298650979996,
- -0.08431757241487503,
- -0.027438828721642494,
- -0.011161673814058304,
- -0.08216173946857452,
- 0.03968803584575653,
- 0.0009409109479747713,
- 0.0023204945027828217,
- -0.025495339184999466,
- 0.044491689652204514,
- 0.09422750025987625,
- 0.04863878712058067,
- -0.01911264657974243,
- 0.01785167306661606,
- -0.03998707979917526,
- -0.021279312670230865,
- -0.04570387303829193,
- -0.02682785503566265,
- -0.06537117809057236,
- 0.05282024294137955,
- 0.03964189067482948,
- -0.00017989319167099893,
- -0.025628231465816498,
- -6.928191787697755e-33,
- -0.0845985859632492,
- 0.007276626769453287,
- 0.05376514047384262,
- 0.07868511229753494,
- -0.011155365034937859,
- 0.03709059953689575,
- 0.016534598544239998,
- -0.04721417650580406,
- -0.0048995185643434525,
- -0.01088946033269167,
- 0.049461811780929565,
- 0.03715573996305466,
- 0.004807180259376764,
- 0.041022177785634995,
- -0.016538970172405243,
- -0.024654394015669823,
- -0.1411370486021042,
- -0.01002289168536663,
- -0.07406704872846603,
- -0.011642676778137684,
- -0.0012569623067975044,
- 0.05914992466568947,
- -0.06584138423204422,
- 0.06027214974164963,
- 0.01471987646073103,
- -0.04322391748428345,
- 0.05551911145448685,
- -0.04024486988782883,
- 0.02249758690595627,
- 0.029690729454159737,
- 0.016228826716542244,
- 0.06306681036949158,
- -0.022030536085367203,
- -0.029341459274291992,
- 0.06439453363418579,
- -0.008729514665901661,
- 0.015237457118928432,
- -0.07862594723701477,
- 0.0069494894705712795,
- -0.000991663197055459,
- -0.015341420657932758,
- 0.04051481559872627,
- 0.10674922913312912,
- -0.027083422988653183,
- 0.007343030069023371,
- -0.00025734261726029217,
- 0.05939120799303055,
- -0.027263890951871872,
- 0.06159253045916557,
- -0.005239543039351702,
- -0.0362454317510128,
- 0.01215087529271841,
- -0.0787319466471672,
- -0.034256696701049805,
- 0.0031554214656352997,
- -0.10675414651632309,
- -0.05592607706785202,
- 0.10412036627531052,
- -0.04240857809782028,
- -0.07302882522344589,
- -0.014361393637955189,
- 0.07784982025623322,
- -0.003842192003503442,
- 0.03716190904378891,
- -0.00008986292232293636,
- -0.05706389993429184,
- -0.029185231775045395,
- -0.013452045619487762,
- 0.00416259141638875,
- 0.041860390454530716,
- 0.0648360401391983,
- 0.008752764202654362,
- 0.06722179800271988,
- -0.009335294365882874,
- -0.09131209552288055,
- 0.03595150634646416,
- -0.0021666681859642267,
- 0.022615747526288033,
- -0.06944949179887772,
- 0.03799964115023613,
- -0.043400414288043976,
- 0.00380607764236629,
- 0.011948328465223312,
- -0.009340020827949047,
- -0.013636824674904346,
- -0.005402259062975645,
- -0.019628899171948433,
- -0.07239992171525955,
- 0.0688088908791542,
- 0.020075403153896332,
- -0.07066217064857483,
- -0.012401916086673737,
- 0.003795648692175746,
- 0.03157154098153114,
- -0.1625647097826004,
- 3.965306481230346e-33,
- -0.04078087583184242,
- -0.043977681547403336,
- 0.07259314507246017,
- 0.05959412828087807,
- 0.13012319803237915,
- -0.03315271809697151,
- -0.01742548495531082,
- -0.0008071711054071784,
- 0.028414377942681313,
- 0.013675489462912083,
- -0.03660842403769493,
- -0.012667316943407059,
- -0.008953520096838474,
- 0.04842766001820564,
- 0.037030648440122604,
- -0.00692540779709816,
- -0.025515394285321236,
- -0.032723285257816315,
- -0.02782350406050682,
- -0.010997720062732697,
- -0.0693177655339241,
- -0.008380093611776829,
- -0.008648641407489777,
- -0.05171480029821396,
- -0.03581409528851509,
- 0.02217198722064495,
- 0.10766533762216568,
- 0.023838328197598457,
- 0.06015067920088768,
- -0.04475299268960953,
- 0.030956773087382317,
- 0.036730702966451645,
- -0.1049938052892685,
- -0.07544391602277756,
- -0.03700312227010727,
- 0.1227046325802803,
- 0.018194565549492836,
- -0.005539461970329285,
- -0.010938921011984348,
- -0.02973150461912155,
- 0.0042173853144049644,
- 0.007819374091923237,
- 0.007052040193229914,
- 0.037934962660074234,
- -0.01977658085525036,
- 0.016333725303411484,
- 0.01998227834701538,
- -0.005030003841966391,
- -0.002345505403354764,
- 0.01907498762011528,
- -0.09601756185293198,
- 0.0026720415335148573,
- 0.08973515033721924,
- 0.027744002640247345,
- 0.11084076762199402,
- 0.025237558409571648,
- -0.052961256355047226,
- 0.002024110872298479,
- -0.08259307593107224,
- 0.031248632818460464,
- -0.007217160426080227,
- 0.014835304580628872,
- -0.020821373909711838,
- 0.04601573944091797,
- -0.04546782746911049,
- -0.023007316514849663,
- -0.08086156100034714,
- -0.014949277974665165,
- -0.10791883617639542,
- -0.058340929448604584,
- 0.10495701432228088,
- -0.002901701722294092,
- -0.10732551664113998,
- 0.009055237285792828,
- -0.0511959046125412,
- -0.04099806025624275,
- -0.044523686170578,
- -0.002798328408971429,
- 0.015049790032207966,
- -0.051603540778160095,
- -0.07023965567350388,
- -0.07704521715641022,
- -0.034921735525131226,
- -0.03054731711745262,
- -0.025166120380163193,
- 0.0076267956756055355,
- -0.02819182723760605,
- 0.041395846754312515,
- 0.028690261766314507,
- 0.017896493896842003,
- 0.0850808322429657,
- -0.032597288489341736,
- -0.08817541599273682,
- -0.011414280161261559,
- 0.050005972385406494,
- -1.2662830783938261e-8,
- -0.00913271401077509,
- 0.0102665014564991,
- -0.03431941941380501,
- -0.05432397499680519,
- 0.0346967913210392,
- 0.0361662320792675,
- -0.005097249057143927,
- -0.10343209654092789,
- -0.00012087828508811072,
- 0.08501536399126053,
- 0.03497437760233879,
- -0.025039775297045708,
- 0.028847696259617805,
- 0.03148734197020531,
- 0.005737280007451773,
- -0.10126595944166183,
- -0.012195025570690632,
- -0.022053156048059464,
- -0.041307251900434494,
- -0.025027897208929062,
- 0.05769268050789833,
- -0.03518327325582504,
- 0.02251981757581234,
- -0.07324936240911484,
- 0.014429987408220768,
- 0.029711585491895676,
- -0.05029238760471344,
- -0.008069816045463085,
- -0.033555734902620316,
- -0.007452885154634714,
- -0.0076618194580078125,
- 0.0759400874376297,
- -0.07565761357545853,
- -0.03582361713051796,
- 0.025277407839894295,
- 0.013942237943410873,
- -0.007871394976973534,
- -0.026643235236406326,
- 0.004641369916498661,
- 0.023474758490920067,
- -0.009729837067425251,
- 0.023662449792027473,
- 0.035378411412239075,
- 0.01933601126074791,
- -0.01594230905175209,
- 0.03199741989374161,
- 0.013749353587627411,
- 0.034321680665016174,
- 0.02737504243850708,
- 0.022068817168474197,
- -0.036412011831998825,
- -0.03536435216665268,
- 0.04729284346103668,
- 0.028697527945041656,
- -0.018159573897719383,
- -0.03825825825333595,
- 0.009111899882555008,
- 0.07104184478521347,
- -0.02686467580497265,
- -0.004045167937874794,
- 0.10465527325868607,
- -0.05980972200632095,
- -0.006141641642898321,
- -0.0017288560047745705
- ]
- },
- {
- "keyword": "advocate",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.0005557604017667472,
- 0.05482091009616852,
- -0.025416182354092598,
- -0.014262055978178978,
- 0.024011200293898582,
- 0.010338387452065945,
- 0.06502057611942291,
- 0.08245691657066345,
- 0.016153214499354362,
- 0.03956668823957443,
- -0.02611358091235161,
- 0.020519273355603218,
- -0.04467085003852844,
- 0.006133640184998512,
- 0.07151758670806885,
- 0.06290075927972794,
- 0.04012799263000488,
- -0.01097189448773861,
- -0.01132358331233263,
- -0.012413413263857365,
- -0.10671088844537735,
- -0.010135422460734844,
- -0.012777428142726421,
- 0.033697403967380524,
- -0.07836949080228806,
- 0.05138080567121506,
- 0.004264988005161285,
- -0.03665568307042122,
- 0.08475828915834427,
- -0.05457964166998863,
- 0.034789618104696274,
- -0.026741210371255875,
- 0.04033699631690979,
- 0.010823464952409267,
- 0.015028508380055428,
- 0.054635364562273026,
- 0.00814169179648161,
- 0.03636777400970459,
- 0.02266593836247921,
- -0.014744911342859268,
- 0.026961147785186768,
- -0.04451669752597809,
- -0.04951351135969162,
- -0.02946271188557148,
- 0.0809212252497673,
- 0.019389323890209198,
- 0.010327602736651897,
- 0.045148372650146484,
- 0.06424849480390549,
- -0.048318713903427124,
- -0.0684327632188797,
- -0.07283705472946167,
- -0.028433414176106453,
- -0.05532946065068245,
- -0.003433750243857503,
- -0.0616292804479599,
- 0.02441737987101078,
- 0.027009328827261925,
- -0.007314779330044985,
- -0.008345190435647964,
- 0.08226543664932251,
- 0.025311727076768875,
- -0.07178815454244614,
- 0.017218846827745438,
- -0.042028721421957016,
- 0.039513617753982544,
- 0.012585722841322422,
- 0.08006321638822556,
- -0.04894651472568512,
- 0.005487396381795406,
- 0.048388876020908356,
- 0.07495466619729996,
- 0.11800144612789154,
- 0.030688118189573288,
- 0.020034031942486763,
- -0.05234517902135849,
- 0.04687780514359474,
- -0.002658120822161436,
- 0.13475079834461212,
- -0.07188614457845688,
- 0.006733819376677275,
- -0.03062606416642666,
- -0.0984581857919693,
- -0.02336176298558712,
- -0.04307347536087036,
- -0.022178467363119125,
- 0.017699405550956726,
- 0.05136502906680107,
- 0.041049130260944366,
- 0.013550417497754097,
- 0.03198530897498131,
- -0.012525520287454128,
- 0.1194445863366127,
- 0.01910402998328209,
- -0.021113790571689606,
- 0.00004146008359384723,
- -0.005748621188104153,
- -0.005834119860082865,
- -0.08536126464605331,
- 0.2758496403694153,
- 0.012994217686355114,
- 0.005931635852903128,
- 0.015418599359691143,
- -0.01293016504496336,
- 0.007873955182731152,
- -0.07004864513874054,
- -0.09036955237388611,
- -0.03571199253201485,
- -0.0008076008525677025,
- 0.07517898827791214,
- -0.023025816306471825,
- -0.0028857961297035217,
- -0.04233067110180855,
- 0.0892718955874443,
- 0.02332291565835476,
- 0.004077285062521696,
- 0.019162297248840332,
- 0.039609551429748535,
- 0.02672295644879341,
- -0.010330126620829105,
- 0.010904209688305855,
- 0.0184524804353714,
- -0.07951916754245758,
- 0.020077144727110863,
- 0.053138524293899536,
- -0.04832737520337105,
- -0.02198849432170391,
- -6.723128267564745e-33,
- -0.015247580595314503,
- -0.05325671285390854,
- 0.030458535999059677,
- 0.03961988165974617,
- -0.035892680287361145,
- 0.009670768864452839,
- -0.01632853038609028,
- -0.04027652367949486,
- -0.026220308616757393,
- -0.013083480298519135,
- 0.002162071643397212,
- 0.014850213192403316,
- 0.06140745431184769,
- -0.019429465755820274,
- 0.019445285201072693,
- -0.04213770851492882,
- -0.16811080276966095,
- 0.08199679851531982,
- -0.10508275777101517,
- -0.008606381714344025,
- -0.05119272693991661,
- 0.01828884892165661,
- -0.0600966215133667,
- 0.0678122267127037,
- -0.08502990007400513,
- -0.09818314760923386,
- 0.05168652534484863,
- -0.05517183244228363,
- 0.07764159888029099,
- 0.010461990721523762,
- 0.026097670197486877,
- -0.03193932771682739,
- -0.03951125591993332,
- 0.020803794264793396,
- 0.06235422566533089,
- 0.04220554977655411,
- -0.030201619490981102,
- -0.06107019633054733,
- 0.011572656221687794,
- -0.046265505254268646,
- -0.04820585250854492,
- 0.03382086008787155,
- 0.029417632147669792,
- -0.0023622559383511543,
- 0.04849322512745857,
- 0.019943028688430786,
- 0.031972404569387436,
- -0.07675401866436005,
- -0.028179096058011055,
- 0.019403884187340736,
- 0.023175161331892014,
- 0.003325166180729866,
- -0.026456350460648537,
- -0.008749976754188538,
- -0.014179499819874763,
- -0.03211556747555733,
- 0.012667694129049778,
- 0.029151178896427155,
- -0.033858396112918854,
- -0.05932541936635971,
- 0.0813954770565033,
- 0.02535608969628811,
- -0.0196987371891737,
- 0.04942697659134865,
- -0.07572196424007416,
- -0.010611103847622871,
- -0.04882378131151199,
- -0.03954123333096504,
- 0.03753761574625969,
- -0.019833911210298538,
- -0.04540571942925453,
- 0.05527554452419281,
- 0.06931981444358826,
- 0.010883691720664501,
- -0.09433598071336746,
- -0.06685611605644226,
- 0.02774159424006939,
- 0.01328027993440628,
- -0.06025874242186546,
- -0.026947366073727608,
- -0.00600092438980937,
- 0.013769113458693027,
- -0.023975664749741554,
- 0.03551717847585678,
- 0.05166168883442879,
- -0.019388770684599876,
- -0.06080188974738121,
- -0.06671825796365738,
- 0.023668864741921425,
- -0.0028574818279594183,
- -0.06971817463636398,
- 0.010969066061079502,
- -0.01995258964598179,
- 0.03339176997542381,
- -0.02322661317884922,
- 4.125538850874901e-33,
- -0.06549593806266785,
- -0.09158089756965637,
- 0.02761637605726719,
- 0.06466048210859299,
- 0.0007527577690780163,
- 0.008652637712657452,
- 0.027843723073601723,
- -0.042206522077322006,
- 0.00314884795807302,
- 0.0009304678533226252,
- -0.07811427116394043,
- -0.0619681254029274,
- 0.0450499951839447,
- 0.07262638956308365,
- -0.06429892778396606,
- -0.027618853375315666,
- -0.024097813293337822,
- -0.036130424588918686,
- -0.008047519251704216,
- -0.010636433959007263,
- -0.04800880327820778,
- -0.021698113530874252,
- 0.08905816078186035,
- 0.07575930655002594,
- -0.01911865547299385,
- 0.018060855567455292,
- 0.08632773905992508,
- -0.0340535007417202,
- 0.1002591922879219,
- -0.04536677151918411,
- 0.053651709109544754,
- -0.03518500551581383,
- -0.09327545762062073,
- -0.079583078622818,
- -0.041840698570013046,
- 0.09520971775054932,
- 0.06814607977867126,
- 0.02737770602107048,
- -0.03531843423843384,
- -0.014400950632989407,
- 0.013031466864049435,
- -0.015427961014211178,
- 0.06065463274717331,
- 0.020220858976244926,
- -0.042276762425899506,
- 0.04431374371051788,
- 0.10818427056074142,
- 0.02167283184826374,
- -0.019244343042373657,
- -0.02485409937798977,
- -0.06842333823442459,
- -0.05464692413806915,
- 0.059979040175676346,
- -0.01473323255777359,
- 0.03320290893316269,
- 0.008357971906661987,
- 0.04759930819272995,
- -0.025399377569556236,
- -0.0780634805560112,
- 0.002543361857533455,
- 0.06517570465803146,
- 0.05206001549959183,
- -0.03443889692425728,
- -0.0014211747329682112,
- -0.0462990403175354,
- -0.028827054426074028,
- -0.07735542207956314,
- -0.026897870004177094,
- -0.02678220346570015,
- -0.014445994980633259,
- 0.02226804755628109,
- 0.05332757532596588,
- -0.1652694195508957,
- -0.05594531446695328,
- 0.012588798999786377,
- 0.03422379866242409,
- -0.046984344720840454,
- -0.04590960964560509,
- -0.035247549414634705,
- -0.045461561530828476,
- -0.031819943338632584,
- -0.04305851832032204,
- 0.02070721983909607,
- -0.015054360963404179,
- -0.1064331904053688,
- 0.02129688300192356,
- 0.02517654374241829,
- 0.00022892883862368762,
- 0.014142170548439026,
- 0.06746461987495422,
- -0.017689738422632217,
- 0.04072701930999756,
- 0.02371704950928688,
- -0.008771318010985851,
- 0.0006835688254795969,
- -1.3811725096957161e-8,
- -0.01601160317659378,
- 0.010309024713933468,
- 0.05063648894429207,
- -0.038204044103622437,
- 0.004698437172919512,
- -0.07282951474189758,
- -0.0013805701164528728,
- -0.07749159634113312,
- 0.02657281421124935,
- 0.06708568334579468,
- 0.02007005363702774,
- -0.06252729147672653,
- -0.05504009872674942,
- -0.007989468984305859,
- 0.09489051252603531,
- -0.08010640740394592,
- -0.0006589054828509688,
- -0.009147231467068195,
- -0.06839386373758316,
- 0.07490863651037216,
- -0.002584428759291768,
- -0.004453718196600676,
- -0.061476752161979675,
- -0.02828213945031166,
- 0.03778660297393799,
- 0.04053580015897751,
- -0.019117185845971107,
- 0.017185276374220848,
- -0.043886713683605194,
- 0.05449564754962921,
- 0.02343662455677986,
- 0.1114305779337883,
- -0.04637220501899719,
- -0.10266998410224915,
- -0.02723526582121849,
- -0.05528491735458374,
- 0.0017886130372062325,
- 0.026323998346924782,
- 0.02282019518315792,
- 0.04812128469347954,
- -0.046813566237688065,
- 0.04593333229422569,
- 0.05741754174232483,
- -0.001506629167124629,
- -0.04266997426748276,
- -0.0025576443877071142,
- -0.0018498465651646256,
- 0.012079308740794659,
- 0.006072464864701033,
- -0.03174007311463356,
- 0.008315196260809898,
- -0.030872242525219917,
- 0.05899066478013992,
- 0.07648418098688126,
- 0.07099992781877518,
- 0.03684009984135628,
- 0.03398267924785614,
- -0.000361860787961632,
- -0.021361451596021652,
- 0.033800337463617325,
- 0.16358281672000885,
- 0.016518788412213326,
- 0.09562776982784271,
- 0.12999887764453888
- ]
- },
- {
- "keyword": "supporter",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.010355482809245586,
- 0.02768818847835064,
- 0.014915946871042252,
- -0.0665351152420044,
- 0.08666381984949112,
- -0.01671869494020939,
- 0.15412092208862305,
- 0.08914904296398163,
- 0.0581430122256279,
- 0.007382764481008053,
- 0.047805365175008774,
- -0.11343706399202347,
- 0.044631488621234894,
- -0.008008467964828014,
- -0.05070682242512703,
- 0.02131621167063713,
- -0.03325466811656952,
- -0.1007019579410553,
- -0.12975816428661346,
- -0.02100503072142601,
- -0.1235661581158638,
- -0.022026585415005684,
- 0.003164219669997692,
- 0.03078448213636875,
- -0.01623581536114216,
- -0.03685377538204193,
- 0.07034583389759064,
- 0.06265716254711151,
- 0.04611074924468994,
- 0.0016829720698297024,
- 0.013192136771976948,
- -0.0382191464304924,
- 0.053344372659921646,
- 0.01058817096054554,
- -0.03954622894525528,
- 0.023733902722597122,
- -0.051488667726516724,
- 0.014084676280617714,
- -0.011838577687740326,
- 0.010503730736672878,
- -0.007554337382316589,
- -0.05837314948439598,
- -0.031633805483579636,
- 0.0054200561717152596,
- 0.05380778759717941,
- 0.05667860060930252,
- 0.03909247741103172,
- 0.032978981733322144,
- -0.0013703062431886792,
- 0.022035162895917892,
- 0.03435475379228592,
- -0.0006746600265614688,
- 0.013352910056710243,
- -0.12376881390810013,
- 0.07728505879640579,
- -0.005718158092349768,
- -0.036264169961214066,
- 0.03373704478144646,
- -0.020485803484916687,
- -0.01555198710411787,
- 0.13622650504112244,
- -0.024351855739951134,
- -0.07871927320957184,
- -0.029044143855571747,
- -0.048390794545412064,
- -0.018744904547929764,
- -0.004337677266448736,
- -0.013257546350359917,
- 0.026063719764351845,
- -0.0204934012144804,
- 0.024962525814771652,
- 0.02535228431224823,
- 0.06265637278556824,
- -0.03961575776338577,
- -0.05485072731971741,
- -0.032672371715307236,
- 0.01855430006980896,
- -0.0641859695315361,
- 0.09851281344890594,
- 0.012918238528072834,
- -0.012424733489751816,
- -0.030041420832276344,
- -0.02233264222741127,
- -0.0021956658456474543,
- -0.0665740966796875,
- -0.0025381608866155148,
- -0.007076711859554052,
- 0.0018201501807197928,
- -0.027800945565104485,
- 0.02247581072151661,
- -0.004331336822360754,
- 0.030356314033269882,
- 0.12095829099416733,
- 0.00022379751317203045,
- -0.06574008613824844,
- -0.01608985662460327,
- 0.02612435258924961,
- 0.025860555469989777,
- -0.16153930127620697,
- 0.24697057902812958,
- 0.009259018115699291,
- 0.07558737695217133,
- 0.019347108900547028,
- -0.03082830272614956,
- 0.04054860770702362,
- 0.02872290462255478,
- -0.07750967890024185,
- 0.05346931144595146,
- -0.005074929445981979,
- 0.021984480321407318,
- -0.03752812370657921,
- -0.003160431981086731,
- -0.0037611122243106365,
- 0.03720583766698837,
- -0.02015485242009163,
- -0.036035578697919846,
- -0.004134641028940678,
- -0.01342235691845417,
- 0.002845398848876357,
- 0.012432532384991646,
- 0.07428067922592163,
- 0.03341969847679138,
- -0.05442603677511215,
- 0.017136935144662857,
- 0.023441322147846222,
- -0.12041357159614563,
- -0.049392860382795334,
- -5.3204589805284964e-33,
- -0.011915394105017185,
- -0.016806988045573235,
- -0.00840980838984251,
- -0.0024636932648718357,
- -0.01318297814577818,
- 0.027506476268172264,
- 0.01533528696745634,
- -0.014826949685811996,
- -0.0505923368036747,
- -0.02307932823896408,
- -0.004836198408156633,
- 0.05121540278196335,
- 0.01637950912117958,
- -0.01857198029756546,
- 0.0873771607875824,
- 0.02619505301117897,
- -0.02806449867784977,
- 0.013081303797662258,
- -0.03974314033985138,
- -0.06496988236904144,
- -0.03947960212826729,
- 0.11395152658224106,
- -0.0374707356095314,
- 0.09854666888713837,
- -0.05916883423924446,
- -0.12573444843292236,
- 0.027313323691487312,
- -0.026594437658786774,
- -0.014266271144151688,
- -0.008881953544914722,
- 0.02709328755736351,
- 0.011845704168081284,
- -0.0360255092382431,
- -0.060736075043678284,
- -0.006332945078611374,
- -0.08292180299758911,
- 0.05009334906935692,
- -0.0958583876490593,
- -0.08000893145799637,
- -0.04759608581662178,
- -0.007705794647336006,
- 0.006129799876362085,
- 0.0024760300293564796,
- -0.02228476293385029,
- -0.01201386284083128,
- -0.002299846615642309,
- 0.0370718277990818,
- -0.021388813853263855,
- -0.04979787394404411,
- 0.02288159728050232,
- 0.02351493015885353,
- -0.03432079777121544,
- -0.04449281468987465,
- 0.020445430651307106,
- -0.011397326365113258,
- -0.024743536487221718,
- -0.02615947276353836,
- 0.032308004796504974,
- 0.00027960477746091783,
- -0.09299860894680023,
- -0.02809210866689682,
- 0.07875332236289978,
- 0.008081542328000069,
- -0.010732736438512802,
- -0.06835953146219254,
- -0.0060139065608382225,
- 0.0106838783249259,
- -0.03724225237965584,
- 0.012718422338366508,
- -0.03402065858244896,
- 0.015110267326235771,
- 0.02213915064930916,
- -0.02088196761906147,
- 0.009884401224553585,
- 0.02833179570734501,
- -0.013495943509042263,
- -0.043140511959791183,
- 0.06276039779186249,
- 0.008450471796095371,
- 0.007694433443248272,
- -0.054757557809352875,
- -0.0869532972574234,
- 0.03798272833228111,
- -0.08425110578536987,
- 0.032025448977947235,
- 0.06020761653780937,
- -0.027705801650881767,
- -0.05415419861674309,
- 0.06995423883199692,
- -0.028160126879811287,
- -0.09201237559318542,
- 0.026030421257019043,
- 0.04345334321260452,
- 0.02552054449915886,
- 0.00023159774718806148,
- 3.4051599131765096e-33,
- -0.0214774701744318,
- 0.0022114403545856476,
- 0.05209074169397354,
- 0.02320859022438526,
- 0.05844529718160629,
- -0.026183051988482475,
- 0.004301512613892555,
- -0.012318579480051994,
- -0.013735044747591019,
- 0.07809321582317352,
- -0.04063492640852928,
- -0.03345130756497383,
- 0.031777169555425644,
- 0.041900500655174255,
- -0.017377428710460663,
- -0.00397458765655756,
- -0.00597454234957695,
- 0.0665959045290947,
- -0.0428125225007534,
- 0.021898524835705757,
- -0.07126310467720032,
- -0.08034972846508026,
- 0.058617547154426575,
- 0.019499003887176514,
- -0.03922155126929283,
- -0.009725676849484444,
- 0.14047513902187347,
- 0.051148541271686554,
- -0.0009583915234543383,
- -0.05946892872452736,
- 0.09026192128658295,
- -0.029434463009238243,
- 0.0016427157679572701,
- -0.07062710076570511,
- 0.045391179621219635,
- 0.07170787453651428,
- -0.05237113684415817,
- -0.02411123365163803,
- -0.018865318968892097,
- 0.01994219608604908,
- 0.01762673258781433,
- -0.009795562364161015,
- 0.016814405098557472,
- 0.09012175351381302,
- -0.04459325224161148,
- 0.007876494899392128,
- 0.06909069418907166,
- 0.0024455792736262083,
- 0.06175341457128525,
- 0.023127680644392967,
- -0.01797562465071678,
- -0.020426642149686813,
- 0.014239107258617878,
- 0.10168986767530441,
- 0.07639986276626587,
- 0.06926289200782776,
- -0.0364144928753376,
- 0.01003376953303814,
- -0.049898888915777206,
- 0.007546604610979557,
- -0.0067662703804671764,
- 0.0020016583148390055,
- -0.0021834063809365034,
- 0.07353092730045319,
- 0.002760036149993539,
- 0.015325912274420261,
- -0.08995790034532547,
- 0.007990803569555283,
- 0.007940695621073246,
- -0.028994042426347733,
- 0.012575422413647175,
- -0.016490310430526733,
- -0.07247835397720337,
- 0.10475119948387146,
- -0.0040239859372377396,
- -0.008850125595927238,
- -0.057196006178855896,
- 0.029725011438131332,
- 0.015760695561766624,
- 0.01687205582857132,
- -0.0944787859916687,
- -0.004858795553445816,
- 0.037456534802913666,
- 0.014307618141174316,
- 0.05010244995355606,
- -0.04660918191075325,
- 0.053648363798856735,
- 0.06790447235107422,
- 0.05287226289510727,
- -0.011635327711701393,
- 0.07331984490156174,
- 0.03841427341103554,
- 0.058828942477703094,
- -0.04178836941719055,
- 0.004582539200782776,
- -1.185393028180215e-8,
- -0.026454288512468338,
- -0.027372634038329124,
- -0.04021013155579567,
- 0.0027994210831820965,
- 0.06875646114349365,
- 0.04344845563173294,
- -0.0025489984545856714,
- -0.12776142358779907,
- 0.012303778901696205,
- 0.08111928403377533,
- 0.03764869645237923,
- 0.0322754941880703,
- -0.06163324415683746,
- -0.0373636819422245,
- 0.08535949140787125,
- -0.038359060883522034,
- 0.02721247263252735,
- 0.05017983913421631,
- -0.030409691855311394,
- 0.03774738684296608,
- -0.01100993249565363,
- 0.003993301652371883,
- 0.02833617851138115,
- 0.028260257095098495,
- 0.021812016144394875,
- 0.04170530289411545,
- -0.07151932269334793,
- 0.09805241972208023,
- -0.05912983790040016,
- -0.04175645485520363,
- 0.0006906379130668938,
- 0.02920631691813469,
- -0.08037254959344864,
- -0.022877704352140427,
- 0.0177648663520813,
- -0.00024576939176768064,
- 0.0010345830814912915,
- -0.01600591093301773,
- 0.05080243945121765,
- 0.07628778368234634,
- -0.015333030372858047,
- -0.04507352039217949,
- 0.0209233108907938,
- 0.006794870365411043,
- 0.03249802812933922,
- 0.023927932605147362,
- -0.0317230150103569,
- -0.05153333395719528,
- -0.05265114828944206,
- -0.08329765498638153,
- -0.02975461632013321,
- -0.005908856634050608,
- -0.026428939774632454,
- 0.11922554671764374,
- 0.03336026519536972,
- -0.04295136779546738,
- -0.03345678746700287,
- 0.07700831443071365,
- -0.06627175956964493,
- 0.005219658371061087,
- 0.19220833480358124,
- 0.11513479799032211,
- 0.0022962980438023806,
- 0.036418307572603226
- ]
- },
- {
- "keyword": "male",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.04615720734000206,
- 0.08400079607963562,
- -0.07528115063905716,
- 0.0036931100767105818,
- -0.05166254937648773,
- -0.060128532350063324,
- 0.08939072489738464,
- -0.06348691880702972,
- 0.005274979863315821,
- -0.02141462080180645,
- -0.0749664232134819,
- -0.07269660383462906,
- -0.0805484727025032,
- 0.0054810238070786,
- 0.020454777404665947,
- -0.03658977150917053,
- 0.012774820439517498,
- -0.002988619962707162,
- -0.015969663858413696,
- -0.020239882171154022,
- -0.016084253787994385,
- 0.036192234605550766,
- -0.018609769642353058,
- -0.0772857517004013,
- -0.06307897716760635,
- -0.036716144531965256,
- -0.04579133912920952,
- 0.05422164499759674,
- -0.07720764726400375,
- -0.03614330291748047,
- 0.03332012519240379,
- 0.0010011738631874323,
- 0.07893121242523193,
- -0.04751656576991081,
- -0.07931147515773773,
- -0.018140943720936775,
- -0.09965802729129791,
- 0.007135464809834957,
- 0.04186123237013817,
- 0.03578762337565422,
- -0.05733468383550644,
- -0.09113102406263351,
- -0.005390134174376726,
- 0.02981199510395527,
- 0.07467953860759735,
- 0.04206085950136185,
- 0.05148976296186447,
- 0.021086592227220535,
- 0.010222751647233963,
- 0.09147003293037415,
- 0.003337293630465865,
- -0.03632313385605812,
- 0.00039016097434796393,
- 0.08855188637971878,
- 0.048494596034288406,
- -0.08367381244897842,
- -0.009709195233881474,
- -0.048166368156671524,
- -0.017313728109002113,
- 0.01836007460951805,
- -0.01656900718808174,
- -0.004478704184293747,
- -0.06853701174259186,
- 0.019347520545125008,
- 0.098422572016716,
- 0.028478698804974556,
- -0.017487801611423492,
- -0.08729754388332367,
- 0.059655141085386276,
- 0.006883486174046993,
- 0.08222551643848419,
- 0.0014287405647337437,
- -0.07727706432342529,
- -0.02277957648038864,
- 0.018984507769346237,
- -0.0841127261519432,
- 0.01516722608357668,
- -0.022078296169638634,
- 0.03313378244638443,
- 0.03837588056921959,
- -0.03843212500214577,
- 0.020795058459043503,
- -0.06559404730796814,
- 0.034483518451452255,
- 0.0005340279312804341,
- 0.00456097861751914,
- 0.0613107904791832,
- 0.019680321216583252,
- -0.07458038628101349,
- 0.1140621080994606,
- -0.07851453870534897,
- 0.032947879284620285,
- 0.06352093815803528,
- -0.006799859460443258,
- -0.0854511484503746,
- 0.03525983542203903,
- -0.004253113176673651,
- -0.02422674559056759,
- -0.15504221618175507,
- 0.21100760996341705,
- 0.05467114970088005,
- -0.0012310316087678075,
- 0.03278697282075882,
- -0.011218147352337837,
- -0.07612989097833633,
- 0.005313673056662083,
- 0.017768440768122673,
- 0.052596915513277054,
- -0.011502024717628956,
- 0.014494623057544231,
- 0.008213208988308907,
- 0.0035944951232522726,
- -0.08059810847043991,
- 0.041041020303964615,
- 0.039314284920692444,
- -0.02918471023440361,
- 0.00988044310361147,
- 0.044787805527448654,
- 0.06436333060264587,
- 0.022463010624051094,
- 0.04557133466005325,
- -0.02630067989230156,
- -0.02038400061428547,
- -0.0014557138783857226,
- -0.0611102469265461,
- -0.060625266283750534,
- -0.02332931011915207,
- -5.65275800919451e-33,
- 0.040818165987730026,
- 0.002037312835454941,
- 0.05284286290407181,
- 0.08943796902894974,
- -0.00016740440332796425,
- 0.02372191846370697,
- 0.07254981994628906,
- -0.028334515169262886,
- -0.03081696853041649,
- -0.06511902809143066,
- -0.020252462476491928,
- -0.03533589094877243,
- -0.04026881232857704,
- 0.04282478615641594,
- 0.037727631628513336,
- -0.036793265491724014,
- 0.04918663203716278,
- -0.026841552928090096,
- -0.07551530003547668,
- 0.026381870731711388,
- -0.009740198962390423,
- 0.10529255867004395,
- -0.043384552001953125,
- -0.041504792869091034,
- 0.045416977256536484,
- -0.06320811808109283,
- -0.009988277219235897,
- -0.06521695852279663,
- 0.06449764966964722,
- -0.007418185472488403,
- 0.046961575746536255,
- 0.0091916648671031,
- 0.02669169194996357,
- 0.017082499340176582,
- -0.03666132688522339,
- -0.05222560837864876,
- 0.014903319999575615,
- -0.006850433070212603,
- 0.024798249825835228,
- -0.032922666519880295,
- 0.012182516977190971,
- 0.005607302300632,
- -0.06839248538017273,
- 0.05832410976290703,
- -0.04245736449956894,
- -0.0237104594707489,
- 0.038678523153066635,
- 0.015391100198030472,
- -0.07220421731472015,
- -0.00905629526823759,
- -0.06406211853027344,
- 0.011640907265245914,
- -0.0638326033949852,
- -0.06299544125795364,
- 0.0015300404047593474,
- -0.018505914136767387,
- 0.06477249413728714,
- 0.020169977098703384,
- -0.08783206343650818,
- -0.02027248777449131,
- 0.05428246036171913,
- 0.1068207174539566,
- 0.05862210690975189,
- 0.056057408452034,
- -0.05253316089510918,
- -0.04303900524973869,
- 0.06149258092045784,
- -0.015572934411466122,
- 0.06749109923839569,
- -0.029087962582707405,
- -0.05010996386408806,
- 0.0031421848107129335,
- 0.09923481941223145,
- 0.0043821679428219795,
- -0.0034353001974523067,
- 0.04303527623414993,
- -0.04842235520482063,
- -0.003488341812044382,
- 0.007070398889482021,
- -0.01591292768716812,
- -0.049901220947504044,
- 0.040120985358953476,
- 0.0041932896710932255,
- -0.024696314707398415,
- -0.08715807646512985,
- -0.007010221015661955,
- -0.040544118732213974,
- -0.05253751948475838,
- 0.09096061438322067,
- 0.0623793825507164,
- -0.05118164047598839,
- -0.04445723071694374,
- 0.012283793650567532,
- 0.06868195533752441,
- 0.02245534211397171,
- 3.5833997542497084e-33,
- 0.04114653170108795,
- 0.04954148083925247,
- 0.035135671496391296,
- 0.06498778611421585,
- 0.06582876294851303,
- -0.011388377286493778,
- 0.05112133175134659,
- 0.03793256729841232,
- -0.017670536413788795,
- 0.029352832585573196,
- -0.012844463810324669,
- 0.0019460399635136127,
- 0.034482695162296295,
- 0.049141351133584976,
- 0.058012284338474274,
- 0.08864455670118332,
- -0.012386523187160492,
- 0.01987564004957676,
- -0.0497405119240284,
- 0.04432700574398041,
- 0.011107605881989002,
- 0.0037287480663508177,
- 0.0191329438239336,
- -0.06546379625797272,
- -0.03954210877418518,
- 0.014742879197001457,
- 0.13190016150474548,
- -0.017050864174962044,
- -0.03998025879263878,
- 0.029354924336075783,
- -0.008773061446845531,
- 0.0018939258297905326,
- -0.0814979150891304,
- 0.03609105572104454,
- -0.05938108637928963,
- 0.12709103524684906,
- -0.002762589370831847,
- 0.08053811639547348,
- 0.019154563546180725,
- 0.034117087721824646,
- 0.043591827154159546,
- 0.05296345800161362,
- 0.03919368237257004,
- 0.11100305616855621,
- 0.005900679621845484,
- 0.018228447064757347,
- 0.010874983854591846,
- 0.044706620275974274,
- -0.0031561676878482103,
- -0.002147993305698037,
- -0.09384554624557495,
- -0.006959537044167519,
- -0.034770842641592026,
- -0.09666968882083893,
- 0.04075539857149124,
- -0.029412422329187393,
- -0.009785590693354607,
- 0.002236862201243639,
- -0.01061242911964655,
- 0.06657116860151291,
- 0.02389117144048214,
- 0.08147246390581131,
- -0.03583599254488945,
- 0.027946103364229202,
- -0.07994766533374786,
- 0.06528820097446442,
- -0.04170748218894005,
- -0.04371918365359306,
- -0.06118218973278999,
- -0.03895005211234093,
- 0.15574397146701813,
- -0.08746330440044403,
- 0.07430554926395416,
- 0.046847809106111526,
- -0.0239985603839159,
- -0.017034875229001045,
- -0.0312221460044384,
- 0.019278181716799736,
- 0.011374020017683506,
- -0.03651826083660126,
- -0.011366007849574089,
- -0.028199147433042526,
- 0.005478456150740385,
- 0.0638420581817627,
- -0.09735831618309021,
- -0.013988062739372253,
- 0.022266849875450134,
- 0.003370276652276516,
- -0.01676902174949646,
- 0.002129775006324053,
- -0.010630735196173191,
- 0.037392958998680115,
- -0.05730646103620529,
- -0.04932820424437523,
- -0.04598451405763626,
- -1.3159749734370507e-8,
- 0.01775730587542057,
- -0.0029508734587579966,
- -0.013903211802244186,
- -0.005611153319478035,
- 0.010768948122859001,
- 0.11865190416574478,
- 0.02551705203950405,
- -0.0419757217168808,
- 0.06455573439598083,
- 0.022612471133470535,
- -0.05282404273748398,
- -0.015447039157152176,
- 0.061608102172613144,
- 0.016003018245100975,
- 0.06624101102352142,
- -0.10684950649738312,
- 0.009820898994803429,
- 0.006855163257569075,
- -0.025859808549284935,
- -0.022856608033180237,
- 0.06452077627182007,
- -0.0395188108086586,
- -0.04192894324660301,
- 0.05918385833501816,
- -0.013681541197001934,
- 0.012689326889812946,
- 0.024625057354569435,
- 0.0654374361038208,
- -0.05869163200259209,
- 0.047275740653276443,
- -0.035267848521471024,
- 0.10172135382890701,
- -0.08022432029247284,
- -0.029678087681531906,
- 0.0382009781897068,
- 0.008661932311952114,
- 0.0320015586912632,
- 0.018319817259907722,
- 0.0396716482937336,
- -0.034922484308481216,
- 0.01865474507212639,
- -0.06282946467399597,
- 0.03586123511195183,
- -0.03594009578227997,
- -0.014401039108633995,
- 0.06634075939655304,
- -0.0009462001034989953,
- -0.030290406197309494,
- 0.010090471245348454,
- 0.0007828077650628984,
- 0.0403379425406456,
- -0.03830328583717346,
- 0.14212195575237274,
- 0.026224644854664803,
- -0.005905222613364458,
- -0.07983417063951492,
- -0.054030172526836395,
- 0.053130343556404114,
- -0.05020271986722946,
- -0.017494840547442436,
- 0.1284257024526596,
- -0.06505055725574493,
- -0.009189363569021225,
- -0.024452626705169678
- ]
- },
- {
- "keyword": "female",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.05679576098918915,
- 0.006691161077469587,
- -0.06583664566278458,
- 0.020928682759404182,
- -0.0538741759955883,
- -0.0633816123008728,
- 0.1080436035990715,
- -0.03246535733342171,
- 0.030954742804169655,
- 0.006257403641939163,
- 0.003847771091386676,
- -0.0794946476817131,
- -0.07200146466493607,
- -0.021217621862888336,
- -0.0018017846159636974,
- 0.048916008323431015,
- 0.05155191570520401,
- 0.02111060917377472,
- 0.014440735802054405,
- -0.011552143841981888,
- -0.041483569890260696,
- -0.006018086802214384,
- -0.04081396013498306,
- -0.02114248089492321,
- -0.04872952029109001,
- -0.03172865882515907,
- -0.049724552780389786,
- 0.052112746983766556,
- -0.11058738827705383,
- -0.0688021332025528,
- -0.011400090530514717,
- 0.04325247183442116,
- 0.06634487956762314,
- -0.028797360137104988,
- -0.06323712319135666,
- 0.041739292442798615,
- -0.07620261609554291,
- 0.020849071443080902,
- 0.04310506954789162,
- 0.05645003169775009,
- -0.04484301805496216,
- -0.10265277326107025,
- -0.03244319185614586,
- -0.05281386524438858,
- 0.018973199650645256,
- 0.038562968373298645,
- 0.06373155862092972,
- 0.018437467515468597,
- -0.06896798312664032,
- 0.026452211663126945,
- 0.024667222052812576,
- -0.028583422303199768,
- -0.09992435574531555,
- 0.07046379148960114,
- 0.03654046729207039,
- -0.07210712879896164,
- 0.007724417839199305,
- -0.029112007468938828,
- 0.007947455160319805,
- -0.01122107170522213,
- 0.025409257039427757,
- 0.0024335042107850313,
- -0.04513728246092796,
- 0.05851106345653534,
- 0.03580354154109955,
- -0.018360745161771774,
- 0.03533264994621277,
- -0.0758848637342453,
- 0.06672724336385727,
- -0.05696877837181091,
- 0.07362406700849533,
- 0.04225541651248932,
- -0.04852695390582085,
- -0.0057115089148283005,
- 0.09712840616703033,
- -0.06809765100479126,
- 0.07592836767435074,
- -0.006650101393461227,
- 0.08705155551433563,
- 0.1019025668501854,
- -0.06128677353262901,
- -0.018398365005850792,
- -0.0013415346620604396,
- 0.049785319715738297,
- 0.01743309386074543,
- -0.017959540709853172,
- 0.0018958165310323238,
- 0.040960706770420074,
- -0.040556520223617554,
- 0.027791090309619904,
- -0.11300855875015259,
- 0.037965428084135056,
- 0.0669718086719513,
- 0.020399246364831924,
- -0.07709953188896179,
- -0.003282995894551277,
- 0.005563962738960981,
- -0.0861658900976181,
- -0.03508048504590988,
- 0.20882846415042877,
- 0.012483314611017704,
- 0.07238459587097168,
- 0.014550740830600262,
- 0.036079682409763336,
- -0.027751874178647995,
- -0.021579066291451454,
- 0.044549886137247086,
- 0.047369033098220825,
- -0.022219959646463394,
- 0.01268908940255642,
- 0.02249436266720295,
- -0.00340276095084846,
- -0.10406754910945892,
- 0.01471126452088356,
- 0.043144457042217255,
- 0.011037865653634071,
- 0.024218035861849785,
- 0.05185883119702339,
- 0.10177498310804367,
- -0.01258082501590252,
- -0.0019011881668120623,
- -0.047843676060438156,
- -0.03871831297874451,
- -0.049249693751335144,
- -0.0032625258900225163,
- -0.0792798176407814,
- -0.003036897862330079,
- -5.9208438222369336e-33,
- 0.033437956124544144,
- -0.012777948752045631,
- 0.05511261895298958,
- 0.05359254777431488,
- 0.024192869663238525,
- 0.0637301653623581,
- 0.10855381935834885,
- -0.010150977410376072,
- -0.006688411813229322,
- 0.007984212599694729,
- -0.057540249079465866,
- -0.0800718143582344,
- -0.0780073031783104,
- -0.04952207952737808,
- 0.07537529617547989,
- -0.015048707835376263,
- 0.056262124329805374,
- 0.0020449182484298944,
- -0.09545525908470154,
- 0.043604910373687744,
- 0.03626222163438797,
- 0.10846330970525742,
- 0.01701320894062519,
- -0.006808205042034388,
- 0.013873218558728695,
- -0.06452838331460953,
- 0.07799583673477173,
- -0.04015280306339264,
- 0.008426325395703316,
- -0.004335788078606129,
- 0.02585216611623764,
- 0.002402288606390357,
- 0.0818268284201622,
- 0.0008303198264911771,
- 0.017035020515322685,
- -0.09288432449102402,
- -0.015156280249357224,
- -0.03240581974387169,
- 0.020511329174041748,
- -0.036639291793107986,
- -0.014250463806092739,
- -0.03686180338263512,
- -0.010562218725681305,
- 0.0019967348780483007,
- -0.07122514396905899,
- -0.04450705274939537,
- 0.04648568108677864,
- -0.007401247043162584,
- -0.06297076493501663,
- 0.057713959366083145,
- -0.11437633633613586,
- 0.013817409053444862,
- -0.045696768909692764,
- 0.014907131902873516,
- -0.027577843517065048,
- 0.006831581704318523,
- 0.03894646838307381,
- 0.003956964705139399,
- -0.07509873062372208,
- -0.04114604741334915,
- -0.020220017060637474,
- 0.1339915245771408,
- -0.018674638122320175,
- -0.015912597998976707,
- 0.040453217923641205,
- -0.01335340365767479,
- 0.05688782408833504,
- -0.01724429428577423,
- 0.08292610943317413,
- -0.010266163386404514,
- -0.07904031127691269,
- 0.049090396612882614,
- 0.14139331877231598,
- 0.07562800496816635,
- -0.053721655160188675,
- 0.06261074542999268,
- 0.041748203337192535,
- -0.03351058065891266,
- 0.03649197518825531,
- -0.04860789701342583,
- -0.0142098693177104,
- 0.010084984824061394,
- -0.01578713022172451,
- 0.041517894715070724,
- -0.04135967046022415,
- 0.008915950544178486,
- -0.008259069174528122,
- -0.02989322692155838,
- 0.08370544016361237,
- 0.033614687621593475,
- -0.03356849402189255,
- -0.00977161806076765,
- 0.027710359543561935,
- 0.03975803032517433,
- 0.009174803271889687,
- 4.55232962558978e-33,
- 0.07007968425750732,
- 0.0011210988741368055,
- 0.004078734200447798,
- 0.08207616209983826,
- 0.0633419007062912,
- 0.003109879093244672,
- 0.03559267148375511,
- 0.0477212592959404,
- -0.04635635390877724,
- 0.029975583776831627,
- -0.0022715588565915823,
- -0.03981925547122955,
- -0.019982514902949333,
- 0.0420510433614254,
- 0.022771570831537247,
- 0.08477986603975296,
- -0.015955010429024696,
- -0.03482655808329582,
- -0.0658997967839241,
- -0.02347976341843605,
- -0.0913558155298233,
- -0.01181915681809187,
- 0.0579569973051548,
- -0.06886129826307297,
- -0.024906352162361145,
- 0.014973820187151432,
- 0.17763875424861908,
- -0.0036364274565130472,
- -0.06408461928367615,
- -0.0024224459193646908,
- 0.010451728478074074,
- -0.028929006308317184,
- -0.040136437863111496,
- 0.04158259183168411,
- -0.008002333343029022,
- 0.11956215649843216,
- 0.008735067211091518,
- -0.01516648381948471,
- 0.02078832872211933,
- 0.0007947006379254162,
- 0.010980580933392048,
- 0.05695375055074692,
- 0.054078198969364166,
- 0.09985566139221191,
- 0.00328258890658617,
- 0.03554774820804596,
- 0.021339155733585358,
- 0.02197897434234619,
- 0.06262417137622833,
- 0.012612930499017239,
- -0.08392346650362015,
- -0.06287600845098495,
- -0.02875393070280552,
- -0.06909395754337311,
- 0.04789002239704132,
- -0.041585300117731094,
- 0.01860785484313965,
- 0.00976144801825285,
- -0.007215084973722696,
- 0.016847161576151848,
- 0.001662347000092268,
- 0.04282404109835625,
- -0.05048348754644394,
- 0.013327056542038918,
- -0.0844264030456543,
- 0.03788607940077782,
- -0.03309016674757004,
- -0.07885709404945374,
- -0.07437228411436081,
- -0.01686909794807434,
- 0.13422465324401855,
- -0.028905659914016724,
- -0.001580608543008566,
- 0.09150218218564987,
- -0.029058104380965233,
- -0.058808308094739914,
- -0.022601988166570663,
- -0.006796330213546753,
- 0.012681600637733936,
- 0.0018258531345054507,
- -0.04016628488898277,
- -0.03032696060836315,
- 0.03931315615773201,
- 0.009435892105102539,
- -0.011572062037885189,
- -0.010799349285662174,
- 0.0114188427105546,
- 0.06347163766622543,
- -0.00000249932122642349,
- -0.06635166704654694,
- -0.03939468041062355,
- 0.05714883282780647,
- -0.02918730489909649,
- -0.03589287027716637,
- -0.021359005942940712,
- -1.3369476192792717e-8,
- 0.032390229403972626,
- 0.04953260347247124,
- -0.007926693186163902,
- -0.03465620055794716,
- 0.004443724174052477,
- 0.08397834748029709,
- 0.03167593851685524,
- -0.053921520709991455,
- 0.01582798734307289,
- -0.009186260402202606,
- -0.02098672091960907,
- 0.028305692598223686,
- 0.07549839466810226,
- 0.04558931663632393,
- 0.04973243549466133,
- -0.05118747428059578,
- -0.0027497406117618084,
- 0.06431293487548828,
- -0.00830400362610817,
- -0.04180999845266342,
- 0.07805000990629196,
- -0.07280684262514114,
- -0.039971064776182175,
- 0.007288891356438398,
- -0.028157465159893036,
- -0.010783194564282894,
- 0.005714305676519871,
- 0.14023412764072418,
- -0.07615958899259567,
- -0.0011007731081917882,
- -0.03046046942472458,
- 0.08493845909833908,
- -0.02753584459424019,
- -0.05825720354914665,
- -0.037876054644584656,
- 0.006669726688414812,
- 0.05743638053536415,
- -0.010181911289691925,
- -0.026176562532782555,
- 0.0021560669410973787,
- 0.02463364601135254,
- -0.03765115141868591,
- 0.03460170328617096,
- 0.009075452573597431,
- -0.032696980983018875,
- 0.026064831763505936,
- 0.024801790714263916,
- -0.10460186749696732,
- 0.021594874560832977,
- 0.003068567719310522,
- 0.03963669389486313,
- -0.01769285835325718,
- 0.14609619975090027,
- 0.035535283386707306,
- -0.03019225224852562,
- -0.056026291102170944,
- -0.028873076662421227,
- -0.012586141005158424,
- -0.06372402608394623,
- 0.03400249406695366,
- 0.06885524094104767,
- -0.03480115532875061,
- 0.048187755048274994,
- -0.029166588559746742
- ]
- },
- {
- "keyword": "adult",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- 0.013789817690849304,
- 0.08116192370653152,
- 0.01579917035996914,
- 0.06710726767778397,
- -0.034768883138895035,
- -0.06432536989450455,
- 0.061283309012651443,
- -0.03648295998573303,
- 0.00865778885781765,
- 0.01244023721665144,
- -0.025482604280114174,
- -0.047915972769260406,
- -0.04672788083553314,
- -0.006408904679119587,
- 0.005106194410473108,
- 0.022432828322052956,
- -0.028797507286071777,
- -0.06856932491064072,
- -0.049583546817302704,
- -0.015444902703166008,
- -0.05538048967719078,
- 0.043246518820524216,
- 0.03571472316980362,
- -0.014544243924319744,
- 0.025047212839126587,
- -0.027015920728445053,
- -0.0719250962138176,
- 0.042315524071455,
- 0.016599632799625397,
- 0.013932185247540474,
- 0.06948425620794296,
- 0.03789329156279564,
- 0.09984368830919266,
- -0.03448936343193054,
- -0.020458798855543137,
- -0.029702287167310715,
- -0.03263121843338013,
- 0.04294551908969879,
- 0.06348191946744919,
- 0.0008597088744863868,
- 0.004135802388191223,
- -0.07084440439939499,
- -0.04014500230550766,
- -0.04609665647149086,
- 0.07433634996414185,
- 0.007184680085629225,
- -0.00007773998368065804,
- -0.02260751836001873,
- 0.059479281306266785,
- 0.002806859090924263,
- 0.028912382200360298,
- -0.01908307522535324,
- 0.00806597899645567,
- 0.0673324316740036,
- 0.0007087899139150977,
- -0.03502294793725014,
- -0.030204899609088898,
- -0.03164436295628548,
- 0.058087415993213654,
- 0.025350045412778854,
- -0.0417109951376915,
- -0.027377275750041008,
- -0.03654412925243378,
- 0.019636912271380424,
- 0.02794838137924671,
- 0.04332335665822029,
- 0.012084710411727428,
- -0.03334447741508484,
- 0.04994024708867073,
- -0.05198885500431061,
- -0.06758498400449753,
- 0.0071215457282960415,
- -0.059930987656116486,
- 0.05166604369878769,
- 0.049529094249010086,
- -0.13309210538864136,
- 0.015994010493159294,
- 0.00042319734347984195,
- 0.10364972800016403,
- -0.016141774132847786,
- -0.04301124066114426,
- 0.04752745479345322,
- -0.0623774453997612,
- 0.020853739231824875,
- 0.019709765911102295,
- 0.006159408483654261,
- 0.024023257195949554,
- 0.07885318994522095,
- -0.055840861052274704,
- 0.08130957931280136,
- -0.023892901837825775,
- 0.04553859308362007,
- 0.06807979196310043,
- -0.010999473743140697,
- -0.050696421414613724,
- -0.04616381600499153,
- -0.020622290670871735,
- -0.07628067582845688,
- -0.1295592486858368,
- 0.20852088928222656,
- -0.008490708656609058,
- -0.003197805490344763,
- 0.05772234871983528,
- 0.07506556808948517,
- -0.040451500564813614,
- 0.04167310893535614,
- -0.023478664457798004,
- 0.07310983538627625,
- 0.009393949992954731,
- 0.016996163874864578,
- -0.06376341730356216,
- 0.008726025931537151,
- -0.028545372188091278,
- 0.036039989441633224,
- 0.017323143780231476,
- 0.021801218390464783,
- -0.0475083664059639,
- 0.033362697809934616,
- 0.03330337256193161,
- -0.003350975224748254,
- 0.01866929978132248,
- 0.005249933339655399,
- -0.026409711688756943,
- 0.055616557598114014,
- -0.05911651626229286,
- -0.06822571158409119,
- 0.05581127852201462,
- -5.879444747910896e-33,
- 0.033060505986213684,
- 0.023072225973010063,
- -0.007191564422100782,
- 0.029585836455225945,
- -0.00890018604695797,
- 0.07257971912622452,
- 0.03753013536334038,
- -0.0371517613530159,
- -0.07283865660429001,
- 0.052832167595624924,
- 0.03530863672494888,
- 0.03065253421664238,
- -0.07652930915355682,
- 0.023166785016655922,
- 0.08702078461647034,
- 0.10953746736049652,
- 0.0004927207482978702,
- 0.07027234137058258,
- -0.02917959913611412,
- 0.041833728551864624,
- -0.03011876530945301,
- 0.1360071301460266,
- 0.03136985003948212,
- 0.028921134769916534,
- -0.0018321878742426634,
- -0.058350805193185806,
- 0.040975868701934814,
- -0.02974162995815277,
- 0.049108218401670456,
- -0.01907734014093876,
- 0.0018826192244887352,
- -0.06463319808244705,
- 0.0013532389421015978,
- -0.031092984601855278,
- -0.04495963454246521,
- -0.034507524222135544,
- 0.00716830138117075,
- -0.001950384583324194,
- -0.05749938637018204,
- -0.04629911109805107,
- -0.04252329096198082,
- 0.009890959598124027,
- -0.02513231709599495,
- 0.09049291163682938,
- -0.06090180575847626,
- -0.026461686939001083,
- 0.024662557989358902,
- -0.08324535936117172,
- -0.10765648633241653,
- 0.08056354522705078,
- -0.02494100108742714,
- 0.003376060165464878,
- -0.05424702912569046,
- -0.051775477826595306,
- -0.03836594149470329,
- -0.025913763791322708,
- 0.029423678293824196,
- 0.0195299219340086,
- -0.04888935387134552,
- -0.020923040807247162,
- 0.0562376007437706,
- 0.0897568091750145,
- -0.028638547286391258,
- 0.08128724992275238,
- -0.010871589183807373,
- 0.018109165132045746,
- 0.02356807515025139,
- -0.04123297706246376,
- 0.06820547580718994,
- 0.00795054342597723,
- -0.01862647943198681,
- 0.048569515347480774,
- 0.09297722578048706,
- 0.047703586518764496,
- 0.0020220368169248104,
- -0.059539806097745895,
- 0.0014036421198397875,
- -0.032139092683792114,
- -0.0377485454082489,
- -0.017177874222397804,
- 0.006323335226625204,
- -0.006819651462137699,
- -0.0296759232878685,
- -0.003006091807037592,
- 0.0029153330251574516,
- -0.016736755147576332,
- -0.058863189071416855,
- -0.024625495076179504,
- 0.13781549036502838,
- 0.05309763923287392,
- -0.058019913733005524,
- -0.053385790437459946,
- 0.0374177023768425,
- 0.11405228823423386,
- 0.020516639575362206,
- 4.2018567195760844e-33,
- 0.03435228765010834,
- -0.026674289256334305,
- -0.01725034974515438,
- -0.020791534334421158,
- 0.08298270404338837,
- -0.01702253520488739,
- -0.00518302945420146,
- 0.008896905928850174,
- -0.034787990152835846,
- -0.04911797121167183,
- -0.062486447393894196,
- -0.06940171867609024,
- 0.039525244385004044,
- 0.07596220076084137,
- 0.09598185867071152,
- 0.051290351897478104,
- -0.020979491993784904,
- 0.02562980353832245,
- -0.03769052401185036,
- 0.011938869021832943,
- -0.07250264286994934,
- 0.00919541995972395,
- -0.004993024282157421,
- 0.011582589708268642,
- 0.008398398756980896,
- 0.00867924652993679,
- 0.07715469598770142,
- 0.05996647849678993,
- -0.056463729590177536,
- -0.034278906881809235,
- 0.018680159002542496,
- -0.012304187752306461,
- 0.03055957518517971,
- -0.050753332674503326,
- -0.01338472031056881,
- 0.05893993005156517,
- -0.02780384011566639,
- 0.031643886119127274,
- -0.018874024972319603,
- -0.009234348312020302,
- -0.00481434166431427,
- 0.021665159612894058,
- 0.040352713316679,
- 0.10916957259178162,
- -0.04152887687087059,
- -0.00031617144122719765,
- -0.021281130611896515,
- -0.017895180732011795,
- -0.042251672595739365,
- 0.05300452932715416,
- -0.08782835304737091,
- -0.0013556432677432895,
- 0.05521499738097191,
- -0.13873524963855743,
- -0.020772848278284073,
- -0.04788675159215927,
- 0.023781729862093925,
- -0.02453782968223095,
- -0.02502332255244255,
- -0.002327732974663377,
- 0.046932220458984375,
- -0.02534383349120617,
- -0.05681079626083374,
- 0.04764942452311516,
- -0.10541900247335434,
- 0.021096592769026756,
- 0.0018273385940119624,
- -0.05674576014280319,
- -0.09370214492082596,
- 0.013517704792320728,
- 0.15541739761829376,
- -0.0859675332903862,
- -0.06077919900417328,
- -0.01704719476401806,
- 0.014179136604070663,
- -0.09547652304172516,
- -0.017533032223582268,
- 0.017837459221482277,
- -0.01863495633006096,
- -0.05579277127981186,
- -0.01539794635027647,
- 0.024412715807557106,
- 0.021771391853690147,
- 0.039372578263282776,
- -0.06779012084007263,
- -0.09537970274686813,
- 0.04530079662799835,
- -0.012032239697873592,
- -0.11356358975172043,
- 0.046078380197286606,
- 0.07836837321519852,
- -0.026067905128002167,
- -0.09016356617212296,
- -0.07675448060035706,
- -0.006921475753188133,
- -1.164277918519474e-8,
- 0.03247639164328575,
- 0.05361749976873398,
- -0.047364719212055206,
- 0.022092923521995544,
- 0.06868260353803635,
- 0.07273457944393158,
- -0.02725263312458992,
- -0.04126584157347679,
- 0.024403182789683342,
- 0.048076823353767395,
- -0.0020149012561887503,
- -0.0042155226692557335,
- 0.13503721356391907,
- -0.06205609813332558,
- 0.07346562296152115,
- -0.0557873472571373,
- -0.02297208458185196,
- -0.009738586843013763,
- -0.03583922237157822,
- 0.02015209011733532,
- 0.07373441010713577,
- 0.043654605746269226,
- -0.06326538324356079,
- 0.031275276094675064,
- -0.07701706141233444,
- -0.02893298678100109,
- 0.031905245035886765,
- 0.01985839568078518,
- -0.07688889652490616,
- 0.05697151646018028,
- -0.0059911287389695644,
- 0.0757480189204216,
- -0.006689779460430145,
- -0.04488712176680565,
- 0.01589525118470192,
- -0.09388252347707748,
- 0.028427284210920334,
- -0.018403682857751846,
- -0.017629241570830345,
- 0.01566634140908718,
- -0.0066157919354736805,
- -0.01647499017417431,
- 0.033337224274873734,
- -0.05572054162621498,
- -0.02976139821112156,
- 0.056505970656871796,
- 0.05745542049407959,
- -0.05350430682301521,
- -0.002728099236264825,
- 0.07350461930036545,
- 0.06014658510684967,
- -0.04102154076099396,
- 0.10075930505990982,
- -0.0024459618143737316,
- 0.04546913877129555,
- 0.039982303977012634,
- -0.0019906482193619013,
- 0.06473365426063538,
- -0.033614449203014374,
- -0.013349457643926144,
- 0.16424912214279175,
- 0.000502742943353951,
- 0.019136585295200348,
- -0.019861051812767982
- ]
- },
- {
- "keyword": "child",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.05552566424012184,
- 0.0917389765381813,
- -0.03455577790737152,
- 0.027146553620696068,
- -0.012559665367007256,
- -0.059156786650419235,
- 0.1581028550863266,
- 0.04992307350039482,
- 0.048076145350933075,
- 0.04411706700921059,
- 0.019243720918893814,
- -0.07497827708721161,
- -0.046982958912849426,
- 0.013300732709467411,
- 0.0069716027937829494,
- 0.038815926760435104,
- 0.06856824457645416,
- -0.0030584537889808416,
- -0.07670644670724869,
- -0.054473426192998886,
- -0.050949566066265106,
- 0.09672419726848602,
- -0.009444708935916424,
- 0.03611590340733528,
- 0.00889532919973135,
- 0.07989942282438278,
- 0.01508372649550438,
- 0.03996105119585991,
- -0.024590950459241867,
- -0.02727554552257061,
- 0.004574829712510109,
- 0.008360641077160835,
- 0.08356162160634995,
- -0.04141679406166077,
- -0.023761741816997528,
- 0.052230026572942734,
- 0.05397636815905571,
- 0.054456677287817,
- 0.042043332010507584,
- -0.008604520931839943,
- -0.002619731705635786,
- -0.0289001502096653,
- -0.12234574556350708,
- -0.04684262350201607,
- 0.009264904074370861,
- -0.07284222543239594,
- 0.026774462312459946,
- -0.020530719310045242,
- 0.06492043286561966,
- -0.03252100199460983,
- -0.05306712165474892,
- -0.03729923069477081,
- 0.002189988037571311,
- 0.05301038548350334,
- -0.0013722439762204885,
- -0.028530225157737732,
- -0.0013268834445625544,
- -0.02591201290488243,
- 0.06090554594993591,
- -0.026089245453476906,
- 0.009739343076944351,
- -0.007414168678224087,
- -0.0625220537185669,
- -0.0030175328720360994,
- -0.026072803884744644,
- 0.031185023486614227,
- 0.061785146594047546,
- -0.06653347611427307,
- 0.016025414690375328,
- -0.03373291343450546,
- 0.032563984394073486,
- 0.01857718452811241,
- 0.04393531382083893,
- 0.02356558106839657,
- 0.05511542037129402,
- -0.0072860377840697765,
- 0.03069010004401207,
- -0.016203831881284714,
- 0.10004489868879318,
- 0.026108134537935257,
- -0.08040856570005417,
- 0.0320330373942852,
- -0.02373739704489708,
- -0.00023104494903236628,
- 0.009864339604973793,
- 0.010901247151196003,
- 0.053242772817611694,
- -0.023544998839497566,
- -0.10049589723348618,
- 0.053699396550655365,
- -0.017802825197577477,
- -0.016525277867913246,
- 0.10134977847337723,
- 0.017367219552397728,
- -0.05272360146045685,
- -0.09088075906038284,
- -0.03894200921058655,
- -0.0906338170170784,
- -0.17843976616859436,
- 0.20186007022857666,
- 0.02885354682803154,
- 0.0743703842163086,
- 0.03748708590865135,
- 0.04305024817585945,
- -0.021668249741196632,
- -0.03565976768732071,
- -0.065403513610363,
- 0.015725795179605484,
- -0.04020918905735016,
- -0.001085073803551495,
- -0.07284706830978394,
- -0.028383178636431694,
- 0.010197299532592297,
- 0.04565168544650078,
- 0.023385416716337204,
- -0.03603130206465721,
- 0.0027688804548233747,
- -0.033115703612565994,
- -0.053158726543188095,
- -0.012474027462303638,
- 0.03659198060631752,
- 0.04239845648407936,
- -0.04174192249774933,
- 0.02239787019789219,
- -0.037911638617515564,
- -0.20934365689754486,
- -0.022995732724666595,
- -4.7207834761923835e-33,
- -0.024537552148103714,
- -0.06562399864196777,
- 0.03794270381331444,
- 0.03650311008095741,
- -0.06904758512973785,
- 0.10187222063541412,
- 0.05772293731570244,
- 0.016992252320051193,
- -0.0824970230460167,
- 0.05205926671624184,
- -0.06104851886630058,
- -0.08358090370893478,
- -0.025200799107551575,
- -0.01880001649260521,
- 0.10488592088222504,
- 0.05220120772719383,
- -0.05298706144094467,
- 0.03450050204992294,
- -0.027429591864347458,
- 0.05061895400285721,
- -0.05010199546813965,
- 0.13583722710609436,
- 0.036351095885038376,
- 0.028846466913819313,
- 0.0386030338704586,
- 0.043072205036878586,
- -0.010968328453600407,
- -0.026410697028040886,
- -0.005267422646284103,
- 0.005580531898885965,
- -0.0022607201244682074,
- 0.060268864035606384,
- -0.02233038656413555,
- -0.016422562301158905,
- -0.08056057244539261,
- -0.07075086981058121,
- 0.0543375089764595,
- -0.052157144993543625,
- -0.03598134592175484,
- -0.036807797849178314,
- -0.0006403239094652236,
- -0.02695785090327263,
- 0.000029798711693729274,
- 0.0539608895778656,
- -0.014670176431536674,
- -0.009832644835114479,
- 0.034366264939308167,
- 0.007464232854545116,
- -0.04145016148686409,
- -0.01528891734778881,
- 0.03451882675290108,
- -0.023465681821107864,
- -0.06074047461152077,
- -0.036360327154397964,
- -0.016845352947711945,
- 0.03833036497235298,
- 0.028164511546492577,
- 0.013062489219009876,
- -0.06761769950389862,
- -0.04469833895564079,
- 0.0419296994805336,
- 0.013187001459300518,
- -0.0518515519797802,
- 0.03543127328157425,
- -0.03842654824256897,
- -0.04229826480150223,
- 0.0486559197306633,
- -0.0049562291242182255,
- 0.05423903092741966,
- -0.0850253775715828,
- 0.010980786755681038,
- -0.0010928037809208035,
- 0.03489886224269867,
- -0.03892557695508003,
- -0.014494703151285648,
- -0.025108829140663147,
- 0.09577948600053787,
- -0.01616295985877514,
- -0.050692565739154816,
- 0.016643013805150986,
- -0.06779246777296066,
- -0.008245510049164295,
- 0.05257316306233406,
- -0.005699694622308016,
- -0.02107701078057289,
- -0.0625736340880394,
- -0.004759224131703377,
- -0.02680080011487007,
- 0.002326935064047575,
- 0.03917870670557022,
- -0.02533998154103756,
- 0.008882587775588036,
- 0.047282759100198746,
- 0.06935060024261475,
- 0.04265471547842026,
- 3.284718027307289e-33,
- 0.09673939645290375,
- -0.011289107613265514,
- -0.00005560716817853972,
- 0.08118882775306702,
- -0.003346911398693919,
- -0.04311920702457428,
- -0.0030912060756236315,
- 0.07116761058568954,
- -0.04815627634525299,
- 0.046031054109334946,
- -0.04492830112576485,
- -0.044218938797712326,
- 0.04604494199156761,
- -0.040262047201395035,
- 0.00448239129036665,
- 0.11624208092689514,
- 0.04119507595896721,
- 0.03826809674501419,
- -0.02200079709291458,
- 0.045072492212057114,
- -0.012618381530046463,
- -0.004273276310414076,
- -0.042705316096544266,
- -0.0070169465616345406,
- -0.02010152116417885,
- -0.033019401133060455,
- 0.08799055963754654,
- 0.013264206238090992,
- -0.007072530686855316,
- 0.02960395999252796,
- 0.0677928626537323,
- -0.015166454948484898,
- 0.04069257155060768,
- 0.055948592722415924,
- -0.02780257910490036,
- 0.07130174338817596,
- 0.009289575740695,
- -0.044537950307130814,
- -0.05035771429538727,
- -0.019792314618825912,
- 0.04370279237627983,
- 0.014922112226486206,
- 0.024628102779388428,
- 0.12127094715833664,
- -0.017737844958901405,
- 0.0020057454239577055,
- 0.0174819715321064,
- 0.1286974400281906,
- 0.06737568229436874,
- 0.08284243941307068,
- -0.052739888429641724,
- 0.007145972456783056,
- -0.008729146793484688,
- -0.017077170312404633,
- -0.014096296392381191,
- 0.06227406859397888,
- -0.016096435487270355,
- 0.010900278575718403,
- -0.00011261199688306078,
- 0.02539904974400997,
- 0.07735665887594223,
- -0.024843472987413406,
- -0.06918225437402725,
- 0.014814808964729309,
- -0.07523245364427567,
- 0.015885859727859497,
- -0.11197257041931152,
- -0.016916800290346146,
- 0.007956139743328094,
- -0.04230911284685135,
- 0.05308295786380768,
- 0.059448592364788055,
- 0.004043580964207649,
- -0.022671088576316833,
- -0.0857129916548729,
- -0.1000862643122673,
- -0.05543506145477295,
- 0.045078881084918976,
- 0.0028422335162758827,
- -0.028600618243217468,
- 0.010408250615000725,
- -0.02325483039021492,
- -0.022358354181051254,
- -0.01957259140908718,
- -0.0644216239452362,
- -0.09495089948177338,
- 0.020473482087254524,
- 0.004630331881344318,
- -0.004783916287124157,
- -0.007454183883965015,
- 0.021140532568097115,
- 0.036732275038957596,
- -0.005672858562320471,
- -0.0568755567073822,
- 0.014700922183692455,
- -1.297495177965402e-8,
- 0.006570085417479277,
- 0.0068724872544407845,
- -0.027918556705117226,
- 0.021025411784648895,
- 0.0732622891664505,
- 0.09196509420871735,
- 0.002727583749219775,
- -0.05317317321896553,
- 0.01602960005402565,
- 0.05064163729548454,
- -0.061774320900440216,
- 0.02830287627875805,
- 0.039982520043849945,
- -0.0054213800467550755,
- 0.08778119832277298,
- -0.0785234346985817,
- 0.0031955603044480085,
- -0.01422499492764473,
- 0.02719292789697647,
- 0.05947723239660263,
- -0.011936148628592491,
- 0.01078665629029274,
- 0.030685875564813614,
- 0.02968693897128105,
- -0.039285071194171906,
- -0.10011649876832962,
- -0.027403423562645912,
- 0.12321333587169647,
- -0.06557057797908783,
- 0.0040402887389063835,
- 0.05614541843533516,
- 0.07639561593532562,
- -0.058763083070516586,
- -0.03986678645014763,
- -0.01768939197063446,
- -0.03340168297290802,
- -0.017907243221998215,
- 0.07989369332790375,
- 0.006764104124158621,
- 0.017357459291815758,
- -0.003387349657714367,
- 0.04570690542459488,
- 0.031617674976587296,
- -0.006174919661134481,
- -0.03182348981499672,
- 0.01130107045173645,
- -0.044738784432411194,
- -0.059574682265520096,
- 0.007046835962682962,
- 0.03158915787935257,
- -0.03355000168085098,
- -0.011466166004538536,
- 0.05677662417292595,
- 0.001939915120601654,
- 0.12052853405475616,
- -0.014401111751794815,
- -0.009499531239271164,
- 0.05938570573925972,
- -0.08502737432718277,
- 0.07459249347448349,
- 0.11077757924795151,
- 0.06112010031938553,
- 0.0313875712454319,
- 0.03612956032156944
- ]
- },
- {
- "keyword": "teen",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.008839407935738564,
- 0.09891708940267563,
- 0.0027348629664629698,
- -0.024906782433390617,
- -0.055156975984573364,
- -0.05727306380867958,
- 0.0602700337767601,
- -0.0056847636587917805,
- 0.013312187977135181,
- 0.021333210170269012,
- 0.09158767014741898,
- -0.07269944250583649,
- -0.019995037466287613,
- -0.02730538882315159,
- -0.015473862178623676,
- 0.01606699265539646,
- 0.01739601232111454,
- -0.03856059908866882,
- -0.053048595786094666,
- -0.06583981961011887,
- -0.06820977479219437,
- 0.023082341998815536,
- 0.02839568816125393,
- 0.02767155133187771,
- 0.060503918677568436,
- 0.06100871041417122,
- -0.06830120086669922,
- -0.040572259575128555,
- -0.06672981381416321,
- 0.012013038620352745,
- 0.03932687267661095,
- 0.07383642345666885,
- 0.022903552278876305,
- -0.024724513292312622,
- -0.02211773954331875,
- -0.01631840690970421,
- 0.0238348376005888,
- -0.002674258779734373,
- 0.005379865411669016,
- -0.007188224699348211,
- -0.06700800359249115,
- -0.04572775214910507,
- -0.06486958265304565,
- -0.03451051935553551,
- 0.06630239635705948,
- -0.0720083937048912,
- 0.012116705998778343,
- 0.02317073941230774,
- 0.04874160513281822,
- 0.024539889767766,
- 0.01732456125319004,
- -0.006751380395144224,
- 0.034183088690042496,
- 0.061151061207056046,
- 0.032443709671497345,
- -0.037583377212285995,
- -0.09088052064180374,
- 0.019829392433166504,
- 0.08876669406890869,
- 0.03352978080511093,
- -0.01312597282230854,
- -0.03656329587101936,
- -0.08885116875171661,
- 0.01933494210243225,
- 0.028243999928236008,
- 0.016766654327511787,
- 0.008223623037338257,
- -0.05285658314824104,
- -0.004819526802748442,
- -0.013707130216062069,
- -0.028484361246228218,
- -0.03360956534743309,
- -0.02316988818347454,
- 0.01650085672736168,
- 0.029075924307107925,
- -0.037528250366449356,
- 0.03991081938147545,
- -0.014401999302208424,
- 0.1086106225848198,
- 0.009063564240932465,
- -0.016801925376057625,
- 0.03332457318902016,
- -0.08515843749046326,
- 0.050379473716020584,
- -0.01882423833012581,
- -0.054532188922166824,
- 0.0429866760969162,
- 0.006212981417775154,
- -0.024004016071558,
- 0.036307115107774734,
- -0.05305780470371246,
- 0.05419202148914337,
- 0.018518464639782906,
- 0.04993028566241264,
- -0.06730031967163086,
- -0.0446246974170208,
- 0.019355224445462227,
- -0.12454580515623093,
- -0.08456937223672867,
- 0.2391223907470703,
- 0.03914528712630272,
- 0.02470562793314457,
- 0.07400205731391907,
- 0.026552308350801468,
- -0.057877376675605774,
- -0.011738767847418785,
- 0.05480434373021126,
- 0.02702944725751877,
- 0.046242859214544296,
- 0.037233658134937286,
- -0.0024009281769394875,
- -0.009424946270883083,
- 0.04360498860478401,
- -0.05844930186867714,
- 0.07226927578449249,
- 0.016276318579912186,
- 0.006433179136365652,
- 0.025524161756038666,
- 0.015827655792236328,
- 0.02280666120350361,
- 0.022080013528466225,
- 0.044390298426151276,
- -0.0107758529484272,
- -0.002627176232635975,
- -0.04596422240138054,
- -0.08317848294973373,
- -0.010534107685089111,
- -4.7198423460277564e-33,
- 0.04264070838689804,
- 0.028575213626027107,
- -0.002403050661087036,
- 0.022407138720154762,
- 0.032204438000917435,
- 0.010315933264791965,
- 0.08303353935480118,
- -0.007199089974164963,
- -0.0875619500875473,
- 0.027379171922802925,
- 0.01574576087296009,
- -0.07729346305131912,
- -0.09517654776573181,
- -0.03416476771235466,
- 0.12395714968442917,
- 0.04637451469898224,
- 0.018861990422010422,
- -0.029218848794698715,
- 0.0035805338993668556,
- 0.03520403057336807,
- -0.04407614469528198,
- 0.08158528804779053,
- 0.012806839309632778,
- 0.04860302060842514,
- -0.01833660528063774,
- -0.054335784167051315,
- -0.02921832725405693,
- -0.0382663756608963,
- 0.015934444963932037,
- 0.04354606941342354,
- 0.045981310307979584,
- 0.023981286212801933,
- -0.02330787479877472,
- 0.05036836862564087,
- -0.047293439507484436,
- -0.06592468172311783,
- 0.06925942748785019,
- -0.06431854516267776,
- 0.03600787743926048,
- -0.06434626132249832,
- 0.06825393438339233,
- -0.002477217698469758,
- -0.005152122583240271,
- 0.02820080704987049,
- 0.04437859728932381,
- 0.05908617377281189,
- 0.001205412670969963,
- -0.024008404463529587,
- -0.0646405816078186,
- 0.06455390155315399,
- -0.03657694160938263,
- 0.02397659420967102,
- -0.040527064353227615,
- -0.06597116589546204,
- -0.0373787023127079,
- 0.009272794239223003,
- -0.011462202295660973,
- -0.052968744188547134,
- -0.03409003093838692,
- -0.0159920547157526,
- 0.05176568031311035,
- 0.0829361081123352,
- -0.033675484359264374,
- -0.01917390152812004,
- -0.03450063616037369,
- -0.021539343520998955,
- 0.08599277585744858,
- -0.036773648113012314,
- 0.05202917382121086,
- -0.02249901369214058,
- -0.055263008922338486,
- 0.07797925919294357,
- 0.030984554439783096,
- 0.010211371816694736,
- -0.024643562734127045,
- -0.028364885598421097,
- 0.04101317375898361,
- 0.024380316957831383,
- -0.030844954773783684,
- 0.025878196582198143,
- 0.004839758388698101,
- 0.028669405728578568,
- -0.056601814925670624,
- 0.0022588467691093683,
- 0.0036312714219093323,
- -0.02033464051783085,
- -0.06396858394145966,
- -0.03571612015366554,
- 0.11143114417791367,
- -0.022748759016394615,
- -0.03776917606592178,
- -0.07370977848768234,
- 0.06179574504494667,
- 0.049971211701631546,
- 0.003527622204273939,
- 3.0773610074932296e-33,
- 0.057331204414367676,
- -0.041071027517318726,
- 0.02260049246251583,
- 0.03908298909664154,
- 0.06087024509906769,
- -0.03419502452015877,
- 0.013957587070763111,
- 0.04639427736401558,
- 0.03667104244232178,
- -0.006262423936277628,
- -0.04324519634246826,
- -0.05385127663612366,
- 0.020756151527166367,
- -0.009838131256401539,
- 0.0575837716460228,
- 0.05345239117741585,
- 0.02136564813554287,
- -0.022285044193267822,
- -0.05908282473683357,
- -0.009855108335614204,
- -0.029166115447878838,
- -0.06989209353923798,
- -0.05301599204540253,
- 0.074788898229599,
- -0.009126463904976845,
- -0.03295338153839111,
- 0.08901860564947128,
- -0.028612347319722176,
- -0.07912857085466385,
- -0.007192978635430336,
- 0.12728102505207062,
- -0.007842030376195908,
- 0.11405190825462341,
- -0.043389685451984406,
- -0.08033629506826401,
- 0.053494151681661606,
- -0.023017439991235733,
- 0.007238059304654598,
- -0.060770198702812195,
- -0.05043596029281616,
- 0.09079159051179886,
- -0.023218810558319092,
- -0.005514821037650108,
- 0.11631695181131363,
- -0.029131880030035973,
- 0.029179248958826065,
- 0.033785130828619,
- -0.012146658264100552,
- -0.029417186975479126,
- 0.03559626266360283,
- -0.055281542241573334,
- 0.023760415613651276,
- 0.04954977333545685,
- -0.02597029320895672,
- -0.022286431863904,
- -0.05905973166227341,
- -0.02724274806678295,
- 0.01636461168527603,
- 0.0030801219400018454,
- 0.02561502531170845,
- 0.06020785868167877,
- -0.07201031595468521,
- -0.017245810478925705,
- 0.020912209525704384,
- -0.07728186249732971,
- 0.007423943839967251,
- -0.0666283443570137,
- -0.050903238356113434,
- -0.06645700335502625,
- 0.016729408875107765,
- 0.014914616011083126,
- -0.011137316934764385,
- -0.0575595423579216,
- 0.038248348981142044,
- -0.08279895037412643,
- -0.06859217584133148,
- -0.026288114488124847,
- -0.0009491672390140593,
- -0.0770312249660492,
- -0.045480936765670776,
- 0.006199344526976347,
- 0.013224379159510136,
- -0.0667944848537445,
- 0.031252723187208176,
- -0.07236399501562119,
- -0.08393824845552444,
- 0.042280491441488266,
- -0.006904687266796827,
- -0.04409024119377136,
- 0.03373735770583153,
- 0.04366867244243622,
- -0.015268788672983646,
- -0.06625227630138397,
- -0.05068736523389816,
- -0.019506637006998062,
- -1.1667889765476502e-8,
- 0.05282318592071533,
- 0.062101393938064575,
- -0.04639861360192299,
- 0.001650301506742835,
- 0.032919883728027344,
- 0.1906440407037735,
- 0.013498008251190186,
- 0.0271124430000782,
- 0.07887465506792068,
- 0.05101439356803894,
- 0.06275779753923416,
- -0.028807025402784348,
- 0.026611844077706337,
- -0.06840343773365021,
- 0.017922386527061462,
- -0.06509919464588165,
- 0.07877838611602783,
- -0.020131492987275124,
- 0.001499679172411561,
- 0.01121580507606268,
- 0.08619977533817291,
- 0.024120524525642395,
- 0.018515702337026596,
- 0.017573058605194092,
- -0.012478022836148739,
- -0.05557292327284813,
- 0.00874966662377119,
- 0.08407040685415268,
- -0.12034336477518082,
- -0.0018120631575584412,
- -0.00019109199638478458,
- 0.03940831124782562,
- -0.03025437518954277,
- -0.03969787061214447,
- -0.07399117946624756,
- -0.016081973910331726,
- 0.021654045209288597,
- -0.07068974524736404,
- 0.013332349248230457,
- -0.020843802019953728,
- 0.003942946903407574,
- 0.02231328934431076,
- 0.06355876475572586,
- -0.05808692052960396,
- -0.07312296330928802,
- 0.08940515667200089,
- 0.032891515642404556,
- -0.06206532195210457,
- 0.05032387748360634,
- 0.033517614006996155,
- -0.019185461103916168,
- 0.0048447041772305965,
- 0.0802929550409317,
- 0.0510946549475193,
- 0.12446245551109314,
- -0.005769395735114813,
- -0.01254194788634777,
- 0.10308066010475159,
- -0.07227014005184174,
- -0.04138270393013954,
- 0.18411009013652802,
- 0.02054722234606743,
- -0.018878761678934097,
- -0.019944466650485992
- ]
- },
- {
- "keyword": "senior",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.024044940248131752,
- 0.08975949138402939,
- -0.015265348367393017,
- -0.033878836780786514,
- -0.03011953830718994,
- -0.03818046674132347,
- -0.006979348603636026,
- 0.024662472307682037,
- -0.04750516265630722,
- 0.038022786378860474,
- 0.029232284054160118,
- 0.03360877186059952,
- 0.029510220512747765,
- -0.002888113260269165,
- 0.004200563300400972,
- 0.022230330854654312,
- -0.028246618807315826,
- 0.009916065260767937,
- -0.0317104309797287,
- -0.09659208357334137,
- -0.08383964747190475,
- -0.023070931434631348,
- -0.01606072671711445,
- 0.0021202543284744024,
- 0.004896205849945545,
- -0.013949542306363583,
- -0.1051776334643364,
- 0.05040324479341507,
- -0.05950810760259628,
- -0.019728833809494972,
- 0.01308271661400795,
- -0.006442958954721689,
- 0.11305948346853256,
- 0.0107941385358572,
- -0.07645942270755768,
- 0.008871866390109062,
- -0.005215343553572893,
- 0.02882646769285202,
- 0.02471955679357052,
- 0.03696363791823387,
- -0.08446561545133591,
- -0.03743542358279228,
- -0.018608158454298973,
- -0.023050814867019653,
- 0.056086283177137375,
- -0.01103751827031374,
- 0.007732509635388851,
- -0.09245998412370682,
- 0.02493477426469326,
- -0.013523006811738014,
- 0.01674812287092209,
- -0.04970232769846916,
- -0.023753270506858826,
- 0.02992427907884121,
- -0.0015157999005168676,
- 0.040818870067596436,
- -0.005186769645661116,
- -0.09290000796318054,
- 0.015595837496221066,
- -0.03565073758363724,
- -0.10347199440002441,
- -0.009445971809327602,
- -0.03866288810968399,
- -0.012653895653784275,
- -0.012803045101463795,
- -0.08735241740942001,
- 0.04880582541227341,
- -0.07525968551635742,
- 0.0802866667509079,
- -0.06225745752453804,
- 0.003721053944900632,
- -0.012692678719758987,
- -0.022941170260310173,
- -0.021690744906663895,
- 0.04912332817912102,
- -0.02418808452785015,
- 0.01489301212131977,
- 0.05566166341304779,
- 0.049079909920692444,
- -0.06351879239082336,
- 0.04003940522670746,
- -0.06520920246839523,
- -0.07041669636964798,
- 0.025744687765836716,
- 0.0580991730093956,
- 0.01033066026866436,
- -0.033384788781404495,
- -0.009032445028424263,
- -0.045997992157936096,
- 0.010536263696849346,
- -0.07076122611761093,
- 0.03314865007996559,
- 0.05613632872700691,
- -0.004386463668197393,
- -0.04120084270834923,
- 0.014321680180728436,
- 0.013926822692155838,
- 0.030718587338924408,
- -0.11809909343719482,
- 0.23264478147029877,
- -0.035649944096803665,
- 0.05084909498691559,
- 0.009051714092493057,
- 0.023499689996242523,
- -0.021653560921549797,
- -0.002957660937681794,
- 0.07295305281877518,
- 0.03140721842646599,
- -0.004077020101249218,
- 0.01535835862159729,
- -0.02920174039900303,
- 0.006703774910420179,
- -0.05931857228279114,
- 0.008079146966338158,
- -0.035655975341796875,
- -0.006942259147763252,
- 0.01323269959539175,
- 0.037232428789138794,
- 0.010959004051983356,
- -0.03200473263859749,
- -0.007221342995762825,
- 0.029133567586541176,
- -0.006211735773831606,
- 0.001911219791509211,
- -0.04744204133749008,
- -0.04463459923863411,
- 0.029251718893647194,
- -4.5424209428963176e-33,
- 0.05398470163345337,
- 0.020186441019177437,
- 0.010596249252557755,
- 0.08749476820230484,
- -0.024602334946393967,
- 0.015026776120066643,
- -0.026106812059879303,
- -0.004589503165334463,
- -0.03222254291176796,
- -0.00198024557903409,
- 0.0399678573012352,
- 0.021412566304206848,
- -0.0015565506182610989,
- -0.03035879135131836,
- 0.019204039126634598,
- 0.03297296166419983,
- 0.0023723712656646967,
- 0.0440450944006443,
- -0.030323905870318413,
- 0.06702079623937607,
- -0.006278239190578461,
- 0.05806124955415726,
- -0.004330516792833805,
- 0.016005977988243103,
- 0.0007616536458954215,
- 0.014078785665333271,
- -0.029621848836541176,
- -0.05235495790839195,
- 0.04527493193745613,
- -0.0012320001842454076,
- 0.027573471888899803,
- -0.028188709169626236,
- -0.03340381011366844,
- -0.0035962022375315428,
- -0.06215251609683037,
- 0.007516020908951759,
- 0.01557734701782465,
- -0.044609274715185165,
- 0.02072305418550968,
- -0.0717671811580658,
- -0.0613449364900589,
- 0.01622052863240242,
- 0.032347697764635086,
- 0.013680952601134777,
- -0.0023886943235993385,
- 0.02788688614964485,
- 0.08448444306850433,
- 0.03181244432926178,
- 0.041962411254644394,
- 0.052134472876787186,
- -0.06173674762248993,
- -0.055070433765649796,
- -0.07453695684671402,
- 0.01691127009689808,
- -0.022147540003061295,
- -0.08991754800081253,
- 0.06830263137817383,
- 0.03547515347599983,
- -0.015389122068881989,
- -0.057485900819301605,
- 0.06371509283781052,
- 0.11906247586011887,
- -0.12223906069993973,
- 0.09008853882551193,
- -0.021278370171785355,
- -0.06073451042175293,
- -0.007154644001275301,
- -0.024809356778860092,
- 0.14202122390270233,
- 0.0631893128156662,
- 0.028432609513401985,
- -0.04832546040415764,
- 0.012703415006399155,
- 0.07266027480363846,
- -0.006294412072747946,
- 0.03182617947459221,
- 0.016297467052936554,
- -0.015139860101044178,
- 0.05141009762883186,
- -0.04662559553980827,
- 0.01775434799492359,
- -0.05994284152984619,
- -0.05232806131243706,
- 0.06104964390397072,
- 0.02293586917221546,
- 0.06626899540424347,
- -0.03983544558286667,
- -0.03300684690475464,
- 0.07310017198324203,
- 0.06077011302113533,
- -0.002749880775809288,
- -0.042056500911712646,
- 0.07220381498336792,
- 0.0980999544262886,
- -0.03511271998286247,
- 3.605786676819134e-33,
- 0.03874184936285019,
- 0.019930386915802956,
- 0.009269580245018005,
- 0.021295886486768723,
- 0.09416676312685013,
- 0.04433117434382439,
- 0.01065122801810503,
- -0.032245904207229614,
- 0.022736184298992157,
- -0.029096975922584534,
- 0.039494968950748444,
- -0.0033406622242182493,
- 0.022947043180465698,
- 0.03743207827210426,
- 0.057128142565488815,
- 0.046876195818185806,
- -0.02133437804877758,
- -0.007058608811348677,
- -0.07693395763635635,
- 0.027978694066405296,
- -0.019265852868556976,
- 0.052857764065265656,
- -0.007597545627504587,
- 0.022486869245767593,
- -0.013306356966495514,
- -0.03269383683800697,
- 0.10844744741916656,
- 0.0058782692067325115,
- -0.09043803066015244,
- -0.02241157926619053,
- -0.020075544714927673,
- -0.033996712416410446,
- 0.03743407875299454,
- 0.014403792098164558,
- -0.10153716057538986,
- 0.039127595722675323,
- -0.05457982420921326,
- 0.008825061842799187,
- -0.07385466992855072,
- 0.059108179062604904,
- 0.03383178636431694,
- -0.01672307960689068,
- -0.01606527902185917,
- 0.062137436121702194,
- 0.052775733172893524,
- 0.00965088326483965,
- -0.04460001736879349,
- 0.03283507376909256,
- -0.03084230236709118,
- 0.02367483265697956,
- -0.11493419110774994,
- 0.012502229772508144,
- 0.04117482155561447,
- -0.051349882036447525,
- 0.03238809481263161,
- -0.005466080736368895,
- -0.025898175314068794,
- 0.005829163361340761,
- 0.004516361281275749,
- -0.0075174542143940926,
- 0.09290003776550293,
- 0.04684571921825409,
- -0.009224518202245235,
- 0.05043736472725868,
- -0.08149749040603638,
- 0.062169149518013,
- 0.012554236687719822,
- -0.03375353291630745,
- -0.14403781294822693,
- 0.02487952634692192,
- 0.10357329249382019,
- -0.0365547351539135,
- -0.061535075306892395,
- -0.0136951245367527,
- 0.004283582791686058,
- -0.045416995882987976,
- -0.07632234692573547,
- 0.09349371492862701,
- -0.016072453930974007,
- -0.019913895055651665,
- -0.11544988304376602,
- 0.016692349687218666,
- -0.047067418694496155,
- 0.09832990914583206,
- -0.03975165635347366,
- -0.04276959225535393,
- 0.018551096320152283,
- -0.0120616490021348,
- 0.03018985129892826,
- -0.03537607938051224,
- 0.06220536679029465,
- -0.015452561900019646,
- 0.033922839909791946,
- -0.07419005781412125,
- -0.004684786777943373,
- -1.1117700537965902e-8,
- -0.004176614340394735,
- 0.1045740395784378,
- -0.06634452939033508,
- -0.008986091241240501,
- 0.03094550594687462,
- 0.07504332065582275,
- -0.029372697696089745,
- -0.00939469039440155,
- 0.04759281873703003,
- 0.04895443096756935,
- 0.06180434301495552,
- -0.02039102464914322,
- 0.08140317350625992,
- -0.11019119620323181,
- 0.13312868773937225,
- 0.014713341370224953,
- -0.036384791135787964,
- 0.08172603696584702,
- -0.019261764362454414,
- -0.0019294321537017822,
- 0.04495906084775925,
- 0.005147532559931278,
- -0.005740548018366098,
- 0.08029287308454514,
- -0.07037299126386642,
- -0.041600849479436874,
- 0.0637073740363121,
- 0.09028591960668564,
- -0.043263863772153854,
- 0.02538277767598629,
- -0.03305474668741226,
- 0.07434678822755814,
- -0.020868541672825813,
- -0.08309078216552734,
- 0.02946956641972065,
- -0.025721006095409393,
- 0.058685850352048874,
- -0.04742610454559326,
- 0.013099491596221924,
- -0.012095348909497261,
- -0.009827207773923874,
- -0.08758389949798584,
- -0.006222106982022524,
- 0.025592723861336708,
- 0.0775614082813263,
- 0.09797319024801254,
- -0.017671139910817146,
- -0.047081783413887024,
- 0.023544706404209137,
- -0.00783154834061861,
- 0.04458501935005188,
- 0.05599590390920639,
- 0.022865673527121544,
- 0.039375998079776764,
- -0.05789487808942795,
- 0.02956049144268036,
- -0.02826264314353466,
- 0.024341128766536713,
- -0.1478116810321808,
- -0.08207565546035767,
- 0.19978974759578705,
- -0.01602865383028984,
- 0.016190383583307266,
- -0.006732297595590353
- ]
- },
- {
- "keyword": "junior",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.05412108451128006,
- 0.08078597486019135,
- -0.03885386139154434,
- -0.07929977774620056,
- -0.03436868265271187,
- -0.0604013055562973,
- 0.04683198407292366,
- -0.009798739105463028,
- 0.0038771568797528744,
- 0.06342317163944244,
- 0.007630564738065004,
- -0.012621747329831123,
- -0.006545501761138439,
- 0.0264895036816597,
- -0.002907673129811883,
- 0.005347897298634052,
- 0.05016132444143295,
- 0.03711216524243355,
- -0.05779615789651871,
- -0.09684153646230698,
- -0.11727547645568848,
- -0.020157892256975174,
- -0.031334616243839264,
- 0.029332809150218964,
- 0.020530473440885544,
- 0.0302951168268919,
- -0.019048728048801422,
- 0.058199744671583176,
- -0.0708393007516861,
- -0.09975870698690414,
- -0.09114737063646317,
- -0.01973593607544899,
- 0.07747437804937363,
- -0.006591698154807091,
- -0.05449652299284935,
- 0.007170942611992359,
- -0.03604337200522423,
- -0.014428216964006424,
- 0.0597112737596035,
- -0.0027474851813167334,
- -0.0587799996137619,
- -0.051914434880018234,
- -0.014620944857597351,
- -0.049264196306467056,
- -0.01345464400947094,
- -0.04963614419102669,
- 0.008762136101722717,
- -0.07502387464046478,
- 0.07510661333799362,
- 0.016608895733952522,
- -0.016253648325800896,
- -0.0692453607916832,
- -0.01674986444413662,
- 0.021832695230841637,
- 0.05639517679810524,
- 0.008720560930669308,
- -0.03492046892642975,
- -0.09395399689674377,
- 0.044284552335739136,
- 0.014592164196074009,
- -0.06362953782081604,
- -0.026888251304626465,
- -0.035657335072755814,
- -0.014468366280198097,
- 0.045351192355155945,
- -0.07290246337652206,
- 0.01257631741464138,
- -0.07289966940879822,
- 0.05285964906215668,
- -0.027552515268325806,
- -0.045750170946121216,
- -0.012123613618314266,
- 0.011109515093266964,
- 0.006542752496898174,
- 0.014687510207295418,
- -0.04950165003538132,
- 0.024997878819704056,
- 0.04996979981660843,
- 0.07073763757944107,
- -0.024573519825935364,
- 0.0188303142786026,
- -0.023969626054167747,
- -0.09954366087913513,
- 0.02084456942975521,
- -0.006941598374396563,
- 0.015563501045107841,
- -0.01939976029098034,
- -0.03662294149398804,
- -0.011307533830404282,
- 0.05603991821408272,
- -0.08736741542816162,
- 0.009799249470233917,
- 0.045116908848285675,
- 0.0020008657593280077,
- -0.08177438378334045,
- 0.0008952846401371062,
- -0.00831630639731884,
- -0.024048594757914543,
- -0.08493370562791824,
- 0.23800630867481232,
- 0.011048072949051857,
- 0.05235633999109268,
- 0.04765981808304787,
- -0.025645554065704346,
- 0.03375880420207977,
- -0.07185682654380798,
- 0.004902034066617489,
- 0.005647056270390749,
- 0.019884301349520683,
- 0.004298546351492405,
- -0.03662506490945816,
- -0.04724099114537239,
- -0.004383637569844723,
- 0.0017918426310643554,
- 0.0070978798903524876,
- 0.010794822126626968,
- 0.04227470979094505,
- 0.025276249274611473,
- -0.03998236358165741,
- -0.005330578424036503,
- 0.06576916575431824,
- 0.03406919538974762,
- -0.01875988580286503,
- -0.011554950848221779,
- -0.04741368815302849,
- -0.07474607229232788,
- 0.024705346673727036,
- -3.757441978464518e-33,
- 0.06824095547199249,
- 0.029407145455479622,
- 0.046943679451942444,
- 0.12472977489233017,
- -0.038309089839458466,
- 0.04398078843951225,
- 0.031907759606838226,
- 0.0012150390539318323,
- -0.07594522088766098,
- -0.04889588803052902,
- -0.01185506023466587,
- -0.024219835177063942,
- -0.028073662891983986,
- -0.020226020365953445,
- 0.04211961105465889,
- 0.06379716843366623,
- 0.028274819254875183,
- -0.06035330519080162,
- -0.05079646408557892,
- 0.06142698973417282,
- -0.009338408708572388,
- 0.13798506557941437,
- 0.0034434539265930653,
- 0.013913296163082123,
- -0.01585559919476509,
- -0.0053437803871929646,
- -0.037062935531139374,
- -0.05503588169813156,
- 0.040959350764751434,
- 0.02542942948639393,
- 0.04826696962118149,
- -0.018243324011564255,
- -0.027130769565701485,
- 0.0466163270175457,
- -0.015458912588655949,
- -0.023521607741713524,
- 0.05542299896478653,
- -0.03169730678200722,
- 0.014010326005518436,
- -0.029523557052016258,
- -0.02569809928536415,
- -0.01170556340366602,
- -0.02278062328696251,
- 0.03774037957191467,
- -0.025471195578575134,
- -0.00561805535107851,
- 0.06468010693788528,
- 0.09046509116888046,
- 0.0384109690785408,
- -0.02022048458456993,
- -0.0501488521695137,
- -0.03585546463727951,
- -0.04839879646897316,
- -0.026433197781443596,
- -0.01210168469697237,
- -0.020687762647867203,
- 0.026363417506217957,
- 0.044283267110586166,
- -0.07018831372261047,
- -0.061476241797208786,
- 0.040260378271341324,
- 0.06195785477757454,
- -0.08091563731431961,
- 0.09648419916629791,
- -0.049355506896972656,
- -0.08347610384225845,
- 0.014828567393124104,
- -0.004056388977915049,
- 0.11997703462839127,
- 0.020265238359570503,
- 0.01942320354282856,
- 0.030916254967451096,
- 0.05504787340760231,
- 0.024201462045311928,
- 0.02689117006957531,
- 0.024481119588017464,
- 0.0061567495577037334,
- 0.011520645581185818,
- -0.0013657164527103305,
- -0.033132486045360565,
- -0.038627635687589645,
- -0.017542891204357147,
- -0.0359264500439167,
- 0.03392938897013664,
- -0.0756712481379509,
- -0.0003344928554724902,
- -0.0208737812936306,
- -0.02852429635822773,
- 0.10069884359836578,
- 0.04820374399423599,
- -0.06578438729047775,
- -0.01667073741555214,
- 0.05445931479334831,
- 0.08593371510505676,
- -0.021023524925112724,
- 2.1866174898591714e-33,
- 0.1083507165312767,
- 0.01464261207729578,
- 0.055451344698667526,
- 0.0455799326300621,
- 0.08267217874526978,
- 0.029512571170926094,
- 0.027404457330703735,
- 0.000903407868463546,
- -0.0372171625494957,
- 0.006020522676408291,
- 0.039909765124320984,
- -0.0022152781020849943,
- -0.0292089581489563,
- 0.016821853816509247,
- 0.0726192519068718,
- 0.10368835926055908,
- -0.011310767382383347,
- -0.013252179138362408,
- -0.0801159143447876,
- 0.027217430993914604,
- 0.028956029564142227,
- 0.0008633544202893972,
- -0.09712616354227066,
- 0.02043982595205307,
- -0.004256687592715025,
- -0.035796575248241425,
- 0.10522712767124176,
- 0.053098805248737335,
- -0.09074253588914871,
- 0.009098579175770283,
- 0.003722500056028366,
- -0.0237650778144598,
- 0.017393575981259346,
- -0.012388080358505249,
- -0.07682814449071884,
- 0.09631755203008652,
- -0.05833624303340912,
- 0.022027069702744484,
- -0.08960419148206711,
- 0.01157409232109785,
- 0.06909257173538208,
- 0.0020162451546639204,
- 0.005055815447121859,
- 0.03376665338873863,
- 0.05110623687505722,
- -0.04566419869661331,
- 0.02081000618636608,
- 0.025427768006920815,
- 0.008770289830863476,
- 0.07700154185295105,
- -0.1250859797000885,
- -0.007682275492697954,
- 0.03129486367106438,
- -0.04653257876634598,
- 0.02703232876956463,
- 0.018880654126405716,
- -0.000024423699869657867,
- 0.019061125814914703,
- -0.014217647723853588,
- 0.06281726062297821,
- 0.08192625641822815,
- -0.041279423981904984,
- 0.005887571256607771,
- 0.04090193286538124,
- -0.0771787166595459,
- 0.05900973826646805,
- -0.03189903125166893,
- -0.0007407309021800756,
- -0.09439865499734879,
- -0.017858581617474556,
- 0.08567384630441666,
- -0.0010880287736654282,
- 0.04466912895441055,
- -0.03460752218961716,
- -0.01688733510673046,
- -0.04648054018616676,
- -0.0794919952750206,
- 0.07960682362318039,
- -0.06259743124246597,
- 0.013623206876218319,
- -0.007540218997746706,
- -0.005035450682044029,
- -0.052334412932395935,
- 0.08039392530918121,
- 0.006732364650815725,
- -0.006251176819205284,
- 0.02987200766801834,
- 0.006162513513118029,
- 0.03768988698720932,
- -0.017047276720404625,
- 0.044832371175289154,
- -0.003155731363222003,
- 0.023263070732355118,
- -0.12119340151548386,
- -0.05591772496700287,
- -1.1233614038985706e-8,
- 0.026180198416113853,
- 0.05535255745053291,
- -0.09956760704517365,
- 0.010488227009773254,
- 0.030667951330542564,
- 0.15012167394161224,
- -0.05555656924843788,
- -0.026075005531311035,
- 0.038782719522714615,
- 0.10080577433109283,
- 0.050302907824516296,
- -0.028066366910934448,
- 0.05838819220662117,
- -0.0903952345252037,
- 0.12039187550544739,
- 0.018186818808317184,
- -0.027719048783183098,
- -0.00317421299405396,
- -0.009870313107967377,
- -0.034618087112903595,
- 0.05066975951194763,
- -0.009485553950071335,
- -0.024781683459877968,
- 0.08520960062742233,
- -0.0248852651566267,
- -0.05679791420698166,
- 0.0042146979831159115,
- 0.10354676097631454,
- -0.08733855932950974,
- 0.036433301866054535,
- -0.05122449994087219,
- 0.09611336141824722,
- -0.040037136524915695,
- -0.047730471938848495,
- -0.02428971230983734,
- -0.007819234393537045,
- 0.038024988025426865,
- -0.02597716823220253,
- 0.04444045573472977,
- 0.031785380095243454,
- 0.01944151148200035,
- -0.06361895054578781,
- -0.035475559532642365,
- -0.022495204582810402,
- 0.0003288828011136502,
- 0.07041620463132858,
- -0.014316149987280369,
- -0.05346067249774933,
- 0.07223628461360931,
- 0.047436054795980453,
- 0.015116456896066666,
- -0.001684466260485351,
- 0.04791625961661339,
- 0.06640192866325378,
- 0.03417103365063667,
- 0.01935163326561451,
- -0.0313856415450573,
- 0.05592947080731392,
- -0.11430340260267258,
- -0.06889455020427704,
- 0.13745614886283875,
- 0.0004459480114746839,
- 0.0037020924501121044,
- 0.0047302148304879665
- ]
- },
- {
- "keyword": "software engineer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.0648588314652443,
- 0.02711384743452072,
- 0.006188500206917524,
- 0.016543786972761154,
- -0.02932824194431305,
- -0.116761714220047,
- 0.12524980306625366,
- 0.06312945485115051,
- -0.011731450445950031,
- -0.03481374680995941,
- -0.08566302806138992,
- -0.09926989674568176,
- 0.05293474718928337,
- -0.035992469638586044,
- -0.022735388949513435,
- 0.06706241518259048,
- -0.08203208446502686,
- -0.06162992864847183,
- 0.043318379670381546,
- -0.12734530866146088,
- -0.005853999871760607,
- 0.016404015943408012,
- -0.030957570299506187,
- -0.03323076665401459,
- 0.05726862698793411,
- 0.046278126537799835,
- 0.0524379163980484,
- -0.005709490738809109,
- 0.03595021739602089,
- -0.05481438338756561,
- -0.036934539675712585,
- 0.04301930218935013,
- 0.07014663517475128,
- 0.05466236546635628,
- -0.0025164594408124685,
- 0.06727246940135956,
- -0.010241235606372356,
- -0.05690505728125572,
- 0.048119548708200455,
- 0.006063514389097691,
- -0.1135045662522316,
- 0.007949820719659328,
- 0.04975156486034393,
- -0.06424613296985626,
- -0.004715487826615572,
- -0.067132867872715,
- 0.021532051265239716,
- -0.07268031686544418,
- 0.025197014212608337,
- -0.04981565847992897,
- -0.07435795664787292,
- -0.03604980185627937,
- -0.037106823176145554,
- -0.05274542421102524,
- 0.0275521632283926,
- 0.030949270352721214,
- 0.07099483162164688,
- -0.005485632922500372,
- -0.04517943784594536,
- 0.008843126706779003,
- -0.012725385837256908,
- -0.006319324020296335,
- -0.04252641648054123,
- 0.052637338638305664,
- 0.024127736687660217,
- 0.006170210428535938,
- -0.05511651560664177,
- 0.02805871143937111,
- 0.04232032969594002,
- -0.03938199579715729,
- -0.007263220380991697,
- -0.025300325825810432,
- -0.02980806492269039,
- 0.03388515114784241,
- 0.0980367660522461,
- -0.10401852428913116,
- 0.05139830708503723,
- 0.03671185299754143,
- 0.06856708228588104,
- -0.0521618090569973,
- 0.03831273317337036,
- -0.028053434565663338,
- -0.0839889794588089,
- 0.08250002562999725,
- -0.05478191375732422,
- -0.00760461762547493,
- 0.027900034561753273,
- 0.07952141016721725,
- 0.026553234085440636,
- 0.0498160682618618,
- 0.01577153429389,
- -0.0029715581331402063,
- 0.04106995090842247,
- 0.047898005694150925,
- -0.028284620493650436,
- 0.02379661053419113,
- 0.05798661336302757,
- -0.07186947017908096,
- -0.09443323314189911,
- 0.1801651269197464,
- -0.01137586496770382,
- -0.012702024541795254,
- 0.02231641672551632,
- -0.021757639944553375,
- -0.0829249694943428,
- 0.03452111780643463,
- 0.08867758512496948,
- 0.035208359360694885,
- 0.03775979205965996,
- -0.026016371324658394,
- -0.047123610973358154,
- 0.03561810404062271,
- -0.04972707852721214,
- 0.014278561808168888,
- -0.01602732017636299,
- 0.04414353519678116,
- -0.033781617879867554,
- 0.1021532490849495,
- -0.021404970437288284,
- 0.05729884281754494,
- -0.049344904720783234,
- 0.05041765049099922,
- -0.09922566264867783,
- -0.02332773618400097,
- -0.045329175889492035,
- -0.03346492722630501,
- 0.005683428142219782,
- -3.381278643413601e-33,
- 0.006928508635610342,
- -0.019843537360429764,
- -0.0531482994556427,
- 0.025174668058753014,
- 0.031448639929294586,
- -0.06875830143690109,
- 0.0014119985280558467,
- 0.07051082700490952,
- 0.03549227863550186,
- -0.02104276418685913,
- 0.04047999903559685,
- 0.00023593731748405844,
- -0.10837499797344208,
- 0.039090242236852646,
- 0.0744369775056839,
- 0.023670123890042305,
- -0.08491505682468414,
- 0.10098625719547272,
- -0.02502709999680519,
- 0.01833345927298069,
- -0.051730964332818985,
- -0.07319656759500504,
- -0.009040645323693752,
- 0.012901519425213337,
- 0.03011256828904152,
- 0.05463701859116554,
- 0.060167405754327774,
- -0.028879698365926743,
- 0.05522260069847107,
- 0.018495170399546623,
- -0.011381642892956734,
- 0.09718500822782516,
- -0.003040133509784937,
- -0.01497308537364006,
- 0.012299178168177605,
- 0.03688158839941025,
- -0.07235151529312134,
- -0.05809867009520531,
- 0.04142758622765541,
- 0.06293128430843353,
- -0.038138411939144135,
- 0.048238515853881836,
- 0.06203846260905266,
- -0.014494432136416435,
- 0.0343790277838707,
- -0.027248507365584373,
- 0.1014288067817688,
- -0.013797849416732788,
- 0.02253437042236328,
- 0.043210454285144806,
- -0.016850536689162254,
- 0.023175405338406563,
- 0.12051580101251602,
- 0.019538890570402145,
- 0.03055741637945175,
- -0.0006208755075931549,
- 0.04873693734407425,
- -0.022862421348690987,
- -0.01897701434791088,
- 0.09567558765411377,
- -0.02593442238867283,
- 0.08637536317110062,
- 0.020153634250164032,
- -0.0065343184396624565,
- -0.013743049465119839,
- 0.029417842626571655,
- 0.056269384920597076,
- -0.002022159518674016,
- 0.11776746809482574,
- 0.011988567188382149,
- -0.10641054809093475,
- 0.0017957254312932491,
- 0.07039036601781845,
- -0.033458322286605835,
- -0.08939149230718613,
- -0.00614704517647624,
- -0.03605209290981293,
- -0.031653620302677155,
- -0.019014546647667885,
- 0.051792874932289124,
- -0.06544359773397446,
- 0.05718271806836128,
- 0.028382569551467896,
- -0.052937787026166916,
- 0.07774541527032852,
- 0.08446723967790604,
- -0.011846703477203846,
- 0.005150235258042812,
- 0.0232163704931736,
- 0.07252965867519379,
- -0.02183244563639164,
- -0.05922815203666687,
- 0.012472141534090042,
- 0.0698465034365654,
- 0.0022914933506399393,
- 1.3682189455270055e-33,
- -0.10659705847501755,
- -0.02126125805079937,
- -0.05168541148304939,
- 0.009731277823448181,
- 0.03213919699192047,
- -0.014923252165317535,
- 0.05884726345539093,
- 0.021331073716282845,
- 0.025198129937052727,
- 0.08693380653858185,
- 0.047660790383815765,
- -0.004776660818606615,
- 0.0005020259413868189,
- 0.01746215857565403,
- -0.005184276029467583,
- -0.05061662569642067,
- 0.003005596809089184,
- -0.08284671604633331,
- -0.09754114598035812,
- 0.015078142285346985,
- 0.016778459772467613,
- 0.04129457846283913,
- -0.0603611133992672,
- -0.027831783518195152,
- 0.04960861802101135,
- 0.012866402976214886,
- 0.02464832365512848,
- 0.0159030482172966,
- -0.013816789723932743,
- -0.024644792079925537,
- 0.07739458978176117,
- 0.001981002977117896,
- -0.059270020574331284,
- 0.003134662751108408,
- 0.055402982980012894,
- 0.0010924121597781777,
- 0.011081046424806118,
- -0.0030038084369152784,
- 0.006278986111283302,
- 0.051320381462574005,
- 0.051428500562906265,
- -0.03667609393596649,
- 0.024984683841466904,
- 0.01689334399998188,
- -0.005923599470406771,
- 0.0011000684462487698,
- 0.04096631705760956,
- 0.038972899317741394,
- 0.002093805931508541,
- -0.09390439093112946,
- -0.004333945922553539,
- 0.009629677049815655,
- 0.03963051363825798,
- -0.07739987969398499,
- 0.023307127878069878,
- -0.03806135058403015,
- -0.030123271048069,
- -0.04855193570256233,
- 0.012673836201429367,
- -0.04154074192047119,
- -0.012979201972484589,
- 0.015025906264781952,
- 0.11505064368247986,
- 0.030043745413422585,
- -0.11899140477180481,
- 0.03746313229203224,
- -0.005662960931658745,
- -0.007286262232810259,
- -0.11498025804758072,
- -0.04010980948805809,
- 0.06934467703104019,
- -0.003561680903658271,
- -0.041108787059783936,
- 0.03353464603424072,
- -0.04497036710381508,
- -0.07147862017154694,
- -0.04448961839079857,
- -0.07104924321174622,
- -0.09362030774354935,
- -0.06545815616846085,
- -0.003380205249413848,
- -0.0036714449524879456,
- -0.03798956796526909,
- 0.06993579864501953,
- -0.0688452497124672,
- 0.01853160373866558,
- -0.011316278018057346,
- -0.05183112621307373,
- 0.004553710110485554,
- -0.07542554289102554,
- -0.10127060860395432,
- 0.07144389301538467,
- -0.07080251723527908,
- -0.040412720292806625,
- -0.07222792506217957,
- -1.375192759667243e-8,
- -0.055534590035676956,
- -0.01577136106789112,
- -0.02312646247446537,
- -0.0552973710000515,
- -0.00985010340809822,
- 0.07049841433763504,
- -0.09502824395895004,
- -0.03074955753982067,
- -0.0025043399073183537,
- -0.03653326630592346,
- 0.005285865161567926,
- -0.026982996612787247,
- -0.019876273348927498,
- 0.0641191154718399,
- 0.07989838719367981,
- 0.01288349088281393,
- 0.045626234263181686,
- 0.050680071115493774,
- -0.02348237857222557,
- -0.10165616124868393,
- 0.09085191786289215,
- 0.03576413914561272,
- 0.04964693263173103,
- 0.0720418393611908,
- -0.004902409855276346,
- -0.04226350411772728,
- -0.0007926140679046512,
- 0.0026687229983508587,
- -0.0015815611695870757,
- 0.04367591068148613,
- -0.0032468221615999937,
- 0.04790829122066498,
- 0.0021531200036406517,
- -0.03232597932219505,
- 0.08873377740383148,
- -0.020770106464624405,
- 0.07802988588809967,
- -0.013627474196255207,
- 0.014615450985729694,
- 0.024825816974043846,
- -0.038968637585639954,
- 0.05094365030527115,
- 0.05082046613097191,
- 0.014791138470172882,
- -0.03369803726673126,
- -0.0019483972573652864,
- -0.011455896310508251,
- -0.001319516682997346,
- 0.03326057270169258,
- 0.00313889910466969,
- 0.0069658285938203335,
- -0.032700106501579285,
- -0.06636958569288254,
- 0.024688156321644783,
- -0.011515454389154911,
- -0.0037816986441612244,
- -0.015727529302239418,
- -0.07593594491481781,
- -0.12938706576824188,
- 0.03335321322083473,
- 0.00027946667978540063,
- -0.02621506154537201,
- 0.0709201768040657,
- 0.016367031261324883
- ]
- },
- {
- "keyword": "software developer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04640068858861923,
- -0.015161656774580479,
- 0.016603803262114525,
- 0.01356937363743782,
- -0.010542348958551884,
- -0.10161228477954865,
- 0.09646642208099365,
- 0.07158039510250092,
- -0.013102357275784016,
- 0.014400451444089413,
- -0.08362843096256256,
- -0.05637456104159355,
- 0.017164360731840134,
- -0.04286086931824684,
- -0.014436204917728901,
- 0.09791930764913559,
- -0.10309293121099472,
- -0.028146805241703987,
- 0.060533180832862854,
- -0.13476255536079407,
- -0.05768345668911934,
- 0.021109312772750854,
- -0.05482996255159378,
- -0.015666848048567772,
- 0.07691500335931778,
- 0.03615260869264603,
- 0.022975904867053032,
- -0.017059573903679848,
- 0.0741821825504303,
- -0.03980664908885956,
- -0.052761953324079514,
- 0.03162321448326111,
- 0.08337878435850143,
- 0.037963852286338806,
- 0.002335659693926573,
- 0.04118994623422623,
- 0.001882709562778473,
- -0.05054005607962608,
- 0.013080751523375511,
- 0.012061015702784061,
- -0.11569289118051529,
- 0.008721224032342434,
- 0.006597430910915136,
- -0.02570999041199684,
- -0.014951453544199467,
- -0.1050431877374649,
- 0.010538814589381218,
- -0.03410197049379349,
- -0.004099756944924593,
- -0.015240483917295933,
- -0.023528262972831726,
- -0.08038488030433655,
- -0.056102313101291656,
- -0.05809579789638519,
- 0.01648925431072712,
- -0.012784712016582489,
- 0.05708345025777817,
- -0.00037672562757506967,
- 0.019066059961915016,
- -0.0006049163057468832,
- 0.024694547057151794,
- -0.004475933033972979,
- -0.041036784648895264,
- 0.05496782809495926,
- 0.03316637873649597,
- 0.013179842382669449,
- -0.032712697982788086,
- 0.04559580609202385,
- 0.005656639114022255,
- -0.06399545073509216,
- -0.06491383910179138,
- -0.022142115980386734,
- -0.012959741987287998,
- 0.05264843627810478,
- 0.09656988829374313,
- -0.09748745709657669,
- 0.046923112124204636,
- 0.02311074174940586,
- 0.05670608580112457,
- -0.059735044836997986,
- 0.061464834958314896,
- 0.008401750586926937,
- -0.07784509658813477,
- 0.09407645463943481,
- -0.057247333228588104,
- 0.02301052398979664,
- 0.07610493898391724,
- 0.10878077149391174,
- 0.06482215225696564,
- 0.042408451437950134,
- 0.038859251886606216,
- -0.00838945247232914,
- 0.049193888902664185,
- 0.019535595551133156,
- -0.0617205984890461,
- 0.0020144465379416943,
- 0.06282349675893784,
- -0.07771514356136322,
- -0.07200509309768677,
- 0.1762377768754959,
- -0.044037070125341415,
- -0.037168387323617935,
- 0.010415823198854923,
- -0.056882094591856,
- -0.04614395275712013,
- 0.05379656329751015,
- 0.05779009312391281,
- 0.030254507437348366,
- -0.0032563998829573393,
- 0.009574595838785172,
- -0.05184542387723923,
- 0.01759594865143299,
- -0.08535507321357727,
- -0.0197107195854187,
- 0.03880281746387482,
- 0.06137222424149513,
- -0.07746748626232147,
- 0.10495932400226593,
- -0.042339570820331573,
- 0.04028487578034401,
- -0.02069280669093132,
- 0.10539648681879044,
- -0.10841593146324158,
- -0.025011224672198296,
- -0.0010729768546298146,
- -0.00993665773421526,
- -0.008623084984719753,
- -3.5015691843851534e-33,
- 0.04923967644572258,
- -0.014983589760959148,
- -0.07242138683795929,
- 0.05534547567367554,
- 0.047667186707258224,
- -0.06147434562444687,
- 0.040492285043001175,
- 0.06847856938838959,
- -0.029376428574323654,
- -0.0066592576913535595,
- 0.03750986233353615,
- -0.033456943929195404,
- -0.08130036294460297,
- 0.03574305772781372,
- 0.06574926525354385,
- 0.02282862178981304,
- -0.028407100588083267,
- 0.014322487637400627,
- -0.08082407712936401,
- 0.007007816806435585,
- -0.08203781396150589,
- -0.07591520249843597,
- -0.026250138878822327,
- 0.044522058218717575,
- 0.008475607261061668,
- 0.06629569083452225,
- 0.04560227319598198,
- -0.006236293353140354,
- 0.08754860609769821,
- 0.013930131681263447,
- -0.01749865524470806,
- 0.04456138610839844,
- -0.011546103283762932,
- 0.011768871918320656,
- 0.03137191757559776,
- 0.030001970008015633,
- -0.042555563151836395,
- -0.06163725256919861,
- 0.037488874047994614,
- 0.0888940617442131,
- -0.04922317713499069,
- 0.0355612076818943,
- 0.061571937054395676,
- 0.0016939050983637571,
- 0.05555594339966774,
- -0.03203187510371208,
- 0.06984256207942963,
- -0.017584579065442085,
- 0.00438845157623291,
- 0.05530769005417824,
- -0.04560219123959541,
- 0.03329095616936684,
- 0.05430803820490837,
- 0.07026340812444687,
- -0.013979928568005562,
- -0.02835722453892231,
- 0.013316876254975796,
- -0.05636797472834587,
- 0.0015507013304159045,
- 0.07541809231042862,
- -0.017466329038143158,
- 0.09030403196811676,
- -0.0175164844840765,
- -0.038673318922519684,
- -0.061465729027986526,
- 0.021440599113702774,
- 0.05624490603804588,
- 0.016299709677696228,
- 0.14088071882724762,
- -0.0030004093423485756,
- -0.056508246809244156,
- 0.025147777050733566,
- 0.08911090344190598,
- -0.023125724866986275,
- -0.09566964954137802,
- -0.00334885623306036,
- -0.018856726586818695,
- -0.02589774690568447,
- -0.0115745197981596,
- 0.022734301164746284,
- -0.061515599489212036,
- 0.022318560630083084,
- -0.009556601755321026,
- -0.035307060927152634,
- 0.025372596457600594,
- 0.06328184902667999,
- -0.027522655203938484,
- 0.0354122556746006,
- -0.0032045627012848854,
- 0.07532092928886414,
- -0.0434705950319767,
- -0.025976596400141716,
- 0.00816603098064661,
- 0.0472421832382679,
- 0.005981175694614649,
- 2.3018216300405174e-33,
- -0.07899492979049683,
- -0.042915213853120804,
- -0.077995166182518,
- 0.04443688690662384,
- 0.02868979424238205,
- 0.002595864236354828,
- 0.0248760636895895,
- 0.030442150309681892,
- 0.023204563185572624,
- 0.059820856899023056,
- 0.01963774673640728,
- -0.004520314279943705,
- -0.02617144212126732,
- 0.029193555936217308,
- 0.018057607114315033,
- -0.03287816792726517,
- -0.019824879243969917,
- -0.04456276074051857,
- -0.04772455245256424,
- -0.022155364975333214,
- -0.023552298545837402,
- 0.017475131899118423,
- -0.025679726153612137,
- -0.044459033757448196,
- 0.028715359047055244,
- 0.014540622942149639,
- 0.022657891735434532,
- 0.0019119506468996406,
- 0.0014536514645442367,
- 0.00042468731408007443,
- 0.09318649768829346,
- 0.02960698865354061,
- -0.0862383097410202,
- -0.010263647884130478,
- 0.006435884162783623,
- -0.016099100932478905,
- 0.008743957616388798,
- -0.0432065986096859,
- 0.00035931190359406173,
- 0.027544546872377396,
- 0.07074638456106186,
- -0.01701165921986103,
- 0.028940964490175247,
- -0.007385437376797199,
- -0.012814002111554146,
- 0.01849646307528019,
- 0.03899284824728966,
- -0.0012547362130135298,
- 0.018741261214017868,
- -0.09300652891397476,
- -0.009922090917825699,
- 0.007218844257295132,
- 0.03559468686580658,
- -0.09401549398899078,
- 0.0027368722949177027,
- 0.005697772838175297,
- 0.03643988445401192,
- -0.054773300886154175,
- 0.008763518184423447,
- -0.008396835066378117,
- -0.01851470023393631,
- 0.025214187800884247,
- 0.12660452723503113,
- 0.01241398137062788,
- -0.1059526577591896,
- 0.05681103095412254,
- 0.010068850591778755,
- 0.019332261756062508,
- -0.06065325066447258,
- -0.04116085171699524,
- 0.054053403437137604,
- -0.007621373049914837,
- -0.07286122441291809,
- 0.0047563170082867146,
- -0.08816693723201752,
- -0.05123008042573929,
- -0.08567165583372116,
- -0.07140365988016129,
- -0.06214950606226921,
- -0.051763419061899185,
- 0.001243965933099389,
- -0.03781190514564514,
- 0.019404608756303787,
- 0.05440622940659523,
- -0.07515525072813034,
- 0.03204670920968056,
- 0.017420824617147446,
- -0.031102553009986877,
- -0.008436071686446667,
- -0.07431773096323013,
- -0.08324029296636581,
- 0.11614303290843964,
- -0.040029071271419525,
- -0.04859884828329086,
- -0.03273465111851692,
- -1.2866751220030892e-8,
- -0.012593334540724754,
- 0.005362567491829395,
- -0.06354904174804688,
- -0.025184502825140953,
- 0.0034704641439020634,
- 0.07523393630981445,
- -0.07569223642349243,
- 0.026473332196474075,
- -0.00012888973287772387,
- 0.056327540427446365,
- 0.015513616614043713,
- -0.05394291877746582,
- -0.03809116780757904,
- 0.05624409019947052,
- 0.11532261967658997,
- 0.019379740580916405,
- 0.0295480415225029,
- 0.07633695751428604,
- -0.0507160909473896,
- -0.08562782406806946,
- 0.07516518980264664,
- 0.07061256468296051,
- 0.023823317140340805,
- 0.027288351207971573,
- -0.025283271446824074,
- -0.0520298071205616,
- 0.03330967575311661,
- 0.06765357404947281,
- -0.02742251567542553,
- 0.02907775528728962,
- 0.0049423216842114925,
- 0.10786896198987961,
- -0.013127382844686508,
- -0.01937805488705635,
- 0.09957732260227203,
- -0.038252510130405426,
- 0.10007143020629883,
- -0.018237436190247536,
- 0.009785392321646214,
- 0.07562603801488876,
- -0.06591639667749405,
- 0.06214467063546181,
- 0.06325758993625641,
- 0.010994761250913143,
- -0.05086769908666611,
- -0.016587935388088226,
- 0.031127311289310455,
- -0.052892882376909256,
- 0.026648513972759247,
- -0.05544169992208481,
- 0.03332211822271347,
- -0.013423828408122063,
- -0.02690301276743412,
- 0.005550181493163109,
- 0.04510229453444481,
- 0.01937507465481758,
- -0.04829808324575424,
- -0.07737132906913757,
- -0.11980094015598297,
- 0.011869877576828003,
- -0.01848040148615837,
- -0.0035485089756548405,
- 0.08262950927019119,
- 0.019541069865226746
- ]
- },
- {
- "keyword": "web developer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.050359178334474564,
- -0.028620604425668716,
- -0.016553135588765144,
- 0.04608367383480072,
- -0.010778285562992096,
- -0.09774206578731537,
- 0.09655079245567322,
- -0.004241942428052425,
- -0.07368776202201843,
- 0.002458370989188552,
- -0.008185671642422676,
- -0.05288635194301605,
- -0.0007110225851647556,
- -0.041048143059015274,
- 0.009443653747439384,
- 0.06383465975522995,
- -0.0724015161395073,
- -0.05077359825372696,
- 0.012306737713515759,
- -0.09536798298358917,
- -0.02617117390036583,
- -0.01311962679028511,
- -0.02066720463335514,
- -0.05657819285988808,
- 0.07380148023366928,
- 0.06646563857793808,
- 0.03291408717632294,
- 0.013394893147051334,
- 0.09137880057096481,
- -0.10380055755376816,
- -0.05589117482304573,
- -0.011134373024106026,
- 0.007989316247403622,
- 0.046507854014635086,
- -0.036421384662389755,
- 0.06983164697885513,
- 0.015443447977304459,
- -0.022225363180041313,
- 0.02695588581264019,
- 0.026950767263770103,
- -0.08132563531398773,
- -0.017573019489645958,
- -0.001521715777926147,
- -0.03836045786738396,
- -0.027916310355067253,
- -0.08676400035619736,
- -0.01790563575923443,
- -0.01828768663108349,
- -0.06660477817058563,
- -0.014511007815599442,
- -0.00326326210051775,
- -0.10989943146705627,
- -0.021725047379732132,
- -0.024527760222554207,
- -0.03195265680551529,
- -0.04681168869137764,
- 0.0562787801027298,
- -0.005855298135429621,
- 0.028791267424821854,
- -0.02565452829003334,
- 0.0445224903523922,
- 0.005570469424128532,
- 0.04765913635492325,
- 0.019575506448745728,
- 0.08317375928163528,
- -0.00189865380525589,
- 0.005037741735577583,
- 0.019404206424951553,
- -0.022705988958477974,
- -0.07571671158075333,
- -0.10365693271160126,
- -0.039807453751564026,
- -0.07242678105831146,
- 0.1007758229970932,
- 0.07316823303699493,
- -0.10944484174251556,
- 0.06239577755331993,
- 0.010619418695569038,
- 0.06817696988582611,
- 0.05905335023999214,
- 0.05392454192042351,
- 0.001514998497441411,
- -0.023372670635581017,
- 0.1117667630314827,
- 0.0012860908173024654,
- 0.014399365521967411,
- 0.04001099616289139,
- 0.11128854751586914,
- 0.0314360149204731,
- -0.027933795005083084,
- 0.01738407090306282,
- -0.09067089110612869,
- 0.03798232600092888,
- 0.07712670415639877,
- -0.08136513084173203,
- -0.014342070557177067,
- 0.07843893766403198,
- -0.039011575281620026,
- -0.05236029252409935,
- 0.1616973578929901,
- -0.013772211037576199,
- -0.08124265819787979,
- -0.0072472961619496346,
- -0.02752579189836979,
- -0.021142639219760895,
- 0.05711206793785095,
- 0.0018312445608898997,
- 0.080767922103405,
- -0.00016341722221113741,
- -0.017239350825548172,
- -0.07739444077014923,
- 0.032012004405260086,
- -0.07821355015039444,
- 0.01708936132490635,
- 0.021993758156895638,
- 0.015634309500455856,
- -0.05083712935447693,
- 0.0709281712770462,
- 0.03985416889190674,
- 0.05908830463886261,
- 0.024120787158608437,
- 0.1628393977880478,
- -0.0926382839679718,
- 0.02032533660531044,
- 0.0016739158891141415,
- -0.061179615557193756,
- 0.008251238614320755,
- -2.756944022662121e-33,
- 0.11376430839300156,
- 0.029941827058792114,
- -0.07462140917778015,
- 0.0100523941218853,
- 0.12809717655181885,
- -0.043652720749378204,
- 0.0805194303393364,
- 0.0824325904250145,
- -0.03280787169933319,
- -0.0076838526874780655,
- 0.07951150089502335,
- -0.0012352867051959038,
- 0.0006279316730797291,
- 0.04139941558241844,
- 0.03433362394571304,
- 0.0029175064992159605,
- 0.03980695456266403,
- -0.015511239878833294,
- 0.00746347988024354,
- -0.05493517220020294,
- -0.08135614544153214,
- -0.024023357778787613,
- 0.005746009293943644,
- 0.0639658272266388,
- -0.030248360708355904,
- 0.01516291219741106,
- -0.03437737375497818,
- 0.11669892072677612,
- 0.021953944116830826,
- 0.013458868488669395,
- 0.03574462607502937,
- -0.018762247636914253,
- -0.046674396842718124,
- 0.023061085492372513,
- 0.03434139862656593,
- 0.009626693092286587,
- -0.010665430687367916,
- -0.07628180086612701,
- 0.01087410468608141,
- 0.033091332763433456,
- -0.12775325775146484,
- 0.028504418209195137,
- 0.04518016427755356,
- 0.009970881044864655,
- -0.02047353982925415,
- -0.03497324511408806,
- 0.013883479870855808,
- -0.05616829916834831,
- 0.00608091102913022,
- 0.014771942980587482,
- -0.08801750093698502,
- 0.044357702136039734,
- 0.04504114389419556,
- 0.08578427881002426,
- 0.005493482109159231,
- -0.01057631615549326,
- 0.060745108872652054,
- -0.047185737639665604,
- -0.01303623616695404,
- 0.08387716114521027,
- -0.02515464834868908,
- 0.07340957224369049,
- -0.09483423829078674,
- -0.01684766821563244,
- -0.07731945812702179,
- 0.009025083854794502,
- 0.04825684800744057,
- 0.015890851616859436,
- 0.07488846033811569,
- -0.06408900022506714,
- -0.031653933227062225,
- 0.03733918443322182,
- 0.13004525005817413,
- -0.025686491280794144,
- -0.08579447120428085,
- 0.030693216249346733,
- -0.0005658426671288908,
- -0.03301714360713959,
- -0.0020989887416362762,
- 0.04482504352927208,
- 0.032529428601264954,
- 0.03150917962193489,
- 0.00402641948312521,
- -0.026220574975013733,
- 0.0010869239922612906,
- 0.009158778935670853,
- -0.03126908838748932,
- 0.01652744971215725,
- 0.0003034906985703856,
- 0.07580187171697617,
- -0.030614618211984634,
- -0.0037176671903580427,
- 0.037104517221450806,
- 0.005546955857425928,
- 0.0341019369661808,
- 1.453543213171899e-33,
- -0.09328112006187439,
- 0.0014010570012032986,
- -0.08249791711568832,
- 0.059968117624521255,
- 0.044535744935274124,
- 0.008199458941817284,
- 0.05234697833657265,
- 0.008208396844565868,
- 0.008837370201945305,
- 0.02122759446501732,
- 0.052225448191165924,
- -0.008149605244398117,
- -0.0646493136882782,
- 0.07139362394809723,
- 0.011005563661456108,
- 0.020112352445721626,
- -0.07060796767473221,
- -0.08126811683177948,
- -0.002496166853234172,
- -0.01769343391060829,
- 0.023260897025465965,
- 0.00017271997057832778,
- -0.04934260621666908,
- -0.024898426607251167,
- 0.034732386469841,
- 0.006528354715555906,
- -0.007389029022306204,
- -0.0037577664479613304,
- -0.036513932049274445,
- 0.015441999770700932,
- 0.06275416910648346,
- -0.013249097391963005,
- -0.009983621537685394,
- -0.004527692217379808,
- -0.013953056186437607,
- -0.039603833109140396,
- -0.03749774768948555,
- -0.0037259182427078485,
- 0.01215827465057373,
- 0.036063920706510544,
- 0.016329364851117134,
- -0.004386361688375473,
- 0.0722455382347107,
- 0.0028255905490368605,
- -0.04102875292301178,
- 0.05137571319937706,
- -0.01630428433418274,
- 0.021278219297528267,
- 0.0037697860971093178,
- -0.06293533742427826,
- -0.015003092586994171,
- 0.04387087747454643,
- 0.0295658390969038,
- -0.12078991532325745,
- -0.008375177159905434,
- -0.0019908531103283167,
- -0.007512414362281561,
- -0.05014956369996071,
- -0.031953856348991394,
- 0.0323643833398819,
- -0.009281706996262074,
- 0.03848126903176308,
- 0.1006055399775505,
- 0.07134737819433212,
- -0.06537219136953354,
- 0.014152690768241882,
- -0.07155022770166397,
- 0.0867236852645874,
- -0.05489707365632057,
- -0.037673912942409515,
- -0.009873082861304283,
- 0.03328803926706314,
- -0.021416764706373215,
- -0.05667906999588013,
- -0.07078162580728531,
- -0.07964523136615753,
- -0.0773821622133255,
- -0.017812103033065796,
- -0.022190455347299576,
- 0.011712499894201756,
- -0.011499160900712013,
- 0.011636595241725445,
- 0.021166255697607994,
- 0.004180053249001503,
- -0.025047633796930313,
- 0.02333100512623787,
- -0.00278651830740273,
- -0.04032111167907715,
- -0.01700497232377529,
- -0.12454423308372498,
- -0.057228703051805496,
- 0.06606152653694153,
- -0.06302490085363388,
- -0.030198365449905396,
- -0.010708579793572426,
- -1.2241907043630817e-8,
- -0.032857246696949005,
- -0.008815537206828594,
- -0.06354139745235443,
- -0.05307245999574661,
- 0.021331625059247017,
- 0.06551416963338852,
- -0.0054947263561189175,
- -0.008410354144871235,
- -0.01973615400493145,
- 0.026254840195178986,
- 0.02394058369100094,
- 0.007504775654524565,
- 0.011104142293334007,
- 0.09432289749383926,
- 0.0665464922785759,
- -0.03828280791640282,
- 0.0434977263212204,
- 0.02195633016526699,
- -0.0016579905059188604,
- -0.08139697462320328,
- 0.10740694403648376,
- 0.0007423849892802536,
- 0.020727012306451797,
- 0.03662722557783127,
- 0.044655781239271164,
- -0.011417356319725513,
- 0.025168174877762794,
- 0.07089012861251831,
- -0.08345290273427963,
- 0.012978225015103817,
- -0.047885797917842865,
- 0.0992710143327713,
- -0.02150885760784149,
- -0.0015582049963995814,
- 0.06680040806531906,
- -0.04653538390994072,
- 0.027846449986100197,
- -0.10097118467092514,
- -0.059216324239969254,
- 0.05190219730138779,
- -0.0474478155374527,
- 0.09575009346008301,
- 0.06392189115285873,
- 0.027907466515898705,
- 0.04248800128698349,
- 0.02327796444296837,
- 0.016180038452148438,
- -0.05267258360981941,
- 0.019602499902248383,
- -0.0892941802740097,
- 0.0433887280523777,
- -0.0676245391368866,
- 0.035918377339839935,
- 0.01474810391664505,
- 0.05892306566238403,
- 0.020877651870250702,
- -0.0073460787534713745,
- -0.020572518929839134,
- -0.09775061905384064,
- 0.060619667172431946,
- 0.03233508765697479,
- -0.02151934802532196,
- 0.05854058265686035,
- -0.012304265983402729
- ]
- },
- {
- "keyword": "data scientist",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.030894292518496513,
- -0.005674378015100956,
- -0.008206101134419441,
- 0.06344229727983475,
- -0.04101189598441124,
- -0.11840148270130157,
- 0.0695752203464508,
- 0.021663643419742584,
- -0.05995013937354088,
- 0.051035065203905106,
- -0.031701330095529556,
- -0.062386564910411835,
- 0.03598627820611,
- 0.005506047513335943,
- -0.074443019926548,
- 0.10235487669706345,
- -0.07118837535381317,
- -0.05324084311723709,
- -0.04830367490649223,
- -0.14928604662418365,
- -0.07603876292705536,
- -0.03139364719390869,
- -0.03750923275947571,
- -0.0410371795296669,
- 0.05977839231491089,
- 0.05967085435986519,
- 0.03764355927705765,
- 0.026014938950538635,
- -0.005657522473484278,
- -0.044932425022125244,
- -0.043400052934885025,
- 0.01905481144785881,
- 0.06273531168699265,
- 0.04753299430012703,
- -0.037796501070261,
- 0.004706014879047871,
- -0.0075295609422028065,
- 0.0409228578209877,
- 0.011912394315004349,
- 0.02260400913655758,
- -0.027248356491327286,
- -0.06336193531751633,
- 0.01485320832580328,
- 0.008862153626978397,
- -0.020254839211702347,
- -0.005646748933941126,
- 0.025666048750281334,
- -0.025209112092852592,
- -0.02916240133345127,
- 0.0523204542696476,
- -0.11220390349626541,
- -0.014125167392194271,
- -0.046436913311481476,
- -0.0039314995519816875,
- 0.006779225543141365,
- -0.018721764907240868,
- 0.08749173581600189,
- 0.03766493871808052,
- -0.04121313989162445,
- 0.02987915650010109,
- 0.008081668056547642,
- -0.054879192262887955,
- -0.11529308557510376,
- 0.010533677414059639,
- 0.1482316106557846,
- 0.015581557527184486,
- -0.0009382469579577446,
- 0.05187579244375229,
- -0.003001394448801875,
- -0.07847346365451813,
- -0.02475353702902794,
- 0.015614031814038754,
- -0.11232846230268478,
- 0.10179191082715988,
- 0.05606769770383835,
- -0.027940673753619194,
- 0.0435524620115757,
- 0.01245137583464384,
- 0.1721322387456894,
- -0.031895577907562256,
- 0.06606888771057129,
- -0.03552556410431862,
- -0.07512097805738449,
- 0.08453381061553955,
- 0.02485964447259903,
- -0.018305033445358276,
- -0.051420219242572784,
- 0.03838387876749039,
- -0.05491948872804642,
- -0.021875647827982903,
- 0.06273961067199707,
- -0.03018304333090782,
- 0.05364414304494858,
- 0.06376861780881882,
- -0.0930732935667038,
- 0.03535926714539528,
- -0.01760186068713665,
- -0.07107126712799072,
- 0.018059631809592247,
- 0.12315717339515686,
- -0.06609742343425751,
- 0.016161318868398666,
- 0.013964453712105751,
- 0.07410203665494919,
- -0.016372885555028915,
- -0.06540801376104355,
- 0.06394415348768234,
- -0.04982530325651169,
- 0.005296344868838787,
- -0.0006345396977849305,
- -0.019282275810837746,
- 0.05933356657624245,
- -0.04291660711169243,
- 0.0013938418123871088,
- -0.008853253908455372,
- -0.04052143543958664,
- -0.09499731659889221,
- 0.08908286690711975,
- -0.0163633543998003,
- 0.03248097375035286,
- -0.0688626691699028,
- 0.034633468836545944,
- -0.07142700254917145,
- -0.017912689596414566,
- -0.0018057423876598477,
- -0.03434585779905319,
- -0.07849356532096863,
- -1.2396526488191756e-33,
- -0.009206244722008705,
- 0.005567557644098997,
- 0.058741115033626556,
- 0.01747509092092514,
- 0.026214340701699257,
- -0.0712965801358223,
- -0.06291058659553528,
- -0.02662663720548153,
- -0.023828662931919098,
- 0.0606047548353672,
- -0.025423679500818253,
- 0.061547230929136276,
- -0.029873307794332504,
- 0.03148563206195831,
- 0.035287659615278244,
- 0.03304428607225418,
- -0.008687827736139297,
- 0.08088472485542297,
- -0.053472165018320084,
- -0.016561802476644516,
- 0.036515019834041595,
- -0.003623159369453788,
- 0.03349469229578972,
- 0.008683159947395325,
- 0.07801877707242966,
- 0.0016106105176731944,
- -0.009000991471111774,
- -0.015624860301613808,
- 0.09420660883188248,
- 0.0017562141874805093,
- -0.012448479421436787,
- 0.0026196239050477743,
- -0.0013346512569114566,
- -0.029667304828763008,
- 0.07117792963981628,
- -0.022685356438159943,
- -0.03696299344301224,
- -0.07013870775699615,
- 0.07457122951745987,
- 0.02070820890367031,
- -0.036351606249809265,
- 0.012743758037686348,
- 0.06439701467752457,
- 0.018984386697411537,
- -0.042114175856113434,
- 0.009607631713151932,
- 0.08871632814407349,
- -0.008668968454003334,
- 0.022976567968726158,
- 0.0017623573075979948,
- -0.03380569443106651,
- -0.023058461025357246,
- 0.01716466434299946,
- 0.021755896508693695,
- 0.0505649670958519,
- 0.06884633749723434,
- 0.030560849234461784,
- -0.12215965986251831,
- 0.025539088994264603,
- 0.04744846746325493,
- -0.051604073494672775,
- 0.09264705330133438,
- 0.0013347462518140674,
- 0.004025102127343416,
- -0.03248985856771469,
- 0.03606415167450905,
- 0.002365521155297756,
- -0.024725189432501793,
- 0.1590924859046936,
- 0.021600496023893356,
- -0.029680944979190826,
- 0.028725093230605125,
- 0.056748852133750916,
- -0.04572572559118271,
- -0.005716580897569656,
- 0.01776064932346344,
- -0.03410787507891655,
- -0.030736416578292847,
- -0.03817250207066536,
- 0.036308836191892624,
- -0.04174016788601875,
- -0.030044948682188988,
- 0.03493987396359444,
- -0.03676481172442436,
- -0.015704577788710594,
- 0.05957498401403427,
- -0.02280852571129799,
- -0.04136411100625992,
- 0.006669109687209129,
- 0.040155939757823944,
- -0.06997569650411606,
- 0.008120493963360786,
- -0.010812077671289444,
- 0.021985318511724472,
- -0.031030183658003807,
- 1.1287654198057284e-33,
- -0.10097135603427887,
- -0.02218770608305931,
- 0.0019286940805613995,
- 0.10212793946266174,
- 0.09476801007986069,
- -0.010366358794271946,
- 0.028118371963500977,
- -0.07426044344902039,
- 0.08200012147426605,
- 0.05653619021177292,
- 0.011927508749067783,
- -0.004876133054494858,
- 0.03728891536593437,
- -0.005352393724024296,
- 0.02905345894396305,
- 0.04470100253820419,
- -0.023251771926879883,
- -0.0604485385119915,
- -0.09916564077138901,
- 0.02413087897002697,
- -0.04382443055510521,
- 0.05006187781691551,
- -0.08248580247163773,
- -0.061189863830804825,
- 0.01730854995548725,
- -0.026772860437631607,
- 0.06193207949399948,
- -0.05511755123734474,
- 0.024926673620939255,
- 0.009976474568247795,
- 0.010622799396514893,
- -0.060692258179187775,
- -0.002235984895378351,
- -0.05334432050585747,
- -0.013258479535579681,
- 0.026716087013483047,
- 0.07538147270679474,
- -0.026879899203777313,
- -0.01940152980387211,
- 0.02069777622818947,
- 0.040018822997808456,
- 0.07114022225141525,
- -0.05125180259346962,
- 0.02001449093222618,
- 0.052922993898391724,
- -0.017673775553703308,
- 0.006822608876973391,
- 0.08339928835630417,
- 0.016360167413949966,
- -0.04526805877685547,
- -0.02055383287370205,
- 0.03217758610844612,
- 0.02073836326599121,
- -0.03120511956512928,
- 0.04015083611011505,
- 0.008912868797779083,
- 0.020725594833493233,
- -0.018298454582691193,
- -0.043050143867731094,
- 0.06501521915197372,
- -0.021705936640501022,
- -0.04186096414923668,
- 0.06540530174970627,
- 0.06438856571912766,
- -0.07456949353218079,
- -0.015445632860064507,
- 0.006438811309635639,
- -0.010754312388598919,
- -0.06529541313648224,
- -0.04680124670267105,
- 0.11198413372039795,
- 0.012963715009391308,
- 0.015146862715482712,
- -0.015987487509846687,
- -0.05290181562304497,
- -0.022880729287862778,
- -0.11969199776649475,
- -0.0031715158838778734,
- -0.031092744320631027,
- 0.054371580481529236,
- -0.02242104709148407,
- -0.06478512287139893,
- 0.004873833619058132,
- 0.07413972914218903,
- -0.001813067588955164,
- 0.04361825808882713,
- 0.03192933648824692,
- -0.07817164808511734,
- -0.048170868307352066,
- -0.09198183566331863,
- -0.09328346699476242,
- -0.06036851927638054,
- -0.12118080258369446,
- 0.04236626625061035,
- 0.00871468149125576,
- -1.310743780180701e-8,
- 0.015267127193510532,
- -0.07350567728281021,
- 0.022722743451595306,
- -0.060723766684532166,
- 0.04890188202261925,
- 0.030969705432653427,
- -0.06995611637830734,
- 0.0760597512125969,
- -0.00309739843942225,
- 0.06006976589560509,
- 0.09497247636318207,
- 0.013539718464016914,
- -0.023534204810857773,
- 0.01797991432249546,
- 0.059431590139865875,
- 0.006491237785667181,
- 0.10832897573709488,
- -0.022772081196308136,
- -0.029682202264666557,
- 0.0395667739212513,
- 0.08015592396259308,
- 0.06545398384332657,
- -0.013364936225116253,
- 0.026257649064064026,
- 0.053739406168460846,
- -0.029065921902656555,
- -0.017985226586461067,
- 0.07070444524288177,
- -0.03396587818861008,
- 0.03339768946170807,
- -0.004056127276271582,
- -0.005060628056526184,
- 0.04853668063879013,
- -0.04774919152259827,
- 0.058029767125844955,
- -0.022136438637971878,
- 0.094136543571949,
- 0.02010325901210308,
- -0.02374243177473545,
- 0.026620615273714066,
- -0.05739172548055649,
- 0.10052939504384995,
- -0.025090977549552917,
- 0.07981116324663162,
- 0.02887915074825287,
- 0.02737908810377121,
- 0.012187158688902855,
- 0.029807336628437042,
- 0.04010101780295372,
- 0.007057629060000181,
- -0.006742219440639019,
- -0.0007589844753965735,
- 0.00937037356197834,
- 0.04741668701171875,
- 0.09594717621803284,
- 0.0140633974224329,
- -0.00792224332690239,
- 0.009971583262085915,
- -0.08641362935304642,
- 0.07538430392742157,
- 0.04690121114253998,
- -0.05233505740761757,
- 0.009081561118364334,
- -0.041702751070261
- ]
- },
- {
- "keyword": "data engineer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.058599017560482025,
- 0.017785020172595978,
- 0.01617029495537281,
- 0.03642550855875015,
- -0.0723157748579979,
- -0.1718578338623047,
- 0.0921780988574028,
- -0.0026326291263103485,
- -0.0713312178850174,
- -0.010846836492419243,
- -0.020811688154935837,
- -0.10221562534570694,
- 0.06947655975818634,
- -0.043288227170705795,
- -0.06577280908823013,
- 0.06705628335475922,
- -0.024388795718550682,
- -0.07546039670705795,
- -0.018337702378630638,
- -0.14167742431163788,
- -0.008108176290988922,
- -0.023963643237948418,
- -0.05089558660984039,
- -0.057840537279844284,
- 0.03850356489419937,
- 0.07310891151428223,
- 0.10513324290513992,
- -0.0005286061204969883,
- 0.040571749210357666,
- -0.07114169746637344,
- -0.0677369013428688,
- -0.003941793460398912,
- 0.03384414687752724,
- 0.09779009968042374,
- -0.00556072685867548,
- 0.030724499374628067,
- 0.02229250594973564,
- -0.012692430056631565,
- 0.02540852688252926,
- 0.011982783675193787,
- -0.0583573542535305,
- -0.043249890208244324,
- 0.010432260110974312,
- -0.04707193747162819,
- -0.00009404776938026771,
- -0.0078053721226751804,
- 0.03202938288450241,
- -0.09504178911447525,
- -0.009938390925526619,
- 0.005945916287600994,
- -0.05442514643073082,
- -0.02663886919617653,
- -0.014898362569510937,
- -0.016002682968974113,
- 0.026804177090525627,
- 0.009228622540831566,
- 0.07805684953927994,
- 0.03033800795674324,
- -0.04446026682853699,
- 0.014740471728146076,
- 0.0063626873306930065,
- -0.018723106011748314,
- -0.03542175889015198,
- 0.044188592582941055,
- 0.07277705520391464,
- -0.012945993803441525,
- -0.043124452233314514,
- 0.05100051686167717,
- 0.03183204308152199,
- -0.11358846724033356,
- -0.03763662651181221,
- -0.030829764902591705,
- -0.06383845210075378,
- 0.03763092681765556,
- 0.06507525593042374,
- -0.01215726975351572,
- 0.03318255767226219,
- -0.024607157334685326,
- 0.13843797147274017,
- -0.0314144603908062,
- 0.0008119546109810472,
- -0.02820742130279541,
- -0.11553537100553513,
- 0.09263239055871964,
- 0.019685866311192513,
- -0.014912172220647335,
- -0.0219388697296381,
- 0.07439056038856506,
- -0.042126577347517014,
- -0.011426175944507122,
- 0.07066445052623749,
- -0.01943756453692913,
- 0.004003413487225771,
- 0.10884790867567062,
- -0.05479073151946068,
- 0.006382828112691641,
- 0.019376887008547783,
- -0.07165401428937912,
- -0.017450431361794472,
- 0.12066426128149033,
- -0.038410115987062454,
- 0.044152967631816864,
- 0.002871800446882844,
- 0.06967596709728241,
- -0.09229111671447754,
- -0.0536007434129715,
- 0.02262185327708721,
- 0.0003722002438735217,
- -0.023320838809013367,
- -0.045874230563640594,
- -0.05525141581892967,
- 0.05860467255115509,
- -0.05912195146083832,
- 0.0016704641748219728,
- -0.015854015946388245,
- -0.05924998223781586,
- -0.10608125478029251,
- 0.07554295659065247,
- -0.0290481299161911,
- 0.021442869678139687,
- -0.0465855747461319,
- 0.01595907285809517,
- -0.11209739744663239,
- 0.010841562412679195,
- -0.040595363825559616,
- -0.049940552562475204,
- -0.046435896307229996,
- -1.3743908418817995e-33,
- -0.002030890202149749,
- -0.021962562575936317,
- 0.012150386348366737,
- -0.00818962138146162,
- 0.04754161834716797,
- -0.07073908299207687,
- -0.019114773720502853,
- 0.050326231867074966,
- 0.018608959391713142,
- 0.0680222436785698,
- -0.007913034409284592,
- 0.029713274911046028,
- -0.0752909705042839,
- 0.024924971163272858,
- 0.07875629514455795,
- 0.005140136927366257,
- -0.024379214271903038,
- 0.11749595403671265,
- -0.040034323930740356,
- -0.0017676434945315123,
- 0.03443894162774086,
- -0.043371450155973434,
- 0.03852107375860214,
- 0.03403043746948242,
- 0.08214154094457626,
- 0.01803414337337017,
- 0.006491207983344793,
- -0.010770376771688461,
- 0.06431639939546585,
- 0.020532511174678802,
- -0.04286095127463341,
- -0.009667524136602879,
- 0.009841620922088623,
- 0.017506562173366547,
- 0.02015078067779541,
- 0.008404538035392761,
- -0.031964659690856934,
- -0.07207699120044708,
- 0.050026651471853256,
- 0.05371043458580971,
- -0.032990291714668274,
- 0.022351816296577454,
- 0.12793152034282684,
- -0.020816393196582794,
- 0.00013324905012268573,
- 0.014098367653787136,
- 0.09182247519493103,
- -0.003070106031373143,
- 0.051813799887895584,
- -0.004319356754422188,
- -0.017680497840046883,
- -0.0046256487257778645,
- 0.08459025621414185,
- 0.03275860473513603,
- 0.10391326248645782,
- 0.0351676270365715,
- 0.03736244514584541,
- -0.06212935224175453,
- 0.02820967324078083,
- 0.1352892816066742,
- -0.10055762529373169,
- 0.10105196386575699,
- -0.016609912738204002,
- 0.01873304322361946,
- -0.012924288399517536,
- 0.010608469136059284,
- 0.03770370036363602,
- -0.01587042585015297,
- 0.10907834768295288,
- 0.006863925140351057,
- -0.09877850115299225,
- 0.03985346481204033,
- 0.08936230093240738,
- -0.029365353286266327,
- 0.008719206787645817,
- 0.0006506069912575185,
- -0.05351002514362335,
- 0.010454114526510239,
- -0.028759218752384186,
- 0.016241157427430153,
- -0.0286529790610075,
- 0.022111967206001282,
- -0.0011418040376156569,
- -0.03277253359556198,
- 0.05688762292265892,
- 0.05883200839161873,
- -0.027931131422519684,
- -0.02737170271575451,
- -0.013207348994910717,
- 0.04996923729777336,
- -0.07778050005435944,
- -0.013294249773025513,
- 0.008732384070754051,
- 0.03084145300090313,
- -0.0011709865648299456,
- 7.104356330228775e-34,
- -0.10147270560264587,
- 0.008706629276275635,
- -0.027471549808979034,
- 0.03171775862574577,
- 0.09245675802230835,
- 0.004762543831020594,
- 0.07179421931505203,
- -0.022753749042749405,
- 0.07617165148258209,
- 0.04368239641189575,
- -0.0030353455804288387,
- 0.002946155145764351,
- 0.04160686209797859,
- -0.01237326581031084,
- -0.009442953392863274,
- 0.04904033988714218,
- -0.031267378479242325,
- -0.0952177494764328,
- -0.10899101197719574,
- 0.009285454638302326,
- -0.024813620373606682,
- 0.05253813415765762,
- -0.07544300705194473,
- -0.0687723457813263,
- 0.056450825184583664,
- 0.007644076365977526,
- 0.015697570517659187,
- 0.004016570746898651,
- 0.016117889434099197,
- 0.026574496179819107,
- 0.01576823927462101,
- -0.009556669741868973,
- -0.003921112976968288,
- -0.015892663970589638,
- -0.026531478390097618,
- -0.039500538259744644,
- 0.08034534752368927,
- 0.01795249804854393,
- 0.006358271464705467,
- 0.03769933804869652,
- 0.034229669719934464,
- 0.04921109229326248,
- -0.0004139127559028566,
- 0.02312522567808628,
- 0.002235997933894396,
- 0.025741664692759514,
- 0.01934261992573738,
- 0.05653245747089386,
- -0.007346585858613253,
- -0.052798155695199966,
- -0.002065252047032118,
- 0.043190617114305496,
- 0.04154980182647705,
- -0.04978277161717415,
- 0.04790324345231056,
- -0.01831880584359169,
- 0.00044703949242830276,
- -0.025696922093629837,
- -0.055478285998106,
- -0.021100930869579315,
- -0.0026566111482679844,
- -0.009524048306047916,
- 0.13361328840255737,
- 0.07083004713058472,
- -0.10115458071231842,
- 0.02958846092224121,
- 0.04366518184542656,
- -0.012425988912582397,
- -0.10714904218912125,
- -0.029936471953988075,
- 0.09353680908679962,
- 0.026976197957992554,
- -0.003193530486896634,
- -0.01828923635184765,
- -0.012659736908972263,
- -0.08336028456687927,
- -0.11145342886447906,
- -0.010956949554383755,
- -0.008596576750278473,
- 0.06646215170621872,
- 0.015922844409942627,
- -0.01570013165473938,
- -0.022269010543823242,
- 0.09724561125040054,
- 0.02816767804324627,
- 0.00007629342871950939,
- -0.01857147365808487,
- -0.050516899675130844,
- 0.04506157338619232,
- -0.08623463660478592,
- -0.12041132152080536,
- -0.025250308215618134,
- -0.09787754714488983,
- 0.012518027797341347,
- -0.015242477878928185,
- -1.2593288190032581e-8,
- -0.010906284675002098,
- -0.08389193564653397,
- -0.0010350911179557443,
- -0.07544193416833878,
- 0.023139027878642082,
- 0.030611056834459305,
- -0.09031105041503906,
- 0.043221380561590195,
- -0.005607940722256899,
- -0.05088307335972786,
- 0.07388704270124435,
- -0.012042193673551083,
- -0.01187752466648817,
- 0.01848321594297886,
- 0.0799889788031578,
- -0.011061947792768478,
- 0.09533022344112396,
- -0.03553331643342972,
- -0.0059105525724589825,
- -0.04896469786763191,
- 0.05373253673315048,
- 0.043898262083530426,
- -0.005433780141174793,
- 0.06146850809454918,
- 0.05759231746196747,
- -0.005802554078400135,
- -0.010260420851409435,
- -0.020922856405377388,
- -0.029137521982192993,
- 0.0026914009358733892,
- 0.0007474066223949194,
- -0.029814328998327255,
- 0.052913032472133636,
- -0.021015582606196404,
- 0.06591691076755524,
- -0.042155586183071136,
- 0.09913764894008636,
- 0.015155707485973835,
- -0.0018325512064620852,
- 0.04162381961941719,
- -0.024742936715483665,
- 0.05754696577787399,
- -0.011617513373494148,
- 0.024425510317087173,
- 0.041162729263305664,
- 0.02502663992345333,
- -0.04628591239452362,
- 0.013606990687549114,
- 0.03414923697710037,
- -0.0032614353112876415,
- -0.013634487055242062,
- -0.020375000312924385,
- -0.02754347026348114,
- 0.060574982315301895,
- 0.04272541403770447,
- 0.015413185581564903,
- -0.02287137508392334,
- -0.03879629820585251,
- -0.10310889035463333,
- 0.06438533961772919,
- 0.03771437332034111,
- 0.005003688856959343,
- 0.025387069210410118,
- -0.03792297840118408
- ]
- },
- {
- "keyword": "machine learning engineer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07407133281230927,
- -0.03913813829421997,
- 0.06085118651390076,
- 0.0404101237654686,
- -0.015597508288919926,
- -0.11263325065374374,
- 0.055879298597574234,
- -0.02137969620525837,
- -0.0678408294916153,
- -0.04843701794743538,
- -0.09239623695611954,
- -0.08859631419181824,
- -0.05213724076747894,
- -0.03180951625108719,
- -0.10748644173145294,
- 0.08642209321260452,
- -0.04357697069644928,
- -0.003759737592190504,
- -0.030991418287158012,
- -0.14691701531410217,
- 0.029848258942365646,
- -0.002856971463188529,
- -0.03249004855751991,
- -0.0091329300776124,
- 0.030094482004642487,
- 0.019362440332770348,
- 0.07640703022480011,
- 0.03448828309774399,
- 0.040580786764621735,
- -0.04007269814610481,
- -0.025502825155854225,
- -0.03577033057808876,
- 0.01770111359655857,
- 0.06784687936306,
- -0.03246162459254265,
- 0.08749165385961533,
- -0.005304037127643824,
- -0.022255638614296913,
- 0.06027987599372864,
- -0.008228170685470104,
- -0.03625340387225151,
- -0.0441308319568634,
- 0.018784675747156143,
- -0.056687310338020325,
- 0.06376809626817703,
- 0.05658954754471779,
- 0.03419417142868042,
- -0.10573361068964005,
- 0.014207500964403152,
- -0.026036689057946205,
- -0.0407400019466877,
- -0.0556170679628849,
- -0.02758948877453804,
- -0.05800073593854904,
- -0.014180068857967854,
- 0.03923096880316734,
- 0.08254282176494598,
- 0.018480049446225166,
- -0.0159212164580822,
- -0.0014139164704829454,
- -0.024289140477776527,
- -0.05808287486433983,
- -0.08748545497655869,
- 0.036985963582992554,
- 0.0680771991610527,
- -0.028171319514513016,
- -0.04632023349404335,
- 0.06938993185758591,
- 0.015126961283385754,
- -0.0942787155508995,
- 0.022664712741971016,
- 0.01633404567837715,
- -0.033477045595645905,
- 0.020061176270246506,
- 0.06918379664421082,
- -0.03788163512945175,
- 0.05928604677319527,
- 0.01426977664232254,
- 0.1338723748922348,
- -0.003964707255363464,
- -0.0047893584705889225,
- -0.03570092096924782,
- -0.05722090229392052,
- 0.07294495403766632,
- 0.019419552758336067,
- -0.04791275039315224,
- -0.06498926877975464,
- 0.06767430901527405,
- 0.020614443346858025,
- 0.011745664291083813,
- 0.033428341150283813,
- -0.002999937627464533,
- 0.04224799573421478,
- 0.009213821962475777,
- -0.002886722330003977,
- 0.07283785939216614,
- 0.010823076590895653,
- -0.10187564790248871,
- -0.06860467791557312,
- 0.14324496686458588,
- -0.040954891592264175,
- 0.0203082337975502,
- 0.03563834726810455,
- -0.00758319953456521,
- -0.0012547167716547847,
- 0.01076195016503334,
- 0.010936068370938301,
- 0.007766644470393658,
- 0.09438550472259521,
- -0.05698070302605629,
- -0.029502177610993385,
- 0.028018388897180557,
- -0.006972791627049446,
- 0.022014645859599113,
- -0.005571263376623392,
- 0.0011357621988281608,
- -0.027223173528909683,
- 0.05208594352006912,
- -0.016038082540035248,
- 0.06171839311718941,
- -0.07897846400737762,
- -0.00003949649180867709,
- -0.06156345084309578,
- 0.027879372239112854,
- -0.04573596268892288,
- -0.015141728334128857,
- -0.048178624361753464,
- -1.2507117547730094e-33,
- -0.00047386295045726,
- -0.035645537078380585,
- 0.017164941877126694,
- -0.014531622640788555,
- 0.03201642632484436,
- -0.09345376491546631,
- 0.007065074052661657,
- 0.003550746710970998,
- 0.051347360014915466,
- 0.012546999379992485,
- 0.012198410928249359,
- 0.009492251090705395,
- -0.08555900305509567,
- 0.058775268495082855,
- 0.05370649695396423,
- -0.0043678260408341885,
- -0.040075067430734634,
- 0.07511549443006516,
- -0.047289229929447174,
- 0.006382419262081385,
- -0.010590068995952606,
- -0.06930647790431976,
- 0.007949349470436573,
- 0.044314756989479065,
- -0.007524585351347923,
- 0.023659881204366684,
- 0.06263821572065353,
- -0.0008951863273978233,
- 0.03227967768907547,
- 0.04768207669258118,
- -0.006373997312039137,
- 0.05519389361143112,
- -0.012901411391794682,
- -0.0025723660364747047,
- 0.018318839371204376,
- 0.018381500616669655,
- -0.06348708271980286,
- -0.03530853986740112,
- 0.052411697804927826,
- 0.05674949288368225,
- -0.0264094490557909,
- -0.028073901310563087,
- 0.1184854656457901,
- -0.04034552723169327,
- -0.04646071046590805,
- 0.007663176394999027,
- 0.10475704073905945,
- -0.0349082350730896,
- 0.021021753549575806,
- 0.0025767514016479254,
- -0.019755790010094643,
- -0.047573644667863846,
- 0.055549945682287216,
- -0.05833325907588005,
- 0.07835602760314941,
- 0.06790398806333542,
- 0.07059217244386673,
- -0.014299583621323109,
- -0.012685108929872513,
- 0.08422666788101196,
- -0.0021599328611046076,
- 0.10696295648813248,
- 0.005335596390068531,
- 0.05649114400148392,
- -0.03649008274078369,
- -0.006760303396731615,
- 0.04629871994256973,
- 0.05547576770186424,
- 0.0555616058409214,
- 0.01808716356754303,
- -0.07589995115995407,
- 0.007400603964924812,
- 0.08857538551092148,
- -0.07526137679815292,
- 0.02596527524292469,
- -0.010946855880320072,
- 0.006353793200105429,
- 0.005692655686289072,
- -0.022432204335927963,
- 0.04231225699186325,
- -0.05266295000910759,
- 0.057987187057733536,
- 0.010845014825463295,
- -0.0675300657749176,
- 0.06389915198087692,
- 0.027918949723243713,
- -0.013463898561894894,
- -0.0023384406231343746,
- -0.009872160851955414,
- 0.06399548798799515,
- -0.08642198145389557,
- -0.028637878596782684,
- 0.04805125296115875,
- 0.07153380662202835,
- -0.04758058860898018,
- -3.898780939648993e-34,
- -0.12484937906265259,
- 0.014833763241767883,
- -0.03474267199635506,
- 0.05761675909161568,
- 0.028945336118340492,
- -0.0068931919522583485,
- -0.026132211089134216,
- -0.013569043949246407,
- 0.04962262883782387,
- 0.10166176408529282,
- 0.0061065685003995895,
- -0.010878799483180046,
- 0.054896485060453415,
- 0.05529247969388962,
- -0.04837030917406082,
- 0.013805233873426914,
- -0.02696126140654087,
- -0.0822969451546669,
- -0.06722661852836609,
- 0.040006641298532486,
- 0.013498835265636444,
- 0.08092042803764343,
- -0.05042584612965584,
- -0.0013022443745285273,
- 0.019373521208763123,
- -0.0417548269033432,
- 0.007471790537238121,
- 0.0066320644691586494,
- -0.05351192131638527,
- -0.01728060469031334,
- 0.007490518502891064,
- -0.02292829006910324,
- -0.0373537577688694,
- 0.0021723774261772633,
- 0.03180075064301491,
- 0.000787984870839864,
- 0.031660571694374084,
- 0.0032016662880778313,
- 0.04052668809890747,
- 0.08157277852296829,
- 0.06151922792196274,
- 0.002644347958266735,
- -0.033751629292964935,
- -0.023455286398530006,
- -0.01583155430853367,
- -0.007340585347265005,
- 0.027550838887691498,
- 0.005270443856716156,
- 0.018574824556708336,
- -0.10627210885286331,
- 0.0066458904184401035,
- 0.06273666769266129,
- 0.008464980870485306,
- -0.06478793174028397,
- -0.019502265378832817,
- 0.014751901850104332,
- -0.03294002637267113,
- -0.03821563348174095,
- 0.041741080582141876,
- 0.01509618666023016,
- -0.07887473702430725,
- -0.06410375237464905,
- 0.12097964435815811,
- 0.02663567289710045,
- -0.07579351961612701,
- 0.03526122123003006,
- -0.0006595589220523834,
- 0.06083180755376816,
- -0.06969761103391647,
- -0.043018780648708344,
- 0.05088787525892258,
- 0.04222135245800018,
- -0.012255208566784859,
- 0.03503060340881348,
- -0.07594695687294006,
- -0.1117880716919899,
- -0.07719573378562927,
- -0.08475460857152939,
- -0.07177671045064926,
- -0.046652328222990036,
- 0.03779518976807594,
- -0.045348457992076874,
- -0.019560489803552628,
- 0.09342039376497269,
- 0.0024972055107355118,
- 0.033930130302906036,
- 0.022756531834602356,
- -0.012808486819267273,
- 0.04007848724722862,
- -0.10695763677358627,
- -0.031954050064086914,
- 0.06113282963633537,
- -0.08890049904584885,
- 0.031130433082580566,
- -0.05566722899675369,
- -1.495553370034486e-8,
- -0.03498044237494469,
- -0.026779869571328163,
- 0.08975376188755035,
- -0.12458974868059158,
- 0.036617107689380646,
- 0.03354835882782936,
- -0.06163012236356735,
- 0.0001138982770498842,
- -0.04057849571108818,
- -0.023954087868332863,
- 0.019418643787503242,
- -0.03131194785237312,
- -0.007380857598036528,
- 0.020434120669960976,
- 0.061195142567157745,
- 0.02652287296950817,
- 0.03294410556554794,
- 0.05840647965669632,
- -0.03755057230591774,
- -0.03728624805808067,
- 0.11547371745109558,
- 0.028239835053682327,
- 0.07562826573848724,
- 0.05535077676177025,
- 0.008364605717360973,
- -0.12250075489282608,
- -0.026953449472784996,
- -0.06929004937410355,
- 0.01374061219394207,
- 0.016518445685505867,
- -0.06798101216554642,
- 0.06554659456014633,
- 0.04207099229097366,
- -0.03651368245482445,
- 0.1004856675863266,
- 0.07508199661970139,
- 0.04299952834844589,
- -0.047541070729494095,
- -0.0007009700639173388,
- 0.07566247880458832,
- -0.0758148580789566,
- 0.08867042511701584,
- -0.024828201159834862,
- 0.003337249858304858,
- 0.02083325758576393,
- 0.019431522116065025,
- 0.014309502206742764,
- -0.0843132957816124,
- 0.008071712218225002,
- 0.015232088044285774,
- 0.06263133883476257,
- 0.021491164341568947,
- 0.02430332824587822,
- 0.07365430891513824,
- 0.049140091985464096,
- 0.02912682108581066,
- -0.0025213006883859634,
- -0.08623337000608444,
- -0.08421458303928375,
- 0.0491340346634388,
- 0.0468640960752964,
- -0.023206915706396103,
- 0.009150896221399307,
- 0.0024523185566067696
- ]
- },
- {
- "keyword": "ml engineer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.0706997886300087,
- -0.01843777671456337,
- 0.014361069537699223,
- -0.004716211464256048,
- -0.057467926293611526,
- -0.11542894691228867,
- 0.0755668357014656,
- 0.013949581421911716,
- -0.05954129248857498,
- -0.03375846520066261,
- 0.027359317988157272,
- -0.06923022866249084,
- 0.025363458320498466,
- -0.023743728175759315,
- -0.13153544068336487,
- 0.07088916003704071,
- 0.02154793217778206,
- 0.01668342761695385,
- -0.12321417778730392,
- -0.12105070054531097,
- -0.07234784215688705,
- -0.020320208743214607,
- -0.01093339454382658,
- 0.04244191199541092,
- 0.04282592982053757,
- 0.07236111164093018,
- 0.03775142878293991,
- 0.012782091274857521,
- 0.1043056920170784,
- -0.0946800485253334,
- -0.023125890642404556,
- -0.014292272739112377,
- 0.0657675713300705,
- 0.03086049109697342,
- 0.0022940197959542274,
- 0.06318757683038712,
- -0.011522924527525902,
- -0.047428328543901443,
- 0.024442534893751144,
- 0.0003678837383631617,
- -0.04200293496251106,
- -0.09060803800821304,
- 0.06477489322423935,
- -0.0625559613108635,
- 0.019938938319683075,
- 0.019969649612903595,
- 0.05235805734992027,
- -0.10541021823883057,
- 0.008115798234939575,
- 0.003119933418929577,
- -0.06342381983995438,
- -0.04961128532886505,
- -0.05299767106771469,
- -0.04745720699429512,
- 0.010745018720626831,
- -0.02274468168616295,
- 0.048985715955495834,
- 0.0006387935718521476,
- -0.02030409500002861,
- 0.023473041132092476,
- -0.02000821940600872,
- -0.008775725029408932,
- -0.06980901956558228,
- 0.04936962574720383,
- 0.04669669270515442,
- -0.04830479249358177,
- -0.0630599707365036,
- 0.007695111911743879,
- 0.02075798436999321,
- -0.03801512345671654,
- 0.030632175505161285,
- -0.021135592833161354,
- -0.014759558252990246,
- 0.024121003225445747,
- 0.030706044286489487,
- -0.029643824324011803,
- 0.06878133118152618,
- -0.03532905876636505,
- 0.1076270192861557,
- 0.03848748281598091,
- -0.00105563853867352,
- -0.013843041844666004,
- -0.07595478743314743,
- -0.004715124610811472,
- 0.010434114374220371,
- -0.05133920907974243,
- 0.006706487387418747,
- 0.07594103366136551,
- 0.07030267268419266,
- -0.02111409232020378,
- 0.032863255590200424,
- 0.004161335993558168,
- -0.06189115718007088,
- 0.03908767178654671,
- -0.013903332874178886,
- 0.07091127336025238,
- -0.009047893807291985,
- -0.06271323561668396,
- -0.053439632058143616,
- 0.144695445895195,
- -0.024539658799767494,
- 0.10278075933456421,
- -0.03959498926997185,
- 0.007670782972127199,
- -0.06126917898654938,
- -0.04873267188668251,
- 0.0001978132495423779,
- 0.0984351709485054,
- 0.06922390311956406,
- -0.03793203458189964,
- 0.04218028485774994,
- -0.017811624333262444,
- -0.016974257305264473,
- 0.03198699280619621,
- 0.001723562483675778,
- -0.08171094954013824,
- 0.009681838564574718,
- 0.003050395054742694,
- 0.0198543481528759,
- 0.04514088109135628,
- 0.017765453085303307,
- 0.015043877065181732,
- -0.04881225526332855,
- -0.022885138168931007,
- -0.08449249714612961,
- -0.0304743442684412,
- -0.030642416328191757,
- -3.5391941871610824e-33,
- -0.06926599889993668,
- 0.014362222515046597,
- 0.02158435247838497,
- 0.04073312506079674,
- 0.019369790330529213,
- -0.018384065479040146,
- -0.008805541321635246,
- 0.014714083634316921,
- 0.06287913769483566,
- 0.010238530114293098,
- -0.006076210178434849,
- 0.027653692290186882,
- -0.07483252137899399,
- 0.0470769926905632,
- 0.03469700366258621,
- -0.015865083783864975,
- 0.040397822856903076,
- 0.04135405644774437,
- -0.03131065145134926,
- 0.01999816671013832,
- -0.006532083265483379,
- -0.049923330545425415,
- 0.05360225960612297,
- -0.023572517558932304,
- 0.04890883341431618,
- 0.01716649904847145,
- 0.08321722596883774,
- -0.03238755092024803,
- 0.03254926577210426,
- 0.05086350813508034,
- -0.02137833647429943,
- 0.06888236105442047,
- -0.027991551905870438,
- -0.03452891856431961,
- -0.0014805002138018608,
- 0.03381621837615967,
- -0.0465572290122509,
- -0.09267221391201019,
- 0.054409224539995193,
- 0.02100333198904991,
- -0.06005014106631279,
- 0.012491223402321339,
- 0.12497948855161667,
- -0.016804005950689316,
- -0.03066517412662506,
- 0.051526132971048355,
- 0.04133421182632446,
- -0.026536939665675163,
- 0.0726524144411087,
- -0.055676043033599854,
- -0.060972630977630615,
- -0.00985603779554367,
- 0.05334987863898277,
- -0.06478948146104813,
- 0.07295890897512436,
- 0.019429855048656464,
- 0.03873806074261665,
- 0.07614646852016449,
- -0.0035323631018400192,
- 0.0867621898651123,
- -0.0884552001953125,
- 0.1053384318947792,
- 0.028879934921860695,
- 0.061446137726306915,
- 0.055678047239780426,
- -0.01502051018178463,
- 0.022456970065832138,
- 0.038893572986125946,
- 0.042391855269670486,
- -0.005087127443403006,
- -0.07308299839496613,
- 0.02884303405880928,
- 0.04671578109264374,
- -0.07139300554990768,
- -0.03736111894249916,
- 0.0031166935805231333,
- -0.02796032838523388,
- 0.03506184369325638,
- 0.029210848733782768,
- -0.008399926126003265,
- 0.011343367397785187,
- 0.047067418694496155,
- 0.01001750584691763,
- -0.10436686128377914,
- 0.026870310306549072,
- -0.008070635609328747,
- -0.02317975088953972,
- -0.007125090807676315,
- 0.011889479123055935,
- 0.015540612861514091,
- -0.08656646311283112,
- -0.034479618072509766,
- 0.011183857917785645,
- 0.0653533786535263,
- -0.056671224534511566,
- 1.684432895205451e-33,
- -0.09520138055086136,
- 0.06177685782313347,
- -0.012019671499729156,
- 0.06389828026294708,
- 0.07568618655204773,
- -0.028124544769525528,
- 0.032172348350286484,
- 0.010727030225098133,
- 0.011766756884753704,
- 0.1488730013370514,
- 0.0467209629714489,
- -0.025793086737394333,
- -0.025462212041020393,
- 0.033691056072711945,
- -0.03772636875510216,
- 0.003165168920531869,
- -0.008122825063765049,
- -0.10820663720369339,
- -0.06296932697296143,
- 0.0038638596888631582,
- 0.012857988476753235,
- 0.09616119414567947,
- -0.0851178839802742,
- -0.0023011015728116035,
- 0.040844306349754333,
- 0.04798859730362892,
- -0.06245247647166252,
- 0.04973103478550911,
- -0.0514434352517128,
- 0.01834334246814251,
- -0.019340667873620987,
- -0.05231776088476181,
- 0.03318033739924431,
- 0.009422841481864452,
- -0.015373805537819862,
- 0.02944827638566494,
- 0.08059225231409073,
- 0.05856090411543846,
- 0.014215720817446709,
- 0.031779609620571136,
- 0.06111865118145943,
- -0.03064163774251938,
- 0.03223953768610954,
- -0.014956907369196415,
- -0.005575175397098064,
- -0.041630420833826065,
- 0.04988262802362442,
- -0.07870567589998245,
- 0.06053755432367325,
- -0.03363070636987686,
- 0.007789290510118008,
- 0.03304269164800644,
- 0.010352238081395626,
- -0.012296423316001892,
- -0.003396096406504512,
- -0.02422562800347805,
- -0.038851991295814514,
- -0.02314264141023159,
- 0.02302851900458336,
- -0.009322193451225758,
- -0.0031522801145911217,
- -0.07208244502544403,
- 0.09343396872282028,
- 0.07288108766078949,
- -0.10340089350938797,
- 0.022810425609350204,
- 0.019993936643004417,
- 0.0417620874941349,
- -0.11300498247146606,
- 0.001307588187046349,
- 0.0628347173333168,
- 0.047342799603939056,
- 0.051027920097112656,
- -0.03070385754108429,
- -0.08006033301353455,
- -0.051768090575933456,
- -0.01365932822227478,
- -0.0512201189994812,
- -0.03425510972738266,
- -0.0390692763030529,
- 0.05015597119927406,
- -0.11057741940021515,
- 0.02144881896674633,
- 0.10836900025606155,
- 0.05891810357570648,
- -0.06388306617736816,
- 0.0706193670630455,
- 0.007310444954782724,
- 0.009377190843224525,
- -0.06053033098578453,
- -0.013836040161550045,
- 0.011416920460760593,
- -0.03891996294260025,
- -0.043633393943309784,
- -0.04277887940406799,
- -1.1638340957631499e-8,
- -0.07163804024457932,
- -0.05606149137020111,
- 0.017858590930700302,
- -0.047716058790683746,
- 0.043448545038700104,
- 0.03695322945713997,
- -0.11623368412256241,
- -0.05538509041070938,
- 0.003547108033671975,
- -0.009581150487065315,
- 0.023061059415340424,
- -0.07791046053171158,
- -0.027996908873319626,
- 0.055449314415454865,
- 0.059630732983350754,
- -0.012922050431370735,
- -0.02519339509308338,
- 0.06134340539574623,
- -0.029032764956355095,
- -0.07006314396858215,
- 0.07107914239168167,
- 0.01760069839656353,
- 0.11305919289588928,
- 0.015009365975856781,
- -0.00392781849950552,
- -0.06467906385660172,
- -0.024033524096012115,
- 0.009493847377598286,
- -0.019922450184822083,
- -0.02820478193461895,
- -0.09630798548460007,
- 0.04329953342676163,
- 0.032813508063554764,
- 0.007034950889647007,
- 0.029273152351379395,
- 0.03133498504757881,
- 0.01258824858814478,
- -0.011415684595704079,
- -0.030458075925707817,
- 0.0548563189804554,
- -0.08130417764186859,
- 0.015598610043525696,
- -0.027251098304986954,
- 0.0029966540168970823,
- 0.08612381666898727,
- 0.05530430004000664,
- -0.053738825023174286,
- -0.06516791135072708,
- -0.00024490372743457556,
- 0.06027641519904137,
- 0.06397932022809982,
- -0.008499831892549992,
- 0.11728664487600327,
- 0.015546097420156002,
- 0.04799000918865204,
- 0.001756762620061636,
- -0.01891038380563259,
- -0.032253071665763855,
- -0.10340145230293274,
- 0.00037686058203689754,
- 0.07685602456331253,
- -0.050750911235809326,
- 0.07658030092716217,
- -0.031160488724708557
- ]
- },
- {
- "keyword": "product manager",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.05249946564435959,
- -0.05488020181655884,
- 0.029456306248903275,
- -0.04461715370416641,
- 0.02974189817905426,
- -0.016686584800481796,
- 0.1487499475479126,
- 0.032799482345581055,
- -0.04986895993351936,
- -0.011439908295869827,
- 0.04563302546739578,
- -0.045132752507925034,
- -0.0013707656180486083,
- 0.01891282945871353,
- 0.0030741256196051836,
- 0.07336946576833725,
- 0.0323699526488781,
- 0.019954442977905273,
- -0.03600415587425232,
- -0.1364387571811676,
- -0.012386010028421879,
- -0.03545018658041954,
- -0.01880606636404991,
- 0.03328685089945793,
- -0.1383735090494156,
- -0.006165010388940573,
- 0.0029335650615394115,
- 0.044734641909599304,
- -0.04221543297171593,
- -0.12455875426530838,
- -0.013184630312025547,
- -0.02512473426759243,
- 0.04778445139527321,
- 0.012626910582184792,
- 0.024860233068466187,
- 0.060062989592552185,
- -0.028757266700267792,
- -0.02000466361641884,
- -0.04846031591296196,
- -0.013365696184337139,
- 0.03212396055459976,
- -0.056934427469968796,
- -0.06852908432483673,
- -0.038118261843919754,
- 0.005471083335578442,
- 0.006460927426815033,
- 0.01699824258685112,
- 0.01889985240995884,
- 0.031159838661551476,
- -0.008541922084987164,
- -0.061363909393548965,
- 0.0035696555860340595,
- -0.03823910653591156,
- -0.019670981913805008,
- -0.011996558867394924,
- 0.033103786408901215,
- 0.06444581598043442,
- 0.029226597398519516,
- -0.0010923489462584257,
- -0.047710057348012924,
- 0.027717405930161476,
- -0.06298205256462097,
- -0.07700926810503006,
- 0.023601176217198372,
- 0.04122341796755791,
- 0.009558171965181828,
- -0.06180502101778984,
- 0.02223270758986473,
- -0.08478564769029617,
- -0.021328456699848175,
- 0.03571601212024689,
- -0.08829367905855179,
- -0.05135660991072655,
- 0.017483843490481377,
- -0.015220645815134048,
- -0.015868356451392174,
- 0.019291063770651817,
- -0.03949291631579399,
- 0.1127898320555687,
- 0.04265200346708298,
- -0.002490574959665537,
- 0.024086497724056244,
- -0.023877987638115883,
- 0.0470145083963871,
- -0.043179284781217575,
- -0.03205528110265732,
- -0.015556043945252895,
- 0.007069719024002552,
- 0.04042196646332741,
- 0.06985066831111908,
- 0.012475419789552689,
- 0.006480974145233631,
- 0.06160958856344223,
- -0.0019164426485076547,
- -0.12937505543231964,
- 0.0019091748399659991,
- 0.048671286553144455,
- -0.04408438876271248,
- -0.019521405920386314,
- 0.17025457322597504,
- -0.021115252748131752,
- -0.008751523680984974,
- 0.033573586493730545,
- -0.05249117314815521,
- -0.06730423867702484,
- -0.009591212496161461,
- -0.05950836464762688,
- 0.06470617651939392,
- 0.08296113461256027,
- 0.06620388478040695,
- -0.022443532943725586,
- -0.0009438532288186252,
- -0.08441068232059479,
- -0.004470163956284523,
- -0.009260844439268112,
- -0.029402393847703934,
- -0.06459786742925644,
- 0.038082391023635864,
- 0.014194168150424957,
- -0.004052259027957916,
- 0.015429324470460415,
- 0.050011131912469864,
- 0.04170573502779007,
- -0.003539466066285968,
- -0.09430813789367676,
- 0.05666501447558403,
- 0.016068022698163986,
- -2.906618616326369e-33,
- 0.003925459925085306,
- -0.035475436598062515,
- 0.009297947399318218,
- 0.06170361116528511,
- -0.0203887727111578,
- 0.0906032919883728,
- 0.02539394609630108,
- 0.07664873450994492,
- 0.005842681508511305,
- -0.0035761245526373386,
- -0.009725227952003479,
- 0.014257421717047691,
- -0.050953492522239685,
- -0.0032492901664227247,
- 0.10575061291456223,
- -0.02730340138077736,
- -0.014520873315632343,
- 0.08966429531574249,
- 0.0007749116630293429,
- -0.04105149954557419,
- -0.059299979358911514,
- 0.03758847713470459,
- -0.04607917368412018,
- 0.015995817258954048,
- 0.05894388630986214,
- 0.01525702141225338,
- 0.014875151216983795,
- 0.01984988898038864,
- 0.08536326140165329,
- 0.006951817311346531,
- 0.05832713842391968,
- 0.04822695627808571,
- 0.006108629982918501,
- -0.05646660923957825,
- -0.07880662381649017,
- 0.0077315340749919415,
- -0.1510063111782074,
- -0.08432266116142273,
- 0.03297250345349312,
- -0.029453735798597336,
- -0.07512113451957703,
- -0.0015820797998458147,
- 0.06646370887756348,
- 0.03960675001144409,
- -0.0372002050280571,
- -0.011282448656857014,
- 0.052306633442640305,
- 0.0037493081763386726,
- 0.061255838721990585,
- 0.00036223846836946905,
- -0.06841752678155899,
- -0.016429536044597626,
- 0.09326400607824326,
- -0.006230226252228022,
- 0.05084708333015442,
- -0.026243900880217552,
- 0.05950542539358139,
- -0.08051611483097076,
- 0.060774754732847214,
- 0.036579977720975876,
- -0.02475089766085148,
- 0.14750006794929504,
- 0.023197224363684654,
- 0.008400351740419865,
- -0.029842950403690338,
- -0.01714271493256092,
- 0.054718632251024246,
- -0.052507106214761734,
- 0.07623738795518875,
- 0.028660748153924942,
- -0.04202813655138016,
- -0.007059505209326744,
- 0.10595741868019104,
- -0.006747975945472717,
- -0.015518172644078732,
- 0.017679519951343536,
- 0.0030856437515467405,
- 0.05764634907245636,
- -0.1271418035030365,
- 0.01857656054198742,
- -0.020709767937660217,
- 0.025464998558163643,
- 0.021094070747494698,
- 0.006874638143926859,
- -0.0015926091000437737,
- 0.01638956181704998,
- -0.04148221015930176,
- -0.006589312106370926,
- 0.03322293609380722,
- 0.1182272881269455,
- -0.028439298272132874,
- 0.009285162203013897,
- 0.000631496193818748,
- 0.16904236376285553,
- -0.00912240520119667,
- 2.2392298619370922e-33,
- -0.0516078881919384,
- -0.11193676292896271,
- 0.0586087703704834,
- 0.0231047123670578,
- 0.09359174221754074,
- -0.05197245255112648,
- -0.08570042997598648,
- 0.014364567585289478,
- -0.06580059975385666,
- -0.014203169383108616,
- 0.03760697320103645,
- -0.00789027102291584,
- 0.06433019787073135,
- 0.032176654785871506,
- -0.04174409434199333,
- 0.09173184633255005,
- 0.07732957601547241,
- -0.09084805846214294,
- -0.027104482054710388,
- -0.04495428502559662,
- -0.037104178220033646,
- 0.036835189908742905,
- -0.0382467545568943,
- -0.0018345469143241644,
- -0.12313223630189896,
- -0.010516773909330368,
- 0.04817553982138634,
- 0.014437753707170486,
- 0.022944508120417595,
- 0.006259305868297815,
- 0.056580059230327606,
- -0.08349290490150452,
- -0.04882742837071419,
- 0.02796131931245327,
- -0.03453468903899193,
- -0.0026545156724750996,
- 0.0016030898550525308,
- -0.015419592149555683,
- 0.008982452563941479,
- 0.010319150984287262,
- 0.07427795231342316,
- -0.033333126455545425,
- -0.021728593856096268,
- 0.05539362132549286,
- 0.010358995757997036,
- -0.011451209895312786,
- 0.0046782223507761955,
- -0.09971750527620316,
- 0.02853698469698429,
- -0.010822087526321411,
- -0.16077831387519836,
- 0.05030239373445511,
- -0.025968315079808235,
- -0.08320793509483337,
- -0.06874502450227737,
- -0.003421653062105179,
- 0.01214420236647129,
- -0.0383041575551033,
- -0.011361404322087765,
- -0.019975747913122177,
- -0.020939886569976807,
- 0.009093250147998333,
- 0.059855226427316666,
- 0.02176150679588318,
- -0.05122644081711769,
- 0.0822002962231636,
- 0.08475251495838165,
- 0.013150705024600029,
- -0.025130493566393852,
- -0.03616826608777046,
- 0.04198360815644264,
- 0.06804552674293518,
- -0.008852033875882626,
- 0.016007043421268463,
- -0.027430007234215736,
- -0.005182197783142328,
- -0.03262628614902496,
- -0.038900360465049744,
- -0.031507182866334915,
- -0.10659375041723251,
- 0.001491083879955113,
- -0.029912203550338745,
- 0.04103668034076691,
- 0.06016296520829201,
- -0.014905481599271297,
- 0.01866139844059944,
- 0.011506067588925362,
- -0.0012355971848592162,
- -0.003599634161219001,
- -0.03385912999510765,
- -0.014451045542955399,
- 0.03346303850412369,
- -0.08271236717700958,
- 0.07602502405643463,
- 0.07945889234542847,
- -1.1898606544491486e-8,
- -0.029784230515360832,
- -0.026083476841449738,
- 0.09231080114841461,
- -0.03969273343682289,
- 0.06509244441986084,
- -0.046769388020038605,
- -0.05487379431724548,
- -0.004293156787753105,
- 0.05117946118116379,
- 0.01998983323574066,
- 0.026816722005605698,
- -0.026631992310285568,
- -0.10868721455335617,
- 0.0730503499507904,
- 0.08065120130777359,
- -0.004957434255629778,
- -0.04401051998138428,
- 0.08610618114471436,
- 0.008941412903368473,
- -0.01975783333182335,
- 0.028053585439920425,
- 0.07394929975271225,
- 0.0927097424864769,
- 0.02334829792380333,
- 0.0010710651986300945,
- -0.04770655557513237,
- 0.010205930098891258,
- 0.05167683959007263,
- -0.00015057236305437982,
- 0.043598663061857224,
- 0.00955409836024046,
- 0.028419191017746925,
- 0.01574067585170269,
- 0.025536881759762764,
- 0.0843145027756691,
- -0.04857100546360016,
- 0.008636947721242905,
- -0.01105575356632471,
- -0.019754953682422638,
- -0.0014504037098959088,
- -0.050124965608119965,
- -0.007777148857712746,
- 0.02252735197544098,
- 0.048608869314193726,
- 0.006967878434807062,
- 0.06548760086297989,
- 0.04756435379385948,
- -0.056950051337480545,
- 0.010499917902052402,
- -0.00792196299880743,
- -0.01429618988186121,
- 0.01652712933719158,
- 0.02982756681740284,
- 0.0014110640622675419,
- 0.0008187895873561502,
- -0.059674374759197235,
- 0.051875557750463486,
- -0.109489805996418,
- -0.03657359629869461,
- 0.010957474820315838,
- 0.032520193606615067,
- -0.07994447648525238,
- 0.027312548831105232,
- 0.04650747776031494
- ]
- },
- {
- "keyword": "project manager",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04864197224378586,
- -0.013566498644649982,
- 0.025762230157852173,
- 0.06555210053920746,
- 0.01845526322722435,
- -0.033926479518413544,
- 0.09333395212888718,
- -0.008157487027347088,
- 0.02012392319738865,
- 0.06952710449695587,
- -0.015277356840670109,
- -0.06304159760475159,
- -0.007785378955304623,
- 0.06321476399898529,
- -0.03313200920820236,
- 0.09120461344718933,
- -0.0024268159177154303,
- -0.0231965109705925,
- 0.04581733047962189,
- -0.1037319079041481,
- -0.0087836729362607,
- -0.026652948930859566,
- -0.005059733986854553,
- 0.014945682138204575,
- 0.009493079036474228,
- 0.007854564115405083,
- 0.00939546525478363,
- 0.052069634199142456,
- -0.050280045717954636,
- -0.05268419533967972,
- -0.056327395141124725,
- 0.028614941984415054,
- 0.03883383050560951,
- -0.027814896777272224,
- 0.07538954168558121,
- 0.14880134165287018,
- -0.03977241739630699,
- 0.020014522597193718,
- -0.025939136743545532,
- 0.0028014429844915867,
- -0.0770258978009224,
- -0.003463932778686285,
- 0.042182620614767075,
- -0.09859298914670944,
- -0.04183715209364891,
- -0.026737837120890617,
- 0.022507984191179276,
- -0.06024187058210373,
- -0.02921600267291069,
- -0.04725312069058418,
- 0.008277935907244682,
- -0.08958391100168228,
- -0.030250465497374535,
- -0.049096133559942245,
- 0.03547227382659912,
- 0.012790127657353878,
- 0.07734528928995132,
- 0.013062192127108574,
- -0.00443965382874012,
- -0.05434687063097954,
- -0.011595240794122219,
- 0.01437587384134531,
- -0.09589942544698715,
- -0.02499765157699585,
- 0.05087282136082649,
- 0.024015476927161217,
- -0.02557329088449478,
- 0.10067294538021088,
- -0.01108592189848423,
- -0.04756232351064682,
- 0.04601775482296944,
- -0.07699563354253769,
- -0.030444495379924774,
- -0.0483599528670311,
- 0.04767623543739319,
- -0.0348154716193676,
- -0.006116418167948723,
- 0.036559369415044785,
- 0.13243108987808228,
- 0.021298153325915337,
- 0.06999033689498901,
- 0.012433136813342571,
- -0.014019574038684368,
- 0.07135851681232452,
- -0.0016224157297983766,
- 0.0024598820600658655,
- 0.002720686374232173,
- 0.06959562003612518,
- 0.06768149137496948,
- 0.03704247996211052,
- 0.02307858131825924,
- -0.03703746572136879,
- 0.03919536992907524,
- 0.07955354452133179,
- -0.08209989219903946,
- -0.03465475142002106,
- 0.04560083523392677,
- -0.02080618590116501,
- -0.02988813817501068,
- 0.157718226313591,
- -0.02881549298763275,
- -0.023257795721292496,
- 0.03176816925406456,
- -0.047499120235443115,
- -0.019466953352093697,
- 0.006095671094954014,
- 0.034357987344264984,
- 0.02856694906949997,
- 0.0193572249263525,
- 0.019330525770783424,
- 0.00319872098043561,
- 0.0038257483392953873,
- -0.0731671079993248,
- -0.05001692846417427,
- 0.009832167997956276,
- -0.017734527587890625,
- -0.05768101289868355,
- 0.03731764853000641,
- -0.06547722220420837,
- 0.003925435245037079,
- -0.022750118747353554,
- 0.0010145202977582812,
- -0.012315426021814346,
- 0.018691040575504303,
- -0.10200028866529465,
- 0.01271127536892891,
- -0.03109363652765751,
- -2.4487264651406403e-33,
- 0.06305591762065887,
- -0.01073210034519434,
- -0.0007995973573997617,
- 0.07028111815452576,
- 0.07018779963254929,
- 0.03089487925171852,
- 0.06892336159944534,
- 0.13976407051086426,
- 0.010568266734480858,
- -0.060825567692518234,
- 0.06583958864212036,
- -0.018305769190192223,
- -0.010731409303843975,
- 0.005847079213708639,
- 0.061194904148578644,
- -0.09807690978050232,
- -0.01269665639847517,
- 0.12591037154197693,
- -0.05349096283316612,
- -0.025859607383608818,
- -0.09001066535711288,
- -0.021297669038176537,
- -0.019096890464425087,
- -0.05075758695602417,
- 0.13522183895111084,
- 0.04851669445633888,
- 0.07667092978954315,
- 0.009687308222055435,
- -0.0056119817309081554,
- 0.010806065052747726,
- 0.05122804641723633,
- 0.03411887213587761,
- -0.01402202993631363,
- -0.03350706398487091,
- -0.037333253771066666,
- 0.06972841173410416,
- -0.1128852516412735,
- -0.061715394258499146,
- -0.0025037196464836597,
- 0.01631968654692173,
- -0.06308174878358841,
- 0.014259964227676392,
- 0.05103638395667076,
- 0.01648986153304577,
- 0.00638379342854023,
- -0.019110046327114105,
- 0.09190481156110764,
- -0.022136835381388664,
- 0.03934670612215996,
- -0.005117327440530062,
- -0.004839684348553419,
- -0.011363854631781578,
- -0.015124093741178513,
- 0.03330760449171066,
- 0.06592034548521042,
- -0.014450658112764359,
- 0.10003547370433807,
- -0.043396420776844025,
- 0.06845894455909729,
- -0.008201663382351398,
- 0.01904376968741417,
- 0.07850835472345352,
- -0.07794026285409927,
- 0.04276851564645767,
- 0.0402187816798687,
- 0.039635900408029556,
- -0.003756335936486721,
- -0.03288096562027931,
- 0.1388750672340393,
- -0.0005765294772572815,
- -0.05476871877908707,
- -0.02825954183936119,
- 0.07283307611942291,
- 0.0012483218451961875,
- -0.038592468947172165,
- 0.004669937305152416,
- -0.05686867609620094,
- 0.07817269116640091,
- -0.1298539936542511,
- 0.09852616488933563,
- -0.08648869395256042,
- -0.036092609167099,
- 0.01830212213099003,
- -0.027141649276018143,
- 0.0032429653219878674,
- 0.034988176077604294,
- -0.014940238557755947,
- 0.05781273543834686,
- -0.0016563988756388426,
- 0.06271199882030487,
- -0.013195402920246124,
- -0.0014589893398806453,
- 0.0036700868513435125,
- 0.12422294914722443,
- -0.037864960730075836,
- 2.653030873062408e-33,
- -0.02338779903948307,
- -0.03682882711291313,
- -0.028440095484256744,
- -0.019262945279479027,
- 0.09627778083086014,
- -0.013857275247573853,
- -0.06866001337766647,
- -0.07550938427448273,
- -0.009830662980675697,
- 0.036714568734169006,
- -0.010620477609336376,
- -0.022153392434120178,
- 0.030771154910326004,
- 0.015124734491109848,
- -0.025313610211014748,
- 0.02878713794052601,
- 0.05035147815942764,
- -0.10670892149209976,
- -0.06383347511291504,
- -0.0412224642932415,
- -0.058752600103616714,
- 0.06018087640404701,
- -0.024449119344353676,
- -0.07651184499263763,
- -0.03568638488650322,
- -0.00021326213027350605,
- 0.0472215935587883,
- -0.05505763739347458,
- 0.03487100452184677,
- 0.00011285040091024712,
- 0.0254207830876112,
- -0.09051395207643509,
- -0.0952485129237175,
- -0.04082973301410675,
- -0.06208281219005585,
- 0.08085671067237854,
- 0.00023771579435560852,
- -0.028933390974998474,
- -0.08961354196071625,
- 0.0765739381313324,
- 0.01707114838063717,
- -0.0008020699606277049,
- 0.032617516815662384,
- 0.024857686832547188,
- -0.01881663128733635,
- 0.05159757658839226,
- 0.01156840194016695,
- 0.001404314418323338,
- -0.048528145998716354,
- -0.03331504389643669,
- -0.13376078009605408,
- 0.04688650369644165,
- -0.03554292023181915,
- -0.09069956839084625,
- 0.048312921077013016,
- -0.044926583766937256,
- -0.04327578842639923,
- -0.023117514327168465,
- -0.05215388908982277,
- 0.006639937404543161,
- 0.02514566108584404,
- -0.05038724094629288,
- 0.042177464812994,
- 0.0648713931441307,
- -0.08609113097190857,
- 0.10318584740161896,
- 0.011766266077756882,
- 0.026067400351166725,
- 0.011435320600867271,
- 0.0006456997944042087,
- 0.03914531692862511,
- 0.07566879689693451,
- -0.0031526172533631325,
- 0.032326214015483856,
- -0.04424898698925972,
- -0.06266404688358307,
- -0.03911800682544708,
- 0.01705828122794628,
- 0.00551343010738492,
- -0.0564422607421875,
- -0.01583457738161087,
- -0.031873542815446854,
- -0.030078258365392685,
- 0.03081023320555687,
- -0.010165521875023842,
- -0.020145712420344353,
- 0.03479444235563278,
- -0.010787582024931908,
- -0.010927657596766949,
- -0.03810917213559151,
- -0.006775137968361378,
- -0.018971679732203484,
- 0.012915716506540775,
- 0.02195986732840538,
- 0.03337840363383293,
- -1.110260061665258e-8,
- 0.02010716125369072,
- 0.05470096692442894,
- -0.017278194427490234,
- -0.07482905685901642,
- 0.042694803327322006,
- -0.06300750374794006,
- -0.08834299445152283,
- 0.025891806930303574,
- 0.08656342327594757,
- 0.05390269681811333,
- 0.04187062010169029,
- -0.011539050377905369,
- -0.07711368054151535,
- 0.04721447825431824,
- -0.00925004854798317,
- -0.06752557307481766,
- 0.006656419951468706,
- 0.07831164449453354,
- 0.009966966696083546,
- -0.03369264677166939,
- 0.0511188805103302,
- 0.05285594239830971,
- -0.02229893207550049,
- 0.03786664083600044,
- 0.043709900230169296,
- -0.025410300120711327,
- -0.0008636951679363847,
- 0.05561317503452301,
- 0.010975885204970837,
- 0.06037008389830589,
- 0.022608842700719833,
- 0.08699201047420502,
- -0.0629115104675293,
- 0.00621617678552866,
- 0.08878465741872787,
- 0.012897289358079433,
- -0.0005488940514624119,
- -0.024699093773961067,
- 0.053568560630083084,
- 0.022247852757573128,
- -0.002563181798905134,
- -0.02493276633322239,
- 0.07883963733911514,
- 0.05304846167564392,
- -0.06206677854061127,
- 0.05082396790385246,
- 0.024633262306451797,
- -0.07731002569198608,
- -0.0017049596644937992,
- -0.0954895094037056,
- -0.034195251762866974,
- 0.039123959839344025,
- -0.0035377407912164927,
- 0.03610335662961006,
- 0.05202443525195122,
- 0.02361941896378994,
- 0.06371907889842987,
- -0.09662824869155884,
- -0.07492098212242126,
- 0.01748916506767273,
- 0.036923572421073914,
- -0.011101789772510529,
- -0.05275481194257736,
- 0.02307051047682762
- ]
- },
- {
- "keyword": "engineering manager",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07127566635608673,
- 0.03919714316725731,
- 0.038642432540655136,
- 0.0446670725941658,
- -0.022597303614020348,
- -0.10312112420797348,
- 0.0907013937830925,
- 0.03255235776305199,
- -0.0860397145152092,
- -0.02974371798336506,
- 0.011654220521450043,
- -0.10447313636541367,
- 0.029323846101760864,
- 0.006750175263732672,
- -0.047056205570697784,
- 0.041859351098537445,
- -0.05855601280927658,
- -0.02473757602274418,
- -0.00867476500570774,
- -0.1531006395816803,
- -0.006378270220011473,
- 0.014619492925703526,
- -0.017797382548451424,
- -0.0012680897489190102,
- -0.04736962541937828,
- -0.009227825328707695,
- 0.023111291229724884,
- 0.0648149624466896,
- 0.0030332060996443033,
- -0.11144353449344635,
- -0.013635772280395031,
- 0.008476114831864834,
- -0.002646423876285553,
- 0.03069269098341465,
- -0.02091427892446518,
- 0.08302749693393707,
- -0.03770674392580986,
- -0.024273855611681938,
- 0.045060258358716965,
- 0.03805385157465935,
- -0.0708274319767952,
- -0.0565805658698082,
- 0.05592232197523117,
- -0.05110885202884674,
- -0.018380116671323776,
- 0.004852417390793562,
- 0.07826238870620728,
- -0.10954058915376663,
- 0.013864331878721714,
- -0.06587337702512741,
- -0.033556509763002396,
- -0.008945954032242298,
- 0.00117514468729496,
- -0.04321400821208954,
- 0.043602392077445984,
- 0.029441295191645622,
- 0.10332538932561874,
- 0.03081054985523224,
- -0.06727983057498932,
- -0.005300948396325111,
- -0.01747414655983448,
- 0.020815839990973473,
- -0.08596532791852951,
- 0.009100021794438362,
- -0.013163091614842415,
- -0.021679967641830444,
- -0.0005517434910871089,
- 0.08980908244848251,
- 0.006336440332233906,
- -0.010303755290806293,
- 0.08182882517576218,
- -0.0979013592004776,
- -0.02685401774942875,
- -0.007979191839694977,
- 0.09092125296592712,
- -0.042452506721019745,
- 0.018814414739608765,
- 0.06696519255638123,
- 0.11992478370666504,
- 0.019188430160284042,
- -0.03543292358517647,
- -0.055642787367105484,
- -0.07870662957429886,
- 0.027156179770827293,
- -0.009917422197759151,
- 0.015551462769508362,
- -0.019281873479485512,
- 0.040002189576625824,
- 0.02969883568584919,
- 0.06692499667406082,
- 0.01954832673072815,
- -0.02157323621213436,
- 0.01248157862573862,
- 0.0539129264652729,
- -0.0358489528298378,
- 0.03508910536766052,
- 0.02485455945134163,
- -0.04164745286107063,
- -0.08645586669445038,
- 0.14358468353748322,
- -0.034842878580093384,
- 0.06855785846710205,
- -0.00926818698644638,
- 0.03088013082742691,
- -0.04176388680934906,
- -0.026162970811128616,
- 0.017772126942873,
- 0.08592227101325989,
- 0.03443802893161774,
- -0.054464519023895264,
- 0.041235070675611496,
- 0.05115493759512901,
- -0.061059653759002686,
- 0.021342918276786804,
- 0.001563307479955256,
- -0.0142538882791996,
- 0.004527245182543993,
- 0.008085571229457855,
- 0.013080651871860027,
- 0.018841706216335297,
- 0.010819993913173676,
- -0.002264400478452444,
- -0.0452585369348526,
- 0.01971934735774994,
- -0.11049166321754456,
- -0.007178375963121653,
- 0.024617815390229225,
- -3.962456642113571e-33,
- 0.004353060387074947,
- -0.05071219429373741,
- -0.007252851966768503,
- 0.04056172072887421,
- 0.03670671582221985,
- 0.023935170844197273,
- -0.0177116971462965,
- 0.11938159167766571,
- 0.07522909343242645,
- -0.02346845716238022,
- 0.03553168848156929,
- 0.030449550598859787,
- -0.05064401403069496,
- -0.008383127860724926,
- 0.08639293164014816,
- -0.030365794897079468,
- -0.07713501155376434,
- 0.13808266818523407,
- -0.04021504148840904,
- 0.021853424608707428,
- -0.04389031603932381,
- -0.08118998259305954,
- -0.019811535254120827,
- -0.07073336094617844,
- 0.06156187504529953,
- 0.010988922789692879,
- 0.052179004997015,
- -0.014908627606928349,
- 0.00400583678856492,
- 0.026005657389760017,
- -0.013677848502993584,
- 0.09730160236358643,
- -0.020093858242034912,
- -0.01804984174668789,
- -0.0030298843048512936,
- 0.07170462608337402,
- -0.10070515424013138,
- -0.05431037023663521,
- 0.016797000542283058,
- 0.006309503223747015,
- -0.056198008358478546,
- -0.013369137421250343,
- 0.07511032372713089,
- 0.011186101473867893,
- 0.0027380017563700676,
- 0.013808844611048698,
- 0.10460653901100159,
- -0.03663228452205658,
- 0.06415394693613052,
- -0.022794000804424286,
- -0.06326482445001602,
- -0.026578163728117943,
- 0.09177157282829285,
- -0.01992844231426716,
- 0.12555108964443207,
- 0.00044151346082799137,
- 0.08411422371864319,
- -0.0040266974829137325,
- 0.007233113050460815,
- 0.03157119080424309,
- -0.07681263238191605,
- 0.15828825533390045,
- -0.01672244258224964,
- 0.05414733663201332,
- 0.08383577316999435,
- -0.03501728177070618,
- 0.0057998341508209705,
- -0.03493029624223709,
- 0.0718984380364418,
- -0.04290126636624336,
- -0.07537847757339478,
- -0.01098689716309309,
- 0.026099320501089096,
- -0.04308570176362991,
- -0.02468416653573513,
- 0.01928175427019596,
- -0.02285521849989891,
- 0.07414697855710983,
- -0.06107528135180473,
- 0.05840930715203285,
- 0.006039357744157314,
- 0.012054174207150936,
- 0.054106637835502625,
- -0.06815393269062042,
- 0.09753207117319107,
- 0.03825141116976738,
- 0.023498011752963066,
- -0.009559758938848972,
- 0.06108444556593895,
- 0.048066165298223495,
- -0.07179679721593857,
- -0.04086237773299217,
- 0.029824554920196533,
- 0.13942772150039673,
- -0.05103959143161774,
- 2.1835961020355735e-33,
- -0.05172418802976608,
- 0.020282549783587456,
- -0.05387094244360924,
- 0.01582975871860981,
- 0.061682362109422684,
- -0.022450372576713562,
- 0.002678308868780732,
- 0.0294335950165987,
- -0.048288293182849884,
- -0.0033042877912521362,
- 0.06423940509557724,
- 0.023555684834718704,
- 0.02610171027481556,
- 0.029822321608662605,
- -0.04460775479674339,
- 0.02663734182715416,
- 0.006547680590301752,
- -0.16738222539424896,
- -0.11785820126533508,
- -0.009869419038295746,
- -0.0028924152720719576,
- 0.05826922506093979,
- -0.057946737855672836,
- -0.006372898351401091,
- -0.07117214053869247,
- -0.004055079072713852,
- -0.01891717128455639,
- 0.040792111307382584,
- -0.031682878732681274,
- -0.008638557977974415,
- 0.020774174481630325,
- -0.016550661996006966,
- -0.0448637455701828,
- 0.026818465441465378,
- -0.000043343945435481146,
- -0.002812344115227461,
- 0.04320264980196953,
- 0.05004393309354782,
- -0.009687160141766071,
- 0.08652617037296295,
- -0.011672627180814743,
- -0.009687576442956924,
- 0.0502140074968338,
- 0.03361332789063454,
- -0.012129276059567928,
- -0.011389116756618023,
- -0.006815222091972828,
- -0.04022253304719925,
- -0.06453783065080643,
- 0.021363308653235435,
- -0.0644235759973526,
- -0.001981597626581788,
- 0.004842937458306551,
- -0.07472211122512817,
- 0.017203234136104584,
- -0.02731032855808735,
- -0.029251141473650932,
- -0.036635871976614,
- -0.029718944802880287,
- 0.0060213650576770306,
- 0.006977548822760582,
- -0.0030759316869080067,
- 0.07164164632558823,
- 0.08548955619335175,
- -0.12630026042461395,
- 0.00597876962274313,
- 0.022532116621732712,
- 0.010077857412397861,
- -0.06379147619009018,
- 0.01277623325586319,
- 0.034763798117637634,
- 0.044679056853055954,
- 0.002207712735980749,
- 0.0019344545435160398,
- -0.0067969621159136295,
- -0.08637738972902298,
- -0.02822449803352356,
- -0.04529157280921936,
- -0.02900139056146145,
- -0.06486333906650543,
- -0.01210666261613369,
- 0.021579237654805183,
- -0.00685846246778965,
- 0.07095476984977722,
- -0.04079520329833031,
- -0.028795896098017693,
- 0.02490094117820263,
- -0.0035453978925943375,
- 0.06924565881490707,
- -0.11749998480081558,
- -0.00413461634889245,
- 0.00954374484717846,
- -0.06628850102424622,
- -0.024149201810359955,
- 0.04141274467110634,
- -1.2529249637793782e-8,
- -0.05957218259572983,
- -0.026573242619633675,
- 0.003440656466409564,
- -0.1078943982720375,
- 0.017267439514398575,
- -0.036115799099206924,
- -0.05015901103615761,
- -0.04585149511694908,
- 0.03385858237743378,
- -0.06955176591873169,
- 0.01192528661340475,
- -0.005442708730697632,
- -0.05633955076336861,
- 0.07574218511581421,
- 0.08351744711399078,
- -0.047264374792575836,
- -0.008782303892076015,
- 0.10331716388463974,
- -0.006090992596000433,
- -0.0865539088845253,
- 0.06605909764766693,
- 0.020761772990226746,
- 0.08021364361047745,
- 0.06021139398217201,
- 0.04191512614488602,
- -0.008776328526437283,
- -0.00581990135833621,
- -0.0395713746547699,
- 0.012990371324121952,
- 0.06978574395179749,
- -0.03797248750925064,
- 0.0427219457924366,
- -0.007214410696178675,
- 0.029294529929757118,
- 0.09779485315084457,
- 0.014432509429752827,
- 0.04206918179988861,
- -0.06758486479520798,
- 0.008780932053923607,
- 0.010158557444810867,
- -0.03749439865350723,
- -0.0008667509537190199,
- 0.05231831222772598,
- 0.04079680144786835,
- -0.02335558831691742,
- 0.03945836424827576,
- 0.01549097616225481,
- 0.0012171869166195393,
- 0.04624244198203087,
- -0.02321193739771843,
- 0.043864861130714417,
- 0.013217248022556305,
- 0.02771725505590439,
- -0.017550775781273842,
- 0.007062179036438465,
- -0.003322061849758029,
- -0.0025067096576094627,
- -0.09596101939678192,
- -0.10092822462320328,
- 0.00199856492690742,
- 0.023247532546520233,
- -0.00989582110196352,
- 0.020477961748838425,
- 0.024864761158823967
- ]
- },
- {
- "keyword": "ux designer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06623480468988419,
- 0.0778283029794693,
- 0.010094677098095417,
- 0.03369816020131111,
- -0.01242311391979456,
- -0.039702367037534714,
- 0.11677059531211853,
- -0.07386158406734467,
- -0.05661186948418617,
- -0.0333760604262352,
- -0.09472568333148956,
- 0.0044217645190656185,
- 0.041840482503175735,
- -0.04355640709400177,
- -0.025811314582824707,
- 0.019358132034540176,
- 0.0338127575814724,
- -0.05379331856966019,
- -0.021098587661981583,
- -0.008914186619222164,
- -0.012202152982354164,
- -0.06372358649969101,
- -0.02108558639883995,
- -0.022323623299598694,
- 0.0026867915876209736,
- 0.06091981753706932,
- 0.07372581958770752,
- 0.005910628009587526,
- 0.07682828605175018,
- -0.16371968388557434,
- -0.0009623753139749169,
- 0.04790375381708145,
- 0.022861219942569733,
- -0.04296211525797844,
- -0.02863629162311554,
- 0.04857500642538071,
- 0.07823232561349869,
- -0.0013372487155720592,
- -0.0033013292122632265,
- 0.0342964269220829,
- -0.10653473436832428,
- -0.06592822819948196,
- -0.04930763691663742,
- 0.07067395001649857,
- 0.012191394343972206,
- -0.054246097803115845,
- -0.020223749801516533,
- -0.002837710315361619,
- -0.027991898357868195,
- 0.052226390689611435,
- 0.00490589952096343,
- -0.07999509572982788,
- -0.0022528942208737135,
- -0.00923580676317215,
- 0.04220959171652794,
- 0.09953951090574265,
- 0.013014035299420357,
- 0.0359201543033123,
- -0.002128827851265669,
- -0.10904188454151154,
- 0.013953013345599174,
- -0.011262692511081696,
- -0.01365860365331173,
- 0.06931967288255692,
- 0.055235009640455246,
- 0.037746235728263855,
- -0.08021356165409088,
- 0.004301192704588175,
- -0.03205028176307678,
- -0.08340328186750412,
- 0.05238153412938118,
- -0.11006179451942444,
- -0.04382745549082756,
- 0.008507967926561832,
- 0.13243231177330017,
- -0.01486237719655037,
- 0.10403471440076828,
- -0.10368716716766357,
- 0.02383316308259964,
- 0.049151498824357986,
- 0.03691014647483826,
- 0.0008435981580987573,
- -0.06088782101869583,
- 0.05815937742590904,
- 0.027145329862833023,
- 0.03166906535625458,
- 0.009570121765136719,
- 0.034734610468149185,
- 0.01414492353796959,
- 0.021874886006116867,
- 0.005838683340698481,
- 0.00250120903365314,
- -0.008257003501057625,
- 0.00889701209962368,
- 0.009728919714689255,
- -0.009489945136010647,
- 0.03434465080499649,
- -0.006211496889591217,
- 0.004070027731359005,
- 0.11981812864542007,
- -0.016886301338672638,
- -0.017601633444428444,
- 0.008101659826934338,
- 0.09219175577163696,
- -0.017671436071395874,
- -0.03107406198978424,
- -0.008695974946022034,
- 0.06141343340277672,
- -0.022902799770236015,
- -0.005968690849840641,
- -0.04511885717511177,
- -0.028321415185928345,
- -0.0857592299580574,
- 0.03675307705998421,
- 0.0511087030172348,
- -0.011400297284126282,
- -0.04615938290953636,
- 0.016385450959205627,
- 0.10704231262207031,
- -0.043767403811216354,
- 0.02870330400764942,
- 0.07109906524419785,
- -0.11656183749437332,
- 0.022661294788122177,
- -0.07895535230636597,
- -0.06628625839948654,
- -0.04432963579893112,
- -2.006737466824591e-33,
- -0.04590160399675369,
- -0.011312475427985191,
- 0.05526003614068031,
- 0.037855297327041626,
- 0.06871776282787323,
- -0.05049777030944824,
- 0.055510275065898895,
- -0.0033628023229539394,
- -0.04580092430114746,
- 0.05631610006093979,
- 0.018850702792406082,
- 0.05052945017814636,
- -0.034715015441179276,
- 0.1353447437286377,
- 0.034021321684122086,
- -0.008885876275599003,
- 0.05345846340060234,
- -0.002621276304125786,
- -0.03953152522444725,
- -0.0030399842653423548,
- 0.00277615524828434,
- -0.007669268175959587,
- 0.020233187824487686,
- -0.0006397964898496866,
- -0.01550468523055315,
- 0.02616814523935318,
- 0.008764062076807022,
- 0.030920466408133507,
- 0.009156892076134682,
- 0.004572530277073383,
- -0.08055951446294785,
- 0.029860030859708786,
- 0.01830977201461792,
- 0.012014997191727161,
- -0.11678291112184525,
- 0.03229626268148422,
- -0.007752275560051203,
- -0.08234484493732452,
- 0.09000551700592041,
- -0.01576346717774868,
- -0.02860797569155693,
- 0.047890596091747284,
- 0.018757635727524757,
- 0.005426075775176287,
- 0.011013893410563469,
- 0.10289585590362549,
- 0.09805256873369217,
- 0.004418822005391121,
- 0.011717049404978752,
- -0.00431117694824934,
- -0.030385173857212067,
- 0.04553208127617836,
- 0.02825057879090309,
- 0.017518648877739906,
- 0.05345751345157623,
- -0.0765824243426323,
- 0.004997484851628542,
- -0.014123428612947464,
- -0.0005371038569137454,
- 0.05626548454165459,
- -0.04235363379120827,
- 0.10614699870347977,
- -0.03717117756605148,
- 0.057417355477809906,
- -0.0381741002202034,
- -0.023181740194559097,
- 0.07460140436887741,
- 0.00038809419493190944,
- 0.0324476882815361,
- -0.012113831005990505,
- -0.1431465595960617,
- 0.03543620556592941,
- 0.12091389298439026,
- -0.047260086983442307,
- -0.04732503369450569,
- 0.024617666378617287,
- -0.021800700575113297,
- 0.03446424752473831,
- 0.01666748896241188,
- 0.04013090953230858,
- -0.06757832318544388,
- 0.09981139004230499,
- 0.001940928865224123,
- 0.021280687302350998,
- 0.06531848013401031,
- 0.020142173394560814,
- 0.02491544745862484,
- 0.037831276655197144,
- 0.01123015210032463,
- 0.07397429645061493,
- -0.09828247129917145,
- -0.06371640413999557,
- 0.034028310328722,
- 0.007058826275169849,
- -0.02773897722363472,
- 4.86597677315061e-34,
- -0.07908378541469574,
- -0.05651554837822914,
- 0.004205999430269003,
- 0.02309177815914154,
- 0.08560771495103836,
- -0.012634496204555035,
- -0.01517057791352272,
- 0.06369064748287201,
- 0.029385412111878395,
- 0.0648995041847229,
- 0.1430598795413971,
- 0.03725849464535713,
- 0.02352260984480381,
- 0.005587155930697918,
- -0.007769444491714239,
- 0.032685015350580215,
- 0.06011650338768959,
- -0.05850973725318909,
- -0.08117159456014633,
- -0.030617911368608475,
- 0.06775645166635513,
- 0.05016963928937912,
- -0.10595919191837311,
- -0.0705374926328659,
- -0.09600408375263214,
- 0.012938003055751324,
- 0.03429806977510452,
- 0.016182735562324524,
- -0.02686959318816662,
- 0.012285478413105011,
- 0.0014413957251235843,
- -0.07333825528621674,
- -0.04699363186955452,
- 0.059029471129179,
- 0.050408851355314255,
- 0.010030866600573063,
- -0.0764857679605484,
- 0.05805797874927521,
- 0.018539058044552803,
- -0.01928924210369587,
- 0.004515923094004393,
- -0.04992946609854698,
- 0.020745564252138138,
- 0.061312973499298096,
- -0.0003545977524481714,
- -0.02779918722808361,
- -0.06281059235334396,
- -0.050613295286893845,
- -0.0007672561914660037,
- -0.023502115160226822,
- -0.03201192244887352,
- 0.056973155587911606,
- 0.023227712139487267,
- -0.0841812938451767,
- -0.03327162191271782,
- -0.027654051780700684,
- -0.034464720636606216,
- -0.039558690041303635,
- 0.1397584229707718,
- 0.03131087124347687,
- 0.011170953512191772,
- 0.09160251170396805,
- 0.04448258876800537,
- 0.02248425967991352,
- -0.025873078033328056,
- -0.015332524664700031,
- -0.01696922443807125,
- -0.043893154710531235,
- -0.049315888434648514,
- -0.010282576084136963,
- 0.08469206839799881,
- 0.07196737825870514,
- -0.10159559547901154,
- 0.025285040959715843,
- -0.04226812347769737,
- -0.07970130443572998,
- 0.005489172879606485,
- 0.021395662799477577,
- -0.027048682793974876,
- 0.013838572427630424,
- 0.016436100006103516,
- -0.005385806784033775,
- -0.017337335273623466,
- 0.0816977396607399,
- -0.007312481757253408,
- 0.06565168499946594,
- 0.0035651023499667645,
- 0.055845968425273895,
- 0.042281623929739,
- -0.10629281401634216,
- -0.01806006394326687,
- 0.02618918940424919,
- -0.046092886477708817,
- -0.04694956913590431,
- -0.0554073341190815,
- -1.4207150123013434e-8,
- -0.04989399388432503,
- -0.04045519977807999,
- 0.02736850082874298,
- -0.05750517547130585,
- -0.03444649651646614,
- 0.02065839059650898,
- -0.032760605216026306,
- -0.03405497968196869,
- -0.012180829420685768,
- 0.000530218007043004,
- 0.05427487939596176,
- -0.05747072026133537,
- -0.0029608954209834337,
- 0.028972981497645378,
- 0.039656538516283035,
- -0.11571774631738663,
- 0.005375283770263195,
- 0.09316597878932953,
- -0.001661031856201589,
- -0.16657325625419617,
- 0.009354952722787857,
- 0.035297393798828125,
- 0.023090951144695282,
- 0.01774754375219345,
- 0.0005216742865741253,
- 0.021704887971282005,
- 0.0411861389875412,
- -0.03597446531057358,
- -0.0433032289147377,
- 0.05630231276154518,
- -0.014679855667054653,
- 0.0423891507089138,
- -0.023830611258745193,
- -0.01236600149422884,
- 0.0025066363159567118,
- -0.05218465253710747,
- 0.01570958085358143,
- -0.026735858991742134,
- -0.00790041871368885,
- -0.003728472860530019,
- -0.016244085505604744,
- 0.019253643229603767,
- 0.057491518557071686,
- 0.03057466261088848,
- -0.07327017933130264,
- -0.024670829996466637,
- 0.0718652755022049,
- -0.08118730783462524,
- -0.002037682104855776,
- -0.004437622614204884,
- -0.021640876308083534,
- -0.05491410195827484,
- -0.005864792503416538,
- -0.06317155063152313,
- -0.008592105470597744,
- 0.013407115824520588,
- -0.012076684273779392,
- -0.0099272970110178,
- -0.04519738256931305,
- -0.04317673295736313,
- 0.03331438824534416,
- -0.03658749535679817,
- 0.018849503248929977,
- 0.019111666828393936
- ]
- },
- {
- "keyword": "ui designer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.13515156507492065,
- 0.07796831429004669,
- -0.027321364730596542,
- 0.04939104989171028,
- -0.025882108137011528,
- -0.022084416821599007,
- 0.10214557498693466,
- -0.014559073373675346,
- -0.04599998891353607,
- -0.046280696988105774,
- -0.06391346454620361,
- -0.05953342467546463,
- 0.023356368765234947,
- -0.04731622710824013,
- -0.01594443805515766,
- -0.0053582931868731976,
- 0.03704502433538437,
- -0.042809728533029556,
- -0.015699785202741623,
- -0.028803404420614243,
- -0.04397182539105415,
- -0.037964899092912674,
- -0.013837515376508236,
- -0.02372395619750023,
- 0.040451835840940475,
- 0.04497784748673439,
- 0.04820043593645096,
- 0.005104328040033579,
- 0.04245933145284653,
- -0.059776026755571365,
- -0.024639302864670753,
- 0.015424457378685474,
- 0.018463561311364174,
- 0.020915143191814423,
- -0.0904965028166771,
- 0.03326509892940521,
- 0.03657219558954239,
- 0.05368999019265175,
- 0.028119979426264763,
- 0.0005370747530832887,
- -0.16101697087287903,
- -0.03304757922887802,
- -0.08536551892757416,
- 0.017055248841643333,
- 0.07120800018310547,
- -0.05051650106906891,
- -0.02893526293337345,
- -0.02875524014234543,
- -0.06625732034444809,
- 0.013578142039477825,
- -0.018956705927848816,
- -0.06961130350828171,
- 0.011394289322197437,
- 0.03674877807497978,
- 0.021496152505278587,
- 0.10577540099620819,
- 0.026324883103370667,
- 0.006651096977293491,
- 0.03434271365404129,
- 0.004095072858035564,
- 0.022419031709432602,
- 0.023199109360575676,
- -0.0007645646692253649,
- 0.052853986620903015,
- 0.040486518293619156,
- 0.052660953253507614,
- -0.08006805926561356,
- 0.016097191721200943,
- -0.031029025092720985,
- -0.1762833148241043,
- 0.03186740726232529,
- -0.12514229118824005,
- 0.05413365364074707,
- 0.03321356698870659,
- 0.11014562100172043,
- -0.07852553576231003,
- 0.01052085030823946,
- -0.08643537759780884,
- -0.0015991854015737772,
- -0.021423351019620895,
- 0.01808425970375538,
- 0.07275205850601196,
- -0.07652296870946884,
- 0.10020487010478973,
- 0.060696590691804886,
- 0.06640642136335373,
- 0.02351570688188076,
- 0.03874994069337845,
- 0.05350262671709061,
- -0.01259003859013319,
- 0.0645546168088913,
- 0.04468275234103203,
- 0.023456213995814323,
- -0.0013208977179601789,
- 0.03893899917602539,
- 0.008004479110240936,
- 0.031077304854989052,
- -0.04986632242798805,
- -0.060635268688201904,
- 0.128876730799675,
- -0.051367491483688354,
- -0.05152818188071251,
- 0.02100108191370964,
- 0.03956945613026619,
- -0.018038948997855186,
- 0.0028001810424029827,
- 0.010820536874234676,
- -0.012369169853627682,
- -0.04004283249378204,
- 0.031495094299316406,
- 0.02368069998919964,
- -0.05495451018214226,
- -0.11642070859670639,
- -0.02205806039273739,
- 0.10638261586427689,
- 0.0007445529918186367,
- -0.06341633945703506,
- 0.047318022698163986,
- 0.05343470349907875,
- -0.009271887131035328,
- -0.02220563031733036,
- 0.04579292982816696,
- -0.12706129252910614,
- -0.027445169165730476,
- -0.056599922478199005,
- -0.019234290346503258,
- 0.015923889353871346,
- -2.13389087442403e-33,
- 0.007168348412960768,
- 0.014815732836723328,
- 0.012604604475200176,
- 0.054099347442388535,
- 0.07945408672094345,
- -0.05239235982298851,
- 0.025790397077798843,
- 0.035931866616010666,
- 0.008290227502584457,
- 0.04342532157897949,
- 0.0059395902790129185,
- 0.02241980843245983,
- -0.0891478955745697,
- 0.05528704449534416,
- 0.020868614315986633,
- -0.019452856853604317,
- 0.04349912330508232,
- 0.012040157802402973,
- -0.056012123823165894,
- -0.08457715809345245,
- 0.029625937342643738,
- -0.02673293836414814,
- -0.02872420661151409,
- 0.03389276936650276,
- 0.004545086529105902,
- 0.09166516363620758,
- 0.05667348951101303,
- 0.01608978398144245,
- -0.0015014387900009751,
- -0.006602705921977758,
- -0.07418584823608398,
- 0.05976993218064308,
- 0.0647609680891037,
- -0.024822717532515526,
- -0.1195802316069603,
- -0.021172357723116875,
- -0.00296436226926744,
- -0.06235275790095329,
- 0.09360642731189728,
- 0.005788178648799658,
- -0.06861446797847748,
- 0.043584056198596954,
- 0.052207689732313156,
- 0.01624218374490738,
- -0.0011816824553534389,
- 0.10963086783885956,
- 0.095438651740551,
- 0.007452038116753101,
- 0.01067259069532156,
- 0.006360427942126989,
- -0.03497994318604469,
- 0.026890909299254417,
- 0.028359713032841682,
- 0.11117129772901535,
- 0.04398244991898537,
- -0.06150965765118599,
- -0.0068280501291155815,
- -0.010474692098796368,
- 0.0602182000875473,
- 0.041711531579494476,
- -0.004109373781830072,
- 0.099550262093544,
- -0.05797826871275902,
- 0.07217170298099518,
- -0.04445162042975426,
- 0.023824410513043404,
- 0.00923710223287344,
- -0.01984460838139057,
- 0.05385448411107063,
- -0.03377325460314751,
- -0.11524266749620438,
- 0.020801661536097527,
- 0.056471049785614014,
- 0.017252085730433464,
- -0.021953849121928215,
- -0.04038252308964729,
- 0.008438847959041595,
- 0.04320761188864708,
- -0.024912793189287186,
- 0.010837479494512081,
- -0.047095660120248795,
- 0.07268482446670532,
- -0.019270218908786774,
- 0.056662507355213165,
- 0.08418364077806473,
- -0.018534215167164803,
- 0.019276926293969154,
- 0.0443810410797596,
- -0.030259571969509125,
- 0.06442724168300629,
- -0.06936311721801758,
- 0.05099570378661156,
- 0.01851634681224823,
- 0.04245932027697563,
- -0.028719907626509666,
- 1.506788148147356e-33,
- -0.03084159828722477,
- -0.052777159959077835,
- -0.056561682373285294,
- -0.05877545103430748,
- 0.03840399906039238,
- -0.022210020571947098,
- -0.062007270753383636,
- 0.021452458575367928,
- 0.024209415540099144,
- 0.04945346340537071,
- 0.08239594846963882,
- 0.04032672569155693,
- 0.06659987568855286,
- -0.03057764656841755,
- -0.02950914017856121,
- 0.03769939765334129,
- -0.026872210204601288,
- -0.008702400140464306,
- -0.1028318777680397,
- -0.02045883797109127,
- 0.0340166799724102,
- 0.046000827103853226,
- -0.09586120396852493,
- -0.09596623480319977,
- -0.10974370688199997,
- 0.011385138146579266,
- 0.04263816401362419,
- 0.04262639954686165,
- 0.012221867218613625,
- 0.039509717375040054,
- 0.04391920939087868,
- -0.15508416295051575,
- -0.03654696047306061,
- -0.006270269863307476,
- 0.06138203293085098,
- 0.01688934676349163,
- -0.04794244468212128,
- -0.0044821323826909065,
- -0.05512477830052376,
- -0.00008286692900583148,
- -0.02395329251885414,
- -0.02872227132320404,
- 0.0075385612435638905,
- 0.06441318988800049,
- -0.017291367053985596,
- -0.00061193504370749,
- -0.0102092195302248,
- -0.005363226868212223,
- -0.007287804502993822,
- -0.02267402969300747,
- 0.02325941063463688,
- 0.05103543400764465,
- 0.02756558731198311,
- -0.09657993167638779,
- -0.03177964687347412,
- -0.08213306963443756,
- 0.01307721994817257,
- -0.03623875230550766,
- 0.10125862061977386,
- -0.015314707532525063,
- 0.00194515788462013,
- 0.015640275552868843,
- 0.061379168182611465,
- -0.015394090674817562,
- -0.0008190621738322079,
- 0.018537811934947968,
- 0.002091705799102783,
- 0.007708259392529726,
- 0.06532175838947296,
- -0.012018652632832527,
- 0.0962589681148529,
- 0.01202070526778698,
- -0.05816536024212837,
- 0.00036542798625305295,
- -0.01721707172691822,
- -0.07788702100515366,
- 0.05345863476395607,
- 0.02014930173754692,
- 0.0038323355838656425,
- 0.04753781110048294,
- 0.035876236855983734,
- 0.035139456391334534,
- 0.0517105907201767,
- 0.046401605010032654,
- -0.015016481280326843,
- 0.01767997071146965,
- -0.004093119874596596,
- 0.06779227405786514,
- 0.045943453907966614,
- -0.03259139880537987,
- -0.04349163547158241,
- 0.03725403919816017,
- 0.05780810862779617,
- 0.02721492387354374,
- -0.062236156314611435,
- -1.2430914964056683e-8,
- -0.055194005370140076,
- 0.006783139426261187,
- 0.05032655969262123,
- -0.03617621958255768,
- -0.025313079357147217,
- -0.014676366001367569,
- -0.06612987071275711,
- -0.024799110367894173,
- -0.001620907336473465,
- -0.04086407274007797,
- 0.060768090188503265,
- 0.015070341527462006,
- -0.04576105624437332,
- 0.05488690733909607,
- 0.01875031180679798,
- -0.10437393188476562,
- -0.027833741158246994,
- 0.08009545505046844,
- 0.013721546158194542,
- -0.092056505382061,
- 0.07138072699308395,
- 0.0109405517578125,
- 0.001973670907318592,
- 0.022299055010080338,
- -0.0010435297153890133,
- 0.017171813175082207,
- -0.03598225861787796,
- -0.03918423131108284,
- -0.06867196410894394,
- 0.07540443539619446,
- 0.016249697655439377,
- 0.03221982717514038,
- 0.062207434326410294,
- -0.0034430797677487135,
- 0.042251184582710266,
- -0.03951263800263405,
- -0.08140156418085098,
- -0.04997125267982483,
- -0.027240997180342674,
- -0.03783918172121048,
- 0.04109145328402519,
- -0.09317991137504578,
- 0.07930818945169449,
- 0.01237453706562519,
- -0.0588764026761055,
- -0.023552466183900833,
- 0.04324378818273544,
- -0.13188223540782928,
- 0.03477500006556511,
- -0.014391729608178139,
- -0.06893271952867508,
- -0.04032609984278679,
- 0.03905835002660751,
- -0.007531634531915188,
- 0.03477814048528671,
- -0.017921727150678635,
- 0.01424163393676281,
- -0.0017902296967804432,
- -0.011750933714210987,
- 0.004839693196117878,
- 0.0013333068927749991,
- 0.05285315215587616,
- -0.024974400177598,
- 0.03736712038516998
- ]
- },
- {
- "keyword": "graphic designer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.052676718682050705,
- 0.0418526865541935,
- 0.0051471698097884655,
- 0.044906098395586014,
- -0.04097268357872963,
- -0.09461507201194763,
- 0.0904516726732254,
- 0.026829630136489868,
- -0.02715621516108513,
- -0.026654057204723358,
- -0.08661056309938431,
- -0.025872208178043365,
- 0.03082648105919361,
- -0.0006686538690701127,
- -0.016798153519630432,
- 0.0479145348072052,
- -0.00637029530480504,
- -0.029544947668910027,
- -0.0010743093444034457,
- -0.06228072568774223,
- -0.019808929413557053,
- -0.06466392427682877,
- -0.03295939043164253,
- -0.05036946013569832,
- 0.028848713263869286,
- 0.04084957018494606,
- 0.09005176275968552,
- -0.0018678075866773725,
- 0.0036656104493886232,
- -0.0835874155163765,
- -0.06917674839496613,
- -0.004415742587298155,
- 0.03087586909532547,
- -0.003712622681632638,
- -0.02165672555565834,
- 0.09417480230331421,
- 0.01368043478578329,
- 0.026856912299990654,
- 0.03375862538814545,
- -0.008084537461400032,
- -0.11196570098400116,
- -0.020757000893354416,
- -0.016447069123387337,
- -0.034913647919893265,
- 0.06001368537545204,
- -0.07135282456874847,
- -0.01856810785830021,
- 0.007966342382133007,
- -0.026640962809324265,
- 0.02267991565167904,
- -0.0326533205807209,
- -0.11178936064243317,
- -0.08201773464679718,
- -0.059221021831035614,
- 0.023835070431232452,
- 0.06411433964967728,
- 0.022969815880060196,
- -0.02906661480665207,
- -0.00031856063287705183,
- -0.023232808336615562,
- 0.03174343705177307,
- -0.05605701357126236,
- -0.047999896109104156,
- 0.07660593092441559,
- 0.058333203196525574,
- -0.007682811003178358,
- 0.01137077808380127,
- 0.013890941627323627,
- -0.025172146037220955,
- -0.0716976523399353,
- 0.000305235298583284,
- -0.07615228742361069,
- -0.1020270437002182,
- 0.022782856598496437,
- 0.07900085300207138,
- -0.033012185245752335,
- 0.10578450560569763,
- -0.02650490216910839,
- 0.09731464833021164,
- -0.010102631524205208,
- 0.09222227334976196,
- 0.02613789774477482,
- -0.012599363923072815,
- 0.0628933310508728,
- 0.03135821595788002,
- 0.035801783204078674,
- -0.005930227227509022,
- 0.11035393923521042,
- 0.03896954283118248,
- 0.010585538111627102,
- 0.03131406381726265,
- 0.027871588245034218,
- 0.026190664619207382,
- 0.043702829629182816,
- -0.030984025448560715,
- -0.038637153804302216,
- -0.017387116327881813,
- -0.04739145562052727,
- -0.03399204835295677,
- 0.16299305856227875,
- -0.0471554696559906,
- -0.0705617219209671,
- 0.07318740338087082,
- 0.06321010738611221,
- -0.042030904442071915,
- 0.03589041531085968,
- 0.025555066764354706,
- 0.04557895287871361,
- -0.09015601128339767,
- 0.04722920432686806,
- -0.02364528551697731,
- 0.03904050588607788,
- -0.0754036009311676,
- 0.02945963852107525,
- 0.03475997596979141,
- 0.025333397090435028,
- -0.05127020552754402,
- 0.024199530482292175,
- 0.054926201701164246,
- 0.039347872138023376,
- -0.0510847307741642,
- 0.05219769477844238,
- -0.0632951483130455,
- -0.026360176503658295,
- -0.10488419234752655,
- -0.03740472346544266,
- -0.08748917281627655,
- -2.2227859816660347e-33,
- 0.03755880892276764,
- -0.003948873374611139,
- 0.04548454284667969,
- 0.011994916014373302,
- 0.00565195269882679,
- 0.022146793082356453,
- -0.009335492737591267,
- 0.03927558287978172,
- 0.04063877835869789,
- 0.046574823558330536,
- 0.003631122410297394,
- 0.005995132960379124,
- -0.07694917917251587,
- 0.15090712904930115,
- 0.034931398928165436,
- 0.009806330315768719,
- 0.0824609324336052,
- 0.06583361327648163,
- -0.0931255891919136,
- -0.020429298281669617,
- -0.040617771446704865,
- 0.04376576468348503,
- -0.03057244047522545,
- 0.015897192060947418,
- -0.04164927825331688,
- 0.10534580796957016,
- -0.021733155474066734,
- 0.0021168997045606375,
- 0.04412822425365448,
- -0.0050987014546990395,
- -0.0005957784596830606,
- 0.04203048720955849,
- -0.007128705736249685,
- 0.0016132289310917258,
- -0.06289303302764893,
- -0.004067097324877977,
- -0.03884316608309746,
- -0.08873814344406128,
- 0.07824850082397461,
- 0.03828726336359978,
- -0.03967572748661041,
- 0.037547141313552856,
- 0.012877690605819225,
- 0.016758641228079796,
- -0.05463584139943123,
- 0.0991976335644722,
- 0.06257451325654984,
- -0.018278703093528748,
- 0.0024560410529375076,
- 0.08720549941062927,
- -0.0871126726269722,
- 0.04882911592721939,
- 0.007650062441825867,
- 0.0532904751598835,
- 0.044290654361248016,
- -0.06381993740797043,
- 0.0015589199028909206,
- -0.05192268639802933,
- 0.031311195343732834,
- 0.019295552745461464,
- -0.044163163751363754,
- 0.15406623482704163,
- -0.012167043052613735,
- 0.0802307203412056,
- -0.025218257680535316,
- 0.004190494772046804,
- 0.019476616755127907,
- 0.005724650342017412,
- 0.07995578646659851,
- 0.008015351369976997,
- -0.07451928406953812,
- 0.03365492820739746,
- 0.11259579658508301,
- -0.07950764149427414,
- -0.013481847010552883,
- 0.012386039830744267,
- -0.03564900532364845,
- 0.02162950485944748,
- -0.02779559977352619,
- 0.07979748398065567,
- -0.04790974408388138,
- 0.0025508753024041653,
- -0.0164510365575552,
- -0.061128195375204086,
- 0.03973755985498428,
- 0.09179410338401794,
- -0.000847951858304441,
- 0.024031944572925568,
- 0.05651003494858742,
- 0.05727974325418472,
- -0.11157907545566559,
- -0.03511504456400871,
- 0.047157857567071915,
- 0.05564384162425995,
- 0.007237479090690613,
- 1.276396673680461e-33,
- -0.03646152839064598,
- -0.01835920847952366,
- 0.03603166341781616,
- 0.04968970641493797,
- 0.044960495084524155,
- 0.01859232597053051,
- -0.013312028720974922,
- -0.010440202429890633,
- -0.0073740542866289616,
- 0.011997486464679241,
- 0.07770310342311859,
- 0.06929466128349304,
- 0.008601045235991478,
- -0.009194305166602135,
- 0.01831790804862976,
- -0.040417805314064026,
- 0.014387900941073895,
- -0.09225259721279144,
- -0.1347218155860901,
- -0.058553796261548996,
- 0.04955897107720375,
- 0.03422185406088829,
- -0.10325681418180466,
- -0.058924149721860886,
- -0.05218184366822243,
- 0.03475820645689964,
- 0.02106228843331337,
- -0.06023081764578819,
- -0.019639912992715836,
- 0.07431531697511673,
- -0.0010448024841025472,
- -0.051571108400821686,
- 0.02915901131927967,
- 0.04907313361763954,
- 0.054141875356435776,
- -0.030969703570008278,
- -0.0031223297119140625,
- 0.027861984446644783,
- -0.001696829916909337,
- 0.07413946837186813,
- -0.013563010841608047,
- -0.02282894030213356,
- 0.04474708065390587,
- 0.057775579392910004,
- -0.05330674350261688,
- 0.007453395985066891,
- 0.014048931188881397,
- -0.013277778401970863,
- 0.043219733983278275,
- -0.06926925480365753,
- -0.08091462403535843,
- 0.03607477992773056,
- 0.07155224680900574,
- -0.09207672625780106,
- 0.0022513915318995714,
- -0.09058442711830139,
- -0.03267207741737366,
- -0.013349688611924648,
- 0.062236227095127106,
- 0.02349640242755413,
- -0.006981485523283482,
- 0.007076176814734936,
- 0.05081772431731224,
- -0.053095459938049316,
- -0.0342312827706337,
- 0.047162480652332306,
- -0.0563792958855629,
- -0.07184340804815292,
- 0.019843431189656258,
- -0.014087219722568989,
- 0.08559903502464294,
- 0.034537430852651596,
- -0.0112962257117033,
- 0.028469936922192574,
- -0.06100718677043915,
- -0.053665317595005035,
- 0.02234170213341713,
- -0.00007990931771928445,
- -0.013330316171050072,
- 0.03504534065723419,
- 0.0033861594274640083,
- -0.03159109503030777,
- -0.020337378606200218,
- 0.0846407413482666,
- -0.03145420178771019,
- 0.01837908662855625,
- -0.060418225824832916,
- -0.08400363475084305,
- 0.02176492102444172,
- -0.08989804983139038,
- -0.07510225474834442,
- 0.09339645504951477,
- 0.04762616753578186,
- -0.020822005346417427,
- -0.03305785730481148,
- -1.2326084153357897e-8,
- -0.011400965042412281,
- -0.025883793830871582,
- 0.003364408854395151,
- -0.09142699092626572,
- 0.03479202091693878,
- 0.05050758272409439,
- -0.015394764952361584,
- -0.06082231551408768,
- -0.002603154396638274,
- 0.020614398643374443,
- 0.06003938987851143,
- -0.02408713474869728,
- 0.01839340664446354,
- 0.023773936554789543,
- 0.032543331384658813,
- -0.09393582493066788,
- 0.08429314941167831,
- 0.02549368143081665,
- 0.013344612903892994,
- -0.07950358092784882,
- 0.0030982980970293283,
- -0.010291109792888165,
- 0.0550304614007473,
- -0.011917486786842346,
- -0.05933285877108574,
- -0.022488409653306007,
- 0.008930675685405731,
- -0.017688972875475883,
- -0.05807177349925041,
- 0.05279361829161644,
- -0.004981759935617447,
- 0.06939193606376648,
- 0.061798546463251114,
- 0.04300481826066971,
- 0.012119514867663383,
- -0.053801968693733215,
- 0.03763817995786667,
- -0.04965116083621979,
- -0.052925072610378265,
- -0.01231767050921917,
- 0.01845262013375759,
- 0.05649265646934509,
- 0.11413871496915817,
- 0.02219492197036743,
- -0.02132047340273857,
- -0.015039417892694473,
- 0.11175865679979324,
- -0.0805242732167244,
- -0.018387984484434128,
- 0.02813994511961937,
- -0.03794309124350548,
- 0.02669128216803074,
- -0.03953380510210991,
- -0.0019053149735555053,
- -0.002340537030249834,
- -0.00733222346752882,
- 0.0341874398291111,
- 0.002954626688733697,
- -0.044607341289520264,
- 0.04068411886692047,
- -0.008323442190885544,
- -0.09547898918390274,
- -0.01858183555305004,
- -0.0377412848174572
- ]
- },
- {
- "keyword": "medical doctor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": false,
- "embedding": [
- -0.010533140040934086,
- 0.091169573366642,
- 0.03856618329882622,
- 0.014291692525148392,
- -0.09429261088371277,
- -0.05778394266963005,
- 0.10461387038230896,
- 0.12093032151460648,
- 0.016244854778051376,
- 0.0006860601715743542,
- -0.09302634000778198,
- 0.009259350597858429,
- -0.05533408001065254,
- 0.015726184472441673,
- -0.11004681885242462,
- -0.03976530209183693,
- -0.06347619742155075,
- -0.023609541356563568,
- 0.004789057187736034,
- -0.032655734568834305,
- -0.10082511603832245,
- 0.11494667083024979,
- -0.007227905560284853,
- 0.03913719952106476,
- 0.01261327974498272,
- 0.010248403064906597,
- -0.016568832099437714,
- -0.04769868031144142,
- -0.010130155831575394,
- -0.04022371768951416,
- 0.0388488844037056,
- 0.005285901948809624,
- 0.051134996116161346,
- -0.01191210001707077,
- -0.011734052561223507,
- -0.0032109725289046764,
- -0.049637582153081894,
- 0.06694278866052628,
- -0.011383740231394768,
- 0.10058927536010742,
- 0.0049148122780025005,
- -0.026071827858686447,
- 0.029446600005030632,
- 0.04595235362648964,
- 0.014265052042901516,
- -0.024872323498129845,
- 0.04830402880907059,
- -0.011561430059373379,
- 0.06292714923620224,
- 0.04336164891719818,
- -0.09126945585012436,
- -0.004071210976690054,
- -0.08303450047969818,
- 0.02075324021279812,
- 0.02557922899723053,
- -0.030617671087384224,
- -0.018957925960421562,
- -0.03865962103009224,
- -0.10583092272281647,
- -0.0119065772742033,
- -0.03875665366649628,
- 0.04539422690868378,
- 0.0019590500742197037,
- 0.03035200573503971,
- 0.04736440256237984,
- 0.0007044425583444536,
- 0.0003051511012017727,
- -0.04026255011558533,
- -0.006754244212061167,
- -0.000884944514837116,
- 0.015002862550318241,
- -0.0426531583070755,
- 0.03779974579811096,
- 0.10487050563097,
- 0.05501101538538933,
- -0.027448352426290512,
- 0.08123379200696945,
- 0.010127116926014423,
- 0.02091282792389393,
- -0.021585993468761444,
- 0.07984109222888947,
- -0.05548056960105896,
- -0.10472847521305084,
- -0.03993279114365578,
- -0.05071823671460152,
- -0.0004322936583776027,
- 0.012535963207483292,
- 0.04338934272527695,
- -0.0680118277668953,
- -0.07612241804599762,
- 0.0553792305290699,
- -0.04462246224284172,
- 0.07920537889003754,
- 0.022499099373817444,
- 0.013126428239047527,
- 0.0487733855843544,
- -0.024225948378443718,
- -0.07391117513179779,
- -0.06430453062057495,
- 0.12991385161876678,
- 0.0010746140033006668,
- -0.010412648320198059,
- 0.009574230760335922,
- 0.07893166691064835,
- 0.014554057270288467,
- -0.01868637278676033,
- -0.0188303180038929,
- -0.03683624044060707,
- 0.008341950364410877,
- -0.003976802807301283,
- 0.01204698160290718,
- 0.03865908458828926,
- -0.026185695081949234,
- 0.0015508596552535892,
- -0.01402219571173191,
- 0.09079920500516891,
- 0.0043534161522984505,
- 0.01530007366091013,
- 0.0293782576918602,
- 0.0336918830871582,
- -0.051612481474876404,
- -0.02225060947239399,
- -0.09252457320690155,
- -0.05288325995206833,
- -0.03015504777431488,
- -0.011014079675078392,
- 0.023014266043901443,
- -3.127127948558191e-33,
- -0.015948936343193054,
- -0.036630697548389435,
- 0.09693679213523865,
- -0.0018111314857378602,
- 0.004134433809667826,
- 0.0786542147397995,
- 0.03354082256555557,
- -0.01708955690264702,
- 0.03896632418036461,
- -0.08967164903879166,
- -0.005512397736310959,
- -0.0002993395319208503,
- -0.006217867601662874,
- -0.019595082849264145,
- -0.05470098555088043,
- 0.0528840608894825,
- -0.05573258548974991,
- 0.04267505183815956,
- -0.04997970163822174,
- 0.02819262072443962,
- -0.020967762917280197,
- 0.054609496146440506,
- -0.09226932376623154,
- 0.06696506589651108,
- -0.021983224898576736,
- 0.015271571464836597,
- 0.005966483615338802,
- -0.06383650004863739,
- 0.1651061326265335,
- -0.00823943130671978,
- -0.02937518246471882,
- 0.03480098396539688,
- -0.01933915726840496,
- -0.061277978122234344,
- -0.002754908986389637,
- 0.024705583229660988,
- -0.07207442075014114,
- -0.012669511139392853,
- 0.03287864103913307,
- 0.0058488924987614155,
- -0.05349736288189888,
- -0.017255395650863647,
- 0.05521957203745842,
- 0.06335417181253433,
- 0.026762016117572784,
- 0.039239659905433655,
- -0.020431913435459137,
- 0.013373545370995998,
- -0.07360618561506271,
- -0.01708109676837921,
- -0.011739129200577736,
- -0.03321094065904617,
- 0.0005911923362873495,
- -0.0024870967026799917,
- 0.08595940470695496,
- -0.051250703632831573,
- 0.01947990618646145,
- -0.012009969912469387,
- -0.01687551476061344,
- 0.02966993674635887,
- 0.0950920581817627,
- 0.10012929141521454,
- -0.007371936459094286,
- 0.04649597406387329,
- -0.03423013910651207,
- -0.08499696105718613,
- 0.023574072867631912,
- -0.08954667299985886,
- 0.021049151197075844,
- 0.02515723556280136,
- -0.08289007842540741,
- 0.06401865184307098,
- 0.038028884679079056,
- 0.003473186632618308,
- -0.07400543242692947,
- 0.007642173673957586,
- -0.023684706538915634,
- -0.030238015577197075,
- -0.06460843235254288,
- -0.005985521711409092,
- -0.03435564786195755,
- 0.03949325159192085,
- 0.006990382913500071,
- 0.08671048283576965,
- 0.03024754300713539,
- -0.026917284354567528,
- -0.06845668703317642,
- 0.031401921063661575,
- 0.01771063730120659,
- -0.018957559019327164,
- -0.14533965289592743,
- -0.010193983092904091,
- 0.04888167977333069,
- 0.09841324388980865,
- -0.05916623771190643,
- 1.1645133968756842e-33,
- -0.024266963824629784,
- -0.02958388812839985,
- -0.014314425177872181,
- 0.07819539308547974,
- 0.09864910691976547,
- -0.023842331022024155,
- 0.04628549516201019,
- 0.029232380911707878,
- 0.03202126547694206,
- 0.05719413608312607,
- 0.04638998582959175,
- -0.01873202621936798,
- 0.018729113042354584,
- -0.003924784250557423,
- -0.029020920395851135,
- 0.008733985014259815,
- -0.028273887932300568,
- -0.029315827414393425,
- -0.050052542239427567,
- 0.05091256648302078,
- -0.03413165733218193,
- 0.047684576362371445,
- -0.03731007128953934,
- -0.017495373263955116,
- -0.03474360331892967,
- 0.042196013033390045,
- 0.08281277865171432,
- 0.02334829606115818,
- -0.037991296499967575,
- -0.06095714122056961,
- -0.0151747427880764,
- -0.00840491522103548,
- -0.04984968900680542,
- -0.11097821593284607,
- -0.062172796577215195,
- 0.12357723712921143,
- -0.024969447404146194,
- -0.01817430928349495,
- -0.01706981472671032,
- 0.030993016436696053,
- 0.0869259312748909,
- -0.0451975055038929,
- 0.04247710853815079,
- 0.06992289423942566,
- 0.02294311672449112,
- -0.0319172628223896,
- -0.046484798192977905,
- 0.03854827582836151,
- 0.02597852610051632,
- 0.0066085392609238625,
- -0.1031629741191864,
- -0.03078770823776722,
- 0.0051166289485991,
- -0.01233944483101368,
- 0.005789559334516525,
- -0.04315786808729172,
- -0.07192692905664444,
- -0.020948322489857674,
- 0.005790429655462503,
- -0.016375308856368065,
- 0.034116681665182114,
- -0.02941303327679634,
- -0.025560874491930008,
- 0.05778822302818298,
- -0.12123264372348785,
- 0.05586710199713707,
- 0.0682341679930687,
- 0.008416273631155491,
- -0.040884219110012054,
- 0.02160371094942093,
- 0.08628877252340317,
- 0.0031981179490685463,
- -0.06365963816642761,
- 0.02118491753935814,
- 0.046877045184373856,
- -0.007978672161698341,
- -0.04418500140309334,
- -0.011144857853651047,
- -0.0001488437847001478,
- -0.04944463074207306,
- 0.007560198660939932,
- -0.13287189602851868,
- 0.010906847193837166,
- 0.14375244081020355,
- -0.09747574478387833,
- 0.009173308499157429,
- 0.0458955392241478,
- -0.05145662650465965,
- -0.024480614811182022,
- -0.018661227077245712,
- 0.02527373656630516,
- 0.047610390931367874,
- -0.04644254595041275,
- -0.04149449244141579,
- 0.056593235582113266,
- -1.3608532967168685e-8,
- -0.011593987233936787,
- -0.04763660207390785,
- -0.01606106571853161,
- -0.06165172904729843,
- 0.04432638734579086,
- -0.07709360867738724,
- -0.07354975491762161,
- 0.01855308748781681,
- 0.022645264863967896,
- 0.027079889550805092,
- -0.012969780713319778,
- -0.001767243491485715,
- -0.000047780242312001064,
- -0.009429432451725006,
- 0.08605725318193436,
- -0.010628864169120789,
- -0.03318994492292404,
- 0.08383674174547195,
- -0.011472784914076328,
- -0.0403054840862751,
- -0.02793322503566742,
- -0.008238393813371658,
- 0.07623408734798431,
- 0.017604900524020195,
- -0.004293173085898161,
- 0.034974463284015656,
- 0.05182075873017311,
- 0.007784792687743902,
- -0.022140001878142357,
- 0.1140735074877739,
- -0.0037174196913838387,
- 0.06887628883123398,
- 0.015322394669055939,
- -0.04616221785545349,
- 0.010545122437179089,
- -0.09651429951190948,
- 0.03755836561322212,
- -0.10492777079343796,
- -0.003985174465924501,
- -0.016139768064022064,
- 0.004589104559272528,
- 0.0537007674574852,
- 0.06348951905965805,
- 0.015545343048870564,
- -0.016737885773181915,
- -0.06511303037405014,
- 0.11128895729780197,
- 0.023273447528481483,
- 0.025372616946697235,
- -0.05899844318628311,
- 0.0273143257945776,
- 0.021749306470155716,
- 0.08139435946941376,
- -0.05096450075507164,
- -0.038424860686063766,
- 0.028380949050188065,
- 0.04930918291211128,
- 0.007653976324945688,
- -0.1305958777666092,
- 0.01650810055434704,
- 0.08864351361989975,
- -0.04408058151602745,
- 0.056809235364198685,
- 0.07705795019865036
- ]
- },
- {
- "keyword": "registered nurse",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": false,
- "embedding": [
- -0.09391538798809052,
- -0.09719005227088928,
- -0.03697187826037407,
- 0.07278203964233398,
- -0.03320322558283806,
- 0.06303862482309341,
- 0.04703153669834137,
- -0.0022625750862061977,
- 0.028116846457123756,
- -0.08617948740720749,
- -0.08702003210783005,
- 0.02173423394560814,
- -0.05837405472993851,
- 0.034219346940517426,
- -0.10998056828975677,
- -0.004659461323171854,
- -0.013533621095120907,
- -0.003725849324837327,
- 0.06935372948646545,
- -0.024535242468118668,
- -0.09858997911214828,
- 0.075187087059021,
- -0.05643615126609802,
- 0.04288753494620323,
- 0.07596202939748764,
- -0.023561976850032806,
- 0.029412154108285904,
- 0.02359933964908123,
- 0.07852443307638168,
- 0.012724606320261955,
- 0.006582589820027351,
- -0.01760072447359562,
- 0.013962284661829472,
- 0.05177677050232887,
- -0.0228143110871315,
- 0.000058838930272031575,
- -0.008492711000144482,
- 0.049549710005521774,
- -0.004967131186276674,
- 0.006121042184531689,
- 0.027556955814361572,
- -0.06438632309436798,
- -0.01631554588675499,
- 0.007527485024183989,
- 0.05163809284567833,
- 0.028107179328799248,
- 0.0485953688621521,
- 0.06255772709846497,
- -0.043627697974443436,
- 0.031244855374097824,
- -0.0006261786911636591,
- -0.07066413015127182,
- -0.072960764169693,
- 0.04534262791275978,
- 0.027459628880023956,
- -0.022753925994038582,
- 0.048154789954423904,
- -0.06682081520557404,
- -0.05245515704154968,
- 0.01435455959290266,
- -0.03265552222728729,
- 0.031522005796432495,
- -0.003968722186982632,
- 0.011691021732985973,
- 0.07620807737112045,
- 0.019705863669514656,
- -0.0541490875184536,
- -0.011291482485830784,
- 0.05465468391776085,
- -0.10765989869832993,
- 0.00035903253592550755,
- -0.0233653225004673,
- 0.06575113534927368,
- 0.06862392276525497,
- 0.023681266233325005,
- -0.02357359789311886,
- 0.08448922634124756,
- 0.004402752500027418,
- 0.07765527814626694,
- 0.014508943073451519,
- -0.0009528553346171975,
- -0.009537925012409687,
- -0.0004928842536173761,
- 0.018340660259127617,
- 0.002300404943525791,
- -0.000025415782147319987,
- 0.0031829250510782003,
- 0.03735346719622612,
- -0.003542979946359992,
- -0.05300421640276909,
- 0.05079708993434906,
- 0.03394465520977974,
- -0.020502444356679916,
- -0.0171231497079134,
- -0.07672018557786942,
- 0.043217744678258896,
- -0.01381231751292944,
- 0.06127748265862465,
- -0.009543512016534805,
- 0.14677652716636658,
- -0.03223973140120506,
- 0.07135862857103348,
- -0.030729146674275398,
- 0.11444156616926193,
- -0.018267426639795303,
- -0.002643754705786705,
- 0.06134333834052086,
- -0.06852241605520248,
- -0.02667991630733013,
- 0.05512579157948494,
- -0.018465351313352585,
- 0.06917241215705872,
- -0.03992617130279541,
- 0.04515819624066353,
- -0.07267875969409943,
- 0.029430368915200233,
- 0.005048487335443497,
- -0.030750058591365814,
- -0.002520945854485035,
- 0.066404327750206,
- -0.046464599668979645,
- 0.009010783396661282,
- -0.059923358261585236,
- -0.021921632811427116,
- 0.01671007089316845,
- 0.005496901459991932,
- 0.03768591582775116,
- -1.8899025119024713e-33,
- -0.04103516414761543,
- 0.02614855207502842,
- 0.08989100158214569,
- 0.0626557320356369,
- 0.055043842643499374,
- 0.029632769525051117,
- 0.015656335279345512,
- -0.037008389830589294,
- -0.031115641817450523,
- 0.07124866545200348,
- -0.037922345101833344,
- 0.0229963231831789,
- -0.023060739040374756,
- -0.03367002680897713,
- -0.00873937364667654,
- -0.01279493048787117,
- -0.07349035888910294,
- 0.03962923213839531,
- -0.003312239656224847,
- 0.11486061662435532,
- 0.0031594724860042334,
- 0.029411809518933296,
- -0.06045638397336006,
- 0.09473180770874023,
- -0.05604727566242218,
- 0.05168461054563522,
- -0.029173176735639572,
- 0.00010853236017283052,
- 0.08008921146392822,
- 0.02249003015458584,
- 0.02386626787483692,
- -0.026538006961345673,
- -0.015436403453350067,
- -0.06387081742286682,
- 0.027117734774947166,
- -0.06701362878084183,
- -0.008497686125338078,
- -0.06306516379117966,
- -0.021199824288487434,
- 0.009186252020299435,
- -0.0138773825019598,
- 0.044261008501052856,
- 0.03451770916581154,
- 0.07782240211963654,
- -0.025819502770900726,
- -0.006606808863580227,
- 0.011251455172896385,
- -0.021424250677227974,
- -0.001578461960889399,
- 0.022260673344135284,
- 0.031558431684970856,
- -0.0799313485622406,
- -0.11964810639619827,
- -0.06201396510004997,
- 0.03906139358878136,
- -0.057633038610219955,
- -0.03622712194919586,
- 0.029947156086564064,
- 0.014360635541379452,
- 0.006684025749564171,
- 0.04234442859888077,
- 0.005798955913633108,
- -0.05624983459711075,
- 0.009514887817203999,
- 0.02880033291876316,
- -0.10766886919736862,
- -0.007721798960119486,
- -0.03742917627096176,
- 0.13199231028556824,
- -0.07310505956411362,
- 0.03804002329707146,
- -0.041327714920043945,
- 0.018414586782455444,
- 0.026147879660129547,
- -0.06240483373403549,
- 0.06951221823692322,
- 0.024957137182354927,
- -0.038206491619348526,
- -0.02296738140285015,
- -0.04398827999830246,
- -0.011077706702053547,
- 0.03900939226150513,
- -0.05514208599925041,
- 0.07419536262750626,
- 0.02443583495914936,
- -0.059902872890233994,
- -0.056221406906843185,
- 0.0055735972709953785,
- -0.040561266243457794,
- -0.014036803506314754,
- -0.030146358534693718,
- 0.07109827548265457,
- 0.07150135189294815,
- -0.01090013887733221,
- -0.07615986466407776,
- 1.3679705305098981e-33,
- -0.042019132524728775,
- 0.005427795462310314,
- -0.10418828576803207,
- 0.05019946023821831,
- 0.03860769420862198,
- -0.08902402222156525,
- 0.000917104771360755,
- -0.032971154898405075,
- 0.05609133839607239,
- 0.0023365202359855175,
- 0.07050849497318268,
- -0.05897746607661247,
- 0.05599246919155121,
- 0.060585856437683105,
- 0.003401067340746522,
- 0.04744713753461838,
- -0.045745424926280975,
- 0.0048850057646632195,
- -0.04800202697515488,
- 0.01656361110508442,
- 0.016458312049508095,
- 0.012629645876586437,
- 0.003621052484959364,
- -0.002007237868383527,
- 0.02070404775440693,
- 0.07445118576288223,
- -0.022623319178819656,
- 0.11172275990247726,
- 0.007470814976841211,
- -0.028268227353692055,
- -0.013369638472795486,
- 0.038088999688625336,
- -0.0022968905977904797,
- 0.06920814514160156,
- -0.08114194869995117,
- 0.02054082229733467,
- 0.10872485488653183,
- -0.002879438456147909,
- 0.002421704586595297,
- -0.05200954154133797,
- 0.1356370449066162,
- -0.016821544617414474,
- -0.10119546204805374,
- 0.13491439819335938,
- 0.022206343710422516,
- -0.07852906733751297,
- 0.04593783617019653,
- 0.06387738883495331,
- 0.05067785456776619,
- -0.047978147864341736,
- -0.12365155667066574,
- -0.05503516271710396,
- 0.014738470315933228,
- 0.008213509805500507,
- 0.010615571402013302,
- 0.002652129391208291,
- -0.0018995886202901602,
- -0.09303107112646103,
- 0.08153866976499557,
- 0.02835732512176037,
- 0.11201027780771255,
- 0.07177506387233734,
- -0.07486837357282639,
- 0.037058841437101364,
- -0.03573144972324371,
- -0.07044029980897903,
- 0.022019140422344208,
- 0.013654420152306557,
- -0.04771942272782326,
- -0.0033126738853752613,
- 0.04742291942238808,
- 0.011540791019797325,
- -0.03407898172736168,
- -0.03023223578929901,
- -0.046518705785274506,
- -0.022225219756364822,
- -0.02340659126639366,
- -0.01871505379676819,
- -0.047970000654459,
- -0.01870228722691536,
- -0.14073236286640167,
- -0.088285431265831,
- -0.060854122042655945,
- 0.043660543859004974,
- -0.039362650364637375,
- -0.026429181918501854,
- 0.09606790542602539,
- 0.00000901670955499867,
- -0.023289674893021584,
- -0.06398677080869675,
- -0.017649304121732712,
- -0.030423391610383987,
- -0.01798947900533676,
- -0.08368007093667984,
- -0.07329543679952621,
- -1.3380749841473971e-8,
- -0.03521808981895447,
- -0.014869130216538906,
- 0.027555586770176888,
- -0.09868072718381882,
- 0.04972386360168457,
- -0.06950417160987854,
- -0.05525574833154678,
- 0.03799324855208397,
- 0.032721471041440964,
- 0.06472305953502655,
- -0.008664825931191444,
- -0.027996554970741272,
- 0.025655202567577362,
- -0.03951634094119072,
- 0.1348177045583725,
- 0.06177482008934021,
- 0.0711112841963768,
- 0.0706072449684143,
- -0.054268162697553635,
- 0.039717093110084534,
- -0.015705879777669907,
- 0.03171125426888466,
- -0.03636183589696884,
- -0.03183772414922714,
- -0.05906272679567337,
- 0.00904348399490118,
- -0.015351495705544949,
- 0.06568827480077744,
- -0.03883202373981476,
- 0.042727306485176086,
- 0.023875296115875244,
- 0.08659788966178894,
- 0.08588757365942001,
- -0.04289579018950462,
- -0.042228858917951584,
- -0.04398207738995552,
- 0.06540872156620026,
- -0.027689583599567413,
- -0.008825302124023438,
- -0.09956447780132294,
- -0.030943045392632484,
- 0.02172258123755455,
- 0.003718751249834895,
- -0.0005397925851866603,
- -0.03364543244242668,
- 0.037661317735910416,
- 0.024846455082297325,
- -0.037641070783138275,
- 0.057065900415182114,
- -0.04115258902311325,
- 0.06280777603387833,
- -0.0676252543926239,
- 0.06264031678438187,
- -0.004843609873205423,
- -0.03388058766722679,
- 0.05069120228290558,
- -0.012914502993226051,
- 0.010105064138770103,
- -0.03311832249164581,
- 0.021253861486911774,
- -0.03650979697704315,
- 0.02936636283993721,
- 0.05072401091456413,
- -0.03447979688644409
- ]
- },
- {
- "keyword": "healthcare worker",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": false,
- "embedding": [
- -0.07837805151939392,
- 0.08487231284379959,
- -0.006337112281471491,
- -0.009000982157886028,
- -0.06380724906921387,
- 0.011702393181622028,
- 0.13079501688480377,
- -0.006501765921711922,
- -0.05506569519639015,
- -0.03366754949092865,
- -0.03395703434944153,
- 0.01361791230738163,
- -0.01760670356452465,
- -0.0019234030041843653,
- -0.0609065406024456,
- 0.017061112448573112,
- 0.04031899571418762,
- 0.029733045026659966,
- -0.0003614008310250938,
- -0.03222915902733803,
- -0.08603864163160324,
- 0.06932681798934937,
- -0.01412756834179163,
- -0.0180435199290514,
- 0.0612710565328598,
- -0.008224918507039547,
- 0.028220470994710922,
- 0.02166290208697319,
- 0.01385973859578371,
- 0.0035759040620177984,
- 0.010717217810451984,
- -0.083965964615345,
- -0.031187284737825394,
- 0.0624602846801281,
- 0.01271324697881937,
- 0.028086813166737556,
- 0.00551946135237813,
- 0.11284306645393372,
- -0.009693940170109272,
- 0.03926217183470726,
- -0.013771329075098038,
- -0.037361521273851395,
- 0.005411744583398104,
- -0.004783248528838158,
- 0.0494726300239563,
- -0.0033855955116450787,
- 0.010800078511238098,
- 0.019016658887267113,
- 0.03399764001369476,
- 0.0061409929767251015,
- -0.05550454184412956,
- -0.04108355939388275,
- -0.0008783669909462333,
- 0.050503507256507874,
- 0.07844949513673782,
- -0.06371244788169861,
- -0.0027678911574184895,
- -0.024960003793239594,
- -0.08887777477502823,
- 0.011717225424945354,
- 0.018868153914809227,
- -0.018039662390947342,
- 0.04308269917964935,
- 0.04216313734650612,
- 0.05771053582429886,
- -0.0013199649984017015,
- -0.03730413317680359,
- -0.07349329441785812,
- 0.0013160578673705459,
- -0.09178567677736282,
- -0.014881840907037258,
- -0.07435856759548187,
- -0.00530990632250905,
- 0.07100944966077805,
- 0.09012404084205627,
- -0.0585240013897419,
- 0.0430772490799427,
- -0.01922629587352276,
- 0.05486598238348961,
- -0.03556261584162712,
- 0.039227891713380814,
- -0.028009796515107155,
- -0.022152962163090706,
- 0.10718023031949997,
- -0.023863621056079865,
- -0.04187106341123581,
- 0.0037110329139977694,
- 0.02791053242981434,
- 0.01687983050942421,
- -0.045012250542640686,
- -0.009881497360765934,
- -0.010864374227821827,
- 0.03723014518618584,
- -0.04926173761487007,
- 0.024099022150039673,
- -0.049592189490795135,
- -0.03634943068027496,
- 0.07136722654104233,
- -0.11563214659690857,
- 0.11637192964553833,
- -0.022737693041563034,
- -0.03084372729063034,
- 0.09813029319047928,
- 0.05182528868317604,
- -0.0018168811220675707,
- 0.023616043850779533,
- -0.02567778155207634,
- 0.01627584733068943,
- -0.04305543750524521,
- -0.0009026274783536792,
- 0.02825835533440113,
- 0.06648233532905579,
- -0.0917515680193901,
- -0.013193425722420216,
- 0.025962727144360542,
- 0.04860181361436844,
- 0.018266092985868454,
- -0.020648716017603874,
- -0.09976464509963989,
- 0.03816278278827667,
- -0.01981884054839611,
- -0.0308693777769804,
- -0.13179850578308105,
- -0.022527052089571953,
- -0.07063572108745575,
- -0.050462666898965836,
- 0.056128788739442825,
- -3.9582424948658734e-33,
- 0.021777156740427017,
- -0.009236409328877926,
- 0.14019159972667694,
- 0.007815448567271233,
- 0.07191722095012665,
- 0.054960545152425766,
- 0.020361488685011864,
- -0.03939063102006912,
- 0.033965177834033966,
- -0.023369677364826202,
- -0.04322653263807297,
- 0.021965574473142624,
- 0.016499554738402367,
- 0.00809923093765974,
- -0.08072405308485031,
- 0.00615040585398674,
- -0.04814135283231735,
- 0.026266997680068016,
- -0.16472917795181274,
- 0.0969788059592247,
- -0.016549112275242805,
- -0.037558455020189285,
- -0.10961804538965225,
- 0.02947862073779106,
- -0.017867436632514,
- 0.0360105000436306,
- 0.05441228300333023,
- -0.03678357973694801,
- 0.08190032094717026,
- 0.00677688280120492,
- -0.05700929835438728,
- 0.07878165692090988,
- -0.02404959313571453,
- -0.05690447986125946,
- -0.016156814992427826,
- -0.02754063718020916,
- -0.06276711076498032,
- -0.051205359399318695,
- 0.018912911415100098,
- -0.09043300151824951,
- -0.04736693948507309,
- 0.007053867913782597,
- 0.1098509132862091,
- 0.040447600185871124,
- 0.0008117418619804084,
- 0.020398737862706184,
- 0.052372366189956665,
- -0.02506912313401699,
- 0.007056382484734058,
- 0.045040760189294815,
- -0.02934083342552185,
- -0.0027448509354144335,
- -0.02162949927151203,
- 0.0077506378293037415,
- 0.04858994856476784,
- -0.07564719766378403,
- 0.08923675119876862,
- 0.07763689756393433,
- 0.001556894276291132,
- 0.02008504420518875,
- 0.028609538450837135,
- 0.027130993083119392,
- -0.051760319620370865,
- 0.034779950976371765,
- -0.02240263670682907,
- -0.08014092594385147,
- -0.03680327907204628,
- -0.020373240113258362,
- 0.0867837592959404,
- 0.04406339302659035,
- 0.022108983248472214,
- 0.08589520305395126,
- 0.060178954154253006,
- -0.01983710750937462,
- -0.10564016550779343,
- 0.0729680135846138,
- -0.005475189536809921,
- -0.02665778622031212,
- -0.06006169319152832,
- -0.010055620223283768,
- -0.009578499011695385,
- 0.019608179107308388,
- 0.021989434957504272,
- 0.048482317477464676,
- 0.023764360696077347,
- 0.04358376935124397,
- -0.013568384572863579,
- 0.017334500327706337,
- 0.031792860478162766,
- -0.001500466838479042,
- -0.07556014508008957,
- 0.019349442794919014,
- 0.08667318522930145,
- 0.0696307122707367,
- -0.0752577930688858,
- 1.300290892248328e-33,
- -0.02769480273127556,
- -0.017196746543049812,
- -0.05745963379740715,
- 0.017660902813076973,
- 0.11835697293281555,
- -0.055690549314022064,
- 0.044499609619379044,
- 0.01661546155810356,
- 0.005044728051871061,
- 0.07678229361772537,
- 0.08318886160850525,
- 0.02373092621564865,
- 0.005490402225404978,
- 0.023500841110944748,
- 0.009599225595593452,
- 0.0672864317893982,
- -0.04786939546465874,
- -0.04683160036802292,
- -0.07743041962385178,
- 0.07281379401683807,
- -0.014584104530513287,
- 0.0521017462015152,
- 0.031776901334524155,
- 0.03970629721879959,
- 0.013058464042842388,
- 0.08442021906375885,
- 0.016995619982481003,
- 0.024279523640871048,
- 0.0035615013912320137,
- -0.0748613253235817,
- -0.09339316189289093,
- 0.054759442806243896,
- -0.010683998465538025,
- -0.08274336904287338,
- -0.0231634434312582,
- 0.0032902820967137814,
- -0.04246978089213371,
- -0.010822288691997528,
- 0.01582908444106579,
- 0.02701690047979355,
- 0.1276107281446457,
- -0.0890812948346138,
- -0.012821977026760578,
- 0.02004946768283844,
- 0.023293402045965195,
- -0.04066384583711624,
- -0.041783690452575684,
- -0.012570662423968315,
- -0.04297979176044464,
- -0.00367278466001153,
- -0.029125535860657692,
- 0.011785122565925121,
- 0.02766035869717598,
- 0.07530686259269714,
- -0.006476847920566797,
- 0.008080416359007359,
- -0.059729792177677155,
- -0.10502447187900543,
- -0.036783963441848755,
- -0.0007888077525421977,
- 0.02998216077685356,
- -0.03973962739109993,
- 0.013693934306502342,
- 0.06322625279426575,
- -0.10066927969455719,
- -0.03191031888127327,
- 0.017139988020062447,
- -0.04362398386001587,
- -0.033350180834531784,
- -0.039904624223709106,
- 0.017381399869918823,
- -0.03214764595031738,
- 0.023769328370690346,
- -0.015600178390741348,
- -0.018749097362160683,
- -0.04602121189236641,
- -0.04222682863473892,
- -0.028360381722450256,
- 0.00010351260425522923,
- -0.002343863947317004,
- -0.07324332743883133,
- -0.14114151895046234,
- 0.04042395204305649,
- 0.030927132815122604,
- -0.0030709898564964533,
- 0.02771838754415512,
- -0.032873500138521194,
- -0.05187995731830597,
- -0.033248960971832275,
- -0.0328168123960495,
- -0.05544862523674965,
- -0.0039476510137319565,
- -0.06558490544557571,
- -0.009467099793255329,
- -0.04803716763854027,
- -1.230555124465127e-8,
- -0.022451462224125862,
- -0.02357524074614048,
- -0.006985742133110762,
- -0.12418524920940399,
- -0.011116414330899715,
- -0.08133795112371445,
- -0.06150495260953903,
- -0.00879692193120718,
- 0.07066546380519867,
- 0.08909065276384354,
- -0.024265876039862633,
- 0.0011512419441714883,
- 0.05553760752081871,
- 0.002432583598420024,
- 0.12463036924600601,
- 0.0030251657590270042,
- -0.023371070623397827,
- 0.05414053052663803,
- -0.037743326276540756,
- -0.03293425217270851,
- 0.05045167729258537,
- 0.0012056354898959398,
- 0.006321297958493233,
- 0.03792857006192207,
- -0.06152508407831192,
- 0.08106803148984909,
- -0.030239403247833252,
- 0.042981043457984924,
- 0.009011919610202312,
- 0.10931087285280228,
- -0.04375447332859039,
- 0.11625845730304718,
- -0.003889031009748578,
- -0.03484326973557472,
- -0.040217991918325424,
- -0.025435103103518486,
- 0.06192901358008385,
- -0.12180158495903015,
- 0.0018653173465281725,
- -0.03305013105273247,
- 0.09537462890148163,
- 0.07087696343660355,
- -0.01798301935195923,
- 0.02407652512192726,
- 0.028387654572725296,
- -0.07884620875120163,
- 0.03010030835866928,
- 0.0012207977706566453,
- -0.005665804725140333,
- -0.031504735350608826,
- 0.015814702957868576,
- 0.02576596289873123,
- 0.06353019922971725,
- 0.009697007946670055,
- -0.011331473477184772,
- -0.020579438656568527,
- 0.030845994129776955,
- -0.026287516579031944,
- -0.08628176897764206,
- 0.03717811778187752,
- 0.06546836346387863,
- -0.0602642297744751,
- 0.07158190757036209,
- 0.027598200365900993
- ]
- },
- {
- "keyword": "organization",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.03223314881324768,
- -0.004197736270725727,
- -0.03945230320096016,
- 0.055839020758867264,
- -0.04207013547420502,
- -0.030497286468744278,
- 0.03702131658792496,
- -0.06288893520832062,
- 0.032944824546575546,
- 0.020053735002875328,
- 0.014466725289821625,
- -0.03745204955339432,
- -0.01431923359632492,
- 0.0290182176977396,
- 0.00245159980840981,
- -0.012589924037456512,
- -0.014736557379364967,
- 0.05042750760912895,
- -0.06490976363420486,
- -0.09669166058301926,
- -0.017616961151361465,
- -0.05349282547831535,
- -0.008238822221755981,
- 0.030301427468657494,
- -0.05863669887185097,
- 0.07930769771337509,
- -0.09437520056962967,
- 0.020174173638224602,
- -0.031835973262786865,
- -0.11356797814369202,
- -0.014872364699840546,
- 0.005073328502476215,
- 0.1410432904958725,
- 0.02990063652396202,
- 0.029032308608293533,
- 0.08945374190807343,
- 0.014933294616639614,
- -0.020982081070542336,
- 0.025327168405056,
- 0.009169184602797031,
- -0.06238304451107979,
- 0.0035561020486056805,
- -0.01266159676015377,
- -0.05982007086277008,
- -0.01182267814874649,
- 0.0211776215583086,
- 0.021921563893556595,
- 0.05376957356929779,
- -0.02289615571498871,
- 0.0440780371427536,
- 0.03068722039461136,
- -0.061974044889211655,
- -0.008805976249277592,
- 0.08513787388801575,
- 0.006312212441116571,
- 0.08232627809047699,
- -0.03693969547748566,
- -0.061969250440597534,
- -0.0719747245311737,
- -0.10711339861154556,
- 0.056412599980831146,
- -0.04039720445871353,
- -0.007309210952371359,
- 0.07876989245414734,
- 0.08806951344013214,
- 0.006749503314495087,
- 0.013054678216576576,
- 0.0932280421257019,
- -0.05293101817369461,
- -0.08175159245729446,
- 0.11446752399206161,
- -0.04933322221040726,
- 0.01520541962236166,
- 0.050151728093624115,
- 0.08500917255878448,
- -0.009718702174723148,
- 0.028584223240613937,
- -0.0006852103979326785,
- 0.08513861894607544,
- -0.030708160251379013,
- 0.061404161155223846,
- 0.05442743003368378,
- -0.02376505360007286,
- 0.054385922849178314,
- -0.040395475924015045,
- 0.019251152873039246,
- 0.028051069006323814,
- -0.0009432631777599454,
- -0.029754741117358208,
- 0.0454978421330452,
- -0.07086975872516632,
- -0.019373498857021332,
- 0.09346719831228256,
- -0.060116369277238846,
- -0.01214794535189867,
- 0.026558609679341316,
- 0.05062663555145264,
- -0.05662166327238083,
- -0.015633096918463707,
- 0.23724302649497986,
- -0.008658148348331451,
- 0.031715985387563705,
- -0.01705106347799301,
- -0.041395969688892365,
- -0.03190555050969124,
- -0.04846329241991043,
- -0.014150415547192097,
- -0.03580154851078987,
- 0.03140167519450188,
- 0.051748842000961304,
- -0.044829048216342926,
- 0.06646740436553955,
- -0.07792143523693085,
- -0.03267255425453186,
- -0.047961533069610596,
- -0.02986353263258934,
- -0.03130022808909416,
- 0.029942981898784637,
- 0.01255128439515829,
- -0.009954635053873062,
- 0.05187796801328659,
- 0.03461502864956856,
- -0.007599269039928913,
- 0.034219786524772644,
- -0.004547369200736284,
- 0.02131611481308937,
- -0.053321704268455505,
- -5.874394162964191e-33,
- -0.023183859884738922,
- 0.013772929087281227,
- 0.00509684020653367,
- 0.030989928171038628,
- 0.04510392248630524,
- -0.008610757067799568,
- -0.04398113489151001,
- 0.04285480082035065,
- -0.09681378304958344,
- 0.06090901046991348,
- -0.07600966840982437,
- 0.09690231829881668,
- 0.059373192489147186,
- -0.03626009821891785,
- 0.08889030665159225,
- -0.03871133178472519,
- 0.0032976490911096334,
- 0.07890480756759644,
- 0.029513735324144363,
- -0.012741051614284515,
- -0.07744164019823074,
- 0.07645871490240097,
- -0.02933490090072155,
- 0.02464546449482441,
- 0.02177567221224308,
- 0.02582813985645771,
- -0.07216327637434006,
- -0.037912048399448395,
- -0.01061599887907505,
- 0.02006862685084343,
- 0.05903689190745354,
- 0.005152295343577862,
- -0.039360519498586655,
- -0.06756513565778732,
- 0.00013774525723420084,
- -0.008442099206149578,
- 0.009696269407868385,
- -0.06104830652475357,
- 0.0201024878770113,
- -0.08340436220169067,
- -0.017985379323363304,
- 0.02077632024884224,
- 0.014371328987181187,
- 0.004226722754538059,
- 0.013869674876332283,
- 0.016346637159585953,
- 0.05961524695158005,
- -0.051556188613176346,
- 0.10999332368373871,
- 0.06444276124238968,
- 0.007196358870714903,
- -0.043433140963315964,
- 0.016564296558499336,
- -0.03169115260243416,
- 0.0430862195789814,
- -0.08346768468618393,
- 0.015077600255608559,
- -0.015487453900277615,
- 0.018994204699993134,
- 0.0035586354788392782,
- 0.03281461074948311,
- 0.10472054779529572,
- -0.05542799457907677,
- 0.07060746103525162,
- 0.00736716715618968,
- -0.03290305659174919,
- -0.015457644127309322,
- -0.025827037170529366,
- 0.12372856587171555,
- -0.05562629923224449,
- -0.028771430253982544,
- -0.0066213286481797695,
- -0.009672734886407852,
- 0.033771030604839325,
- -0.052461475133895874,
- 0.019191136583685875,
- 0.017626047134399414,
- -0.00019104551756754518,
- -0.06746844947338104,
- 0.0080052949488163,
- -0.020791741088032722,
- 0.0027161804027855396,
- 0.05672440677881241,
- 0.03867555037140846,
- 0.017094137147068977,
- -0.02147950790822506,
- 0.07853572815656662,
- -0.0015629561385139823,
- -0.03501690924167633,
- 0.08627906441688538,
- -0.08378802239894867,
- 0.030401749536395073,
- 0.08257989585399628,
- 0.11528687924146652,
- 0.007836377248167992,
- 4.325613866856609e-33,
- 0.045668795704841614,
- -0.05421974137425423,
- 0.02892335318028927,
- -0.047764308750629425,
- 0.1342712640762329,
- 0.004235211759805679,
- -0.009140277281403542,
- -0.07806524634361267,
- 0.022342203184962273,
- 0.07699628919363022,
- -0.02280408889055252,
- -0.05350031331181526,
- 0.023015934973955154,
- 0.014236469753086567,
- 0.008774727582931519,
- -0.03039603680372238,
- 0.05980474874377251,
- -0.042726531624794006,
- 0.00009705442062113434,
- -0.00906855147331953,
- -0.03652732074260712,
- -0.001998128369450569,
- -0.0007578887161798775,
- -0.009738868102431297,
- -0.01149009633809328,
- 0.015193161554634571,
- -0.014688133262097836,
- -0.043273165822029114,
- -0.013176679611206055,
- 0.02380772866308689,
- -0.01037104893475771,
- -0.04986986145377159,
- -0.06744901090860367,
- 0.10752468556165695,
- 0.004307403229176998,
- 0.040215738117694855,
- -0.02217032201588154,
- -0.0065754554234445095,
- -0.048871226608753204,
- -0.024904955178499222,
- 0.05374784767627716,
- 0.0065485634841024876,
- -0.03449859097599983,
- 0.06421267241239548,
- -0.002340264618396759,
- -0.008542153052985668,
- -0.0644276887178421,
- -0.00047493225429207087,
- -0.05404580757021904,
- 0.05722055211663246,
- -0.11070653796195984,
- -0.0417826883494854,
- -0.01594514399766922,
- -0.08905936777591705,
- 0.04664416238665581,
- 0.1008785218000412,
- -0.021748313680291176,
- -0.06172369793057442,
- 0.016096053645014763,
- 0.02087513916194439,
- 0.006848897784948349,
- 0.012661900371313095,
- -0.061638060957193375,
- 0.1416923701763153,
- -0.035022277384996414,
- 0.0066847712732851505,
- -0.013361088000237942,
- 0.01994953863322735,
- -0.07911328226327896,
- 0.015599042177200317,
- 0.02864866517484188,
- -0.026469089090824127,
- -0.10961756110191345,
- 0.04119926691055298,
- -0.06481897830963135,
- -0.0335543267428875,
- -0.06027166545391083,
- -0.02482742816209793,
- -0.04642483964562416,
- -0.03639065474271774,
- -0.06796886771917343,
- -0.04563688486814499,
- 0.010652759112417698,
- 0.06221679598093033,
- -0.015627238899469376,
- 0.01363569125533104,
- 0.11419550329446793,
- 0.0026905520353466272,
- 0.00886153057217598,
- 0.07753539830446243,
- 0.02254597097635269,
- -0.11638575792312622,
- 0.008019057102501392,
- -0.002319824881851673,
- 0.008963136933743954,
- -1.2516977676568786e-8,
- -0.05696462467312813,
- -0.013413690961897373,
- 0.04929265007376671,
- -0.0391002781689167,
- 0.06435281038284302,
- -0.0903313159942627,
- 0.005123759154230356,
- -0.00950311217457056,
- 0.03133130446076393,
- 0.09461037814617157,
- 0.02055947855114937,
- 0.04721558839082718,
- -0.04129314422607422,
- 0.053089503198862076,
- 0.09274269640445709,
- 0.0014824647223576903,
- -0.06986384093761444,
- 0.023322099819779396,
- -0.0587787926197052,
- 0.019861862063407898,
- 0.023530976846814156,
- 0.020952168852090836,
- -0.06518705189228058,
- -0.054815661162137985,
- 0.001712500466965139,
- -0.014989343471825123,
- 0.0035667673218995333,
- 0.018101820722222328,
- -0.033796630799770355,
- 0.06060557812452316,
- 0.048924531787633896,
- 0.07844392210245132,
- -0.06517161428928375,
- 0.011269684880971909,
- -0.08832921087741852,
- -0.04893936961889267,
- -0.000008716391675989144,
- 0.026149531826376915,
- 0.052450571209192276,
- -0.06453221291303635,
- -0.0358264334499836,
- 0.08600752800703049,
- 0.01769142597913742,
- 0.034324027597904205,
- 0.0010574411135166883,
- -0.0006250562728382647,
- -0.02524620294570923,
- 0.009886831045150757,
- -0.0050539602525532246,
- -0.1256004124879837,
- 0.011883786879479885,
- 0.014986009337008,
- -0.011182565242052078,
- 0.025104299187660217,
- 0.01246684417128563,
- -0.06446240842342377,
- 0.04624774679541588,
- 0.0035879123024642467,
- -0.024510638788342476,
- -0.027583153918385506,
- 0.10611476749181747,
- -0.07541649788618088,
- 0.07284629344940186,
- -0.014293437823653221
- ]
- },
- {
- "keyword": "company",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07027065008878708,
- 0.005201889667659998,
- -0.013612418435513973,
- 0.020013179630041122,
- -0.0423588864505291,
- -0.02782118320465088,
- 0.1288791298866272,
- -0.02076701819896698,
- 0.022254938259720802,
- -0.061079077422618866,
- 0.013694592751562595,
- -0.04331894591450691,
- -0.012715253047645092,
- -0.019886791706085205,
- -0.053853839635849,
- -0.049939610064029694,
- 0.010310466401278973,
- 0.05326395854353905,
- -0.04403293505311012,
- -0.11616518348455429,
- -0.09604349732398987,
- -0.07831614464521408,
- -0.012231220491230488,
- 0.026040928438305855,
- 0.01630975678563118,
- 0.09185735136270523,
- -0.019586775451898575,
- 0.06634247303009033,
- -0.024043330922722816,
- -0.1351373940706253,
- -0.035877078771591187,
- 0.011449763551354408,
- 0.10048646479845047,
- -0.03416793420910835,
- 0.014099650084972382,
- 0.033137496560811996,
- -0.037538960576057434,
- -0.03491007164120674,
- 0.016276320442557335,
- 0.0004184628778602928,
- -0.042351748794317245,
- -0.018130876123905182,
- -0.02953372150659561,
- -0.01822703704237938,
- 0.005285613238811493,
- 0.02129393257200718,
- 0.05081880837678909,
- 0.02832723781466484,
- 0.04695303365588188,
- 0.05654679611325264,
- -0.014165624976158142,
- -0.04467213898897171,
- 0.008925831876695156,
- 0.013353091664612293,
- -0.002957964548841119,
- 0.05246811360120773,
- -0.08145350217819214,
- -0.03203625977039337,
- -0.014449294656515121,
- -0.09213798493146896,
- 0.08923138678073883,
- -0.04757344350218773,
- -0.005816800519824028,
- 0.0652393326163292,
- 0.08632031083106995,
- 0.01630385033786297,
- 0.011151893995702267,
- 0.06522185355424881,
- -0.09505707025527954,
- -0.06755740195512772,
- 0.07714072614908218,
- -0.029240187257528305,
- 0.008173306472599506,
- 0.06379967927932739,
- -0.018542548641562462,
- 0.041439950466156006,
- 0.021751804277300835,
- 0.0010721780126914382,
- 0.10169661045074463,
- -0.0079050213098526,
- 0.010970997624099255,
- 0.019422804936766624,
- -0.02360362373292446,
- 0.07974474132061005,
- -0.07223152369260788,
- -0.0021402756683528423,
- 0.0802885964512825,
- 0.04474731162190437,
- 0.020722800865769386,
- 0.04383270442485809,
- -0.036030031740665436,
- -0.0061901165172457695,
- 0.019196270033717155,
- -0.0000983801728580147,
- -0.1285400539636612,
- 0.001018480397760868,
- 0.009569580666720867,
- -0.0002084284060401842,
- -0.014690444804728031,
- 0.23551957309246063,
- 0.004730005282908678,
- 0.028621243312954903,
- -0.03654363751411438,
- -0.046522896736860275,
- -0.018114641308784485,
- -0.015169396065175533,
- -0.05518123507499695,
- 0.09441650658845901,
- 0.02719094417989254,
- 0.045369263738393784,
- -0.0661620944738388,
- 0.06488324701786041,
- -0.10350243002176285,
- 0.03175995871424675,
- -0.02834545075893402,
- -0.021066131070256233,
- -0.0508546307682991,
- 0.05023086443543434,
- 0.02365337684750557,
- -0.03496357426047325,
- 0.029971495270729065,
- 0.08515024185180664,
- -0.00804197322577238,
- 0.013110470958054066,
- -0.06572409719228745,
- -0.049035727977752686,
- -0.015493426471948624,
- -5.600883076150738e-33,
- 0.007531448267400265,
- 0.00551773514598608,
- 0.02552548237144947,
- 0.09058644622564316,
- -0.00013960401702206582,
- 0.03815065696835518,
- 0.010076084174215794,
- 0.08668506890535355,
- -0.058957070112228394,
- 0.06062626093626022,
- -0.08278901129961014,
- -0.025402706116437912,
- 0.04855706915259361,
- -0.04903252422809601,
- 0.08706153184175491,
- 0.013261226937174797,
- 0.020209480077028275,
- -0.03513164818286896,
- -0.023903867229819298,
- -0.04757213220000267,
- -0.07110986858606339,
- 0.06090129166841507,
- -0.06553380191326141,
- 0.10512292385101318,
- -0.015299479477107525,
- -0.06292063742876053,
- -0.010494192130863667,
- -0.027576489374041557,
- 0.03619672730565071,
- 0.03478279709815979,
- 0.10398026555776596,
- 0.0009889272041618824,
- 0.013484656810760498,
- -0.03783862665295601,
- -0.013771642930805683,
- -0.0071035041473805904,
- -0.045290157198905945,
- -0.12119884788990021,
- 0.0003224161046091467,
- 0.015980657190084457,
- 0.007221730891615152,
- 0.004555704537779093,
- -0.024224163964390755,
- 0.03156806528568268,
- -0.013336759060621262,
- 0.024272752925753593,
- 0.017225973308086395,
- 0.006028257310390472,
- 0.05716009438037872,
- 0.048181552439928055,
- -0.05884932726621628,
- -0.010766001418232918,
- -0.03764813393354416,
- -0.0029247640632092953,
- 0.08456680923700333,
- -0.010643448680639267,
- -0.014793257229030132,
- -0.00834666844457388,
- 0.008201252669095993,
- 0.0060080126859247684,
- -0.014952022582292557,
- 0.13109023869037628,
- -0.07201477140188217,
- 0.0281355157494545,
- -0.023851528763771057,
- 0.05104401707649231,
- 0.06177689880132675,
- -0.013906625099480152,
- 0.06330743432044983,
- -0.011667154729366302,
- -0.010073687881231308,
- -0.041628167033195496,
- 0.07296917587518692,
- 0.03246777877211571,
- -0.05765029788017273,
- 0.02827199175953865,
- -0.027343083173036575,
- 0.03371383249759674,
- -0.04936860874295235,
- 0.050763506442308426,
- 0.0017725700745359063,
- 0.010154026560485363,
- 0.06420020759105682,
- 0.0562191940844059,
- 0.04189073666930199,
- 0.009880855679512024,
- 0.046257227659225464,
- -0.0598193034529686,
- 0.025223609060049057,
- 0.11881272494792938,
- -0.1287754476070404,
- 0.03099881112575531,
- 0.04356815293431282,
- 0.09563295543193817,
- -0.02592437155544758,
- 4.231032122021509e-33,
- 0.023795802146196365,
- -0.07196235656738281,
- 0.011633441783487797,
- -0.02145487815141678,
- 0.01110442541539669,
- -0.016313891857862473,
- 0.04480346664786339,
- 0.024740047752857208,
- -0.04932088032364845,
- 0.11809978634119034,
- -0.03558807447552681,
- -0.048114173114299774,
- 0.04234985634684563,
- 0.048911113291978836,
- -0.06966116279363632,
- 0.05634906142950058,
- 0.09219687432050705,
- -0.0712655633687973,
- -0.039905156940221786,
- 0.0038626468740403652,
- -0.09876962751150131,
- -0.04374932497739792,
- -0.041040536016225815,
- 0.02064760960638523,
- -0.026551198214292526,
- 0.0592656172811985,
- -0.02363889291882515,
- -0.05095040425658226,
- 0.017234165221452713,
- 0.020837219431996346,
- 0.004738571122288704,
- -0.016751263290643692,
- -0.11080542206764221,
- 0.07890678942203522,
- -0.007385257165879011,
- 0.04492247477173805,
- -0.04839332029223442,
- 0.035362713038921356,
- -0.0006702904356643558,
- -0.056331004947423935,
- 0.019273294135928154,
- -0.007269997615367174,
- 0.006687260698527098,
- 0.10930687189102173,
- -0.05990203842520714,
- -0.03704608231782913,
- 0.00009012504597194493,
- -0.08327378332614899,
- 0.04007253423333168,
- 0.016544856131076813,
- -0.0890442430973053,
- -0.01636945642530918,
- 0.00982680544257164,
- -0.042051833122968674,
- -0.03885075822472572,
- 0.020711157470941544,
- 0.006101077422499657,
- -0.006705031730234623,
- -0.042058367282152176,
- 0.019863754510879517,
- -0.022767236456274986,
- 0.015615861862897873,
- 0.023744048550724983,
- 0.11109389364719391,
- -0.00978204794228077,
- 0.050323810428380966,
- -0.0029569114558398724,
- -0.03533346951007843,
- 0.02322588488459587,
- -0.06364942342042923,
- 0.04811951145529747,
- 0.009882011450827122,
- -0.04660431295633316,
- 0.05622009187936783,
- -0.06981875747442245,
- -0.057136524468660355,
- -0.0754675567150116,
- -0.0378328412771225,
- -0.03915413096547127,
- -0.05617492273449898,
- 0.054181057959795,
- -0.043315839022397995,
- 0.00340499565936625,
- 0.10746710747480392,
- -0.08970415592193604,
- 0.022793220356106758,
- 0.03361669182777405,
- -0.026668133214116096,
- -0.0436997190117836,
- 0.0022371900267899036,
- -0.015063075348734856,
- -0.013125816360116005,
- -0.05228325352072716,
- 0.03639666736125946,
- 0.0636981949210167,
- -1.3419185762586494e-8,
- -0.03498658537864685,
- -0.030149398371577263,
- 0.050369828939437866,
- -0.03526176139712334,
- 0.08210515975952148,
- -0.05725933983922005,
- 0.0390026681125164,
- -0.0014842883683741093,
- 0.033587224781513214,
- 0.04529572278261185,
- -0.03492478281259537,
- 0.005806454457342625,
- -0.07285945117473602,
- 0.10973557829856873,
- 0.04449782893061638,
- -0.002062492538243532,
- -0.07226825505495071,
- 0.021716266870498657,
- -0.022731292992830276,
- 0.006823341362178326,
- -0.019042622298002243,
- 0.03901596739888191,
- 0.058769673109054565,
- -0.011157702654600143,
- -0.022455912083387375,
- 0.004651396069675684,
- 0.027946706861257553,
- 0.018086109310388565,
- 0.039736874401569366,
- 0.041081856936216354,
- 0.024783022701740265,
- 0.11179451644420624,
- -0.04025034233927727,
- -0.029742442071437836,
- -0.05136694014072418,
- -0.08879560232162476,
- 0.020928077399730682,
- -0.00005380552829592489,
- 0.016093343496322632,
- 0.009999757632613182,
- -0.05929824709892273,
- 0.07047837227582932,
- 0.018297739326953888,
- 0.01639091782271862,
- 0.004245619755238295,
- -0.045099467039108276,
- -0.023220760747790337,
- 0.018247010186314583,
- -0.010599857196211815,
- -0.07387794554233551,
- 0.0194955263286829,
- -0.0011553955264389515,
- 0.04849516972899437,
- 0.050938062369823456,
- -0.041865456849336624,
- -0.08597662299871445,
- 0.009112855419516563,
- -0.025148285552859306,
- -0.0712219625711441,
- 0.021975940093398094,
- 0.07014720141887665,
- -0.065437912940979,
- 0.09168844670057297,
- 0.016743164509534836
- ]
- },
- {
- "keyword": "business",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.0005241026519797742,
- 0.06216288357973099,
- -0.023674538359045982,
- -0.021738775074481964,
- -0.0993661880493164,
- -0.007981497794389725,
- 0.12103703618049622,
- -0.0037291646003723145,
- 0.03634680435061455,
- -0.055907052010297775,
- 0.021977026015520096,
- 0.0037206721026450396,
- -0.0168922021985054,
- -0.0196868646889925,
- 0.007653478067368269,
- -0.039821647107601166,
- -0.01509550679475069,
- -0.02195627987384796,
- -0.09719488024711609,
- -0.029999766498804092,
- -0.11354867368936539,
- 0.022457249462604523,
- -0.07079007476568222,
- 0.017771830782294273,
- -0.03145444020628929,
- 0.06436549127101898,
- -0.022421371191740036,
- 0.018469180911779404,
- 0.025974420830607414,
- -0.10781364887952805,
- -0.005553791299462318,
- 0.04551277309656143,
- 0.10567296296358109,
- 0.027746450155973434,
- 0.02027757093310356,
- 0.019789092242717743,
- -0.0027428597677499056,
- -0.04774115979671478,
- 0.09682582318782806,
- 0.017019428312778473,
- 0.01694387011229992,
- -0.09538330137729645,
- -0.09701643884181976,
- -0.031933605670928955,
- 0.008975888602435589,
- 0.01782175526022911,
- 0.02499983459711075,
- 0.013755409978330135,
- 0.06744986772537231,
- 0.02751794643700123,
- -0.03841029852628708,
- -0.0032356909941881895,
- -0.01872711069881916,
- 0.028595559298992157,
- 0.007765192072838545,
- -0.0014758594334125519,
- -0.05454675108194351,
- -0.007147683762013912,
- 0.008535427041351795,
- -0.06548139452934265,
- 0.07982104271650314,
- 0.001881773117929697,
- -0.000006460593795054592,
- 0.02687034010887146,
- 0.042958814650774,
- 0.05419262498617172,
- -0.07462941110134125,
- 0.054094213992357254,
- -0.12026668339967728,
- -0.0464242585003376,
- 0.08157606422901154,
- -0.045780766755342484,
- -0.07361730188131332,
- 0.05184320732951164,
- 0.027547035366296768,
- -0.07217635214328766,
- 0.05193806067109108,
- -0.006652765907347202,
- 0.057158179581165314,
- -0.009229612536728382,
- 0.04291979596018791,
- 0.01499844528734684,
- -0.0927995815873146,
- 0.05277310311794281,
- -0.08925708383321762,
- -0.03602033481001854,
- 0.013259610161185265,
- 0.059906572103500366,
- 0.06335267424583435,
- 0.004635979887098074,
- -0.04469816014170647,
- -0.04823790118098259,
- 0.020526016131043434,
- -0.008447459898889065,
- -0.06727907061576843,
- 0.020343977957963943,
- -0.03572176769375801,
- -0.058714572340250015,
- 0.018770476803183556,
- 0.26383063197135925,
- 0.02817697450518608,
- 0.0789317861199379,
- 0.02502155862748623,
- -0.019639018923044205,
- -0.04752717912197113,
- -0.021808484569191933,
- -0.022116035223007202,
- 0.06579011678695679,
- -0.008022039197385311,
- -0.026241924613714218,
- -0.0548928901553154,
- 0.0063128843903541565,
- -0.03886626288294792,
- 0.020373420789837837,
- 0.010024632327258587,
- -0.009472052566707134,
- 0.00841792393475771,
- 0.014564969576895237,
- 0.07369053363800049,
- -0.014527881518006325,
- 0.02338912896811962,
- 0.09684287011623383,
- -0.015483232215046883,
- -0.05371106043457985,
- -0.09732520580291748,
- -0.10365056991577148,
- -0.007664422504603863,
- -5.57562353926149e-33,
- -0.024656275287270546,
- -0.05374239757657051,
- 0.02943199872970581,
- 0.07247196137905121,
- 0.015329643152654171,
- 0.059492673724889755,
- -0.000794974563177675,
- -0.011585784144699574,
- -0.06694110482931137,
- 0.113275907933712,
- -0.007732725236564875,
- 0.07847293466329575,
- 0.02496921829879284,
- 0.02632286213338375,
- 0.14199192821979523,
- 0.045772116631269455,
- -0.017587050795555115,
- 0.04057006910443306,
- 0.04469427093863487,
- -0.018618477508425713,
- -0.0022759533021599054,
- -0.020122990012168884,
- -0.013518775813281536,
- 0.044030461460351944,
- 0.019572651013731956,
- -0.03354495391249657,
- 0.008603104390203953,
- -0.00206063617952168,
- 0.07354060560464859,
- -0.0055961571633815765,
- 0.09661541134119034,
- 0.002934110350906849,
- -0.0036504159215837717,
- 0.002302170731127262,
- -0.04411013424396515,
- -0.044082872569561005,
- -0.04040321335196495,
- -0.08359109610319138,
- 0.005735450424253941,
- -0.06759679317474365,
- -0.11730536818504333,
- 0.010265326127409935,
- -0.04878019914031029,
- 0.03193094581365585,
- -0.032894447445869446,
- 0.09008648246526718,
- 0.042687758803367615,
- 0.010672362521290779,
- 0.007793488446623087,
- 0.016856268048286438,
- 0.012414880096912384,
- -0.017608843743801117,
- -0.011114997789263725,
- -0.01721281185746193,
- 0.02191074937582016,
- -0.08353099972009659,
- -0.0043545993976294994,
- -0.07110588252544403,
- -0.04786442592740059,
- -0.01787581294775009,
- 0.10279881209135056,
- 0.0659896731376648,
- -0.056979309767484665,
- 0.05337676405906677,
- -0.01901770941913128,
- -0.002924019703641534,
- 0.02181882970035076,
- 0.010549417696893215,
- 0.060807373374700546,
- -0.08562854677438736,
- -0.003612278727814555,
- -0.000322454929118976,
- 0.04879571124911308,
- -0.0006394092342816293,
- -0.0007078446797095239,
- 0.09213878214359283,
- -0.030772997066378593,
- 0.026008019223809242,
- 0.025170981884002686,
- 0.024032382294535637,
- -0.01689206063747406,
- 0.006884579546749592,
- 0.060357436537742615,
- 0.030370455235242844,
- 0.03339362144470215,
- 0.07488387823104858,
- 0.039964064955711365,
- -0.07624013721942902,
- 0.007598483003675938,
- 0.08276698738336563,
- -0.13540908694267273,
- 0.09179870784282684,
- 0.004909748211503029,
- 0.10300471633672714,
- 0.004067922476679087,
- 3.6731612375624676e-33,
- -0.011630088090896606,
- -0.03869413211941719,
- -0.015993697568774223,
- 0.042844224721193314,
- 0.019461140036582947,
- -0.006331231445074081,
- 0.04551507532596588,
- -0.04365706071257591,
- -0.012738599441945553,
- 0.07475638389587402,
- -0.09401867538690567,
- -0.09424156695604324,
- -0.002234488260000944,
- 0.0828937292098999,
- 0.0009083678014576435,
- -0.04970855638384819,
- 0.1533806174993515,
- -0.02423657663166523,
- -0.02214718982577324,
- 0.035554252564907074,
- -0.07646775990724564,
- 0.07829239219427109,
- -0.044608596712350845,
- 0.018852001056075096,
- -0.039949409663677216,
- 0.052912637591362,
- -0.051917556673288345,
- -0.011112121865153313,
- -0.028496799990534782,
- -0.007728904951363802,
- -0.02632761560380459,
- 0.03568130359053612,
- 0.014879859983921051,
- -0.0010665606241673231,
- -0.031146833673119545,
- 0.04764333739876747,
- -0.010994154959917068,
- -0.009401289746165276,
- -0.0037728839088231325,
- -0.037149880081415176,
- 0.04981019347906113,
- -0.021226512268185616,
- 0.0037009185180068016,
- 0.12120868265628815,
- -0.014078794978559017,
- -0.05153456702828407,
- -0.010850129649043083,
- -0.056557465344667435,
- 0.07533131539821625,
- -0.014921272173523903,
- -0.0835629254579544,
- 0.013069240376353264,
- -0.005564955994486809,
- -0.042940281331539154,
- -0.017940398305654526,
- 0.08410841226577759,
- -0.022385740652680397,
- -0.05142149329185486,
- -0.04119652137160301,
- 0.05521132051944733,
- 0.005481998901814222,
- 0.051971808075904846,
- 0.05702986568212509,
- 0.0818992331624031,
- -0.04689130187034607,
- 0.05556066334247589,
- 0.04022437706589699,
- -0.0062201437540352345,
- 0.04252154007554054,
- -0.024100497364997864,
- 0.05219987407326698,
- 0.055609140545129776,
- -0.07406111061573029,
- 0.04436839744448662,
- -0.08040966838598251,
- 0.03419744223356247,
- -0.0480806790292263,
- -0.038318801671266556,
- 0.015215674415230751,
- -0.006315106060355902,
- 0.006704474799335003,
- -0.09031451493501663,
- -0.02503681741654873,
- 0.04422320798039436,
- -0.09198201447725296,
- -0.052680328488349915,
- 0.023482205346226692,
- -0.026133529841899872,
- -0.017832957208156586,
- -0.07647914439439774,
- -0.06869607418775558,
- 0.00531326700001955,
- -0.06927203387022018,
- 0.03245636820793152,
- 0.00306490296497941,
- -1.394963167200558e-8,
- -0.0370430126786232,
- -0.042065221816301346,
- -0.0005769646377302706,
- -0.007440162822604179,
- -0.011346686631441116,
- -0.039556849747896194,
- 0.03664293512701988,
- 0.01984187588095665,
- 0.02793612889945507,
- 0.06734493374824524,
- -0.06259384006261826,
- -0.008935988880693913,
- -0.06552533805370331,
- 0.1072077602148056,
- 0.024920685216784477,
- -0.012136063538491726,
- -0.00283981254324317,
- -0.02662343718111515,
- -0.003059978596866131,
- 0.04480842128396034,
- 0.04426229000091553,
- 0.023117970675230026,
- 0.05911731347441673,
- -0.030865687876939774,
- -0.0030691211577504873,
- -0.05085044354200363,
- 0.04321565479040146,
- 0.07470700144767761,
- 0.00945777166634798,
- -0.000401692115701735,
- 0.04227295145392418,
- 0.07635662704706192,
- -0.03212849795818329,
- -0.019675172865390778,
- -0.043084196746349335,
- -0.08706898242235184,
- 0.011188719421625137,
- 0.021770186722278595,
- 0.03453104570508003,
- -0.0023989060427993536,
- -0.07214982807636261,
- 0.030267899855971336,
- 0.022053442895412445,
- 0.010565071366727352,
- -0.0428471714258194,
- -0.023725267499685287,
- -0.019986500963568687,
- -0.013476690277457237,
- -0.015619395300745964,
- -0.06096246838569641,
- -0.01792271062731743,
- 0.012533935718238354,
- 0.07649477571249008,
- -0.025468546897172928,
- 0.029355455189943314,
- -0.0775231197476387,
- 0.016482576727867126,
- -0.0030907548498362303,
- -0.054825760424137115,
- 0.044082075357437134,
- 0.04869654402136803,
- -0.09319433569908142,
- 0.028022365644574165,
- 0.008261580020189285
- ]
- },
- {
- "keyword": "corporation",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04880501329898834,
- -0.00037790596252307296,
- -0.00028347401530481875,
- 0.025390075519680977,
- -0.06950771808624268,
- -0.027485860511660576,
- 0.13403983414173126,
- -0.026927584782242775,
- 0.05083904787898064,
- -0.02853970043361187,
- 0.01492813415825367,
- -0.03058675490319729,
- -0.013738899491727352,
- -0.031318724155426025,
- -0.022067293524742126,
- -0.04258059710264206,
- 0.0008146696491166949,
- 0.053305692970752716,
- -0.03316777944564819,
- -0.06772387027740479,
- -0.0888146385550499,
- -0.07969058305025101,
- -0.044442370533943176,
- 0.05556079000234604,
- 0.044859014451503754,
- 0.06911725550889969,
- -0.04215100780129433,
- 0.024144025519490242,
- -0.0495341420173645,
- -0.11004859954118729,
- -0.06850169599056244,
- 0.004643483553081751,
- 0.11737104505300522,
- -0.032434508204460144,
- 0.027918055653572083,
- 0.047964926809072495,
- 0.00005338912887964398,
- -0.002817177912220359,
- 0.026659613475203514,
- -0.043852537870407104,
- -0.03689231351017952,
- -0.034579772502183914,
- -0.014222188852727413,
- -0.018230939283967018,
- -0.018232116475701332,
- 0.05721590667963028,
- 0.0344918891787529,
- 0.04625638574361801,
- 0.06698153167963028,
- 0.07250845432281494,
- 0.0004951811279170215,
- -0.019709451124072075,
- -0.004444996360689402,
- 0.03555061295628548,
- 0.01034050714224577,
- -0.0025707585737109184,
- -0.0660952627658844,
- -0.021062184125185013,
- 0.030043698847293854,
- -0.08874678611755371,
- 0.03659738600254059,
- -0.04945638030767441,
- 0.01728161796927452,
- 0.0811198502779007,
- 0.0952037051320076,
- 0.012667142786085606,
- 0.00830932892858982,
- 0.021978547796607018,
- -0.08293723315000534,
- -0.07950423657894135,
- 0.07773391902446747,
- -0.0344419851899147,
- 0.03081516921520233,
- 0.040000393986701965,
- -0.003412409918382764,
- -0.002585140522569418,
- 0.005252030212432146,
- 0.023747805505990982,
- 0.07588156312704086,
- -0.05875328928232193,
- 0.07721733301877975,
- 0.09789181500673294,
- -0.024125995114445686,
- 0.0747046247124672,
- -0.05201498419046402,
- 0.05834456533193588,
- 0.09411170333623886,
- 0.04929657652974129,
- 0.0064558228477835655,
- 0.05774185433983803,
- -0.07519464939832687,
- 0.009511206299066544,
- 0.053150154650211334,
- -0.050489671528339386,
- -0.10190895944833755,
- 0.0015530314994975924,
- -0.022577865049242973,
- -0.033849384635686874,
- 0.0005251576658338308,
- 0.2125440537929535,
- 0.026006702333688736,
- 0.030380824580788612,
- -0.000723211036529392,
- -0.08125942945480347,
- -0.04874859005212784,
- -0.04021799936890602,
- -0.02287004329264164,
- 0.05747086927294731,
- 0.058317188173532486,
- 0.04212811216711998,
- -0.049018338322639465,
- 0.03949403390288353,
- -0.08888498693704605,
- -0.03782805800437927,
- -0.03810549154877663,
- -0.012181033380329609,
- -0.019125448539853096,
- 0.04427599161863327,
- 0.07411789894104004,
- -0.016729731112718582,
- 0.00819010566920042,
- 0.07778310030698776,
- -0.02325846441090107,
- 0.004725655075162649,
- -0.08315208554267883,
- -0.03949369490146637,
- -0.04547380283474922,
- -4.242692291297697e-33,
- -0.05935044214129448,
- -0.012049834243953228,
- 0.011111932806670666,
- 0.07877341657876968,
- -0.025406425818800926,
- 0.01451988983899355,
- 0.049519073218107224,
- 0.05361735448241234,
- -0.1221715658903122,
- 0.02245757170021534,
- -0.08397775888442993,
- 0.004862386267632246,
- 0.05213358998298645,
- -0.01662529446184635,
- 0.0808829814195633,
- 0.016563955694437027,
- 0.00991522055119276,
- -0.013261780142784119,
- 0.045675378292798996,
- -0.048544324934482574,
- -0.09144521504640579,
- 0.08125472068786621,
- -0.01734262704849243,
- 0.0908031165599823,
- -0.005921997129917145,
- -0.07149460911750793,
- -0.03821367025375366,
- -0.02248978801071644,
- 0.021380005404353142,
- 0.03663574531674385,
- 0.08377033472061157,
- 0.028778163716197014,
- 0.007804250344634056,
- 0.0000724371857359074,
- 0.0552828423678875,
- 0.04385765641927719,
- -0.024192051962018013,
- -0.06435626745223999,
- -0.013669104315340519,
- -0.027793392539024353,
- -0.033747319132089615,
- -0.014594336040318012,
- -0.04729132354259491,
- 0.03773149102926254,
- -0.03436033055186272,
- 0.020188355818390846,
- -0.011394050903618336,
- 0.009935809299349785,
- 0.053816623985767365,
- 0.02685188688337803,
- -0.029027270153164864,
- -0.008845530450344086,
- -0.02898559346795082,
- -0.021447181701660156,
- 0.09267142415046692,
- -0.05392462760210037,
- -0.007434690371155739,
- -0.02467390149831772,
- -0.0746874213218689,
- 0.004789369180798531,
- -0.010443581268191338,
- 0.14645996689796448,
- -0.0949673056602478,
- 0.04799714311957359,
- -0.04462438449263573,
- 0.03602822124958038,
- 0.061234090477228165,
- -0.01185730192810297,
- 0.10693031549453735,
- -0.05002400279045105,
- 0.026692986488342285,
- -0.03944802284240723,
- 0.05462270602583885,
- 0.031195156276226044,
- -0.039957378059625626,
- 0.03812352567911148,
- -0.04826084151864052,
- 0.03210550174117088,
- -0.05374346300959587,
- 0.07177210599184036,
- -0.022575845941901207,
- 0.006192022934556007,
- 0.038883499801158905,
- 0.042288970202207565,
- 0.02603183686733246,
- 0.018529290333390236,
- 0.042511630803346634,
- -0.023724792525172234,
- 0.0022686931770294905,
- 0.1295827329158783,
- -0.11889760196208954,
- -0.011292587965726852,
- 0.03226226568222046,
- 0.1372465342283249,
- -0.05701134726405144,
- 3.0350685574605668e-33,
- 0.03534527122974396,
- -0.0587070994079113,
- 0.05335620418190956,
- -0.004606977570801973,
- -0.01936475932598114,
- -0.01940995268523693,
- 0.026652833446860313,
- -0.03800053149461746,
- -0.04503558203577995,
- 0.04729685187339783,
- -0.04449734464287758,
- -0.028099684044718742,
- -0.01614348590373993,
- 0.06776904314756393,
- -0.01336908433586359,
- 0.0011804288951680064,
- 0.07073014229536057,
- -0.037184134125709534,
- -0.03773931413888931,
- 0.007126929704099894,
- -0.0736205130815506,
- -0.024652641266584396,
- 0.045487210154533386,
- 0.021885421127080917,
- -0.041581735014915466,
- 0.06568349897861481,
- 0.02779366634786129,
- 0.00198736391030252,
- 0.01401889231055975,
- 0.015586835332214832,
- -0.005493667908012867,
- -0.012672924436628819,
- -0.08878238499164581,
- 0.03436848521232605,
- -0.013425823301076889,
- 0.05121581256389618,
- -0.050858646631240845,
- 0.005142641253769398,
- -0.011355855502188206,
- -0.09836532920598984,
- 0.02236959896981716,
- 0.020555531606078148,
- -0.0064107091166079044,
- 0.1153751015663147,
- -0.020765144377946854,
- -0.031023431569337845,
- 0.028955919668078423,
- -0.05115899443626404,
- 0.029689133167266846,
- 0.028212741017341614,
- -0.13247238099575043,
- -0.027791552245616913,
- -0.0019109667045995593,
- -0.03484964370727539,
- -0.024996750056743622,
- 0.08057387173175812,
- -0.010387378744781017,
- 0.007782619912177324,
- 0.0002211227547377348,
- -0.01372091006487608,
- 0.028726177290081978,
- 0.021409593522548676,
- 0.003719381522387266,
- 0.1413191854953766,
- -0.011815300211310387,
- 0.09452778846025467,
- 0.012479918077588081,
- 0.020274579524993896,
- -0.0112461494281888,
- -0.03624118119478226,
- 0.03849871829152107,
- 0.000015062923012010287,
- -0.07151949405670166,
- -0.022677330300211906,
- -0.05859028548002243,
- -0.015288017690181732,
- -0.07882171124219894,
- -0.002215082524344325,
- -0.046826135367155075,
- -0.010015925392508507,
- 0.06239718571305275,
- -0.042326927185058594,
- -0.011078043840825558,
- 0.11508030444383621,
- -0.09761148691177368,
- -0.028938306495547295,
- 0.07888349890708923,
- -0.009801563806831837,
- 0.0030516101978719234,
- 0.025608642026782036,
- 0.020461764186620712,
- -0.014546438120305538,
- -0.04200166463851929,
- 0.03710562363266945,
- 0.041047196835279465,
- -1.1701076552128598e-8,
- -0.05837227404117584,
- 0.009367031045258045,
- -0.022119903936982155,
- -0.030325664207339287,
- 0.10537199676036835,
- -0.027359170839190483,
- 0.0036234455183148384,
- -0.00702929450199008,
- 0.03369014710187912,
- 0.08577091246843338,
- -0.011594305746257305,
- -0.007609304506331682,
- -0.07833913713693619,
- 0.047041624784469604,
- 0.01879929006099701,
- -0.04348702356219292,
- -0.05882677435874939,
- 0.007531466893851757,
- -0.01100570522248745,
- 0.0056596058420836926,
- 0.0005132714286446571,
- 0.021518317982554436,
- 0.04406968504190445,
- -0.0015281372470781207,
- -0.04267813265323639,
- -0.0329170785844326,
- 0.04155607894062996,
- -0.009093290194869041,
- 0.009600567631423473,
- 0.041323356330394745,
- 0.020929768681526184,
- 0.09412609040737152,
- -0.08435268700122833,
- -0.0005152625381015241,
- -0.06069011986255646,
- -0.10472315549850464,
- 0.015019688755273819,
- 0.032912395894527435,
- 0.033430349081754684,
- 0.022714996710419655,
- -0.03294728323817253,
- 0.08701207488775253,
- 0.011521642096340656,
- 0.00679471530020237,
- -0.022512787953019142,
- -0.060491520911455154,
- -0.05728491023182869,
- 0.003239621873944998,
- -0.008157631382346153,
- -0.08932880312204361,
- 0.02001969702541828,
- 0.026361025869846344,
- 0.00401195976883173,
- 0.029872175306081772,
- -0.04196567460894585,
- -0.11397717893123627,
- 0.011084748432040215,
- -0.005859089083969593,
- -0.09680583328008652,
- 0.0033718536142259836,
- 0.007402431685477495,
- -0.0492284819483757,
- 0.09285727143287659,
- 0.007168234791606665
- ]
- },
- {
- "keyword": "enterprise",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.04837106913328171,
- 0.031036796048283577,
- 0.007902723737061024,
- -0.03183257579803467,
- -0.013781632296741009,
- -0.02099517732858658,
- 0.14715874195098877,
- 0.02933717705309391,
- 0.04024117439985275,
- 0.00364347780123353,
- 0.024629337713122368,
- 0.02799750678241253,
- -0.04382507875561714,
- -0.013543124310672283,
- -0.004328875802457333,
- -0.029136592522263527,
- -0.006242055911570787,
- -0.07891035825014114,
- -0.04363279417157173,
- -0.023751677945256233,
- -0.14923720061779022,
- -0.05003209784626961,
- -0.03537818789482117,
- 0.0428074412047863,
- 0.0036537940613925457,
- 0.017433715984225273,
- 0.01757250912487507,
- 0.00003862659650621936,
- -0.04144531115889549,
- -0.1426311433315277,
- -0.014495446346700191,
- -0.0192964319139719,
- 0.10218212753534317,
- 0.04293695092201233,
- 0.011688374914228916,
- -0.006568829528987408,
- -0.014660383574664593,
- -0.0027996611315757036,
- 0.02350275218486786,
- -0.04446708410978317,
- 0.01705419272184372,
- -0.07741861045360565,
- -0.10690958052873611,
- -0.03290732577443123,
- -0.022546492516994476,
- 0.01339036040008068,
- -0.02195603959262371,
- -0.017551936209201813,
- 0.033476509153842926,
- 0.04496336728334427,
- 0.006519292946904898,
- -0.04397815093398094,
- -0.008508131839334965,
- -0.008177336305379868,
- 0.025692271068692207,
- 0.04158763214945793,
- 0.027836257591843605,
- -0.030475614592432976,
- -0.03214378282427788,
- -0.04459494724869728,
- 0.02389516495168209,
- -0.03529645875096321,
- -0.004534274339675903,
- 0.06662851572036743,
- 0.018700530752539635,
- 0.08450005203485489,
- -0.009226394817233086,
- 0.029687980189919472,
- -0.13504408299922943,
- -0.10863341391086578,
- -0.015876496210694313,
- -0.09013525396585464,
- -0.0711602121591568,
- 0.07577076554298401,
- 0.03676187992095947,
- -0.036707524210214615,
- 0.02768585830926895,
- 0.0062452214770019054,
- 0.08505383878946304,
- -0.007926051504909992,
- -0.0010333894751966,
- 0.05532132461667061,
- -0.09228312224149704,
- 0.00791961420327425,
- -0.09184955060482025,
- -0.0026028098072856665,
- 0.01138103287667036,
- 0.0024209199473261833,
- 0.019426114857196808,
- 0.01120411790907383,
- -0.02857823856174946,
- -0.012261596508324146,
- 0.02318013645708561,
- -0.03577452152967453,
- 0.00792962871491909,
- 0.051652051508426666,
- -0.04104458540678024,
- -0.13358646631240845,
- -0.006447961088269949,
- 0.20902180671691895,
- 0.0544622577726841,
- 0.12538911402225494,
- 0.01752595789730549,
- -0.01489508431404829,
- -0.1008557602763176,
- -0.02438240870833397,
- 0.018378643319010735,
- 0.01920849271118641,
- 0.04357665404677391,
- 0.0006129634566605091,
- -0.022504109889268875,
- -0.02288736216723919,
- -0.0016888306709006429,
- -0.0420399084687233,
- -0.022968370467424393,
- -0.021456215530633926,
- -0.05384255573153496,
- 0.08634907752275467,
- 0.12293754518032074,
- -0.05722694471478462,
- 0.015792017802596092,
- 0.06328724324703217,
- -0.009314293041825294,
- 0.020017635077238083,
- -0.023777496069669724,
- -0.022583166137337685,
- -0.01756419986486435,
- -5.4138835981120055e-33,
- -0.05922750011086464,
- 0.009273553267121315,
- -0.022044513374567032,
- 0.02136550471186638,
- 0.005677162669599056,
- 0.028955133631825447,
- -0.010062644258141518,
- -0.027251390740275383,
- -0.10338729619979858,
- -0.0019389495719224215,
- -0.07444679737091064,
- 0.06635460257530212,
- 0.03797505423426628,
- -0.05266012251377106,
- 0.11979332566261292,
- -0.02255597896873951,
- 0.00037720592808909714,
- 0.17922167479991913,
- 0.0661255419254303,
- -0.00707395002245903,
- 0.006020554341375828,
- 0.00826888345181942,
- 0.03211062401533127,
- 0.011798916384577751,
- 0.04058209806680679,
- -0.03148696571588516,
- -0.029412124305963516,
- 0.0012464853934943676,
- 0.09722968190908432,
- 0.01576506905257702,
- 0.03851838409900665,
- 0.023639574646949768,
- 0.003681669244542718,
- 0.028289848938584328,
- -0.015123181976377964,
- -0.004874106962233782,
- -0.022385863587260246,
- -0.07510000467300415,
- 0.039670445024967194,
- -0.050908349454402924,
- -0.10247806459665298,
- 0.025407519191503525,
- 0.0389525480568409,
- 0.03167003393173218,
- -0.035283591598272324,
- 0.027658497914671898,
- 0.06950350850820541,
- -0.01827964186668396,
- 0.05466367304325104,
- 0.02570250816643238,
- -0.019764844328165054,
- -0.05474255606532097,
- 0.05087216943502426,
- -0.04806644096970558,
- 0.044339459389448166,
- 0.00013653023052029312,
- 0.04989858344197273,
- -0.05333254486322403,
- -0.004793095402419567,
- -0.05275378376245499,
- 0.03885386884212494,
- 0.10897424072027206,
- -0.045156776905059814,
- -0.027587000280618668,
- -0.00008451774920104071,
- 0.07406091690063477,
- 0.06792774051427841,
- 0.03976721316576004,
- 0.044327571988105774,
- 0.0022984708193689585,
- 0.003218538360670209,
- -0.04866236820816994,
- 0.04753455892205238,
- 0.009864489547908306,
- -0.013502773828804493,
- 0.0594322495162487,
- -0.05757486820220947,
- 0.03104504384100437,
- -0.04602406919002533,
- 0.025744253769516945,
- -0.10433002561330795,
- 0.0014181408332660794,
- -0.013192846439778805,
- 0.0312710702419281,
- 0.062392786145210266,
- 0.04381181299686432,
- 0.03307082876563072,
- 0.029325077310204506,
- 0.030948882922530174,
- 0.09909066557884216,
- -0.06518347561359406,
- 0.02146197482943535,
- -0.002106558298692107,
- 0.13847467303276062,
- -0.016392741352319717,
- 4.1603558915203036e-33,
- 0.00029363911016844213,
- -0.010777939110994339,
- -0.046443842351436615,
- 0.0388670489192009,
- 0.04992810636758804,
- -0.04709620773792267,
- 0.046517062932252884,
- -0.029187044128775597,
- -0.06504547595977783,
- 0.020660456269979477,
- -0.019015954807400703,
- -0.10442879796028137,
- -0.01909557543694973,
- -0.005109392572194338,
- 0.02462642639875412,
- -0.05839863419532776,
- 0.1144423857331276,
- 0.02170816995203495,
- -0.01149638369679451,
- 0.0591505728662014,
- -0.020761728286743164,
- -0.022000346332788467,
- -0.020259074866771698,
- 0.07674729079008102,
- 0.01555559877306223,
- 0.06111667677760124,
- -0.030170658603310585,
- -0.048356372863054276,
- -0.05906292423605919,
- -0.0755695328116417,
- -0.024983203038573265,
- 0.023643681779503822,
- 0.005910865031182766,
- 0.10673912614583969,
- -0.03436647728085518,
- 0.012267534621059895,
- -0.03122768923640251,
- -0.013475188985466957,
- -0.02885589934885502,
- -0.07446957379579544,
- 0.022955991327762604,
- -0.009688954800367355,
- -0.04795379936695099,
- 0.11498837918043137,
- -0.008080379106104374,
- -0.01039451826363802,
- -0.01678793877363205,
- -0.016725901514291763,
- 0.0310969278216362,
- 0.015723541378974915,
- -0.11446935683488846,
- 0.020348655059933662,
- 0.03958553075790405,
- -0.0425972156226635,
- -0.07722088694572449,
- 0.03327333554625511,
- 0.07867104560136795,
- -0.03181597590446472,
- -0.0843978077173233,
- 0.030255353078246117,
- 0.021911686286330223,
- 0.029239779338240623,
- 0.08446384966373444,
- 0.15013191103935242,
- -0.040824614465236664,
- 0.022045189514756203,
- 0.03227386996150017,
- 0.01345889549702406,
- -0.07560937851667404,
- -0.05564691498875618,
- 0.0652851089835167,
- -0.013593488372862339,
- -0.12730325758457184,
- -0.009383068419992924,
- -0.028969930484890938,
- 0.03882448002696037,
- -0.002479188609868288,
- -0.054390959441661835,
- 0.013094817288219929,
- 0.020864294841885567,
- -0.022116275504231453,
- -0.008824511431157589,
- -0.04132445901632309,
- 0.0712016224861145,
- -0.060928862541913986,
- 0.0018949523800984025,
- -0.040425874292850494,
- -0.051901284605264664,
- -0.010254996828734875,
- -0.0019446746446192265,
- -0.05857168510556221,
- -0.03619853034615517,
- -0.05233079195022583,
- 0.026848716661334038,
- 0.010458201169967651,
- -1.1733639837530063e-8,
- -0.05211078003048897,
- 0.004079990554600954,
- 0.07654901593923569,
- -0.009447216056287289,
- 0.03703544661402702,
- -0.0496567003428936,
- -0.013441706076264381,
- 0.01200562808662653,
- -0.009995462372899055,
- 0.009652344509959221,
- -0.06660506874322891,
- -0.036865271627902985,
- -0.03576480969786644,
- 0.07897526770830154,
- 0.08382240682840347,
- 0.011122405529022217,
- -0.04838093742728233,
- 0.0356530100107193,
- -0.03348245844244957,
- -0.00038447536644525826,
- 0.04465104639530182,
- 0.026623887941241264,
- 0.04805261269211769,
- -0.07719461619853973,
- 0.000841289758682251,
- -0.0012446145992726088,
- -0.006327593699097633,
- 0.020910164341330528,
- 0.003975661937147379,
- 0.00155072589404881,
- 0.06692571192979813,
- 0.044876158237457275,
- -0.010574557818472385,
- -0.006158060859888792,
- 0.011468463577330112,
- -0.04729072377085686,
- 0.037911348044872284,
- 0.032420117408037186,
- -0.010852586477994919,
- 0.022908497601747513,
- -0.07621020823717117,
- 0.04782811179757118,
- 0.06904369592666626,
- -0.03117354027926922,
- -0.025973275303840637,
- 0.038293804973363876,
- -0.04870326817035675,
- -0.0017538280226290226,
- -0.01703498139977455,
- -0.048929013311862946,
- 0.05117980018258095,
- -0.016920797526836395,
- 0.04263881966471672,
- 0.04232063889503479,
- 0.005053388420492411,
- -0.057520441710948944,
- 0.0560256652534008,
- -0.01333518885076046,
- -0.057139698415994644,
- 0.0662907138466835,
- 0.10281677544116974,
- -0.05820191651582718,
- 0.08409804850816727,
- 0.004683426581323147
- ]
- },
- {
- "keyword": "firm",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.02578495256602764,
- -0.018641775473952293,
- -0.05580534413456917,
- 0.019109537824988365,
- 0.010144016705453396,
- 0.03513703867793083,
- 0.07291027903556824,
- 0.032563015818595886,
- -0.024864764884114265,
- 0.014527064748108387,
- 0.06479604542255402,
- -0.0015844253357499838,
- -0.05704021081328392,
- -0.0010438148165121675,
- 0.015524959191679955,
- -0.015174834989011288,
- -0.0006645197863690555,
- -0.024234110489487648,
- -0.06443579494953156,
- -0.037088364362716675,
- -0.14221984148025513,
- -0.11730320006608963,
- -0.04562089219689369,
- -0.019805625081062317,
- 0.08063994348049164,
- 0.058505598455667496,
- -0.001346064149402082,
- 0.05257711187005043,
- -0.01671537198126316,
- -0.1284637153148651,
- -0.04163669794797897,
- -0.0008312544086948037,
- 0.06882552057504654,
- -0.02405192144215107,
- 0.011955385096371174,
- 0.08009978383779526,
- -0.020784469321370125,
- -0.04858905076980591,
- 0.019399845972657204,
- 0.019528882578015327,
- -0.038808345794677734,
- -0.04419642314314842,
- -0.03840029612183571,
- -0.041438207030296326,
- 0.004714056383818388,
- 0.03562668710947037,
- 0.05745122954249382,
- 0.03625021129846573,
- 0.05723625048995018,
- 0.002255358500406146,
- -0.038355033844709396,
- -0.04893546923995018,
- 0.016124531626701355,
- 0.019292183220386505,
- 0.014140629209578037,
- 0.05605587363243103,
- -0.0745224878191948,
- -0.04342793673276901,
- 0.034154076129198074,
- -0.0536450631916523,
- 0.0850779190659523,
- -0.024979455396533012,
- -0.01649397611618042,
- 0.02859518676996231,
- 0.05964641645550728,
- 0.010558216832578182,
- -0.04251018911600113,
- 0.06492214649915695,
- -0.08555163443088531,
- -0.03345376253128052,
- 0.03446502611041069,
- -0.028742065653204918,
- -0.015131974592804909,
- 0.014325354248285294,
- 0.014731443487107754,
- 0.016783099621534348,
- 0.02623605728149414,
- 0.00952255167067051,
- 0.15177513659000397,
- -0.046239376068115234,
- -0.003506588516756892,
- 0.007609168533235788,
- -0.0020130877383053303,
- -0.009264684282243252,
- -0.09494729340076447,
- -0.0352557897567749,
- 0.04689198359847069,
- -0.001301197218708694,
- -0.008573828265070915,
- 0.028983574360609055,
- -0.015230700373649597,
- 0.05578158423304558,
- 0.001180735300295055,
- 0.03849005699157715,
- -0.07566434890031815,
- 0.016984442248940468,
- 0.0027723696548491716,
- -0.02385018765926361,
- -0.0636119395494461,
- 0.2259320616722107,
- -0.012755068950355053,
- 0.04945870488882065,
- -0.05563177168369293,
- 0.00788081344217062,
- -0.0384819433093071,
- -0.07668136060237885,
- -0.03885075822472572,
- 0.07608982175588608,
- 0.058882780373096466,
- 0.06553638726472855,
- -0.03724406659603119,
- 0.04225461184978485,
- -0.14020545780658722,
- 0.046575721353292465,
- -0.02995894104242325,
- -0.025837548077106476,
- -0.053518086671829224,
- 0.054038118571043015,
- 0.02685186266899109,
- -0.08128416538238525,
- 0.0054396940395236015,
- 0.07757242769002914,
- -0.09528031945228577,
- -0.021785860881209373,
- -0.06669642776250839,
- -0.0249286238104105,
- -0.031754035502672195,
- -4.494021799711133e-33,
- 0.04346737638115883,
- 0.004787399433553219,
- -0.03627084568142891,
- 0.046019528061151505,
- -0.0006276859785430133,
- 0.0018864473095163703,
- -0.0022482555359601974,
- 0.07956942170858383,
- -0.04550683870911598,
- 0.08178175240755081,
- -0.047915276139974594,
- -0.022226709872484207,
- 0.02036225236952305,
- -0.03746696189045906,
- 0.07829773426055908,
- -0.029875554144382477,
- 0.011315418407320976,
- 0.018183531239628792,
- -0.011650891043245792,
- -0.019498629495501518,
- -0.08886134624481201,
- 0.13516750931739807,
- -0.029290271922945976,
- 0.041327349841594696,
- -0.0113579872995615,
- -0.13826896250247955,
- -0.0027819254901260138,
- -0.03768013417720795,
- 0.01216729637235403,
- 0.03731527179479599,
- -0.009055965580046177,
- -0.017144402489066124,
- -0.029012463986873627,
- -0.009547249414026737,
- -0.01819814369082451,
- -0.025130005553364754,
- -0.059636812657117844,
- -0.13158412277698517,
- -0.02917238138616085,
- 0.025247488170862198,
- -0.018131092190742493,
- -0.03195108100771904,
- -0.024788441136479378,
- 0.019202522933483124,
- -0.03816479817032814,
- 0.07704906910657883,
- -0.016346588730812073,
- 0.011832860298454762,
- 0.04004855826497078,
- -0.01334190834313631,
- -0.060850828886032104,
- -0.010703988373279572,
- -0.030613500624895096,
- -0.010796180926263332,
- 0.09475821256637573,
- -0.05611800774931908,
- -0.03779706358909607,
- -0.02852211333811283,
- -0.029027557000517845,
- -0.03577500581741333,
- 0.052857037633657455,
- 0.08889719098806381,
- 0.004069390706717968,
- -0.02335440367460251,
- -0.06794288009405136,
- 0.015235847793519497,
- 0.009802899323403835,
- 0.02630147710442543,
- 0.05897274240851402,
- -0.033616434782743454,
- -0.017185168340802193,
- -0.01818224787712097,
- 0.11897221952676773,
- 0.07519277930259705,
- -0.022292887791991234,
- -0.018979523330926895,
- -0.0053773801773786545,
- 0.0789007917046547,
- 0.01944691129028797,
- 0.037579651921987534,
- 0.014893350191414356,
- 0.03871788829565048,
- 0.028926191851496696,
- 0.05247626453638077,
- 0.05753703787922859,
- 0.03277428075671196,
- 0.04562932625412941,
- -0.06639702618122101,
- 0.07947075366973877,
- 0.09334089607000351,
- -0.18338090181350708,
- -0.00038106413558125496,
- 0.059991784393787384,
- 0.05813810974359512,
- 0.007107895333319902,
- 3.287304849563067e-33,
- 0.009408608078956604,
- -0.055310752242803574,
- 0.02167275734245777,
- 0.027337772771716118,
- 0.011214162223041058,
- 0.02679954282939434,
- 0.045383378863334656,
- 0.025098685175180435,
- 0.038833510130643845,
- 0.10505561530590057,
- -0.06689044833183289,
- -0.0623486302793026,
- 0.05062783882021904,
- 0.0004889394040219486,
- -0.0472109355032444,
- -0.018298674374818802,
- 0.013516944833099842,
- -0.05177222564816475,
- -0.005264645908027887,
- 0.019030315801501274,
- -0.01599212922155857,
- -0.12302421033382416,
- 0.07990236580371857,
- 0.06165504828095436,
- -0.0015612626448273659,
- 0.06053610518574715,
- 0.007517486810684204,
- 0.005974284838885069,
- -0.05599312484264374,
- 0.01269632950425148,
- 0.053157445043325424,
- -0.02037816494703293,
- -0.08789832144975662,
- 0.04080621898174286,
- -0.008231407031416893,
- 0.04710008576512337,
- -0.05077248811721802,
- 0.0600690096616745,
- -0.013826543465256691,
- -0.023441897705197334,
- 0.029095040634274483,
- -0.0788039043545723,
- -0.007887476123869419,
- 0.09061037003993988,
- 0.0027088846545666456,
- -0.048482734709978104,
- 0.0701524019241333,
- -0.08512820303440094,
- 0.07030388712882996,
- 0.030669372528791428,
- -0.01863042637705803,
- 0.08244464546442032,
- -0.02346186339855194,
- -0.008221679367125034,
- -0.08056473731994629,
- 0.003258445067331195,
- 0.05230167508125305,
- 0.01723981834948063,
- -0.08995315432548523,
- 0.036960046738386154,
- -0.020249702036380768,
- 0.0539529025554657,
- 0.08845242112874985,
- 0.07238452881574631,
- 0.004737837705761194,
- 0.07349389791488647,
- -0.018025197088718414,
- -0.02595778927206993,
- 0.009465924464166164,
- -0.020152492448687553,
- 0.024326620623469353,
- -0.0626489669084549,
- 0.0076266685500741005,
- 0.12259083986282349,
- 0.027760909870266914,
- -0.0273634921759367,
- -0.07334107905626297,
- -0.10042189061641693,
- -0.002342839492484927,
- 0.015398436225950718,
- 0.05292958766222,
- -0.02577977441251278,
- 0.005964403972029686,
- 0.08943053334951401,
- -0.06210903450846672,
- 0.025762397795915604,
- 0.060290973633527756,
- 0.001438311766833067,
- 0.011895916424691677,
- -0.040321722626686096,
- 0.06172563135623932,
- -0.03868333250284195,
- -0.014255260117352009,
- 0.05576109513640404,
- 0.028073804453015327,
- -1.1588503490145285e-8,
- -0.011293047107756138,
- -0.005595106165856123,
- 0.07005459070205688,
- -0.04284631833434105,
- 0.030499301850795746,
- -0.06572752445936203,
- 0.014852049760520458,
- -0.07559585571289062,
- 0.009642296470701694,
- 0.014768984168767929,
- -0.03350852057337761,
- 0.013170902617275715,
- -0.06835514307022095,
- 0.01730465516448021,
- 0.04173010587692261,
- -0.012627131305634975,
- -0.05132251977920532,
- 0.02360016107559204,
- -0.07093701511621475,
- 0.015378868207335472,
- 0.00815578829497099,
- 0.025185897946357727,
- 0.030420878902077675,
- 0.023183586075901985,
- -0.022609984502196312,
- -0.0326860286295414,
- 0.006413403432816267,
- 0.03533848002552986,
- -0.002406880958005786,
- 0.07211586087942123,
- 0.05321163311600685,
- 0.062274202704429626,
- -0.022441141307353973,
- -0.04935326427221298,
- -0.07104773819446564,
- -0.006510972045361996,
- 0.054750338196754456,
- -0.024520350620150566,
- -0.031768765300512314,
- 0.02114751748740673,
- -0.02794419787824154,
- -0.01838824898004532,
- 0.012012333609163761,
- 0.013431920669972897,
- -0.013159231282770634,
- -0.05288117751479149,
- -0.05577845126390457,
- 0.05230056867003441,
- 0.002107340842485428,
- -0.02926323004066944,
- 0.011508285067975521,
- 0.04306185990571976,
- 0.023194333538413048,
- 0.07826287299394608,
- -0.020471325144171715,
- -0.06565382331609726,
- -0.02343890257179737,
- -0.023210788145661354,
- -0.07813150435686111,
- 0.022235194221138954,
- 0.06215237081050873,
- -0.0767805203795433,
- 0.10465849190950394,
- 0.03746006265282631
- ]
- },
- {
- "keyword": "agency",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03379717841744423,
- -0.03418578952550888,
- -0.10759180039167404,
- -0.007221959065645933,
- 0.0028241609688848257,
- -0.03000965341925621,
- 0.09442460536956787,
- -0.03406365215778351,
- 0.055184729397296906,
- 0.004108167253434658,
- 0.0157927293330431,
- -0.03946473076939583,
- 0.00601549306884408,
- 0.01774701476097107,
- 0.03212606906890869,
- 0.02995896339416504,
- 0.02657763846218586,
- 0.0737653523683548,
- -0.03679458424448967,
- -0.07551133632659912,
- -0.006152349524199963,
- 0.047220297157764435,
- 0.0016643605194985867,
- -0.008935559540987015,
- -0.035564616322517395,
- 0.05504532903432846,
- -0.09108471125364304,
- 0.005766546819359064,
- -0.0345640629529953,
- -0.0806412398815155,
- 0.005039235111325979,
- 0.028095049783587456,
- 0.01279717218130827,
- 0.02185709774494171,
- 0.09360620379447937,
- 0.09916848689317703,
- -0.06821377575397491,
- -0.04308033362030983,
- 0.08335742354393005,
- -0.019328538328409195,
- -0.018551653251051903,
- -0.04780590161681175,
- 0.005467558279633522,
- -0.026394298300147057,
- -0.017999492585659027,
- -0.0011789563577622175,
- 0.054680246859788895,
- 0.03616916760802269,
- 0.014788760803639889,
- 0.028560832142829895,
- 0.007402370218187571,
- -0.040383826941251755,
- 0.002514871768653393,
- 0.04518641531467438,
- -0.02864106371998787,
- 0.02847524918615818,
- -0.019352955743670464,
- -0.013618958182632923,
- -0.052063729614019394,
- -0.05783538892865181,
- -0.0182558074593544,
- 0.0002467320882715285,
- -0.02206641621887684,
- 0.04273660108447075,
- 0.02606014534831047,
- 0.05486246198415756,
- -0.08925916254520416,
- -0.05594831705093384,
- -0.051878198981285095,
- -0.20410779118537903,
- 0.03806501626968384,
- -0.11860687285661697,
- -0.03618360310792923,
- -0.019638586789369583,
- 0.05705413967370987,
- -0.04531990364193916,
- 0.04746159538626671,
- 0.045694366097450256,
- 0.1283940225839615,
- -0.08542369306087494,
- 0.055816397070884705,
- -0.029469694942235947,
- -0.010179730132222176,
- 0.07137210667133331,
- -0.04192954674363136,
- -0.02367064543068409,
- 0.020607106387615204,
- -0.0011767774121835828,
- 0.02063651569187641,
- 0.018852682784199715,
- 0.02049587480723858,
- 0.00860394723713398,
- 0.11021628975868225,
- 0.021046753972768784,
- -0.07277244329452515,
- 0.03748778998851776,
- -0.031105484813451767,
- -0.005867279600352049,
- -0.021461201831698418,
- 0.24438944458961487,
- -0.0530172623693943,
- 0.006439255550503731,
- -0.09936568140983582,
- 0.03563003987073898,
- -0.08695746213197708,
- -0.045437414199113846,
- 0.019389118999242783,
- 0.043123383074998856,
- -0.011246392503380775,
- 0.029216961935162544,
- -0.06874386221170425,
- 0.046351827681064606,
- -0.0784514918923378,
- 0.05986949801445007,
- 0.09750223159790039,
- -0.016357196494936943,
- -0.03573793172836304,
- 0.09375724196434021,
- 0.04890516400337219,
- -0.07879041880369186,
- 0.027708614245057106,
- 0.07269405573606491,
- -0.02575218677520752,
- 0.0034589970018714666,
- 0.03373672813177109,
- 0.05245247483253479,
- 0.04667377099394798,
- -5.852961594870839e-33,
- 0.03527363762259483,
- 0.06530719995498657,
- 0.062230322510004044,
- -0.027541473507881165,
- -0.0091057438403368,
- 0.01223682053387165,
- 0.035243283957242966,
- 0.0661744475364685,
- -0.02188553661108017,
- 0.09224428236484528,
- -0.000056284905440406874,
- 0.07179082930088043,
- -0.049868471920490265,
- -0.051407765597105026,
- 0.06796552985906601,
- 0.044635381549596786,
- -0.05853726342320442,
- -0.03703262284398079,
- 0.054113391786813736,
- 0.020846214145421982,
- -0.09782514721155167,
- 0.09175605326890945,
- -0.014549806714057922,
- 0.05721200630068779,
- 0.05256514251232147,
- 0.004845438525080681,
- -0.0685100257396698,
- -0.08070842176675797,
- 0.020040007308125496,
- 0.0385618731379509,
- -0.0004603251290973276,
- 0.08113826811313629,
- -0.016796749085187912,
- -0.004141693469136953,
- -0.0158098042011261,
- -0.03886391967535019,
- -0.05436845123767853,
- -0.036020781844854355,
- -0.00973585993051529,
- 0.019000696018338203,
- -0.055292677134275436,
- 0.0028905640356242657,
- 0.04928431287407875,
- 0.020111829042434692,
- -0.00779204024001956,
- -0.006326710339635611,
- 0.043092962354421616,
- 0.0404878668487072,
- 0.05733906105160713,
- 0.07740344852209091,
- 0.010581783019006252,
- -0.014554963447153568,
- -0.009367871098220348,
- 0.0037946791853755713,
- 0.061259109526872635,
- -0.03451795503497124,
- 0.02639441192150116,
- 0.0073200734332203865,
- 0.01009052898734808,
- -0.00718689663335681,
- 0.06034250929951668,
- 0.07264090329408646,
- -0.033535975962877274,
- 0.04842904210090637,
- 0.03268050029873848,
- -0.030001329258084297,
- 0.03743618726730347,
- -0.0266195610165596,
- 0.11857493221759796,
- -0.020715566352009773,
- -0.05241383612155914,
- 0.020995086058974266,
- 0.04666050523519516,
- 0.01695244386792183,
- -0.045357074588537216,
- -0.04831700026988983,
- 0.004212120547890663,
- 0.035895396023988724,
- -0.05165739730000496,
- -0.05321528762578964,
- -0.038965437561273575,
- 0.03403105214238167,
- 0.0458175353705883,
- 0.04130464419722557,
- 0.03735312819480896,
- 0.01979556307196617,
- -0.013035339303314686,
- -0.10974402725696564,
- 0.08018645644187927,
- 0.027217639610171318,
- -0.11639270931482315,
- 0.016588985919952393,
- -0.04197456315159798,
- 0.12311173230409622,
- 0.028420928865671158,
- 3.7649511833143644e-33,
- 0.024549759924411774,
- -0.1036980003118515,
- -0.06884697079658508,
- 0.05142496898770332,
- 0.03705902770161629,
- -0.04923322796821594,
- -0.02503839321434498,
- -0.037025175988674164,
- 0.07205376774072647,
- 0.09979753196239471,
- -0.06825483590364456,
- -0.051463741809129715,
- 0.015159372240304947,
- 0.005068915896117687,
- 0.06372755020856857,
- -0.07188531011343002,
- 0.021117590367794037,
- -0.043687041848897934,
- -0.019852954894304276,
- 0.0021310029551386833,
- 0.03655322641134262,
- 0.036757566034793854,
- 0.010072018951177597,
- -0.023526545614004135,
- 0.02279921993613243,
- 0.013822456821799278,
- -0.02383156679570675,
- -0.011614727787673473,
- 0.04584435001015663,
- -0.02348528616130352,
- -0.020522596314549446,
- -0.02490474283695221,
- 0.010288353078067303,
- 0.014461077749729156,
- -0.07361888885498047,
- 0.030066058039665222,
- 0.004333381541073322,
- 0.012564330361783504,
- -0.04014229401946068,
- -0.04259372502565384,
- 0.02116614766418934,
- -0.054330646991729736,
- -0.04281065985560417,
- 0.05817808583378792,
- -0.02891203947365284,
- -0.04376881942152977,
- -0.018170872703194618,
- 0.0589163713157177,
- -0.05530857294797897,
- 0.0008745783707126975,
- -0.12615440785884857,
- 0.027963588014245033,
- -0.03799261152744293,
- -0.054148849099874496,
- -0.019200993701815605,
- 0.05899589881300926,
- 0.020391350612044334,
- -0.03860517218708992,
- 0.09150800853967667,
- 0.00703953392803669,
- 0.03151622787117958,
- 0.08593084663152695,
- -0.051950518041849136,
- 0.08141554892063141,
- 0.02044178731739521,
- -0.0162239670753479,
- -0.012330185621976852,
- -0.00938786007463932,
- 0.05825914442539215,
- 0.009047888219356537,
- 0.10790582746267319,
- -0.08926858007907867,
- -0.07079537957906723,
- 0.039102014154195786,
- -0.0691680908203125,
- 0.0027757470961660147,
- -0.06525416672229767,
- -0.03387456759810448,
- 0.016274480149149895,
- -0.02389589697122574,
- -0.030906256288290024,
- -0.03840585798025131,
- 0.00820531789213419,
- 0.03526752442121506,
- -0.02995542623102665,
- 0.02927030622959137,
- 0.06691769510507584,
- -0.05542025342583656,
- -0.010241111740469933,
- 0.01767626963555813,
- 0.006939375307410955,
- -0.04041198641061783,
- -0.01504026260226965,
- 0.018976934254169464,
- -0.04389704763889313,
- -1.209878508490192e-8,
- 0.010372010990977287,
- 0.06003750488162041,
- -0.010806937702000141,
- -0.03243577480316162,
- 0.07321011275053024,
- -0.09397072345018387,
- -0.006176970899105072,
- 0.040838178247213364,
- 0.037330713123083115,
- 0.01944718323647976,
- 0.06636565178632736,
- -0.030085526406764984,
- 0.004524187184870243,
- 0.010110699571669102,
- 0.00482563441619277,
- -0.02316526137292385,
- -0.012445397675037384,
- -0.0049894521944224834,
- -0.03251810371875763,
- 0.008220680989325047,
- 0.010176445357501507,
- -0.0030785538256168365,
- -0.04232177138328552,
- -0.09640228748321533,
- -0.016534004360437393,
- -0.06184538081288338,
- -0.050947051495313644,
- 0.07230015844106674,
- 0.017110677435994148,
- 0.07886970043182373,
- -0.008025686256587505,
- 0.021202612668275833,
- 0.01497996412217617,
- -0.03563827648758888,
- -0.020349102094769478,
- -0.017020348459482193,
- 0.03900342434644699,
- -0.10395583510398865,
- 0.033576563000679016,
- -0.09174072742462158,
- -0.05151372030377388,
- 0.04661812633275986,
- 0.04073518142104149,
- -0.012925967574119568,
- 0.04936596006155014,
- -0.0066708908416330814,
- 0.052354950457811356,
- -0.05171670392155647,
- 0.09142771363258362,
- -0.11294158548116684,
- -0.08111011236906052,
- -0.019222991541028023,
- -0.020978959277272224,
- 0.06167887896299362,
- 0.01860494539141655,
- -0.08438567072153091,
- 0.03413974866271019,
- -0.015903053805232048,
- -0.028220554813742638,
- 0.0389435775578022,
- 0.01663413643836975,
- -0.026841823011636734,
- 0.026134056970477104,
- -0.03773029148578644
- ]
- },
- {
- "keyword": "bureau",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0404992550611496,
- 0.04127835854887962,
- -0.12304380536079407,
- 0.0236857607960701,
- 0.0445299968123436,
- 0.011442304588854313,
- 0.05329505726695061,
- -0.013946634717285633,
- 0.001075104926712811,
- -0.004884255118668079,
- 0.010634196922183037,
- -0.05485929176211357,
- 0.052439503371715546,
- -0.0021931014489382505,
- -0.056371405720710754,
- -0.03700816631317139,
- 0.03995497152209282,
- 0.05905333533883095,
- -0.0011242751497775316,
- -0.05502801015973091,
- -0.060706641525030136,
- 0.1293976604938507,
- 0.005064194556325674,
- 0.0693078488111496,
- 0.02653157152235508,
- -0.02549738995730877,
- -0.11235939711332321,
- -0.04841182380914688,
- -0.08987165242433548,
- -0.07770631462335587,
- -0.009035496972501278,
- 0.046440158039331436,
- 0.08119264990091324,
- -0.032158009707927704,
- 0.06778157502412796,
- -0.009084581397473812,
- -0.030404672026634216,
- 0.05292839929461479,
- 0.04546142742037773,
- -0.026034653186798096,
- -0.05498874559998512,
- -0.020471518859267235,
- 0.03913990780711174,
- 0.00998124573379755,
- -0.04761618748307228,
- 0.025049101561307907,
- -0.010505519807338715,
- 0.012526110745966434,
- -0.013974441215395927,
- 0.09631375968456268,
- 0.026440514251589775,
- -0.04784166440367699,
- 0.020416634157299995,
- 0.09674561768770218,
- 0.0316031388938427,
- -0.019689682871103287,
- 0.00014563597505912185,
- 0.020228145644068718,
- -0.051464684307575226,
- -0.030677516013383865,
- 0.02052212692797184,
- -0.005688042379915714,
- -0.019506685435771942,
- 0.03523547947406769,
- 0.05856084078550339,
- 0.0899944081902504,
- -0.013015423901379108,
- -0.009962126612663269,
- -0.008053379133343697,
- -0.1923769861459732,
- 0.022805429995059967,
- -0.06508659571409225,
- -0.03981925919651985,
- 0.031896792352199554,
- 0.06911337375640869,
- -0.005398293491452932,
- -0.03566259518265724,
- 0.07744764536619186,
- 0.08101247251033783,
- -0.04901177063584328,
- -0.03485477715730667,
- -0.06779001653194427,
- 0.03287801146507263,
- 0.08919886499643326,
- 0.02720286138355732,
- 0.02276356890797615,
- 0.01910555548965931,
- 0.0072148763574659824,
- -0.0025676621589809656,
- 0.0027100916486233473,
- 0.036748006939888,
- 0.05691907927393913,
- 0.13956710696220398,
- -0.045797113329172134,
- -0.1711335927248001,
- -0.03274606913328171,
- -0.05444119870662689,
- 0.024134470149874687,
- 0.010726993903517723,
- 0.2304413765668869,
- -0.004100050311535597,
- 0.025273634120821953,
- -0.12002862244844437,
- -0.024630403146147728,
- -0.009276002645492554,
- -0.020970910787582397,
- 0.06978774815797806,
- 0.023528505116701126,
- -0.022928530350327492,
- 0.04360370710492134,
- 0.028016425669193268,
- 0.010322448797523975,
- -0.010552513413131237,
- -0.012964808382093906,
- 0.0537034273147583,
- -0.008721557445824146,
- 0.0035755117423832417,
- 0.07444404065608978,
- 0.04648389294743538,
- -0.060372184962034225,
- 0.029246393591165543,
- 0.08205509930849075,
- -0.05831209570169449,
- -0.021234100684523582,
- 0.0020663836039602757,
- -0.020868763327598572,
- 0.050172749906778336,
- -5.267332513343083e-33,
- 0.054007116705179214,
- 0.09995564818382263,
- 0.02632213942706585,
- -0.005232378840446472,
- -0.0226316936314106,
- 0.007718509063124657,
- -0.003492173971608281,
- 0.06000359728932381,
- 0.0011828707065433264,
- 0.03137502446770668,
- -0.01584862358868122,
- 0.0964786484837532,
- 0.0025310975033789873,
- -0.01522891316562891,
- 0.048433851450681686,
- 0.009413386695086956,
- -0.0250584427267313,
- -0.0352487787604332,
- 0.05506180226802826,
- 0.015483715571463108,
- 0.00019167177379131317,
- -0.003816877491772175,
- 0.017286980524659157,
- 0.08695634454488754,
- 0.09826965630054474,
- 0.02661663480103016,
- -0.07630568742752075,
- -0.014974934980273247,
- -0.012016433291137218,
- 0.05786702781915665,
- 0.0028953610453754663,
- 0.02149318717420101,
- 0.02008286491036415,
- -0.02393736131489277,
- 0.022633759304881096,
- -0.09780910611152649,
- -0.035737134516239166,
- 0.039204102009534836,
- -0.052315883338451385,
- -0.03742791712284088,
- -0.013485086150467396,
- 0.04073752835392952,
- 0.006686849053949118,
- 0.010016947984695435,
- -0.006007352843880653,
- 0.03120736964046955,
- 0.04090877249836922,
- 0.030763495713472366,
- 0.009103106334805489,
- 0.09113303571939468,
- 0.01771613024175167,
- -0.0018286996055394411,
- -0.053018223494291306,
- 0.0017475932836532593,
- 0.020919445902109146,
- -0.04305100440979004,
- 0.0336308553814888,
- -0.01288423128426075,
- 0.028208628296852112,
- -0.006937340833246708,
- 0.09983977675437927,
- 0.11646370589733124,
- -0.06412386149168015,
- 0.015110465697944164,
- -0.03799943998456001,
- -0.0018350762547925115,
- -0.019373267889022827,
- -0.0008516520611010492,
- 0.060557954013347626,
- -0.09394332021474838,
- -0.03802923485636711,
- -0.0067213429138064384,
- 0.055773474276065826,
- 0.06555063277482986,
- -0.0726800486445427,
- -0.010471584275364876,
- -0.007069832645356655,
- 0.008216137066483498,
- -0.022791238501667976,
- -0.04106679931282997,
- -0.020969433709979057,
- -0.04053860902786255,
- 0.0415738970041275,
- -0.002123813144862652,
- 0.03812818601727486,
- -0.0005430082674138248,
- -0.03006807155907154,
- -0.026226788759231567,
- -0.01365384366363287,
- -0.017427008599042892,
- -0.12128377705812454,
- 0.022561971098184586,
- 0.014090544544160366,
- 0.11587714403867722,
- 0.04301528260111809,
- 2.7247657831633226e-33,
- 0.006423128303140402,
- -0.06857891380786896,
- 0.03751605004072189,
- -0.007671831641346216,
- -0.018624858930706978,
- -0.05409301817417145,
- -0.0383598618209362,
- 0.006502648815512657,
- 0.12420936673879623,
- 0.04993746802210808,
- -0.05775316059589386,
- -0.05334414541721344,
- -0.027897419407963753,
- 0.08281998336315155,
- 0.10981176793575287,
- -0.012407548725605011,
- 0.009037453681230545,
- -0.05953628197312355,
- -0.06073632836341858,
- 0.009868350811302662,
- -0.04688158631324768,
- -0.02631255052983761,
- 0.019008802250027657,
- -0.09792834520339966,
- 0.010411239229142666,
- 0.06410346180200577,
- 0.04729894921183586,
- -0.02922023832798004,
- 0.08942681550979614,
- -0.019346950575709343,
- -0.00956470426172018,
- -0.06543479859828949,
- -0.06522826105356216,
- 0.04738178476691246,
- -0.08190175890922546,
- -0.018239188939332962,
- 0.010364358313381672,
- 0.02906864881515503,
- -0.05323747918009758,
- -0.07986204326152802,
- 0.02271736040711403,
- 0.020828310400247574,
- -0.07322269678115845,
- 0.07358963042497635,
- -0.024875042960047722,
- -0.030080106109380722,
- 0.00975086260586977,
- 0.008989041671156883,
- -0.05695706605911255,
- -0.010564387775957584,
- -0.04008376970887184,
- -0.03253531455993652,
- 0.07702387869358063,
- 0.006439180579036474,
- -0.02111040987074375,
- -0.0010759714059531689,
- 0.024464992806315422,
- 0.008529838174581528,
- 0.034113720059394836,
- -0.04462270066142082,
- 0.031926706433296204,
- 0.053162332624197006,
- -0.09542644768953323,
- 0.04864269122481346,
- -0.052455026656389236,
- -0.00463485112413764,
- -0.013226157054305077,
- -0.013889788649976254,
- 0.0026733719278126955,
- 0.031417589634656906,
- 0.08558325469493866,
- -0.06656748801469803,
- -0.017152773216366768,
- -0.045461490750312805,
- -0.06908735632896423,
- 0.032730601727962494,
- -0.07581612467765808,
- -0.033103663474321365,
- -0.05720270797610283,
- 0.11747021228075027,
- -0.04607618600130081,
- -0.0327945277094841,
- 0.02541295625269413,
- 0.03338852524757385,
- -0.025770630687475204,
- -0.07048867642879486,
- 0.004501982592046261,
- -0.06558636575937271,
- 0.030135996639728546,
- 0.02929583750665188,
- -0.0203568022698164,
- -0.020497487857937813,
- 0.0009883259190246463,
- 0.024766726419329643,
- 0.01758606545627117,
- -1.25005268358791e-8,
- 0.02395617961883545,
- 0.01946485973894596,
- -0.043715182691812515,
- 0.007219850551337004,
- 0.12691868841648102,
- -0.07677936553955078,
- -0.03362306207418442,
- 0.06542464345693588,
- -0.021519899368286133,
- 0.03214475139975548,
- 0.0973905399441719,
- 0.0357515811920166,
- -0.03429964557290077,
- -0.024313315749168396,
- -0.0054472447372972965,
- -0.06486047059297562,
- -0.026536811143159866,
- -0.013319258578121662,
- 0.0018704261165112257,
- 0.05600744113326073,
- -0.0606684684753418,
- -0.02082749456167221,
- -0.018017834052443504,
- -0.038351356983184814,
- -0.0923587754368782,
- -0.08738633245229721,
- -0.029036736115813255,
- -0.005291426554322243,
- 0.0010707357432693243,
- 0.026015805080533028,
- 0.0078468918800354,
- 0.08030784875154495,
- 0.020375272259116173,
- -0.08124994486570358,
- -0.0388941690325737,
- -0.04787308722734451,
- 0.014134724624454975,
- -0.03712798282504082,
- 0.014216560870409012,
- -0.01632426120340824,
- -0.048666905611753464,
- 0.029618019238114357,
- -0.03969033062458038,
- 0.003765052417293191,
- 0.06482135504484177,
- -0.048938605934381485,
- 0.02939906157553196,
- -0.026553532108664513,
- 0.031446557492017746,
- -0.0797380730509758,
- -0.04435647651553154,
- -0.06694956868886948,
- 0.0006393416551873088,
- 0.06308645009994507,
- -0.010644296184182167,
- -0.036511629819869995,
- 0.00895804911851883,
- -0.07525541633367538,
- -0.057813581079244614,
- -0.001700030523352325,
- 0.02046212926506996,
- -0.03425436466932297,
- 0.08993501216173172,
- -0.06070013344287872
- ]
- },
- {
- "keyword": "office",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.08103624731302261,
- 0.04725165292620659,
- 0.016028162091970444,
- 0.02830960787832737,
- -0.06543712317943573,
- 0.0024847909808158875,
- 0.08139580488204956,
- -0.008873369544744492,
- 0.07526598125696182,
- -0.015522132627665997,
- -0.027145395055413246,
- 0.0756726861000061,
- -0.06386309117078781,
- 0.0019269253825768828,
- -0.0010922786314040422,
- 0.02193295769393444,
- -0.0052459873259067535,
- 0.0014342375798150897,
- 0.006733459886163473,
- 0.015269068069756031,
- 0.016903560608625412,
- 0.050718195736408234,
- -0.04108642414212227,
- -0.0056306165643036366,
- 0.0220909733325243,
- 0.08876600116491318,
- -0.08530903607606888,
- 0.0475403293967247,
- -0.0047708535566926,
- -0.1211516410112381,
- 0.01772756315767765,
- -0.006726664490997791,
- 0.07706434279680252,
- 0.03164519742131233,
- 0.036948736757040024,
- 0.0025017238222062588,
- 0.059886954724788666,
- 0.027949606999754906,
- 0.0914183109998703,
- -0.027759404852986336,
- -0.061499860137701035,
- -0.03948279097676277,
- 0.0038202235009521246,
- -0.019590413197875023,
- 0.015123056247830391,
- -0.05506936460733414,
- 0.02782735973596573,
- 0.02787730097770691,
- 0.04905515909194946,
- 0.010857021436095238,
- -0.01618902198970318,
- -0.09257461130619049,
- -0.045582301914691925,
- 0.08836620301008224,
- 0.03618781641125679,
- -0.039594851434230804,
- 0.02008013427257538,
- 0.044040560722351074,
- -0.022915301844477654,
- -0.06860386580228806,
- 0.019306115806102753,
- -0.06857076287269592,
- -0.04143824428319931,
- 0.06924472004175186,
- -0.017984990030527115,
- 0.0352751798927784,
- -0.040241751819849014,
- 0.011252930387854576,
- -0.07271602004766464,
- -0.0912805050611496,
- -0.08041105419397354,
- -0.009064910933375359,
- 0.04304235428571701,
- 0.0336044616997242,
- 0.07936645299196243,
- -0.003035156521946192,
- -0.00901797041296959,
- -0.05819034203886986,
- 0.0838342010974884,
- 0.011726399883627892,
- 0.09197233617305756,
- 0.003502919338643551,
- -0.0983143076300621,
- 0.09641892462968826,
- -0.046494461596012115,
- -0.03628314286470413,
- 0.004959040321409702,
- 0.0363321490585804,
- 0.00880080834031105,
- -0.010902768932282925,
- -0.06752442568540573,
- -0.0035886671394109726,
- 0.005833851173520088,
- 0.05010613799095154,
- -0.09973669797182083,
- -0.05902683362364769,
- 0.010125028900802135,
- 0.01823505572974682,
- -0.042718954384326935,
- 0.25697553157806396,
- -0.05261955037713051,
- -0.027686841785907745,
- 0.06014283373951912,
- -0.027469389140605927,
- 0.010135121643543243,
- -0.04412401467561722,
- -0.013040333986282349,
- 0.0049599409103393555,
- 0.0013762740418314934,
- -0.02769755758345127,
- -0.06760522723197937,
- -0.0394284650683403,
- -0.12017112970352173,
- -0.035198573023080826,
- -0.011636760085821152,
- 0.0029633473604917526,
- -0.07116242498159409,
- 0.008894752711057663,
- 0.002591337077319622,
- 0.018119346350431442,
- 0.018792591989040375,
- 0.03906524181365967,
- -0.025427574291825294,
- -0.037550706416368484,
- -0.08496697247028351,
- -0.08381742984056473,
- 0.048777006566524506,
- -4.567205873941421e-33,
- 0.008653761819005013,
- -0.03173324465751648,
- 0.02131742425262928,
- 0.0739016905426979,
- 0.06759433448314667,
- 0.03621266037225723,
- -0.05476557835936546,
- 0.046372443437576294,
- 0.04963214695453644,
- 0.06070390343666077,
- -0.028529275208711624,
- 0.0342700257897377,
- -0.029390675947070122,
- 0.02226237952709198,
- 0.09852125495672226,
- 0.06426950544118881,
- 0.0340600423514843,
- 0.10035084933042526,
- -0.0961299017071724,
- 0.049957577139139175,
- 0.0013640456600114703,
- -0.01645701751112938,
- -0.038605231791734695,
- 0.04521303251385689,
- -0.022337032482028008,
- 0.04481959342956543,
- 0.033229339867830276,
- -0.06505730748176575,
- 0.10888586938381195,
- 0.02562960796058178,
- 0.014423348009586334,
- -0.01035839319229126,
- 0.026962043717503548,
- -0.016733618453145027,
- 0.001011436223052442,
- -0.0478949137032032,
- -0.052031535655260086,
- -0.10662863403558731,
- 0.08001159876585007,
- -0.029800228774547577,
- -0.096433624625206,
- 0.016034409403800964,
- 0.08290807902812958,
- 0.06173644959926605,
- 0.07966828346252441,
- 0.07336989790201187,
- 0.052853722125291824,
- 0.08842557668685913,
- 0.06775679439306259,
- 0.09357498586177826,
- 0.029279112815856934,
- -0.008915935643017292,
- -0.034583330154418945,
- 0.09492961317300797,
- -0.024499602615833282,
- -0.07708946615457535,
- 0.0032800871413201094,
- 0.013463105075061321,
- 0.057434987276792526,
- -0.03394530713558197,
- 0.02171686477959156,
- 0.11654218286275864,
- 0.01947840303182602,
- 0.03368045762181282,
- -0.01327380258589983,
- -0.0117615582421422,
- -0.005686034914106131,
- -0.02325531654059887,
- 0.10789144039154053,
- 0.006903040688484907,
- 0.0034391311928629875,
- -0.013056597672402859,
- 0.011133764870464802,
- -0.02072117291390896,
- 0.013015875592827797,
- 0.028227590024471283,
- 0.047723762691020966,
- 0.00823124498128891,
- -0.10522978007793427,
- -0.051144711673259735,
- -0.047863684594631195,
- 0.001438614446669817,
- 0.04588659852743149,
- -0.009289838373661041,
- 0.011681979522109032,
- 0.06759040057659149,
- 0.03779800608754158,
- -0.033729907125234604,
- 0.015711817890405655,
- 0.1160053163766861,
- -0.07892949879169464,
- -0.02922060899436474,
- -0.0014221295714378357,
- 0.0671699047088623,
- -0.018544577062129974,
- 4.190670054118087e-33,
- 0.008556196466088295,
- -0.10662437975406647,
- -0.07288027554750443,
- 0.020263195037841797,
- 0.02798418328166008,
- 0.023557180538773537,
- 0.022176766768097878,
- -0.02445618435740471,
- -0.0029966002330183983,
- 0.0549122616648674,
- -0.047357168048620224,
- -0.09124377369880676,
- 0.08099089562892914,
- 0.07967919111251831,
- 0.03367867320775986,
- -0.00901003833860159,
- 0.03397047147154808,
- -0.022516364231705666,
- -0.07480573654174805,
- 0.0853021889925003,
- -0.02008456364274025,
- -0.0534374937415123,
- 0.020892076194286346,
- 0.03850039839744568,
- 0.03018159419298172,
- 0.02485731989145279,
- -0.04257567971944809,
- -0.057945601642131805,
- 0.023634761571884155,
- -0.0031043796334415674,
- -0.09503834694623947,
- 0.06159783527255058,
- -0.08551185578107834,
- 0.06596430391073227,
- 0.02732016332447529,
- 0.05746477097272873,
- -0.027697449550032616,
- -0.04909674823284149,
- 0.014980917796492577,
- 0.015377338975667953,
- 0.0746091678738594,
- -0.0071275122463703156,
- -0.03248610347509384,
- 0.09503348171710968,
- -0.004176391754299402,
- -0.02592947520315647,
- -0.0809779018163681,
- 0.023504162207245827,
- -0.04379059746861458,
- -0.019272159785032272,
- -0.07398433238267899,
- 0.026270495727658272,
- -0.07522395253181458,
- -0.047702595591545105,
- -0.021592652425169945,
- 0.0011203136527910829,
- -0.05321013182401657,
- -0.08339116722345352,
- -0.02675725892186165,
- 0.03597493842244148,
- -0.03182471916079521,
- -0.027864668518304825,
- 0.013799664564430714,
- 0.06330496817827225,
- -0.04448625072836876,
- 0.035935815423727036,
- 0.02604304440319538,
- -0.05212404951453209,
- -0.0029527468141168356,
- 0.054747890681028366,
- 0.028713179752230644,
- 0.01021994836628437,
- -0.09724235534667969,
- -0.01660384237766266,
- -0.01103823073208332,
- 0.020469220355153084,
- -0.0402802936732769,
- -0.04719524458050728,
- -0.05448377504944801,
- -0.03817669302225113,
- -0.03178773075342178,
- -0.025645405054092407,
- 0.0033118813298642635,
- 0.020405320450663567,
- -0.07241202890872955,
- 0.0541263185441494,
- 0.044985756278038025,
- -0.014834662899374962,
- -0.1043492928147316,
- -0.0020526237785816193,
- 0.0028014532290399075,
- 0.018405050039291382,
- -0.014498572796583176,
- -0.012020273134112358,
- 0.0034805999603122473,
- -1.1621172468778695e-8,
- -0.04918825253844261,
- 0.013595680706202984,
- 0.06130841001868248,
- -0.06567951291799545,
- 0.023979218676686287,
- -0.06815557181835175,
- 0.019760923460125923,
- 0.041437242180109024,
- 0.05141498148441315,
- 0.04211302101612091,
- 0.047103531658649445,
- -0.08703271299600601,
- 0.017754429951310158,
- 0.04644186049699783,
- 0.02077447809278965,
- 0.02202082984149456,
- -0.01330347266048193,
- -0.019802995026111603,
- -0.03513138368725777,
- 0.012800305150449276,
- 0.03444308787584305,
- -0.005284331738948822,
- -0.01283216942101717,
- 0.021438326686620712,
- 0.02230083756148815,
- 0.009702544659376144,
- 0.03220750764012337,
- 0.10503970086574554,
- 0.021788448095321655,
- 0.06666580587625504,
- 0.07006236910820007,
- 0.08045078068971634,
- -0.10349857062101364,
- -0.022339530289173126,
- -0.0645582526922226,
- -0.058475278317928314,
- 0.05760547146201134,
- 0.03711272031068802,
- -0.0132704246789217,
- 0.01427959930151701,
- -0.035252850502729416,
- 0.00488825049251318,
- 0.023526348173618317,
- -0.029998641461133957,
- -0.00021026587637607008,
- -0.0448368601500988,
- 0.07171542942523956,
- -0.044302742928266525,
- -0.0035971070174127817,
- -0.0714975893497467,
- -0.008807847276329994,
- 0.03423864394426346,
- 0.03172588720917702,
- 0.01891223154962063,
- 0.0018735914491117,
- -0.006762048229575157,
- 0.035067226737737656,
- -0.01951473578810692,
- -0.10910198092460632,
- 0.03982148692011833,
- 0.05400288477540016,
- -0.03792514652013779,
- 0.017490124329924583,
- 0.024315398186445236
- ]
- },
- {
- "keyword": "department",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.05044484883546829,
- 0.004130626562982798,
- 0.02636602148413658,
- -0.02126001939177513,
- -0.025890100747346878,
- -0.052551303058862686,
- -0.025913039222359657,
- -0.0352150984108448,
- -0.014310901053249836,
- 0.02114723064005375,
- 0.03679695725440979,
- -0.003234714036807418,
- -0.001272871857509017,
- -0.04096167907118797,
- -0.04015710949897766,
- -0.03787381947040558,
- 0.01573619432747364,
- 0.016382861882448196,
- -0.009667593985795975,
- -0.06844541430473328,
- 0.011506868526339531,
- 0.09392077475786209,
- 0.0006336757214739919,
- -0.010139300487935543,
- -0.06035830080509186,
- 0.04427579790353775,
- -0.06810484081506729,
- 0.0026344514917582273,
- -0.061986103653907776,
- -0.06980741769075394,
- 0.03228135034441948,
- -0.011476658284664154,
- 0.05305136740207672,
- -0.04784468561410904,
- 0.008220472373068333,
- 0.06037077680230141,
- 0.021991565823554993,
- 0.03258172422647476,
- 0.0658797174692154,
- 0.041350655257701874,
- -0.03293420001864433,
- 0.0024143471382558346,
- 0.03482482582330704,
- 0.02230185456573963,
- -0.0664285197854042,
- 0.027123289182782173,
- 0.005054273176938295,
- 0.017974853515625,
- 0.026224657893180847,
- -0.0050582801923155785,
- 0.024904301390051842,
- 0.010342906229197979,
- 0.0008189483196474612,
- 0.13988952338695526,
- 0.04329346865415573,
- 0.045495498925447464,
- 0.054378148168325424,
- -0.002696090843528509,
- -0.058693043887615204,
- -0.05356692895293236,
- -0.024342462420463562,
- 0.0022732377983629704,
- 0.005471587646752596,
- 0.03724955394864082,
- 0.018306273967027664,
- -0.06144241243600845,
- -0.0067901466973125935,
- 0.04526318982243538,
- -0.023737573996186256,
- -0.1523156762123108,
- 0.03105323575437069,
- -0.046739157289266586,
- -0.01603514701128006,
- 0.015889715403318405,
- 0.07388819754123688,
- -0.016384053975343704,
- 0.017370499670505524,
- 0.004474634304642677,
- 0.061719655990600586,
- -0.06615515798330307,
- 0.09089217334985733,
- 0.04103647172451019,
- -0.018541622906923294,
- 0.04925497621297836,
- -0.05510899797081947,
- 0.00844712182879448,
- 0.027154190465807915,
- 0.004312789998948574,
- -0.0574786476790905,
- -0.0037874379195272923,
- 0.003144781105220318,
- -0.057446982711553574,
- 0.0659661516547203,
- -0.01275609526783228,
- -0.09245148301124573,
- 0.02290765382349491,
- 0.03502250835299492,
- -0.06007971242070198,
- -0.024312732741236687,
- 0.21301889419555664,
- -0.0008296154555864632,
- -0.0009393683867529035,
- -0.01833917200565338,
- -0.014725446701049805,
- -0.03696320578455925,
- -0.023964567109942436,
- -0.030921179801225662,
- 0.04342903941869736,
- 0.006070691626518965,
- -0.00010411153198219836,
- 0.015832053497433662,
- 0.0290537029504776,
- -0.07402452826499939,
- 0.027453837916254997,
- 0.022473791614174843,
- -0.06388671696186066,
- -0.043015070259571075,
- 0.059162210673093796,
- 0.007312903180718422,
- -0.053139667958021164,
- 0.031023576855659485,
- 0.05000697821378708,
- -0.07322005927562714,
- 0.018466997891664505,
- 0.000963043887168169,
- 0.00956597737967968,
- 0.03996700793504715,
- -5.238453188537272e-33,
- 0.08701912313699722,
- 0.053689561784267426,
- -0.02711251750588417,
- -0.05832517892122269,
- 0.013201888650655746,
- 0.033827029168605804,
- -0.044995613396167755,
- 0.09967245161533356,
- -0.00031488281092606485,
- 0.09002341330051422,
- -0.04787170886993408,
- 0.07112665474414825,
- -0.02126736007630825,
- -0.04419567063450813,
- 0.07466159760951996,
- 0.013772150501608849,
- -0.06403391808271408,
- 0.11163558810949326,
- -0.002836102619767189,
- 0.007701039779931307,
- -0.04155853018164635,
- 0.07403165847063065,
- -0.06326586753129959,
- 0.05202682316303253,
- 0.0500163696706295,
- 0.023274488747119904,
- -0.03730560094118118,
- 0.027989214286208153,
- 0.08068249374628067,
- 0.012043727561831474,
- 0.03565376624464989,
- 0.031655654311180115,
- 0.03228805959224701,
- 0.003151567652821541,
- 0.013740037567913532,
- -0.029983961954712868,
- -0.06813431531190872,
- -0.025481153279542923,
- -0.016117198392748833,
- -0.08343329280614853,
- -0.015655651688575745,
- -0.01124690379947424,
- 0.08424505591392517,
- 0.03026866540312767,
- -0.07123485952615738,
- 0.011605765670537949,
- 0.04487737640738487,
- -0.007395788561552763,
- -0.0026341602206230164,
- 0.0826963484287262,
- -0.012971972115337849,
- -0.05270855128765106,
- 0.020711278542876244,
- 0.03018946200609207,
- -0.01196936797350645,
- -0.030442433431744576,
- 0.02594122290611267,
- -0.04544901102781296,
- 0.05048690363764763,
- 0.014658264815807343,
- 0.040230002254247665,
- 0.13639631867408752,
- -0.030194761231541634,
- 0.018025793135166168,
- -0.01775425113737583,
- -0.12332078069448471,
- 0.02367645874619484,
- -0.06080874428153038,
- 0.1050187423825264,
- -0.0065544904209673405,
- -0.10009659826755524,
- 0.0449865497648716,
- 0.01752842590212822,
- 0.02512560971081257,
- -0.0022619739174842834,
- -0.000703739991877228,
- 0.03522893786430359,
- 0.02967115119099617,
- -0.061457034200429916,
- -0.08916281908750534,
- -0.10184885561466217,
- -0.028443794697523117,
- -0.01748763583600521,
- 0.06998933851718903,
- 0.12215380370616913,
- 0.03541005030274391,
- -0.005102971103042364,
- 0.023555386811494827,
- -0.0027513077948242426,
- 0.026267966255545616,
- -0.12802067399024963,
- -0.0017147513572126627,
- 0.03335774317383766,
- 0.13551975786685944,
- 0.017397651448845863,
- 2.639500749413451e-33,
- -0.010177971795201302,
- -0.028082115575671196,
- -0.030973289161920547,
- 0.019491681829094887,
- 0.031645167618989944,
- 0.015896975994110107,
- -0.018242139369249344,
- 0.034296706318855286,
- 0.018280573189258575,
- -0.013489820994436741,
- -0.04716771841049194,
- -0.004545001778751612,
- -0.05725675821304321,
- 0.0721006765961647,
- 0.1056525856256485,
- 0.01254213321954012,
- 0.06700963526964188,
- -0.07430239021778107,
- -0.06791206449270248,
- 0.03949330374598503,
- -0.0095199104398489,
- -0.03305118903517723,
- -0.03873497620224953,
- -0.026940951123833656,
- -0.06180724501609802,
- 0.05169204622507095,
- 0.014125745743513107,
- -0.03754153847694397,
- -0.01967793144285679,
- 0.022167976945638657,
- 0.0064558666199445724,
- -0.061353132128715515,
- -0.12555116415023804,
- 0.07351448386907578,
- -0.11795265227556229,
- -0.008179527707397938,
- 0.017319247126579285,
- -0.015698814764618874,
- -0.06751232594251633,
- 0.03259029984474182,
- 0.050271544605493546,
- 0.0365157388150692,
- -0.00494117196649313,
- 0.1707339882850647,
- -0.034349408000707626,
- -0.04074232652783394,
- -0.05176546797156334,
- 0.008566297590732574,
- -0.03254292532801628,
- -0.005970681551843882,
- -0.16863703727722168,
- -0.038879092782735825,
- 0.006242586765438318,
- -0.004310911055654287,
- -0.007212985306978226,
- 0.004612689837813377,
- 0.034082382917404175,
- 0.02427932247519493,
- -0.017605135217308998,
- 0.0010377661092206836,
- 0.02884293906390667,
- 0.055393386632204056,
- -0.04693323373794556,
- 0.03982433304190636,
- -0.07510937750339508,
- 0.02383025921881199,
- 0.002513122744858265,
- -0.03470660373568535,
- 0.0020239094737917185,
- 0.017886048182845116,
- 0.07229908555746078,
- -0.002230943413451314,
- -0.04107559844851494,
- -0.0896211713552475,
- -0.03208330646157265,
- -0.03834030032157898,
- -0.07465142011642456,
- -0.060489580035209656,
- -0.018870068714022636,
- 0.10278400778770447,
- 0.04944629967212677,
- -0.0447232611477375,
- -0.038604363799095154,
- 0.07181891053915024,
- -0.09261009842157364,
- 0.03812295198440552,
- 0.10339830815792084,
- 0.003911402076482773,
- 0.007424207404255867,
- -0.0257879626005888,
- -0.0012744036503136158,
- 0.014066032133996487,
- -0.0038520353846251965,
- 0.00515937153249979,
- 0.026174025610089302,
- -1.2011859062965868e-8,
- 0.027507727965712547,
- 0.0440596267580986,
- -0.0041624740697443485,
- -0.012211480177938938,
- 0.05841973423957825,
- -0.08999896049499512,
- -0.04742160066962242,
- 0.06968269497156143,
- 0.014495624229311943,
- 0.018435446545481682,
- 0.028799457475543022,
- 0.07050541788339615,
- -0.06263561546802521,
- -0.017281003296375275,
- 0.03005804866552353,
- -0.007100384682416916,
- -0.048290740698575974,
- 0.01911931298673153,
- -0.04599907994270325,
- 0.011615323834121227,
- -0.06930070370435715,
- 0.004415800794959068,
- -0.0610237680375576,
- 0.004012232646346092,
- -0.028304221108555794,
- 0.01803562045097351,
- 0.0712832510471344,
- -0.0639699399471283,
- 0.041834548115730286,
- 0.12588025629520416,
- 0.028661055490374565,
- 0.059800609946250916,
- -0.050835464149713516,
- -0.06651134788990021,
- -0.019727004691958427,
- -0.08976566046476364,
- -0.013421139679849148,
- -0.0555696003139019,
- 0.0817379578948021,
- -0.06883467733860016,
- -0.008292373269796371,
- -0.012533482164144516,
- 0.020309245213866234,
- 0.028933653607964516,
- 0.02606414444744587,
- -0.03308120742440224,
- 0.07194428890943527,
- -0.06336668878793716,
- 0.020675940439105034,
- -0.08938457816839218,
- -0.025725122541189194,
- -0.016534918919205666,
- -0.027172250673174858,
- 0.02550494857132435,
- -0.009976559318602085,
- -0.0201225858181715,
- 0.039605747908353806,
- -0.048549484461545944,
- -0.12653352320194244,
- 0.003832693211734295,
- 0.001083806506358087,
- -0.03462779149413109,
- 0.09923165291547775,
- 0.017181888222694397
- ]
- },
- {
- "keyword": "startup",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.025090668350458145,
- -0.026435326784849167,
- -0.0013854290591552854,
- -0.01360678393393755,
- 0.04682653397321701,
- 0.0778500884771347,
- 0.05083585903048515,
- 0.05180878937244415,
- -0.028247438371181488,
- -0.017377391457557678,
- -0.002019049832597375,
- 0.049353063106536865,
- -0.01850731670856476,
- 0.0336274728178978,
- 0.0048664892092347145,
- 0.0006125066429376602,
- 0.04720236361026764,
- -0.10706749558448792,
- 0.007505184505134821,
- 0.011077843606472015,
- -0.09207091480493546,
- -0.05007600411772728,
- -0.05546033754944801,
- 0.015996549278497696,
- 0.056824956089258194,
- 0.002585305832326412,
- 0.011077497154474258,
- 0.025220554322004318,
- -0.03580146282911301,
- -0.044106412678956985,
- -0.04679572582244873,
- -0.046494293957948685,
- 0.020354805514216423,
- 0.0034115908201783895,
- -0.04526493698358536,
- 0.021117480471730232,
- 0.03939857706427574,
- -0.007054703775793314,
- -0.061309561133384705,
- -0.036591045558452606,
- 0.053311001509428024,
- -0.08976970613002777,
- -0.039666205644607544,
- 0.003487285925075412,
- 0.057276125997304916,
- 0.06086735799908638,
- 0.04861047491431236,
- -0.010467467829585075,
- 0.08806462585926056,
- -0.0056657446548342705,
- 0.023897409439086914,
- -0.04875225946307182,
- 0.0339016355574131,
- -0.09255039691925049,
- 0.04057752713561058,
- 0.04191279783844948,
- -0.01469497662037611,
- -0.011510632932186127,
- 0.04795769229531288,
- -0.02687717229127884,
- 0.03245420381426811,
- -0.037544749677181244,
- 0.004220080561935902,
- 0.07141821086406708,
- 0.11093243211507797,
- -0.045996323227882385,
- -0.03315380588173866,
- -0.057824403047561646,
- -0.019184548407793045,
- -0.0023616282269358635,
- -0.015981893986463547,
- 0.03537071496248245,
- -0.008667143061757088,
- 0.0911586657166481,
- -0.10403818637132645,
- 0.02205161191523075,
- 0.07673061639070511,
- -0.009030160494148731,
- 0.07820967584848404,
- -0.06610996276140213,
- -0.0888553112745285,
- 0.04251927137374878,
- -0.04565727710723877,
- 0.08616446703672409,
- -0.05781647935509682,
- 0.06016463413834572,
- 0.037595752626657486,
- -0.008358515799045563,
- 0.005420527420938015,
- -0.020616130903363228,
- -0.03144213929772377,
- 0.031938254833221436,
- 0.027323409914970398,
- 0.02608676254749298,
- -0.03254755586385727,
- 0.008807777427136898,
- 0.07214375585317612,
- -0.11102508753538132,
- -0.01886606402695179,
- 0.1861809641122818,
- 0.018307402729988098,
- 0.019438259303569794,
- 0.11395606398582458,
- 0.056508731096982956,
- -0.0027025218587368727,
- -0.052321311086416245,
- -0.003271667752414942,
- 0.000741280207876116,
- -0.041116729378700256,
- -0.04032982140779495,
- -0.02512204833328724,
- -0.02102896198630333,
- 0.03802131488919258,
- 0.039477407932281494,
- 0.05563554912805557,
- -0.02307869866490364,
- -0.04472511634230614,
- 0.012210763059556484,
- 0.019670596346259117,
- 0.02042599767446518,
- 0.0692809596657753,
- -0.050809476524591446,
- -0.005713195540010929,
- -0.06989019364118576,
- -0.10371574759483337,
- -0.025162627920508385,
- 0.011690700426697731,
- -4.625008604591199e-33,
- 0.08850959688425064,
- -0.05141556262969971,
- -0.036417894065380096,
- 0.1012902781367302,
- -0.005656920839101076,
- -0.02852066233754158,
- 0.018156833946704865,
- -0.009700954891741276,
- -0.01056317612528801,
- 0.0664898008108139,
- 0.030551698058843613,
- 0.06961438804864883,
- 0.033184368163347244,
- 0.01975949853658676,
- 0.0698835626244545,
- -0.051988404244184494,
- 0.021912137046456337,
- -0.015675246715545654,
- -0.033970389515161514,
- -0.03801416605710983,
- 0.02905561774969101,
- -0.035982273519039154,
- -0.04947778582572937,
- 0.008089127950370312,
- 0.03337637707591057,
- -0.05782010033726692,
- -0.029269790276885033,
- -0.00750010646879673,
- 0.00451648747548461,
- 0.010914729908108711,
- 0.03942989930510521,
- -0.042595796287059784,
- -0.06566845625638962,
- -0.034007832407951355,
- -0.02124602720141411,
- -0.06907068192958832,
- 0.023143436759710312,
- -0.018062947317957878,
- -0.03896517679095268,
- -0.08343171328306198,
- -0.005103936418890953,
- 0.020440418273210526,
- -0.0014115441590547562,
- -0.1102074384689331,
- 0.010846537537872791,
- 0.02428663894534111,
- 0.0327792689204216,
- 0.03297434002161026,
- 0.07613243907690048,
- -0.026361746713519096,
- -0.020480932667851448,
- -0.047144945710897446,
- 0.0005832626484334469,
- 0.02258194051682949,
- -0.048354312777519226,
- 0.04197382181882858,
- -0.0678231418132782,
- -0.07430939376354218,
- 0.014218879863619804,
- -0.02726672776043415,
- 0.015908028930425644,
- 0.03444840759038925,
- -0.00006553881394211203,
- 0.02888518199324608,
- -0.0009761351393535733,
- -0.03397809714078903,
- 0.05486662685871124,
- -0.030018702149391174,
- -0.008683113381266594,
- -0.054626114666461945,
- -0.0014028949663043022,
- -0.1027151569724083,
- 0.06059153750538826,
- 0.0009188938420265913,
- 0.0004685868916567415,
- 0.11211644858121872,
- 0.030639851465821266,
- 0.027906712144613266,
- -0.13968852162361145,
- 0.05046413093805313,
- 0.0569528266787529,
- -0.03021327592432499,
- -0.0005614589899778366,
- 0.025824811309576035,
- 0.06658722460269928,
- 0.06811735033988953,
- 0.0035032888408750296,
- -0.04168802499771118,
- -0.046541158109903336,
- 0.053136445581912994,
- -0.030452661216259003,
- 0.03125642240047455,
- 0.07028937339782715,
- 0.07295548170804977,
- -0.06286904215812683,
- 4.0187271893454495e-33,
- 0.0350625216960907,
- -0.017105666920542717,
- 0.08312986046075821,
- -0.018247317522764206,
- 0.06414518505334854,
- 0.0029030025471001863,
- 0.00505476538091898,
- 0.01780177839100361,
- -0.07883243262767792,
- 0.06718906760215759,
- 0.020225415006279945,
- -0.033111605793237686,
- 0.023153292015194893,
- -0.017799515277147293,
- 0.04130909591913223,
- 0.03208130970597267,
- 0.03310356289148331,
- 0.05674011632800102,
- 0.011771917343139648,
- 0.03952266648411751,
- -0.032557398080825806,
- -0.06587093323469162,
- -0.08960989117622375,
- -0.03551894798874855,
- -0.020718375220894814,
- 0.07240597903728485,
- 0.00022697039821650833,
- 0.12224433571100235,
- -0.17840871214866638,
- 0.02635982446372509,
- 0.08060267567634583,
- 0.013862651772797108,
- 0.03238190338015556,
- 0.023913929238915443,
- -0.06518108397722244,
- 0.04840978980064392,
- -0.019917501136660576,
- -0.02310948073863983,
- 0.002935939934104681,
- -0.05710792914032936,
- 0.07089877128601074,
- -0.07425394654273987,
- 0.0037504241336137056,
- 0.050301551818847656,
- -0.042725589126348495,
- -0.041321709752082825,
- 0.007363534532487392,
- -0.07205434143543243,
- -0.02312801219522953,
- 0.032938484102487564,
- -0.011279607191681862,
- 0.01603875309228897,
- 0.11170191317796707,
- -0.046242855489254,
- -0.00788592454046011,
- -0.024262793362140656,
- 0.05643318593502045,
- 0.05311768129467964,
- 0.036555372178554535,
- 0.0321849025785923,
- 0.07204887270927429,
- 0.03606525808572769,
- -0.010782682336866856,
- 0.014867297373712063,
- -0.07266547530889511,
- -0.0811261460185051,
- 0.0004978078650310636,
- 0.1112908348441124,
- -0.09912391006946564,
- -0.05373365432024002,
- -0.049344442784786224,
- -0.00038875467726029456,
- 0.03971591964364052,
- -0.010752604342997074,
- -0.08392521739006042,
- -0.05052030459046364,
- -0.014585111290216446,
- -0.13514797389507294,
- -0.0574730820953846,
- -0.012660602107644081,
- 0.04634600877761841,
- -0.06203629821538925,
- -0.08630039542913437,
- 0.0354597344994545,
- -0.05136233940720558,
- -0.06973204761743546,
- -0.00039848784217610955,
- 0.05852926895022392,
- 0.021553918719291687,
- -0.0028419778682291508,
- -0.04615020006895065,
- -0.015293058939278126,
- 0.03401048481464386,
- 0.07396756857633591,
- -0.0034552274737507105,
- -1.0943619344061517e-8,
- -0.029452795162796974,
- -0.05181547999382019,
- 0.12225719541311264,
- 0.06568744778633118,
- 0.0550181046128273,
- -0.012645311653614044,
- 0.03614827245473862,
- 0.040390852838754654,
- 0.029293112456798553,
- -0.04789074510335922,
- -0.037505701184272766,
- 0.028807450085878372,
- -0.036350101232528687,
- 0.013526183553040028,
- 0.00542469322681427,
- 0.058486517518758774,
- -0.023302366957068443,
- 0.0454016774892807,
- -0.03325381875038147,
- -0.00766931613907218,
- -0.015574750490486622,
- 0.031640976667404175,
- 0.033459197729825974,
- -0.027249719947576523,
- 0.05618337541818619,
- -0.012362237088382244,
- 0.1282222419977188,
- 0.014655835926532745,
- 0.04407399147748947,
- 0.08592867106199265,
- -0.0073989806696772575,
- 0.08922338485717773,
- 0.044711459428071976,
- 0.00030498713022097945,
- -0.062390320003032684,
- 0.04035039618611336,
- -0.01891184039413929,
- 0.03157959505915642,
- -0.0694984570145607,
- -0.07998437434434891,
- 0.07648591697216034,
- 0.02452472597360611,
- 0.06099768728017807,
- -0.06323014199733734,
- -0.1200254037976265,
- 0.011072684079408646,
- -0.11080271005630493,
- 0.003458690829575062,
- 0.0013242170680314302,
- -0.049468182027339935,
- -0.07012566179037094,
- 0.046117205172777176,
- 0.06822303682565689,
- -0.01075711753219366,
- 0.021960541605949402,
- -0.006420596968382597,
- -0.02181805670261383,
- 0.013692507520318031,
- -0.022616369649767876,
- 0.07488659769296646,
- 0.02375723607838154,
- 0.010704921558499336,
- 0.069229356944561,
- -0.030516626313328743
- ]
- },
- {
- "keyword": "venture",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.04120151326060295,
- -0.06385700404644012,
- 0.05165613442659378,
- -0.046240001916885376,
- 0.007921499200165272,
- -0.04523142799735069,
- 0.015185720287263393,
- 0.005352361127734184,
- 0.016649290919303894,
- 0.05709431320428848,
- 0.02039756253361702,
- -0.008251016959547997,
- 0.02027902938425541,
- 0.02129962667822838,
- 0.004116686061024666,
- -0.0006058429717086256,
- 0.03777337074279785,
- -0.007911741733551025,
- 0.020304525271058083,
- -0.006793676409870386,
- -0.12474019080400467,
- -0.0022244418505579233,
- -0.004447961691766977,
- -0.02034156583249569,
- 0.07943811267614365,
- 0.023599805310368538,
- 0.030334383249282837,
- 0.054009128361940384,
- 0.025500662624835968,
- -0.0960741713643074,
- 0.023106122389435768,
- 0.10470172762870789,
- -0.010584239847958088,
- 0.013865737244486809,
- 0.08812551945447922,
- 0.06228913739323616,
- -0.06069107726216316,
- -0.03882528468966484,
- -0.02641073241829872,
- -0.011971797794103622,
- 0.010959107428789139,
- -0.09847623854875565,
- -0.0014420043444260955,
- -0.04388677328824997,
- -0.027149146422743797,
- 0.03375966101884842,
- -0.0010410933755338192,
- 0.04816951975226402,
- 0.07785273343324661,
- 0.07294860482215881,
- -0.04064268246293068,
- -0.10070949792861938,
- 0.016132887452840805,
- -0.02238384820520878,
- -0.022714665159583092,
- 0.014165816828608513,
- -0.021033914759755135,
- -0.014437290839850903,
- 0.04078717902302742,
- -0.026995249092578888,
- 0.07815134525299072,
- 0.021391693502664566,
- 0.016368571668863297,
- 0.01925755850970745,
- -0.054443858563899994,
- -0.014004416763782501,
- -0.011910988949239254,
- 0.11567315459251404,
- -0.02573661506175995,
- -0.08810894191265106,
- 0.08375079184770584,
- -0.056029122322797775,
- -0.07985883206129074,
- -0.010954118333756924,
- -0.023133739829063416,
- 0.022020934149622917,
- 0.04507966712117195,
- 0.012400193139910698,
- 0.0975465252995491,
- -0.12492986023426056,
- -0.01568479835987091,
- 0.025176532566547394,
- -0.07802361249923706,
- 0.045164261013269424,
- -0.08519327640533447,
- 0.0056005497463047504,
- 0.07355846464633942,
- 0.03129167482256889,
- 0.1297263652086258,
- 0.052282512187957764,
- -0.11661936342716217,
- -0.016244808211922646,
- 0.09048669785261154,
- -0.055731046944856644,
- -0.0295136496424675,
- 0.027130531147122383,
- -0.03636109456419945,
- -0.10350526124238968,
- 0.0058523318730294704,
- 0.2065683901309967,
- -0.025114521384239197,
- 0.03158928453922272,
- 0.03033333085477352,
- -0.03160504624247551,
- -0.033083993941545486,
- -0.023491056635975838,
- 0.00015315650671254843,
- 0.028104109689593315,
- 0.11735941469669342,
- 0.03534357249736786,
- -0.06288024038076401,
- 0.027218321338295937,
- 0.06640999764204025,
- 0.011789831332862377,
- 0.02341313660144806,
- 0.011698972433805466,
- -0.046537742018699646,
- 0.011993090622127056,
- 0.028384855017066002,
- -0.032694995403289795,
- 0.03795400634407997,
- 0.042252976447343826,
- -0.02160898968577385,
- -0.02730245143175125,
- -0.05667261406779289,
- -0.11318813264369965,
- 0.023221461102366447,
- -6.347118481463405e-33,
- -0.044754691421985626,
- 0.03209841996431351,
- 0.04742150753736496,
- 0.0704369992017746,
- 0.05768435820937157,
- 0.006455217953771353,
- -0.014574620872735977,
- 0.016910310834646225,
- -0.13941740989685059,
- 0.03156857565045357,
- -0.006083561107516289,
- -0.03266693279147148,
- -0.0012901709415018559,
- 0.07185306400060654,
- 0.08912520855665207,
- -0.06917762756347656,
- -0.00740705756470561,
- 0.00956701673567295,
- 0.006097523495554924,
- -0.03256930783390999,
- -0.06431389600038528,
- -0.04927726835012436,
- -0.015320105478167534,
- 0.07504909485578537,
- 0.04047650098800659,
- -0.101032555103302,
- 0.015078835189342499,
- 0.017731575295329094,
- 0.022939840331673622,
- 0.034062810242176056,
- -0.02701503597199917,
- 0.027868865057826042,
- -0.020515242591500282,
- -0.003219688544049859,
- 0.010050494223833084,
- -0.02740711160004139,
- 0.013917260803282261,
- -0.12587088346481323,
- -0.052471406757831573,
- 0.08095242083072662,
- -0.06071092560887337,
- 0.018016543239355087,
- -0.014720139093697071,
- -0.00032567288144491613,
- -0.010937588289380074,
- 0.0025786866899579763,
- 0.07382960617542267,
- 0.023344697430729866,
- 0.038879554718732834,
- 0.04978087544441223,
- -0.0006462297169491649,
- 0.009939678013324738,
- 0.026608344167470932,
- -0.03599885106086731,
- 0.02759363129734993,
- 0.03519062697887421,
- -0.01909678429365158,
- -0.0072194235399365425,
- -0.012509859167039394,
- -0.03432729095220566,
- 0.018678812310099602,
- 0.08928176015615463,
- -0.09326203912496567,
- 0.0405600406229496,
- 0.0008689705864526331,
- -0.01703494042158127,
- 0.06200755387544632,
- 0.005119758192449808,
- 0.09379516541957855,
- 0.036188285797834396,
- 0.0022374915424734354,
- 0.005476309452205896,
- -0.05282137542963028,
- -0.023548094555735588,
- -0.048878517001867294,
- -0.009012535214424133,
- -0.07931386679410934,
- 0.03822329267859459,
- 0.020523907616734505,
- 0.03739035129547119,
- -0.00753359217196703,
- -0.02223539911210537,
- -0.06896334141492844,
- 0.05095889791846275,
- 0.03041701205074787,
- 0.010613474994897842,
- 0.07087867707014084,
- -0.014667578041553497,
- -0.006829555612057447,
- -0.03583301231265068,
- -0.07115782052278519,
- -0.015165283344686031,
- 0.028945544734597206,
- 0.06070719286799431,
- -0.006529638543725014,
- 4.613722022113382e-33,
- -0.0898510217666626,
- -0.02533680386841297,
- 0.011182053945958614,
- 0.06801676750183105,
- 0.05667048692703247,
- 0.006800502073019743,
- 0.0322512723505497,
- -0.011872909963130951,
- -0.08375626802444458,
- 0.025856345891952515,
- -0.0803862065076828,
- -0.04156975448131561,
- 0.02880121022462845,
- -0.030949683859944344,
- -0.0253024622797966,
- 0.015606289729475975,
- 0.08333434909582138,
- -0.04049568623304367,
- 0.04201640188694,
- 0.057526662945747375,
- 0.0418970063328743,
- -0.080827996134758,
- 0.02177424356341362,
- -0.04145810380578041,
- 0.03340023010969162,
- 0.05806683748960495,
- 0.038216110318899155,
- 0.07260575890541077,
- -0.13302284479141235,
- 0.03475267067551613,
- 0.018627269193530083,
- 0.05900915712118149,
- -0.08531253784894943,
- 0.007609240710735321,
- -0.00848313607275486,
- 0.02695591188967228,
- 0.05820471793413162,
- -0.020663918927311897,
- -0.052990518510341644,
- -0.15935295820236206,
- 0.03434397652745247,
- -0.0323934331536293,
- -0.004959208890795708,
- 0.04061923548579216,
- -0.029401401057839394,
- 0.01201997697353363,
- 0.04823043942451477,
- 0.02358197048306465,
- 0.08598659187555313,
- 0.04014132171869278,
- -0.07620228826999664,
- 0.042495232075452805,
- 0.014691866934299469,
- -0.011913728900253773,
- -0.015909848734736443,
- -0.07094138860702515,
- 0.03933902829885483,
- 0.0355621799826622,
- 0.008259112946689129,
- -0.026378819718956947,
- 0.031673260033130646,
- 0.02865925058722496,
- 0.06721458584070206,
- 0.09061992168426514,
- -0.014871791936457157,
- 0.008535434491932392,
- 0.07035981118679047,
- 0.10497661679983139,
- -0.06011474132537842,
- -0.09756778180599213,
- -0.0016047207172960043,
- 0.03861089050769806,
- -0.012325884774327278,
- -0.06636383384466171,
- -0.09507239609956741,
- -0.019308824092149734,
- -0.00851356703788042,
- -0.054966866970062256,
- -0.031646158546209335,
- -0.02066156640648842,
- 0.03915225714445114,
- -0.04450829699635506,
- 0.02126811258494854,
- 0.021330295130610466,
- -0.022883284837007523,
- 0.03931901231408119,
- -0.058298733085393906,
- 0.011175905354321003,
- 0.010620447807013988,
- 0.07523686438798904,
- -0.05103665962815285,
- -0.0654490664601326,
- -0.028894856572151184,
- 0.024168148636817932,
- -0.012758231721818447,
- -1.2876364863245726e-8,
- -0.024540619924664497,
- 0.03094693087041378,
- 0.02514251321554184,
- -0.07711075246334076,
- 0.05511964485049248,
- -0.07550886273384094,
- -0.09164561331272125,
- 0.008988200686872005,
- 0.0531168095767498,
- 0.044961053878068924,
- -0.03127461299300194,
- -0.040732283145189285,
- 0.025807993486523628,
- 0.12210115045309067,
- 0.04866625368595123,
- -0.05845952779054642,
- 0.0018074138788506389,
- 0.03164827451109886,
- -0.057411715388298035,
- -0.04838600009679794,
- 0.030893830582499504,
- 0.05661754310131073,
- 0.015145543962717056,
- -0.06849174946546555,
- -0.030402187258005142,
- 0.007755457889288664,
- -0.03927059471607208,
- -0.07745812833309174,
- 0.04446249082684517,
- -0.02844017930328846,
- 0.04502798989415169,
- 0.09945864975452423,
- -0.049566999077796936,
- -0.0432688370347023,
- -0.07027855515480042,
- -0.06926008313894272,
- 0.007936853915452957,
- 0.03992348909378052,
- 0.011781015433371067,
- -0.030625605955719948,
- -0.025884347036480904,
- 0.07603160291910172,
- 0.029526757076382637,
- -0.05615511164069176,
- -0.03017624095082283,
- -0.0010191182373091578,
- -0.014266294427216053,
- -0.07157669216394424,
- 0.03525153174996376,
- -0.08518150448799133,
- -0.0010461771162226796,
- -0.020350487902760506,
- 0.030340252444148064,
- 0.007242515217512846,
- 0.08553770184516907,
- -0.044618602842092514,
- -0.001673624268732965,
- -0.002724194433540106,
- -0.020217878744006157,
- -0.004435657989233732,
- 0.03142816945910454,
- -0.029745927080512047,
- 0.0401693619787693,
- -0.0606837272644043
- ]
- },
- {
- "keyword": "subsidiary",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.030822915956377983,
- -0.048317763954401016,
- 0.029221288859844208,
- -0.02132219448685646,
- -0.00466355262324214,
- -0.03557099774479866,
- 0.02320380136370659,
- 0.012443828396499157,
- 0.000711054599378258,
- -0.049693454056978226,
- 0.08145658671855927,
- -0.01210463885217905,
- 0.039465971291065216,
- 0.012226960621774197,
- 0.028180930763483047,
- -0.05467497184872627,
- 0.008195167407393456,
- -0.010270672850310802,
- -0.01950358971953392,
- -0.1110580563545227,
- -0.07933216542005539,
- -0.09592778980731964,
- -0.00675119599327445,
- -0.00801077764481306,
- -0.00805743783712387,
- -0.02642843872308731,
- -0.012118539772927761,
- 0.05782993137836456,
- 0.008539947681128979,
- -0.09093769639730453,
- 0.002995268674567342,
- 0.07293448597192764,
- -0.006226422730833292,
- -0.025222990661859512,
- 0.04375389963388443,
- 0.08427131175994873,
- 0.03894850239157677,
- -0.015647027641534805,
- 0.06871621310710907,
- -0.018948590382933617,
- -0.02685641497373581,
- -0.0313316248357296,
- -0.020287947729229927,
- -0.018169188871979713,
- -0.03615551069378853,
- 0.01621760055422783,
- 0.05536312609910965,
- 0.030645102262496948,
- -0.003782253246754408,
- -0.0013294407399371266,
- 0.0464627742767334,
- -0.01995355822145939,
- 0.03547173738479614,
- 0.06676969677209854,
- 0.05356628820300102,
- 0.07836423814296722,
- -0.00458513293415308,
- -0.058962952345609665,
- 0.06182415783405304,
- -0.05737174674868584,
- 0.06184576451778412,
- -0.036519646644592285,
- -0.028346750885248184,
- -0.0026045723352581263,
- 0.021121574565768242,
- -0.05495667830109596,
- 0.011163833551108837,
- 0.053834568709135056,
- -0.10143094509840012,
- -0.11275331676006317,
- 0.1025269404053688,
- -0.0800451785326004,
- 0.008571215905249119,
- 0.072397381067276,
- -0.022336384281516075,
- 0.03440764546394348,
- 0.016290470957756042,
- 0.04634483903646469,
- 0.060845404863357544,
- -0.08153413236141205,
- 0.06373242288827896,
- 0.1106010228395462,
- 0.021516652777791023,
- 0.027769410982728004,
- -0.058906055986881256,
- -0.028863592073321342,
- 0.056854937225580215,
- -0.038726914674043655,
- 0.03234157711267471,
- 0.03857801482081413,
- -0.040549810975790024,
- -0.021345164626836777,
- 0.08716891705989838,
- 0.0157436765730381,
- -0.08642730861902237,
- -0.0010373960249125957,
- 0.010466087609529495,
- -0.007312661036849022,
- -0.0003452131641097367,
- 0.22091813385486603,
- 0.0652911439538002,
- 0.04770005866885185,
- 0.008293643593788147,
- 0.00717583205550909,
- -0.04194863513112068,
- -0.017567390576004982,
- -0.05602031573653221,
- 0.11597459018230438,
- 0.05217576399445534,
- 0.005256829783320427,
- -0.05371112376451492,
- 0.0957031399011612,
- -0.11781790852546692,
- -0.03546735271811485,
- -0.024559346958994865,
- -0.05119447782635689,
- 0.022989148274064064,
- -0.006195141468197107,
- -0.005222903098911047,
- -0.09075599163770676,
- -0.00005666440847562626,
- 0.03745687007904053,
- -0.08504536002874374,
- 0.02858939953148365,
- -0.04533705115318298,
- -0.03592807799577713,
- -0.05642092227935791,
- -5.4414224920158946e-33,
- 0.01738577149808407,
- 0.04813707247376442,
- -0.0041921441443264484,
- 0.015783844515681267,
- -0.023830082267522812,
- 0.0605054646730423,
- -0.024209927767515182,
- 0.06184955686330795,
- -0.08351652324199677,
- 0.009586106054484844,
- -0.11046701669692993,
- -0.03723239526152611,
- -0.015347440727055073,
- -0.07703164964914322,
- 0.10663976520299911,
- -0.024766918271780014,
- -0.006236388348042965,
- 0.07285689562559128,
- 0.02941012568771839,
- -0.029411908239126205,
- -0.051335643976926804,
- 0.07218345999717712,
- -0.02769867144525051,
- 0.030452212318778038,
- 0.060319606214761734,
- -0.05870554968714714,
- -0.022153878584504128,
- -0.04071861878037453,
- -0.002317914506420493,
- 0.04385797679424286,
- 0.0859176442027092,
- 0.004334513563662767,
- 0.029880303889513016,
- 0.016722604632377625,
- -0.03640332445502281,
- -0.019883830100297928,
- -0.05037069320678711,
- -0.09850937873125076,
- -0.03608773276209831,
- 0.020809005945920944,
- 0.01087411493062973,
- 0.0015344183193519711,
- -0.003356220433488488,
- 0.004016669001430273,
- -0.026162005960941315,
- 0.05011584609746933,
- 0.014904745854437351,
- -0.009732989594340324,
- 0.10106562077999115,
- 0.01916874200105667,
- -0.055490218102931976,
- -0.007721194997429848,
- -0.024504413828253746,
- -0.037791959941387177,
- 0.08441741019487381,
- 0.008715279400348663,
- -0.02101319469511509,
- -0.042730070650577545,
- 0.029195906594395638,
- 0.0006888717180117965,
- 0.00157198216766119,
- 0.08190496265888214,
- -0.08781160414218903,
- 0.04525807499885559,
- -0.02606581710278988,
- -0.004742920398712158,
- 0.054017651826143265,
- -0.03679778799414635,
- 0.03715679422020912,
- -0.035578131675720215,
- -0.06643345952033997,
- -0.008554221130907536,
- 0.07958585023880005,
- 0.06201062723994255,
- -0.032217007130384445,
- 0.013026081025600433,
- -0.03984927758574486,
- 0.11327053606510162,
- -0.042796459048986435,
- 0.005104697775095701,
- -0.07273899763822556,
- -0.009965220466256142,
- 0.013504313305020332,
- 0.09015057981014252,
- 0.05630376935005188,
- -0.0014594863168895245,
- 0.05270085111260414,
- -0.07022632658481598,
- 0.0009092626860365272,
- 0.09375467151403427,
- -0.16353416442871094,
- -0.0029766021762043238,
- -0.039207857102155685,
- 0.0801575779914856,
- -0.006226610392332077,
- 3.8014201608646566e-33,
- 0.04649457708001137,
- -0.03149483725428581,
- -0.005272679030895233,
- -0.07833421230316162,
- -0.02865147963166237,
- 0.04002782329916954,
- 0.04671189561486244,
- 0.028173649683594704,
- -0.15227073431015015,
- 0.013150554150342941,
- -0.05525534227490425,
- -0.008653291501104832,
- 0.018105654045939445,
- 0.016728870570659637,
- -0.007274776231497526,
- 0.0682901069521904,
- 0.08608106523752213,
- -0.05845249816775322,
- -0.047765664756298065,
- 0.029484350234270096,
- -0.03558729588985443,
- -0.05790888890624046,
- 0.04328037425875664,
- 0.0004518851637840271,
- -0.053923312574625015,
- 0.10038905590772629,
- -0.016062721610069275,
- 0.04505643621087074,
- -0.03497835248708725,
- 0.0026390294078737497,
- -0.0392829105257988,
- -0.08334740251302719,
- -0.048668429255485535,
- 0.05595729872584343,
- -0.04494787007570267,
- 0.01934247650206089,
- -0.08406931161880493,
- -0.04372679069638252,
- -0.008053871802985668,
- -0.03582419082522392,
- 0.011660304851830006,
- 0.0008499711402691901,
- 0.016381530091166496,
- 0.13559137284755707,
- -0.02641262859106064,
- -0.042276471853256226,
- 0.021165922284126282,
- -0.044807497411966324,
- 0.06311875581741333,
- -0.017975792288780212,
- -0.10036903619766235,
- 0.029553495347499847,
- 0.005681914743036032,
- 0.03543737903237343,
- -0.01820647530257702,
- 0.007457210216671228,
- -0.017763180658221245,
- 0.07816394418478012,
- -0.0006779637187719345,
- -0.037240248173475266,
- 0.050950344651937485,
- 0.05019795522093773,
- -0.012737767770886421,
- 0.09496380388736725,
- -0.043852273374795914,
- 0.03524019569158554,
- 0.00032203024602495134,
- 0.01017432939261198,
- 0.054001517593860626,
- -0.03953392058610916,
- 0.037146732211112976,
- 0.029770832508802414,
- -0.0624430850148201,
- -0.06849205493927002,
- -0.033139295876026154,
- 0.008286792784929276,
- -0.0563046894967556,
- -0.14242808520793915,
- -0.0293602105230093,
- -0.00652879336848855,
- 0.029355525970458984,
- -0.04751520976424217,
- 0.0078031145967543125,
- 0.07480843365192413,
- -0.025432385504245758,
- 0.010969128459692001,
- 0.06476296484470367,
- 0.009479943662881851,
- 0.07247482240200043,
- -0.010616710409522057,
- 0.014630353078246117,
- -0.012867340818047523,
- -0.07633978128433228,
- 0.004183341283351183,
- 0.03465617820620537,
- -1.1538100253005723e-8,
- -0.005478065926581621,
- 0.025529222562909126,
- 0.01748589426279068,
- 0.015602901577949524,
- -0.0161936916410923,
- -0.07709994167089462,
- 0.02880600094795227,
- 0.0016821048920974135,
- 0.022859545424580574,
- 0.07736668735742569,
- -0.04948825761675835,
- -0.03460023179650307,
- -0.03869238868355751,
- -0.007873392663896084,
- -0.009214150719344616,
- -0.0425015464425087,
- -0.07504143565893173,
- 0.06009342148900032,
- -0.0306842103600502,
- -0.0287669375538826,
- -0.05271917209029198,
- 0.043801482766866684,
- 0.08776557445526123,
- -0.024573158472776413,
- -0.017679959535598755,
- -0.007908670231699944,
- 0.04402994364500046,
- -0.018578214570879936,
- 0.10177679359912872,
- 0.04308924823999405,
- 0.03208490088582039,
- 0.07638475298881531,
- -0.0638144239783287,
- -0.02194972336292267,
- 0.012960435822606087,
- -0.06775175780057907,
- 0.0246125515550375,
- 0.02061896212399006,
- -0.0068416232243180275,
- -0.029482534155249596,
- -0.01171125564724207,
- 0.009356159716844559,
- -0.009637543931603432,
- 0.08175954222679138,
- 0.07465109974145889,
- 0.011215997859835625,
- -0.04422886297106743,
- -0.033004309982061386,
- 0.03735196217894554,
- -0.05117493122816086,
- 0.025044597685337067,
- 0.022985555231571198,
- 0.0029089567251503468,
- 0.06617090851068497,
- -0.02530643902719021,
- -0.05862170457839966,
- -0.04149727150797844,
- -0.042066335678100586,
- -0.08396894484758377,
- 0.04740116745233536,
- -0.0007349373190663755,
- 0.020171934738755226,
- 0.07591206580400467,
- -0.03803269565105438
- ]
- },
- {
- "keyword": "branch",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.0257718525826931,
- -0.00037063113995827734,
- -0.03781789541244507,
- -0.0066174669191241264,
- -0.03126499056816101,
- -0.031068503856658936,
- 0.05223626270890236,
- 0.08259633928537369,
- 0.05265454202890396,
- 0.027994658797979355,
- 0.0010089661227539182,
- 0.01474803127348423,
- 0.02653479389846325,
- 0.028451988473534584,
- -0.014658600091934204,
- 0.04383889585733414,
- -0.11926901340484619,
- 0.05609205737709999,
- -0.046681731939315796,
- -0.043137047439813614,
- -0.012031231075525284,
- 0.03452574834227562,
- -0.04837740957736969,
- 0.0279824398458004,
- 0.03102710470557213,
- -0.08974602073431015,
- -0.037918128073215485,
- 0.009934531524777412,
- -0.0021229495760053396,
- -0.15514497458934784,
- -0.009503252804279327,
- 0.05808887630701065,
- 0.0046248179860413074,
- 0.029168838635087013,
- -0.02208675630390644,
- 0.030413318425416946,
- 0.0228732917457819,
- -0.029700152575969696,
- 0.04627695679664612,
- 0.0001070761718438007,
- -0.004927013069391251,
- -0.0019534279126673937,
- 0.013231683522462845,
- -0.03553337976336479,
- 0.007215090561658144,
- 0.017282024025917053,
- -0.009845010004937649,
- -0.013665455393493176,
- -0.0011613337555900216,
- 0.005937475711107254,
- 0.05176655203104019,
- -0.06895215809345245,
- -0.024537237361073494,
- 0.08352390676736832,
- -0.01630662940442562,
- 0.1250324249267578,
- -0.008316230028867722,
- -0.05069319158792496,
- 0.04944262653589249,
- 0.026968833059072495,
- 0.022009583190083504,
- 0.006525804754346609,
- -0.03732391819357872,
- -0.026484597474336624,
- 0.01820843294262886,
- -0.03869706764817238,
- 0.004319251514971256,
- 0.025838417932391167,
- 0.04395574703812599,
- -0.0707421824336052,
- 0.03518359735608101,
- -0.07103455066680908,
- -0.06665913760662079,
- -0.026768898591399193,
- 0.05739713832736015,
- -0.055666483938694,
- 0.04504203051328659,
- 0.05030817165970802,
- 0.09579914808273315,
- -0.07864604890346527,
- -0.04401249811053276,
- -0.0387103371322155,
- -0.052245624363422394,
- 0.043084561824798584,
- -0.025206664577126503,
- 0.030169159173965454,
- -0.010164604522287846,
- 0.08467231690883636,
- -0.021433150395751,
- 0.044165972620248795,
- -0.07503620535135269,
- 0.03645870462059975,
- 0.09138906747102737,
- -0.07705116271972656,
- -0.06911250203847885,
- 0.00778337474912405,
- -0.008155581541359425,
- 0.015025852248072624,
- 0.0010597493965178728,
- 0.23751287162303925,
- 0.052007272839546204,
- 0.05659150704741478,
- 0.06117315962910652,
- -0.06402166932821274,
- -0.06715908646583557,
- -0.03942839801311493,
- 0.02704516425728798,
- 0.05526858940720558,
- 0.0013397607253864408,
- -0.03568769246339798,
- -0.002424569334834814,
- 0.018779480829834938,
- -0.03242993354797363,
- 0.017496244981884956,
- 0.03496670350432396,
- 0.05293518304824829,
- 0.025226028636097908,
- -0.02136366069316864,
- -0.008716140873730183,
- 0.11245656758546829,
- 0.003529153997078538,
- 0.040552690625190735,
- -0.023178597912192345,
- 0.0413510724902153,
- -0.08849477767944336,
- -0.017110668122768402,
- -0.014375545084476471,
- -4.982186971192367e-33,
- -0.017542853951454163,
- 0.02094953879714012,
- 0.027935881167650223,
- -0.050585027784109116,
- 0.04144737869501114,
- 0.054407086223363876,
- -0.04711806774139404,
- -0.042312975972890854,
- -0.08971201628446579,
- 0.0668979287147522,
- -0.07134789973497391,
- 0.011122784577310085,
- -0.012510387226939201,
- -0.06434447318315506,
- 0.07572395354509354,
- -0.06363953649997711,
- -0.0903397649526596,
- 0.023731281980872154,
- -0.026922771707177162,
- 0.03833753988146782,
- -0.028530845418572426,
- 0.015849607065320015,
- -0.045214854180812836,
- -0.01602984219789505,
- 0.05437954515218735,
- -0.07243147492408752,
- 0.014896656386554241,
- -0.01805621013045311,
- 0.025530533865094185,
- 0.028413603082299232,
- 0.012187903746962547,
- -0.019128700718283653,
- 0.017930742353200912,
- -0.046440739184617996,
- 0.001152668846771121,
- -0.050364747643470764,
- 0.011419110931456089,
- -0.05808853730559349,
- 0.01968909241259098,
- -0.04567441716790199,
- 0.019380927085876465,
- -0.0006858501001261175,
- -0.021256323903799057,
- 0.07541149854660034,
- 0.02062755450606346,
- 0.02196541428565979,
- 0.08661951124668121,
- -0.007800248451530933,
- 0.04491804540157318,
- 0.052402544766664505,
- -0.01895776018500328,
- -0.000697348965331912,
- -0.03456021100282669,
- -0.02960275486111641,
- -0.022205298766493797,
- 0.013558444567024708,
- 0.0018497463315725327,
- 0.09395089745521545,
- -0.0172272976487875,
- 0.050403013825416565,
- 0.06603169441223145,
- 0.04841161146759987,
- -0.09656687080860138,
- 0.049534134566783905,
- -0.048740360885858536,
- -0.012182856909930706,
- 0.024812353774905205,
- 0.01377824041992426,
- 0.04619522765278816,
- -0.08320063352584839,
- -0.15015539526939392,
- -0.015550825744867325,
- 0.03536904603242874,
- 0.022402308881282806,
- -0.059368111193180084,
- -0.0009800781263038516,
- -0.03696194663643837,
- 0.08805307000875473,
- 0.03583080694079399,
- -0.0177215076982975,
- -0.1500130593776703,
- 0.020091509446501732,
- -0.02851954661309719,
- 0.040447335690259933,
- 0.0876215398311615,
- 0.01191853079944849,
- 0.034675709903240204,
- -0.03537303954362869,
- -0.018639611080288887,
- 0.0072471280582249165,
- -0.044479623436927795,
- 0.04525471478700638,
- 0.10417167097330093,
- 0.07489906996488571,
- 0.06922561675310135,
- 3.543850614158277e-33,
- -0.0842980369925499,
- -0.04445057362318039,
- 0.02636958286166191,
- 0.0380091592669487,
- -0.0019438230665400624,
- 0.03184286877512932,
- -0.059249915182590485,
- -0.09888710081577301,
- -0.03817450627684593,
- -0.01851677894592285,
- 0.009394049644470215,
- 0.04407741129398346,
- 0.027312690392136574,
- 0.022155124694108963,
- 0.11493872106075287,
- -0.041613347828388214,
- 0.01975582353770733,
- -0.01866273768246174,
- -0.029897069558501244,
- 0.04066220298409462,
- 0.04879332706332207,
- -0.003955697175115347,
- -0.007800622843205929,
- 0.011727092787623405,
- -0.08936096727848053,
- 0.10591559112071991,
- 0.07028182595968246,
- -0.010136169381439686,
- 0.09443570673465729,
- 0.028883857652544975,
- 0.020011916756629944,
- -0.03882871940732002,
- -0.05635472387075424,
- -0.009186288341879845,
- -0.04484952613711357,
- -0.020891932770609856,
- 0.07212231308221817,
- 0.0036487483885139227,
- -0.02764163725078106,
- 0.01256006769835949,
- 0.09449111670255661,
- 0.03139423951506615,
- -0.005238139070570469,
- 0.03795403987169266,
- -0.07371268421411514,
- 0.027798736467957497,
- 0.039662256836891174,
- 0.0038167883176356554,
- -0.08278784900903702,
- 0.010574795305728912,
- -0.1303316056728363,
- -0.004375361371785402,
- -0.017130978405475616,
- -0.030347920954227448,
- -0.013299677520990372,
- 0.007503418251872063,
- -0.0010431066621094942,
- 0.011426037177443504,
- -0.00806967169046402,
- -0.03231516107916832,
- -0.04043424502015114,
- -0.003897598246112466,
- 0.025257550179958344,
- 0.01365322433412075,
- -0.035731520503759384,
- -0.05730670318007469,
- -0.013953875750303268,
- 0.00787328276783228,
- -0.03914757817983627,
- 0.03395066410303116,
- -0.02428761124610901,
- 0.06149972602725029,
- -0.06265100091695786,
- -0.0025813777465373278,
- -0.05896763876080513,
- 0.002673960058018565,
- -0.09075276553630829,
- -0.07797862589359283,
- 0.009873691014945507,
- -0.011771704070270061,
- -0.1165672019124031,
- 0.0726274773478508,
- -0.09383939206600189,
- -0.0005085683078505099,
- 0.08308720588684082,
- -0.0998130664229393,
- 0.029044650495052338,
- 0.06761251389980316,
- 0.05568809434771538,
- -0.05114498734474182,
- 0.018894605338573456,
- -0.0038222852163016796,
- -0.023408908396959305,
- -0.0023742327466607094,
- -0.0358952060341835,
- -1.1443052727599934e-8,
- -0.03351972624659538,
- 0.08306717127561569,
- -0.028466563671827316,
- 0.026375919580459595,
- 0.07888923585414886,
- -0.05526464059948921,
- -0.012539244256913662,
- 0.0405862033367157,
- -0.04429753124713898,
- 0.07764408737421036,
- 0.03987610712647438,
- 0.07094758003950119,
- -0.05700189992785454,
- -0.020448660477995872,
- 0.11804120242595673,
- -0.03260766714811325,
- -0.056059692054986954,
- 0.018761085346341133,
- -0.006473046261817217,
- 0.018303601071238518,
- -0.03370725363492966,
- 0.008915486745536327,
- 0.028954094275832176,
- 0.022175686433911324,
- -0.05351679399609566,
- -0.040243033319711685,
- 0.009564809501171112,
- 0.13724955916404724,
- 0.03390438109636307,
- 0.009455738589167595,
- 0.08854085206985474,
- 0.13040879368782043,
- -0.10178244113922119,
- -0.020034873858094215,
- -0.04375449940562248,
- -0.04998168349266052,
- -0.019620394334197044,
- 0.008551856502890587,
- 0.022739630192518234,
- 0.053116679191589355,
- 0.0027240347117185593,
- -0.08274348825216293,
- 0.020115409046411514,
- 0.007683387491852045,
- -0.01714446023106575,
- -0.009089579805731773,
- 0.024675622582435608,
- 0.03531577065587044,
- 0.047324858605861664,
- -0.04883461445569992,
- -0.027237970381975174,
- -0.00881917867809534,
- -0.0039002690464258194,
- 0.05937220901250839,
- 0.05160459131002426,
- 0.07634739577770233,
- 0.019078591838479042,
- -0.059227969497442245,
- -0.06804818660020828,
- 0.0019683109130710363,
- 0.07700055837631226,
- -0.05726822465658188,
- 0.018500875681638718,
- -0.050946395844221115
- ]
- },
- {
- "keyword": "division",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.024633802473545074,
- 0.04745674505829811,
- -0.027701081708073616,
- 0.005549279507249594,
- 0.007788087707012892,
- -0.016319330781698227,
- 0.019963959231972694,
- -0.014018862508237362,
- 0.027110418304800987,
- -0.02782379649579525,
- -0.00553354574367404,
- -0.06350083649158478,
- 0.03858749195933342,
- 0.06566519290208817,
- -0.041923459619283676,
- -0.03872879594564438,
- -0.07070288062095642,
- 0.0690232440829277,
- -0.12307185679674149,
- -0.061276912689208984,
- -0.06705301254987717,
- 0.026693547144532204,
- -0.002183321164920926,
- 0.07475258409976959,
- 0.09342453628778458,
- 0.040346577763557434,
- -0.09211892634630203,
- -0.017195936292409897,
- -0.005596643313765526,
- -0.09731684625148773,
- 0.04364999011158943,
- 0.08889559656381607,
- 0.15345875918865204,
- 0.00769582437351346,
- -0.06119426712393761,
- -0.0485900416970253,
- 0.06119489669799805,
- -0.024344924837350845,
- 0.08319529891014099,
- -0.00006460426811827347,
- -0.08827750384807587,
- -0.05176670849323273,
- -0.01138670090585947,
- 0.03851279243826866,
- -0.018789142370224,
- -0.0032548492308706045,
- -0.012606139294803143,
- 0.023035742342472076,
- 0.05510375648736954,
- 0.09271770715713501,
- 0.03031684085726738,
- 0.023662542924284935,
- -0.12015976756811142,
- 0.10751808434724808,
- 0.05900843068957329,
- 0.06021450459957123,
- -0.03676765784621239,
- 0.027339771389961243,
- -0.027456387877464294,
- -0.024452319368720055,
- -0.04910968244075775,
- -0.007333258632570505,
- 0.008232539519667625,
- -0.020233089104294777,
- -0.013821912929415703,
- -0.08586039394140244,
- 0.039343006908893585,
- -0.017763860523700714,
- -0.10538062453269958,
- -0.04419435188174248,
- 0.061441052705049515,
- 0.03859873116016388,
- -0.008020453155040741,
- -0.04415715113282204,
- 0.025922531262040138,
- 0.03780553489923477,
- 0.024874743074178696,
- -0.02513664960861206,
- 0.036737632006406784,
- -0.00032663080492056906,
- -0.017496922984719276,
- -0.008836008608341217,
- -0.01949331723153591,
- 0.025784015655517578,
- -0.026453305035829544,
- -0.05157114565372467,
- 0.017458243295550346,
- 0.014164176769554615,
- 0.05520639568567276,
- -0.026365121826529503,
- -0.023686246946454048,
- 0.02227604389190674,
- 0.06696994602680206,
- -0.044708285480737686,
- -0.03471182659268379,
- 0.05283055454492569,
- -0.055606380105018616,
- -0.0730021595954895,
- -0.002519116038456559,
- 0.23404820263385773,
- 0.012569475919008255,
- 0.04766160994768143,
- -0.10407382994890213,
- -0.13499723374843597,
- 0.01449671108275652,
- 0.007992438040673733,
- 0.020493723452091217,
- 0.07360445708036423,
- 0.0007170249009504914,
- 0.01590927504003048,
- 0.0359584204852581,
- 0.00428474647924304,
- -0.05193460360169411,
- -0.006192151457071304,
- -0.01687823235988617,
- -0.0032440985087305307,
- 0.03386117145419121,
- -0.02203960530459881,
- 0.037900470197200775,
- -0.0011014167685061693,
- 0.046389807015657425,
- 0.036850329488515854,
- -0.005757790990173817,
- 0.11409145593643188,
- 0.05245795100927353,
- 0.0011962642893195152,
- 0.03890961781144142,
- -5.155436838746325e-33,
- 0.008870207704603672,
- -0.05643056333065033,
- 0.03526800870895386,
- 0.10596528649330139,
- -0.007413733284920454,
- 0.02851915918290615,
- 0.0020925402641296387,
- -0.021553583443164825,
- -0.07112281769514084,
- -0.04132344573736191,
- -0.0684736967086792,
- 0.07608100026845932,
- 0.04530424252152443,
- -0.10123829543590546,
- 0.15023590624332428,
- -0.06629858911037445,
- -0.0012818872928619385,
- 0.03077027201652527,
- -0.023436352610588074,
- -0.011179219000041485,
- -0.017929764464497566,
- 0.06193888559937477,
- -0.027729174122214317,
- 0.05028602480888367,
- 0.040416169911623,
- -0.04486532509326935,
- -0.08544974029064178,
- -0.0760074183344841,
- 0.05926009640097618,
- 0.034335002303123474,
- -0.000980425626039505,
- 0.0279106292873621,
- -0.06592459231615067,
- -0.01741090603172779,
- -0.05820263922214508,
- 0.06661701947450638,
- 0.005184601526707411,
- 0.032227613031864166,
- 0.020460840314626694,
- -0.0258649829775095,
- -0.07151006907224655,
- -0.09810574352741241,
- -0.023262979462742805,
- -0.041254688054323196,
- 0.025179456919431686,
- 0.013813279569149017,
- 0.017411012202501297,
- 0.0781237781047821,
- -0.02593066357076168,
- 0.00990685448050499,
- -0.022435134276747704,
- -0.017508359625935555,
- 0.04911240190267563,
- -0.05599498376250267,
- 0.03337864577770233,
- 0.008129419758915901,
- 0.023958589881658554,
- 0.01188929844647646,
- -0.006391676142811775,
- 0.017648018896579742,
- 0.015017985366284847,
- 0.06509312987327576,
- -0.04464064538478851,
- 0.03878173604607582,
- -0.08570951223373413,
- -0.037723131477832794,
- -0.027135344222187996,
- -0.01857050135731697,
- -0.013252637349069118,
- 0.015904320403933525,
- -0.07900961488485336,
- -0.02947957254946232,
- 0.017898667603731155,
- 0.06293682008981705,
- 0.0077447788789868355,
- -0.042074594646692276,
- 0.03617577254772186,
- 0.08041287213563919,
- -0.010111870244145393,
- -0.01570918783545494,
- -0.10614724457263947,
- 0.012440665625035763,
- 0.036767855286598206,
- -0.015711911022663116,
- 0.06243028864264488,
- 0.004467498976737261,
- 0.01417387742549181,
- 0.02836824208498001,
- -0.060296837240457535,
- -0.01199159026145935,
- -0.08075185120105743,
- -0.09590145945549011,
- 0.0915236622095108,
- 0.006608619820326567,
- 0.020678559318184853,
- 4.113042978583676e-33,
- -0.017064616084098816,
- 0.029844459146261215,
- -0.03147009760141373,
- 0.0509025976061821,
- -0.03328898921608925,
- -0.0346231572329998,
- 0.009718275628983974,
- 0.018325917422771454,
- -0.054636549204587936,
- 0.03354677930474281,
- -0.01035873219370842,
- 0.04276029393076897,
- -0.05398702993988991,
- 0.03646949306130409,
- -0.024267176166176796,
- -0.04440274462103844,
- 0.04401131346821785,
- 0.027737822383642197,
- -0.03291379287838936,
- 0.010309758596122265,
- -0.013818853534758091,
- -0.015337544493377209,
- -0.03006909228861332,
- 0.010199879296123981,
- -0.006115381605923176,
- 0.08539709448814392,
- 0.01407222542911768,
- 0.03705967962741852,
- 0.054916225373744965,
- 0.025710195302963257,
- -0.02426491305232048,
- -0.1483592540025711,
- 0.012618768960237503,
- -0.06542544066905975,
- -0.0177659522742033,
- 0.020485401153564453,
- -0.06434772163629532,
- -0.022574057802557945,
- 0.023488527163863182,
- -0.023566434159874916,
- -0.002073111478239298,
- -0.04419993609189987,
- -0.027234574779868126,
- 0.13562005758285522,
- 0.00196236209012568,
- -0.017309073358774185,
- 0.11207170784473419,
- 0.08190234005451202,
- 0.006607215851545334,
- 0.010457885451614857,
- -0.07499052584171295,
- 0.05272790789604187,
- -0.04892820492386818,
- 0.06338278949260712,
- 0.007416862063109875,
- 0.03298156335949898,
- -0.08843113481998444,
- 0.06129420921206474,
- -0.06534761935472488,
- 0.032659124583005905,
- 0.038628675043582916,
- 0.059448663145303726,
- -0.019351700320839882,
- 0.043836694210767746,
- -0.05406707525253296,
- 0.05748949944972992,
- 0.004394015297293663,
- 0.09867794066667557,
- -0.009791309013962746,
- 0.05963713303208351,
- 0.0334840752184391,
- 0.11550474911928177,
- 0.05291086807847023,
- -0.015028133988380432,
- -0.011314530856907368,
- -0.029485026374459267,
- -0.06931266188621521,
- 0.05934253707528114,
- 0.008554798550903797,
- 0.08924883604049683,
- -0.0687747523188591,
- -0.02542026713490486,
- -0.04772745072841644,
- 0.06701727211475372,
- -0.11029068380594254,
- -0.02422824688255787,
- 0.12316863983869553,
- 0.018631067126989365,
- 0.040526438504457474,
- -0.05132324621081352,
- -0.028810350224375725,
- -0.031880658119916916,
- -0.012132787145674229,
- 0.005263681523501873,
- 0.044895000755786896,
- -1.1395267840441647e-8,
- -0.018913952633738518,
- 0.01810782589018345,
- -0.05430112034082413,
- -0.012032206170260906,
- 0.07556977868080139,
- 0.10300291329622269,
- -0.0339864119887352,
- -0.033268507570028305,
- 0.02842377871274948,
- 0.06657873839139938,
- 0.048351697623729706,
- 0.006411549169570208,
- -0.06280597299337387,
- -0.030309047549962997,
- -0.004788997117429972,
- -0.021827537566423416,
- 0.004830559249967337,
- -0.0076162549667060375,
- -0.04155905172228813,
- -0.0543367974460125,
- -0.019759563729166985,
- -0.02134275808930397,
- 0.03762472793459892,
- -0.002336015459150076,
- -0.024019859731197357,
- 0.008949698880314827,
- -0.02251405641436577,
- -0.00141765340231359,
- 0.03281010314822197,
- 0.007564704865217209,
- 0.02294152043759823,
- 0.019121453166007996,
- -0.06372625380754471,
- -0.00009499054431216791,
- 0.022518986836075783,
- -0.056724000722169876,
- -0.028561891987919807,
- 0.041608117520809174,
- 0.08399832248687744,
- -0.009900529868900776,
- -0.05869660899043083,
- -0.046652160584926605,
- 0.05105461925268173,
- 0.008144168183207512,
- -0.020884014666080475,
- -0.044568244367837906,
- 0.013964972458779812,
- -0.013699915260076523,
- -0.0034779380075633526,
- -0.12035277485847473,
- -0.021386947482824326,
- 0.07015890628099442,
- -0.05192074179649353,
- 0.0855291411280632,
- 0.005070987157523632,
- -0.002003673231229186,
- -0.006162406411021948,
- -0.01049822848290205,
- -0.09531910717487335,
- 0.014909060671925545,
- 0.04193573817610741,
- -0.013520161621272564,
- 0.01837654784321785,
- -0.032378632575273514
- ]
- },
- {
- "keyword": "institution",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.01377885788679123,
- 0.028202403336763382,
- -0.0326363630592823,
- 0.0013220742112025619,
- -0.046451155096292496,
- -0.02055259235203266,
- 0.03344428911805153,
- -0.06464933604001999,
- 0.03672776743769646,
- -0.014422285370528698,
- 0.05666336789727211,
- -0.091338612139225,
- -0.012591586448252201,
- 0.022694094106554985,
- 0.00718166446313262,
- -0.0013485497329384089,
- -0.04549842327833176,
- 0.003942039329558611,
- -0.052012164145708084,
- -0.025859886780381203,
- -0.018289314582943916,
- -0.01774027571082115,
- -0.0027119319420307875,
- 0.01333728339523077,
- -0.07223378866910934,
- 0.0317976139485836,
- -0.05411624535918236,
- 0.005359015427529812,
- 0.01718934066593647,
- -0.10506241023540497,
- 0.04114818945527077,
- 0.035057902336120605,
- 0.04701780527830124,
- -0.01729140803217888,
- 0.08530592173337936,
- 0.04343505948781967,
- 0.023442793637514114,
- -0.022542590275406837,
- 0.06454496830701828,
- -0.0032376116141676903,
- -0.07696180790662766,
- 0.015144388191401958,
- 0.04700209200382233,
- 0.009615546092391014,
- 0.041353490203619,
- -0.0006709828157909214,
- 0.02036675252020359,
- 0.022493937984108925,
- 0.029745634645223618,
- 0.01848739944398403,
- -0.005384852644056082,
- -0.0263342447578907,
- 0.057401467114686966,
- 0.05104833468794823,
- -0.02228444069623947,
- 0.08033853769302368,
- 0.0024121631868183613,
- -0.020352359861135483,
- -0.028894489631056786,
- -0.0552561953663826,
- 0.017961882054805756,
- 0.03190072625875473,
- -0.05202421545982361,
- 0.043526798486709595,
- 0.0535760298371315,
- -0.034108228981494904,
- 0.010239680297672749,
- 0.03189408779144287,
- 0.023533286526799202,
- -0.057856153696775436,
- 0.052832167595624924,
- -0.07677444070577621,
- -0.02655523456633091,
- 0.038737792521715164,
- 0.06205310672521591,
- -0.011074038222432137,
- -0.01578374207019806,
- 0.036366648972034454,
- 0.0993330255150795,
- 0.016718050464987755,
- 0.08248374611139297,
- -0.008392274379730225,
- 0.02237812429666519,
- 0.03956879302859306,
- -0.011923949234187603,
- -0.016079453751444817,
- 0.01956210285425186,
- -0.037151843309402466,
- -0.03431457281112671,
- 0.03398030251264572,
- 0.0043719070963561535,
- -0.057970527559518814,
- 0.09509439021348953,
- -0.03297875449061394,
- 0.023434102535247803,
- 0.021415481343865395,
- 0.008210273459553719,
- -0.05111762508749962,
- 0.03489644080400467,
- 0.25425007939338684,
- -0.04356379061937332,
- 0.049648746848106384,
- -0.002483424497768283,
- 0.058592893183231354,
- -0.06080029904842377,
- -0.027061238884925842,
- 0.018996940925717354,
- 0.061243459582328796,
- 0.025981949642300606,
- 0.04856634512543678,
- 0.010371442884206772,
- 0.04839162528514862,
- -0.0405350960791111,
- -0.011963500641286373,
- 0.02934775874018669,
- 0.06621158868074417,
- 0.013259910978376865,
- 0.02570946142077446,
- 0.048257358372211456,
- -0.033480770885944366,
- 0.001589748659171164,
- 0.0010124146938323975,
- -0.08772554993629456,
- -0.03081485629081726,
- -0.01581251062452793,
- -0.019092602655291557,
- -0.042455386370420456,
- -5.501316867926167e-33,
- 0.013708462938666344,
- 0.0547158345580101,
- -0.006113580893725157,
- -0.060137491673231125,
- -0.021029099822044373,
- -0.033647533506155014,
- -0.025189068168401718,
- 0.08568304032087326,
- -0.1021038144826889,
- 0.07129564881324768,
- -0.05242028832435608,
- 0.04036944732069969,
- -0.011368566192686558,
- -0.05677885562181473,
- 0.08653824776411057,
- -0.016056876629590988,
- 0.012817109934985638,
- 0.09488951414823532,
- 0.0891043022274971,
- 0.09413716942071915,
- -0.043927814811468124,
- 0.12839186191558838,
- 0.015925521031022072,
- -0.007767529226839542,
- 0.04357779026031494,
- -0.000926653970964253,
- -0.10496658086776733,
- -0.003277680603787303,
- -0.002971951151266694,
- 0.013773520477116108,
- 0.0936836451292038,
- 0.004793900065124035,
- -0.08105185627937317,
- -0.06521251797676086,
- 0.04065108299255371,
- -0.0322003997862339,
- -0.020041607320308685,
- -0.05355606973171234,
- 0.0016943741356953979,
- -0.04623431712388992,
- 0.006384571082890034,
- 0.019477196037769318,
- 0.03453214466571808,
- 0.053842514753341675,
- 0.028438078239560127,
- 0.05018438771367073,
- 0.05519494786858559,
- -0.062038104981184006,
- 0.055767741054296494,
- 0.04809446632862091,
- -0.04487086087465286,
- -0.0037901767063885927,
- -0.05969706177711487,
- -0.06778281927108765,
- 0.043439872562885284,
- -0.06964722275733948,
- 0.028129495680332184,
- 0.07738529145717621,
- -0.022713471204042435,
- -0.03747819736599922,
- 0.004205863457173109,
- 0.1064605563879013,
- -0.060836274176836014,
- 0.01113713439553976,
- 0.028732702136039734,
- -0.05172548443078995,
- -0.06282034516334534,
- -0.043761253356933594,
- 0.15547311305999756,
- -0.049358438700437546,
- -0.10117633640766144,
- -0.01024147029966116,
- 0.010207578539848328,
- 0.021478231996297836,
- 0.011354304850101471,
- -0.009716257452964783,
- -0.0277765691280365,
- 0.001778577920049429,
- -0.06204916536808014,
- 0.03882964700460434,
- -0.05767827108502388,
- 0.001227390137501061,
- -0.0025862231850624084,
- 0.03622051700949669,
- 0.06919966638088226,
- 0.018472999334335327,
- 0.021190015599131584,
- -0.018325822427868843,
- 0.09283921122550964,
- 0.010211039334535599,
- -0.042342446744441986,
- -0.030759859830141068,
- 0.0329885259270668,
- 0.12017197906970978,
- -0.0009183248039335012,
- 3.986114567949824e-33,
- 0.07642289251089096,
- -0.077151820063591,
- -0.03720345348119736,
- 0.06740225851535797,
- 0.05249544233083725,
- -0.004266929812729359,
- -0.029186224564909935,
- 0.003895323956385255,
- -0.02304486185312271,
- 0.02113836631178856,
- 0.034141022711992264,
- -0.08176715672016144,
- 0.03766936436295509,
- 0.05032959580421448,
- 0.02828187681734562,
- -0.0012569361133500934,
- 0.08158177882432938,
- -0.05113790184259415,
- -0.0652037188410759,
- 0.05301463231444359,
- -0.04106048494577408,
- -0.034617695957422256,
- 0.07699083536863327,
- -0.01955965720117092,
- -0.031060077250003815,
- 0.0008634648402221501,
- 0.06608830392360687,
- -0.045366011559963226,
- -0.019084932282567024,
- -0.08711788803339005,
- -0.009225417859852314,
- -0.011358280666172504,
- -0.09703473001718521,
- 0.07604456692934036,
- -0.007532485760748386,
- -0.006008629221469164,
- 0.027475588023662567,
- -0.007992965169250965,
- -0.06809052079916,
- 0.030054006725549698,
- 0.07838824391365051,
- 0.020549748092889786,
- -0.07648736983537674,
- 0.12081579118967056,
- 0.03805776685476303,
- -0.006027396768331528,
- -0.033656466752290726,
- 0.06211114674806595,
- 0.036074742674827576,
- -0.023132458329200745,
- -0.15297746658325195,
- -0.08216498047113419,
- 0.06905651092529297,
- -0.10163099318742752,
- 0.09327021986246109,
- 0.0028986313845962286,
- 0.02071431651711464,
- -0.012205258943140507,
- -0.0026616856921464205,
- 0.06515393406152725,
- 0.06262566149234772,
- -0.00022354695829562843,
- -0.09696970134973526,
- 0.11610272526741028,
- -0.05490592494606972,
- 0.016383713111281395,
- -0.044139452278614044,
- 0.06420537829399109,
- -0.06396906822919846,
- 0.012031478807330132,
- 0.07804226130247116,
- -0.05457611754536629,
- -0.0256342776119709,
- 0.06346102803945541,
- -0.05131888762116432,
- 0.009396676905453205,
- 0.006510179024189711,
- -0.08362685143947601,
- -0.00887090153992176,
- -0.054719068109989166,
- -0.013638206757605076,
- -0.050624292343854904,
- -0.06096070632338524,
- 0.016370275989174843,
- 0.025639817118644714,
- 0.010192161425948143,
- 0.07688428461551666,
- -0.0608198381960392,
- 0.027558546513319016,
- -0.00835765153169632,
- 0.03853034973144531,
- -0.021644126623868942,
- -0.022096551954746246,
- -0.06919929385185242,
- -0.014010615646839142,
- -1.1176518377453704e-8,
- -0.003899109549820423,
- -0.013709171675145626,
- 0.013006197288632393,
- -0.014231812208890915,
- 0.01549096591770649,
- -0.05058444291353226,
- 0.03521932289004326,
- -0.09191083908081055,
- -0.02147282101213932,
- 0.06855279207229614,
- -0.003260768949985504,
- 0.018880421295762062,
- -0.05417289212346077,
- -0.008725856430828571,
- 0.07848959416151047,
- 0.0032139739487320185,
- -0.07385695725679398,
- 0.029789568856358528,
- -0.005587678402662277,
- 0.009981307201087475,
- 0.02612302079796791,
- -0.031227266415953636,
- 0.025234077125787735,
- -0.023059960454702377,
- -0.03503154218196869,
- -0.042929507791996,
- 0.06147386133670807,
- 0.05854053050279617,
- 0.02526327408850193,
- 0.04530894756317139,
- -0.02137480117380619,
- 0.04486691579222679,
- -0.032616134732961655,
- -0.04839770123362541,
- -0.030359357595443726,
- -0.09230167418718338,
- 0.05882163345813751,
- -0.06435007601976395,
- 0.036541521549224854,
- -0.06788496673107147,
- -0.03623489290475845,
- -0.0819154605269432,
- -0.06859707832336426,
- -0.030794154852628708,
- 0.05423060432076454,
- 0.0443090982735157,
- 0.03720450401306152,
- 0.04242055118083954,
- 0.0643085390329361,
- -0.05317745357751846,
- -0.030930304899811745,
- -0.04280997812747955,
- -0.016413619741797447,
- 0.031203703954815865,
- -0.001109329517930746,
- -0.029898565262556076,
- 0.024295030161738396,
- -0.0061935014091432095,
- -0.10503784567117691,
- -0.047969792038202286,
- 0.09113739430904388,
- -0.03650950640439987,
- 0.05646088719367981,
- -0.09468473494052887
- ]
- },
- {
- "keyword": "foundation",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.025204703211784363,
- 0.006135881878435612,
- -0.027453353628516197,
- 0.03431866690516472,
- 0.11576231569051743,
- -0.049003276973962784,
- 0.034980762749910355,
- 0.020102085545659065,
- 0.013093727640807629,
- 0.010969161987304688,
- 0.019840745255351067,
- -0.06524595618247986,
- -0.023339951410889626,
- 0.011962697841227055,
- -0.016323337331414223,
- -0.014986759051680565,
- -0.03928329050540924,
- 0.0008010664023458958,
- -0.010778579860925674,
- -0.03482328727841377,
- -0.09205435961484909,
- 0.05931759998202324,
- 0.005737777799367905,
- 0.025730997323989868,
- -0.02991298958659172,
- 0.05005883798003197,
- -0.0755983293056488,
- -0.03869832307100296,
- 0.05826321244239807,
- -0.09064701944589615,
- 0.03579900786280632,
- 0.007050891872495413,
- 0.04423822462558746,
- -0.021152986213564873,
- -0.03902076929807663,
- 0.06410548835992813,
- 0.05546829104423523,
- -0.000012944543414050713,
- -0.07299439609050751,
- -0.005114236380904913,
- -0.06378612667322159,
- -0.06599525362253189,
- -0.0006407162290997803,
- 0.007781072054058313,
- 0.02400195226073265,
- 0.016864174976944923,
- 0.04611285403370857,
- 0.023842932656407356,
- 0.09298966825008392,
- -0.03560486435890198,
- 0.08414248377084732,
- -0.06700111925601959,
- -0.05215712636709213,
- -0.020728467032313347,
- -0.015598100610077381,
- 0.0527522973716259,
- 0.004586151801049709,
- -0.013932145200669765,
- 0.001108405995182693,
- -0.03766739368438721,
- 0.10938841849565506,
- -0.01502075046300888,
- -0.05474475398659706,
- 0.024076111614704132,
- 0.1382528841495514,
- 0.001462064916267991,
- -0.014451314695179462,
- 0.03117450512945652,
- -0.018138594925403595,
- -0.05615917593240738,
- 0.04102455824613571,
- -0.0330389179289341,
- 0.06098147854208946,
- 0.007968081161379814,
- 0.048839472234249115,
- 0.030386846512556076,
- -0.02866811491549015,
- -0.020323816686868668,
- 0.06289716064929962,
- -0.031808093190193176,
- 0.05214367061853409,
- 0.07279859483242035,
- 0.0025114223826676607,
- 0.054842591285705566,
- 0.006894467864185572,
- -0.006885740906000137,
- 0.06445987522602081,
- -0.0321277491748333,
- -0.010549264028668404,
- 0.0017038750229403377,
- -0.004041816107928753,
- -0.010958889499306679,
- 0.06259573251008987,
- 0.07984156161546707,
- -0.10971590131521225,
- -0.025626521557569504,
- -0.06879177689552307,
- -0.12024183571338654,
- -0.014134297147393227,
- 0.2384801059961319,
- -0.09226151555776596,
- 0.013185910880565643,
- 0.010613178834319115,
- 0.0059693302027881145,
- -0.012602095492184162,
- -0.02564472146332264,
- -0.013059034943580627,
- 0.04796048626303673,
- 0.04366524890065193,
- 0.0477391742169857,
- -0.03351351618766785,
- -0.036299820989370346,
- -0.022993700578808784,
- 0.029900293797254562,
- 0.033326197415590286,
- -0.03949374705553055,
- 0.049566350877285004,
- -0.04440350458025932,
- 0.044660963118076324,
- -0.06499116122722626,
- 0.05297967419028282,
- 0.0451982319355011,
- -0.001640845905058086,
- -0.09310943633317947,
- -0.06475139409303665,
- -0.10102127492427826,
- -0.03285787254571915,
- -4.1970019279071884e-33,
- -0.011239776387810707,
- 0.029189663007855415,
- 0.02562800422310829,
- 0.04554271325469017,
- 0.059489451348781586,
- -0.04060061275959015,
- 0.03942441567778587,
- -0.07266081124544144,
- -0.036094918847084045,
- 0.11466396600008011,
- 0.07799742370843887,
- 0.04956088960170746,
- -0.002877958817407489,
- 0.009303899481892586,
- 0.015205111354589462,
- -0.06488321721553802,
- 0.03509623929858208,
- 0.00047465795069001615,
- -0.013548661023378372,
- 0.025477875024080276,
- -0.01681898534297943,
- 0.10276298224925995,
- -0.05844619497656822,
- -0.003427538787946105,
- 0.07542280107736588,
- -0.09390033036470413,
- -0.004333058372139931,
- -0.03832198679447174,
- -0.019055761396884918,
- 0.006432569120079279,
- 0.00431319884955883,
- 0.026778502389788628,
- 0.0013878358295187354,
- 0.004916821140795946,
- 0.020695770159363747,
- -0.014305628836154938,
- 0.05026234686374664,
- -0.10110502690076828,
- -0.01710676960647106,
- -0.09584074467420578,
- -0.00794248003512621,
- -0.0003761902335099876,
- 0.11252438277006149,
- -0.023648342117667198,
- -0.019654007628560066,
- 0.03945015370845795,
- 0.0597764328122139,
- 0.004715165589004755,
- -0.029368827119469643,
- -0.0018832526402547956,
- -0.0050510563887655735,
- -0.0035208396147936583,
- -0.04833227023482323,
- -0.048810627311468124,
- 0.008871949277818203,
- -0.07306583225727081,
- -0.08418302983045578,
- -0.015779711306095123,
- 0.0074118198826909065,
- -0.00843103975057602,
- 0.03613121062517166,
- 0.02132529951632023,
- -0.12291272729635239,
- 0.09223651140928268,
- -0.09528296440839767,
- -0.0456463098526001,
- -0.0444936603307724,
- -0.05197717249393463,
- 0.010012919083237648,
- -0.004471341613680124,
- -0.09655306488275528,
- 0.07023332267999649,
- 0.09578240662813187,
- 0.057908497750759125,
- -0.029109371826052666,
- -0.049134787172079086,
- -0.005275747273117304,
- 0.08573148399591446,
- -0.043525177985429764,
- 0.04244821146130562,
- -0.02184116281569004,
- 0.047592341899871826,
- -0.033597592264413834,
- 0.03941773995757103,
- 0.02841813676059246,
- 0.03342282027006149,
- 0.010982518084347248,
- 0.01978098228573799,
- -0.03141007199883461,
- -0.055411603301763535,
- -0.14425887167453766,
- -0.04687615856528282,
- 0.151825413107872,
- -0.004875791259109974,
- -0.06155353784561157,
- 3.039494477362405e-33,
- 0.04047568514943123,
- -0.06541181355714798,
- 0.01974198967218399,
- 0.01779208518564701,
- 0.06922633945941925,
- 0.045279718935489655,
- 0.025562357157468796,
- 0.024771342054009438,
- 0.012329856865108013,
- 0.040739789605140686,
- 0.01362239383161068,
- 0.011355594731867313,
- 0.05930004641413689,
- -0.009241053834557533,
- -0.03605636581778526,
- -0.04955846816301346,
- 0.0790303647518158,
- -0.05220102518796921,
- 0.014332187362015247,
- 0.004628676921129227,
- -0.035329993814229965,
- -0.020051974803209305,
- -0.10658440738916397,
- -0.03673049062490463,
- 0.03401671350002289,
- 0.025382431223988533,
- -0.026524772867560387,
- 0.06996192783117294,
- -0.05333640053868294,
- 0.040239498019218445,
- -0.03381308168172836,
- -0.05641370266675949,
- -0.039117492735385895,
- 0.01944543607532978,
- -0.07874038070440292,
- 0.026980489492416382,
- 0.007358637638390064,
- -0.09399649500846863,
- -0.10567688941955566,
- -0.0398431122303009,
- -0.017048507928848267,
- -0.006936546880751848,
- 0.0022239249665290117,
- 0.055349454283714294,
- -0.002581008244305849,
- 0.019423294812440872,
- -0.054544463753700256,
- 0.0735611692070961,
- 0.029748966917395592,
- -0.05476664751768112,
- -0.04110090807080269,
- 0.03679080307483673,
- 0.035981371998786926,
- -0.02727443166077137,
- 0.04839523881673813,
- 0.05156802386045456,
- -0.0026711069513112307,
- 0.03662187606096268,
- 0.015109729953110218,
- 0.07168141007423401,
- 0.018268855288624763,
- 0.04245839640498161,
- -0.06492193788290024,
- 0.07380000501871109,
- 0.006330348551273346,
- 0.0006037367274984717,
- -0.020703116431832314,
- 0.05595655366778374,
- -0.07959301024675369,
- 0.015145785175263882,
- 0.006195629481226206,
- 0.009705629199743271,
- 0.04598188027739525,
- 0.0430402047932148,
- -0.013407577760517597,
- -0.015567620284855366,
- 0.04433751478791237,
- -0.005941114388406277,
- -0.015784064307808876,
- 0.024751611053943634,
- 0.0340123176574707,
- -0.09793899953365326,
- -0.000380997167667374,
- 0.07139904797077179,
- 0.0972277969121933,
- 0.03506701812148094,
- 0.042556099593639374,
- -0.031018221750855446,
- 0.06368926167488098,
- 0.03251646086573601,
- 0.012278680689632893,
- -0.04613959416747093,
- 0.012203292921185493,
- 0.03090832382440567,
- 0.030134234577417374,
- -1.1091924712047785e-8,
- 0.027205759659409523,
- 0.03562724217772484,
- -0.037676386535167694,
- -0.1306118667125702,
- -0.009841968305408955,
- -0.01787666603922844,
- 0.08333054929971695,
- -0.07276959717273712,
- -0.004436098039150238,
- -0.018528277054429054,
- -0.04080378636717796,
- 0.07995960116386414,
- -0.051019810140132904,
- 0.01356758177280426,
- -0.0049408976919949055,
- -0.06369214504957199,
- -0.040587417781353,
- 0.05134100466966629,
- -0.0432746596634388,
- 0.043166354298591614,
- -0.013458323664963245,
- -0.00595844304189086,
- 0.023090777918696404,
- -0.08550039678812027,
- -0.004753879737108946,
- -0.009436218068003654,
- 0.07419488579034805,
- 0.019620848819613457,
- -0.024765266105532646,
- 0.05939772352576256,
- 0.0165247842669487,
- 0.0736854150891304,
- -0.062487050890922546,
- -0.021815218031406403,
- -0.04562107473611832,
- 0.014247480779886246,
- 0.0511883981525898,
- -0.022760799154639244,
- 0.028976568952202797,
- 0.04144047200679779,
- 0.00484293419867754,
- 0.05420074239373207,
- 0.056388456374406815,
- -0.027909502387046814,
- -0.05890472233295441,
- 0.002054328564554453,
- -0.06954780220985413,
- 0.039035897701978683,
- 0.011979359202086926,
- -0.08279529213905334,
- 0.02632533572614193,
- -0.0004334651166573167,
- -0.00911672879010439,
- 0.03793010488152504,
- 0.08664669096469879,
- -0.04050823673605919,
- -0.006796080619096756,
- 0.0034352883230894804,
- -0.060033511370420456,
- 0.01372777670621872,
- 0.08957120776176453,
- -0.10395517945289612,
- 0.1256413459777832,
- 0.012722769752144814
- ]
- },
- {
- "keyword": "association",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.018749795854091644,
- -0.009861625730991364,
- -0.01603281870484352,
- 0.04023095965385437,
- -0.0028494633734226227,
- 0.06271937489509583,
- 0.14111453294754028,
- -0.052594590932130814,
- -0.012319068424403667,
- -0.04844140633940697,
- 0.04709940031170845,
- -0.056962355971336365,
- 0.02228664420545101,
- 0.017833862453699112,
- -0.04442105069756508,
- 0.09640306234359741,
- -0.03032834269106388,
- 0.030987396836280823,
- -0.11565649509429932,
- -0.06784394383430481,
- -0.10446277260780334,
- 0.007503119297325611,
- 0.07225391268730164,
- 0.037874773144721985,
- -0.037903718650341034,
- 0.008576581254601479,
- 0.016120687127113342,
- -0.009915580973029137,
- -0.051319949328899384,
- -0.07070299237966537,
- -0.0011568238260224462,
- 0.030731506645679474,
- 0.06542478501796722,
- -0.004197133705019951,
- 0.002715523587539792,
- -0.014346567913889885,
- 0.024038635194301605,
- 0.04454989731311798,
- -0.003885838435962796,
- 0.016083581373095512,
- -0.031296778470277786,
- -0.03502507135272026,
- 0.05932911857962608,
- 0.0031181322410702705,
- 0.0022007350344210863,
- 0.0722094178199768,
- 0.01880795881152153,
- 0.05700794979929924,
- -0.054682180285453796,
- 0.0635211169719696,
- 0.03439900279045105,
- -0.014990348368883133,
- -0.022907450795173645,
- 0.0013226011069491506,
- 0.04460740089416504,
- 0.05469709634780884,
- -0.05295071750879288,
- -0.01507154293358326,
- -0.04297500103712082,
- 0.0006669381400570273,
- 0.0386517159640789,
- -0.0010424356441944838,
- -0.04946785420179367,
- 0.03308474272489548,
- 0.043926823884248734,
- -0.02299499325454235,
- -0.0008377442718483508,
- 0.07196475565433502,
- -0.05242253839969635,
- -0.046014901250600815,
- 0.0391613207757473,
- 0.020511025562882423,
- -0.07739120721817017,
- 0.04111264646053314,
- 0.06664372235536575,
- -0.00977177545428276,
- 0.018574308604002,
- -0.041194137185811996,
- 0.06282199174165726,
- -0.04179228097200394,
- -0.03735880181193352,
- 0.02994527481496334,
- 0.014485553838312626,
- -0.028013940900564194,
- 0.06863456219434738,
- 0.027975672855973244,
- -0.003924201242625713,
- -0.06778509169816971,
- -0.044966015964746475,
- 0.06062969192862511,
- -0.0633719190955162,
- -0.03238696977496147,
- 0.09711100906133652,
- -0.0322323776781559,
- 0.017263729125261307,
- 0.010093209333717823,
- 0.07393213361501694,
- -0.11505962163209915,
- -0.035675205290317535,
- 0.25500863790512085,
- -0.05017628148198128,
- 0.056303899735212326,
- -0.07001516968011856,
- 0.030791208148002625,
- -0.05020492523908615,
- -0.034397318959236145,
- -0.029632555320858955,
- -0.0013657397357746959,
- 0.01778169721364975,
- 0.012188964523375034,
- -0.053114697337150574,
- -0.01326579600572586,
- -0.03265130892395973,
- -0.00197129650041461,
- -0.0670563355088234,
- 0.033239275217056274,
- 0.00816862378269434,
- 0.045930180698633194,
- 0.06270123273134232,
- -0.07036101073026657,
- 0.039295583963394165,
- 0.023663194850087166,
- -0.0249943844974041,
- 0.035635411739349365,
- -0.009013090282678604,
- -0.03779727593064308,
- -0.0801737904548645,
- -4.496284258994481e-33,
- 0.030896518379449844,
- -0.01922081597149372,
- -0.020855214446783066,
- -0.027608131989836693,
- -0.003441627137362957,
- -0.03996602073311806,
- -0.09748969227075577,
- -0.013096085749566555,
- -0.06036100164055824,
- 0.02781563624739647,
- -0.029433095827698708,
- 0.18967823684215546,
- 0.01162438653409481,
- 0.00856063887476921,
- 0.06596110016107559,
- 0.053492963314056396,
- 0.055978257209062576,
- 0.11161376535892487,
- 0.019720138981938362,
- -0.02587990276515484,
- -0.10602950304746628,
- 0.13756611943244934,
- -0.034563787281513214,
- 0.07631250470876694,
- -0.026368511840701103,
- -0.003284247126430273,
- -0.02307046763598919,
- -0.025261126458644867,
- 0.019054144620895386,
- 0.027752012014389038,
- 0.027051804587244987,
- 0.03990885615348816,
- -0.045354586094617844,
- -0.1003502756357193,
- 0.02712426334619522,
- 0.0012353671481832862,
- 0.03159751743078232,
- -0.0799993947148323,
- 0.0066282679326832294,
- -0.015095993876457214,
- -0.014407356269657612,
- 0.017658894881606102,
- -0.02132343128323555,
- -0.056165579706430435,
- -0.03629370406270027,
- 0.013967680744826794,
- 0.04334134981036186,
- -0.03899054974317551,
- -0.036437585949897766,
- 0.1410563439130783,
- 0.0022366445045918226,
- -0.11684565246105194,
- -0.009604786522686481,
- 0.006384798791259527,
- -0.027671389281749725,
- -0.06978049129247665,
- -0.029535865411162376,
- 0.06335192918777466,
- 0.03441070020198822,
- -0.042960114777088165,
- 0.06794531643390656,
- 0.07089772075414658,
- -0.020714998245239258,
- 0.030501091852784157,
- -0.10654322057962418,
- -0.031069742515683174,
- 0.03756106644868851,
- -0.08431822806596756,
- 0.07314267754554749,
- 0.02175174281001091,
- -0.031404007226228714,
- 0.056669846177101135,
- -0.12419582158327103,
- 0.017034055665135384,
- -0.014271173626184464,
- -0.01766708865761757,
- -0.03330131620168686,
- 0.024439658969640732,
- -0.02498718909919262,
- 0.014527186751365662,
- -0.08310972154140472,
- -0.01892857812345028,
- 0.003960893489420414,
- 0.007895599119365215,
- -0.0744251236319542,
- 0.008914131671190262,
- 0.020433703437447548,
- -0.06388331949710846,
- -0.011277379468083382,
- -0.019817538559436798,
- -0.02851499430835247,
- 0.0507390983402729,
- 0.04907546937465668,
- 0.10231267660856247,
- 0.06211920455098152,
- 2.512134099791933e-33,
- -0.00323411263525486,
- -0.0010424217907711864,
- 0.04636317864060402,
- -0.04528023675084114,
- 0.07976137846708298,
- -0.06282036751508713,
- 0.08091212809085846,
- -0.108517587184906,
- 0.026551615446805954,
- 0.05436020717024803,
- -0.03144172951579094,
- -0.048719391226768494,
- 0.05513525754213333,
- 0.016242532059550285,
- 0.12053004652261734,
- -0.050566449761390686,
- 0.023462459444999695,
- 0.044785648584365845,
- -0.009557344950735569,
- 0.01325503084808588,
- -0.06399023532867432,
- -0.02749643474817276,
- 0.05990607291460037,
- -0.07323947548866272,
- 0.017812227830290794,
- -0.0019908868707716465,
- 0.002839823020622134,
- -0.0020531676709651947,
- -0.04180198907852173,
- -0.036259401589632034,
- -0.003459956031292677,
- -0.03497753664851189,
- -0.03573352470993996,
- 0.021585755050182343,
- -0.04192341864109039,
- 0.04956592991948128,
- 0.02343725971877575,
- -0.030274419113993645,
- -0.021177388727664948,
- -0.09981248527765274,
- 0.06505939364433289,
- 0.019835125654935837,
- 0.03585395589470863,
- 0.11937691271305084,
- -0.00877492967993021,
- -0.014149408787488937,
- 0.0553031861782074,
- 0.019952841103076935,
- 0.03698514401912689,
- 0.016030414029955864,
- -0.07484794408082962,
- -0.022863171994686127,
- 0.11891758441925049,
- -0.06074713170528412,
- 0.029298460111021996,
- 0.06386728584766388,
- 0.09717398136854172,
- -0.04420948028564453,
- -0.04958786442875862,
- -0.004177459049969912,
- 0.032805901020765305,
- 0.050061192363500595,
- -0.03592266887426376,
- 0.13270467519760132,
- 0.00660189101472497,
- -0.07319038361310959,
- -0.023712027817964554,
- -0.004807703197002411,
- -0.005716884508728981,
- 0.023954030126333237,
- 0.03812909126281738,
- -0.033394526690244675,
- -0.08983971178531647,
- 0.0018604419892653823,
- -0.047447267919778824,
- -0.05472654476761818,
- -0.034575898200273514,
- 0.01870371215045452,
- -0.04397451505064964,
- 0.002598629565909505,
- -0.07995466887950897,
- 0.042015865445137024,
- 0.02045939490199089,
- 0.01676018349826336,
- -0.040787894278764725,
- -0.003299484495073557,
- 0.05948983132839203,
- 0.05163663253188133,
- 0.018319863826036453,
- 0.0480649396777153,
- 0.018101288005709648,
- -0.006675417535007,
- -0.004505041521042585,
- 0.01656133122742176,
- -0.07671349495649338,
- -1.1756563722542523e-8,
- -0.06983978301286697,
- -0.05428478494286537,
- 0.031711287796497345,
- 0.01874777488410473,
- 0.03742988407611847,
- -0.017879344522953033,
- -0.05103776231408119,
- 0.0720072016119957,
- -0.010596441105008125,
- 0.09616350382566452,
- 0.017473163083195686,
- 0.05684257671236992,
- -0.02232283540070057,
- 0.011264191009104252,
- 0.09686620533466339,
- -0.048453863710165024,
- 0.014389095827937126,
- -0.015150067396461964,
- -0.07576052844524384,
- 0.05350378528237343,
- 0.01151839829981327,
- -0.006127163767814636,
- 0.020954787731170654,
- -0.018934067338705063,
- -0.04741857200860977,
- -0.005325542762875557,
- 0.010149016976356506,
- 0.017629938200116158,
- 0.0023969945032149553,
- -0.01736626960337162,
- 0.006368959788233042,
- 0.030286138877272606,
- -0.03201843798160553,
- -0.052179377526044846,
- -0.07693808525800705,
- 0.0018634183797985315,
- 0.0005664139171130955,
- -0.015683209523558617,
- -0.025277558714151382,
- -0.04012562334537506,
- -0.01187078282237053,
- 0.004842342343181372,
- 0.04024457558989525,
- 0.025087561458349228,
- -0.005696356296539307,
- 0.009133361279964447,
- 0.04689556360244751,
- -0.10636139661073685,
- -0.0030882637947797775,
- 0.0003270185843575746,
- -0.055843155831098557,
- -0.031087983399629593,
- 0.011902942322194576,
- 0.005780186038464308,
- -0.05923399329185486,
- 0.010197998955845833,
- 0.012061629444360733,
- 0.04749917984008789,
- 0.020899176597595215,
- -0.05101308971643448,
- 0.11298146098852158,
- -0.016445953398942947,
- 0.0030376550275832415,
- 0.02440476417541504
- ]
- },
- {
- "keyword": "society",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.047740451991558075,
- 0.08435208350419998,
- -0.03855636715888977,
- -0.005091959610581398,
- -0.03343818336725235,
- -0.020804693922400475,
- 0.06114573031663895,
- 0.023119166493415833,
- 0.054165296256542206,
- 0.003667518263682723,
- 0.058540720492601395,
- 0.020482312887907028,
- 0.06225653737783432,
- 0.004355245269834995,
- -0.03420622646808624,
- -0.03793182224035263,
- -0.09540636092424393,
- -0.08172249048948288,
- -0.0672832652926445,
- 0.008423841558396816,
- -0.06142360717058182,
- -0.019260551780462265,
- -0.04083775356411934,
- 0.04328280687332153,
- -0.06055836006999016,
- 0.09947574138641357,
- -0.005202127620577812,
- -0.07125451415777206,
- -0.11517439782619476,
- -0.03555525094270706,
- -0.00994778797030449,
- 0.0499001145362854,
- 0.20586781203746796,
- -0.012213954702019691,
- -0.009396600537002087,
- -0.00116285914555192,
- 0.07448264211416245,
- 0.04311910271644592,
- -0.003812632756307721,
- -0.021625258028507233,
- -0.02133169397711754,
- -0.062183234840631485,
- -0.019163241609930992,
- -0.05817344784736633,
- -0.0035969866439700127,
- 0.07297700643539429,
- -0.01222680602222681,
- 0.001468860311433673,
- 0.012917932122945786,
- -0.07175946235656738,
- -0.029747696593403816,
- -0.04829058051109314,
- 0.006782796233892441,
- 0.03133774921298027,
- -0.023298824205994606,
- 0.004619477316737175,
- -0.013339892961084843,
- 0.04015958309173584,
- -0.007734250742942095,
- -0.09163915365934372,
- 0.09563110768795013,
- -0.04461495578289032,
- -0.10402198880910873,
- 0.07629391551017761,
- 0.1731947511434555,
- 0.038092583417892456,
- -0.00016757794946897775,
- 0.08122734725475311,
- 0.003302864031866193,
- 0.004695907700806856,
- -0.031637970358133316,
- 0.028160883113741875,
- 0.05654451996088028,
- 0.02350461669266224,
- -0.003887214930728078,
- -0.08200617879629135,
- -0.0026934738270938396,
- -0.05559219792485237,
- 0.0359257347881794,
- -0.001292898436076939,
- 0.02754584141075611,
- -0.0102579016238451,
- 0.004580456763505936,
- 0.08181600272655487,
- -0.027442993596196175,
- 0.026151426136493683,
- -0.027053074911236763,
- -0.018106400966644287,
- -0.005021802149713039,
- 0.016079626977443695,
- -0.14638127386569977,
- -0.07550116628408432,
- 0.03605478256940842,
- 0.0016477396711707115,
- -0.07207785546779633,
- 0.024365007877349854,
- 0.01177600771188736,
- -0.05490611493587494,
- -0.029440054669976234,
- 0.26802852749824524,
- -0.0057878512889146805,
- 0.04186641424894333,
- 0.0024398169480264187,
- 0.024304278194904327,
- -0.005115082021802664,
- -0.041308630257844925,
- -0.015912547707557678,
- 0.03080461546778679,
- -0.0352095328271389,
- -0.015598777681589127,
- -0.009490159340202808,
- -0.007603097707033157,
- -0.008175177499651909,
- -0.0016055192099884152,
- 0.013473876751959324,
- -0.03487778082489967,
- 0.05462631583213806,
- 0.011369673535227776,
- -0.008218137547373772,
- -0.07763859629631042,
- 0.024247197434306145,
- 0.005665418226271868,
- -0.03979065269231796,
- -0.015871157869696617,
- 0.009656489826738834,
- -0.013949062675237656,
- -0.009163548238575459,
- -6.910434476160646e-33,
- -0.01758085936307907,
- -0.016606545075774193,
- 0.00006279569061007351,
- 0.019398493692278862,
- -0.03886323422193527,
- -0.03162073716521263,
- -0.01111404225230217,
- 0.0016566484700888395,
- 0.006221048068255186,
- 0.07198835909366608,
- -0.0035515569616109133,
- -0.04661966860294342,
- -0.016597412526607513,
- -0.0033741455990821123,
- 0.07079561054706573,
- 0.041372865438461304,
- 0.005350151564925909,
- 0.011050130240619183,
- 0.006823165342211723,
- 0.03671370819211006,
- -0.027144193649291992,
- 0.0718473345041275,
- -0.0004226958844810724,
- -0.009213536977767944,
- -0.02469290792942047,
- -0.05385276675224304,
- 0.03880908340215683,
- -0.07794637233018875,
- 0.03136536851525307,
- 0.022121908143162727,
- 0.08936014026403427,
- 0.05017828196287155,
- 0.024583468213677406,
- -0.0964212492108345,
- 0.0028782866429537535,
- 0.0033324137330055237,
- 0.09684933722019196,
- -0.003567578736692667,
- 0.034262776374816895,
- -0.09523819386959076,
- -0.001993553712964058,
- -0.014117740094661713,
- -0.07084459066390991,
- 0.03045663610100746,
- 0.048298876732587814,
- 0.03702646121382713,
- 0.07904908806085587,
- 0.040232013911008835,
- -0.07111258059740067,
- 0.0708402469754219,
- -0.026236161589622498,
- -0.008260904811322689,
- -0.04881500452756882,
- 0.0033152985852211714,
- 0.023827532306313515,
- -0.04889241233468056,
- 0.00877220556139946,
- 0.006743731442838907,
- -0.09186013042926788,
- 0.024457469582557678,
- 0.048684924840927124,
- 0.015576208010315895,
- 0.0028418053407222033,
- 0.02221554145216942,
- 0.027901938185095787,
- 0.012926381081342697,
- -0.012522788718342781,
- -0.019389625638723373,
- 0.011507123708724976,
- 0.007608630694448948,
- -0.026447033509612083,
- 0.07945701479911804,
- -0.027160318568348885,
- 0.09274443984031677,
- 0.008258081041276455,
- 0.06195204332470894,
- 0.07090957462787628,
- 0.011441586539149284,
- -0.03740708529949188,
- 0.03205595910549164,
- -0.048285845667123795,
- -0.045898277312517166,
- 0.022709587588906288,
- -0.015351319685578346,
- 0.11281037330627441,
- 0.00990170519798994,
- -0.0038999798707664013,
- -0.0175694040954113,
- 0.07605195790529251,
- 0.0628097802400589,
- -0.10677928477525711,
- -0.07360828667879105,
- 0.07307593524456024,
- 0.08588827401399612,
- -0.022344348952174187,
- 4.751397389849627e-33,
- -0.015728265047073364,
- -0.0041894023306667805,
- -0.06833868473768234,
- 0.060103368014097214,
- 0.031854089349508286,
- -0.021622542291879654,
- -0.03346945717930794,
- -0.013947361148893833,
- 0.009720825590193272,
- 0.14383749663829803,
- -0.05959778651595116,
- -0.044829078018665314,
- 0.12364183366298676,
- 0.06228337436914444,
- 0.037126969546079636,
- -0.05275172367691994,
- 0.03701183944940567,
- -0.017555072903633118,
- -0.009100367315113544,
- -0.052603695541620255,
- -0.028853658586740494,
- 0.02987990714609623,
- 0.05453773960471153,
- 0.002234256360679865,
- -0.06967096775770187,
- 0.04597432538866997,
- -0.023855458945035934,
- -0.0403054840862751,
- -0.09092256426811218,
- 0.001424311427399516,
- 0.008046155795454979,
- 0.002435035305097699,
- 0.017317572608590126,
- 0.04431372135877609,
- 0.044190000742673874,
- 0.0922890231013298,
- 0.04518871009349823,
- 0.034622445702552795,
- -0.052746158093214035,
- -0.01898718811571598,
- -0.01161368377506733,
- 0.04646093398332596,
- -0.08278193324804306,
- 0.054490312933921814,
- -0.04943795129656792,
- 0.0405278354883194,
- -0.05021532624959946,
- -0.013696502894163132,
- 0.03618976101279259,
- 0.041383370757102966,
- -0.05712001770734787,
- -0.05285806208848953,
- 0.05217839404940605,
- -0.045497648417949677,
- 0.03787317872047424,
- 0.012536704540252686,
- -0.06357401609420776,
- 0.04776686802506447,
- -0.10865448415279388,
- 0.06750089675188065,
- 0.009002330712974072,
- -0.014122359454631805,
- -0.08346768468618393,
- 0.05018468573689461,
- 0.012389188632369041,
- 0.004398564342409372,
- -0.021894771605730057,
- 0.039889197796583176,
- -0.03240656107664108,
- 0.016237394884228706,
- 0.07074600458145142,
- 0.00008773150329943746,
- -0.11548200994729996,
- 0.03047134168446064,
- -0.07554135471582413,
- 0.03536849841475487,
- -0.030732236802577972,
- 0.04687504842877388,
- 0.029623601585626602,
- -0.04427396506071091,
- 0.011214797385036945,
- -0.043738603591918945,
- 0.036335818469524384,
- -0.00006326923903543502,
- -0.08841142803430557,
- -0.021317167207598686,
- 0.0952446311712265,
- -0.026849007233977318,
- -0.05789439380168915,
- 0.017656782642006874,
- -0.015194243751466274,
- -0.08833855390548706,
- -0.026657791808247566,
- -0.04758055880665779,
- -0.016677357256412506,
- -1.4696125205659882e-8,
- 0.003352813422679901,
- 0.05136098712682724,
- -0.03453570604324341,
- 0.012368743307888508,
- 0.043596524745225906,
- 0.09391209483146667,
- 0.04678041860461235,
- 0.04890128970146179,
- -0.011384903453290462,
- 0.06544918566942215,
- -0.05049685016274452,
- 0.037827491760253906,
- 0.013166307471692562,
- 0.058429308235645294,
- 0.05364671349525452,
- -0.060208141803741455,
- -0.023713456466794014,
- -0.0014809927670285106,
- -0.09431646764278412,
- 0.009593846276402473,
- 0.05594785138964653,
- 0.004738668445497751,
- 0.014172525145113468,
- -0.06614106893539429,
- -0.049553282558918,
- -0.00045124604366719723,
- -0.009245018474757671,
- -0.03841381147503853,
- -0.03613121435046196,
- 0.04437338933348656,
- 0.03279341757297516,
- 0.020931033417582512,
- -0.07909850776195526,
- 0.01695697382092476,
- -0.07270751148462296,
- -0.08180312067270279,
- -0.009150229394435883,
- 0.00833949539810419,
- 0.07640942931175232,
- -0.03221679478883743,
- -0.03500822186470032,
- -0.005352936685085297,
- 0.036515090614557266,
- 0.01999684050679207,
- 0.007629396393895149,
- -0.02358093485236168,
- 0.058038610965013504,
- 0.04815079644322395,
- -0.022641189396381378,
- -0.022329991683363914,
- -0.017829155549407005,
- -0.03510480374097824,
- 0.041305869817733765,
- 0.04366014152765274,
- 0.007680761162191629,
- -0.06387674063444138,
- 0.056296661496162415,
- 0.03195738047361374,
- -0.05547068268060684,
- -0.006197171751409769,
- 0.1405685395002365,
- 0.037676408886909485,
- 0.04182402417063713,
- -0.03477509319782257
- ]
- },
- {
- "keyword": "club",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.025024065747857094,
- -0.04006664454936981,
- -0.0688447430729866,
- 0.03645174205303192,
- -0.02103782817721367,
- -0.008944783359766006,
- 0.06716269999742508,
- -0.031817030161619186,
- 0.05213679000735283,
- -0.011995756067335606,
- 0.07568652927875519,
- -0.05540475621819496,
- 0.04095076024532318,
- -0.007508167531341314,
- -0.0003504981577862054,
- -0.038599975407123566,
- -0.063330739736557,
- -0.058387015014886856,
- -0.002600254025310278,
- -0.04000043123960495,
- -0.1319926381111145,
- -0.024018649011850357,
- -0.029161931946873665,
- 0.03406396508216858,
- -0.028648462146520615,
- 0.04612056538462639,
- 0.010623980313539505,
- 0.031742338091135025,
- -0.08816661685705185,
- -0.030238131061196327,
- -0.022740954533219337,
- 0.03817680850625038,
- 0.11385788768529892,
- -0.011072378605604172,
- -0.06406473368406296,
- 0.005162292160093784,
- 0.024147775024175644,
- -0.022338632494211197,
- 0.02295432798564434,
- 0.0022063960786908865,
- -0.07458464056253433,
- -0.057719312608242035,
- -0.010952531360089779,
- 0.012847197242081165,
- 0.056177202612161636,
- 0.039622802287340164,
- 0.010629817843437195,
- 0.011616368778049946,
- 0.04184216260910034,
- 0.031131243333220482,
- 0.018773755058646202,
- -0.039811406284570694,
- -0.0253712460398674,
- -0.015395095571875572,
- 0.006756869610399008,
- 0.02577138878405094,
- -0.06834375858306885,
- 0.00262885307893157,
- -0.03675545006990433,
- -0.046552978456020355,
- 0.11279810220003128,
- -0.013844628818333149,
- -0.05516953021287918,
- 0.004408290144056082,
- 0.0076329088769853115,
- 0.009609930217266083,
- 0.0015242783119902015,
- 0.0945768728852272,
- 0.0457482784986496,
- -0.08918469399213791,
- 0.0665033757686615,
- -0.026043251156806946,
- 0.013318130746483803,
- 0.02816869132220745,
- 0.04588887467980385,
- 0.06826811283826828,
- 0.039835620671510696,
- -0.04239314794540405,
- 0.11936508864164352,
- -0.03280406817793846,
- -0.045594263821840286,
- -0.015541148371994495,
- 0.0009685663389973342,
- 0.04900549724698067,
- -0.03129113093018532,
- -0.011748737655580044,
- 0.017673246562480927,
- -0.01902497000992298,
- -0.029523981735110283,
- 0.053005486726760864,
- -0.05183704197406769,
- 0.05511932075023651,
- -0.01774434745311737,
- -0.014735204167664051,
- -0.12663620710372925,
- 0.06755466014146805,
- -0.008043748326599598,
- -0.0015749245649203658,
- -0.07136835902929306,
- 0.25513672828674316,
- 0.01849754899740219,
- 0.12213094532489777,
- -0.005341504234820604,
- -0.0351879820227623,
- -0.0453365258872509,
- -0.029323244467377663,
- 0.011602087877690792,
- 0.10208704322576523,
- 0.02625091001391411,
- 0.037440475076436996,
- -0.01969318278133869,
- 0.013288309797644615,
- -0.07776104658842087,
- -0.025709424167871475,
- -0.01841859146952629,
- 0.035537783056497574,
- 0.06604612618684769,
- -0.002806108444929123,
- -0.012131573632359505,
- 0.0395168699324131,
- -0.011791727505624294,
- 0.12008664011955261,
- -0.031368549913167953,
- 0.05522670969367027,
- -0.051098912954330444,
- -0.07022865116596222,
- -0.006128477398306131,
- -6.92698911004007e-33,
- -0.009815267287194729,
- -0.07557734847068787,
- 0.008266137912869453,
- 0.024232814088463783,
- 0.034591805189847946,
- 0.03077837824821472,
- -0.018556853756308556,
- 0.022537212818861008,
- -0.07525726407766342,
- 0.021696994081139565,
- 0.03236926347017288,
- -0.021639328449964523,
- 0.042782217264175415,
- -0.08625959604978561,
- 0.15406818687915802,
- 0.003014389192685485,
- 0.03421035036444664,
- -0.05581672117114067,
- -0.028592709451913834,
- -0.03268013149499893,
- -0.05852268636226654,
- 0.11290693283081055,
- 0.026282647624611855,
- 0.015324222855269909,
- -0.020917849615216255,
- -0.017651764675974846,
- -0.043312184512615204,
- -0.042712338268756866,
- 0.06664956361055374,
- 0.023604435846209526,
- 0.05186809226870537,
- 0.01784956082701683,
- -0.03460780158638954,
- -0.031124141067266464,
- 0.00345833832398057,
- -0.006039941217750311,
- 0.010562481358647346,
- -0.09157130867242813,
- -0.07203464955091476,
- -0.05331817641854286,
- -0.0742611289024353,
- -0.021977702155709267,
- -0.06358937174081802,
- -0.013980585150420666,
- -0.037907376885414124,
- 0.05021163448691368,
- -0.0040962183848023415,
- -0.01745947264134884,
- 0.003120969282463193,
- 0.03465208411216736,
- -0.018166938796639442,
- 0.037225861102342606,
- -0.04320003464818001,
- 0.05039093643426895,
- 0.00036044730222783983,
- -0.06566522270441055,
- 0.007900891825556755,
- 0.02979942411184311,
- 0.018676098436117172,
- -0.07638798654079437,
- 0.0711105465888977,
- 0.07478433847427368,
- -0.015412633307278156,
- 0.06058245897293091,
- -0.04903794452548027,
- -0.03154831752181053,
- 0.03174746036529541,
- -0.03300720453262329,
- 0.09065599739551544,
- -0.01176907867193222,
- 0.028405750170350075,
- 0.024839166551828384,
- -0.05595257133245468,
- 0.04374091699719429,
- -0.048696815967559814,
- -0.01073161419481039,
- -0.07519533485174179,
- 0.06227501109242439,
- -0.03434893861413002,
- 0.03553113713860512,
- -0.0322367399930954,
- -0.05846117064356804,
- -0.013475111685693264,
- 0.04483157768845558,
- 0.028048332780599594,
- 0.004241512157022953,
- 0.02700694277882576,
- -0.04699624702334404,
- -0.06074061617255211,
- -0.001207213499583304,
- -0.11824382841587067,
- -0.026256227865815163,
- 0.07771804928779602,
- 0.05151020735502243,
- 0.06600628793239594,
- 4.582663624654734e-33,
- 0.06743083894252777,
- -0.07498516142368317,
- 0.028388839215040207,
- -0.027085142210125923,
- 0.06259768456220627,
- 0.03322803974151611,
- -0.04155092313885689,
- -0.02145639806985855,
- -0.04668956622481346,
- 0.1064906120300293,
- -0.06718746572732925,
- -0.0041277906857430935,
- 0.020369816571474075,
- 0.022076250985264778,
- 0.030577775090932846,
- -0.02198399417102337,
- 0.020151032134890556,
- -0.009172207675874233,
- -0.038317982107400894,
- 0.011053900234401226,
- -0.019106686115264893,
- -0.0022005094215273857,
- 0.06503498554229736,
- 0.03950423002243042,
- -0.015589358285069466,
- -0.005086192395538092,
- 0.05257466062903404,
- -0.000675843795761466,
- -0.09854454547166824,
- -0.022747818380594254,
- 0.019956771284341812,
- -0.01492877397686243,
- 0.07229673117399216,
- -0.007424588780850172,
- -0.0012570720864459872,
- 0.13868872821331024,
- 0.03629949316382408,
- 0.03603321313858032,
- -0.05870899185538292,
- -0.029760345816612244,
- 0.03535304218530655,
- -0.0010936087928712368,
- -0.06928875297307968,
- 0.10587547719478607,
- -0.01302800327539444,
- -0.012252390384674072,
- -0.023600216954946518,
- -0.021198710426688194,
- -0.01613624207675457,
- 0.07732497900724411,
- -0.02794720232486725,
- -0.010206585749983788,
- 0.051106322556734085,
- -0.040103912353515625,
- 0.06699468195438385,
- 0.03122536838054657,
- -0.09891558438539505,
- -0.021401889622211456,
- -0.056659866124391556,
- 0.015705375000834465,
- -0.03168126195669174,
- -0.02857903577387333,
- -0.08801375329494476,
- 0.10396703332662582,
- 0.01188786793500185,
- -0.03395002335309982,
- -0.08644162863492966,
- 0.08299237489700317,
- -0.03272075206041336,
- 0.009088672697544098,
- -0.08425498008728027,
- -0.011566261760890484,
- 0.003512549912557006,
- 0.1423075646162033,
- -0.09811190515756607,
- -0.0841023176908493,
- 0.04984910413622856,
- 0.00694997888058424,
- 0.0019019774626940489,
- -0.06685013324022293,
- -0.03735166788101196,
- -0.08939538896083832,
- 0.044726431369781494,
- 0.1195434108376503,
- 0.009189949370920658,
- -0.038105517625808716,
- 0.10942932218313217,
- 0.0690322071313858,
- 0.00813915766775608,
- 0.07834762334823608,
- 0.0464060939848423,
- 0.007429765537381172,
- -0.0028233772609382868,
- -0.036984533071517944,
- 0.0000789246114436537,
- -1.297213980677725e-8,
- -0.02876863442361355,
- 0.04021502286195755,
- 0.013480025343596935,
- 0.01042704563587904,
- 0.09919431060552597,
- 0.006658944766968489,
- -0.020512646064162254,
- 0.03254023939371109,
- 0.021043406799435616,
- 0.10605321079492569,
- -0.012356972321867943,
- -0.0026037506759166718,
- -0.012839502654969692,
- 0.0030423467978835106,
- -0.026546597480773926,
- -0.022148767486214638,
- -0.03636157512664795,
- 0.023327747359871864,
- -0.02835865505039692,
- 0.005049659870564938,
- -0.02847556211054325,
- -0.029876617714762688,
- -0.002361722057685256,
- 0.017270570620894432,
- -0.01351596787571907,
- -0.05289585515856743,
- -0.0670781061053276,
- 0.02637171745300293,
- -0.051288943737745285,
- -0.07527666538953781,
- -0.007144828327000141,
- 0.07393448054790497,
- -0.0043241544626653194,
- -0.000609448878094554,
- -0.03355741128325462,
- -0.03617389127612114,
- -0.012134798802435398,
- -0.01066564116626978,
- -0.044649332761764526,
- 0.06827636808156967,
- -0.019924592226743698,
- -0.03569748252630234,
- 0.02242712676525116,
- -0.026725681498646736,
- 0.008904525078833103,
- 0.08817210793495178,
- 0.019192485138773918,
- 0.02175799570977688,
- 0.004356881603598595,
- -0.028896596282720566,
- -0.031107410788536072,
- 0.07083309441804886,
- 0.017872797325253487,
- 0.02720322459936142,
- -0.031090939417481422,
- 0.015105009078979492,
- -0.015544045716524124,
- 0.07927282899618149,
- -0.07006604969501495,
- 0.02788052149116993,
- 0.13553689420223236,
- 0.03958088904619217,
- -0.00027796922950074077,
- -0.05508357286453247
- ]
- },
- {
- "keyword": "nonprofit",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.030766749754548073,
- 0.008288062177598476,
- -0.03798018768429756,
- 0.025011612102389336,
- 0.01723243109881878,
- -0.002945519983768463,
- 0.015685008838772774,
- -0.04500759392976761,
- 0.04966062307357788,
- 0.02102637104690075,
- 0.08438170701265335,
- -0.033547207713127136,
- -0.014667602255940437,
- -0.03286762163043022,
- 0.035918284207582474,
- -0.05894365534186363,
- 0.002018058905377984,
- 0.010912016965448856,
- -0.00019591639284044504,
- -0.03483175113797188,
- -0.1018647775053978,
- -0.026538008823990822,
- 0.015396091155707836,
- 0.040206629782915115,
- 0.026348985731601715,
- -0.004090375732630491,
- 0.0102437324821949,
- 0.013041175901889801,
- -0.022621190175414085,
- -0.031225720420479774,
- -0.000593892065808177,
- -0.06560570001602173,
- 0.10089688748121262,
- -0.00066291046096012,
- 0.03932050243020058,
- 0.026256220415234566,
- -0.016057729721069336,
- 0.009356121532619,
- -0.09802542626857758,
- 0.09886573255062103,
- -0.00853883195668459,
- -0.04378216713666916,
- -0.04281012341380119,
- -0.0682167336344719,
- -0.037623897194862366,
- -0.04047354310750961,
- 0.0046568806283175945,
- -0.026618489995598793,
- 0.015908095985651016,
- -0.007914206013083458,
- 0.09156844019889832,
- -0.050113245844841,
- -0.03703544661402702,
- -0.008055800572037697,
- -0.042462293058633804,
- -0.0789969339966774,
- 0.05122668668627739,
- -0.04956749081611633,
- -0.03554686903953552,
- -0.10046602785587311,
- 0.09071119874715805,
- -0.024893563240766525,
- -0.045951489359140396,
- 0.018577158451080322,
- 0.12193728238344193,
- 0.03610162064433098,
- 0.015631169080734253,
- 0.0913730338215828,
- -0.021455854177474976,
- -0.14182664453983307,
- 0.02800498530268669,
- -0.06644095480442047,
- 0.06864973157644272,
- 0.047906842082738876,
- 0.025425946339964867,
- -0.08356243371963501,
- 0.06494369357824326,
- 0.07399380207061768,
- 0.07220453768968582,
- -0.022078653797507286,
- 0.05828821286559105,
- 0.03487464785575867,
- -0.050017885863780975,
- 0.08193067461252213,
- -0.059796515852212906,
- 0.038467563688755035,
- 0.015136533416807652,
- 0.01826975867152214,
- 0.064549520611763,
- 0.02429063618183136,
- -0.1016950011253357,
- 0.07526307553052902,
- 0.030643034726381302,
- -0.022213494405150414,
- -0.0658080130815506,
- -0.022767003625631332,
- 0.0591035857796669,
- -0.07021655887365341,
- -0.024537181481719017,
- 0.25173941254615784,
- 0.0005985694588162005,
- 0.019289784133434296,
- 0.020631739869713783,
- -0.08905277401208878,
- -0.010356366634368896,
- 0.04845172166824341,
- 0.014149751514196396,
- 0.03720753639936447,
- -0.031179312616586685,
- 0.046046871691942215,
- -0.029189519584178925,
- -0.009859289042651653,
- -0.0027718706987798214,
- 0.017203785479068756,
- 0.01900697872042656,
- 0.01937020570039749,
- -0.020744692534208298,
- 0.002305663423612714,
- 0.0640159621834755,
- -0.04009903594851494,
- 0.06329885125160217,
- -0.005102811846882105,
- -0.021416842937469482,
- -0.01799936220049858,
- -0.06656710058450699,
- -0.04069388657808304,
- -0.02781812474131584,
- -5.3968337872372975e-33,
- 0.04408971592783928,
- 0.02149895951151848,
- 0.05498594790697098,
- -0.044530533254146576,
- 0.045391954481601715,
- 0.008855724707245827,
- -0.01512101385742426,
- 0.011066597886383533,
- -0.07544220238924026,
- 0.02013906091451645,
- 0.02357129380106926,
- 0.051423635333776474,
- 0.04905366152524948,
- 0.019323650747537613,
- 0.06703978031873703,
- -0.06158077344298363,
- -0.01004755962640047,
- 0.010358563624322414,
- 0.03748558834195137,
- 0.022075559943914413,
- 0.009580934420228004,
- 0.05945770815014839,
- -0.028785446658730507,
- 0.0659981518983841,
- 0.08974714577198029,
- -0.13009878993034363,
- -0.01360510103404522,
- -0.042178478091955185,
- -0.001945212366990745,
- 0.012800846248865128,
- 0.05484540015459061,
- 0.06633727997541428,
- -0.018838539719581604,
- -0.03485904261469841,
- 0.06382361054420471,
- -0.016588985919952393,
- -0.04502356797456741,
- 0.004017784725874662,
- -0.012553622014820576,
- -0.03744444623589516,
- -0.043560899794101715,
- -0.007204276509582996,
- 0.08183819055557251,
- 0.03359946608543396,
- 0.022735098376870155,
- 0.011497379280626774,
- 0.05702643841505051,
- -0.014979314059019089,
- -0.030936280265450478,
- 0.061017099767923355,
- 0.07230839878320694,
- -0.004595132544636726,
- -0.11428050696849823,
- -0.03402356430888176,
- 0.02533644810318947,
- -0.07888711243867874,
- 0.024877289310097694,
- 0.007775032427161932,
- -0.007655521389096975,
- -0.07709572464227676,
- 0.05676402151584625,
- 0.0416254997253418,
- -0.07955601811408997,
- -0.03200361877679825,
- -0.051725637167692184,
- 0.028159139677882195,
- 0.02706906758248806,
- -0.027721062302589417,
- 0.0835108757019043,
- -0.08449751138687134,
- -0.01635601557791233,
- 0.03522578626871109,
- 0.019871724769473076,
- 0.05493702366948128,
- -0.08491634577512741,
- 0.043134864419698715,
- -0.020650872960686684,
- 0.04472438991069794,
- 0.0774948000907898,
- 0.027389151975512505,
- 0.01311410404741764,
- -0.009896471165120602,
- -0.0033954705577343702,
- 0.0643201544880867,
- -0.005919520743191242,
- 0.0356118306517601,
- 0.0003583249053917825,
- 0.004812423139810562,
- -0.008928223513066769,
- 0.01829732581973076,
- -0.03780076280236244,
- 0.02180621214210987,
- -0.05073852837085724,
- 0.029822463169693947,
- -0.001921557355672121,
- 3.722018456202488e-33,
- 0.025861576199531555,
- -0.06323511898517609,
- 0.05178467556834221,
- 0.034458983689546585,
- 0.040405578911304474,
- -0.027531495317816734,
- -0.053204495459795,
- -0.03629089891910553,
- 0.07421781122684479,
- 0.09362795948982239,
- -0.05566570907831192,
- -0.03580460324883461,
- 0.049965426325798035,
- 0.04071205481886864,
- -0.0006045517511665821,
- -0.01927395537495613,
- -0.0033367625437676907,
- -0.005278074648231268,
- -0.06241832301020622,
- -0.030193710699677467,
- 0.014724844135344028,
- 0.0812532901763916,
- -0.014992274343967438,
- -0.008275451138615608,
- 0.025483159348368645,
- 0.010366003960371017,
- -0.054980549961328506,
- 0.04094809666275978,
- -0.07735595852136612,
- -0.015054591000080109,
- 0.025684360414743423,
- -0.03649677708745003,
- -0.06188751012086868,
- -0.02496589720249176,
- -0.07904967665672302,
- 0.07160216569900513,
- 0.008835590444505215,
- 0.03239475190639496,
- -0.04085874930024147,
- -0.1204524040222168,
- 0.046405088156461716,
- 0.0045029837638139725,
- 0.02886754274368286,
- 0.04212915897369385,
- -0.00966469943523407,
- 0.06503596901893616,
- -0.04890718683600426,
- -0.02611318603157997,
- 0.061526328325271606,
- 0.04388449713587761,
- -0.13579881191253662,
- -0.05475723370909691,
- 0.05834716930985451,
- -0.006239168345928192,
- -0.022658172994852066,
- 0.05972291901707649,
- -0.05631528049707413,
- 0.0045074098743498325,
- -0.0070891291834414005,
- 0.0010816166177392006,
- 0.031853631138801575,
- 0.032194651663303375,
- -0.015773439779877663,
- 0.11825692653656006,
- -0.07593883574008942,
- -0.03106890246272087,
- 0.005622881930321455,
- 0.030405523255467415,
- -0.02500220760703087,
- -0.042338866740465164,
- 0.0592636875808239,
- 0.007930232211947441,
- -0.07662539184093475,
- -0.1530725210905075,
- -0.09366431087255478,
- 0.011327872984111309,
- 0.006633027922362089,
- 0.03777563199400902,
- -0.05500137433409691,
- -0.019242294132709503,
- 0.06256521493196487,
- -0.04570809006690979,
- 0.02535487525165081,
- 0.013492103666067123,
- -0.025109589099884033,
- 0.048631131649017334,
- 0.08535411953926086,
- -0.05532534420490265,
- -0.024737000465393066,
- 0.05823370814323425,
- 0.013532446697354317,
- -0.056596092879772186,
- -0.013085794635117054,
- 0.06450530141592026,
- 0.08953201025724411,
- -1.1684567979841631e-8,
- 0.11572380363941193,
- 0.06091174855828285,
- -0.0049139526672661304,
- -0.03112151101231575,
- 0.06943174451589584,
- -0.06952448934316635,
- 0.006211335305124521,
- -0.048348668962717056,
- 0.010672680102288723,
- 0.0904853418469429,
- -0.03467761352658272,
- -0.028812125325202942,
- -0.06836605072021484,
- -0.027356581762433052,
- 0.05064104124903679,
- -0.03906393051147461,
- -0.019331069663167,
- 0.04029050096869469,
- -0.045406561344861984,
- -0.01577172987163067,
- 0.018685219809412956,
- 0.017246754840016365,
- -0.05256055295467377,
- 0.016203904524445534,
- -0.010692269541323185,
- -0.003812478156760335,
- 0.049167051911354065,
- -0.028353048488497734,
- -0.005693734623491764,
- 0.012349979020655155,
- 0.03747601434588432,
- 0.08343285322189331,
- -0.07555525749921799,
- -0.06103299558162689,
- -0.07666117697954178,
- -0.03753922879695892,
- -0.029995469376444817,
- 0.012165749445557594,
- 0.038018807768821716,
- -0.10344155132770538,
- -0.02704796753823757,
- 0.05037529021501541,
- 0.052992526441812515,
- -0.04066450148820877,
- -0.05429751053452492,
- -0.014643671922385693,
- -0.02453495003283024,
- -0.04781831428408623,
- 0.021521972492337227,
- -0.0916922464966774,
- 0.007652553264051676,
- -0.003945242613554001,
- 0.04883576184511185,
- 0.025838229805231094,
- 0.02823096141219139,
- -0.000940870784688741,
- 0.030556943267583847,
- 0.05615419149398804,
- -0.03403510898351669,
- -0.012484454549849033,
- 0.11186140775680542,
- -0.11702271550893784,
- 0.08416693657636642,
- -0.010603733360767365
- ]
- },
- {
- "keyword": "ngo",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04770449176430702,
- 0.03445395454764366,
- -0.045263104140758514,
- 0.045622728765010834,
- 0.054759763181209564,
- -0.03253424912691116,
- 0.00543931033462286,
- -0.06022132560610771,
- 0.05429487302899361,
- 0.04535628482699394,
- 0.05188470706343651,
- 0.003995873965322971,
- 0.0008868234581314027,
- 0.022477522492408752,
- 0.010021425783634186,
- 0.0070666177198290825,
- -0.02741893380880356,
- 0.009862163104116917,
- -0.04892479628324509,
- -0.11312033981084824,
- -0.06646633893251419,
- 0.05179739370942116,
- 0.025598136708140373,
- 0.022828273475170135,
- 0.011432671919465065,
- 0.05441228672862053,
- -0.05288352072238922,
- -0.004588249605149031,
- 0.07915408164262772,
- -0.0012919118162244558,
- 0.0014131262432783842,
- 0.04028754681348801,
- 0.004151269793510437,
- -0.02405100129544735,
- -0.02845280058681965,
- 0.11241670697927475,
- -0.03044029138982296,
- -0.013205897063016891,
- 0.02681034989655018,
- -0.039437223225831985,
- 0.07475336641073227,
- -0.04617215692996979,
- 0.06556566804647446,
- -0.12792235612869263,
- 0.00021839013788849115,
- -0.0024969878140836954,
- -0.042822759598493576,
- 0.04272560402750969,
- -0.016407156363129616,
- -0.005694159772247076,
- 0.03989126533269882,
- -0.10805632174015045,
- -0.04660211503505707,
- 0.022261185571551323,
- 0.009563575498759747,
- -0.08483713865280151,
- -0.013193967752158642,
- 0.03172824904322624,
- -0.04317208752036095,
- -0.0698571652173996,
- 0.04459952563047409,
- -0.04539477080106735,
- -0.039108652621507645,
- 0.030377652496099472,
- 0.04566239193081856,
- 0.016120007261633873,
- -0.011780310422182083,
- 0.0824168398976326,
- -0.06613034009933472,
- -0.04774197190999985,
- 0.04234111309051514,
- -0.05529061704874039,
- 0.022276468575000763,
- 0.03826174512505531,
- 0.041250620037317276,
- -0.008975358679890633,
- 0.024695973843336105,
- 0.03736082464456558,
- 0.06949636340141296,
- -0.04856978729367256,
- 0.1309634894132614,
- 0.078256756067276,
- 0.04758549854159355,
- -0.0007456807070411742,
- -0.010768407955765724,
- 0.06812530010938644,
- 0.008938788436353207,
- 0.0023665966000407934,
- 0.03423084691166878,
- -0.08141963928937912,
- -0.08907444030046463,
- 0.017140746116638184,
- 0.0968664288520813,
- 0.03142374008893967,
- -0.014122123830020428,
- -0.004250050988048315,
- 0.025105593726038933,
- 0.009336039423942566,
- -0.08784282207489014,
- 0.23936086893081665,
- -0.033962544053792953,
- 0.008536150678992271,
- -0.04831867665052414,
- -0.05147012695670128,
- -0.005920129362493753,
- -0.03686291724443436,
- 0.009165306575596333,
- 0.04000493139028549,
- 0.034256383776664734,
- 0.10560841113328934,
- -0.0819634348154068,
- 0.11931843310594559,
- -0.0259838979691267,
- 0.020416652783751488,
- 0.01588287763297558,
- -0.10637013614177704,
- 0.0036103427410125732,
- 0.0049961162731051445,
- -0.030859287828207016,
- -0.037542495876550674,
- -0.046929679811000824,
- -0.030107038095593452,
- -0.06625673919916153,
- -0.040870342403650284,
- 0.049877870827913284,
- 0.002743080724030733,
- -0.015568115748465061,
- -4.983409117975237e-33,
- 0.020549476146697998,
- 0.06542476266622543,
- 0.005364895332604647,
- -0.019865043461322784,
- 0.0252967718988657,
- 0.024309730157256126,
- -0.029611701145768166,
- -0.07424166798591614,
- -0.020349351689219475,
- 0.06917464733123779,
- -0.03593859076499939,
- 0.0845940038561821,
- 0.017044952139258385,
- -0.012732500210404396,
- 0.07952801883220673,
- -0.03732352703809738,
- -0.005530009977519512,
- -0.016769668087363243,
- 0.031269580125808716,
- 0.0017868748400360346,
- 0.011525965295732021,
- 0.02179049886763096,
- -0.04181789234280586,
- 0.04444544017314911,
- 0.0652993842959404,
- -0.019915953278541565,
- -0.004661463666707277,
- -0.025111721828579903,
- -0.038405999541282654,
- 0.024189351126551628,
- 0.00374599383212626,
- 0.028472021222114563,
- -0.09353511780500412,
- -0.08974583446979523,
- 0.023814333602786064,
- -0.07921133935451508,
- -0.008889713324606419,
- -0.02907201461493969,
- -0.054396070539951324,
- -0.04886256530880928,
- 0.021762406453490257,
- 0.02460363134741783,
- -0.007394816726446152,
- 0.03825077787041664,
- 0.02075822651386261,
- 0.09355231374502182,
- 0.027252577245235443,
- -0.03422749042510986,
- 0.04903721064329147,
- 0.032783687114715576,
- -0.02164618857204914,
- 0.004161042161285877,
- -0.0840032547712326,
- -0.033792492002248764,
- 0.03963066637516022,
- -0.0547063909471035,
- 0.00869039911776781,
- 0.012046982534229755,
- 0.04359923303127289,
- -0.04985993728041649,
- 0.0704251080751419,
- -0.05978811904788017,
- -0.05186642333865166,
- 0.023612672463059425,
- -0.0049783880822360516,
- -0.037190962582826614,
- 0.04651771858334541,
- 0.007966485805809498,
- 0.06124142184853554,
- -0.11596771329641342,
- 0.02771015651524067,
- 0.014519436284899712,
- 0.002643752610310912,
- 0.07370287925004959,
- -0.07375694811344147,
- -0.0052125779911875725,
- 0.008374872617423534,
- 0.025079019367694855,
- 0.004884177353233099,
- -0.004224000498652458,
- 0.010679839178919792,
- -0.005539389792829752,
- -0.03614775091409683,
- 0.03342004120349884,
- 0.06218288466334343,
- -0.011464402079582214,
- -0.025782335549592972,
- -0.07324884086847305,
- -0.007748006843030453,
- -0.049795445054769516,
- -0.08958709239959717,
- -0.001873128698207438,
- 0.008644667454063892,
- 0.055078160017728806,
- -0.046735089272260666,
- 3.93551394425074e-33,
- 0.05226174741983414,
- -0.06322632730007172,
- 0.024732651188969612,
- 0.047231510281562805,
- 0.08312474936246872,
- -0.0337555967271328,
- 0.03844514489173889,
- 0.02565808966755867,
- 0.0787397101521492,
- 0.1312423199415207,
- 0.002448175335302949,
- -0.045945439487695694,
- 0.028669914230704308,
- 0.07913487404584885,
- 0.04041313752532005,
- 0.019937332719564438,
- 0.08039401471614838,
- -0.004716907162219286,
- 0.006520443130284548,
- -0.01678023487329483,
- -0.024142326787114143,
- -0.08582766354084015,
- -0.04060627520084381,
- -0.032435838133096695,
- -0.06886769086122513,
- 0.11443126201629639,
- -0.007216532249003649,
- -0.018318254500627518,
- -0.06197439879179001,
- 0.007414144929498434,
- 0.031063959002494812,
- -0.053116947412490845,
- -0.07657144963741302,
- 0.04734163358807564,
- -0.08958089351654053,
- 0.015488224104046822,
- 0.053448792546987534,
- 0.017300523817539215,
- -0.08481945097446442,
- -0.10195992887020111,
- 0.06107581779360771,
- 0.00135111715644598,
- -0.02449747733771801,
- 0.0568804070353508,
- -0.050739407539367676,
- -0.01956399716436863,
- 0.04569588974118233,
- 0.02144019305706024,
- -0.07683004438877106,
- 0.007247974164783955,
- -0.07108011841773987,
- -0.00705336220562458,
- 0.07826012372970581,
- -0.03809242695569992,
- 0.02150738798081875,
- -0.0007553371833637357,
- 0.009039490483701229,
- 0.03612086549401283,
- 0.029531046748161316,
- 0.013618238270282745,
- 0.05297636613249779,
- 0.024622665718197823,
- -0.12339726835489273,
- 0.1284441500902176,
- -0.010303327813744545,
- 0.04176463186740875,
- 0.01033127773553133,
- 0.0007110611768439412,
- 0.0019537454936653376,
- 0.06796649098396301,
- 0.03593398630619049,
- -0.017949877306818962,
- -0.08666480332612991,
- -0.05403941869735718,
- -0.05151710659265518,
- 0.03660609945654869,
- 0.0003867832710966468,
- -0.01157432608306408,
- -0.016197366639971733,
- -0.06112566590309143,
- 0.013033019378781319,
- -0.12872470915317535,
- 0.016993200406432152,
- 0.012835976667702198,
- -0.0077710459008812904,
- 0.04375441372394562,
- 0.09395328164100647,
- -0.04440748691558838,
- -0.02186800353229046,
- 0.06103646382689476,
- -0.039434291422367096,
- -0.05786377564072609,
- 0.03540598601102829,
- 0.03459149971604347,
- 0.034066423773765564,
- -1.2466461640769921e-8,
- -0.024210169911384583,
- 0.05263678729534149,
- 0.03717685118317604,
- -0.005850546527653933,
- 0.00784485787153244,
- -0.06686120480298996,
- -0.0423278883099556,
- -0.0013982392847537994,
- 0.056646037846803665,
- 0.15342657268047333,
- -0.05948331579566002,
- 0.011960717849433422,
- -0.006201768759638071,
- 0.01849079318344593,
- 0.0007269644411280751,
- -0.018205279484391212,
- -0.05334935337305069,
- 0.06434263288974762,
- -0.017081784084439278,
- -0.056257713586091995,
- -0.004487637430429459,
- 0.03311566635966301,
- 0.003916488960385323,
- -0.1019924059510231,
- 0.060078248381614685,
- 0.005565736908465624,
- -0.02008206956088543,
- 0.03942731395363808,
- 0.01646237075328827,
- 0.03628554195165634,
- -0.032436445355415344,
- 0.09937065839767456,
- -0.03624465689063072,
- -0.03326719254255295,
- -0.06789661943912506,
- -0.05838589370250702,
- -0.013929096981883049,
- -0.006691564805805683,
- 0.05693216249346733,
- -0.10170946270227432,
- -0.012105987407267094,
- 0.022064195945858955,
- 0.07885018736124039,
- -0.023709896951913834,
- -0.056039486080408096,
- 0.019222114235162735,
- 0.0698617696762085,
- -0.011571522802114487,
- 0.011370599269866943,
- -0.1026701107621193,
- -0.035751696676015854,
- -0.028866078704595566,
- 0.01019583735615015,
- 0.026596074923872948,
- 0.012704101391136646,
- -0.06815852969884872,
- -0.020104506984353065,
- 0.09508433938026428,
- -0.013549452647566795,
- -0.008013816550374031,
- 0.05684773623943329,
- -0.0683387815952301,
- 0.0507962629199028,
- -0.05088527500629425
- ]
- },
- {
- "keyword": "charity",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.08066700398921967,
- 0.07801202684640884,
- 0.00617431802675128,
- -0.024719925597310066,
- 0.007367642596364021,
- 0.031957805156707764,
- 0.09734570235013962,
- 0.009607287123799324,
- 0.03509937971830368,
- 0.013320812955498695,
- 0.07606496661901474,
- -0.05044541507959366,
- -0.007897947914898396,
- -0.017338858917355537,
- -0.026475461199879646,
- 0.009377943351864815,
- 0.009869750589132309,
- -0.0058103748597204685,
- -0.11384367197751999,
- -0.021860534325242043,
- -0.06879810243844986,
- 0.011193396523594856,
- -0.022948503494262695,
- 0.021433426067233086,
- -0.042203713208436966,
- 0.07760219275951385,
- -0.05149899795651436,
- -0.019978711381554604,
- -0.010952874086797237,
- -0.046225011348724365,
- 0.047466427087783813,
- -0.07308290153741837,
- 0.01233472116291523,
- -0.002810270292684436,
- -0.01468983106315136,
- 0.09408137202262878,
- 0.03822237253189087,
- 0.01679016277194023,
- -0.05824306234717369,
- 0.00990215688943863,
- -0.003663211828097701,
- -0.06525477766990662,
- -0.01655874401330948,
- -0.01503742951899767,
- 0.03194468095898628,
- -0.04249227046966553,
- 0.011512694880366325,
- 0.034871842712163925,
- 0.058855049312114716,
- -0.024444004520773888,
- 0.0757068321108818,
- -0.04611034318804741,
- -0.032638195902109146,
- -0.02557087130844593,
- 0.016115661710500717,
- -0.014891830272972584,
- 0.035166576504707336,
- 0.0030511170625686646,
- -0.047440722584724426,
- -0.08991288393735886,
- 0.049100182950496674,
- -0.008782819844782352,
- -0.013803123496472836,
- -0.0015426598256453872,
- 0.08503633737564087,
- -0.022801125422120094,
- 0.0044950819574296474,
- 0.11816001683473587,
- -0.018203068524599075,
- -0.001971595920622349,
- 0.08714863657951355,
- -0.04011409729719162,
- 0.08708369731903076,
- 0.013526832684874535,
- 0.020385753363370895,
- 0.00934617966413498,
- 0.036381568759679794,
- 0.00826826598495245,
- 0.06445697695016861,
- -0.045184940099716187,
- 0.04328630864620209,
- -0.03956480324268341,
- -0.0026709281373769045,
- 0.04320165887475014,
- -0.01686857081949711,
- 0.03742463141679764,
- 0.05976535752415657,
- -0.03330547735095024,
- 0.05663145333528519,
- 0.04631170630455017,
- -0.08447824418544769,
- -0.0008462081896141171,
- 0.03957754001021385,
- -0.00784466601908207,
- -0.1168016865849495,
- 0.0002828610595315695,
- 0.0031676217913627625,
- -0.10384207963943481,
- -0.09774734824895859,
- 0.29151538014411926,
- -0.008860355243086815,
- -0.0037391677033156157,
- 0.05434957519173622,
- -0.04239169508218765,
- 0.022285763174295425,
- -0.04265054315328598,
- -0.0713900700211525,
- 0.02584156207740307,
- 0.010338387452065945,
- 0.014344209805130959,
- -0.015641799196600914,
- 0.03771064803004265,
- -0.04046233370900154,
- 0.012192596681416035,
- -0.017431531101465225,
- -0.008678930811583996,
- -0.026318000629544258,
- -0.05034288391470909,
- 0.01764557510614395,
- -0.0681365579366684,
- 0.05120423808693886,
- 0.004759043455123901,
- -0.026340369135141373,
- 0.006434471346437931,
- -0.022051850333809853,
- -0.06605614721775055,
- -0.04631185531616211,
- -6.274414890549015e-33,
- 0.014700688421726227,
- -0.03617318347096443,
- 0.09731267392635345,
- -0.04623908922076225,
- -0.025310758501291275,
- 0.01901506446301937,
- -0.013151698745787144,
- 0.019784092903137207,
- -0.037241943180561066,
- 0.0344524048268795,
- 0.02986946702003479,
- 0.04050963371992111,
- 0.025038598105311394,
- -0.03873152285814285,
- 0.03290056809782982,
- -0.04184608906507492,
- -0.053352240473032,
- -0.06377905607223511,
- -0.003799544647336006,
- 0.011109311133623123,
- 0.04558878019452095,
- 0.04580962285399437,
- -0.005998814944177866,
- 0.10467600077390671,
- 0.061067018657922745,
- -0.12117768824100494,
- 0.0017203419702127576,
- -0.062261153012514114,
- 0.07922021299600601,
- 0.02141815423965454,
- 0.03999153524637222,
- 0.07475107908248901,
- 0.03183235973119736,
- -0.1158623993396759,
- -0.006967362482100725,
- -0.03640511631965637,
- -0.006855718791484833,
- -0.05119701847434044,
- 0.0010296492837369442,
- -0.06103355810046196,
- -0.018669279292225838,
- -0.00439877575263381,
- 0.09891479462385178,
- 0.018893657252192497,
- 0.005096013657748699,
- -0.001743876258842647,
- 0.06723048537969589,
- -0.0007203731220215559,
- -0.011331208050251007,
- 0.026481499895453453,
- 0.027073483914136887,
- -0.0374901182949543,
- -0.11348745226860046,
- -0.035275306552648544,
- -0.025842737406492233,
- -0.09681697189807892,
- -0.00460917828604579,
- 0.02146708220243454,
- -0.03531329333782196,
- -0.06365177035331726,
- 0.08346576988697052,
- -0.060074616223573685,
- 0.023449014872312546,
- 0.023675700649619102,
- -0.01515375729650259,
- 0.026399001479148865,
- 0.08102937787771225,
- -0.03285517916083336,
- -0.025122227147221565,
- -0.029316743835806847,
- -0.03640362247824669,
- 0.030300993472337723,
- 0.0068229385651648045,
- 0.020694613456726074,
- -0.07904446870088577,
- 0.05612276867032051,
- 0.04405307397246361,
- 0.011014888994395733,
- 0.030322570353746414,
- 0.012636007741093636,
- 0.01627179980278015,
- 0.006418259814381599,
- 0.03820972517132759,
- 0.017366288229823112,
- 0.03503502905368805,
- 0.0778556540608406,
- -0.05925320088863373,
- -0.05829243361949921,
- -0.012383383698761463,
- -0.08652942627668381,
- -0.041510529816150665,
- 0.024349825456738472,
- 0.05181269347667694,
- -0.031207822263240814,
- -0.041006434708833694,
- 3.913122980919483e-33,
- 0.022405389696359634,
- -0.07344244420528412,
- 0.09339810162782669,
- 0.0685485452413559,
- 0.1111690104007721,
- -0.033118538558483124,
- -0.024463918060064316,
- -0.02997712790966034,
- 0.03361167386174202,
- 0.2138855755329132,
- -0.04731268808245659,
- -0.022384487092494965,
- 0.0848376676440239,
- 0.05316958203911781,
- -0.04232485592365265,
- -0.019079752266407013,
- 0.004706638865172863,
- -0.00023589278862345964,
- -0.021697817370295525,
- -0.045140963047742844,
- -0.02364097721874714,
- 0.10712185502052307,
- 0.04508553445339203,
- -0.034768372774124146,
- -0.04005938768386841,
- 0.022790875285863876,
- -0.05992571637034416,
- 0.008222730830311775,
- 0.024957552552223206,
- -0.030559105798602104,
- 0.06464201956987381,
- 0.033536601811647415,
- -0.10215812176465988,
- 0.016411280259490013,
- -0.05872252210974693,
- 0.11494772881269455,
- 0.05490682274103165,
- -0.01420091837644577,
- -0.039207205176353455,
- -0.045765895396471024,
- 0.05321063846349716,
- -0.030998826026916504,
- -0.00513972993940115,
- 0.06317669153213501,
- -0.019517969340085983,
- 0.023093445226550102,
- -0.08490905910730362,
- 0.03356976807117462,
- 0.09766800701618195,
- -0.01208668015897274,
- -0.06384279578924179,
- -0.03414718434214592,
- 0.05352942645549774,
- 0.05746738612651825,
- 0.003687338437885046,
- 0.06379704177379608,
- -0.07813900709152222,
- -0.029456425458192825,
- 0.005096277222037315,
- 0.009034018963575363,
- -0.007425946183502674,
- 0.0022873396519571543,
- -0.06476985663175583,
- 0.11927292495965958,
- -0.10253887623548508,
- -0.02702377736568451,
- 0.022750679403543472,
- 0.019746534526348114,
- -0.057917337864637375,
- -0.0415443480014801,
- 0.08032043278217316,
- 0.01955602504312992,
- -0.054379209876060486,
- -0.04505373537540436,
- -0.08293063193559647,
- 0.06431522965431213,
- -0.01877213455736637,
- 0.01908469945192337,
- -0.02119571715593338,
- -0.03527577221393585,
- 0.0759589746594429,
- -0.09797291457653046,
- 0.036051806062459946,
- 0.010601292364299297,
- -0.02373562753200531,
- -0.03219795599579811,
- 0.0909365564584732,
- 0.010501988232135773,
- 0.0004380547034088522,
- 0.05180149897933006,
- -0.030620764940977097,
- -0.01929018460214138,
- 0.04873120039701462,
- 0.028851820155978203,
- 0.04058169573545456,
- -1.2893940137814752e-8,
- 0.09222553670406342,
- 0.0345766507089138,
- -0.03608894720673561,
- -0.05045266076922417,
- 0.05637533217668533,
- -0.10390400886535645,
- -0.007059625815600157,
- 0.04554755240678787,
- 0.02470320649445057,
- 0.036852143704891205,
- -0.018842823803424835,
- 0.058870431035757065,
- -0.08735182136297226,
- -0.007537097204476595,
- -0.0012019748101010919,
- -0.02364354394376278,
- -0.05867178365588188,
- -0.004624621011316776,
- 0.00524015910923481,
- 0.006061819847673178,
- 0.006446191109716892,
- -0.008735157549381256,
- -0.015764618292450905,
- -0.04765762388706207,
- -0.009629331529140472,
- -0.0018669102573767304,
- 0.003112501697614789,
- 0.04267491027712822,
- -0.021253056824207306,
- -0.044872794300317764,
- 0.04623705893754959,
- -0.0066927350126206875,
- -0.07077089697122574,
- -0.0174223892390728,
- -0.051640819758176804,
- 0.020709197968244553,
- -0.03594174608588219,
- -0.013898150064051151,
- 0.022789863869547844,
- -0.03352241590619087,
- 0.021357877179980278,
- 0.032935891300439835,
- 0.03140805661678314,
- 0.0020064511336386204,
- -0.03210676833987236,
- 0.013547902926802635,
- -0.030191944912075996,
- -0.029337458312511444,
- 0.02141014114022255,
- -0.0975596085190773,
- -0.05775586888194084,
- 0.010332141071557999,
- 0.007595994044095278,
- 0.004903694614768028,
- 0.00428157951682806,
- 0.003589548170566559,
- -0.0033989103976637125,
- 0.031217969954013824,
- -0.004139945842325687,
- 0.018918385729193687,
- 0.1193670779466629,
- -0.1117325946688652,
- 0.044545385986566544,
- 0.011732752434909344
- ]
- },
- {
- "keyword": "trust",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.05827116221189499,
- -0.005663697142153978,
- -0.043375201523303986,
- 0.040380749851465225,
- 0.02226230315864086,
- -0.02030482515692711,
- 0.11818515509366989,
- -0.01880715601146221,
- 0.06687122583389282,
- -0.004372387658804655,
- 0.05319402739405632,
- -0.04409927502274513,
- 0.07513413578271866,
- 0.015940191224217415,
- -0.042800724506378174,
- 0.0013366128550842404,
- -0.0023329362738877535,
- -0.0028564026579260826,
- -0.14208799600601196,
- -0.06427638232707977,
- -0.09578502923250198,
- -0.09206631779670715,
- -0.061604760587215424,
- 0.0024456041865050793,
- 0.006857406347990036,
- 0.03841136023402214,
- -0.06117049977183342,
- 0.05904768407344818,
- -0.08354901522397995,
- -0.09264186769723892,
- 0.04348431155085564,
- -0.030944710597395897,
- 0.02198963053524494,
- -0.03530752658843994,
- -0.04286843165755272,
- -0.006655984558165073,
- -0.007646885234862566,
- 0.012628086842596531,
- -0.022312983870506287,
- -0.06084952503442764,
- -0.038718730211257935,
- -0.050208937376737595,
- 0.06390856206417084,
- 0.022943470627069473,
- -0.056106578558683395,
- 0.055378515273332596,
- 0.058980342000722885,
- -0.0014946992741897702,
- 0.004173165652900934,
- -0.01684262603521347,
- -0.07243818044662476,
- -0.0004433402791619301,
- -0.07370293140411377,
- 0.01564543880522251,
- -0.028903331607580185,
- 0.008017873391509056,
- 0.0032020604703575373,
- 0.04992327839136124,
- -0.012238436378538609,
- -0.014586467295885086,
- 0.05961015075445175,
- 0.019870944321155548,
- -0.04029875993728638,
- -0.0033634821884334087,
- 0.025464674457907677,
- 0.050516851246356964,
- -0.015214602462947369,
- 0.022264834493398666,
- -0.05102133750915527,
- -0.04699402675032616,
- 0.06859202682971954,
- 0.002192783635109663,
- 0.008398971520364285,
- -0.05216425284743309,
- -0.005750690121203661,
- -0.04989202320575714,
- 0.03548162430524826,
- -0.09269950538873672,
- 0.0912952646613121,
- -0.03188740834593773,
- -0.006921319756656885,
- 0.08108079433441162,
- 0.01807430200278759,
- 0.03683922812342644,
- -0.03566139191389084,
- -0.006361530162394047,
- 0.06106480956077576,
- -0.08048798143863678,
- -0.03590872511267662,
- 0.03842306509613991,
- 0.007820378988981247,
- -0.006975384429097176,
- 0.026718230918049812,
- 0.04039650037884712,
- -0.024370918050408363,
- 0.029829127714037895,
- -0.04407850280404091,
- -0.021781232208013535,
- -0.09355716407299042,
- 0.26315706968307495,
- -0.030228516086935997,
- 0.036459386348724365,
- -0.06154084950685501,
- -0.020897984504699707,
- 0.05184146761894226,
- 0.04928813874721527,
- 0.014900902286171913,
- -0.033353786915540695,
- -0.003839473705738783,
- 0.054851286113262177,
- -0.07756098359823227,
- 0.004138579126447439,
- -0.04533993452787399,
- 0.0665951743721962,
- 0.06312105804681778,
- 0.05886681750416756,
- -0.02241695113480091,
- 0.046324487775564194,
- 0.04080945998430252,
- -0.09976137429475784,
- 0.014701674692332745,
- -0.0016338793793693185,
- 0.08693234622478485,
- 0.02627277746796608,
- -0.0702432245016098,
- -0.09234431385993958,
- 0.007671480067074299,
- -5.582384835830626e-33,
- 0.016428042203187943,
- 0.004671807400882244,
- -0.026681004092097282,
- -0.008184813894331455,
- -0.040765389800071716,
- 0.02013382688164711,
- -0.005274442955851555,
- 0.03752777725458145,
- -0.0892728939652443,
- -0.019146690145134926,
- -0.006221930030733347,
- 0.059855248779058456,
- -0.08553086221218109,
- 0.0016820176970213652,
- 0.09718448668718338,
- 0.10482992231845856,
- -0.04455895349383354,
- 0.0297906082123518,
- 0.021392501890659332,
- -0.039196088910102844,
- 0.016885291785001755,
- 0.00237163039855659,
- 0.017195647582411766,
- -0.016047030687332153,
- 0.018967118114233017,
- -0.04158396273851395,
- 0.059242457151412964,
- 0.046980153769254684,
- 0.012979600578546524,
- 0.02090093493461609,
- -0.037042271345853806,
- -0.029227087274193764,
- 0.0010418010642752051,
- -0.02374463528394699,
- 0.034082647413015366,
- -0.01963760517537594,
- -0.019277438521385193,
- -0.08230055123567581,
- 0.014362064190208912,
- -0.08841405063867569,
- 0.039753109216690063,
- -0.0510784350335598,
- -0.006325192283838987,
- 0.05852142721414566,
- -0.0023388841655105352,
- 0.0328628271818161,
- -0.03208008036017418,
- 0.012346955016255379,
- -0.0797625407576561,
- 0.03575984388589859,
- -0.019032808020710945,
- 0.0020019568037241697,
- 0.011658011935651302,
- -0.014420609921216965,
- -0.039851754903793335,
- -0.021438365802168846,
- 0.043199293315410614,
- 0.014817144721746445,
- -0.02355511672794819,
- -0.01926000788807869,
- 0.12176571041345596,
- -0.005101892165839672,
- -0.07620400935411453,
- -0.020965054631233215,
- -0.05574440956115723,
- -0.00017330572882201523,
- 0.02292141318321228,
- -0.08129095286130905,
- -0.01397774089127779,
- 0.015174398198723793,
- -0.0889863669872284,
- 0.0037082605995237827,
- -0.07058942317962646,
- -0.0032248201314359903,
- -0.029484590515494347,
- -0.0016903681680560112,
- -0.025494005531072617,
- 0.04768233373761177,
- 0.05080558732151985,
- -0.04677168279886246,
- -0.06399412453174591,
- -0.033277478069067,
- -0.0745808556675911,
- 0.09472142904996872,
- -0.040934063494205475,
- -0.03519635275006294,
- -0.010445820167660713,
- -0.03464443236589432,
- 0.0008427882567048073,
- 0.04300595819950104,
- -0.02164290100336075,
- 0.012917148880660534,
- 0.17380015552043915,
- 0.11178547143936157,
- -0.03352721780538559,
- 5.006938106774884e-33,
- -0.01972131058573723,
- -0.03358108922839165,
- 0.10442238301038742,
- 0.16921943426132202,
- 0.012932362034916878,
- -0.0664496123790741,
- -0.03482573851943016,
- 0.01768413744866848,
- 0.045526519417762756,
- 0.139388307929039,
- -0.021020907908678055,
- -0.07308092713356018,
- 0.10946998745203018,
- 0.040121693164110184,
- 0.07334302365779877,
- -0.09146149456501007,
- 0.13149045407772064,
- -0.02097398415207863,
- -0.01546050887554884,
- -0.02686270885169506,
- 0.10057653486728668,
- -0.052925027906894684,
- -0.04282272979617119,
- 0.08071161806583405,
- 0.01270456612110138,
- 0.02289552241563797,
- -0.006120919715613127,
- -0.09751877933740616,
- -0.03789684176445007,
- 0.02815447561442852,
- 0.03335118666291237,
- 0.05573877692222595,
- -0.007573714945465326,
- 0.054310545325279236,
- -0.005639080423861742,
- 0.04024197906255722,
- 0.048319753259420395,
- 0.01987547054886818,
- -0.009121895767748356,
- 0.004458230920135975,
- 0.04199286922812462,
- -0.022598575800657272,
- -0.042215701192617416,
- -0.010862387716770172,
- -0.025487205013632774,
- 0.03165308013558388,
- 0.061692528426647186,
- 0.03619647026062012,
- 0.023559806868433952,
- 0.01830555684864521,
- 0.026674693450331688,
- -0.024555057287216187,
- -0.04313959181308746,
- -0.014454567804932594,
- 0.047223594039678574,
- 0.04821247234940529,
- 0.018818693235516548,
- 0.05701727792620659,
- 0.04163812845945358,
- 0.005764640402048826,
- -0.002917200792580843,
- 0.02560405060648918,
- -0.03849225491285324,
- 0.061126068234443665,
- -0.05012190341949463,
- 0.043412309139966965,
- -0.03178158774971962,
- 0.008850637823343277,
- 0.028956307098269463,
- 0.095333032310009,
- 0.07124890387058258,
- -0.02157764509320259,
- -0.026843853294849396,
- -0.015022488310933113,
- -0.08298958837985992,
- -0.01409898977726698,
- -0.11902192234992981,
- -0.06058710068464279,
- -0.023090418428182602,
- 0.003320756834000349,
- 0.032625507563352585,
- -0.029148133471608162,
- 0.08255030959844589,
- -0.007823514752089977,
- 0.02316937781870365,
- -0.01782737486064434,
- 0.10766194015741348,
- -0.04532860592007637,
- 0.016404051333665848,
- -0.041401464492082596,
- 0.02894905023276806,
- -0.013190655037760735,
- -0.006032269448041916,
- -0.025731341913342476,
- -0.07885076105594635,
- -1.3433644419080792e-8,
- 0.03061835654079914,
- -0.005336379166692495,
- 0.008472327142953873,
- -0.017239121720194817,
- 0.02386288158595562,
- -0.01623552478849888,
- 0.017291534692049026,
- -0.045673806220293045,
- -0.0258997343480587,
- 0.09750135987997055,
- 0.04063567519187927,
- -0.02823863923549652,
- -0.034988053143024445,
- -0.009679191745817661,
- 0.03917122632265091,
- 0.004971622489392757,
- -0.02613174356520176,
- 0.017708636820316315,
- 0.008236164227128029,
- 0.05809393525123596,
- 0.07229208946228027,
- 0.02802906185388565,
- -0.07398726046085358,
- 0.038763560354709625,
- 0.024878403171896935,
- -0.011739665642380714,
- -0.011289617046713829,
- 0.11508115381002426,
- 0.03217462822794914,
- 0.10163072496652603,
- 0.03629201650619507,
- -0.010425012558698654,
- -0.03397814929485321,
- -0.04131914675235748,
- -0.0821426585316658,
- 0.04056231305003166,
- 0.004992939066141844,
- -0.043599165976047516,
- 0.018389182165265083,
- -0.028353651985526085,
- 0.01429691817611456,
- 0.051319386810064316,
- 0.04677311331033707,
- -0.013041699305176735,
- -0.06768078356981277,
- -0.012430297210812569,
- 0.03441381826996803,
- -0.04961131140589714,
- -0.07147838920354843,
- -0.019067445769906044,
- 0.022149231284856796,
- -0.04837736487388611,
- 0.0006763599230907857,
- 0.051221661269664764,
- -0.011700858362019062,
- -0.01740841567516327,
- 0.02596004121005535,
- 0.013829204253852367,
- 0.004418978001922369,
- 0.01204304676502943,
- 0.08610086888074875,
- -0.04252152517437935,
- 0.08748959749937057,
- -0.003438892774283886
- ]
- },
- {
- "keyword": "federation",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.04716864228248596,
- -0.0014250784879550338,
- -0.003715579165145755,
- 0.018122272565960884,
- 0.04019482061266899,
- 0.005671115126460791,
- 0.08128150552511215,
- -0.048440586775541306,
- -0.04321686550974846,
- 0.019167372956871986,
- -0.03730444237589836,
- -0.08539645373821259,
- 0.033087972551584244,
- 0.06650295853614807,
- -0.015575692988932133,
- -0.05955229699611664,
- -0.015062627382576466,
- -0.04431663826107979,
- -0.005187318194657564,
- -0.012500302866101265,
- -0.04654296115040779,
- -0.07813838869333267,
- -0.05130133777856827,
- 0.052519213408231735,
- -0.0013209428871050477,
- 0.015185697935521603,
- -0.0305599644780159,
- -0.05843215435743332,
- -0.030117280781269073,
- -0.0880342349410057,
- -0.04985437169671059,
- 0.033585645258426666,
- 0.02208350971341133,
- 0.0522659607231617,
- -0.04739119112491608,
- 0.01672670803964138,
- 0.03448856994509697,
- 0.017839856445789337,
- -0.05562417209148407,
- -0.027698539197444916,
- 0.0017795244930312037,
- -0.12802697718143463,
- -0.0024523972533643246,
- 0.022089172154664993,
- 0.005456577520817518,
- 0.014593597501516342,
- -0.017264535650610924,
- 0.006259399466216564,
- 0.0315832644701004,
- 0.04788671061396599,
- -0.009879294782876968,
- -0.008883022703230381,
- -0.026761554181575775,
- 0.05607079714536667,
- 0.06988060474395752,
- -0.03725960850715637,
- 0.06028208136558533,
- -0.0348505824804306,
- 0.006698364857584238,
- -0.08587967604398727,
- -0.024361807852983475,
- -0.05918239429593086,
- -0.05156741663813591,
- 0.054235152900218964,
- 0.06482766568660736,
- 0.013809891417622566,
- -0.027734411880373955,
- 0.05614543706178665,
- -0.06845042109489441,
- -0.0815017819404602,
- -0.050694480538368225,
- -0.00494352588430047,
- -0.020620638504624367,
- 0.013267040252685547,
- 0.03221844881772995,
- 0.04106245934963226,
- -0.010246768593788147,
- 0.013593921437859535,
- 0.09594196826219559,
- -0.0131358802318573,
- 0.042502935975790024,
- 0.03540860489010811,
- -0.010567956604063511,
- 0.0002457646478433162,
- 0.0496700257062912,
- -0.01739693060517311,
- 0.0040748813189566135,
- -0.05387449637055397,
- -0.01190491858869791,
- -0.006072039715945721,
- -0.04299798607826233,
- 0.08336126804351807,
- 0.14388547837734222,
- 0.012496771290898323,
- -0.08649039268493652,
- 0.026064962148666382,
- -0.01414739154279232,
- -0.04640820994973183,
- 0.0228654183447361,
- 0.24947786331176758,
- -0.022024543955922127,
- 0.03519707918167114,
- -0.07248222827911377,
- 0.009678741917014122,
- -0.08227156102657318,
- 0.032117705792188644,
- -0.05207141488790512,
- 0.009798431769013405,
- 0.045893218368291855,
- 0.02148696966469288,
- -0.03185753524303436,
- 0.020411642268300056,
- -0.05797985941171646,
- -0.00513813691213727,
- -0.04242047667503357,
- 0.05237426981329918,
- -0.01176887471228838,
- 0.005378890782594681,
- 0.09843005239963531,
- -0.07549396902322769,
- 0.016032911837100983,
- -0.03960937261581421,
- -0.053936999291181564,
- -0.023957638069987297,
- 0.04435460641980171,
- -0.01041762251406908,
- -0.002232670085504651,
- -3.840309187409704e-33,
- -0.05675852671265602,
- -0.01725938729941845,
- 0.026462934911251068,
- -0.0029480827506631613,
- 0.012241149321198463,
- -0.0606522262096405,
- 0.020771007984876633,
- -0.08974958211183548,
- -0.12581677734851837,
- 0.00032778142485767603,
- 0.02430277317762375,
- 0.17031453549861908,
- 0.062492650002241135,
- 0.009521211497485638,
- 0.11687265336513519,
- -0.06057116389274597,
- 0.09121086448431015,
- 0.1013026162981987,
- 0.11401712894439697,
- 0.04451156407594681,
- 0.027073601260781288,
- 0.12286894023418427,
- 0.02618437446653843,
- -0.0010199976386502385,
- 0.0654052346944809,
- 0.034956883639097214,
- -0.05808749422430992,
- -0.02883131615817547,
- 0.029350128024816513,
- 0.04513048008084297,
- -0.034455306828022,
- 0.003710656426846981,
- -0.03484482318162918,
- 0.040654320269823074,
- 0.03453259915113449,
- -0.020156890153884888,
- 0.06581663340330124,
- -0.10957284271717072,
- -0.034998469054698944,
- -0.07742564380168915,
- -0.06309313327074051,
- -0.013330004177987576,
- 0.052576832473278046,
- 0.03352592885494232,
- -0.00431626895442605,
- 0.015901464968919754,
- 0.039326947182416916,
- -0.008765824139118195,
- 0.08010215312242508,
- 0.06615851074457169,
- 0.016313912346959114,
- -0.044400230050086975,
- 0.005119466222822666,
- -0.07377797365188599,
- 0.08035550266504288,
- -0.05055970326066017,
- -0.013524584472179413,
- -0.0045402473770082,
- -0.033123426139354706,
- 0.002864155452698469,
- -0.02984781190752983,
- -0.028806231915950775,
- -0.0789407268166542,
- 0.026721175760030746,
- -0.04622522369027138,
- -0.035506077110767365,
- -0.016702106222510338,
- 0.005505429580807686,
- 0.053417105227708817,
- -0.020720239728689194,
- -0.02453301101922989,
- 0.06868606805801392,
- 0.022494876757264137,
- 0.08114907890558243,
- 0.008059128187596798,
- -0.0034601958468556404,
- 0.07350845634937286,
- 0.027117818593978882,
- -0.08166804164648056,
- -0.0077949692495167255,
- -0.08730949461460114,
- -0.024824131280183792,
- -0.04690000042319298,
- 0.00928252562880516,
- -0.013591131195425987,
- 0.004543900489807129,
- 0.03888045996427536,
- 0.02083003707230091,
- 0.008247647434473038,
- -0.007993839681148529,
- -0.13372905552387238,
- -0.07044894993305206,
- 0.12126650661230087,
- 0.10898474603891373,
- -0.04484796151518822,
- 3.3767915610713215e-33,
- 0.009243612177670002,
- -0.05453025922179222,
- -0.0026063728146255016,
- 0.025481175631284714,
- 0.03935421258211136,
- 0.009284919127821922,
- 0.11380370706319809,
- 0.01557846087962389,
- -0.000042283296352252364,
- 0.0209660567343235,
- 0.034590546041727066,
- -0.024793710559606552,
- 0.08039388805627823,
- 0.017462363466620445,
- -0.024508781731128693,
- -0.04736972972750664,
- 0.07742202281951904,
- -0.0012033031089231372,
- 0.008753263391554356,
- 0.03334315866231918,
- -0.004939879756420851,
- -0.032538387924432755,
- -0.038520365953445435,
- 0.014765328727662563,
- 0.014241082593798637,
- 0.08642522245645523,
- -0.014852103777229786,
- -0.0001363349729217589,
- -0.10607033967971802,
- -0.016274385154247284,
- 0.007871073670685291,
- -0.05051391199231148,
- -0.06150227412581444,
- 0.020356539636850357,
- -0.030316747725009918,
- 0.041326865553855896,
- -0.006260722875595093,
- 0.032046813517808914,
- -0.04836886376142502,
- -0.03163161501288414,
- -0.03920518234372139,
- -0.027544444426894188,
- -0.07943861931562424,
- 0.14436936378479004,
- -0.014446331188082695,
- -0.001657836721278727,
- -0.0395185649394989,
- 0.07977042347192764,
- 0.018021507188677788,
- 0.04735054448246956,
- -0.055035300552845,
- 0.013605745509266853,
- 0.04244386404752731,
- -0.082160584628582,
- -0.0810876339673996,
- 0.02474871091544628,
- 0.010765783488750458,
- 0.032053329050540924,
- -0.02008380927145481,
- 0.05218684300780296,
- 0.07804688066244125,
- 0.032006897032260895,
- -0.010345806367695332,
- 0.11563420295715332,
- 0.019704017788171768,
- -0.007175049278885126,
- -0.061771515756845474,
- 0.006111424416303635,
- -0.029363656416535378,
- 0.056240253150463104,
- 0.03677397593855858,
- 0.016060614958405495,
- -0.14182646572589874,
- 0.09004734456539154,
- 0.034694064408540726,
- 0.027494560927152634,
- 0.0023002480156719685,
- 0.006600239314138889,
- 0.0038612624630331993,
- 0.1251976490020752,
- -0.030082084238529205,
- 0.00858698133379221,
- -0.05313655361533165,
- 0.04826884716749191,
- -0.00005781873915111646,
- 0.03281613811850548,
- 0.07463546097278595,
- -0.0024745704140514135,
- 0.06708946824073792,
- 0.01102734636515379,
- -0.025896012783050537,
- -0.06199279800057411,
- -0.005523424129933119,
- -0.007735189516097307,
- 0.002570807933807373,
- -1.0804471095582358e-8,
- -0.019154204055666924,
- 0.036435168236494064,
- -0.026123156771063805,
- -0.012864847667515278,
- -0.03992554917931557,
- 0.022177036851644516,
- -0.016578853130340576,
- -0.10848281532526016,
- -0.032123878598213196,
- 0.033223140984773636,
- -0.010933613404631615,
- 0.03508734330534935,
- 0.005940276198089123,
- -0.01028691790997982,
- 0.05275587737560272,
- -0.018326332792639732,
- 0.0056381854228675365,
- 0.01721843145787716,
- -0.08189155161380768,
- 0.01933840475976467,
- -0.018618479371070862,
- -0.01186672504991293,
- -0.017333190888166428,
- -0.016879314556717873,
- -0.08381009846925735,
- 0.02029009349644184,
- 0.06839409470558167,
- 0.024811502546072006,
- 0.015160396695137024,
- 0.07339010387659073,
- -0.008631312288343906,
- -0.03103732503950596,
- -0.06842564046382904,
- -0.0069148484617471695,
- -0.036638934165239334,
- 0.06190541759133339,
- -0.055335137993097305,
- 0.02013462595641613,
- 0.07512406259775162,
- -0.007710310164839029,
- -0.03152277693152428,
- 0.0781596228480339,
- 0.015984082594513893,
- -0.01013338752090931,
- -0.03492090478539467,
- -0.003280363278463483,
- -0.07454629987478256,
- -0.024071738123893738,
- 0.029601404443383217,
- -0.05463658273220062,
- -0.01320930290967226,
- 0.01436068955808878,
- -0.08182574063539505,
- -0.005837800446897745,
- 0.006417809519916773,
- -0.013184025883674622,
- -0.006185607519000769,
- 0.01205991581082344,
- 0.010504600591957569,
- 0.04053744301199913,
- 0.07827995717525482,
- -0.08035910874605179,
- 0.06392866373062134,
- -0.011759092099964619
- ]
- },
- {
- "keyword": "government",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.061605725437402725,
- 0.05161856487393379,
- 0.00993568729609251,
- 0.022622225806117058,
- -0.005400792229920626,
- 0.013413206674158573,
- 0.11445488780736923,
- -0.012766888365149498,
- -0.0028354967944324017,
- 0.04044707864522934,
- -0.0030136655550450087,
- -0.04152662679553032,
- 0.010526323691010475,
- -0.05250067636370659,
- -0.007599710486829281,
- -0.03197946399450302,
- -0.03625825047492981,
- -0.02329862117767334,
- -0.10670267790555954,
- -0.0036077345721423626,
- 0.0021650653798133135,
- 0.0456463061273098,
- -0.0565437376499176,
- 0.04069942981004715,
- -0.03896075859665871,
- 0.0787556990981102,
- -0.0954657718539238,
- -0.031780876219272614,
- 0.01489318534731865,
- -0.10964307934045792,
- 0.011362721212208271,
- -0.00977866817265749,
- 0.046124011278152466,
- -0.026024363934993744,
- -0.021349679678678513,
- 0.00843456108123064,
- 0.08071895688772202,
- -0.05711960420012474,
- 0.022113533690571785,
- -0.045263227075338364,
- 0.02763392962515354,
- -0.05814361944794655,
- 0.0004328574286773801,
- -0.0340680256485939,
- -0.0010480135679244995,
- 0.009853057563304901,
- 0.0720490962266922,
- 0.015190648846328259,
- 0.0018485310720279813,
- -0.048903681337833405,
- 0.05182277783751488,
- 0.004743040073662996,
- -0.014403795823454857,
- 0.02392597496509552,
- 0.028735129162669182,
- -0.08895283192396164,
- -0.009251169860363007,
- -0.007902245037257671,
- -0.01809494011104107,
- -0.0952979177236557,
- 0.0054084560833871365,
- -0.017864491790533066,
- -0.046065524220466614,
- 0.00012098964361939579,
- 0.0955895483493805,
- 0.01780906319618225,
- -0.02903035283088684,
- 0.0015690249856561422,
- -0.02446870319545269,
- -0.13088060915470123,
- 0.018045229837298393,
- -0.06895983219146729,
- 0.02072732523083687,
- 0.0353010892868042,
- 0.01927155628800392,
- -0.12524336576461792,
- -0.0022820555604994297,
- 0.052594397217035294,
- 0.11253612488508224,
- -0.04658447206020355,
- 0.11781392246484756,
- 0.015250680036842823,
- -0.03751802071928978,
- 0.10220121592283249,
- 0.007229669950902462,
- -0.06695633381605148,
- -0.028501728549599648,
- 0.007529066409915686,
- -0.01937328465282917,
- 0.008829452097415924,
- -0.05309772118926048,
- -0.0370003804564476,
- 0.11212389916181564,
- 0.039449259638786316,
- -0.0830775797367096,
- 0.06863494217395782,
- 0.04537862166762352,
- -0.029047679156064987,
- -0.017241038382053375,
- 0.2931111454963684,
- -0.04228796809911728,
- 0.006567708216607571,
- -0.002186394529417157,
- 0.02204822562634945,
- 0.027427230030298233,
- -0.0075581129640340805,
- -0.05881735682487488,
- 0.027448365464806557,
- 0.025963906198740005,
- -0.013216923922300339,
- -0.04798542335629463,
- 0.010397077538073063,
- -0.018087249249219894,
- -0.0009467641357332468,
- 0.02633156068623066,
- -0.04071459546685219,
- 0.0025037352461367846,
- 0.03699314221739769,
- 0.009407063014805317,
- -0.03752671927213669,
- -0.02213348262012005,
- -0.010410767048597336,
- -0.027723200619220734,
- -0.010722300969064236,
- -0.03263980150222778,
- 0.02765495516359806,
- -0.0023301164619624615,
- -5.169647096079828e-33,
- -0.02725103497505188,
- -0.03880424425005913,
- 0.06117289140820503,
- 0.022571291774511337,
- -0.06087947636842728,
- 0.01165356021374464,
- -0.016375863924622536,
- -0.002284199697896838,
- -0.027159081771969795,
- 0.08991193026304245,
- 0.015363350510597229,
- 0.008576697669923306,
- 0.010074895806610584,
- 0.032920658588409424,
- 0.13086353242397308,
- 0.030042218044400215,
- -0.061417046934366226,
- -0.000363658182322979,
- -0.01964612491428852,
- 0.04688878729939461,
- -0.022191278636455536,
- 0.08873195946216583,
- 0.020156336948275566,
- -0.02171182446181774,
- 0.06359238177537918,
- -0.027330325916409492,
- -0.004920313600450754,
- -0.03277479484677315,
- 0.06000940129160881,
- 0.03175800293684006,
- 0.0707586258649826,
- 0.09021544456481934,
- 0.01403363049030304,
- -0.03649606928229332,
- 0.0006897111888974905,
- -0.04853605851531029,
- 0.020191911607980728,
- -0.07944948971271515,
- 0.007461814675480127,
- -0.06966312229633331,
- -0.03906106576323509,
- -0.017726222053170204,
- 0.03675253316760063,
- 0.04785805195569992,
- 0.03733552619814873,
- 0.013117821887135506,
- 0.03774256631731987,
- 0.018501657992601395,
- -0.006932263728231192,
- 0.047260135412216187,
- 0.0032237342093139887,
- 0.030892109498381615,
- -0.0574483685195446,
- -0.04155085235834122,
- 0.03570503741502762,
- -0.0502195730805397,
- 0.011811203323304653,
- 0.03254815936088562,
- -0.012245872057974339,
- -0.01034634280949831,
- 0.05332029238343239,
- 0.011642808094620705,
- -0.01135472021996975,
- 0.0757964476943016,
- 0.04541166499257088,
- 0.0069384281523525715,
- -0.012845693156123161,
- -0.023117180913686752,
- 0.05363793671131134,
- -0.028440499678254128,
- -0.05915568023920059,
- 0.013590804301202297,
- 0.028894944116473198,
- 0.06501781940460205,
- 0.04669192433357239,
- 0.020103346556425095,
- 0.03768220916390419,
- 0.02594362385571003,
- -0.12454286217689514,
- 0.00039951386861503124,
- -0.05587399750947952,
- -0.03112170659005642,
- 0.052069321274757385,
- 0.0071135456673800945,
- 0.0944174975156784,
- 0.06820160150527954,
- -0.020257987082004547,
- -0.04792933911085129,
- 0.09245259314775467,
- 0.019049327820539474,
- -0.14550301432609558,
- -0.04587937146425247,
- 0.029263373464345932,
- 0.07209980487823486,
- -0.007121101021766663,
- 3.0763447558927452e-33,
- 0.0031193126924335957,
- -0.058426160365343094,
- -0.054545946419239044,
- 0.007815728895366192,
- 0.028329508379101753,
- 0.02705301158130169,
- -0.027888787910342216,
- -0.10718067735433578,
- 0.059530146420001984,
- 0.04404333233833313,
- -0.04918038472533226,
- -0.07480274885892868,
- 0.09663713723421097,
- 0.06680631637573242,
- 0.07868378609418869,
- -0.033845629543066025,
- 0.04262702539563179,
- -0.07070635259151459,
- -0.03254878520965576,
- 0.012723352760076523,
- -0.057986967265605927,
- -0.05553415045142174,
- -0.0719442069530487,
- 0.008511652238667011,
- -0.026147400960326195,
- -0.002260409062728286,
- -0.0998823270201683,
- -0.05028202757239342,
- 0.09238751232624054,
- -0.01571747288107872,
- -0.021506428718566895,
- -0.030141225084662437,
- -0.0737004354596138,
- 0.0405307337641716,
- -0.09005151689052582,
- 0.02402636967599392,
- 0.020042838528752327,
- -0.06494245678186417,
- -0.019559361040592194,
- 0.008045491762459278,
- 0.010252519510686398,
- -0.06833682954311371,
- 0.021900100633502007,
- 0.1202082633972168,
- -0.12621372938156128,
- -0.00895879976451397,
- -0.08233791589736938,
- 0.07327599078416824,
- -0.06039116159081459,
- -0.050376974046230316,
- -0.09227277338504791,
- -0.029124103486537933,
- -0.03659926354885101,
- -0.05582227557897568,
- -0.020977376028895378,
- -0.01466814149171114,
- -0.010779970325529575,
- 0.055375710129737854,
- -0.017421454191207886,
- 0.0164262093603611,
- -0.01544654369354248,
- 0.019663088023662567,
- -0.03100675530731678,
- 0.06166509911417961,
- -0.07234634459018707,
- 0.0589846670627594,
- -0.006657185964286327,
- -0.03188025951385498,
- 0.09071094542741776,
- -0.009301720187067986,
- 0.09808649122714996,
- -0.00633348198607564,
- -0.1400049775838852,
- 0.07907531410455704,
- -0.005141045898199081,
- 0.02882257290184498,
- -0.04040437564253807,
- 0.03344390541315079,
- 0.006262538488954306,
- -0.010000085458159447,
- 0.08276159316301346,
- -0.04067463055253029,
- -0.05453798547387123,
- -0.0233770702034235,
- -0.022179434075951576,
- 0.028764816001057625,
- 0.09638918936252594,
- -0.0473470576107502,
- 0.015660086646676064,
- -0.03201991692185402,
- -0.033946480602025986,
- -0.00713170412927866,
- 0.019998401403427124,
- 0.020111694931983948,
- 0.032358936965465546,
- -1.2383289060835523e-8,
- 0.04187732934951782,
- 0.0245098527520895,
- -0.01698625087738037,
- -0.024599026888608932,
- -0.007478698156774044,
- -0.012345763854682446,
- 0.040236327797174454,
- -0.0021558040753006935,
- -0.05581928417086601,
- -0.0026138457469642162,
- 0.03847658261656761,
- 0.03491077199578285,
- 0.018877943977713585,
- -0.033099040389060974,
- -0.006458256393671036,
- 0.013256828300654888,
- -0.025715267285704613,
- 0.05482136830687523,
- -0.006197662558406591,
- 0.008320929482579231,
- -0.016106517985463142,
- -0.0079072630032897,
- -0.00606117956340313,
- -0.01518196426331997,
- 0.03208933770656586,
- 0.008116588927805424,
- 0.07672596722841263,
- 0.08921127021312714,
- 0.018010150641202927,
- 0.12321677058935165,
- 0.036363374441862106,
- 0.015918202698230743,
- -0.03143446892499924,
- 0.021134808659553528,
- -0.032950736582279205,
- -0.017345761880278587,
- -0.03174030780792236,
- -0.02897573448717594,
- 0.0915931686758995,
- -0.08785812556743622,
- 0.0012179710902273655,
- 0.1029340848326683,
- 0.04460050165653229,
- -0.025737658143043518,
- 0.023092839866876602,
- -0.0002530799829401076,
- 0.03307110443711281,
- -0.046084385365247726,
- 0.05324486270546913,
- -0.095649853348732,
- -0.03602852672338486,
- -0.0061356620863080025,
- 0.018150951713323593,
- 0.07275748252868652,
- 0.009602660313248634,
- -0.041091155260801315,
- -0.005213783122599125,
- 0.04562597721815109,
- -0.04345446079969406,
- 0.040327038615942,
- 0.06993430852890015,
- -0.012094331905245781,
- 0.08109936118125916,
- 0.015340779908001423
- ]
- },
- {
- "keyword": "ministry",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.017748834565281868,
- 0.06625940650701523,
- -0.02659601904451847,
- -0.003113741520792246,
- -0.049972519278526306,
- -0.04101274535059929,
- 0.08785003423690796,
- -0.04338882118463516,
- 0.01872725412249565,
- 0.041034188121557236,
- -0.022515423595905304,
- -0.05038177967071533,
- 0.07596085965633392,
- 0.005614000838249922,
- 0.02351948246359825,
- 0.03260767459869385,
- -0.02982138656079769,
- 0.01832050085067749,
- -0.05597861111164093,
- -0.055709876120090485,
- -0.048044513911008835,
- 0.09376653283834457,
- -0.011580431833863258,
- -0.011487962678074837,
- 0.013727548532187939,
- -0.0017388249980285764,
- -0.1020992323756218,
- -0.03288610652089119,
- 0.03488757088780403,
- -0.0926070287823677,
- 0.005133728962391615,
- -0.0037471570540219545,
- 0.031041482463479042,
- -0.0023994985967874527,
- 0.022333690896630287,
- 0.21061652898788452,
- 0.09706970304250717,
- 0.03255178779363632,
- 0.014513998292386532,
- 0.04623699560761452,
- 0.009723406285047531,
- 0.010904131457209587,
- -0.008891911245882511,
- -0.07247300446033478,
- 0.02809535153210163,
- -0.004278704058378935,
- 0.023645753040909767,
- -0.0005639591254293919,
- -0.01391660701483488,
- -0.05445774272084236,
- -0.03521211817860603,
- -0.038128163665533066,
- -0.004294456914067268,
- 0.03824879601597786,
- -0.006152073387056589,
- 0.039747342467308044,
- 0.03321896120905876,
- 0.03447285294532776,
- -0.0007187746814452112,
- -0.02298150397837162,
- -0.10840164870023727,
- 0.03172040730714798,
- -0.07008397579193115,
- 0.050501078367233276,
- 0.025914665311574936,
- -0.020969383418560028,
- -0.014018182642757893,
- 0.06492652744054794,
- 0.01812194474041462,
- -0.07533790916204453,
- 0.012388874776661396,
- -0.06710974872112274,
- 0.028148746117949486,
- -0.04037190601229668,
- -0.04674900323152542,
- -0.10920514911413193,
- 0.054456643760204315,
- 0.003081688890233636,
- 0.01315479539334774,
- -0.04655344784259796,
- 0.01684190332889557,
- -0.03897790238261223,
- 0.04103192314505577,
- 0.057535216212272644,
- -0.030271658673882484,
- -0.043441466987133026,
- -0.009295415133237839,
- 0.017909016460180283,
- 0.052587736397981644,
- 0.01691029779613018,
- -0.008404339663684368,
- 0.030716167762875557,
- 0.0694556012749672,
- 0.030997660011053085,
- -0.032322682440280914,
- 0.040949657559394836,
- 0.018288785591721535,
- -0.05417592450976372,
- -0.05442097410559654,
- 0.2625839114189148,
- -0.013732267543673515,
- -0.016212385147809982,
- 0.0004297384584788233,
- -0.000035865774407284334,
- 0.06475464999675751,
- 0.027135776355862617,
- -0.05824458599090576,
- 0.03809266909956932,
- 0.03861178457736969,
- -0.02860906533896923,
- 0.007950819097459316,
- 0.04426733776926994,
- -0.07179615646600723,
- -0.027009814977645874,
- 0.07255256921052933,
- 0.0001743349857861176,
- 0.0432601124048233,
- 0.052876606583595276,
- -0.03813090920448303,
- -0.011417552828788757,
- 0.011757157742977142,
- 0.015244599431753159,
- -0.014300070703029633,
- 0.0017708163941279054,
- -0.029651574790477753,
- 0.0246126689016819,
- 0.023059584200382233,
- -4.5899781382527256e-33,
- 0.006344621069729328,
- -0.03280363231897354,
- 0.045786160975694656,
- 0.0043855095282197,
- 0.06862544268369675,
- 0.08874572813510895,
- -0.03450833261013031,
- 0.00023178824631031603,
- -0.02432062290608883,
- -0.09142035245895386,
- 0.04959740489721298,
- 0.020890161395072937,
- -0.02424594759941101,
- 0.000512309605255723,
- 0.014473473653197289,
- -0.05723641440272331,
- -0.009100967086851597,
- 0.028608543798327446,
- 0.06667204201221466,
- -0.04612770676612854,
- -0.048431772738695145,
- 0.05154423043131828,
- -0.0558624267578125,
- 0.03607792407274246,
- 0.093051478266716,
- -0.07081347703933716,
- 0.12979988753795624,
- -0.03468050807714462,
- 0.09624020010232925,
- 0.033711958676576614,
- 0.010615594685077667,
- -0.013186367228627205,
- 0.02842487394809723,
- -0.031000887975096703,
- -0.010138395242393017,
- 0.05035258084535599,
- 0.0027236435562372208,
- -0.07504641264677048,
- 0.03096376359462738,
- -0.05645754560828209,
- -0.06903290748596191,
- 0.005395296961069107,
- 0.13362833857536316,
- 0.004202765878289938,
- -0.04925798997282982,
- 0.05500752106308937,
- 0.06886770576238632,
- 0.04819164052605629,
- 0.01890835538506508,
- 0.10462845861911774,
- 0.009082724340260029,
- -0.033897366374731064,
- 0.03855113312602043,
- -0.0013314428506419063,
- -0.010449377819895744,
- 0.005984635557979345,
- -0.0005856391508132219,
- 0.06518998742103577,
- 0.05285261198878288,
- -0.05405494198203087,
- 0.03818655386567116,
- -0.04655967280268669,
- -0.04136544466018677,
- 0.07296176999807358,
- 0.025675084441900253,
- -0.07281976193189621,
- -0.0008971244678832591,
- -0.00499684875831008,
- 0.0973799079656601,
- 0.010101673193275928,
- -0.12213005125522614,
- 0.05491642653942108,
- 0.02475091814994812,
- 0.03264820575714111,
- -0.009451834484934807,
- -0.00024381816911045462,
- -0.053235042840242386,
- -0.049128178507089615,
- -0.048718854784965515,
- 0.046948157250881195,
- -0.04145178571343422,
- -0.013984671793878078,
- -0.041531819850206375,
- 0.05846567079424858,
- 0.09485911577939987,
- -0.02718057669699192,
- 0.04498864710330963,
- 0.007310749031603336,
- 0.041323721408843994,
- -0.02493622712790966,
- -0.08189671486616135,
- -0.00017804114031605422,
- 0.06662152707576752,
- 0.06171035021543503,
- -0.06441661715507507,
- 3.787001253283883e-33,
- 0.03790248930454254,
- -0.05108695477247238,
- -0.011929957196116447,
- 0.14995425939559937,
- 0.01823069527745247,
- -0.026736093685030937,
- 0.0047820755280554295,
- 0.0038777317386120558,
- -0.0023571071214973927,
- 0.03301767632365227,
- -0.023031078279018402,
- 0.008179494179785252,
- 0.02327384613454342,
- 0.03845783323049545,
- -0.04652022197842598,
- 0.004736709408462048,
- -0.03498965874314308,
- 0.023148834705352783,
- 0.01564365066587925,
- 0.020148230716586113,
- -0.014593220315873623,
- -0.03270582854747772,
- -0.030210141092538834,
- -0.00003647892299341038,
- -0.06814764440059662,
- 0.02699626423418522,
- -0.051132623106241226,
- -0.02169826254248619,
- -0.03952919319272041,
- -0.016831517219543457,
- -0.006088509690016508,
- 0.01320954505354166,
- -0.1541980654001236,
- -0.0084284832701087,
- -0.07130546867847443,
- 0.08086414635181427,
- 0.03453110158443451,
- 0.001438554609194398,
- -0.03286921977996826,
- 0.025023868307471275,
- 0.05413753166794777,
- -0.0037367860786616802,
- -0.011724545620381832,
- 0.06675776094198227,
- -0.06626962870359421,
- 0.016346387565135956,
- 0.0015986483776941895,
- 0.08467938750982285,
- -0.02449103072285652,
- -0.023839805275201797,
- -0.1781747043132782,
- -0.032167863100767136,
- -0.03242911770939827,
- -0.009780739434063435,
- 0.01989119127392769,
- -0.07335496693849564,
- -0.046262066811323166,
- 0.03815818205475807,
- -0.060862310230731964,
- 0.01184767484664917,
- 0.07473259419202805,
- -0.0027705661486834288,
- 0.005794661119580269,
- 0.06546012312173843,
- -0.011827915906906128,
- 0.0007701487047597766,
- 0.015629926696419716,
- 0.0742635503411293,
- 0.0054962728172540665,
- 0.025272371247410774,
- 0.05555518716573715,
- -0.0286276713013649,
- -0.04318421706557274,
- -0.015946418046951294,
- -0.017580123618245125,
- 0.025071531534194946,
- -0.029453178867697716,
- -0.07696348428726196,
- 0.00029562809504568577,
- 0.009197422303259373,
- 0.08599967509508133,
- -0.05893337354063988,
- -0.03150990977883339,
- 0.002981760771945119,
- -0.06283844262361526,
- -0.08186334371566772,
- 0.17189711332321167,
- 0.0531211793422699,
- 0.0034208183642476797,
- 0.006160405930131674,
- 0.006883288733661175,
- -0.030538097023963928,
- 0.018434548750519753,
- 0.02082633227109909,
- 0.05518550053238869,
- -1.0711350917347318e-8,
- -0.02993234246969223,
- 0.026776008307933807,
- -0.030688216909766197,
- -0.04158882051706314,
- 0.03609832376241684,
- -0.06825626641511917,
- -0.00549106951802969,
- -0.05560970678925514,
- -0.013849742710590363,
- 0.02683602087199688,
- 0.05681449547410011,
- -0.03950295224785805,
- -0.09307645261287689,
- 0.0027415624354034662,
- 0.022459227591753006,
- -0.06375348567962646,
- -0.06696191430091858,
- -0.003194485791027546,
- -0.0024338134098798037,
- -0.0171816423535347,
- 0.003419804386794567,
- 0.012715411372482777,
- 0.04043145477771759,
- 0.022509131580591202,
- -0.019482815638184547,
- -0.014776933006942272,
- -0.0235587228089571,
- 0.05991293862462044,
- 0.048995357006788254,
- 0.054466940462589264,
- -0.001008400460705161,
- 0.05058296397328377,
- -0.07178635150194168,
- -0.014981604181230068,
- -0.1272568553686142,
- -0.009986917488276958,
- -0.12412818521261215,
- -0.02851114608347416,
- 0.07384408265352249,
- 0.03424292057752609,
- 0.01168731413781643,
- -0.09245029836893082,
- 0.06446728855371475,
- -0.012732118368148804,
- -0.024846037849783897,
- 0.01638762466609478,
- 0.11588730663061142,
- 0.052252791821956635,
- 0.03203754127025604,
- -0.08367236703634262,
- -0.00709021370857954,
- -0.017535008490085602,
- 0.07183806598186493,
- 0.034980420023202896,
- 0.006586933974176645,
- -0.014304682612419128,
- -0.04303949698805809,
- 0.016231393441557884,
- -0.03640048950910568,
- -0.024950828403234482,
- 0.007737889885902405,
- -0.04095909744501114,
- -0.018375694751739502,
- -0.07425390928983688
- ]
- },
- {
- "keyword": "administration",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0204511359333992,
- -0.029890811070799828,
- -0.024464791640639305,
- 0.042420390993356705,
- -0.05397774279117584,
- -0.03136797621846199,
- 0.054693739861249924,
- -0.03514932096004486,
- 0.011238356120884418,
- 0.07113118469715118,
- 0.029843943193554878,
- -0.05372646078467369,
- 0.019602442160248756,
- -0.008600350469350815,
- 0.030561253428459167,
- -0.02414816990494728,
- -0.015111044980585575,
- 0.004270770587027073,
- -0.06277213245630264,
- -0.0935676246881485,
- -0.005628424230962992,
- 0.03830616548657417,
- -0.02401578053832054,
- -0.0041841561906039715,
- -0.060826078057289124,
- 0.037183407694101334,
- -0.09800658375024796,
- 0.0178244486451149,
- 0.008085101842880249,
- -0.06804411113262177,
- 0.008520470932126045,
- -0.0678081065416336,
- 0.07335896044969559,
- -0.014120258390903473,
- -0.007737744599580765,
- 0.05447854474186897,
- -0.005643054377287626,
- -0.021511679515242577,
- 0.09474052488803864,
- -0.061943646520376205,
- -0.016412580385804176,
- -0.020535102114081383,
- 0.012142094783484936,
- -0.07909860461950302,
- -0.00889725610613823,
- 0.02977491170167923,
- 0.042168695479631424,
- 0.0016905681695789099,
- 0.02493068389594555,
- -0.01211615838110447,
- 0.07119856774806976,
- -0.00023990908812265843,
- -0.00501381466165185,
- 0.09344176948070526,
- 0.019489163532853127,
- 0.04757210612297058,
- 0.019292673096060753,
- -0.012584524229168892,
- -0.03679414093494415,
- -0.05780584737658501,
- -0.06821855157613754,
- -0.014104356057941914,
- -0.04732104763388634,
- 0.052549030631780624,
- 0.018828436732292175,
- -0.02783995307981968,
- -0.03830504044890404,
- -0.01396788377314806,
- -0.04043921083211899,
- -0.09965331852436066,
- 0.05582166090607643,
- -0.09037332236766815,
- 0.02696579322218895,
- 0.03892553597688675,
- 0.038299184292554855,
- -0.10853023082017899,
- -0.003924999851733446,
- 0.0502789132297039,
- 0.07209926843643188,
- -0.07962902635335922,
- 0.131781205534935,
- 0.017549289390444756,
- -0.06405481696128845,
- 0.06594235450029373,
- -0.0621466338634491,
- 0.0005033944034948945,
- -0.016523515805602074,
- -0.05873546376824379,
- 0.011839575134217739,
- 0.042811375111341476,
- -0.005545781925320625,
- -0.02057788521051407,
- 0.12286411970853806,
- -0.019074711948633194,
- -0.07032591849565506,
- 0.00029048961005173624,
- 0.028871426358819008,
- -0.00976309459656477,
- -0.09433019906282425,
- 0.21010181307792664,
- 0.0020938394591212273,
- -0.018596895039081573,
- -0.012562872841954231,
- -0.038689032196998596,
- -0.04372778907418251,
- -0.008893370628356934,
- 0.020376184955239296,
- 0.026055166497826576,
- -0.005796759855002165,
- -0.0026422515511512756,
- -0.05877699702978134,
- 0.04629434645175934,
- -0.04960629343986511,
- -0.008443807251751423,
- 0.01288282684981823,
- -0.044813089072704315,
- 0.004709742497652769,
- 0.01558301504701376,
- -0.006964545231312513,
- 0.0017640768783167005,
- 0.012175074778497219,
- 0.031641874462366104,
- 0.006982655264437199,
- 0.01878396049141884,
- -0.02819593995809555,
- 0.011840341612696648,
- 0.02222057431936264,
- -5.198659398684076e-33,
- 0.027604568749666214,
- 0.0028776447288691998,
- 0.008125930093228817,
- 0.0383249968290329,
- 0.03107604943215847,
- 0.051303476095199585,
- -0.06107594817876816,
- 0.014071966521441936,
- 0.02166913077235222,
- 0.03161447122693062,
- 0.018125226721167564,
- 0.0808328241109848,
- -0.0623982734978199,
- -0.04643995314836502,
- 0.11832188814878464,
- 0.011158655397593975,
- -0.049278076738119125,
- 0.06793833523988724,
- 0.03175046294927597,
- -0.009952157735824585,
- -0.0712180808186531,
- 0.10523051023483276,
- -0.014805908314883709,
- 0.004676902201026678,
- 0.04762944206595421,
- 0.02165353298187256,
- -0.017533697187900543,
- -0.029085982590913773,
- 0.05993099510669708,
- 0.02276785857975483,
- 0.003185274312272668,
- 0.03442849963903427,
- -0.03589605167508125,
- -0.03933725878596306,
- 0.02297680824995041,
- -0.012987524271011353,
- -0.031060215085744858,
- -0.0425650030374527,
- 0.02160423994064331,
- -0.06499692797660828,
- -0.05262669175863266,
- -0.005769173614680767,
- 0.06755033135414124,
- -0.003314385423436761,
- 0.009085927158594131,
- 0.0036551188677549362,
- 0.07280983030796051,
- 0.03511430323123932,
- 0.0546635165810585,
- 0.09321671724319458,
- 0.006308137439191341,
- -0.050096020102500916,
- 0.06726866215467453,
- 0.042291998863220215,
- 0.031969036906957626,
- -0.0385110042989254,
- 0.07016455382108688,
- -0.01781344786286354,
- 0.04527957737445831,
- 0.025173021480441093,
- 0.07726161181926727,
- 0.09203023463487625,
- -0.02674756571650505,
- 0.09534188359975815,
- -0.03274133801460266,
- -0.062143515795469284,
- -0.018258076161146164,
- -0.025483407080173492,
- 0.05358771234750748,
- -0.002032630844041705,
- -0.08112110197544098,
- 0.017802169546484947,
- 0.006511567160487175,
- 0.07713885605335236,
- -0.022551171481609344,
- -0.004013261292129755,
- 0.006336239166557789,
- 0.04009862244129181,
- -0.10176575183868408,
- -0.05691065266728401,
- -0.07902338355779648,
- -0.004655932541936636,
- 0.03236310929059982,
- 0.04836338013410568,
- 0.08189942687749863,
- 0.02868524380028248,
- -0.0016041082562878728,
- -0.0038580067921429873,
- 0.05152552202343941,
- 0.052719324827194214,
- -0.1560731679201126,
- -0.016633786261081696,
- 0.051532648503780365,
- 0.17790482938289642,
- -0.014265038073062897,
- 3.211215467576325e-33,
- -0.040852248668670654,
- -0.03774643689393997,
- -0.02515237219631672,
- -0.0021267663687467575,
- 0.0745430514216423,
- 0.02643338404595852,
- -0.005193304270505905,
- -0.03222455456852913,
- 0.03845048323273659,
- -0.05617253854870796,
- -0.04480734094977379,
- 0.043725334107875824,
- 0.022890683263540268,
- 0.08733057230710983,
- 0.03962269797921181,
- -0.020595109090209007,
- 0.05340536683797836,
- -0.060979947447776794,
- -0.030901437625288963,
- -0.025338994339108467,
- -0.04550529643893242,
- -0.012103881686925888,
- -0.034627996385097504,
- -0.0276154987514019,
- -0.04700617492198944,
- 0.022507397457957268,
- -0.006040248088538647,
- 0.0642545148730278,
- 0.02431914024055004,
- 0.046938952058553696,
- -0.004061239305883646,
- -0.039123017340898514,
- -0.04540013521909714,
- 0.07586921751499176,
- -0.09709449112415314,
- -0.0053934664465487,
- 0.06852453947067261,
- -0.0269455648958683,
- -0.048070378601551056,
- 0.01881539449095726,
- 0.03474777191877365,
- -0.03663721680641174,
- 0.01417475938796997,
- 0.07952380180358887,
- -0.0475032776594162,
- -0.0030813950579613447,
- -0.10167662054300308,
- -0.004127720836549997,
- -0.11557938158512115,
- 0.012969224713742733,
- -0.14085984230041504,
- -0.05420145019888878,
- -0.04170302301645279,
- -0.03436955064535141,
- -0.017563194036483765,
- 0.03231409192085266,
- 0.020454183220863342,
- 0.014984453096985817,
- 0.04003054276108742,
- 0.0008188654901459813,
- -0.02087864838540554,
- 0.07044544816017151,
- -0.018453165888786316,
- 0.07140547037124634,
- -0.07715519517660141,
- 0.05875310301780701,
- 0.0622282512485981,
- -0.016756966710090637,
- -0.03733783960342407,
- 0.023127906024456024,
- 0.12584684789180756,
- -0.059549324214458466,
- -0.13596999645233154,
- -0.016778089106082916,
- 0.022632189095020294,
- 0.01597985066473484,
- -0.07705339789390564,
- -0.03188656270503998,
- 0.0022148157004266977,
- -0.038174718618392944,
- -0.04959328845143318,
- -0.05072670429944992,
- -0.052557189017534256,
- 0.02095836214721203,
- -0.09098854660987854,
- 0.012815859168767929,
- 0.05566869303584099,
- -0.07337535917758942,
- -0.01006621215492487,
- -0.035523056983947754,
- -0.006545679178088903,
- -0.06241292133927345,
- 0.020398184657096863,
- -0.0020178998820483685,
- 0.027081476524472237,
- -1.1175340652869181e-8,
- -0.007639343850314617,
- -0.0025820175651460886,
- 0.03646869584918022,
- -0.051477737724781036,
- 0.0713559165596962,
- -0.04141348972916603,
- -0.04555201902985573,
- -0.040775470435619354,
- 0.04056410491466522,
- 0.006864089518785477,
- 0.051600757986307144,
- -0.018794620409607887,
- -0.033173177391290665,
- -0.006463347468525171,
- 0.033966854214668274,
- 0.017243411391973495,
- -0.10015714168548584,
- 0.10261207073926926,
- -0.026510702446103096,
- -0.01814686693251133,
- 0.043742306530475616,
- 0.0393819659948349,
- 0.002896146383136511,
- -0.022539129480719566,
- 0.024771766737103462,
- -0.016953757032752037,
- 0.03618204593658447,
- 0.0628872811794281,
- -0.040967512875795364,
- 0.17348124086856842,
- 0.03065177984535694,
- 0.05346783995628357,
- -0.05203544348478317,
- -0.02119900844991207,
- -0.03291298449039459,
- -0.023800959810614586,
- 0.0049318112432956696,
- -0.03706638142466545,
- 0.05701476335525513,
- -0.03614566847681999,
- -0.03589467704296112,
- 0.03109385073184967,
- 0.07976296544075012,
- -0.024935515597462654,
- 0.023555904626846313,
- 0.0398949459195137,
- 0.07020341604948044,
- 0.04792683199048042,
- 0.08710644394159317,
- -0.08336333185434341,
- -0.03773929551243782,
- 0.025859132409095764,
- -0.0004722773446701467,
- 0.04880690947175026,
- -0.01895241066813469,
- -0.08237715810537338,
- 0.03948893025517464,
- -0.024607520550489426,
- -0.06908223032951355,
- -0.009732447564601898,
- 0.10018301755189896,
- -0.04865799844264984,
- 0.05788622051477432,
- 0.04206286370754242
- ]
- },
- {
- "keyword": "authority",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03831476345658302,
- 0.0697772204875946,
- -0.006430026143789291,
- 0.013870421797037125,
- -0.03714557737112045,
- -0.03880401328206062,
- 0.0661998838186264,
- -0.06422556936740875,
- 0.013121940195560455,
- 0.02205994725227356,
- 0.03553318232297897,
- -0.00713310856372118,
- 0.01672135293483734,
- 0.001883499906398356,
- -0.04834328591823578,
- 0.042640507221221924,
- -0.005134989507496357,
- -0.0035272783134132624,
- -0.10832786560058594,
- -0.012083600275218487,
- -0.02129010297358036,
- 0.006854259874671698,
- 0.00434396555647254,
- 0.013223230838775635,
- -0.07617556303739548,
- 0.02731473557651043,
- -0.07468605041503906,
- -0.027815915644168854,
- 0.028566380962729454,
- -0.1402750164270401,
- -0.015755726024508476,
- -0.04909416288137436,
- 0.10404377430677414,
- -0.03300873562693596,
- -0.06712600588798523,
- 0.05824766680598259,
- 0.12748199701309204,
- -0.009928272105753422,
- 0.04173767939209938,
- 0.01327511202543974,
- 0.014381266199052334,
- -0.016567766666412354,
- 0.008062504231929779,
- -0.03565697371959686,
- 0.010716932825744152,
- 0.014527084305882454,
- 0.06409609317779541,
- 0.03510882705450058,
- -0.03353377431631088,
- -0.06889963150024414,
- -0.004985110834240913,
- -0.04027986526489258,
- -0.01732792519032955,
- 0.02519869990646839,
- -0.0033880057744681835,
- -0.037974897772073746,
- 0.04980865865945816,
- -0.021115295588970184,
- 0.05646274611353874,
- -0.035489872097969055,
- -0.05001555383205414,
- 0.049115635454654694,
- -0.06040358170866966,
- 0.012090448290109634,
- 0.0583038404583931,
- -0.03716558218002319,
- 0.012431886978447437,
- 0.01891176402568817,
- -0.07036055624485016,
- -0.046486735343933105,
- 0.038301654160022736,
- -0.03160921484231949,
- 0.05308374762535095,
- 0.025310374796390533,
- 0.04341251403093338,
- -0.08528512716293335,
- -0.02293313667178154,
- -0.04183662310242653,
- 0.08982681483030319,
- -0.0463874414563179,
- 0.045523740351200104,
- 0.05967456102371216,
- -0.026886025443673134,
- 0.12327346950769424,
- 0.021164242178201675,
- -0.03813304379582405,
- 0.004040848463773727,
- -0.016506608575582504,
- 0.03664586320519447,
- 0.060616184026002884,
- 0.016548898071050644,
- 0.0006946368375793099,
- 0.12085188180208206,
- 0.01046339888125658,
- -0.015193323604762554,
- 0.015696432441473007,
- 0.020569469779729843,
- -0.10022423416376114,
- -0.03457411006093025,
- 0.21677561104297638,
- -0.02457367815077305,
- -0.022364148870110512,
- -0.11806919425725937,
- 0.004054994788020849,
- 0.015798265114426613,
- -0.023713670670986176,
- -0.03080487810075283,
- -0.001934992615133524,
- 0.020318804308772087,
- 0.043546419590711594,
- -0.04513358697295189,
- -0.016274286434054375,
- -0.10475407540798187,
- -0.012467849999666214,
- 0.06061515957117081,
- 0.058976512402296066,
- -0.03384622558951378,
- 0.06575104594230652,
- -0.011440303176641464,
- -0.13152503967285156,
- -0.004907635040581226,
- -0.014149040915071964,
- 0.03238556906580925,
- 0.01983722113072872,
- 0.04915634170174599,
- 0.009913017973303795,
- -0.024925919249653816,
- -5.3624755567307005e-33,
- 0.0033206825610250235,
- 0.009913623332977295,
- 0.007320757955312729,
- 0.02858719229698181,
- 0.028044655919075012,
- 0.005707416217774153,
- -0.005966666154563427,
- -0.017856473103165627,
- -0.08795072883367538,
- 0.06925219297409058,
- 0.018189668655395508,
- 0.07571762055158615,
- -0.002588219940662384,
- -0.10642828792333603,
- 0.0764710083603859,
- 0.043614331632852554,
- 0.016468683257699013,
- 0.01656820997595787,
- 0.053647611290216446,
- 0.04692443832755089,
- -0.04621817544102669,
- 0.08648891746997833,
- -0.033325593918561935,
- 0.00565094780176878,
- 0.028676370158791542,
- -0.0494222566485405,
- -0.06495220214128494,
- 0.0021196408197283745,
- 0.08183206617832184,
- 0.026293393224477768,
- 0.01500164158642292,
- -0.017796078696846962,
- 0.01755393110215664,
- -0.04428292438387871,
- 0.031645260751247406,
- 0.016255540773272514,
- -0.023777106776833534,
- -0.04828615114092827,
- 0.04210898280143738,
- -0.061116814613342285,
- -0.04476052150130272,
- -0.04269491136074066,
- -0.03255811706185341,
- 0.017165007069706917,
- -0.014908354729413986,
- 0.02685430273413658,
- -0.01930609531700611,
- -0.029520811513066292,
- -0.07817938923835754,
- 0.10273179411888123,
- -0.016593892127275467,
- -0.006527259014546871,
- 0.02252383343875408,
- -0.022046033293008804,
- 0.023701298981904984,
- -0.044564735144376755,
- 0.00372767960652709,
- 0.07937870919704437,
- -0.02132531628012657,
- -0.06132141873240471,
- 0.0543527826666832,
- 0.08822613209486008,
- -0.045322708785533905,
- 0.12111309170722961,
- 0.029436945915222168,
- -0.1126144677400589,
- -0.048038650304079056,
- -0.06600598245859146,
- 0.10667310655117035,
- -0.04924078658223152,
- -0.03282717242836952,
- 0.03365261107683182,
- -0.020179402083158493,
- 0.05024166405200958,
- -0.009518472477793694,
- -0.05700189620256424,
- -0.04838891327381134,
- 0.016598273068666458,
- -0.0029186729807406664,
- -0.030074885115027428,
- -0.10812519490718842,
- 0.010744096711277962,
- 0.06518588215112686,
- 0.051748957484960556,
- 0.05062658712267876,
- -0.026317523792386055,
- -0.009919633157551289,
- -0.004060796927660704,
- 0.08939798921346664,
- 0.011939704418182373,
- -0.08167664706707001,
- -0.029059838503599167,
- 0.05810002610087395,
- 0.053385376930236816,
- -0.05324108526110649,
- 4.401512231011342e-33,
- 0.06678468734025955,
- -0.08111772686243057,
- 0.021139666438102722,
- 0.08674223721027374,
- 0.03610961511731148,
- -0.011129464954137802,
- -0.0971868559718132,
- -0.06600485742092133,
- 0.015471632592380047,
- -0.03195419907569885,
- -0.0575893297791481,
- -0.049002595245838165,
- 0.018580377101898193,
- 0.04991742968559265,
- 0.15568691492080688,
- -0.07671403139829636,
- 0.010590540245175362,
- -0.06551160663366318,
- -0.04610396549105644,
- -0.01641509123146534,
- -0.03541520982980728,
- -0.04481611028313637,
- 0.01941739395260811,
- 0.04440004751086235,
- -0.04670610651373863,
- 0.022887524217367172,
- 0.016240203753113747,
- 0.02673397958278656,
- -0.01013779453933239,
- -0.00792553648352623,
- -0.025983141735196114,
- -0.05064595118165016,
- -0.017866089940071106,
- 0.04103434458374977,
- -0.06825582683086395,
- 0.02967599593102932,
- -0.0010849761310964823,
- 0.012683849781751633,
- -0.04630276560783386,
- 0.0339871421456337,
- -0.060858242213726044,
- 0.027262302115559578,
- 0.013376686722040176,
- 0.0312377717345953,
- -0.08122597634792328,
- -0.00975078996270895,
- 0.020042110234498978,
- 0.07174834609031677,
- -0.024758290499448776,
- -0.02201862819492817,
- -0.11237961798906326,
- -0.01849549636244774,
- 0.05292109027504921,
- 0.011231618002057076,
- 0.003750608302652836,
- 0.04071515426039696,
- 0.08115469664335251,
- 0.07898274064064026,
- 0.04251568019390106,
- 0.03598228469491005,
- 0.054144904017448425,
- 0.027811981737613678,
- -0.0662992000579834,
- 0.12760356068611145,
- -0.04398206248879433,
- 0.06706037372350693,
- -0.015921248123049736,
- 0.0026358701288700104,
- 0.04219834879040718,
- 0.013910972513258457,
- 0.0801098644733429,
- -0.04733182117342949,
- -0.08056604862213135,
- 0.02901492454111576,
- -0.012690945528447628,
- -0.006831574719399214,
- -0.033619873225688934,
- -0.00759632745757699,
- -0.0488133542239666,
- -0.0596686489880085,
- 0.0446193590760231,
- -0.045416392385959625,
- 0.005001397337764502,
- 0.022530866786837578,
- 0.014957726001739502,
- 0.061415817588567734,
- 0.09990224987268448,
- -0.04398767277598381,
- 0.04308445379137993,
- -0.009029528126120567,
- 0.057507436722517014,
- -0.06352128088474274,
- -0.06107999011874199,
- -0.021708635613322258,
- 0.005954631604254246,
- -1.163786400582012e-8,
- -0.048096541315317154,
- 0.014185911975800991,
- 0.03525536134839058,
- -0.017148276790976524,
- 0.0891754999756813,
- -0.01547321118414402,
- -0.008747214451432228,
- -0.07703132182359695,
- -0.011521845124661922,
- 0.03681252524256706,
- 0.04745618626475334,
- -0.03687126934528351,
- 0.02302115596830845,
- -0.05023711547255516,
- 0.09455621242523193,
- -0.024736719205975533,
- 0.03527246415615082,
- -0.0042571136727929115,
- -0.05080725997686386,
- 0.016271529719233513,
- -0.008056255988776684,
- -0.008322925306856632,
- -0.023442037403583527,
- -0.02811460755765438,
- -0.026028651744127274,
- -0.027056487277150154,
- -0.04556483030319214,
- 0.06207450106739998,
- 0.014826122671365738,
- 0.13814325630664825,
- 0.020535457879304886,
- 0.06387194991111755,
- -0.02568352408707142,
- -0.01298448070883751,
- -0.007121613249182701,
- -0.03603897616267204,
- -0.008140452206134796,
- -0.04856881499290466,
- 0.05231176316738129,
- -0.052478332072496414,
- -0.03649265691637993,
- 0.054834283888339996,
- 0.07571280002593994,
- -0.02671506255865097,
- -0.0297574270516634,
- 0.01574450172483921,
- 0.05198579654097557,
- 0.019367385655641556,
- 0.07092384994029999,
- -0.005410948768258095,
- -0.003954495303332806,
- -0.020781781524419785,
- 0.03509603068232536,
- 0.07874009758234024,
- 0.017864950001239777,
- 0.0106391916051507,
- 0.011815897189080715,
- 0.05472666025161743,
- -0.12003474682569504,
- 0.005285171791911125,
- 0.14095760881900787,
- 0.008795046247541904,
- 0.07556283473968506,
- -0.0304661076515913
- ]
- },
- {
- "keyword": "university",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.012948041781783104,
- 0.031701285392045975,
- 0.02385781519114971,
- 0.02305126003921032,
- 0.008894959464669228,
- -0.0479283444583416,
- 0.015438707545399666,
- -0.034542229026556015,
- 0.03570318594574928,
- 0.04005740210413933,
- 0.02684902213513851,
- -0.06994162499904633,
- -0.011190803721547127,
- -0.00825298298150301,
- -0.03177206590771675,
- -0.013361869379878044,
- -0.03253370523452759,
- -0.0669378936290741,
- -0.0018161213956773281,
- -0.10915439575910568,
- -0.03211898356676102,
- 0.03431187942624092,
- 0.008308375254273415,
- -0.012214618735015392,
- 0.034769587218761444,
- 0.034088678658008575,
- 0.017700430005788803,
- -0.04548025503754616,
- 0.00208952440880239,
- -0.10805398225784302,
- 0.012850459665060043,
- 0.026217645034193993,
- 0.020940186455845833,
- -0.02299470640718937,
- 0.02658846229314804,
- 0.0034363139420747757,
- 0.023193012923002243,
- -0.011538490653038025,
- 0.06939376890659332,
- 0.025082474574446678,
- -0.04361231252551079,
- 0.01319563202559948,
- 0.046862032264471054,
- 0.03347057104110718,
- 0.007039406802505255,
- 0.0018348718294873834,
- 0.04661158472299576,
- -0.05904039740562439,
- 0.03280438482761383,
- 0.03635252267122269,
- -0.013021772727370262,
- 0.005162662826478481,
- -0.03377361223101616,
- -0.031287770718336105,
- -0.028736701235175133,
- -0.015487314201891422,
- 0.017639897763729095,
- 0.012003252282738686,
- -0.06531728804111481,
- -0.029201840981841087,
- 0.033346984535455704,
- 0.016178322955965996,
- -0.05256044492125511,
- 0.040433935821056366,
- 0.07199680060148239,
- -0.03658951818943024,
- 0.004241571296006441,
- 0.09644711017608643,
- 0.012645338661968708,
- -0.025535056367516518,
- 0.08839137107133865,
- -0.05327415093779564,
- -0.028877709060907364,
- 0.03559455648064613,
- 0.1414780169725418,
- 0.04223955050110817,
- 0.0246861781924963,
- 0.05282314121723175,
- 0.08572620153427124,
- 0.015086404047906399,
- 0.07363282144069672,
- -0.041949979960918427,
- -0.07402200251817703,
- -0.0011886714491993189,
- 0.0018956687999889255,
- -0.04338277876377106,
- -0.0026047234423458576,
- -0.030262159183621407,
- 0.003991597332060337,
- -0.0033698466140776873,
- -0.03893766924738884,
- -0.073000468313694,
- 0.002547782612964511,
- 0.0493818074464798,
- -0.018457340076565742,
- -0.01589360646903515,
- 0.005517757032066584,
- -0.04832296818494797,
- 0.06531012803316116,
- 0.24769096076488495,
- -0.0932014063000679,
- 0.0680721253156662,
- 0.009783968329429626,
- 0.08120608329772949,
- 0.014798295684158802,
- -0.006686820182949305,
- 0.019170407205820084,
- 0.0676344633102417,
- 0.044213566929101944,
- 0.06037718430161476,
- 0.044126685708761215,
- 0.031751640141010284,
- -0.0674830973148346,
- 0.009311089292168617,
- 0.01174981240183115,
- 0.022640913724899292,
- 0.09173610806465149,
- -0.02251344546675682,
- 0.007525421679019928,
- 0.02328793704509735,
- -0.039475731551647186,
- 0.01612633280456066,
- -0.05649792402982712,
- -0.015721697360277176,
- -0.08374081552028656,
- -0.11845742166042328,
- -0.06901530176401138,
- -3.76190151015795e-33,
- 0.03833160176873207,
- 0.001292738481424749,
- 0.022339636459946632,
- -0.06722569465637207,
- -0.05195484682917595,
- -0.047459330409765244,
- -0.053755778819322586,
- 0.0659676045179367,
- -0.0693463608622551,
- 0.041213274002075195,
- -0.04521765187382698,
- 0.06496358662843704,
- 0.03431189805269241,
- 0.027462216094136238,
- 0.11010003089904785,
- -0.007221665699034929,
- 0.04012151435017586,
- 0.06900059431791306,
- 0.023592906072735786,
- 0.038698721677064896,
- -0.019817793741822243,
- 0.04215716943144798,
- 0.0031772516667842865,
- -0.02928519994020462,
- -0.03503405675292015,
- -0.045353177934885025,
- -0.06356067955493927,
- 0.024907860904932022,
- 0.09199316799640656,
- 0.011151444166898727,
- 0.08896592259407043,
- -0.0022773384116590023,
- -0.10767465084791183,
- -0.04723713546991348,
- 0.01738065853714943,
- -0.01480395719408989,
- -0.015902511775493622,
- -0.07575652748346329,
- 0.00048391305608674884,
- -0.0013246838934719563,
- 0.05263718590140343,
- 0.01685602217912674,
- 0.04706066474318504,
- 0.040111299604177475,
- 0.03323933109641075,
- 0.06809670478105545,
- -0.013434858061373234,
- 0.024490248411893845,
- 0.06100795790553093,
- -0.059068575501441956,
- -0.09281537681818008,
- -0.04428521916270256,
- -0.0661076009273529,
- -0.03468576818704605,
- 0.03415033966302872,
- -0.03695812076330185,
- 0.014864673838019371,
- 0.03099493309855461,
- -0.00366525212302804,
- -0.03585764765739441,
- -0.02296167053282261,
- 0.11784881353378296,
- -0.07306242734193802,
- -0.028272878378629684,
- -0.006552836857736111,
- -0.07105754315853119,
- -0.017944851890206337,
- -0.018333978950977325,
- 0.14294356107711792,
- -0.08810598403215408,
- -0.08508153259754181,
- -0.028185317292809486,
- 0.05265365168452263,
- -0.027699826285243034,
- 0.022252919152379036,
- 0.018004246056079865,
- -0.03180094435811043,
- 0.008865498006343842,
- -0.04246602952480316,
- 0.05360293760895729,
- 0.018459081649780273,
- -0.024205844849348068,
- -0.04495647922158241,
- 0.013650679029524326,
- 0.09497138112783432,
- 0.04429218918085098,
- -0.029126260429620743,
- -0.06438106298446655,
- 0.060801535844802856,
- 0.010973261669278145,
- -0.052503932267427444,
- -0.006375286262482405,
- 0.010658246465027332,
- 0.10272989422082901,
- 0.008265160024166107,
- 2.6447842291784126e-33,
- 0.09325327724218369,
- -0.05614085495471954,
- -0.005950938910245895,
- 0.08830001205205917,
- 0.06639259308576584,
- 0.03752100467681885,
- 0.03881495073437691,
- 0.033200714737176895,
- -0.08364862203598022,
- 0.026573382318019867,
- -0.006020850036293268,
- -0.08812254667282104,
- 0.04818784445524216,
- 0.03969981521368027,
- 0.03040214814245701,
- 0.024895885959267616,
- 0.09947927296161652,
- -0.04723389074206352,
- -0.1035277396440506,
- 0.028967199847102165,
- -0.051941584795713425,
- -0.01123225037008524,
- 0.027690593153238297,
- -0.058247629553079605,
- -0.042231157422065735,
- -0.015063440427184105,
- 0.07599122822284698,
- -0.007526517380028963,
- -0.061508022248744965,
- -0.030158057808876038,
- -0.016502071171998978,
- 0.03260687738656998,
- -0.10528142005205154,
- 0.045771241188049316,
- -0.032065119594335556,
- 0.0705733448266983,
- -0.0037533286958932877,
- 0.0410865880548954,
- -0.05407603830099106,
- 0.019763298332691193,
- 0.06301084160804749,
- -0.025140168145298958,
- -0.06937478482723236,
- 0.12015236169099808,
- 0.08688472956418991,
- -0.008975155651569366,
- -0.05438993498682976,
- 0.07641596347093582,
- 0.04120127111673355,
- -0.02459830977022648,
- -0.07539264857769012,
- -0.036964550614356995,
- 0.07433076202869415,
- -0.06550581008195877,
- 0.10875053703784943,
- -0.016154449433088303,
- -0.04199901223182678,
- 0.03349563851952553,
- -0.029395263642072678,
- 0.030086105689406395,
- 0.04358123615384102,
- -0.010681789368391037,
- -0.044696442782878876,
- 0.039054933935403824,
- -0.12588442862033844,
- 0.03264838829636574,
- 0.010265188291668892,
- 0.05564466491341591,
- -0.0715022161602974,
- -0.0037826809566468,
- 0.041084036231040955,
- 0.02804381214082241,
- -0.012643637135624886,
- 0.02723151259124279,
- -0.061826322227716446,
- -0.002812843071296811,
- 0.018328053876757622,
- -0.04554782807826996,
- -0.0313044935464859,
- -0.004240679554641247,
- -0.00935997162014246,
- -0.07152733951807022,
- -0.05069555342197418,
- 0.07330752909183502,
- 0.010898984037339687,
- 0.014463378116488457,
- 0.048705361783504486,
- -0.011787252500653267,
- 0.09097972512245178,
- -0.08331536501646042,
- -0.017024556174874306,
- 0.048001479357481,
- 0.019366372376680374,
- -0.12250079959630966,
- 0.029482761397957802,
- -1.180905684350364e-8,
- -0.04525981843471527,
- -0.02787785790860653,
- -0.006143419072031975,
- 0.019102096557617188,
- -0.005371561739593744,
- 0.03589564189314842,
- -0.019095638766884804,
- -0.07285254448652267,
- 0.012448916211724281,
- 0.026900729164481163,
- -0.018794314935803413,
- -0.00243209395557642,
- -0.07559923827648163,
- -0.022624479606747627,
- 0.04144616052508354,
- 0.048036735504865646,
- -0.028934838250279427,
- 0.006106065586209297,
- 0.04958701133728027,
- -0.01423169020563364,
- -0.033683210611343384,
- -0.014586200937628746,
- 0.037708986550569534,
- 0.02698954939842224,
- -0.017914487048983574,
- 0.016852064058184624,
- 0.08138695359230042,
- 0.0250980406999588,
- -0.006370776332914829,
- 0.001019175280816853,
- -0.0033725984394550323,
- 0.01996229588985443,
- -0.04277505353093147,
- -0.07159607857465744,
- 0.005748062394559383,
- -0.10834451764822006,
- 0.08101507276296616,
- -0.06738895177841187,
- 0.06086829677224159,
- -0.043977707624435425,
- -0.002886794041842222,
- -0.09032192826271057,
- -0.014924154616892338,
- 0.014612777158617973,
- 0.05086205154657364,
- 0.08218838274478912,
- 0.012372965924441814,
- 0.026337796822190285,
- 0.007287167944014072,
- -0.007381363306194544,
- -0.0072735268622636795,
- -0.01746923290193081,
- -0.021584006026387215,
- -0.004487525671720505,
- 0.009470591321587563,
- -0.015732184052467346,
- -0.011280188336968422,
- -0.05936277285218239,
- -0.12847308814525604,
- -0.008939665742218494,
- 0.14073750376701355,
- -0.06630345433950424,
- 0.020351845771074295,
- -0.00768363568931818
- ]
- },
- {
- "keyword": "college",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.037125494331121445,
- 0.01608450524508953,
- 0.01247514970600605,
- 0.06761161237955093,
- 0.003746820380911231,
- -0.017012160271406174,
- 0.029558364301919937,
- -0.05137035995721817,
- 0.035379357635974884,
- 0.06439490616321564,
- -0.009289029985666275,
- -0.051596499979496,
- 0.01644216664135456,
- -0.016665387898683548,
- -0.057420313358306885,
- -0.037662334740161896,
- -0.032289255410432816,
- -0.08019842207431793,
- -0.009977883659303188,
- -0.10487628728151321,
- -0.04692186042666435,
- 0.024795444682240486,
- 0.019942602142691612,
- 0.022903552278876305,
- 0.08667370676994324,
- 0.05171029642224312,
- -0.01468680053949356,
- -0.010165608488023281,
- -0.08457827568054199,
- -0.08225564658641815,
- 0.014678992331027985,
- 0.06161149591207504,
- -0.007143881171941757,
- 0.0068899039179086685,
- 0.0230515506118536,
- 0.03576702997088432,
- 0.04818008840084076,
- 0.011887907050549984,
- 0.1329641491174698,
- -0.00992237776517868,
- -0.05475417524576187,
- 0.029143767431378365,
- 0.043594058603048325,
- 0.02865923009812832,
- 0.0035446309484541416,
- 0.004436371847987175,
- 0.014559251256287098,
- -0.038619402796030045,
- 0.0678599551320076,
- 0.008469601161777973,
- 0.004884461872279644,
- -0.013613921590149403,
- -0.08445620536804199,
- -0.016533328220248222,
- -0.003926437348127365,
- 0.08844918757677078,
- -0.018416354432702065,
- 0.007117911707609892,
- -0.06368628889322281,
- -0.004488724749535322,
- 0.029041675850749016,
- -0.0007438644533976912,
- -0.018725842237472534,
- 0.019022999331355095,
- 0.03663119301199913,
- 0.004246208816766739,
- -0.018660683184862137,
- 0.09606952965259552,
- 0.015869641676545143,
- -0.014666606672108173,
- 0.03388022631406784,
- 0.022289404645562172,
- -0.026129234582185745,
- 0.019994398579001427,
- 0.19686593115329742,
- 0.0036102700978517532,
- 0.013985388912260532,
- 0.03287333622574806,
- 0.08503340184688568,
- 0.0016561367083340883,
- 0.0596788227558136,
- 0.00533677451312542,
- -0.061340272426605225,
- 0.03963744267821312,
- 0.00025562336668372154,
- -0.05042244866490364,
- -0.008274802938103676,
- 0.018085714429616928,
- -0.003922030329704285,
- 0.0005091100465506315,
- -0.04055437818169594,
- -0.09622533619403839,
- -0.016542166471481323,
- 0.04640275612473488,
- -0.1088661476969719,
- 0.005109730642288923,
- -0.02003762684762478,
- -0.05368415638804436,
- 0.05845077335834503,
- 0.25389304757118225,
- -0.0737350806593895,
- 0.027343913912773132,
- 0.034588709473609924,
- -0.008852608501911163,
- -0.008090690709650517,
- 0.008251155726611614,
- 0.0020427852869033813,
- 0.06595384329557419,
- 0.05277980864048004,
- 0.07086213678121567,
- 0.012058241292834282,
- -0.007756140548735857,
- -0.06042204052209854,
- 0.0012521721655502915,
- -0.028201309964060783,
- 0.1187354028224945,
- 0.10972326993942261,
- -0.007447326555848122,
- 0.044295527040958405,
- 0.07451868057250977,
- -0.034463439136743546,
- 0.040989041328430176,
- -0.04265040531754494,
- -0.0325281135737896,
- -0.08744201809167862,
- -0.13345147669315338,
- -0.0486009307205677,
- -3.5018704048125516e-33,
- 0.010584593750536442,
- -0.027851862832903862,
- 0.030506953597068787,
- 0.05537967383861542,
- -0.06075279042124748,
- -0.018241163343191147,
- 0.009555413387715816,
- 0.010431080125272274,
- -0.07110351324081421,
- 0.016610857099294662,
- 0.013075295835733414,
- 0.0877000093460083,
- 0.021616771817207336,
- 0.09380960464477539,
- 0.13580074906349182,
- 0.03897828981280327,
- -0.01804163120687008,
- 0.07586126774549484,
- 0.005176165606826544,
- 0.02896898426115513,
- 0.001955755753442645,
- 0.021902255713939667,
- -0.02165699191391468,
- -0.04687368869781494,
- -0.06065235659480095,
- -0.04361148551106453,
- -0.05413641408085823,
- 0.015568391419947147,
- 0.08196824043989182,
- 0.015699803829193115,
- 0.03269125521183014,
- 0.03816894441843033,
- -0.07363255321979523,
- -0.05787869542837143,
- 0.0657801404595375,
- -0.036819372326135635,
- -0.0074205342680215836,
- -0.0460742712020874,
- 0.007063646800816059,
- -0.025081178173422813,
- 0.009326859377324581,
- 0.05311859771609306,
- 0.003074642037972808,
- 0.011391257867217064,
- 0.023735927417874336,
- 0.0233100987970829,
- 0.046852853149175644,
- 0.045048411935567856,
- 0.007410941645503044,
- 0.0059562367387115955,
- -0.09173335134983063,
- -0.08340981602668762,
- 0.010732242837548256,
- -0.05784805864095688,
- 0.01984800025820732,
- -0.013560647144913673,
- 0.0288980845361948,
- 0.0007430247496813536,
- -0.057810716331005096,
- -0.011336760595440865,
- -0.021748706698417664,
- 0.09807076305150986,
- -0.02592279203236103,
- -0.030742119997739792,
- -0.025933511555194855,
- -0.03523916378617287,
- -0.03255352005362511,
- 0.01022261194884777,
- 0.13143272697925568,
- -0.06485359370708466,
- -0.06788292527198792,
- -0.01793711632490158,
- -0.03995444253087044,
- -0.02031656913459301,
- 0.032952915877103806,
- 0.003926363307982683,
- 0.007395696360617876,
- -0.012008332647383213,
- -0.05336780846118927,
- 0.0015144271310418844,
- 0.03625404089689255,
- -0.046233635395765305,
- -0.04482877999544144,
- 0.038947783410549164,
- 0.0723479688167572,
- 0.0679076537489891,
- -0.041430652141571045,
- -0.05114025995135307,
- 0.04769232124090195,
- 0.032165445387363434,
- -0.08388818055391312,
- -0.06059419736266136,
- 0.009991157799959183,
- 0.0690566897392273,
- 0.010151460766792297,
- 2.4794496630383117e-33,
- 0.10328346490859985,
- -0.03866121917963028,
- -0.005266102496534586,
- 0.05478079617023468,
- 0.0615171454846859,
- -0.0075017912313342094,
- 0.03200361877679825,
- 0.011596091091632843,
- -0.003008711850270629,
- 0.03462637960910797,
- -0.008432308211922646,
- -0.04722165688872337,
- 0.04542319476604462,
- 0.057645533233881,
- -0.00944647565484047,
- 0.0039823935367167,
- 0.07718499004840851,
- 0.00939645804464817,
- -0.07281472533941269,
- 0.026607571169734,
- -0.030238604173064232,
- -0.04414542764425278,
- 0.011970984749495983,
- -0.06632254272699356,
- -0.04816992208361626,
- -0.02714536339044571,
- 0.0009011879446916282,
- 0.026396213099360466,
- -0.04678899049758911,
- -0.0006810041959397495,
- -0.008595604449510574,
- 0.03231474384665489,
- 0.005622531287372112,
- 0.019878894090652466,
- -0.03402324765920639,
- 0.05312148854136467,
- 0.011454508639872074,
- 0.058387111872434616,
- -0.05325290933251381,
- 0.007452335674315691,
- 0.09174293279647827,
- -0.06524743884801865,
- -0.07479250431060791,
- 0.09962142258882523,
- 0.055141955614089966,
- -0.022548241540789604,
- -0.044043492525815964,
- 0.07595466077327728,
- 0.02355765551328659,
- 0.022100450471043587,
- -0.14808306097984314,
- -0.08421734720468521,
- 0.094937264919281,
- -0.02876804769039154,
- 0.09058395028114319,
- -0.019434118643403053,
- -0.03026248700916767,
- 0.02035001665353775,
- -0.0533205047249794,
- 0.036021288484334946,
- 0.028723932802677155,
- -0.01039534155279398,
- -0.07548242807388306,
- 0.030164822936058044,
- -0.08762183040380478,
- 0.022767215967178345,
- -0.017869150266051292,
- 0.024716878309845924,
- -0.054877713322639465,
- 0.009911132976412773,
- 0.028469203040003777,
- 0.06507936120033264,
- -0.040434762835502625,
- 0.011307120323181152,
- -0.09564205259084702,
- 0.01837638020515442,
- -0.004230868071317673,
- 0.034806739538908005,
- -0.026905478909611702,
- -0.007286297157406807,
- -0.017325399443507195,
- -0.10553766041994095,
- -0.07431074231863022,
- 0.050290126353502274,
- 0.020549748092889786,
- 0.013657892122864723,
- 0.03560716658830643,
- 0.022317973896861076,
- 0.09117407351732254,
- -0.07041272521018982,
- 0.012088845483958721,
- 0.03855927288532257,
- 0.025632422417402267,
- -0.1011994257569313,
- -0.05427882820367813,
- -1.1998153581771476e-8,
- -0.06010443717241287,
- -0.008608405478298664,
- -0.06664633750915527,
- -0.005440065171569586,
- -0.004756690468639135,
- 0.09968188405036926,
- 0.010494858957827091,
- -0.04375818371772766,
- 0.03618390113115311,
- 0.036775100976228714,
- -0.0017734483117237687,
- 0.003997005056589842,
- -0.0020132167264819145,
- -0.03467322140932083,
- 0.006972272414714098,
- 0.04515804350376129,
- -0.000008839106158120558,
- 0.014478171244263649,
- 0.013611146248877048,
- -0.007613851688802242,
- -0.008963590487837791,
- -0.047014106065034866,
- 0.03454263135790825,
- 0.08208401501178741,
- -0.027374891564249992,
- -0.004449955653399229,
- 0.09832657873630524,
- 0.05547046288847923,
- -0.03803446888923645,
- 0.042769044637680054,
- -0.022659100592136383,
- -0.010210872627794743,
- -0.014363843016326427,
- -0.10277177393436432,
- -0.0015357144875451922,
- -0.07973112165927887,
- 0.014383462257683277,
- -0.09631041437387466,
- 0.059875451028347015,
- -0.05490870773792267,
- -0.02283744141459465,
- -0.061541322618722916,
- 0.01597544550895691,
- -0.048791930079460144,
- 0.08721954375505447,
- 0.02870049700140953,
- 0.02576105296611786,
- -0.0005355424946174026,
- 0.0050340211018919945,
- 0.006882496643811464,
- -0.04499569162726402,
- -0.01042430941015482,
- -0.07466275990009308,
- -0.03665544092655182,
- 0.021025430411100388,
- -0.00043474926496855915,
- 0.00406759325414896,
- -0.010776128619909286,
- -0.09138406813144684,
- -0.004750307649374008,
- 0.13373945653438568,
- -0.04973207041621208,
- 0.015411602333188057,
- 0.008652666583657265
- ]
- },
- {
- "keyword": "school",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0018831434426829219,
- 0.08541887998580933,
- 0.02172868512570858,
- 0.06268765777349472,
- -0.007753726560622454,
- -0.03251056373119354,
- 0.08142875880002975,
- -0.005012986250221729,
- 0.08497873693704605,
- 0.07937805354595184,
- 0.05493143945932388,
- -0.02347036637365818,
- -0.013609477318823338,
- 0.01322891004383564,
- 0.0037646451964974403,
- -0.006823219824582338,
- -0.004457627888768911,
- -0.04030522331595421,
- -0.046886760741472244,
- -0.10793634504079819,
- -0.026728514581918716,
- 0.015504918992519379,
- -0.016883162781596184,
- 0.05897968262434006,
- 0.044102564454078674,
- 0.13536226749420166,
- 0.018266964703798294,
- -0.06591407209634781,
- -0.0673622414469719,
- -0.12429296225309372,
- -0.020932115614414215,
- 0.004833412356674671,
- 0.00821901299059391,
- -0.015729958191514015,
- -0.010962321422994137,
- 0.05873926356434822,
- 0.07206510752439499,
- -0.0009237453923560679,
- 0.04362856224179268,
- -0.003657975932583213,
- -0.05477922782301903,
- -0.034300547093153,
- 0.027238642796874046,
- -0.008239326067268848,
- 0.0637088418006897,
- 0.012137036770582199,
- 0.06711716949939728,
- -0.023430412635207176,
- 0.10251490026712418,
- -0.01974099688231945,
- 0.012926993891596794,
- 0.005841060541570187,
- -0.048825111240148544,
- 0.03168517351150513,
- -0.020070360973477364,
- 0.045152511447668076,
- -0.0605878047645092,
- 0.00624412065371871,
- 0.018750805407762527,
- -0.02132892981171608,
- -0.021523844450712204,
- -0.000930167967453599,
- -0.05279863625764847,
- 0.031679585576057434,
- 0.053522948175668716,
- 0.01691749505698681,
- -0.00013205724826548249,
- 0.11917358636856079,
- 0.001263976446352899,
- 0.013536958955228329,
- 0.016637684777379036,
- -0.01035185344517231,
- 0.021827662363648415,
- 0.02860237844288349,
- 0.1059812605381012,
- -0.002254742430523038,
- 0.03224625810980797,
- 0.013841993175446987,
- 0.1462976187467575,
- -0.042901020497083664,
- -0.007623155135661364,
- -0.04276612028479576,
- -0.06841764599084854,
- 0.03460198640823364,
- 0.051549848169088364,
- -0.050635822117328644,
- 0.011224694550037384,
- 0.03163767233490944,
- -0.04264102876186371,
- -0.025519294664263725,
- -0.059478241950273514,
- -0.06808630377054214,
- -0.005176672711968422,
- 0.09171031415462494,
- -0.07622987776994705,
- 0.037748780101537704,
- -0.019764184951782227,
- -0.050126004964113235,
- 0.01089941430836916,
- 0.2694201171398163,
- -0.01979334093630314,
- 0.03752109035849571,
- 0.014448762871325016,
- 0.05621805787086487,
- -0.033815182745456696,
- -0.022068077698349953,
- -0.03144656866788864,
- 0.020006660372018814,
- -0.008289963938295841,
- -0.013025772757828236,
- 0.01526320818811655,
- -0.004488201346248388,
- -0.04793601483106613,
- -0.014133075252175331,
- 0.036436520516872406,
- 0.05507360026240349,
- 0.11954716593027115,
- -0.031256429851055145,
- -0.03904036432504654,
- 0.05639863386750221,
- -0.03022528998553753,
- 0.0642487108707428,
- -0.028096547350287437,
- -0.026652472093701363,
- -0.11809685826301575,
- -0.08042144775390625,
- -0.05071421340107918,
- -2.9743386622062488e-33,
- 0.08922051638364792,
- -0.05933786928653717,
- 0.031102340668439865,
- 0.057912684977054596,
- -0.016366560012102127,
- -0.03763017803430557,
- 0.062328021973371506,
- 0.01630338840186596,
- -0.00022540485952049494,
- 0.04966823756694794,
- 0.007066358346492052,
- 0.012564032338559628,
- -0.02954063192009926,
- 0.0043391394428908825,
- 0.1202978566288948,
- 0.04488003998994827,
- -0.024465294554829597,
- 0.053582288324832916,
- -0.020333055406808853,
- 0.034950483590364456,
- -0.043073706328868866,
- -0.022030508145689964,
- -0.001789947273209691,
- 0.015105615369975567,
- -0.04293951392173767,
- -0.015513898804783821,
- -0.048310521990060806,
- -0.07170712202787399,
- 0.04273966699838638,
- 0.014295187778770924,
- 0.05895654857158661,
- 0.060368891805410385,
- -0.0778561681509018,
- -0.028677580878138542,
- 0.00854805763810873,
- -0.10090775787830353,
- 0.022372981533408165,
- -0.10311279445886612,
- 0.010281682014465332,
- -0.06703073531389236,
- 0.11275928467512131,
- -0.0106758251786232,
- 0.016872001811861992,
- 0.03208015114068985,
- 0.04761688783764839,
- 0.04894435405731201,
- 0.009716649539768696,
- 0.054307855665683746,
- 0.007930346764624119,
- 0.021546000614762306,
- -0.04105798155069351,
- -0.03286943957209587,
- -0.05237472057342529,
- -0.08793827146291733,
- 0.00921936146914959,
- -0.01747344247996807,
- 0.03319952264428139,
- -0.02616196498274803,
- -0.007556868717074394,
- -0.038569703698158264,
- 0.023897793143987656,
- 0.1497512012720108,
- -0.0182864461094141,
- -0.05762519687414169,
- -0.018246425315737724,
- -0.0015270538860931993,
- -0.027999673038721085,
- -0.03573382645845413,
- 0.13867852091789246,
- -0.11501862853765488,
- -0.021698832511901855,
- 0.014127321541309357,
- -0.030129324644804,
- 0.03581392765045166,
- 0.04491914063692093,
- -0.026633400470018387,
- 0.020834103226661682,
- -0.005298937670886517,
- -0.02780420333147049,
- 0.047719597816467285,
- 0.08563175797462463,
- -0.05294249579310417,
- -0.025310559198260307,
- 0.03508836030960083,
- 0.08627012372016907,
- 0.00558476010337472,
- -0.04367191717028618,
- -0.10414788872003555,
- 0.05131632089614868,
- -0.003336797235533595,
- -0.08116542547941208,
- -0.04740262031555176,
- 0.023735614493489265,
- 0.05791483074426651,
- -0.01770607754588127,
- 2.6855051902008198e-33,
- 0.04826860502362251,
- -0.06094910204410553,
- -0.07077228277921677,
- 0.0651952400803566,
- 0.04456913098692894,
- -0.012226026505231857,
- -0.01042589358985424,
- -0.02175946533679962,
- 0.03188710659742355,
- 0.07961393147706985,
- -0.03211077302694321,
- -0.03312818706035614,
- 0.08771096169948578,
- 0.00997317023575306,
- 0.03069712221622467,
- -0.016101829707622528,
- 0.05196594074368477,
- 0.006819130387157202,
- -0.03109928034245968,
- -0.03849762678146362,
- -0.06690728664398193,
- 0.003189818700775504,
- -0.013134385459125042,
- 0.008103972300887108,
- -0.048056017607450485,
- -0.05635010078549385,
- -0.030600763857364655,
- -0.003414343111217022,
- -0.02030494064092636,
- 0.07490285485982895,
- 0.06642813235521317,
- -0.024022357538342476,
- 0.04241897910833359,
- 0.025298474356532097,
- -0.049465395510196686,
- 0.12026715278625488,
- -0.03532575070858002,
- 0.07430393993854523,
- -0.08139879256486893,
- 0.0028174547478556633,
- 0.05970728024840355,
- -0.04651017487049103,
- -0.03137633204460144,
- 0.11950282007455826,
- 0.0005220687016844749,
- 0.03367464616894722,
- -0.017046716064214706,
- 0.06304049491882324,
- 0.018969664350152016,
- 0.03643485903739929,
- -0.06501779705286026,
- 0.0006019065040163696,
- 0.010935916565358639,
- -0.015802865847945213,
- 0.02212728001177311,
- -0.01528556365519762,
- -0.06429348140954971,
- 0.012680637650191784,
- -0.050615061074495316,
- 0.018539126962423325,
- 0.019320663064718246,
- -0.0537073016166687,
- -0.057354096323251724,
- 0.0618535578250885,
- -0.05912250280380249,
- 0.04939434677362442,
- -0.06287115812301636,
- 0.002961034420877695,
- -0.03823348134756088,
- -0.0085308151319623,
- 0.029497068375349045,
- 0.084844671189785,
- -0.003895526984706521,
- 0.01679813489317894,
- -0.09268128871917725,
- 0.044307708740234375,
- 0.001145954360254109,
- 0.02237490564584732,
- -0.017243895679712296,
- -0.02512720413506031,
- 0.0006664618267677724,
- -0.07976406812667847,
- -0.033836521208286285,
- 0.042136676609516144,
- -0.0926472544670105,
- -0.0018402686109766364,
- 0.051498979330062866,
- 0.017300885170698166,
- 0.08664386719465256,
- -0.0663437470793724,
- 0.012103283777832985,
- 0.0541420541703701,
- -0.08113820105791092,
- -0.044842254370450974,
- -0.02920299582183361,
- -1.2403375215797041e-8,
- -0.002945744199678302,
- -0.025307215750217438,
- -0.007348143495619297,
- -0.029683180153369904,
- 0.05240603908896446,
- 0.07695741951465607,
- 0.011067040264606476,
- 0.014546314254403114,
- 0.07353262603282928,
- 0.03653711453080177,
- -0.03268752992153168,
- 0.01252296194434166,
- -0.012592093087732792,
- -0.03547150269150734,
- 0.04773165285587311,
- 0.0007582468679174781,
- 0.062084365636110306,
- -0.012179563753306866,
- 0.0025378733407706022,
- -0.00200007320381701,
- -0.02309405989944935,
- -0.04021725058555603,
- 0.055061567574739456,
- 0.018264388665556908,
- -0.015982499346137047,
- -0.0399673767387867,
- 0.058266956359148026,
- 0.037134744226932526,
- -0.04850287362933159,
- 0.0431881919503212,
- -0.008137797936797142,
- 0.02226884476840496,
- -0.03244749829173088,
- -0.04795004799962044,
- -0.02495645359158516,
- -0.07590948045253754,
- -0.0017793929437175393,
- -0.0582287535071373,
- 0.026450708508491516,
- -0.05896599218249321,
- -0.06063435226678848,
- -0.05033106729388237,
- 0.08466466516256332,
- -0.026413338258862495,
- 0.01100360881537199,
- 0.08441188186407089,
- -0.005812031216919422,
- -0.08696191012859344,
- -0.008953306823968887,
- -0.004398910328745842,
- -0.008622001856565475,
- -0.02240043692290783,
- 0.004334355238825083,
- -0.03618834540247917,
- 0.08722259849309921,
- -0.025831423699855804,
- -0.03682776540517807,
- 0.0077476948499679565,
- -0.06690014153718948,
- -0.004676330368965864,
- 0.1381186544895172,
- 0.012187560088932514,
- 0.022236861288547516,
- 0.04072398692369461
- ]
- },
- {
- "keyword": "academy",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04869188740849495,
- -0.06339532136917114,
- -0.06572867184877396,
- 0.015870753675699234,
- 0.0002973293303512037,
- 0.028467707335948944,
- -0.050516851246356964,
- -0.05577269196510315,
- 0.007605731952935457,
- 0.01832304522395134,
- -0.0011825028341263533,
- -0.051685985177755356,
- 0.03138350322842598,
- 0.007538706064224243,
- 0.023076001554727554,
- 0.0028313747607171535,
- 0.054136522114276886,
- -0.02674010396003723,
- 0.03573232889175415,
- -0.07460644096136093,
- -0.0768304243683815,
- 0.01603502407670021,
- 0.04724850505590439,
- 0.018869642168283463,
- -0.037074439227581024,
- 0.09850994497537613,
- -0.01987338624894619,
- 0.045076947659254074,
- -0.08089034259319305,
- -0.13837121427059174,
- 0.001804172177799046,
- 0.0150392921641469,
- 0.028855977579951286,
- -0.0007517315680161119,
- 0.016719093546271324,
- 0.0539168044924736,
- 0.012981642037630081,
- -0.037478432059288025,
- 0.003944784868508577,
- 0.03132815286517143,
- -0.0651935487985611,
- -0.0027755422051995993,
- 0.020493045449256897,
- 0.0025111858267337084,
- 0.025921037420630455,
- -0.04632556065917015,
- 0.001767846173606813,
- -0.017282579094171524,
- 0.09199309349060059,
- -0.006063283886760473,
- 0.006352136377245188,
- -0.0802084356546402,
- -0.031633585691452026,
- 0.011847950518131256,
- -0.04825972393155098,
- 0.08054213970899582,
- 0.03734710067510605,
- -0.018205590546131134,
- 0.005714259576052427,
- 0.011727476492524147,
- -0.03873440995812416,
- 0.025281647220253944,
- 0.027530241757631302,
- 0.02790502831339836,
- 0.0704960972070694,
- 0.004911602009087801,
- -0.0001633970096008852,
- 0.10509095340967178,
- 0.030177943408489227,
- -0.11717052012681961,
- 0.0035536675713956356,
- -0.03348530828952789,
- 0.008728084154427052,
- -0.015217983163893223,
- 0.056730952113866806,
- 0.04390036314725876,
- -0.028648674488067627,
- 0.012898205779492855,
- 0.07212218642234802,
- -0.05407940596342087,
- 0.0280088409781456,
- -0.12428689002990723,
- -0.07201186567544937,
- 0.02410797029733658,
- 0.001914269640110433,
- 0.010425657033920288,
- 0.006601051893085241,
- -0.06405159831047058,
- 0.02673717960715294,
- 0.024093683809041977,
- -0.029470084235072136,
- -0.06655583530664444,
- -0.032674916088581085,
- 0.04804309085011482,
- -0.06960047036409378,
- 0.014489537104964256,
- -0.049373067915439606,
- -0.055092211812734604,
- 0.0005820028018206358,
- 0.1905703991651535,
- -0.043191444128751755,
- 0.004347456619143486,
- -0.01231385488063097,
- -0.0374782495200634,
- -0.007078496739268303,
- -0.06972149014472961,
- 0.07810694724321365,
- 0.004347918089479208,
- 0.016097266227006912,
- 0.028159022331237793,
- 0.021211056038737297,
- -0.031563013792037964,
- 0.01592293195426464,
- 0.05956064909696579,
- 0.08419380336999893,
- 0.10174206644296646,
- 0.07979057729244232,
- -0.015443433076143265,
- -0.021108001470565796,
- 0.014633971266448498,
- -0.04700785502791405,
- 0.01862250082194805,
- 0.01320647168904543,
- 0.016297224909067154,
- -0.04283417388796806,
- -0.06481731683015823,
- -0.0463540256023407,
- -4.530980811468924e-33,
- 0.03309028595685959,
- -0.04273049160838127,
- 0.050048522651195526,
- 0.030285602435469627,
- 0.02597837895154953,
- -0.014520283788442612,
- 0.016122957691550255,
- 0.05193927884101868,
- -0.08705644309520721,
- 0.026921553537249565,
- -0.003882142947986722,
- 0.014844698831439018,
- -0.03926609456539154,
- -0.0010536855552345514,
- 0.11756682395935059,
- 0.07668524980545044,
- -0.03284595534205437,
- 0.037066422402858734,
- -0.01817810721695423,
- -0.0022803237661719322,
- -0.04080209881067276,
- 0.065435029566288,
- -0.06805258989334106,
- -0.02085401862859726,
- 0.005936029367148876,
- 0.03766608610749245,
- -0.028087474405765533,
- 0.041223619133234024,
- 0.12242401391267776,
- 0.01865149661898613,
- 0.021894486621022224,
- 0.02752416953444481,
- -0.08490736782550812,
- 0.006842978298664093,
- 0.0829295665025711,
- -0.025508081540465355,
- -0.026956334710121155,
- -0.049609966576099396,
- 0.011311192996799946,
- 0.019443616271018982,
- -0.0055505093187093735,
- 0.040609393268823624,
- 0.02814405970275402,
- 0.03724467381834984,
- 0.044220685958862305,
- 0.03730222210288048,
- -0.003491728799417615,
- 0.024025769904255867,
- 0.020882805809378624,
- 0.03598621115088463,
- -0.024377750232815742,
- 0.010536836460232735,
- -0.00836061593145132,
- 0.002975525800138712,
- -0.04325129836797714,
- 0.00342209218069911,
- 0.005321881268173456,
- 0.06157711148262024,
- -0.005142060574144125,
- -0.07073789089918137,
- 0.04356788098812103,
- 0.15887285768985748,
- -0.06151315197348595,
- 0.040956318378448486,
- -0.02394156903028488,
- -0.020932042971253395,
- -0.0036470177583396435,
- -0.030653871595859528,
- 0.14256268739700317,
- -0.018978137522935867,
- -0.031435154378414154,
- -0.05323638394474983,
- -0.01420474611222744,
- 0.06360403448343277,
- 0.04718070477247238,
- -0.10103648900985718,
- -0.03911304101347923,
- 0.04138375073671341,
- 0.022869041189551353,
- 0.00348197715356946,
- -0.051485031843185425,
- 0.00016974018944893032,
- -0.0654125064611435,
- 0.04194089025259018,
- 0.05919525399804115,
- -0.062105629593133926,
- 0.006887417286634445,
- -0.06043996661901474,
- 0.009455405175685883,
- -0.026948848739266396,
- -0.05262601748108864,
- -0.025372326374053955,
- -0.016171518713235855,
- 0.08211568742990494,
- -0.006496797781437635,
- 3.3260142458776296e-33,
- 0.11696665734052658,
- -0.04574698954820633,
- -0.013515638187527657,
- 0.060997556895017624,
- 0.04887211695313454,
- 0.06745405495166779,
- -0.011281267739832401,
- 0.08718836307525635,
- 0.04613824933767319,
- 0.03964540734887123,
- -0.019091062247753143,
- 0.02213183045387268,
- 0.07014643400907516,
- -0.02405030094087124,
- 0.06636013835668564,
- -0.038990568369627,
- 0.01902199722826481,
- 0.015325994230806828,
- -0.05462712422013283,
- -0.028237832710146904,
- 0.04986559599637985,
- -0.05151675269007683,
- 0.02651038020849228,
- -0.05260321497917175,
- 0.0018505722982808948,
- -0.012361676432192326,
- -0.019877437502145767,
- 0.08319606631994247,
- -0.04963289201259613,
- 0.007745498791337013,
- 0.009255889803171158,
- 0.031666580587625504,
- -0.06743039190769196,
- 0.06216149032115936,
- -0.10567521303892136,
- 0.005358557216823101,
- 0.07333509624004364,
- -0.032084934413433075,
- -0.07786576449871063,
- 0.027251390740275383,
- -0.005394098348915577,
- -0.030608603730797768,
- -0.02710460126399994,
- 0.12445423007011414,
- 0.02400624193251133,
- -0.05193084478378296,
- -0.06708621233701706,
- 0.07729671895503998,
- -0.03426813706755638,
- 0.01901683211326599,
- -0.2048490196466446,
- -0.032091330736875534,
- -0.0002978963893838227,
- -0.055115506052970886,
- 0.06884906440973282,
- -0.0050034187734127045,
- -0.004728164058178663,
- 0.02334141731262207,
- -0.03555072844028473,
- 0.08956963568925858,
- 0.022989433258771896,
- 0.033625904470682144,
- -0.11352211982011795,
- 0.008962410502135754,
- -0.04148039594292641,
- 0.03575878590345383,
- 0.015982551500201225,
- 0.0761604905128479,
- -0.026761369779706,
- 0.03455648943781853,
- 0.0836462676525116,
- 0.06675058603286743,
- 0.02353346161544323,
- 0.059004154056310654,
- -0.08628745377063751,
- 0.007140415254980326,
- 0.031634848564863205,
- 0.05652577802538872,
- 0.04724059998989105,
- -0.0874856635928154,
- -0.01757054217159748,
- -0.032838303595781326,
- -0.024825964123010635,
- 0.03246709704399109,
- -0.008940303698182106,
- 0.11681067943572998,
- 0.09687849879264832,
- 0.026170220226049423,
- 0.05624960735440254,
- -0.01656840555369854,
- 0.051191773265600204,
- 0.01622375287115574,
- 0.06720646470785141,
- -0.13704581558704376,
- -0.09693978726863861,
- -1.1043087333462154e-8,
- -0.0035439198836684227,
- 0.07304710894823074,
- 0.0029875156469643116,
- 0.041031960397958755,
- 0.005382972303777933,
- -0.0044604199938476086,
- -0.07785215228796005,
- 0.023104803636670113,
- 0.05119144171476364,
- 0.014591727405786514,
- -0.0015441555297002196,
- 0.0017246009083464742,
- 0.002255791798233986,
- -0.017934659495949745,
- -0.03720954433083534,
- 0.01657937280833721,
- -0.09078378975391388,
- 0.024302871897816658,
- -0.032229211181402206,
- 0.00017612845113035291,
- 0.03785565495491028,
- -0.0029729416128247976,
- 0.00359921483322978,
- 0.030732326209545135,
- 0.0027043179143220186,
- -0.062235575169324875,
- -0.021518299356102943,
- -0.04502037167549133,
- -0.026324806734919548,
- 0.02870776318013668,
- -0.0004540740919765085,
- 0.03357195109128952,
- 0.0005572701338678598,
- -0.04911024868488312,
- -0.04673057794570923,
- -0.027173584327101707,
- 0.043398838490247726,
- -0.06947468221187592,
- -0.05431682989001274,
- -0.04561876878142357,
- -0.023119226098060608,
- -0.11303208768367767,
- 0.028563177213072777,
- -0.12295014411211014,
- 0.04746943712234497,
- 0.06729674339294434,
- 0.08536795526742935,
- -0.0701998695731163,
- 0.02583087980747223,
- -0.03125157207250595,
- -0.05833878368139267,
- -0.04040202498435974,
- -0.04585551470518112,
- -0.009681999683380127,
- 0.0503992885351181,
- 0.012145088985562325,
- -0.030988603830337524,
- -0.03967847675085068,
- -0.07065346091985703,
- -0.0029130522161722183,
- 0.10169246047735214,
- -0.01324201188981533,
- -0.004258948843926191,
- 0.016554612666368484
- ]
- },
- {
- "keyword": "institute",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03965076804161072,
- 0.009947720915079117,
- -0.014422145672142506,
- 0.03556225448846817,
- 0.03432885929942131,
- -0.05703449621796608,
- -0.015162911266088486,
- -0.0413752943277359,
- 0.0058725373819470406,
- 0.016317078843712807,
- 0.009764564223587513,
- -0.037193965166807175,
- 0.05289044976234436,
- -0.005854995921254158,
- -0.0820864588022232,
- -0.00939301960170269,
- -0.02466118149459362,
- -0.026509003713726997,
- 0.02401558682322502,
- -0.07722034305334091,
- -0.07075203955173492,
- 0.029591431841254234,
- 0.034926887601614,
- -0.02045515365898609,
- -0.054423220455646515,
- 0.0885138213634491,
- 0.0005955329979769886,
- -0.004867807496339083,
- -0.02402813360095024,
- -0.0753166452050209,
- 0.023037228733301163,
- 0.03383483737707138,
- 0.009160132147371769,
- -0.0542420856654644,
- -0.003776716301217675,
- 0.05600622296333313,
- 0.02386903017759323,
- -0.031416695564985275,
- 0.10645723342895508,
- -0.018179239705204964,
- -0.03636512532830238,
- -0.03260713070631027,
- 0.062111105769872665,
- -0.009013758972287178,
- 0.06093120947480202,
- -0.014933357015252113,
- -0.09447143971920013,
- -0.03440437465906143,
- -0.006739417091012001,
- 0.014250031672418118,
- -0.0436767153441906,
- -0.058155398815870285,
- 0.017318781465291977,
- 0.02683505043387413,
- -0.005090830381959677,
- 0.04932849854230881,
- -0.01511319074779749,
- 0.015585657209157944,
- -0.02663274295628071,
- 0.0126303406432271,
- 0.10807214677333832,
- -0.016435904428362846,
- 0.0197785384953022,
- 0.001744692912325263,
- 0.08337696641683578,
- 0.0046117305755615234,
- 0.03767598047852516,
- 0.05635524541139603,
- 0.041804686188697815,
- -0.12350643426179886,
- 0.0649627074599266,
- -0.004608257208019495,
- -0.04962999373674393,
- 0.049034539610147476,
- 0.1145152822136879,
- -0.008873078040778637,
- 0.005008449777960777,
- 0.028333310037851334,
- 0.09837274998426437,
- 0.01675538904964924,
- 0.0614294596016407,
- 0.02203976921737194,
- 0.009580832906067371,
- 0.025340642780065536,
- -0.004728258121758699,
- -0.024680307134985924,
- 0.00917221698909998,
- -0.011116241104900837,
- 0.027029434219002724,
- 0.045700255781412125,
- 0.0040533593855798244,
- -0.076365165412426,
- -0.029593419283628464,
- 0.034508563578128815,
- 0.054245129227638245,
- -0.030421748757362366,
- -0.028739988803863525,
- -0.054564956575632095,
- -0.004382780287414789,
- 0.21752886474132538,
- -0.07206127792596817,
- -0.057926252484321594,
- -0.06192049756646156,
- 0.02161901444196701,
- -0.05382892116904259,
- -0.008244740776717663,
- 0.023226629942655563,
- 0.005602206569164991,
- 0.002948923734948039,
- 0.0721687376499176,
- -0.02589072659611702,
- 0.023491524159908295,
- -0.011867172084748745,
- -0.0105201480910182,
- 0.04835118353366852,
- 0.08898761123418808,
- 0.07945598661899567,
- 0.07399758696556091,
- 0.11050336062908173,
- -0.016223836690187454,
- -0.02552870661020279,
- 0.02050088718533516,
- -0.09356817603111267,
- -0.004086565691977739,
- -0.03271359205245972,
- -0.054800357669591904,
- -0.09778300672769547,
- -5.2633725667487505e-33,
- -0.020386965945363045,
- 0.07733988016843796,
- 0.021173562854528427,
- 0.05469994992017746,
- -0.027587030082941055,
- -0.07329529523849487,
- -0.03807258978486061,
- 0.04714605212211609,
- -0.08027444779872894,
- -0.02654208429157734,
- -0.031668197363615036,
- 0.08026913553476334,
- -0.017575325444340706,
- -0.00921469833701849,
- 0.06807906925678253,
- -0.026561236009001732,
- 0.0554017499089241,
- 0.12778770923614502,
- -0.00680442713201046,
- 0.00018331094179302454,
- 0.01808360032737255,
- 0.003060320857912302,
- 0.040943387895822525,
- -0.06087427958846092,
- 0.04787407070398331,
- 0.0032318360172212124,
- -0.015519379638135433,
- -0.0005299991462379694,
- 0.04793483391404152,
- -0.000368173437891528,
- 0.06934536248445511,
- 0.008872688747942448,
- -0.09684396535158157,
- -0.09885654598474503,
- 0.0179213285446167,
- -0.0005600913427770138,
- -0.016296520829200745,
- -0.07000181823968887,
- -0.021412404254078865,
- -0.004202601034194231,
- -0.022737819701433182,
- 0.06412356346845627,
- 0.03580748662352562,
- 0.05029044300317764,
- 0.053367629647254944,
- 0.06352188438177109,
- 0.014856582507491112,
- -0.020039157941937447,
- 0.05429047346115112,
- -0.009755109436810017,
- -0.06899859011173248,
- -0.02936727926135063,
- -0.10901198536157608,
- -0.028206970542669296,
- 0.009795683436095715,
- -0.022105121985077858,
- 0.017580317333340645,
- 0.055059563368558884,
- 0.0015425918390974402,
- -0.02956799417734146,
- -0.02618550881743431,
- 0.0948546826839447,
- -0.13101138174533844,
- 0.06457347422838211,
- -0.0020369587000459433,
- -0.007455479819327593,
- -0.05494214594364166,
- -0.03112529031932354,
- 0.15048398077487946,
- -0.03742634132504463,
- -0.08788418769836426,
- -0.02232702076435089,
- 0.041907429695129395,
- 0.017837727442383766,
- -0.025355009362101555,
- -0.009557544253766537,
- -0.11290563642978668,
- 0.014883809722959995,
- -0.07328595966100693,
- 0.02719430811703205,
- -0.05898239463567734,
- 0.027606267482042313,
- -0.002224580617621541,
- -0.0001505709224147722,
- 0.07487248629331589,
- -0.02344908006489277,
- 0.007719068787992001,
- 0.018923860043287277,
- 0.06215899810194969,
- -0.032502736896276474,
- -0.0610443539917469,
- -0.0013121622614562511,
- 0.002399600576609373,
- 0.058994732797145844,
- -0.032832372933626175,
- 3.262092699789837e-33,
- 0.07637782394886017,
- -0.08165580034255981,
- -0.002026057569310069,
- 0.042999546974897385,
- 0.04165143147110939,
- 0.054519470781087875,
- -0.002559543354436755,
- -0.0017400431679561734,
- 0.05934801697731018,
- 0.0533413402736187,
- 0.06422924995422363,
- -0.023046208545565605,
- -0.0033358344808220863,
- 0.07983111590147018,
- 0.042786940932273865,
- 0.003905191086232662,
- 0.014362134039402008,
- -0.04013171046972275,
- -0.05198650807142258,
- -0.00970378052443266,
- -0.016378136351704597,
- -0.04951082542538643,
- 0.06418051570653915,
- -0.10921784490346909,
- -0.04175640642642975,
- 0.004706777166575193,
- 0.0766621083021164,
- 0.05670046806335449,
- -0.014617876149713993,
- -0.06138730049133301,
- 0.01381987426429987,
- -0.06734664738178253,
- -0.10958127677440643,
- 0.040238961577415466,
- 0.014767375774681568,
- 0.07303545624017715,
- 0.012506158091127872,
- -0.03251321613788605,
- -0.07800053805112839,
- 0.004157728049904108,
- 0.028710385784506798,
- -0.0025941317435353994,
- -0.06365074217319489,
- 0.11166627705097198,
- 0.0023903879337012768,
- -0.03288589045405388,
- -0.06026606634259224,
- 0.08301239460706711,
- 0.008637885563075542,
- -0.0008707452216185629,
- -0.11581066995859146,
- -0.04573171213269234,
- 0.059750162065029144,
- -0.11171066761016846,
- 0.08792145550251007,
- -0.011742157861590385,
- -0.01616891659796238,
- 0.08265227824449539,
- -0.059840645641088486,
- 0.02770139090716839,
- 0.05209236592054367,
- 0.04895568639039993,
- -0.10255081206560135,
- 0.0636906549334526,
- -0.07308414578437805,
- 0.03312680870294571,
- 0.03275536373257637,
- 0.012752399779856205,
- 0.030305834487080574,
- -0.04433944821357727,
- 0.09283336251974106,
- 0.015782717615365982,
- -0.0045880661346018314,
- 0.007328106556087732,
- -0.04929296672344208,
- -0.047866709530353546,
- 0.0457942895591259,
- 0.03720138594508171,
- -0.04620134457945824,
- -0.05089584365487099,
- -0.03193618729710579,
- -0.07073692232370377,
- -0.014876024797558784,
- 0.062008943408727646,
- 0.05502253398299217,
- 0.07578791677951813,
- 0.07105211913585663,
- -0.002188232261687517,
- 0.03790963813662529,
- 0.016438854858279228,
- 0.026975469663739204,
- 0.010909372009336948,
- 0.029519466683268547,
- -0.10179724544286728,
- -0.03227869048714638,
- -1.103267255331275e-8,
- 0.020813213661313057,
- -0.0138004245236516,
- -0.04546651616692543,
- 0.006255752872675657,
- -0.008707218803465366,
- -0.03672780469059944,
- -0.05659324303269386,
- -0.025786319747567177,
- -0.029927873983979225,
- 0.06795991212129593,
- -0.01968783140182495,
- 0.01154231745749712,
- 0.012166519649326801,
- -0.04243536666035652,
- 0.020026464015245438,
- -0.022012703120708466,
- -0.04865076020359993,
- 0.00847365241497755,
- -0.0057976082898676395,
- 0.02872953750193119,
- 0.04408275708556175,
- 0.013908729888498783,
- -0.008920693770051003,
- -0.00852393638342619,
- -0.03522859886288643,
- 0.0010902942158281803,
- 0.08604133874177933,
- -0.05628601461648941,
- -0.015188833698630333,
- 0.07585742324590683,
- 0.0005597522831521928,
- 0.06148645654320717,
- -0.010886302217841148,
- -0.06048043817281723,
- -0.013855215162038803,
- -0.03142494708299637,
- 0.03476852551102638,
- -0.05465637892484665,
- 0.05761374905705452,
- -0.04552268981933594,
- -0.02201268821954727,
- -0.08246352523565292,
- -0.004259631969034672,
- -0.060190048068761826,
- 0.05776631832122803,
- 0.06207120418548584,
- -0.0035474521573632956,
- -0.04322044551372528,
- 0.07095488160848618,
- -0.02418387122452259,
- -0.08715930581092834,
- 0.018090741708874702,
- -0.052560776472091675,
- 0.04351035878062248,
- 0.0687486082315445,
- 0.027841905131936073,
- -0.01017875038087368,
- -0.051793113350868225,
- -0.07045800983905792,
- 0.017612729221582413,
- 0.1147172749042511,
- -0.0760621428489685,
- 0.052958354353904724,
- -0.04688099026679993
- ]
- },
- {
- "keyword": "hospital",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.009320162236690521,
- 0.03245096281170845,
- -0.036340296268463135,
- 0.02368743345141411,
- -0.06243778392672539,
- -0.03336706385016441,
- 0.03811457380652428,
- -0.01305023580789566,
- 0.05060403794050217,
- -0.015886787325143814,
- 0.0168010201305151,
- -0.020526135340332985,
- 0.0139796556904912,
- -0.006355428136885166,
- -0.047934770584106445,
- -0.08418527245521545,
- 0.05928213149309158,
- -0.034038566052913666,
- -0.0016246126033365726,
- -0.06780301779508591,
- -0.07537104189395905,
- 0.08342626690864563,
- -0.016069749370217323,
- 0.012060940265655518,
- -0.013683361001312733,
- 0.03910798579454422,
- -0.07606249302625656,
- 0.005657448899000883,
- 0.0240752175450325,
- -0.05383990705013275,
- 0.030624549835920334,
- -0.050076309591531754,
- 0.039290834218263626,
- -0.06322630494832993,
- 0.07323715090751648,
- 0.02309463918209076,
- 0.0068347398191690445,
- 0.02968212589621544,
- 0.04083041846752167,
- 0.07409833371639252,
- -0.04034976288676262,
- 0.008608605712652206,
- 0.02827874943614006,
- 0.0008319553453475237,
- 0.04989215359091759,
- 0.014506890438497066,
- 0.004412149544805288,
- 0.014463167637586594,
- 0.09692375361919403,
- 0.0120614692568779,
- 0.022075511515140533,
- -0.038651593029499054,
- -0.023801414296030998,
- 0.0988105908036232,
- -0.011604461818933487,
- 0.04080623760819435,
- 0.002257297979667783,
- -0.046221621334552765,
- -0.08674635738134384,
- 0.002730345819145441,
- -0.01882283203303814,
- 0.03239337354898453,
- 0.03539443761110306,
- 0.031370531767606735,
- 0.021363994106650352,
- -0.020357763394713402,
- 0.04057617858052254,
- 0.03772030770778656,
- 0.04869488999247551,
- -0.10089568048715591,
- 0.023796679452061653,
- -0.08267588168382645,
- 0.05654510110616684,
- 0.0984494760632515,
- 0.001791777671314776,
- 0.032530367374420166,
- 0.035680271685123444,
- -0.010235343128442764,
- 0.0687318667769432,
- 0.01277164276689291,
- 0.04310392960906029,
- -0.1457415074110031,
- 0.004181398544460535,
- 0.02879473567008972,
- -0.06442990154027939,
- -0.0044460357166826725,
- 0.021001294255256653,
- 0.023298492655158043,
- -0.03601017966866493,
- -0.03750455752015114,
- -0.003946154378354549,
- -0.008760410360991955,
- -0.00080002227332443,
- -0.05516909807920456,
- 0.002193070249632001,
- -0.02002169005572796,
- -0.02572169154882431,
- -0.06920794397592545,
- -0.018790990114212036,
- 0.2063005417585373,
- 0.008697266690433025,
- 0.05893738567829132,
- 0.08668532222509384,
- 0.029935646802186966,
- 0.024247583001852036,
- -0.08343499153852463,
- -0.014853503555059433,
- 0.05847909674048424,
- -0.026813963428139687,
- -0.02000925876200199,
- 0.0034666787832975388,
- 0.06534915417432785,
- 0.0034469959791749716,
- -0.03884800150990486,
- -0.02150293067097664,
- 0.06656257063150406,
- 0.05704689025878906,
- -0.07401737570762634,
- -0.008868157863616943,
- 0.10032348334789276,
- -0.019220856949687004,
- 0.03127925470471382,
- -0.08134769648313522,
- 0.008960370905697346,
- -0.06095212697982788,
- -0.04555478319525719,
- -0.02242296002805233,
- -5.140144391926096e-33,
- 0.035376694053411484,
- -0.060850467532873154,
- 0.06819290667772293,
- -0.0005546940374188125,
- 0.06067899614572525,
- 0.006887545343488455,
- -0.06650257855653763,
- 0.0274825282394886,
- 0.02816605009138584,
- -0.009303583763539791,
- -0.015805961564183235,
- -0.03648164123296738,
- 0.03760148212313652,
- -0.0973023921251297,
- -0.020251762121915817,
- 0.05978802591562271,
- -0.015350483357906342,
- 0.062485866248607635,
- -0.0824306309223175,
- 0.05593450367450714,
- -0.03568315505981445,
- -0.007945983670651913,
- -0.035516705363988876,
- 0.04490550607442856,
- 0.009325513616204262,
- 0.037213169038295746,
- -0.08610811084508896,
- -0.002081505721434951,
- 0.12385910749435425,
- 0.0005910807522013783,
- 0.01109267771244049,
- 0.03617529571056366,
- -0.010431550443172455,
- -0.020991824567317963,
- -0.02369815856218338,
- -0.024770280346274376,
- -0.06986520439386368,
- -0.06338759511709213,
- -0.014444958418607712,
- -0.03439357131719589,
- -0.0325646847486496,
- 0.016007183119654655,
- 0.011357448063790798,
- 0.08898333460092545,
- 0.063482865691185,
- 0.0653185173869133,
- -0.02290157787501812,
- 0.00577153917402029,
- 0.03986453264951706,
- -0.050192903727293015,
- -0.004109240602701902,
- -0.04767348989844322,
- -0.13500766456127167,
- -0.01017544325441122,
- 0.022749921306967735,
- -0.013076282106339931,
- 0.026890715584158897,
- 0.023253044113516808,
- 0.05245320126414299,
- 0.05214059352874756,
- 0.07006265223026276,
- 0.12911608815193176,
- -0.07350671291351318,
- 0.0107351653277874,
- 0.026867855340242386,
- -0.13232791423797607,
- 0.013304848223924637,
- -0.023990929126739502,
- 0.08100765943527222,
- -0.0019365305779501796,
- -0.01819477044045925,
- 0.017670417204499245,
- 0.0700983852148056,
- 0.08031173050403595,
- -0.015764955431222916,
- 0.004095293581485748,
- -0.0647103488445282,
- 0.021611230447888374,
- -0.06991913914680481,
- -0.003241424448788166,
- 0.004872509278357029,
- 0.016403652727603912,
- -0.00756060378625989,
- 0.09429578483104706,
- 0.058702193200588226,
- 0.011202584952116013,
- -0.02833164855837822,
- 0.012723256833851337,
- -0.12471567839384079,
- -0.045239128172397614,
- -0.1408221423625946,
- 0.048312582075595856,
- 0.08798017352819443,
- 0.048760704696178436,
- -0.036546491086483,
- 3.1632035028429426e-33,
- 0.023604504764080048,
- -0.06686971336603165,
- -0.09321180731058121,
- 0.04180512949824333,
- 0.028576036915183067,
- 0.0035271653905510902,
- -0.011705880984663963,
- 0.028386078774929047,
- 0.022814994677901268,
- 0.06297754496335983,
- -0.0003948925877921283,
- -0.029253831133246422,
- 0.024881985038518906,
- 0.022944657132029533,
- 0.006594144273549318,
- 0.0318029560148716,
- 0.01666070707142353,
- -0.05802812799811363,
- -0.0874396562576294,
- 0.07550112903118134,
- -0.01598774641752243,
- -0.00009194359154207632,
- -0.006760270334780216,
- -0.02806689217686653,
- 0.0009344241116195917,
- 0.07825504243373871,
- -0.04889902099967003,
- 0.021617881953716278,
- -0.026075635105371475,
- -0.05358068645000458,
- -0.11658593267202377,
- 0.011717300862073898,
- -0.0029462387319654226,
- 0.06498058140277863,
- -0.04389788955450058,
- 0.05048083886504173,
- -0.004680684767663479,
- -0.0039922501891851425,
- -0.04103326052427292,
- 0.00397033104673028,
- 0.06070003658533096,
- -0.06529894471168518,
- -0.036175522953271866,
- 0.1302269548177719,
- 0.06612038612365723,
- -0.001888384809717536,
- -0.05599196255207062,
- 0.019479520618915558,
- 0.04610686004161835,
- -0.013957217335700989,
- -0.09319067001342773,
- -0.061159648001194,
- -0.05219024047255516,
- 0.003972578793764114,
- -0.012981979176402092,
- 0.017906807363033295,
- -0.07962579280138016,
- -0.050802335143089294,
- -0.05840875953435898,
- -0.010496851056814194,
- 0.08991689234972,
- -0.029243946075439453,
- -0.0800289660692215,
- 0.10888395458459854,
- -0.10899095982313156,
- 0.008054705336689949,
- 0.06259675323963165,
- -0.0022081006318330765,
- -0.037622515112161636,
- 0.020573260262608528,
- 0.0048213619738817215,
- 0.00793816801160574,
- -0.0405922494828701,
- 0.03512575104832649,
- 0.008208288811147213,
- -0.03947572037577629,
- 0.032201074063777924,
- -0.04493027552962303,
- -0.042514387518167496,
- -0.05645901337265968,
- 0.0016088172560557723,
- -0.05798542872071266,
- -0.05027993768453598,
- 0.09703671187162399,
- -0.023326048627495766,
- -0.00720007112249732,
- 0.12125403434038162,
- -0.0420231930911541,
- 0.010434946045279503,
- -0.05552775412797928,
- -0.030745316296815872,
- 0.02867373824119568,
- -0.08067341148853302,
- -0.1046646237373352,
- -0.027704479172825813,
- -1.1834523583331702e-8,
- -0.015164854936301708,
- 0.016783591359853745,
- -0.02169487625360489,
- -0.004191326908767223,
- 0.016904987394809723,
- -0.11323100328445435,
- -0.05003369227051735,
- 0.09816215932369232,
- 0.024296673014760017,
- 0.09713756293058395,
- -0.043414607644081116,
- 0.06089358776807785,
- -0.008504687808454037,
- -0.02872939221560955,
- -0.025873105973005295,
- 0.04200530797243118,
- -0.10492359101772308,
- 0.01368748489767313,
- 0.018597206100821495,
- -0.0432882234454155,
- -0.04326985403895378,
- -0.013052905909717083,
- 0.04420889541506767,
- 0.015786290168762207,
- 0.018379077315330505,
- 0.01918085664510727,
- 0.017001895233988762,
- 0.024872368201613426,
- 0.0309809111058712,
- 0.010519903153181076,
- 0.014344207011163235,
- 0.0422813780605793,
- -0.008561358787119389,
- -0.02595599740743637,
- -0.027903549373149872,
- -0.050887331366539,
- 0.08550109714269638,
- -0.07255268841981888,
- 0.038215648382902145,
- -0.03688334673643112,
- 0.017017414793372154,
- -0.06116459146142006,
- -0.0035595016088336706,
- -0.0005487374146468937,
- 0.035084471106529236,
- -0.02361675538122654,
- 0.08748520165681839,
- 0.03932780399918556,
- 0.029078178107738495,
- -0.08647926151752472,
- 0.046005986630916595,
- 0.0020533392671495676,
- 0.04224349930882454,
- 0.019415145739912987,
- 0.014300798065960407,
- 0.02642115391790867,
- 0.02091480977833271,
- -0.03820953145623207,
- -0.07963927835226059,
- 0.10380788892507553,
- 0.08284512907266617,
- 0.018284598365426064,
- 0.03703174740076065,
- -0.009736658073961735
- ]
- },
- {
- "keyword": "clinic",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.02685224637389183,
- 0.022323941811919212,
- -0.0319887138903141,
- -0.023497559130191803,
- -0.07484785467386246,
- -0.05145461484789848,
- 0.08370683342218399,
- 0.04323568195104599,
- 0.05970781669020653,
- -0.0681363046169281,
- 0.0077912891283631325,
- -0.0325436070561409,
- 0.009472581557929516,
- 0.06636957824230194,
- -0.027281690388917923,
- -0.022770680487155914,
- 0.08168430626392365,
- -0.05648920312523842,
- 0.07136239111423492,
- -0.04575562849640846,
- -0.09506988525390625,
- 0.07141324132680893,
- 0.035396259278059006,
- 0.07015828788280487,
- -0.06880047917366028,
- 0.018918735906481743,
- -0.05200614407658577,
- 0.031205398961901665,
- 0.020925413817167282,
- -0.012384725734591484,
- 0.033921048045158386,
- 0.020659441128373146,
- -0.02409745752811432,
- -0.04686923697590828,
- 0.07453978806734085,
- -0.036110471934080124,
- -0.042575933039188385,
- 0.013064062222838402,
- 0.03261348232626915,
- 0.05838886275887489,
- -0.060077596455812454,
- -0.0368303582072258,
- -0.028547843918204308,
- 0.016090072691440582,
- -0.022520294412970543,
- 0.02908867597579956,
- 0.033928412944078445,
- 0.08828882873058319,
- 0.0963173359632492,
- -0.005670078098773956,
- -0.010322312824428082,
- -0.05055250599980354,
- -0.015038907527923584,
- 0.028741901740431786,
- -0.023259468376636505,
- -0.005104237236082554,
- -0.028548646718263626,
- -0.04719657823443413,
- -0.06655071675777435,
- 0.04106775298714638,
- 0.032662972807884216,
- 0.00885775126516819,
- -0.05184941738843918,
- 0.10252667218446732,
- -0.04345850646495819,
- -0.015929963439702988,
- -0.00031390946242026985,
- 0.04573822766542435,
- 0.09989160299301147,
- -0.04128579795360565,
- -0.030804777517914772,
- -0.03659922257065773,
- 0.032157011330127716,
- 0.09853728115558624,
- -0.0030113765969872475,
- 0.01530581433326006,
- 0.05880891904234886,
- -0.04017367959022522,
- 0.06797970086336136,
- 0.041352029889822006,
- 0.02032916061580181,
- -0.008149285800755024,
- 0.0783834159374237,
- 0.006078308913856745,
- -0.035856250673532486,
- -0.010640839114785194,
- 0.05036238953471184,
- 0.027701690793037415,
- -0.03332880511879921,
- -0.06346091628074646,
- 0.0343652069568634,
- 0.028848573565483093,
- -0.03586272895336151,
- -0.04139331355690956,
- -0.05894274264574051,
- -0.014862146228551865,
- -0.03260716795921326,
- -0.07320883870124817,
- -0.012489051558077335,
- 0.2517866790294647,
- -0.05710340663790703,
- 0.023827577009797096,
- 0.042682159692049026,
- 0.004857008345425129,
- -0.013310717418789864,
- -0.08223692327737808,
- -0.050406791269779205,
- -0.007349970750510693,
- -0.006855657324194908,
- 0.04091784730553627,
- 0.000500470632687211,
- -0.0020086155273020267,
- -0.003425485221669078,
- 0.035229530185461044,
- 0.004121103323996067,
- 0.05918954312801361,
- 0.08600855618715286,
- -0.042142823338508606,
- -0.028172044083476067,
- 0.09817306697368622,
- -0.0257705207914114,
- -0.013212539255619049,
- -0.026707757264375687,
- -0.00574108213186264,
- 0.015930844470858574,
- 0.0156874842941761,
- 0.0037126492243260145,
- -6.002349661787074e-33,
- -0.01800842583179474,
- -0.0804152637720108,
- 0.05461471900343895,
- -0.000648964021820575,
- 0.034088656306266785,
- 0.0899038091301918,
- 0.0035616117529571056,
- -0.016894305124878883,
- -0.0033093213569372892,
- 0.01656196638941765,
- 0.0035756388679146767,
- -0.00705569377169013,
- 0.06700552254915237,
- -0.04883674159646034,
- -0.009404529817402363,
- 0.05296405032277107,
- -0.005982227623462677,
- 0.06934922933578491,
- -0.09662473201751709,
- 0.03681904450058937,
- -0.07693213224411011,
- 0.04556799307465553,
- 0.027213694527745247,
- 0.08195888251066208,
- 0.003210753435268998,
- 0.049045056104660034,
- -0.023954419419169426,
- -0.017317501828074455,
- 0.14685878157615662,
- 0.023825259879231453,
- -0.04484400153160095,
- -0.008787202648818493,
- 0.006757616531103849,
- -0.026461884379386902,
- 0.0035127983428537846,
- 0.06450514495372772,
- -0.03483833372592926,
- -0.09191599488258362,
- 0.020927688106894493,
- -0.00032971694599837065,
- -0.0624576061964035,
- 0.021329602226614952,
- 0.01956651732325554,
- 0.05984879285097122,
- 0.039049554616212845,
- 0.0778563991189003,
- -0.05517834424972534,
- -0.018117709085345268,
- 0.002487354911863804,
- -0.045881979167461395,
- -0.02343892492353916,
- -0.014072451740503311,
- -0.10284724831581116,
- -0.030502799898386,
- 0.008560162968933582,
- -0.03225697576999664,
- -0.0035041258670389652,
- 0.04196253418922424,
- 0.07054321467876434,
- 0.03622390702366829,
- 0.08356893062591553,
- 0.11564040184020996,
- -0.07474576681852341,
- -0.00671551376581192,
- -0.018747959285974503,
- -0.12063872814178467,
- 0.002811366692185402,
- -0.05818365886807442,
- 0.01046881452202797,
- -0.013662339188158512,
- -0.022458724677562714,
- 0.04602920636534691,
- 0.09336212277412415,
- 0.0913156047463417,
- 0.02145771123468876,
- -0.038539446890354156,
- 0.014504794962704182,
- 0.02151910774409771,
- -0.08788983523845673,
- -0.005002239253371954,
- -0.0295167937874794,
- 0.00817058514803648,
- 0.010877364315092564,
- 0.08582043647766113,
- 0.017419150099158287,
- -0.03014862909913063,
- -0.01948094554245472,
- 0.019497757777571678,
- -0.0738489031791687,
- -0.057645704597234726,
- -0.09357298165559769,
- 0.03825192525982857,
- 0.05807384103536606,
- 0.11188530921936035,
- -0.021094590425491333,
- 4.280410966279707e-33,
- 0.032100167125463486,
- -0.055605366826057434,
- -0.0005260567995719612,
- 0.0349196158349514,
- 0.07972446084022522,
- 0.051686760038137436,
- 0.04785344749689102,
- 0.06488893181085587,
- -0.02698592096567154,
- 0.022119825705885887,
- -0.008700504899024963,
- -0.05589042603969574,
- 0.02316722460091114,
- 0.019158683717250824,
- 0.02016480639576912,
- 0.007695425767451525,
- 0.016559932380914688,
- -0.0681995302438736,
- -0.10956001281738281,
- 0.07069731503725052,
- -0.022779839113354683,
- 0.05085749179124832,
- 0.01321239024400711,
- -0.06508085876703262,
- -0.03141190484166145,
- 0.01657073013484478,
- -0.030487393960356712,
- 0.025040559470653534,
- -0.031952153891325,
- -0.03166566416621208,
- -0.026498744264245033,
- 0.006539067719131708,
- -0.016321565955877304,
- -0.010210959240794182,
- -0.01870836317539215,
- 0.08341120183467865,
- 0.047466568648815155,
- -0.03925309702754021,
- -0.03877855837345123,
- -0.039558857679367065,
- 0.05672064423561096,
- -0.07928013801574707,
- -0.07299021631479263,
- 0.12416628748178482,
- 0.07534058392047882,
- 0.05262766778469086,
- -0.04332571104168892,
- -0.002198933158069849,
- 0.06838513165712357,
- -0.0110826650634408,
- -0.11509101837873459,
- -0.01750124804675579,
- -0.02028229646384716,
- -0.023920727893710136,
- 0.012721020728349686,
- -0.049813393503427505,
- -0.022939160466194153,
- -0.05910657346248627,
- -0.06604468822479248,
- 0.027597526088356972,
- 0.05420177802443504,
- -0.06332527101039886,
- -0.09534791111946106,
- 0.11422689259052277,
- -0.001590765081346035,
- -0.0018612522399052978,
- 0.035999443382024765,
- 0.03361557796597481,
- 0.02196613699197769,
- 0.029703671112656593,
- -0.031196309253573418,
- 0.003380875801667571,
- -0.09616896510124207,
- -0.004356612917035818,
- -0.011256484314799309,
- -0.008087845519185066,
- -0.03547734022140503,
- -0.12456868588924408,
- -0.03812282159924507,
- -0.03958636522293091,
- -0.06622995436191559,
- -0.13298621773719788,
- 0.005777479149401188,
- 0.10896363854408264,
- -0.005620528012514114,
- -0.007063108030706644,
- 0.09137006103992462,
- -0.0668603703379631,
- -0.047144338488578796,
- 0.023185594007372856,
- 0.014662756584584713,
- 0.0018122440669685602,
- -0.11342611908912659,
- -0.07675442099571228,
- 0.04601931944489479,
- -1.1608107364224907e-8,
- 0.020991750061511993,
- 0.005849495064467192,
- 0.0034773198422044516,
- -0.0019159250659868121,
- 0.014950688928365707,
- -0.05327548831701279,
- -0.06940778344869614,
- 0.07280412316322327,
- 0.06326556205749512,
- 0.12743300199508667,
- -0.04157530888915062,
- 0.05274878814816475,
- -0.0006356262601912022,
- 0.011944244615733624,
- -0.04943401366472244,
- -0.003741332096979022,
- -0.06603722274303436,
- 0.044239457696676254,
- -0.03447232022881508,
- -0.034397952258586884,
- -0.06546344608068466,
- -0.005173186305910349,
- 0.06186828389763832,
- -0.051344145089387894,
- 0.011656800284981728,
- 0.002465091645717621,
- 0.02902798168361187,
- 0.07782145589590073,
- -0.01921563781797886,
- -0.07251422107219696,
- 0.02678951434791088,
- 0.027465621009469032,
- -0.026547862216830254,
- 0.021882055327296257,
- -0.01167566142976284,
- -0.06648792326450348,
- -0.01915667951107025,
- -0.018987547606229782,
- 0.026090415194630623,
- 0.032348018139600754,
- 0.00048605300253257155,
- -0.050375085324048996,
- 0.008660267107188702,
- 0.005736632738262415,
- -0.04149810969829559,
- 0.027205586433410645,
- 0.06439977884292603,
- -0.0030181712936609983,
- 0.024864712730050087,
- -0.06895064562559128,
- 0.04787248745560646,
- 0.012234519235789776,
- 0.05789549648761749,
- 0.006862337701022625,
- -0.03204978629946709,
- 0.013091698288917542,
- 0.04066409170627594,
- -0.03327680751681328,
- -0.07678832858800888,
- 0.0648631900548935,
- 0.029162047430872917,
- 0.020027829334139824,
- 0.0276972446590662,
- -0.026038827374577522
- ]
- },
- {
- "keyword": "medical center",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03510617837309837,
- 0.00967439915984869,
- -0.047048769891262054,
- 0.005134950391948223,
- -0.03132341802120209,
- -0.040333520621061325,
- 0.01658983901143074,
- 0.045405562967061996,
- 0.020945129916071892,
- 0.024004116654396057,
- -0.052488576620817184,
- -0.023385822772979736,
- 0.0006113912677392364,
- 0.004197968170046806,
- -0.07260801643133163,
- -0.05736041069030762,
- 0.0014068521559238434,
- -0.023722421377897263,
- 0.009907147847115993,
- -0.04062237590551376,
- -0.0622430257499218,
- 0.06196136772632599,
- 0.02454199083149433,
- 0.023421097546815872,
- -0.0027420748956501484,
- 0.04597471281886101,
- -0.04278229922056198,
- 0.03545621410012245,
- -0.00233238167129457,
- -0.057921603322029114,
- 0.06091057136654854,
- -0.01618000864982605,
- 0.04398244246840477,
- -0.006007252261042595,
- 0.06938838213682175,
- 0.07615907490253448,
- -0.02412567473948002,
- -0.024113662540912628,
- 0.037701189517974854,
- 0.047543201595544815,
- -0.041874129325151443,
- 0.014581852592527866,
- 0.004527624696493149,
- 0.03050326555967331,
- -0.023513896390795708,
- 0.04319215938448906,
- -0.035990189760923386,
- 0.013385914266109467,
- 0.1293051838874817,
- 0.03777732327580452,
- 0.005404396913945675,
- -0.039926692843437195,
- -0.05983651429414749,
- 0.06787629425525665,
- -0.024764668196439743,
- 0.034703418612480164,
- -0.02205030620098114,
- -0.05225588008761406,
- -0.06339138001203537,
- -0.12073592841625214,
- 0.04011619836091995,
- 0.012028565630316734,
- 0.04359038546681404,
- 0.07131056487560272,
- -0.004557306878268719,
- -0.029667068272829056,
- 0.017157578840851784,
- 0.02482525445520878,
- 0.047172874212265015,
- -0.14332351088523865,
- 0.006872385274618864,
- -0.08426298201084137,
- 0.059678468853235245,
- 0.09116719663143158,
- 0.0689341202378273,
- 0.06747617572546005,
- 0.029743405058979988,
- 0.022059403359889984,
- 0.033220235258340836,
- 0.011730608530342579,
- 0.0908215120434761,
- 0.0030954466201364994,
- 0.006767509505152702,
- 0.065239317715168,
- -0.08478221297264099,
- 0.0156128304079175,
- 0.010016726329922676,
- 0.032148394733667374,
- -0.004686630796641111,
- -0.05600946396589279,
- 0.033923279494047165,
- -0.026806239038705826,
- -0.024486906826496124,
- -0.10074729472398758,
- 0.011269795708358288,
- 0.010220585390925407,
- -0.00935303419828415,
- -0.06890622526407242,
- -0.021474244073033333,
- 0.10438940674066544,
- 0.0016939918277785182,
- 0.04955494776368141,
- 0.05663353204727173,
- -0.020377136766910553,
- 0.05013590678572655,
- -0.04620984569191933,
- -0.03255524858832359,
- 0.048704613000154495,
- -0.021626561880111694,
- 0.018096834421157837,
- -0.031235454604029655,
- 0.062211185693740845,
- -0.017888670787215233,
- -0.021889623254537582,
- -0.0498996339738369,
- 0.09096047282218933,
- 0.08628919720649719,
- -0.0034470215905457735,
- 0.04375145211815834,
- 0.03986746072769165,
- 0.0034685302525758743,
- -0.02379525452852249,
- -0.07229085266590118,
- -0.08168994635343552,
- 0.007286702748388052,
- -0.04966525360941887,
- -0.053334858268499374,
- -3.3828442549521024e-33,
- -0.06728028506040573,
- -0.0033613310661166906,
- 0.09896691888570786,
- 0.00557777751237154,
- 0.02081211656332016,
- 0.04331030696630478,
- 0.051976222544908524,
- 0.003152040531858802,
- 0.028527390211820602,
- -0.052861686795949936,
- -0.059881821274757385,
- 0.029278919100761414,
- 0.03834658861160278,
- -0.016969911754131317,
- -0.011894658207893372,
- 0.03532630577683449,
- -0.011969035491347313,
- 0.021507160738110542,
- -0.08987726271152496,
- 0.032745108008384705,
- -0.0703035518527031,
- 0.03413213789463043,
- -0.02472175471484661,
- -0.006511131301522255,
- -0.042803216725587845,
- 0.06359721720218658,
- -0.07004847377538681,
- 0.005478675477206707,
- 0.14800922572612762,
- -0.01436131913214922,
- -0.04778193309903145,
- 0.09251205623149872,
- 0.014345729723572731,
- -0.05085958167910576,
- 0.03761904314160347,
- 0.11510797590017319,
- -0.03839772194623947,
- -0.022947466000914574,
- 0.019153524190187454,
- 0.0142713887616992,
- -0.030115988105535507,
- 0.024926917627453804,
- 0.026524562388658524,
- 0.06103825941681862,
- 0.08622720837593079,
- 0.059975843876600266,
- -0.03399857133626938,
- 0.01277193333953619,
- 0.07039860635995865,
- -0.10127381980419159,
- -0.03725491464138031,
- -0.048223838210105896,
- -0.07684755325317383,
- 0.014112601988017559,
- 0.05755791813135147,
- -0.007420295849442482,
- 0.013129167258739471,
- -0.024255696684122086,
- 0.039889805018901825,
- 0.03754815086722374,
- 0.05179286375641823,
- 0.058159809559583664,
- -0.05076904222369194,
- 0.04541366919875145,
- 0.024109819903969765,
- -0.13721641898155212,
- -0.032716426998376846,
- -0.04264046996831894,
- 0.09005036950111389,
- 0.018308894708752632,
- -0.05059533193707466,
- 0.0170371662825346,
- 0.0741819217801094,
- 0.08333391696214676,
- -0.0813022330403328,
- 0.029688935726881027,
- -0.03290342167019844,
- -0.025170721113681793,
- -0.12059254199266434,
- -0.016441382467746735,
- -0.009385859593749046,
- 0.0034688173327594995,
- -0.0063576181419193745,
- 0.11443231254816055,
- 0.10007001459598541,
- -0.024469273164868355,
- -0.035497263073921204,
- 0.020533517003059387,
- -0.12401776015758514,
- -0.02245306596159935,
- -0.1692202389240265,
- 0.01706911437213421,
- 0.04146841913461685,
- 0.1019369438290596,
- -0.07463297992944717,
- 1.8625696968519607e-33,
- 0.0367799811065197,
- -0.04002419859170914,
- -0.008501904085278511,
- 0.09557414054870605,
- 0.058696385473012924,
- 0.015596623532474041,
- 0.04278523474931717,
- -0.024782273918390274,
- 0.008078928105533123,
- 0.09862096607685089,
- 0.06117967516183853,
- 0.014004426077008247,
- 0.007970903068780899,
- 0.024731246754527092,
- -0.009059556759893894,
- 0.09536578506231308,
- 0.011249186471104622,
- 0.001732724835164845,
- -0.08355332911014557,
- 0.020902540534734726,
- 0.026631539687514305,
- 0.014986036345362663,
- -0.03740615025162697,
- -0.04331919550895691,
- -0.03284984454512596,
- 0.04570493847131729,
- -0.026789629831910133,
- 0.004902298096567392,
- -0.0637127086520195,
- -0.07548003643751144,
- -0.08446863293647766,
- -0.004459956660866737,
- -0.043428935110569,
- 0.06827006489038467,
- -0.04411236569285393,
- 0.020643403753638268,
- -0.014548245817422867,
- 0.05103749781847,
- -0.04090869799256325,
- 0.005273514427244663,
- 0.10698530077934265,
- -0.033459119498729706,
- -0.050255972892045975,
- 0.0736178308725357,
- 0.07581347227096558,
- -0.06028302386403084,
- -0.052798349410295486,
- 0.05506041273474693,
- 0.03583306819200516,
- -0.003087976947426796,
- -0.14341731369495392,
- -0.050353068858385086,
- -0.015020513907074928,
- 0.021431919187307358,
- 0.02901233732700348,
- 0.05344270542263985,
- -0.050144072622060776,
- -0.0500682108104229,
- -0.026444682851433754,
- -0.04809903725981712,
- 0.08303533494472504,
- -0.009068235754966736,
- -0.11099819839000702,
- 0.043084610253572464,
- -0.036173757165670395,
- 0.04954076185822487,
- 0.1058865487575531,
- 0.026907144114375114,
- -0.05648183822631836,
- 0.02437512017786503,
- 0.005859841592609882,
- 0.028466317802667618,
- -0.04577168822288513,
- -0.05091876909136772,
- -0.03955351188778877,
- -0.018015194684267044,
- -0.021023143082857132,
- -0.0201518964022398,
- 0.0016552881570532918,
- -0.04572859779000282,
- 0.015201781876385212,
- -0.09207822382450104,
- -0.03966977074742317,
- 0.05815611779689789,
- 0.0025850022211670876,
- 0.061676882207393646,
- 0.07407966256141663,
- -0.03805501013994217,
- -0.01174169685691595,
- -0.01769477315247059,
- -0.008938994258642197,
- 0.05360885709524155,
- -0.030331773683428764,
- -0.09954214841127396,
- -0.003422330366447568,
- -1.2203037691449481e-8,
- -0.0535307452082634,
- -0.008822414092719555,
- -0.0440235510468483,
- 0.004585048649460077,
- 0.005273102782666683,
- -0.13187378644943237,
- -0.058400485664606094,
- 0.032729536294937134,
- 0.025089306756854057,
- 0.08790843188762665,
- -0.010221845470368862,
- 0.037999726831912994,
- 0.002860547974705696,
- -0.0734277218580246,
- 0.007347508799284697,
- 0.0518362820148468,
- -0.03688079118728638,
- 0.07149121165275574,
- -0.007657646667212248,
- -0.07302133738994598,
- -0.010920094326138496,
- -0.02769486792385578,
- 0.01941709779202938,
- 0.009025732055306435,
- -0.0061722113750875,
- -0.014961403794586658,
- 0.055892039090394974,
- 0.07669895142316818,
- 0.00439882930368185,
- 0.012581740505993366,
- -0.012394232675433159,
- -0.013980801217257977,
- 0.006279288791120052,
- -0.03812379390001297,
- -0.006087298505008221,
- -0.07499637454748154,
- 0.020511839538812637,
- -0.08141543716192245,
- 0.04821523651480675,
- -0.024364322423934937,
- 0.0297556072473526,
- -0.004469520878046751,
- 0.0008499330142512918,
- -0.0172487273812294,
- -0.007674839347600937,
- -0.02197299525141716,
- 0.06639940291643143,
- 0.03198602795600891,
- 0.05496319383382797,
- -0.05572722852230072,
- 0.002164122648537159,
- 0.0473492294549942,
- -0.01073880959302187,
- -0.05021284148097038,
- -0.01777915470302105,
- 0.00791853852570057,
- 0.02767208032310009,
- -0.03151711821556091,
- -0.07823971658945084,
- 0.08105362206697464,
- 0.010305909439921379,
- -0.014866397716104984,
- 0.01442364789545536,
- 0.050362296402454376
- ]
- },
- {
- "keyword": "bank",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.00009032380330609158,
- 0.02336334064602852,
- -0.08842933177947998,
- 0.0029198939446359873,
- -0.05958399549126625,
- -0.07599437236785889,
- 0.12591584026813507,
- 0.015195772983133793,
- 0.030811861157417297,
- -0.06300928443670273,
- -0.006395344156771898,
- -0.05487364903092384,
- -0.03377687186002731,
- -0.030180133879184723,
- -0.024719567969441414,
- -0.03618417680263519,
- -0.02339167706668377,
- -0.0062385438941419125,
- 0.01761697046458721,
- 0.00683141965419054,
- -0.06589824706315994,
- -0.012728075496852398,
- -0.06159379705786705,
- 0.01287622470408678,
- 0.0507139191031456,
- 0.020041659474372864,
- -0.01562768779695034,
- -0.0005176630802452564,
- -0.062293943017721176,
- -0.12031181156635284,
- 0.012346369214355946,
- 0.018987802788615227,
- -0.012450618669390678,
- -0.06134698912501335,
- 0.01612665504217148,
- 0.0025569454301148653,
- 0.045147381722927094,
- 0.04405633360147476,
- 0.0630422979593277,
- -0.06258472055196762,
- -0.0441211499273777,
- -0.09945278614759445,
- 0.03432251513004303,
- -0.026658130809664726,
- 0.03024824894964695,
- 0.06085669994354248,
- 0.03948960825800896,
- 0.06605443358421326,
- 0.020009655505418777,
- 0.07741320878267288,
- 0.04610326141119003,
- -0.061832819133996964,
- -0.027363019064068794,
- 0.022823212668299675,
- -0.0001167258305940777,
- 0.010095212608575821,
- 0.028130898252129555,
- 0.0013624454149976373,
- 0.028204383328557014,
- -0.06480804830789566,
- 0.050544556230306625,
- 0.040185775607824326,
- 0.00601342786103487,
- 0.037229862064123154,
- 0.061411309987306595,
- 0.04638601839542389,
- -0.029560483992099762,
- 0.058161988854408264,
- -0.03238685056567192,
- -0.08824214339256287,
- 0.03874688595533371,
- -0.1204143762588501,
- -0.04407177120447159,
- -0.05853345990180969,
- 0.03293250873684883,
- 0.003789312904700637,
- 0.09325473755598068,
- -0.0034025495406240225,
- 0.06888299435377121,
- -0.0012603418435901403,
- 0.006016249302774668,
- -0.09713049232959747,
- -0.04365101084113121,
- -0.01151007879525423,
- -0.020289450883865356,
- 0.0020179336424916983,
- -0.021357376128435135,
- 0.011759961023926735,
- -0.007011694833636284,
- -0.04311177879571915,
- 0.0025337538681924343,
- 0.0453188419342041,
- 0.044348444789648056,
- -0.030937425792217255,
- -0.01195125374943018,
- -0.04112972319126129,
- -0.022997761145234108,
- -0.027240177616477013,
- 0.028057869523763657,
- 0.2130003720521927,
- 0.11552093923091888,
- 0.10491519421339035,
- 0.049055833369493484,
- 0.049525946378707886,
- 0.06306736171245575,
- 0.010801238939166069,
- 0.02568044327199459,
- 0.04136650264263153,
- 0.04665348678827286,
- -0.05713532865047455,
- -0.03662809357047081,
- 0.022313522174954414,
- 0.008588635362684727,
- 0.01571914181113243,
- -0.0013827583752572536,
- 0.04860222712159157,
- -0.02840079925954342,
- 0.0015163233038038015,
- 0.036395084112882614,
- 0.03233982250094414,
- 0.046077050268650055,
- 0.09845007210969925,
- -0.09540339559316635,
- -0.03238030895590782,
- -0.08713996410369873,
- 0.014487112872302532,
- -0.027098398655653,
- -4.658577049830837e-33,
- -0.05060450732707977,
- 0.014427725225687027,
- 0.04811234399676323,
- -0.05023530125617981,
- -0.003353942884132266,
- 0.04807395115494728,
- -0.045325230807065964,
- 0.015920542180538177,
- -0.08441077172756195,
- 0.10514011234045029,
- -0.04052203148603439,
- -0.07651852816343307,
- 0.006123092956840992,
- 0.012681642547249794,
- 0.01222554873675108,
- 0.00926154013723135,
- -0.01899019442498684,
- -0.007873430848121643,
- 0.05382207781076431,
- 0.055438198149204254,
- -0.03300146386027336,
- 0.0442652553319931,
- -0.021016493439674377,
- 0.02285735122859478,
- 0.07160677760839462,
- -0.06405117362737656,
- -0.032462555915117264,
- -0.02256227657198906,
- 0.07070517539978027,
- 0.017861109226942062,
- -0.03196972608566284,
- -0.04725602641701698,
- -0.010659660212695599,
- -0.020778236910700798,
- -0.015617545694112778,
- -0.0168397706001997,
- -0.018635280430316925,
- -0.07168835401535034,
- 0.01861044578254223,
- -0.0522625707089901,
- -0.004176861606538296,
- 0.03248041868209839,
- 0.014204383827745914,
- 0.06666074693202972,
- -0.016149356961250305,
- 0.10439883172512054,
- 0.007963988929986954,
- 0.062481652945280075,
- -0.035388536751270294,
- 0.037737466394901276,
- -0.07802774757146835,
- -0.017150580883026123,
- -0.19236262142658234,
- -0.01306613814085722,
- 0.016489963978528976,
- -0.07825002819299698,
- 0.012720214203000069,
- 0.02083221822977066,
- -0.021428674459457397,
- -0.04030990973114967,
- 0.01657138578593731,
- 0.053046006709337234,
- -0.14272308349609375,
- 0.03087596967816353,
- -0.04264865070581436,
- 0.007691257167607546,
- 0.024474207311868668,
- 0.009571955539286137,
- -0.011071497574448586,
- -0.023225998505949974,
- -0.08407243341207504,
- 0.004942010622471571,
- 0.10186249017715454,
- 0.04935541749000549,
- -0.02628580667078495,
- 0.01663327030837536,
- -0.001835252856835723,
- 0.023439140990376472,
- -0.007627385202795267,
- 0.02292408049106598,
- -0.005161561071872711,
- 0.02064150758087635,
- -0.00243886886164546,
- 0.07068489491939545,
- 0.03304559364914894,
- 0.0655374675989151,
- 0.020192846655845642,
- -0.12071029841899872,
- 0.025002464652061462,
- -0.07354950904846191,
- -0.1037081703543663,
- -0.009036467410624027,
- 0.11085966229438782,
- 0.023479348048567772,
- 0.030945898965001106,
- 3.016947026345695e-33,
- -0.007999165914952755,
- -0.1165722906589508,
- 0.042812589555978775,
- 0.06889576464891434,
- -0.014477669261395931,
- -0.02180507406592369,
- 0.06107185035943985,
- -0.042372722178697586,
- 0.01885707676410675,
- 0.037998951971530914,
- -0.06011820584535599,
- 0.02382596582174301,
- 0.06431636959314346,
- 0.03040795773267746,
- 0.07011424005031586,
- -0.029691267758607864,
- 0.0234720129519701,
- -0.002516933251172304,
- 0.0404987595975399,
- -0.00779884634539485,
- 0.015469738282263279,
- 0.006631537806242704,
- 0.06488581001758575,
- 0.003577129915356636,
- -0.03213149681687355,
- 0.043437451124191284,
- -0.04587296023964882,
- -0.0664556473493576,
- -0.023745471611618996,
- 0.013268928043544292,
- -0.05187185853719711,
- -0.06209179759025574,
- 0.04834954813122749,
- 0.026601532474160194,
- -0.0995979979634285,
- 0.005287909414619207,
- 0.07685921341180801,
- -0.011124352924525738,
- -0.02152618020772934,
- 0.017430709674954414,
- 0.022201532498002052,
- 0.008059455081820488,
- 0.006260537542402744,
- 0.048608217388391495,
- -0.013994206674396992,
- -0.009714710526168346,
- 0.02297859452664852,
- 0.045219216495752335,
- 0.021150464192032814,
- -0.0012903684983029962,
- -0.07048310339450836,
- -0.008186550810933113,
- -0.005144788883626461,
- 0.019153939560055733,
- -0.04027517884969711,
- 0.11921815574169159,
- 0.1190120205283165,
- -0.0227830670773983,
- 0.021751465275883675,
- 0.01203769538551569,
- -0.0408477857708931,
- 0.04750536009669304,
- 0.019427858293056488,
- 0.09160858392715454,
- -0.03597487881779671,
- 0.00558335380628705,
- -0.0050137098878622055,
- 0.015058244578540325,
- 0.0030029742047190666,
- -0.03705449402332306,
- 0.02428816258907318,
- 0.01429389975965023,
- -0.03874174505472183,
- 0.07262002676725388,
- -0.013178108260035515,
- 0.05562145262956619,
- -0.055535461753606796,
- -0.08164836466312408,
- 0.010547425597906113,
- -0.042832151055336,
- -0.01138329692184925,
- 0.009953655302524567,
- 0.0077033150009810925,
- 0.09233802556991577,
- 0.04053489863872528,
- -0.06893322616815567,
- 0.05729448422789574,
- -0.05118599906563759,
- 0.029121151193976402,
- -0.0757659524679184,
- -0.019416965544223785,
- -0.004364038817584515,
- -0.006220362614840269,
- 0.016145452857017517,
- -0.056421272456645966,
- -1.1215603556991027e-8,
- -0.029060158878564835,
- -0.015432298183441162,
- 0.011368345469236374,
- -0.042404357343912125,
- 0.062175363302230835,
- -0.048172228038311005,
- 0.0464663989841938,
- 0.03520495072007179,
- -0.037072520703077316,
- 0.046155694872140884,
- -0.0014666809001937509,
- 0.05658715218305588,
- -0.12202571332454681,
- -0.03755231946706772,
- -0.007500716019421816,
- -0.013914814218878746,
- 0.01994502730667591,
- -0.052768275141716,
- -0.011168942786753178,
- 0.055980134755373,
- 0.025209767743945122,
- 0.020938102155923843,
- -0.0066357930190861225,
- -0.00964809488505125,
- -0.0476963073015213,
- -0.05948660522699356,
- 0.08499884605407715,
- 0.15119357407093048,
- 0.08312468975782394,
- -0.060801032930612564,
- -0.036046162247657776,
- 0.08347629010677338,
- 0.007013957481831312,
- -0.06392645090818405,
- -0.000979206757619977,
- -0.017114104703068733,
- 0.05760199949145317,
- 0.03173045441508293,
- -0.01055887807160616,
- 0.020283594727516174,
- -0.05867261067032814,
- -0.10331352800130844,
- -0.02088962309062481,
- -0.08093050122261047,
- 0.04998563230037689,
- -0.03587916120886803,
- -0.023172644898295403,
- -0.01725171133875847,
- 0.03877789527177811,
- -0.06180661916732788,
- -0.03710700199007988,
- -0.021056445315480232,
- 0.09548242390155792,
- 0.07347726076841354,
- 0.07425565272569656,
- -0.025049686431884766,
- -0.0819934532046318,
- -0.04676363989710808,
- -0.01126194279640913,
- 0.012500536628067493,
- 0.112416572868824,
- -0.039705246686935425,
- 0.07386422902345657,
- -0.07255171984434128
- ]
- },
- {
- "keyword": "credit union",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.08022301644086838,
- 0.01861175335943699,
- -0.030244629830121994,
- 0.027086708694696426,
- 0.0014922807458788157,
- 0.08318748325109482,
- 0.062463436275720596,
- -0.0045466348528862,
- 0.0051702288910746574,
- -0.049224697053432465,
- -0.042906440794467926,
- -0.08013966679573059,
- -0.0047628930769860744,
- -0.011007712222635746,
- -0.04258882626891136,
- -0.07979186624288559,
- 0.05623011663556099,
- 0.0042050243355333805,
- 0.054291874170303345,
- -0.0554155670106411,
- -0.0826977789402008,
- 0.04189678654074669,
- -0.05277504399418831,
- 0.030403826385736465,
- 0.06603961437940598,
- 0.02193578891456127,
- -0.07335364073514938,
- 0.02095874585211277,
- -0.08523307740688324,
- -0.08984441310167313,
- -0.014631076715886593,
- -0.023227261379361153,
- 0.05580412968993187,
- -0.01684349961578846,
- -0.010028457269072533,
- -0.040976956486701965,
- 0.021962296217679977,
- 0.052248481661081314,
- 0.036602869629859924,
- -0.012138836085796356,
- -0.0028676362708210945,
- -0.04278627038002014,
- 0.03608043119311333,
- -0.0691465437412262,
- 0.026362644508481026,
- 0.0545865036547184,
- 0.027749566361308098,
- 0.03467460349202156,
- 0.001445826143026352,
- 0.08533255755901337,
- 0.07093340903520584,
- -0.02518654242157936,
- -0.0058128200471401215,
- 0.005905259866267443,
- -0.014678185805678368,
- 0.02278960309922695,
- 0.021791310980916023,
- -0.05770447477698326,
- 0.004588393494486809,
- -0.009510026313364506,
- 0.032411981374025345,
- -0.03179095312952995,
- 0.0042980206198990345,
- 0.07527569681406021,
- 0.07859142869710922,
- 0.016930509358644485,
- -0.03974762558937073,
- 0.1652652621269226,
- -0.06379253417253494,
- -0.0777093842625618,
- -0.0020692574325948954,
- -0.05130201578140259,
- -0.08055382966995239,
- 0.020189674571156502,
- 0.06603952497243881,
- 0.09825458377599716,
- 0.027032865211367607,
- 0.010878588072955608,
- 0.04870230332016945,
- 0.03547036275267601,
- -0.06358890980482101,
- -0.023470036685466766,
- -0.05218007415533066,
- 0.04428541660308838,
- -0.0034587557893246412,
- 0.005114765837788582,
- 0.0009583125938661397,
- 0.005343274679034948,
- -0.034449249505996704,
- -0.09866517782211304,
- 0.0038011057768017054,
- 0.04387427866458893,
- 0.09410551935434341,
- -0.052878204733133316,
- 0.028072034940123558,
- -0.05150434374809265,
- -0.10342688858509064,
- -0.04585295915603638,
- 0.0368187315762043,
- 0.1430758535861969,
- 0.04964917525649071,
- 0.10023544728755951,
- -0.06455996632575989,
- -0.003953114617615938,
- 0.04589151591062546,
- 0.010836677625775337,
- 0.030199779197573662,
- 0.051655035465955734,
- 0.1165766790509224,
- -0.052987780421972275,
- 0.03308916091918945,
- -0.01697804220020771,
- -0.03607907146215439,
- -0.08990002423524857,
- -0.04067276045680046,
- 0.08295883238315582,
- -0.04163601994514465,
- -0.027621379122138023,
- 0.05009973794221878,
- 0.0535808689892292,
- -0.007141852285712957,
- 0.07270248979330063,
- -0.14195431768894196,
- -0.04187159240245819,
- -0.0714188814163208,
- -0.01958162523806095,
- 0.02286543883383274,
- -1.6746109052203616e-33,
- -0.004356433171778917,
- -0.023764049634337425,
- 0.08612940460443497,
- -0.015089674852788448,
- 0.051526762545108795,
- 0.007560123223811388,
- 0.017026890069246292,
- 0.02486419677734375,
- -0.08603228628635406,
- 0.10773095488548279,
- -0.02377021685242653,
- 0.0026810928247869015,
- 0.006717205047607422,
- 0.0019800893496721983,
- -0.04177477955818176,
- -0.012882774695754051,
- -0.04759318009018898,
- -0.00932199228554964,
- -0.015842067077755928,
- 0.07440244406461716,
- -0.02010767161846161,
- 0.07513260841369629,
- 0.02799278311431408,
- 0.051502734422683716,
- 0.046633798629045486,
- -0.042518578469753265,
- -0.05736028403043747,
- 0.004686901345849037,
- 0.06667766720056534,
- 0.009803900495171547,
- -0.022645428776741028,
- 0.0472680926322937,
- 0.009550118818879128,
- 0.05428643524646759,
- -0.040076494216918945,
- -0.015741832554340363,
- -0.021896179765462875,
- -0.05826990678906441,
- -0.013982851058244705,
- -0.033629417419433594,
- 0.0039039242547005415,
- 0.02019692026078701,
- -0.040837302803993225,
- -0.004158077295869589,
- -0.010568763129413128,
- 0.03075777180492878,
- 0.026407798752188683,
- -0.028727000579237938,
- 0.0024904063902795315,
- 0.11578337103128433,
- -0.009170507080852985,
- 0.0475023053586483,
- -0.09768161922693253,
- -0.01603996753692627,
- -0.005960540380328894,
- -0.04110591858625412,
- 0.003014923073351383,
- 0.022224951535463333,
- 0.0021958164870738983,
- -0.04859576374292374,
- -0.006132378242909908,
- -0.028405340388417244,
- -0.10242129862308502,
- -0.011350778862833977,
- -0.061263155192136765,
- 0.08154956996440887,
- 0.0218752883374691,
- -0.019135532900691032,
- 0.010772116482257843,
- 0.016820939257740974,
- 0.00446094386279583,
- 0.015019625425338745,
- -0.026358909904956818,
- 0.011430317535996437,
- 0.010799956507980824,
- -0.021313797682523727,
- -0.04457572102546692,
- 0.08459961414337158,
- -0.019231291487812996,
- 0.024135401472449303,
- -0.0565352737903595,
- 0.026416603475809097,
- 0.026173967868089676,
- 0.08675277978181839,
- 0.06280483305454254,
- 0.07470116019248962,
- 0.032759230583906174,
- -0.05459374561905861,
- 0.025559836998581886,
- -0.014971090480685234,
- -0.015602003782987595,
- 0.030350252985954285,
- 0.11352823674678802,
- 0.055408328771591187,
- 0.06764921545982361,
- 1.380278874717969e-33,
- 0.003928590100258589,
- -0.07108840346336365,
- -0.022236639633774757,
- 0.002060640137642622,
- -0.015258205123245716,
- -0.0302662905305624,
- 0.013872858136892319,
- -0.032840948551893234,
- 0.013055222108960152,
- 0.11485247313976288,
- 0.04721406102180481,
- 0.010965893976390362,
- 0.00827672891318798,
- 0.007040382828563452,
- 0.06332161277532578,
- -0.006888274569064379,
- 0.0599738284945488,
- -0.011887750588357449,
- -0.014704080298542976,
- -0.006193666253238916,
- 0.06891252100467682,
- 0.005286941770464182,
- 0.05941517651081085,
- -0.07011134177446365,
- 0.02391178160905838,
- 0.04189112409949303,
- -0.08421465009450912,
- -0.03874044492840767,
- 0.03727929666638374,
- -0.017250003293156624,
- -0.06818458437919617,
- -0.02713080123066902,
- -0.024519773200154305,
- 0.09162799268960953,
- -0.05779390037059784,
- -0.06565015763044357,
- -0.022553546354174614,
- 0.10961993783712387,
- 0.05713030323386192,
- -0.0540274903178215,
- 0.003308349521830678,
- -0.03903619945049286,
- -0.009405615739524364,
- 0.09729765355587006,
- 0.01998555101454258,
- -0.09423810243606567,
- 0.0012652281438931823,
- -0.01343187689781189,
- -0.03272353485226631,
- 0.06326670944690704,
- -0.189533531665802,
- -0.015073342248797417,
- 0.020104970782995224,
- 0.009521353989839554,
- -0.043471626937389374,
- 0.06613869220018387,
- 0.04861879348754883,
- 0.003886026330292225,
- -0.02293427847325802,
- 0.0004385481297504157,
- 0.026117604225873947,
- 0.04504220560193062,
- 0.0005304695223458111,
- 0.08516829460859299,
- 0.047882452607154846,
- -0.016557816416025162,
- -0.01706884428858757,
- -0.008072317577898502,
- -0.022721607238054276,
- 0.03134557232260704,
- 0.0251946859061718,
- 0.012268169783055782,
- 0.0034867548383772373,
- 0.013563589192926884,
- -0.08458178490400314,
- 0.0032572560012340546,
- -0.01741708442568779,
- 0.011459722183644772,
- -0.10933209955692291,
- 0.05575122311711311,
- -0.07337686419487,
- 0.024072404950857162,
- 0.03649338334798813,
- 0.09973100572824478,
- 0.04413329437375069,
- -0.02182227373123169,
- 0.07663000375032425,
- -0.030853884294629097,
- 0.01187099702656269,
- 0.023810142651200294,
- -0.08817555755376816,
- -0.02453889138996601,
- 0.06387448310852051,
- -0.05282598361372948,
- -0.08105263859033585,
- -1.2314974817684288e-8,
- -0.011411438696086407,
- -0.028168044984340668,
- -0.09287795424461365,
- -0.014921387657523155,
- 0.036417484283447266,
- -0.03888970613479614,
- -0.08058170974254608,
- 0.020057737827301025,
- -0.051873479038476944,
- 0.03222618252038956,
- 0.09219129383563995,
- 0.011666309088468552,
- -0.030059128999710083,
- -0.05794674903154373,
- -0.048831257969141006,
- -0.047346875071525574,
- 0.009747819975018501,
- -0.05546754598617554,
- 0.006542923394590616,
- 0.036289721727371216,
- 0.008229411207139492,
- 0.033151596784591675,
- -0.023615991696715355,
- 0.03590887412428856,
- -0.09600383788347244,
- 0.0036497446708381176,
- 0.08330082148313522,
- 0.13846077024936676,
- 0.04944611340761185,
- -0.033445876091718674,
- -0.024321382865309715,
- 0.07515884190797806,
- 0.03157670423388481,
- -0.10584476590156555,
- -0.002251722849905491,
- -0.002151555148884654,
- 0.05734466388821602,
- -0.016720252111554146,
- -0.043791547417640686,
- -0.06907420605421066,
- -0.0014899290399625897,
- 0.0015639540506526828,
- 0.026563387364149094,
- -0.07264779508113861,
- 0.04281143471598625,
- -0.05715955048799515,
- -0.02255210280418396,
- -0.04813680052757263,
- 0.08842017501592636,
- -0.04570953920483589,
- -0.04480753466486931,
- 0.022115064784884453,
- 0.029596911743283272,
- 0.06893060356378555,
- 0.018641065806150436,
- -0.05933297425508499,
- -0.011536858975887299,
- -0.0902068018913269,
- -0.04533600062131882,
- -0.012527067214250565,
- 0.05362981930375099,
- -0.02381826937198639,
- 0.05733912065625191,
- -0.01816205121576786
- ]
- },
- {
- "keyword": "manufacturer",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07025763392448425,
- 0.04441065341234207,
- -0.007835724391043186,
- -0.0034097819589078426,
- -0.02797563374042511,
- -0.05726570263504982,
- 0.027413468807935715,
- 0.040584348142147064,
- -0.026311567053198814,
- -0.05045448988676071,
- 0.026368971914052963,
- -0.021986117586493492,
- 0.01912582293152809,
- -0.04667627438902855,
- -0.11172567307949066,
- -0.011699385941028595,
- -0.02367778867483139,
- 0.012145144864916801,
- 0.00013056192256044596,
- -0.04071437194943428,
- -0.09295368939638138,
- -0.01978387124836445,
- 0.031058788299560547,
- 0.07542647421360016,
- -0.051344044506549835,
- 0.074987031519413,
- 0.018849903717637062,
- 0.02756611444056034,
- 0.06810084730386734,
- -0.12732051312923431,
- -0.03145291283726692,
- 0.002626490080729127,
- 0.09845513850450516,
- -0.029427597299218178,
- 0.03417031839489937,
- 0.0036260185297578573,
- -0.010132672265172005,
- -0.026878327131271362,
- 0.013232983648777008,
- 0.0046960883773863316,
- -0.02522759698331356,
- -0.030717287212610245,
- -0.025382116436958313,
- -0.011167154647409916,
- 0.08240853250026703,
- 0.036290910094976425,
- 0.057213202118873596,
- 0.021872365847229958,
- 0.010324027389287949,
- 0.08577015995979309,
- -0.05128822103142738,
- -0.011745345778763294,
- 0.008799389936029911,
- -0.042773179709911346,
- -0.002804418792948127,
- -0.010653902776539326,
- -0.0406799241900444,
- -0.025514807552099228,
- 0.005610138643532991,
- -0.02950938045978546,
- 0.07874682545661926,
- -0.03375547006726265,
- -0.09002889692783356,
- 0.04372944310307503,
- 0.05595513805747032,
- 0.048838626593351364,
- -0.004391586873680353,
- -0.0380711629986763,
- -0.060813114047050476,
- -0.04340355843305588,
- 0.03552660346031189,
- -0.08714096993207932,
- 0.0003399006964173168,
- 0.08911915868520737,
- -0.03687869384884834,
- -0.0020604990422725677,
- 0.03394860774278641,
- -0.01147662103176117,
- 0.049674320966005325,
- -0.015087309293448925,
- 0.04330021142959595,
- -0.013856909237802029,
- -0.045795392245054245,
- 0.01222872082144022,
- 0.007540433201938868,
- 0.010863330215215683,
- 0.08432645350694656,
- 0.12244820594787598,
- 0.07608537375926971,
- -0.0026982794515788555,
- -0.022363705560564995,
- -0.014477257616817951,
- -0.01486768014729023,
- 0.036719903349876404,
- -0.10159889608621597,
- 0.07558347284793854,
- 0.0018097278662025928,
- -0.005761381704360247,
- 0.008298151195049286,
- 0.19767767190933228,
- 0.016340799629688263,
- 0.016711769625544548,
- -0.02276083081960678,
- -0.013356324285268784,
- -0.06689437478780746,
- -0.02034931443631649,
- -0.03948799893260002,
- 0.09346511960029602,
- 0.022065358236432076,
- 0.04300728812813759,
- -0.0010365035850554705,
- 0.01227309089154005,
- -0.08483704924583435,
- -0.007583950646221638,
- -0.014968146570026875,
- -0.05658436566591263,
- -0.05200223997235298,
- 0.06145563721656799,
- 0.08307618647813797,
- -0.06799070537090302,
- 0.0033291608560830355,
- 0.008036000654101372,
- -0.015607151202857494,
- -0.05761130526661873,
- -0.04022044688463211,
- -0.0038023877423256636,
- -0.05514219403266907,
- -5.202094780924354e-33,
- -0.0032279149163514376,
- 0.06492142379283905,
- -0.003781963372603059,
- 0.07555356621742249,
- -0.06714245676994324,
- 0.006491806358098984,
- 0.03183463215827942,
- 0.02558496594429016,
- -0.02580128237605095,
- -0.0027693200390785933,
- -0.048291321843862534,
- -0.07662855088710785,
- -0.03438301384449005,
- -0.0200826283544302,
- 0.11536175012588501,
- -0.056671492755413055,
- -0.03962532803416252,
- -0.039232734590768814,
- -0.026689724996685982,
- -0.023208528757095337,
- -0.055007923394441605,
- 0.060377348214387894,
- -0.006708518136292696,
- 0.08251115679740906,
- 0.04998530447483063,
- -0.041394997388124466,
- 0.00044082675594836473,
- 0.020384930074214935,
- 0.010640827007591724,
- 0.029942495748400688,
- 0.08952097594738007,
- 0.02193729765713215,
- 0.01433531567454338,
- -0.09816053509712219,
- 0.0025500417686998844,
- -0.0046262433752417564,
- -0.10026994347572327,
- -0.0895586907863617,
- 0.0048547121696174145,
- 0.05165918543934822,
- 0.03838353604078293,
- 0.033174268901348114,
- -0.01021350547671318,
- 0.04788192734122276,
- -0.03615419939160347,
- -0.03426516428589821,
- -0.00759415328502655,
- 0.03902710601687431,
- -0.012965102680027485,
- 0.021755896508693695,
- -0.08641701936721802,
- 0.019687021151185036,
- -0.0055287848226726055,
- -0.02448694035410881,
- 0.08449195325374603,
- -0.03614550083875656,
- -0.01920267380774021,
- -0.021569108590483665,
- 0.026138532906770706,
- 0.03348343074321747,
- 0.00546699482947588,
- 0.1983196884393692,
- -0.023903941735625267,
- 0.06032593548297882,
- 0.03806278854608536,
- 0.042310573160648346,
- 0.048346005380153656,
- 0.02538359723985195,
- -0.024377258494496346,
- -0.017744280397892,
- -0.025362331420183182,
- -0.06403438001871109,
- 0.058760762214660645,
- -0.00112224614713341,
- -0.029656505212187767,
- 0.04224057123064995,
- -0.0680869072675705,
- 0.03501288592815399,
- -0.028142638504505157,
- -0.010861942544579506,
- -0.07782711833715439,
- 0.04063254967331886,
- 0.014193463139235973,
- 0.030796261504292488,
- -0.041047222912311554,
- 0.002419139724224806,
- -0.03793211653828621,
- -0.006316735874861479,
- 0.026269782334566116,
- 0.07230974733829498,
- -0.07953942567110062,
- -0.0039034956134855747,
- 0.001720440573990345,
- 0.06322545558214188,
- -0.04800006374716759,
- 4.185295106198952e-33,
- -0.010664572939276695,
- -0.062126580625772476,
- 0.08148501813411713,
- -0.005870977882295847,
- 0.008421807549893856,
- -0.06352069973945618,
- 0.007982844486832619,
- -0.04679364338517189,
- -0.0012641511857509613,
- 0.02414982207119465,
- 0.008091689087450504,
- 0.0015004343586042523,
- 0.04799485206604004,
- 0.0532710999250412,
- 0.00689350999891758,
- 0.076533243060112,
- 0.040460579097270966,
- -0.059532374143600464,
- -0.019959978759288788,
- -0.06237759068608284,
- 0.005331940948963165,
- -0.030479416251182556,
- -0.030843116343021393,
- -0.05399945005774498,
- -0.045004308223724365,
- 0.039663996547460556,
- 0.05033552274107933,
- 0.0009648693958297372,
- 0.04424164071679115,
- -0.0542558915913105,
- -0.0019306275062263012,
- -0.05802492797374725,
- -0.02942585200071335,
- 0.0931674987077713,
- -0.012500805780291557,
- 0.12290013581514359,
- -0.01599525474011898,
- 0.03805918991565704,
- 0.008520863018929958,
- -0.0764678418636322,
- 0.06427711248397827,
- 0.030258258804678917,
- -0.006962291896343231,
- 0.17324526607990265,
- -0.03774194046854973,
- -0.053440626710653305,
- 0.003609949257224798,
- -0.12770392000675201,
- 0.12137945741415024,
- -0.0140521926805377,
- -0.034674838185310364,
- 0.00047006315435282886,
- 0.08926740288734436,
- -0.07130862027406693,
- -0.04449938237667084,
- -0.029942700639367104,
- 0.036877717822790146,
- -0.0016689506592229009,
- -0.00901188887655735,
- -0.00953702162951231,
- 0.048639245331287384,
- 0.020121505483984947,
- 0.016784925013780594,
- 0.07452938705682755,
- -0.01026014145463705,
- 0.06489871442317963,
- 0.044374603778123856,
- 0.014479224570095539,
- 0.009119202382862568,
- -0.06002071499824524,
- 0.10862385481595993,
- 0.0035109634045511484,
- -0.06386685371398926,
- -0.02434251643717289,
- -0.03378545120358467,
- 0.0010851388797163963,
- -0.05622353404760361,
- 0.02386082522571087,
- -0.0653744488954544,
- -0.04839244857430458,
- 0.11208589375019073,
- -0.032618023455142975,
- -0.01462307944893837,
- 0.1341603845357895,
- -0.057247698307037354,
- -0.005718568339943886,
- 0.02820274978876114,
- -0.012752993032336235,
- -0.01636478304862976,
- 0.028620945289731026,
- 0.012403401546180248,
- 0.02611367590725422,
- -0.10702327638864517,
- 0.01766509935259819,
- -0.016354547813534737,
- -1.1491794182916237e-8,
- -0.023816246539354324,
- -0.08180265873670578,
- 0.03175254166126251,
- -0.05363460257649422,
- 0.047499626874923706,
- -0.048093270510435104,
- 0.05416901409626007,
- -0.04952488839626312,
- -0.0033300735522061586,
- 0.06294107437133789,
- 0.026943588629364967,
- -0.030090512707829475,
- 0.010215824469923973,
- 0.07345350086688995,
- 0.04949149489402771,
- -0.03136255964636803,
- -0.05446504428982735,
- 0.13033601641654968,
- -0.03196124732494354,
- -0.03662359341979027,
- 0.012304762378334999,
- 0.05166231840848923,
- 0.11731161177158356,
- -0.018633006140589714,
- -0.039781562983989716,
- -0.003752360586076975,
- 0.02455819956958294,
- -0.04655952751636505,
- 0.04545813053846359,
- 0.05826833099126816,
- -0.012942630797624588,
- 0.03533908352255821,
- 0.059081122279167175,
- -0.03369644284248352,
- 0.00580883352085948,
- -0.10560957342386246,
- -0.012292454019188881,
- -0.034147147089242935,
- 0.009777366183698177,
- -0.033342957496643066,
- -0.012875010259449482,
- 0.0679922103881836,
- -0.030575521290302277,
- 0.040526989847421646,
- 0.06257814913988113,
- -0.01970306970179081,
- -0.058060936629772186,
- -0.0009443563176319003,
- -0.026164701208472252,
- 0.022849181666970253,
- -0.011530217714607716,
- -0.008483887650072575,
- 0.018391672521829605,
- 0.0280652716755867,
- -0.1147838830947876,
- -0.047105416655540466,
- 0.021266991272568703,
- -0.037377361208200455,
- -0.017360230907797813,
- -0.038474489003419876,
- 0.07783447951078415,
- -0.027662599459290504,
- 0.1299581080675125,
- 0.05173240974545479
- ]
- },
- {
- "keyword": "factory",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.10015883296728134,
- 0.023600062355399132,
- -0.015885384753346443,
- -0.024588190019130707,
- -0.024497494101524353,
- 0.004261160735040903,
- 0.08834054321050644,
- -0.005858817137777805,
- -0.11311689764261246,
- -0.06610792875289917,
- 0.1039767935872078,
- -0.03356452286243439,
- 0.05287128686904907,
- -0.04298482835292816,
- -0.0494392104446888,
- 0.022630887106060982,
- 0.04312751814723015,
- -0.04974767938256264,
- -0.03744608536362648,
- -0.06791595369577408,
- -0.03352551907300949,
- -0.04779598489403725,
- -0.035738516598939896,
- -0.015845561400055885,
- -0.08565602451562881,
- 0.10841766744852066,
- -0.00489551667124033,
- 0.05931904539465904,
- 0.011252428404986858,
- -0.1350170224905014,
- -0.02080204337835312,
- 0.05138693004846573,
- 0.013672483153641224,
- -0.015330012887716293,
- 0.04588807374238968,
- 0.03529779613018036,
- 0.04252350330352783,
- 0.001689049880951643,
- 0.06986295431852341,
- -0.057971011847257614,
- 0.01319474633783102,
- -0.07111260294914246,
- -0.05436937138438225,
- 0.002746368758380413,
- 0.059473615139722824,
- 0.040134504437446594,
- 0.04564925283193588,
- 0.043920353055000305,
- 0.0924685150384903,
- 0.02298254333436489,
- -0.015822581946849823,
- 0.008354592137038708,
- -0.00552697479724884,
- -0.018829086795449257,
- 0.0023367099929600954,
- -0.01375986635684967,
- -0.015620731748640537,
- -0.015141844749450684,
- 0.02296609804034233,
- -0.02824767678976059,
- 0.07304692268371582,
- -0.07971205562353134,
- -0.08615229278802872,
- 0.0009671444422565401,
- 0.08364146202802658,
- -0.04845336824655533,
- -0.05139860510826111,
- -0.001886433339677751,
- -0.05191662907600403,
- 0.0015812665224075317,
- -0.06669595837593079,
- 0.0011301073245704174,
- -0.05145658180117607,
- 0.08298297971487045,
- -0.03626338765025139,
- 0.007376894820481539,
- 0.052250783890485764,
- -0.04342898353934288,
- 0.044649604707956314,
- 0.008293399587273598,
- -0.0068391007371246815,
- -0.004929636605083942,
- -0.027152767404913902,
- -0.01976087875664234,
- -0.008329721167683601,
- 0.038757193833589554,
- 0.03393682464957237,
- 0.028835168108344078,
- 0.028269199654459953,
- 0.03672034665942192,
- -0.09019797295331955,
- -0.03738144040107727,
- -0.0029159989207983017,
- 0.021500417962670326,
- -0.10495596379041672,
- 0.04221748188138008,
- 0.04115995764732361,
- 0.013993164524435997,
- 0.00595772685483098,
- 0.23429103195667267,
- 0.04150082916021347,
- 0.024361804127693176,
- 0.013044329360127449,
- -0.030773013830184937,
- -0.05214700102806091,
- -0.02192980982363224,
- -0.12072879076004028,
- 0.09493014216423035,
- -0.0037825871258974075,
- 0.009253780357539654,
- 0.017710905522108078,
- 0.0031634673941880465,
- -0.07068901509046555,
- -0.00782608613371849,
- -0.017339490354061127,
- -0.011489802971482277,
- -0.021774999797344208,
- -0.050877127796411514,
- -0.0175189021974802,
- 0.03789205104112625,
- 0.006502806209027767,
- 0.04322388395667076,
- -0.009129385463893414,
- 0.01918737217783928,
- -0.06114928051829338,
- -0.012313664890825748,
- -0.024552511051297188,
- -4.9341658229093685e-33,
- 0.015312214381992817,
- -0.03174034133553505,
- -0.0063795302994549274,
- 0.055802423506975174,
- 0.008780254051089287,
- 0.04667053371667862,
- 0.007257597986608744,
- 0.0286362636834383,
- -0.018860822543501854,
- 0.02591804228723049,
- -0.046397581696510315,
- -0.029593314975500107,
- -0.0714661180973053,
- -0.02751731500029564,
- 0.13164985179901123,
- -0.001509259920567274,
- -0.04376121237874031,
- -0.06036701425909996,
- -0.034690145403146744,
- -0.0034316040109843016,
- -0.08943959325551987,
- 0.0670376643538475,
- 0.017115188762545586,
- 0.08676803857088089,
- 0.03363083675503731,
- 0.004021560773253441,
- 0.03818555921316147,
- -0.04762154817581177,
- -0.018061557784676552,
- 0.040224045515060425,
- 0.05463309586048126,
- 0.03162810578942299,
- 0.023354072123765945,
- -0.03735889866948128,
- -0.0268919188529253,
- -0.034741975367069244,
- -0.04054423049092293,
- -0.07572851330041885,
- -0.012964841909706593,
- 0.0008006769348867238,
- -0.012449267320334911,
- 0.040687743574380875,
- -0.03996989130973816,
- 0.04144510626792908,
- -0.029963213950395584,
- -0.016766736283898354,
- 0.04800134524703026,
- 0.049818120896816254,
- 0.06118056923151016,
- 0.06857006251811981,
- -0.06688473373651505,
- 0.015737436711788177,
- 0.01677778549492359,
- -0.06094255670905113,
- -0.005798854399472475,
- -0.030119778588414192,
- -0.008797876536846161,
- -0.058759644627571106,
- 0.0438079871237278,
- 0.027696656063199043,
- 0.009627683088183403,
- 0.08601369708776474,
- 0.001320380950346589,
- 0.07528689503669739,
- -0.012517555616796017,
- -0.02711043506860733,
- 0.04292479529976845,
- -0.012681904248893261,
- 0.026832694187760353,
- 0.033466313034296036,
- 0.027255315333604813,
- -0.08317430317401886,
- 0.030745545402169228,
- 0.023766756057739258,
- -0.026315782219171524,
- 0.09813232719898224,
- 0.016391919925808907,
- 0.0922582596540451,
- -0.11172153800725937,
- -0.08268144726753235,
- 0.0018299845978617668,
- 0.05632822960615158,
- -0.023445837199687958,
- 0.01203492097556591,
- 0.03567064180970192,
- 0.023742204532027245,
- 0.006001345347613096,
- -0.041516516357660294,
- 0.048222292214632034,
- 0.054498832672834396,
- -0.08267151564359665,
- 0.004623302724212408,
- 0.013563034124672413,
- 0.04205559194087982,
- -0.00794288981705904,
- 3.660671242742996e-33,
- 0.06792263686656952,
- -0.049050360918045044,
- 0.021941814571619034,
- -0.006132279522716999,
- 0.06380367279052734,
- -0.037452228367328644,
- -0.009056790731847286,
- -0.021854642778635025,
- -0.05533331260085106,
- 0.13348037004470825,
- -0.03940670192241669,
- 0.006282011978328228,
- 0.1118985041975975,
- 0.0017069745808839798,
- 0.023980112746357918,
- 0.03338441252708435,
- 0.09660901129245758,
- -0.031879033893346786,
- 0.0021888921037316322,
- -0.021490221843123436,
- -0.025526253506541252,
- 0.017494959756731987,
- -0.021474173292517662,
- -0.01522119902074337,
- -0.09503546357154846,
- 0.04138856753706932,
- -0.07814214378595352,
- 0.0797233134508133,
- -0.0015557607403025031,
- 0.037354398518800735,
- 0.051974277943372726,
- -0.03890686109662056,
- 0.0435309112071991,
- 0.07188042998313904,
- -0.022754531353712082,
- 0.060629185289144516,
- 0.0385848768055439,
- 0.02947074919939041,
- 0.050739649683237076,
- -0.029830370098352432,
- 0.0633961409330368,
- -0.007703633513301611,
- -0.06501342356204987,
- 0.20088978111743927,
- -0.07170645892620087,
- -0.06901367008686066,
- -0.03564736619591713,
- -0.10279728472232819,
- 0.09038996696472168,
- 0.05002383515238762,
- -0.030155738815665245,
- 0.03963460028171539,
- 0.06249313801527023,
- -0.04200352355837822,
- -0.0877404510974884,
- -0.01939573511481285,
- 0.10624001175165176,
- -0.03415222093462944,
- -0.06595602631568909,
- 0.025994086638092995,
- -0.010041290894150734,
- 0.0006047707865945995,
- 0.007248346693813801,
- -0.008139480836689472,
- 0.008089849725365639,
- -0.018562491983175278,
- 0.06705868244171143,
- -0.017527487128973007,
- -0.012848359532654285,
- 0.006173085421323776,
- 0.04195857420563698,
- 0.04082504287362099,
- -0.04540707916021347,
- 0.03131056949496269,
- -0.026603367179632187,
- -0.020228033885359764,
- -0.0718689113855362,
- 0.014702056534588337,
- -0.005425524897873402,
- -0.08249180763959885,
- 0.011611279100179672,
- -0.07771318405866623,
- 0.04414227977395058,
- 0.05860773101449013,
- -0.0352952815592289,
- -0.04768054187297821,
- 0.07955744117498398,
- 0.04725969210267067,
- -0.035240449011325836,
- -0.010547168552875519,
- 0.014698990620672703,
- -0.013734602369368076,
- -0.09626202285289764,
- 0.008943067863583565,
- -0.029810337349772453,
- -1.2088223755313265e-8,
- -0.03632587194442749,
- 0.0026240404695272446,
- 0.061069056391716,
- 0.020421626046299934,
- 0.01397181861102581,
- -0.07885224372148514,
- -0.007003607228398323,
- 0.05504819378256798,
- 0.02821175754070282,
- 0.023607036098837852,
- 0.01198069378733635,
- -0.012117480859160423,
- 0.026429753750562668,
- 0.08701597154140472,
- 0.07355813682079315,
- 0.015616503544151783,
- -0.07375840842723846,
- 0.05744994059205055,
- -0.09198284894227982,
- -0.046921804547309875,
- 0.0040586781688034534,
- 0.02573554776608944,
- 0.06806978583335876,
- 0.031843818724155426,
- -0.023986319079995155,
- -0.01257613766938448,
- 0.009524392895400524,
- 0.04364226385951042,
- 0.07665015757083893,
- 0.08481555432081223,
- -0.005352025851607323,
- 0.039797600358724594,
- -0.006200216710567474,
- -0.0628037378191948,
- -0.10182452946901321,
- -0.09802965074777603,
- -0.008760442025959492,
- -0.015262026339769363,
- -0.012537802569568157,
- -0.12871059775352478,
- 0.014505617320537567,
- -0.02958580106496811,
- -0.01434761006385088,
- -0.0055387746542692184,
- 0.022214822471141815,
- -0.012496146373450756,
- -0.021142132580280304,
- -0.12301451712846756,
- -0.01888083666563034,
- 0.009665719233453274,
- -0.021851038560271263,
- 0.029080120846629143,
- 0.036831844598054886,
- 0.07259564101696014,
- -0.003626546123996377,
- -0.007347563747316599,
- -0.0013876863522455096,
- -0.03818703815340996,
- -0.02059149369597435,
- 0.02942799963057041,
- 0.09351621568202972,
- 0.012896338477730751,
- 0.08658041805028915,
- 0.0007761099841445684
- ]
- },
- {
- "keyword": "plant",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.025623423978686333,
- 0.06419215351343155,
- -0.030930183827877045,
- 0.05122516304254532,
- 0.017398957163095474,
- 0.0237691979855299,
- 0.1132284551858902,
- 0.023416128009557724,
- 0.06467430293560028,
- 0.024527588859200478,
- 0.06695925444364548,
- -0.08685829490423203,
- -0.03474849835038185,
- -0.07213211804628372,
- -0.05582895129919052,
- -0.0039435336366295815,
- -0.02786935307085514,
- 0.05426757410168648,
- -0.13662035763263702,
- -0.027945728972554207,
- -0.059349365532398224,
- 0.061900682747364044,
- -0.01440045889467001,
- 0.05150182545185089,
- -0.01697593554854393,
- 0.07622630894184113,
- -0.10173628479242325,
- 0.062486954033374786,
- 0.08301147818565369,
- -0.15384744107723236,
- -0.011900869198143482,
- 0.13834822177886963,
- 0.09857042878866196,
- -0.003159480169415474,
- -0.02485102042555809,
- 0.02275882102549076,
- -0.004605909809470177,
- -0.06124160811305046,
- 0.008377276360988617,
- 0.03505377471446991,
- -0.021309874951839447,
- -0.09963154792785645,
- 0.012339437380433083,
- -0.03805967792868614,
- -0.04195262864232063,
- 0.029024774208664894,
- 0.0030111197847872972,
- 0.003355766646564007,
- 0.014930312521755695,
- -0.03507396578788757,
- -0.038365207612514496,
- -0.011827615089714527,
- -0.04294441267848015,
- -0.029954683035612106,
- -0.027213342487812042,
- 0.03319071605801582,
- 0.014045278541743755,
- 0.02832787297666073,
- 0.026620998978614807,
- 0.011252383701503277,
- 0.1433611512184143,
- -0.021077383309602737,
- -0.0718827024102211,
- 0.027064727619290352,
- 0.03631957992911339,
- -0.0020642592571675777,
- -0.061239175498485565,
- 0.028215548023581505,
- 0.05687504634261131,
- -0.062451332807540894,
- 0.07127046585083008,
- 0.043862827122211456,
- -0.0038849764969199896,
- 0.06309197098016739,
- -0.03927994892001152,
- 0.004161594435572624,
- -0.009626951068639755,
- 0.01900060474872589,
- 0.07415082305669785,
- 0.0371113084256649,
- 0.02798439748585224,
- 0.05570027232170105,
- -0.04896264895796776,
- 0.02536267414689064,
- 0.04380359873175621,
- 0.007209131494164467,
- 0.01618090085685253,
- 0.08148760348558426,
- -0.03406976908445358,
- -0.00819039810448885,
- 0.004385046195238829,
- 0.029647622257471085,
- -0.0373004712164402,
- 0.009364087134599686,
- -0.17039571702480316,
- 0.08082497119903564,
- 0.04247543588280678,
- -0.13227660953998566,
- -0.05136997252702713,
- 0.17372876405715942,
- 0.03254209831357002,
- 0.0371084064245224,
- -0.024830639362335205,
- -0.06254904717206955,
- -0.03299012780189514,
- -0.047140344977378845,
- -0.10236673057079315,
- 0.007657461334019899,
- -0.007800307124853134,
- -0.005821846891194582,
- -0.07517055422067642,
- -0.025841349735856056,
- -0.12151577323675156,
- 0.02311892807483673,
- -0.04049224033951759,
- 0.016897162422537804,
- 0.02803097851574421,
- -0.03729961812496185,
- -0.039323460310697556,
- -0.03822693973779678,
- -0.00899473112076521,
- -0.015410663560032845,
- -0.0040605757385492325,
- 0.0013458388857543468,
- -0.038244832307100296,
- -0.06657012552022934,
- -0.038934126496315,
- -4.5160178704089105e-33,
- 0.022736981511116028,
- -0.017199739813804626,
- -0.009461176581680775,
- -0.00022306435857899487,
- 0.02905142679810524,
- -0.009657537564635277,
- 0.01693315990269184,
- -0.017241014167666435,
- -0.09495600312948227,
- -0.00411235773935914,
- -0.08341094851493835,
- -0.06782927364110947,
- -0.03391386568546295,
- -0.01020341832190752,
- 0.10783423483371735,
- -0.01770113594830036,
- -0.031890690326690674,
- -0.009834417141973972,
- -0.029558664187788963,
- -0.0028054185677319765,
- -0.050924308598041534,
- 0.07220594584941864,
- -0.06704249233007431,
- 0.03375694155693054,
- 0.01981852576136589,
- -0.11006886512041092,
- 0.04443291202187538,
- -0.08466391265392303,
- -0.025185439735651016,
- 0.003637452842667699,
- 0.0936112329363823,
- -0.02020755596458912,
- 0.03501863405108452,
- 0.006185651291161776,
- -0.02052498608827591,
- -0.060458578169345856,
- -0.007686271332204342,
- -0.06552055478096008,
- -0.03627731651067734,
- 0.006334713660180569,
- 0.0519041046500206,
- 0.052026476711034775,
- 0.06601741909980774,
- 0.023782197386026382,
- 0.05569656193256378,
- 0.04607006907463074,
- 0.05455772206187248,
- 0.01822563260793686,
- 0.05772487446665764,
- 0.024118172004818916,
- 0.009455577470362186,
- 0.02245273068547249,
- 0.02247333712875843,
- 0.007279941346496344,
- 0.036208897829055786,
- 0.04822321608662605,
- 0.0026805601082742214,
- 0.010714740492403507,
- 0.006569442804902792,
- 0.024234415963292122,
- 0.07843904197216034,
- 0.09223229438066483,
- -0.06547194719314575,
- 0.05759911611676216,
- 0.06081026792526245,
- 0.04197309538722038,
- -0.0849461704492569,
- 0.015452475287020206,
- 0.08511881530284882,
- 0.05302652344107628,
- -0.044163964688777924,
- -0.04830218479037285,
- 0.041803233325481415,
- 0.041296448558568954,
- -0.00126742129214108,
- 0.01344806794077158,
- 0.01779460720717907,
- 0.0279633067548275,
- -0.08481594920158386,
- 0.0006437798729166389,
- -0.03731471672654152,
- -0.029944663867354393,
- -0.0038056382909417152,
- 0.0422782376408577,
- -0.022533133625984192,
- 0.008566908538341522,
- -0.0942891463637352,
- -0.030771471560001373,
- 0.026044271886348724,
- 0.012188528664410114,
- 0.04441416263580322,
- -0.017538344487547874,
- 0.06544896215200424,
- -0.020764349028468132,
- -0.024135157465934753,
- 3.4537133399952396e-33,
- 0.02665768750011921,
- -0.008475939743220806,
- 0.01663949526846409,
- 0.13777658343315125,
- -0.01144228596240282,
- 0.021629251539707184,
- -0.06767753511667252,
- -0.02753588743507862,
- 0.001459436141885817,
- 0.06528603285551071,
- -0.0867907777428627,
- 0.0008576895343139768,
- 0.0927012711763382,
- 0.025974880903959274,
- 0.021278459578752518,
- 0.017985070124268532,
- 0.1323442906141281,
- 0.024651922285556793,
- -0.05061151087284088,
- 0.006748947314918041,
- -0.13889896869659424,
- 0.0063905189745128155,
- -0.0020658662542700768,
- -0.07561603933572769,
- -0.04502181336283684,
- 0.014203701168298721,
- 0.06326673179864883,
- -0.023150453343987465,
- -0.07049165666103363,
- -0.020127130672335625,
- 0.054915763437747955,
- -0.03728359937667847,
- -0.1327427476644516,
- 0.05999475345015526,
- -0.027027714997529984,
- 0.03659302368760109,
- -0.03568948432803154,
- -0.0683535784482956,
- -0.050869181752204895,
- 0.06059461459517479,
- 0.0719725713133812,
- 0.015303145162761211,
- 0.036174118518829346,
- 0.13087202608585358,
- 0.014753595925867558,
- -0.060949962586164474,
- 0.005587254650890827,
- 0.06670717895030975,
- 0.04076975956559181,
- 0.036702223122119904,
- -0.03216012939810753,
- -0.012003721669316292,
- 0.04086291790008545,
- -0.023778138682246208,
- 0.01695282943546772,
- -0.08026319742202759,
- -0.009682854637503624,
- 0.008219919167459011,
- -0.08026584982872009,
- 0.008464845828711987,
- 0.04729807376861572,
- 0.014457626268267632,
- -0.015002106316387653,
- 0.03390722721815109,
- -0.048710066825151443,
- 0.06811469048261642,
- -0.026945030316710472,
- 0.04018447920680046,
- -0.016960320994257927,
- 0.03418300300836563,
- 0.06524977833032608,
- 0.056599024683237076,
- -0.002631755080074072,
- 0.09605516493320465,
- -0.037830594927072525,
- 0.03188515082001686,
- -0.037746451795101166,
- -0.0339042954146862,
- -0.03470384329557419,
- -0.04263361915946007,
- -0.035302866250276566,
- -0.038909103721380234,
- -0.013675331138074398,
- -0.04387998953461647,
- -0.0005422694957815111,
- -0.049949586391448975,
- 0.022175198420882225,
- -0.003068970749154687,
- -0.006855427287518978,
- -0.0028847851790487766,
- -0.006256088614463806,
- 0.02083045244216919,
- -0.09786167740821838,
- 0.0031188554130494595,
- 0.04284432902932167,
- -1.2997054987806678e-8,
- 0.00794941559433937,
- -0.021071050316095352,
- 0.0339263454079628,
- -0.04902927577495575,
- 0.09082978963851929,
- -0.00584672624245286,
- 0.06827303767204285,
- 0.0170331709086895,
- 0.022373419255018234,
- 0.03139042854309082,
- -0.04041576385498047,
- 0.03282763063907623,
- -0.018901754170656204,
- 0.07037165015935898,
- 0.0812680572271347,
- -0.06633424758911133,
- 0.02315349131822586,
- 0.02653798833489418,
- -0.031698014587163925,
- 0.034406449645757675,
- -0.04914971813559532,
- -0.019591888412833214,
- -0.010386340320110321,
- 0.012258023954927921,
- -0.012953381985425949,
- -0.03418545424938202,
- 0.027074139565229416,
- 0.08764490485191345,
- 0.049560051411390305,
- 0.018311966210603714,
- 0.06796389818191528,
- 0.07217400521039963,
- -0.06298210471868515,
- 0.0014244306366890669,
- -0.03878077119588852,
- -0.01873764581978321,
- 0.03612764924764633,
- -0.03176505118608475,
- 0.010083815082907677,
- -0.0452476367354393,
- 0.009884743019938469,
- 0.035933177918195724,
- 0.03685731440782547,
- -0.03763672336935997,
- -0.07821891456842422,
- -0.00034292531199753284,
- 0.03687625378370285,
- 0.010482466779649258,
- -0.001740280189551413,
- -0.0357915535569191,
- 0.01406519953161478,
- -0.037651997059583664,
- 0.06169344112277031,
- 0.052150506526231766,
- -0.023766137659549713,
- -0.024838479235768318,
- 0.014888612553477287,
- 0.008486393839120865,
- -0.05906309559941292,
- 0.04029887914657593,
- -0.011258823797106743,
- 0.0004993927432224154,
- 0.1099892407655716,
- 0.04976015165448189
- ]
- },
- {
- "keyword": "facility",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.025139955803751945,
- 0.004094782285392284,
- -0.06903550773859024,
- 0.01615758426487446,
- -0.06225286424160004,
- -0.004380856640636921,
- 0.04348048195242882,
- -0.008403176441788673,
- 0.01619133912026882,
- -0.008133470080792904,
- 0.066664919257164,
- -0.04590494558215141,
- 0.03810719773173332,
- 0.046383731067180634,
- -0.0005955209489911795,
- -0.035531558096408844,
- 0.1022627055644989,
- -0.021520568057894707,
- 0.018355535343289375,
- -0.0768304094672203,
- -0.06010222062468529,
- -0.011339901946485043,
- 0.04269906505942345,
- 0.002809927798807621,
- -0.06674277037382126,
- 0.0870785042643547,
- -0.08855340629816055,
- 0.07475647330284119,
- 0.05829770490527153,
- -0.08019658923149109,
- 0.0411529466509819,
- 0.02604544162750244,
- 0.01294030249118805,
- -0.0467827133834362,
- 0.09945784509181976,
- 0.11256246268749237,
- -0.010272646322846413,
- -0.01691729761660099,
- 0.05792095139622688,
- -0.006822051480412483,
- 0.0010665414156392217,
- -0.0341126024723053,
- -0.004103729501366615,
- -0.0005927186575718224,
- -0.0032027934212237597,
- -0.006914534606039524,
- -0.011657580733299255,
- -0.010682414285838604,
- 0.04489351809024811,
- -0.04478861019015312,
- 0.03872115537524223,
- -0.045351579785346985,
- 0.04235994070768356,
- 0.04967237263917923,
- -0.05158738046884537,
- 0.034861572086811066,
- 0.00863280426710844,
- -0.050554968416690826,
- 0.0009567844681441784,
- -0.025139013305306435,
- 0.09576942771673203,
- -0.016036899760365486,
- -0.06210252642631531,
- -0.007618355564773083,
- 0.044190142303705215,
- -0.015608022920787334,
- -0.012338549830019474,
- 0.060924530029296875,
- 0.07731263339519501,
- -0.1373559981584549,
- 0.015323737636208534,
- -0.03643173351883888,
- -0.00871865451335907,
- 0.04096387326717377,
- 0.03902960568666458,
- -0.0024998229928314686,
- 0.009079797193408012,
- -0.01843082346022129,
- 0.09329921007156372,
- 0.03492928668856621,
- 0.06884147226810455,
- -0.034323323518037796,
- 0.054568901658058167,
- 0.04145226627588272,
- -0.07502919435501099,
- -0.03402986377477646,
- 0.008912667632102966,
- 0.050208888947963715,
- -0.008352565579116344,
- -0.03774790093302727,
- -0.020595133304595947,
- 0.031374942511320114,
- -0.08779394626617432,
- -0.04585674777626991,
- -0.04661080613732338,
- -0.008802485652267933,
- -0.04177790507674217,
- 0.00040236912900581956,
- 0.012145520187914371,
- 0.21858274936676025,
- 0.035096731036901474,
- 0.04530752822756767,
- 0.03742948919534683,
- -0.029178818687796593,
- -0.06490807980298996,
- -0.0813407152891159,
- -0.04384632036089897,
- 0.05376412346959114,
- 0.0006451223744079471,
- -0.0011333039728924632,
- -0.02509319595992565,
- 0.006921650376170874,
- -0.024356912821531296,
- -0.004267936106771231,
- -0.02906954288482666,
- 0.06677305698394775,
- 0.03608735650777817,
- -0.012918210588395596,
- -0.007291157729923725,
- -0.019467148929834366,
- 0.008634387515485287,
- 0.010837187990546227,
- -0.0017187970224767923,
- 0.006968046072870493,
- -0.01241428405046463,
- -0.030769480392336845,
- -0.04725504294037819,
- -5.182988589619676e-33,
- -0.01834670826792717,
- -0.003893544664606452,
- -0.01437293365597725,
- -0.0008099630358628929,
- 0.08546239882707596,
- 0.006887043360620737,
- -0.054468974471092224,
- 0.04688345640897751,
- -0.022766349837183952,
- -0.011174487881362438,
- -0.03675873577594757,
- -0.0414302721619606,
- -0.002367465989664197,
- -0.058258213102817535,
- 0.05237657576799393,
- -0.08385147154331207,
- 0.04780681058764458,
- 0.06795842200517654,
- -0.0376693531870842,
- -0.02223825268447399,
- -0.03737025707960129,
- -0.00918109342455864,
- -0.004227406810969114,
- 0.03196883574128151,
- 0.08344927430152893,
- 0.04492109268903732,
- -0.04889829084277153,
- 0.02196475863456726,
- 0.0235299039632082,
- 0.01877998374402523,
- 0.015244083479046822,
- 0.07816354930400848,
- -0.024015067145228386,
- -0.0018764793640002608,
- 0.0277435053139925,
- 0.0037059516180306673,
- -0.044462960213422775,
- -0.07739846408367157,
- -0.007966997101902962,
- -0.030957600101828575,
- 0.013138392940163612,
- 0.08015719056129456,
- 0.016945648938417435,
- 0.08408132195472717,
- 0.07087358087301254,
- 0.08151109516620636,
- 0.017600709572434425,
- 0.00638105534017086,
- 0.0861600711941719,
- 0.008989481255412102,
- -0.063567154109478,
- 0.02290770597755909,
- -0.11702065914869308,
- -0.041341301053762436,
- 0.0413084514439106,
- -0.00021094483963679522,
- 0.010810816660523415,
- 0.003351822728291154,
- 0.08193980902433395,
- 0.025712719187140465,
- 0.044084545224905014,
- 0.09526378661394119,
- -0.12592430412769318,
- -0.01270283479243517,
- 0.0529429093003273,
- -0.09643170982599258,
- -0.005112607032060623,
- -0.050810132175683975,
- 0.16526128351688385,
- 0.06209149956703186,
- -0.05307091027498245,
- -0.022193973883986473,
- 0.0994073897600174,
- 0.06661375612020493,
- -0.010548963211476803,
- -0.0050295148976147175,
- -0.11111722886562347,
- 0.09083787351846695,
- -0.09362593293190002,
- -0.01381483394652605,
- -0.03947628661990166,
- -0.023227035999298096,
- -0.04702172055840492,
- 0.10749616473913193,
- 0.01459256000816822,
- -0.04641047492623329,
- -0.006510654930025339,
- -0.026442861184477806,
- -0.040459901094436646,
- -0.030826764181256294,
- -0.05431129038333893,
- -0.002623817417770624,
- 0.02702908217906952,
- 0.023390445858240128,
- -0.05474291741847992,
- 4.382159920576961e-33,
- 0.062169402837753296,
- -0.05530468001961708,
- -0.026129228994250298,
- 0.039721909910440445,
- 0.0406666062772274,
- 0.023460058495402336,
- 0.011418857611715794,
- -0.03521402180194855,
- 0.03756065294146538,
- 0.1165386289358139,
- -0.04136722907423973,
- 0.009055964648723602,
- 0.07561279833316803,
- 0.002061651088297367,
- -0.00071323401061818,
- 0.10701392590999603,
- 0.07427583634853363,
- -0.030507292598485947,
- -0.051650431007146835,
- 0.03913479298353195,
- -0.0019027506932616234,
- -0.051198627799749374,
- 0.014011498540639877,
- -0.012981314212083817,
- -0.02355491742491722,
- 0.04836225137114525,
- 0.06286462396383286,
- -0.1121227890253067,
- -0.0679212212562561,
- 0.0006549835088662803,
- -0.14024372398853302,
- -0.0544910691678524,
- -0.03864970803260803,
- 0.08704666048288345,
- -0.030008560046553612,
- 0.03107776865363121,
- 0.07238291203975677,
- 0.010353869758546352,
- -0.09065649658441544,
- -0.0425192266702652,
- 0.11793827265501022,
- 0.001023232121951878,
- -0.11338571459054947,
- 0.1564243733882904,
- 0.03760826215147972,
- -0.011420759372413158,
- -0.03654211014509201,
- 0.024257853627204895,
- 0.008269174955785275,
- -0.018833624199032784,
- -0.11436140537261963,
- -0.06420187652111053,
- -0.02978331595659256,
- -0.06405843049287796,
- 0.0049612922593951225,
- 0.01965227723121643,
- 0.022426366806030273,
- 0.015171319246292114,
- -0.009466462768614292,
- 0.015466053038835526,
- 0.05342046916484833,
- -0.015809880569577217,
- -0.06708060950040817,
- 0.07613252848386765,
- -0.019182195886969566,
- 0.028464697301387787,
- -0.01885289140045643,
- 0.018513061106204987,
- -0.059299301356077194,
- 0.004239372909069061,
- 0.015180855989456177,
- 0.03332241624593735,
- 0.03885478153824806,
- 0.007715612184256315,
- -0.06851062923669815,
- 0.002479447750374675,
- 0.014779702760279179,
- -0.02547530084848404,
- -0.017128845676779747,
- -0.023042330518364906,
- 0.018572025001049042,
- -0.004584956914186478,
- -0.07397707551717758,
- 0.0315496027469635,
- 0.051852066069841385,
- 0.014540412463247776,
- 0.0909949317574501,
- 0.026403624564409256,
- -0.030561747029423714,
- -0.02194715291261673,
- -0.018679773434996605,
- 0.05177784338593483,
- -0.09122122824192047,
- -0.06685387343168259,
- -0.0001766453351592645,
- -1.1575393088492092e-8,
- -0.013936702162027359,
- 0.0037174681201577187,
- -0.03764213249087334,
- -0.019066719338297844,
- 0.016265736892819405,
- -0.08301291614770889,
- 0.03744753822684288,
- 0.04279942065477371,
- 0.01654820702970028,
- 0.09253019839525223,
- -0.05100797489285469,
- 0.02741966024041176,
- -0.011745471507310867,
- 0.005368310492485762,
- 0.0075929234735667706,
- 0.04214208945631981,
- -0.06439683586359024,
- 0.03768100216984749,
- -0.07116711884737015,
- 0.000940638012252748,
- 0.010504587553441525,
- 0.049852825701236725,
- 0.06197488307952881,
- 0.008968216367065907,
- -0.03418900817632675,
- -0.0250749122351408,
- 0.0023728818632662296,
- 0.059716399759054184,
- 0.055758796632289886,
- -0.03177601844072342,
- 0.04008641466498375,
- -0.022901004180312157,
- -0.01384765561670065,
- -0.026930347084999084,
- -0.009334753267467022,
- -0.032226867973804474,
- -0.033464547246694565,
- -0.01460887212306261,
- 0.02919972687959671,
- -0.09244951605796814,
- -0.07327262312173843,
- -0.10879615694284439,
- -0.05915011465549469,
- 0.023322785273194313,
- 0.08493547141551971,
- 0.09375029802322388,
- -0.018900010734796524,
- 0.007510445546358824,
- 0.004324411973357201,
- -0.024610888212919235,
- -0.04893452301621437,
- -0.018815387040376663,
- 0.017062561586499214,
- 0.022364536300301552,
- 0.03818482160568237,
- 0.043309640139341354,
- -0.0032871875446289778,
- -0.07571882754564285,
- -0.03147851675748825,
- 0.06234024092555046,
- 0.011787124909460545,
- 0.05963084474205971,
- 0.05344582721590996,
- -0.027272427454590797
- ]
- },
- {
- "keyword": "retailer",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.06796210259199142,
- 0.06036100164055824,
- -0.02121690660715103,
- -0.01992446556687355,
- -0.020412776619195938,
- -0.012030960991978645,
- 0.045905694365501404,
- -0.024215878918766975,
- 0.044232327491045,
- -0.03617303818464279,
- 0.11144595593214035,
- 0.03249293938279152,
- -0.022633103653788567,
- -0.027787167578935623,
- 0.03440146520733833,
- -0.025718724355101585,
- 0.03238684684038162,
- 0.013719202019274235,
- 0.013300097547471523,
- -0.05653209239244461,
- -0.0689457431435585,
- 0.018653644248843193,
- -0.042398788034915924,
- 0.05433851480484009,
- -0.06105593219399452,
- 0.03323947265744209,
- -0.05679545924067497,
- 0.0037612051237374544,
- -0.002665989799425006,
- -0.12445501238107681,
- -0.011169779114425182,
- -0.0550057515501976,
- 0.0843096449971199,
- 0.02085287496447563,
- 0.019542304798960686,
- -0.005481326021254063,
- 0.024502458050847054,
- -0.04047352075576782,
- 0.0443161241710186,
- -0.04423896223306656,
- -0.010990717448294163,
- -0.04452437534928322,
- -0.09666793048381805,
- -0.008930033072829247,
- 0.01862196810543537,
- -0.016032401472330093,
- 0.019009767100214958,
- 0.08312154561281204,
- 0.049095530062913895,
- 0.04774564504623413,
- 0.0122935576364398,
- -0.0017357509350404143,
- -0.029797615483403206,
- -0.006060630548745394,
- 0.0008958963444456458,
- 0.020370762795209885,
- -0.02755839191377163,
- -0.040477409958839417,
- 0.02280079759657383,
- -0.04003071412444115,
- 0.005666244309395552,
- -0.09096496552228928,
- -0.06714014708995819,
- 0.039104070514440536,
- 0.03761421516537666,
- -0.005432326812297106,
- -0.006750434637069702,
- 0.0019069213885813951,
- -0.08134294301271439,
- -0.08129265904426575,
- -0.017010411247611046,
- -0.04207352548837662,
- 0.03847024217247963,
- 0.08140822499990463,
- 0.032709091901779175,
- -0.008821943774819374,
- 0.05143379420042038,
- -0.07691407203674316,
- 0.018848253414034843,
- -0.0003251429588999599,
- -0.0020640408620238304,
- -0.03284415230154991,
- -0.07082875072956085,
- 0.026246700435876846,
- -0.012675637379288673,
- -0.04196283221244812,
- 0.09257261455059052,
- -0.013558718375861645,
- -0.0013389891246333718,
- -0.024039018899202347,
- 0.004402831196784973,
- 0.025216570124030113,
- 0.05353890731930733,
- 0.017209377139806747,
- -0.10225053876638412,
- -0.05081899091601372,
- 0.03775550797581673,
- -0.04631022736430168,
- 0.02716154046356678,
- 0.19091320037841797,
- 0.041329964995384216,
- 0.029246458783745766,
- 0.08326613157987595,
- -0.055754151195287704,
- -0.09191875159740448,
- -0.0923580676317215,
- -0.08270858228206635,
- 0.09600208699703217,
- -0.019158964976668358,
- 0.02755228616297245,
- -0.10348326712846756,
- -0.003011110471561551,
- -0.05885889008641243,
- -0.01976645365357399,
- 0.03256664425134659,
- 0.017088690772652626,
- -0.049443140625953674,
- 0.0222683884203434,
- 0.06445404142141342,
- -0.054861124604940414,
- 0.03277638182044029,
- 0.06845145672559738,
- -0.012835795059800148,
- -0.00910005159676075,
- -0.044382769614458084,
- 0.004708743654191494,
- 0.03968627378344536,
- -4.8342333747261195e-33,
- -0.039564505219459534,
- 0.05165068432688713,
- 0.009309578686952591,
- -0.05697471275925636,
- -0.005986124277114868,
- 0.029778119176626205,
- 0.03931321203708649,
- 0.022626549005508423,
- -0.05095069482922554,
- 0.07899200916290283,
- -0.07890161871910095,
- 0.04004718363285065,
- -0.04487818479537964,
- -0.002965284511446953,
- 0.04876089468598366,
- 0.026684358716011047,
- -0.012797953560948372,
- 0.013642420992255211,
- 0.03089534118771553,
- 0.006328405812382698,
- -0.04782702773809433,
- 0.08092884719371796,
- -0.015174989588558674,
- 0.060418110340833664,
- -0.004415529780089855,
- -0.01735437847673893,
- -0.027364525943994522,
- 0.08146428316831589,
- 0.06952393800020218,
- 0.029070498421788216,
- 0.09411142766475677,
- -0.025550980120897293,
- 0.02062254585325718,
- -0.012623184360563755,
- -0.043066829442977905,
- -0.03004566952586174,
- 0.0024361643008887768,
- -0.06912105530500412,
- 0.02061745524406433,
- -0.04457324370741844,
- 0.009843586944043636,
- 0.017957907170057297,
- 0.020413998514413834,
- 0.05266403406858444,
- -0.0017687827348709106,
- 0.04556165635585785,
- -0.014119678176939487,
- -0.016782443970441818,
- -0.023297864943742752,
- 0.08629775047302246,
- -0.11639857292175293,
- 0.009383711963891983,
- -0.029491493478417397,
- 0.02705993875861168,
- 0.0029028896242380142,
- -0.09822350740432739,
- 0.015112301334738731,
- -0.03956301882863045,
- 0.057799775153398514,
- -0.001484863692894578,
- 0.02733662724494934,
- 0.11007281392812729,
- -0.00891029741615057,
- 0.02365543320775032,
- -0.042122986167669296,
- -0.1124923825263977,
- 0.00017624151951167732,
- -0.05443798750638962,
- -0.009357858449220657,
- 0.007505056448280811,
- 0.00871249008923769,
- 0.09988703578710556,
- 0.14999713003635406,
- -0.014591609127819538,
- 0.006345975212752819,
- -0.00419409666210413,
- -0.09687890857458115,
- 0.0921841561794281,
- -0.01389097049832344,
- -0.050073832273483276,
- 0.001169806346297264,
- -0.022930532693862915,
- 0.09552500396966934,
- 0.10395084321498871,
- -0.008472390472888947,
- 0.031732965260744095,
- 0.00892874225974083,
- -0.044463325291872025,
- 0.07200618088245392,
- 0.02067493088543415,
- -0.10126977413892746,
- 0.052245356142520905,
- 0.01706044189631939,
- 0.08287093043327332,
- 0.053643520921468735,
- 3.7372671893265456e-33,
- 0.08928720653057098,
- -0.062153298407793045,
- -0.014860699884593487,
- 0.1045888140797615,
- -0.032735299319028854,
- 0.029178254306316376,
- -0.015409090556204319,
- -0.01483821775764227,
- -0.03784986212849617,
- -0.042099010199308395,
- -0.06634587794542313,
- 0.008941462263464928,
- 0.036177992820739746,
- 0.01858990080654621,
- 0.11520002782344818,
- 0.03461480513215065,
- 0.10482323914766312,
- -0.03847289830446243,
- 0.009315061382949352,
- -0.007339987903833389,
- -0.016646573320031166,
- -0.06224621459841728,
- -0.1314936876296997,
- -0.05452170968055725,
- -0.005276291631162167,
- 0.021650955080986023,
- 0.07984823733568192,
- -0.009762865491211414,
- -0.09799473732709885,
- -0.041477758437395096,
- -0.003365106415003538,
- -0.04078990966081619,
- 0.047995083034038544,
- 0.06306297332048416,
- -0.044144872575998306,
- 0.007981057278811932,
- -0.0556899718940258,
- 0.06582549214363098,
- 0.03830670565366745,
- 0.013181460089981556,
- 0.028028864413499832,
- -0.014751840382814407,
- 0.0398576445877552,
- 0.0850570872426033,
- -0.0014321962371468544,
- -0.0779779851436615,
- 0.052618272602558136,
- -0.051684409379959106,
- 0.13363862037658691,
- 0.02490275911986828,
- -0.1339721977710724,
- 0.011262020096182823,
- 0.03100600279867649,
- -0.09434036165475845,
- -0.047803811728954315,
- 0.062376830726861954,
- -0.03531204164028168,
- 0.0494622103869915,
- 0.024524657055735588,
- 0.0018326997524127364,
- 0.007624868303537369,
- 0.00627876864746213,
- 0.003922298084944487,
- -0.00547719094902277,
- -0.007319076452404261,
- -0.0006771937478333712,
- 0.05196022614836693,
- -0.039865702390670776,
- 0.06892373412847519,
- -0.013022293336689472,
- 0.058917779475450516,
- -0.022793615236878395,
- 0.020679019391536713,
- -0.07729291915893555,
- -0.06929295510053635,
- -0.028354700654745102,
- -0.04108700156211853,
- 0.007341292686760426,
- -0.06474673002958298,
- 0.014879558235406876,
- 0.03527458757162094,
- -0.043377410620450974,
- 0.0440039299428463,
- 0.10090278834104538,
- -0.06570151448249817,
- -0.010607319884002209,
- 0.0661962628364563,
- 0.013425570912659168,
- 0.011477361433207989,
- -0.05762363225221634,
- -0.0018433080986142159,
- 0.036491263657808304,
- -0.06669958680868149,
- -0.03545813262462616,
- 0.01952294632792473,
- -1.1235015584531993e-8,
- 0.007522019557654858,
- -0.04754730314016342,
- 0.02533368393778801,
- 0.010509519837796688,
- 0.1108471155166626,
- 0.009501622058451176,
- 0.08946064114570618,
- 0.057801712304353714,
- -0.01648770272731781,
- 0.0960460752248764,
- 0.01611826941370964,
- -0.05998951941728592,
- -0.08530160784721375,
- 0.0075551727786660194,
- 0.05018371716141701,
- 0.001912811421789229,
- 0.0008297351887449622,
- 0.04305432736873627,
- -0.027524380013346672,
- -0.022675450891256332,
- -0.04763128235936165,
- 0.059691883623600006,
- 0.09191899001598358,
- -0.00766501110047102,
- -0.028887292370200157,
- 0.02226448245346546,
- 0.028020048514008522,
- 0.002444022800773382,
- 0.08302883058786392,
- 0.04239759221673012,
- 0.028792420402169228,
- 0.02587583288550377,
- 0.042976610362529755,
- -0.090751513838768,
- -0.016864148899912834,
- -0.09160470962524414,
- -0.01613277941942215,
- 0.027498282492160797,
- -0.00299814366735518,
- -0.08231806010007858,
- -0.009374840185046196,
- -0.038959257304668427,
- -0.0269598551094532,
- 0.022833405062556267,
- 0.0004039628547616303,
- -0.017392225563526154,
- -0.044786486774683,
- -0.022900421172380447,
- 0.04164586961269379,
- 0.03028142638504505,
- -0.024698326364159584,
- -0.03661205247044563,
- 0.034602999687194824,
- 0.012006369419395924,
- 0.02275744639337063,
- -0.06037187576293945,
- -0.00829313788563013,
- -0.06838564574718475,
- -0.029629558324813843,
- 0.016905412077903748,
- 0.08190994709730148,
- -0.09684952348470688,
- 0.02649964950978756,
- 0.032789457589387894
- ]
- },
- {
- "keyword": "store",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03315140679478645,
- 0.05551522597670555,
- -0.05599755421280861,
- 0.01958419941365719,
- -0.03873557969927788,
- 0.05401916801929474,
- 0.0641724243760109,
- 0.027725428342819214,
- 0.0316503569483757,
- 0.023585492745041847,
- 0.09229200333356857,
- -0.0220225490629673,
- 0.023910965770483017,
- -0.020956654101610184,
- 0.04608333110809326,
- 0.009163819253444672,
- -0.05233045667409897,
- 0.06789948046207428,
- -0.09075196832418442,
- -0.06552790105342865,
- -0.08282095193862915,
- -0.02766069769859314,
- 0.0030344133265316486,
- 0.05123785510659218,
- -0.04668482393026352,
- 0.04124883562326431,
- -0.04847940057516098,
- 0.019634798169136047,
- 0.06102465093135834,
- -0.1102261021733284,
- 0.04446151852607727,
- -0.01999974064528942,
- 0.07939036190509796,
- -0.002419572789222002,
- 0.0383407287299633,
- -0.025894176214933395,
- 0.015085629187524319,
- -0.004805251024663448,
- 0.04311203211545944,
- -0.04014575108885765,
- 0.03392466902732849,
- -0.06368494778871536,
- -0.07252828031778336,
- -0.008211871609091759,
- -0.018626220524311066,
- 0.0887693539261818,
- 0.046403687447309494,
- 0.0756000280380249,
- 0.0678689032793045,
- 0.024922020733356476,
- -0.002029959810897708,
- 0.04608834162354469,
- -0.04166195169091225,
- -0.0017889427253976464,
- 0.019202031195163727,
- 0.0874832347035408,
- 0.023168116807937622,
- 0.004855604842305183,
- -0.010322555899620056,
- 0.00942930392920971,
- 0.06671777367591858,
- -0.08705311268568039,
- -0.0182899571955204,
- 0.023496663197875023,
- -0.03001188114285469,
- 0.019375089555978775,
- 0.00190646608825773,
- 0.07021600753068924,
- -0.04318583011627197,
- -0.08689776062965393,
- -0.03328658640384674,
- 0.0414457730948925,
- -0.03151102736592293,
- 0.06954829394817352,
- 0.015200241468846798,
- 0.010172399692237377,
- 0.06452484428882599,
- -0.07377946376800537,
- 0.04144933447241783,
- 0.04071807861328125,
- -0.012042722664773464,
- -0.07558038085699081,
- 0.017880398780107498,
- 0.014499315991997719,
- 0.001957951346412301,
- -0.024309251457452774,
- 0.08084564656019211,
- -0.005776689853519201,
- -0.009621118195354939,
- -0.043144986033439636,
- -0.059318993240594864,
- 0.0820089727640152,
- 0.01604817807674408,
- -0.0692315548658371,
- -0.11964815109968185,
- -0.008563491515815258,
- 0.02586178295314312,
- 0.048593778163194656,
- 0.011007996276021004,
- 0.24281743168830872,
- 0.06531297415494919,
- 0.06389899551868439,
- 0.07982571423053741,
- -0.03597593680024147,
- -0.050374362617731094,
- -0.07361120730638504,
- -0.04407409951090813,
- 0.1104515865445137,
- -0.030101114884018898,
- -0.026434043422341347,
- -0.09037124365568161,
- 0.0439746156334877,
- -0.05320434644818306,
- 0.04194524139165878,
- 0.03247459605336189,
- 0.05853452906012535,
- -0.031551431864500046,
- 0.044031936675310135,
- 0.043261878192424774,
- -0.05101042240858078,
- 0.01764737255871296,
- 0.0036402479745447636,
- 0.041954487562179565,
- 0.03782574087381363,
- -0.08243615180253983,
- -0.04569399729371071,
- 0.009999369271099567,
- -5.363663908050985e-33,
- -0.017692526802420616,
- -0.0062552583403885365,
- -0.0210467167198658,
- -0.033884502947330475,
- -0.023524131625890732,
- 0.01044344063848257,
- 0.029648343101143837,
- -0.026239993050694466,
- -0.030871016904711723,
- 0.05605659633874893,
- -0.09105666726827621,
- 0.010397220030426979,
- -0.05415608361363411,
- 0.0500713475048542,
- 0.07914560288190842,
- 0.09697122126817703,
- -0.010910348035395145,
- 0.02632071264088154,
- 0.026135729625821114,
- -0.0627375990152359,
- -0.0209428109228611,
- 0.026220181956887245,
- -0.002092961687594652,
- 0.047620534896850586,
- -0.02725312113761902,
- 0.0015875303652137518,
- 0.0012500220909714699,
- 0.017916115000844002,
- 0.07825050503015518,
- 0.005072008818387985,
- 0.020195454359054565,
- -0.022325938567519188,
- 0.032872773706912994,
- -0.032591238617897034,
- -0.004370950162410736,
- -0.011513994075357914,
- -0.012677338905632496,
- -0.017010685056447983,
- 0.012231656350195408,
- -0.08133907616138458,
- 0.029563110321760178,
- 0.06763993203639984,
- 0.05719197914004326,
- 0.07825259119272232,
- 0.03996938467025757,
- 0.030631588771939278,
- 0.007574546150863171,
- 0.015824327245354652,
- -0.029148712754249573,
- 0.042102910578250885,
- -0.08269226551055908,
- 0.0077845025807619095,
- -0.1267671436071396,
- 0.007450629957020283,
- -0.051999155431985855,
- -0.08253857493400574,
- -0.021114705130457878,
- -0.058372512459754944,
- 0.06494003534317017,
- -0.016580473631620407,
- 0.028223279863595963,
- 0.08870501071214676,
- -0.029766764491796494,
- 0.07558214664459229,
- -0.033632542937994,
- -0.05910102277994156,
- -0.04063772037625313,
- -0.09896867722272873,
- -0.018988266587257385,
- 0.02801418863236904,
- -0.011273831129074097,
- 0.02954636514186859,
- 0.140980064868927,
- -0.02078215591609478,
- -0.0037329760380089283,
- -0.01975727640092373,
- -0.061526086181402206,
- 0.03916831314563751,
- -0.06014592573046684,
- -0.11901997029781342,
- 0.06738438457250595,
- -0.03167876601219177,
- -0.005046645179390907,
- 0.1203518658876419,
- 0.022387094795703888,
- -0.004267051350325346,
- 0.023388206958770752,
- -0.05169951915740967,
- 0.07122387737035751,
- 0.027704864740371704,
- -0.056674774736166,
- 0.04159802198410034,
- 0.06315328180789948,
- -0.02590423822402954,
- -0.007192847318947315,
- 5.0545625257144796e-33,
- 0.057600799947977066,
- -0.0896330252289772,
- -0.05389900878071785,
- 0.05985718220472336,
- -0.06021982803940773,
- 0.03489762172102928,
- -0.02490217611193657,
- 0.009937219321727753,
- -0.060029834508895874,
- -0.06372881680727005,
- -0.09688793122768402,
- -0.026329418644309044,
- 0.1190720722079277,
- 0.022536739706993103,
- 0.045304398983716965,
- 0.044571708887815475,
- 0.11811507493257523,
- -0.017531251534819603,
- 0.04257570579648018,
- -0.00860544852912426,
- -0.010182495228946209,
- -0.09626540541648865,
- -0.0910542905330658,
- 0.06292454898357391,
- -0.0339614562690258,
- -0.01553543284535408,
- 0.02429363876581192,
- -0.024770496413111687,
- -0.09338130056858063,
- -0.014922045171260834,
- -0.03643261268734932,
- -0.0858832597732544,
- 0.015558815561234951,
- 0.03288769721984863,
- -0.06297282129526138,
- -0.038075316697359085,
- 0.004006508272141218,
- -0.0189194492995739,
- 0.009944706223905087,
- 0.054530177265405655,
- 0.0243181511759758,
- 0.008841969072818756,
- 0.016615012660622597,
- 0.06995604187250137,
- 0.0287493746727705,
- -0.023604126647114754,
- -0.01427452266216278,
- 0.02789914608001709,
- 0.09594687074422836,
- 0.013389170169830322,
- -0.07210221886634827,
- -0.021754728630185127,
- -0.011208601295948029,
- -0.13402724266052246,
- -0.06456644833087921,
- 0.03171062096953392,
- -0.020999561995267868,
- -0.007736305706202984,
- -0.041474632918834686,
- -0.0005830738809891045,
- -0.04370013624429703,
- 0.021480116993188858,
- -0.027055954560637474,
- 0.03288274258375168,
- -0.03415919095277786,
- -0.009133954532444477,
- 0.018511222675442696,
- -0.024301521480083466,
- -0.019678426906466484,
- 0.028366077691316605,
- 0.019044294953346252,
- -0.04911991208791733,
- -0.001541156554594636,
- -0.011823337525129318,
- -0.06827569007873535,
- -0.02350674942135811,
- -0.08373226225376129,
- 0.029446560889482498,
- 0.0042410907335579395,
- -0.0005376877379603684,
- -0.01991475187242031,
- 0.023478418588638306,
- 0.049088697880506516,
- 0.05951258912682533,
- -0.025694191455841064,
- -0.017476262524724007,
- 0.04904990270733833,
- 0.033321868628263474,
- -0.018737776204943657,
- -0.09367206692695618,
- -0.02934269793331623,
- 0.11036832630634308,
- -0.08422387391328812,
- -0.010886818170547485,
- 0.02263621799647808,
- -1.2717859654287622e-8,
- -0.045091357082128525,
- 0.01570945233106613,
- 0.02758820354938507,
- 0.06694982945919037,
- 0.0870160236954689,
- 0.013409209437668324,
- 0.09442518651485443,
- 0.03391505405306816,
- 0.050979893654584885,
- 0.0830538272857666,
- -0.010929062031209469,
- -0.014825866557657719,
- -0.08367430418729782,
- -0.0040414235554635525,
- -0.022229265421628952,
- 0.02405094914138317,
- 0.02038435824215412,
- -0.040623415261507034,
- -0.01362552773207426,
- 0.04879438132047653,
- 0.03834010660648346,
- 0.037062421441078186,
- 0.11532628536224365,
- 0.00838852021843195,
- -0.004489281680434942,
- -0.014200003817677498,
- 0.07246904820203781,
- 0.0829572081565857,
- 0.043296512216329575,
- 0.037411391735076904,
- 0.05875503271818161,
- 0.028690963983535767,
- 0.04497826099395752,
- -0.04686422273516655,
- 0.03699197247624397,
- -0.07809451222419739,
- -0.05393543094396591,
- 0.04077106714248657,
- 0.0008912786724977195,
- -0.039218705147504807,
- -0.030793868005275726,
- -0.07761658728122711,
- -0.03198952600359917,
- -0.025186441838741302,
- 0.005401041824370623,
- 0.026825185865163803,
- 0.025541342794895172,
- -0.030120881274342537,
- 0.005331839434802532,
- 0.04574224725365639,
- -0.04787028580904007,
- -0.04987902194261551,
- 0.04823044314980507,
- 0.03440181910991669,
- 0.061814308166503906,
- -0.027761081233620644,
- -0.03513561934232712,
- -0.025091592222452164,
- -0.005675304681062698,
- -0.024805948138237,
- 0.05643336474895477,
- -0.055527567863464355,
- -0.006957380101084709,
- 0.025428660213947296
- ]
- },
- {
- "keyword": "shop",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04176689311861992,
- 0.05223098024725914,
- -0.019825521856546402,
- -0.020234936848282814,
- 0.04238877072930336,
- -0.0005164219764992595,
- 0.09145176410675049,
- 0.005626427475363016,
- -0.0326647013425827,
- -0.05795588344335556,
- 0.07112358510494232,
- -0.042698800563812256,
- 0.04236678406596184,
- 0.004459947347640991,
- 0.07928498834371567,
- 0.013091121800243855,
- 0.03748393431305885,
- 0.04938635230064392,
- 0.041209153831005096,
- -0.11763988435268402,
- -0.07889726758003235,
- 0.014269775710999966,
- 0.024001169949769974,
- -0.018747642636299133,
- -0.09837759286165237,
- 0.07603303343057632,
- -0.036882854998111725,
- -0.010736064054071903,
- 0.0035462300293147564,
- -0.09911704063415527,
- 0.019875962287187576,
- 0.043115098029375076,
- 0.07934022694826126,
- 0.013056943193078041,
- 0.009793467819690704,
- -0.014747017063200474,
- 0.026585372164845467,
- -0.0705239400267601,
- 0.05599888041615486,
- -0.0068242717534303665,
- 0.010596499778330326,
- -0.05954505875706673,
- -0.11433465033769608,
- -0.004026218317449093,
- 0.011231662705540657,
- 0.02058543637394905,
- 0.013388728722929955,
- 0.03774672746658325,
- 0.05630730837583542,
- 0.015601487830281258,
- -0.029852602630853653,
- 0.020177245140075684,
- -0.03406650945544243,
- -0.025551578029990196,
- -0.024150831624865532,
- 0.05681004747748375,
- -0.03286415711045265,
- -0.01649760641157627,
- 0.07004593312740326,
- -0.09283201396465302,
- 0.05124692618846893,
- -0.06004977598786354,
- -0.040606334805488586,
- 0.03221990168094635,
- 0.04826273396611214,
- -0.028907405212521553,
- -0.029087385162711143,
- 0.05928899720311165,
- -0.1081780344247818,
- -0.0406784750521183,
- 0.03907844424247742,
- -0.021730346605181694,
- 0.002331922762095928,
- 0.05691467225551605,
- 0.059880323708057404,
- 0.006454423535615206,
- 0.039311330765485764,
- -0.0751514583826065,
- 0.02537470869719982,
- 0.006067130248993635,
- -0.05001024529337883,
- -0.019972387701272964,
- -0.044351160526275635,
- 0.03409935161471367,
- -0.013723139651119709,
- -0.0027606876101344824,
- 0.06069648265838623,
- 0.03338291123509407,
- 0.03208935260772705,
- -0.061191756278276443,
- -0.06304451823234558,
- 0.0017580247949808836,
- -0.045278504490852356,
- -0.02101769670844078,
- -0.043212417513132095,
- -0.015235687606036663,
- 0.010455862618982792,
- 0.05077953636646271,
- 0.045659344643354416,
- 0.23344942927360535,
- 0.01943156123161316,
- 0.030499983578920364,
- 0.07706224173307419,
- -0.0696769431233406,
- -0.051715947687625885,
- -0.0359792597591877,
- -0.0579451248049736,
- 0.116421639919281,
- -0.027707522734999657,
- -0.012095794081687927,
- -0.05755393207073212,
- -0.043219421058893204,
- 0.009019500575959682,
- 0.000698912248481065,
- 0.05409204959869385,
- 0.014753665775060654,
- -0.0184010099619627,
- -0.0005115436506457627,
- -0.0032289791852235794,
- -0.0033642875496298075,
- 0.03434492275118828,
- 0.06184660643339157,
- 0.00795314647257328,
- 0.007813749834895134,
- -0.033693451434373856,
- -0.005379759706556797,
- -0.013690313324332237,
- -6.230298587562655e-33,
- 0.0036446910817176104,
- 0.028638018295168877,
- -0.02852131798863411,
- -0.030353080481290817,
- 0.03842896968126297,
- 0.039118025451898575,
- 0.08827360719442368,
- -0.013104140758514404,
- 0.0013585640117526054,
- 0.11660225689411163,
- 0.00035061867674812675,
- -0.041212331503629684,
- -0.08020132780075073,
- 0.029171016067266464,
- 0.09482633322477341,
- 0.07042567431926727,
- 0.019653359428048134,
- -0.03795255348086357,
- -0.003926700446754694,
- -0.061632152646780014,
- -0.07505741715431213,
- -0.013731581158936024,
- -0.002835573861375451,
- 0.05227982997894287,
- 0.009889163076877594,
- 0.031202157959342003,
- 0.03834032639861107,
- 0.07753705233335495,
- 0.06844121962785721,
- 0.023273920640349388,
- 0.0445498526096344,
- -0.009299778379499912,
- 0.015418419614434242,
- 0.034220706671476364,
- -0.08915840834379196,
- -0.025688037276268005,
- -0.06013567000627518,
- -0.011566778644919395,
- 0.009961549192667007,
- -0.05250994861125946,
- -0.007141427602618933,
- 0.04723735153675079,
- 0.04129304736852646,
- 0.052095573395490646,
- -0.000020848174244747497,
- 0.027182582765817642,
- 0.01534795667976141,
- -0.027274807915091515,
- -0.01751718670129776,
- 0.04244258627295494,
- -0.06818439066410065,
- 0.014314754866063595,
- -0.06886249780654907,
- 0.0436563566327095,
- -0.023502640426158905,
- -0.07634499669075012,
- -0.0025373396929353476,
- -0.07516952604055405,
- 0.049486592411994934,
- -0.010431347414851189,
- 0.0737820565700531,
- 0.11898913234472275,
- -0.03947282209992409,
- 0.04220863804221153,
- 0.014962867833673954,
- -0.050473254173994064,
- 0.019980881363153458,
- -0.042171910405159,
- 0.010109667666256428,
- 0.02835032530128956,
- -0.008992224931716919,
- 0.06122070550918579,
- 0.10237731039524078,
- -0.036313120275735855,
- -0.032374829053878784,
- 0.02176222763955593,
- -0.09404223412275314,
- 0.1012972891330719,
- -0.02683318965137005,
- -0.017856605350971222,
- -0.029831144958734512,
- -0.006147539243102074,
- 0.07036837935447693,
- 0.08496689796447754,
- 0.03787260130047798,
- 0.004675139673054218,
- 0.006661922205239534,
- -0.047862086445093155,
- -0.024765387177467346,
- -0.011203652247786522,
- -0.043451834470033646,
- 0.04324581101536751,
- 0.04343993216753006,
- 0.013714569620788097,
- 0.03168527036905289,
- 5.6325608121954756e-33,
- 0.0913599282503128,
- -0.03418135270476341,
- -0.03082675114274025,
- 0.12001614272594452,
- -0.05329237878322601,
- 0.022552520036697388,
- -0.05797892063856125,
- -0.01215281430631876,
- 0.01704305037856102,
- 0.035624708980321884,
- -0.07254230231046677,
- -0.0035841427743434906,
- 0.10263548046350479,
- -0.024921011179685593,
- 0.10590791702270508,
- 0.07089600712060928,
- 0.15867282450199127,
- 0.026764212176203728,
- -0.005333970300853252,
- -0.009258750826120377,
- 0.007224962580949068,
- -0.0320306159555912,
- -0.050848133862018585,
- -0.04031255841255188,
- -0.09250188618898392,
- -0.00486366543918848,
- 0.06592989712953568,
- -0.053808826953172684,
- -0.0838543027639389,
- 0.007881296798586845,
- -0.02294866554439068,
- -0.06556230783462524,
- 0.005650019273161888,
- 0.06584075838327408,
- -0.002989422529935837,
- -0.032488588243722916,
- -0.09984438121318817,
- 0.05128252133727074,
- 0.03928796574473381,
- 0.003392875660210848,
- 0.03839961066842079,
- 0.015321755781769753,
- -0.005468821153044701,
- 0.10325723886489868,
- -0.030879691243171692,
- -0.06998611241579056,
- 0.02815575711429119,
- -0.012493704445660114,
- 0.11038321256637573,
- 0.01804700866341591,
- -0.09171474725008011,
- 0.07967735081911087,
- -0.01036835927516222,
- -0.12079808861017227,
- -0.02654406800866127,
- 0.04098360985517502,
- -0.01413457840681076,
- 0.03685859590768814,
- -0.04885673150420189,
- 0.024972444400191307,
- -0.010995970107614994,
- 0.08643539249897003,
- 0.009605039842426777,
- -0.02732928656041622,
- -0.01955549418926239,
- 0.010348161682486534,
- 0.007256506476551294,
- -0.03643391653895378,
- 0.09247761964797974,
- 0.036407046020030975,
- 0.004536658525466919,
- 0.015119871124625206,
- -0.029161326587200165,
- -0.013420947827398777,
- -0.13210731744766235,
- -0.060275059193372726,
- -0.029642915353178978,
- 0.07653865218162537,
- -0.006645914167165756,
- -0.051072634756565094,
- 0.03153875470161438,
- -0.0651923269033432,
- 0.06569867581129074,
- 0.09436006844043732,
- -0.01213880442082882,
- 0.02394745498895645,
- -0.027466807514429092,
- 0.05216127261519432,
- 0.010176578536629677,
- -0.09295683354139328,
- -0.07013826072216034,
- 0.10704716295003891,
- -0.00658549414947629,
- -0.020744917914271355,
- -0.028848983347415924,
- -1.3137258392248441e-8,
- -0.019320057705044746,
- -0.016946660354733467,
- 0.005566664971411228,
- 0.053573720157146454,
- 0.0555720180273056,
- -0.01671016402542591,
- 0.012586318887770176,
- 0.08586212247610092,
- 0.005538093391805887,
- 0.07797811180353165,
- -0.011234162375330925,
- -0.04441516101360321,
- -0.08103647828102112,
- 0.027080615982413292,
- -0.0025030486285686493,
- -0.012602810747921467,
- -0.001445404370315373,
- 0.011494658887386322,
- -0.05380639433860779,
- -0.03046133928000927,
- -0.000565609079785645,
- 0.04349012300372124,
- 0.05640323832631111,
- 0.06726478785276413,
- -0.05337410047650337,
- -0.009875149466097355,
- 0.007022092118859291,
- 0.012544458732008934,
- 0.01581370085477829,
- 0.018416820093989372,
- 0.04865558072924614,
- 0.0703682079911232,
- -0.02533513866364956,
- -0.05523824319243431,
- 0.040350429713726044,
- -0.14675672352313995,
- 0.017843667417764664,
- 0.01644846983253956,
- -0.03892676904797554,
- -0.09481655806303024,
- -0.02685493230819702,
- -0.1006745845079422,
- -0.014958818443119526,
- -0.028595535084605217,
- -0.030045364052057266,
- 0.016644291579723358,
- 0.030754588544368744,
- -0.06351576745510101,
- -0.0115455761551857,
- 0.024180250242352486,
- -0.054306577891111374,
- -0.03348527476191521,
- 0.04129413142800331,
- -0.0045733023434877396,
- 0.030835138633847237,
- -0.05633865296840668,
- -0.029071463271975517,
- -0.0862424224615097,
- -0.005599117372184992,
- 0.010998019948601723,
- 0.035239093005657196,
- -0.02251572348177433,
- -0.013522237539291382,
- -0.025967538356781006
- ]
- },
- {
- "keyword": "outlet",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.0011076930677518249,
- 0.029419971629977226,
- -0.05404127761721611,
- 0.049779534339904785,
- -0.0026076403446495533,
- 0.02479199878871441,
- 0.058643050491809845,
- -0.006970823276787996,
- 0.03972731530666351,
- -0.02401178702712059,
- 0.11232621967792511,
- -0.03429890424013138,
- -0.006934035569429398,
- 0.04646596685051918,
- -0.03718042001128197,
- -0.016715606674551964,
- -0.006617202889174223,
- -0.02702515572309494,
- -0.012171740643680096,
- -0.019081825390458107,
- -0.06213148310780525,
- 0.04488629102706909,
- -0.00678792130202055,
- -0.03422386571764946,
- -0.014680747874081135,
- 0.0756637379527092,
- 0.0194011852145195,
- 0.06394696235656738,
- -0.024193696677684784,
- -0.14699441194534302,
- 0.002260754117742181,
- -0.02735542692244053,
- -0.029037728905677795,
- -0.00966037716716528,
- 0.03174353390932083,
- 0.026720037683844566,
- -0.009721877053380013,
- 0.006472807377576828,
- 0.06591656804084778,
- -0.015149913728237152,
- 0.01058873813599348,
- -0.14952965080738068,
- 0.0038678462151437998,
- -0.030354879796504974,
- -0.005587388761341572,
- -0.02985166199505329,
- 0.024317661300301552,
- -0.03189009055495262,
- 0.07331709563732147,
- -0.03378557786345482,
- 0.020458897575736046,
- -0.04372135177254677,
- 0.0000311988806060981,
- 0.037839844822883606,
- 0.04447101056575775,
- 0.019007019698619843,
- 0.003219090634956956,
- -0.030039051547646523,
- 0.01998993195593357,
- -0.008808705024421215,
- 0.05402044206857681,
- -0.012981862761080265,
- -0.025899672880768776,
- 0.07636236399412155,
- -0.08114750683307648,
- -0.011534567922353745,
- -0.01507463026791811,
- 0.018660644069314003,
- -0.06995372474193573,
- -0.09512519836425781,
- -0.03945017233490944,
- -0.06420662254095078,
- -0.037714019417762756,
- -0.08178140223026276,
- 0.042034607380628586,
- -0.014410757459700108,
- 0.046871546655893326,
- -0.022381708025932312,
- 0.04443487152457237,
- 0.015224937349557877,
- 0.10480286926031113,
- -0.016079474240541458,
- -0.055140960961580276,
- 0.04778534919023514,
- 0.031210169196128845,
- 0.02547295391559601,
- 0.004835339263081551,
- 0.001696283812634647,
- -0.08977017551660538,
- -0.038024161010980606,
- -0.04146790876984596,
- 0.03121110610663891,
- 0.09623178094625473,
- -0.019031640142202377,
- 0.01375520695000887,
- -0.004468277096748352,
- -0.008871602825820446,
- -0.007615701761096716,
- -0.1062065064907074,
- 0.20317396521568298,
- 0.0777013748884201,
- 0.04168414697051048,
- -0.01466344203799963,
- 0.0027442597784101963,
- 0.01331290416419506,
- -0.024369368329644203,
- -0.056912265717983246,
- 0.04907865822315216,
- 0.06669902801513672,
- -0.04087483137845993,
- -0.007936988025903702,
- 0.0024383075069636106,
- -0.11171161383390427,
- -0.016685061156749725,
- 0.03358597308397293,
- 0.014223365113139153,
- 0.0014832247979938984,
- -0.012872276827692986,
- 0.01908399537205696,
- 0.0077182273380458355,
- 0.04677349701523781,
- 0.045050524175167084,
- -0.03935638815164566,
- -0.0073221055790781975,
- -0.04934551194310188,
- -0.012654938735067844,
- 0.09394734352827072,
- -4.48350479869112e-33,
- 0.00754067488014698,
- 0.01156881544739008,
- -0.050277434289455414,
- -0.009747997857630253,
- 0.020104270428419113,
- 0.05554063990712166,
- 0.029829900711774826,
- 0.13691601157188416,
- -0.016858812421560287,
- 0.07472921907901764,
- -0.03107079491019249,
- 0.027970587834715843,
- -0.054737262427806854,
- 0.05293083190917969,
- 0.09008163958787918,
- -0.030909501016139984,
- -0.07253961265087128,
- 0.058721479028463364,
- 0.023005040362477303,
- 0.02099243924021721,
- -0.006215272471308708,
- -0.05564308166503906,
- 0.0031478554010391235,
- 0.04760976508259773,
- 0.04574994370341301,
- -0.033789463341236115,
- -0.019506333395838737,
- -0.06532078236341476,
- -0.005961847025901079,
- 0.004155016504228115,
- -0.0004719375865533948,
- 0.03708703815937042,
- 0.07683539390563965,
- 0.0052939485758543015,
- -0.08771943300962448,
- -0.020014692097902298,
- 0.00712802167981863,
- -0.06996175646781921,
- -0.009011400863528252,
- 0.008721724152565002,
- -0.05081809312105179,
- 0.07074382901191711,
- -0.026961375027894974,
- 0.0294120442122221,
- 0.05724639073014259,
- 0.02019614353775978,
- 0.05506148561835289,
- 0.03287740424275398,
- 0.10031920671463013,
- 0.0883760154247284,
- -0.01921425387263298,
- -0.000250242737820372,
- 0.001715281279757619,
- -0.009480553679168224,
- 0.03787507116794586,
- 0.002923213643953204,
- 0.008732140064239502,
- 0.04495923966169357,
- 0.025141803547739983,
- -0.04764717072248459,
- -0.024393830448389053,
- 0.11303383111953735,
- -0.10006927698850632,
- -0.004312706645578146,
- -0.023661669343709946,
- 0.06786102056503296,
- 0.024237122386693954,
- 0.02067606896162033,
- 0.006079724989831448,
- 0.021442143246531487,
- -0.11715243756771088,
- -0.0008523412398062646,
- 0.01372469775378704,
- -0.051089540123939514,
- -0.021635089069604874,
- 0.022520113736391068,
- -0.08704403042793274,
- 0.02798391319811344,
- -0.022072037681937218,
- -0.07395848631858826,
- -0.08246453106403351,
- -0.034141961485147476,
- 0.013416598550975323,
- 0.06097327917814255,
- 0.06734143942594528,
- 0.019232839345932007,
- -0.047371551394462585,
- -0.04378318041563034,
- 0.06451606005430222,
- -0.021720875054597855,
- 0.001828478998504579,
- 0.09999214857816696,
- 0.010386619716882706,
- -0.006318159867078066,
- 0.08601928502321243,
- 3.6043691041004395e-33,
- -0.047789961099624634,
- -0.01678646169602871,
- -0.0460328534245491,
- 0.06388464570045471,
- 0.07143381237983704,
- -0.04479340463876724,
- -0.013014563359320164,
- -0.07540647685527802,
- -0.0021117888391017914,
- 0.036942899227142334,
- -0.053359828889369965,
- 0.01628011092543602,
- 0.07825504243373871,
- -0.017056532204151154,
- 0.10126224905252457,
- -0.0349920392036438,
- -0.058476388454437256,
- 0.007297765463590622,
- 0.0021191537380218506,
- 0.07343365997076035,
- -0.003841007361188531,
- 0.04558131843805313,
- 0.09622722119092941,
- -0.041823454201221466,
- -0.003343011951074004,
- 0.05632824823260307,
- 0.060814693570137024,
- -0.01527481060475111,
- 0.015759972855448723,
- 0.06891743093729019,
- 0.016670282930135727,
- -0.035354726016521454,
- 0.005613939370959997,
- 0.08250098675489426,
- -0.06499586254358292,
- 0.11748559772968292,
- -0.03926332667469978,
- 0.044880691915750504,
- -0.05160271376371384,
- -0.017316322773694992,
- 0.07397670298814774,
- -0.013266517780721188,
- -0.028191590681672096,
- 0.13500699400901794,
- -0.10339345037937164,
- -0.03391847759485245,
- -0.03217659518122673,
- -0.04038030281662941,
- 0.07985881716012955,
- 0.017972929403185844,
- -0.16716817021369934,
- -0.012916949577629566,
- -0.026311425492167473,
- 0.005097185727208853,
- -0.02954985946416855,
- -0.04178278148174286,
- 0.07942117005586624,
- -0.020576979964971542,
- -0.005397055298089981,
- -0.03601701930165291,
- 0.024264147505164146,
- 0.032789960503578186,
- 0.01646646112203598,
- 0.04201999306678772,
- -0.00976860523223877,
- 0.02604505978524685,
- -0.037319209426641464,
- 0.025611676275730133,
- -0.04969454184174538,
- 0.031965456902980804,
- 0.027464142069220543,
- 0.058052077889442444,
- -0.042138755321502686,
- -0.03772374987602234,
- -0.08153528720140457,
- 0.0735776498913765,
- -0.07967422902584076,
- -0.02627180516719818,
- -0.03921572491526604,
- 0.01944713294506073,
- 0.018669532611966133,
- 0.007566788233816624,
- -0.03223492205142975,
- -0.045874498784542084,
- 0.01644716039299965,
- -0.10850949585437775,
- 0.014735414646565914,
- 0.03401796147227287,
- 0.048116400837898254,
- 0.03201339766383171,
- -0.029384968802332878,
- 0.10053900629281998,
- -0.08208658546209335,
- -0.018263302743434906,
- -0.028707632794976234,
- -1.1385097309357661e-8,
- -0.038195572793483734,
- 0.06490746885538101,
- 0.010958248749375343,
- -0.014524237252771854,
- 0.06281154602766037,
- -0.06299848109483719,
- 0.04075220599770546,
- -0.04507460817694664,
- 0.03346997871994972,
- 0.035609107464551926,
- 0.04358416423201561,
- 0.026838911697268486,
- 0.0019889024551957846,
- 0.03000473603606224,
- 0.09304860979318619,
- -0.017178738489747047,
- -0.06931658089160919,
- -0.008735970593988895,
- -0.016587747260928154,
- 0.05539138987660408,
- -0.011717429384589195,
- 0.021532118320465088,
- 0.023830823600292206,
- -0.04919008910655975,
- 0.018974412232637405,
- -0.062274232506752014,
- 0.03719571605324745,
- 0.0845194160938263,
- 0.039954908192157745,
- 0.016756784170866013,
- -0.016887878999114037,
- 0.03602376952767372,
- -0.04060600325465202,
- -0.05178222060203552,
- -0.021857159212231636,
- -0.039447981864213943,
- 0.015889007598161697,
- -0.03099517524242401,
- -0.06789682805538177,
- -0.050559405237436295,
- -0.06136273592710495,
- -0.1403292864561081,
- -0.04024670273065567,
- -0.0698920413851738,
- -0.04874452203512192,
- 0.039816226810216904,
- -0.035555265843868256,
- -0.03820192068815231,
- 0.03393520414829254,
- 0.07665742188692093,
- -0.10925806313753128,
- -0.09818245470523834,
- -0.012261594645678997,
- 0.05011260509490967,
- 0.05333756282925606,
- 0.00935740489512682,
- -0.03122427687048912,
- 0.025526676326990128,
- -0.045343153178691864,
- -0.03770272061228752,
- 0.02346874214708805,
- 0.08101224899291992,
- 0.10964688658714294,
- -0.02688923105597496
- ]
- },
- {
- "keyword": "chain",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.052439406514167786,
- 0.04933007061481476,
- 0.044952139258384705,
- 0.0357532724738121,
- -0.0336577370762825,
- -0.015218906104564667,
- 0.027875956147909164,
- 0.023929478600621223,
- 0.018960414454340935,
- -0.02218935638666153,
- 0.045249391347169876,
- -0.006828250363469124,
- 0.03102502040565014,
- -0.0063456762582063675,
- -0.012604502029716969,
- 0.05688990280032158,
- -0.044680334627628326,
- 0.04143398627638817,
- -0.006278941873461008,
- -0.11661432683467865,
- -0.023523036390542984,
- 0.040611397475004196,
- -0.017815779894590378,
- 0.023906411603093147,
- -0.08735343813896179,
- -0.02726437896490097,
- 0.025764672085642815,
- 0.01114188227802515,
- -0.04204919561743736,
- -0.15177667140960693,
- -0.021753815934062004,
- 0.02672574669122696,
- -0.03425038978457451,
- -0.021653540432453156,
- -0.08501440286636353,
- 0.07460426539182663,
- 0.035196252167224884,
- -0.0032252760138362646,
- 0.046682193875312805,
- -0.03044985421001911,
- 0.03067689575254917,
- 0.0006223611999303102,
- 0.051404766738414764,
- -0.0317898765206337,
- -0.011362445540726185,
- -0.03848698362708092,
- -0.0057164933532476425,
- 0.013623115606606007,
- 0.020489219576120377,
- 0.044883280992507935,
- -0.00022902771888766438,
- -0.040695920586586,
- -0.026150301098823547,
- 0.05771160125732422,
- 0.10676158964633942,
- 0.06501496583223343,
- -0.05751765891909599,
- -0.0429009310901165,
- 0.01248084008693695,
- -0.01861337386071682,
- 0.022743944078683853,
- -0.010710332542657852,
- -0.08480154722929001,
- 0.01722557283937931,
- 0.09143567830324173,
- -0.009224210865795612,
- 0.06038975343108177,
- 0.04956689476966858,
- -0.04819345846772194,
- 0.05932456627488136,
- 0.0036697792820632458,
- -0.022281605750322342,
- 0.003630388528108597,
- 0.07816969603300095,
- 0.06916399300098419,
- -0.011692105792462826,
- -0.010722699575126171,
- -0.054320674389600754,
- 0.053349148482084274,
- -0.00999507773667574,
- -0.048928093165159225,
- -0.005761163309216499,
- -0.04554533213376999,
- -0.024525150656700134,
- -0.031553011387586594,
- 0.04563147947192192,
- 0.016346724703907967,
- 0.01139321830123663,
- -0.006966238841414452,
- 0.045168187469244,
- -0.05862971022725105,
- -0.03811154142022133,
- 0.06397531181573868,
- -0.036424797028303146,
- -0.005386905279010534,
- 0.004811548627912998,
- -0.030346747487783432,
- -0.008291120640933514,
- -0.01572921872138977,
- 0.2429172694683075,
- 0.07890994101762772,
- 0.034241944551467896,
- -0.030214423313736916,
- -0.039793461561203,
- -0.01076318696141243,
- 0.022332577034831047,
- -0.01367203239351511,
- 0.044549811631441116,
- -0.0020212025847285986,
- 0.028814703226089478,
- -0.014417313039302826,
- 0.011919472366571426,
- 0.003582828911021352,
- -0.03914041817188263,
- -0.08102285116910934,
- -0.04323577880859375,
- 0.02117946557700634,
- 0.02500353567302227,
- 0.011301509104669094,
- 0.014739284291863441,
- 0.051486849784851074,
- 0.04791820049285889,
- -0.027156464755535126,
- 0.03223415091633797,
- -0.08868527412414551,
- -0.061222486197948456,
- 0.025932835415005684,
- -5.7175516251538194e-33,
- -0.03747757151722908,
- -0.06355662643909454,
- 0.0826767086982727,
- 0.000545155955478549,
- 0.05950655788183212,
- 0.000601698353420943,
- -0.03179145231842995,
- -0.04493420943617821,
- -0.07913786917924881,
- 0.02179071120917797,
- -0.046380750834941864,
- -0.03941821679472923,
- -0.06579329073429108,
- 0.002611809642985463,
- 0.06635614484548569,
- -0.05860966444015503,
- 0.06511548161506653,
- 0.033943627029657364,
- 0.06349845230579376,
- -0.021746208891272545,
- -0.03733762726187706,
- 0.03882180526852608,
- 0.021260036155581474,
- 0.003734270343557,
- 0.00789638888090849,
- -0.0632234439253807,
- 0.01198581326752901,
- -0.025103598833084106,
- -0.028898481279611588,
- 0.021338675171136856,
- 0.024288713932037354,
- -0.012804759666323662,
- -0.00004135225753998384,
- 0.031977713108062744,
- -0.006994959898293018,
- 0.06945811212062836,
- 0.008055425249040127,
- -0.0497465506196022,
- -0.013693113811314106,
- -0.02937168814241886,
- -0.009021756239235401,
- -0.010065479204058647,
- -0.05688413605093956,
- 0.0040178378112614155,
- -0.10204433649778366,
- 0.05399510636925697,
- 0.060998037457466125,
- -0.031142977997660637,
- -0.04288468882441521,
- 0.08094185590744019,
- 0.01957261562347412,
- 0.004765510093420744,
- -0.0068119908683001995,
- -0.026381829753518105,
- -0.025383125990629196,
- -0.016364607959985733,
- 0.00043715437641367316,
- -0.01130558829754591,
- 0.000006774575012968853,
- 0.054534848779439926,
- 0.0712537094950676,
- 0.09717322885990143,
- -0.03922160714864731,
- 0.06088003143668175,
- -0.02866816706955433,
- -0.008826909586787224,
- -0.01880066655576229,
- -0.07131914049386978,
- 0.0002944698790088296,
- 0.009860231541097164,
- -0.05942133441567421,
- -0.01902208849787712,
- 0.05305490270256996,
- 0.05759071931242943,
- 0.04573040083050728,
- 0.004937384277582169,
- -0.16292704641819,
- -0.05557548627257347,
- 0.0047523570246994495,
- -0.015180038288235664,
- -0.12991544604301453,
- -0.04299098253250122,
- -0.04461091384291649,
- 0.09533833712339401,
- 0.0050355782732367516,
- -0.01371969934552908,
- -0.020237179473042488,
- -0.015733810141682625,
- 0.03667240962386131,
- 0.0900486633181572,
- -0.05162430182099342,
- -0.026664000004529953,
- 0.11667044460773468,
- 0.08715402334928513,
- 0.05915950983762741,
- 4.01741945188016e-33,
- -0.025328366085886955,
- 0.03187626972794533,
- 0.11086472868919373,
- 0.020564256235957146,
- 0.017961202189326286,
- -0.03464873880147934,
- 0.04069923609495163,
- 0.017517853528261185,
- -0.06119008734822273,
- 0.07294555753469467,
- 0.003415291430428624,
- 0.02337418869137764,
- -0.05072788521647453,
- 0.03195235878229141,
- 0.12460345774888992,
- 0.04466883838176727,
- 0.06534216552972794,
- 0.01267706323415041,
- 0.008981960825622082,
- -0.015898920595645905,
- 0.017843062058091164,
- -0.014763636514544487,
- -0.0706038624048233,
- 0.06048163026571274,
- -0.0606846921145916,
- 0.08485406637191772,
- 0.07691143453121185,
- 0.05765778198838234,
- 0.01620279997587204,
- -0.02562052011489868,
- 0.019582774490118027,
- -0.029703104868531227,
- 0.01832742430269718,
- 0.017106613144278526,
- -0.058056123554706573,
- 0.11515431106090546,
- 0.08095122873783112,
- 0.0532204769551754,
- -0.011194039136171341,
- -0.06202634423971176,
- 0.05329268053174019,
- 0.016204874962568283,
- -0.04327524080872536,
- 0.04230149835348129,
- -0.03843570500612259,
- 0.01627243682742119,
- 0.053210265934467316,
- -0.008574159815907478,
- 0.06553928554058075,
- -0.015667783096432686,
- -0.10663104802370071,
- 0.04155292734503746,
- 0.01632644794881344,
- -0.11592117697000504,
- -0.0001183183048851788,
- 0.025440143421292305,
- -0.04578343406319618,
- 0.01948189176619053,
- 0.09795186668634415,
- -0.029313208535313606,
- -0.08061175793409348,
- 0.003745693014934659,
- -0.0021826447919011116,
- 0.03146878629922867,
- 0.010915575549006462,
- -0.03683997318148613,
- -0.011424427852034569,
- -0.09478472918272018,
- -0.03747660666704178,
- -0.00007424736395478249,
- 0.039184775203466415,
- 0.13126038014888763,
- -0.014636198990046978,
- -0.028832856565713882,
- -0.038914285600185394,
- -0.08049964904785156,
- -0.08901964873075485,
- -0.06412725895643234,
- -0.009263623505830765,
- 0.004014254081994295,
- 0.004056491423398256,
- -0.06834100186824799,
- -0.01660642772912979,
- 0.041178327053785324,
- -0.016815051436424255,
- -0.07068166136741638,
- 0.0913284420967102,
- 0.030406897887587547,
- 0.026238059625029564,
- -0.024503864347934723,
- 0.022925933822989464,
- 0.017599664628505707,
- -0.07410076260566711,
- -0.031960759311914444,
- -0.009359951131045818,
- -1.2448737152226386e-8,
- 0.0016337427077814937,
- -0.06408727914094925,
- -0.025490503758192062,
- -0.04657842591404915,
- 0.026761187240481377,
- 0.03267619013786316,
- 0.05779753997921944,
- 0.05563011392951012,
- 0.030950302258133888,
- 0.04621756076812744,
- 0.0011734713334590197,
- 0.0856144055724144,
- -0.001371373888105154,
- 0.07039587199687958,
- 0.04408428072929382,
- -0.03631304204463959,
- -0.025071490556001663,
- 0.03327620029449463,
- -0.03277217596769333,
- -0.016064399853348732,
- -0.08055710792541504,
- 0.03526138514280319,
- -0.03783725947141647,
- 0.08134080469608307,
- -0.0697539895772934,
- -0.0323738269507885,
- 0.063021719455719,
- 0.06274287402629852,
- 0.059000782668590546,
- 0.02062724344432354,
- 0.025217730551958084,
- 0.06816363334655762,
- -0.10049817711114883,
- -0.004423429258167744,
- -0.04824912175536156,
- -0.019965868443250656,
- -0.06975312530994415,
- 0.027077259495854378,
- 0.05000412091612816,
- 0.0350365974009037,
- -0.021770760416984558,
- -0.010387985967099667,
- 0.015422205440700054,
- -0.01908416487276554,
- -0.03779949992895126,
- -0.08930997550487518,
- -0.1058293953537941,
- 0.026589687913656235,
- -0.032915979623794556,
- -0.016367560252547264,
- 0.0013962176162749529,
- 0.004749573767185211,
- 0.019103502854704857,
- 0.01876421459019184,
- 0.03775755316019058,
- -0.08978551626205444,
- 0.025161048397421837,
- -0.033324308693408966,
- -0.12217137962579727,
- 0.02195032685995102,
- 0.09411018341779709,
- -0.08951722085475922,
- 0.1538003832101822,
- -0.07970864325761795
- ]
- },
- {
- "keyword": "restaurant",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0016227829037234187,
- 0.003940925467759371,
- -0.012830393388867378,
- 0.044103287160396576,
- -0.15236569941043854,
- -0.0031633228063583374,
- 0.0875634253025055,
- -0.07451412081718445,
- 0.04730851948261261,
- -0.06875438988208771,
- 0.08727975934743881,
- -0.019373584538698196,
- -0.0002007590956054628,
- -0.008857207372784615,
- 0.045022815465927124,
- -0.13134552538394928,
- 0.0988025888800621,
- 0.012989502400159836,
- 0.029144518077373505,
- -0.09155663102865219,
- -0.05109706148505211,
- -0.00024388529709540308,
- -0.055997177958488464,
- -0.00726526090875268,
- 0.004873187746852636,
- 0.031244874000549316,
- -0.0030901392456144094,
- 0.01818220131099224,
- -0.028143834322690964,
- -0.07241545617580414,
- 0.014298928901553154,
- -0.004445669706910849,
- 0.032631080597639084,
- 0.03596242517232895,
- -0.04280048981308937,
- 0.003949405625462532,
- 0.03628721833229065,
- -0.06362783908843994,
- 0.08955399692058563,
- 0.030951540917158127,
- -0.03974315524101257,
- -0.043609101325273514,
- -0.00011021453974535689,
- -0.03261907026171684,
- 0.04452342167496681,
- 0.02373543381690979,
- -0.0567200593650341,
- 0.03264690563082695,
- 0.031856898218393326,
- 0.010578549467027187,
- -0.04760020971298218,
- 0.04093414917588234,
- -0.00022092745348345488,
- 0.01681273616850376,
- 0.023842932656407356,
- -0.0055443593300879,
- -0.03202924132347107,
- -0.013385271653532982,
- -0.0005923134740442038,
- 0.03818298131227493,
- 0.09122468531131744,
- -0.04599529504776001,
- -0.025191036984324455,
- 0.044046275317668915,
- 0.005921126808971167,
- 0.00019081275968346745,
- -0.06411843746900558,
- 0.05015761777758598,
- -0.044999368488788605,
- -0.09208892285823822,
- 0.03926582634449005,
- -0.05730835348367691,
- 0.06683351844549179,
- -0.006683817133307457,
- 0.03213174268603325,
- -0.0733066126704216,
- 0.03533311188220978,
- -0.05366115644574165,
- 0.004653945565223694,
- 0.015141231007874012,
- -0.01353002991527319,
- -0.07165439426898956,
- -0.03530079871416092,
- 0.036772292107343674,
- -0.0540020577609539,
- -0.00666159437969327,
- -0.016455402597784996,
- 0.040154602378606796,
- -0.0012996079167351127,
- -0.0017917287768796086,
- -0.044359397143125534,
- -0.007493035867810249,
- -0.024044489488005638,
- -0.09779050946235657,
- -0.017340868711471558,
- 0.022107213735580444,
- -0.05589951574802399,
- -0.03826482594013214,
- -0.028415992856025696,
- 0.22587850689888,
- 0.01017362717539072,
- 0.10319741815328598,
- 0.0686582401394844,
- 0.026356777176260948,
- 0.013162980787456036,
- -0.033740896731615067,
- 0.007584995590150356,
- 0.1093914583325386,
- 0.03453262522816658,
- -0.009264006279408932,
- -0.03820063918828964,
- 0.06535233557224274,
- -0.009149464778602123,
- -0.021199893206357956,
- -0.06609491258859634,
- 0.02298595942556858,
- 0.09391915798187256,
- -0.05339549854397774,
- 0.03413788229227066,
- 0.0009063632460311055,
- -0.03483036160469055,
- 0.11402737349271774,
- -0.08558870106935501,
- 0.028149137273430824,
- -0.12651126086711884,
- -0.0033585617784410715,
- 0.012590105645358562,
- -5.0630995534373264e-33,
- -0.03024245984852314,
- -0.026849791407585144,
- 0.04221361503005028,
- -0.03453632816672325,
- 0.10014522075653076,
- 0.023312320932745934,
- -0.0008872254402376711,
- -0.009951774962246418,
- 0.0038515524938702583,
- 0.039257973432540894,
- 0.028435133397579193,
- -0.0845489352941513,
- -0.007762156426906586,
- -0.004177601542323828,
- 0.13457927107810974,
- 0.07322830706834793,
- 0.0350656732916832,
- 0.09215126931667328,
- -0.008664501830935478,
- -0.07917701452970505,
- -0.020746856927871704,
- 0.0007723657763563097,
- 0.029021017253398895,
- 0.02245381660759449,
- -0.026154348626732826,
- -0.014642205089330673,
- -0.032528575509786606,
- -0.011224844492971897,
- 0.018294066190719604,
- 0.0043075499124825,
- 0.029982680454850197,
- 0.03708675503730774,
- -0.01067587360739708,
- 0.008563670329749584,
- -0.05830148980021477,
- -0.07484304159879684,
- 0.004435352981090546,
- -0.06147270277142525,
- -0.015913626179099083,
- -0.06992104649543762,
- -0.05392685905098915,
- 0.05075966939330101,
- -0.03869260475039482,
- 0.07109446823596954,
- -0.022736970335245132,
- 0.06518498063087463,
- -0.009015076793730259,
- 0.022883370518684387,
- 0.013579493388533592,
- 0.06118842214345932,
- -0.04976609721779823,
- -0.027854597195982933,
- -0.032899875193834305,
- 0.01730755902826786,
- -0.04464873671531677,
- -0.061652325093746185,
- 0.04578154534101486,
- -0.030175190418958664,
- 0.054604820907115936,
- -0.041889362037181854,
- 0.0590648278594017,
- 0.11970009654760361,
- -0.022523272782564163,
- -0.02193661965429783,
- 0.036244701594114304,
- -0.024466071277856827,
- 0.025058643892407417,
- -0.011819585226476192,
- 0.09338942170143127,
- 0.022968251258134842,
- 0.005098707973957062,
- -0.013662918470799923,
- 0.07343411445617676,
- 0.0424095094203949,
- 0.008956926874816418,
- 0.027383990585803986,
- -0.06129088252782822,
- -0.02818414196372032,
- -0.027215609326958656,
- 0.002030568663030863,
- 0.066224604845047,
- 0.003208777168765664,
- 0.008892407640814781,
- 0.054668083786964417,
- -0.018104467540979385,
- 0.08495499193668365,
- -0.00033698586048558354,
- -0.10226071625947952,
- 0.04544672742486,
- 0.06372877955436707,
- -0.15081842243671417,
- 0.01036057062447071,
- 0.03341088071465492,
- 0.06346593797206879,
- -0.023825831711292267,
- 4.105406306065162e-33,
- -0.006188650615513325,
- -0.0627412348985672,
- -0.040776997804641724,
- 0.02483941614627838,
- 0.007875400595366955,
- -0.046150147914886475,
- -0.08411191403865814,
- -0.0481293722987175,
- -0.046842221170663834,
- 0.0013035399606451392,
- -0.09180735796689987,
- -0.021181799471378326,
- 0.091211698949337,
- 0.01615554466843605,
- 0.00022927208920009434,
- 0.12806390225887299,
- 0.08271154761314392,
- 0.020233215764164925,
- -0.038869574666023254,
- 0.06191198155283928,
- -0.012661341577768326,
- 0.028919974341988564,
- 0.015540800988674164,
- 0.05251356214284897,
- -0.01726665161550045,
- 0.0762890949845314,
- 0.03558719530701637,
- 0.05198489874601364,
- -0.12421704828739166,
- -0.07407376170158386,
- -0.04586111381649971,
- -0.04009053483605385,
- 0.07221316546201706,
- 0.03941996395587921,
- -0.021701613441109657,
- 0.13918602466583252,
- -0.02744980901479721,
- -0.012423468753695488,
- -0.026372451335191727,
- 0.04848043620586395,
- 0.11576192080974579,
- -0.060342833399772644,
- -0.024610713124275208,
- 0.16279004514217377,
- 0.018065473064780235,
- -0.010224108584225178,
- 0.016193334013223648,
- -0.039413850754499435,
- 0.02379590831696987,
- -0.058697544038295746,
- -0.05254314839839935,
- -0.029262932017445564,
- -0.03826130926609039,
- -0.00017161564028356224,
- 0.01521643903106451,
- 0.07419995218515396,
- -0.050848063081502914,
- 0.020376451313495636,
- -0.04193905368447304,
- -0.03543443605303764,
- 0.014612339437007904,
- 0.021809697151184082,
- 0.014208988286554813,
- 0.10271595418453217,
- 0.015068850480020046,
- 0.0049627372063696384,
- 0.026796307414770126,
- -0.024073751643300056,
- 0.0033339925576001406,
- 0.005240472964942455,
- -0.016275841742753983,
- 0.04968627542257309,
- 0.031618837267160416,
- 0.0651698112487793,
- -0.09941373765468597,
- 0.0035828356631100178,
- 0.010113386437296867,
- -0.006858136039227247,
- -0.03518164902925491,
- -0.0559382326900959,
- -0.04261566698551178,
- -0.06767556816339493,
- -0.019696783274412155,
- 0.015686508268117905,
- 0.009327049367129803,
- -0.022715575993061066,
- 0.0647202730178833,
- 0.032201074063777924,
- -0.006718455348163843,
- 0.0040415022522211075,
- -0.03002522885799408,
- 0.06259888410568237,
- -0.053469885140657425,
- -0.045383378863334656,
- -0.007460831664502621,
- -1.1847557601640801e-8,
- 0.0566306971013546,
- -0.026725199073553085,
- -0.02890392765402794,
- 0.03487028181552887,
- 0.026338625699281693,
- -0.10746754705905914,
- 0.035252053290605545,
- -0.007875959388911724,
- 0.018032534047961235,
- 0.0400833785533905,
- -0.10221833735704422,
- 0.003680457128211856,
- -0.024960597977042198,
- 0.003806140273809433,
- 0.023167258128523827,
- -0.0001961984671652317,
- 0.03894177824258804,
- 0.00641449773684144,
- -0.026689033955335617,
- 0.02831399068236351,
- 0.022765781730413437,
- 0.03109048306941986,
- 0.07824953645467758,
- -0.022387174889445305,
- -0.022660134360194206,
- -0.011800532229244709,
- 0.0002156192495021969,
- 0.07580611854791641,
- 0.03927755355834961,
- 0.0009166905074380338,
- 0.020133476704359055,
- 0.007715314626693726,
- -0.0473308265209198,
- -0.03304748609662056,
- 0.02025412768125534,
- -0.020661015063524246,
- -0.04295845702290535,
- -0.06638266891241074,
- -0.037027791142463684,
- -0.10801126062870026,
- -0.10525444895029068,
- -0.04165341332554817,
- -0.06510625779628754,
- 0.0267544724047184,
- -0.021108798682689667,
- 0.0930931493639946,
- 0.036424968391656876,
- 0.025959651917219162,
- -0.01972931995987892,
- 0.0011036391369998455,
- -0.09269703924655914,
- 0.0031383195891976357,
- 0.06934036314487457,
- -0.04275589808821678,
- 0.01698538102209568,
- -0.016527503728866577,
- 0.034260526299476624,
- -0.003936889581382275,
- 0.030799152329564095,
- 0.05565781891345978,
- 0.07978612184524536,
- 0.03898734599351883,
- -0.033476732671260834,
- -0.02726939134299755
- ]
- },
- {
- "keyword": "hotel",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.057814691215753555,
- 0.04540938884019852,
- -0.061491694301366806,
- 0.0713968575000763,
- -0.05182386562228203,
- 0.007932618260383606,
- 0.09820430725812912,
- -0.07417511194944382,
- 0.08341784030199051,
- -0.018811721354722977,
- 0.04952237010002136,
- -0.03416571393609047,
- 0.04347596317529678,
- 0.04752618074417114,
- 0.09138598293066025,
- -0.04958760738372803,
- 0.015439131297171116,
- -0.018703918904066086,
- 0.06065191701054573,
- -0.03575291112065315,
- -0.07739929109811783,
- 0.018406827002763748,
- -0.04269781708717346,
- 0.028021473437547684,
- 0.038983117789030075,
- 0.013921036384999752,
- -0.007469764444977045,
- 0.07176367938518524,
- -0.03551388159394264,
- -0.07025789469480515,
- 0.003930468577891588,
- 0.08528874814510345,
- 0.014564501121640205,
- -0.02857626974582672,
- 0.10950259119272232,
- 0.1115797758102417,
- -0.024683495983481407,
- -0.03768404573202133,
- 0.05522691085934639,
- 0.016097888350486755,
- -0.017184505239129066,
- 0.013456504791975021,
- 0.046251531690359116,
- -0.020135708153247833,
- 0.02074170671403408,
- 0.0015912369126453996,
- -0.05026194825768471,
- 0.016438212245702744,
- 0.06525265425443649,
- 0.03480096906423569,
- 0.046688489615917206,
- 0.06575668603181839,
- -0.0443318635225296,
- 0.002552557270973921,
- 0.011186416260898113,
- -0.0051379697397351265,
- -0.03121950291097164,
- -0.0356643907725811,
- 0.0014859565999358892,
- 0.004797592759132385,
- 0.07341866940259933,
- -0.03371231257915497,
- 0.015866819769144058,
- 0.020860854536294937,
- -0.059127677232027054,
- 0.028600001707673073,
- -0.08510493487119675,
- 0.061016615480184555,
- -0.01134542003273964,
- -0.1079222783446312,
- -0.011296851560473442,
- -0.0015408307081088424,
- -0.029317058622837067,
- -0.03553764894604683,
- 0.02159307897090912,
- -0.047684937715530396,
- -0.014432286843657494,
- -0.033912643790245056,
- 0.03303811699151993,
- 0.04551734775304794,
- -0.022116661071777344,
- -0.12197168916463852,
- 0.003433507401496172,
- -0.00008931423508329317,
- -0.04398477077484131,
- -0.038569360971450806,
- 0.046721480786800385,
- -0.001076565240509808,
- -0.06750538945198059,
- -0.0264164749532938,
- -0.003041129559278488,
- 0.003749797586351633,
- -0.07661963999271393,
- -0.021447230130434036,
- -0.013201319612562656,
- -0.017664754763245583,
- -0.06469564139842987,
- 0.019360657781362534,
- -0.034761782735586166,
- 0.20819129049777985,
- 0.11564349383115768,
- 0.0695575475692749,
- 0.0380401611328125,
- 0.0009122907067649066,
- -0.009698436595499516,
- -0.046278178691864014,
- 0.13155294954776764,
- 0.07305052876472473,
- 0.03985046595335007,
- -0.07445078343153,
- -0.09067819267511368,
- 0.035576075315475464,
- 0.036664143204689026,
- -0.020815040916204453,
- 0.0037668601144105196,
- 0.04101413115859032,
- 0.03836943581700325,
- -0.014525091275572777,
- 0.0651564672589302,
- -0.0009606196545064449,
- 0.03171128034591675,
- 0.010379615239799023,
- -0.015494554303586483,
- 0.023823987692594528,
- -0.11833921819925308,
- -0.06478562206029892,
- 0.03231298550963402,
- -4.6302042896218336e-33,
- -0.029070813208818436,
- -0.009187850169837475,
- -0.02004258707165718,
- 0.04572691023349762,
- 0.09138195216655731,
- 0.046036601066589355,
- -0.0834292620420456,
- -0.016529535874724388,
- -0.029670679941773415,
- 0.002911539049819112,
- 0.004896549042314291,
- -0.07894515991210938,
- -0.011653877794742584,
- -0.04022340849041939,
- 0.057148970663547516,
- 0.059340182691812515,
- 0.08647352457046509,
- 0.035237208008766174,
- 0.0057329838164150715,
- -0.09124115854501724,
- -0.03420865908265114,
- 0.02079945243895054,
- 0.05402998998761177,
- 0.03703847900032997,
- -0.014237731695175171,
- -0.012832669541239738,
- -0.0005002310499548912,
- 0.0017192901577800512,
- 0.025980981066823006,
- 0.021936390548944473,
- 0.008698351681232452,
- -0.006566355470567942,
- -0.04691236838698387,
- -0.010692914016544819,
- 0.014943559654057026,
- 0.041365716606378555,
- -0.026340549811720848,
- -0.012158039957284927,
- -0.044868405908346176,
- -0.0011132637737318873,
- -0.11948230862617493,
- 0.03563263267278671,
- -0.058205798268318176,
- 0.07785157114267349,
- 0.001823342521674931,
- 0.0739830955862999,
- 0.008443408645689487,
- 0.0012027794728055596,
- 0.04649467393755913,
- 0.06171053275465965,
- -0.08634651452302933,
- -0.03632719814777374,
- -0.17414408922195435,
- 0.06053133308887482,
- -0.04629932716488838,
- -0.04581103473901749,
- 0.028645776212215424,
- -0.012460854835808277,
- 0.07958069443702698,
- -0.03935176506638527,
- 0.054453931748867035,
- 0.09051463752985,
- -0.09080475568771362,
- -0.02341383323073387,
- 0.03931976854801178,
- -0.04255140572786331,
- 0.020648695528507233,
- -0.021717878058552742,
- 0.04080481082201004,
- -0.020803222432732582,
- 0.019267110154032707,
- -0.012304545380175114,
- 0.031374700367450714,
- 0.04647859185934067,
- -0.014251885004341602,
- 0.01646907813847065,
- -0.031206831336021423,
- 0.05962628126144409,
- -0.0024986399803310633,
- 0.020294666290283203,
- 0.021625401452183723,
- 0.022448357194662094,
- 0.032312601804733276,
- 0.04497123882174492,
- -0.03640754520893097,
- -0.02751745469868183,
- 0.0348670668900013,
- -0.04939142242074013,
- -0.04328532889485359,
- 0.006060283165425062,
- -0.0783410370349884,
- 0.020528243854641914,
- 0.07428093254566193,
- -0.02614600397646427,
- 0.014820890501141548,
- 4.255004859938591e-33,
- 0.03787966072559357,
- -0.10587447136640549,
- 0.013002460822463036,
- -0.020178671926259995,
- 0.04086754471063614,
- 0.03201922029256821,
- -0.0018245297251269221,
- -0.03801781311631203,
- -0.025328250601887703,
- 0.02425425313413143,
- -0.09417271614074707,
- -0.03704213351011276,
- 0.08975934982299805,
- -0.01139750238507986,
- 0.047453347593545914,
- 0.04251725971698761,
- 0.09207796305418015,
- -0.009824004024267197,
- -0.06488203257322311,
- 0.10801837593317032,
- -0.0360470712184906,
- 0.05686357989907265,
- -0.05783995985984802,
- -0.004401794634759426,
- -0.01184955146163702,
- 0.1002197340130806,
- 0.0003368726174812764,
- -0.0015307943103834987,
- -0.08323368430137634,
- -0.039543285965919495,
- -0.04960636794567108,
- -0.009772728197276592,
- -0.0176952313631773,
- 0.11285606771707535,
- 0.020112212747335434,
- 0.10543499886989594,
- 0.059261057525873184,
- 0.04324593394994736,
- -0.11429567635059357,
- 0.049396444112062454,
- 0.09713100641965866,
- -0.058920543640851974,
- -0.04524894431233406,
- 0.1027502715587616,
- 0.06572578102350235,
- -0.010241160169243813,
- -0.0633283481001854,
- -0.045663982629776,
- 0.05093933641910553,
- 0.0051389033906161785,
- -0.03841095790266991,
- -0.053296156227588654,
- -0.08617235720157623,
- -0.058707889169454575,
- -0.006855406798422337,
- -0.0038470516446977854,
- -0.09527212381362915,
- -0.013370026834309101,
- 0.025370528921484947,
- 0.03534800186753273,
- 0.01666216365993023,
- -0.011108783073723316,
- -0.0003842606383841485,
- 0.054326895624399185,
- -0.08387947082519531,
- -0.002665498061105609,
- -0.003827199339866638,
- 0.020632026717066765,
- 0.008973632007837296,
- 0.03400251641869545,
- -0.028611447662115097,
- 0.029975349083542824,
- -0.06810921430587769,
- 0.08010759204626083,
- -0.05266378074884415,
- -0.022766372188925743,
- 0.022493697702884674,
- -0.03018132410943508,
- -0.004880314227193594,
- -0.08391095697879791,
- 0.027098730206489563,
- -0.04384976625442505,
- -0.06204475834965706,
- 0.029769154265522957,
- -0.001540667493827641,
- -0.06207990273833275,
- 0.0919530913233757,
- -0.01949772611260414,
- -0.02929803915321827,
- -0.04420003667473793,
- -0.008253857493400574,
- -0.017110168933868408,
- -0.08089157938957214,
- -0.06546671688556671,
- -0.010848317295312881,
- -1.1629535556778592e-8,
- -0.06774526834487915,
- 0.004411081317812204,
- -0.012357493862509727,
- -0.02955988235771656,
- -0.01913624443113804,
- -0.15732638537883759,
- 0.04928658530116081,
- 0.023054590448737144,
- 0.05256710946559906,
- 0.061690445989370346,
- -0.035348743200302124,
- 0.005099404137581587,
- 0.051278527826070786,
- -0.0245816707611084,
- -0.07339375466108322,
- 0.05258355289697647,
- -0.04384941607713699,
- 0.02026817761361599,
- 0.04992450401186943,
- 0.0003050572704523802,
- 0.03750544786453247,
- 0.014142817817628384,
- 0.025817859917879105,
- -0.03505287319421768,
- 0.04131254926323891,
- 0.018910357728600502,
- -0.01947617717087269,
- 0.09441934525966644,
- 0.09913366287946701,
- -0.034175124019384384,
- 0.042993322014808655,
- 0.037583041936159134,
- -0.061594825237989426,
- -0.06326635926961899,
- -0.03406628593802452,
- -0.015708863735198975,
- 0.0145158302038908,
- -0.028992094099521637,
- -0.04231526330113411,
- -0.025617754086852074,
- -0.0585862398147583,
- -0.005631020292639732,
- -0.046738751232624054,
- -0.02492302469909191,
- -0.02369794063270092,
- 0.021186912432312965,
- 0.09367194771766663,
- -0.013262460008263588,
- -0.034909844398498535,
- 0.011235290206968784,
- -0.08363570272922516,
- 0.022311897948384285,
- 0.07172233611345291,
- 0.0418093316257,
- 0.01252046413719654,
- 0.007696201559156179,
- 0.02417799085378647,
- -0.026593200862407684,
- -0.020538169890642166,
- 0.022716492414474487,
- 0.04390479624271393,
- 0.028129801154136658,
- 0.0025625978596508503,
- -0.04713742062449455
- ]
- },
- {
- "keyword": "resort",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.10977913439273834,
- 0.021068617701530457,
- -0.047988105565309525,
- 0.0353059247136116,
- -0.0024602236226201057,
- -0.013838174752891064,
- 0.04550214484333992,
- -0.034480176866054535,
- -0.0005638559814542532,
- 0.008366869762539864,
- 0.04842366650700569,
- -0.015179707668721676,
- -0.0040993038564920425,
- 0.0997982919216156,
- 0.10538135468959808,
- -0.03410957381129265,
- -0.017084304243326187,
- 0.02082659676671028,
- 0.09303722530603409,
- -0.056719474494457245,
- 0.007698464673012495,
- -0.002413154812529683,
- -0.04980136826634407,
- 0.017749356105923653,
- -0.003951981198042631,
- 0.04805560037493706,
- -0.007153618149459362,
- 0.056723952293395996,
- -0.04599541425704956,
- -0.03374798968434334,
- -0.015573428943753242,
- 0.07516741007566452,
- -0.09338398277759552,
- -0.003498790552839637,
- 0.052702415734529495,
- 0.11217460036277771,
- -0.12590302526950836,
- -0.11753375083208084,
- 0.0008857878274284303,
- 0.01396316010504961,
- -0.036512382328510284,
- -0.0020213790703564882,
- 0.027189310640096664,
- -0.02275530807673931,
- 0.027662862092256546,
- 0.005795703269541264,
- -0.03896310180425644,
- 0.04598427563905716,
- 0.0779302716255188,
- 0.053834449499845505,
- 0.031244615092873573,
- -0.0037835463881492615,
- -0.0024202829226851463,
- -0.06367134302854538,
- -0.002120583551004529,
- 0.00217201909981668,
- -0.08095373958349228,
- -0.06257329136133194,
- 0.0258158128708601,
- -0.031851258128881454,
- 0.1184777170419693,
- -0.0498431921005249,
- -0.07885556668043137,
- -0.015939543023705482,
- -0.015110903419554234,
- -0.004426031373441219,
- -0.051681045442819595,
- 0.051555734127759933,
- 0.020077697932720184,
- -0.13392332196235657,
- -0.01750345714390278,
- -0.004086378496140242,
- -0.02261749655008316,
- -0.0014090967597439885,
- 0.017772873863577843,
- -0.06351573765277863,
- -0.002882623579353094,
- -0.02477295696735382,
- -0.004314049147069454,
- 0.004864045884460211,
- 0.07328526675701141,
- -0.06190970167517662,
- 0.01702903024852276,
- 0.013174752704799175,
- 0.00924412440508604,
- -0.04752542823553085,
- 0.07445652037858963,
- -0.05311806499958038,
- 0.08915188908576965,
- 0.011197761632502079,
- -0.028855562210083008,
- -0.06193755194544792,
- -0.05106121674180031,
- 0.009620719589293003,
- -0.09987132251262665,
- -0.008569530211389065,
- -0.05801272764801979,
- -0.0012128514936193824,
- -0.0441320464015007,
- 0.23186808824539185,
- 0.06657865643501282,
- 0.023150518536567688,
- 0.0571296326816082,
- 0.004220171831548214,
- -0.028837960213422775,
- -0.040453433990478516,
- 0.09095849841833115,
- 0.07988512516021729,
- 0.03113730438053608,
- -0.012058718129992485,
- -0.12219958752393723,
- 0.040353432297706604,
- 0.06885284930467606,
- -0.03558718413114548,
- -0.06472577154636383,
- -0.0013124117394909263,
- -0.015211681835353374,
- -0.00024706238764338195,
- -0.01772845722734928,
- -0.035107094794511795,
- 0.03616362437605858,
- 0.032245758920907974,
- 0.05495094880461693,
- 0.0806158185005188,
- -0.07847372442483902,
- -0.008072721771895885,
- 0.019434427842497826,
- -5.959755991327013e-33,
- 0.01945311576128006,
- -0.02519162930548191,
- 0.01833239383995533,
- 0.018186384811997414,
- 0.04784000292420387,
- 0.016033142805099487,
- -0.04375186190009117,
- -0.049313489347696304,
- -0.010301110334694386,
- -0.0020785965025424957,
- 0.039833661168813705,
- -0.035692695528268814,
- -0.009845874272286892,
- -0.040908776223659515,
- 0.1029481366276741,
- -0.0027449289336800575,
- 0.10782675445079803,
- 0.01292552798986435,
- 0.013479077257215977,
- -0.0833137184381485,
- -0.03644311800599098,
- 0.07980946451425552,
- 0.04163242504000664,
- 0.017824087291955948,
- 0.0026471244636923075,
- -0.009757989086210728,
- -0.019099583849310875,
- -0.03181394189596176,
- 0.022199757397174835,
- 0.03849566727876663,
- 0.0015161375049501657,
- 0.008452129550278187,
- -0.03101435862481594,
- -0.027896985411643982,
- 0.05783126875758171,
- 0.003394713392481208,
- 0.008689053356647491,
- -0.042292073369026184,
- 0.0009652432636357844,
- 0.01882391795516014,
- -0.11731584370136261,
- 0.014448996633291245,
- -0.040563926100730896,
- 0.026036154478788376,
- 0.011706650257110596,
- 0.007388328667730093,
- 0.07392401248216629,
- 0.026184262707829475,
- 0.008752170018851757,
- 0.06524616479873657,
- -0.059576328843832016,
- -0.033372897654771805,
- -0.08111389726400375,
- -0.036899860948324203,
- 0.009551859460771084,
- -0.017577270045876503,
- 0.008642246015369892,
- 0.040014538913965225,
- 0.0381881445646286,
- -0.01227789930999279,
- 0.020630398765206337,
- 0.03348655626177788,
- -0.057461515069007874,
- -0.07989431172609329,
- -0.008784639649093151,
- 0.00841213297098875,
- 0.06257981806993484,
- -0.021712465211749077,
- 0.0631132423877716,
- 0.016032492741942406,
- -0.028958676382899284,
- 0.007735266350209713,
- 0.04746842756867409,
- 0.05002666264772415,
- -0.01336248591542244,
- -0.02242347039282322,
- 0.015965363010764122,
- 0.04335811734199524,
- -0.017357083037495613,
- 0.03371550515294075,
- -0.06866466253995895,
- -0.011338045820593834,
- 0.007060427218675613,
- 0.13309542834758759,
- -0.010187980718910694,
- -0.012927374802529812,
- 0.03232232853770256,
- -0.07334282994270325,
- -0.006493597291409969,
- -0.024099329486489296,
- -0.13845153152942657,
- 0.0386519730091095,
- 0.07417487353086472,
- -0.006597040221095085,
- 0.09359098970890045,
- 4.904273368909942e-33,
- 0.002142869168892503,
- -0.07719013839960098,
- -0.03212171792984009,
- 0.015605062246322632,
- 0.013237820006906986,
- 0.0006491555832326412,
- -0.010976703837513924,
- -0.02981354296207428,
- -0.06650298833847046,
- -0.03496002033352852,
- -0.2119869738817215,
- 0.0017357839969918132,
- 0.10012230277061462,
- -0.05722048506140709,
- 0.02257463149726391,
- 0.06502256542444229,
- 0.0944017767906189,
- -0.016195248812437057,
- -0.047940243035554886,
- 0.09467865526676178,
- 0.019596412777900696,
- 0.09163793921470642,
- 0.028223302215337753,
- -0.03422358259558678,
- -0.009031030349433422,
- 0.07866326719522476,
- 0.06160149723291397,
- 0.0016560893272981048,
- -0.11261899769306183,
- -0.014562978409230709,
- 0.008614778518676758,
- -0.0062497700564563274,
- 0.03419286012649536,
- 0.040287770330905914,
- -0.042956121265888214,
- 0.14063405990600586,
- -0.005061368457973003,
- 0.01758646033704281,
- -0.05726638436317444,
- 0.012843628413975239,
- 0.11088541150093079,
- -0.1144808679819107,
- 0.05431617423892021,
- 0.04509859159588814,
- 0.06138845533132553,
- 0.0010398339945822954,
- 0.018892699852585793,
- -0.02963687852025032,
- 0.039166033267974854,
- -0.003574224654585123,
- -0.052012961357831955,
- -0.02527482807636261,
- -0.10749833285808563,
- -0.03390425071120262,
- 0.025802403688430786,
- -0.12494032084941864,
- -0.10588161647319794,
- -0.022713763639330864,
- 0.028984399512410164,
- -0.021333176642656326,
- 0.03546561673283577,
- 0.01215498335659504,
- -0.024871502071619034,
- 0.0610920675098896,
- -0.010296043008565903,
- 0.02093498967587948,
- 0.007440971210598946,
- 0.014686325564980507,
- 0.012369389645755291,
- 0.017081208527088165,
- -0.05235244333744049,
- 0.004452780820429325,
- -0.04815192520618439,
- -0.035635072737932205,
- -0.014849865809082985,
- -0.022721288725733757,
- -0.0036213442217558622,
- 0.09360169619321823,
- -0.0008200125303119421,
- -0.01174116600304842,
- -0.044803403317928314,
- -0.02468298375606537,
- -0.04430747404694557,
- 0.02255711518228054,
- 0.0656152069568634,
- 0.04389656335115433,
- -0.004027693532407284,
- -0.040912579745054245,
- -0.005983076058328152,
- 0.006011137273162603,
- -0.03474045544862747,
- -0.00927896611392498,
- 0.006251128390431404,
- -0.006763150449842215,
- -0.05280587822198868,
- -1.1386882547981259e-8,
- 0.053628891706466675,
- 0.047871507704257965,
- -0.0018970004748553038,
- 0.01202910952270031,
- 0.011653739959001541,
- -0.057880699634552,
- -0.030398806557059288,
- 0.06169211119413376,
- 0.039593618363142014,
- 0.10715298354625702,
- -0.01850692741572857,
- 0.019658168777823448,
- 0.046944938600063324,
- 0.026592960581183434,
- -0.02699490264058113,
- 0.008062968961894512,
- -0.002000229898840189,
- 0.0855400562286377,
- -0.04248854145407677,
- -0.00198466912843287,
- -0.017458491027355194,
- 0.057736966758966446,
- 0.020115599036216736,
- -0.020022818818688393,
- -0.010056059807538986,
- 0.02476450614631176,
- -0.02365066669881344,
- 0.016515880823135376,
- 0.061858296394348145,
- -0.018964027985930443,
- 0.02688300609588623,
- -0.014101029373705387,
- -0.06482663750648499,
- -0.014914987608790398,
- -0.05079786479473114,
- 0.012325366958975792,
- 0.01425793394446373,
- 0.012959777377545834,
- -0.022047756239771843,
- -0.04914535582065582,
- -0.06351477652788162,
- 0.047333620488643646,
- 0.04022470489144325,
- 0.046040210872888565,
- -0.06462012976408005,
- 0.060718681663274765,
- 0.04206915944814682,
- -0.00642498629167676,
- 0.058414459228515625,
- -0.01542626228183508,
- -0.0981772392988205,
- -0.022607477381825447,
- -0.0018478416604921222,
- 0.04451468214392662,
- 0.04559021815657616,
- 0.026573099195957184,
- -0.0034737559035420418,
- -0.04130638390779495,
- -0.0477837510406971,
- 0.04853500425815582,
- 0.017594434320926666,
- -0.04137053340673447,
- -0.12176614254713058,
- -0.019159169867634773
- ]
- },
- {
- "keyword": "casino",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.001807620981708169,
- 0.041679903864860535,
- -0.11953361332416534,
- -0.00935448333621025,
- -0.14559420943260193,
- -0.02679341286420822,
- 0.10702177882194519,
- -0.07659480720758438,
- 0.04759928584098816,
- -0.035524506121873856,
- -0.04063151404261589,
- 0.00830121897161007,
- -0.026984328404068947,
- -0.0104907201603055,
- 0.016947411000728607,
- -0.06657417118549347,
- 0.0914178416132927,
- 0.007733818609267473,
- 0.03339836373925209,
- -0.005589986220002174,
- -0.059576086699962616,
- -0.07902558892965317,
- -0.027825642377138138,
- -0.009531274437904358,
- 0.037426289170980453,
- 0.05149241164326668,
- -0.05340533331036568,
- 0.09302225708961487,
- -0.035299159586429596,
- -0.04915396124124527,
- -0.025268789380788803,
- 0.09786004573106766,
- -0.021478338167071342,
- 0.011087127961218357,
- 0.041425712406635284,
- -0.06579466909170151,
- -0.12071222811937332,
- -0.04229475185275078,
- -0.017368782311677933,
- -0.0059334393590688705,
- 0.010855919681489468,
- -0.03878102824091911,
- -0.01562498603016138,
- 0.055483896285295486,
- 0.03150487691164017,
- -0.04753722995519638,
- -0.022244373336434364,
- 0.07689344882965088,
- 0.0216920655220747,
- 0.007885056547820568,
- 0.006339321378618479,
- 0.026443302631378174,
- -0.024626169353723526,
- -0.00162131164688617,
- 0.050307150930166245,
- -0.035229429602622986,
- -0.04043080657720566,
- 0.009230432100594044,
- 0.014394755475223064,
- -0.009436837397515774,
- 0.128601536154747,
- 0.06860485672950745,
- -0.0660337582230568,
- 0.06771158427000046,
- -0.09528079628944397,
- 0.0008005971903912723,
- 0.026979152113199234,
- 0.09159702062606812,
- -0.041106775403022766,
- -0.10036561638116837,
- 0.01814039796590805,
- -0.05967792496085167,
- -0.00812677014619112,
- -0.028447287157177925,
- 0.05863593518733978,
- 0.013835794292390347,
- -0.0003024354809895158,
- -0.049833379685878754,
- 0.03438970446586609,
- -0.03968561813235283,
- 0.011686732992529869,
- -0.10201980918645859,
- -0.012159806676208973,
- -0.015245746821165085,
- -0.0034047041554003954,
- -0.0005404667463153601,
- 0.0018040210707113147,
- 0.044086162000894547,
- 0.08278878778219223,
- -0.09816209226846695,
- -0.042535874992609024,
- 0.017638148739933968,
- -0.07632245868444443,
- -0.011661267839372158,
- -0.08109939843416214,
- 0.012780947610735893,
- 0.0029911897145211697,
- -0.05111435800790787,
- -0.02983139455318451,
- 0.2031056135892868,
- 0.057241860777139664,
- 0.04434586316347122,
- -0.0051657166332006454,
- 0.0030109111685305834,
- 0.049899689853191376,
- 0.06496788561344147,
- 0.042136646807193756,
- 0.06568340957164764,
- 0.021682457998394966,
- -0.03867174685001373,
- -0.10023275017738342,
- 0.07357224076986313,
- 0.06591484695672989,
- -0.021184392273426056,
- -0.022740541025996208,
- 0.10040360689163208,
- -0.05226142331957817,
- -0.006405935622751713,
- 0.013289859518408775,
- 0.04085985943675041,
- 0.056748759001493454,
- 0.11067066341638565,
- -0.06192944943904877,
- 0.008232932537794113,
- -0.06740628182888031,
- -0.023686058819293976,
- -0.0033682214561849833,
- -4.468666753905881e-33,
- -0.028209717944264412,
- -0.09548593312501907,
- 0.03115040436387062,
- -0.02791927382349968,
- 0.05358800292015076,
- 0.03710854426026344,
- 0.0020089484751224518,
- -0.06078442931175232,
- -0.07835791260004044,
- 0.09172716736793518,
- 0.04377107322216034,
- -0.07455267757177353,
- -0.05801287293434143,
- 0.06392738968133926,
- 0.08067965507507324,
- 0.06404215097427368,
- -0.0029352374840527773,
- 0.010479691438376904,
- 0.012355509214103222,
- -0.05274619907140732,
- -0.10017848759889603,
- 0.059682972729206085,
- 0.00964604876935482,
- -0.008061538450419903,
- -0.028959210962057114,
- -0.009155484847724438,
- -0.07461021840572357,
- -0.07361187040805817,
- 0.12674424052238464,
- 0.04475249722599983,
- 0.010878421366214752,
- 0.0007130323792807758,
- -0.013181809335947037,
- -0.0610063411295414,
- 0.043544527143239975,
- 0.04620763659477234,
- -0.011248234659433365,
- -0.01619931496679783,
- -0.04933951422572136,
- 0.0010851753177121282,
- -0.07589434087276459,
- 0.05798844248056412,
- -0.06245709955692291,
- 0.026067521423101425,
- -0.057048823684453964,
- 0.04145655408501625,
- -0.000819122011307627,
- 0.003291195724159479,
- -0.008717716671526432,
- 0.022353585809469223,
- -0.07423361390829086,
- 0.003315649926662445,
- -0.0633905753493309,
- 0.0013409748207777739,
- -0.04843452572822571,
- -0.029757440090179443,
- 0.05633394047617912,
- -0.017435623332858086,
- -0.08150124549865723,
- -0.032163817435503006,
- -0.01509694755077362,
- -0.010407008230686188,
- -0.12294457107782364,
- 0.019898025318980217,
- -0.045967500656843185,
- 0.038805507123470306,
- 0.024921733886003494,
- -0.0487489216029644,
- 0.007653620094060898,
- -0.005050030071288347,
- 0.01174719724804163,
- 0.02633548527956009,
- 0.0778631865978241,
- 0.022220594808459282,
- -0.007356049958616495,
- 0.023251816630363464,
- 0.033529918640851974,
- 0.04627097025513649,
- -0.03464820235967636,
- -0.006752843037247658,
- 0.046855684369802475,
- 0.007713130209594965,
- 0.00006587288953596726,
- 0.011893725022673607,
- -0.030838364735245705,
- 0.06106428802013397,
- 0.0024205546360462904,
- -0.09987553209066391,
- 0.0577610619366169,
- 0.024115175008773804,
- -0.09923206269741058,
- -0.03573564812541008,
- 0.09836816787719727,
- -0.002863387344405055,
- 0.04364747554063797,
- 3.5214225492865726e-33,
- -0.08978612720966339,
- -0.04862625151872635,
- 0.031764838844537735,
- 0.057555582374334335,
- 0.04854745417833328,
- -0.010374946519732475,
- -0.013286353088915348,
- -0.031664490699768066,
- 0.03831454738974571,
- -0.03044891729950905,
- -0.12239909172058105,
- 0.009516301564872265,
- 0.08409564942121506,
- 0.010341603308916092,
- 0.04649566113948822,
- -0.04514319449663162,
- 0.03008703887462616,
- 0.07689696550369263,
- -0.009037859737873077,
- 0.05550212040543556,
- 0.03194164112210274,
- 0.006082677748054266,
- -0.051371604204177856,
- 0.029541445896029472,
- 0.0341842956840992,
- 0.02045583724975586,
- -0.04190560430288315,
- -0.026352541521191597,
- -0.04208800196647644,
- 0.0018720509251579642,
- -0.005143612157553434,
- -0.025282982736825943,
- 0.028584489598870277,
- 0.05694838985800743,
- -0.04658516123890877,
- 0.10657869279384613,
- 0.11629904061555862,
- -0.037279121577739716,
- -0.04772062972187996,
- -0.059321653097867966,
- 0.037287402898073196,
- -0.062196094542741776,
- -0.05728582292795181,
- 0.08155099302530289,
- -0.010665817186236382,
- 0.02681642584502697,
- -0.005829255562275648,
- 0.025924082845449448,
- 0.03645479679107666,
- 0.003031065221875906,
- -0.08566302806138992,
- 0.05241359397768974,
- -0.04039796441793442,
- 0.011983254924416542,
- 0.036130618304014206,
- 0.018047261983156204,
- -0.023944396525621414,
- 0.01756863296031952,
- 0.009592811577022076,
- 0.015369027853012085,
- 0.030029503628611565,
- 0.06274346262216568,
- -0.04214677959680557,
- 0.07922679930925369,
- 0.06727830320596695,
- 0.053400810807943344,
- -0.0017305976944044232,
- 0.01710841804742813,
- 0.0011491350596770644,
- 0.014637205749750137,
- -0.041841067373752594,
- 0.05280638486146927,
- -0.05982057377696037,
- 0.05753292143344879,
- -0.017243118956685066,
- 0.04134859889745712,
- -0.07211384177207947,
- 0.03391258418560028,
- -0.0501381978392601,
- 0.003786733141168952,
- -0.010337852872908115,
- -0.05800105631351471,
- 0.001977350329980254,
- 0.0353117398917675,
- -0.017337847501039505,
- 0.031011587008833885,
- 0.10459548234939575,
- -0.037579603493213654,
- -0.06237734854221344,
- -0.06071383133530617,
- 0.030722035095095634,
- 0.014719108119606972,
- -0.002782657044008374,
- -0.0682191476225853,
- -0.06310850381851196,
- -1.0684829909735072e-8,
- 0.015484110452234745,
- -0.027381744235754013,
- -0.0757504478096962,
- -0.015844201669096947,
- 0.030992411077022552,
- -0.015845660120248795,
- 0.04822463542222977,
- 0.058752916753292084,
- 0.03189491853117943,
- 0.05130987614393234,
- 0.023052344098687172,
- 0.018186960369348526,
- 0.04915206879377365,
- -0.04941122606396675,
- -0.0224489476531744,
- -0.039956603199243546,
- -0.012041179463267326,
- -0.04852122813463211,
- -0.006025318987667561,
- 0.027043400332331657,
- 0.06347783654928207,
- 0.08278448134660721,
- 0.04240189492702484,
- -0.09569521248340607,
- -0.028492750599980354,
- -0.010001475922763348,
- 0.025877362117171288,
- 0.1186089962720871,
- 0.037454575300216675,
- 0.061761047691106796,
- 0.060574766248464584,
- -0.02729133330285549,
- 0.026532741263508797,
- -0.015427537262439728,
- -0.009658516384661198,
- -0.009534139186143875,
- 0.06626763939857483,
- 0.039288852363824844,
- 0.01095556654036045,
- -0.04254820570349693,
- -0.03155117854475975,
- -0.003351636230945587,
- 0.003383284667506814,
- -0.022141914814710617,
- 0.011273960582911968,
- 0.02829788438975811,
- 0.028414864093065262,
- -0.003725639311596751,
- 0.08939244598150253,
- -0.15810954570770264,
- -0.0016184793785214424,
- -0.04018820449709892,
- 0.059022992849349976,
- -0.04247335344552994,
- 0.04507613182067871,
- -0.008300113491714,
- 0.024035098031163216,
- 0.06743603944778442,
- 0.035879600793123245,
- -0.025984346866607666,
- 0.015966618433594704,
- -0.005271160043776035,
- -0.025141382589936256,
- 0.01841815374791622
- ]
- },
- {
- "keyword": "publisher",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.012110499665141106,
- 0.01080484688282013,
- -0.06678929924964905,
- 0.021644793450832367,
- 0.004789964761584997,
- 0.021225985139608383,
- 0.01426708698272705,
- 0.005758858285844326,
- 0.059298817068338394,
- 0.04268517717719078,
- 0.004174489993602037,
- 0.06428580731153488,
- 0.03364141285419464,
- -0.04639657959342003,
- -0.014357545413076878,
- -0.025858106091618538,
- 0.014366409741342068,
- 0.016610492020845413,
- 0.00488103786483407,
- -0.01959976926445961,
- -0.08302830159664154,
- 0.04364209994673729,
- 0.01757839322090149,
- 0.04321375861763954,
- 0.018338939175009727,
- -0.03513476252555847,
- -0.058389902114868164,
- 0.0021499930880963802,
- 0.026695089414715767,
- -0.1157238706946373,
- 0.030365152284502983,
- -0.029572954401373863,
- 0.06838557124137878,
- -0.017618976533412933,
- 0.04412597790360451,
- 0.009122024290263653,
- 0.0024669610429555178,
- 0.009411883540451527,
- -0.011086816899478436,
- -0.02236098051071167,
- 0.05341596156358719,
- -0.06787362694740295,
- -0.05037911236286163,
- 0.031185442581772804,
- 0.022696010768413544,
- -0.005252243485301733,
- -0.04017757624387741,
- 0.09656792134046555,
- -0.01663844659924507,
- 0.11083289980888367,
- 0.006438884884119034,
- -0.07114497572183609,
- -0.04456736892461777,
- -0.01944338157773018,
- 0.05140259861946106,
- -0.012482679449021816,
- -0.03280514106154442,
- 0.06240403652191162,
- -0.02681778557598591,
- -0.05570244789123535,
- 0.02238793857395649,
- -0.011383404955267906,
- -0.1343287080526352,
- 0.04180137440562248,
- 0.05194240063428879,
- 0.08238840848207474,
- 0.06288424879312515,
- 0.1094764843583107,
- -0.09932578355073929,
- -0.08124244213104248,
- -0.006367890164256096,
- 0.00302024744451046,
- -0.028106484562158585,
- 0.021778054535388947,
- 0.02191218174993992,
- -0.07124175131320953,
- -0.013290745206177235,
- -0.04135635867714882,
- 0.0748705193400383,
- -0.017063362523913383,
- 0.03388131037354469,
- -0.08036680519580841,
- -0.011590439826250076,
- 0.016404584050178528,
- -0.022263307124376297,
- -0.020384015515446663,
- 0.071468286216259,
- 0.010427607223391533,
- 0.027233392000198364,
- 0.03072388842701912,
- -0.05715515837073326,
- 0.05969801917672157,
- 0.12933412194252014,
- -0.022277818992733955,
- -0.13252776861190796,
- -0.0037226818967610598,
- 0.004339135251939297,
- -0.08331841230392456,
- -0.0063166543841362,
- 0.23006634414196014,
- -0.03762209415435791,
- 0.040885813534259796,
- 0.06790092587471008,
- -0.03683699667453766,
- 0.061779480427503586,
- -0.09643394500017166,
- 0.011041532270610332,
- -0.01310743298381567,
- -0.03300797566771507,
- 0.054289400577545166,
- -0.0570758581161499,
- 0.030296970158815384,
- -0.04073024168610573,
- -0.056686412543058395,
- 0.08122948557138443,
- 0.0244742501527071,
- -0.024943038821220398,
- 0.05818302184343338,
- 0.03410370275378227,
- -0.04392872378230095,
- -0.03648104891180992,
- 0.0873112604022026,
- -0.07534661144018173,
- -0.02446294017136097,
- -0.12235409766435623,
- -0.07460301369428635,
- 0.002353668212890625,
- -4.651392207953421e-33,
- 0.012781291268765926,
- 0.030013129115104675,
- 0.0036376568023115396,
- 0.08565709739923477,
- 0.08332262188196182,
- 0.0074490453116595745,
- 0.021642915904521942,
- -0.04232276603579521,
- -0.1201930046081543,
- -0.008046128787100315,
- 0.03334072604775429,
- 0.04994310811161995,
- -0.047952041029930115,
- 0.1262839436531067,
- 0.006693102885037661,
- 0.0031871816609054804,
- -0.0124508086591959,
- 0.0799778401851654,
- 0.03582989051938057,
- 0.003740499960258603,
- -0.08319409936666489,
- -0.009190477430820465,
- 0.021294141188263893,
- 0.03229498490691185,
- 0.025094326585531235,
- 0.025109540671110153,
- -0.030379481613636017,
- 0.015463354997336864,
- 0.03408035263419151,
- 0.008964361622929573,
- 0.0026585666928440332,
- -0.0199687872081995,
- -0.008080380037426949,
- -0.08834691345691681,
- -0.010134254582226276,
- -0.06110375002026558,
- -0.022211547940969467,
- -0.08740616589784622,
- 0.060462821274995804,
- 0.0525907427072525,
- -0.03007424622774124,
- 0.006579605396836996,
- -0.03740847110748291,
- -0.024159999564290047,
- 0.01183044258505106,
- 0.0945802554488182,
- 0.027621008455753326,
- -0.05118123069405556,
- 0.09825176745653152,
- 0.026792697608470917,
- 0.006148667074739933,
- -0.009220924228429794,
- -0.0770106241106987,
- 0.013088882900774479,
- 0.034684378653764725,
- -0.08157102763652802,
- -0.025050345808267593,
- -0.04345886409282684,
- -0.006467177998274565,
- -0.03556540980935097,
- 0.027919255197048187,
- 0.1279633343219757,
- 0.024621902033686638,
- 0.03981912136077881,
- 0.01759776473045349,
- 0.0183694027364254,
- -0.0336228683590889,
- -0.08032643795013428,
- 0.03970333933830261,
- -0.04405771195888519,
- -0.059481989592313766,
- 0.007636661641299725,
- 0.0815160721540451,
- -0.06527769565582275,
- -0.05334455519914627,
- 0.0070592244155704975,
- -0.05575503781437874,
- -0.019813448190689087,
- -0.006249245256185532,
- 0.007450151722878218,
- -0.054510489106178284,
- -0.014863558113574982,
- 0.00328072439879179,
- 0.004965745843946934,
- -0.037413258105516434,
- 0.031551294028759,
- 0.010690376162528992,
- -0.03203826770186424,
- -0.049389954656362534,
- 0.02031809836626053,
- -0.043592680245637894,
- 0.009643638506531715,
- 0.028231017291545868,
- 0.07306350022554398,
- 0.04356275126338005,
- 4.282181554645633e-33,
- -0.06908682733774185,
- -0.07668440043926239,
- -0.022221805527806282,
- 0.0572432316839695,
- -0.03137482702732086,
- -0.012327602133154869,
- -0.032413993030786514,
- 0.013337445445358753,
- 0.028804324567317963,
- -0.034646280109882355,
- -0.07704265415668488,
- -0.07800573110580444,
- 0.026084130629897118,
- 0.03183770924806595,
- -0.014877098612487316,
- -0.057679567486047745,
- 0.053263984620571136,
- -0.05454123765230179,
- -0.06136535108089447,
- -0.04225212708115578,
- 0.03313155099749565,
- -0.06184273585677147,
- -0.0018992724362760782,
- 0.00008942090789787471,
- 0.15061186254024506,
- 0.016841726377606392,
- 0.0837654396891594,
- 0.021319663152098656,
- -0.016012271866202354,
- -0.04783766716718674,
- 0.059533651918172836,
- -0.039382584393024445,
- 0.0036219744943082333,
- -0.016528427600860596,
- -0.04652414470911026,
- 0.0392606295645237,
- 0.07674389332532883,
- 0.013115156441926956,
- -0.024024059996008873,
- -0.06516898423433304,
- 0.057687677443027496,
- -0.024188043549656868,
- 0.028628598898649216,
- 0.04892127215862274,
- -0.026668760925531387,
- 0.005151641555130482,
- 0.06695929914712906,
- 0.05634262412786484,
- 0.10591412335634232,
- 0.015364598482847214,
- -0.05410332232713699,
- -0.04680127650499344,
- 0.03452077507972717,
- -0.06961497664451599,
- -0.027733998373150826,
- 0.0779486894607544,
- -0.046739231795072556,
- 0.005056426860392094,
- 0.02465956285595894,
- 0.057282861322164536,
- -0.034856006503105164,
- 0.028875887393951416,
- -0.03091742843389511,
- 0.035277415066957474,
- -0.006554622668772936,
- -0.013483171351253986,
- 0.05571015179157257,
- 0.014970666728913784,
- -0.01928558759391308,
- 0.022422833368182182,
- 0.04052560403943062,
- 0.024372419342398643,
- 0.011358189396560192,
- -0.0019108684500679374,
- -0.009195012971758842,
- 0.08526965230703354,
- 0.008637349121272564,
- 0.011544745415449142,
- -0.023649075999855995,
- 0.0031234780326485634,
- -0.11491084098815918,
- 0.06707080453634262,
- -0.012423603795468807,
- 0.05924760177731514,
- 0.0006938293809071183,
- -0.04026755690574646,
- 0.07204003632068634,
- -0.09546161442995071,
- 0.0028771397192031145,
- -0.015748340636491776,
- 0.0123489024117589,
- 0.025730647146701813,
- 0.052606984972953796,
- 0.005573531147092581,
- 0.00003751908297999762,
- -1.1779537345546487e-8,
- -0.04398418217897415,
- -0.023080864921212196,
- -0.01173382718116045,
- -0.0597844235599041,
- 0.04052313417196274,
- 0.07820729166269302,
- 0.07034816592931747,
- -0.0576014518737793,
- 0.035040855407714844,
- 0.026370082050561905,
- 0.0011845241533592343,
- -0.041136711835861206,
- -0.06493308395147324,
- -0.0027033891528844833,
- 0.049373358488082886,
- -0.11976790428161621,
- 0.035484783351421356,
- -0.0067323544062674046,
- -0.05811640992760658,
- -0.05917375162243843,
- 0.0695139616727829,
- 0.020095739513635635,
- 0.08667461574077606,
- -0.16032984852790833,
- -0.009550401009619236,
- 0.012284832075238228,
- 0.0523550920188427,
- 0.01640457846224308,
- -0.03289422392845154,
- 0.0643831118941307,
- -0.001894762390293181,
- 0.07826430350542068,
- 0.02848517708480358,
- 0.026591796427965164,
- -0.01304682344198227,
- -0.007461394648998976,
- 0.028028259053826332,
- 0.09320267289876938,
- -0.045551687479019165,
- 0.030983099713921547,
- 0.03613891080021858,
- 0.022440114989876747,
- 0.0015144259668886662,
- -0.0026110359467566013,
- -0.052953027188777924,
- -0.023227959871292114,
- 0.09221527725458145,
- 0.02705579251050949,
- 0.07315303385257721,
- -0.025983555242419243,
- -0.004634819459170103,
- -0.05681686848402023,
- 0.11867783963680267,
- 0.011762812733650208,
- -0.011121573857963085,
- -0.0100343506783247,
- 0.018560659140348434,
- 0.0117704588919878,
- 0.050945550203323364,
- -0.011452711187303066,
- 0.05306313931941986,
- -0.06098508834838867,
- 0.027934042736887932,
- 0.04504476487636566
- ]
- },
- {
- "keyword": "studio",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03980208933353424,
- -0.058470968157052994,
- 0.02463061362504959,
- 0.016873417422175407,
- -0.03875153139233589,
- 0.024953259155154228,
- 0.03268054127693176,
- -0.03139573708176613,
- 0.07226979732513428,
- -0.0077396878041327,
- -0.05205230414867401,
- -0.030997365713119507,
- 0.023072876036167145,
- -0.009030012413859367,
- -0.030642345547676086,
- -0.024056261405348778,
- 0.008363027125597,
- -0.018425019457936287,
- 0.05523880198597908,
- -0.07492540776729584,
- -0.0962795540690422,
- 0.028708336874842644,
- 0.01906968466937542,
- 0.020970836281776428,
- 0.06757548451423645,
- 0.050442855805158615,
- -0.008307795971632004,
- 0.07862946391105652,
- 0.05778655409812927,
- -0.11163599789142609,
- -0.05852275714278221,
- 0.08049847930669785,
- 0.0758124515414238,
- -0.029479775577783585,
- 0.033378779888153076,
- 0.0036623834166675806,
- -0.010606369003653526,
- 0.008107468485832214,
- -0.008989988826215267,
- -0.05264908820390701,
- -0.0795285552740097,
- 0.004279118962585926,
- 0.027139106765389442,
- -0.00006295766797848046,
- -0.0008675916469655931,
- -0.023107999935746193,
- 0.004588896408677101,
- -0.056902144104242325,
- 0.05176520347595215,
- 0.01923678256571293,
- 0.005957433488219976,
- -0.11500546336174011,
- -0.033862609416246414,
- -0.004368125926703215,
- 0.024384954944252968,
- 0.02074406109750271,
- 0.02953261509537697,
- 0.04278768226504326,
- 0.03618615120649338,
- -0.008404821157455444,
- 0.046977441757917404,
- -0.03619346767663956,
- -0.04297826066613197,
- 0.016844546422362328,
- -0.009899338707327843,
- 0.059683945029973984,
- 0.0002690293767955154,
- 0.13187752664089203,
- 0.0019039304461330175,
- -0.12391816824674606,
- -0.015368537046015263,
- -0.04099002107977867,
- -0.056327544152736664,
- -0.0007754969992674887,
- 0.04381739720702171,
- -0.010388760827481747,
- 0.0023258605506271124,
- -0.04911813139915466,
- 0.022841881960630417,
- -0.060232192277908325,
- 0.07296047359704971,
- -0.08528726547956467,
- -0.08315310627222061,
- 0.03242269158363342,
- -0.00906289927661419,
- 0.01045145932585001,
- 0.05288612097501755,
- -0.0019883685745298862,
- 0.0353904590010643,
- 0.012820699252188206,
- -0.06749647855758667,
- 0.015219191089272499,
- 0.0024984730407595634,
- -0.03668604791164398,
- -0.01401828695088625,
- 0.00609985925257206,
- -0.01430854108184576,
- -0.04030909016728401,
- 0.006430618930608034,
- 0.21194642782211304,
- -0.036912716925144196,
- -0.02218395285308361,
- 0.02581942267715931,
- -0.057058773934841156,
- 0.029153086245059967,
- -0.06109730526804924,
- 0.09532061219215393,
- 0.026943068951368332,
- -0.01572578027844429,
- 0.003214908530935645,
- 0.018404733389616013,
- -0.03754676505923271,
- -0.022909414023160934,
- -0.024252260103821754,
- 0.13140200078487396,
- 0.03847610950469971,
- 0.024065153673291206,
- 0.013888713903725147,
- -0.00841633602976799,
- 0.0018396568484604359,
- -0.00860427413135767,
- 0.06912443786859512,
- -0.056341491639614105,
- 0.01812182180583477,
- -0.09049852192401886,
- -0.056093987077474594,
- -0.04565837234258652,
- -3.698152614802934e-33,
- 0.09276288002729416,
- -0.0209419596940279,
- 0.00611591711640358,
- 0.082308828830719,
- 0.08847559988498688,
- -0.04406721144914627,
- -0.004177703056484461,
- 0.09066089987754822,
- -0.0686715692281723,
- 0.013219268061220646,
- 0.0537787489593029,
- -0.0706099271774292,
- -0.09089576452970505,
- 0.04404008761048317,
- 0.09348353743553162,
- 0.0137351518496871,
- -0.0012171493144705892,
- 0.018734222277998924,
- -0.08516433089971542,
- -0.027409208938479424,
- -0.08511896431446075,
- -0.03357052803039551,
- 0.01817595399916172,
- 0.06976938247680664,
- 0.030693547800183296,
- -0.008625887334346771,
- 0.05805220454931259,
- -0.006135188043117523,
- 0.08169014751911163,
- -0.010440142825245857,
- -0.10990594327449799,
- 0.006776469759643078,
- 0.03811177611351013,
- -0.013144388794898987,
- 0.03953733667731285,
- 0.01188714150339365,
- -0.05237845703959465,
- -0.06132625415921211,
- 0.024343719705939293,
- 0.07551376521587372,
- -0.04641703516244888,
- 0.03850702941417694,
- -0.03759670630097389,
- -0.016603291034698486,
- 0.04432978853583336,
- 0.09208454936742783,
- 0.04872462898492813,
- 0.03584415093064308,
- 0.06164631247520447,
- 0.05149610713124275,
- 0.036238569766283035,
- 0.04121038317680359,
- -0.047276102006435394,
- 0.0722399652004242,
- -0.010801723226904869,
- -0.02194298431277275,
- 0.05705096572637558,
- 0.002729359082877636,
- 0.039373379200696945,
- 0.040387120097875595,
- 0.01704496331512928,
- 0.16235250234603882,
- -0.04710954427719116,
- 0.05142593756318092,
- -0.018699059262871742,
- 0.055700454860925674,
- 0.06082470715045929,
- 0.03107338212430477,
- 0.07535888254642487,
- -0.039143286645412445,
- -0.11079711467027664,
- -0.07160279899835587,
- 0.03956491872668266,
- -0.003270088927820325,
- 0.023348679766058922,
- -0.010322943329811096,
- -0.14746332168579102,
- 0.029380353167653084,
- -0.020752418786287308,
- 0.05841611698269844,
- -0.08253518491983414,
- 0.005134216509759426,
- -0.08727973699569702,
- 0.021664492785930634,
- -0.01902962103486061,
- 0.031447697430849075,
- 0.009784107096493244,
- 0.02541254460811615,
- -0.008200894109904766,
- 0.02944481372833252,
- -0.10351340472698212,
- -0.013378165662288666,
- 0.035274915397167206,
- 0.06266988068819046,
- -0.049035798758268356,
- 4.2522075507256186e-33,
- -0.017059048637747765,
- -0.030785175040364265,
- -0.029476655647158623,
- 0.03410203754901886,
- 0.06958018988370895,
- 0.018266448751091957,
- -0.0277328472584486,
- 0.030909104272723198,
- 0.06756240129470825,
- 0.05959499627351761,
- 0.06042584031820297,
- -0.021725639700889587,
- 0.013902857899665833,
- -0.024725088849663734,
- 0.027823464944958687,
- -0.029396329075098038,
- 0.022472314536571503,
- -0.03603336215019226,
- -0.029728135094046593,
- 0.027423260733485222,
- 0.03170306235551834,
- -0.05494355037808418,
- 0.036884382367134094,
- -0.021877886727452278,
- -0.046316783875226974,
- 0.04119112342596054,
- -0.0029600602574646473,
- 0.08768855035305023,
- 0.016607366502285004,
- 0.020810555666685104,
- 0.053239986300468445,
- -0.0323573462665081,
- -0.06575758010149002,
- 0.025803249329328537,
- -0.0598364882171154,
- 0.07036956399679184,
- 0.11512842774391174,
- -0.06211487576365471,
- -0.055640242993831635,
- -0.03063119389116764,
- -0.0035765438806265593,
- -0.00460944976657629,
- -0.018322933465242386,
- 0.13516108691692352,
- -0.01761000044643879,
- -0.01134432852268219,
- -0.009128861129283905,
- -0.014993621967732906,
- -0.06354812532663345,
- -0.01597183384001255,
- -0.07425177842378616,
- 0.020931106060743332,
- 0.019115900620818138,
- -0.12237177044153214,
- -0.003936015069484711,
- -0.017057286575436592,
- -0.0010960347717627883,
- -0.020175522193312645,
- -0.019636595621705055,
- 0.03281809762120247,
- -0.03859283775091171,
- -0.003243219805881381,
- -0.029386961832642555,
- -0.04299909994006157,
- -0.0914752408862114,
- 0.09693621844053268,
- 0.03993957117199898,
- 0.059087757021188736,
- -0.041054192930459976,
- 0.0401667058467865,
- 0.0662432461977005,
- 0.09265635162591934,
- -0.06996756792068481,
- -0.008429859764873981,
- -0.10300536453723907,
- -0.019984781742095947,
- -0.01543075405061245,
- -0.041639018803834915,
- 0.023767545819282532,
- -0.09782343357801437,
- -0.030177591368556023,
- -0.01670614816248417,
- -0.011440315283834934,
- 0.034441009163856506,
- 0.004367176443338394,
- 0.06358947604894638,
- -0.004349047318100929,
- 0.05839741602540016,
- 0.02043747529387474,
- -0.01301731076091528,
- 0.007144874427467585,
- 0.046451762318611145,
- -0.033844243735075,
- -0.06783012300729752,
- -0.06797898560762405,
- -1.0936924255133817e-8,
- -0.03358912840485573,
- 0.03405868634581566,
- -0.019598033279180527,
- -0.034457601606845856,
- 0.03326130658388138,
- -0.07130459696054459,
- 0.001339667709544301,
- 0.07330045849084854,
- 0.08387582749128342,
- 0.08323964476585388,
- 0.020055759698152542,
- -0.033498622477054596,
- -0.02073630318045616,
- 0.07187805324792862,
- -0.02015417069196701,
- -0.04266248643398285,
- -0.055597323924303055,
- 0.1114969253540039,
- -0.06609432399272919,
- -0.05848893150687218,
- 0.06893572956323624,
- 0.039089784026145935,
- 0.04075736925005913,
- -0.058119092136621475,
- 0.014262375421822071,
- -0.0732942596077919,
- 0.01970639079809189,
- 0.049624886363744736,
- -0.013851218856871128,
- 0.03928925096988678,
- 0.05286563187837601,
- 0.0841640755534172,
- -0.031762052327394485,
- -0.00035430246498435736,
- 0.049977682530879974,
- -0.08398324251174927,
- 0.0632072314620018,
- 0.013553809374570847,
- -0.04078831896185875,
- 0.022039683535695076,
- -0.055495478212833405,
- 0.008814038708806038,
- 0.027299951761960983,
- -0.020253203809261322,
- -0.08033542335033417,
- 0.006272907368838787,
- 0.08205831050872803,
- -0.05192404240369797,
- -0.00542543875053525,
- -0.04803948476910591,
- -0.022725362330675125,
- 0.017400110140442848,
- 0.031426750123500824,
- 0.028738997876644135,
- 0.04677487164735794,
- 0.031016875058412552,
- -0.025205843150615692,
- -0.013002092018723488,
- -0.07822950929403305,
- 0.026554105803370476,
- 0.05181121081113815,
- -0.02121487818658352,
- 0.024993542581796646,
- 0.020504748448729515
- ]
- },
- {
- "keyword": "gallery",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.03652069345116615,
- -0.00046476421994157135,
- -0.03349572792649269,
- -0.010757233947515488,
- 0.03960716351866722,
- -0.019114525988698006,
- 0.04009409621357918,
- 0.02952762506902218,
- 0.03867249935865402,
- -0.040713924914598465,
- 0.02060636878013611,
- 0.044570811092853546,
- 0.03516819328069687,
- 0.06731507927179337,
- -0.046089768409729004,
- 0.003656056709587574,
- -0.0010732249356806278,
- 0.047998715192079544,
- -0.03706098720431328,
- -0.02216990664601326,
- -0.10352544486522675,
- 0.011203309521079063,
- -0.0037893271073698997,
- -0.01899205707013607,
- 0.03871314227581024,
- 0.0014459523372352123,
- -0.07465024292469025,
- -0.006128777749836445,
- 0.05304458737373352,
- -0.08346613496541977,
- 0.008923837915062904,
- -0.012780017219483852,
- 0.023299360647797585,
- 0.012411712668836117,
- -0.008695630356669426,
- 0.024216335266828537,
- -0.048431091010570526,
- -0.044646915048360825,
- 0.003277389332652092,
- 0.02577698789536953,
- -0.028362423181533813,
- 0.005356519017368555,
- -0.012980847619473934,
- 0.00831652246415615,
- 0.03439024090766907,
- -0.009938989765942097,
- 0.02948332019150257,
- 0.017720211297273636,
- 0.054730646312236786,
- 0.048772409558296204,
- -0.12526264786720276,
- -0.04283551871776581,
- -0.11835895478725433,
- -0.02887389063835144,
- 0.05772751197218895,
- -0.03005104884505272,
- -0.015498390421271324,
- -0.010502152144908905,
- 0.03545979782938957,
- 0.015200790949165821,
- 0.10752656310796738,
- -0.04172511026263237,
- -0.06489688903093338,
- 0.07637523859739304,
- 0.029834367334842682,
- 0.06095122918486595,
- 0.009023630060255527,
- 0.06985898315906525,
- 0.02008824422955513,
- -0.09425614029169083,
- -0.010175385512411594,
- -0.0025333522353321314,
- -0.03771759569644928,
- 0.04521501064300537,
- 0.0011523173889145255,
- -0.02691509947180748,
- 0.020953314378857613,
- -0.004233222454786301,
- 0.0065932306461036205,
- -0.0066614337265491486,
- 0.06848014891147614,
- -0.014960487373173237,
- -0.03844458982348442,
- -0.01711946167051792,
- 0.008979234844446182,
- -0.0705021396279335,
- -0.004390423186123371,
- -0.01702410727739334,
- -0.04412379860877991,
- -0.060870520770549774,
- -0.0786767303943634,
- 0.03499522805213928,
- -0.05645411089062691,
- 0.011251254938542843,
- 0.005658392794430256,
- -0.014778832904994488,
- -0.006126932334154844,
- -0.07726398855447769,
- -0.06192859634757042,
- 0.23049239814281464,
- 0.02845112420618534,
- 0.06650933623313904,
- 0.05942748486995697,
- -0.03319093585014343,
- -0.04652134329080582,
- -0.07316350936889648,
- -0.024589387699961662,
- 0.05186484754085541,
- -0.04553134739398956,
- 0.021297838538885117,
- -0.07192099094390869,
- 0.015514555387198925,
- -0.012771782465279102,
- -0.05339096114039421,
- -0.03638337925076485,
- -0.08510924130678177,
- 0.04743572324514389,
- 0.0059270416386425495,
- 0.028577959164977074,
- -0.011067689396440983,
- 0.02541775070130825,
- -0.0012860255083069205,
- 0.02134990505874157,
- -0.02331314980983734,
- -0.08970973640680313,
- -0.083786740899086,
- -0.06986032426357269,
- -5.0710664664000245e-33,
- 0.02357592061161995,
- -0.02982940897345543,
- 0.07039649039506912,
- 0.0770733505487442,
- 0.051800135523080826,
- 0.03063058666884899,
- -0.02256191521883011,
- -0.03494693711400032,
- -0.034141190350055695,
- 0.036661021411418915,
- 0.0761161595582962,
- -0.01220517698675394,
- -0.029757913202047348,
- 0.02355000376701355,
- 0.07252281904220581,
- 0.019155733287334442,
- 0.05133059248328209,
- 0.08325840532779694,
- 0.03168633580207825,
- -0.05683505907654762,
- -0.08284620940685272,
- 0.042642876505851746,
- -0.01437755674123764,
- 0.12836402654647827,
- -0.0098734674975276,
- 0.026716968044638634,
- 0.03061535209417343,
- -0.051130957901477814,
- 0.0037827298510819674,
- 0.027005163952708244,
- -0.07094631344079971,
- 0.044500935822725296,
- 0.03387821093201637,
- -0.024375716224312782,
- 0.01878134347498417,
- -0.10603271424770355,
- -0.05677436664700508,
- -0.07351566106081009,
- 0.06379510462284088,
- 0.009032036177814007,
- 0.02255878411233425,
- 0.019134001806378365,
- -0.027782805263996124,
- 0.05928681418299675,
- -0.024179497733712196,
- 0.0968988761305809,
- -0.01666000857949257,
- -0.002217421308159828,
- -0.003533704439178109,
- 0.04056542366743088,
- 0.032265085726976395,
- 0.0004722269077319652,
- -0.11129118502140045,
- 0.041520267724990845,
- -0.007304655387997627,
- -0.060842037200927734,
- -0.03597481548786163,
- 0.033085327595472336,
- -0.0032621833961457014,
- -0.02826223336160183,
- 0.09512887895107269,
- 0.09845338761806488,
- -0.0451042614877224,
- -0.004662993364036083,
- -0.011883847415447235,
- -0.013185584917664528,
- -0.024067403748631477,
- -0.0323544517159462,
- 0.05218628793954849,
- 0.029520001262426376,
- -0.10113930702209473,
- -0.0135114137083292,
- 0.052060797810554504,
- -0.0077979592606425285,
- 0.005312201101332903,
- 0.03795865178108215,
- -0.02151087485253811,
- 0.025346267968416214,
- -0.03557658568024635,
- 0.027061130851507187,
- -0.1563407927751541,
- -0.038603994995355606,
- 0.01565271057188511,
- -0.011967201717197895,
- -0.03132491186261177,
- -0.018559863790869713,
- -0.03246542066335678,
- -0.01032845675945282,
- -0.012341783381998539,
- 0.0266665518283844,
- -0.063089519739151,
- 0.09972076117992401,
- 0.02727978490293026,
- 0.039492376148700714,
- -0.005246423650532961,
- 4.604157906201504e-33,
- 0.011029439978301525,
- -0.011281142942607403,
- -0.021474966779351234,
- 0.03102239966392517,
- 0.078724205493927,
- -0.00718406867235899,
- -0.013792324811220169,
- 0.024637041613459587,
- 0.035980865359306335,
- 0.04559249430894852,
- -0.011696913279592991,
- -0.04958882927894592,
- -0.015735870227217674,
- 0.003518914571031928,
- 0.00010132767056347802,
- -0.0017362358048558235,
- 0.16721096634864807,
- -0.10038475692272186,
- -0.11223512887954712,
- 0.06798756867647171,
- 0.03687286749482155,
- 0.06350185722112656,
- 0.048575885593891144,
- -0.03575283661484718,
- -0.07188769429922104,
- 0.10332097113132477,
- 0.09365705400705338,
- -0.057718031108379364,
- 0.03544870764017105,
- 0.05159175023436546,
- 0.06642752140760422,
- -0.08585283160209656,
- -0.013136074878275394,
- -0.005829468369483948,
- -0.01635896973311901,
- 0.09223265945911407,
- 0.0887436717748642,
- -0.03820251300930977,
- -0.05491526424884796,
- 0.00526678841561079,
- 0.05647636577486992,
- 0.02825947105884552,
- 0.007968348450958729,
- 0.0862622857093811,
- -0.0030726550612598658,
- -0.08117228746414185,
- 0.007783267647027969,
- 0.02281472273170948,
- 0.06542030721902847,
- -0.018864674493670464,
- -0.05743474140763283,
- -0.017958877608180046,
- 0.051482293754816055,
- -0.04070441797375679,
- 0.02605581469833851,
- -0.023216132074594498,
- -0.019579235464334488,
- 0.06249932199716568,
- 0.02471781335771084,
- 0.03474152460694313,
- -0.02724713832139969,
- 0.027227943763136864,
- -0.11705965548753738,
- -0.07322649657726288,
- -0.13257290422916412,
- 0.03960506245493889,
- -0.0416124127805233,
- -0.028887787833809853,
- -0.05970919504761696,
- 0.061013247817754745,
- 0.09409746527671814,
- 0.05144823342561722,
- -0.007990886457264423,
- 0.07277367264032364,
- -0.02362208627164364,
- 0.023446639999747276,
- 0.0483565628528595,
- 0.09785011410713196,
- 0.0400119349360466,
- -0.07985323667526245,
- -0.06089099496603012,
- 0.01125951949506998,
- -0.04531963914632797,
- 0.04953954368829727,
- 0.033427685499191284,
- -0.048503950238227844,
- -0.010217402130365372,
- -0.07702892273664474,
- 0.00031944335205480456,
- -0.07328058034181595,
- 0.019014619290828705,
- 0.006177729461342096,
- -0.016145531088113785,
- 0.0032494592014700174,
- 0.031586192548274994,
- -1.2871686827509166e-8,
- -0.02792532742023468,
- 0.020104341208934784,
- 0.012711036019027233,
- -0.06460833549499512,
- 0.05530873313546181,
- -0.0503559485077858,
- 0.016418447718024254,
- 0.09510020911693573,
- 0.019832829013466835,
- 0.023055801168084145,
- 0.1063251718878746,
- -0.010482903569936752,
- -0.025407155975699425,
- -0.018086113035678864,
- 0.0465262271463871,
- -0.04708941653370857,
- 0.014015000313520432,
- 0.01731358841061592,
- -0.017747675999999046,
- -0.04069064185023308,
- -0.0066433376632630825,
- -0.04824394732713699,
- 0.06790135055780411,
- -0.05374284088611603,
- -0.07426170259714127,
- -0.02209288440644741,
- 0.027551718056201935,
- -0.04540430009365082,
- -0.01779751479625702,
- -0.01399562694132328,
- 0.02427499182522297,
- 0.05638360232114792,
- -0.0021489893551915884,
- 0.031464457511901855,
- -0.020636850968003273,
- 0.0015810616314411163,
- -0.04589858651161194,
- -0.047459058463573456,
- -0.05240141600370407,
- -0.007880966179072857,
- 0.023621544241905212,
- -0.10878996551036835,
- 0.06830692291259766,
- 0.026590809226036072,
- -0.03775421902537346,
- 0.0534479059278965,
- 0.1251014620065689,
- 0.033652182668447495,
- -0.0058393278159201145,
- 0.024708125740289688,
- -0.03970896080136299,
- -0.047932546585798264,
- 0.053335290402173996,
- 0.05689755827188492,
- 0.04906464368104935,
- -0.053041957318782806,
- 0.07442086935043335,
- 0.010782497934997082,
- -0.012475806288421154,
- 0.1262514293193817,
- 0.0555630587041378,
- 0.0476357638835907,
- -0.02622675895690918,
- 0.008188298903405666
- ]
- },
- {
- "keyword": "museum",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.038622114807367325,
- 0.07442775368690491,
- -0.052323803305625916,
- 0.028718722984194756,
- -0.04116233438253403,
- -0.009215235710144043,
- -0.012601739726960659,
- -0.06217288225889206,
- -0.03805316612124443,
- -0.052429791539907455,
- 0.014233133755624294,
- -0.09377078711986542,
- 0.04519623517990112,
- 0.036577336490154266,
- -0.09342420846223831,
- 0.0056930179707705975,
- 0.025949159637093544,
- 0.0016009951941668987,
- 0.05270042642951012,
- -0.021807420998811722,
- -0.01576893776655197,
- 0.030486563220620155,
- 0.09122247248888016,
- 0.012249307706952095,
- -0.07501573860645294,
- 0.0703793540596962,
- -0.05363573506474495,
- -0.032840996980667114,
- 0.056930214166641235,
- -0.09732434153556824,
- -0.017330944538116455,
- -0.02269381284713745,
- -0.02745022624731064,
- 0.0064097135327756405,
- 0.06608524918556213,
- 0.07076860964298248,
- 0.04074271395802498,
- -0.040860701352357864,
- 0.03200307860970497,
- -0.041190456598997116,
- -0.0320919007062912,
- 0.0206823218613863,
- 0.0040562148205935955,
- -0.027389084920287132,
- -0.00013274831871967763,
- 0.07029551267623901,
- 0.07647155225276947,
- -0.019853226840496063,
- 0.02295042760670185,
- 0.013265222311019897,
- 0.01302244421094656,
- 0.02543715201318264,
- -0.020164234563708305,
- -0.079034224152565,
- -0.015739064663648605,
- 0.09197109192609787,
- -0.012878711335361004,
- -0.06891307979822159,
- -0.03461742773652077,
- -0.05578047037124634,
- 0.08557890355587006,
- 0.0021511814557015896,
- -0.06288377195596695,
- 0.008297865279018879,
- -0.007198749575763941,
- -0.01716001331806183,
- 0.014168494381010532,
- 0.1003655418753624,
- 0.03700988367199898,
- -0.13965067267417908,
- 0.08331795781850815,
- -0.0006912639364600182,
- -0.003649545833468437,
- 0.029602913185954094,
- 0.03568967804312706,
- -0.05276500806212425,
- -0.044230539351701736,
- -0.006345881149172783,
- -0.0215641800314188,
- -0.0033865475561469793,
- 0.053167346864938736,
- -0.10287193208932877,
- -0.009551851078867912,
- 0.00802734773606062,
- -0.000694040791131556,
- -0.008368486538529396,
- -0.03875725716352463,
- -0.002893133321776986,
- 0.023213941603899002,
- -0.0041094450280070305,
- -0.01123233325779438,
- -0.0345613919198513,
- -0.049816716462373734,
- -0.021187691017985344,
- -0.0610908567905426,
- 0.006767612881958485,
- 0.011742331087589264,
- 0.0844370499253273,
- 0.0533895418047905,
- 0.2244793027639389,
- -0.002632274990901351,
- 0.07068894058465958,
- 0.03011378087103367,
- -0.0020692076068371534,
- -0.03867322579026222,
- 0.0005307486862875521,
- -0.03007371909916401,
- 0.0084711704403162,
- 0.011410785838961601,
- 0.0024350653402507305,
- -0.012644879519939423,
- 0.05782277509570122,
- -0.01106436736881733,
- 0.05093354359269142,
- 0.021552471444010735,
- 0.09142635762691498,
- 0.01659333147108555,
- -0.00841851532459259,
- -0.006081957370042801,
- -0.041192296892404556,
- -0.0010375767014920712,
- -0.018239377066493034,
- 0.04721727594733238,
- 0.0075697931461036205,
- -0.023859690874814987,
- -0.03863789886236191,
- -0.027025295421481133,
- -5.704513923435262e-33,
- 0.043040744960308075,
- -0.00397113524377346,
- -0.0032194810919463634,
- 0.0037852609530091286,
- 0.006296156439930201,
- 0.03356199339032173,
- 0.017040768638253212,
- 0.02721848338842392,
- -0.09606420248746872,
- -0.009650600142776966,
- 0.03502797335386276,
- 0.018158691003918648,
- -0.07690342515707016,
- -0.051328059285879135,
- 0.09204136580228806,
- 0.06730716675519943,
- -0.06536819040775299,
- 0.03863044083118439,
- 0.006789347156882286,
- -0.06837131083011627,
- -0.07777012884616852,
- -0.020516103133559227,
- 0.0507182776927948,
- 0.06266147643327713,
- 0.05556032434105873,
- 0.01265924982726574,
- -0.028687715530395508,
- -0.0159236341714859,
- 0.05052945017814636,
- 0.0187354888767004,
- 0.04032669588923454,
- -0.01710236631333828,
- -0.029406525194644928,
- -0.04857407137751579,
- 0.059499334543943405,
- 0.013294297270476818,
- -0.01900702901184559,
- -0.06764267385005951,
- 0.03403226286172867,
- -0.014391829259693623,
- 0.023177171126008034,
- 0.0016413438133895397,
- -0.031353265047073364,
- 0.04144316911697388,
- -0.0400538370013237,
- 0.07526709884405136,
- 0.09305751323699951,
- -0.007685179356485605,
- 0.05194156989455223,
- 0.04890044778585434,
- 0.025393972173333168,
- -0.0420554056763649,
- -0.12901671230793,
- -0.017035027965903282,
- -0.018127627670764923,
- -0.027079179883003235,
- -0.005311353597790003,
- 0.03350994735956192,
- 0.06787735968828201,
- -0.01727609522640705,
- 0.04033933952450752,
- 0.13932088017463684,
- -0.0008491146727465093,
- 0.10593332350254059,
- 0.08047737926244736,
- -0.008332250639796257,
- -0.0005017734947614372,
- -0.01398551557213068,
- 0.11307947337627411,
- 0.0003363406576681882,
- -0.059528421610593796,
- -0.04895293340086937,
- 0.031877584755420685,
- -0.025396566838026047,
- 0.04023786634206772,
- -0.0027296356856822968,
- -0.045468542724847794,
- 0.024870866909623146,
- -0.04741658642888069,
- -0.02637147530913353,
- -0.04919746518135071,
- -0.009372864849865437,
- -0.006083357147872448,
- 0.030110744759440422,
- 0.0014646811177954078,
- 0.005321078933775425,
- 0.0314960777759552,
- -0.025926247239112854,
- -0.006965256296098232,
- 0.05272618681192398,
- -0.07773008197546005,
- 0.022204197943210602,
- 0.011442356742918491,
- 0.0367971733212471,
- -0.0704415813088417,
- 3.830847927253523e-33,
- 0.03948283568024635,
- -0.0895237922668457,
- 0.06136336177587509,
- 0.032422423362731934,
- -0.014905422925949097,
- -0.05736948922276497,
- -0.04448576644062996,
- 0.04417727515101433,
- -0.03238137066364288,
- -0.04386166110634804,
- -0.013446026481688023,
- -0.0065375519916415215,
- 0.06027861312031746,
- 0.022464055567979813,
- 0.043208494782447815,
- 0.010449020192027092,
- 0.10759804397821426,
- -0.034927770495414734,
- -0.029135191813111305,
- 0.013329917564988136,
- -0.030191723257303238,
- 0.04286547750234604,
- -0.012741285376250744,
- -0.06655893474817276,
- -0.11862827092409134,
- 0.015164363197982311,
- -0.01557921152561903,
- -0.06333257257938385,
- 0.022511370480060577,
- -0.03401592746376991,
- -0.023699387907981873,
- -0.028001535683870316,
- 0.014795308001339436,
- 0.049484074115753174,
- -0.05772249028086662,
- 0.06171705201268196,
- 0.11384771764278412,
- -0.02619153819978237,
- 0.007802923675626516,
- 0.019629614427685738,
- 0.011555152013897896,
- 0.059030815958976746,
- -0.08957957476377487,
- 0.17872115969657898,
- 0.032835543155670166,
- -0.08586529642343521,
- -0.11775582283735275,
- 0.0692860409617424,
- -0.001208661706186831,
- -0.022939614951610565,
- -0.08748989552259445,
- -0.027080772444605827,
- 0.03563825413584709,
- -0.13653963804244995,
- 0.03854626044631004,
- 0.058872707188129425,
- -0.06581588089466095,
- 0.013645057566463947,
- -0.004295832011848688,
- 0.04853731766343117,
- -0.0034462602343410254,
- 0.030515091493725777,
- -0.115803062915802,
- 0.0774744525551796,
- -0.02884126827120781,
- -0.012914245948195457,
- -0.014356589876115322,
- 0.08531700819730759,
- -0.08243407309055328,
- 0.05526072531938553,
- 0.06572268158197403,
- 0.0520474798977375,
- -0.1010897159576416,
- 0.04550115391612053,
- -0.05916253477334976,
- 0.0165497288107872,
- 0.041808150708675385,
- 0.06688205897808075,
- 0.06489622592926025,
- -0.0412779301404953,
- -0.10108965635299683,
- -0.030097590759396553,
- 0.02271217852830887,
- 0.0005787836271338165,
- 0.006102773826569319,
- 0.016735292971134186,
- 0.02996579185128212,
- -0.02101821079850197,
- -0.0067433579824864864,
- -0.05136867240071297,
- 0.026042072102427483,
- -0.02935674786567688,
- 0.011014586314558983,
- -0.07104630023241043,
- 0.03657914698123932,
- -1.2180040087628186e-8,
- -0.01927013508975506,
- 0.017616037279367447,
- -0.001423044130206108,
- -0.041370511054992676,
- 0.05235243961215019,
- -0.0765565037727356,
- 0.015807272866368294,
- 0.12194698303937912,
- -0.009663230739533901,
- 0.0017287838272750378,
- -0.02551356330513954,
- -0.01788211427628994,
- -0.04084854945540428,
- 0.0337962806224823,
- -0.0014733083080500364,
- -0.03431446850299835,
- -0.03414822369813919,
- 0.07722610980272293,
- -0.0520145483314991,
- 0.02323951944708824,
- 0.05022554099559784,
- -0.035463422536849976,
- 0.06008926406502724,
- 0.0073113469406962395,
- -0.05123647302389145,
- -0.008404246531426907,
- 0.027729734778404236,
- -0.030319254845380783,
- 0.0613609254360199,
- 0.04557419940829277,
- -0.037034034729003906,
- 0.10556253045797348,
- 0.019690362736582756,
- 0.005890651140362024,
- 0.048159826546907425,
- -0.07914277166128159,
- 0.024490859359502792,
- -0.029980741441249847,
- -0.0264333076775074,
- -0.11267904937267303,
- -0.018769823014736176,
- -0.07829651236534119,
- -0.01108804251998663,
- -0.009546966291964054,
- 0.024241697043180466,
- 0.08882299810647964,
- 0.10195500403642654,
- -0.0638502761721611,
- 0.004177540075033903,
- -0.008487327955663204,
- -0.04456505924463272,
- -0.015365367755293846,
- 0.03095671907067299,
- 0.04690362885594368,
- -0.009558107703924179,
- -0.04160682484507561,
- 0.020246490836143494,
- -0.039462849497795105,
- -0.04381243512034416,
- -0.01939374953508377,
- 0.15330848097801208,
- -0.007664818782359362,
- 0.004813482519239187,
- 0.010729567147791386
- ]
- },
- {
- "keyword": "library",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07281371206045151,
- -0.0390964075922966,
- -0.09329649806022644,
- 0.0019177899230271578,
- 0.027856113389134407,
- 0.0018885789904743433,
- 0.05041807144880295,
- 0.04452313110232353,
- 0.03422641381621361,
- -0.01705022156238556,
- -0.005574675276875496,
- 0.04503863677382469,
- 0.012923261150717735,
- -0.04800263047218323,
- -0.016099292784929276,
- 0.003032132051885128,
- -0.020979564636945724,
- 0.07380419224500656,
- -0.023351972922682762,
- -0.08606210350990295,
- -0.04024761915206909,
- 0.03689750283956528,
- 0.014317620545625687,
- 0.006358522456139326,
- 0.033335037529468536,
- 0.023615000769495964,
- -0.04254491627216339,
- -0.04957139492034912,
- -0.015947073698043823,
- -0.09313423186540604,
- -0.04401403293013573,
- -0.030667118728160858,
- 0.049357328563928604,
- -0.037352319806814194,
- 0.006494817323982716,
- 0.014395609498023987,
- 0.03975924476981163,
- -0.0483151413500309,
- -0.0021804538555443287,
- 0.024789229035377502,
- -0.1269378811120987,
- 0.021830964833498,
- -0.007607497274875641,
- 0.026371482759714127,
- -0.046376559883356094,
- 0.06425824016332626,
- 0.007352771237492561,
- -0.028049208223819733,
- 0.022320469841361046,
- 0.05407131463289261,
- -0.0434575155377388,
- 0.0009032285888679326,
- -0.058331746608018875,
- -0.02985905297100544,
- 0.05851989611983299,
- 0.04537520557641983,
- -0.024551380425691605,
- 0.030005745589733124,
- -0.0162973552942276,
- -0.01535120327025652,
- 0.050685569643974304,
- 0.0001715446705929935,
- -0.0737527385354042,
- 0.09291692078113556,
- 0.06661425530910492,
- 0.08826274424791336,
- 0.04825284704566002,
- 0.07956759631633759,
- 0.033385708928108215,
- -0.16340228915214539,
- -0.13049161434173584,
- 0.0030081875156611204,
- 0.005037264432758093,
- 0.08961096405982971,
- 0.07330180704593658,
- -0.05735014006495476,
- -0.04076024517416954,
- -0.011588416062295437,
- 0.09281082451343536,
- -0.05886983871459961,
- -0.06284409016370773,
- -0.01702229306101799,
- 0.005064088385552168,
- 0.03372572734951973,
- 0.05880039557814598,
- -0.024822810664772987,
- 0.04464791342616081,
- 0.003882884979248047,
- 0.044469911605119705,
- 0.0032209947239607573,
- 0.025984877720475197,
- -0.025905484333634377,
- 0.09054303914308548,
- 0.020084476098418236,
- -0.11635498702526093,
- 0.07858577370643616,
- 0.05681762844324112,
- -0.09274519979953766,
- 0.01760575920343399,
- 0.26032406091690063,
- -0.06973119080066681,
- 0.006508795544505119,
- 0.05797645077109337,
- 0.013394015841186047,
- -0.03366495668888092,
- -0.09882800281047821,
- -0.03035939857363701,
- 0.008407559245824814,
- -0.014085931703448296,
- 0.018451539799571037,
- 0.0042174505069851875,
- -0.020885122939944267,
- -0.05236542969942093,
- -0.07607238739728928,
- 0.0372539684176445,
- 0.0010567664867267013,
- 0.04040154069662094,
- 0.003089785808697343,
- 0.0357702262699604,
- 0.001878797309473157,
- -0.044623907655477524,
- 0.004293827340006828,
- 0.0005461651599034667,
- 0.008329878561198711,
- -0.08337417244911194,
- -0.0660770907998085,
- -0.05810566991567612,
- -4.4653893287189945e-33,
- 0.06528053432703018,
- -0.05027571693062782,
- 0.04171231389045715,
- 0.05312561243772507,
- -0.010608243755996227,
- -0.0875023752450943,
- 0.03676294535398483,
- -0.011958601884543896,
- -0.07124458998441696,
- -0.007035905495285988,
- 0.011317817494273186,
- 0.07057997584342957,
- -0.07606559991836548,
- 0.016374750062823296,
- 0.03797514736652374,
- 0.0024783608969300985,
- 0.03728373348712921,
- 0.07298853993415833,
- 0.026271745562553406,
- -0.014164256863296032,
- -0.0625172108411789,
- -0.0075278207659721375,
- 0.057393308728933334,
- 0.07632371038198471,
- 0.01334292721003294,
- 0.00920773670077324,
- 0.0027443491853773594,
- -0.0961822122335434,
- 0.059793636202812195,
- 0.0524371862411499,
- 0.01419870276004076,
- -0.0632672905921936,
- -0.04730675742030144,
- -0.041335031390190125,
- 0.06828118115663528,
- -0.039099059998989105,
- -0.08827419579029083,
- -0.041234903037548065,
- 0.04605695605278015,
- 0.002938095713034272,
- 0.013379927724599838,
- 0.00008686901128385216,
- -0.006855218205600977,
- -0.03117918036878109,
- 0.00615308340638876,
- 0.06424283981323242,
- 0.018897993490099907,
- 0.03799501806497574,
- 0.03471522405743599,
- -0.013639600947499275,
- -0.0030774010811001062,
- 0.0313861146569252,
- -0.08801981061697006,
- -0.014030507765710354,
- 0.00851206760853529,
- -0.012213255278766155,
- -0.009232942946255207,
- 0.09585221856832504,
- 0.022889019921422005,
- -0.001008870080113411,
- 0.06810986995697021,
- 0.12908586859703064,
- 0.002718727570027113,
- -0.03775593638420105,
- 0.04439474269747734,
- -0.01765315607190132,
- -0.08754575997591019,
- -0.06599868088960648,
- 0.045940738171339035,
- 0.002354862168431282,
- -0.07392951101064682,
- -0.002308845752850175,
- 0.09090005606412888,
- 0.010680628940463066,
- 0.0009389990591444075,
- 0.07666989415884018,
- -0.06033117696642876,
- 0.012613018043339252,
- -0.10897260904312134,
- -0.0421307235956192,
- -0.094363734126091,
- -0.04216067120432854,
- 0.017976917326450348,
- 0.014882461167871952,
- -0.02387702837586403,
- -0.04491927847266197,
- 0.053003810346126556,
- -0.060770321637392044,
- -0.0359468013048172,
- 0.035531554371118546,
- -0.05393437668681145,
- 0.02209065854549408,
- -0.035165008157491684,
- 0.009678170084953308,
- -0.027995295822620392,
- 3.263007748673555e-33,
- 0.03598937392234802,
- -0.10355113446712494,
- 0.019166050478816032,
- 0.011902879923582077,
- 0.03203967213630676,
- 0.05853909254074097,
- -0.06630931794643402,
- -0.026584964245557785,
- 0.05058932676911354,
- 0.04728008806705475,
- -0.019974462687969208,
- -0.045367930084466934,
- 0.09150627255439758,
- 0.05731554701924324,
- 0.025692343711853027,
- -0.03496954217553139,
- 0.037423718720674515,
- -0.051580168306827545,
- -0.04671517759561539,
- 0.06144045293331146,
- -0.10740768164396286,
- 0.05409300699830055,
- 0.020464882254600525,
- -0.04260195791721344,
- -0.022221943363547325,
- 0.03692874312400818,
- -0.05194313824176788,
- -0.034983426332473755,
- -0.025574037805199623,
- 0.025932474061846733,
- -0.004102393984794617,
- 0.005046484991908073,
- -0.0670677199959755,
- -0.03594730421900749,
- -0.08865804225206375,
- 0.0029455258045345545,
- 0.04413753002882004,
- 0.034269772469997406,
- 0.007173630408942699,
- -0.043974462896585464,
- 0.061710212379693985,
- 0.04516497626900673,
- -0.022027060389518738,
- -0.0003989466349594295,
- 0.0004384770290926099,
- -0.06451505422592163,
- -0.05393708497285843,
- 0.1091834083199501,
- 0.005986788310110569,
- -0.044396188110113144,
- 0.010639023967087269,
- -0.005236283876001835,
- 0.057940803468227386,
- -0.10813186317682266,
- 0.041188403964042664,
- 0.061535779386758804,
- 0.028432661667466164,
- 0.021583296358585358,
- 0.08074312657117844,
- 0.010954095982015133,
- -0.13885235786437988,
- 0.022184500470757484,
- -0.0745847076177597,
- 0.04781382903456688,
- -0.06888359785079956,
- -0.01060317549854517,
- -0.059662945568561554,
- -0.022317860275506973,
- -0.004974848125129938,
- -0.0049483743496239185,
- 0.03544586896896362,
- 0.0493268184363842,
- 0.023909159004688263,
- 0.07091092318296432,
- -0.06199421361088753,
- 0.012038524262607098,
- 0.03041989356279373,
- 0.06981148570775986,
- -0.009747961536049843,
- -0.007595542352646589,
- 0.018697364255785942,
- 0.02241852879524231,
- 0.0038972615730017424,
- 0.062431029975414276,
- 0.07925596088171005,
- 0.02095131017267704,
- 0.08893194794654846,
- -0.0197769645601511,
- -0.006567927543073893,
- -0.044293347746133804,
- -0.02153557352721691,
- 0.04162612184882164,
- -0.0469873882830143,
- 0.06212678179144859,
- 0.06361851096153259,
- -1.2931420378947678e-8,
- -0.047044701874256134,
- 0.0018554511480033398,
- -0.05836334452033043,
- -0.008411876857280731,
- 0.05951735004782677,
- 0.009846910834312439,
- 0.023437874391674995,
- 0.07371548563241959,
- -0.06707099080085754,
- 0.01417868584394455,
- 0.029680628329515457,
- -0.05070445314049721,
- -0.02494893968105316,
- 0.039086632430553436,
- -0.04094662144780159,
- -0.0014151157811284065,
- 0.02083093859255314,
- -0.03776900842785835,
- -0.044943712651729584,
- 0.06867171823978424,
- 0.07192705571651459,
- -0.01343411672860384,
- 0.07354327291250229,
- 0.022427285090088844,
- -0.039878200739622116,
- -0.00268118130043149,
- 0.07183057814836502,
- -0.025356628000736237,
- 0.03518516942858696,
- -0.041361112147569656,
- -0.02411697618663311,
- 0.08802851289510727,
- -0.003133459249511361,
- -0.07774484157562256,
- 0.08225560933351517,
- 0.03726043552160263,
- -0.0016543720848858356,
- -0.05516032129526138,
- -0.04117569699883461,
- 0.07272801548242569,
- -0.001309389597736299,
- -0.05138195678591728,
- 0.0019401649478822947,
- 0.0031638911459594965,
- 0.020981604233384132,
- -0.022758223116397858,
- 0.00907466933131218,
- 0.0027967204805463552,
- -0.011547213420271873,
- 0.045971181243658066,
- -0.033923741430044174,
- 0.0033247845713049173,
- 0.03737517073750496,
- 0.020210471004247665,
- -0.03975096717476845,
- 0.019730214029550552,
- 0.017472179606556892,
- -0.04396232217550278,
- -0.06337513029575348,
- 0.04569922387599945,
- 0.11251740902662277,
- 0.04330847039818764,
- 0.050387099385261536,
- -0.012057350017130375
- ]
- },
- {
- "keyword": "lab",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0325787290930748,
- -0.0006892012315802276,
- 0.004310646094381809,
- 0.03410355746746063,
- -0.041746705770492554,
- -0.057370297610759735,
- 0.015641452744603157,
- 0.09564485400915146,
- 0.01519131287932396,
- -0.009926152415573597,
- 0.056080762296915054,
- -0.10330437123775482,
- 0.008671874180436134,
- 0.052018437534570694,
- -0.08467414230108261,
- -0.02743442729115486,
- 0.02608046866953373,
- -0.04709630459547043,
- -0.007016065530478954,
- -0.08613736927509308,
- -0.09145735204219818,
- -0.03260842338204384,
- 0.032062266021966934,
- 0.02332436852157116,
- -0.03400799259543419,
- 0.09237390011548996,
- -0.028820307925343513,
- 0.023325713351368904,
- 0.009266192093491554,
- -0.11071492731571198,
- -0.060834337025880814,
- 0.005037863273173571,
- 0.03923480212688446,
- -0.027192508801817894,
- 0.033354632556438446,
- -0.049168456345796585,
- 0.018079983070492744,
- 0.0007275078678503633,
- 0.07987653464078903,
- 0.023394916206598282,
- 0.011242077685892582,
- -0.07904346287250519,
- 0.0419553779065609,
- -0.005249084904789925,
- -0.0031867139041423798,
- -0.00846506655216217,
- -0.01649845391511917,
- -0.043265413492918015,
- 0.020196467638015747,
- 0.07076781243085861,
- -0.05812352895736694,
- -0.06473471224308014,
- -0.04621042311191559,
- -0.010584913194179535,
- 0.007883084937930107,
- -0.02592044696211815,
- -0.05743129551410675,
- -0.02985723689198494,
- 0.02684151567518711,
- 0.03246191143989563,
- 0.03611284866929054,
- -0.020246798172593117,
- -0.0785217359662056,
- 0.07801450788974762,
- 0.07039430737495422,
- -0.003421853296458721,
- 0.015623334795236588,
- 0.02231939323246479,
- 0.01134603563696146,
- -0.005440594628453255,
- 0.05045648664236069,
- -0.017580343410372734,
- 0.008241602219641209,
- 0.049315571784973145,
- 0.013505859300494194,
- 0.04716913774609566,
- 0.04621267318725586,
- -0.05081652104854584,
- 0.13914503157138824,
- 0.006373004987835884,
- 0.008977818302810192,
- 0.020452171564102173,
- -0.0779019445180893,
- 0.09685679525136948,
- -0.03937917575240135,
- 0.05670642852783203,
- 0.023718437179923058,
- 0.048105400055646896,
- -0.0009070118539966643,
- -0.03829345852136612,
- -0.050839614123106,
- -0.013746515847742558,
- -0.05520693212747574,
- -0.026139145717024803,
- -0.08645951747894287,
- 0.015733711421489716,
- 0.01789851114153862,
- -0.025824788957834244,
- -0.029730357229709625,
- 0.19031429290771484,
- 0.03218050301074982,
- 0.0228040162473917,
- 0.044153228402137756,
- -0.015867721289396286,
- -0.023110661655664444,
- -0.038429003208875656,
- -0.08357744663953781,
- 0.017379270866513252,
- 0.10043990612030029,
- 0.020887376740574837,
- -0.03837481886148453,
- -0.008835754357278347,
- -0.04032806307077408,
- 0.05573812499642372,
- 0.0397292859852314,
- 0.06754028797149658,
- 0.04812882840633392,
- 0.008780362084507942,
- -0.037070415914058685,
- -0.003878275863826275,
- 0.037432409822940826,
- -0.026097461581230164,
- -0.03501317277550697,
- -0.027703646570444107,
- 0.008577926084399223,
- -0.02938096597790718,
- 0.013439652509987354,
- -6.075476430667759e-33,
- 0.011998462490737438,
- -0.06951684504747391,
- 0.026333382353186607,
- 0.013198645785450935,
- 0.06011040136218071,
- 0.014199490658938885,
- -0.017022600397467613,
- 0.047865185886621475,
- -0.06969491392374039,
- 0.02832248993217945,
- -0.01496040914207697,
- 0.09818056970834732,
- -0.009954089298844337,
- 0.06100441887974739,
- 0.011307128705084324,
- 0.009324532002210617,
- 0.07231263071298599,
- 0.057958293706178665,
- -0.012713968753814697,
- -0.013660546392202377,
- -0.056599389761686325,
- 0.004815683700144291,
- 0.026215877383947372,
- 0.04788573086261749,
- 0.020053323358297348,
- -0.011950439773499966,
- -0.08811517059803009,
- -0.054620422422885895,
- -0.005871144123375416,
- 0.03342820331454277,
- 0.04133161902427673,
- -0.005368697457015514,
- -0.02765471674501896,
- 0.013106984086334705,
- -0.07152508944272995,
- 0.010992081835865974,
- -0.07467854768037796,
- -0.10206827521324158,
- 0.04962485283613205,
- 0.010536462999880314,
- 0.04319680109620094,
- 0.060433607548475266,
- 0.04865162447094917,
- 0.01854017563164234,
- -0.014877795241773129,
- 0.006232765968888998,
- -0.058698877692222595,
- -0.0022157193161547184,
- -0.019698090851306915,
- -0.0034310047049075365,
- -0.04584101587533951,
- 0.006015027407556772,
- -0.003783603897318244,
- -0.011292567476630211,
- 0.046626072376966476,
- 0.02253487892448902,
- 0.05628588795661926,
- 0.022927379235625267,
- -0.037900108844041824,
- 0.04468840733170509,
- 0.06855685263872147,
- 0.18658341467380524,
- -0.08320009708404541,
- 0.10040602833032608,
- 0.05305609479546547,
- -0.0664055198431015,
- -0.07102086395025253,
- -0.02017555572092533,
- 0.08421116322278976,
- 0.029257383197546005,
- -0.11704225093126297,
- -0.01470510195940733,
- 0.025880826637148857,
- -0.03796930983662605,
- 0.01942484639585018,
- -0.041148606687784195,
- -0.04311666265130043,
- -0.01601378060877323,
- -0.05383233726024628,
- -0.08629865199327469,
- -0.04002596065402031,
- -0.010149658657610416,
- -0.038277771323919296,
- 0.008956375531852245,
- -0.0988423302769661,
- 0.048873864114284515,
- -0.016466621309518814,
- 0.02723558247089386,
- -0.009335356764495373,
- -0.0398276187479496,
- -0.07826700806617737,
- -0.052500009536743164,
- 0.025337912142276764,
- 0.05897152051329613,
- -0.031022166833281517,
- 3.7848196092371535e-33,
- -0.00918292161077261,
- -0.02667107991874218,
- 0.037164051085710526,
- 0.04516466334462166,
- 0.05477728322148323,
- 0.01377564761787653,
- 0.08640409260988235,
- 0.03372395038604736,
- -0.006788705009967089,
- 0.09929236024618149,
- 0.04498513787984848,
- -0.045891281217336655,
- 0.0010735744144767523,
- 0.040618330240249634,
- 0.03438682109117508,
- 0.0774720311164856,
- -0.023212650790810585,
- -0.04023313522338867,
- -0.0027833476196974516,
- -0.031304772943258286,
- -0.1257309913635254,
- 0.11938048899173737,
- -0.02874273993074894,
- -0.001424590591341257,
- 0.006822321098297834,
- 0.04648929089307785,
- 0.0070802695117890835,
- -0.0664697140455246,
- 0.018359815701842308,
- 0.015312053263187408,
- -0.08720500767230988,
- -0.03892134130001068,
- 0.006311040837317705,
- -0.02948436699807644,
- 0.06078949198126793,
- 0.07586997002363205,
- 0.134196475148201,
- -0.02969115786254406,
- 0.00591984111815691,
- 0.0019125358667224646,
- 0.047442927956581116,
- 0.04523611441254616,
- -0.0693727433681488,
- 0.10538290441036224,
- 0.049885742366313934,
- 0.09254392981529236,
- -0.010645623318850994,
- -0.010747026652097702,
- -0.028294779360294342,
- 0.03817620873451233,
- -0.0008760253549553454,
- -0.004861028864979744,
- -0.04695837199687958,
- -0.06039716303348541,
- -0.011842821724712849,
- 0.021338488906621933,
- -0.06170818209648132,
- -0.02202829159796238,
- -0.04131992906332016,
- -0.03557593747973442,
- -0.034516166895627975,
- -0.026023054495453835,
- -0.04038960114121437,
- 0.013635569252073765,
- -0.0914636179804802,
- 0.06265109777450562,
- -0.005908269435167313,
- 0.03763168305158615,
- -0.013050834648311138,
- -0.07625064998865128,
- 0.12253095209598541,
- 0.08145501464605331,
- -0.005679222755134106,
- -0.0007221259293146431,
- -0.018318893387913704,
- -0.06109699606895447,
- -0.10957841575145721,
- -0.07301345467567444,
- -0.012088509276509285,
- -0.010075394995510578,
- -0.033310938626527786,
- -0.04379190504550934,
- 0.043106406927108765,
- 0.13190720975399017,
- 0.024008888751268387,
- -0.05274286866188049,
- 0.021403692662715912,
- 0.0875416100025177,
- -0.04651325196027756,
- 0.006859343033283949,
- 0.05491197109222412,
- 0.005379362031817436,
- -0.04726891592144966,
- 0.004799982998520136,
- 0.03524482250213623,
- -1.273445349170288e-8,
- 0.04130968078970909,
- -0.05066700279712677,
- 0.005916934926062822,
- -0.004282414447516203,
- 0.039920736104249954,
- 0.013703091070055962,
- -0.0014652134850621223,
- 0.033021196722984314,
- 0.041129373013973236,
- 0.11607958376407623,
- -0.0097079798579216,
- 0.029620550572872162,
- -0.02595573104918003,
- 0.06686358153820038,
- 0.012769725173711777,
- 0.0025422212202101946,
- -0.04354158788919449,
- 0.01416011806577444,
- -0.020351292565464973,
- 0.032572370022535324,
- -0.03180082514882088,
- 0.003671712940558791,
- 0.072716623544693,
- 0.04617556929588318,
- -0.0643378347158432,
- -0.07530343532562256,
- -0.006173519417643547,
- -0.00025534609449096024,
- -0.04433419927954674,
- 0.015473674051463604,
- -0.02761600911617279,
- 0.044710248708724976,
- -0.007562283892184496,
- -0.03727415204048157,
- 0.043763723224401474,
- -0.0374237485229969,
- 0.013000210747122765,
- -0.06990408152341843,
- 0.02893870696425438,
- 0.07453836500644684,
- -0.04754505679011345,
- -0.01870686188340187,
- -0.07312256097793579,
- -0.05092957988381386,
- 0.010563020594418049,
- -0.0024820377584546804,
- -0.009486758150160313,
- -0.07890906184911728,
- -0.0013904937077313662,
- -0.038989633321762085,
- -0.07274673879146576,
- -0.03463456407189369,
- 0.08611676841974258,
- -0.01426628977060318,
- -0.001345540746115148,
- 0.012224368751049042,
- -0.04281225800514221,
- -0.061596911400556564,
- -0.10295974463224411,
- 0.06152299791574478,
- 0.1407502293586731,
- 0.02500060759484768,
- 0.12102275341749191,
- -0.07471819221973419
- ]
- },
- {
- "keyword": "laboratory",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.06857137382030487,
- 0.013987960293889046,
- -0.053425382822752,
- -0.012264884077012539,
- -0.00898648425936699,
- -0.061758171766996384,
- -0.0026787256356328726,
- 0.10351791977882385,
- -0.008995315060019493,
- 0.027472544461488724,
- 0.022015295922756195,
- -0.10522202402353287,
- -0.030614254996180534,
- 0.06659141927957535,
- -0.12653420865535736,
- -0.02662605792284012,
- 0.04829376935958862,
- -0.021870842203497887,
- -0.03377683460712433,
- -0.07498224079608917,
- -0.05936616659164429,
- -0.021009497344493866,
- 0.02910984680056572,
- 0.031164828687906265,
- -0.02051297016441822,
- 0.07510227710008621,
- -0.045471638441085815,
- 0.016966503113508224,
- -0.011972181499004364,
- -0.07758431136608124,
- -0.038226913660764694,
- 0.03275053948163986,
- -0.008922540582716465,
- -0.07023747265338898,
- 0.0655071809887886,
- -0.035943690687417984,
- 0.02611484006047249,
- 0.0024137578438967466,
- 0.027759794145822525,
- 0.03309619799256325,
- -0.02154025249183178,
- -0.11197225004434586,
- 0.03423989936709404,
- 0.028323831036686897,
- -0.03549858182668686,
- 0.006327338982373476,
- 0.07623869180679321,
- -0.03159918636083603,
- 0.018227780237793922,
- 0.016963358968496323,
- -0.029737291857600212,
- -0.024599462747573853,
- -0.05546768382191658,
- 0.00020582981233019382,
- 0.010616923682391644,
- -0.026759009808301926,
- -0.04320115968585014,
- -0.03915249556303024,
- -0.038007255643606186,
- 0.011753157712519169,
- 0.010323301889002323,
- 0.028495443984866142,
- -0.07487185299396515,
- 0.06818384677171707,
- 0.07922666519880295,
- -0.03228265047073364,
- 0.039070744067430496,
- 0.04801135137677193,
- 0.08623708039522171,
- -0.035783521831035614,
- 0.03359423205256462,
- -0.030911166220903397,
- -0.0014230269007384777,
- 0.029740024358034134,
- 0.053543396294116974,
- 0.04856646806001663,
- 0.019483420997858047,
- -0.05679740384221077,
- 0.10970503836870193,
- 0.013276678510010242,
- 0.023547036573290825,
- -0.016622263938188553,
- -0.014267188496887684,
- 0.07242884486913681,
- -0.0407809279859066,
- 0.040826465934515,
- 0.01469345297664404,
- 0.05457044392824173,
- -0.0012323956470936537,
- -0.05562486872076988,
- -0.042750630527734756,
- -0.03899095952510834,
- 0.015665223821997643,
- 0.00011331568384775892,
- -0.03548101708292961,
- 0.030124101787805557,
- 0.007538103964179754,
- -0.048855751752853394,
- 0.0714733898639679,
- 0.21216578781604767,
- 0.014788223430514336,
- 0.027420425787568092,
- 0.024797817692160606,
- 0.016307229176163673,
- -0.03541049733757973,
- -0.056496649980545044,
- -0.046241164207458496,
- 0.023403527215123177,
- 0.07207929342985153,
- -0.0006716692005284131,
- -0.005503345280885696,
- 0.00033665093360468745,
- -0.027594324201345444,
- 0.06763690710067749,
- 0.07842563092708588,
- 0.06764048337936401,
- 0.06151604652404785,
- -0.017250655218958855,
- -0.09607988595962524,
- 0.03957789018750191,
- 0.052905187010765076,
- -0.01931421272456646,
- -0.07066778093576431,
- -0.02152179181575775,
- 0.03269283473491669,
- 0.02058178372681141,
- 0.0396411269903183,
- -6.49184975404046e-33,
- 0.009869914501905441,
- -0.06849107891321182,
- 0.034086599946022034,
- 0.01330303493887186,
- -0.00395620334893465,
- 0.052056584507226944,
- -0.02378140203654766,
- 0.04849255457520485,
- -0.03226438909769058,
- 0.07619799673557281,
- 0.021596184000372887,
- 0.0797092393040657,
- -0.04182463511824608,
- 0.07246184349060059,
- -0.04058974236249924,
- 0.015134570188820362,
- -0.036899060010910034,
- 0.06282167881727219,
- 0.016971511766314507,
- 0.036726731806993484,
- -0.06651621311903,
- -0.022435544058680534,
- -0.0003328010207042098,
- 0.026693101972341537,
- 0.03801034018397331,
- 0.015678271651268005,
- -0.11400371789932251,
- -0.010621900670230389,
- -0.022457905113697052,
- 0.032143495976924896,
- 0.04396340996026993,
- 0.012981779873371124,
- -0.05455050617456436,
- 0.01469976082444191,
- -0.042656682431697845,
- 0.013479968532919884,
- -0.06581802666187286,
- -0.053297337144613266,
- 0.03749019652605057,
- 0.02959563583135605,
- 0.011265318840742111,
- 0.05936722829937935,
- 0.0261517520993948,
- 0.06092778220772743,
- 0.0545332171022892,
- -0.00809443462640047,
- -0.07622751593589783,
- 0.01921200565993786,
- 0.015939222648739815,
- -0.012023490853607655,
- -0.04737125337123871,
- 0.018453413620591164,
- 0.012502727098762989,
- -0.04140124097466469,
- 0.07794840633869171,
- 0.05847450718283653,
- 0.014307292178273201,
- 0.04398484155535698,
- -0.046295154839754105,
- 0.047927647829055786,
- 0.026988578960299492,
- 0.2169303297996521,
- -0.1254628598690033,
- 0.09368294477462769,
- 0.03866628557443619,
- -0.029701709747314453,
- -0.05434234067797661,
- -0.04199076071381569,
- 0.09114710241556168,
- 0.011171834543347359,
- -0.11051153391599655,
- 0.0008168171625584364,
- -0.052286434918642044,
- -0.03646283224225044,
- 0.021444980055093765,
- -0.04346855357289314,
- -0.029717043042182922,
- 0.005023667588829994,
- -0.050032489001750946,
- -0.0738394632935524,
- 0.016075557097792625,
- -0.05551932007074356,
- -0.022786051034927368,
- -0.03937096148729324,
- -0.12454328685998917,
- 0.02603280171751976,
- -0.007472075056284666,
- 0.0011012583272531629,
- -0.036865122616291046,
- -0.06622994691133499,
- -0.045388828963041306,
- -0.05182619392871857,
- 0.014888636767864227,
- 0.05604495108127594,
- -0.0001987460709642619,
- 4.172132140863635e-33,
- 0.0012710262089967728,
- -0.027775201946496964,
- -0.03347652778029442,
- 0.05620090663433075,
- 0.06903686374425888,
- 0.0621383860707283,
- 0.07676885277032852,
- -0.04333890601992607,
- -0.015424896031618118,
- 0.0899859070777893,
- 0.03552583232522011,
- -0.008467341773211956,
- -0.01521003432571888,
- 0.040650371462106705,
- 0.026979345828294754,
- 0.016969583928585052,
- -0.03680307790637016,
- -0.04370236024260521,
- -0.011725307442247868,
- 0.02653631754219532,
- -0.069019615650177,
- 0.1127643957734108,
- -0.004381176549941301,
- -0.03820471838116646,
- 0.0023105016443878412,
- 0.027836648747324944,
- -0.00042460529948584735,
- -0.09257841110229492,
- -0.013419298455119133,
- 0.025913437828421593,
- -0.07215896248817444,
- -0.0025923943612724543,
- 0.0339081697165966,
- -0.0207211971282959,
- 0.009965457953512669,
- 0.01070678886026144,
- 0.12545005977153778,
- -0.02261231653392315,
- -0.006324597634375095,
- -0.06205379217863083,
- 0.03938879445195198,
- 0.08106011897325516,
- -0.04807126522064209,
- 0.031621579080820084,
- 0.02600855566561222,
- 0.12023629248142242,
- -0.018039941787719727,
- -0.020035432651638985,
- 0.0007524787215515971,
- 0.004410970956087112,
- -0.01758664846420288,
- 0.020328419283032417,
- -0.04160238429903984,
- -0.06697673350572586,
- 0.022403080016374588,
- 0.02172720432281494,
- -0.025765435770154,
- -0.013910681940615177,
- -0.01854747161269188,
- 0.008837711997330189,
- 0.005127797368913889,
- -0.05779455229640007,
- -0.030791403725743294,
- 0.04026024788618088,
- -0.03707871586084366,
- 0.05476551502943039,
- 0.021447431296110153,
- 0.07554712146520615,
- 0.04082011058926582,
- -0.021314410492777824,
- 0.1294967234134674,
- 0.05579076707363129,
- 0.061178356409072876,
- -0.013174159452319145,
- -0.00018423006986267865,
- -0.07021243870258331,
- -0.12644992768764496,
- -0.07849345356225967,
- -0.013841439038515091,
- -0.012490474618971348,
- -0.057229116559028625,
- -0.05172614008188248,
- 0.05987738445401192,
- 0.03706898167729378,
- 0.044120702892541885,
- -0.0824093297123909,
- 0.04430849850177765,
- 0.0612059012055397,
- -0.04917208105325699,
- 0.007933060638606548,
- 0.03445352986454964,
- -0.04595106095075607,
- -0.07156993448734283,
- -0.0256104227155447,
- 0.06583309173583984,
- -1.2149564021513015e-8,
- 0.10511451959609985,
- -0.054460812360048294,
- 0.014390822499990463,
- -0.019846173003315926,
- -0.022858530282974243,
- -0.0007810267270542681,
- 0.005282852333039045,
- 0.07425230741500854,
- 0.042076293379068375,
- 0.10077507048845291,
- -0.018743764609098434,
- 0.07835369557142258,
- 0.034873947501182556,
- 0.06914877891540527,
- 0.04444242641329765,
- 0.02182481251657009,
- -0.052040427923202515,
- -0.013597611337900162,
- -0.06409212946891785,
- -0.02485625632107258,
- 0.008758792653679848,
- 0.024511972442269325,
- 0.04446272924542427,
- 0.024612898007035255,
- -0.03731149807572365,
- -0.03561468794941902,
- 0.013154108077287674,
- 0.0145871015265584,
- -0.008531617932021618,
- -0.014488196931779385,
- -0.016157638281583786,
- -0.0015637356555089355,
- -0.011137745343148708,
- -0.06604678183794022,
- 0.02396957203745842,
- -0.013229556381702423,
- 0.00019448212697170675,
- -0.04358396679162979,
- 0.020423997193574905,
- 0.013887518085539341,
- -0.10131261497735977,
- -0.07614041864871979,
- -0.058819714933633804,
- -0.031540483236312866,
- 0.08048007637262344,
- 0.005987377837300301,
- -0.057612095028162,
- 0.009875034913420677,
- -0.004546722397208214,
- -0.03851586580276489,
- -0.010855088010430336,
- -0.017814787104725838,
- 0.038091421127319336,
- -0.02707047201693058,
- -0.042122721672058105,
- 0.03503824397921562,
- -0.03696664795279503,
- -0.04666227474808693,
- -0.11582288146018982,
- -0.0021109345834702253,
- 0.11035372316837311,
- 0.09394150972366333,
- 0.08723252266645432,
- -0.11503150314092636
- ]
- },
- {
- "keyword": "research center",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.06086308881640434,
- -0.03027806244790554,
- -0.0803062692284584,
- 0.08573968708515167,
- 0.03287532925605774,
- -0.007845251820981503,
- -0.03522131219506264,
- 0.02779596671462059,
- 0.009015504270792007,
- 0.10299348086118698,
- -0.018142303451895714,
- -0.0200042687356472,
- -0.007999569177627563,
- 0.012746448628604412,
- -0.043975863605737686,
- 0.013559246435761452,
- 0.05744999647140503,
- 0.01344947051256895,
- -0.0002991334768012166,
- -0.11106889694929123,
- -0.07127684354782104,
- -0.027642108500003815,
- 0.102232426404953,
- 0.004263194743543863,
- -0.03175346553325653,
- 0.033913079649209976,
- -0.059954751282930374,
- 0.05987725034356117,
- -0.0024583269841969013,
- -0.027454715222120285,
- 0.05254913121461868,
- 0.057198140770196915,
- 0.033117055892944336,
- 0.012472724542021751,
- 0.0697331428527832,
- 0.08327963203191757,
- -0.008179462514817715,
- 0.031687408685684204,
- 0.060150787234306335,
- 0.016192547976970673,
- -0.05032508820295334,
- -0.031419672071933746,
- 0.01921459287405014,
- 0.0009143188362941146,
- -0.031135225668549538,
- -0.00034172978485003114,
- -0.0345647968351841,
- -0.017464641481637955,
- 0.07283011078834534,
- -0.006640028674155474,
- 0.0004678515833802521,
- -0.08045438677072525,
- -0.06902752071619034,
- 0.024375222623348236,
- -0.06042792648077011,
- 0.025759197771549225,
- 0.0011309562250971794,
- -0.03497513383626938,
- 0.016459500417113304,
- -0.07610927522182465,
- 0.1261487454175949,
- -0.04173425957560539,
- -0.07923958450555801,
- 0.03779584541916847,
- 0.019742673262953758,
- 0.008363847620785236,
- 0.033272817730903625,
- 0.08544711768627167,
- 0.05949117988348007,
- -0.15320666134357452,
- -0.028528006747364998,
- -0.02993997372686863,
- 0.0035565791185945272,
- 0.033501800149679184,
- 0.1355280727148056,
- 0.08188588172197342,
- -0.024590009823441505,
- 0.013424725271761417,
- 0.10770981758832932,
- -0.021977245807647705,
- 0.1267443746328354,
- -0.0036616679280996323,
- 0.012444817461073399,
- 0.11801961064338684,
- -0.14210300147533417,
- -0.03330733999609947,
- 0.009334234520792961,
- 0.041507478803396225,
- 0.030753573402762413,
- -0.013287330977618694,
- 0.03135671839118004,
- -0.0188443623483181,
- -0.042497359216213226,
- -0.06755959987640381,
- -0.07907459884881973,
- -0.01571536436676979,
- 0.030473727732896805,
- -0.11673606187105179,
- -0.0036000024992972612,
- 0.13116350769996643,
- 0.008535335771739483,
- 0.0017491435864940286,
- 0.058505091816186905,
- -0.07770742475986481,
- -0.02702914923429489,
- -0.03288641571998596,
- -0.034612640738487244,
- 0.06879165768623352,
- 0.004437547642737627,
- 0.06089077889919281,
- -0.06076141446828842,
- 0.03881140798330307,
- -0.06638067215681076,
- 0.0295464675873518,
- -0.010677045211195946,
- -0.003402185160666704,
- 0.03849876672029495,
- 0.008367623202502728,
- 0.04699470102787018,
- 0.04136766865849495,
- -0.03543262928724289,
- -0.025945398956537247,
- -0.010494758374989033,
- -0.0394396111369133,
- -0.006834134459495544,
- -0.05984288081526756,
- -0.11744639277458191,
- -3.356743137576063e-33,
- -0.0795140415430069,
- 0.043232984840869904,
- 0.06477086991071701,
- 0.06843402236700058,
- 0.014866271987557411,
- 0.01457817293703556,
- 0.0072123948484659195,
- 0.01966399885714054,
- -0.026479527354240417,
- -0.0918504074215889,
- 0.011505911126732826,
- 0.032461993396282196,
- 0.008401661179959774,
- 0.032869815826416016,
- -0.0033447728492319584,
- 0.027611060068011284,
- -0.01631522737443447,
- 0.04458878934383392,
- -0.12354572117328644,
- -0.0026475845370441675,
- -0.031952742487192154,
- -0.015701783820986748,
- 0.07075505703687668,
- -0.011395047418773174,
- 0.017254231497645378,
- -0.005483555141836405,
- -0.08058815449476242,
- -0.0068509215489029884,
- 0.057947948575019836,
- 0.009599147364497185,
- -0.019110791385173798,
- 0.07595834136009216,
- -0.035797059535980225,
- -0.04213295876979828,
- 0.06604201346635818,
- 0.12104248255491257,
- 0.014356757514178753,
- -0.03436313197016716,
- 0.018176749348640442,
- 0.02327241189777851,
- -0.004778705071657896,
- 0.05098358914256096,
- 0.06803781539201736,
- 0.03745706379413605,
- 0.04848528280854225,
- 0.041418418288230896,
- 0.019248241558670998,
- 0.01836010441184044,
- 0.09844970703125,
- -0.041067931801080704,
- -0.065495066344738,
- 0.010785238817334175,
- -0.10789071768522263,
- -0.014352003112435341,
- 0.023197870701551437,
- 0.05597639083862305,
- 0.03180522471666336,
- -0.05366680398583412,
- 0.05087997764348984,
- -0.014041977003216743,
- 0.017111822962760925,
- 0.07070677727460861,
- -0.0923343151807785,
- 0.007242930121719837,
- 0.006542091257870197,
- -0.06584704667329788,
- -0.048796556890010834,
- -0.018669765442609787,
- 0.08881720900535583,
- 0.06554728746414185,
- -0.024998318403959274,
- -0.02351602353155613,
- 0.10164329409599304,
- 0.05740386247634888,
- -0.06498876214027405,
- -0.008563756942749023,
- -0.04867666959762573,
- 0.03520306199789047,
- -0.11749865859746933,
- 0.020985029637813568,
- -0.025442559272050858,
- 0.00626210356131196,
- -0.05682480335235596,
- 0.05684001371264458,
- 0.002369027119129896,
- -0.04072651267051697,
- -0.025301706045866013,
- -0.007539586629718542,
- -0.06277651339769363,
- -0.008817208930850029,
- -0.04064658284187317,
- -0.024321481585502625,
- 0.04856139048933983,
- 0.08732388913631439,
- -0.07290581613779068,
- 2.028635089870487e-33,
- -0.038225360214710236,
- -0.08293667435646057,
- 0.022791996598243713,
- 0.13095906376838684,
- 0.077874556183815,
- 0.035085149109363556,
- 0.019401859492063522,
- -0.11482331901788712,
- 0.05500086024403572,
- 0.10270320624113083,
- 0.05842819809913635,
- -0.006676259450614452,
- 0.021270085126161575,
- 0.05189814791083336,
- -0.0550624318420887,
- 0.039808519184589386,
- 0.023043641820549965,
- -0.06191643327474594,
- -0.08707844465970993,
- -0.0010924756061285734,
- 0.012309301644563675,
- -0.022339459508657455,
- -0.04646901413798332,
- -0.07036925107240677,
- -0.00985941756516695,
- 0.0070633371360599995,
- 0.005708334501832724,
- -0.049022261053323746,
- -0.011340288445353508,
- -0.003999725449830294,
- -0.07037341594696045,
- -0.031110862269997597,
- -0.06070556119084358,
- 0.11721403896808624,
- -0.0676792785525322,
- 0.05770637094974518,
- 0.09163831919431686,
- 0.019082587212324142,
- -0.03132238984107971,
- -0.03696674853563309,
- 0.05310874059796333,
- 0.0007495687459595501,
- -0.05406297370791435,
- -0.012443994171917439,
- 0.0729014202952385,
- -0.018711214885115623,
- -0.044542331248521805,
- 0.10065537691116333,
- -0.00007697723776800558,
- -0.012125915847718716,
- -0.11013811826705933,
- -0.03315676748752594,
- -0.015148513950407505,
- -0.07849275320768356,
- 0.06615103781223297,
- 0.04400637745857239,
- 0.03509816527366638,
- -0.0006033603567630053,
- -0.04953589290380478,
- 0.020692938938736916,
- 0.03195694833993912,
- -0.013913540169596672,
- -0.13626645505428314,
- 0.06406214833259583,
- -0.04678933322429657,
- 0.026777055114507675,
- 0.045844629406929016,
- 0.02660166658461094,
- -0.01554113533347845,
- -0.028177130967378616,
- 0.06734832376241684,
- 0.04774290695786476,
- 0.012889815494418144,
- -0.07934767007827759,
- -0.031281568109989166,
- -0.012004774995148182,
- -0.020404748618602753,
- 0.001032517058774829,
- -0.016473589465022087,
- 0.0011879767989739776,
- -0.03678992763161659,
- -0.029332267120480537,
- -0.03817169368267059,
- 0.012089045718312263,
- 0.07014133036136627,
- 0.07165328413248062,
- 0.019288383424282074,
- 0.022457728162407875,
- -0.04369933903217316,
- -0.05726714804768562,
- -0.01907581277191639,
- -0.04631258547306061,
- -0.029902761802077293,
- -0.07076612114906311,
- 0.023255443200469017,
- -1.1770864283278115e-8,
- 0.004816813860088587,
- -0.030697042122483253,
- 0.011371149681508541,
- 0.016839545220136642,
- 0.019584259018301964,
- -0.05040722340345383,
- -0.027335353195667267,
- 0.025238394737243652,
- 0.006297714076936245,
- 0.05362195149064064,
- -0.03342800959944725,
- 0.007472324185073376,
- -0.02202702686190605,
- 0.01281825453042984,
- -0.028151949867606163,
- -0.00905520748347044,
- 0.015111875720322132,
- 0.02220204658806324,
- -0.010142984800040722,
- -0.041692882776260376,
- -0.011369443498551846,
- 0.03127918764948845,
- 0.022602949291467667,
- 0.009236895479261875,
- 0.01989445462822914,
- 0.015539401210844517,
- 0.05715172365307808,
- 0.08663610368967056,
- 0.004188263323158026,
- -0.008833822794258595,
- 0.021289939060807228,
- -0.002830499317497015,
- -0.06915415823459625,
- -0.09460709244012833,
- 0.06854747980833054,
- -0.053716499358415604,
- 0.01427642721682787,
- 0.00743162352591753,
- 0.022844761610031128,
- 0.019871283322572708,
- -0.012520026415586472,
- 0.009570919908583164,
- -0.006489233113825321,
- -0.003245469881221652,
- -0.02602780982851982,
- 0.09450439363718033,
- 0.004955432843416929,
- 0.014067367650568485,
- 0.00935592595487833,
- 0.007951529696583748,
- -0.018041828647255898,
- 0.006275888532400131,
- -0.029902055859565735,
- 0.004158976953476667,
- 0.009220979176461697,
- 0.020774107426404953,
- 0.04166680946946144,
- -0.01628170721232891,
- -0.06331972777843475,
- 0.05483803525567055,
- 0.1221272423863411,
- 0.00048310586134903133,
- -0.05731736868619919,
- 0.031273357570171356
- ]
- },
- {
- "keyword": "team",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.09887639433145523,
- 0.028840135782957077,
- -0.06425051391124725,
- -0.004250990692526102,
- -0.01689102128148079,
- -0.013618988916277885,
- 0.14731405675411224,
- 0.04799720644950867,
- 0.07308902591466904,
- -0.01673244498670101,
- 0.0026493254117667675,
- -0.09190015494823456,
- 0.0415172353386879,
- 0.01527289766818285,
- -0.02130351960659027,
- -0.046817488968372345,
- -0.061963099986314774,
- -0.009084071964025497,
- -0.05429553613066673,
- -0.08891243487596512,
- -0.08844123035669327,
- -0.0344986692070961,
- -0.024647735059261322,
- 0.0848207175731659,
- -0.045068029314279556,
- 0.04605552926659584,
- -0.03450814262032509,
- 0.0030403933487832546,
- -0.04051366075873375,
- -0.12926608324050903,
- -0.08868418633937836,
- -0.0069003626704216,
- 0.10106447339057922,
- 0.007203034590929747,
- -0.023637857288122177,
- 0.05419818311929703,
- -0.022750699892640114,
- -0.007532141637057066,
- 0.0071168639697134495,
- -0.005851549096405506,
- -0.008830437436699867,
- -0.04735901951789856,
- -0.019789844751358032,
- -0.00028426339849829674,
- -0.031921252608299255,
- 0.04046177864074707,
- 0.06334754079580307,
- 0.01485636830329895,
- 0.015772532671689987,
- 0.05186525732278824,
- -0.0027704439125955105,
- 0.06630485504865646,
- -0.04042787849903107,
- 0.008683930151164532,
- 0.06407526135444641,
- 0.05454624816775322,
- -0.04121836647391319,
- -0.038135889917612076,
- -0.00046889952500350773,
- -0.057134147733449936,
- 0.0907478779554367,
- -0.020307837054133415,
- -0.05696611478924751,
- 0.04552072286605835,
- -0.022068623453378677,
- 0.051149170845746994,
- 0.004031276796013117,
- 0.07540906965732574,
- 0.007708216551691294,
- -0.08090859651565552,
- 0.06334878504276276,
- -0.03386623412370682,
- 0.01406860537827015,
- -0.02574542909860611,
- 0.06367204338312149,
- 0.09450667351484299,
- 0.07758413255214691,
- -0.044019751250743866,
- 0.08737846463918686,
- 0.012206907384097576,
- 0.03500482812523842,
- -0.027524545788764954,
- -0.03961576893925667,
- 0.04568851739168167,
- -0.03915242850780487,
- -0.04687732085585594,
- -0.06632843613624573,
- 0.038197699934244156,
- 0.013032009825110435,
- 0.050488922744989395,
- -0.04074432700872421,
- 0.02400588057935238,
- 0.10116109251976013,
- -0.007088858168572187,
- -0.09407871216535568,
- 0.08667315542697906,
- 0.06449270248413086,
- -0.014776916243135929,
- -0.013622957281768322,
- 0.21345777809619904,
- 0.005507778842002153,
- 0.03404394909739494,
- 0.002176067791879177,
- -0.021293653175234795,
- -0.034897517412900925,
- -0.019001711159944534,
- -0.06404702365398407,
- 0.038395337760448456,
- -0.014878550544381142,
- 0.009573637507855892,
- -0.0006653827731497586,
- -0.009798567742109299,
- -0.06874129921197891,
- 0.06266509741544724,
- -0.026825282722711563,
- -0.02382979728281498,
- -0.032910022884607315,
- 0.0234201829880476,
- -0.019487036392092705,
- -0.0758221298456192,
- 0.056179583072662354,
- 0.026923231780529022,
- 0.05154316872358322,
- 0.017492474988102913,
- 0.021223288029432297,
- 0.013331138528883457,
- -0.01783967949450016,
- -4.6637789796752105e-33,
- 0.0361793152987957,
- -0.04347207024693489,
- -0.004816303960978985,
- 0.06466503441333771,
- -0.03302612900733948,
- 0.04413909837603569,
- 0.06693977862596512,
- 0.03538563847541809,
- -0.10459133982658386,
- 0.0068804556503891945,
- -0.003446579445153475,
- -0.027986973524093628,
- 0.06710636615753174,
- 0.023499738425016403,
- 0.11543390154838562,
- 0.006720352917909622,
- -0.04831957444548607,
- 0.026675773784518242,
- -0.10879965871572495,
- -0.040394049137830734,
- -0.07092554122209549,
- 0.051004260778427124,
- 0.027723198756575584,
- 0.05456193536520004,
- -0.07916565984487534,
- -0.043729018419981,
- -0.05481580272316933,
- -0.07439004629850388,
- -0.03856692835688591,
- 0.021258581429719925,
- 0.039310287684202194,
- 0.029918130487203598,
- 0.020114406943321228,
- 0.02674291469156742,
- -0.05486799404025078,
- -0.03733160346746445,
- 0.03411497920751572,
- -0.09022912383079529,
- -0.007533033844083548,
- -0.0168173648416996,
- 0.028674598783254623,
- 0.005609367974102497,
- -0.07437188178300858,
- 0.005480359774082899,
- 0.011110671795904636,
- 0.02782011404633522,
- 0.019603408873081207,
- 0.0025210983585566282,
- -0.0024215944577008486,
- 0.011821532621979713,
- -0.013201223686337471,
- -0.042846862226724625,
- -0.06361699104309082,
- 0.0018738475628197193,
- 0.0520496740937233,
- -0.012183355167508125,
- 0.023040080443024635,
- 0.005379084497690201,
- -0.03881923109292984,
- -0.0015842259163036942,
- -0.021102124825119972,
- 0.09142614901065826,
- -0.004600994288921356,
- -0.03229108825325966,
- 0.03504634648561478,
- -0.015378687530755997,
- 0.05113394185900688,
- 0.025767391547560692,
- 0.06500227004289627,
- -0.0901130810379982,
- -0.04519656300544739,
- -0.029885167255997658,
- 0.07822156697511673,
- 0.0671573355793953,
- 0.023867009207606316,
- 0.02346590906381607,
- 0.042257703840732574,
- 0.08573908358812332,
- -0.01946413703262806,
- -0.008611781522631645,
- -0.02566296048462391,
- -0.07473403215408325,
- -0.05027634650468826,
- -0.01749519258737564,
- 0.004099750425666571,
- 0.032427459955215454,
- -0.06641852855682373,
- -0.05825166776776314,
- -0.02753807045519352,
- 0.06121854484081268,
- -0.03209179267287254,
- 0.04343527927994728,
- 0.0461222305893898,
- 0.1032678559422493,
- -0.01040403638035059,
- 2.8767193665002273e-33,
- 0.022070853039622307,
- -0.04356688633561134,
- 0.015663819387555122,
- 0.042877353727817535,
- 0.09961249679327011,
- -0.0453844778239727,
- 0.05444180592894554,
- -0.007559570483863354,
- 0.044606905430555344,
- 0.1260528564453125,
- -0.03766343370079994,
- -0.04671415314078331,
- -0.012629235163331032,
- 0.014412958174943924,
- 0.008513251319527626,
- 0.05467922240495682,
- 0.07491324096918106,
- -0.062294282019138336,
- -0.03905464708805084,
- -0.0014345011441037059,
- -0.08490501344203949,
- -0.03636503964662552,
- 0.013143318705260754,
- 0.01715639792382717,
- 0.01897723786532879,
- 0.03624608367681503,
- 0.04593042656779289,
- -0.042821429669857025,
- 0.037219878286123276,
- -0.003400122979655862,
- 0.05454050004482269,
- -0.003914075903594494,
- -0.045395031571388245,
- -0.0448036715388298,
- 0.03409724682569504,
- 0.11521352827548981,
- -0.045306891202926636,
- 0.005526939872652292,
- -0.025166364386677742,
- -0.018006527796387672,
- 0.057959165424108505,
- 0.0189987663179636,
- -0.023237822577357292,
- 0.11515367031097412,
- -0.002589670941233635,
- -0.001135575701482594,
- 0.034575510770082474,
- 0.005497467704117298,
- 0.027869215235114098,
- 0.08522527664899826,
- -0.024311261251568794,
- -0.032595276832580566,
- -0.010233333334326744,
- -0.01159926038235426,
- -0.039086636155843735,
- 0.0033530869986861944,
- -0.01223435066640377,
- -0.0035144714638590813,
- 0.01780061423778534,
- -0.009693754836916924,
- -0.03160429745912552,
- -0.003538180608302355,
- -0.029396014288067818,
- 0.11614853888750076,
- -0.015593970194458961,
- 0.015752580016851425,
- -0.04164165258407593,
- 0.007535753306001425,
- 0.019854743033647537,
- 0.017953697592020035,
- -0.033067088574171066,
- 0.025193888694047928,
- -0.022137995809316635,
- 0.060423512011766434,
- -0.06659891456365585,
- -0.014019913040101528,
- -0.17557445168495178,
- 0.02353116311132908,
- 0.05340568721294403,
- 0.006754841189831495,
- -0.05973389744758606,
- -0.004442163743078709,
- -0.07276709377765656,
- 0.0958312526345253,
- -0.06658787280321121,
- -0.028672141954302788,
- 0.06664147228002548,
- 0.07102377712726593,
- -0.01398595329374075,
- -0.005433196201920509,
- 0.0094338683411479,
- 0.014411457814276218,
- 0.007752285338938236,
- -0.03198796138167381,
- 0.021726461127400398,
- -1.262841653471014e-8,
- 0.013747666031122208,
- 0.04252145439386368,
- -0.005066641140729189,
- 0.004643342923372984,
- 0.04453396052122116,
- -0.005154096521437168,
- -0.05582759156823158,
- -0.014692657627165318,
- 0.09227408468723297,
- 0.056647688150405884,
- 0.06900858134031296,
- -0.012688975781202316,
- 0.03049268200993538,
- 0.032161980867385864,
- 0.05388544127345085,
- -0.02048431895673275,
- -0.0913587436079979,
- 0.06843968480825424,
- -0.034767020493745804,
- -0.05670373514294624,
- -0.049138445407152176,
- -0.043185796588659286,
- -0.05276310443878174,
- 0.02003609761595726,
- 0.005146858748048544,
- -0.051104381680488586,
- -0.09468203783035278,
- 0.08323197066783905,
- -0.028938988223671913,
- -0.01188464742153883,
- -0.019188258796930313,
- 0.08418724685907364,
- -0.08691416680812836,
- 0.05050881952047348,
- 0.003361460054293275,
- -0.06685487926006317,
- -0.024926627054810524,
- -0.06858670711517334,
- 0.029851267114281654,
- -0.027805818244814873,
- -0.04039541259407997,
- 0.03430714085698128,
- -0.019846489652991295,
- -0.014466896653175354,
- -0.022529155015945435,
- -0.040480710566043854,
- 0.030836474150419235,
- -0.07941588014364243,
- -0.11612161248922348,
- -0.14962375164031982,
- -0.004197180736809969,
- 0.042094968259334564,
- -0.004626161884516478,
- 0.09463344514369965,
- 0.03161868080496788,
- 0.02643323317170143,
- -0.02998577430844307,
- 0.0361892506480217,
- -0.015058943070471287,
- 0.028645379468798637,
- 0.1430761218070984,
- 0.07124745100736618,
- 0.011116174049675465,
- -0.0025472166016697884
- ]
- },
- {
- "keyword": "squad",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.09200223535299301,
- -0.03381165862083435,
- -0.08347588032484055,
- -0.007128564640879631,
- 0.04183053597807884,
- 0.026928236708045006,
- 0.10202804207801819,
- 0.04439141973853111,
- 0.03341090306639671,
- -0.006088079884648323,
- 0.053217001259326935,
- -0.09737741202116013,
- 0.032034724950790405,
- -0.012298790737986565,
- 0.009030405431985855,
- -0.01145240943878889,
- -0.008368845097720623,
- -0.02789623662829399,
- -0.04667307063937187,
- -0.07179208844900131,
- -0.11109942942857742,
- -0.03156125918030739,
- -0.008680918253958225,
- 0.017459213733673096,
- -0.11236976832151413,
- -0.02120993472635746,
- -0.025614865124225616,
- 0.06422726809978485,
- -0.0901101753115654,
- -0.1116030141711235,
- -0.0015723691321909428,
- 0.037090592086315155,
- 0.09396844357252121,
- -0.005563770886510611,
- -0.025222234427928925,
- 0.02825258858501911,
- 0.048434559255838394,
- -0.015202193520963192,
- 0.021942440420389175,
- -0.00200478034093976,
- -0.04432014003396034,
- -0.07238896936178207,
- -0.0128982774913311,
- -0.026046590879559517,
- 0.03579746186733246,
- 0.056012749671936035,
- 0.06435108929872513,
- 0.03473369777202606,
- 0.06754524260759354,
- 0.01938822865486145,
- 0.01000988855957985,
- -0.01921815052628517,
- -0.09276663511991501,
- 0.03731193020939827,
- 0.03481340408325195,
- 0.04561825469136238,
- -0.026099378243088722,
- -0.014064494520425797,
- -0.020586427301168442,
- -0.027845993638038635,
- 0.013309313915669918,
- -0.021306108683347702,
- -0.068834088742733,
- -0.005074856802821159,
- 0.003955531865358353,
- 0.0024197986349463463,
- 0.004583231173455715,
- 0.018780551850795746,
- 0.05476182699203491,
- 0.008500208146870136,
- 0.036596573889255524,
- -0.0373634472489357,
- 0.06347434967756271,
- -0.02291601151227951,
- 0.03910384699702263,
- 0.06529296189546585,
- 0.07035036385059357,
- -0.0157023873180151,
- 0.0879998728632927,
- -0.10572069138288498,
- 0.004336444195359945,
- -0.045797377824783325,
- -0.0010052116122096777,
- 0.0523994043469429,
- 0.00957384705543518,
- -0.02766099013388157,
- -0.04271290451288223,
- 0.02621603012084961,
- -0.016438333317637444,
- 0.07076088339090347,
- -0.06952138990163803,
- 0.049291498959064484,
- 0.08021482080221176,
- 0.017467506229877472,
- -0.0690356120467186,
- 0.07169754058122635,
- 0.07316150516271591,
- -0.001985987415537238,
- -0.0717121884226799,
- 0.2026064097881317,
- 0.03917345777153969,
- 0.017335936427116394,
- 0.006603866815567017,
- -0.022518694400787354,
- -0.06623006612062454,
- -0.052884265780448914,
- -0.004113247152417898,
- 0.06047142297029495,
- 0.01849297434091568,
- -0.03869427368044853,
- -0.010696087032556534,
- 0.017945077270269394,
- -0.05853532254695892,
- -0.008236554451286793,
- 0.017226675525307655,
- -0.0740463137626648,
- 0.012971295975148678,
- 0.036408450454473495,
- -0.040024369955062866,
- 0.023738417774438858,
- 0.03628774732351303,
- -0.0019082877552136779,
- 0.012976370751857758,
- -0.01793817989528179,
- 0.019245164468884468,
- 0.04604315012693405,
- 0.024581490084528923,
- -4.610500065566175e-33,
- 0.05837218835949898,
- -0.018162352964282036,
- 0.015991156920790672,
- 0.0476611889898777,
- -0.024979369714856148,
- 0.04202617332339287,
- 0.012938717380166054,
- 0.012952117249369621,
- -0.09316105395555496,
- 0.05503823980689049,
- -0.0471685566008091,
- -0.03963186964392662,
- 0.054986439645290375,
- -0.03963338956236839,
- 0.08907384425401688,
- 0.013596711680293083,
- 0.003961385227739811,
- 0.018596826121211052,
- 0.007435614243149757,
- -0.011898970231413841,
- -0.09541365504264832,
- 0.07404180616140366,
- -0.01147008128464222,
- 0.0009427880868315697,
- 0.013415797613561153,
- -0.003970122896134853,
- -0.0703510269522667,
- -0.049929969012737274,
- 0.010303330607712269,
- 0.06535324454307556,
- 0.04706331714987755,
- 0.03696219250559807,
- -0.07179469615221024,
- 0.06982626765966415,
- -0.06185299903154373,
- -0.03781268373131752,
- -0.018559545278549194,
- -0.09598822146654129,
- -0.007822247222065926,
- -0.04398780316114426,
- 0.03073505125939846,
- 0.017272070050239563,
- -0.06468792259693146,
- 0.016012124717235565,
- -0.04369312524795532,
- -0.011988840997219086,
- 0.061074815690517426,
- 0.03482042998075485,
- 0.05561114475131035,
- 0.058486975729465485,
- -0.024280689656734467,
- -0.04354645311832428,
- -0.06257954984903336,
- -0.021980559453368187,
- -0.0033004514407366514,
- 0.027611641213297844,
- 0.011572971008718014,
- 0.04677159711718559,
- -0.020332714542746544,
- -0.044628411531448364,
- 0.08982327580451965,
- 0.10247378051280975,
- -0.00967189110815525,
- 0.02101719193160534,
- 0.058989088982343674,
- -0.05936523526906967,
- 0.038381267338991165,
- -0.06090759485960007,
- 0.05622754618525505,
- -0.09695851057767868,
- -0.024148110300302505,
- -0.04207143932580948,
- 0.06313285231590271,
- 0.048672690987586975,
- 0.024770395830273628,
- -0.012546219862997532,
- 0.01965530589222908,
- 0.08307880908250809,
- -0.06570456176996231,
- 0.021296227350831032,
- -0.029905375093221664,
- -0.029508298262953758,
- -0.06759005039930344,
- 0.0020891642197966576,
- 0.00794883631169796,
- 0.11433540284633636,
- -0.01812497153878212,
- -0.07134644687175751,
- -0.02733578160405159,
- -0.04224691167473793,
- -0.07773706316947937,
- -0.01870635338127613,
- 0.07693295925855637,
- 0.020247753709554672,
- -0.022647131234407425,
- 3.886623297490118e-33,
- 0.03821936994791031,
- 0.008287228643894196,
- -0.029480231925845146,
- -0.02491563931107521,
- 0.08753152936697006,
- -0.004945201799273491,
- 0.04686378315091133,
- -0.0016264680307358503,
- 0.0058248029090464115,
- 0.08633836358785629,
- 0.004531571641564369,
- -0.01706463284790516,
- 0.027042392641305923,
- -0.04619554802775383,
- 0.05598028004169464,
- 0.04274315387010574,
- 0.005438389256596565,
- -0.07288700342178345,
- -0.001212330418638885,
- -0.017527911812067032,
- -0.008764595724642277,
- -0.11900802701711655,
- 0.04992128163576126,
- -0.001684057293459773,
- -0.034656018018722534,
- 0.028855113312602043,
- 0.023148847743868828,
- 0.015135630033910275,
- 0.019756169989705086,
- 0.058513205498456955,
- 0.05312977358698845,
- -0.029675666242837906,
- -0.03804919123649597,
- -0.01942969486117363,
- -0.005017494782805443,
- 0.07519399374723434,
- -0.045055754482746124,
- 0.06528639048337936,
- -0.03494763746857643,
- 0.028751730918884277,
- 0.034328605979681015,
- 0.017231926321983337,
- -0.04179342836141586,
- 0.0896226316690445,
- -0.012965267524123192,
- -0.0360560305416584,
- 0.03533567860722542,
- 0.024938758462667465,
- -0.02759615145623684,
- 0.08786234259605408,
- -0.007389883045107126,
- 0.027679944410920143,
- -0.07458028942346573,
- 0.03683837130665779,
- -0.03649888187646866,
- 0.0018678756896406412,
- -0.04458974674344063,
- 0.0066446526907384396,
- 0.004316140431910753,
- -0.014591949060559273,
- -0.020006831735372543,
- 0.02971760742366314,
- -0.071536585688591,
- 0.0831306204199791,
- -0.04336749017238617,
- 0.0130571024492383,
- -0.054751235991716385,
- 0.04403132200241089,
- 0.0329475924372673,
- -0.022037066519260406,
- -0.011295102536678314,
- -0.07472793012857437,
- 0.06570970267057419,
- 0.08510731905698776,
- -0.08510570228099823,
- -0.10950757563114166,
- -0.10999064892530441,
- -0.024191180244088173,
- 0.034631773829460144,
- 0.05560991168022156,
- -0.015392448753118515,
- -0.03150515258312225,
- 0.0005357623449526727,
- 0.12110263854265213,
- -0.10577858984470367,
- -0.011689452454447746,
- 0.1025349423289299,
- 0.15681791305541992,
- 0.007832303643226624,
- -0.015231913886964321,
- 0.05056489631533623,
- -0.011554227210581303,
- 0.08940865844488144,
- -0.0021550217643380165,
- -0.02176567353308201,
- -1.0940532924053059e-8,
- 0.0757804661989212,
- 0.08198843896389008,
- 0.007447425741702318,
- 0.030501317232847214,
- 0.05242680013179779,
- -0.05898581072688103,
- -0.11869831383228302,
- 0.015633126720786095,
- 0.05420220270752907,
- 0.07660271972417831,
- 0.06289463490247726,
- -0.01280253753066063,
- 0.05106435343623161,
- 0.003437124192714691,
- -0.04613788425922394,
- 0.055965568870306015,
- -0.07765046507120132,
- -0.0180649533867836,
- -0.03255339711904526,
- -0.037208981812000275,
- -0.06456497311592102,
- -0.055532511323690414,
- -0.01168071012943983,
- 0.022602057084441185,
- 0.037028685212135315,
- 0.004413070157170296,
- -0.057300008833408356,
- -0.01514968927949667,
- -0.03803902119398117,
- 0.04921082407236099,
- -0.03973113372921944,
- 0.047487299889326096,
- -0.025327198207378387,
- -0.00458323210477829,
- 0.04878805950284004,
- -0.021006355062127113,
- -0.0178175438195467,
- -0.0664474219083786,
- 0.019997160881757736,
- 0.022218884900212288,
- 0.023487741127610207,
- -0.08356617391109467,
- 0.026623673737049103,
- 0.006276228930801153,
- 0.06684038043022156,
- -0.007265524938702583,
- 0.03174950182437897,
- -0.07668962329626083,
- -0.07770206034183502,
- -0.11644625663757324,
- -0.02129114419221878,
- 0.04203324392437935,
- -0.026596367359161377,
- 0.1145317479968071,
- 0.01982838660478592,
- 0.039656199514865875,
- -0.041314948350191116,
- 0.027277391403913498,
- -0.014473951421678066,
- 0.09030389785766602,
- 0.0389259047806263,
- 0.07775798439979553,
- -0.02659863606095314,
- -0.09392168372869492
- ]
- },
- {
- "keyword": "crew",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.06577761471271515,
- -0.0048390584997832775,
- -0.017314666882157326,
- 0.06395850330591202,
- -0.021804913878440857,
- -0.025286348536610603,
- 0.08002138137817383,
- 0.002814901527017355,
- 0.04746229946613312,
- 0.03451019152998924,
- -0.022023579105734825,
- -0.051036279648542404,
- 0.03654532507061958,
- -0.0006223138771019876,
- -0.0891823098063469,
- -0.02127181738615036,
- 0.018081624060869217,
- -0.02564682811498642,
- -0.004967814311385155,
- -0.022361116483807564,
- -0.1077820435166359,
- -0.004039467312395573,
- -0.06306535005569458,
- 0.02564362622797489,
- -0.041016120463609695,
- 0.041735872626304626,
- -0.05273902416229248,
- 0.018070446327328682,
- -0.06483297049999237,
- -0.06507693976163864,
- -0.06622561067342758,
- 0.06369771808385849,
- 0.1113615557551384,
- 0.032079145312309265,
- 0.03547189012169838,
- 0.0630132257938385,
- 0.044457968324422836,
- -0.0024646183010190725,
- 0.0540313757956028,
- 0.005911372136324644,
- -0.014870904386043549,
- -0.07243450731039047,
- -0.01686921715736389,
- 0.03917085751891136,
- 0.03440765663981438,
- 0.011493617668747902,
- 0.03886404260993004,
- -0.02147541008889675,
- 0.04812188446521759,
- 0.10476916283369064,
- -0.004179134964942932,
- -0.039402540773153305,
- 0.02095859870314598,
- 0.005948969163000584,
- 0.012314653024077415,
- -0.03214684873819351,
- -0.024368826299905777,
- -0.0779954269528389,
- 0.019427644088864326,
- -0.0591069832444191,
- 0.00872750487178564,
- -0.022392326965928078,
- -0.05610964447259903,
- 0.07676965743303299,
- 0.044643327593803406,
- 0.004886412061750889,
- -0.02930418774485588,
- 0.04571327194571495,
- 0.01611410453915596,
- -0.05512288585305214,
- 0.011716754175722599,
- 0.0031322441063821316,
- -0.03271127864718437,
- 0.016464442014694214,
- 0.04417676106095314,
- 0.04325258731842041,
- 0.10208979994058609,
- -0.012363736517727375,
- 0.08287717401981354,
- -0.08420266211032867,
- -0.018640989437699318,
- -0.10007959604263306,
- -0.02373303845524788,
- 0.011259902268648148,
- -0.014699365012347698,
- -0.014154818840324879,
- 0.010649020783603191,
- 0.07682494074106216,
- -0.06455017626285553,
- 0.021160170435905457,
- -0.07356015592813492,
- 0.0116133913397789,
- 0.08220063149929047,
- -0.008391084149479866,
- -0.09051777422428131,
- 0.06145894154906273,
- -0.04514732584357262,
- 0.026023557409644127,
- -0.017736567184329033,
- 0.20199786126613617,
- 0.041674304753541946,
- 0.05527319014072418,
- 0.0002684785285964608,
- -0.029621819034218788,
- -0.06652405112981796,
- -0.02873942255973816,
- 0.009532942436635494,
- 0.016680574044585228,
- 0.05978233367204666,
- -0.05505600944161415,
- 0.025950558483600616,
- 0.057532522827386856,
- -0.0731392651796341,
- 0.02969127520918846,
- -0.03958750143647194,
- -0.014836732298135757,
- -0.01789107732474804,
- 0.04950015991926193,
- -0.00363451917655766,
- -0.0390208438038826,
- 0.029332511126995087,
- -0.012430045753717422,
- 0.026460200548171997,
- -0.03485103324055672,
- -0.005116179585456848,
- 0.0026382950600236654,
- 0.10707589238882065,
- -6.255602572832043e-33,
- -0.020352011546492577,
- -0.03613463416695595,
- 0.04231475293636322,
- 0.007635191548615694,
- 0.0647890567779541,
- 0.04885376617312431,
- -0.0463450625538826,
- -0.015352229587733746,
- -0.04281723499298096,
- 0.0011246874928474426,
- -0.06863384693861008,
- -0.011377330869436264,
- 0.033334553241729736,
- -0.014882191084325314,
- 0.049706969410181046,
- -0.044591668993234634,
- -0.022641178220510483,
- -0.06405012309551239,
- -0.06248088553547859,
- -0.009936577640473843,
- -0.035335723310709,
- 0.08583512157201767,
- 0.022971995174884796,
- 0.044467177242040634,
- 0.006449124775826931,
- -0.03684060275554657,
- -0.045160386711359024,
- -0.044804006814956665,
- 0.019812148064374924,
- 0.041278015822172165,
- -0.009563462808728218,
- 0.036575451493263245,
- 0.0141499238088727,
- 0.05380167439579964,
- -0.04915035516023636,
- 0.016082465648651123,
- 0.01862271875143051,
- -0.056910235434770584,
- -0.02958289533853531,
- -0.008394928649067879,
- -0.055705539882183075,
- 0.008672970347106457,
- 0.021528614684939384,
- 0.012209388427436352,
- -0.06337954103946686,
- 0.013912102207541466,
- 0.051865559071302414,
- -0.008445946499705315,
- 0.03370420262217522,
- 0.09653184562921524,
- -0.0014347354881465435,
- 0.00766811752691865,
- -0.04188176989555359,
- -0.005690711084753275,
- 0.07494045048952103,
- -0.010892264544963837,
- 0.08308296650648117,
- 0.04795713350176811,
- -0.009646864607930183,
- -0.017080066725611687,
- 0.011276453733444214,
- 0.10697914659976959,
- 0.03500353544950485,
- 0.05221046879887581,
- 0.1045113280415535,
- 0.010307423770427704,
- 0.11089048534631729,
- -0.01775895431637764,
- 0.03429478779435158,
- -0.009552128612995148,
- -0.07850368320941925,
- -0.05473387986421585,
- 0.016561433672904968,
- 0.029852095991373062,
- -0.001620698836632073,
- -0.005742943380028009,
- 0.010671840980648994,
- 0.006769935134798288,
- -0.02879016287624836,
- -0.0038508432917296886,
- -0.0005008815787732601,
- -0.021300550550222397,
- -0.014832798391580582,
- 0.018086038529872894,
- -0.002056826138868928,
- 0.01677902229130268,
- -0.020429102703928947,
- 0.01195724681019783,
- -0.0015642265789210796,
- -0.004142570775002241,
- -0.08479972928762436,
- -0.03168708086013794,
- 0.12362335622310638,
- 0.06547749787569046,
- -0.03108392097055912,
- 4.582601911201316e-33,
- -0.0061416239477694035,
- 0.03657141700387001,
- -0.003039776114746928,
- 0.00762754725292325,
- 0.07645294815301895,
- -0.01251101866364479,
- 0.041339900344610214,
- -0.05042501911520958,
- -0.04085221514105797,
- 0.09180835634469986,
- -0.0167993176728487,
- -0.01962929777801037,
- -0.0013434741413220763,
- 0.023648908361792564,
- 0.034705910831689835,
- 0.05036327987909317,
- 0.015890661627054214,
- -0.01329976599663496,
- -0.023242276161909103,
- -0.015214909799396992,
- 0.04375061020255089,
- -0.03243068978190422,
- -0.04109170660376549,
- 0.06139949709177017,
- 0.02854386530816555,
- 0.0521823987364769,
- 0.10335595160722733,
- 0.005352720618247986,
- -0.056956224143505096,
- -0.0233813114464283,
- -0.05148680880665779,
- 0.025563707575201988,
- -0.02183677814900875,
- -0.03685960918664932,
- 0.025686627253890038,
- 0.1444215625524521,
- -0.012890184298157692,
- 0.1694480925798416,
- -0.08551911264657974,
- 0.0030498644337058067,
- 0.09626232832670212,
- 0.01082739420235157,
- -0.07722525298595428,
- 0.0772479772567749,
- -0.07116194069385529,
- -0.038170430809259415,
- -0.04849197342991829,
- -0.03292453661561012,
- -0.1289815753698349,
- 0.06001650542020798,
- -0.0989624410867691,
- -0.02662535011768341,
- -0.014734198339283466,
- -0.03864609822630882,
- -0.019048908725380898,
- -0.030122093856334686,
- -0.02829502895474434,
- 0.003291475586593151,
- 0.05327305197715759,
- 0.000389593857107684,
- 0.015049626119434834,
- 0.0293691698461771,
- -0.011126361787319183,
- 0.06041435897350311,
- -0.02094838209450245,
- -0.025688938796520233,
- -0.002645896514877677,
- 0.031024308875203133,
- -0.12747284770011902,
- 0.048634517937898636,
- 0.0729735791683197,
- -0.05538112670183182,
- -0.06805235892534256,
- 0.10769418627023697,
- -0.04973353445529938,
- -0.05449829250574112,
- -0.14086933434009552,
- -0.017820104956626892,
- 0.012007026933133602,
- 0.06691273301839828,
- -0.0206269770860672,
- -0.05870319530367851,
- 0.03250226750969887,
- 0.17959748208522797,
- -0.01632118783891201,
- -0.000279075960861519,
- 0.0787481740117073,
- 0.08486545085906982,
- -0.02123650535941124,
- 0.005297710653394461,
- 0.03567418456077576,
- -0.04764556512236595,
- 0.03106505796313286,
- -0.053454428911209106,
- -0.07175816595554352,
- -1.1610922889815356e-8,
- -0.02972852997481823,
- -0.007135820109397173,
- -0.0034835173282772303,
- 0.000524427741765976,
- 0.014605452306568623,
- -0.08812887966632843,
- -0.05419578403234482,
- 0.05482612922787666,
- 0.0145378727465868,
- 0.06940623372793198,
- 0.06313718110322952,
- -0.023433422669768333,
- 0.0695895329117775,
- 0.03941403701901436,
- 0.07081174850463867,
- 0.05478944629430771,
- -0.11132639646530151,
- 0.02657688967883587,
- -0.07122232019901276,
- -0.09804333746433258,
- -0.026605362072587013,
- -0.02852047234773636,
- 0.0320991650223732,
- 0.07034947723150253,
- -0.03536082059144974,
- 0.015581149607896805,
- -0.06365738064050674,
- 0.029776418581604958,
- 0.04034963995218277,
- -0.0017425062833353877,
- -0.04698682576417923,
- 0.04904501885175705,
- -0.08356589823961258,
- -0.01987575739622116,
- 0.004510603845119476,
- -0.032822947949171066,
- -0.008264798671007156,
- -0.06821151822805405,
- 0.009024704806506634,
- 0.004226659424602985,
- -0.09209144115447998,
- 0.07466820627450943,
- 0.01362966001033783,
- -0.021026775240898132,
- 0.05176301673054695,
- -0.016389790922403336,
- -0.02541966736316681,
- 0.02753744274377823,
- -0.05789985880255699,
- -0.11892591416835785,
- 0.0022416000720113516,
- -0.04308551549911499,
- 0.029966052621603012,
- 0.10769204050302505,
- -0.02963949367403984,
- -0.003833694849163294,
- -0.042585309594869614,
- 0.05202057957649231,
- 0.022714529186487198,
- 0.03897227719426155,
- -0.00892428308725357,
- 0.01883506402373314,
- 0.024822328239679337,
- -0.06273525953292847
- ]
- },
- {
- "keyword": "group",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.03330979496240616,
- -0.007593643385916948,
- -0.012247525155544281,
- 0.05946815386414528,
- -0.01688060723245144,
- 0.007011884823441505,
- 0.11604493856430054,
- -0.05595420300960541,
- 0.06112019345164299,
- -0.04303716868162155,
- 0.048792269080877304,
- -0.06679358333349228,
- 0.005882225930690765,
- -0.029719319194555283,
- -0.03582775965332985,
- -0.030666660517454147,
- -0.05753329396247864,
- 0.03189745545387268,
- -0.09360557794570923,
- -0.09762454032897949,
- -0.059578217566013336,
- -0.03522847965359688,
- 0.0034980899654328823,
- 0.023156695067882538,
- -0.016225866973400116,
- 0.02511662244796753,
- -0.029779672622680664,
- -0.0182080939412117,
- 0.04162042587995529,
- -0.10636109113693237,
- -0.04713413864374161,
- 0.0670238807797432,
- 0.10143323987722397,
- 0.01816229708492756,
- -0.04451056942343712,
- 0.09833992272615433,
- 0.015908265486359596,
- -0.013558312319219112,
- -0.007491705939173698,
- 0.037790555506944656,
- -0.05112747102975845,
- -0.022956397384405136,
- 0.017259450629353523,
- -0.0035007912665605545,
- -0.0009616522002033889,
- 0.04814634472131729,
- 0.024818265810608864,
- 0.012308115139603615,
- -0.007453551981598139,
- 0.07006973773241043,
- 0.07022684812545776,
- -0.0011965252924710512,
- -0.04797450453042984,
- 0.06267378479242325,
- 0.027019139379262924,
- -0.00120361871086061,
- -0.02632363699376583,
- -0.03769991174340248,
- -0.03149039298295975,
- -0.07286857813596725,
- 0.07164397090673447,
- -0.03872634470462799,
- -0.03438534587621689,
- 0.03973664715886116,
- -0.00869392603635788,
- -0.002864814829081297,
- 0.10331444442272186,
- 0.05862148106098175,
- -0.017483673989772797,
- -0.026701655238866806,
- 0.04098569229245186,
- -0.019910573959350586,
- 0.06376069039106369,
- 0.05745167285203934,
- 0.04390702769160271,
- 0.020556176081299782,
- 0.03878921642899513,
- -0.08572719246149063,
- 0.07231750339269638,
- -0.03572634980082512,
- 0.044185295701026917,
- 0.013281123712658882,
- -0.039147939532995224,
- 0.039132483303546906,
- 0.03941497579216957,
- -0.017813002690672874,
- -0.016018344089388847,
- 0.045477014034986496,
- -0.09149166196584702,
- 0.014336660504341125,
- -0.09144989401102066,
- 0.12772458791732788,
- 0.08314356207847595,
- -0.02219597063958645,
- -0.06963612139225006,
- 0.022690072655677795,
- 0.0918157771229744,
- -0.05494268611073494,
- 0.0018409809563308954,
- 0.28267350792884827,
- 0.024655891582369804,
- 0.07377815991640091,
- -0.04311474412679672,
- -0.04165641590952873,
- -0.06319312006235123,
- -0.05399591475725174,
- -0.0534173920750618,
- 0.0035860533826053143,
- -0.0033538879361003637,
- -0.00032030214788392186,
- -0.0381675623357296,
- -0.00044928168063052,
- -0.025002174079418182,
- -0.011668695136904716,
- -0.0666036382317543,
- -0.06886012852191925,
- 0.030554302036762238,
- 0.023360412567853928,
- 0.041206616908311844,
- -0.02189081348478794,
- 0.05456050857901573,
- 0.04123721271753311,
- 0.06573127210140228,
- 0.021356886252760887,
- 0.060207024216651917,
- 0.048441432416439056,
- -0.022735148668289185,
- -5.470385570794202e-33,
- -0.027125773951411247,
- -0.06040075048804283,
- 0.022338567301630974,
- 0.030737370252609253,
- -0.002322278916835785,
- -0.04052839055657387,
- -0.04469554126262665,
- 0.0432988665997982,
- -0.10492837429046631,
- -0.007861489430069923,
- -0.058303918689489365,
- -0.02414863370358944,
- 0.011846764013171196,
- -0.008192593231797218,
- 0.10717795789241791,
- -0.004376801662147045,
- 0.00692990655079484,
- -0.0016402811743319035,
- -0.03347041830420494,
- -0.01750360243022442,
- -0.11012528836727142,
- 0.11744528263807297,
- -0.00036548322532325983,
- 0.05941193178296089,
- -0.07119760662317276,
- 0.011729052290320396,
- -0.05632367730140686,
- -0.05704860761761665,
- -0.00849003903567791,
- 0.029410691931843758,
- 0.0471087209880352,
- 0.008271568454802036,
- -0.0518159344792366,
- 0.025034403428435326,
- -0.019449952989816666,
- 0.03952977806329727,
- 0.0512474961578846,
- -0.05787281319499016,
- 0.061671990901231766,
- 0.01811518333852291,
- 0.015669044107198715,
- 0.004930339753627777,
- 0.003595565678551793,
- -0.051739566028118134,
- 0.04719340428709984,
- 0.07034076750278473,
- 0.013399830088019371,
- 0.008954443968832493,
- -0.016185928136110306,
- 0.03458833694458008,
- -0.059870220720767975,
- -0.0723297968506813,
- -0.0658750832080841,
- -0.03895949572324753,
- -0.0046008252538740635,
- -0.054881501942873,
- 0.011027710512280464,
- 0.0447564572095871,
- 0.02272462472319603,
- 0.010983346030116081,
- 0.03319385275244713,
- 0.11855318397283554,
- -0.03606128692626953,
- 0.029424777254462242,
- -0.018031548708677292,
- -0.03806495666503906,
- 0.0629459097981453,
- 0.0069365170784294605,
- 0.04703235626220703,
- -0.02851567231118679,
- -0.011152641847729683,
- 0.01223495788872242,
- 0.05668480694293976,
- 0.11496374756097794,
- -0.020049896091222763,
- 0.0180708896368742,
- 0.05573093518614769,
- 0.065219447016716,
- -0.08719255775213242,
- -0.006191214546561241,
- -0.037435535341501236,
- -0.04597540199756622,
- -0.04123428091406822,
- -0.021732404828071594,
- -0.030377816408872604,
- 0.053746260702610016,
- -0.0037544439546763897,
- -0.08032230287790298,
- -0.026965105906128883,
- -0.016258681192994118,
- -0.13412727415561676,
- 0.023802166804671288,
- 0.1183042973279953,
- 0.07791589945554733,
- -0.07786811888217926,
- 3.804865093996535e-33,
- 0.013278081081807613,
- 0.06027355417609215,
- 0.017121924087405205,
- 0.02404017001390457,
- 0.09116042405366898,
- -0.03619014844298363,
- 0.037696391344070435,
- -0.06289441138505936,
- 0.008662317879498005,
- 0.11909645050764084,
- -0.011021899990737438,
- -0.004944225307554007,
- 0.08655402064323425,
- 0.004957833327353001,
- 0.03471756353974342,
- 0.009285710752010345,
- 0.047037672251462936,
- -0.02336558699607849,
- 0.01670149527490139,
- 0.010497530922293663,
- -0.023904014378786087,
- -0.05474156513810158,
- 0.00531736621633172,
- 0.08008670061826706,
- -0.008812354877591133,
- 0.015517590567469597,
- 0.06375569850206375,
- -0.015234685502946377,
- 0.024735797196626663,
- 0.06399457901716232,
- 0.09519058465957642,
- -0.06168926879763603,
- -0.06818342208862305,
- -0.010069603100419044,
- -0.028525862842798233,
- 0.047305312007665634,
- -0.007988877594470978,
- 0.06583715230226517,
- -0.07793490588665009,
- 0.034733280539512634,
- 0.03475964814424515,
- 0.03818585351109505,
- -0.030380217358469963,
- 0.08512003719806671,
- -0.015137809328734875,
- 0.02130686119198799,
- 0.08673015981912613,
- -0.013284166343510151,
- -0.10104893893003464,
- 0.09607722610235214,
- -0.09285180270671844,
- 0.0059929098933935165,
- -0.00945273507386446,
- -0.046133317053318024,
- 0.010116315446794033,
- 0.04289599508047104,
- 0.02042275480926037,
- -0.0771959125995636,
- -0.06920107454061508,
- 0.03572046756744385,
- -0.007364777382463217,
- -0.0006338909734040499,
- -0.04002971202135086,
- 0.03142667934298515,
- -0.007261117920279503,
- -0.03609924763441086,
- -0.04072783887386322,
- -0.02096700109541416,
- -0.05736818537116051,
- 0.023210572078824043,
- 0.017421172931790352,
- -0.03851613029837608,
- -0.03298785537481308,
- -0.002674488816410303,
- -0.023791661486029625,
- -0.019737033173441887,
- -0.09566859155893326,
- 0.01816963404417038,
- -0.037805940955877304,
- -0.011682756245136261,
- -0.024299487471580505,
- -0.027917247265577316,
- -0.025751421228051186,
- 0.0994393527507782,
- -0.0994868129491806,
- -0.02339228056371212,
- 0.08526008576154709,
- 0.10147202759981155,
- -0.027396438643336296,
- 0.035407837480306625,
- 0.009466231800615788,
- 0.00925226230174303,
- 0.06836743652820587,
- -0.009980165399610996,
- -0.04584896191954613,
- -1.2841436358712599e-8,
- -0.024862751364707947,
- 0.018403559923171997,
- 0.041735339909791946,
- -0.01663883402943611,
- 0.09085174649953842,
- -0.02230653166770935,
- -0.06853444874286652,
- 0.012590059079229832,
- 0.04038815572857857,
- 0.07689779251813889,
- 0.01345290057361126,
- -0.0026059942319989204,
- -0.008009068667888641,
- -0.01879352144896984,
- 0.0559556670486927,
- 0.014535599388182163,
- -0.09737162292003632,
- 0.0072010587900877,
- -0.03218812867999077,
- -0.03507239744067192,
- 0.013516657054424286,
- -0.08536465466022491,
- -0.017169466242194176,
- -0.06062571331858635,
- -0.010764074511826038,
- 0.008743376471102238,
- -0.0663435086607933,
- -0.011172323487699032,
- -0.04429561644792557,
- -0.06043096259236336,
- -0.023290596902370453,
- 0.05829446390271187,
- -0.05627509206533432,
- 0.04841587319970131,
- -0.035154636949300766,
- -0.016792379319667816,
- -0.08909884840250015,
- 0.053737469017505646,
- 0.047721266746520996,
- 0.0024634820874780416,
- 0.0037476092111319304,
- 0.0034826179035007954,
- 0.07098744809627533,
- 0.03002155013382435,
- -0.05363062024116516,
- -0.011781497858464718,
- 0.04393390938639641,
- -0.06621376425027847,
- -0.033616889268159866,
- -0.0641237124800682,
- 0.01037047803401947,
- -0.050698067992925644,
- -0.0052535878494381905,
- 0.05021008104085922,
- -0.00997663289308548,
- 0.028872666880488396,
- -0.011604116298258305,
- 0.040793806314468384,
- 0.0330430306494236,
- -0.028050469234585762,
- 0.055867571383714676,
- 0.007106362376362085,
- -0.025632785633206367,
- -0.026399197056889534
- ]
- },
- {
- "keyword": "committee",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.041280996054410934,
- -0.05448071286082268,
- -0.08312258124351501,
- 0.036122582852840424,
- 0.016301438212394714,
- 0.008203116245567799,
- 0.06306597590446472,
- -0.015185958705842495,
- 0.0525076724588871,
- 0.02389541082084179,
- 0.001121471170336008,
- -0.03699366748332977,
- -0.05903327837586403,
- -0.04484018683433533,
- -0.10284654051065445,
- 0.00955180823802948,
- 0.014401586726307869,
- -0.0186708252876997,
- -0.029093336313962936,
- -0.0033403197303414345,
- -0.06891151517629623,
- 0.027147235348820686,
- -0.015161482617259026,
- 0.05974951013922691,
- -0.02910948544740677,
- 0.01847434975206852,
- -0.07548294216394424,
- 0.024865956977009773,
- -0.014262537471950054,
- -0.11490282416343689,
- -0.01298933569341898,
- 0.04911520704627037,
- 0.10403871536254883,
- 0.028205834329128265,
- 0.008713043294847012,
- -0.0037075700238347054,
- 0.030666831880807877,
- -0.007530761417001486,
- 0.06027663126587868,
- -0.01536848396062851,
- -0.060126855969429016,
- -0.04826042056083679,
- -0.05463737994432449,
- 0.029990745708346367,
- -0.011837040074169636,
- 0.08166557550430298,
- 0.07209017872810364,
- 0.028652578592300415,
- -0.008734645321965218,
- 0.08809052407741547,
- 0.06314645707607269,
- -0.041509151458740234,
- -0.02061888389289379,
- -0.0317990742623806,
- 0.028702490031719208,
- -0.026627041399478912,
- -0.02374160662293434,
- -0.05691621080040932,
- -0.011482068337500095,
- -0.01560149248689413,
- 0.02314523607492447,
- -0.036548443138599396,
- -0.06668152660131454,
- 0.08890778571367264,
- 0.07506144791841507,
- -0.021038612350821495,
- -0.015747584402561188,
- 0.019650453701615334,
- 0.0614783950150013,
- -0.07747599482536316,
- 0.04485861212015152,
- -0.003370883408933878,
- 0.007565248757600784,
- -0.0021392295602709055,
- 0.020280323922634125,
- 0.02251684106886387,
- 0.07462149113416672,
- 0.00997663103044033,
- 0.10883528739213943,
- -0.09458471834659576,
- 0.038565583527088165,
- 0.0722181424498558,
- 0.038245558738708496,
- 0.026698404923081398,
- 0.0632108822464943,
- -0.01129254698753357,
- 0.02041459269821644,
- 0.03964192792773247,
- -0.037586770951747894,
- 0.010363939218223095,
- -0.04683716595172882,
- 0.02164815552532673,
- 0.08036955446004868,
- -0.045191045850515366,
- -0.1271401345729828,
- 0.0789349228143692,
- -0.027226949110627174,
- -0.009149079211056232,
- 0.013595115393400192,
- 0.25981205701828003,
- -0.03477347269654274,
- 0.07802025228738785,
- -0.05027515068650246,
- -0.047364771366119385,
- -0.07788220793008804,
- -0.07737869769334793,
- 0.0052940077148377895,
- 0.004515855573117733,
- 0.04830988869071007,
- 0.011652185581624508,
- -0.02308311127126217,
- 0.041347283869981766,
- 0.012216227129101753,
- 0.022987525910139084,
- -0.01765846088528633,
- -0.05417253449559212,
- 0.02130364440381527,
- 0.04433603212237358,
- -0.02160423994064331,
- 0.03840393200516701,
- 0.0004168403975199908,
- 0.005825036205351353,
- -0.05064836144447327,
- -0.0196791123598814,
- -0.005031434353441,
- -0.027910910546779633,
- -0.026929602026939392,
- -6.555943583519045e-33,
- -0.0170117300003767,
- -0.058578550815582275,
- 0.03593597188591957,
- -0.029749978333711624,
- 0.02340538240969181,
- 0.011650602333247662,
- 0.051435042172670364,
- -0.05802656337618828,
- -0.08859613537788391,
- 0.012385648675262928,
- 0.003776069963350892,
- -0.07947526127099991,
- 0.039415646344423294,
- -0.06757929176092148,
- 0.052572574466466904,
- -0.008765120059251785,
- -0.0749833732843399,
- -0.017016611993312836,
- -0.040104255080223083,
- 0.010890019126236439,
- -0.05109419301152229,
- 0.12935422360897064,
- 0.029081223532557487,
- 0.01092986948788166,
- 0.051548268646001816,
- -0.01610018126666546,
- -0.07905754446983337,
- -0.017107805237174034,
- -0.009634779766201973,
- 0.04461648687720299,
- 0.023084627464413643,
- 0.018088361248373985,
- -0.017067547887563705,
- 0.015708688646554947,
- 0.0031896631699055433,
- -0.009927581995725632,
- -0.00461664330214262,
- -0.07703068852424622,
- 0.04801753908395767,
- -0.009320518933236599,
- -0.007606117520481348,
- -0.024715812876820564,
- 0.03641471639275551,
- 0.03476037085056305,
- -0.0356578603386879,
- 0.0024998742155730724,
- 0.05453060567378998,
- 0.059462808072566986,
- 0.07298184931278229,
- 0.028574418276548386,
- -0.034690048545598984,
- -0.04450414702296257,
- 0.061398375779390335,
- -0.10674185305833817,
- 0.03879879042506218,
- -0.03106442652642727,
- 0.005219947546720505,
- 0.02410147525370121,
- -0.03144233301281929,
- 0.022403856739401817,
- 0.04203850030899048,
- 0.15648624300956726,
- -0.07540833950042725,
- 0.07658468186855316,
- -0.04522605612874031,
- -0.07858756184577942,
- -0.051163747906684875,
- -0.06117019057273865,
- 0.12143593281507492,
- -0.055598847568035126,
- -0.04062280431389809,
- -0.028648609295487404,
- 0.02353927679359913,
- 0.03655135631561279,
- -0.04712866246700287,
- -0.020340630784630775,
- 0.006128585431724787,
- 0.006382784806191921,
- -0.06098664924502373,
- -0.04435397684574127,
- -0.03177701681852341,
- -0.046253692358732224,
- -0.061799123883247375,
- 0.01548998337239027,
- 0.06543643027544022,
- 0.046634774655103683,
- 0.01794211007654667,
- 0.012100118212401867,
- -0.0035215714015066624,
- -0.020095394924283028,
- -0.12202449142932892,
- -0.02862050198018551,
- 0.11950986832380295,
- -0.01360011100769043,
- -0.00579637847840786,
- 4.429240306037317e-33,
- -0.0057434882037341595,
- -0.023129452019929886,
- 0.025343073531985283,
- 0.0027130725793540478,
- 0.028000973165035248,
- -0.0026980035472661257,
- -0.06254235655069351,
- -0.12768292427062988,
- 0.005565828178077936,
- 0.07644285261631012,
- -0.008738231845200062,
- 0.009571087546646595,
- -0.017311077564954758,
- -0.02308485470712185,
- 0.01401464268565178,
- -0.02266518771648407,
- 0.004949059337377548,
- -0.05171692743897438,
- -0.020093265920877457,
- -0.051219336688518524,
- 0.015867609530687332,
- 0.027574880048632622,
- 0.06349815428256989,
- 0.019758315756917,
- -0.030680837109684944,
- -0.0031405966728925705,
- 0.11504601687192917,
- 0.017651554197072983,
- 0.008630592375993729,
- -0.009388783946633339,
- -0.06951502710580826,
- -0.07572884112596512,
- -0.06571482121944427,
- 0.012477160431444645,
- 0.019431360065937042,
- 0.030603701248764992,
- 0.0571245513856411,
- 0.00698170717805624,
- -0.0687858834862709,
- 0.027270637452602386,
- 0.07199792563915253,
- 0.011164993979036808,
- -0.046870213001966476,
- 0.11432119458913803,
- -0.035526297986507416,
- 0.0006690215668641031,
- -0.02911224216222763,
- 0.09414739906787872,
- -0.02552267536520958,
- -0.006188140716403723,
- -0.1362341195344925,
- -0.020715929567813873,
- 0.0027220037300139666,
- 0.04547889530658722,
- 0.0686538964509964,
- 0.053627751767635345,
- -0.025589240714907646,
- -0.03693828359246254,
- 0.07597346603870392,
- 0.02940826490521431,
- -0.018226031213998795,
- 0.05154060199856758,
- -0.007557079195976257,
- 0.050287727266550064,
- 0.07383475452661514,
- 0.020738646388053894,
- -0.08813629299402237,
- 0.07384155690670013,
- 0.02112090401351452,
- 0.06620774418115616,
- 0.03477888181805611,
- -0.01576688513159752,
- -0.036335255950689316,
- 0.06420502811670303,
- -0.060934070497751236,
- 0.006223046686500311,
- -0.05517437681555748,
- -0.005111767444759607,
- -0.027444442734122276,
- 0.028170833364129066,
- -0.04074497148394585,
- -0.046158865094184875,
- 0.026134908199310303,
- 0.07242146134376526,
- 0.05097593739628792,
- 0.024062249809503555,
- 0.10317254066467285,
- 0.015689007937908173,
- 0.01368316076695919,
- 0.017450837418437004,
- 0.06258870661258698,
- -0.06461180746555328,
- 0.15556691586971283,
- -0.008356116712093353,
- 0.015116923488676548,
- -1.1696912771697043e-8,
- 0.0057545616291463375,
- 0.005501770414412022,
- 0.011483029462397099,
- -0.018290044739842415,
- 0.07980592548847198,
- -0.11933976411819458,
- -0.04440232738852501,
- -0.029270444065332413,
- -0.0182045828551054,
- 0.10322649031877518,
- 0.04651767387986183,
- 0.028649810701608658,
- 0.022124353796243668,
- -0.02847716398537159,
- 0.06485377997159958,
- -0.008528812788426876,
- -0.034338243305683136,
- 0.07946372777223587,
- -0.06700677424669266,
- -0.022937795147299767,
- -0.05185014382004738,
- -0.05282572656869888,
- -0.010900567285716534,
- 0.04463372752070427,
- 0.026811061426997185,
- 0.021020395681262016,
- -0.007698030211031437,
- 0.03068496100604534,
- -0.03602365031838417,
- 0.02161221019923687,
- -0.004850460682064295,
- 0.04002314805984497,
- -0.038306113332509995,
- -0.03608964756131172,
- 0.03517535701394081,
- -0.021455641835927963,
- -0.08277703821659088,
- -0.045126475393772125,
- 0.04061387851834297,
- -0.0398346371948719,
- -0.052330661565065384,
- 0.011555135250091553,
- 0.04728257283568382,
- 0.03084784373641014,
- 0.04518518224358559,
- 0.000416942493757233,
- 0.00299664493650198,
- 0.016558149829506874,
- 0.01702900603413582,
- -0.13380511105060577,
- -0.02837732620537281,
- 0.009814146906137466,
- 0.014762024395167828,
- 0.047971341758966446,
- 0.0021788552403450012,
- 0.019987067207694054,
- -0.018554678186774254,
- -0.009088103659451008,
- -0.03741486743092537,
- 0.02324589714407921,
- 0.04239172115921974,
- 0.11466363817453384,
- 0.040000852197408676,
- -0.08412271738052368
- ]
- },
- {
- "keyword": "corp",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.05248284339904785,
- -0.02229977212846279,
- -0.025578847154974937,
- -0.0008245310746133327,
- -0.06049056351184845,
- -0.006418188102543354,
- 0.09716925770044327,
- -0.03880316764116287,
- 0.03410342335700989,
- -0.009087726473808289,
- 0.014221098273992538,
- -0.004609667230397463,
- -0.00588371092453599,
- -0.02341415360569954,
- -0.00766553683206439,
- -0.02595078945159912,
- -0.0028836368583142757,
- 0.05365781486034393,
- -0.017197279259562492,
- -0.07691963762044907,
- -0.0978098064661026,
- -0.0462171733379364,
- -0.06263658404350281,
- 0.01974402368068695,
- 0.0379636324942112,
- 0.04137458652257919,
- -0.01872558891773224,
- 0.015176027081906796,
- -0.06619921326637268,
- -0.10990927368402481,
- -0.06504511088132858,
- 0.034948866814374924,
- 0.10390443354845047,
- -0.00850895419716835,
- 0.03482146933674812,
- 0.04009178280830383,
- -0.009648009203374386,
- 0.00436062179505825,
- 0.06784635037183762,
- -0.024412445724010468,
- -0.0377192348241806,
- -0.056929122656583786,
- 0.002665337873622775,
- 0.006270657293498516,
- -0.008804245851933956,
- 0.04104679450392723,
- 0.00010876778105739504,
- 0.023196173831820488,
- 0.07426825165748596,
- 0.07248710840940475,
- -0.030161216855049133,
- -0.03296587988734245,
- -0.021239502355456352,
- 0.045352280139923096,
- 0.00649223243817687,
- -0.023055627942085266,
- -0.07844549417495728,
- -0.02532026916742325,
- 0.012528863735496998,
- -0.07077521085739136,
- 0.03624740615487099,
- -0.05959302559494972,
- 0.016161594539880753,
- 0.059866148978471756,
- 0.07646191865205765,
- 0.004414226394146681,
- -0.006533666979521513,
- 0.05632574111223221,
- -0.07516060769557953,
- -0.07282065600156784,
- 0.062410593032836914,
- -0.018822573125362396,
- -0.003973685670644045,
- 0.049871936440467834,
- -0.00997537188231945,
- 0.03609606996178627,
- 0.012433852069079876,
- 0.03857610747218132,
- 0.10936407744884491,
- -0.09378406405448914,
- 0.0649770200252533,
- 0.0752728208899498,
- -0.02833968959748745,
- 0.05864174664020538,
- -0.08530149608850479,
- 0.0300776194781065,
- 0.08223583549261093,
- 0.06534133851528168,
- 0.035491108894348145,
- 0.05445043742656708,
- -0.07768577337265015,
- 0.015666017308831215,
- 0.05337649583816528,
- -0.05675710737705231,
- -0.11886689811944962,
- 0.014663622714579105,
- -0.0178532712161541,
- -0.0077207572758197784,
- -0.031054887920618057,
- 0.22415666282176971,
- 0.018003424629569054,
- 0.042535413056612015,
- -0.03152121976017952,
- -0.08859805017709732,
- -0.06526374816894531,
- -0.016236424446105957,
- -0.02261655405163765,
- 0.06061201170086861,
- 0.08096131682395935,
- 0.03398105129599571,
- -0.018754350021481514,
- 0.07904088497161865,
- -0.13497832417488098,
- -0.026082271710038185,
- -0.05109839886426926,
- -0.058743059635162354,
- -0.030839411541819572,
- 0.030820658430457115,
- 0.04234938323497772,
- -0.01185325626283884,
- -0.005763927474617958,
- 0.07133675366640091,
- -0.03853399679064751,
- -0.011960407719016075,
- -0.06392350047826767,
- -0.027466127648949623,
- -0.02628900296986103,
- -4.395921286005244e-33,
- -0.0552949495613575,
- -0.013787483796477318,
- 0.034021321684122086,
- 0.03763587772846222,
- -0.01081356406211853,
- 0.010013489052653313,
- 0.02820459194481373,
- 0.027304520830512047,
- -0.12345747649669647,
- 0.00392584502696991,
- -0.11091256886720657,
- 0.011683045886456966,
- 0.07867461442947388,
- -0.012794913724064827,
- 0.06848609447479248,
- -0.005266143474727869,
- 0.004756808280944824,
- -0.03188253194093704,
- 0.052743908017873764,
- -0.05514926090836525,
- -0.10207464545965195,
- 0.06355445832014084,
- -0.03858093172311783,
- 0.07616540789604187,
- 0.006882181391119957,
- -0.08677498251199722,
- 0.0009111847612075508,
- -0.021570973098278046,
- 0.03770339861512184,
- 0.05979155749082565,
- 0.08296532928943634,
- 0.04374849796295166,
- 0.015164296142756939,
- 0.014313921332359314,
- 0.04979272931814194,
- 0.016730645671486855,
- -0.031928401440382004,
- -0.08937551826238632,
- -0.025471454486250877,
- -0.02941690944135189,
- -0.037473227828741074,
- 0.015926029533147812,
- -0.04763103649020195,
- 0.04355388134717941,
- -0.03966160863637924,
- 0.03859400004148483,
- -0.02319817990064621,
- 0.01547660119831562,
- 0.05918258801102638,
- 0.03599965572357178,
- -0.026210172101855278,
- 0.018613798543810844,
- -0.017354406416416168,
- -0.0104935672134161,
- 0.08474276959896088,
- -0.04162312671542168,
- 0.008640427142381668,
- -0.03572783246636391,
- -0.04463815316557884,
- -0.002003685338422656,
- -0.012528255581855774,
- 0.15576544404029846,
- -0.06202393025159836,
- 0.04087779298424721,
- -0.05767250433564186,
- 0.05129074677824974,
- 0.04227038845419884,
- -0.014595501124858856,
- 0.11259884387254715,
- -0.04742000997066498,
- 0.02929924987256527,
- -0.04266895353794098,
- 0.0868861973285675,
- 0.021173695102334023,
- -0.06312236189842224,
- 0.04348791763186455,
- 0.00219697505235672,
- 0.04243503510951996,
- -0.0509423203766346,
- 0.022644877433776855,
- -0.028039677068591118,
- -0.016755878925323486,
- 0.025081949308514595,
- 0.023035511374473572,
- 0.032999277114868164,
- 0.031143808737397194,
- 0.0393025279045105,
- -0.054520025849342346,
- 0.009474668651819229,
- 0.11737442761659622,
- -0.09021985530853271,
- -0.011250016279518604,
- 0.007466212846338749,
- 0.17126937210559845,
- -0.026081599295139313,
- 2.8580525162091694e-33,
- 0.008277724497020245,
- -0.03284314274787903,
- 0.025111123919487,
- 0.016570571810007095,
- 0.020783083513379097,
- -0.021986136212944984,
- 0.05692858248949051,
- -0.0396617129445076,
- -0.03870518505573273,
- 0.09002824872732162,
- -0.055078838020563126,
- -0.04053289815783501,
- -0.019291820004582405,
- 0.051745619624853134,
- -0.00004711719520855695,
- 0.011870060116052628,
- 0.0756753459572792,
- -0.02375134639441967,
- -0.041872765868902206,
- 0.031943004578351974,
- -0.03183658793568611,
- -0.005930770188570023,
- 0.03797188773751259,
- 0.02307732403278351,
- -0.02990611456334591,
- 0.07392870634794235,
- -0.028075136244297028,
- 0.013828330673277378,
- -0.025684254243969917,
- -0.0020756993908435106,
- 0.03603022173047066,
- -0.037428129464387894,
- -0.06278487294912338,
- 0.03356665372848511,
- -0.028451597318053246,
- 0.0535736121237278,
- -0.022295277565717697,
- -0.008085085079073906,
- 0.0032409902196377516,
- -0.09199702739715576,
- 0.037868432700634,
- 0.015196962282061577,
- -0.020781714469194412,
- 0.11573846638202667,
- -0.03762130066752434,
- -0.062274180352687836,
- 0.03053779900074005,
- -0.06731829047203064,
- 0.008882089518010616,
- 0.022364193573594093,
- -0.12295694649219513,
- 0.008328870870172977,
- 0.002050873124971986,
- -0.03961320221424103,
- -0.03338475897908211,
- 0.04146292060613632,
- -0.005069822072982788,
- -0.012238129042088985,
- -0.029511677101254463,
- 0.01081218384206295,
- 0.011083545163273811,
- -0.019628474488854408,
- 0.015984801575541496,
- 0.12106706947088242,
- 0.008187730796635151,
- 0.05921102315187454,
- 0.035149797797203064,
- 0.02680787816643715,
- 0.005337849725037813,
- -0.02436259761452675,
- 0.04847118258476257,
- 0.005660340189933777,
- -0.05990754812955856,
- 0.009465421549975872,
- -0.06939269602298737,
- -0.03902662917971611,
- -0.08253088593482971,
- -0.05004821717739105,
- -0.05366251617670059,
- 0.011969306506216526,
- 0.036220747977495193,
- -0.06363389641046524,
- -0.01926937699317932,
- 0.13575567305088043,
- -0.1008460596203804,
- -0.002686352003365755,
- 0.0758928507566452,
- 0.011446837335824966,
- -0.014290290884673595,
- 0.05353793129324913,
- -0.006481073331087828,
- -0.04892709478735924,
- -0.014997339807450771,
- 0.029951084405183792,
- 0.029003070667386055,
- -1.1333336047414377e-8,
- -0.07486271113157272,
- 0.016147062182426453,
- -0.011861644685268402,
- -0.009497384540736675,
- 0.08243813365697861,
- -0.04378337785601616,
- -0.03176240995526314,
- 0.010823382064700127,
- 0.04346254840493202,
- 0.07281222194433212,
- -0.008044697344303131,
- -0.014087744057178497,
- -0.08643581718206406,
- 0.07784006744623184,
- 0.021481888368725777,
- -0.0330842062830925,
- -0.07639925926923752,
- 0.005663757212460041,
- -0.02151503972709179,
- -0.03621309995651245,
- -0.015830181539058685,
- 0.002124658552929759,
- 0.04601956903934479,
- 0.01726928912103176,
- -0.03786291182041168,
- -0.003461980726569891,
- 0.011590620502829552,
- 0.03280380368232727,
- 0.039288077503442764,
- 0.04899148643016815,
- 0.010968661867082119,
- 0.09940458834171295,
- -0.07991958409547806,
- -0.01116379164159298,
- -0.0275514367967844,
- -0.09876310080289841,
- 0.03511333093047142,
- 0.01322421059012413,
- 0.02824980579316616,
- 0.03727639466524124,
- -0.03082852065563202,
- 0.09244401007890701,
- 0.010820552706718445,
- 0.031204460188746452,
- 0.016275154426693916,
- -0.03712036833167076,
- -0.040195759385824203,
- 0.013078915886580944,
- -0.02636714093387127,
- -0.10777377337217331,
- 0.04935230314731598,
- 0.0024852887727320194,
- 0.005513547919690609,
- 0.08376889675855637,
- -0.037245411425828934,
- -0.08731332421302795,
- -0.007435020059347153,
- 0.010699693113565445,
- -0.06852090358734131,
- 0.016795143485069275,
- 0.02477981708943844,
- -0.05681402608752251,
- 0.05041993409395218,
- 0.00980027299374342
- ]
- },
- {
- "keyword": "inc",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.08204931765794754,
- 0.0018706731498241425,
- 0.019218986853957176,
- -0.009513472206890583,
- -0.04635472223162651,
- -0.048632312566041946,
- 0.042147196829319,
- -0.045997411012649536,
- 0.11393573135137558,
- -0.06035039573907852,
- 0.037103671580553055,
- -0.02595357410609722,
- 0.022911038249731064,
- -0.042754754424095154,
- -0.0613231398165226,
- -0.01694365032017231,
- -0.013836476020514965,
- 0.004635388031601906,
- -0.11049403995275497,
- -0.08893963694572449,
- -0.06695559620857239,
- -0.00569168571382761,
- 0.012343628332018852,
- 0.010531351901590824,
- -0.014986864291131496,
- 0.05061040446162224,
- -0.06720630079507828,
- 0.03703056275844574,
- 0.006128708831965923,
- -0.10456261038780212,
- 0.03936341032385826,
- -0.04676971212029457,
- 0.07854504883289337,
- -0.08196257054805756,
- 0.026696782559156418,
- 0.007083117961883545,
- -0.025944404304027557,
- -0.029435724020004272,
- 0.09447529911994934,
- -0.025665244087576866,
- -0.005024179350584745,
- -0.010867705568671227,
- 0.01573765091598034,
- -0.0029053986072540283,
- 0.053919218480587006,
- -0.0034163070376962423,
- 0.004658798687160015,
- 0.07083546370267868,
- 0.07045424729585648,
- 0.13175950944423676,
- 0.02545792981982231,
- -0.021683409810066223,
- 0.06367366760969162,
- -0.0027098399586975574,
- 0.017490096390247345,
- 0.037729356437921524,
- -0.07603989541530609,
- 0.03376081585884094,
- 0.03773743286728859,
- -0.0385640412569046,
- 0.06239525228738785,
- -0.013865149579942226,
- 0.0734231099486351,
- 0.06523294746875763,
- 0.0555562824010849,
- 0.062096595764160156,
- 0.031270693987607956,
- 0.05303603410720825,
- -0.04484565928578377,
- -0.12539149820804596,
- 0.0464261993765831,
- -0.03478683903813362,
- -0.044835012406110764,
- 0.08116424828767776,
- -0.030142802745103836,
- 0.032859791070222855,
- 0.033247485756874084,
- 0.07078871876001358,
- 0.045236509293317795,
- -0.0419141985476017,
- -0.023101216182112694,
- 0.051785990595817566,
- -0.07702261209487915,
- 0.0007783501641824841,
- -0.06638152152299881,
- 0.011305734515190125,
- 0.09920439124107361,
- 0.07675585150718689,
- 0.05274169519543648,
- 0.03147269785404205,
- -0.10111577808856964,
- -0.023996027186512947,
- 0.04696841165423393,
- -0.008981200866401196,
- -0.051982153207063675,
- 0.031186135485768318,
- -0.002056295285001397,
- -0.06278911978006363,
- -0.056069351732730865,
- 0.19509528577327728,
- 0.011332972906529903,
- 0.003465106710791588,
- -0.07761313021183014,
- -0.0044287582859396935,
- -0.029392609372735023,
- -0.02052486501634121,
- -0.01031163427978754,
- 0.04302693158388138,
- 0.03373900428414345,
- 0.07509569823741913,
- -0.06367490440607071,
- 0.024018188938498497,
- 0.004928953945636749,
- 0.026829924434423447,
- 0.007722123526036739,
- -0.015283029526472092,
- -0.017905844375491142,
- 0.07415086030960083,
- 0.1722804456949234,
- -0.12876418232917786,
- 0.02118375152349472,
- 0.055812958627939224,
- -0.09145838767290115,
- -0.00733913853764534,
- -0.07691635191440582,
- -0.028600385412573814,
- -0.06472451239824295,
- -4.4507081389611934e-33,
- -0.09191382676362991,
- 0.059021346271038055,
- 0.04675199091434479,
- 0.07342195510864258,
- -0.011578078381717205,
- -0.01959243230521679,
- -0.016174595803022385,
- 0.06144201382994652,
- -0.16500744223594666,
- -0.0056364648044109344,
- -0.08661092072725296,
- -0.008243273943662643,
- -0.002480318071320653,
- -0.009760376997292042,
- 0.06623982638120651,
- 0.007175978738814592,
- 0.05613028258085251,
- -0.02496740035712719,
- 0.015784921124577522,
- -0.04054059088230133,
- -0.06109200045466423,
- 0.06177601218223572,
- -0.022221827879548073,
- 0.010706927627325058,
- 0.04833582788705826,
- -0.029835907742381096,
- -0.00821615569293499,
- -0.039791207760572433,
- 0.05067296698689461,
- 0.018265292048454285,
- 0.09734947234392166,
- -0.0036031228955835104,
- -0.06110837310552597,
- -0.05579398572444916,
- 0.02577289007604122,
- 0.01911507174372673,
- 0.0066389781422913074,
- -0.04240046814084053,
- -0.011532511562108994,
- 0.06524424999952316,
- -0.031768228858709335,
- 0.02500840462744236,
- -0.08783581107854843,
- 0.019262678921222687,
- 0.04232751578092575,
- 0.007538518402725458,
- 0.02749687060713768,
- 0.017238600179553032,
- 0.08168110996484756,
- 0.003155094338580966,
- -0.06705830246210098,
- -0.001331518986262381,
- -0.07577653229236603,
- 0.010831896215677261,
- 0.028959648683667183,
- -0.034843165427446365,
- -0.0025905538350343704,
- -0.015990126878023148,
- 0.026113571599125862,
- -0.020641392096877098,
- -0.006524967961013317,
- 0.11262146383523941,
- -0.04589647799730301,
- 0.11925765126943588,
- -0.05376856401562691,
- 0.022179484367370605,
- 0.022241761907935143,
- 0.026525171473622322,
- 0.07240347564220428,
- -0.007720738183706999,
- -0.015776878222823143,
- -0.037578973919153214,
- 0.01622200198471546,
- 0.002306652022525668,
- -0.05228300392627716,
- 0.0014294406864792109,
- -0.08992299437522888,
- 0.05481704697012901,
- -0.06952052563428879,
- 0.08955791592597961,
- -0.014023340307176113,
- 0.033850088715553284,
- 0.03738410398364067,
- 0.0020688411314040422,
- 0.06446290761232376,
- 0.02132856287062168,
- 0.0020605362951755524,
- 0.018844084814190865,
- 0.004425728227943182,
- -0.011241634376347065,
- -0.04018760845065117,
- -0.0014640976442024112,
- 0.002609151415526867,
- 0.10136417299509048,
- -0.03273492678999901,
- 3.1257772320806995e-33,
- 0.009257038123905659,
- -0.06939022988080978,
- 0.0854157954454422,
- -0.019909881055355072,
- -0.003076438093557954,
- -0.0657443180680275,
- 0.025449976325035095,
- -0.06668608635663986,
- 0.07925961166620255,
- 0.05584443733096123,
- -0.03504222258925438,
- -0.019503332674503326,
- 0.0002917122619692236,
- 0.06731665134429932,
- 0.037690792232751846,
- 0.03441163897514343,
- 0.03935941681265831,
- 0.005577239207923412,
- -0.01999272033572197,
- -0.012639730237424374,
- 0.023425040766596794,
- -0.08036058396100998,
- -0.024173293262720108,
- -0.0006390286143869162,
- -0.008750434033572674,
- 0.05230112373828888,
- 0.051448941230773926,
- 0.06431994587182999,
- -0.044810932129621506,
- -0.02732156030833721,
- 0.0016404682537540793,
- -0.03338281437754631,
- -0.0838046595454216,
- 0.05214516445994377,
- 0.007843418046832085,
- 0.08373498916625977,
- 0.024792417883872986,
- -0.0036656551528722048,
- -0.041176408529281616,
- -0.08559439331293106,
- 0.024244466796517372,
- 0.053921110928058624,
- -0.035806018859148026,
- 0.13765929639339447,
- -0.045905862003564835,
- -0.020715434104204178,
- -0.027985813096165657,
- -0.012514005415141582,
- 0.03265731409192085,
- 0.028783023357391357,
- -0.09395189583301544,
- -0.0049654459580779076,
- 0.02165103144943714,
- -0.054137568920850754,
- 0.010249100625514984,
- 0.0164001677185297,
- 0.04500596970319748,
- 0.0497235469520092,
- -0.041918061673641205,
- -0.020030947402119637,
- 0.015280698426067829,
- 0.09585701674222946,
- -0.032781247049570084,
- 0.09204351156949997,
- -0.05006169527769089,
- 0.055006690323352814,
- 0.004286295268684626,
- -0.03623591735959053,
- 0.014648727141320705,
- -0.05696740746498108,
- 0.07210876047611237,
- -0.0456416979432106,
- -0.10090871155261993,
- -0.111264668405056,
- -0.04545034095644951,
- 0.03201951086521149,
- -0.016416503116488457,
- 0.018333951011300087,
- -0.035053353756666183,
- 0.029869824647903442,
- 0.06467528641223907,
- -0.025001712143421173,
- -0.01819295436143875,
- 0.07093324512243271,
- -0.049188390374183655,
- 0.03695788234472275,
- -0.0064978268928825855,
- 0.012003648094832897,
- -0.05895259231328964,
- 0.032613348215818405,
- 0.036337725818157196,
- 0.0317804329097271,
- -0.023713625967502594,
- -0.03919360041618347,
- -0.017039338126778603,
- -1.13134817070204e-8,
- 0.04616977646946907,
- -0.040606822818517685,
- -0.0005356352194212377,
- -0.013704937882721424,
- 0.07056469470262527,
- -0.02753772959113121,
- 0.01189039833843708,
- -0.009021904319524765,
- -0.028883328661322594,
- 0.08438843488693237,
- -0.013069940730929375,
- -0.030549174174666405,
- -0.02974585071206093,
- -0.009517624974250793,
- -0.017865385860204697,
- -0.030984660610556602,
- -0.040338579565286636,
- 0.03977144509553909,
- 0.024301111698150635,
- -0.03228941187262535,
- 0.02602158673107624,
- 0.053740277886390686,
- 0.04003717377781868,
- -0.014315936714410782,
- -0.04433141276240349,
- -0.03213918209075928,
- 0.08306746184825897,
- -0.005753182806074619,
- -0.010698216035962105,
- 0.0527152419090271,
- 0.024422908201813698,
- 0.0339389368891716,
- -0.08046789467334747,
- -0.023576626554131508,
- -0.055004749447107315,
- -0.07287118583917618,
- 0.01557918731123209,
- -0.00010977101919706911,
- 0.027248483151197433,
- -0.0636766329407692,
- -0.04288352653384209,
- 0.07983677834272385,
- 0.03347232937812805,
- -0.0754828080534935,
- 0.025123341009020805,
- -0.011933749541640282,
- -0.0066101872362196445,
- -0.03147899731993675,
- 0.04348265752196312,
- -0.06747191399335861,
- -0.05725792050361633,
- -0.034097108989953995,
- 0.03346288576722145,
- 0.06457609683275223,
- -0.018594564869999886,
- -0.05386261269450188,
- -0.053848832845687866,
- -0.0027941246517002583,
- -0.032494161278009415,
- 0.01102257426828146,
- 0.07094956189393997,
- -0.08159451931715012,
- 0.06395169347524643,
- -0.03709036484360695
- ]
- },
- {
- "keyword": "llc",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.009688977152109146,
- 0.047355182468891144,
- -0.01244420651346445,
- 0.0003349109902046621,
- 0.010327196680009365,
- -0.024323180317878723,
- 0.011180459521710873,
- -0.00783819891512394,
- 0.09356097131967545,
- -0.05608994513750076,
- 0.03201493248343468,
- 0.0034112681169062853,
- 0.005028399173170328,
- -0.023617027327418327,
- -0.008723769336938858,
- 0.028412723913788795,
- -0.01573449932038784,
- -0.013062643818557262,
- -0.03381176292896271,
- -0.06659236550331116,
- -0.11355482786893845,
- -0.0037881440948694944,
- 0.00033966993214562535,
- 0.05678850784897804,
- -0.002955824602395296,
- -0.04127049073576927,
- -0.0007122041424736381,
- 0.007711092010140419,
- -0.020304474979639053,
- -0.1066109836101532,
- 0.0019133439054712653,
- -0.015564762987196445,
- 0.013783011585474014,
- 0.010235504247248173,
- 0.07614736258983612,
- -0.012047641910612583,
- -0.07915590703487396,
- -0.017086949199438095,
- 0.04481694474816322,
- 0.028775446116924286,
- -0.02427162043750286,
- -0.05661338195204735,
- -0.0025617966894060373,
- -0.0019061545608565211,
- -0.06302002817392349,
- 0.022181259468197823,
- 0.001127441180869937,
- 0.06616417318582535,
- 0.08306717872619629,
- 0.08089916408061981,
- 0.020191600546240807,
- -0.006868282798677683,
- -0.019476355984807014,
- 0.028633425012230873,
- 0.012120980769395828,
- 0.03135652467608452,
- -0.04076128080487251,
- 0.014262255281209946,
- -0.026092661544680595,
- -0.10726607590913773,
- 0.03430427238345146,
- 0.004511543549597263,
- 0.023603100329637527,
- 0.07849518954753876,
- 0.006283607799559832,
- 0.07468073070049286,
- -0.011191866360604763,
- 0.03508578613400459,
- -0.13112390041351318,
- -0.1307300180196762,
- 0.017708852887153625,
- -0.04478153958916664,
- -0.025699591264128685,
- 0.059622738510370255,
- 0.03088773787021637,
- -0.04105095565319061,
- 0.01646707020699978,
- 0.030067142099142075,
- 0.05807174742221832,
- -0.04029832035303116,
- 0.023951128125190735,
- 0.12150861322879791,
- -0.06398741155862808,
- 0.003709391225129366,
- -0.09631189703941345,
- 0.03568662703037262,
- 0.07298211008310318,
- 0.06139092519879341,
- 0.031203540042042732,
- 0.04320800304412842,
- -0.01869949698448181,
- -0.053304992616176605,
- 0.048223771154880524,
- -0.017515704035758972,
- -0.10072595626115799,
- 0.024113956838846207,
- 0.013815226964652538,
- -0.08316629379987717,
- -0.013780315406620502,
- 0.19001789391040802,
- 0.05637416988611221,
- 0.036321502178907394,
- -0.08547917008399963,
- -0.07304038852453232,
- -0.03860953822731972,
- 0.034960631281137466,
- 0.03559769690036774,
- 0.06871633231639862,
- 0.0317959226667881,
- 0.03598377853631973,
- -0.06081651523709297,
- 0.042388156056404114,
- -0.019955871626734734,
- -0.0682537779211998,
- 0.005688599310815334,
- -0.03442220762372017,
- -0.06876331567764282,
- 0.04019541293382645,
- 0.10045015811920166,
- -0.09918681532144547,
- -0.008315998129546642,
- 0.04983949288725853,
- -0.03285716846585274,
- -0.07289580255746841,
- -0.02403583936393261,
- -0.0647202730178833,
- -0.013041500933468342,
- -4.1849266621883664e-33,
- -0.00879468023777008,
- 0.041432470083236694,
- -0.002887394977733493,
- -0.0018219470512121916,
- 0.037916749715805054,
- 0.010745390318334103,
- 0.08887354284524918,
- -0.025671720504760742,
- -0.14938704669475555,
- 0.020895959809422493,
- -0.08342702686786652,
- 0.015102379955351353,
- 0.00948288757354021,
- -0.0879763588309288,
- 0.0774654969573021,
- 0.0273684561252594,
- 0.0013981980737298727,
- 0.07369094341993332,
- 0.07025130838155746,
- -0.07070696353912354,
- -0.07937135547399521,
- 0.0004468557599466294,
- 0.00889489147812128,
- 0.08412187546491623,
- 0.029984232038259506,
- -0.05680257827043533,
- 0.011671951971948147,
- 0.007679274305701256,
- 0.03409852832555771,
- 0.03498004376888275,
- 0.08632591366767883,
- 0.015208114869892597,
- -0.00261231348849833,
- -0.01426546648144722,
- 0.048592519015073776,
- 0.011660990305244923,
- -0.06908214092254639,
- -0.02576085925102234,
- 0.011003016494214535,
- -0.03978939726948738,
- -0.000627526140306145,
- -0.026293108239769936,
- 0.02487746812403202,
- 0.043350428342819214,
- -0.06461656838655472,
- 0.013983463868498802,
- -0.003310383064672351,
- 0.05474614351987839,
- 0.017989393323659897,
- -0.002332431962713599,
- -0.011750699020922184,
- -0.046908389776945114,
- -0.005119298584759235,
- 0.010943040251731873,
- 0.059381693601608276,
- -0.04043186455965042,
- -0.01513962633907795,
- -0.0555867925286293,
- -0.034352611750364304,
- -0.014107229188084602,
- 0.042422909289598465,
- 0.08085539937019348,
- -0.08617530763149261,
- 0.0787634328007698,
- -0.06851992756128311,
- -0.028175875544548035,
- 0.01024881936609745,
- 0.009358617477118969,
- 0.09029804170131683,
- -0.11379926651716232,
- 0.024409020319581032,
- -0.055651821196079254,
- 0.11515051871538162,
- 0.03328034654259682,
- -0.036700278520584106,
- -0.025278115645051003,
- -0.013459594920277596,
- 0.03757258504629135,
- 0.0132471714168787,
- 0.02966376207768917,
- -0.034004416316747665,
- -0.01831655018031597,
- 0.024868076667189598,
- 0.07650543749332428,
- -0.010805238038301468,
- 0.0021666446700692177,
- 0.034910522401332855,
- -0.07455860078334808,
- -0.03891269490122795,
- 0.10175319015979767,
- -0.09495841711759567,
- 0.02328406646847725,
- 0.05689749866724014,
- 0.08323309570550919,
- 0.015719518065452576,
- 3.564854494155564e-33,
- 0.03704185411334038,
- -0.033248189836740494,
- 0.05752933770418167,
- -0.009888231754302979,
- 0.0001632115599932149,
- -0.05123342201113701,
- 0.03227837011218071,
- -0.011320621706545353,
- -0.06050501763820648,
- -0.016707247123122215,
- -0.013818701729178429,
- -0.03978072106838226,
- -0.05234498158097267,
- 0.031619906425476074,
- 0.0022263331338763237,
- -0.017647497355937958,
- 0.1335649937391281,
- -0.05229064077138901,
- -0.0014111067866906524,
- 0.01625167764723301,
- -0.040434081107378006,
- -0.07179836183786392,
- 0.004219324793666601,
- 0.030670391395688057,
- 0.0029705220367759466,
- 0.07254672050476074,
- -0.007920666597783566,
- -0.008495225571095943,
- -0.012800274416804314,
- 0.008574651554226875,
- -0.016899196431040764,
- 0.01692781038582325,
- -0.1006675586104393,
- 0.054674603044986725,
- -0.06775490194559097,
- -0.036614250391721725,
- 0.0029701811727136374,
- -0.020403383299708366,
- -0.03963742405176163,
- -0.08255576342344284,
- 0.031224755570292473,
- 0.00027362079708836973,
- 0.019352614879608154,
- 0.09139847755432129,
- -0.016164811328053474,
- -0.02084389515221119,
- 0.005767658352851868,
- -0.09218040853738785,
- 0.06894668936729431,
- -0.018580563366413116,
- -0.11595714092254639,
- 0.03486199676990509,
- 0.04828910529613495,
- -0.019044850021600723,
- -0.016482843086123466,
- 0.07710518687963486,
- -0.010325061157345772,
- 0.016362017020583153,
- 0.07435771077871323,
- 0.000494061503559351,
- 0.06582523882389069,
- 0.09949830919504166,
- -0.016150018200278282,
- 0.142441987991333,
- -0.0130239799618721,
- 0.04045009985566139,
- -0.0069876606576144695,
- 0.006703714374452829,
- -0.03351042792201042,
- -0.02344805933535099,
- 0.04720279201865196,
- 0.0009104237542487681,
- -0.058699194341897964,
- -0.07300969213247299,
- -0.05570538341999054,
- -0.008854393847286701,
- 0.011985385790467262,
- -0.06214825436472893,
- -0.08316225558519363,
- -0.0004499758069869131,
- 0.014813855290412903,
- -0.05782407149672508,
- -0.04610607773065567,
- 0.11291343718767166,
- -0.06947130709886551,
- -0.026244768872857094,
- 0.038262754678726196,
- -0.09661131352186203,
- -0.05704536288976669,
- 0.02192799560725689,
- -0.04187796264886856,
- 0.013398712500929832,
- -0.028838153928518295,
- 0.047339972108602524,
- 0.061891473829746246,
- -1.118435033475862e-8,
- -0.07527587562799454,
- 0.05829086899757385,
- 0.03376096114516258,
- -0.04096800833940506,
- 0.033376287668943405,
- 0.02841275930404663,
- 0.04138534888625145,
- 0.057885028421878815,
- 0.03064645454287529,
- -0.0006860828143544495,
- -0.0063851214945316315,
- -0.05085807666182518,
- -0.050551943480968475,
- 0.06099318340420723,
- -0.035589899867773056,
- 0.00106983189471066,
- -0.07110604643821716,
- 0.01933296024799347,
- 0.027147391811013222,
- 0.011176751926541328,
- -0.020426912233233452,
- 0.012903476133942604,
- 0.06585433334112167,
- -0.08934178948402405,
- -0.01710427924990654,
- -0.008814499713480473,
- 0.03611570596694946,
- 0.04724549874663353,
- 0.06080995872616768,
- 0.01580595225095749,
- 0.017212096601724625,
- 0.0672915130853653,
- -0.01641502045094967,
- -0.011873742565512657,
- 0.021342959254980087,
- -0.08092306554317474,
- 0.00782817043364048,
- 0.006596165709197521,
- 0.01319658663123846,
- 0.056521784514188766,
- -0.040446408092975616,
- 0.16138358414173126,
- 0.03721143677830696,
- 0.004155932459980249,
- -0.0030992308165878057,
- -0.08580657839775085,
- -0.006107914261519909,
- 0.050743091851472855,
- 0.03214627504348755,
- -0.04060107469558716,
- 0.04068264365196228,
- -0.024431908503174782,
- 0.030743690207600594,
- 0.029516560956835747,
- -0.024617929011583328,
- -0.01541229523718357,
- 0.042174652218818665,
- 0.009917985647916794,
- -0.09370684623718262,
- 0.04580521956086159,
- 0.056891243904829025,
- -0.04739740118384361,
- 0.07884835451841354,
- 0.010115329176187515
- ]
- },
- {
- "keyword": "ltd",
- "type": "organization",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.011681700125336647,
- -0.005197854246944189,
- 0.008415219374001026,
- -0.027308354154229164,
- -0.017889540642499924,
- 0.03950551152229309,
- -0.005062381736934185,
- -0.019295189529657364,
- 0.07048557698726654,
- -0.047045763581991196,
- 0.05914323031902313,
- 0.03686879947781563,
- -0.05139916017651558,
- -0.008557253517210484,
- -0.005829909350723028,
- 0.008517900481820107,
- -0.016835631802678108,
- 0.004072187002748251,
- -0.056219473481178284,
- -0.039310142397880554,
- -0.07716507464647293,
- -0.01405456941574812,
- -0.02598615735769272,
- 0.013737362809479237,
- -0.012261674739420414,
- -0.044209450483322144,
- -0.050149742513895035,
- 0.06683190166950226,
- 0.05030035600066185,
- -0.07669046521186829,
- 0.037926964461803436,
- 0.019748156890273094,
- 0.037149954587221146,
- -0.009975900873541832,
- 0.0264535341411829,
- 0.026370879262685776,
- -0.06163397803902626,
- -0.008582492358982563,
- 0.02904110960662365,
- -0.043926455080509186,
- -0.025702381506562233,
- -0.012586872093379498,
- -0.03519834950566292,
- -0.013237392529845238,
- -0.03198877349495888,
- 0.020390702411532402,
- 0.03464857116341591,
- -0.0014224278274923563,
- 0.04189854487776756,
- 0.06644352525472641,
- 0.04762660712003708,
- -0.02055192179977894,
- 0.005770163144916296,
- -0.03934704139828682,
- 0.03539946302771568,
- -0.05412908270955086,
- -0.051937319338321686,
- -0.032861799001693726,
- 0.009606068022549152,
- -0.10386444628238678,
- 0.015450963750481606,
- -0.027917245402932167,
- -0.03768051043152809,
- 0.023188043385744095,
- 0.02863912470638752,
- -0.000805878487881273,
- -0.037833455950021744,
- 0.037727173417806625,
- -0.04339641332626343,
- -0.0795494019985199,
- 0.04905550554394722,
- -0.045226313173770905,
- 0.060743678361177444,
- 0.07423583418130875,
- -0.03413653001189232,
- 0.040579672902822495,
- 0.0440678671002388,
- 0.008461805060505867,
- 0.01924842596054077,
- -0.09023696184158325,
- 0.005430618301033974,
- 0.048338718712329865,
- -0.020713897421956062,
- 0.010485781356692314,
- -0.08509651571512222,
- 0.03463621810078621,
- 0.08319831639528275,
- 0.04119670391082764,
- 0.06369367241859436,
- 0.026200130581855774,
- 0.005086896009743214,
- 0.03925493732094765,
- 0.06537869572639465,
- -0.021661097183823586,
- -0.1400250643491745,
- -0.07482948154211044,
- 0.0004701200523413718,
- -0.03184046968817711,
- -0.061622295528650284,
- 0.24533890187740326,
- 0.07426632195711136,
- 0.028661852702498436,
- -0.10833441466093063,
- -0.022934984415769577,
- -0.003516630968078971,
- -0.012870220467448235,
- -0.013267071917653084,
- 0.06578072905540466,
- 0.01622488722205162,
- -0.013903568498790264,
- -0.02910695970058441,
- 0.05818873271346092,
- -0.03921195864677429,
- 0.03783787041902542,
- 0.01808638498187065,
- -0.0909225270152092,
- -0.08585073798894882,
- -0.0008344706147909164,
- 0.11686965078115463,
- -0.06967731565237045,
- 0.019399501383304596,
- 0.03469955921173096,
- -0.04255523160099983,
- -0.04133610054850578,
- -0.06549718976020813,
- -0.05856180936098099,
- -0.0022804848849773407,
- -5.852230216979437e-33,
- -0.02956840582191944,
- -0.02731580287218094,
- 0.01000022329390049,
- 0.015139652416110039,
- 0.04244034364819527,
- -0.013497530482709408,
- 0.0042701889760792255,
- 0.05558335408568382,
- -0.05685378611087799,
- 0.06825217604637146,
- -0.057562921196222305,
- 0.02006733976304531,
- 0.015675518661737442,
- -0.14474733173847198,
- 0.07288753241300583,
- 0.02219374291598797,
- 0.026665685698390007,
- -0.0028321356512606144,
- 0.023784609511494637,
- -0.025092869997024536,
- -0.06747394055128098,
- 0.03971262276172638,
- 0.01251140795648098,
- 0.11359705775976181,
- -0.003289982909336686,
- -0.0618353895843029,
- 0.036990661174058914,
- -0.017780961468815804,
- 0.054927051067352295,
- 0.04725395143032074,
- 0.06436813622713089,
- 0.001919810427352786,
- -0.002864136593416333,
- 0.03718028962612152,
- 0.05075569078326225,
- 0.035422854125499725,
- -0.06211470812559128,
- -0.03318573534488678,
- -0.025576116517186165,
- 0.034742843359708786,
- -0.012502044439315796,
- -0.02911544032394886,
- -0.06195922568440437,
- -0.035289011895656586,
- -0.058611877262592316,
- -0.05367284268140793,
- -0.018118152394890785,
- 0.02014041692018509,
- 0.09745996445417404,
- 0.025778863579034805,
- -0.034508634358644485,
- 0.01539556309580803,
- -0.10926322638988495,
- -0.03670375049114227,
- 0.05399365350604057,
- -0.05889248102903366,
- -0.07927464693784714,
- -0.02054031938314438,
- 0.010195460170507431,
- -0.007082551717758179,
- 0.020644308999180794,
- 0.08285759389400482,
- -0.09664053469896317,
- 0.036549340933561325,
- -0.005811679642647505,
- -0.061448074877262115,
- 0.03999432176351547,
- -0.033780768513679504,
- 0.03259056806564331,
- -0.0839824452996254,
- -0.022830765694379807,
- -0.00047075378824956715,
- 0.22021031379699707,
- 0.0014216086128726602,
- -0.05381404235959053,
- -0.015613511204719543,
- 0.020978648215532303,
- 0.050113745033741,
- -0.022244872525334358,
- 0.06163899973034859,
- -0.033727679401636124,
- 0.01547232922166586,
- -0.005451285280287266,
- 0.01155235804617405,
- 0.05088382586836815,
- 0.0271611325442791,
- 0.04190441220998764,
- -0.049674928188323975,
- -0.006018417421728373,
- 0.07858040183782578,
- -0.11558619141578674,
- 0.028042230755090714,
- -0.0072828615084290504,
- 0.07556211203336716,
- -0.011871559545397758,
- 3.555593802722992e-33,
- 0.03312261402606964,
- -0.02633694000542164,
- 0.030216705054044724,
- -0.03575325384736061,
- 0.013407833874225616,
- 0.008621699176728725,
- -0.00887228548526764,
- 0.02649133838713169,
- -0.07114111632108688,
- 0.0700526088476181,
- -0.06023545563220978,
- -0.010959630832076073,
- -0.02226773463189602,
- 0.03511165827512741,
- -0.019147004932165146,
- 0.02344224974513054,
- 0.07617923617362976,
- -0.0887136459350586,
- -0.02552053891122341,
- 0.003386217635124922,
- -0.018076350912451744,
- -0.009653287939727306,
- 0.04473872110247612,
- 0.06384023278951645,
- 0.002925584791228175,
- 0.0887310579419136,
- 0.03556113317608833,
- 0.004928120411932468,
- -0.04092225059866905,
- -0.0060024200938642025,
- 0.029917223379015923,
- -0.019453762099146843,
- -0.0935588851571083,
- 0.028376920148730278,
- -0.05373824015259743,
- -0.07113930583000183,
- -0.0017632943345233798,
- 0.0026281895115971565,
- -0.017009874805808067,
- 0.06050876900553703,
- -0.00036668876418843865,
- -0.000015115409041754901,
- 0.11783226579427719,
- 0.1160055473446846,
- -0.012134498916566372,
- -0.06759972870349884,
- 0.004519837908446789,
- -0.0842987596988678,
- 0.14051231741905212,
- 0.011903179809451103,
- 0.026133159175515175,
- 0.01037500612437725,
- 0.015052055940032005,
- -0.03955582529306412,
- -0.04284580796957016,
- 0.04735318198800087,
- 0.021976178511977196,
- 0.01917473040521145,
- 0.012070820666849613,
- -0.0038181308191269636,
- 0.0787125676870346,
- 0.0519896000623703,
- -0.024191591888666153,
- 0.04492460563778877,
- -0.03396400064229965,
- 0.05187397822737694,
- -0.02457476779818535,
- -0.0297407116740942,
- 0.012649484910070896,
- -0.06166740879416466,
- 0.024502715095877647,
- -0.04991341754794121,
- -0.034604474902153015,
- -0.1636769324541092,
- -0.01702607050538063,
- 0.009103195741772652,
- -0.01486014574766159,
- -0.08225828409194946,
- -0.06669694185256958,
- 0.024252457544207573,
- 0.04751081392168999,
- -0.009971017017960548,
- -0.00970295537263155,
- 0.11684174835681915,
- -0.07511607557535172,
- 0.012561899609863758,
- 0.005033077206462622,
- -0.007054791320115328,
- 0.012381796725094318,
- 0.010059257037937641,
- 0.04646401107311249,
- 0.028746601194143295,
- 0.050223249942064285,
- -0.05103420093655586,
- 0.04337342083454132,
- -1.2512900049443942e-8,
- -0.03812902793288231,
- 0.006952199153602123,
- 0.0019451369298622012,
- -0.007116309367120266,
- 0.027601435780525208,
- 0.006050261203199625,
- -0.005125825759023428,
- 0.04704044386744499,
- 0.02014610916376114,
- 0.09740486741065979,
- -0.025441940873861313,
- -0.03362974151968956,
- -0.1213059201836586,
- 0.007966662757098675,
- -0.027771322056651115,
- -0.01992492564022541,
- -0.10611516982316971,
- 0.00276070274412632,
- 0.004463791381567717,
- 0.025566956028342247,
- -0.0151252131909132,
- 0.03548277169466019,
- 0.04851631820201874,
- -0.010831677354872227,
- -0.06883521378040314,
- -0.006784005090594292,
- 0.005334542598575354,
- -0.051106683909893036,
- 0.023953421041369438,
- 0.04601256921887398,
- 0.04922696202993393,
- 0.12736229598522186,
- 0.0018919939175248146,
- -0.04448360204696655,
- -0.02929559163749218,
- -0.15657824277877808,
- 0.056931961327791214,
- 0.049962118268013,
- -0.0026262192986905575,
- -0.001454694545827806,
- -0.05495193228125572,
- 0.06527858227491379,
- 0.0443546324968338,
- 0.07039428502321243,
- 0.025817817077040672,
- -0.007650346495211124,
- -0.022840024903416634,
- 0.017972128465771675,
- 0.0201187115162611,
- -0.05865547060966492,
- 0.02200283855199814,
- -0.047768089920282364,
- 0.029751675203442574,
- 0.06599748879671097,
- -0.020823923870921135,
- -0.011494257487356663,
- -0.004767347127199173,
- -0.027891725301742554,
- -0.09414487332105637,
- -0.01938948966562748,
- 0.0644742101430893,
- -0.00471755675971508,
- 0.04008450359106064,
- -0.01011558249592781
- ]
- },
- {
- "keyword": "location",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.03190566599369049,
- 0.03640325739979744,
- -0.006352653726935387,
- 0.0038156535010784864,
- 0.006062420550733805,
- 0.00046405880129896104,
- 0.08092434704303741,
- -0.006083681248128414,
- -0.02174331806600094,
- -0.016300121322274208,
- 0.08744146674871445,
- -0.05085214227437973,
- 0.029888713732361794,
- -0.002214612439274788,
- 0.0069267661310732365,
- 0.004734333138912916,
- 0.054005444049835205,
- -0.009900350123643875,
- -0.003646601689979434,
- -0.04578617215156555,
- -0.036738522350788116,
- 0.023288238793611526,
- 0.053341832011938095,
- 0.03628147765994072,
- 0.023059502243995667,
- 0.02111714892089367,
- -0.0047589573077857494,
- 0.052180513739585876,
- 0.06771860271692276,
- -0.10917894542217255,
- 0.010279976762831211,
- 0.011616530828177929,
- 0.03682371973991394,
- -0.004312620963901281,
- 0.017745880410075188,
- 0.02245573326945305,
- 0.009145000018179417,
- -0.00988167803734541,
- 0.04334349185228348,
- -0.048584625124931335,
- 0.03435852378606796,
- -0.02975383773446083,
- 0.030814308673143387,
- -0.059588659554719925,
- -0.03065318427979946,
- 0.003970353398472071,
- 0.08676061779260635,
- 0.005148585420101881,
- 0.07231983542442322,
- 0.014214592054486275,
- -0.0068673440255224705,
- -0.01638820581138134,
- -0.026278048753738403,
- 0.05958770215511322,
- -0.013858319260179996,
- 0.053991999477148056,
- -0.05525147542357445,
- 0.03594766557216644,
- 0.026683570817112923,
- -0.012289087288081646,
- 0.13720498979091644,
- -0.00977996364235878,
- -0.08244102448225021,
- 0.037458017468452454,
- 0.02792363427579403,
- 0.009206824004650116,
- -0.009985070675611496,
- 0.03862375393509865,
- 0.01102246344089508,
- -0.13620953261852264,
- 0.03109942562878132,
- 0.001331557403318584,
- -0.0783650130033493,
- -0.010922077111899853,
- 0.04871813580393791,
- -0.023007910698652267,
- 0.012724794447422028,
- -0.014448709785938263,
- 0.03519439324736595,
- -0.03199230134487152,
- 0.025189736858010292,
- -0.02851409651339054,
- 0.011531670577824116,
- 0.04611232876777649,
- 0.02086356095969677,
- -0.02339792624115944,
- 0.033169571310281754,
- 0.04766443744301796,
- 0.0673753172159195,
- -0.03989940136671066,
- 0.028304748237133026,
- 0.029899045825004578,
- -0.015988970175385475,
- -0.0002899463870562613,
- -0.10300396382808685,
- -0.017625240609049797,
- 0.011942076496779919,
- 0.050002571195364,
- 0.052500609308481216,
- 0.22850987315177917,
- 0.01689966581761837,
- 0.005999990738928318,
- -0.005545140244066715,
- 0.017230525612831116,
- 0.03303653374314308,
- -0.026145117357373238,
- -0.12889976799488068,
- 0.0573650561273098,
- -0.0436653308570385,
- 0.013385004363954067,
- -0.048243556171655655,
- 0.001882878364995122,
- -0.07609567046165466,
- 0.01451913919299841,
- -0.02392585203051567,
- 0.02915586531162262,
- 0.03169890120625496,
- 0.03386557847261429,
- -0.011948809027671814,
- -0.02849242277443409,
- -0.030644146725535393,
- -0.043655216693878174,
- -0.036811232566833496,
- 0.019188744947314262,
- -0.05003036558628082,
- -0.07014244794845581,
- -0.013508922420442104,
- -4.78611377879124e-33,
- 0.03635308891534805,
- -0.033856991678476334,
- 0.022786201909184456,
- 0.0696670338511467,
- 0.037263423204422,
- 0.018328020349144936,
- -0.01520455814898014,
- -0.014331982471048832,
- -0.044891297817230225,
- 0.06273798644542694,
- -0.021595358848571777,
- -0.01356541458517313,
- -0.031588681042194366,
- -0.02081330306828022,
- 0.141579270362854,
- -0.007029099389910698,
- 0.05580642819404602,
- 0.014119679108262062,
- -0.0819009318947792,
- 0.04720141738653183,
- -0.014576015062630177,
- -0.010367963463068008,
- -0.044532787054777145,
- 0.056728143244981766,
- -0.04693927615880966,
- -0.01929367147386074,
- -0.029634768143296242,
- 0.012465275824069977,
- -0.022317422553896904,
- 0.026702571660280228,
- -0.04231918975710869,
- -0.0021694956813007593,
- 0.01978205516934395,
- -0.019201282411813736,
- 0.04108571261167526,
- -0.018679296597838402,
- -0.02632465772330761,
- -0.05339278653264046,
- -0.011105936951935291,
- -0.01042729802429676,
- -0.0037293543573468924,
- 0.04229249060153961,
- -0.06307528913021088,
- 0.05718422681093216,
- 0.057373370975255966,
- 0.014340147376060486,
- 0.002331552794203162,
- 0.027903428301215172,
- 0.07015907764434814,
- 0.05259375646710396,
- -0.09700868278741837,
- 0.03498581051826477,
- -0.10338173061609268,
- -0.014432639814913273,
- 0.0273737870156765,
- 0.029649222269654274,
- -0.052626289427280426,
- -0.01185368001461029,
- 0.11369717866182327,
- -0.03369748219847679,
- 0.07931627333164215,
- 0.12925297021865845,
- -0.02967268042266369,
- -0.0572485476732254,
- 0.021988485008478165,
- -0.11523996293544769,
- 0.013566377572715282,
- -0.05868159607052803,
- 0.06295160949230194,
- 0.009403318166732788,
- -0.019654495641589165,
- -0.008077493868768215,
- 0.1631442904472351,
- 0.09272390604019165,
- -0.021578634157776833,
- -0.009432538412511349,
- -0.0640590637922287,
- 0.07421872019767761,
- -0.05012902617454529,
- -0.030135734006762505,
- -0.056415244936943054,
- -0.0017638897988945246,
- -0.08361121267080307,
- 0.153179332613945,
- 0.05267670005559921,
- -0.005092091858386993,
- -0.050465863198041916,
- -0.11662784218788147,
- -0.0165594220161438,
- -0.002938764402642846,
- -0.12764085829257965,
- 0.003347911639139056,
- -0.03796818107366562,
- -0.01135366689413786,
- -0.03313228487968445,
- 3.709116671018244e-33,
- -0.0462748259305954,
- -0.1144275888800621,
- 0.04196600243449211,
- 0.0015588642563670874,
- 0.012882157228887081,
- 0.019968051463365555,
- 0.0596940778195858,
- 0.0023039213847368956,
- -0.0025056039448827505,
- 0.09579366445541382,
- -0.16734527051448822,
- -0.011974787339568138,
- 0.12662170827388763,
- 0.04259738698601723,
- -0.019386284053325653,
- 0.08988485485315323,
- 0.06407865136861801,
- 0.005063822492957115,
- -0.05321114882826805,
- 0.001111094607040286,
- -0.02006322331726551,
- -0.0763658881187439,
- -0.029736533761024475,
- -0.029127392917871475,
- -0.038883522152900696,
- 0.015246506780385971,
- 0.038732197135686874,
- -0.001452685217373073,
- -0.06192157045006752,
- -0.06744640320539474,
- -0.024378713220357895,
- -0.07250460237264633,
- -0.03555778041481972,
- 0.0353192500770092,
- -0.057331543415784836,
- 0.12510691583156586,
- -0.006545929703861475,
- 0.028200672939419746,
- -0.00375852407887578,
- 0.01318101305514574,
- 0.06064218655228615,
- -0.012783586047589779,
- 0.012362250126898289,
- 0.16052363812923431,
- -0.012726478278636932,
- 0.028518330305814743,
- -0.008499953895807266,
- 0.03800181299448013,
- 0.049467191100120544,
- 0.005453696008771658,
- 0.004664850886911154,
- 0.05955469235777855,
- -0.003364656353369355,
- 0.02001861296594143,
- -0.009646564722061157,
- 0.03831610083580017,
- -0.01867244392633438,
- 0.01816321723163128,
- -0.05068501830101013,
- -0.014866670593619347,
- -0.005698053166270256,
- 0.041103545576334,
- -0.07868435978889465,
- 0.025533191859722137,
- -0.017292561009526253,
- 0.046137649565935135,
- -0.009885389357805252,
- 0.021875128149986267,
- -0.01477610319852829,
- -0.01648836024105549,
- 0.030469823628664017,
- -0.02476217783987522,
- -0.02667926251888275,
- 0.017303237691521645,
- -0.0587988942861557,
- 0.0007870267727412283,
- 0.025386029854416847,
- 0.020375898107886314,
- 0.003298330120742321,
- -0.07698643952608109,
- -0.007897527888417244,
- -0.03842975199222565,
- -0.12097061425447464,
- 0.045698147267103195,
- -0.0010849253740161657,
- 0.014316845685243607,
- 0.0369018130004406,
- -0.007271196227520704,
- -0.01051593292504549,
- -0.09288989752531052,
- -0.06141363084316254,
- 0.08583758026361465,
- -0.10589368641376495,
- -0.030997850000858307,
- -0.0634295716881752,
- -1.3508224760983012e-8,
- -0.035134825855493546,
- 0.04335324838757515,
- -0.005903848446905613,
- 0.04220212996006012,
- -0.0013112628366798162,
- 0.025185251608490944,
- 0.0787874162197113,
- 0.08238888531923294,
- 0.04524233564734459,
- 0.08591552823781967,
- -0.06146635860204697,
- 0.016903279349207878,
- 0.026735076680779457,
- -0.019292712211608887,
- -0.010525355115532875,
- -0.0012234312016516924,
- -0.03486340120434761,
- 0.015823427587747574,
- -0.03879125788807869,
- 0.019135599955916405,
- -0.0008166130282916129,
- 0.0237579345703125,
- 0.06261741369962692,
- 0.009947131387889385,
- -0.012627867050468922,
- -0.03082788735628128,
- 0.037523917853832245,
- 0.09526170045137405,
- 0.009530999697744846,
- -0.013191803358495235,
- 0.00894700363278389,
- 0.049387820065021515,
- -0.01771135814487934,
- -0.02607131190598011,
- -0.0052443379536271095,
- 0.0001817736483644694,
- -0.09193547815084457,
- 0.015329506248235703,
- -0.022090306505560875,
- -0.07136403024196625,
- -0.009547240100800991,
- -0.09813764691352844,
- 0.0529932901263237,
- 0.013551591895520687,
- -0.01541786640882492,
- -0.01404382474720478,
- 0.06710360944271088,
- -0.03322208300232887,
- -0.01924957148730755,
- 0.0008785181562416255,
- -0.11020336300134659,
- -0.03506329655647278,
- -0.007751669269055128,
- 0.030030345544219017,
- 0.04765864834189415,
- 0.02955206297338009,
- -0.02611902356147766,
- -0.09143278747797012,
- -0.054390739649534225,
- 0.11024604737758636,
- 0.05482029169797897,
- 0.07114937156438828,
- -0.0757521390914917,
- 0.049866702407598495
- ]
- },
- {
- "keyword": "place",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.005104816984385252,
- 0.03418505936861038,
- -0.029114920645952225,
- 0.0032395038288086653,
- -0.03973367065191269,
- -0.015222281217575073,
- 0.12633469700813293,
- -0.00976622011512518,
- 0.02401875890791416,
- -0.04932771250605583,
- 0.039892882108688354,
- -0.0030540309380739927,
- 0.040984202176332474,
- -0.0034956459421664476,
- 0.05631926283240318,
- -0.025936845690011978,
- 0.020891038700938225,
- -0.0276130810379982,
- -0.015944087877869606,
- -0.04813864827156067,
- 0.002077649114653468,
- 0.002631307812407613,
- 0.05900128558278084,
- -0.0009191088029183447,
- -0.012972529977560043,
- 0.07636669278144836,
- -0.033320195972919464,
- 0.08261308073997498,
- 0.05357331410050392,
- -0.0815032348036766,
- 0.03472937270998955,
- 0.06551690399646759,
- -0.007569108158349991,
- -0.039298851042985916,
- -0.017552847042679787,
- 0.07937148213386536,
- -0.009546206332743168,
- -0.018937453627586365,
- 0.05921657383441925,
- 0.0007380183087661862,
- -0.025756850838661194,
- -0.03168925270438194,
- 0.05036475136876106,
- -0.07899927347898483,
- -0.028638174757361412,
- 0.006768159102648497,
- 0.0836520791053772,
- -0.028317490592598915,
- 0.0633981004357338,
- 0.02912951074540615,
- 0.035253457725048065,
- 0.017564421519637108,
- -0.04830169305205345,
- 0.035132840275764465,
- -0.0194875355809927,
- 0.03503735363483429,
- -0.03418571501970291,
- -0.013568015769124031,
- 0.03717439994215965,
- -0.026204245164990425,
- 0.1578344851732254,
- 0.004288149531930685,
- -0.030939945951104164,
- 0.051892347633838654,
- 0.05643308162689209,
- -0.025560973212122917,
- 0.013566859997808933,
- 0.15162034332752228,
- -0.007016468793153763,
- -0.09002140909433365,
- 0.028449494391679764,
- 0.00011100694973720238,
- 0.0220066849142313,
- 0.011494274251163006,
- 0.036433521658182144,
- -0.03943343833088875,
- -0.01999439112842083,
- -0.03853725641965866,
- 0.0677056536078453,
- 0.013553070835769176,
- 0.012639736756682396,
- 0.0005109254270792007,
- -0.029867373406887054,
- 0.06796510517597198,
- -0.07798486202955246,
- -0.06426454335451126,
- 0.04820758476853371,
- 0.04141620919108391,
- 0.015150097198784351,
- -0.015093473717570305,
- -0.05777996405959129,
- -0.009079349227249622,
- -0.022776959463953972,
- 0.019256509840488434,
- -0.06596976518630981,
- 0.03075038455426693,
- 0.025713270530104637,
- 0.03164583444595337,
- 0.031116485595703125,
- 0.22753283381462097,
- 0.01133191678673029,
- 0.053871557116508484,
- -0.018169155344367027,
- 0.029878832399845123,
- -0.007909148000180721,
- -0.0519900806248188,
- -0.09812790155410767,
- 0.0689251497387886,
- -0.016776183620095253,
- -0.0008230312960222363,
- -0.04001045599579811,
- 0.02443188801407814,
- -0.053358182311058044,
- 0.04135908931493759,
- -0.021145598962903023,
- 0.03681543469429016,
- 0.09758621454238892,
- -0.002997187664732337,
- -0.011837380938231945,
- -0.04508903995156288,
- -0.012631626799702644,
- 0.024199575185775757,
- -0.031196625903248787,
- 0.009065703488886356,
- -0.0394754633307457,
- -0.06352093815803528,
- -0.027721339836716652,
- -5.9924666930325356e-33,
- 0.041827719658613205,
- -0.09321784973144531,
- 0.004401091486215591,
- -0.000179760463652201,
- 0.10565277934074402,
- 0.025820285081863403,
- -0.04796554148197174,
- 0.053731657564640045,
- -0.0219082273542881,
- 0.04730958491563797,
- 0.04827118664979935,
- -0.10415778309106827,
- -0.03382384777069092,
- -0.01751277782022953,
- 0.1274852752685547,
- 0.028935642912983894,
- 0.045317988842725754,
- -0.03729323297739029,
- -0.0806233286857605,
- -0.02311384305357933,
- -0.041263215243816376,
- 0.039896409958601,
- -0.04818198084831238,
- 0.004659784026443958,
- -0.03581543266773224,
- 0.009091394022107124,
- 0.0300790723413229,
- -0.029577460139989853,
- -0.04495682939887047,
- -0.022351782768964767,
- -0.044408198446035385,
- 0.08024107664823532,
- 0.0219501331448555,
- -0.028615783900022507,
- 0.04532473906874657,
- -0.027416586875915527,
- -0.013633649796247482,
- -0.017789574339985847,
- 0.007993283681571484,
- -0.01734762452542782,
- -0.016084657981991768,
- 0.04729991406202316,
- -0.07524248957633972,
- 0.050804562866687775,
- 0.07097209990024567,
- 0.046700336039066315,
- 0.030653558671474457,
- 0.037813544273376465,
- 0.02944904752075672,
- 0.09512890875339508,
- -0.06562701612710953,
- -0.04193120077252388,
- -0.08074606955051422,
- 0.02185777761042118,
- -0.014779265969991684,
- -0.010760800912976265,
- -0.04330606013536453,
- -0.0337187685072422,
- 0.04592336714267731,
- -0.0448528416454792,
- 0.07352390140295029,
- 0.04131252318620682,
- -0.014905975200235844,
- -0.0490201935172081,
- 0.015498491935431957,
- -0.069583959877491,
- 0.012071711011230946,
- -0.033850979059934616,
- 0.06778137385845184,
- 0.01376757025718689,
- -0.06850011646747589,
- 0.02010486088693142,
- 0.047875549644231796,
- 0.0483209565281868,
- -0.004316171631217003,
- -0.0024892024230211973,
- -0.0774189755320549,
- 0.04463956877589226,
- -0.11358153820037842,
- 0.007446750532835722,
- 0.026948770508170128,
- -0.029005497694015503,
- -0.08384872227907181,
- 0.08220121264457703,
- 0.0548877976834774,
- -0.011426754295825958,
- 0.012250697240233421,
- -0.10919798165559769,
- -0.056249793618917465,
- -0.010033668018877506,
- -0.11616082489490509,
- -0.03683159872889519,
- 0.027526864781975746,
- -0.01842612773180008,
- -0.02379705384373665,
- 4.9228241391338566e-33,
- 0.013144468888640404,
- -0.11105635017156601,
- 0.023287950083613396,
- 0.0766594186425209,
- 0.04817130044102669,
- -0.01660279370844364,
- 0.02944399043917656,
- 0.0029508983716368675,
- 0.042147111147642136,
- 0.13268150389194489,
- -0.18328161537647247,
- 0.018454082310199738,
- 0.1072353795170784,
- 0.04408663883805275,
- 0.00924630556255579,
- 0.05274352803826332,
- 0.03944544494152069,
- 0.0387781485915184,
- -0.03512588143348694,
- 0.053281523287296295,
- -0.025817343965172768,
- -0.05367279425263405,
- -0.009836138226091862,
- 0.016308752819895744,
- -0.018120115622878075,
- 0.05548674985766411,
- 0.040291812270879745,
- -0.023552948608994484,
- -0.08163205534219742,
- -0.02497025765478611,
- -0.060362882912158966,
- -0.03755984827876091,
- -0.03231484442949295,
- 0.060444626957178116,
- -0.03611578792333603,
- 0.12671683728694916,
- 0.00961335189640522,
- 0.0001868041726993397,
- -0.015807192772626877,
- 0.013701154850423336,
- 0.10793371498584747,
- -0.018485035747289658,
- -0.07788123190402985,
- 0.1430833339691162,
- -0.028046250343322754,
- 0.02656290866434574,
- -0.04790279269218445,
- 0.012543325312435627,
- 0.06967733055353165,
- -0.000434839486842975,
- -0.04657230153679848,
- -0.0042298296466469765,
- -0.0591839924454689,
- 0.016108551993966103,
- 0.04320980980992317,
- 0.023654839023947716,
- -0.03616602346301079,
- -0.0027490013744682074,
- -0.0353972464799881,
- -0.004879489075392485,
- -0.031714312732219696,
- 0.05595317482948303,
- -0.059409238398075104,
- 0.048203710466623306,
- 0.005217789672315121,
- 0.027538225054740906,
- -0.038774240761995316,
- 0.025327419862151146,
- -0.07132072746753693,
- 0.0060691446997225285,
- -0.03178422525525093,
- -0.021922115236520767,
- -0.03759923577308655,
- -0.0023739575408399105,
- -0.027663392946124077,
- 0.04517953097820282,
- 0.06391937285661697,
- 0.01732805371284485,
- -0.005258698016405106,
- -0.03067007102072239,
- -0.0018293524626642466,
- -0.0275430865585804,
- -0.10722506791353226,
- 0.04098762944340706,
- -0.006884174887090921,
- 0.05149751529097557,
- 0.054132137447595596,
- 0.03271864354610443,
- -0.038962192833423615,
- -0.08651486039161682,
- -0.012732284143567085,
- 0.08459921181201935,
- -0.08875295519828796,
- -0.0380941741168499,
- -0.06664958596229553,
- -1.3252115849127222e-8,
- 0.00008013493061298504,
- 0.03224578872323036,
- 0.015862278640270233,
- -0.009339014068245888,
- -0.017769012600183487,
- -0.01256787683814764,
- 0.0637144073843956,
- 0.02608175203204155,
- 0.03542780131101608,
- 0.09696464240550995,
- -0.0321500264108181,
- 0.015587624162435532,
- 0.02047671191394329,
- -0.03446052595973015,
- -0.021021168678998947,
- 0.015324153937399387,
- 0.00623448146507144,
- -0.028207285329699516,
- -0.07890454679727554,
- 0.015854623168706894,
- 0.01737983524799347,
- 0.02872958593070507,
- 0.06541986018419266,
- 0.004795911256223917,
- -0.03903024643659592,
- -0.05068522319197655,
- 0.039415158331394196,
- 0.09104711562395096,
- 0.01428739819675684,
- -0.007621719501912594,
- 0.02988714724779129,
- 0.005345693323761225,
- -0.024171816185116768,
- -0.016354665160179138,
- -0.020842717960476875,
- -0.03359333798289299,
- -0.024918964132666588,
- 0.00882629957050085,
- 0.0052002170123159885,
- -0.11802405118942261,
- -0.07454464584589005,
- -0.06658332794904709,
- 0.06023062393069267,
- -0.023699607700109482,
- 0.03621571883559227,
- 0.025715112686157227,
- 0.0653378888964653,
- -0.01654285006225109,
- -0.010574955493211746,
- -0.036063894629478455,
- -0.1263199895620346,
- 0.013577522709965706,
- 0.022881394252181053,
- 0.05090096965432167,
- 0.030165543779730797,
- 0.02753930725157261,
- -0.05220536142587662,
- -0.053097546100616455,
- -0.075902059674263,
- 0.13782288134098053,
- 0.005747416988015175,
- 0.07698271423578262,
- -0.020406518131494522,
- 0.035599447786808014
- ]
- },
- {
- "keyword": "area",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.110941581428051,
- 0.02138497121632099,
- -0.00800476223230362,
- 0.04550426825881004,
- -0.026535430923104286,
- -0.05299219861626625,
- 0.06881318986415863,
- 0.0059234024956822395,
- -0.015605065040290356,
- -0.04329177364706993,
- 0.04834771156311035,
- -0.05391744524240494,
- 0.0009260775404982269,
- 0.008624653331935406,
- 0.018582722172141075,
- 0.0027392238844186068,
- 0.08589337766170502,
- -0.03497946262359619,
- -0.05918249487876892,
- -0.061270520091056824,
- 0.024190472438931465,
- 0.0689963549375534,
- 0.06277637928724289,
- 0.002466971753165126,
- 0.01993103325366974,
- 0.04540259391069412,
- -0.05715102329850197,
- 0.12294363975524902,
- 0.0617426261305809,
- -0.08661925792694092,
- 0.02501540631055832,
- 0.10925360023975372,
- 0.09135247021913528,
- -0.05720680207014084,
- 0.015110834501683712,
- -0.02377047948539257,
- -0.05074035003781319,
- 0.04125349968671799,
- 0.06915625929832458,
- 0.006329175550490618,
- -0.0185826625674963,
- -0.028176795691251755,
- 0.016771897673606873,
- 0.019707856699824333,
- -0.03269070386886597,
- 0.035807978361845016,
- 0.013664035126566887,
- 0.058513443917036057,
- 0.10110267996788025,
- -0.02594810351729393,
- 0.09529054909944534,
- -0.009077907539904118,
- -0.02238227054476738,
- 0.06136457249522209,
- -0.07226908951997757,
- 0.021628420799970627,
- -0.005461058579385281,
- 0.07584956288337708,
- 0.03158986568450928,
- -0.02429313398897648,
- 0.08421897888183594,
- 0.004203043878078461,
- -0.047226402908563614,
- 0.05454039201140404,
- -0.0017545063747093081,
- -0.01843748800456524,
- -0.054853446781635284,
- 0.00645068846642971,
- -0.028617488220334053,
- -0.10599306970834732,
- 0.021197114139795303,
- -0.009484818205237389,
- 0.006716251838952303,
- -0.055198561400175095,
- 0.024711498990654945,
- -0.059612978249788284,
- 0.002020257990807295,
- 0.027435101568698883,
- 0.07186517864465714,
- -0.0144512839615345,
- -0.008477752096951008,
- 0.013393133878707886,
- -0.04786626249551773,
- 0.05528094619512558,
- -0.0519002340734005,
- 0.02076987735927105,
- 0.06345769017934799,
- 0.0486152209341526,
- 0.05941268056631088,
- 0.0058866022154688835,
- -0.018529588356614113,
- 0.05880572646856308,
- -0.05637633800506592,
- -0.032391201704740524,
- -0.037440668791532516,
- -0.004659987986087799,
- 0.030414531007409096,
- -0.08443422615528107,
- -0.05781324952840805,
- 0.18733546137809753,
- 0.02094985544681549,
- -0.021447131410241127,
- -0.03957871347665787,
- -0.08200934529304504,
- -0.006150774657726288,
- -0.029026653617620468,
- -0.06466975808143616,
- 0.10525789111852646,
- 0.01230926625430584,
- 0.08135437965393066,
- -0.03857091814279556,
- -0.00047496348270215094,
- -0.026885198429226875,
- 0.0395524688065052,
- 0.013909882865846157,
- -0.009018298238515854,
- 0.12643322348594666,
- -0.03092382475733757,
- -0.03953118249773979,
- -0.014772970229387283,
- -0.037547867745161057,
- 0.012337544932961464,
- -0.045753300189971924,
- 0.024663416668772697,
- 0.02325957641005516,
- -0.05842604488134384,
- -0.030311495065689087,
- -4.8496323507218915e-33,
- 0.0008956767851486802,
- -0.08496717363595963,
- -0.036130692809820175,
- 0.0600876621901989,
- -0.0048094638623297215,
- 0.023869216442108154,
- 0.008137170225381851,
- -0.059359386563301086,
- -0.008247791789472103,
- 0.0729895532131195,
- -0.027756957337260246,
- 0.019127150997519493,
- 0.009608032181859016,
- -0.035431984812021255,
- 0.1993231326341629,
- 0.03295218572020531,
- 0.03177971765398979,
- 0.051102735102176666,
- -0.08581317961215973,
- -0.060339659452438354,
- -0.10545682162046432,
- 0.0423152931034565,
- -0.019449658691883087,
- 0.03281485661864281,
- -0.03880521282553673,
- 0.020015640184283257,
- 0.003104506991803646,
- 0.014262859709560871,
- 0.07010447233915329,
- 0.010239508002996445,
- -0.04195953160524368,
- 0.019278505817055702,
- -0.03301067650318146,
- -0.03687676414847374,
- -0.01662192866206169,
- 0.010965436697006226,
- 0.006308679934591055,
- -0.06772980093955994,
- -0.01244129054248333,
- -0.007951837964355946,
- -0.008020240813493729,
- 0.030288847163319588,
- 0.0077498359605669975,
- -0.050084713846445084,
- 0.03462402895092964,
- -0.004956904333084822,
- 0.05146050453186035,
- 0.007136962842196226,
- 0.023995138704776764,
- 0.016689179465174675,
- -0.07361765950918198,
- 0.013976135291159153,
- -0.012118087150156498,
- -0.03773297369480133,
- 0.01884598471224308,
- 0.009527720510959625,
- -0.04127373546361923,
- 0.0038677924312651157,
- 0.06343763321638107,
- 0.06545364111661911,
- 0.07013045251369476,
- 0.08061867207288742,
- 0.01735939271748066,
- -0.05876436457037926,
- -0.04279710352420807,
- -0.12597006559371948,
- 0.02622375078499317,
- 0.008521431125700474,
- -0.0002822555834427476,
- 0.0009089799714274704,
- -0.01415872573852539,
- -0.03497021272778511,
- 0.09737250208854675,
- 0.11792151629924774,
- 0.010343621484935284,
- -0.00897764228284359,
- -0.06750842928886414,
- 0.10883472859859467,
- -0.07583428174257278,
- 0.03272237628698349,
- -0.03805152326822281,
- -0.010773543268442154,
- -0.13952191174030304,
- 0.019878225401043892,
- 0.08781707286834717,
- -0.005819444544613361,
- 0.018089283257722855,
- -0.06019004061818123,
- -0.09095671772956848,
- -0.08141536265611649,
- -0.10840602219104767,
- -0.016666002571582794,
- 0.02357969433069229,
- 0.015218381769955158,
- -0.047678567469120026,
- 3.3190703803421316e-33,
- -0.08485602587461472,
- -0.05267966538667679,
- -0.02756010927259922,
- 0.01283448375761509,
- -0.04095125198364258,
- 0.025593863800168037,
- 0.03573071211576462,
- 0.027559060603380203,
- 0.024832313880324364,
- 0.04328888654708862,
- -0.14233987033367157,
- 0.01299465261399746,
- 0.0686844065785408,
- -0.010564230382442474,
- -0.0017930330941453576,
- -0.010249652899801731,
- 0.058326248079538345,
- 0.016455668956041336,
- -0.009027381427586079,
- 0.014430545270442963,
- 0.009833105839788914,
- -0.04800316318869591,
- 0.02775241807103157,
- -0.01793794333934784,
- -0.08359112590551376,
- 0.03968647122383118,
- -0.04750782623887062,
- -0.00302593014203012,
- -0.07750384509563446,
- -0.016196545213460922,
- -0.05508407577872276,
- -0.08999719470739365,
- -0.0005428061704151332,
- 0.0772661417722702,
- -0.08488032966852188,
- -0.029816284775733948,
- 0.08393922448158264,
- 0.023832052946090698,
- 0.010936714708805084,
- 0.0016501568024978042,
- 0.07907938212156296,
- -0.0654371902346611,
- 0.01520821824669838,
- 0.11483515799045563,
- -0.029760736972093582,
- -0.03325841575860977,
- -0.02412666752934456,
- 0.038880668580532074,
- -0.03248751908540726,
- -0.005094408057630062,
- -0.057256221771240234,
- 0.008055996149778366,
- -0.030924586579203606,
- -0.026551172137260437,
- 0.004282748326659203,
- 0.08961924910545349,
- 0.004757182206958532,
- 0.05441486835479736,
- -0.04175133258104324,
- 0.017888272181153297,
- 0.032741110771894455,
- 0.05609859526157379,
- -0.058203306049108505,
- 0.09995028376579285,
- 0.016021957620978355,
- 0.05128534138202667,
- -0.017543649300932884,
- -0.0070841358974576,
- 0.006244546268135309,
- 0.01125697884708643,
- 0.035114459693431854,
- 0.060897860676050186,
- -0.07883279025554657,
- 0.008011960424482822,
- -0.08335039019584656,
- 0.046391990035772324,
- 0.028948169201612473,
- 0.03759298473596573,
- 0.029329154640436172,
- -0.012481886893510818,
- -0.013684399425983429,
- -0.02843022532761097,
- -0.034648388624191284,
- 0.026622014120221138,
- 0.03422178328037262,
- 0.012979628518223763,
- 0.022055024281144142,
- 0.04004582017660141,
- 0.009026287123560905,
- -0.05164413899183273,
- -0.04137732833623886,
- 0.07761823385953903,
- -0.0876486599445343,
- -0.05922124534845352,
- -0.044572148472070694,
- -1.1546029909936806e-8,
- 0.02398781105875969,
- 0.03362886607646942,
- -0.02856789343059063,
- -0.003980048932135105,
- 0.023893356323242188,
- 0.0027214125730097294,
- -0.01764741539955139,
- 0.09635162353515625,
- 0.008187640458345413,
- 0.08946312218904495,
- 0.01992475800216198,
- 0.014346746727824211,
- -0.03714904561638832,
- 0.008354078978300095,
- -0.04017879068851471,
- -0.05130518600344658,
- -0.02753780223429203,
- -0.03807423636317253,
- -0.05680951476097107,
- -0.10117727518081665,
- 0.07035113126039505,
- 0.0014575496315956116,
- 0.03048587590456009,
- -0.021717267110943794,
- 0.05473089590668678,
- -0.06641523540019989,
- 0.036279380321502686,
- 0.09008213877677917,
- 0.010787525214254856,
- -0.05047629028558731,
- 0.03637043759226799,
- -0.01025451347231865,
- -0.03314904496073723,
- -0.00036327276029624045,
- 0.016577862203121185,
- -0.04754628241062164,
- -0.025083845481276512,
- 0.0017289755633100867,
- -0.0006131722475402057,
- -0.023469574749469757,
- -0.01025331113487482,
- -0.1092454344034195,
- 0.07799161970615387,
- -0.043548792600631714,
- 0.05635816976428032,
- 0.04644760116934776,
- 0.04357036203145981,
- -0.027957959100604057,
- 0.013239522464573383,
- -0.039582811295986176,
- -0.09313978254795074,
- 0.05824482440948486,
- -0.022085726261138916,
- 0.04554574564099312,
- 0.04413759708404541,
- -0.02378276363015175,
- 0.004070856608450413,
- -0.07299777865409851,
- -0.03670915216207504,
- 0.09737476706504822,
- 0.0776989534497261,
- 0.04417748749256134,
- -0.04338926821947098,
- 0.0018402079585939646
- ]
- },
- {
- "keyword": "region",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.11467353254556656,
- 0.07931625843048096,
- -0.008183853700757027,
- -0.007880764082074165,
- -0.05487801134586334,
- -0.04277261719107628,
- 0.007417670451104641,
- -0.008069654926657677,
- -0.03373833745718002,
- -0.05657866224646568,
- -0.001044277916662395,
- -0.0603204146027565,
- -0.013491885736584663,
- 0.023653116077184677,
- 0.02227655239403248,
- -0.06948941200971603,
- 0.018875861540436745,
- -0.10517943650484085,
- -0.05680428445339203,
- -0.06515201181173325,
- 0.0025913859717547894,
- 0.01675027422606945,
- 0.025261085480451584,
- 0.009030825458467007,
- 0.0658959373831749,
- -0.00018824405560735613,
- 0.030456213280558586,
- 0.09768214076757431,
- 0.06263978034257889,
- -0.029994359239935875,
- -0.021525913849473,
- 0.08014001697301865,
- 0.021171601489186287,
- -0.012014335952699184,
- 0.0013973937602713704,
- -0.003323296085000038,
- 0.0030634000431746244,
- 0.010266871191561222,
- 0.022468144074082375,
- -0.03046451508998871,
- -0.041686926037073135,
- -0.03709908947348595,
- -0.011959723196923733,
- 0.017143702134490013,
- -0.024864627048373222,
- 0.04533357545733452,
- 0.05453597009181976,
- 0.06682172417640686,
- 0.0679997131228447,
- -0.02356329746544361,
- 0.05398323014378548,
- -0.034114088863134384,
- -0.021138271316885948,
- 0.06721987575292587,
- -0.041490472853183746,
- 0.02183973789215088,
- 0.0071631972678005695,
- 0.025765489786863327,
- 0.013171118684113026,
- 0.020578941330313683,
- 0.027102036401629448,
- -0.021320950239896774,
- -0.07671806216239929,
- 0.03570258244872093,
- 0.06442800909280777,
- -0.018869919702410698,
- -0.03865804895758629,
- -0.019010702148079872,
- -0.07813654839992523,
- -0.10358910262584686,
- -0.019596034660935402,
- -0.047220658510923386,
- 0.002636230317875743,
- -0.04646333307027817,
- 0.020538894459605217,
- -0.011582127772271633,
- -0.011270347982645035,
- -0.041805170476436615,
- 0.04650323465466499,
- -0.05517048016190529,
- 0.03974549099802971,
- 0.03728950396180153,
- -0.04630856215953827,
- 0.0019247002201154828,
- 0.01014571450650692,
- -0.03452107682824135,
- 0.03617028146982193,
- -0.011140329763293266,
- 0.04956686124205589,
- 0.01926291547715664,
- -0.007801092229783535,
- 0.05342228338122368,
- 0.0643867552280426,
- -0.0009988689562305808,
- -0.0385514572262764,
- -0.04789941385388374,
- 0.0885852724313736,
- -0.028752436861395836,
- 0.044453978538513184,
- 0.21480891108512878,
- 0.04712100327014923,
- -0.07098108530044556,
- -0.03582648187875748,
- -0.054301586002111435,
- -0.02589009515941143,
- -0.026470648124814034,
- -0.024345479905605316,
- 0.07311352342367172,
- 0.015260432846844196,
- 0.016708459705114365,
- -0.03298591822385788,
- 0.003462710417807102,
- -0.0046681747771799564,
- -0.0423092246055603,
- -0.026939522475004196,
- -0.0006556817097589374,
- 0.0510396771132946,
- -0.024875842034816742,
- -0.01907864771783352,
- 0.005654291715472937,
- -0.09117460995912552,
- -0.04683231934905052,
- -0.0176404882222414,
- 0.0322427861392498,
- -0.008341728709638119,
- -0.024534763768315315,
- -0.03294852375984192,
- -4.6207103360290204e-33,
- 0.06729280203580856,
- -0.14768078923225403,
- -0.00678763072937727,
- 0.04762749746441841,
- -0.03902234137058258,
- 0.05785081163048744,
- 0.07667757570743561,
- -0.07462368905544281,
- -0.08239664137363434,
- -0.0033773586619645357,
- -0.02441062405705452,
- 0.03627628833055496,
- 0.020338334143161774,
- -0.014858356676995754,
- 0.15189455449581146,
- 0.02582218311727047,
- 0.03990684822201729,
- 0.0440283939242363,
- -0.048424702137708664,
- -0.022056611254811287,
- -0.06738241761922836,
- 0.04224340617656708,
- -0.013558992184698582,
- 0.026354046538472176,
- 0.004279267508536577,
- -0.00838796328753233,
- -0.04605798423290253,
- -0.02354595810174942,
- 0.03430435061454773,
- 0.06221896782517433,
- 0.0026391008868813515,
- 0.00957468431442976,
- -0.06451218575239182,
- 0.023262130096554756,
- -0.00963454321026802,
- -0.004910134710371494,
- 0.00023448525462299585,
- -0.05294458940625191,
- 0.00009718204819364473,
- -0.002862953580915928,
- 0.010829905979335308,
- -0.005740860477089882,
- -0.0028804317116737366,
- -0.013497691601514816,
- 0.07789934426546097,
- -0.004861325491219759,
- 0.05451450124382973,
- 0.08496694266796112,
- -0.053826358169317245,
- 0.01870582439005375,
- -0.0800839215517044,
- 0.04821545630693436,
- -0.014878138899803162,
- -0.08775851875543594,
- 0.02218097448348999,
- 0.03001975826919079,
- -0.023097889497876167,
- -0.005779842380434275,
- 0.02525956556200981,
- 0.02879357524216175,
- 0.05375124141573906,
- 0.10783770680427551,
- 0.000851487391628325,
- -0.08737220615148544,
- -0.03003755584359169,
- -0.10133399069309235,
- 0.012946652248501778,
- -0.010806662030518055,
- 0.011788567528128624,
- -0.017271893098950386,
- -0.013867432251572609,
- 0.01775757409632206,
- 0.13926784694194794,
- 0.1438635140657425,
- 0.03461717441678047,
- 0.004460041876882315,
- -0.014930752106010914,
- 0.15027405321598053,
- -0.054263487458229065,
- -0.05115285888314247,
- -0.09622924774885178,
- -0.02954127825796604,
- -0.16572082042694092,
- 0.0626664087176323,
- 0.056237876415252686,
- 0.05830027908086777,
- 0.013424471020698547,
- -0.05573282018303871,
- 0.009916854090988636,
- -0.07490668445825577,
- -0.1703847497701645,
- -0.05072170868515968,
- 0.019867848604917526,
- 0.01689305156469345,
- -0.004187331069260836,
- 3.4422441885510603e-33,
- -0.016128404065966606,
- -0.026805303990840912,
- -0.028689121827483177,
- 0.017899060621857643,
- 0.003126687603071332,
- 0.0002495613298378885,
- 0.04219723492860794,
- 0.04710592329502106,
- -0.058846477419137955,
- 0.02795475721359253,
- -0.0688294917345047,
- -0.006216301117092371,
- 0.07832229882478714,
- 0.02240862138569355,
- 0.022809850051999092,
- 0.011853915639221668,
- 0.023229319602251053,
- -0.05130569636821747,
- 0.0042777894996106625,
- 0.041779618710279465,
- 0.010002844966948032,
- -0.08599239587783813,
- 0.019112426787614822,
- 0.05104263499379158,
- -0.06827092915773392,
- 0.0024575279094278812,
- 0.05444077029824257,
- 0.007307996042072773,
- -0.05492856726050377,
- -0.009634495712816715,
- 0.007314780261367559,
- -0.04542304947972298,
- -0.041237976402044296,
- 0.07884855568408966,
- -0.14004577696323395,
- -0.004663414321839809,
- 0.08118440210819244,
- -0.06004824861884117,
- 0.015186651609838009,
- -0.004652697592973709,
- 0.08420625329017639,
- -0.041866350919008255,
- -0.0039910306222736835,
- 0.17042747139930725,
- -0.047036707401275635,
- 0.006566999945789576,
- 0.037339430302381516,
- 0.06688207387924194,
- -0.05127110332250595,
- -0.002255902858451009,
- -0.047079119831323624,
- 0.025676967576146126,
- 0.020549457520246506,
- -0.036462847143411636,
- -0.0022114852908998728,
- -0.0062839072197675705,
- -0.022239161655306816,
- 0.04017962887883186,
- -0.0031074059661477804,
- 0.011957637034356594,
- 0.006865111645311117,
- 0.04591009393334389,
- -0.016660606488585472,
- 0.0361085943877697,
- 0.03228365629911423,
- 0.02889065258204937,
- 0.030323190614581108,
- 0.03695200756192207,
- 0.05039411410689354,
- -0.015270117670297623,
- 0.0622917078435421,
- 0.03923448547720909,
- -0.05054862052202225,
- -0.06981454789638519,
- -0.06475841999053955,
- 0.051881033927202225,
- -0.04714273288846016,
- 0.019356459379196167,
- -0.028741231188178062,
- 0.002272088313475251,
- -0.04592936858534813,
- -0.06275714933872223,
- -0.03672727197408676,
- 0.07371590286493301,
- 0.024902954697608948,
- 0.06094864010810852,
- -0.028700318187475204,
- 0.0323517769575119,
- 0.020421504974365234,
- -0.0642082616686821,
- -0.0516546294093132,
- 0.05644875764846802,
- -0.06269954144954681,
- -0.0726681724190712,
- 0.008870257996022701,
- -1.141004091209652e-8,
- 0.04470840096473694,
- 0.03531884029507637,
- -0.04809480533003807,
- -0.0069304704666137695,
- -0.030647359788417816,
- 0.044017937034368515,
- -0.0666751116514206,
- 0.05594567209482193,
- 0.03414427861571312,
- 0.10926169902086258,
- 0.04514003545045853,
- -0.062459010630846024,
- -0.022384095937013626,
- -0.037039294838905334,
- -0.012575116939842701,
- -0.03667691349983215,
- 0.009175332263112068,
- 0.02620253525674343,
- -0.03812852129340172,
- -0.050962768495082855,
- 0.014212737791240215,
- -0.007784594781696796,
- 0.044814277440309525,
- -0.026289591565728188,
- 0.06510825455188751,
- -0.0025844222400337458,
- -0.02470219135284424,
- 0.07264119386672974,
- 0.012760740704834461,
- -0.016786351799964905,
- 0.059513434767723083,
- 0.011287543922662735,
- -0.02104259841144085,
- 0.017748642712831497,
- 0.023298872634768486,
- -0.0389847531914711,
- -0.06617584824562073,
- 0.03800263628363609,
- -0.005864749196916819,
- -0.062353264540433884,
- 0.05074801668524742,
- -0.0933917909860611,
- 0.0677904561161995,
- 0.0013711844803765416,
- -0.005255772732198238,
- 0.03252626210451126,
- 0.07289700210094452,
- 0.005662721581757069,
- 0.023619474843144417,
- -0.005917949136346579,
- -0.09342753142118454,
- 0.03468969464302063,
- 0.014015735127031803,
- 0.058286163955926895,
- 0.05661332234740257,
- -0.005800076760351658,
- 0.01988976076245308,
- -0.04738575965166092,
- -0.022241106256842613,
- 0.13948306441307068,
- 0.11485721170902252,
- 0.06819511204957962,
- -0.08846744894981384,
- -0.018159519881010056
- ]
- },
- {
- "keyword": "zone",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.025014452636241913,
- -0.029111918061971664,
- -0.06654953956604004,
- 0.025128543376922607,
- 0.04157222807407379,
- -0.046906717121601105,
- 0.07117617875337601,
- -0.0011418488575145602,
- 0.020569654181599617,
- -0.028325077146291733,
- -0.048810068517923355,
- -0.11178871244192123,
- 0.028740169480443,
- -0.022772956639528275,
- 0.021286794915795326,
- -0.019931085407733917,
- -0.0020671705715358257,
- -0.07337132096290588,
- -0.014071115292608738,
- -0.08288272470235825,
- 0.05504203215241432,
- 0.0745563730597496,
- 0.032483335584402084,
- -0.059443164616823196,
- -0.03330135717988014,
- 0.0728519856929779,
- -0.02795562520623207,
- 0.11401798576116562,
- 0.04280681908130646,
- -0.07935310900211334,
- 0.005318765062838793,
- 0.064197838306427,
- 0.05811736360192299,
- -0.007400414906442165,
- -0.01821894384920597,
- -0.006613580975681543,
- -0.0493529736995697,
- -0.02787107229232788,
- -0.020993614569306374,
- 0.02026497572660446,
- 0.014430047012865543,
- -0.03282158821821213,
- 0.05530387535691261,
- 0.0688985139131546,
- 0.03526630997657776,
- 0.07748348265886307,
- 0.01404833234846592,
- 0.09295429289340973,
- 0.08875653147697449,
- -0.030887778848409653,
- 0.08677207678556442,
- -0.03768952190876007,
- -0.040572963654994965,
- 0.04973564296960831,
- 0.029366694390773773,
- 0.09091474860906601,
- -0.023807404562830925,
- 0.04779422655701637,
- 0.0326911099255085,
- -0.03131222724914551,
- 0.028619885444641113,
- 0.004239103756844997,
- -0.0628049224615097,
- 0.0006144009530544281,
- 0.08991554379463196,
- -0.0020490940660238266,
- -0.019970182329416275,
- 0.13012075424194336,
- -0.019603688269853592,
- -0.05924282968044281,
- -0.057176265865564346,
- 0.015768876299262047,
- 0.017197370529174805,
- -0.004585140850394964,
- 0.044638149440288544,
- 0.05685931071639061,
- -0.02611173503100872,
- -0.07182673364877701,
- 0.038794852793216705,
- -0.03485714644193649,
- -0.030454687774181366,
- -0.027065591886639595,
- 0.015673572197556496,
- 0.005784222856163979,
- -0.041360046714544296,
- -0.035188816487789154,
- -0.004465608857572079,
- 0.0306730717420578,
- 0.07183104753494263,
- 0.07717650383710861,
- -0.018325835466384888,
- -0.018764333799481392,
- 0.034796588122844696,
- 0.03462424874305725,
- -0.062239062041044235,
- 0.0072594014927744865,
- 0.04358760640025139,
- -0.010283049196004868,
- -0.04279075562953949,
- 0.16103117167949677,
- 0.030363691970705986,
- 0.0225394144654274,
- -0.1332036852836609,
- -0.0019950878340750933,
- 0.05063329637050629,
- -0.04699564352631569,
- -0.0034236654173582792,
- 0.11493141204118729,
- -0.021332163363695145,
- 0.08331368863582611,
- -0.06897622346878052,
- -0.0039868541061878204,
- 0.03313564881682396,
- -0.045357365161180496,
- -0.022478526458144188,
- -0.042513370513916016,
- 0.08190996199846268,
- -0.0169700775295496,
- 0.03298654407262802,
- -0.0662960410118103,
- -0.05527796596288681,
- 0.04804704710841179,
- -0.056353893131017685,
- -0.00012006397446384653,
- -0.02362869121134281,
- 0.0050544412806630135,
- -0.0435091108083725,
- -3.9554576752803784e-33,
- 0.05070700868964195,
- -0.0694957971572876,
- -0.01090120431035757,
- 0.0024309628643095493,
- 0.023878807201981544,
- 0.025683630257844925,
- -0.010690554045140743,
- -0.057443052530288696,
- -0.05672944709658623,
- 0.08137661963701248,
- 0.0159523356705904,
- 0.046482235193252563,
- 0.01583189330995083,
- -0.018053151667118073,
- 0.13762591779232025,
- 0.04166972637176514,
- 0.09267158061265945,
- -0.02211681753396988,
- -0.0367606095969677,
- -0.009126795455813408,
- -0.09552089869976044,
- 0.07204486429691315,
- 0.010661698877811432,
- 0.018477292731404305,
- -0.057788506150245667,
- 0.03782538324594498,
- -0.020289158448576927,
- -0.031082479283213615,
- -0.016131263226270676,
- 0.010780956596136093,
- -0.030882982537150383,
- -0.02809799090027809,
- -0.053177665919065475,
- 0.023809902369976044,
- 0.06324603408575058,
- 0.055657386779785156,
- 0.07977354526519775,
- -0.006735261529684067,
- -0.013396160677075386,
- -0.08921796083450317,
- 0.004068727605044842,
- -0.02790222316980362,
- -0.07979170978069305,
- 0.07825402915477753,
- 0.059776630252599716,
- -0.004588340409100056,
- 0.06354894489049911,
- -0.028268340975046158,
- 0.011052003130316734,
- -0.030751075595617294,
- -0.009857337921857834,
- 0.014944746159017086,
- -0.024221811443567276,
- -0.0327044352889061,
- -0.05967283248901367,
- -0.006834962870925665,
- 0.006253348197788,
- -0.03329253941774368,
- -0.0038702888414263725,
- 0.03409717231988907,
- 0.04940017685294151,
- -0.009091946296393871,
- 0.0070749614387750626,
- -0.009448784403502941,
- 0.00830641109496355,
- -0.12131532281637192,
- 0.022507410496473312,
- -0.00739075755700469,
- -0.005655393935739994,
- -0.025031549856066704,
- 0.013896533288061619,
- -0.004544071853160858,
- 0.10582546889781952,
- 0.09693018347024918,
- 0.004984268918633461,
- 0.050076745450496674,
- 0.0002411441528238356,
- 0.08645551651716232,
- -0.08216103911399841,
- -0.07309076935052872,
- -0.048001695424318314,
- 0.01920561119914055,
- -0.11604870855808258,
- -0.03960002586245537,
- 0.059192199259996414,
- 0.03704627603292465,
- -0.061943426728248596,
- -0.007921919226646423,
- -0.09824105352163315,
- -0.07022009789943695,
- -0.08640697598457336,
- -0.06216791272163391,
- 0.1143147349357605,
- 0.01368699874728918,
- -0.04528328403830528,
- 3.3868335889052055e-33,
- -0.06195598840713501,
- -0.03065185807645321,
- -0.08039605617523193,
- 0.09263569116592407,
- -0.006762323901057243,
- 0.04354682192206383,
- 0.0731595903635025,
- 0.11096757650375366,
- 0.023245034739375114,
- 0.02190791256725788,
- -0.06434151530265808,
- 0.031968992203474045,
- 0.10483354330062866,
- -0.00903185736387968,
- 0.0367378294467926,
- -0.0017497388180345297,
- 0.007588423788547516,
- 0.00014600456051994115,
- -0.03840126469731331,
- -0.030372660607099533,
- 0.008697522804141045,
- -0.10693224519491196,
- -0.027130717411637306,
- 0.07407031208276749,
- -0.05615582689642906,
- 0.0693158432841301,
- -0.04157187044620514,
- 0.06504838913679123,
- -0.12153930962085724,
- -0.00508118886500597,
- 0.035833608359098434,
- -0.037877313792705536,
- 0.04107578098773956,
- 0.037013377994298935,
- -0.043795906007289886,
- 0.05557741969823837,
- 0.07487845420837402,
- -0.00977854523807764,
- -0.055832039564847946,
- -0.04993608966469765,
- -0.009416170418262482,
- 0.008684788830578327,
- -0.04392387345433235,
- 0.10186970233917236,
- -0.016540946438908577,
- 0.03435033932328224,
- 0.06449775397777557,
- 0.06982511281967163,
- -0.03794724494218826,
- 0.08269622921943665,
- -0.05739850550889969,
- -0.016155555844306946,
- -0.03624968230724335,
- -0.003982028923928738,
- -0.009162702597677708,
- -0.0022251682821661234,
- -0.04918510839343071,
- 0.005308360327035189,
- 0.01934501715004444,
- 0.04246705397963524,
- 0.07107221335172653,
- 0.027231626212596893,
- -0.04741622507572174,
- 0.0956295058131218,
- 0.03928172588348389,
- 0.027750233188271523,
- 0.028766566887497902,
- 0.028974061831831932,
- 0.025395484641194344,
- 0.012902542017400265,
- -0.016046306118369102,
- 0.12043363600969315,
- -0.09710357338190079,
- 0.0023849133867770433,
- -0.014590965583920479,
- 0.005992608610540628,
- 0.03170428052544594,
- 0.021541059017181396,
- -0.054872844368219376,
- 0.03661784529685974,
- -0.07789518684148788,
- -0.02777981199324131,
- -0.024723434820771217,
- 0.06887559592723846,
- 0.07431193441152573,
- 0.048671361058950424,
- 0.08237148821353912,
- 0.04338531941175461,
- -0.014014875516295433,
- -0.02252241037786007,
- 0.01222367212176323,
- 0.010044126771390438,
- -0.10504014045000076,
- -0.07577705383300781,
- 0.002162329154089093,
- -1.0586466814288542e-8,
- -0.049403633922338486,
- 0.038813259452581406,
- -0.10905731469392776,
- -0.06495805084705353,
- 0.016596637666225433,
- 0.01946128159761429,
- -0.07380139082670212,
- -0.008226138539612293,
- 0.021921304985880852,
- 0.03772557154297829,
- 0.05591941624879837,
- -0.055280447006225586,
- -0.014273560605943203,
- 0.004472832661122084,
- 0.028425665572285652,
- -0.06152694672346115,
- 0.0371839739382267,
- 0.02528282254934311,
- -0.06758902221918106,
- -0.0016848996747285128,
- -0.004130019806325436,
- 0.007233764044940472,
- -0.016307411715388298,
- 0.0065717678517103195,
- 0.05554817616939545,
- -0.06471090018749237,
- -0.030633145943284035,
- 0.07654792815446854,
- 0.03885859623551369,
- 0.025177232921123505,
- 0.024634629487991333,
- 0.03366778790950775,
- -0.0033639278262853622,
- -0.008323797024786472,
- -0.055192165076732635,
- -0.02513863705098629,
- 0.02067924290895462,
- 0.018454309552907944,
- -0.0001052778388839215,
- -0.01049690693616867,
- -0.00643901014700532,
- -0.07527568191289902,
- 0.023666609078645706,
- -0.02820020355284214,
- -0.08646302670240402,
- 0.04559735953807831,
- 0.09796777367591858,
- 0.012520736083388329,
- 0.0004471339052543044,
- -0.08040384948253632,
- -0.03260469436645508,
- 0.06531567126512527,
- 0.033430106937885284,
- 0.01136146578937769,
- 0.026741420850157738,
- -0.03270389884710312,
- -0.0477609820663929,
- -0.01669735461473465,
- -0.03929546847939491,
- 0.01614699885249138,
- 0.031571321189403534,
- 0.019396357238292694,
- -0.07375520467758179,
- -0.03720460459589958
- ]
- },
- {
- "keyword": "district",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.02939595840871334,
- 0.004620524123311043,
- -0.008891843259334564,
- -0.02051457017660141,
- -0.058643508702516556,
- -0.01684637740254402,
- -0.03250347822904587,
- -0.009843344800174236,
- -0.032196030020713806,
- -0.03424509987235069,
- 0.09918995201587677,
- -0.0882757306098938,
- 0.035378798842430115,
- -0.08086652308702469,
- -0.015892941504716873,
- -0.004871412180364132,
- 0.06736733764410019,
- 0.008206966333091259,
- 0.0024004762526601553,
- -0.043579671531915665,
- -0.07626071572303772,
- 0.032454963773489,
- 0.032952308654785156,
- 0.01544063352048397,
- 0.0019409479573369026,
- 0.10832492262125015,
- 0.05587531626224518,
- 0.035276222974061966,
- -0.02617577463388443,
- -0.06193310022354126,
- 0.0231491569429636,
- 0.0343417264521122,
- 0.025039130821824074,
- 0.003974448423832655,
- 0.022833550348877907,
- 0.03742749243974686,
- 0.004082970786839724,
- 0.022770939394831657,
- 0.06835336238145828,
- -0.021911371499300003,
- -0.04724271222949028,
- -0.017440007999539375,
- -0.001442249515093863,
- -0.004431781359016895,
- -0.08087702095508575,
- 0.0036348868161439896,
- 0.01871568337082863,
- 0.006062771659344435,
- 0.015776658430695534,
- -0.03273456171154976,
- 0.06872817873954773,
- 0.019026843830943108,
- 0.008728108368813992,
- 0.06992795318365097,
- 0.020816700533032417,
- 0.006929510738700628,
- 0.010255295783281326,
- 0.045677829533815384,
- -0.005826642271131277,
- 0.002256667008623481,
- 0.029773391783237457,
- -0.00362165248952806,
- -0.0791463553905487,
- -0.015935564413666725,
- -0.00865174550563097,
- -0.05161968246102333,
- -0.04144188016653061,
- -0.02272377721965313,
- -0.02716316096484661,
- -0.18103748559951782,
- 0.027575170621275902,
- -0.03026088885962963,
- 0.03778509795665741,
- -0.022187836468219757,
- 0.023916805163025856,
- -0.02577890269458294,
- 0.03255085274577141,
- 0.06790832430124283,
- 0.13473409414291382,
- -0.048600856214761734,
- 0.009633255191147327,
- -0.03155472129583359,
- -0.009151778183877468,
- 0.008483822457492352,
- -0.015462442301213741,
- 0.009209433570504189,
- -0.002753780921921134,
- -0.013423625379800797,
- 0.0021597070153802633,
- 0.00955394096672535,
- -0.027213893830776215,
- 0.08034929633140564,
- 0.0026639143470674753,
- 0.0024902578443288803,
- -0.1317354142665863,
- -0.02794112078845501,
- -0.00711439922451973,
- -0.010117157362401485,
- 0.002402188489213586,
- 0.21902160346508026,
- -0.06502493470907211,
- 0.018041083589196205,
- -0.041202787309885025,
- -0.02036195807158947,
- -0.012606450356543064,
- -0.08658548444509506,
- -0.0015892218798398972,
- 0.07296941429376602,
- -0.032769475132226944,
- -0.019472060725092888,
- 0.026558775454759598,
- -0.05380949005484581,
- 0.03322665020823479,
- 0.06945459544658661,
- 0.04376441612839699,
- -0.005635073408484459,
- 0.0586833730340004,
- 0.02678573504090309,
- -0.08929164707660675,
- 0.006593185476958752,
- -0.012105987407267094,
- 0.01216094195842743,
- -0.055907972157001495,
- 0.03252425417304039,
- 0.04807109385728836,
- -0.020624572411179543,
- -0.005455062724649906,
- -4.958237743162301e-33,
- 0.06850267946720123,
- -0.06678658723831177,
- -0.04733801633119583,
- 0.004954787436872721,
- -0.010070929303765297,
- -0.008702483028173447,
- 0.031353071331977844,
- -0.02435622736811638,
- -0.01374802365899086,
- -0.03836071491241455,
- 0.007224574685096741,
- -0.073471799492836,
- -0.03132961317896843,
- -0.026471780613064766,
- 0.10973916947841644,
- 0.054599445313215256,
- -0.034324027597904205,
- -0.028378579765558243,
- -0.08896377682685852,
- 0.005502147600054741,
- 0.00238152127712965,
- 0.10377172380685806,
- 0.0009243348031304777,
- 0.002803836017847061,
- -0.010707858018577099,
- -0.018095625564455986,
- 0.01905502751469612,
- 0.025910696014761925,
- 0.0506112314760685,
- 0.020274609327316284,
- 0.04653364047408104,
- 0.05937214568257332,
- -0.03331032022833824,
- 0.024682534858584404,
- -0.00869208388030529,
- 0.05785715579986572,
- -0.009119234047830105,
- -0.017808450385928154,
- -0.008337937295436859,
- 0.0032121448311954737,
- -0.03285782039165497,
- -0.04826866835355759,
- 0.07398951053619385,
- 0.049028344452381134,
- -0.005181425716727972,
- 0.04728172346949577,
- 0.012465856969356537,
- 0.03477533161640167,
- 0.00874674879014492,
- 0.0057344683445990086,
- -0.0012775628129020333,
- 0.0371750183403492,
- -0.013104275800287724,
- 0.024182938039302826,
- -0.058411721140146255,
- -0.05456329882144928,
- -0.02795194275677204,
- 0.004462379030883312,
- 0.07185006141662598,
- 0.029044881463050842,
- 0.017176447436213493,
- 0.1168641522526741,
- -0.031050026416778564,
- 0.03576930984854698,
- -0.07804039120674133,
- -0.1247783750295639,
- -0.0008631162927486002,
- -0.043323054909706116,
- 0.09464087337255478,
- -0.002753389300778508,
- 0.038443513214588165,
- 0.0064379326067864895,
- 0.15411609411239624,
- 0.054494455456733704,
- -0.03595440834760666,
- -0.017848407849669456,
- -0.019078530371189117,
- 0.05833569914102554,
- -0.11691233515739441,
- -0.024229787290096283,
- -0.029715027660131454,
- -0.06640075892210007,
- -0.09460532665252686,
- 0.022138062864542007,
- 0.13273979723453522,
- -0.054399602115154266,
- -0.036156028509140015,
- -0.09124486148357391,
- 0.001286694430746138,
- -0.042255695909261703,
- -0.1516731232404709,
- -0.0015760265523567796,
- 0.031206956133246422,
- 0.06044282391667366,
- 0.0142996646463871,
- 2.7868138851294924e-33,
- -0.011052727699279785,
- -0.018244078382849693,
- -0.022211557254195213,
- 0.028063548728823662,
- -0.020354880020022392,
- 0.054369937628507614,
- -0.04306056722998619,
- 0.03609379008412361,
- -0.03171304613351822,
- -0.017698941752314568,
- -0.11875294148921967,
- 0.013461507856845856,
- 0.015057675540447235,
- 0.03885296732187271,
- 0.05801079422235489,
- 0.0313139446079731,
- 0.05495493486523628,
- -0.01977931149303913,
- -0.043042492121458054,
- -0.030484721064567566,
- 0.005810410249978304,
- -0.0009029300999827683,
- -0.11863865703344345,
- 0.06812172383069992,
- -0.0020139506086707115,
- 0.007110873237252235,
- 0.0017071746988222003,
- -0.019689373672008514,
- -0.061902958899736404,
- 0.01672670990228653,
- -0.0278107188642025,
- -0.09360985457897186,
- -0.06143141910433769,
- 0.07689017057418823,
- -0.10094577074050903,
- 0.022044532001018524,
- 0.07229451090097427,
- -0.069120854139328,
- -0.04938912391662598,
- 0.028801850974559784,
- 0.020517729222774506,
- -0.11456090956926346,
- -0.028320452198386192,
- 0.1877603530883789,
- -0.01612582616508007,
- -0.032268159091472626,
- -0.021189674735069275,
- 0.026598354801535606,
- -0.029177362099289894,
- 0.0018750978633761406,
- -0.082828588783741,
- 0.05323589965701103,
- 0.05108015239238739,
- 0.014914709143340588,
- 0.07047787308692932,
- 0.04466814920306206,
- 0.03931386023759842,
- 0.043472304940223694,
- 0.03994816169142723,
- 0.03773149847984314,
- 0.049584951251745224,
- 0.006859700195491314,
- -0.006617647595703602,
- 0.04669293388724327,
- -0.045172758400440216,
- -0.023799030110239983,
- -0.0037482958287000656,
- -0.016569064930081367,
- 0.08104044198989868,
- 0.032788775861263275,
- 0.02983696758747101,
- 0.03185586631298065,
- -0.03247195854783058,
- -0.023480989038944244,
- -0.022041164338588715,
- 0.005909101106226444,
- 0.024845100939273834,
- 0.10637503862380981,
- -0.022969458252191544,
- 0.0705527812242508,
- 0.011805951595306396,
- -0.04663848504424095,
- -0.015853144228458405,
- 0.028592050075531006,
- -0.008072245866060257,
- 0.05369396507740021,
- 0.11695685982704163,
- -0.021906154230237007,
- -0.026794303208589554,
- -0.023138990625739098,
- 0.00042541028233245015,
- 0.06534747779369354,
- -0.020277658477425575,
- -0.07439709454774857,
- -0.010694248601794243,
- -1.1229699836690088e-8,
- 0.06820235401391983,
- -0.0039991033263504505,
- -0.08121556788682938,
- 0.020793292671442032,
- 0.03269534930586815,
- 0.0012872634688392282,
- -0.047829341143369675,
- 0.11831686645746231,
- -0.004047963302582502,
- 0.1100773811340332,
- 0.05710971727967262,
- 0.005174162797629833,
- -0.05193447321653366,
- -0.05040088668465614,
- -0.023431818932294846,
- -0.0580805242061615,
- -0.044164180755615234,
- 0.07212775200605392,
- -0.059065863490104675,
- -0.023475512862205505,
- 0.005409757606685162,
- -0.00007952279702294618,
- -0.017599031329154968,
- 0.020823311060667038,
- 0.023283377289772034,
- -0.03937648981809616,
- -0.014060234650969505,
- 0.016809094697237015,
- -0.022685755044221878,
- 0.009369609877467155,
- 0.009511727839708328,
- 0.048479385673999786,
- -0.01605217345058918,
- -0.04635975509881973,
- -0.002389674773439765,
- -0.02877013012766838,
- -0.024326153099536896,
- -0.020404161885380745,
- 0.029116129502654076,
- -0.06757393479347229,
- -0.004860502202063799,
- -0.08259529620409012,
- 0.029647285118699074,
- -0.0020816929172724485,
- 0.03840490058064461,
- 0.01685984432697296,
- 0.11369112133979797,
- -0.025309912860393524,
- 0.1146562471985817,
- 0.0157756470143795,
- -0.0973954051733017,
- 0.03380745276808739,
- -0.013340519741177559,
- 0.04827852174639702,
- -0.0031778679694980383,
- 0.032644521445035934,
- -0.055435724556446075,
- -0.02480868063867092,
- -0.06735094636678696,
- -0.013174641877412796,
- 0.09673445671796799,
- 0.10672029852867126,
- -0.0821143314242363,
- -0.0043602134101092815
- ]
- },
- {
- "keyword": "city",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.048043422400951385,
- 0.07746376842260361,
- -0.039715830236673355,
- 0.05498628318309784,
- -0.025866277515888214,
- 0.00849043857306242,
- 0.03766155242919922,
- -0.044768404215574265,
- -0.07183919847011566,
- 0.006403216626495123,
- 0.04888315871357918,
- -0.14213182032108307,
- -0.02926938235759735,
- 0.02818603813648224,
- 0.0019260372500866652,
- 0.007815077900886536,
- 0.03231944143772125,
- 0.013797015883028507,
- 0.02246669866144657,
- -0.04294561967253685,
- -0.07088308036327362,
- -0.0024823788553476334,
- 0.02024771459400654,
- 0.051222581416368484,
- -0.0008182837627828121,
- 0.09949745237827301,
- 0.010565763339400291,
- 0.07446662336587906,
- -0.016425007954239845,
- -0.07614447921514511,
- -0.002147108782082796,
- 0.026326991617679596,
- 0.10078148543834686,
- -0.038210056722164154,
- 0.03322787955403328,
- 0.01843235269188881,
- -0.03212137520313263,
- -0.009983053430914879,
- 0.012052798643708229,
- 0.0197589173913002,
- 0.031607095152139664,
- -0.06856006383895874,
- -0.026371372863650322,
- -0.04647138714790344,
- -0.01530124619603157,
- -0.0035961836110800505,
- 0.061131801456213,
- 0.04227462410926819,
- 0.07139299809932709,
- -0.020176338031888008,
- 0.023137370124459267,
- 0.013012892566621304,
- -0.03092888928949833,
- -0.011628514155745506,
- -0.02443322166800499,
- 0.035723958164453506,
- -0.035044774413108826,
- 0.05648647993803024,
- -0.002792714163661003,
- -0.06412175297737122,
- 0.06804951280355453,
- -0.0141452020034194,
- -0.10027182102203369,
- 0.055721089243888855,
- 0.05702720209956169,
- 0.018108630552887917,
- 0.004243200179189444,
- 0.08110588788986206,
- 0.003429186064749956,
- -0.14090755581855774,
- 0.055636290460824966,
- -0.06837309151887894,
- 0.031045466661453247,
- -0.002593196928501129,
- 0.0810183435678482,
- -0.018069155514240265,
- -0.012105646543204784,
- -0.03489217907190323,
- 0.058663543313741684,
- 0.01566450111567974,
- 0.03471662476658821,
- -0.039021700620651245,
- -0.027738790959119797,
- 0.05962393805384636,
- -0.04639014974236488,
- 0.04126708582043648,
- 0.03891477361321449,
- 0.023936375975608826,
- 0.027748839929699898,
- 0.01935221068561077,
- -0.036931756883859634,
- 0.025639289990067482,
- -0.017050595954060555,
- -0.019457319751381874,
- -0.0824672281742096,
- 0.039566051214933395,
- -0.013193903490900993,
- -0.01169340405613184,
- -0.023878885433077812,
- 0.21733783185482025,
- -0.04375312104821205,
- 0.02284163236618042,
- 0.021542010828852654,
- 0.04109982028603554,
- 0.05739990621805191,
- -0.06386891007423401,
- -0.051455315202474594,
- 0.04298476502299309,
- -0.07669889181852341,
- 0.039368413388729095,
- 0.010831698775291443,
- 0.01404862105846405,
- -0.07712116092443466,
- -0.010107884183526039,
- 0.000929525529500097,
- 0.07660303264856339,
- 0.04019130393862724,
- 0.01758316345512867,
- -0.06771843135356903,
- -0.01957889087498188,
- -0.028268538415431976,
- -0.02700306847691536,
- -0.05913340672850609,
- 0.042370691895484924,
- -0.05262758210301399,
- -0.07549336552619934,
- 0.015330053865909576,
- -5.350261068399703e-33,
- 0.022198369726538658,
- -0.058688342571258545,
- 0.0413181446492672,
- 0.028615400195121765,
- -0.0025919529143720865,
- -0.04566143453121185,
- 0.013346858322620392,
- -0.019371159374713898,
- -0.03060200996696949,
- 0.0032486917916685343,
- 0.019449539482593536,
- -0.07193868607282639,
- 0.041577424854040146,
- -0.030340369790792465,
- 0.1332220435142517,
- 0.0625937357544899,
- 0.0665736049413681,
- -0.020584512501955032,
- -0.05869971588253975,
- 0.0012627954129129648,
- -0.04253501817584038,
- 0.03766752406954765,
- -0.02648705616593361,
- -0.08118390291929245,
- -0.0629732608795166,
- -0.029855960980057716,
- -0.02995108999311924,
- 0.011935903690755367,
- 0.08007971942424774,
- 0.010343422181904316,
- 0.026479270309209824,
- 0.11455594003200531,
- 0.03021419048309326,
- -0.0076811593025922775,
- 0.07036122679710388,
- 0.07232650369405746,
- -0.01780558004975319,
- -0.08273835480213165,
- -0.04853636026382446,
- -0.010154714807868004,
- -0.046458035707473755,
- -0.00844861101359129,
- -0.040328703820705414,
- 0.044813960790634155,
- 0.025782031938433647,
- 0.01944884844124317,
- -0.05249051749706268,
- -0.027778541669249535,
- 0.06208718568086624,
- -0.0583682581782341,
- 0.02332277037203312,
- 0.022102002054452896,
- -0.16336855292320251,
- 0.06964899599552155,
- 0.03073824755847454,
- -0.004429705440998077,
- -0.027276664972305298,
- -0.027669182047247887,
- 0.07487685978412628,
- 0.05019102618098259,
- -0.027674181386828423,
- 0.1429664045572281,
- -0.02413400262594223,
- 0.034884676337242126,
- 0.030527940019965172,
- -0.04235491156578064,
- 0.01634768396615982,
- 0.014199737459421158,
- 0.06432735919952393,
- 0.03363467752933502,
- 0.00040521560003980994,
- -0.012665451504290104,
- 0.14068271219730377,
- 0.04462132230401039,
- 0.025858266279101372,
- 0.03768908977508545,
- -0.05613631755113602,
- 0.06337793916463852,
- -0.07086149603128433,
- 0.04819115996360779,
- -0.017824668437242508,
- -0.02036987990140915,
- -0.09193351119756699,
- 0.06293954700231552,
- 0.1180114671587944,
- 0.02979290671646595,
- 0.0021453143563121557,
- -0.1070692390203476,
- -0.005657360889017582,
- 0.011538772843778133,
- -0.13852961361408234,
- -0.017387954518198967,
- 0.013545027934014797,
- 0.00286160409450531,
- -0.030445309355854988,
- 3.4031108795862325e-33,
- 0.009622801095247269,
- -0.11893723905086517,
- 0.0030154138803482056,
- 0.052334535866975784,
- -0.04411199316382408,
- -0.005152485333383083,
- -0.01261134259402752,
- 0.009740329347550869,
- -0.017500266432762146,
- 0.06672469526529312,
- -0.10129411518573761,
- -0.07528983056545258,
- 0.11482517421245575,
- -0.0008019260130822659,
- 0.056720443069934845,
- 0.06278292089700699,
- 0.06364314258098602,
- -0.006002782378345728,
- -0.08734111487865448,
- 0.04414087533950806,
- -0.01439361646771431,
- -0.07478061318397522,
- -0.08836200088262558,
- -0.06127395108342171,
- -0.051076147705316544,
- -0.0026832071598619223,
- -0.044004879891872406,
- -0.047156501561403275,
- -0.044281307607889175,
- -0.0302916020154953,
- -0.0594000369310379,
- -0.04817545413970947,
- -0.04580732807517052,
- 0.04527134820818901,
- -0.022783998399972916,
- 0.13479743897914886,
- 0.002033625030890107,
- -0.03383544832468033,
- -0.0007441676571033895,
- -0.026574736461043358,
- -0.03766147419810295,
- 0.002662352519109845,
- -0.0449705645442009,
- 0.11964688450098038,
- 0.030253086239099503,
- 0.011441145092248917,
- -0.10276956111192703,
- 0.02675512246787548,
- 0.010558348149061203,
- -0.031334809958934784,
- 0.0018727664137259126,
- 0.030018266290426254,
- -0.04705175384879112,
- 0.003210470313206315,
- 0.004168631508946419,
- 0.07167048007249832,
- -0.012951216660439968,
- 0.04454849287867546,
- -0.023963283747434616,
- -0.04909752309322357,
- 0.01426602341234684,
- -0.016704214736819267,
- -0.07522514462471008,
- 0.09136594086885452,
- -0.03138217329978943,
- 0.025946123525500298,
- 0.04956783726811409,
- -0.013404046185314655,
- 0.028410982340574265,
- -0.03730656951665878,
- 0.015565084293484688,
- 0.06919557601213455,
- -0.04990832880139351,
- 0.04132241755723953,
- -0.054512351751327515,
- -0.03259051963686943,
- 0.03986966982483864,
- 0.04973811283707619,
- 0.04382043331861496,
- 0.0037668931763619184,
- 0.03782372921705246,
- 0.02096010558307171,
- -0.07914678752422333,
- 0.0515427365899086,
- 0.019961971789598465,
- 0.05755256861448288,
- 0.07248367369174957,
- 0.039410606026649475,
- 0.0269888024777174,
- 0.002411015098914504,
- 0.009183729067444801,
- 0.07174769788980484,
- -0.09113314002752304,
- -0.07940645515918732,
- -0.013531938195228577,
- -1.2055667575339157e-8,
- -0.03413110971450806,
- 0.04271872714161873,
- -0.08684173226356506,
- 0.025965161621570587,
- 0.08248396217823029,
- 0.01771249994635582,
- 0.007416473235934973,
- 0.03127823397517204,
- -0.013163416646420956,
- 0.09399550408124924,
- 0.02074083313345909,
- 0.04085156321525574,
- -0.019493911415338516,
- -0.009609658271074295,
- -0.04483266547322273,
- -0.07467260956764221,
- 0.0012732065515592694,
- -0.004964410327374935,
- 0.016228703781962395,
- 0.0019790767692029476,
- 0.01222577877342701,
- 0.02014487236738205,
- -0.03395037725567818,
- 0.0052906665951013565,
- 0.019515261054039,
- -0.08729250729084015,
- -0.02523595467209816,
- 0.035450100898742676,
- -0.005899436771869659,
- -0.017498645931482315,
- 0.03408876806497574,
- 0.03139529377222061,
- -0.019859619438648224,
- -0.0022561554796993732,
- 0.045888692140579224,
- -0.06462585180997849,
- 0.012848018668591976,
- -0.010362036526203156,
- -0.026654310524463654,
- -0.06977629661560059,
- 0.010041909292340279,
- -0.038539424538612366,
- 0.028634674847126007,
- 0.012747920118272305,
- 0.010868576355278492,
- 0.0013837609440088272,
- 0.07964799553155899,
- -0.04723954200744629,
- -0.022432517260313034,
- -0.024704452604055405,
- -0.09019167721271515,
- 0.02604796551167965,
- 0.026463406160473824,
- 0.02344571426510811,
- 0.040331121534109116,
- -0.06866113096475601,
- -0.0517587810754776,
- -0.033809810876846313,
- -0.07356713712215424,
- 0.029028546065092087,
- 0.08996836096048355,
- 0.022305672988295555,
- -0.03269495442509651,
- 0.05380730703473091
- ]
- },
- {
- "keyword": "town",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.023520121350884438,
- 0.05164462327957153,
- -0.09098182618618011,
- 0.05545495077967644,
- -0.020268894731998444,
- -0.028260111808776855,
- 0.08853118121623993,
- -0.04200432077050209,
- -0.06405999511480331,
- -0.04269871860742569,
- 0.09395351260900497,
- -0.1142839714884758,
- 0.013031009584665298,
- 0.002102595753967762,
- 0.03796326741576195,
- -0.004080424550920725,
- 0.014082871377468109,
- 0.013692819513380527,
- 0.05326391011476517,
- -0.08977837860584259,
- -0.1367623656988144,
- 0.05195165053009987,
- -0.0041239457204937935,
- 0.0711018443107605,
- -0.019143570214509964,
- 0.07589538395404816,
- 0.009573148563504219,
- 0.041160956025123596,
- -0.041315119713544846,
- -0.08805934339761734,
- -0.03317395970225334,
- 0.03971592336893082,
- 0.10261167585849762,
- -0.03213052824139595,
- 0.01501777209341526,
- 0.03588685020804405,
- -0.007886975072324276,
- -0.024524100124835968,
- 0.02234102226793766,
- -0.008198069408535957,
- -0.031025689095258713,
- -0.044563598930835724,
- 0.026862192898988724,
- -0.03629809245467186,
- -0.0430312305688858,
- 0.006947972346097231,
- 0.037850271910429,
- 0.001324045704677701,
- 0.06319252401590347,
- -0.007485103327780962,
- 0.02758907712996006,
- 0.01613541506230831,
- -0.08277832716703415,
- 0.038923751562833786,
- -0.021450182422995567,
- 0.04163641855120659,
- -0.03406744450330734,
- 0.05670711398124695,
- -0.017135130241513252,
- -0.060823313891887665,
- 0.03872453421354294,
- -0.02160102128982544,
- -0.06337973475456238,
- 0.05651663616299629,
- 0.014736386947333813,
- 0.0018420853884890676,
- -0.02656012959778309,
- 0.036918748170137405,
- 0.025141755118966103,
- -0.15859271585941315,
- 0.05859088897705078,
- -0.073619544506073,
- 0.03552233427762985,
- -0.02993461675941944,
- 0.02915588766336441,
- -0.04057236760854721,
- -0.020624058321118355,
- -0.008524763397872448,
- 0.06440660357475281,
- 0.005207981448620558,
- 0.0002665881474968046,
- -0.032671988010406494,
- -0.012882906943559647,
- -0.004901675507426262,
- -0.054313983768224716,
- 0.029716627672314644,
- 0.025133365765213966,
- 0.00020153739023953676,
- 0.0420105941593647,
- 0.010502306744456291,
- -0.05039384961128235,
- 0.03489154949784279,
- -0.045221809297800064,
- 0.021478600800037384,
- -0.06661979109048843,
- 0.003003746969625354,
- 0.009150228463113308,
- 0.020252764225006104,
- -0.03151021525263786,
- 0.24052539467811584,
- -0.006078621838241816,
- 0.01392095535993576,
- -0.008338414132595062,
- -0.055541325360536575,
- 0.02424675226211548,
- -0.013867571018636227,
- -0.028572937473654747,
- 0.023754963651299477,
- -0.02349678799510002,
- 0.058440230786800385,
- 0.033179983496665955,
- 0.005728424526751041,
- -0.05845239385962486,
- -0.032815296202898026,
- -0.007276398129761219,
- 0.013315253891050816,
- 0.07667060196399689,
- 0.0033874984364956617,
- -0.11996268481016159,
- 0.09006211161613464,
- 0.0007062098593451083,
- 0.055861301720142365,
- -0.017628178000450134,
- 0.008445296436548233,
- -0.005946807097643614,
- -0.03315786272287369,
- 0.043370459228754044,
- -5.449154306108428e-33,
- 0.015398174524307251,
- -0.032390497624874115,
- -0.016860149800777435,
- 0.04074552655220032,
- 0.021255960687994957,
- 0.0010210598120465875,
- 0.013590654358267784,
- -0.021003376692533493,
- -0.019020481035113335,
- -0.01135590672492981,
- 0.03919383883476257,
- -0.06230607256293297,
- 0.006551072467118502,
- -0.07133449614048004,
- 0.09987455606460571,
- -0.01046847552061081,
- 0.04891708493232727,
- -0.06142149120569229,
- -0.08788389712572098,
- -0.013734216801822186,
- -0.020543048158288002,
- 0.02149180695414543,
- -0.03732156753540039,
- -0.027661580592393875,
- -0.10784748941659927,
- -0.029535826295614243,
- -0.01043279655277729,
- 0.04408340901136398,
- 0.09768509119749069,
- 0.031793609261512756,
- 0.053128618746995926,
- 0.09344188868999481,
- 0.017952140420675278,
- -0.018879516050219536,
- 0.022341476753354073,
- 0.018736427649855614,
- -0.06958433240652084,
- -0.10064557939767838,
- -0.029556643217802048,
- 0.01773696392774582,
- -0.013445807620882988,
- 0.014935602433979511,
- -0.006240869406610727,
- 0.0011426014825701714,
- -0.0006237880443222821,
- -0.004460930358618498,
- 0.001437499071471393,
- 0.018468787893652916,
- -0.0017197193810716271,
- -0.0014538164250552654,
- -0.02491098828613758,
- -0.05109969154000282,
- -0.10838226974010468,
- 0.12191557884216309,
- 0.01487641129642725,
- -0.02854059636592865,
- 0.012954987585544586,
- -0.02568625472486019,
- 0.09778847545385361,
- 0.029283851385116577,
- 0.05460115894675255,
- 0.10847561061382294,
- 0.04447764530777931,
- -0.008346854709088802,
- 0.0276260357350111,
- -0.06457599252462387,
- 0.01777309738099575,
- 0.007894853129982948,
- -0.0009699268848635256,
- -0.007455221377313137,
- 0.0650201365351677,
- -0.050749365240335464,
- 0.0889604240655899,
- 0.0830278992652893,
- 0.004372552502900362,
- 0.05490642413496971,
- -0.048618562519550323,
- 0.08577806502580643,
- -0.12092635035514832,
- 0.01579905115067959,
- 0.02270006574690342,
- -0.02616601251065731,
- -0.10025246441364288,
- 0.0764046236872673,
- 0.1256778985261917,
- 0.004667213652282953,
- -0.0038036471232771873,
- -0.12641145288944244,
- -0.0468510240316391,
- -0.018052980303764343,
- -0.12839756906032562,
- 0.009687873534858227,
- 0.03490540757775307,
- -0.009554020129144192,
- -0.004160169046372175,
- 4.199033696424188e-33,
- 0.026895662769675255,
- -0.07944652438163757,
- 0.026617808267474174,
- 0.010288594290614128,
- 0.009795859456062317,
- -0.009548547677695751,
- -0.0007469471311196685,
- -0.031685296446084976,
- -0.00836960133165121,
- 0.08265190571546555,
- -0.16208641231060028,
- -0.05417822673916817,
- 0.04742889478802681,
- -0.010800572112202644,
- 0.03809778019785881,
- 0.06833771616220474,
- 0.10210663080215454,
- 0.019718574360013008,
- -0.008012254722416401,
- 0.020424088463187218,
- -0.03255440294742584,
- -0.08749639242887497,
- -0.11123684048652649,
- -0.019339216873049736,
- -0.01998303085565567,
- 0.02261558547616005,
- -0.09292396903038025,
- -0.024517005309462547,
- -0.033320531249046326,
- 0.046078238636255264,
- -0.07744864374399185,
- -0.06357475370168686,
- 0.0008808193961158395,
- 0.05950307473540306,
- -0.04474660009145737,
- 0.1279742568731308,
- 0.07519716024398804,
- -0.021480077877640724,
- -0.03902209550142288,
- -0.02050001174211502,
- 0.0014701406471431255,
- 0.01397208496928215,
- -0.031404972076416016,
- 0.1522211730480194,
- 0.01678934134542942,
- -0.016482075676321983,
- -0.024459093809127808,
- 0.03147520869970322,
- -0.023115338757634163,
- 0.004350948613137007,
- -0.052675243467092514,
- 0.03927042335271835,
- 0.030518170446157455,
- 0.036553654819726944,
- -0.012537896633148193,
- 0.04738859459757805,
- 0.004424695856869221,
- 0.03242774307727814,
- -0.013305304571986198,
- -0.012745398096740246,
- -0.010908335447311401,
- -0.025541694834828377,
- -0.06264328956604004,
- 0.08821539580821991,
- -0.00122631445992738,
- -0.008931487798690796,
- -0.01642267219722271,
- 0.026447344571352005,
- -0.004569992423057556,
- 0.005738236475735903,
- -0.041153594851493835,
- 0.06286244094371796,
- -0.0007534041069447994,
- -0.02142840251326561,
- -0.10221090912818909,
- 0.011259940452873707,
- 0.03885680437088013,
- 0.0019065976375713944,
- -0.018361173570156097,
- -0.039340872317552567,
- 0.06774527579545975,
- -0.045279450714588165,
- -0.0110380370169878,
- 0.04018475115299225,
- -0.028762077912688255,
- -0.008546939119696617,
- 0.06496814638376236,
- 0.06859806925058365,
- 0.009786196053028107,
- 0.02516813762485981,
- -0.025095250457525253,
- 0.09724624454975128,
- -0.04658864438533783,
- -0.04480940103530884,
- -0.0028687298763543367,
- -1.2307303620673338e-8,
- -0.0005152245284989476,
- 0.019102804362773895,
- -0.07801233977079391,
- 0.05603625997900963,
- 0.0741313174366951,
- 0.029760941863059998,
- -0.015577896498143673,
- 0.09032968431711197,
- 0.05053776875138283,
- 0.0861363336443901,
- -0.009394506923854351,
- 0.03758857399225235,
- -0.03803957626223564,
- 0.013208752498030663,
- -0.019413543865084648,
- 0.017772845923900604,
- -0.019097425043582916,
- -0.03304179385304451,
- 0.010434231720864773,
- -0.026191970333456993,
- 0.021513795480132103,
- -0.020540393888950348,
- 0.031449999660253525,
- -0.009799045510590076,
- 0.027310919016599655,
- -0.06269596517086029,
- -0.02390742301940918,
- 0.09825719147920609,
- -0.030258359387516975,
- -0.035270947962999344,
- 0.030454054474830627,
- 0.08567124605178833,
- -0.07213032245635986,
- 0.0013730541104450822,
- 0.026579054072499275,
- -0.09018263220787048,
- -0.00024195628066081554,
- 0.03296041116118431,
- -0.028523681685328484,
- -0.0893063098192215,
- 0.02593030035495758,
- -0.018901605159044266,
- 0.0756688043475151,
- -0.0017908667214214802,
- 0.004605854395776987,
- 0.02590656280517578,
- 0.063099205493927,
- -0.018393928185105324,
- 0.018680794164538383,
- -0.032929446548223495,
- -0.09807080775499344,
- 0.03506048023700714,
- 0.021848872303962708,
- 0.05432991683483124,
- 0.05351387336850166,
- -0.009755419567227364,
- -0.04787690192461014,
- 0.02868509292602539,
- -0.033846426755189896,
- 0.017008382827043533,
- 0.06255284696817398,
- 0.0380321629345417,
- -0.022372907027602196,
- -0.014279047958552837
- ]
- },
- {
- "keyword": "village",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.041669055819511414,
- -0.0011683421907946467,
- -0.11998198926448822,
- -0.014826573431491852,
- 0.027792373672127724,
- -0.047693297266960144,
- 0.003067336743697524,
- -0.0628848746418953,
- -0.03191971778869629,
- -0.032377589493989944,
- 0.1625593900680542,
- -0.07485207170248032,
- 0.00078677071724087,
- -0.02355242893099785,
- 0.005302904173731804,
- 0.0230620838701725,
- 0.0027203315403312445,
- 0.026179110631346703,
- 0.10564891993999481,
- -0.10415910184383392,
- -0.13134488463401794,
- 0.053298309445381165,
- 0.03871021419763565,
- 0.05274460092186928,
- 0.033295635133981705,
- 0.06038651615381241,
- 0.02737465128302574,
- 0.04805361106991768,
- 0.03200149908661842,
- -0.05049695819616318,
- 0.043325625360012054,
- 0.07694558799266815,
- 0.09109247475862503,
- -0.005437297280877829,
- -0.03155984356999397,
- 0.15177130699157715,
- -0.057831719517707825,
- -0.03296424448490143,
- 0.009739921428263187,
- -0.0608794204890728,
- -0.04397645592689514,
- -0.027029071003198624,
- 0.03939696401357651,
- -0.0830686017870903,
- 0.018464665859937668,
- -0.00409205537289381,
- 0.024360688403248787,
- 0.008962854743003845,
- 0.03317771479487419,
- -0.02696165069937706,
- 0.028794433921575546,
- -0.02707330323755741,
- -0.045639365911483765,
- 0.00403194036334753,
- 0.018873756751418114,
- 0.0026939846575260162,
- -0.02231895551085472,
- 0.015903756022453308,
- 0.017907865345478058,
- -0.01750144734978676,
- -0.0018412034260109067,
- -0.024871492758393288,
- -0.06526736170053482,
- 0.01862926036119461,
- 0.06617341935634613,
- 0.011422790586948395,
- -0.019605236127972603,
- 0.045245274901390076,
- -0.01049825269728899,
- -0.1493869572877884,
- 0.03649628534913063,
- -0.05117516964673996,
- 0.0465884804725647,
- -0.009129595942795277,
- -0.04713286831974983,
- -0.03856862708926201,
- -0.004317028913646936,
- -0.027057429775595665,
- 0.060176022350788116,
- -0.0019141552038490772,
- -0.000264246977167204,
- -0.01710169017314911,
- 0.03041170910000801,
- -0.035121310502290726,
- -0.060886140912771225,
- -0.000675329880323261,
- 0.0007406885270029306,
- 0.012808138504624367,
- 0.061203695833683014,
- -0.010234873741865158,
- -0.03717878833413124,
- 0.0378241203725338,
- -0.027986403554677963,
- 0.04287735000252724,
- -0.0458071231842041,
- -0.04161926358938217,
- 0.024936148896813393,
- 0.04000512883067131,
- -0.06448674947023392,
- 0.2276661992073059,
- 0.030270028859376907,
- 0.01270980667322874,
- -0.05542340129613876,
- -0.024959521368145943,
- 0.02385527454316616,
- -0.03071310929954052,
- 0.04583984613418579,
- 0.06191399320960045,
- -0.002250548219308257,
- 0.07015467435121536,
- -0.027176551520824432,
- -0.0074442601762712,
- -0.06999898701906204,
- -0.02262672409415245,
- 0.007779108826071024,
- -0.07136823236942291,
- 0.0900915339589119,
- 0.042071882635354996,
- -0.11805471032857895,
- 0.06574449688196182,
- 0.020936261862516403,
- 0.08800346404314041,
- -0.023161208257079124,
- -0.07673250883817673,
- 0.012052211910486221,
- 0.0073907263576984406,
- 0.03773908689618111,
- -4.138972547252892e-33,
- 0.018677828833460808,
- -0.004187460523098707,
- -0.05111709609627724,
- 0.027074528858065605,
- 0.14014999568462372,
- -0.014188080094754696,
- -0.028756452724337578,
- -0.03674718365073204,
- -0.01916288584470749,
- 0.011268656700849533,
- 0.0698413997888565,
- -0.08198738098144531,
- -0.08126616477966309,
- -0.08327694237232208,
- 0.09124751389026642,
- -0.0075408900156617165,
- 0.058559518307447433,
- -0.08280199021100998,
- -0.004135354422032833,
- 0.017375212162733078,
- -0.03648628294467926,
- 0.05792056396603584,
- -0.014143229462206364,
- 0.012106362730264664,
- -0.017974456772208214,
- -0.03359835967421532,
- 0.02084219828248024,
- 0.01944735273718834,
- 0.029608504846692085,
- 0.024440601468086243,
- 0.012920890003442764,
- 0.03371315076947212,
- -0.05301470309495926,
- -0.04851985350251198,
- 0.02400662563741207,
- -0.018231933936476707,
- -0.02314266934990883,
- -0.07989920675754547,
- -0.06646405160427094,
- 0.028560254722833633,
- -0.011772573925554752,
- -0.030436139553785324,
- 0.03959472477436066,
- -0.010843237861990929,
- 0.007614620495587587,
- 0.05746115744113922,
- 0.057959601283073425,
- 0.056959062814712524,
- -0.03951094299554825,
- 0.04739577695727348,
- -0.041177183389663696,
- -0.006120644044131041,
- -0.1171579584479332,
- 0.06137046590447426,
- -0.0040289913304150105,
- -0.05324825644493103,
- 0.005179789382964373,
- -0.016031887382268906,
- 0.04420367255806923,
- 0.020203277468681335,
- 0.0454183965921402,
- 0.06759864091873169,
- -0.005549675785005093,
- -0.02756962925195694,
- 0.012711383402347565,
- -0.10513318330049515,
- 0.02140575274825096,
- -0.009614060632884502,
- 0.04158284515142441,
- -0.04325178265571594,
- 0.0703231692314148,
- -0.019339939579367638,
- 0.04547669738531113,
- 0.06689609587192535,
- -0.05311508849263191,
- 0.040182746946811676,
- -0.07620919495820999,
- 0.06023780256509781,
- -0.1023792251944542,
- -0.01619722507894039,
- 0.01485760509967804,
- 0.021150564774870872,
- -0.0672498568892479,
- 0.10791168361902237,
- 0.03659700229763985,
- -0.019332366064190865,
- 0.009505271911621094,
- -0.07682624459266663,
- -0.045356687158346176,
- -0.05941590666770935,
- -0.08354360610246658,
- -0.00868057832121849,
- 0.08203399926424026,
- -0.04305371269583702,
- 0.03142673149704933,
- 3.620350317141853e-33,
- 0.050767771899700165,
- -0.061149388551712036,
- 0.022755272686481476,
- -0.00015718383656349033,
- 0.0589197613298893,
- -0.01121311355382204,
- 0.02503719925880432,
- 0.010416433215141296,
- 0.0009186813840642571,
- 0.09312703460454941,
- -0.1658707708120346,
- -0.01218443550169468,
- 0.05182340368628502,
- -0.0005424048285931349,
- 0.011141087859869003,
- 0.08546166121959686,
- 0.10124672949314117,
- 0.03521417826414108,
- 0.0003412101650610566,
- -0.02165454626083374,
- 0.009501020424067974,
- 0.02285851165652275,
- -0.022902486845850945,
- 0.030130788683891296,
- 0.0020190137438476086,
- 0.07832973450422287,
- -0.03044731542468071,
- 0.03322944790124893,
- -0.09680712968111038,
- 0.008380784653127193,
- -0.04555045813322067,
- -0.062627412378788,
- 0.014123906381428242,
- 0.041812799870967865,
- -0.015932517126202583,
- 0.10598969459533691,
- 0.08318690955638885,
- -0.031788501888513565,
- -0.07930056750774384,
- -0.009636173024773598,
- 0.01949787326157093,
- 0.009601056575775146,
- -0.10230378061532974,
- 0.10136493295431137,
- -0.046786047518253326,
- -0.03707711026072502,
- 0.005056663881987333,
- 0.0535590685904026,
- -0.019725028425455093,
- -0.013192287646234035,
- -0.04538987576961517,
- 0.09265412390232086,
- 0.02284906804561615,
- 0.009103815071284771,
- -0.008803186938166618,
- -0.009025279432535172,
- 0.036387067288160324,
- 0.039408959448337555,
- 0.05531119927763939,
- 0.014405983500182629,
- -0.004975457210093737,
- -0.028375638648867607,
- -0.1036948561668396,
- 0.11081907153129578,
- 0.024707011878490448,
- -0.03753191977739334,
- -0.028714653104543686,
- 0.0038924135733395815,
- 0.009735523723065853,
- 0.0009558364399708807,
- -0.06540395319461823,
- 0.0384192131459713,
- -0.022959453985095024,
- -0.03139963746070862,
- -0.044238585978746414,
- 0.041542861610651016,
- 0.02725125104188919,
- 0.02520223893225193,
- 0.04274427518248558,
- -0.06905367225408554,
- 0.060740672051906586,
- -0.10747959464788437,
- 0.019154252484440804,
- 0.07873763889074326,
- 0.0009117366862483323,
- -0.03692775219678879,
- 0.07422223687171936,
- 0.043872229754924774,
- 0.0003022591699846089,
- -0.007954683154821396,
- 0.018444014713168144,
- 0.023824134841561317,
- -0.04899144545197487,
- -0.02121063694357872,
- -0.0003818281402345747,
- -1.1299706947909272e-8,
- -0.024547426030039787,
- 0.010419951751828194,
- -0.054568804800510406,
- -0.03643307089805603,
- 0.06986385583877563,
- -0.009513298980891705,
- 0.013955296948552132,
- 0.06577902287244797,
- 0.0477273128926754,
- 0.13210460543632507,
- -0.02236170507967472,
- 0.04255981370806694,
- -0.009549150243401527,
- 0.03351942077279091,
- -0.0038302503526210785,
- -0.05003422498703003,
- 0.005788732320070267,
- 0.029006144031882286,
- -0.04079246148467064,
- -0.016568416729569435,
- 0.05378397926688194,
- 0.008617492392659187,
- 0.005064510740339756,
- -0.02026030607521534,
- -0.04651675000786781,
- -0.07300199568271637,
- -0.042135659605264664,
- 0.04235376790165901,
- -0.01865873858332634,
- -0.015740519389510155,
- -0.012582213617861271,
- 0.08527258783578873,
- -0.07534895837306976,
- -0.017242787405848503,
- -0.014338422566652298,
- -0.016284098848700523,
- -0.012392456643283367,
- 0.011028314009308815,
- -0.041154779493808746,
- -0.027110552415251732,
- -0.014205528423190117,
- -0.08965862542390823,
- 0.03381677716970444,
- -0.0032713140826672316,
- -0.02243146114051342,
- 0.038452088832855225,
- 0.0846814513206482,
- 0.019014714285731316,
- 0.010752635076642036,
- -0.02758197672665119,
- -0.036167606711387634,
- 0.020098017528653145,
- 0.03628978878259659,
- 0.04336315393447876,
- 0.02863556519150734,
- -0.055529333651065826,
- -0.033845506608486176,
- 0.04465150833129883,
- 0.0016455331351608038,
- 0.03144308179616928,
- 0.06243300810456276,
- 0.0430530309677124,
- -0.0633530393242836,
- -0.060740839689970016
- ]
- },
- {
- "keyword": "municipality",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.05742425099015236,
- 0.03396010398864746,
- -0.02079741843044758,
- 0.028886890038847923,
- -0.045204631984233856,
- -0.04075394198298454,
- -0.02858772501349449,
- -0.023911677300930023,
- -0.06537926942110062,
- -0.011621830984950066,
- 0.11140481382608414,
- -0.13887357711791992,
- -0.08278432488441467,
- -0.008527557365596294,
- -0.016587769612669945,
- 0.04142693802714348,
- 0.03720439597964287,
- -0.0023950249888002872,
- 0.06091632694005966,
- -0.011703317984938622,
- -0.050481006503105164,
- -0.012381249107420444,
- 0.021991832181811333,
- 0.02789263240993023,
- -0.021973105147480965,
- 0.10079442709684372,
- 0.006910372991114855,
- 0.061255138367414474,
- 0.023381417617201805,
- -0.05210816115140915,
- 0.015133666805922985,
- 0.053199008107185364,
- 0.14256955683231354,
- -0.049291983246803284,
- 0.07628986239433289,
- 0.11218500137329102,
- -0.003667055629193783,
- -0.029453109949827194,
- 0.005700172856450081,
- -0.012355280108749866,
- -0.031525105237960815,
- -0.029439309611916542,
- -0.005123608745634556,
- -0.08344916254281998,
- 0.03914448618888855,
- -0.00332290749065578,
- 0.019148997962474823,
- 0.056010156869888306,
- -0.0006372075295075774,
- -0.03547412529587746,
- -0.03134418651461601,
- -0.010020571760833263,
- 0.01682070828974247,
- 0.05070878565311432,
- -0.015562370419502258,
- -0.00866298284381628,
- -0.027104536071419716,
- 0.006182634737342596,
- -0.010356529615819454,
- -0.05479886755347252,
- 0.010530666448175907,
- 0.0437312014400959,
- -0.1014229878783226,
- 0.06961186230182648,
- 0.044023167341947556,
- 0.007452075369656086,
- -0.02837020345032215,
- -0.008755550719797611,
- 0.010448223911225796,
- -0.11669768393039703,
- 0.08522603660821915,
- -0.10372543334960938,
- 0.03238113597035408,
- 0.0357353612780571,
- 0.013506565243005753,
- -0.08058349043130875,
- -0.03556587174534798,
- 0.015852943062782288,
- 0.05395102873444557,
- -0.006498290691524744,
- 0.058480799198150635,
- 0.05334578454494476,
- -0.05441141501069069,
- 0.0117286192253232,
- 0.003920704126358032,
- 0.05379578471183777,
- 0.008129636757075787,
- 0.022591527551412582,
- 0.030288368463516235,
- -0.006848046090453863,
- -0.019751297309994698,
- 0.06047346070408821,
- 0.03563672676682472,
- -0.011162099428474903,
- -0.0306005347520113,
- -0.02694711461663246,
- 0.07508935779333115,
- 0.000014266637663240544,
- 0.03233977034687996,
- 0.26054462790489197,
- -0.02958674542605877,
- -0.057759106159210205,
- -0.013232626020908356,
- 0.014163714833557606,
- -0.014711939729750156,
- -0.03239108994603157,
- 0.010990938171744347,
- -0.013959718868136406,
- 0.005325381178408861,
- 0.03538471832871437,
- -0.007787785492837429,
- -0.025838835164904594,
- -0.13098490238189697,
- -0.07832971215248108,
- 0.019055265933275223,
- -0.04370485246181488,
- 0.004034563899040222,
- 0.03135755658149719,
- -0.03960474953055382,
- -0.021202459931373596,
- -0.037480875849723816,
- 0.01424897089600563,
- -0.10383079946041107,
- -0.041433755308389664,
- 0.07289239764213562,
- 0.04910316318273544,
- -0.006837221793830395,
- -4.720302992876485e-33,
- 0.031038718298077583,
- 0.03209956735372543,
- -0.053515832871198654,
- 0.04535548761487007,
- 0.08996766060590744,
- 0.009794368408620358,
- 0.024108145385980606,
- -0.014596579596400261,
- -0.06300517916679382,
- 0.013053030706942081,
- 0.03616761416196823,
- -0.031623028218746185,
- 0.001499346224591136,
- -0.12452174723148346,
- 0.11191852390766144,
- 0.022982878610491753,
- 0.04452164098620415,
- 0.01764211431145668,
- 0.04349773749709129,
- 0.03279602527618408,
- 0.013345870189368725,
- 0.020202215760946274,
- -0.028378328308463097,
- -0.04007430002093315,
- -0.02978893183171749,
- 0.0016109157586470246,
- 0.003993378486484289,
- -0.009863855317234993,
- 0.07650914043188095,
- 0.017729535698890686,
- 0.0663144513964653,
- 0.04362836852669716,
- -0.039761800318956375,
- -0.06950707733631134,
- 0.04641081765294075,
- 0.0757327526807785,
- -0.02634529024362564,
- -0.07763653248548508,
- -0.04042262211441994,
- -0.005247913300991058,
- -0.0723300576210022,
- -0.004771543201059103,
- 0.05863012373447418,
- 0.01579250954091549,
- -0.010537626221776009,
- 0.02542007714509964,
- 0.0060692597180604935,
- -0.015248466283082962,
- 0.04879232496023178,
- -0.01172614935785532,
- 0.06335648149251938,
- 0.0011568480404093862,
- -0.10030442476272583,
- 0.08400340378284454,
- 0.03932149335741997,
- -0.0284341499209404,
- 0.004157152958214283,
- 0.019604196771979332,
- 0.05819643288850784,
- 0.015531458891928196,
- 0.03598563373088837,
- 0.09079372137784958,
- -0.06216725334525108,
- 0.024253331124782562,
- 0.05799712985754013,
- -0.05864077806472778,
- 0.03204604238271713,
- -0.003027224214747548,
- 0.17677268385887146,
- -0.05173913389444351,
- 0.014727182686328888,
- -0.034252434968948364,
- 0.03868924826383591,
- 0.11396709829568863,
- -0.00006490322266472504,
- 0.052279889583587646,
- -0.0766158252954483,
- 0.04797792807221413,
- -0.06178315728902817,
- 0.05273950845003128,
- -0.03141419216990471,
- -0.02561105415225029,
- -0.060036249458789825,
- 0.02191842719912529,
- 0.1280013769865036,
- 0.0201681237667799,
- 0.0234298687428236,
- -0.05188706889748573,
- -0.01811935380101204,
- 0.01079290546476841,
- -0.0583968460559845,
- -0.0006565874209627509,
- 0.010242330841720104,
- 0.07276731729507446,
- -0.024977318942546844,
- 3.476886374411778e-33,
- 0.061447661370038986,
- -0.05290550738573074,
- -0.022666553035378456,
- -0.015642518177628517,
- -0.02407432533800602,
- 0.01405329443514347,
- -0.06938206404447556,
- -0.009193098172545433,
- -0.01520592626184225,
- 0.018448596820235252,
- -0.05924041569232941,
- -0.0769357979297638,
- 0.08543870598077774,
- 0.004244502168148756,
- 0.025176173076033592,
- 0.060577187687158585,
- 0.058271463960409164,
- 0.003185015870258212,
- -0.09433481097221375,
- -0.015887031331658363,
- -0.03582870215177536,
- -0.030939726158976555,
- -0.0164362620562315,
- -0.003187708556652069,
- -0.11692709475755692,
- 0.01568591222167015,
- -0.02867872454226017,
- -0.027746310457587242,
- -0.06462510675191879,
- -0.06469393521547318,
- -0.08154145628213882,
- -0.07244321703910828,
- -0.13422472774982452,
- -0.004434081260114908,
- 0.005390254780650139,
- 0.0730404406785965,
- 0.03394749388098717,
- -0.0436040498316288,
- -0.010529715567827225,
- 0.0331454873085022,
- -0.014250685460865498,
- 0.004214291926473379,
- -0.021122246980667114,
- 0.12039632350206375,
- -0.021134503185749054,
- -0.02664702758193016,
- -0.0844893530011177,
- 0.015355908311903477,
- -0.008598577231168747,
- -0.022138327360153198,
- -0.064058318734169,
- 0.0025656577199697495,
- -0.02599528431892395,
- -0.026626884937286377,
- 0.04895823076367378,
- 0.024864988401532173,
- 0.007347470615059137,
- 0.03714665398001671,
- 0.021154507994651794,
- -0.003445178037509322,
- 0.05684483423829079,
- -0.031217211857438087,
- -0.11656352877616882,
- 0.1466825306415558,
- 0.013655220158398151,
- 0.029183700680732727,
- -0.053170107305049896,
- -0.07700446993112564,
- 0.02893596701323986,
- -0.04079096019268036,
- 0.011260260827839375,
- -0.0008653256809338927,
- -0.10487446188926697,
- 0.014585471712052822,
- -0.0496356375515461,
- 0.013019279576838017,
- 0.0384971909224987,
- 0.03965729847550392,
- 0.036714814603328705,
- -0.024053269997239113,
- 0.0733838602900505,
- -0.07287288457155228,
- -0.02994997613132,
- 0.01625470258295536,
- -0.02319236844778061,
- -0.028487561270594597,
- 0.12050081044435501,
- -0.0496024452149868,
- 0.007220406085252762,
- 0.04190201312303543,
- 0.051899537444114685,
- 0.06250350177288055,
- -0.05192636325955391,
- 0.003160381456837058,
- 0.025907089933753014,
- -1.1262129007150179e-8,
- -0.0402778722345829,
- -0.00809300784021616,
- -0.09642428904771805,
- -0.002952283015474677,
- 0.07177965342998505,
- -0.038272675126791,
- -0.043523453176021576,
- 0.025968661531805992,
- 0.008887836709618568,
- 0.07529966533184052,
- 0.03260357305407524,
- 0.0569610558450222,
- -0.024257251992821693,
- 0.019754158332943916,
- 0.0066389054991304874,
- -0.008445993065834045,
- -0.01031145267188549,
- 0.059346381574869156,
- -0.007914348505437374,
- 0.01802384853363037,
- 0.060253534466028214,
- -0.014646761119365692,
- -0.06154721602797508,
- 0.022210683673620224,
- -0.0061674886383116245,
- -0.07964575290679932,
- 0.03366405516862869,
- 0.02641969732940197,
- 0.029508119449019432,
- 0.023829258978366852,
- 0.0036318483762443066,
- 0.09442596882581711,
- -0.009952344931662083,
- 0.017462067306041718,
- -0.012782792560756207,
- -0.03312205523252487,
- 0.0041108992882072926,
- -0.0063895126804709435,
- -0.027208112180233,
- -0.08727362006902695,
- 0.01188140083104372,
- -0.05638626590371132,
- -0.005599021911621094,
- -0.02018905244767666,
- -0.0014874835032969713,
- 0.021713728085160255,
- 0.053745027631521225,
- 0.02490195818245411,
- 0.03249454125761986,
- -0.06949666142463684,
- -0.03984740749001503,
- 0.020789187401533127,
- 0.038715679198503494,
- 0.0585111565887928,
- -0.017773520201444626,
- -0.09425676614046097,
- -0.004277736414223909,
- 0.02530614472925663,
- -0.05332008749246597,
- 0.0032161290291696787,
- 0.05306404083967209,
- -0.006394071038812399,
- 0.003933959640562534,
- -0.024148788303136826
- ]
- },
- {
- "keyword": "metro",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.019651377573609352,
- 0.03069402649998665,
- 0.025735806673765182,
- 0.06292128562927246,
- -0.07791364938020706,
- 0.057227712124586105,
- 0.08420699089765549,
- -0.019628196954727173,
- -0.037387825548648834,
- -0.04559466242790222,
- 0.0043575577437877655,
- -0.0931115671992302,
- 0.03198307752609253,
- 0.009159489534795284,
- 0.02538253553211689,
- -0.08338674157857895,
- 0.1299794316291809,
- 0.0029607806354761124,
- 0.0481724888086319,
- -0.05255156010389328,
- -0.027328437194228172,
- -0.09021268784999847,
- -0.047115445137023926,
- 0.006834174040704966,
- 0.03825465589761734,
- 0.04193338751792908,
- -0.06758173555135727,
- 0.0643845796585083,
- 0.011979465372860432,
- -0.02922789752483368,
- -0.032358311116695404,
- 0.08900576084852219,
- 0.020143061876296997,
- -0.02146059088408947,
- 0.031524159014225006,
- -0.007757510989904404,
- 0.04805099964141846,
- -0.014512919820845127,
- 0.04799988120794296,
- -0.018972449004650116,
- 0.000024195993319153786,
- 0.010647772811353207,
- 0.0012835608795285225,
- 0.04080289602279663,
- 0.01960982009768486,
- 0.012183252722024918,
- 0.03948577120900154,
- 0.01696646586060524,
- 0.028557052835822105,
- 0.020445290952920914,
- 0.03978361561894417,
- 0.0509466789662838,
- 0.02682298794388771,
- -0.0016427241498604417,
- 0.03792421519756317,
- 0.017171010375022888,
- -0.006180752534419298,
- 0.07163591682910919,
- 0.062054593116045,
- 0.06189117953181267,
- -0.07506223767995834,
- 0.0055137015879154205,
- -0.12977831065654755,
- 0.059454988688230515,
- 0.0785762146115303,
- 0.005910222884267569,
- -0.06426119804382324,
- 0.04441443085670471,
- 0.01992165297269821,
- -0.12450575828552246,
- -0.0005839237128384411,
- -0.03782627359032631,
- 0.004200898110866547,
- 0.003981383051723242,
- 0.03626994788646698,
- 0.02547214739024639,
- 0.03375259041786194,
- -0.04869585111737251,
- -0.013981513679027557,
- 0.013151677325367928,
- 0.0017720682080835104,
- -0.07095885276794434,
- -0.030580060556530952,
- 0.019680805504322052,
- -0.020041806623339653,
- 0.01861625351011753,
- 0.02837539091706276,
- 0.07806243747472763,
- 0.017749043181538582,
- -0.008205982856452465,
- 0.03370719403028488,
- 0.13192759454250336,
- -0.049301378428936005,
- 0.018063001334667206,
- 0.03962063044309616,
- -0.005415270570665598,
- -0.10434376448392868,
- -0.05190185829997063,
- -0.03791145980358124,
- 0.21038933098316193,
- -0.00444109458476305,
- 0.06275398284196854,
- 0.019336361438035965,
- 0.047995347529649734,
- 0.010683882981538773,
- -0.07825388014316559,
- -0.059350885450839996,
- 0.030882254242897034,
- -0.021746139973402023,
- 0.056855589151382446,
- 0.0036103862803429365,
- -0.070689357817173,
- -0.02185715362429619,
- 0.010448821820318699,
- -0.022518431767821312,
- 0.0343065969645977,
- 0.013856283389031887,
- -0.012544001452624798,
- 0.01776833087205887,
- -0.025718236342072487,
- -0.04037545993924141,
- 0.02318640612065792,
- -0.09810968488454819,
- -0.0038076199125498533,
- -0.054653387516736984,
- -0.06501936912536621,
- 0.0025873316917568445,
- -3.938447169998026e-33,
- -0.031247124075889587,
- -0.02434821054339409,
- 0.0437496043741703,
- 0.00324344914406538,
- 0.02138472907245159,
- -0.05786749720573425,
- 0.014537271112203598,
- -0.09314525872468948,
- 0.010165942832827568,
- 0.08238287270069122,
- -0.014469831250607967,
- 0.010772790759801865,
- -0.029222074896097183,
- 0.026538006961345673,
- 0.08588191121816635,
- -0.006410430185496807,
- 0.06887385249137878,
- 0.03009018301963806,
- -0.02881425991654396,
- -0.015272271819412708,
- -0.06306027621030807,
- 0.03321954607963562,
- -0.036366675049066544,
- -0.09783191978931427,
- -0.04907148703932762,
- 0.09072234481573105,
- 0.006573278456926346,
- -0.0022073269356042147,
- 0.09748273342847824,
- 0.023041123524308205,
- -0.04332079738378525,
- 0.05423461273312569,
- -0.030052294954657555,
- 0.10299808531999588,
- 0.016620466485619545,
- -0.018015680834650993,
- -0.03217903897166252,
- -0.0717068761587143,
- -0.05129235237836838,
- -0.028951633721590042,
- -0.05560481175780296,
- 0.03348328545689583,
- -0.0771542340517044,
- 0.005204727407544851,
- 0.03329316899180412,
- -0.015918446704745293,
- -0.0321543850004673,
- -0.10509268194437027,
- 0.06785332411527634,
- 0.00812589656561613,
- 0.023826919496059418,
- 0.05340797081589699,
- -0.09794537723064423,
- 0.002667561173439026,
- -0.056213706731796265,
- 0.0013410671381279826,
- -0.013368182815611362,
- -0.05104917660355568,
- 0.0790734514594078,
- 0.02318403124809265,
- 0.016600383445620537,
- -0.010739005170762539,
- -0.054679468274116516,
- 0.034404560923576355,
- 0.11493262648582458,
- -0.07080966979265213,
- -0.03871156647801399,
- -0.030247194692492485,
- 0.037730976939201355,
- 0.0440048910677433,
- 0.031381599605083466,
- -0.01763058640062809,
- 0.12061885744333267,
- 0.07378711551427841,
- 0.022117730230093002,
- 0.038971878588199615,
- -0.05097368732094765,
- 0.10457949340343475,
- -0.08825324475765228,
- -0.0075791263952851295,
- 0.0013115779729560018,
- 0.0013559458311647177,
- -0.03238231688737869,
- 0.01596415974199772,
- 0.16508351266384125,
- 0.027378808706998825,
- -0.031690727919340134,
- -0.003102292073890567,
- -0.01316068321466446,
- -0.027964917942881584,
- -0.1139129251241684,
- -0.04484453797340393,
- 0.05812407657504082,
- 0.05955911800265312,
- -0.05946773663163185,
- 2.5039954544514195e-33,
- -0.04366452246904373,
- -0.05252394080162048,
- -0.04620722681283951,
- -0.026175500825047493,
- -0.11920447647571564,
- 0.003920380026102066,
- 0.04324096813797951,
- 0.053171306848526,
- 0.012208688072860241,
- 0.10348975658416748,
- -0.06434375047683716,
- 0.02717258408665657,
- 0.09933560341596603,
- -0.007978647015988827,
- 0.006613345351070166,
- 0.047130610793828964,
- 0.15709900856018066,
- -0.0005518388352356851,
- -0.058770596981048584,
- 0.024954792112112045,
- -0.015895318239927292,
- -0.059030111879110336,
- -0.08371321111917496,
- 0.0611412487924099,
- 0.010381773114204407,
- 0.000409586209570989,
- 0.03572504222393036,
- -0.03292158618569374,
- -0.025000307708978653,
- 0.022369690239429474,
- -0.06272634118795395,
- -0.008392439223825932,
- 0.019054865464568138,
- 0.042751580476760864,
- 0.013011076487600803,
- 0.056005001068115234,
- 0.054053060710430145,
- 0.018689610064029694,
- -0.012708130292594433,
- 0.03510192409157753,
- -0.03514343500137329,
- -0.04145282506942749,
- 0.03949035704135895,
- 0.08620099723339081,
- 0.05461648851633072,
- -0.020726073533296585,
- -0.03679867833852768,
- -0.020798267796635628,
- -0.09656126797199249,
- 0.03465065732598305,
- -0.040185049176216125,
- 0.0451296828687191,
- -0.02309539169073105,
- -0.06998536735773087,
- 0.007850239984691143,
- 0.009204251691699028,
- 0.007960684597492218,
- -0.02835460938513279,
- -0.09786473959684372,
- -0.07022468745708466,
- 0.07332148402929306,
- 0.03661631420254707,
- -0.02552116848528385,
- 0.020605377852916718,
- -0.014165076427161694,
- 0.07493849098682404,
- -0.0094981724396348,
- -0.08910899609327316,
- -0.05154571309685707,
- 0.03066197969019413,
- -0.011770275421440601,
- 0.05874168500304222,
- -0.05479654669761658,
- -0.0339614562690258,
- -0.0866081491112709,
- -0.0521496944129467,
- 0.03241981565952301,
- 0.13421332836151123,
- -0.025817491114139557,
- 0.046245038509368896,
- 0.046897340565919876,
- 0.0250859335064888,
- -0.02338450774550438,
- 0.04440240189433098,
- -0.032631006091833115,
- -0.0032431003637611866,
- 0.029612908139824867,
- 0.052963972091674805,
- 0.019920438528060913,
- -0.024929895997047424,
- 0.0027085004840046167,
- 0.010090922005474567,
- -0.049610212445259094,
- -0.0286243986338377,
- -0.037110336124897,
- -1.0999065658268137e-8,
- -0.04564840719103813,
- -0.004335175734013319,
- -0.0462988018989563,
- -0.06733840703964233,
- -0.040738482028245926,
- 0.07596662640571594,
- -0.05983647704124451,
- 0.04702044278383255,
- 0.014075005427002907,
- 0.04501902312040329,
- 0.0364982895553112,
- -0.02432713285088539,
- -0.0553535521030426,
- 0.028328293934464455,
- -0.030394263565540314,
- -0.025333736091852188,
- -0.003766122506931424,
- -0.024186845868825912,
- -0.03493402153253555,
- 0.0007760136504657567,
- -0.013847400434315205,
- 0.05302857235074043,
- 0.08175478130578995,
- 0.009737235493957996,
- -0.02657371386885643,
- 0.013133292086422443,
- -0.04459565505385399,
- 0.034729208797216415,
- 0.05043617635965347,
- 0.038931071758270264,
- 0.06386241316795349,
- 0.006757899187505245,
- -0.03682763874530792,
- -0.05808814615011215,
- -0.06250486522912979,
- -0.01693185605108738,
- 0.0978664830327034,
- 0.011318501085042953,
- 0.0723102018237114,
- -0.02640225738286972,
- -0.00002602365566417575,
- -0.08085472881793976,
- 0.029021043330430984,
- 0.01216114405542612,
- 0.03647797554731369,
- -0.0016172623727470636,
- 0.020233552902936935,
- -0.09164281189441681,
- -0.028570184484124184,
- -0.08118630945682526,
- -0.010214228183031082,
- 0.04918222874403,
- -0.04182033613324165,
- -0.031562089920043945,
- 0.035198044031858444,
- -0.04480896517634392,
- -0.056671127676963806,
- -0.008224672637879848,
- -0.03966732695698738,
- 0.0543765053153038,
- 0.057805322110652924,
- 0.027564024552702904,
- -0.01989370957016945,
- 0.04067206755280495
- ]
- },
- {
- "keyword": "country",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.03214411064982414,
- 0.04474841058254242,
- -0.0328037403523922,
- 0.023189811035990715,
- 0.06301677227020264,
- -0.008080480620265007,
- 0.12477360665798187,
- -0.04563532769680023,
- 0.011585765518248081,
- -0.0018831718480214477,
- 0.04485676437616348,
- -0.0703590139746666,
- 0.05001998320221901,
- 0.0196901373565197,
- -0.02225865051150322,
- 0.0012103613698855042,
- -0.058291371911764145,
- -0.09426936507225037,
- -0.04762546718120575,
- -0.06564295291900635,
- -0.028273411095142365,
- 0.035245999693870544,
- 0.018258271738886833,
- 0.03238989785313606,
- 0.01920347847044468,
- 0.05667730048298836,
- 0.04274555668234825,
- 0.042304299771785736,
- -0.006717043463140726,
- -0.04334944114089012,
- 0.020433679223060608,
- 0.017697447910904884,
- -0.02223065309226513,
- -0.012216620147228241,
- -0.02636878937482834,
- -0.027658512815833092,
- -0.04323486238718033,
- -0.09109436720609665,
- 0.02684398740530014,
- 0.041629694402217865,
- 0.041454706341028214,
- -0.04106111079454422,
- 0.06772536039352417,
- -0.04923175275325775,
- 0.017330100759863853,
- 0.02879241667687893,
- 0.08498295396566391,
- 0.056025076657533646,
- 0.03160332888364792,
- 0.00954483449459076,
- 0.05224518105387688,
- 0.02738039568066597,
- -0.04039987176656723,
- -0.009996095672249794,
- 0.0006535369320772588,
- -0.018705667927861214,
- -0.018748704344034195,
- 0.06082325801253319,
- -0.025824859738349915,
- 0.0007080466020852327,
- 0.033461108803749084,
- -0.012034621089696884,
- -0.06136762723326683,
- -0.015354725532233715,
- 0.04286587983369827,
- 0.030175266787409782,
- -0.0316862128674984,
- 0.06959833949804306,
- -0.029651232063770294,
- -0.09895052760839462,
- 0.014712521806359291,
- -0.04164494201540947,
- 0.019062450155615807,
- 0.07295283675193787,
- -0.008907313458621502,
- -0.05605175346136093,
- -0.013005875051021576,
- 0.03405558690428734,
- 0.0706271156668663,
- -0.022002222016453743,
- 0.06266991049051285,
- -0.016199901700019836,
- -0.005891276523470879,
- -0.00007069851562846452,
- 0.025811776518821716,
- -0.06986905634403229,
- 0.0001053846426657401,
- 0.0149330273270607,
- -0.018216589465737343,
- -0.019338876008987427,
- 0.016972994431853294,
- 0.055674728006124496,
- 0.09177437424659729,
- 0.07120823860168457,
- -0.06544633209705353,
- 0.007260236423462629,
- 0.10072197020053864,
- 0.012167482636868954,
- -0.04810735583305359,
- 0.2738659083843231,
- 0.034138139337301254,
- 0.02765517495572567,
- 0.021508783102035522,
- 0.06501589715480804,
- 0.019926803186535835,
- -0.00493474118411541,
- -0.08137980103492737,
- 0.10373479127883911,
- -0.009209409356117249,
- -0.041495513170957565,
- -0.03993687778711319,
- 0.0675499364733696,
- -0.06967464834451675,
- -0.016829144209623337,
- -0.011654653586447239,
- 0.006529404316097498,
- 0.04027888551354408,
- -0.008759716525673866,
- 0.009635800495743752,
- 0.005619358737021685,
- 0.001985606737434864,
- 0.0013131422456353903,
- -0.056459780782461166,
- -0.007996490225195885,
- -0.00623561255633831,
- 0.0016923444345593452,
- 0.004945110529661179,
- -4.1193333427285135e-33,
- 0.04238466918468475,
- -0.035933852195739746,
- 0.04742421582341194,
- 0.039058323949575424,
- -0.03664597496390343,
- 0.01573597639799118,
- 0.01342555321753025,
- -0.030359182506799698,
- -0.10341095924377441,
- 0.0052271271124482155,
- 0.002715714741498232,
- -0.02672966942191124,
- -0.014209210872650146,
- -0.033602025359869,
- 0.1605219542980194,
- 0.06582389771938324,
- -0.015030454844236374,
- -0.010394000448286533,
- -0.04167737439274788,
- 0.09179901331663132,
- -0.053164780139923096,
- 0.09481915086507797,
- 0.019679713994264603,
- 0.039324574172496796,
- -0.05251935496926308,
- -0.019770879298448563,
- -0.017519619315862656,
- -0.036102499812841415,
- 0.029962023720145226,
- 0.011852329596877098,
- 0.034273721277713776,
- 0.042435500770807266,
- -0.04435555264353752,
- -0.09071855247020721,
- -0.006369398906826973,
- -0.1008700504899025,
- -0.028485048562288284,
- -0.09556359797716141,
- -0.015113260596990585,
- 0.028389912098646164,
- -0.026416923850774765,
- 0.0010977237252518535,
- -0.011130471713840961,
- 0.027149638161063194,
- 0.051801010966300964,
- 0.03345601633191109,
- 0.007951505482196808,
- 0.046013616025447845,
- -0.0038816381711512804,
- 0.07397723197937012,
- -0.04887307062745094,
- -0.009397887624800205,
- -0.010205350816249847,
- -0.024050626903772354,
- 0.05578887090086937,
- -0.011113695800304413,
- 0.004558388143777847,
- 0.019069379195570946,
- 0.06838539987802505,
- -0.034020379185676575,
- 0.010149165987968445,
- 0.05782001093029976,
- 0.033539529889822006,
- 0.0035386886447668076,
- 0.01966787315905094,
- -0.0043019624426960945,
- 0.020343352109193802,
- -0.006625748239457607,
- 0.004237847868353128,
- -0.06789937615394592,
- 0.02146930806338787,
- 0.0235168244689703,
- 0.06180940568447113,
- 0.07914182543754578,
- 0.007390889804810286,
- 0.060504134744405746,
- 0.03540736064314842,
- 0.014391030184924603,
- -0.04909299686551094,
- -0.035238686949014664,
- -0.0771046131849289,
- -0.017783602699637413,
- -0.044723812490701675,
- -0.009379930794239044,
- 0.03415461257100105,
- 0.06124928966164589,
- -0.06861025094985962,
- -0.11718659847974777,
- 0.023847132921218872,
- -0.012601167894899845,
- -0.15766341984272003,
- -0.02940525859594345,
- 0.021805793046951294,
- -0.03186099976301193,
- 0.011125787161290646,
- 3.272591333710618e-33,
- 0.003593987785279751,
- -0.06999210268259048,
- 0.009512336924672127,
- 0.05955018103122711,
- 0.07381028681993484,
- -0.04298897460103035,
- 0.022115018218755722,
- 0.06952624022960663,
- -0.005141118541359901,
- 0.0793205201625824,
- -0.0734209269285202,
- -0.07950809597969055,
- 0.14886146783828735,
- 0.07283879816532135,
- 0.02589060179889202,
- 0.060700368136167526,
- 0.00024390005273744464,
- 0.006731558591127396,
- -0.023700222373008728,
- 0.0000020615143512259237,
- -0.06367479264736176,
- -0.09316964447498322,
- -0.03563552349805832,
- -0.042130034416913986,
- -0.07309500873088837,
- -0.011793246492743492,
- -0.07958000153303146,
- -0.020808154717087746,
- -0.013352719135582447,
- -0.06570885330438614,
- -0.03990375995635986,
- -0.049187351018190384,
- -0.05651964247226715,
- 0.045597974210977554,
- -0.0666164755821228,
- 0.09407472610473633,
- -0.04144277051091194,
- -0.04236651211977005,
- 0.020323477685451508,
- 0.007258449215441942,
- -0.03576014190912247,
- -0.009046102873980999,
- -0.0352744460105896,
- 0.17979303002357483,
- -0.09029949456453323,
- -0.012441782280802727,
- -0.026303473860025406,
- 0.09922369569540024,
- 0.016805924475193024,
- -0.09756843745708466,
- -0.06030961126089096,
- 0.07867695391178131,
- 0.05145212262868881,
- -0.032377999275922775,
- -0.054810311645269394,
- 0.01064192783087492,
- -0.03942625969648361,
- 0.031339291483163834,
- -0.002658449113368988,
- -0.013540535233914852,
- -0.06276591122150421,
- -0.011261388659477234,
- -0.07601269334554672,
- 0.02626158855855465,
- 0.0020833993330597878,
- 0.01097608357667923,
- -0.022573797032237053,
- 0.10048631578683853,
- 0.06810999661684036,
- -0.053505245596170425,
- 0.059280361980199814,
- 0.0036491164937615395,
- -0.06294962763786316,
- 0.07180503010749817,
- 0.0019199312664568424,
- 0.04798714071512222,
- 0.02240666002035141,
- -0.012696740217506886,
- 0.013960923999547958,
- -0.07325216382741928,
- 0.00846522394567728,
- -0.05854487046599388,
- -0.07283901423215866,
- 0.042284127324819565,
- -0.06770210713148117,
- 0.13874812424182892,
- 0.04659012705087662,
- -0.02291671186685562,
- 0.02700718119740486,
- -0.01717183366417885,
- -0.02447517216205597,
- 0.0467786006629467,
- -0.11150756478309631,
- -0.044135287404060364,
- -0.04291331395506859,
- -1.2548725614180967e-8,
- -0.02469155564904213,
- 0.038010627031326294,
- -0.023502403870224953,
- -0.011222854256629944,
- -0.04871054366230965,
- 0.037652451545000076,
- 0.05421348288655281,
- -0.017624054104089737,
- 0.006654164753854275,
- 0.04680885002017021,
- -0.005078123416751623,
- -0.030339272692799568,
- 0.04060748219490051,
- -0.026487920433282852,
- -0.05572577938437462,
- -0.0162289347499609,
- -0.028089851140975952,
- 0.12237752228975296,
- -0.00800477247685194,
- 0.05484115704894066,
- -0.014630164951086044,
- -0.01383159402757883,
- 0.09588117152452469,
- -0.022219855338335037,
- 0.007196108344942331,
- -0.06621119379997253,
- 0.003975617233663797,
- 0.10964333266019821,
- 0.002181447809562087,
- -0.013708583079278469,
- 0.042215362191200256,
- 0.005112008191645145,
- -0.003216761164367199,
- -0.0035595926456153393,
- 0.001213530544191599,
- -0.01899271458387375,
- -0.008993812836706638,
- -0.07621549069881439,
- -0.015439473092556,
- -0.09317216277122498,
- -0.0011451162863522768,
- 0.022793084383010864,
- 0.04120974242687225,
- 0.011699818074703217,
- -0.009179213084280491,
- -0.06974577158689499,
- 0.06196585297584534,
- -0.012373721227049828,
- -0.015790032222867012,
- -0.004695138894021511,
- -0.11841446906328201,
- 0.038435060530900955,
- -0.019793475046753883,
- 0.0665682926774025,
- 0.02472701296210289,
- -0.01144279446452856,
- -0.00770907336845994,
- -0.007227774243801832,
- -0.03135452792048454,
- 0.07611048966646194,
- 0.059317804872989655,
- 0.03176435828208923,
- -0.009702524170279503,
- 0.006611339282244444
- ]
- },
- {
- "keyword": "nation",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.0012247372651472688,
- 0.03856855258345604,
- -0.06032593548297882,
- -0.016130326315760612,
- 0.02805718593299389,
- -0.0029739614110440016,
- 0.0743834599852562,
- -0.10761387646198273,
- -0.028356097638607025,
- -0.05300217121839523,
- 0.02611025981605053,
- -0.03557586669921875,
- 0.03897332400083542,
- 0.010442541912198067,
- -0.03479788824915886,
- 0.0105995312333107,
- -0.06419780850410461,
- -0.04068787023425102,
- -0.02139372192323208,
- -0.011177849024534225,
- -0.05564504489302635,
- 0.05088971555233002,
- 0.05580770969390869,
- 0.026869233697652817,
- -0.05296260863542557,
- 0.021155089139938354,
- 0.037743695080280304,
- 0.020534344017505646,
- 0.024653494358062744,
- -0.049780696630477905,
- 0.07844974100589752,
- 0.06524859368801117,
- 0.038074057549238205,
- 0.06095769256353378,
- -0.05176536738872528,
- -0.008405139669775963,
- 0.0016098166815936565,
- -0.023591550067067146,
- 0.005431856960058212,
- -0.010742370039224625,
- 0.04442976042628288,
- -0.020469075068831444,
- 0.06196432560682297,
- -0.0477338545024395,
- 0.0786428153514862,
- 0.04511938989162445,
- 0.042756661772727966,
- 0.07707672566175461,
- 0.04198044538497925,
- 0.0729631632566452,
- 0.08428747206926346,
- -0.020157210528850555,
- 0.020863614976406097,
- 0.013751430436968803,
- 0.06955008208751678,
- -0.036518219858407974,
- -0.0340857207775116,
- 0.0016346728662028909,
- -0.038135044276714325,
- -0.05046645179390907,
- 0.08254997432231903,
- -0.016155265271663666,
- -0.06028060242533684,
- 0.003328363411128521,
- 0.10265751928091049,
- 0.0026751416735351086,
- 0.07166915386915207,
- 0.0646832287311554,
- -0.058320362120866776,
- -0.0693068876862526,
- 0.014786885119974613,
- -0.020501185208559036,
- 0.03893568366765976,
- 0.04998123645782471,
- 0.020092101767659187,
- -0.06132377311587334,
- -0.0007891810382716358,
- 0.049370113760232925,
- 0.028007663786411285,
- -0.02362198568880558,
- 0.09215342998504639,
- 0.05503695830702782,
- -0.01659485325217247,
- 0.018601475283503532,
- 0.043048616498708725,
- -0.018224844709038734,
- 0.03082694299519062,
- 0.01239386759698391,
- -0.046089425683021545,
- 0.026109354570508003,
- -0.053662966936826706,
- -0.032012928277254105,
- 0.14896033704280853,
- 0.029559634625911713,
- -0.05066277086734772,
- 0.02776065282523632,
- 0.0738091990351677,
- -0.03763137012720108,
- -0.07086730003356934,
- 0.26402297616004944,
- -0.007646673824638128,
- 0.007531433831900358,
- -0.03173301741480827,
- -0.01847735606133938,
- -0.004006549250334501,
- 0.027382373809814453,
- -0.04413808882236481,
- 0.07554974406957626,
- 0.014005486853420734,
- 0.021843252703547478,
- -0.0013737158151343465,
- 0.04816526174545288,
- -0.06874819099903107,
- 0.015142242424190044,
- 0.008532711304724216,
- -0.012776071205735207,
- -0.03703037276864052,
- -0.010191880166530609,
- 0.042523108422756195,
- 0.0253287460654974,
- -0.018011247739195824,
- 0.024095002561807632,
- -0.09806045889854431,
- 0.01495255809277296,
- 0.05824129655957222,
- 0.004415045026689768,
- 0.004747603554278612,
- -4.480486349603399e-33,
- 0.004218800459057093,
- -0.00020160910207778215,
- 0.03909360244870186,
- -0.014182698912918568,
- 0.0017550738994032145,
- -0.001650928519666195,
- -0.004453178029507399,
- -0.010278970003128052,
- -0.13174942135810852,
- -0.007594286929816008,
- -0.056081373244524,
- 0.04021487757563591,
- -0.0006715447525493801,
- -0.01827828399837017,
- 0.1312676966190338,
- 0.019568372517824173,
- -0.035306815057992935,
- -0.022690318524837494,
- 0.038672156631946564,
- 0.07488178461790085,
- -0.07315025478601456,
- 0.12439250946044922,
- -0.028784267604351044,
- -0.03130164369940758,
- -0.044482678174972534,
- -0.04454489424824715,
- -0.03629296272993088,
- -0.019150827080011368,
- 0.018484188243746758,
- 0.003237958997488022,
- 0.03291533887386322,
- 0.03881385922431946,
- -0.03557472676038742,
- -0.06498004496097565,
- 0.02611161209642887,
- -0.12087398022413254,
- 0.010243920609354973,
- -0.04353240504860878,
- -0.0118037648499012,
- 0.02083623595535755,
- -0.041711606085300446,
- -0.006785290781408548,
- -0.021631110459566116,
- 0.04969709366559982,
- 0.06272844225168228,
- -0.009542079642415047,
- 0.01738700456917286,
- -0.014147603884339333,
- 0.021931778639554977,
- 0.051835283637046814,
- -0.027430346235632896,
- 0.0005907720769755542,
- 0.001381237292662263,
- -0.11064568907022476,
- 0.07258535176515579,
- -0.04845023527741432,
- -0.020043084397912025,
- 0.03701217845082283,
- 0.013838396407663822,
- -0.061239589005708694,
- -0.0001994167541852221,
- 0.020890910178422928,
- -0.017463956028223038,
- 0.05470845103263855,
- -0.014719140715897083,
- 0.033512406051158905,
- 0.051073070615530014,
- -0.014849204570055008,
- 0.050675369799137115,
- -0.07263525575399399,
- -0.01308001484721899,
- 0.02469230629503727,
- 0.061974383890628815,
- 0.06963466107845306,
- 0.022331658750772476,
- 0.08422192931175232,
- 0.07499126344919205,
- 0.024153240025043488,
- -0.061664141714572906,
- -0.06872469931840897,
- -0.05065673962235451,
- 0.003362954594194889,
- 0.0004654992662835866,
- -0.036207061260938644,
- 0.03789566084742546,
- 0.04685812443494797,
- -0.05759377032518387,
- -0.12828674912452698,
- 0.03435278683900833,
- 0.015680847689509392,
- -0.14225679636001587,
- -0.03324363753199577,
- 0.017228251323103905,
- -0.02533988654613495,
- -0.014929501339793205,
- 3.292052744714435e-33,
- 0.038163114339113235,
- -0.03750047832727432,
- 0.01040743663907051,
- 0.04775562509894371,
- 0.042194511741399765,
- -0.006730945315212011,
- -0.002144998637959361,
- 0.06107069551944733,
- -0.04008757695555687,
- 0.04004041478037834,
- -0.02302601747214794,
- -0.09023542702198029,
- 0.08292648196220398,
- 0.09251272678375244,
- 0.017535697668790817,
- 0.060365065932273865,
- 0.002147733001038432,
- -0.035536736249923706,
- -0.017206069082021713,
- -0.033615242689847946,
- -0.06495752185583115,
- -0.07450911402702332,
- -0.04393893480300903,
- -0.021150480955839157,
- -0.06119869276881218,
- -0.022345619276165962,
- -0.04464295879006386,
- 0.016813568770885468,
- -0.019514014944434166,
- -0.05974102020263672,
- -0.004837306682020426,
- -0.10295398533344269,
- -0.036638956516981125,
- -0.016010737046599388,
- -0.0023229096550494432,
- 0.07134488970041275,
- -0.04042205214500427,
- -0.04464730620384216,
- -0.05216987058520317,
- -0.032790958881378174,
- -0.0337354950606823,
- 0.01168336533010006,
- -0.06158774346113205,
- 0.12926363945007324,
- -0.1157422661781311,
- 0.03951418399810791,
- -0.043730251491069794,
- 0.05248464643955231,
- -0.020131010562181473,
- 0.009149305522441864,
- -0.07378170639276505,
- 0.053509846329689026,
- 0.05234098061919212,
- -0.029080823063850403,
- 0.007669959217309952,
- 0.04196733236312866,
- 0.03346233442425728,
- 0.051451195031404495,
- -0.0425528846681118,
- -0.026075780391693115,
- -0.02677282691001892,
- -0.058138325810432434,
- -0.10187838226556778,
- 0.07662929594516754,
- 0.024598106741905212,
- 0.007498918101191521,
- -0.02131369523704052,
- 0.0869123786687851,
- 0.08373146504163742,
- -0.013238435611128807,
- 0.027750477194786072,
- -0.02298767678439617,
- -0.0840272456407547,
- 0.017052210867404938,
- -0.030722850933670998,
- 0.0450802780687809,
- -0.0024097415152937174,
- 0.023284075781702995,
- 0.001875565736554563,
- -0.03632006049156189,
- -0.03713584691286087,
- -0.08147215843200684,
- -0.06943747401237488,
- 0.06160964071750641,
- -0.02747376821935177,
- 0.1547541469335556,
- 0.0987929031252861,
- -0.019207321107387543,
- -0.00970813725143671,
- 0.0463809035718441,
- 0.03854038193821907,
- -0.030051130801439285,
- -0.08287490159273148,
- -0.06082689017057419,
- -0.008778467774391174,
- -1.2743319288688326e-8,
- -0.029170328751206398,
- 0.0261278934776783,
- -0.009901292622089386,
- -0.008220439776778221,
- -0.020029809325933456,
- -0.0006827796460129321,
- 0.06470095366239548,
- -0.08802953362464905,
- -0.04553570598363876,
- 0.08954963833093643,
- 0.018180159851908684,
- -0.001534754759632051,
- 0.027361249551177025,
- -0.013651317916810513,
- -0.024775879457592964,
- -0.07114779949188232,
- -0.04729708284139633,
- 0.05992770940065384,
- -0.0569872222840786,
- 0.007252327166497707,
- -0.024072540923953056,
- 0.014313644729554653,
- 0.037234846502542496,
- -0.06722375750541687,
- -0.02039410173892975,
- -0.005464491434395313,
- -0.023171383887529373,
- 0.04677705839276314,
- 0.013215254060924053,
- 0.011066470295190811,
- 0.06349485367536545,
- 0.0002623983600642532,
- -0.054167941212654114,
- -0.017035460099577904,
- -0.020740097388625145,
- -0.07358682155609131,
- -0.015347431413829327,
- -0.024640986695885658,
- 0.08612263202667236,
- -0.1439691185951233,
- 0.02477923594415188,
- 0.08406553417444229,
- 0.035843491554260254,
- 0.009586036205291748,
- -0.02993021346628666,
- -0.05181673541665077,
- 0.06114383414387703,
- 0.021059729158878326,
- -0.01701417937874794,
- -0.012879833579063416,
- -0.05987211689352989,
- 0.030868640169501305,
- -0.05312419310212135,
- 0.07029934227466583,
- 0.05793702229857445,
- -0.002092176815494895,
- 0.0023670478258281946,
- 0.025244664400815964,
- -0.03834455832839012,
- 0.03292680159211159,
- 0.11352625489234924,
- 0.02389950305223465,
- 0.028220772743225098,
- 0.009614006616175175
- ]
- },
- {
- "keyword": "state",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.006277072709053755,
- 0.049087975174188614,
- 0.037723831832408905,
- 0.07827889919281006,
- -0.022461464628577232,
- -0.015220806933939457,
- 0.03575994446873665,
- -0.059026088565588,
- -0.052461206912994385,
- -0.010004675015807152,
- -0.006335249170660973,
- -0.09077185392379761,
- 0.05279317870736122,
- -0.042327024042606354,
- -0.05250762030482292,
- -0.00345224654302001,
- 0.014057731255888939,
- -0.05386129394173622,
- 0.005434312857687473,
- 0.00040589572745375335,
- 0.046505555510520935,
- 0.04261210933327675,
- -0.06574586778879166,
- 0.036089636385440826,
- 0.06300599873065948,
- 0.10090932995080948,
- 0.007840011268854141,
- -0.006882132962346077,
- 0.025556467473506927,
- -0.05049864947795868,
- -0.0011376248439773917,
- -0.04603351652622223,
- 0.003744789632037282,
- -0.06306076049804688,
- 0.038644034415483475,
- -0.0678987130522728,
- 0.0468687042593956,
- -0.005314829293638468,
- 0.04315914586186409,
- -0.017825782299041748,
- 0.041490256786346436,
- -0.0007507342379540205,
- 0.03482622280716896,
- 0.009358386509120464,
- -0.0271382387727499,
- 0.02624029666185379,
- 0.05505692586302757,
- -0.0008476678049191833,
- 0.039004288613796234,
- 0.0027855713851749897,
- -0.015774836763739586,
- 0.0608803890645504,
- 0.001160560641437769,
- 0.081557996571064,
- 0.016862107440829277,
- -0.007427201606333256,
- 0.021463440731167793,
- 0.08051241934299469,
- -0.1015293225646019,
- -0.008464323356747627,
- 0.03647935390472412,
- -0.004129515495151281,
- -0.06624597311019897,
- 0.02435605600476265,
- 0.05921434611082077,
- 0.09572618454694748,
- 0.00014268532686401159,
- -0.0056214663200080395,
- -0.09087710082530975,
- -0.1776149719953537,
- 0.014775164425373077,
- -0.0341341607272625,
- 0.02361023798584938,
- 0.015973014757037163,
- 0.10686266422271729,
- -0.03628094494342804,
- 0.0010484813246876001,
- -0.002893058117479086,
- 0.12663573026657104,
- -0.009239268489181995,
- -0.033280063420534134,
- -0.1027187928557396,
- -0.03027619607746601,
- 0.0037222327664494514,
- -0.015811733901500702,
- -0.03854695335030556,
- -0.02883947640657425,
- 0.04649704694747925,
- 0.0608874075114727,
- -0.005497939884662628,
- -0.042027801275253296,
- -0.044918663799762726,
- 0.04936126247048378,
- -0.034802138805389404,
- -0.06331013143062592,
- 0.017547283321619034,
- 0.0041307988576591015,
- 0.010642236098647118,
- -0.01664719358086586,
- 0.2671709358692169,
- 0.017485857009887695,
- 0.00464798416942358,
- 0.015951918438076973,
- 0.04041799157857895,
- 0.001400291919708252,
- 0.030911710113286972,
- -0.08503697067499161,
- 0.08677017688751221,
- -0.04551582410931587,
- 0.044016480445861816,
- 0.03268666937947273,
- 0.041768625378608704,
- 0.0037765849847346544,
- 0.054442502558231354,
- 0.00013306473556440324,
- 0.06290706247091293,
- 0.02383803017437458,
- 0.019848065450787544,
- 0.02586948499083519,
- -0.08338245749473572,
- -0.0836016982793808,
- -0.012552081607282162,
- -0.020475508645176888,
- 0.044674742966890335,
- -0.004991238936781883,
- -0.07155166566371918,
- -0.025970477610826492,
- -4.924121223681592e-33,
- 0.004192172084003687,
- -0.07836033403873444,
- 0.010778192430734634,
- 0.026309525594115257,
- -0.06761489063501358,
- 0.04054167866706848,
- 0.05304008722305298,
- -0.08012866973876953,
- -0.07146177440881729,
- -0.0034132811706513166,
- -0.005700881127268076,
- -0.007820364087820053,
- 0.055336687713861465,
- 0.019764717668294907,
- 0.0847051590681076,
- 0.0017110955668613315,
- -0.018736645579338074,
- 0.03806593269109726,
- -0.037440501153469086,
- 0.02334204502403736,
- -0.03481724485754967,
- 0.0674251988530159,
- -0.04343905672430992,
- -0.03157540410757065,
- -0.09561619162559509,
- 0.009008316323161125,
- -0.011331884190440178,
- 0.042916618287563324,
- -0.030839497223496437,
- 0.01772383786737919,
- 0.06038897484540939,
- 0.0422966443002224,
- 0.02642492949962616,
- 0.021590985357761383,
- 0.047063883394002914,
- -0.03733894228935242,
- -0.03604326769709587,
- -0.05514180287718773,
- -0.03344366326928139,
- -0.09797664731740952,
- 0.0393129326403141,
- -0.03612935543060303,
- 0.00751983979716897,
- 0.0740942656993866,
- 0.000020307737941038795,
- 0.003686320735141635,
- 0.005842386744916439,
- -0.03839397057890892,
- -0.03192201629281044,
- 0.003978412132710218,
- -0.05928695574402809,
- 0.030265362933278084,
- -0.08043122291564941,
- -0.040132228285074234,
- -0.03357519209384918,
- 0.005460355430841446,
- 0.020804278552532196,
- -0.0006375856464728713,
- 0.07304829359054565,
- -0.0036400295794010162,
- -0.06942548602819443,
- 0.10846971720457077,
- -0.07406393438577652,
- -0.04295044392347336,
- -0.03678172454237938,
- -0.07804784178733826,
- -0.004041904583573341,
- 0.00984754879027605,
- 0.04197213426232338,
- -0.06105273589491844,
- 0.03229878097772598,
- 0.035035550594329834,
- 0.047062210738658905,
- 0.06371723860502243,
- 0.054926663637161255,
- 0.009112280793488026,
- 0.09596932679414749,
- 0.018978286534547806,
- -0.0921432301402092,
- -0.003179105930030346,
- -0.07446447014808655,
- -0.0495796762406826,
- -0.08400997519493103,
- 0.06370887905359268,
- 0.09928259253501892,
- 0.04479348286986351,
- -0.09017367660999298,
- -0.0735015943646431,
- 0.0078974524512887,
- 0.062222350388765335,
- -0.11535865068435669,
- -0.00018567958613857627,
- 0.01904870755970478,
- 0.06363379210233688,
- -0.003802020801231265,
- 2.2856482971411412e-33,
- 0.011834031902253628,
- -0.07546981424093246,
- 0.02567918412387371,
- 0.05701714754104614,
- 0.012220715172588825,
- -0.04415678605437279,
- 0.042619843035936356,
- 0.03430607169866562,
- -0.006486944854259491,
- -0.05361353978514671,
- -0.07621380686759949,
- -0.015618063509464264,
- 0.1302829086780548,
- 0.07738904654979706,
- 0.03420640155673027,
- 0.07251547276973724,
- 0.07626510411500931,
- -0.006597709842026234,
- -0.02095596119761467,
- 0.001600717194378376,
- -0.06328943371772766,
- -0.04797256365418434,
- -0.06756565719842911,
- 0.004662865772843361,
- -0.06465037912130356,
- 0.029990628361701965,
- -0.003426972310990095,
- -0.011156892403960228,
- -0.020616551861166954,
- -0.044456955045461655,
- 0.012000449001789093,
- -0.07240799069404602,
- -0.07827053964138031,
- 0.09959232807159424,
- -0.11652390658855438,
- -0.0037693995982408524,
- 0.05851410701870918,
- -0.06743203848600388,
- -0.0033679697662591934,
- -0.019802594557404518,
- 0.033219221979379654,
- -0.025140242651104927,
- -0.0003531451220624149,
- 0.1328708380460739,
- -0.028466450050473213,
- 0.054415978491306305,
- -0.005278034135699272,
- 0.08465031534433365,
- -0.07151049375534058,
- 0.0021229092963039875,
- -0.11828064918518066,
- 0.015203574672341347,
- 0.027232125401496887,
- 0.01646851934492588,
- -0.02210051938891411,
- -0.012522376142442226,
- -0.04473084211349487,
- 0.10983803868293762,
- -0.06842982769012451,
- 0.007296692114323378,
- -0.0033546823542565107,
- 0.04152209311723709,
- -0.07513594627380371,
- 0.04223551228642464,
- -0.020588573068380356,
- 0.01434272713959217,
- 0.007032637018710375,
- -0.03659519553184509,
- 0.03760571777820587,
- -0.004414073191583157,
- 0.08214619010686874,
- 0.02772650495171547,
- -0.045204561203718185,
- 0.00596259068697691,
- 0.02138584852218628,
- -0.030479198321700096,
- 0.01661418378353119,
- 0.022685067728161812,
- -0.009111388586461544,
- 0.005669598467648029,
- -0.004665665328502655,
- -0.06265470385551453,
- -0.12775561213493347,
- 0.036254946142435074,
- -0.01803300715982914,
- 0.08827129006385803,
- 0.03601608797907829,
- -0.04201163351535797,
- 0.015705719590187073,
- 0.009542307816445827,
- -0.02875932864844799,
- 0.06597816199064255,
- -0.050945959985256195,
- -0.03710861876606941,
- 0.0001552483590785414,
- -1.311442510143479e-8,
- -0.0024025957100093365,
- 0.03159447759389877,
- -0.033031564205884933,
- 0.014630280435085297,
- 0.03360547125339508,
- 0.07191187143325806,
- 0.03122108243405819,
- 0.012700366787612438,
- 0.01805267296731472,
- -0.02259204350411892,
- 0.015105100348591805,
- 0.001282145967707038,
- -0.0018066702177748084,
- -0.05765434354543686,
- -0.005268686451017857,
- -0.0720820352435112,
- -0.051071230322122574,
- 0.03549136593937874,
- -0.014694811776280403,
- 0.009179573506116867,
- 0.011886159889400005,
- -0.01180260069668293,
- 0.015873150900006294,
- 0.0962447002530098,
- -0.048604466021060944,
- -0.01497739925980568,
- 0.10226694494485855,
- 0.03408104553818703,
- 0.03469989448785782,
- 0.048817552626132965,
- 0.016350947320461273,
- 0.10763853788375854,
- 0.008814250119030476,
- -0.05013203248381615,
- -0.044369783252477646,
- -0.09867661446332932,
- -0.06501907110214233,
- -0.030769040808081627,
- 0.03645658120512962,
- -0.04389242082834244,
- -0.01341394055634737,
- 0.023667937144637108,
- -0.00011304332292638719,
- 0.012311470694839954,
- -0.006434651091694832,
- 0.025026073679327965,
- 0.0073737092316150665,
- -0.04173511639237404,
- -0.004587650299072266,
- -0.0618894025683403,
- -0.06364699453115463,
- -0.03155049309134483,
- -0.016987396404147148,
- 0.05854131653904915,
- -0.0072731440886855125,
- -0.005873552989214659,
- 0.043310947716236115,
- -0.029007192701101303,
- -0.04535796120762825,
- 0.04143553227186203,
- 0.10260548442602158,
- -0.005367856007069349,
- 0.05483391135931015,
- 0.0018916205735877156
- ]
- },
- {
- "keyword": "province",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.028905771672725677,
- 0.03158486261963844,
- 0.021788589656352997,
- 0.034226857125759125,
- -0.008948286063969135,
- -0.02881232090294361,
- 0.05706988275051117,
- -0.006276208441704512,
- -0.018060574308037758,
- 0.003174835117533803,
- 0.019203612580895424,
- -0.07588434219360352,
- -0.02283664233982563,
- -0.02825290709733963,
- -0.042111776769161224,
- -0.017275942489504814,
- 0.0350692942738533,
- -0.007284105289727449,
- 0.009801894426345825,
- -0.05430293083190918,
- -0.05992436408996582,
- 0.020514018833637238,
- 0.05609123036265373,
- -0.013199804350733757,
- 0.0517602302134037,
- -0.0016217968659475446,
- -0.017047986388206482,
- 0.07084866613149643,
- 0.05291200429201126,
- 0.007395788095891476,
- -0.0012978287413716316,
- -0.017251277342438698,
- 0.04024197533726692,
- -0.02097168006002903,
- 0.02827707678079605,
- 0.06448281556367874,
- 0.02282857894897461,
- -0.11983220279216766,
- -0.026687825098633766,
- 0.03018522821366787,
- 0.003440744709223509,
- 0.030711567029356956,
- -0.008577357977628708,
- 0.006742261815816164,
- 0.04872064292430878,
- 0.020673425868153572,
- 0.010200426913797855,
- 0.03157399222254753,
- 0.014262363314628601,
- -0.033289585262537,
- 0.02551659755408764,
- 0.0067128632217645645,
- -0.025328803807497025,
- -0.00043982602073810995,
- 0.025922181084752083,
- 0.030940089374780655,
- 0.0056820763275027275,
- -0.011702600866556168,
- 0.06451638787984848,
- 0.016055023297667503,
- -0.06749812513589859,
- 0.031113818287849426,
- -0.024582095444202423,
- 0.007848324254155159,
- 0.04859239608049393,
- 0.03040829859673977,
- -0.04860924556851387,
- 0.08416514098644257,
- 0.009817734360694885,
- -0.12962207198143005,
- 0.03604228049516678,
- -0.03647332638502121,
- -0.007431440521031618,
- 0.0007705989992246032,
- -0.03477674350142479,
- -0.11877197027206421,
- -0.08282185345888138,
- -0.02871210128068924,
- 0.028699543327093124,
- -0.00979013554751873,
- 0.02441166155040264,
- -0.0021900690626353025,
- -0.004183923825621605,
- 0.02925974875688553,
- 0.0268760547041893,
- -0.061868488788604736,
- -0.01733332872390747,
- 0.02121860906481743,
- 0.06737039238214493,
- -0.01990617997944355,
- -0.014920446090400219,
- 0.045501384884119034,
- 0.04967590421438217,
- 0.05218374729156494,
- -0.07133264094591141,
- -0.01651298813521862,
- 0.12059643864631653,
- -0.025884639471769333,
- -0.04345918074250221,
- 0.2059652954339981,
- 0.009584544226527214,
- -0.005019096191972494,
- 0.008906234987080097,
- 0.021535398438572884,
- 0.004971746355295181,
- -0.012670939788222313,
- -0.0519520528614521,
- 0.09646701067686081,
- -0.026092514395713806,
- 0.01932831108570099,
- -0.00024743087124079466,
- 0.028980165719985962,
- -0.0710194930434227,
- -0.006976115982979536,
- 0.029152343049645424,
- 0.019737185910344124,
- 0.020863715559244156,
- 0.04478501155972481,
- -0.04116344451904297,
- 0.0016431803815066814,
- -0.08874723315238953,
- 0.04600798338651657,
- -0.06324047595262527,
- -0.02025487832725048,
- 0.021106237545609474,
- -0.06399564445018768,
- -0.018485773354768753,
- -3.9019803964996416e-33,
- 0.0032634150702506304,
- -0.03040657378733158,
- 0.014660200104117393,
- 0.09865771979093552,
- -0.07038534432649612,
- 0.027597419917583466,
- 0.034462105482816696,
- -0.06275340169668198,
- -0.08655776083469391,
- 0.028950359672307968,
- 0.01339351199567318,
- 0.002696976764127612,
- -0.008156799711287022,
- 0.004019043408334255,
- 0.15572485327720642,
- 0.0236907247453928,
- 0.02650979347527027,
- 0.059729479253292084,
- 0.02428928017616272,
- -0.010859373956918716,
- -0.022849736735224724,
- 0.06904653459787369,
- 0.018905477598309517,
- -0.06238573417067528,
- -0.023854216560721397,
- -0.05676494166254997,
- 0.019260436296463013,
- -0.0449150912463665,
- -0.00013078920892439783,
- 0.028532754629850388,
- 0.03260396793484688,
- 0.017294056713581085,
- 0.007848658598959446,
- 0.016901547089219093,
- 0.015356852672994137,
- -0.043716173619031906,
- -0.03267551586031914,
- -0.09896556288003922,
- -0.05436241626739502,
- 0.04215221107006073,
- -0.0027208852116018534,
- -0.020880186930298805,
- -0.0032292245887219906,
- 0.005622751545161009,
- 0.022281477227807045,
- 0.055751312524080276,
- 0.026276294142007828,
- -0.019342446699738503,
- 0.05799243971705437,
- -0.0260310135781765,
- -0.008515398018062115,
- 0.037889715284109116,
- -0.031495384871959686,
- 0.02676471509039402,
- -0.028159217908978462,
- 0.007024800404906273,
- 0.005342344753444195,
- 0.008837573230266571,
- 0.04609518125653267,
- -0.010915666818618774,
- 0.10555578768253326,
- 0.023224137723445892,
- -0.03675086051225662,
- -0.049759961664676666,
- 0.050952695310115814,
- -0.0832916796207428,
- 0.0669681578874588,
- 0.02293180115520954,
- 0.04522259905934334,
- -0.0815359503030777,
- -0.014044088311493397,
- -0.0043916255235672,
- 0.08379749953746796,
- 0.07395929098129272,
- 0.0804053544998169,
- 0.03145740553736687,
- -0.10166893154382706,
- 0.04926019161939621,
- -0.09560545533895493,
- 0.03081531822681427,
- -0.11480366438627243,
- -0.07766872644424438,
- -0.09874532371759415,
- 0.08877748250961304,
- 0.14359700679779053,
- -0.006532486528158188,
- 0.0025852713733911514,
- -0.04577871784567833,
- -0.031223464757204056,
- -0.03509579226374626,
- -0.13545630872249603,
- -0.07677444070577621,
- 0.025259077548980713,
- 0.03953145071864128,
- -0.011001966893672943,
- 2.6968523841061012e-33,
- -0.005092016886919737,
- -0.0665305107831955,
- 0.01863570511341095,
- 0.06185171380639076,
- -0.03363296762108803,
- -0.0513790138065815,
- 0.05062171816825867,
- 0.06095041334629059,
- -0.02645360305905342,
- 0.06406502425670624,
- -0.017596667632460594,
- -0.06473580002784729,
- 0.1330622434616089,
- 0.035407938063144684,
- -0.011916836723685265,
- 0.11683183163404465,
- 0.03504176810383797,
- 0.06663339585065842,
- -0.09356162697076797,
- -0.010624139569699764,
- -0.06377293169498444,
- -0.16750262677669525,
- 0.010684046894311905,
- -0.04461287334561348,
- -0.07915761321783066,
- 0.0747736468911171,
- 0.005797159392386675,
- -0.06389718502759933,
- -0.05116582661867142,
- -0.02751023694872856,
- -0.043246690183877945,
- -0.011194906197488308,
- -0.10862763971090317,
- 0.08632412552833557,
- -0.11842691153287888,
- 0.000033686916140140966,
- 0.028291087597608566,
- -0.05913893133401871,
- -0.003474577097222209,
- -0.021271837875247,
- -0.023716550320386887,
- -0.023428888991475105,
- 0.05893732234835625,
- 0.10834808647632599,
- -0.037728987634181976,
- -0.026675187051296234,
- 0.05784427374601364,
- 0.09457286447286606,
- 0.014027956873178482,
- 0.007839416153728962,
- -0.03285869210958481,
- 0.05959056690335274,
- 0.004883390851318836,
- 0.040621764957904816,
- -0.010006140917539597,
- -0.015463479794561863,
- 0.0017791091231629252,
- 0.05613524094223976,
- -0.07077021896839142,
- -0.06674283742904663,
- 0.060791175812482834,
- 0.06833919137716293,
- -0.026023363694548607,
- 0.035679060965776443,
- 0.033145513385534286,
- 0.0861465185880661,
- 0.012928027659654617,
- 0.04680097475647926,
- 0.11650515347719193,
- -0.07708970457315445,
- 0.05287514626979828,
- 0.020936770364642143,
- -0.06316220760345459,
- -0.01790492981672287,
- -0.021435029804706573,
- 0.05586548522114754,
- 0.052700500935316086,
- -0.024266354739665985,
- 0.024457212537527084,
- -0.04196500405669212,
- -0.005774902179837227,
- -0.10099975019693375,
- -0.015377836301922798,
- 0.053771231323480606,
- -0.05473199114203453,
- -0.0037817012052983046,
- 0.06872484087944031,
- -0.06607905775308609,
- 0.031812407076358795,
- -0.013288038782775402,
- -0.009904501028358936,
- 0.08425983041524887,
- -0.05868595093488693,
- -0.023693116381764412,
- -0.0003892728709615767,
- -1.1214487116717464e-8,
- -0.045629676431417465,
- 0.03609420731663704,
- -0.10240653902292252,
- 0.018618028610944748,
- 0.005037959199398756,
- -0.0013341738376766443,
- -0.07427028566598892,
- 0.026441585272550583,
- -0.01813741773366928,
- 0.08052802830934525,
- 0.011966077610850334,
- -0.01673777960240841,
- -0.050089385360479355,
- -0.05968143418431282,
- -0.017602305859327316,
- -0.023258300498127937,
- -0.060273416340351105,
- 0.03457155451178551,
- 0.011549859307706356,
- -0.08192808926105499,
- -0.02938687615096569,
- 0.04360600933432579,
- 0.040679268538951874,
- -0.015833379700779915,
- -0.04201468080282211,
- -0.024572832509875298,
- 0.02938464656472206,
- 0.06624896824359894,
- 0.1053403913974762,
- -0.010913018137216568,
- 0.048578113317489624,
- 0.0037982522044330835,
- -0.05382203310728073,
- -0.020720969885587692,
- 0.0070127202197909355,
- -0.028742317110300064,
- -0.07445338368415833,
- -0.06845405697822571,
- 0.04273873567581177,
- -0.058310315012931824,
- -0.008055644109845161,
- -0.03699846938252449,
- 0.04007101431488991,
- 0.03446396812796593,
- 0.02991555631160736,
- 0.020262498408555984,
- 0.030801469460129738,
- 0.024444017559289932,
- 0.004036158788949251,
- 0.023140890523791313,
- -0.05837950482964516,
- -0.008557465858757496,
- -0.0036404780112206936,
- 0.07359728962182999,
- 0.021349117159843445,
- 0.0657767727971077,
- -0.027957133948802948,
- -0.07269428670406342,
- -0.030457166954874992,
- 0.10587364435195923,
- 0.009522545151412487,
- -0.05853285267949104,
- 0.002190237632021308,
- -0.0010921343928202987
- ]
- },
- {
- "keyword": "territory",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.10993707180023193,
- 0.028462007641792297,
- -0.020251428708434105,
- -0.00863848626613617,
- 0.006387021858245134,
- -0.08892073482275009,
- 0.07179979234933853,
- -0.07292819023132324,
- -0.02365274168550968,
- -0.03855384886264801,
- -0.005559231620281935,
- -0.08789222687482834,
- 0.052629224956035614,
- 0.01881176233291626,
- 0.022149715572595596,
- -0.016028400510549545,
- -0.0050675347447395325,
- -0.034950144588947296,
- -0.07567523419857025,
- -0.03193008899688721,
- 0.016619306057691574,
- 0.0408191941678524,
- 0.03406365215778351,
- -0.01469409093260765,
- 0.029758218675851822,
- 0.043142206966876984,
- 0.03654995933175087,
- 0.06590483337640762,
- 0.037540946155786514,
- -0.1258380115032196,
- 0.013103042729198933,
- 0.0328422486782074,
- -0.023124776780605316,
- 0.009861241094768047,
- -0.04669644311070442,
- 0.06900240480899811,
- 0.007125959265977144,
- -0.0336671806871891,
- 0.016039999201893806,
- -0.038289837539196014,
- -0.01293207611888647,
- -0.06851214170455933,
- 0.06641753017902374,
- 0.038266539573669434,
- -0.010284611955285072,
- 0.08068278431892395,
- 0.07864997535943985,
- 0.03976337984204292,
- 0.03878074139356613,
- -0.026160284876823425,
- 0.06585219502449036,
- -0.01888151653110981,
- -0.021479586139321327,
- 0.04751892760396004,
- -0.0016447731759399176,
- -0.005477808881551027,
- 0.008236813358962536,
- 0.05652144178748131,
- 0.014835944399237633,
- -0.07132001221179962,
- 0.02281809039413929,
- 0.007668100763112307,
- -0.01320719812065363,
- 0.038987692445516586,
- 0.058441124856472015,
- -0.07783636450767517,
- -0.08950451016426086,
- 0.07476667314767838,
- -0.1260327696800232,
- -0.06103990226984024,
- 0.027937980368733406,
- -0.01958504319190979,
- -0.011390557512640953,
- 0.03668338805437088,
- 0.029562819749116898,
- -0.0006689464789815247,
- -0.02769891917705536,
- 0.04434854909777641,
- 0.07355668395757675,
- -0.004021119326353073,
- 0.052452076226472855,
- 0.0765901580452919,
- -0.024185189977288246,
- 0.030578630045056343,
- -0.012666822411119938,
- -0.06649615615606308,
- 0.0064962394535541534,
- -0.0485990047454834,
- 0.04707727208733559,
- -0.021852390840649605,
- 0.019403045997023582,
- -0.008110339753329754,
- 0.13844433426856995,
- 0.016989490017294884,
- -0.08795198053121567,
- -0.02304740436375141,
- 0.03557884693145752,
- -0.04078921303153038,
- -0.00835978239774704,
- 0.19994159042835236,
- 0.037570323795080185,
- -0.017820337787270546,
- -0.04616367816925049,
- -0.005568595603108406,
- -0.042592767626047134,
- -0.017448458820581436,
- -0.03762340918183327,
- 0.07587600499391556,
- 0.025566650554537773,
- 0.005345742218196392,
- -0.04882756620645523,
- 0.008698578923940659,
- -0.11046396940946579,
- -0.008564631454646587,
- 0.008959844708442688,
- -0.006854641251266003,
- 0.03152599558234215,
- -0.03501133620738983,
- 0.004974470939487219,
- -0.095209501683712,
- -0.04008099436759949,
- -0.015513584017753601,
- -0.07177937775850296,
- -0.03461300581693649,
- 0.058399658650159836,
- -0.04063953086733818,
- -0.03579576686024666,
- -4.8855054995731106e-33,
- 0.013045597821474075,
- -0.10591576993465424,
- -0.04866263270378113,
- 0.06845572590827942,
- -0.042161766439676285,
- -0.03423760458827019,
- 0.050950128585100174,
- -0.05860007181763649,
- -0.09390822798013687,
- 0.06964075565338135,
- 0.03201507404446602,
- 0.02981492504477501,
- -0.01569869928061962,
- -0.03856106847524643,
- 0.20077627897262573,
- 0.0530942901968956,
- -0.001792526920326054,
- -0.023347126320004463,
- 0.001165822148323059,
- 0.03461075201630592,
- -0.03486468642950058,
- 0.10314299166202545,
- -0.011121712625026703,
- 0.04180985316634178,
- -0.0008469149470329285,
- -0.03421975299715996,
- -0.03552166745066643,
- -0.07831478863954544,
- -0.07246487587690353,
- 0.021946599707007408,
- -0.03762717917561531,
- 0.04714840278029442,
- -0.030828818678855896,
- -0.00901679415255785,
- 0.031143484637141228,
- 0.039467211812734604,
- -0.007466067560017109,
- -0.091273732483387,
- -0.05343732610344887,
- 0.0019310230854898691,
- -0.024303579702973366,
- -0.04688364639878273,
- 0.01987709105014801,
- 0.021703682839870453,
- 0.03647799789905548,
- -0.006080800201743841,
- 0.033596765249967575,
- -0.02529175393283367,
- -0.03183077648282051,
- 0.07226390391588211,
- -0.009054644033312798,
- 0.005165203474462032,
- 0.01560828648507595,
- -0.07978671044111252,
- 0.04738769307732582,
- -0.0110499057918787,
- -0.03142234683036804,
- -0.0007397394510917366,
- -0.018036287277936935,
- 0.024064207449555397,
- 0.0005180636653676629,
- 0.02128063514828682,
- 0.03428759425878525,
- -0.0021792312618345022,
- -0.05081523582339287,
- -0.08409007638692856,
- 0.08320138603448868,
- 0.028110820800065994,
- 0.029871579259634018,
- -0.04506992548704147,
- -0.03564455360174179,
- 0.03393326699733734,
- 0.06678090244531631,
- 0.0782386064529419,
- -0.026225846260786057,
- 0.01008434034883976,
- 0.023818686604499817,
- -0.004485507030040026,
- -0.005288122687488794,
- -0.06266497075557709,
- -0.05435647442936897,
- -0.031777869910001755,
- -0.09733735024929047,
- 0.0697912648320198,
- 0.04209812730550766,
- 0.02273392677307129,
- -0.02289515919983387,
- -0.10215913504362106,
- -0.021347925066947937,
- -0.04459773749113083,
- -0.11780896037817001,
- -0.011818768456578255,
- 0.04365885630249977,
- 0.03069416433572769,
- -0.028619466349482536,
- 3.9251938385344894e-33,
- -0.018119584769010544,
- -0.03591255098581314,
- -0.007958144880831242,
- 0.06404094398021698,
- -0.045809708535671234,
- 0.015878140926361084,
- 0.07590870559215546,
- 0.0187235064804554,
- -0.03675699606537819,
- 0.014963144436478615,
- -0.155557781457901,
- -0.005846262443810701,
- 0.10651832073926926,
- 0.045718926936388016,
- 0.025841975584626198,
- 0.02088978700339794,
- 0.08415526151657104,
- 0.014889371581375599,
- -0.018266143277287483,
- 0.013800800777971745,
- -0.04598001018166542,
- -0.022176438942551613,
- -0.02615269273519516,
- -0.01678617112338543,
- -0.028837278485298157,
- 0.08319748193025589,
- -0.024536095559597015,
- -0.019803116098046303,
- -0.03395194560289383,
- 0.008648190647363663,
- -0.0030981667805463076,
- -0.08810367435216904,
- -0.026984333992004395,
- 0.02457333728671074,
- -0.09392818063497543,
- -0.029625121504068375,
- 0.05764930322766304,
- -0.0330883227288723,
- 0.0025738172698765993,
- -0.01937408559024334,
- 0.037109822034835815,
- -0.025245847180485725,
- -0.01023666188120842,
- 0.17043571174144745,
- -0.06849677860736847,
- 0.0331651046872139,
- 0.05399118363857269,
- 0.10200011730194092,
- 0.0021145655773580074,
- 0.03241538256406784,
- -0.013167796656489372,
- 0.07083103805780411,
- 0.021211538463830948,
- 0.01476005744189024,
- 0.013045594096183777,
- 0.011833536438643932,
- -0.018645713105797768,
- 0.08669920265674591,
- 0.04971309006214142,
- -0.003550497815012932,
- -0.008989973925054073,
- 0.07701018452644348,
- -0.05100007727742195,
- 0.09988872706890106,
- 0.021407024934887886,
- 0.06548700481653214,
- -0.021235469728708267,
- 0.031939391046762466,
- 0.054152682423591614,
- 0.024129921570420265,
- 0.0032483770046383142,
- 0.040196649730205536,
- -0.11903739720582962,
- 0.027177719399333,
- 0.023365382105112076,
- 0.053721215575933456,
- 0.03511524945497513,
- -0.030679265037178993,
- -0.020782629027962685,
- 0.03215455636382103,
- -0.03179195523262024,
- -0.056483104825019836,
- -0.015051008202135563,
- -0.005734150763601065,
- 0.06874635070562363,
- 0.08126195520162582,
- -0.0015700766816735268,
- -0.08377937227487564,
- 0.05721232667565346,
- -0.04660547152161598,
- 0.012661385349929333,
- 0.025396909564733505,
- -0.0944286584854126,
- -0.03479505702853203,
- -0.01597362942993641,
- -1.1046793702007562e-8,
- -0.012876030057668686,
- 0.010673354379832745,
- -0.05256529152393341,
- -0.04591715335845947,
- -0.03927800804376602,
- 0.007297019474208355,
- -0.004804556258022785,
- 0.022436091676354408,
- 0.024748679250478745,
- 0.1386294662952423,
- -0.007017592433840036,
- 0.0007983462419360876,
- -0.03392341732978821,
- -0.01389148086309433,
- -0.00991393905133009,
- 0.01242105569690466,
- 0.029648074880242348,
- 0.06541760265827179,
- -0.0775427296757698,
- 0.0005841755773872137,
- 0.012613384053111076,
- -0.01718675158917904,
- 0.044333115220069885,
- -0.06600283831357956,
- 0.0055660223588347435,
- -0.07503314316272736,
- 0.02904733084142208,
- 0.07733598351478577,
- 0.07130835950374603,
- -0.020361999049782753,
- 0.026547810062766075,
- 0.03183302283287048,
- -0.09107080101966858,
- 0.01408423576503992,
- 0.002155037596821785,
- -0.00727056572213769,
- 0.009009885601699352,
- -0.0187312550842762,
- 0.04613487422466278,
- -0.0533171184360981,
- -0.05341888591647148,
- 0.05484255403280258,
- 0.08713191002607346,
- 0.0018377561355009675,
- -0.018335305154323578,
- 0.0028090467676520348,
- -0.019568562507629395,
- 0.015532993711531162,
- 0.015700144693255424,
- -0.08533962070941925,
- -0.06592505425214767,
- 0.02556837536394596,
- -0.04530885070562363,
- 0.09528019279241562,
- 0.09445556998252869,
- 0.013334480114281178,
- 0.01019951980561018,
- 0.00478546554222703,
- -0.0411086305975914,
- 0.09000349789857864,
- 0.048922546207904816,
- 0.06227361410856247,
- -0.0056118713691830635,
- -0.07565384358167648
- ]
- },
- {
- "keyword": "county",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.01629270240664482,
- 0.002104742219671607,
- -0.04466259106993675,
- 0.09866425395011902,
- -0.05477207899093628,
- -0.04736752063035965,
- 0.02983281761407852,
- -0.06485367566347122,
- 0.022184016183018684,
- -0.031189201399683952,
- 0.0654568076133728,
- -0.058358363807201385,
- 0.016798246651887894,
- -0.0223903339356184,
- -0.03267231211066246,
- 0.009198438376188278,
- 0.013375894166529179,
- 0.005200425628572702,
- -0.02678353525698185,
- -0.0615876205265522,
- 0.026975493878126144,
- 0.07526279240846634,
- -0.04973964765667915,
- 0.036788925528526306,
- -0.004602451808750629,
- 0.026499520987272263,
- -0.007542670238763094,
- 0.040765535086393356,
- 0.01233192253857851,
- -0.07708056271076202,
- 0.03289376571774483,
- 0.018864348530769348,
- -0.013598925434052944,
- 0.009663752280175686,
- 0.04229430481791496,
- -0.021484017372131348,
- 0.024425603449344635,
- 0.002383255632594228,
- 0.006367056630551815,
- 0.0043473499827086926,
- -0.0013727667974308133,
- -0.023844148963689804,
- -0.00726551515981555,
- 0.01953887566924095,
- -0.07329866290092468,
- 0.03982860594987869,
- -0.003023842116817832,
- -0.0030084329191595316,
- 0.08386661857366562,
- -0.03812936693429947,
- 0.047811880707740784,
- 0.017503423616290092,
- 0.020175281912088394,
- 0.03045167215168476,
- -0.030085144564509392,
- 0.03232317790389061,
- 0.0034037488512694836,
- 0.09587612003087997,
- -0.055430397391319275,
- -0.04109153896570206,
- 0.05249347537755966,
- 0.042453330010175705,
- -0.10850213468074799,
- 0.014746912755072117,
- -0.05041331797838211,
- 0.01425581332296133,
- -0.03417877480387688,
- -0.03731061890721321,
- -0.002537356223911047,
- -0.19527028501033783,
- 0.02416786551475525,
- -0.057087503373622894,
- 0.0659826323390007,
- 0.014770985580980778,
- 0.051938895136117935,
- -0.07385986298322678,
- 0.0069826203398406506,
- 0.029338860884308815,
- 0.10448504239320755,
- -0.09638602286577225,
- -0.05700092017650604,
- -0.023541107773780823,
- -0.035118021070957184,
- 0.03682733699679375,
- 0.003976588603109121,
- -0.0003981862682849169,
- -0.018729060888290405,
- 0.058553773909807205,
- 0.029387440532445908,
- -0.0030498832929879427,
- -0.003376449691131711,
- 0.011114044114947319,
- -0.00926522072404623,
- -0.006926706526428461,
- -0.05842985585331917,
- 0.04920333996415138,
- 0.041936326771974564,
- -0.010114304721355438,
- -0.03645923733711243,
- 0.27264681458473206,
- -0.03263033926486969,
- -0.007474430836737156,
- -0.05445368215441704,
- -0.04295060411095619,
- 0.005249391309916973,
- 0.0019932135473936796,
- -0.05830969661474228,
- 0.12530174851417542,
- -0.027938686311244965,
- -0.011069870553910732,
- 0.0011097698006778955,
- 0.023614659905433655,
- -0.0018001137068495154,
- 0.08052884042263031,
- 0.040052078664302826,
- 0.03142188861966133,
- 0.05789601802825928,
- -0.038715921342372894,
- -0.02173731103539467,
- -0.029007326811552048,
- -0.03206523135304451,
- -0.01795545220375061,
- -0.04815501347184181,
- 0.040539633482694626,
- 0.06345555186271667,
- -0.037586014717817307,
- 0.05068357661366463,
- -4.1305233142643724e-33,
- 0.05776232108473778,
- -0.007858321070671082,
- -0.002748438622802496,
- 0.02017924003303051,
- -0.02287324331700802,
- -0.007532184477895498,
- 0.05281106010079384,
- -0.030086858198046684,
- -0.06235429272055626,
- 0.008771632798016071,
- 0.021784182637929916,
- -0.006648905109614134,
- -0.02045660838484764,
- -0.11189466714859009,
- 0.09130902588367462,
- 0.062212541699409485,
- -0.03115316666662693,
- 0.008788159117102623,
- -0.037910331040620804,
- 0.0073575167916715145,
- -0.04160584881901741,
- 0.04076380282640457,
- -0.015564856119453907,
- 0.03640410304069519,
- -0.07677765190601349,
- 0.00596690783277154,
- -0.005006702151149511,
- -0.010457773692905903,
- 0.10670293867588043,
- 0.040303975343704224,
- 0.05681838467717171,
- 0.012588251382112503,
- 0.051192548125982285,
- -0.017931943759322166,
- 0.0030432925559580326,
- -0.03789779171347618,
- -0.019547060132026672,
- -0.017661817371845245,
- -0.033975064754486084,
- 0.06511859595775604,
- 0.02894875779747963,
- -0.06853729486465454,
- -0.0023454336915165186,
- 0.04865134879946709,
- -0.0774463638663292,
- -0.0005090748891234398,
- -0.02516641467809677,
- 0.023495230823755264,
- -0.014704151079058647,
- -0.01336257066577673,
- 0.005141336936503649,
- -0.024891909211874008,
- -0.03909796476364136,
- 0.01808023639023304,
- -0.0064212665893137455,
- -0.007652072701603174,
- -0.04992018640041351,
- 0.01603643223643303,
- 0.08406984061002731,
- 0.02918529137969017,
- 0.07103132456541061,
- 0.12529423832893372,
- -0.07700024545192719,
- 0.024140749126672745,
- 0.005742976441979408,
- -0.09270742535591125,
- 0.013885022141039371,
- -0.047780733555555344,
- 0.012418835423886776,
- -0.04177918657660484,
- 0.03562789410352707,
- 0.026013780385255814,
- 0.12784641981124878,
- 0.10949065536260605,
- 0.07740519195795059,
- -0.044721245765686035,
- 0.008755657821893692,
- 0.028110580518841743,
- -0.06552732735872269,
- 0.013715669512748718,
- -0.010152952745556831,
- -0.0762280821800232,
- -0.10591641813516617,
- 0.06472896039485931,
- 0.09216060489416122,
- 0.004071406554430723,
- -0.02597249485552311,
- -0.09794668108224869,
- -0.008830208331346512,
- 0.010495321825146675,
- -0.1357220709323883,
- 0.0034581979271024466,
- 0.05224573612213135,
- -0.021289924159646034,
- -0.03639688342809677,
- 1.5915113524698955e-33,
- -0.014946400187909603,
- -0.08319398760795593,
- 0.01800181344151497,
- 0.08416464179754257,
- -0.04771142825484276,
- 0.03297226503491402,
- -0.052570004016160965,
- -0.0037319522816687822,
- 0.021759754046797752,
- 0.031163759529590607,
- -0.07003564387559891,
- -0.04004757106304169,
- 0.006310927681624889,
- 0.0664740800857544,
- 0.03306732326745987,
- 0.01576032117009163,
- -0.02754073217511177,
- -0.07387414574623108,
- -0.0416506864130497,
- -0.03195284307003021,
- -0.0915369838476181,
- -0.04051431640982628,
- 0.03662252426147461,
- 0.033157121390104294,
- 0.019819436594843864,
- -0.013281126506626606,
- -0.11797508597373962,
- -0.03713565692305565,
- -0.07038950175046921,
- 0.02844005823135376,
- -0.01518870610743761,
- -0.10312063246965408,
- -0.01267778780311346,
- 0.016421733424067497,
- -0.1190166100859642,
- 0.0035836969036608934,
- -0.011054368689656258,
- -0.005588178988546133,
- 0.0065620834939181805,
- -0.013170075602829456,
- -0.08275562524795532,
- -0.022496020421385765,
- -0.03482853248715401,
- 0.12284177541732788,
- -0.05309627577662468,
- 0.016562445089221,
- -0.0535297691822052,
- 0.03991885855793953,
- 0.030728835612535477,
- -0.06087780371308327,
- -0.023281434550881386,
- 0.09497252106666565,
- 0.034807249903678894,
- -0.047201838344335556,
- -0.02581019140779972,
- 0.008518354035913944,
- -0.038825664669275284,
- 0.04986966401338577,
- -0.05731146037578583,
- -0.015740348026156425,
- 0.019980309531092644,
- 0.00022485965746454895,
- -0.0663517415523529,
- 0.0288214311003685,
- 0.05017681047320366,
- -0.007512297946959734,
- -0.0615275539457798,
- 0.036548588424921036,
- 0.04983232915401459,
- -0.0035206570755690336,
- 0.04528846964240074,
- -0.0042968192137777805,
- -0.008537082001566887,
- 0.03517819195985794,
- -0.033596448600292206,
- 0.036938440054655075,
- 0.07066057622432709,
- 0.07874566316604614,
- -0.026051193475723267,
- 0.009728144854307175,
- -0.05196882039308548,
- -0.07830946892499924,
- -0.04467865824699402,
- 0.017058327794075012,
- -0.09939845651388168,
- 0.03510362654924393,
- 0.11261969804763794,
- -0.047135189175605774,
- -0.04007892310619354,
- -0.0006276432541199028,
- -0.06720249354839325,
- 0.09512310475111008,
- -0.05796859413385391,
- 0.023147087544202805,
- 0.046849608421325684,
- -1.262773707821907e-8,
- 0.0339525081217289,
- 0.060114189982414246,
- -0.01715710200369358,
- 0.008322521112859249,
- 0.06702812761068344,
- 0.05875387042760849,
- 0.07278777658939362,
- 0.07854552567005157,
- 0.01490077469497919,
- 0.06689779460430145,
- 0.03862087056040764,
- 0.003029879881069064,
- 0.025223184376955032,
- -0.03458482772111893,
- -0.11196254193782806,
- -0.01811247505247593,
- -0.04046737775206566,
- 0.004336302634328604,
- 0.04373326525092125,
- -0.021385038271546364,
- 0.015688443556427956,
- -0.0227693822234869,
- -0.0459015928208828,
- -0.0024325211998075247,
- 0.0036254022270441055,
- -0.08539879322052002,
- 0.08562611043453217,
- 0.08655937761068344,
- -0.05550484359264374,
- 0.0046154106967151165,
- -0.01694079488515854,
- 0.001224889187142253,
- 0.01509078312665224,
- 0.004665512591600418,
- 0.05741939693689346,
- -0.04135112836956978,
- -0.033369019627571106,
- -0.03540292754769325,
- 0.007476790342479944,
- 0.010778329335153103,
- -0.015904752537608147,
- 0.07415962219238281,
- 0.12376537173986435,
- -0.0001944233663380146,
- 0.010049092583358288,
- 0.014138014987111092,
- 0.1129164919257164,
- -0.03532986715435982,
- 0.034575458616018295,
- -0.006377451587468386,
- -0.08589527010917664,
- 0.0082362936809659,
- 0.01764432154595852,
- -0.015735898166894913,
- -0.042852725833654404,
- 0.022829348221421242,
- 0.03568091616034508,
- -0.0273127444088459,
- -0.05267252027988434,
- 0.028466006740927696,
- 0.07343994826078415,
- 0.015421349555253983,
- -0.007895697839558125,
- 0.06495445221662521
- ]
- },
- {
- "keyword": "parish",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03602702543139458,
- 0.04058161377906799,
- -0.02825334295630455,
- -0.06046575680375099,
- -0.07146711647510529,
- 0.0012096362188458443,
- -0.0037706512957811356,
- 0.005081370007246733,
- 0.04782979562878609,
- -0.02736935019493103,
- -0.001898311311379075,
- -0.023584580048918724,
- 0.004521375987678766,
- -0.04794846475124359,
- -0.04895626753568649,
- -0.02507401816546917,
- -0.027086522430181503,
- 0.09397327154874802,
- 0.060222476720809937,
- 0.01714482344686985,
- -0.1026085913181305,
- 0.0840245932340622,
- -0.01599235087633133,
- 0.004443338606506586,
- 0.04431530088186264,
- 0.07500147074460983,
- -0.023051923140883446,
- 0.007325516082346439,
- -0.001448133960366249,
- -0.0866057351231575,
- 0.04286879301071167,
- -0.02231094054877758,
- 0.032284852117300034,
- -0.05624126270413399,
- -0.060133665800094604,
- 0.08446422219276428,
- -0.04370472580194473,
- 0.05250087007880211,
- 0.015805134549736977,
- 0.04661933332681656,
- -0.03406892716884613,
- -0.09738073498010635,
- -0.030788516625761986,
- -0.0739128589630127,
- 0.05005950480699539,
- -0.02961275912821293,
- -0.037422969937324524,
- 0.046163491904735565,
- 0.06384829431772232,
- -0.044771648943424225,
- -0.05501348152756691,
- -0.02568708173930645,
- -0.05610165372490883,
- 0.018149107694625854,
- 0.004032972268760204,
- 0.01880989968776703,
- -0.028924167156219482,
- 0.08429070562124252,
- 0.022718818858265877,
- 0.03621586412191391,
- -0.03112895041704178,
- 0.04710255190730095,
- -0.06928835809230804,
- 0.07731235772371292,
- -0.0457545630633831,
- 0.013753293082118034,
- -0.027484193444252014,
- 0.033178068697452545,
- -0.05435359850525856,
- -0.07019586861133575,
- 0.014166298322379589,
- -0.03432163596153259,
- 0.05745592340826988,
- -0.10695384442806244,
- 0.0030033672228455544,
- 0.02505495585501194,
- -0.020191561430692673,
- 0.027384204789996147,
- 0.050187695771455765,
- -0.07878262549638748,
- 0.07367267459630966,
- -0.06061303988099098,
- -0.06820672005414963,
- 0.04515326768159866,
- 0.014900991693139076,
- 0.01556351501494646,
- 0.03268177807331085,
- 0.016042198985815048,
- 0.0645657554268837,
- -0.007493746932595968,
- -0.016099542379379272,
- 0.02274727262556553,
- -0.02383464388549328,
- -0.013479375280439854,
- -0.05431107431650162,
- 0.021996239200234413,
- -0.04929899051785469,
- -0.012260360643267632,
- -0.0752197653055191,
- 0.24055257439613342,
- -0.061393216252326965,
- 0.06921866536140442,
- 0.07619661837816238,
- -0.013168946839869022,
- 0.019909190014004707,
- 0.028850728645920753,
- -0.011442970484495163,
- 0.04128764942288399,
- 0.030390402302145958,
- -0.02857132814824581,
- 0.026181796565651894,
- -0.006453914567828178,
- -0.1129247322678566,
- -0.07733172178268433,
- 0.043145354837179184,
- -0.003707935567945242,
- 0.04276656731963158,
- -0.046304356306791306,
- -0.042380183935165405,
- -0.04835345223546028,
- -0.04576810076832771,
- -0.0046713887713849545,
- -0.06909193098545074,
- -0.04709769785404205,
- -0.006639605388045311,
- 0.0160872470587492,
- 0.06633773446083069,
- -4.117654222516761e-33,
- 0.0433918796479702,
- 0.004942253697663546,
- -0.01091327890753746,
- -0.006641687359660864,
- 0.042167551815509796,
- 0.05130333453416824,
- -0.024664748460054398,
- 0.05081234872341156,
- -0.10418868064880371,
- 0.036587152630090714,
- 0.1141512468457222,
- -0.04265394061803818,
- -0.06106055900454521,
- -0.029508352279663086,
- 0.0722893550992012,
- 0.07042787224054337,
- 0.022488921880722046,
- 0.04893333092331886,
- 0.005024835001677275,
- -0.02905239909887314,
- -0.017065180465579033,
- 0.03392663225531578,
- -0.044138625264167786,
- 0.061089105904102325,
- 0.03484930098056793,
- -0.05460827797651291,
- 0.017474235966801643,
- -0.049051232635974884,
- -0.048740219324827194,
- 0.046428121626377106,
- 0.02605104073882103,
- -0.013785780407488346,
- 0.02780166082084179,
- -0.03327701613306999,
- 0.025784190744161606,
- -0.015727750957012177,
- -0.008172607980668545,
- -0.051181863993406296,
- 0.0076412358321249485,
- -0.0017742867348715663,
- -0.02647802047431469,
- -0.03532463312149048,
- 0.11176380515098572,
- 0.0821065753698349,
- -0.046981945633888245,
- 0.040319833904504776,
- 0.08573353290557861,
- -0.013633694499731064,
- 0.05096731707453728,
- 0.04442348703742027,
- 0.055703070014715195,
- -0.05361778289079666,
- -0.11028357595205307,
- 0.06108762323856354,
- 0.012942874804139137,
- 0.014965013600885868,
- -0.024032069370150566,
- 0.06654397398233414,
- 0.061216164380311966,
- -0.021211927756667137,
- 0.0358935110270977,
- 0.05393385887145996,
- -0.019106799736618996,
- -0.06148451566696167,
- -0.006919788662344217,
- -0.14953184127807617,
- 0.015033300966024399,
- 0.03299795836210251,
- 0.09195297211408615,
- -0.029593368992209435,
- 0.05477745458483696,
- -0.026565322652459145,
- 0.018872875720262527,
- 0.0012637883191928267,
- 0.03340033069252968,
- 0.03790218383073807,
- 0.01788831688463688,
- -0.01471781637519598,
- 0.027652591466903687,
- -0.024829475209116936,
- -0.0018800469115376472,
- 0.009296492673456669,
- -0.05169329047203064,
- 0.037067562341690063,
- 0.03917277976870537,
- 0.010844936594367027,
- 0.11088965833187103,
- -0.07266218215227127,
- -0.11699852347373962,
- -0.059833724051713943,
- 0.015684615820646286,
- 0.09030580520629883,
- 0.06607449054718018,
- -0.053323037922382355,
- 0.028411632403731346,
- 3.588045160987364e-33,
- 0.04282720014452934,
- -0.028213417157530785,
- 0.016788657754659653,
- 0.07030908763408661,
- -0.020953580737113953,
- -0.03205978497862816,
- 0.05256753787398338,
- -0.018151938915252686,
- 0.02214100956916809,
- 0.015432923100888729,
- -0.04836573451757431,
- -0.05988753214478493,
- 0.09518236666917801,
- -0.018308309838175774,
- -0.007764434441924095,
- 0.015681538730859756,
- -0.025964239612221718,
- 0.004312251228839159,
- -0.011469383724033833,
- -0.004426908679306507,
- 0.02149592526257038,
- 0.012520413845777512,
- 0.08299893140792847,
- 0.0984649807214737,
- 0.020589258521795273,
- 0.02820931375026703,
- -0.006516830064356327,
- 0.0576152540743351,
- -0.08811764419078827,
- -0.018654512241482735,
- -0.01735393889248371,
- -0.010416392236948013,
- -0.04239746928215027,
- 0.023472804576158524,
- -0.0842159241437912,
- 0.10374747961759567,
- 0.06356216222047806,
- 0.048137202858924866,
- -0.017179466784000397,
- -0.005928683560341597,
- 0.04102905094623566,
- -0.03329847753047943,
- 0.017596397548913956,
- 0.04829538241028786,
- -0.022177228704094887,
- 0.02544018253684044,
- 0.10042613744735718,
- 0.08063071221113205,
- 0.025587674230337143,
- 0.047463469207286835,
- -0.053712014108896255,
- 0.05404866114258766,
- -0.05189818516373634,
- 0.09785951673984528,
- -0.000037577807233901694,
- 0.042422421276569366,
- -0.028619492426514626,
- -0.0048599084839224815,
- -0.08243509382009506,
- -0.032841335982084274,
- 0.07110156863927841,
- 0.040330033749341965,
- -0.05618485435843468,
- 0.08660195767879486,
- 0.08460967242717743,
- 0.02972152642905712,
- -0.047063618898391724,
- -0.039640527218580246,
- -0.013410579413175583,
- -0.01000107079744339,
- -0.04432285949587822,
- -0.0836532786488533,
- -0.03616974875330925,
- -0.01437896117568016,
- -0.022163791581988335,
- 0.006499291863292456,
- 0.006530383136123419,
- -0.09004560858011246,
- -0.0016030530678108335,
- -0.04413343220949173,
- -0.012880254536867142,
- -0.03941618651151657,
- -0.08145079761743546,
- -0.012093049474060535,
- -0.06504189223051071,
- -0.09189056605100632,
- 0.07870377600193024,
- -0.08252096176147461,
- -0.019699282944202423,
- 0.038398999720811844,
- -0.03622082993388176,
- 0.07813969254493713,
- -0.025831211358308792,
- -0.10231704264879227,
- 0.030078085139393806,
- -1.0888065560266114e-8,
- 0.03795100748538971,
- 0.04474320635199547,
- -0.040933676064014435,
- -0.021932709962129593,
- 0.14410017430782318,
- -0.11119384318590164,
- -0.029926810413599014,
- -0.010659795254468918,
- -0.02247801050543785,
- 0.08203807473182678,
- -0.02948145568370819,
- 0.02690361998975277,
- -0.007155482191592455,
- 0.00737215019762516,
- 0.05786504969000816,
- -0.036089248955249786,
- -0.030017398297786713,
- -0.05461164563894272,
- -0.06118599697947502,
- -0.036551617085933685,
- 0.034864284098148346,
- 0.03875167667865753,
- 0.0038705721963196993,
- -0.06352818012237549,
- -0.01612044684588909,
- -0.01840021461248398,
- -0.006849434692412615,
- 0.008901048451662064,
- 0.058545127511024475,
- 0.036447979509830475,
- 0.05367299169301987,
- 0.07826939225196838,
- -0.05433817580342293,
- -0.07137516885995865,
- 0.02735716849565506,
- 0.0011353561421856284,
- -0.05793386325240135,
- -0.016054818406701088,
- -0.003206845372915268,
- -0.03952805697917938,
- -0.007485726848244667,
- -0.049289654940366745,
- 0.020645935088396072,
- -0.017442399635910988,
- -0.09964682906866074,
- 0.009217423386871815,
- 0.11966511607170105,
- 0.0887875109910965,
- 0.03629501909017563,
- -0.023165756836533546,
- 0.02097814530134201,
- -0.018686572089791298,
- 0.04174652323126793,
- -0.014972936362028122,
- 0.0009635806200094521,
- -0.0035053009632974863,
- 0.03440389409661293,
- 0.04124956578016281,
- 0.03429662436246872,
- -0.014099332503974438,
- -0.007283562328666449,
- 0.00027262663934379816,
- 0.058765802532434464,
- -0.05447738990187645
- ]
- },
- {
- "keyword": "prefecture",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.018869314342737198,
- 0.010175772942602634,
- -0.0061613828875124454,
- 0.009170757606625557,
- 0.0005018550436943769,
- -0.07869523018598557,
- 0.04003380611538887,
- 0.07361315935850143,
- -0.048509981483221054,
- -0.044468339532613754,
- 0.07473553717136383,
- -0.13553375005722046,
- 0.022079231217503548,
- 0.03678945451974869,
- -0.012031293474137783,
- -0.07937148958444595,
- 0.012512153014540672,
- 0.0007004787330515683,
- 0.08954448252916336,
- -0.0633520558476448,
- -0.01159872766584158,
- -0.011530477553606033,
- 0.04045204073190689,
- -0.008389509283006191,
- 0.06596636772155762,
- 0.019903695210814476,
- 0.02288055047392845,
- 0.02886703610420227,
- -0.026074878871440887,
- -0.008802118711173534,
- -0.046581801027059555,
- 0.045997221022844315,
- 0.05185368284583092,
- -0.03475700318813324,
- 0.03860914334654808,
- 0.06088952720165253,
- 0.05972602218389511,
- -0.03147317096590996,
- -0.017000606283545494,
- -0.042782630771398544,
- -0.09212219715118408,
- 0.01935022510588169,
- 0.03837883472442627,
- -0.03351076319813728,
- 0.00014037085929885507,
- 0.09035119414329529,
- 0.04600140079855919,
- 0.037621285766363144,
- 0.02305157482624054,
- -0.05579395964741707,
- -0.005081553012132645,
- -0.00019895141304004937,
- 0.018210384994745255,
- 0.06787699460983276,
- 0.052714940160512924,
- 0.04662994667887688,
- 0.02645978517830372,
- 0.04934600368142128,
- -0.007338747847825289,
- 0.07035825401544571,
- -0.07735824584960938,
- -0.04786635562777519,
- -0.03748296573758125,
- -0.011934293434023857,
- 0.05608287826180458,
- -0.027678972110152245,
- -0.02978249453008175,
- 0.01555697899311781,
- -0.06550471484661102,
- -0.10747882723808289,
- 0.08536925166845322,
- -0.03185734525322914,
- 0.06412243843078613,
- 0.013582754880189896,
- 0.0013363768812268972,
- -0.027041656896471977,
- -0.13165926933288574,
- 0.046622730791568756,
- 0.07654441893100739,
- -0.030454454943537712,
- -0.009091229178011417,
- -0.016374394297599792,
- 0.08708712458610535,
- 0.04021477699279785,
- 0.029657138511538506,
- 0.0071719493716955185,
- 0.04448479041457176,
- -0.07903286069631577,
- 0.10046039521694183,
- 0.015477633103728294,
- 0.01003053318709135,
- 0.08136477321386337,
- 0.032775405794382095,
- 0.03102412447333336,
- -0.18074791133403778,
- -0.03259771317243576,
- -0.00769409816712141,
- 0.07309892028570175,
- -0.025329813361167908,
- 0.20758584141731262,
- 0.039081137627363205,
- -0.011762303300201893,
- 0.04378388449549675,
- -0.02903422713279724,
- -0.03487328812479973,
- 0.029913324862718582,
- 0.01710752211511135,
- 0.05290677025914192,
- 0.004591723438352346,
- 0.05592506751418114,
- -0.03355346620082855,
- 0.03413360193371773,
- -0.040967077016830444,
- -0.04686829075217247,
- -0.009021539241075516,
- 0.02696385234594345,
- 0.08217713981866837,
- 0.03256678208708763,
- -0.09352985769510269,
- 0.011815430596470833,
- -0.09209197014570236,
- 0.022343693301081657,
- -0.03826351463794708,
- -0.012837176211178303,
- 0.013377833180129528,
- 0.004315967205911875,
- -0.027643099427223206,
- -3.200492387702933e-33,
- 0.043435368686914444,
- -0.0052282679826021194,
- -0.0228401031345129,
- 0.060919422656297684,
- -0.09648092836141586,
- 0.01867133006453514,
- 0.003894745372235775,
- -0.0067067863419651985,
- -0.09808375686407089,
- -0.014599140733480453,
- -0.003172501688823104,
- -0.04508073627948761,
- -0.03239826485514641,
- -0.05493427440524101,
- 0.1691047102212906,
- -0.028107646852731705,
- 0.03494693711400032,
- 0.05642280355095863,
- 0.07483700662851334,
- -0.006293966434895992,
- 0.03438463807106018,
- 0.020370731130242348,
- -0.020231442525982857,
- -0.04828128218650818,
- -0.019584808498620987,
- 0.0316564105451107,
- 0.009488633833825588,
- -0.028526892885565758,
- -0.04501955956220627,
- 0.04129068925976753,
- 0.04597907140851021,
- -0.05047889053821564,
- 0.005224441643804312,
- -0.04525892063975334,
- -0.007338321302086115,
- -0.05303425341844559,
- 0.0051693785935640335,
- -0.0468355156481266,
- -0.0185215026140213,
- 0.01959148980677128,
- 0.038234613835811615,
- -0.05168861895799637,
- -0.05154778063297272,
- 0.044051192700862885,
- 0.002299441024661064,
- 0.012316333130002022,
- 0.03769134730100632,
- -0.022019965574145317,
- 0.08771126717329025,
- 0.0019158610375598073,
- -0.06615828722715378,
- -0.04680248722434044,
- 0.008960116654634476,
- -0.014648077078163624,
- 0.016492562368512154,
- 0.07828251272439957,
- -0.012673095799982548,
- -0.0038153049536049366,
- 0.014414488337934017,
- 0.016355356201529503,
- 0.01619654893875122,
- 0.033951807767152786,
- -0.14251644909381866,
- -0.021260220557451248,
- -0.0014313739957287908,
- -0.0480603389441967,
- 0.06695596128702164,
- -0.044182609766721725,
- 0.03724474087357521,
- -0.09408587962388992,
- -0.04132542759180069,
- -0.03552566096186638,
- 0.0663241520524025,
- 0.08735407143831253,
- -0.017542904242873192,
- 0.0004931713920086622,
- -0.0471971333026886,
- 0.07051053643226624,
- -0.05610505864024162,
- -0.0051540806889534,
- -0.12981107831001282,
- -0.04456338658928871,
- -0.1481003761291504,
- 0.0974213257431984,
- 0.07913903146982193,
- 0.0734647735953331,
- 0.027743468061089516,
- -0.03256350755691528,
- -0.04696827754378319,
- -0.03115554340183735,
- -0.04193923622369766,
- -0.04753547161817551,
- 0.04920993000268936,
- 0.012931150384247303,
- -0.042576003819704056,
- 2.6057188784807417e-33,
- 0.028036203235387802,
- -0.031053759157657623,
- -0.02265334688127041,
- -0.029278792440891266,
- -0.044357772916555405,
- 0.04456567391753197,
- 0.01509625744074583,
- 0.08154527097940445,
- -0.07403521984815598,
- -0.06465023010969162,
- -0.09278733283281326,
- -0.034275420010089874,
- 0.06850862503051758,
- 0.03577855974435806,
- -0.029697224497795105,
- 0.09465166181325912,
- 0.039131876081228256,
- 0.017120767384767532,
- -0.06453825533390045,
- -0.00613807886838913,
- -0.07247114181518555,
- -0.09186667203903198,
- -0.0005838064244017005,
- 0.006630140356719494,
- -0.08921296149492264,
- 0.11404631286859512,
- 0.0550968311727047,
- 0.016615189611911774,
- -0.04493006318807602,
- 0.04985545575618744,
- -0.049562856554985046,
- -0.12335726618766785,
- -0.04493466019630432,
- 0.06159649044275284,
- -0.06178664788603783,
- -0.014208756387233734,
- 0.0017524902941659093,
- -0.026358995586633682,
- -0.009782806970179081,
- 0.055935997515916824,
- -0.04548304155468941,
- 0.014306394383311272,
- -0.006105998996645212,
- 0.12116158753633499,
- -0.05677497014403343,
- -0.011722813360393047,
- 0.009545891545712948,
- 0.07411861419677734,
- -0.048341985791921616,
- -0.020826520398259163,
- -0.048515599220991135,
- 0.02242358773946762,
- -0.0004737229901365936,
- -0.0362417958676815,
- -0.036034923046827316,
- -0.05898077040910721,
- -0.06291704624891281,
- 0.06960173696279526,
- -0.05342411249876022,
- -0.029904576018452644,
- 0.040258023887872696,
- 0.05353134870529175,
- -0.02561611495912075,
- 0.11891626566648483,
- 0.009166480042040348,
- 0.058414459228515625,
- 0.027416784316301346,
- 0.00488663837313652,
- 0.07544814795255661,
- -0.06394007056951523,
- 0.050212517380714417,
- 0.016217520460486412,
- -0.030561434105038643,
- -0.006801125593483448,
- -0.007401410955935717,
- 0.008883749134838581,
- 0.017270533367991447,
- 0.05027236044406891,
- 0.028632713481783867,
- 0.03128984570503235,
- -0.012326075695455074,
- -0.008141071535646915,
- -0.056841734796762466,
- -0.039454683661460876,
- -0.017224572598934174,
- -0.0047909882850945,
- 0.022367259487509727,
- -0.0626559630036354,
- 0.07001063972711563,
- -0.030986802652478218,
- -0.006005176343023777,
- 0.10685258358716965,
- -0.04395682364702225,
- 0.00465401029214263,
- 0.030483972281217575,
- -1.0821058715748677e-8,
- 0.026513149961829185,
- -0.012632743455469608,
- -0.03001200407743454,
- -0.008363009430468082,
- 0.003690141486003995,
- -0.04574059322476387,
- -0.07594211399555206,
- 0.05207290127873421,
- -0.010758877731859684,
- 0.047287605702877045,
- 0.05539674684405327,
- 0.04896298050880432,
- -0.03742712363600731,
- -0.011615811847150326,
- -0.006018325686454773,
- -0.02075890824198723,
- 0.003931834828108549,
- 0.1097973957657814,
- 0.005346314050257206,
- -0.007719310000538826,
- 0.002683766186237335,
- 0.011088408529758453,
- 0.04753619432449341,
- -0.02592337690293789,
- -0.014500023797154427,
- -0.019015485420823097,
- -0.018562035635113716,
- -0.01922432705760002,
- -0.0213483776897192,
- -0.011006182059645653,
- 0.044113438576459885,
- 0.04104189574718475,
- -0.013422040268778801,
- -0.011309395544230938,
- -0.01853313110768795,
- -0.004972280003130436,
- -0.053137507289648056,
- -0.0663079246878624,
- -0.031250856816768646,
- -0.0353902131319046,
- 0.030316829681396484,
- -0.009657151065766811,
- 0.01883741468191147,
- 0.016815612092614174,
- 0.061641305685043335,
- 0.041241105645895004,
- 0.09963341802358627,
- -0.013154542073607445,
- 0.06745589524507523,
- 0.018065230920910835,
- -0.10548116266727448,
- 0.007932581007480621,
- -0.030269112437963486,
- 0.03438572213053703,
- -0.0443623811006546,
- 0.04038427770137787,
- 0.007523673120886087,
- -0.06569773703813553,
- 0.0072972760535776615,
- 0.08353729546070099,
- 0.014835482463240623,
- 0.0023295546416193247,
- 0.00195302814245224,
- -0.0316629633307457
- ]
- },
- {
- "keyword": "canton",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.01859278604388237,
- 0.08657730370759964,
- -0.04589998722076416,
- 0.008946903049945831,
- 0.049468252807855606,
- -0.04092267155647278,
- 0.039255231618881226,
- -0.011450748890638351,
- -0.019139565527439117,
- -0.0636509582400322,
- 0.019547758623957634,
- -0.13171347975730896,
- 0.05603983998298645,
- 0.0122950104996562,
- -0.02931975945830345,
- -0.0017243678448721766,
- -0.014877415262162685,
- -0.05599036067724228,
- -0.002956816228106618,
- -0.12515993416309357,
- 0.0024138870649039745,
- 0.010216351598501205,
- 0.02050154283642769,
- 0.040169935673475266,
- 0.0020195983815938234,
- 0.054296236485242844,
- 0.0035465811379253864,
- -0.006404063198715448,
- 0.05509059876203537,
- -0.029003677889704704,
- -0.049893371760845184,
- -0.021526478230953217,
- -0.04018300399184227,
- -0.008165538311004639,
- 0.021112872287631035,
- 0.040582261979579926,
- -0.032514989376068115,
- -0.029357703402638435,
- 0.001990176970139146,
- -0.012546069920063019,
- 0.012303934432566166,
- 0.0377599373459816,
- 0.030943088233470917,
- -0.051270563155412674,
- 0.04908299073576927,
- 0.0289023257791996,
- 0.06705068796873093,
- -0.011494951322674751,
- -0.030371343716979027,
- 0.07157094031572342,
- 0.03345837444067001,
- 0.005495118442922831,
- 0.020265359431505203,
- 0.030115889385342598,
- -0.04761195182800293,
- 0.037396661937236786,
- -0.04511086642742157,
- 0.009360761381685734,
- -0.08656392991542816,
- 0.0240878127515316,
- 0.03587797284126282,
- 0.06933972239494324,
- -0.13656684756278992,
- 0.011127741076052189,
- 0.01167514082044363,
- 0.0946585014462471,
- -0.0697837546467781,
- -0.07426291704177856,
- -0.050113193690776825,
- -0.1232629343867302,
- 0.04273822158575058,
- -0.0664011612534523,
- 0.03143835812807083,
- 0.027497146278619766,
- 0.06239723414182663,
- -0.11890947818756104,
- -0.02604067139327526,
- 0.009449395351111889,
- -0.0022866681683808565,
- -0.009110352024435997,
- -0.006282166577875614,
- -0.06685865670442581,
- -0.024545688182115555,
- 0.05572428181767464,
- 0.02866939641535282,
- 0.022187383845448494,
- -0.011053871363401413,
- 0.013103483244776726,
- 0.09719058871269226,
- -0.038085002452135086,
- -0.023482458665966988,
- -0.017883967608213425,
- 0.003367849625647068,
- 0.09434768557548523,
- -0.04193495586514473,
- 0.022473882883787155,
- 0.028465338051319122,
- 0.05017386004328728,
- -0.04537717625498772,
- 0.22844243049621582,
- -0.0017919443780556321,
- 0.05169815942645073,
- -0.08255849033594131,
- 0.015969205647706985,
- -0.06193551793694496,
- -0.001757837482728064,
- -0.012665203772485256,
- 0.10935234278440475,
- -0.06861370801925659,
- 0.056725338101387024,
- -0.009807951748371124,
- 0.040445804595947266,
- -0.004626068752259016,
- 0.002173136919736862,
- 0.009258725680410862,
- 0.02996024861931801,
- 0.008227978833019733,
- -0.09140284359455109,
- -0.022642353549599648,
- -0.007373621221631765,
- 0.02269355207681656,
- 0.027440249919891357,
- -0.05651937052607536,
- 0.03526519238948822,
- 0.056753240525722504,
- -0.04319114610552788,
- -0.010991960763931274,
- -4.048417972595313e-33,
- 0.036603718996047974,
- 0.0031331980135291815,
- 0.10643452405929565,
- 0.047691259533166885,
- -0.06938326358795166,
- 0.033712368458509445,
- 0.01995231769979,
- -0.08728217333555222,
- -0.08095818758010864,
- -0.01809171587228775,
- 0.026673950254917145,
- 0.008066577836871147,
- -0.04995906352996826,
- -0.09784569591283798,
- 0.10065975785255432,
- 0.017551014199852943,
- 0.030848728492856026,
- 0.005707273259758949,
- -0.06909501552581787,
- 0.07487940043210983,
- 0.012541666626930237,
- 0.07805822044610977,
- -0.015037731267511845,
- 0.017683861777186394,
- -0.037842873483896255,
- 0.019764436408877373,
- 0.029741516336798668,
- 0.0058651333674788475,
- 0.01992850750684738,
- 0.027421778067946434,
- -0.008441640064120293,
- 0.03796285763382912,
- -0.055175211280584335,
- -0.014250746928155422,
- 0.0009401970892213285,
- 0.05204160884022713,
- -0.06984906643629074,
- -0.0241702813655138,
- 0.011021395213901997,
- -0.03769915550947189,
- 0.04006030037999153,
- 0.034897953271865845,
- -0.05799734964966774,
- -0.02520822547376156,
- 0.01900874450802803,
- -0.01049935445189476,
- -0.0018151471158489585,
- 0.021091805770993233,
- 0.01832769811153412,
- -0.12131097167730331,
- 0.007017950527369976,
- 0.006521092262119055,
- -0.06655852496623993,
- 0.056375227868556976,
- 0.044223614037036896,
- -0.05000671371817589,
- -0.004327325616031885,
- 0.01154253352433443,
- -0.017152341082692146,
- 0.054138731211423874,
- 0.0640413761138916,
- 0.0234566330909729,
- -0.05396150052547455,
- 0.07544827461242676,
- 0.013948818668723106,
- -0.0918140783905983,
- 0.012811819091439247,
- -0.005317499861121178,
- 0.013028079643845558,
- -0.03500467166304588,
- -0.035851456224918365,
- 0.023335350677371025,
- 0.08456869423389435,
- 0.08685915917158127,
- -0.05134899169206619,
- -0.016647934913635254,
- -0.035270217806100845,
- 0.10437915474176407,
- -0.036377642303705215,
- 0.04167778417468071,
- -0.009112825617194176,
- -0.018446942791342735,
- -0.05829714983701706,
- 0.01612171158194542,
- 0.032070767134428024,
- -0.007833769544959068,
- 0.023564962670207024,
- -0.10752358287572861,
- -0.014525041915476322,
- -0.009944675490260124,
- -0.12131685018539429,
- 0.009170508943498135,
- 0.0038165573496371508,
- 0.05462310463190079,
- -0.008987502194941044,
- 2.0732169988223684e-33,
- -0.004927387926727533,
- -0.12233655899763107,
- 0.02014412358403206,
- -0.007038508541882038,
- -0.020603539422154427,
- -0.00007769123476464301,
- 0.09909234195947647,
- 0.0706479474902153,
- 0.03059232048690319,
- 0.06875602900981903,
- -0.0611889585852623,
- 0.04499053582549095,
- 0.08992715924978256,
- 0.0158811267465353,
- -0.0021678954362869263,
- -0.0006528356461785734,
- 0.10015656054019928,
- 0.04138130322098732,
- 0.013125324621796608,
- -0.012132538482546806,
- 0.0008168207132257521,
- -0.0034930279944092035,
- -0.05494731664657593,
- -0.045844439417123795,
- -0.048728976398706436,
- 0.056403033435344696,
- -0.10688125342130661,
- 0.05099327489733696,
- -0.09490254521369934,
- -0.05926855280995369,
- -0.0663304552435875,
- -0.05185755714774132,
- 0.03496890515089035,
- 0.0019732394721359015,
- -0.04197736084461212,
- 0.05682966485619545,
- -0.01058592926710844,
- 0.01246628351509571,
- 0.06528279930353165,
- -0.03449702635407448,
- -0.07414072751998901,
- -0.06925494968891144,
- 0.007294226437807083,
- 0.07665326446294785,
- 0.09768439084291458,
- -0.017151866108179092,
- -0.11764524132013321,
- 0.005602661054581404,
- -0.04973829537630081,
- -0.01503907609730959,
- 0.015481183305382729,
- 0.01381323579698801,
- 0.016260506585240364,
- -0.03183679282665253,
- 0.05993153527379036,
- -0.007163048256188631,
- -0.13845767080783844,
- 0.019627192988991737,
- 0.06829919666051865,
- -0.04321516305208206,
- 0.046788014471530914,
- 0.09221313148736954,
- -0.10010673105716705,
- 0.07036475837230682,
- -0.035217996686697006,
- -0.0901690423488617,
- -0.017154661938548088,
- -0.03842277079820633,
- 0.08134254068136215,
- 0.026910293847322464,
- 0.022799314931035042,
- 0.08098622411489487,
- -0.02434311807155609,
- 0.020197898149490356,
- 0.04098391905426979,
- 0.011402633972465992,
- 0.016220448538661003,
- 0.07548326253890991,
- 0.006537899374961853,
- -0.04822838306427002,
- -0.063628651201725,
- -0.03763514757156372,
- 0.002448572777211666,
- 0.04418274760246277,
- -0.04741617292165756,
- -0.016301440075039864,
- 0.07914029061794281,
- 0.015404671430587769,
- 0.05560872331261635,
- -0.05511460453271866,
- -0.0027614166028797626,
- 0.020114202052354813,
- -0.02499488927423954,
- -0.06582968682050705,
- -0.009906305000185966,
- -1.112469583119946e-8,
- -0.03276917710900307,
- 0.01306966319680214,
- -0.12458215653896332,
- 0.025823501870036125,
- -0.05425398796796799,
- 0.0008866802090778947,
- 0.034682538360357285,
- 0.01121397316455841,
- 0.06283649057149887,
- -0.0319284088909626,
- -0.0020572638604789972,
- 0.033889446407556534,
- 0.033814772963523865,
- -0.04355072230100632,
- -0.09297288954257965,
- 0.00415936391800642,
- -0.05619734525680542,
- 0.05289566144347191,
- 0.03768353536725044,
- 0.018097423017024994,
- 0.03199005872011185,
- 0.03131246566772461,
- 0.030812233686447144,
- -0.01864081807434559,
- -0.005199597217142582,
- -0.05764401704072952,
- 0.02149590104818344,
- 0.016850681975483894,
- -0.0224330835044384,
- 0.0006600481574423611,
- -0.015257514081895351,
- -0.04535597935318947,
- 0.08040069788694382,
- -0.05147375538945198,
- 0.022655250504612923,
- 0.03759509697556496,
- -0.07169044017791748,
- 0.0032727262005209923,
- 0.04673222452402115,
- -0.0873977541923523,
- 0.04310641437768936,
- -0.045426804572343826,
- 0.07070481777191162,
- 0.014477775432169437,
- 0.033515434712171555,
- -0.046804580837488174,
- -0.007323936093598604,
- -0.016854172572493553,
- 0.05441853404045105,
- -0.032187674194574356,
- -0.06551073491573334,
- 0.01179228164255619,
- 0.04271956905722618,
- 0.026308659464120865,
- 0.006791971158236265,
- -0.009316828101873398,
- 0.038973189890384674,
- -0.04145215451717377,
- -0.045878324657678604,
- 0.03056257590651512,
- 0.14073239266872406,
- -0.006884263828396797,
- -0.03768409043550491,
- 0.06668300181627274
- ]
- },
- {
- "keyword": "continent",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.008877521380782127,
- 0.06580393016338348,
- -0.09174328297376633,
- -0.0023365665692836046,
- -0.002710591768845916,
- -0.02458636648952961,
- 0.08966442197561264,
- -0.07168837636709213,
- -0.010639967396855354,
- 0.02228843793272972,
- 0.012361210770905018,
- -0.14197507500648499,
- 0.023301521316170692,
- 0.035742416977882385,
- -0.017498016357421875,
- -0.04554419219493866,
- -0.026469679549336433,
- -0.10767592489719391,
- -0.06514088064432144,
- -0.036770157516002655,
- 0.004589763469994068,
- 0.0589735172688961,
- 0.053582921624183655,
- 0.05687833949923515,
- 0.01883174292743206,
- 0.0038064431864768267,
- -0.0029749376699328423,
- -0.003371521830558777,
- 0.048264019191265106,
- -0.01832057535648346,
- 0.006749788764864206,
- 0.036292001605033875,
- 0.03612317144870758,
- 0.0226015355437994,
- -0.004100991412997246,
- -0.0004914663732051849,
- -0.024963781237602234,
- -0.009238360449671745,
- -0.049454621970653534,
- 0.007370149716734886,
- 0.05701097100973129,
- -0.025582564994692802,
- 0.0687391385436058,
- 0.005582401063293219,
- -0.06361331045627594,
- 0.06762924790382385,
- 0.03696420416235924,
- 0.09818868339061737,
- 0.0026446860283613205,
- 0.06460390239953995,
- 0.06420206278562546,
- -0.03212762996554375,
- -0.08012807369232178,
- -0.0522085465490818,
- -0.02709684520959854,
- 0.041591957211494446,
- 0.013112259097397327,
- -0.011028949171304703,
- 0.022319404408335686,
- 0.026923367753624916,
- 0.026836536824703217,
- -0.03477888181805611,
- -0.0385136753320694,
- 0.055946409702301025,
- 0.07175416499376297,
- 0.04926251992583275,
- -0.1186755895614624,
- -0.04756999388337135,
- -0.07085511088371277,
- -0.05956535413861275,
- 0.03915976360440254,
- -0.09789814054965973,
- 0.0074761006981134415,
- 0.04163333401083946,
- 0.016940688714385033,
- -0.009471422992646694,
- -0.0014038246590644121,
- -0.04444040730595589,
- -0.023665718734264374,
- -0.003495453856885433,
- 0.004437713418155909,
- -0.0008537238463759422,
- -0.017554016783833504,
- -0.02580084279179573,
- 0.01983940228819847,
- -0.030153799802064896,
- 0.08353051543235779,
- -0.03513617441058159,
- 0.022837325930595398,
- -0.03838495537638664,
- 0.03266052156686783,
- 0.025288349017500877,
- 0.06964858621358871,
- 0.037671882659196854,
- -0.11564208567142487,
- -0.03078039549291134,
- 0.024467546492815018,
- -0.014591965824365616,
- -0.04030808433890343,
- 0.20460772514343262,
- 0.010864187963306904,
- -0.011101284064352512,
- -0.029871562495827675,
- -0.006829382386058569,
- -0.0715881809592247,
- -0.007465398870408535,
- -0.03661626577377319,
- 0.06317921727895737,
- -0.010710762813687325,
- 0.05036118999123573,
- -0.05325619876384735,
- 0.056640297174453735,
- -0.08472096920013428,
- 0.006679070647805929,
- -0.0004665823944378644,
- 0.015045369043946266,
- 0.05392168462276459,
- -0.03224650397896767,
- -0.0099997129291296,
- -0.03320205956697464,
- -0.058059945702552795,
- -0.03918558359146118,
- -0.00845351256430149,
- 0.06201547756791115,
- -0.007928063161671162,
- -0.036235708743333817,
- 0.0013273691292852163,
- -5.237613812102388e-33,
- 0.07270030677318573,
- -0.09458232671022415,
- 0.03823120519518852,
- 0.02420460805296898,
- -0.046057626605033875,
- 0.05076002702116966,
- -0.010601754300296307,
- -0.03927256911993027,
- -0.06017839163541794,
- 0.017922071740031242,
- -0.03912843391299248,
- 0.05296671390533447,
- 0.004854854196310043,
- -0.0017298093298450112,
- 0.10978531837463379,
- 0.024710534140467644,
- 0.09303668141365051,
- 0.000808327691629529,
- -0.02962450124323368,
- 0.03695359826087952,
- -0.018664028495550156,
- 0.048577938228845596,
- 0.025683457031846046,
- -0.037220992147922516,
- -0.0325169637799263,
- -0.014333661645650864,
- -0.05278032273054123,
- -0.06279249489307404,
- 0.0153620271012187,
- 0.052754342555999756,
- 0.018998296931385994,
- 0.027679292485117912,
- -0.0622221864759922,
- -0.030436109751462936,
- -0.02274629846215248,
- -0.008857524022459984,
- -0.024660589173436165,
- -0.042835455387830734,
- -0.03307439759373665,
- 0.002635801210999489,
- 0.002548863412812352,
- 0.017436819151043892,
- -0.013667173683643341,
- 0.006411621812731028,
- 0.11059867590665817,
- -0.02024957910180092,
- 0.03872092440724373,
- 0.07001681625843048,
- 0.03916351869702339,
- -0.0031079172622412443,
- -0.06326210498809814,
- -0.010752011090517044,
- 0.04284306615591049,
- -0.053510505706071854,
- 0.03191861882805824,
- -0.0042279441840946674,
- 0.0027592084370553493,
- -0.004366474691778421,
- 0.05535063520073891,
- 0.014751890674233437,
- 0.056295182555913925,
- 0.04256722331047058,
- 0.008964847773313522,
- -0.00005717987005482428,
- 0.025957239791750908,
- -0.02542852982878685,
- 0.07606973499059677,
- -0.03909396380186081,
- -0.016301274299621582,
- -0.08167443424463272,
- -0.021024757996201515,
- -0.03685135394334793,
- 0.15192122757434845,
- 0.10400280356407166,
- -0.0013913079164922237,
- 0.03305245563387871,
- 0.025238752365112305,
- 0.06684591621160507,
- -0.04478965327143669,
- 0.007622200530022383,
- -0.12339726090431213,
- -0.001091181067749858,
- -0.08850415050983429,
- 0.020900551229715347,
- -0.009893839247524738,
- 0.008719400502741337,
- 0.008732592687010765,
- -0.09517200291156769,
- 0.053962234407663345,
- -0.02372599020600319,
- -0.09312772005796432,
- -0.04709240421652794,
- 0.023319879546761513,
- -0.0422646701335907,
- -0.012243853881955147,
- 3.811376230674137e-33,
- -0.02851151116192341,
- -0.1128779873251915,
- -0.03885927423834801,
- 0.04162376746535301,
- 0.021043721586465836,
- -0.10406726598739624,
- -0.016531240195035934,
- 0.10265593230724335,
- -0.07339861989021301,
- 0.03633520379662514,
- -0.04935518279671669,
- 0.017609836533665657,
- 0.16260813176631927,
- -0.030054310336709023,
- 0.029665851965546608,
- 0.003179842373356223,
- 0.09423361718654633,
- 0.0017758500762283802,
- 0.03142016753554344,
- 0.008548323065042496,
- 0.013634189032018185,
- -0.14512494206428528,
- -0.05303763225674629,
- -0.09702353924512863,
- -0.09992985427379608,
- 0.009461596608161926,
- 0.0034874139819294214,
- -0.06181338429450989,
- -0.028799496591091156,
- -0.038379114121198654,
- -0.09459536522626877,
- 0.081139475107193,
- -0.008371743373572826,
- 0.042787693440914154,
- -0.10264413058757782,
- 0.05839434638619423,
- -0.020673738792538643,
- -0.01795424520969391,
- 0.011667204089462757,
- -0.04145152121782303,
- 0.011356759816408157,
- -0.0012006389442831278,
- 0.03387270122766495,
- 0.12581680715084076,
- 0.027849525213241577,
- -0.0631667897105217,
- -0.03323008865118027,
- 0.07594615966081619,
- -0.07023478299379349,
- 0.049011752009391785,
- -0.016915718093514442,
- 0.03416149690747261,
- 0.0411040298640728,
- -0.034569308161735535,
- 0.033085573464632034,
- 0.05527245253324509,
- -0.07250665128231049,
- -0.025330467149615288,
- 0.017861369997262955,
- -0.01166871003806591,
- 0.023507287725806236,
- 0.040390774607658386,
- -0.023301009088754654,
- 0.060565266758203506,
- -0.005217584315687418,
- -0.03413597121834755,
- -0.02384740486741066,
- 0.07934693247079849,
- 0.020183665677905083,
- 0.019830573350191116,
- -0.01064616721123457,
- 0.015374877490103245,
- -0.08173570036888123,
- 0.003684725146740675,
- -0.008623648434877396,
- 0.0677950531244278,
- -0.013370559550821781,
- 0.00754405464977026,
- 0.024439483880996704,
- -0.03192893788218498,
- -0.07538273185491562,
- -0.029236694797873497,
- -0.006496010813862085,
- 0.09708520025014877,
- 0.030945325270295143,
- 0.07284199446439743,
- 0.060908135026693344,
- -0.028211185708642006,
- 0.07500282675027847,
- 0.016324080526828766,
- -0.06095609813928604,
- -0.018732385709881783,
- -0.07428000867366791,
- -0.04816630110144615,
- -0.06376250088214874,
- -1.1262526022903785e-8,
- 0.007808909751474857,
- 0.05109887197613716,
- 0.029987914487719536,
- 0.037016913294792175,
- -0.022098593413829803,
- 0.07966404408216476,
- -0.02146841213107109,
- 0.02831665426492691,
- 0.03689156100153923,
- 0.07449351251125336,
- -0.01628127135336399,
- -0.026576144620776176,
- 0.04246573895215988,
- -0.005337949842214584,
- 0.009123033843934536,
- 0.03421952575445175,
- 0.010541942901909351,
- 0.042850274592638016,
- 0.019451342523097992,
- 0.07252870500087738,
- -0.006196671165525913,
- 0.0784514993429184,
- 0.06616325676441193,
- -0.06955363601446152,
- 0.014630352146923542,
- -0.043906986713409424,
- -0.014983663335442543,
- 0.07847703248262405,
- -0.056218717247247696,
- -0.061983294785022736,
- 0.03775105997920036,
- -0.058997079730033875,
- -0.025461027398705482,
- 0.015667255967855453,
- -0.01190120168030262,
- 0.015361122786998749,
- -0.029435116797685623,
- 0.008319918066263199,
- -0.016279444098472595,
- -0.08906493335962296,
- 0.029078464955091476,
- -0.03714614361524582,
- 0.057588379830121994,
- 0.0022369513753801584,
- 0.06655868887901306,
- 0.043024249374866486,
- 0.00544445775449276,
- 0.025266632437705994,
- -0.05665859580039978,
- 0.018555905669927597,
- -0.1351497769355774,
- 0.034636642783880234,
- 0.01982702873647213,
- 0.011205572634935379,
- 0.08960232138633728,
- -0.06395617872476578,
- -0.012724720872938633,
- -0.060023438185453415,
- 0.02138308621942997,
- 0.11454053223133087,
- 0.10051030665636063,
- -0.03488391637802124,
- -0.03491443023085594,
- 0.01028121542185545
- ]
- },
- {
- "keyword": "island",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.06966525316238403,
- 0.014738020487129688,
- -0.0515543632209301,
- 0.007158113177865744,
- 0.014778397046029568,
- -0.03972853347659111,
- 0.0727672129869461,
- -0.045559290796518326,
- 0.010562721639871597,
- -0.007770730648189783,
- 0.09049692004919052,
- -0.04370453953742981,
- -0.0280836783349514,
- 0.022173745557665825,
- 0.07470126450061798,
- -0.013316268101334572,
- -0.026067037135362625,
- -0.056206054985523224,
- -0.016352538019418716,
- -0.029268795624375343,
- 0.0696977972984314,
- 0.056443873792886734,
- -0.028851596638560295,
- 0.013167927041649818,
- 0.006945866625756025,
- 0.03756625950336456,
- 0.07387460768222809,
- 0.019541287794709206,
- -0.01360833365470171,
- -0.10118602216243744,
- -0.014517161063849926,
- 0.07512139528989792,
- -0.04183901101350784,
- 0.021215001121163368,
- 0.013185011222958565,
- 0.0772203579545021,
- -0.0014435210032388568,
- -0.020091712474822998,
- 0.07809646427631378,
- 0.012393263168632984,
- -0.118327796459198,
- -0.05867346003651619,
- 0.06354838609695435,
- 0.025542180985212326,
- 0.00942281074821949,
- 0.011678097769618034,
- 0.023345669731497765,
- -0.02330676279962063,
- 0.07349555194377899,
- -0.05089341104030609,
- 0.0005319577176123857,
- 0.000012855575732828584,
- 0.0052092233672738075,
- -0.04831008240580559,
- -0.030106468126177788,
- -0.043623585253953934,
- -0.0011229461524635553,
- -0.008393734693527222,
- 0.06543722748756409,
- -0.08083633333444595,
- 0.06657391041517258,
- -0.012705839239060879,
- -0.01996963657438755,
- 0.07668060064315796,
- 0.026782341301441193,
- -0.015511034987866879,
- -0.07066885381937027,
- 0.03870883211493492,
- -0.07665440440177917,
- -0.13521289825439453,
- 0.019652914255857468,
- -0.003983248490840197,
- -0.0019627430010586977,
- -0.0199048463255167,
- -0.01146594900637865,
- 0.0034044217318296432,
- -0.0006407698965631425,
- 0.0007331236265599728,
- 0.01665438897907734,
- 0.09883516281843185,
- -0.02233991026878357,
- -0.0088801933452487,
- 0.017601344734430313,
- 0.05880131945014,
- 0.04503852128982544,
- 0.05633225291967392,
- 0.03513053059577942,
- 0.011858971789479256,
- -0.007019380107522011,
- 0.00570252537727356,
- 0.00946313701570034,
- 0.03135249391198158,
- 0.0894409567117691,
- 0.012574023567140102,
- -0.037532176822423935,
- 0.022580137476325035,
- -0.023647641763091087,
- -0.041243914514780045,
- -0.06187477335333824,
- 0.23575975000858307,
- 0.05295684188604355,
- 0.054538242518901825,
- 0.005453397054225206,
- 0.07701530307531357,
- 0.030172737315297127,
- -0.002214851789176464,
- 0.06456276029348373,
- 0.019818443804979324,
- 0.07095826417207718,
- 0.01211465708911419,
- -0.07103554904460907,
- -0.033017080277204514,
- -0.05631479248404503,
- 0.020459569990634918,
- 0.003973711747676134,
- -0.012947870418429375,
- 0.05325274541974068,
- 0.05273926630616188,
- 0.023433808237314224,
- -0.04772594943642616,
- 0.042769014835357666,
- 0.014134923927485943,
- -0.050876274704933167,
- -0.015357482247054577,
- -0.02252284251153469,
- 0.012487045489251614,
- -0.030040550976991653,
- -3.864758000538869e-33,
- 0.043245840817689896,
- -0.013658054172992706,
- 0.013788159936666489,
- -0.014043841511011124,
- 0.08176540583372116,
- -0.01869267039000988,
- -0.04975414648652077,
- -0.06131362169981003,
- -0.01902732066810131,
- 0.05439934879541397,
- -0.03954441100358963,
- -0.030866673216223717,
- -0.06842727959156036,
- -0.03629746288061142,
- 0.09549426287412643,
- 0.06984549760818481,
- 0.050868723541498184,
- 0.005888255778700113,
- -0.056175779551267624,
- -0.014745205640792847,
- -0.02428169921040535,
- 0.03176940605044365,
- 0.014542591758072376,
- -0.057533882558345795,
- -0.10165386646986008,
- -0.032002318650484085,
- -0.029023760929703712,
- -0.04992838576436043,
- -0.01604492962360382,
- 0.024102717638015747,
- 0.00003080458554904908,
- 0.03194380924105644,
- 0.020541638135910034,
- 0.015237926505506039,
- -0.044769417494535446,
- -0.1083960235118866,
- -0.02084462158381939,
- -0.07246042042970657,
- -0.0006006068433634937,
- 0.03127283602952957,
- -0.047241464257240295,
- -0.022681936621665955,
- 0.03922395780682564,
- 0.05885627120733261,
- 0.01814980059862137,
- -0.001270062173716724,
- 0.08263110369443893,
- 0.018625454977154732,
- 0.031903866678476334,
- 0.05228099226951599,
- -0.05655831843614578,
- -0.036827027797698975,
- -0.12032345682382584,
- -0.03899945691227913,
- 0.029177449643611908,
- -0.05329818278551102,
- -0.021481597796082497,
- 0.028177998960018158,
- 0.02705943025648594,
- 0.06493533402681351,
- -0.0019014679128304124,
- 0.07512057572603226,
- 0.06983509659767151,
- -0.040830712765455246,
- -0.0033294870518147945,
- -0.03504977747797966,
- 0.05892244353890419,
- -0.00323957996442914,
- 0.017784038558602333,
- -0.06104451045393944,
- -0.02065286599099636,
- -0.05877695232629776,
- 0.08048110455274582,
- 0.012835236266255379,
- 0.044257473200559616,
- -0.07010356336832047,
- -0.02640913985669613,
- -0.0026216907426714897,
- -0.05793974921107292,
- 0.0052974773570895195,
- -0.044853098690509796,
- -0.017089471220970154,
- -0.0826321393251419,
- 0.10097797214984894,
- 0.006774094421416521,
- 0.007355008274316788,
- -0.01603393815457821,
- -0.11026036739349365,
- 0.06711654365062714,
- -0.0006045934278517962,
- -0.12625476717948914,
- -0.10795504599809647,
- 0.021188385784626007,
- 0.019765609875321388,
- -0.01587611809372902,
- 3.397702870888481e-33,
- -0.045855823904275894,
- -0.0962325930595398,
- 0.037204865366220474,
- -0.006790695246309042,
- -0.00617164047434926,
- -0.061692386865615845,
- 0.03358295559883118,
- 0.00495831249281764,
- -0.08348558098077774,
- -0.006877460051327944,
- -0.18330565094947815,
- -0.007917282171547413,
- 0.06550303846597672,
- 0.02902926877140999,
- -0.02628159523010254,
- 0.09192503243684769,
- 0.10139529407024384,
- -0.010436149314045906,
- -0.06075040623545647,
- 0.03473766893148422,
- 0.04513717442750931,
- -0.06174173578619957,
- 0.006009146571159363,
- 0.01431938074529171,
- 0.04650069773197174,
- 0.1009412407875061,
- 0.07738747447729111,
- 0.0020141834393143654,
- -0.0162313524633646,
- -0.0733761116862297,
- -0.01568574272096157,
- 0.04089638963341713,
- 0.04143963381648064,
- 0.022271011024713516,
- -0.09339297562837601,
- 0.0795605331659317,
- 0.030778391286730766,
- 0.00023527973098680377,
- -0.005574555601924658,
- -0.010735567659139633,
- 0.03312362730503082,
- -0.0997777134180069,
- -0.06865110993385315,
- 0.10878358036279678,
- -0.06182628497481346,
- -0.00872989371418953,
- 0.02752467431128025,
- 0.06250996887683868,
- 0.024566011503338814,
- -0.0362919382750988,
- -0.09902667254209518,
- 0.06725727021694183,
- 0.0003787575988098979,
- 0.02226773463189602,
- 0.05172787234187126,
- 0.012138488702476025,
- -0.0642225369811058,
- 0.06512133777141571,
- -0.008690161630511284,
- -0.009428192861378193,
- -0.04805487021803856,
- 0.010890212841331959,
- -0.07303838431835175,
- 0.09914200007915497,
- 0.05703645944595337,
- 0.029932748526334763,
- -0.006014258600771427,
- 0.02562827430665493,
- 0.005918506532907486,
- 0.05178268626332283,
- -0.06779816001653671,
- 0.03233805298805237,
- -0.030218716710805893,
- 0.01258915290236473,
- -0.0037346696481108665,
- -0.04406759887933731,
- -0.02837507613003254,
- -0.11280890554189682,
- 0.020374925807118416,
- -0.020683396607637405,
- -0.06640264391899109,
- -0.06674910336732864,
- -0.05435141548514366,
- 0.02968282252550125,
- -0.008421085774898529,
- 0.009441644884645939,
- 0.11516266316175461,
- -0.004594177473336458,
- 0.006523593328893185,
- -0.04986686632037163,
- 0.06240396946668625,
- 0.0696055144071579,
- -0.09132140129804611,
- -0.01008776854723692,
- -0.018471788614988327,
- -1.1670698185639594e-8,
- 0.05550592020153999,
- 0.031894501298666,
- 0.02165267989039421,
- -0.049678582698106766,
- -0.006558301392942667,
- -0.013220724649727345,
- 0.07189933210611343,
- 0.06276807934045792,
- 0.0009006603504531085,
- 0.06295748800039291,
- -0.07594550400972366,
- 0.01341900322586298,
- 0.05989926680922508,
- -0.04073374345898628,
- 0.010745163075625896,
- -0.020703652873635292,
- 0.04213886708021164,
- 0.06602051109075546,
- -0.00012506572238635272,
- -0.020304882898926735,
- 0.029861656948924065,
- 0.009010112844407558,
- 0.053494442254304886,
- -0.02438172698020935,
- -0.055068448185920715,
- -0.05156783387064934,
- 0.07913394272327423,
- 0.07918403297662735,
- 0.027901241555809975,
- -0.008647116832435131,
- -0.03200715035200119,
- 0.016111979261040688,
- -0.07283170521259308,
- -0.021133970469236374,
- 0.012727749533951283,
- -0.040867287665605545,
- -0.04239322617650032,
- -0.04896790534257889,
- -0.03627432510256767,
- -0.07296807318925858,
- -0.018827732652425766,
- -0.010961325839161873,
- 0.007867478765547276,
- 0.013068447820842266,
- 0.012955259531736374,
- 0.02679433673620224,
- 0.027163153514266014,
- 0.0352589450776577,
- 0.026310008019208908,
- -0.03862839192152023,
- -0.03225824609398842,
- 0.012265695258975029,
- 0.023730188608169556,
- 0.07835201174020767,
- 0.06387262791395187,
- 0.011347504332661629,
- -0.0065594264306128025,
- 0.032778821885585785,
- -0.04889173433184624,
- 0.13993817567825317,
- 0.058053985238075256,
- -0.025823595002293587,
- -0.031017819419503212,
- -0.09569400548934937
- ]
- },
- {
- "keyword": "peninsula",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.014512275345623493,
- 0.07122918963432312,
- -0.013521591201424599,
- 0.02771412581205368,
- -0.0993400365114212,
- -0.0702599510550499,
- 0.06546027958393097,
- 0.006709525361657143,
- 0.04553477093577385,
- -0.032866548746824265,
- 0.0838412344455719,
- -0.11335605382919312,
- -0.005972518119961023,
- 0.02627309411764145,
- 0.015350074507296085,
- -0.07509088516235352,
- -0.019699744880199432,
- 0.0007415796280838549,
- 0.034732162952423096,
- -0.05996834114193916,
- -0.041231587529182434,
- -0.024585507810115814,
- 0.01975332759320736,
- -0.0228059571236372,
- 0.05542256683111191,
- 0.03678818419575691,
- 0.09903071075677872,
- 0.1012209802865982,
- -0.04571908339858055,
- -0.04473089054226875,
- -0.03068743646144867,
- -0.024891814216971397,
- -0.012042276561260223,
- 0.02587622031569481,
- 0.009746164083480835,
- 0.033788252621889114,
- 0.04242818430066109,
- -0.0583522766828537,
- 0.013360587880015373,
- -0.011094531044363976,
- -0.11286868900060654,
- -0.002755464520305395,
- 0.0840509831905365,
- 0.028438696637749672,
- -0.03712542727589607,
- 0.04470282420516014,
- 0.0321832001209259,
- 0.002932529430836439,
- 0.027784040197730064,
- -0.034350235015153885,
- -0.04818118363618851,
- -0.045403894037008286,
- -0.026689009740948677,
- -0.01723078079521656,
- 0.017106804996728897,
- -0.0010737875709310174,
- 0.021732566878199577,
- 0.002500534523278475,
- 0.043979961425065994,
- 0.03075203113257885,
- 0.025188250467181206,
- -0.06316009163856506,
- -0.0932665690779686,
- 0.025384720414876938,
- -0.0282414723187685,
- -0.016637079417705536,
- -0.03093554638326168,
- 0.04047350212931633,
- -0.02381175570189953,
- -0.06359269469976425,
- 0.032672181725502014,
- 0.004954923875629902,
- 0.011295607313513756,
- -0.061891257762908936,
- 0.012848785147070885,
- -0.047788869589567184,
- -0.03783563897013664,
- -0.012763145379722118,
- 0.036643873900175095,
- -0.025075862184166908,
- 0.00008694999269209802,
- 0.07718589901924133,
- -0.042663317173719406,
- 0.014366451650857925,
- -0.004061068408191204,
- -0.030549755319952965,
- 0.017425168305635452,
- 0.02324708364903927,
- 0.09372489154338837,
- 0.057237736880779266,
- 0.0568731427192688,
- 0.05955340340733528,
- -0.05256299674510956,
- 0.007810617331415415,
- -0.1123787984251976,
- 0.01651296578347683,
- 0.016316305845975876,
- 0.016819102689623833,
- -0.02740251086652279,
- 0.1979207992553711,
- 0.06365122646093369,
- 0.05506157502532005,
- 0.06205425038933754,
- -0.036267299205064774,
- -0.017484474927186966,
- -0.0015487598720937967,
- 0.0013478671899065375,
- 0.002044878201559186,
- 0.03712902590632439,
- 0.009306281805038452,
- -0.04282186180353165,
- -0.017506984993815422,
- -0.07961689680814743,
- -0.025808464735746384,
- -0.04851113259792328,
- 0.06120963767170906,
- 0.08534356951713562,
- 0.003428996540606022,
- -0.028051182627677917,
- -0.02972245402634144,
- -0.09502371400594711,
- 0.01053573191165924,
- -0.06531968712806702,
- -0.00048023118870332837,
- -0.0052670761942863464,
- 0.028399843722581863,
- -0.05185743048787117,
- -4.935174176657183e-33,
- -0.015209171921014786,
- -0.0743464007973671,
- -0.015098330564796925,
- 0.11948015540838242,
- -0.11454091221094131,
- 0.007489111740142107,
- -0.016510872170329094,
- -0.09196502715349197,
- -0.09888335317373276,
- 0.006220225244760513,
- 0.006543132942169905,
- -0.09479348361492157,
- -0.08889739960432053,
- -0.016646921634674072,
- 0.14543522894382477,
- -0.014422355219721794,
- -0.004340714309364557,
- 0.025096403434872627,
- -0.10209160298109055,
- -0.025225766003131866,
- 0.013788039796054363,
- 0.06196937710046768,
- 0.0020226542837917805,
- -0.07948249578475952,
- -0.013592544943094254,
- -0.007087628822773695,
- 0.017493320629000664,
- 0.021566350013017654,
- 0.004062016028910875,
- 0.03747473657131195,
- 0.026671985164284706,
- -0.00022654759231954813,
- -0.02473258785903454,
- -0.04750003665685654,
- 0.058114923536777496,
- -0.049673594534397125,
- -0.002798146568238735,
- -0.05822213366627693,
- -0.005068205762654543,
- 0.03732359781861305,
- -0.015176885761320591,
- -0.028070341795682907,
- -0.0035699023865163326,
- 0.1081627905368805,
- 0.07136808335781097,
- -0.05880024656653404,
- 0.028580082580447197,
- -0.0032364705111831427,
- 0.10404234379529953,
- -0.0011432820465415716,
- -0.021387942135334015,
- 0.010672981850802898,
- 0.059441938996315,
- -0.030713694170117378,
- -0.017858177423477173,
- 0.0704793706536293,
- -0.014100655913352966,
- 0.02022012136876583,
- -0.0034014610573649406,
- 0.0003111931146122515,
- 0.044390156865119934,
- 0.11035870760679245,
- 0.05963622406125069,
- -0.024331839755177498,
- 0.11443423479795456,
- -0.029714878648519516,
- 0.024819156154990196,
- 0.005148683674633503,
- 0.017080148681998253,
- 0.05091096833348274,
- 0.03615174815058708,
- -0.05260405316948891,
- 0.10767676681280136,
- 0.05083364248275757,
- -0.021540602669119835,
- 0.016667481511831284,
- -0.03354179486632347,
- 0.04889076575636864,
- -0.0478394478559494,
- 0.0011162904556840658,
- -0.095828577876091,
- -0.0008884841809049249,
- -0.048413485288619995,
- 0.0733301043510437,
- 0.08562145382165909,
- 0.06661920249462128,
- -0.0015804051654413342,
- -0.08548902720212936,
- -0.018620474264025688,
- -0.007347057107836008,
- -0.1017208844423294,
- 0.012871233746409416,
- 0.01257485244423151,
- -0.04823770746588707,
- -0.0227741040289402,
- 3.333318106558067e-33,
- -0.009090631268918514,
- -0.011335409246385098,
- 0.03375446796417236,
- -0.0013570014853030443,
- -0.08022093772888184,
- -0.017176805064082146,
- 0.006408137734979391,
- 0.047223396599292755,
- -0.10161981731653214,
- 0.025886211544275284,
- -0.14906124770641327,
- 0.0007933424203656614,
- 0.0936645120382309,
- -0.005863248836249113,
- 0.04534109681844711,
- 0.051237452775239944,
- 0.07422535121440887,
- 0.020379001274704933,
- -0.08857449144124985,
- 0.01304042711853981,
- -0.03898671641945839,
- -0.053962480276823044,
- 0.03980442136526108,
- -0.02531454525887966,
- -0.029994754120707512,
- 0.02246766723692417,
- 0.0817042738199234,
- 0.028249194845557213,
- -0.07656808197498322,
- -0.010373176075518131,
- 0.040083859115839005,
- -0.025233762338757515,
- 0.01957016810774803,
- -0.014706281013786793,
- -0.056868888437747955,
- 0.0054665012285113335,
- 0.026937654241919518,
- -0.07182656228542328,
- 0.0053532905876636505,
- 0.005734335631132126,
- 0.05858477205038071,
- -0.03575168922543526,
- 0.0006228706915862858,
- 0.11801803857088089,
- -0.02622969262301922,
- -0.035049840807914734,
- 0.0022946486715227365,
- 0.09860406816005707,
- -0.016362305730581284,
- 0.036052074283361435,
- -0.0634303092956543,
- 0.05664518475532532,
- -0.0022607692517340183,
- -0.010346991941332817,
- 0.09165152907371521,
- -0.08108663558959961,
- -0.0872286930680275,
- 0.03037523850798607,
- -0.04230130836367607,
- -0.03378019854426384,
- -0.03416695073246956,
- 0.04324943572282791,
- 0.00025357792037539184,
- 0.030681287869811058,
- 0.1052679792046547,
- 0.07457402348518372,
- -0.05282488837838173,
- -0.0182572640478611,
- 0.014513028785586357,
- 0.002786467783153057,
- 0.05513182654976845,
- 0.061569783836603165,
- -0.08447228372097015,
- -0.0730508491396904,
- 0.007017879281193018,
- 0.08863244950771332,
- -0.04134044796228409,
- 0.007217471022158861,
- -0.029749782755970955,
- 0.0170439463108778,
- -0.013841775245964527,
- -0.06119954586029053,
- -0.037616245448589325,
- 0.07919113337993622,
- 0.005679671186953783,
- 0.02809462882578373,
- -0.006225032266229391,
- -0.03609325736761093,
- 0.016394920647144318,
- 0.0012210339773446321,
- 0.03681685030460358,
- 0.01042209006845951,
- -0.036422088742256165,
- -0.03130994364619255,
- -0.046493399888277054,
- -1.121991743957551e-8,
- 0.04002239927649498,
- 0.07698092609643936,
- -0.04275818541646004,
- -0.04157111793756485,
- -0.05211343616247177,
- -0.007977521978318691,
- -0.038984693586826324,
- 0.022794101387262344,
- -0.00972898118197918,
- 0.10796286165714264,
- -0.020256904885172844,
- -0.0014833101304247975,
- -0.007436515297740698,
- 0.00799709465354681,
- -0.035148344933986664,
- 0.00046376825775951147,
- 0.01769217476248741,
- 0.03761483356356621,
- -0.0661998763680458,
- -0.010041809640824795,
- -0.011025065556168556,
- 0.035441797226667404,
- 0.002957449294626713,
- 0.07168493419885635,
- -0.006721245590597391,
- 0.03282223641872406,
- 0.03357021138072014,
- 0.05211314931511879,
- 0.04140867665410042,
- -0.06404680013656616,
- 0.05991192162036896,
- -0.04524733126163483,
- -0.03437235206365585,
- 0.030184367671608925,
- -0.0265064537525177,
- -0.0017138180555775762,
- -0.10142352432012558,
- 0.0021334236953407526,
- -0.020459020510315895,
- -0.023544209077954292,
- 0.032181572169065475,
- -0.05596351996064186,
- 0.031259022653102875,
- 0.07991819083690643,
- -0.07204732298851013,
- 0.09387536346912384,
- 0.0013386218342930079,
- 0.06053842604160309,
- -0.05990179628133774,
- 0.05085497349500656,
- -0.09642665088176727,
- 0.0429920069873333,
- 0.017484402284026146,
- 0.049673523753881454,
- -0.019251108169555664,
- 0.017525777220726013,
- 0.11012936383485794,
- 0.03712150827050209,
- -0.012997809797525406,
- 0.1218191608786583,
- 0.06922807544469833,
- -0.047865841537714005,
- -0.05723852664232254,
- -0.01091376319527626
- ]
- },
- {
- "keyword": "archipelago",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.014541148208081722,
- 0.049811333417892456,
- -0.07456456869840622,
- 0.02902894653379917,
- 0.0025037634186446667,
- -0.07335256785154343,
- 0.017507445067167282,
- -0.03899291902780533,
- 0.013949853368103504,
- -0.0024098081048578024,
- 0.0748078003525734,
- -0.1282678097486496,
- -0.09938808530569077,
- 0.06517346948385239,
- 0.0800030529499054,
- 0.026878293603658676,
- -0.05064229294657707,
- -0.013657464645802975,
- 0.019277604296803474,
- -0.05829627439379692,
- -0.04844649136066437,
- 0.00899297371506691,
- 0.012266396544873714,
- 0.031743090599775314,
- -0.0006534117856062949,
- -0.009734928607940674,
- 0.05452170968055725,
- 0.0049104648642241955,
- 0.02359970472753048,
- -0.04787411168217659,
- -0.06269887834787369,
- 0.04994935542345047,
- 0.024165719747543335,
- 0.049537740647792816,
- -0.023965289816260338,
- 0.11031698435544968,
- -0.05863496661186218,
- -0.053457535803318024,
- -0.014353270642459393,
- 0.0008891554898582399,
- -0.04906821623444557,
- -0.0015737636713311076,
- 0.07778313755989075,
- -0.008496252819895744,
- -0.0106298066675663,
- -0.01986880600452423,
- -0.05144213140010834,
- 0.05572192743420601,
- 0.01866896264255047,
- -0.000665023282635957,
- -0.03264614939689636,
- -0.06276058405637741,
- -0.06062034144997597,
- -0.05918280780315399,
- 0.013181944377720356,
- -0.003942036535590887,
- 0.01719423197209835,
- -0.020229939371347427,
- 0.010996805503964424,
- -0.030595537275075912,
- 0.052529457956552505,
- -0.02876981534063816,
- 0.015937460586428642,
- 0.051610615104436874,
- -0.0006047514034435153,
- 0.023713422939181328,
- -0.014215278439223766,
- 0.05143892392516136,
- -0.055608153343200684,
- -0.06746471673250198,
- 0.015392981469631195,
- -0.027515940368175507,
- 0.0434061661362648,
- -0.0013727560872212052,
- -0.08654743432998657,
- -0.01623101904988289,
- -0.05284691974520683,
- -0.00587459234520793,
- 0.019948218017816544,
- 0.0731867179274559,
- 0.013861717656254768,
- 0.09523417055606842,
- 0.01667214371263981,
- -0.03812785819172859,
- 0.024406922981142998,
- 0.03606720641255379,
- 0.042020149528980255,
- -0.08252456784248352,
- -0.02888667583465576,
- -0.01894138567149639,
- 0.04589944705367088,
- 0.00295254890806973,
- 0.09559778869152069,
- -0.02651246264576912,
- -0.06683698296546936,
- -0.0022432226687669754,
- 0.05767425149679184,
- 0.003941476345062256,
- -0.06098794937133789,
- 0.1987297236919403,
- 0.07207129150629044,
- -0.010897187516093254,
- -0.012396497651934624,
- 0.0026698634028434753,
- -0.030561888590455055,
- 0.03563015162944794,
- 0.008612570352852345,
- -0.0440460704267025,
- 0.040195535868406296,
- 0.07881231606006622,
- -0.13107389211654663,
- 0.02152998559176922,
- -0.0782063752412796,
- -0.04386114701628685,
- -0.027114957571029663,
- -0.013849858194589615,
- -0.018101945519447327,
- 0.046556297689676285,
- -0.04270844906568527,
- 0.014455973170697689,
- 0.006073957774788141,
- -0.06087050586938858,
- -0.015624470077455044,
- -0.03909735009074211,
- 0.03687048703432083,
- 0.01834041066467762,
- -0.002835926366969943,
- -3.421318185054516e-33,
- 0.08421065658330917,
- -0.07331632077693939,
- 0.008686572313308716,
- 0.023120278492569923,
- 0.045944616198539734,
- -0.012841731309890747,
- -0.021677235141396523,
- -0.07157342880964279,
- -0.09981589019298553,
- 0.056753888726234436,
- -0.050300996750593185,
- 0.014521928504109383,
- -0.04427694156765938,
- -0.10205412656068802,
- 0.11170680820941925,
- 0.0030812679324299097,
- 0.0546548031270504,
- 0.052429329603910446,
- -0.01012544333934784,
- 0.004856855608522892,
- 0.016546228900551796,
- 0.06873197853565216,
- 0.009004834108054638,
- -0.09141729027032852,
- -0.07524546980857849,
- 0.01094459742307663,
- -0.01220716256648302,
- -0.12808208167552948,
- -0.020939702168107033,
- 0.052591949701309204,
- -0.03554145619273186,
- -0.03189627081155777,
- -0.0794731080532074,
- -0.026004737243056297,
- -0.08888764679431915,
- -0.08444003015756607,
- -0.04940381646156311,
- -0.1336914747953415,
- -0.03732546791434288,
- 0.014651371166110039,
- 0.0048333327285945415,
- 0.011483794078230858,
- 0.057593218982219696,
- 0.05438259616494179,
- 0.02101164497435093,
- -0.014761402271687984,
- 0.08808205276727676,
- 0.018872138112783432,
- 0.06869404762983322,
- 0.11635123938322067,
- -0.11402440071105957,
- -0.05362165346741676,
- -0.04939306154847145,
- -0.030053021386265755,
- -0.0027687756810337305,
- -0.03763659670948982,
- 0.01664256863296032,
- 0.02926679700613022,
- 0.04113466292619705,
- 0.05679384991526604,
- 0.03953544422984123,
- -0.022277995944023132,
- 0.04141976311802864,
- -0.07451631128787994,
- 0.04047113284468651,
- 0.04285357892513275,
- 0.02914741449058056,
- -0.008374902419745922,
- 0.04706122353672981,
- -0.09022454172372818,
- 0.03622104600071907,
- -0.05081537738442421,
- 0.03905211761593819,
- 0.08625104278326035,
- 0.0010850977851077914,
- -0.056397054344415665,
- 0.03176780045032501,
- -0.024054279550909996,
- -0.10042603313922882,
- 0.03365115076303482,
- -0.08799315243959427,
- 0.009511926211416721,
- -0.03260502591729164,
- 0.044458791613578796,
- -0.036914825439453125,
- 0.06789349764585495,
- 0.019314177334308624,
- -0.047933176159858704,
- 0.0813700258731842,
- 0.010656957514584064,
- -0.06606519222259521,
- -0.014754719100892544,
- 0.03297814726829529,
- -0.04280625656247139,
- -0.013819540850818157,
- 3.837112210117452e-33,
- 0.0055349948816001415,
- -0.07794791460037231,
- -0.00519070727750659,
- -0.07220727950334549,
- 0.013142170384526253,
- -0.06781502813100815,
- 0.02945282869040966,
- 0.07645716518163681,
- -0.12420664727687836,
- -0.0066093564964830875,
- -0.09589188545942307,
- -0.007323357742279768,
- 0.07925072312355042,
- -0.030660517513751984,
- -0.030953550711274147,
- 0.07013211399316788,
- 0.1170119047164917,
- 0.020358311012387276,
- 0.01568528451025486,
- 0.020414577797055244,
- 0.020384609699249268,
- -0.11560741811990738,
- 0.020073959603905678,
- 0.004899886902421713,
- 0.017850495874881744,
- 0.08699576556682587,
- 0.09506607800722122,
- -0.06622307002544403,
- -0.02116602286696434,
- -0.02139158919453621,
- -0.006737714633345604,
- 0.02535630762577057,
- -0.04526782035827637,
- 0.07614549994468689,
- -0.05765627697110176,
- -0.04948930814862251,
- 0.020535411313176155,
- -0.0005711253033950925,
- -0.0491320975124836,
- 0.019052980467677116,
- 0.016357192769646645,
- -0.0013097835471853614,
- -0.02097051404416561,
- 0.11731179803609848,
- -0.053416211158037186,
- -0.023529797792434692,
- 0.007145220413804054,
- 0.1281892955303192,
- 0.04773162677884102,
- -0.058600232005119324,
- -0.05717873573303223,
- 0.01928718388080597,
- 0.04881533235311508,
- 0.018073556944727898,
- 0.046134497970342636,
- 0.0074968901462852955,
- -0.06058097258210182,
- 0.03150235489010811,
- 0.03650180622935295,
- 0.005202584434300661,
- -0.012402931228280067,
- 0.005764233414083719,
- -0.06058972328901291,
- 0.06631255149841309,
- 0.05478719249367714,
- 0.042314816266298294,
- -0.01173503790050745,
- 0.03056952729821205,
- 0.0010639147367328405,
- -0.02287238836288452,
- -0.015015571378171444,
- -0.01700407825410366,
- -0.07186385244131088,
- 0.016197580844163895,
- 0.03544624522328377,
- 0.011539623141288757,
- 0.004887320101261139,
- -0.0840025544166565,
- 0.04590700566768646,
- -0.030773529782891273,
- -0.04814697429537773,
- -0.07076599448919296,
- -0.009023507125675678,
- 0.014902415685355663,
- 0.010917692445218563,
- -0.006634480785578489,
- 0.12451986223459244,
- -0.06650370359420776,
- -0.009558653458952904,
- 0.017622122541069984,
- 0.014508679509162903,
- 0.07362036406993866,
- -0.034245964139699936,
- 0.015987858176231384,
- 0.012797923758625984,
- -1.0445996956320869e-8,
- 0.04923568665981293,
- 0.009680387564003468,
- 0.053444113582372665,
- 0.008601274341344833,
- 0.001394991879351437,
- 0.009012794122099876,
- 0.003275969997048378,
- 0.042472898960113525,
- -0.0017997149843722582,
- 0.07878774404525757,
- 0.01754532754421234,
- -0.0007878247415646911,
- 0.07072576880455017,
- 0.024677719920873642,
- 0.05246087536215782,
- 0.016833549365401268,
- 0.05247919633984566,
- 0.09492308646440506,
- -0.0019797540735453367,
- 0.010293635539710522,
- 0.018060928210616112,
- 0.014593289233744144,
- 0.030369073152542114,
- -0.10342631489038467,
- -0.044494692236185074,
- 0.053021881729364395,
- 0.04352116957306862,
- 0.06499136239290237,
- 0.04993566870689392,
- -0.04033002629876137,
- -0.03132898733019829,
- -0.009286879561841488,
- -0.0833660289645195,
- 0.039110977202653885,
- 0.013134985230863094,
- 0.04318509250879288,
- -0.05269007012248039,
- -0.009002551436424255,
- -0.05143216252326965,
- -0.04201071709394455,
- -0.03102281503379345,
- 0.02796122431755066,
- 0.016199642792344093,
- 0.027782699093222618,
- 0.025762228295207024,
- 0.06263310462236404,
- 0.027830807492136955,
- 0.030754445120692253,
- -0.00017178920097649097,
- -0.039187874644994736,
- -0.017920153215527534,
- -0.01231716014444828,
- 0.050105009227991104,
- 0.04823264852166176,
- 0.05655866861343384,
- -0.03065270185470581,
- 0.031809862703084946,
- 0.026064274832606316,
- -0.014863571152091026,
- 0.15704034268856049,
- 0.09108228236436844,
- -0.03059566020965576,
- 0.01500120759010315,
- -0.009127595461905003
- ]
- },
- {
- "keyword": "street",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.03701915964484215,
- 0.01065526157617569,
- -0.0026565827429294586,
- 0.05710149183869362,
- -0.08171841502189636,
- -0.00797716062515974,
- 0.08950812369585037,
- -0.029605738818645477,
- -0.008958042599260807,
- -0.08881875872612,
- 0.08122860640287399,
- 0.0126394247636199,
- -0.022373253479599953,
- -0.02071119286119938,
- 0.0523814894258976,
- 0.023321064189076424,
- -0.005523331463336945,
- -0.0006860063294880092,
- 0.023770401254296303,
- 0.020118817687034607,
- -0.08503998816013336,
- 0.03274618461728096,
- -0.04932524636387825,
- -0.015518857166171074,
- -0.06401915848255157,
- 0.1007973849773407,
- 0.018083913251757622,
- 0.07083461433649063,
- 0.0000984121288638562,
- -0.10006380081176758,
- 0.04787023365497589,
- -0.01404308807104826,
- 0.0902327299118042,
- -0.027699226513504982,
- 0.007239100057631731,
- -0.0033257307950407267,
- 0.03769146651029587,
- 0.02999098040163517,
- 0.062014829367399216,
- 0.023972049355506897,
- -0.03765680268406868,
- -0.05850532278418541,
- -0.015425249002873898,
- -0.048979099839925766,
- 0.08784143626689911,
- -0.06570108979940414,
- 0.049409106373786926,
- -0.005370247643440962,
- 0.07288390398025513,
- -0.08678998798131943,
- 0.011164405383169651,
- -0.00015921465819701552,
- -0.03888005018234253,
- 0.06977766007184982,
- -0.009732638485729694,
- 0.015393322333693504,
- -0.028706012293696404,
- 0.0851801335811615,
- -0.002935840515419841,
- -0.04572802037000656,
- 0.06308391690254211,
- 0.0038126155268400908,
- -0.07880844920873642,
- 0.03296208381652832,
- 0.033120181411504745,
- -0.020289182662963867,
- 0.03591950610280037,
- -0.013584853149950504,
- 0.06560228019952774,
- -0.03075922653079033,
- 0.03342059627175331,
- 0.008013872429728508,
- -0.008978518657386303,
- -0.07336380332708359,
- -0.0019890714902430773,
- 0.04826109856367111,
- -0.008049262687563896,
- -0.07368101924657822,
- -0.011813906021416187,
- -0.035524290055036545,
- 0.021795067936182022,
- -0.05524660646915436,
- -0.054716840386390686,
- 0.0655292198061943,
- -0.05009682849049568,
- -0.010526202619075775,
- -0.018327778205275536,
- 0.010558538138866425,
- 0.023551367223262787,
- 0.019599344581365585,
- -0.05920402333140373,
- -0.03127101808786392,
- -0.025829946622252464,
- 0.03127799928188324,
- -0.08971495181322098,
- -0.03308049961924553,
- -0.03298763185739517,
- -0.09306620806455612,
- -0.0321202389895916,
- 0.25171762704849243,
- -0.058579158037900925,
- 0.00009186100214719772,
- -0.009084776975214481,
- 0.05513646826148033,
- 0.07028470188379288,
- -0.017709776759147644,
- -0.025082845240831375,
- 0.039997588843107224,
- -0.0703011304140091,
- 0.04850209504365921,
- 0.03208135440945625,
- 0.030653728172183037,
- -0.05116255581378937,
- -0.028309104964137077,
- 0.004634888842701912,
- -0.005324806552380323,
- 0.00744783878326416,
- 0.008850157260894775,
- -0.034072697162628174,
- 0.025110892951488495,
- -0.04098533093929291,
- 0.01779654435813427,
- -0.08758143335580826,
- -0.021048318594694138,
- -0.01047759409993887,
- -0.09218570590019226,
- 0.07408490777015686,
- -5.6662684800472894e-33,
- -0.005572132300585508,
- -0.031144937500357628,
- 0.11014506965875626,
- 0.038581740111112595,
- 0.06390661001205444,
- 0.004101147409528494,
- -0.06318944692611694,
- -0.04856061190366745,
- -0.05318808555603027,
- 0.06801708787679672,
- 0.04490816965699196,
- -0.055980853736400604,
- 0.004302856978029013,
- -0.03525583818554878,
- 0.13605210185050964,
- 0.0698082223534584,
- 0.05948959290981293,
- -0.022703910246491432,
- -0.02097776159644127,
- 0.05532500147819519,
- 0.06240607053041458,
- 0.010037167929112911,
- -0.0201449915766716,
- -0.01256362535059452,
- -0.0024039126001298428,
- -0.027138957753777504,
- 0.03812194988131523,
- -0.020125610753893852,
- 0.07042594254016876,
- -0.004615946672856808,
- 0.03229161724448204,
- 0.09324785321950912,
- 0.03320107236504555,
- 0.02100672572851181,
- 0.005565392319113016,
- 0.017505386844277382,
- -0.07060032337903976,
- -0.11514699459075928,
- 0.01582442782819271,
- -0.014516797848045826,
- -0.023584308102726936,
- -0.04345763847231865,
- -0.03844158723950386,
- 0.02899663895368576,
- 0.0639617070555687,
- 0.10020843148231506,
- 0.015056774020195007,
- 0.024406060576438904,
- 0.018375519663095474,
- 0.02619612030684948,
- 0.006314669735729694,
- -0.017597921192646027,
- -0.20990125834941864,
- 0.06724325567483902,
- -0.027884650975465775,
- -0.023761972784996033,
- -0.024319197982549667,
- -0.003392858663573861,
- 0.021819667890667915,
- 0.0436784066259861,
- 0.04818784445524216,
- 0.13972364366054535,
- -0.015658898279070854,
- -0.0046721696853637695,
- -0.029073774814605713,
- -0.07961823791265488,
- 0.030530838295817375,
- -0.012662166729569435,
- 0.02381051890552044,
- 0.006795170251280069,
- -0.0057791355066001415,
- -0.04657887667417526,
- 0.09642891585826874,
- 0.03530355170369148,
- 0.0030507356859743595,
- -0.07448971271514893,
- -0.05748436227440834,
- 0.0270687248557806,
- 0.01659088209271431,
- 0.03144863620400429,
- -0.08054006099700928,
- 0.041857678443193436,
- -0.058431241661310196,
- 0.06351307779550552,
- 0.09438034147024155,
- -0.027328016236424446,
- -0.02749950997531414,
- -0.05605597421526909,
- 0.029498785734176636,
- 0.010423483327031136,
- -0.1373673379421234,
- 0.0029821081552654505,
- -0.08942155539989471,
- -0.0032277426216751337,
- -0.041977737098932266,
- 4.236701678212319e-33,
- -0.04471202567219734,
- -0.06262180954217911,
- -0.022871864959597588,
- 0.05807517468929291,
- -0.03276823088526726,
- 0.04169118404388428,
- -0.006838846951723099,
- 0.017539290711283684,
- 0.040527813136577606,
- 0.12700040638446808,
- -0.15668174624443054,
- 0.025203365832567215,
- 0.07156210392713547,
- 0.04748254269361496,
- 0.05866961181163788,
- -0.009546485729515553,
- 0.047231897711753845,
- -0.008190060965716839,
- 0.015557297505438328,
- 0.0394127257168293,
- -0.05112743005156517,
- 0.0361037515103817,
- 0.0059090182185173035,
- 0.0008125898893922567,
- 0.005840301048010588,
- -0.0001773494150256738,
- 0.030765915289521217,
- 0.06741337478160858,
- 0.012394476681947708,
- -0.025272659957408905,
- -0.0025727557949721813,
- 0.04058215767145157,
- 0.005742598325014114,
- 0.03632129356265068,
- -0.02276497520506382,
- 0.16699568927288055,
- 0.01192806288599968,
- -0.010082785040140152,
- -0.015382443554699421,
- 0.018561940640211105,
- -0.03276960179209709,
- -0.02410511113703251,
- 0.00899501796811819,
- 0.10727997124195099,
- 0.022248119115829468,
- -0.04215077683329582,
- -0.06662126630544662,
- 0.07662935554981232,
- 0.00249135191552341,
- 0.020674720406532288,
- -0.0010136988712474704,
- 0.08009140193462372,
- -0.0256373081356287,
- 0.06207628548145294,
- 0.03151216357946396,
- 0.02648884989321232,
- -0.05155399069190025,
- 0.0018933999817818403,
- -0.04946553707122803,
- 0.05384792760014534,
- 0.04983007162809372,
- 0.03622721508145332,
- -0.04633007198572159,
- 0.07920792698860168,
- -0.0014741140184924006,
- 0.016295714303851128,
- -0.023979580029845238,
- -0.06803753226995468,
- -0.033381640911102295,
- -0.02798420935869217,
- 0.030991844832897186,
- 0.02027931436896324,
- -0.0930769219994545,
- 0.012556789442896843,
- -0.06701280921697617,
- 0.008824964985251427,
- -0.057566527277231216,
- 0.073629230260849,
- -0.010973877273499966,
- 0.014946979470551014,
- -0.011545401997864246,
- -0.008508308790624142,
- -0.06779731065034866,
- 0.15274180471897125,
- -0.053441423922777176,
- 0.0027003076393157244,
- -0.0256620142608881,
- 0.014888153411448002,
- -0.007251379545778036,
- 0.026174776256084442,
- 0.017014380544424057,
- -0.011155790649354458,
- -0.04457901790738106,
- -0.007526727858930826,
- -0.0505804717540741,
- -1.220138123869674e-8,
- -0.060735076665878296,
- 0.05217188596725464,
- -0.0029536448419094086,
- 0.009401241317391396,
- 0.04989475756883621,
- 0.03724314644932747,
- 0.05611788108944893,
- -0.016376104205846786,
- 0.004489137325435877,
- 0.09091673046350479,
- -0.012372584082186222,
- 0.00070322270039469,
- -0.05224359408020973,
- 0.0700274407863617,
- -0.04122708737850189,
- 0.008565803058445454,
- 0.006712813396006823,
- -0.08655371516942978,
- -0.007537408731877804,
- 0.06515353173017502,
- 0.0018707276321947575,
- -0.047712814062833786,
- 0.01007250975817442,
- -0.011483508162200451,
- -0.012012415565550327,
- -0.04174713045358658,
- 0.019177576526999474,
- 0.05869819223880768,
- 0.005336358677595854,
- -0.0008988254121504724,
- 0.040799349546432495,
- 0.018887417390942574,
- -0.025096924975514412,
- -0.009683242999017239,
- 0.057820167392492294,
- -0.03813545033335686,
- 0.025412334129214287,
- 0.03040749952197075,
- 0.007477580104023218,
- 0.02912094257771969,
- 0.004321621265262365,
- -0.09184218943119049,
- 0.083004429936409,
- -0.03389318659901619,
- -0.015592602081596851,
- 0.03062588907778263,
- -0.038102153688669205,
- -0.014814943075180054,
- 0.01763487607240677,
- -0.06642519682645798,
- -0.016870835795998573,
- -0.025781074538826942,
- 0.002585954498499632,
- 0.04003390669822693,
- -0.012586562894284725,
- 0.02155367098748684,
- -0.04646885767579079,
- -0.03141854703426361,
- -0.10595177859067917,
- 0.042966898530721664,
- 0.06365719437599182,
- -0.023829039186239243,
- -0.07290912419557571,
- 0.011821881867945194
- ]
- },
- {
- "keyword": "road",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.017058080062270164,
- 0.0004044271190650761,
- -0.016524018719792366,
- 0.08346524834632874,
- -0.07572057098150253,
- 0.0000690870510879904,
- 0.09674689918756485,
- 0.0033451998606324196,
- -0.0092702591791749,
- -0.06507965177297592,
- -0.01513784658163786,
- -0.0602455660700798,
- 0.012197944335639477,
- 0.018473539501428604,
- 0.009594479575753212,
- 0.002472163876518607,
- -0.027859307825565338,
- -0.009307552129030228,
- 0.019245192408561707,
- -0.009325618855655193,
- -0.041007064282894135,
- 0.055528607219457626,
- -0.038372378796339035,
- -0.008514046669006348,
- -0.060459040105342865,
- 0.09470515698194504,
- 0.043719615787267685,
- 0.07614099979400635,
- -0.023912111297249794,
- -0.1280183047056198,
- -0.007377200294286013,
- 0.0025875368155539036,
- 0.02646855264902115,
- -0.030458996072411537,
- -0.0252037663012743,
- -0.005797683726996183,
- -0.0056947278790175915,
- 0.011206772178411484,
- 0.10322989523410797,
- -0.02983715757727623,
- -0.010561312548816204,
- -0.08662727475166321,
- 0.05723942071199417,
- -0.03880897909402847,
- 0.080354243516922,
- -0.03719455376267433,
- 0.05630243197083473,
- -0.03587782010436058,
- 0.09695681184530258,
- -0.05845937132835388,
- -0.03331216424703598,
- -0.03639809787273407,
- -0.053220685571432114,
- 0.03097025863826275,
- 0.000692575762514025,
- 0.04956880211830139,
- -0.015478391200304031,
- 0.04936526343226433,
- 0.001900933333672583,
- -0.02190122939646244,
- 0.0684300884604454,
- -0.023071957752108574,
- -0.04886966198682785,
- 0.02496197819709778,
- 0.00018148151866625994,
- -0.056766171008348465,
- 0.02174893394112587,
- -0.009084346704185009,
- 0.01615295559167862,
- 0.00912630744278431,
- 0.0003677864442579448,
- 0.027499165385961533,
- -0.004721463657915592,
- -0.04743030294775963,
- 0.0685412809252739,
- -0.016183650121092796,
- 0.01197113562375307,
- -0.0036689015105366707,
- 0.0052929106168448925,
- -0.057211823761463165,
- -0.021732773631811142,
- 0.00008486017031827942,
- 0.0007718710112385452,
- 0.06682303547859192,
- 0.021280471235513687,
- -0.05050944164395332,
- -0.009839344769716263,
- 0.03944747522473335,
- 0.029169227927923203,
- 0.040651559829711914,
- -0.04776105284690857,
- -0.03713160753250122,
- 0.015282044187188148,
- 0.06518880277872086,
- -0.1371738463640213,
- 0.0007094451575540006,
- 0.003048527520149946,
- -0.0612587071955204,
- 0.006768668536096811,
- 0.24225333333015442,
- -0.03821887448430061,
- 0.022355500608682632,
- -0.06412806361913681,
- 0.04125109687447548,
- 0.07661522179841995,
- 0.05287368968129158,
- 0.009186562150716782,
- 0.06790138781070709,
- -0.030664680525660515,
- 0.03864051401615143,
- 0.07199310511350632,
- -0.021769067272543907,
- -0.0747678354382515,
- -0.005144772119820118,
- 0.009439880028367043,
- -0.010832817293703556,
- -0.029839789494872093,
- 0.000911437498871237,
- -0.04870665445923805,
- 0.05901704356074333,
- -0.09919817000627518,
- -0.014376314356923103,
- -0.01378934271633625,
- -0.02370428293943405,
- -0.02188296616077423,
- -0.08575186878442764,
- 0.07733678817749023,
- -5.086170466782137e-33,
- -0.0038739964365959167,
- -0.024358106777071953,
- 0.0601203627884388,
- 0.0391230434179306,
- 0.04674234613776207,
- 0.017178352922201157,
- -0.08382321149110794,
- -0.0019867976661771536,
- -0.10913443565368652,
- 0.010199388489127159,
- 0.017899297177791595,
- -0.00836937129497528,
- -0.03851107135415077,
- -0.06715919822454453,
- 0.14630338549613953,
- 0.005887134000658989,
- 0.004448342602699995,
- -0.027266476303339005,
- -0.045286040753126144,
- 0.021370671689510345,
- 0.010087834671139717,
- 0.011086336337029934,
- 0.018747586756944656,
- 0.00824886467307806,
- 0.01204622257500887,
- -0.05850711837410927,
- 0.037266314029693604,
- -0.0202996414154768,
- 0.07803884148597717,
- 0.004329618997871876,
- -0.005709693301469088,
- 0.08326709270477295,
- 0.007924715057015419,
- 0.05862177908420563,
- -0.00259895040653646,
- 0.01128056924790144,
- -0.07312379032373428,
- -0.0860476866364479,
- -0.023820435628294945,
- -0.005728219635784626,
- 0.022010887041687965,
- -0.0617062970995903,
- -0.048998720943927765,
- 0.006866097450256348,
- 0.03084903582930565,
- 0.07009077817201614,
- 0.012874113395810127,
- 0.02039283700287342,
- -0.00906516145914793,
- 0.042961787432432175,
- -0.07223708927631378,
- -0.0012804274447262287,
- -0.10007122159004211,
- 0.011761248111724854,
- -0.0562850721180439,
- -0.017399853095412254,
- 0.0026718461886048317,
- 0.00612171646207571,
- -0.0007804888882674277,
- 0.009123367257416248,
- 0.039983563125133514,
- 0.11508166044950485,
- 0.006602112203836441,
- 0.025897061452269554,
- -0.025508243590593338,
- -0.05602465197443962,
- -0.0016016642330214381,
- -0.02325224131345749,
- 0.023472970351576805,
- -0.013031141832470894,
- -0.004756307695060968,
- -0.05297946184873581,
- 0.08586335182189941,
- 0.07971896231174469,
- 0.033791955560445786,
- -0.06765630841255188,
- -0.08780763298273087,
- 0.00895576924085617,
- -0.05289114639163017,
- 0.016667628660798073,
- -0.07799596339464188,
- 0.06721973419189453,
- -0.08277788758277893,
- 0.03738340362906456,
- 0.12217449396848679,
- -0.005926330573856831,
- -0.057416025549173355,
- -0.12206105142831802,
- 0.046989571303129196,
- 0.010877317748963833,
- -0.1337912529706955,
- 0.01087319664657116,
- -0.02968505024909973,
- -0.00942931231111288,
- -0.011578135192394257,
- 4.00719852849976e-33,
- 0.008750306442379951,
- -0.021372968330979347,
- 0.011014549061655998,
- 0.0875176340341568,
- -0.008317969739437103,
- 0.015452525578439236,
- 0.060626089572906494,
- -0.008833296597003937,
- 0.0881100669503212,
- 0.12343292683362961,
- -0.11470015347003937,
- 0.001568436622619629,
- 0.0945463478565216,
- 0.019411243498325348,
- 0.035389646887779236,
- -0.07688205689191818,
- 0.06947889178991318,
- -0.08187104016542435,
- 0.012907302938401699,
- 0.03315852954983711,
- -0.09454036504030228,
- -0.04590262845158577,
- -0.056971509009599686,
- -0.03484177961945534,
- -0.03887471556663513,
- 0.03498102352023125,
- 0.02541162818670273,
- 0.049911029636859894,
- -0.039406079798936844,
- -0.0013041106285527349,
- -0.007062751799821854,
- -0.0023485387209802866,
- 0.02393650822341442,
- 0.01753399148583412,
- -0.05115343630313873,
- 0.15298379957675934,
- -0.01783081889152527,
- -0.04273122176527977,
- -0.07856456190347672,
- -0.00996929407119751,
- 0.0339537151157856,
- -0.04977896064519882,
- 0.06913593411445618,
- 0.1400519609451294,
- 0.03723616525530815,
- -0.008733964525163174,
- -0.03169182315468788,
- 0.0998777225613594,
- -0.007429804187268019,
- 0.014886468648910522,
- 0.053213588893413544,
- 0.043977852910757065,
- -0.0031711256597191095,
- 0.07220731675624847,
- 0.02176002971827984,
- 0.03826884925365448,
- -0.029856305569410324,
- 0.03081284649670124,
- -0.004855404607951641,
- 0.055604543536901474,
- 0.05279935523867607,
- 0.058803290128707886,
- -0.05821887403726578,
- 0.07175539433956146,
- -0.011197458952665329,
- -0.039382368326187134,
- -0.054325804114341736,
- -0.04399389773607254,
- -0.01561681553721428,
- -0.006201901938766241,
- 0.005053772125393152,
- 0.025313105434179306,
- -0.04729129374027252,
- -0.01600876823067665,
- -0.05665716528892517,
- 0.006789005361497402,
- -0.07930690795183182,
- 0.056507501751184464,
- -0.00027207148377783597,
- -0.01567971333861351,
- -0.018249409273266792,
- -0.0070134615525603294,
- -0.061787139624357224,
- 0.12406586855649948,
- -0.041422486305236816,
- -0.013101719319820404,
- -0.0010093406308442354,
- -0.00029635929968208075,
- 0.02072780206799507,
- 0.052254568785429,
- 0.03482848033308983,
- 0.027355225756764412,
- -0.03355113044381142,
- -0.012516955845057964,
- -0.10133163630962372,
- -1.1923969367444442e-8,
- -0.026453787460923195,
- 0.053696271032094955,
- -0.02706906944513321,
- -0.0023397000040858984,
- 0.03556273132562637,
- 0.005177640821784735,
- 0.13076680898666382,
- 0.016426950693130493,
- 0.02276034653186798,
- 0.09717021137475967,
- 0.014587965793907642,
- 0.019002806395292282,
- -0.04835399240255356,
- 0.12209979444742203,
- -0.01940368488430977,
- 0.007321349810808897,
- -0.024299785494804382,
- -0.042594823986291885,
- -0.04885876923799515,
- 0.026427123695611954,
- -0.01340942457318306,
- -0.05054951831698418,
- -0.008408373221755028,
- 0.02175966463983059,
- 0.0014142621075734496,
- -0.057737067341804504,
- 0.004513266962021589,
- 0.06578261405229568,
- -0.018083391711115837,
- -0.02551923505961895,
- -0.005702996626496315,
- 0.03638676926493645,
- -0.007813271135091782,
- 0.01097431592643261,
- 0.04925374686717987,
- -0.04533460736274719,
- 0.025883104652166367,
- 0.041649580001831055,
- 0.08936294168233871,
- 0.02545466646552086,
- 0.013991836458444595,
- -0.023719778284430504,
- 0.06912113726139069,
- -0.02124607376754284,
- -0.004118957091122866,
- 0.0419505350291729,
- -0.04980834946036339,
- 0.020320696756243706,
- -0.0381404310464859,
- -0.022912632673978806,
- -0.081731416285038,
- -0.04718128964304924,
- -0.006157692056149244,
- 0.036874063313007355,
- 0.02530791237950325,
- 0.05771361663937569,
- -0.010059740394353867,
- -0.03841913864016533,
- -0.11682715266942978,
- 0.0834793969988823,
- 0.07093220949172974,
- -0.04030977934598923,
- 0.03706187382340431,
- 0.01648254506289959
- ]
- },
- {
- "keyword": "avenue",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.04342825338244438,
- 0.005292309448122978,
- -0.019686060026288033,
- 0.02315664105117321,
- -0.10942967236042023,
- -0.006741160526871681,
- 0.006943616550415754,
- -0.03693503513932228,
- 0.03766113892197609,
- -0.07667042315006256,
- 0.06076426059007645,
- 0.05973974987864494,
- -0.03295157477259636,
- -0.03114788606762886,
- 0.04948895797133446,
- -0.0033416582737118006,
- 0.03958456590771675,
- 0.008568739518523216,
- -0.0008552238577976823,
- -0.02653687261044979,
- 0.01569419726729393,
- 0.03340621665120125,
- 0.05374345928430557,
- -0.035232335329055786,
- -0.053837552666664124,
- 0.021991223096847534,
- 0.022813905030488968,
- 0.08655459433794022,
- 0.00501142255961895,
- -0.11996077746152878,
- 0.08668293058872223,
- -0.052809398621320724,
- 0.0696515440940857,
- -0.008143311366438866,
- 0.022860310971736908,
- 0.0244662556797266,
- 0.04978502541780472,
- 0.0004930126597173512,
- 0.07702090591192245,
- -0.02099139429628849,
- -0.024107933044433594,
- -0.026402758434414864,
- 0.014911177568137646,
- -0.021430393680930138,
- 0.03584669157862663,
- -0.04112077131867409,
- 0.011946098878979683,
- -0.02053634263575077,
- 0.1024518683552742,
- -0.07085290551185608,
- 0.0346432700753212,
- -0.021602429449558258,
- -0.02939043566584587,
- 0.072483129799366,
- -0.014637786895036697,
- 0.08509628474712372,
- 0.013491787947714329,
- 0.011117539368569851,
- -0.0007776548736728728,
- -0.036179184913635254,
- 0.06078888848423958,
- -0.0478094145655632,
- -0.0478915199637413,
- 0.034916024655103683,
- -0.06939651817083359,
- -0.0024443375878036022,
- 0.016476290300488472,
- 0.018365738913416862,
- 0.018279653042554855,
- -0.06546450406312943,
- -0.0024669200647622347,
- 0.006498753093183041,
- -0.018881570547819138,
- -0.05505043640732765,
- 0.01190413162112236,
- 0.00980452075600624,
- -0.03395295515656471,
- -0.02848590351641178,
- -0.018739188089966774,
- 0.010102618485689163,
- 0.01765107549726963,
- -0.07855314016342163,
- -0.03221941366791725,
- 0.08739911019802094,
- -0.022341053932905197,
- 0.01675906777381897,
- -0.034506965428590775,
- 0.004478927701711655,
- 0.034362129867076874,
- -0.002537068212404847,
- -0.008219697512686253,
- -0.03449063003063202,
- -0.03144371137022972,
- -0.015103798359632492,
- -0.08511799573898315,
- -0.03949690982699394,
- -0.016084901988506317,
- -0.1481437087059021,
- -0.07273789495229721,
- 0.22065182030200958,
- -0.06602077931165695,
- 0.004029260482639074,
- -0.05011701211333275,
- -0.019444072619080544,
- 0.08086628466844559,
- -0.008928309194743633,
- -0.022765252739191055,
- 0.05148914456367493,
- -0.0610373318195343,
- 0.045153915882110596,
- 0.0225350521504879,
- -0.025948436930775642,
- -0.02430388331413269,
- 0.015614932402968407,
- 0.006336200051009655,
- 0.01001088134944439,
- -0.008357368409633636,
- -0.039215754717588425,
- 0.05607188865542412,
- -0.04760940000414848,
- -0.009555366821587086,
- 0.03159817308187485,
- -0.050634920597076416,
- 0.02565167285501957,
- 0.008499233052134514,
- -0.08937819302082062,
- 0.044002924114465714,
- -4.662798543918228e-33,
- -0.024388696998357773,
- 0.04706032574176788,
- 0.03884509950876236,
- -0.05528051033616066,
- 0.09671114385128021,
- 0.005820998921990395,
- -0.0737677663564682,
- 0.007286946754902601,
- -0.0005511122290045023,
- 0.08107161521911621,
- 0.0371362566947937,
- -0.03067934326827526,
- 0.04023255035281181,
- -0.025870896875858307,
- 0.09251701086759567,
- 0.08157829195261002,
- 0.09100699424743652,
- 0.05107615888118744,
- -0.07981686294078827,
- -0.01021291222423315,
- -0.025395333766937256,
- 0.006958959624171257,
- -0.004698934033513069,
- 0.02070021629333496,
- -0.0035313430707901716,
- -0.0015260783256962895,
- -0.0021872795186936855,
- 0.004047323949635029,
- 0.05946412682533264,
- -0.002197010675445199,
- -0.015630075708031654,
- 0.05725592374801636,
- 0.007639565970748663,
- 0.0520436055958271,
- 0.0427197590470314,
- 0.034709300845861435,
- 0.0013090403517708182,
- -0.04072657972574234,
- 0.03050070069730282,
- -0.004507626872509718,
- -0.018912581726908684,
- 0.0018360785907134414,
- 0.020295582711696625,
- 0.01990480162203312,
- 0.08414362370967865,
- 0.11276286095380783,
- 0.01505296491086483,
- 0.041899923235177994,
- 0.1124463677406311,
- 0.029529454186558723,
- -0.006356595549732447,
- 0.01937967911362648,
- -0.10810334980487823,
- 0.04162430018186569,
- -0.061099275946617126,
- -0.033422548323869705,
- -0.035905737429857254,
- 0.015659810975193977,
- 0.06508500128984451,
- -0.03294955939054489,
- 0.045553047209978104,
- 0.1528041809797287,
- 0.004203329794108868,
- 0.03758435323834419,
- -0.08129763603210449,
- -0.08962435275316238,
- -0.013404173776507378,
- -0.004940119106322527,
- 0.0450984463095665,
- 0.07841677218675613,
- -0.015106000006198883,
- -0.04584744572639465,
- 0.09721275418996811,
- 0.050891418009996414,
- -0.04052327573299408,
- -0.031267426908016205,
- -0.12761548161506653,
- 0.05856543779373169,
- 0.06894873082637787,
- -0.011928961612284184,
- -0.07179867476224899,
- 0.02482197806239128,
- -0.03660052642226219,
- 0.057499535381793976,
- 0.1246681734919548,
- -0.04066849872469902,
- 0.005092117469757795,
- -0.006170479115098715,
- 0.02757181227207184,
- 0.023463400080800056,
- -0.1034538745880127,
- 0.017898542806506157,
- -0.07511980831623077,
- 0.04896644130349159,
- -0.04406961798667908,
- 4.3721693206209255e-33,
- 0.038775697350502014,
- -0.07314910739660263,
- -0.009112042374908924,
- 0.02914840169250965,
- -0.02777879685163498,
- -0.009057673625648022,
- -0.0028828680515289307,
- 0.026360372081398964,
- 0.06771746277809143,
- 0.057395078241825104,
- -0.11640996485948563,
- 0.07725905627012253,
- 0.07831983268260956,
- 0.0032865835819393396,
- 0.10911808907985687,
- -0.019850516691803932,
- 0.05165412276983261,
- -0.011812517419457436,
- -0.03679513558745384,
- 0.02980216033756733,
- -0.05193314328789711,
- -0.053187254816293716,
- -0.007444939110428095,
- 0.0025590902660042048,
- -0.028452735394239426,
- 0.03002416528761387,
- 0.09194446355104446,
- 0.04658885300159454,
- -0.04584493115544319,
- -0.01804160885512829,
- -0.06960836052894592,
- -0.004313244018703699,
- -0.04746973514556885,
- 0.02793596126139164,
- -0.03153867647051811,
- 0.12943074107170105,
- 0.022150397300720215,
- -0.011472337879240513,
- -0.055079057812690735,
- -0.0034864377230405807,
- 0.0358089804649353,
- -0.010314328595995903,
- -0.015104898251593113,
- 0.13180743157863617,
- 0.03292161971330643,
- -0.009224150329828262,
- -0.10543686896562576,
- 0.08628668636083603,
- -0.05519360303878784,
- -0.02390381693840027,
- -0.07303070276975632,
- 0.05890924483537674,
- 0.020266816020011902,
- 0.03930160030722618,
- 0.042120661586523056,
- 0.04329964518547058,
- 0.01813189499080181,
- -0.01511650625616312,
- -0.04615471512079239,
- 0.01710979826748371,
- 0.033188480883836746,
- 0.04051371291279793,
- -0.01640242338180542,
- 0.09871336072683334,
- 0.030780786648392677,
- 0.016381481662392616,
- 0.0009441904840059578,
- -0.08180214464664459,
- -0.06983240693807602,
- 0.035222169011831284,
- 0.051466673612594604,
- 0.039869144558906555,
- -0.08312720060348511,
- -0.04944803938269615,
- -0.08780378103256226,
- 0.025228304788470268,
- 0.014783591032028198,
- 0.029582226648926735,
- -0.01541093084961176,
- -0.02287164144217968,
- 0.007702839095145464,
- 0.01774022914469242,
- -0.06394438445568085,
- 0.09104940295219421,
- -0.04662581905722618,
- 0.03361651301383972,
- -0.020119553431868553,
- 0.07313898205757141,
- 0.004433965776115656,
- 0.03495466709136963,
- 0.023239603266119957,
- 0.05587446689605713,
- -0.11191722005605698,
- -0.05788714811205864,
- -0.028539501130580902,
- -1.1086741302790415e-8,
- -0.07111453264951706,
- 0.07925698906183243,
- 0.022729117423295975,
- -0.029130108654499054,
- 0.041411142796278,
- 0.0034127391409128904,
- 0.0324803851544857,
- 0.022766781970858574,
- 0.004744288045912981,
- 0.05666964873671532,
- 0.012510431930422783,
- 0.03682435676455498,
- -0.013994898647069931,
- 0.032216452062129974,
- -0.052718088030815125,
- -0.015974124893546104,
- -0.0025255924556404352,
- -0.06092709302902222,
- -0.03010708838701248,
- 0.049487266689538956,
- -0.0020397945772856474,
- 0.00856464821845293,
- 0.035139285027980804,
- -0.08653362095355988,
- -0.01107687596231699,
- -0.013718689791858196,
- 0.029934551566839218,
- 0.014475787989795208,
- 0.028886988759040833,
- -0.002632246818393469,
- 0.036358542740345,
- -0.015148390084505081,
- -0.006324046291410923,
- 0.002710314467549324,
- 0.008437537588179111,
- -0.02270989678800106,
- 0.03551514074206352,
- -0.01449460256844759,
- -0.0015240749344229698,
- -0.10361997038125992,
- -0.03288191556930542,
- -0.13553090393543243,
- 0.025983668863773346,
- -0.018247542902827263,
- 0.004239019006490707,
- -0.00628508860245347,
- 0.034208882600069046,
- 0.019719203934073448,
- 0.0478857047855854,
- -0.04209920018911362,
- -0.10176948457956314,
- -0.04288332536816597,
- -0.03135155141353607,
- 0.02551097609102726,
- 0.013500806875526905,
- -0.03444361686706543,
- -0.049127548933029175,
- -0.05314621329307556,
- -0.0763755589723587,
- 0.06422624737024307,
- 0.13634036481380463,
- -0.04813780263066292,
- -0.0727631151676178,
- -0.01274018082767725
- ]
- },
- {
- "keyword": "boulevard",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.1201145276427269,
- 0.03920365869998932,
- -0.04751794412732124,
- -0.01887867972254753,
- -0.07209168374538422,
- 0.05214798450469971,
- 0.056338049471378326,
- -0.010305101983249187,
- 0.004479199647903442,
- -0.034318357706069946,
- 0.059975024312734604,
- 0.019731786102056503,
- 0.01124977134168148,
- -0.010127735324203968,
- 0.05648569390177727,
- -0.012289082631468773,
- 0.047791190445423126,
- 0.027064597234129906,
- 0.017919618636369705,
- -0.06465089321136475,
- -0.043294426053762436,
- 0.042112138122320175,
- 0.005011162254959345,
- 0.10242971032857895,
- -0.05124850943684578,
- 0.06150291487574577,
- 0.05614316090941429,
- 0.03690718859434128,
- -0.03753418102860451,
- -0.09642617404460907,
- 0.058263085782527924,
- -0.06467942148447037,
- -0.006255151703953743,
- 0.0018675600877031684,
- 0.0028153760358691216,
- 0.009004959836602211,
- -0.010921759530901909,
- -0.03823241591453552,
- 0.09640026092529297,
- 0.013870143331587315,
- -0.031248999759554863,
- -0.038245800882577896,
- -0.017229821532964706,
- -0.016116565093398094,
- 0.03264835104346275,
- -0.04616091027855873,
- 0.022837121039628983,
- 0.033546339720487595,
- 0.06911266595125198,
- -0.09964872896671295,
- 0.062383729964494705,
- -0.025739718228578568,
- -0.00588600430637598,
- 0.01867908425629139,
- -0.0217677541077137,
- 0.06132151931524277,
- -0.014499321579933167,
- 0.058287885040044785,
- 0.05871918797492981,
- -0.02864242158830166,
- 0.007382763549685478,
- -0.06694196909666061,
- -0.019259784370660782,
- 0.04104181379079819,
- -0.009643914178013802,
- -0.01975797489285469,
- -0.011721320450305939,
- 0.03647617995738983,
- 0.0200637336820364,
- -0.029693404212594032,
- -0.018165962770581245,
- 0.012212400324642658,
- 0.017969684675335884,
- -0.040546320378780365,
- 0.04794023931026459,
- -0.03755908086895943,
- -0.032672394067049026,
- 0.018679430708289146,
- -0.05264274775981903,
- -0.0495779775083065,
- 0.07070914655923843,
- -0.08212397992610931,
- -0.018176719546318054,
- 0.1165730208158493,
- -0.008065234869718552,
- 0.015812240540981293,
- -0.008561492897570133,
- 0.008804025128483772,
- -0.0030028154142200947,
- -0.05692647024989128,
- -0.02590610459446907,
- 0.001209260313771665,
- -0.02300519123673439,
- -0.03268355876207352,
- -0.19337891042232513,
- -0.011081569828093052,
- -0.06530163437128067,
- -0.12681762874126434,
- 0.032153427600860596,
- 0.1949736773967743,
- -0.043753135949373245,
- 0.030501192435622215,
- 0.05922985076904297,
- -0.00912362989038229,
- 0.06496766954660416,
- -0.020663084462285042,
- 0.007257061544805765,
- 0.01692497916519642,
- -0.007989841513335705,
- 0.0578162781894207,
- 0.020509442314505577,
- -0.02369883470237255,
- -0.0018775718053802848,
- -0.004053243435919285,
- -0.015471686609089375,
- 0.028996283188462257,
- 0.053491827100515366,
- -0.015512409619987011,
- 0.014737976714968681,
- -0.07296837866306305,
- -0.04730147495865822,
- 0.007350284606218338,
- -0.04290907084941864,
- -0.009835891425609589,
- -0.07965204864740372,
- -0.05170087888836861,
- 0.021519845351576805,
- -5.0654920517832344e-33,
- -0.021179955452680588,
- -0.01075984537601471,
- 0.049772731959819794,
- 0.05752803757786751,
- 0.043510641902685165,
- -0.02408609353005886,
- -0.05207377299666405,
- 0.006021958775818348,
- -0.02657993882894516,
- -0.02199118211865425,
- 0.1403898000717163,
- -0.12060637772083282,
- 0.01128492970019579,
- -0.00407799519598484,
- 0.11017297208309174,
- 0.06064661964774132,
- 0.05316413938999176,
- 0.04548868164420128,
- -0.07982520759105682,
- -0.02310825139284134,
- -0.03240739181637764,
- 0.004207764286547899,
- -0.001789362751878798,
- 0.021273072808980942,
- -0.03273213282227516,
- -0.005022396799176931,
- 0.05668955296278,
- 0.04133669286966324,
- 0.04092347249388695,
- 0.02434781938791275,
- 0.020152127370238304,
- 0.08812957257032394,
- 0.013958223164081573,
- 0.0805162861943245,
- 0.06802817434072495,
- -0.047280553728342056,
- -0.051957856863737106,
- -0.025209100916981697,
- 0.009349294938147068,
- 0.012919529341161251,
- -0.0036405937280505896,
- -0.0200690645724535,
- -0.04353540018200874,
- 0.022219831123948097,
- 0.042520321905612946,
- 0.09015361964702606,
- 0.041579458862543106,
- 0.009041930548846722,
- 0.11276091635227203,
- -0.008740871213376522,
- 0.017485005781054497,
- -0.01064571738243103,
- -0.13098278641700745,
- 0.025941455736756325,
- -0.05830429121851921,
- -0.05090638995170593,
- -0.04055173322558403,
- -0.002587133552879095,
- 0.04430553317070007,
- -0.019014272838830948,
- 0.05714579299092293,
- 0.20285695791244507,
- -0.04147818684577942,
- 0.0059149619191884995,
- 0.020390037447214127,
- -0.09539135545492172,
- -0.01868944987654686,
- 0.027454474940896034,
- 0.07839751243591309,
- 0.026649702340364456,
- 0.05773252248764038,
- -0.03465823829174042,
- 0.12452544271945953,
- 0.02200063318014145,
- 0.046297043561935425,
- -0.009181694127619267,
- -0.06924258172512054,
- 0.0826287567615509,
- 0.007282304111868143,
- 0.007819829508662224,
- -0.07579923421144485,
- 0.007382245734333992,
- 0.022820115089416504,
- 0.063103087246418,
- 0.13815397024154663,
- -0.055641502141952515,
- 0.019439853727817535,
- -0.04794665053486824,
- -0.02634766325354576,
- -0.036693502217531204,
- -0.10372985899448395,
- 0.008679826743900776,
- -0.025411512702703476,
- 0.06070617213845253,
- -0.10850198566913605,
- 4.191424941896506e-33,
- 0.003957701381295919,
- -0.023327667266130447,
- 0.04723358899354935,
- 0.08808180689811707,
- -0.02515026554465294,
- -0.0003495437849778682,
- -0.031376298516988754,
- 0.01513831689953804,
- 0.039574556052684784,
- 0.04087867960333824,
- -0.12837223708629608,
- -0.005210577975958586,
- 0.036520298570394516,
- 0.011966093443334103,
- 0.13256314396858215,
- 0.02711360901594162,
- 0.08014179021120071,
- -0.05200052261352539,
- -0.0970970094203949,
- 0.04616142809391022,
- -0.05922878161072731,
- -0.09370395541191101,
- -0.017123257741332054,
- -0.028547771275043488,
- -0.05259351432323456,
- 0.05221773311495781,
- 0.05554185435175896,
- 0.06694541871547699,
- -0.01859762705862522,
- 0.013384755700826645,
- -0.056036628782749176,
- 0.004044252913445234,
- -0.04082430154085159,
- -0.020362552255392075,
- -0.03411364182829857,
- 0.04498915374279022,
- -0.0018323661061003804,
- 0.0021942544262856245,
- -0.05773434787988663,
- -0.033459361642599106,
- -0.04223733767867088,
- -0.05066808685660362,
- 0.029745733365416527,
- 0.05888612940907478,
- 0.06683938205242157,
- -0.03961241990327835,
- -0.023752382025122643,
- 0.05529681593179703,
- -0.03235330060124397,
- 0.05909096449613571,
- -0.01619087904691696,
- 0.07712387293577194,
- -0.023598559200763702,
- 0.08128774166107178,
- 0.04730816185474396,
- -0.0011080512776970863,
- -0.026217535138130188,
- 0.05428769439458847,
- -0.0235251784324646,
- -0.030403554439544678,
- -0.013073752634227276,
- 0.031409118324518204,
- -0.02199183590710163,
- 0.0890897884964943,
- -0.007870148867368698,
- -0.019281722605228424,
- -0.05244472622871399,
- -0.02940051257610321,
- -0.026053080335259438,
- 0.03288574516773224,
- -0.007412547245621681,
- 0.05804847180843353,
- -0.06418437510728836,
- -0.014684945344924927,
- -0.10012365132570267,
- 0.0017630335642024875,
- 0.02282034233212471,
- 0.009865865111351013,
- -0.032790135592222214,
- 0.06026685610413551,
- -0.04227723926305771,
- -0.008937387727200985,
- -0.05842297896742821,
- 0.025557462126016617,
- 0.029513059183955193,
- -0.007204547990113497,
- -0.08762352168560028,
- -0.025574300438165665,
- 0.01467987336218357,
- 0.00872712954878807,
- 0.05003787949681282,
- 0.05692479759454727,
- -0.10013046115636826,
- -0.08252780884504318,
- -0.03141210600733757,
- -1.0600773592273072e-8,
- -0.04579554870724678,
- 0.05380938947200775,
- -0.0431346520781517,
- 0.01920493133366108,
- 0.04099886491894722,
- -0.04452855512499809,
- 0.03296893835067749,
- 0.01641923002898693,
- -0.03743710368871689,
- 0.052726492285728455,
- -0.004067773465067148,
- 0.030909808352589607,
- -0.0076359775848686695,
- 0.0744704082608223,
- -0.06266584992408752,
- -0.0043760486878454685,
- 0.005444229580461979,
- -0.0384950116276741,
- -0.03556432947516441,
- 0.04112450033426285,
- -0.01772557757794857,
- -0.02413889765739441,
- -0.00952831469476223,
- -0.03047942742705345,
- -0.02596532553434372,
- -0.04492262750864029,
- 0.01789858750998974,
- 0.0027714725583791733,
- 0.03179839253425598,
- -0.051036227494478226,
- 0.06574540585279465,
- 0.04830523580312729,
- -0.03329292684793472,
- -0.06411786377429962,
- 0.015208895318210125,
- -0.049320023506879807,
- 0.057291943579912186,
- 0.026257308200001717,
- -0.00008138181874528527,
- 0.016145259141921997,
- 0.03509851172566414,
- -0.09806104004383087,
- 0.05416969582438469,
- 0.04073084890842438,
- 0.030900824815034866,
- -0.0034065537620335817,
- 0.06754958629608154,
- 0.041808146983385086,
- -0.013547106646001339,
- -0.01699913665652275,
- -0.0759422779083252,
- -0.03229588270187378,
- -0.03430568799376488,
- 0.01222925167530775,
- 0.02472211793065071,
- -0.04354715719819069,
- -0.024300310760736465,
- -0.016188155859708786,
- -0.06053480878472328,
- 0.020676225423812866,
- 0.098921038210392,
- 0.022387102246284485,
- -0.010851972736418247,
- -0.005390617996454239
- ]
- },
- {
- "keyword": "lane",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.01258012093603611,
- 0.025595257058739662,
- -0.0775880366563797,
- -0.018889065831899643,
- -0.11872100085020065,
- -0.03485163673758507,
- 0.09097815304994583,
- 0.008810357190668583,
- 0.018145060166716576,
- -0.07321223616600037,
- 0.0010226296726614237,
- -0.08442820608615875,
- 0.031162748113274574,
- 0.003502374980598688,
- -0.012882459908723831,
- 0.012311697006225586,
- 0.01689770817756653,
- 0.004482713527977467,
- -0.029047701507806778,
- -0.060021430253982544,
- -0.06391941010951996,
- 0.03909166902303696,
- -0.036760590970516205,
- 0.012797240167856216,
- -0.06408007442951202,
- 0.055433571338653564,
- 0.023252306506037712,
- 0.07895085215568542,
- -0.038416508585214615,
- -0.16229112446308136,
- 0.015250926837325096,
- 0.040585268288850784,
- -0.010150671936571598,
- -0.00905180349946022,
- -0.025711679831147194,
- -0.055141810327768326,
- -0.02701357938349247,
- 0.048766445368528366,
- 0.06407859921455383,
- -0.09148482978343964,
- -0.03294068202376366,
- -0.10203572362661362,
- 0.03141310065984726,
- -0.014237599447369576,
- 0.05198987200856209,
- -0.030375493690371513,
- 0.008141118101775646,
- -0.027579346671700478,
- 0.01097728032618761,
- -0.04970458894968033,
- -0.05246369168162346,
- 0.02751648612320423,
- -0.012462053447961807,
- -0.0022659767419099808,
- 0.04065472632646561,
- 0.09452083706855774,
- 0.004517171066254377,
- 0.036355409771203995,
- 0.007297626230865717,
- -0.08517398685216904,
- -0.009849775582551956,
- -0.04178906977176666,
- -0.013102184981107712,
- 0.040110740810632706,
- -0.09838464856147766,
- -0.05452435463666916,
- -0.0340857170522213,
- 0.010125220753252506,
- 0.017087198793888092,
- 0.013153214007616043,
- -0.01404812652617693,
- 0.005306866019964218,
- 0.0014275726862251759,
- -0.06666548550128937,
- 0.08269931375980377,
- 0.018415478989481926,
- 0.030487386509776115,
- -0.048777274787425995,
- 0.030816515907645226,
- 0.009982372634112835,
- 0.02199983410537243,
- -0.05296295881271362,
- -0.019502481445670128,
- 0.06313126534223557,
- -0.0032793995924293995,
- -0.026218842715024948,
- 0.018091658130288124,
- 0.0041539836674928665,
- 0.017088035121560097,
- 0.03912029415369034,
- 0.015271076001226902,
- 0.04251796007156372,
- 0.034857895225286484,
- 0.0015281406231224537,
- -0.08942566812038422,
- 0.03809093311429024,
- -0.004540842957794666,
- -0.08949367702007294,
- -0.016839059069752693,
- 0.2391640841960907,
- -0.024069033563137054,
- -0.002884553512558341,
- -0.049570728093385696,
- 0.045169930905103683,
- 0.01067637000232935,
- 0.014664712361991405,
- 0.017805950716137886,
- 0.038235798478126526,
- -0.007787288166582584,
- 0.009917507879436016,
- 0.05010617896914482,
- -0.020996103063225746,
- -0.07513078302145004,
- 0.02394676022231579,
- 0.007605636026710272,
- 0.014515887014567852,
- -0.03295118361711502,
- 0.019550658762454987,
- 0.07134298980236053,
- 0.0236421637237072,
- -0.031143736094236374,
- 0.02406095713376999,
- -0.09913100302219391,
- 0.008409768342971802,
- 0.00999654270708561,
- 0.04452640190720558,
- 0.015692606568336487,
- -5.473085167039262e-33,
- -0.050631213933229446,
- -0.02466052956879139,
- 0.03298478573560715,
- -0.05712771788239479,
- 0.08084716647863388,
- -0.037194572389125824,
- 0.01540721021592617,
- -0.03844735398888588,
- -0.01680542156100273,
- -0.07694505900144577,
- 0.012327450327575207,
- -0.061679620295763016,
- 0.011786523275077343,
- -0.07904592901468277,
- 0.05355929583311081,
- 0.05951051786541939,
- -0.015761833637952805,
- 0.054103147238492966,
- -0.10877399146556854,
- -0.03180084004998207,
- -0.025387607514858246,
- 0.10832710564136505,
- 0.060897551476955414,
- 0.00772419199347496,
- 0.006239025853574276,
- -0.03316985070705414,
- 0.002120697870850563,
- -0.0679483711719513,
- 0.0888797864317894,
- 0.04702029749751091,
- -0.009432151913642883,
- 0.005235937889665365,
- -0.009550654329359531,
- 0.06645892560482025,
- -0.022383196279406548,
- 0.12383051961660385,
- -0.09177199751138687,
- -0.0944751650094986,
- 0.01966629922389984,
- 0.008529470302164555,
- -0.016802258789539337,
- -0.005046796519309282,
- -0.02362176589667797,
- -0.04889924079179764,
- -0.05965019389986992,
- 0.0017343047074973583,
- -0.0020456777419894934,
- 0.0634370744228363,
- -0.024929359555244446,
- 0.059590138494968414,
- 0.01306766364723444,
- -0.05426126718521118,
- -0.0812593400478363,
- 0.03569145128130913,
- 0.004812141880393028,
- 0.007467242889106274,
- -0.002957445103675127,
- 0.017668262124061584,
- 0.027515258640050888,
- 0.024858124554157257,
- 0.03550649434328079,
- 0.05592950060963631,
- -0.014478228986263275,
- 0.028960896655917168,
- 0.024337297305464745,
- -0.06530624628067017,
- 0.02907988615334034,
- -0.02874757908284664,
- 0.03877532482147217,
- -0.0408216267824173,
- -0.02273939549922943,
- -0.039886754006147385,
- 0.04197346791625023,
- 0.11198386549949646,
- -0.008450198918581009,
- 0.03343122825026512,
- -0.032183509320020676,
- 0.02366333082318306,
- -0.020728403702378273,
- -0.03268011286854744,
- -0.11931334435939789,
- 0.08537688851356506,
- -0.049353938549757004,
- 0.020946476608514786,
- 0.0554218627512455,
- -0.03848246484994888,
- -0.029046986252069473,
- -0.04570433497428894,
- -0.012342620640993118,
- -0.006469182204455137,
- -0.07763845473527908,
- -0.024351615458726883,
- -0.03880219906568527,
- 0.06084794923663139,
- -0.08279633522033691,
- 4.1374422005449155e-33,
- -0.0392441563308239,
- -0.0014503390993922949,
- 0.06290340423583984,
- 0.14365331828594208,
- -0.0039003072306513786,
- -0.0028890930116176605,
- 0.06868254393339157,
- -0.009435067884624004,
- 0.11398985981941223,
- 0.06329542398452759,
- -0.0647544264793396,
- 0.03195489943027496,
- 0.07537603378295898,
- 0.010709164664149284,
- 0.0961448922753334,
- -0.07147378474473953,
- 0.09729959070682526,
- -0.04609045758843422,
- 0.004441492725163698,
- 0.058334577828645706,
- -0.028952807188034058,
- -0.04432852193713188,
- -0.01351829431951046,
- 0.052723295986652374,
- -0.02077471651136875,
- 0.019967924803495407,
- 0.06941031664609909,
- -0.031033208593726158,
- -0.030023599043488503,
- -0.0029091855976730585,
- -0.022673530504107475,
- -0.052854571491479874,
- 0.04681343212723732,
- -0.009873025119304657,
- -0.010764222592115402,
- 0.09734093397855759,
- 0.028626877814531326,
- 0.007049162872135639,
- -0.055604055523872375,
- 0.061822060495615005,
- 0.04643360525369644,
- -0.012912269681692123,
- -0.000046257369831437245,
- 0.11196575313806534,
- -0.004071375820785761,
- 0.00803140364587307,
- 0.053815774619579315,
- 0.09977085888385773,
- -0.013384230434894562,
- 0.04167371988296509,
- -0.017454570159316063,
- 0.06824840605258942,
- 0.03188856318593025,
- 0.0580177828669548,
- -0.01426838617771864,
- 0.059562768787145615,
- 0.06249658763408661,
- 0.07516829669475555,
- -0.024515707045793533,
- 0.0009151689591817558,
- -0.01693950966000557,
- 0.05601735785603523,
- -0.07491495460271835,
- 0.04341834411025047,
- 0.04634419456124306,
- -0.004397971089929342,
- -0.06297734379768372,
- -0.11524724215269089,
- -0.08540762215852737,
- -0.03464631736278534,
- -0.03496452793478966,
- 0.06568018347024918,
- -0.10176225751638412,
- -0.01928972825407982,
- -0.03332376480102539,
- -0.04325959458947182,
- -0.10891861468553543,
- -0.0407504178583622,
- 0.016697226092219353,
- -0.044128742069005966,
- -0.05910322442650795,
- 0.01783202588558197,
- 0.023416349664330482,
- 0.09998174011707306,
- -0.006649267394095659,
- -0.03624218329787254,
- 0.010295701213181019,
- 0.046846386045217514,
- 0.08484820276498795,
- 0.010054338723421097,
- 0.095530666410923,
- 0.009264187887310982,
- -0.10817471146583557,
- 0.016644854098558426,
- -0.04473525658249855,
- -1.1421479761963838e-8,
- 0.004539268556982279,
- 0.06397641450166702,
- -0.0610911026597023,
- 0.02487325295805931,
- 0.022918932139873505,
- 0.004608075134456158,
- 0.07004629820585251,
- 0.023000648245215416,
- -0.008311456069350243,
- 0.08359284698963165,
- 0.05359891429543495,
- 0.018084052950143814,
- -0.002045090077444911,
- 0.0005429377779364586,
- 0.006422813516110182,
- 0.02400120720267296,
- -0.017391398549079895,
- -0.06951450556516647,
- -0.04220488667488098,
- 0.0012741056270897388,
- -0.007150056306272745,
- -0.03166652098298073,
- -0.021287837997078896,
- 0.024140136316418648,
- 0.0065768808126449585,
- -0.08693552762269974,
- -0.05212538689374924,
- 0.0077774617820978165,
- 0.050638746470212936,
- -0.08528009802103043,
- 0.04823258891701698,
- 0.04045075550675392,
- 0.0354086309671402,
- -0.017253221943974495,
- 0.004092018585652113,
- -0.056180257350206375,
- 0.05251661688089371,
- 0.034073662012815475,
- 0.059032827615737915,
- 0.08168110251426697,
- -0.009841499850153923,
- -0.0020193951204419136,
- 0.022399427369236946,
- -0.07254913449287415,
- -0.02084563486278057,
- 0.053223080933094025,
- -0.06732425093650818,
- -0.01396062783896923,
- -0.04849560931324959,
- -0.03926457464694977,
- -0.04271363839507103,
- 0.011585235595703125,
- 0.020665787160396576,
- 0.027873223647475243,
- 0.0183993112295866,
- 0.05761144682765007,
- 0.01228459645062685,
- -0.0011478197993710637,
- -0.07894206792116165,
- 0.0236760713160038,
- 0.1315307915210724,
- 0.05070840194821358,
- 0.07961858808994293,
- -0.03200043737888336
- ]
- },
- {
- "keyword": "drive",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.05433550477027893,
- 0.022516615688800812,
- 0.04129229858517647,
- 0.0889802798628807,
- -0.05254620313644409,
- 0.004244315437972546,
- 0.07932011038064957,
- 0.0001868913823273033,
- 0.02588229440152645,
- -0.015136947855353355,
- -0.029693633317947388,
- -0.041517868638038635,
- 0.013897835277020931,
- -0.002340774517506361,
- -0.03706375136971474,
- -0.002098824130371213,
- 0.030987922102212906,
- -0.03350522369146347,
- -0.06971614807844162,
- 0.0250833909958601,
- -0.040912728756666183,
- 0.07286223769187927,
- 0.004314227495342493,
- -0.01969820074737072,
- -0.06244603917002678,
- 0.03467053174972534,
- -0.008607826195657253,
- 0.04449723660945892,
- -0.022533701732754707,
- -0.10182628035545349,
- -0.027958277612924576,
- -0.013746904209256172,
- -0.00977935828268528,
- 0.01621481403708458,
- -0.05254777520895004,
- -0.017519893124699593,
- 0.05695343390107155,
- -0.024983562529087067,
- 0.05596005544066429,
- -0.10902626812458038,
- 0.04579753801226616,
- -0.06967140734195709,
- 0.035128142684698105,
- 0.02515784651041031,
- 0.007664348464459181,
- 0.028729533776640892,
- 0.0661776140332222,
- -0.007718194741755724,
- 0.10376530885696411,
- -0.006573361344635487,
- -0.07687970250844955,
- 0.0018679759232327342,
- -0.004084769636392593,
- -0.007405945565551519,
- 0.000932661525439471,
- 0.023532679304480553,
- -0.0018558228621259332,
- 0.0845259353518486,
- -0.034164298325777054,
- 0.021270889788866043,
- 0.04284696653485298,
- -0.05027695745229721,
- -0.016662610694766045,
- 0.012981467880308628,
- 0.01491022389382124,
- -0.0028819360304623842,
- -0.040083788335323334,
- -0.010232627391815186,
- -0.04145825654268265,
- 0.017691582441329956,
- 0.026975175365805626,
- 0.0449146144092083,
- -0.03782825917005539,
- -0.03082200139760971,
- 0.0741545632481575,
- -0.05638698488473892,
- 0.05561850219964981,
- -0.014672167599201202,
- 0.07377789914608002,
- -0.01786900870501995,
- -0.04325564205646515,
- 0.061553191393613815,
- -0.055813319981098175,
- 0.061075590550899506,
- 0.005928630009293556,
- -0.024648243561387062,
- -0.022611364722251892,
- 0.08643412590026855,
- -0.0736270472407341,
- 0.05593482032418251,
- -0.004069555085152388,
- -0.05230855569243431,
- 0.048185255378484726,
- 0.005891487002372742,
- -0.08492112904787064,
- 0.013337071985006332,
- 0.023090772330760956,
- 0.0208534374833107,
- 0.019654756411910057,
- 0.22869108617305756,
- -0.0013276247773319483,
- 0.08783793449401855,
- -0.005142086185514927,
- -0.055119309574365616,
- -0.08820319920778275,
- 0.03501090034842491,
- -0.0383148230612278,
- 0.09878978133201599,
- -0.04520329460501671,
- -0.02467603236436844,
- 0.04970620200037956,
- -0.015329372137784958,
- -0.04677079617977142,
- 0.04436052590608597,
- -0.003289091633632779,
- -0.010751648806035519,
- -0.08028925210237503,
- 0.06407328695058823,
- 0.014697040431201458,
- -0.039622459560632706,
- -0.05103588104248047,
- -0.01713797077536583,
- 0.02773275226354599,
- 0.0166728887706995,
- -0.020956523716449738,
- -0.14449092745780945,
- 0.07266409695148468,
- -4.234038448823737e-33,
- 0.016097160056233406,
- -0.08280031383037567,
- 0.04127597063779831,
- 0.035512689501047134,
- 0.0024397566448897123,
- 0.026313144713640213,
- 0.010143781080842018,
- -0.011086573824286461,
- -0.06287912279367447,
- 0.009522335603833199,
- 0.09533368796110153,
- 0.007467573508620262,
- -0.0368364043533802,
- -0.028034232556819916,
- 0.14583221077919006,
- 0.007722812704741955,
- -0.03227079287171364,
- 0.026878071948885918,
- -0.0709235891699791,
- -0.06267451494932175,
- 0.042138051241636276,
- 0.04309136047959328,
- -0.018318161368370056,
- 0.0488412044942379,
- 0.0020432353485375643,
- -0.0525934062898159,
- 0.01092685479670763,
- -0.027531862258911133,
- 0.0791827067732811,
- 0.03129509836435318,
- -0.04720533266663551,
- 0.04661617428064346,
- -0.05548552796244621,
- -0.005228676833212376,
- 0.02560638077557087,
- 0.005580776836723089,
- -0.05675235390663147,
- -0.02749345637857914,
- 0.011339305900037289,
- -0.036867864429950714,
- -0.02866436168551445,
- -0.04012267664074898,
- -0.05716370418667793,
- -0.007668732199817896,
- -0.053976304829120636,
- 0.008149011060595512,
- 0.08334306627511978,
- 0.02144855074584484,
- -0.05625419691205025,
- 0.09490527212619781,
- -0.07122769951820374,
- -0.033567532896995544,
- 0.019346466287970543,
- -0.025164097547531128,
- -0.046332161873579025,
- -0.010041163302958012,
- 0.04915248975157738,
- -0.0955943912267685,
- 0.024843987077474594,
- -0.045439012348651886,
- 0.03256506100296974,
- 0.048732198774814606,
- 0.054687175899744034,
- 0.0037360929418355227,
- -0.05206078663468361,
- -0.0054712616838514805,
- 0.030404159799218178,
- -0.03752800077199936,
- 0.05667268857359886,
- 0.026764005422592163,
- 0.013873616233468056,
- -0.061572592705488205,
- 0.004791028797626495,
- 0.015496155247092247,
- 0.04458386078476906,
- 0.014753484167158604,
- -0.042637743055820465,
- -0.013066284358501434,
- -0.0772586464881897,
- -0.019693350419402122,
- -0.05231878161430359,
- -0.04998474195599556,
- -0.048252906650304794,
- 0.0857100859284401,
- 0.09101156890392303,
- 0.046800535172224045,
- -0.07413870096206665,
- -0.0733412429690361,
- -0.014242909848690033,
- -0.03719799965620041,
- -0.043438542634248734,
- -0.03873772174119949,
- -0.010997534729540348,
- -0.0017062743427231908,
- -0.04789860174059868,
- 3.99507661034889e-33,
- -0.01170138269662857,
- -0.040331415832042694,
- 0.052645452320575714,
- 0.03297605738043785,
- 0.0003775414661504328,
- 0.0010857614688575268,
- 0.01784653216600418,
- -0.062468793243169785,
- 0.0077840304002165794,
- 0.04764309152960777,
- -0.13528740406036377,
- -0.05738386884331703,
- 0.0958603248000145,
- 0.019776275381445885,
- 0.0754651427268982,
- -0.003463505767285824,
- 0.14322344958782196,
- -0.05624992027878761,
- -0.04857584834098816,
- 0.011173986829817295,
- -0.05576474592089653,
- -0.0023632748052477837,
- 0.08430704474449158,
- 0.0013777088606730103,
- -0.05189304053783417,
- 0.04729973524808884,
- 0.01987796649336815,
- 0.0958302766084671,
- -0.06486444175243378,
- 0.02781938761472702,
- 0.04195813462138176,
- 0.0005675555439665914,
- -0.02936411462724209,
- -0.07461638003587723,
- -0.0520925410091877,
- 0.15857098996639252,
- 0.0488663874566555,
- 0.017114073038101196,
- -0.08441552519798279,
- -0.026234086602926254,
- 0.07162367552518845,
- -0.06192125752568245,
- 0.08079375326633453,
- 0.1562846451997757,
- 0.007286691106855869,
- 0.056677818298339844,
- 0.01320353802293539,
- 0.042488258332014084,
- 0.02257196046411991,
- 0.0861024409532547,
- 0.029036998748779297,
- 0.0070348093286156654,
- 0.03526835888624191,
- 0.02277650497853756,
- -0.012520777061581612,
- -0.055529817938804626,
- 0.0007313452078960836,
- 0.003739965846762061,
- 0.02277071215212345,
- 0.0038521999958902597,
- 0.0055541167967021465,
- 0.09171297401189804,
- -0.008334782905876637,
- -0.004753416869789362,
- -0.09284865111112595,
- -0.03889443352818489,
- -0.03909745439887047,
- -0.09451644867658615,
- -0.00595001969486475,
- 0.02153777703642845,
- -0.04569408297538757,
- 0.009558801539242268,
- 0.0010249944170936942,
- 0.02238762192428112,
- -0.07585980743169785,
- -0.050134990364313126,
- -0.03577221557497978,
- -0.0393432192504406,
- -0.003668074030429125,
- -0.02618849091231823,
- 0.03432915359735489,
- -0.01880563423037529,
- -0.028273144736886024,
- 0.06711866706609726,
- -0.010172775946557522,
- -0.03105924278497696,
- -0.03354048356413841,
- -0.04011080786585808,
- 0.01007875893265009,
- -0.030789494514465332,
- 0.017385436221957207,
- 0.06682927906513214,
- -0.05947614461183548,
- 0.04025442898273468,
- -0.03540859743952751,
- -1.2114555580922115e-8,
- -0.03848966583609581,
- 0.020572038367390633,
- 0.028991876170039177,
- -0.02139095775783062,
- 0.015264005400240421,
- -0.03266952186822891,
- 0.031942203640937805,
- 0.09509706497192383,
- 0.03640439733862877,
- 0.07210904359817505,
- 0.06587051600217819,
- -0.04085831344127655,
- 0.041370026767253876,
- 0.010252472944557667,
- 0.030536722391843796,
- 0.01214923057705164,
- 0.035627398639917374,
- 0.015484410338103771,
- -0.06547222286462784,
- -0.010019495151937008,
- 0.045678284019231796,
- -0.04712661728262901,
- 0.04906214773654938,
- 0.10317915678024292,
- 0.03293321654200554,
- -0.07200837135314941,
- 0.014651989564299583,
- 0.03718129172921181,
- 0.019565850496292114,
- -0.05834266543388367,
- -0.036291033029556274,
- 0.07140203565359116,
- -0.009702414274215698,
- 0.0023774621076881886,
- 0.014051917940378189,
- -0.04759996011853218,
- 0.0009442078298889101,
- 0.055556029081344604,
- 0.06077326089143753,
- 0.05835461616516113,
- -0.027519389986991882,
- 0.025782819837331772,
- 0.09893657267093658,
- 0.009459251537919044,
- -0.10887649655342102,
- -0.020230906084179878,
- -0.08336008340120316,
- 0.027290474623441696,
- -0.06958132237195969,
- 0.02887474000453949,
- -0.03143228590488434,
- -0.018331293016672134,
- -0.004894757643342018,
- 0.06307081878185272,
- 0.008746156468987465,
- 0.01480065193027258,
- -0.0041070240549743176,
- 0.04611518234014511,
- -0.11812476813793182,
- 0.0714305192232132,
- 0.14282439649105072,
- 0.040067631751298904,
- 0.03375670686364174,
- 0.03261128440499306
- ]
- },
- {
- "keyword": "address",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03493328392505646,
- 0.03385227546095848,
- -0.02062336541712284,
- 0.0044856322929263115,
- -0.040271975100040436,
- -0.005174781195819378,
- 0.0645466074347496,
- -0.02731321193277836,
- 0.021001949906349182,
- -0.07788992673158646,
- -0.01543003972619772,
- -0.05889176204800606,
- 0.0028278925456106663,
- -0.07545490562915802,
- -0.028927728533744812,
- 0.008860175497829914,
- -0.06070701405405998,
- -0.028087597340345383,
- -0.008825482800602913,
- 0.03814118355512619,
- 0.035302046686410904,
- 0.07832790166139603,
- -0.025088369846343994,
- -0.004285003524273634,
- -0.027044229209423065,
- -0.012782331556081772,
- 0.0017273793928325176,
- 0.07950245589017868,
- -0.01676112599670887,
- -0.13576368987560272,
- 0.0836264044046402,
- -0.03571441397070885,
- 0.048713281750679016,
- 0.0072995806112885475,
- 0.05012458562850952,
- -0.027255265042185783,
- -0.012807972729206085,
- 0.016701072454452515,
- -0.004284331575036049,
- -0.02473139576613903,
- -0.004428285639733076,
- -0.06075987592339516,
- 0.04176909849047661,
- -0.04235022887587547,
- 0.06730881333351135,
- 0.0682639554142952,
- 0.029247814789414406,
- 0.020526139065623283,
- 0.07686630636453629,
- 0.018786489963531494,
- -0.0039701820351183414,
- 0.013031193986535072,
- -0.02182449959218502,
- -0.00010954549361485988,
- 0.05716114863753319,
- 0.07621166855096817,
- -0.0022352554369717836,
- 0.0641016736626625,
- -0.018155695870518684,
- 0.032917171716690063,
- 0.08925946056842804,
- 0.00359939387999475,
- -0.0018573739798739552,
- 0.028849441558122635,
- 0.041481126099824905,
- -0.06520677357912064,
- -0.026799922809004784,
- 0.01975281350314617,
- -0.04601065069437027,
- -0.07208661735057831,
- -0.04901372641324997,
- 0.0569387823343277,
- -0.01787530444562435,
- -0.0008557156543247402,
- 0.02136165276169777,
- -0.035531122237443924,
- -0.04476151242852211,
- -0.03143572062253952,
- 0.042987409979104996,
- 0.02258552983403206,
- -0.004848601296544075,
- -0.05200837552547455,
- -0.03385722637176514,
- 0.03632526099681854,
- -0.008122810162603855,
- 0.007043647579848766,
- -0.018003255128860474,
- 0.026988914236426353,
- 0.043454647064208984,
- 0.04405733570456505,
- -0.028448959812521935,
- -0.005299384705722332,
- 0.005578566808253527,
- -0.010865869000554085,
- -0.051055315881967545,
- 0.03874558210372925,
- 0.103019118309021,
- -0.08565356582403183,
- -0.15358670055866241,
- 0.2285660207271576,
- 0.04854072257876396,
- 0.061269260942935944,
- -0.04882834106683731,
- 0.040953971445560455,
- 0.005370500031858683,
- -0.0072936504147946835,
- -0.03573988750576973,
- 0.10132128745317459,
- -0.05762990191578865,
- 0.012132283300161362,
- 0.01346923504024744,
- -0.03123633749783039,
- -0.06390149146318436,
- 0.012562138959765434,
- 0.00887195486575365,
- -0.017096128314733505,
- 0.028185192495584488,
- 0.02567327208817005,
- 0.05055119842290878,
- -0.09767485409975052,
- -0.03881469741463661,
- -0.0363398902118206,
- -0.07537093758583069,
- -0.0612756572663784,
- -0.12234731018543243,
- -0.10410862416028976,
- 0.03366520255804062,
- -3.999452388069826e-33,
- 0.03913388028740883,
- 0.044741082936525345,
- 0.017111316323280334,
- 0.06916544586420059,
- -0.015348737128078938,
- -0.015071406029164791,
- 0.008277542889118195,
- 0.006268272176384926,
- -0.0380362868309021,
- 0.0658031776547432,
- -0.013650409877300262,
- -0.05007520690560341,
- 0.08118577301502228,
- -0.00125163106713444,
- -0.01739119552075863,
- 0.04953446984291077,
- 0.09083019942045212,
- 0.0863947793841362,
- -0.026392895728349686,
- -0.028652822598814964,
- -0.008136770687997341,
- 0.04775182902812958,
- -0.040272556245326996,
- 0.07394036650657654,
- 0.07289442420005798,
- 0.057447806000709534,
- -0.044137727469205856,
- 0.024989960715174675,
- -0.003746302565559745,
- 0.02367086336016655,
- 0.020171402022242546,
- -0.007334141526371241,
- -0.03649260103702545,
- -0.041354816406965256,
- 0.04195290058851242,
- -0.027565406635403633,
- -0.03885940834879875,
- -0.058925826102495193,
- -0.008013099431991577,
- -0.08133012801408768,
- 0.02220964804291725,
- 0.02796601690351963,
- -0.049851469695568085,
- 0.02207203209400177,
- -0.012031647376716137,
- 0.019871830940246582,
- 0.07205820828676224,
- 0.04908343032002449,
- 0.13077063858509064,
- 0.08868209272623062,
- -0.03375055268406868,
- -0.0028742123395204544,
- -0.18640439212322235,
- 0.0506579652428627,
- -0.015367556363344193,
- -0.01469021663069725,
- -0.020648499950766563,
- 0.02910742349922657,
- 0.04433843865990639,
- -0.042547304183244705,
- 0.022992627695202827,
- 0.08459039032459259,
- -0.06177318096160889,
- 0.004008573479950428,
- 0.016219008713960648,
- -0.10396867990493774,
- 0.02293744869530201,
- -0.10126464813947678,
- 0.011427660472691059,
- -0.017172742635011673,
- -0.06335121393203735,
- -0.011589431203901768,
- 0.1033826544880867,
- 0.0602327398955822,
- -0.055346179753541946,
- -0.013324211351573467,
- -0.05291318893432617,
- 0.02335491217672825,
- -0.08097673952579498,
- 0.017371950671076775,
- -0.045120108872652054,
- 0.060618266463279724,
- -0.09340547025203705,
- 0.05535711720585823,
- 0.007794446311891079,
- 0.0005508027388714254,
- 0.0006977994344197214,
- -0.01953638345003128,
- 0.03507538139820099,
- 0.02576897107064724,
- -0.04357491433620453,
- -0.028199318796396255,
- 0.0020794060546904802,
- 0.026169177144765854,
- -0.049422845244407654,
- 2.7565711705477197e-33,
- 0.010966655798256397,
- -0.04176913946866989,
- -0.06280843913555145,
- -0.013362964615225792,
- -0.04038003459572792,
- -0.039729177951812744,
- 0.13342908024787903,
- 0.022720519453287125,
- -0.018834475427865982,
- -0.003180896630510688,
- -0.09536492079496384,
- 0.029844820499420166,
- 0.10018086433410645,
- 0.0498146153986454,
- -0.010545621626079082,
- 0.07872256636619568,
- 0.04692623391747475,
- 0.02479318529367447,
- -0.06565786898136139,
- -0.02516503818333149,
- -0.07616393268108368,
- -0.0115360664203763,
- 0.04325750097632408,
- -0.09001630544662476,
- -0.02314755879342556,
- 0.04536154121160507,
- 0.11329099535942078,
- 0.02886258065700531,
- -0.039261989295482635,
- -0.05114319548010826,
- 0.04091848433017731,
- -0.01341319177299738,
- -0.017008101567626,
- 0.13364677131175995,
- -0.02815619856119156,
- 0.08091863989830017,
- 0.06862226873636246,
- 0.039819199591875076,
- 0.07564355432987213,
- 0.0396185927093029,
- 0.08545047044754028,
- 0.05403653904795647,
- 0.01903606206178665,
- 0.15897464752197266,
- 0.019001584500074387,
- 0.016216035932302475,
- -0.0033853105269372463,
- -0.014759643003344536,
- 0.03925282135605812,
- 0.003582545556128025,
- -0.005862424615770578,
- -0.008432921953499317,
- 0.005793467629700899,
- -0.005364525597542524,
- 0.009123839437961578,
- 0.08606871217489243,
- 0.0008139699348248541,
- 0.02052825689315796,
- 0.038868121802806854,
- -0.01804507151246071,
- 0.03158356249332428,
- 0.024714183062314987,
- -0.050225697457790375,
- 0.09308764338493347,
- -0.041229698807001114,
- 0.0645575001835823,
- -0.041433755308389664,
- -0.06963442265987396,
- 0.01051497645676136,
- -0.03772241622209549,
- 0.06276632845401764,
- -0.061055757105350494,
- -0.006953168194741011,
- 0.0007733426173217595,
- -0.01667024940252304,
- 0.010503849014639854,
- 0.0213368721306324,
- 0.03924902155995369,
- -0.07090737670660019,
- -0.04025283083319664,
- 0.02592390403151512,
- 0.026160577312111855,
- -0.05237036198377609,
- -0.028728269040584564,
- -0.011942006647586823,
- 0.0028348928317427635,
- 0.05778709426522255,
- 0.04848993197083473,
- 0.011473910883069038,
- -0.022172586992383003,
- -0.051066651940345764,
- 0.04905262216925621,
- -0.0642968937754631,
- -0.09518380463123322,
- -0.08217404037714005,
- -1.2832150453334634e-8,
- -0.03929133340716362,
- 0.02245401218533516,
- 0.06899803131818771,
- 0.013896627351641655,
- 0.039457689970731735,
- 0.07058631628751755,
- 0.05123855918645859,
- 0.005910893902182579,
- 0.013995356857776642,
- 0.08048762381076813,
- -0.047545820474624634,
- 0.008660499937832355,
- -0.07332020252943039,
- -0.002621112857013941,
- 0.02096235379576683,
- -0.019312622025609016,
- -0.02147718146443367,
- -0.05192369222640991,
- -0.03715382143855095,
- -0.009194234386086464,
- -0.005572501104325056,
- 0.030811581760644913,
- 0.04967910051345825,
- -0.028261419385671616,
- -0.02372635528445244,
- -0.06552953273057938,
- 0.04986318200826645,
- 0.05434825271368027,
- 0.01967187225818634,
- -0.029885098338127136,
- 0.036867398768663406,
- 0.06234801560640335,
- -0.022925974801182747,
- -0.013862855732440948,
- 0.00041402564966119826,
- -0.001191633869893849,
- -0.07509898394346237,
- -0.024386407807469368,
- 0.0015578371239826083,
- -0.018794866278767586,
- -0.028098013252019882,
- -0.08889658004045486,
- -0.0032830843701958656,
- -0.025038987398147583,
- 0.02452220395207405,
- 0.013217641972005367,
- -0.020725306123495102,
- -0.07872585207223892,
- -0.000010147253306058701,
- -0.06789097934961319,
- -0.10249852389097214,
- -0.03956815227866173,
- 0.01466087531298399,
- 0.039510328322649,
- -0.02456674352288246,
- 0.04103868827223778,
- -0.07447446137666702,
- -0.027856172993779182,
- -0.0491989329457283,
- 0.07054851949214935,
- 0.06588564813137054,
- 0.04369332641363144,
- -0.05305862799286842,
- -0.015603743493556976
- ]
- },
- {
- "keyword": "building",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.012861278839409351,
- 0.038602739572525024,
- -0.01448727585375309,
- 0.03647987172007561,
- -0.06079751253128052,
- -0.04223000630736351,
- 0.0004428724350873381,
- -0.015670595690608025,
- -0.02614416927099228,
- 0.025627190247178078,
- -0.012983804568648338,
- -0.09059532731771469,
- 0.017485544085502625,
- 0.03524047136306763,
- 0.016947096213698387,
- 0.011046347208321095,
- -0.042548585683107376,
- 0.01362162921577692,
- -0.05368797108530998,
- -0.028383607044816017,
- -0.05696660280227661,
- -0.022430848330259323,
- -0.002982454840093851,
- 0.003328113816678524,
- 0.0695764496922493,
- 0.08885186165571213,
- -0.011249447241425514,
- 0.04404823109507561,
- 0.1105627492070198,
- -0.09358982741832733,
- 0.005271562375128269,
- -0.01694919355213642,
- 0.0945129320025444,
- -0.015655361115932465,
- 0.041794102638959885,
- 0.08976691961288452,
- 0.04983129724860191,
- -0.006663397420197725,
- 0.018797751516103745,
- -0.024766476824879646,
- -0.0702022835612297,
- -0.06530822068452835,
- 0.0551864318549633,
- -0.022269975394010544,
- -0.01155422069132328,
- 0.031360551714897156,
- 0.001704726368188858,
- -0.048797592520713806,
- 0.053927112370729446,
- -0.042782966047525406,
- -0.000548341020476073,
- -0.02049158327281475,
- -0.0842490941286087,
- -0.04120321199297905,
- 0.007087124977260828,
- 0.1010078489780426,
- -0.04435736685991287,
- -0.01793704554438591,
- -0.007820389233529568,
- -0.07199341803789139,
- 0.12023793905973434,
- 0.023676516488194466,
- -0.06902492791414261,
- 0.00828554481267929,
- 0.05240331590175629,
- 0.0015004019951447845,
- -0.005537192802876234,
- 0.05405085161328316,
- 0.010022959671914577,
- -0.0230006854981184,
- 0.10781113058328629,
- -0.03728950768709183,
- 0.022372063249349594,
- 0.025532053783535957,
- 0.08977697789669037,
- -0.0016757288249209523,
- 0.03364620730280876,
- -0.021520275622606277,
- 0.08662546426057816,
- -0.0370880626142025,
- 0.05596530809998512,
- -0.018459627404808998,
- -0.06383400410413742,
- 0.05836302414536476,
- 0.0014568391488865018,
- 0.012558056972920895,
- 0.06961756944656372,
- 0.1488325446844101,
- 0.03485351800918579,
- -0.02551809512078762,
- -0.020964372903108597,
- 0.015303895808756351,
- -0.05137478932738304,
- 0.06207474321126938,
- -0.03573096916079521,
- 0.005356577690690756,
- -0.06954796612262726,
- -0.04628019407391548,
- -0.028107019141316414,
- 0.21587997674942017,
- -0.045236777514219284,
- 0.02242419496178627,
- 0.0902736708521843,
- -0.04085291922092438,
- -0.013814451172947884,
- -0.03527609258890152,
- -0.07814250141382217,
- 0.0738004818558693,
- -0.05433547869324684,
- -0.029805997386574745,
- -0.033628009259700775,
- -0.03508191183209419,
- -0.03477924317121506,
- 0.02186649665236473,
- 0.003439929336309433,
- 0.006472550332546234,
- 0.021736398339271545,
- -0.03964594006538391,
- 0.00977261271327734,
- 0.014463534578680992,
- 0.09628394991159439,
- 0.034118957817554474,
- -0.020774176344275475,
- 0.01585824228823185,
- -0.05550459027290344,
- -0.09045983105897903,
- -0.01219639927148819,
- -6.07733701781992e-33,
- 0.03917762637138367,
- -0.007753697223961353,
- 0.01636810041964054,
- 0.1321887969970703,
- 0.10795476287603378,
- -0.006740090437233448,
- 0.0020659894216805696,
- 0.05332401394844055,
- -0.05458734557032585,
- 0.059023547917604446,
- 0.020251672714948654,
- -0.06349983811378479,
- -0.00941538903862238,
- 0.08428933471441269,
- 0.12621983885765076,
- -0.11559197306632996,
- 0.028007956221699715,
- 0.0021163662895560265,
- -0.08353971689939499,
- 0.015550745651125908,
- -0.06998772919178009,
- -0.03779282420873642,
- -0.00809514056891203,
- 0.0301035288721323,
- 0.07844599336385727,
- -0.03686169162392616,
- 0.08547428250312805,
- -0.007604737766087055,
- -0.1394815593957901,
- -0.0018380272667855024,
- 0.00942747201770544,
- -0.009647113271057606,
- -0.029564419761300087,
- 0.01466568373143673,
- -0.032678600400686264,
- -0.014445026405155659,
- 0.01081156451255083,
- -0.057642485946416855,
- -0.00018926688062492758,
- -0.036170609295368195,
- -0.004194333218038082,
- -0.003860126482322812,
- 0.02311776392161846,
- 0.015854494646191597,
- 0.06155424192547798,
- 0.0820775032043457,
- 0.03597487136721611,
- -0.01202284637838602,
- -0.024411886930465698,
- 0.01156783290207386,
- 0.019469499588012695,
- 0.02577952668070793,
- -0.12607814371585846,
- 0.059604231268167496,
- 0.03303198516368866,
- -0.031771838665008545,
- -0.004085902590304613,
- -0.02445940673351288,
- 0.047068532556295395,
- -0.03246602788567543,
- 0.020819922909140587,
- 0.11399471014738083,
- -0.1155523806810379,
- 0.1038360521197319,
- -0.038148246705532074,
- -0.034157589077949524,
- -0.011966990306973457,
- 0.035279419273138046,
- 0.10985542088747025,
- -0.05635816976428032,
- -0.018483949825167656,
- -0.04972725734114647,
- 0.06419248878955841,
- 0.0022985211107879877,
- -0.034279715269804,
- 0.015708256512880325,
- -0.09368792921304703,
- 0.054724231362342834,
- -0.01962422765791416,
- 0.0676238164305687,
- -0.041259508579969406,
- 0.05896083638072014,
- 0.024133509024977684,
- 0.0327603742480278,
- 0.037392958998680115,
- 0.025854073464870453,
- -0.0005865241400897503,
- -0.033217284828424454,
- -0.04118512198328972,
- 0.07318525016307831,
- -0.11740858852863312,
- -0.033922165632247925,
- 0.016236944124102592,
- 0.003224268788471818,
- -0.03682531788945198,
- 4.2516308238097464e-33,
- 0.0007734523387625813,
- 0.002709442749619484,
- -0.07474168390035629,
- -0.0430462546646595,
- 0.006367079447954893,
- -0.02477898634970188,
- -0.05519620701670647,
- -0.123289555311203,
- 0.026399657130241394,
- 0.03043784201145172,
- -0.03884357213973999,
- -0.0005713872378692031,
- 0.11871363967657089,
- -0.0034485766664147377,
- -0.029109464958310127,
- -0.005928875412791967,
- 0.11578111350536346,
- -0.030315885320305824,
- -0.031070999801158905,
- 0.042490482330322266,
- -0.017670659348368645,
- -0.02449619583785534,
- -0.05090160667896271,
- -0.022147467359900475,
- -0.006164473947137594,
- 0.017725395038723946,
- -0.00748974597081542,
- -0.029319118708372116,
- 0.03730965405702591,
- 0.057539310306310654,
- -0.05503673851490021,
- -0.048324599862098694,
- -0.023609882220625877,
- 0.08451889455318451,
- -0.05611236020922661,
- 0.058384284377098083,
- 0.0469951368868351,
- -0.02748812735080719,
- -0.02935684472322464,
- -0.06980311125516891,
- 0.08999180793762207,
- 0.02362382411956787,
- -0.009863552637398243,
- 0.10699436068534851,
- -0.008743708953261375,
- -0.053337402641773224,
- 0.0037336719688028097,
- -0.0075350250117480755,
- -0.06415589153766632,
- -0.028795624151825905,
- 0.012033911421895027,
- 0.05014040693640709,
- -0.03985348343849182,
- -0.11314301192760468,
- 0.0404343344271183,
- -0.013643298298120499,
- 0.008062545210123062,
- -0.02496301755309105,
- -0.02562621794641018,
- 0.054081786423921585,
- 0.009887820109724998,
- -0.009106636047363281,
- -0.0049124304205179214,
- 0.02595333755016327,
- -0.047998398542404175,
- 0.03482741117477417,
- -0.026369018480181694,
- 0.01617448218166828,
- -0.050241462886333466,
- 0.009404273703694344,
- -0.015214145183563232,
- 0.042960166931152344,
- -0.09059128910303116,
- 0.010948373936116695,
- -0.08033165335655212,
- -0.0689532682299614,
- -0.00589004997164011,
- 0.06019715964794159,
- 0.011071422137320042,
- -0.031484439969062805,
- 0.00324276858009398,
- -0.035353243350982666,
- 0.006429704371839762,
- 0.06247647479176521,
- 0.007127133663743734,
- -0.05027322471141815,
- 0.053462233394384384,
- 0.037004560232162476,
- 0.004165099933743477,
- -0.0056561860255897045,
- 0.018654929473996162,
- 0.0713995173573494,
- -0.028910871595144272,
- -0.011713464744389057,
- -0.022021349519491196,
- -1.2854029840525527e-8,
- -0.013766744174063206,
- 0.03546586632728577,
- -0.0742572546005249,
- -0.053950514644384384,
- 0.017963066697120667,
- -0.029337212443351746,
- 0.10020452737808228,
- 0.018731266260147095,
- 0.04100200533866882,
- -0.0007642465061508119,
- -0.01097829919308424,
- 0.0009617229807190597,
- -0.014046289958059788,
- 0.1246294230222702,
- -0.020092517137527466,
- -0.05373084172606468,
- -0.04572772979736328,
- 0.039177507162094116,
- -0.07071704417467117,
- -0.046453021466732025,
- 0.028632698580622673,
- 0.0181885939091444,
- 0.03138290345668793,
- 0.06741347163915634,
- -0.062351077795028687,
- -0.028292709961533546,
- 0.0076236845925450325,
- -0.0405910462141037,
- 0.05714021250605583,
- 0.05073842778801918,
- 0.04444188252091408,
- 0.106904037296772,
- -0.06376048922538757,
- 0.0009241580264642835,
- 0.019493654370307922,
- -0.03070797584950924,
- 0.05359099432826042,
- 0.023732904344797134,
- -0.0014451489550992846,
- -0.07970446348190308,
- -0.031408246606588364,
- -0.04941779747605324,
- -0.010618811473250389,
- -0.016816982999444008,
- 0.023688891902565956,
- 0.043124642223119736,
- -0.09676127880811691,
- -0.012261472642421722,
- -0.034157030284404755,
- -0.08418333530426025,
- 0.004834678024053574,
- -0.035580553114414215,
- 0.034629303961992264,
- 0.007747357245534658,
- 0.06082529202103615,
- 0.013994494453072548,
- -0.024003423750400543,
- 0.011970795691013336,
- 0.008657503873109818,
- -0.025610219687223434,
- 0.08105899393558502,
- -0.012449435889720917,
- 0.03446066379547119,
- 0.07047221064567566
- ]
- },
- {
- "keyword": "structure",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04250144585967064,
- 0.024256456643342972,
- -0.026263665407896042,
- 0.04593770205974579,
- -0.03763933107256889,
- -0.038228657096624374,
- 0.05188713222742081,
- -0.022133614867925644,
- 0.07458668947219849,
- -0.02141416445374489,
- 0.04996790736913681,
- -0.043415311723947525,
- 0.010612119920551777,
- 0.044611163437366486,
- 0.02439119666814804,
- -0.046563126146793365,
- -0.06598832458257675,
- 0.07554280757904053,
- -0.05804457515478134,
- 0.020662037655711174,
- -0.0018429287010803819,
- -0.0055381194688379765,
- -0.0007340857409872115,
- 0.04242919012904167,
- -0.05640699714422226,
- 0.12464220076799393,
- -0.012342085130512714,
- 0.01631082408130169,
- 0.06400438398122787,
- -0.17602653801441193,
- 0.010678828693926334,
- 0.008824639953672886,
- 0.09887843579053879,
- 0.002606553491204977,
- 0.0010621676919981837,
- 0.0489533394575119,
- 0.0449785478413105,
- -0.016171680763363838,
- 0.0017192029627040029,
- -0.028571471571922302,
- -0.08956477046012878,
- 0.009769820608198643,
- 0.04836462810635567,
- 0.019601356238126755,
- 0.02775684744119644,
- 0.06394966691732407,
- 0.012215697206556797,
- -0.007546242792159319,
- -0.007583718281239271,
- 0.007286668289452791,
- -0.08212881535291672,
- -0.022400224581360817,
- -0.08581309765577316,
- 0.061809640377759933,
- 0.029690459370613098,
- 0.13056273758411407,
- -0.07270457595586777,
- 0.008997207507491112,
- -0.022718830034136772,
- -0.08396108448505402,
- 0.11817718297243118,
- 0.0005206198547966778,
- -0.07025665044784546,
- 0.05009760707616806,
- 0.13095875084400177,
- 0.06197923421859741,
- 0.003385738003998995,
- 0.018149415031075478,
- -0.05716557055711746,
- 0.016278356313705444,
- 0.09061506390571594,
- -0.000025374045435455628,
- 0.026613950729370117,
- 0.10114051401615143,
- 0.08120525628328323,
- -0.01222134567797184,
- -0.008575914427638054,
- -0.035243213176727295,
- 0.07708509266376495,
- -0.0290641188621521,
- 0.018205000087618828,
- 0.041008416563272476,
- -0.02278810739517212,
- 0.06076309457421303,
- 0.006927541457116604,
- 0.013597260229289532,
- 0.0753132700920105,
- -0.05450501665472984,
- -0.05482928082346916,
- -0.014359387569129467,
- 0.03099728561937809,
- -0.0008165785111486912,
- -0.041327934712171555,
- -0.012810170650482178,
- -0.05564994737505913,
- 0.034439362585544586,
- 0.007603889796882868,
- -0.03283656761050224,
- 0.056664228439331055,
- 0.23361244797706604,
- 0.09690048545598984,
- 0.04791426286101341,
- 0.024761924520134926,
- -0.019578222185373306,
- -0.05971889570355415,
- -0.06466042995452881,
- -0.04343133047223091,
- 0.004512371961027384,
- -0.008233028464019299,
- 0.0065277195535600185,
- -0.04377802833914757,
- -0.005331713706254959,
- -0.0687001496553421,
- -0.03076890856027603,
- -0.02364920824766159,
- -0.13617245852947235,
- -0.012829072773456573,
- -0.01030915416777134,
- 0.01841331645846367,
- -0.03236401453614235,
- 0.09754903614521027,
- 0.016039125621318817,
- 0.0013711316278204322,
- 0.05254704877734184,
- -0.05368700250983238,
- -0.0897127017378807,
- -0.12066344171762466,
- -4.643853983086788e-33,
- 0.000983206438831985,
- -0.009679829701781273,
- 0.004700880963355303,
- 0.07963645458221436,
- -0.00019381748279556632,
- -0.004464712459594011,
- 0.018988756462931633,
- 0.04031331464648247,
- -0.06012408062815666,
- 0.0704091340303421,
- -0.09452398121356964,
- 0.0054889339953660965,
- -0.0016026480589061975,
- 0.00018657608598005027,
- 0.11075186729431152,
- -0.0637323260307312,
- 0.030880900099873543,
- 0.05299002304673195,
- -0.016084644943475723,
- -0.01246740110218525,
- -0.05490085110068321,
- 0.10982915759086609,
- -0.014887423254549503,
- -0.014614724554121494,
- 0.024204479530453682,
- -0.015797553583979607,
- 0.00804123654961586,
- -0.06898443400859833,
- -0.1719016432762146,
- 0.002870200900360942,
- 0.041230130940675735,
- 0.003942686133086681,
- -0.05998607352375984,
- 0.033945921808481216,
- 0.053976356983184814,
- 0.07598839700222015,
- -0.00401392811909318,
- -0.05708320438861847,
- -0.005581623874604702,
- -0.0714881420135498,
- 0.01918422430753708,
- -0.015524365939199924,
- -0.0158651452511549,
- 0.022728031501173973,
- -0.009379010647535324,
- 0.0322578065097332,
- 0.01840752176940441,
- -0.014977159909904003,
- -0.03452048450708389,
- -0.039151985198259354,
- 0.03893846645951271,
- 0.026424402371048927,
- -0.028922246769070625,
- 0.005428047385066748,
- 0.00593602517619729,
- 0.03724896162748337,
- -0.02333841100335121,
- 0.05082407966256142,
- -0.01706472598016262,
- 0.032212045043706894,
- 0.027103787288069725,
- 0.07363217324018478,
- -0.07398448884487152,
- 0.011390738189220428,
- -0.048230718821287155,
- 0.039957400411367416,
- -0.10218329727649689,
- -0.09792637825012207,
- 0.11499039083719254,
- -0.011878347024321556,
- -0.06854534149169922,
- 0.005287786014378071,
- -0.004131095949560404,
- 0.07620924711227417,
- -0.07897377014160156,
- 0.012667271308600903,
- -0.04110085219144821,
- -0.0072894226759672165,
- -0.050502412021160126,
- 0.06346007436513901,
- -0.09765798598527908,
- 0.03575228899717331,
- 0.04905591532588005,
- 0.028164276853203773,
- -0.06704862415790558,
- -0.007472562603652477,
- 0.07979656755924225,
- -0.0982351303100586,
- -0.02250746265053749,
- 0.09462133049964905,
- -0.06439823657274246,
- -0.03026370331645012,
- 0.04044881463050842,
- -0.024822549894452095,
- 0.017732741311192513,
- 3.0896763311990085e-33,
- 0.04211021587252617,
- -0.016130873933434486,
- 0.009647838771343231,
- -0.033303435891866684,
- -0.031725622713565826,
- -0.02210136689245701,
- -0.018640562891960144,
- -0.03013441152870655,
- -0.026714332401752472,
- 0.03701794520020485,
- 0.026263367384672165,
- -0.017641667276620865,
- 0.08319438248872757,
- -0.06098831444978714,
- 0.009421999566257,
- 0.06662869453430176,
- 0.09435969591140747,
- -0.07934024184942245,
- -0.0017796152969822288,
- 0.0005623817560262978,
- -0.061151228845119476,
- 0.032338496297597885,
- -0.05419743061065674,
- -0.032758928835392,
- -0.03881038352847099,
- 0.04894600436091423,
- -0.03073227033019066,
- -0.04847850278019905,
- 0.08365238457918167,
- 0.03119789808988571,
- -0.03253026679158211,
- -0.088231161236763,
- -0.009534327313303947,
- 0.06141034513711929,
- -0.03709154576063156,
- 0.0791802629828453,
- -0.001602805219590664,
- -0.03115478903055191,
- 0.029166795313358307,
- -0.07003499567508698,
- 0.042915310710668564,
- 0.060970500111579895,
- -0.0050483630038797855,
- 0.08061782270669937,
- 0.08848926424980164,
- -0.025300057604908943,
- 0.04889806732535362,
- 0.022633640095591545,
- -0.10491993278265,
- 0.0006684713298454881,
- -0.04379388317465782,
- -0.0397777184844017,
- -0.02011864446103573,
- -0.08394905924797058,
- 0.025100694969296455,
- 0.06399411708116531,
- -0.00772770494222641,
- -0.049112290143966675,
- 0.07457178086042404,
- 0.006563120987266302,
- 0.0017328453250229359,
- 0.006923639215528965,
- -0.05060747638344765,
- 0.055228568613529205,
- 0.00906237680464983,
- -0.047604478895664215,
- -0.07993406802415848,
- -0.04334593936800957,
- -0.03877038508653641,
- 0.006447558291256428,
- 0.021735409274697304,
- 0.016649724915623665,
- -0.054038677364587784,
- 0.035347651690244675,
- -0.04867316409945488,
- -0.06303965300321579,
- -0.05078165978193283,
- 0.047294002026319504,
- -0.0055398656986653805,
- -0.04285655543208122,
- -0.008934453129768372,
- -0.022746123373508453,
- -0.010059584863483906,
- 0.03150876611471176,
- 0.028664475306868553,
- -0.01107151061296463,
- 0.06409215182065964,
- -0.008313926868140697,
- 0.036081377416849136,
- 0.02506941743195057,
- 0.034449782222509384,
- 0.010109096765518188,
- 0.005590849556028843,
- 0.022855795919895172,
- 0.03217916190624237,
- -1.2770653867733017e-8,
- -0.0651581659913063,
- -0.0792820006608963,
- -0.009121094830334187,
- -0.019649000838398933,
- 0.0662982165813446,
- -0.016559263691306114,
- 0.09915382415056229,
- 0.0498543418943882,
- 0.010695522651076317,
- 0.04414325952529907,
- -0.007348916493356228,
- 0.030610976740717888,
- -0.05785040557384491,
- 0.05373014882206917,
- 0.007410223595798016,
- 0.02527155727148056,
- -0.06129622459411621,
- -0.01404390949755907,
- -0.06992993503808975,
- 0.058532100170850754,
- 0.005303494166582823,
- 0.025375228375196457,
- -0.04873530566692352,
- 0.005198891274631023,
- 0.012490570545196533,
- -0.019643625244498253,
- -0.014297950081527233,
- -0.03020571544766426,
- -0.018079670146107674,
- 0.016643697395920753,
- 0.02708047442138195,
- 0.08706624805927277,
- -0.010696184821426868,
- 0.016526950523257256,
- 0.003018223447725177,
- 0.027081184089183807,
- 0.003838553326204419,
- 0.020733270794153214,
- -0.03717794269323349,
- -0.03178846463561058,
- 0.01757284440100193,
- -0.04903491958975792,
- -0.010557519271969795,
- 0.031562112271785736,
- 0.06163050979375839,
- 0.01001750398427248,
- -0.07811429351568222,
- 0.05071273073554039,
- -0.049645714461803436,
- -0.041549667716026306,
- -0.010306463576853275,
- 0.031073955819010735,
- -0.005369266495108604,
- 0.015309307724237442,
- -0.05454830080270767,
- -0.03334168717265129,
- 0.029571114107966423,
- -0.016342483460903168,
- -0.03978655859827995,
- -0.004059522412717342,
- 0.05022968351840973,
- 0.036279745399951935,
- 0.1032354086637497,
- -0.02317608892917633
- ]
- },
- {
- "keyword": "tower",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0438757948577404,
- 0.07595013827085495,
- -0.02499029040336609,
- 0.044736992567777634,
- -0.06967686116695404,
- -0.035660166293382645,
- 0.007526607718318701,
- 0.03372098505496979,
- 0.049780093133449554,
- -0.04914984479546547,
- 0.022810494527220726,
- -0.0000838773776195012,
- 0.032868750393390656,
- -0.04630374163389206,
- -0.004528937395662069,
- 0.04273759946227074,
- 0.012737270444631577,
- 0.038903314620256424,
- 0.01519756019115448,
- -0.055155083537101746,
- 0.03322431072592735,
- -0.04617143049836159,
- -0.03164982050657272,
- 0.0428212471306324,
- -0.012599489651620388,
- 0.037612300366163254,
- -0.048973552882671356,
- 0.08751585334539413,
- 0.05987558513879776,
- -0.1260647475719452,
- -0.019099963828921318,
- 0.025640292093157768,
- -0.02349799871444702,
- 0.042551279067993164,
- -0.04489448666572571,
- 0.05581649765372276,
- 0.05285301432013512,
- -0.07031426578760147,
- -0.001016576774418354,
- -0.05384116619825363,
- -0.011897662654519081,
- -0.021989163011312485,
- 0.007032041437923908,
- 0.010064772330224514,
- 0.01997198536992073,
- -0.006588390562683344,
- -0.025037799030542374,
- -0.009922740049660206,
- 0.02281891368329525,
- 0.015033592469990253,
- 0.034438591450452805,
- -0.01968131773173809,
- 0.012070066295564175,
- -0.03169213980436325,
- 0.03487153351306915,
- 0.07129261642694473,
- 0.02765357494354248,
- -0.029653796926140785,
- 0.0852321982383728,
- -0.0035497481003403664,
- 0.10560185462236404,
- -0.02930780127644539,
- -0.11897700279951096,
- 0.01195504330098629,
- 0.043167371302843094,
- -0.021154580637812614,
- 0.02728830836713314,
- 0.050474636256694794,
- 0.016057204455137253,
- -0.05567630007863045,
- 0.06941341608762741,
- 0.002491150051355362,
- 0.05970652028918266,
- 0.03644580394029617,
- 0.019937528297305107,
- 0.044495839625597,
- 0.02587108127772808,
- -0.08103746920824051,
- 0.01714947447180748,
- 0.03888595849275589,
- 0.007969643920660019,
- -0.0016424475470557809,
- -0.0512787401676178,
- 0.062134966254234314,
- 0.0124474773183465,
- 0.02294173836708069,
- -0.023139791563153267,
- 0.08342313766479492,
- -0.03146577626466751,
- -0.024529434740543365,
- -0.02800113894045353,
- -0.029287226498126984,
- -0.05393846705555916,
- 0.10510315746068954,
- -0.05721939355134964,
- 0.0010640214895829558,
- -0.03533821180462837,
- -0.09640762209892273,
- -0.09017756581306458,
- 0.18979999423027039,
- 0.008636456914246082,
- 0.12818807363510132,
- 0.03918541222810745,
- 0.00893466453999281,
- 0.0049109733663499355,
- -0.007578485645353794,
- -0.04949246346950531,
- 0.08635970205068588,
- -0.023059427738189697,
- -0.023550990968942642,
- -0.06346288323402405,
- -0.0472397655248642,
- -0.059563759714365005,
- 0.03921978920698166,
- -0.02429351769387722,
- 0.009052377194166183,
- 0.025956489145755768,
- -0.02352762036025524,
- -0.06843835115432739,
- 0.02350447326898575,
- 0.0762876495718956,
- 0.003735274076461792,
- -0.0382881686091423,
- -0.01994870789349079,
- -0.04455020651221275,
- -0.14156614243984222,
- -0.03834199905395508,
- -5.2832240949402465e-33,
- 0.0392833836376667,
- 0.0037268970627337694,
- 0.020359724760055542,
- 0.05275357514619827,
- 0.07347351312637329,
- -0.006950784008949995,
- -0.03881898522377014,
- 0.056644007563591,
- -0.049442846328020096,
- 0.11766708642244339,
- -0.05573613569140434,
- 0.024029314517974854,
- -0.03166690096259117,
- -0.05477675050497055,
- 0.1159362643957138,
- -0.08624191582202911,
- 0.08437727391719818,
- -0.02795588970184326,
- -0.040987588465213776,
- -0.009965220466256142,
- -0.008327088318765163,
- 0.02644168771803379,
- -0.0027204835787415504,
- 0.009575937874615192,
- 0.02224721945822239,
- -0.022807937115430832,
- -0.012534127570688725,
- -0.023689810186624527,
- -0.034374743700027466,
- 0.03860699012875557,
- 0.02571210078895092,
- -0.021117765456438065,
- -0.0009700775262899697,
- -0.008966634050011635,
- 0.02484261803328991,
- -0.03570486605167389,
- -0.007229844108223915,
- -0.07092830538749695,
- -0.012742768041789532,
- -0.034255385398864746,
- -0.008127767592668533,
- -0.02935316599905491,
- -0.00045113114174455404,
- 0.05506578087806702,
- -0.019765079021453857,
- 0.056694235652685165,
- 0.02990744449198246,
- -0.1026628240942955,
- 0.07273328304290771,
- -0.03998709097504616,
- -0.006229795515537262,
- 0.024483751505613327,
- -0.13950307667255402,
- -0.01289394125342369,
- 0.013714573346078396,
- -0.05059335380792618,
- -0.011209269054234028,
- -0.009757966734468937,
- 0.055676307529211044,
- 0.029697557911276817,
- -0.0007287105545401573,
- -0.0029582667630165815,
- -0.08595389127731323,
- 0.09946948289871216,
- -0.032871074974536896,
- -0.06344696879386902,
- -0.032610032707452774,
- -0.039405133575201035,
- 0.013878832571208477,
- -0.005908197723329067,
- -0.009140151552855968,
- -0.00312147312797606,
- 0.1076856255531311,
- 0.0008113051881082356,
- -0.061592064797878265,
- 0.043339915573596954,
- -0.16729958355426788,
- 0.07026133686304092,
- -0.10425993800163269,
- 0.032811567187309265,
- -0.01467416062951088,
- 0.0017721598269417882,
- 0.021120240911841393,
- 0.05399652197957039,
- 0.08241153508424759,
- 0.04322019964456558,
- 0.009154047816991806,
- -0.08839678019285202,
- 0.0017656467389315367,
- 0.026923678815364838,
- -0.10126437991857529,
- -0.05396963283419609,
- 0.07463634759187698,
- -0.03913303464651108,
- -0.027712782844901085,
- 3.519670695361863e-33,
- -0.03571515157818794,
- -0.05776320397853851,
- -0.0033312449231743813,
- -0.04472895339131355,
- 0.0028334695380181074,
- 0.050947412848472595,
- 0.01176122110337019,
- 0.01891326904296875,
- -0.05090518668293953,
- 0.05811423808336258,
- -0.06952741742134094,
- 0.05285480245947838,
- 0.05366147309541702,
- -0.014736760407686234,
- 0.08749745786190033,
- 0.07023616880178452,
- 0.06264971941709518,
- -0.06414506584405899,
- -0.03519492968916893,
- 0.04338571056723595,
- 0.018808213993906975,
- -0.015368207357823849,
- -0.04756372049450874,
- -0.013522358611226082,
- 0.006261586211621761,
- 0.053292084485292435,
- -0.04554498940706253,
- -0.07065890729427338,
- 0.04967416077852249,
- 0.042141906917095184,
- -0.07409470528364182,
- -0.04908759146928787,
- 0.04735936224460602,
- 0.10837912559509277,
- 0.014112729579210281,
- 0.10806389898061752,
- 0.0706932321190834,
- -0.043541766703128815,
- 0.013192656449973583,
- -0.05071088299155235,
- 0.026272296905517578,
- 0.030297955498099327,
- -0.0017093488713726401,
- 0.03094555251300335,
- 0.048431146889925,
- -0.025086091831326485,
- 0.015406324528157711,
- 0.02772637829184532,
- 0.007455824874341488,
- -0.009134925901889801,
- -0.05626867339015007,
- 0.032260213047266006,
- -0.017593860626220703,
- -0.0074997940100729465,
- 0.05565664544701576,
- -0.00447797030210495,
- -0.061321407556533813,
- -0.009286832995712757,
- 0.008004365488886833,
- -0.020150192081928253,
- 0.022010741755366325,
- -0.01918834075331688,
- -0.05377354845404625,
- 0.02972051315009594,
- -0.06182399392127991,
- 0.04532896354794502,
- 0.042739443480968475,
- 0.010818232782185078,
- -0.039492424577474594,
- 0.05800621211528778,
- -0.07364366203546524,
- 0.08743220567703247,
- -0.04092678055167198,
- -0.004103627987205982,
- -0.08914890140295029,
- -0.04088590666651726,
- -0.025055643171072006,
- 0.03545096889138222,
- -0.04694037139415741,
- -0.031222200021147728,
- -0.03431502729654312,
- -0.02653336338698864,
- -0.049650564789772034,
- 0.01358794141560793,
- 0.03399931639432907,
- -0.03237835317850113,
- 0.1640768200159073,
- 0.09484654664993286,
- 0.00794933084398508,
- -0.08120574802160263,
- 0.07065293192863464,
- -0.034828994423151016,
- -0.00966619048267603,
- -0.05557224527001381,
- -0.002442002994939685,
- -1.1922011822207423e-8,
- -0.013107525184750557,
- 0.02920648828148842,
- -0.07216302305459976,
- -0.07349444925785065,
- 0.10459233820438385,
- -0.08381309360265732,
- 0.034507058560848236,
- 0.061861082911491394,
- 0.0025099662598222494,
- 0.021875157952308655,
- 0.01271472591906786,
- -0.0038867893163114786,
- 0.007174690719693899,
- -0.010777038522064686,
- 0.04838744178414345,
- -0.03872419521212578,
- -0.054276760667562485,
- -0.06859580427408218,
- 0.023172052577137947,
- 0.048635777086019516,
- -0.024032332003116608,
- 0.02095266431570053,
- 0.021706564351916313,
- -0.000442265736637637,
- -0.07485473155975342,
- 0.009921262972056866,
- 0.004417143762111664,
- -0.03507581353187561,
- 0.08241458237171173,
- 0.04001045227050781,
- 0.050033822655677795,
- 0.06584291905164719,
- -0.07712464034557343,
- -0.03743572533130646,
- -0.020202912390232086,
- 0.026952961459755898,
- 0.08620617538690567,
- 0.043691739439964294,
- 0.006693758070468903,
- -0.04843997210264206,
- 0.06909937411546707,
- -0.1056293323636055,
- -0.020497282966971397,
- 0.06506241858005524,
- -0.0002348830021219328,
- 0.04393904656171799,
- 0.005713848862797022,
- -0.06803511828184128,
- 0.013122772797942162,
- -0.07308962941169739,
- 0.0033597934525460005,
- 0.03555424138903618,
- 0.022310443222522736,
- 0.04148995876312256,
- 0.03334026038646698,
- 0.005727722309529781,
- 0.003101642243564129,
- -0.03652498498558998,
- -0.05188775062561035,
- 0.032348595559597015,
- 0.16375407576560974,
- -0.003258622018620372,
- 0.007064772769808769,
- 0.007134993560612202
- ]
- },
- {
- "keyword": "complex",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.025163855403661728,
- 0.09385836869478226,
- -0.03712262585759163,
- 0.06973303854465485,
- -0.06671273708343506,
- -0.06812164187431335,
- 0.09149477630853653,
- 0.04549379274249077,
- 0.04697706550359726,
- -0.020558172836899757,
- 0.03743574023246765,
- -0.06762304157018661,
- 0.02047424204647541,
- 0.049392446875572205,
- -0.01801145076751709,
- -0.10688219219446182,
- -0.02321295067667961,
- -0.025906309485435486,
- -0.13710206747055054,
- 0.005603920202702284,
- -0.061784639954566956,
- 0.01776657998561859,
- 0.017641521990299225,
- 0.03166129067540169,
- -0.06099879369139671,
- 0.08737112581729889,
- 0.007482110522687435,
- 0.041298095136880875,
- 0.11498922854661942,
- -0.11292432248592377,
- -0.010842991061508656,
- 0.05833922699093819,
- 0.0888153463602066,
- -0.038838278502225876,
- -0.026197288185358047,
- 0.0004874086007475853,
- 0.03510604426264763,
- 0.018405338749289513,
- 0.059354688972234726,
- -0.02669680491089821,
- -0.01752753183245659,
- -0.07661425322294235,
- 0.03693126514554024,
- -0.011077949777245522,
- 0.05078740417957306,
- 0.032731786370277405,
- -0.033298101276159286,
- 0.0012826562160626054,
- 0.014039820991456509,
- -0.020635928958654404,
- -0.10025995224714279,
- -0.01875804178416729,
- -0.01866125501692295,
- 0.06482341885566711,
- 0.04211791977286339,
- 0.04342005029320717,
- -0.05256535857915878,
- 0.03425314649939537,
- 0.044247452169656754,
- -0.04362783208489418,
- 0.1277894377708435,
- -0.1066834107041359,
- 0.0036225339863449335,
- 0.005253996234387159,
- 0.0249602273106575,
- 0.03467630222439766,
- -0.008015678264200687,
- 0.019766876474022865,
- -0.03273538872599602,
- -0.03451237455010414,
- -0.006874589249491692,
- 0.0020505734719336033,
- -0.08531327545642853,
- 0.041924893856048584,
- 0.05860517546534538,
- -0.02068914845585823,
- -0.021491764113307,
- -0.021219126880168915,
- 0.0675605982542038,
- 0.03312971815466881,
- 0.005354905501008034,
- 0.025988955050706863,
- 0.03235841542482376,
- -0.0070574418641626835,
- -0.03088514506816864,
- 0.012555211782455444,
- 0.0687815397977829,
- -0.007663746830075979,
- 0.001205406617373228,
- 0.046004872769117355,
- -0.058199282735586166,
- 0.04482568800449371,
- 0.027985606342554092,
- -0.010166164487600327,
- -0.03147523105144501,
- 0.038281701505184174,
- -0.01013033464550972,
- -0.0008001126116141677,
- 0.02646523527801037,
- 0.24166536331176758,
- 0.051813188940286636,
- -0.004925466142594814,
- 0.042847245931625366,
- -0.05232739821076393,
- -0.03299317881464958,
- 0.01483913790434599,
- 0.012029357254505157,
- -0.00047730753431096673,
- -0.027659069746732712,
- 0.025199268013238907,
- -0.0819409117102623,
- -0.02773706056177616,
- 0.049649469554424286,
- -0.035991210490465164,
- 0.05285053700208664,
- 0.06380719691514969,
- 0.04621071740984917,
- 0.05101167410612106,
- 0.04165631905198097,
- 0.02274392358958721,
- 0.0016530087450519204,
- 0.012361840344965458,
- -0.02850012294948101,
- 0.022848989814519882,
- -0.04918881878256798,
- -0.06455197185277939,
- 0.004615292884409428,
- -5.639297496851641e-33,
- -0.06413383781909943,
- 0.053456515073776245,
- -0.04223493114113808,
- 0.06474936753511429,
- -0.019784187898039818,
- -0.03042524866759777,
- -0.05286788195371628,
- 0.016652464866638184,
- -0.018856341019272804,
- 0.1020549014210701,
- -0.04281105846166611,
- 0.05105552449822426,
- -0.05402180925011635,
- -0.004981103353202343,
- 0.0991089716553688,
- 0.039690714329481125,
- -0.015299571678042412,
- -0.005152859725058079,
- -0.07634031772613525,
- 0.005217335652559996,
- 0.07215897738933563,
- 0.030266841873526573,
- -0.026594892144203186,
- -0.040029384195804596,
- 0.0016158270882442594,
- -0.022435134276747704,
- 0.07794398069381714,
- -0.0584898367524147,
- -0.0352204255759716,
- -0.023195842280983925,
- 0.12255565077066422,
- -0.019121304154396057,
- -0.036692213267087936,
- -0.06977872550487518,
- -0.012430407106876373,
- 0.023190747946500778,
- 0.0570404939353466,
- -0.05997477471828461,
- 0.02044089138507843,
- -0.013719853945076466,
- -0.07866651564836502,
- -0.038297995924949646,
- -0.06536568701267242,
- 0.07053242623806,
- 0.07041513919830322,
- 0.07281702011823654,
- 0.10367228835821152,
- -0.012507339008152485,
- 0.013349122367799282,
- -0.035049546509981155,
- -0.03139391168951988,
- -0.02059178613126278,
- -0.10782637447118759,
- -0.017127636820077896,
- -0.044376153498888016,
- 0.043272219598293304,
- 0.01721699722111225,
- 0.04196736961603165,
- 0.0050146812573075294,
- 0.054483506828546524,
- 0.05572621151804924,
- -0.01985849067568779,
- -0.07936488091945648,
- 0.06979267299175262,
- -0.02374923788011074,
- 0.03866231068968773,
- -0.03970751911401749,
- -0.022834615781903267,
- 0.056894659996032715,
- -0.04840943217277527,
- -0.006871181074529886,
- -0.03779882937669754,
- 0.08971457928419113,
- 0.012264223769307137,
- 0.03206822648644447,
- 0.002568228868767619,
- -0.013312118127942085,
- -0.004344888497143984,
- -0.06693930923938751,
- 0.05661072954535484,
- -0.09450042992830276,
- -0.019603794440627098,
- 0.007699334993958473,
- 0.046340279281139374,
- 0.0034859187435358763,
- -0.012683802284300327,
- -0.013141181319952011,
- 0.006757076364010572,
- 0.06169196218252182,
- 0.0023969444446265697,
- -0.03751335293054581,
- 0.05243261903524399,
- 0.07059377431869507,
- -0.037153277546167374,
- -0.04756535217165947,
- 4.4878611072868704e-33,
- -0.07276677340269089,
- -0.04122592881321907,
- -0.03146626055240631,
- 0.04324931651353836,
- -0.00600407412275672,
- 0.017988799139857292,
- 0.00664856331422925,
- -0.05707954615354538,
- -0.010967660695314407,
- 0.06320524960756302,
- -0.0000707093277014792,
- -0.09234564006328583,
- -0.029957052320241928,
- 0.05970843508839607,
- 0.02228214405477047,
- 0.014576752670109272,
- 0.05872107669711113,
- -0.06581337004899979,
- -0.013345347717404366,
- -0.018281955271959305,
- -0.019544800743460655,
- -0.06165071204304695,
- -0.022340042516589165,
- 0.008119791746139526,
- -0.06432874500751495,
- 0.10400138795375824,
- 0.03639021888375282,
- -0.0682380422949791,
- 0.032254766672849655,
- 0.06256894767284393,
- -0.0048212334513664246,
- -0.15587180852890015,
- -0.057515207678079605,
- 0.006924492307007313,
- -0.026525354012846947,
- 0.10223900526762009,
- -0.040995001792907715,
- -0.05005742236971855,
- -0.017456253990530968,
- -0.013544522225856781,
- 0.016642652451992035,
- -0.0385214127600193,
- -0.07023506611585617,
- 0.14195740222930908,
- -0.011744147166609764,
- 0.002000803127884865,
- 0.05629311501979828,
- 0.04524138942360878,
- -0.01069314032793045,
- 0.025569669902324677,
- -0.09317340701818466,
- -0.02332494966685772,
- 0.00874278973788023,
- -0.11096449941396713,
- -0.05102454870939255,
- -0.06866021454334259,
- 0.045131295919418335,
- -0.031326182186603546,
- -0.059166476130485535,
- 0.00820736214518547,
- -0.025115804746747017,
- 0.03091680258512497,
- -0.0003617499314714223,
- 0.02435954473912716,
- -0.05576020106673241,
- 0.02300718054175377,
- 0.04591099172830582,
- -0.018431013450026512,
- -0.0020664306357502937,
- -0.06964625418186188,
- 0.08560242503881454,
- 0.07616651058197021,
- -0.043490346521139145,
- -0.054585035890340805,
- -0.017844820395112038,
- -0.024172378703951836,
- -0.030259981751441956,
- 0.11238954961299896,
- -0.035289328545331955,
- -0.010265269316732883,
- -0.007789250463247299,
- -0.03415146470069885,
- -0.04893358051776886,
- -0.05221506953239441,
- 0.01899535022675991,
- 0.009629138745367527,
- -0.03777417540550232,
- 0.059665948152542114,
- 0.01669360138475895,
- 0.012472056783735752,
- -0.04549439996480942,
- 0.10792301595211029,
- -0.02944658324122429,
- -0.05045042186975479,
- -0.017699649557471275,
- -1.2152478134908051e-8,
- 0.011265781708061695,
- -0.0071371858939528465,
- 0.027333231642842293,
- -0.030273109674453735,
- 0.06159225478768349,
- 0.010356822982430458,
- -0.0583803728222847,
- 0.013051185756921768,
- -0.07542894035577774,
- 0.09937227517366409,
- 0.03839293494820595,
- 0.003842436010017991,
- -0.00982412975281477,
- 0.06756620854139328,
- 0.08990643173456192,
- 0.038979288190603256,
- 0.001322417170740664,
- -0.021732717752456665,
- 0.000546450144611299,
- 0.016518009826540947,
- 0.016782211139798164,
- -0.028879674151539803,
- -0.029816104099154472,
- 0.022953838109970093,
- -0.007062086835503578,
- -0.01673862710595131,
- -0.022811289876699448,
- 0.006441617850214243,
- 0.0011717728339135647,
- 0.03907725587487221,
- 0.06638611853122711,
- 0.09974096715450287,
- -0.07986768335103989,
- -0.019936220720410347,
- -0.04918676242232323,
- -0.02753855474293232,
- -0.011774005368351936,
- -0.0425737090408802,
- 0.02223530225455761,
- -0.032817523926496506,
- -0.005964130163192749,
- 0.01718214899301529,
- 0.039232175797224045,
- -0.03594556078314781,
- 0.018688879907131195,
- 0.04710780084133148,
- 0.04136679694056511,
- -0.023115459829568863,
- 0.018928302451968193,
- -0.020581277087330818,
- -0.05563010647892952,
- 0.029835622757673264,
- 0.004831078927963972,
- 0.08696995675563812,
- 0.05855133756995201,
- 0.04453973472118378,
- 0.03114808350801468,
- 0.017640508711338043,
- -0.028121398761868477,
- 0.0716167539358139,
- 0.1830938756465912,
- -0.00335209583863616,
- 0.015463600866496563,
- -0.09648516774177551
- ]
- },
- {
- "keyword": "headquarters",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.001015398884192109,
- -0.03425663709640503,
- -0.042273275554180145,
- 0.031382713466882706,
- -0.02114393748342991,
- -0.03558044135570526,
- 0.026020823046565056,
- -0.06002162769436836,
- 0.015506233088672161,
- -0.009747404605150223,
- 0.02433488890528679,
- -0.033307384699583054,
- 0.02790490724146366,
- -0.010381311178207397,
- 0.017307497560977936,
- -0.014770257286727428,
- 0.014739979058504105,
- 0.009153719060122967,
- 0.03834777697920799,
- -0.11001387983560562,
- -0.012683608569204807,
- -0.034222908318042755,
- 0.03704746440052986,
- 0.003907775040715933,
- -0.0009754432248882949,
- 0.06726590543985367,
- -0.05927925929427147,
- 0.09093574434518814,
- 0.004029323346912861,
- -0.12104637920856476,
- 0.007458435837179422,
- -0.02790835313498974,
- 0.056127533316612244,
- -0.007708902005106211,
- 0.04979267343878746,
- 0.09280208498239517,
- 0.04677427187561989,
- -0.0234721377491951,
- 0.08089540898799896,
- 0.02042701654136181,
- 0.004339562263339758,
- 0.006713839713484049,
- 0.015894081443548203,
- -0.01784737966954708,
- -0.059541795402765274,
- 0.04965563863515854,
- 0.04655773937702179,
- 0.04512321949005127,
- 0.048344045877456665,
- -0.01881765015423298,
- 0.0813608169555664,
- -0.06378637254238129,
- 0.056713640689849854,
- 0.06599531322717667,
- 0.03840295597910881,
- 0.04024578630924225,
- -0.0016811841633170843,
- 0.003250667592510581,
- 0.0358547680079937,
- -0.10242895036935806,
- 0.11567679047584534,
- -0.049842432141304016,
- -0.06279311329126358,
- 0.017006102949380875,
- 0.08025490492582321,
- -0.03056260198354721,
- 0.0034094250295311213,
- 0.10559292882680893,
- -0.02514878660440445,
- -0.15751680731773376,
- 0.041669268161058426,
- -0.062490131705999374,
- -0.014486356638371944,
- 0.05216636881232262,
- 0.042781323194503784,
- 0.033574026077985764,
- -0.0033300367649644613,
- 0.036578595638275146,
- 0.0735621452331543,
- -0.020622162148356438,
- 0.07544618844985962,
- -0.009794455952942371,
- 0.004754737950861454,
- 0.16328391432762146,
- -0.07631370425224304,
- -0.028080344200134277,
- 0.02000640146434307,
- 0.04620946943759918,
- 0.045463137328624725,
- 0.019159575924277306,
- -0.048567164689302444,
- 0.02761463262140751,
- -0.017614666372537613,
- 0.021856188774108887,
- -0.13666820526123047,
- -0.004349937662482262,
- -0.004522321745753288,
- 0.04553636908531189,
- -0.014639419503509998,
- 0.21280628442764282,
- 0.03798341006040573,
- 0.00900422316044569,
- 0.007283731363713741,
- -0.037257544696331024,
- -0.0012062613386660814,
- -0.016950979828834534,
- -0.04029197618365288,
- 0.11010055243968964,
- -0.008036055602133274,
- 0.017431877553462982,
- -0.03689102083444595,
- 0.06864725053310394,
- -0.13006159663200378,
- 0.009440925903618336,
- -0.02836521528661251,
- 0.003485856344923377,
- 0.016989298164844513,
- 0.02732137218117714,
- -0.026983000338077545,
- -0.02748703770339489,
- 0.01728012040257454,
- 0.018524866551160812,
- -0.022632567211985588,
- 0.014567616395652294,
- -0.011611521244049072,
- -0.01660911925137043,
- -0.07522362470626831,
- -5.027774846169163e-33,
- -0.02615736611187458,
- 0.03310124948620796,
- -0.004265772644430399,
- 0.08158862590789795,
- 0.050630539655685425,
- 0.022472858428955078,
- 0.00045547433546744287,
- 0.08280117064714432,
- -0.00849070679396391,
- -0.004458002746105194,
- -0.047104526311159134,
- 0.024812757968902588,
- -0.007984274066984653,
- -0.058477699756622314,
- 0.05951889976859093,
- -0.02485828660428524,
- 0.036089252680540085,
- 0.018166230991482735,
- -0.0835803747177124,
- -0.004981165286153555,
- -0.036994822323322296,
- -0.010714776813983917,
- -0.07553938031196594,
- 0.04042264446616173,
- 0.0105007104575634,
- 0.002133910544216633,
- -0.041944719851017,
- 0.0022893850691616535,
- 0.05343177169561386,
- 0.04193603992462158,
- 0.03046434000134468,
- 0.03271150961518288,
- 0.013341573998332024,
- 0.007971809245646,
- 0.027418019250035286,
- 0.029265930876135826,
- -0.033208925276994705,
- -0.05569177865982056,
- -0.03036038763821125,
- 0.005910809151828289,
- 0.012774962931871414,
- 0.05040840059518814,
- 0.019622284919023514,
- 0.07082565128803253,
- 0.06295023113489151,
- 0.035955093801021576,
- -0.005238134413957596,
- 0.015123260207474232,
- 0.21395528316497803,
- 0.00889343861490488,
- -0.033228445798158646,
- -0.015347479842603207,
- -0.06036556884646416,
- 0.01985514722764492,
- 0.07660382241010666,
- -0.020775150507688522,
- -0.019119206815958023,
- -0.0036641170736402273,
- 0.05541690066456795,
- -0.009235081262886524,
- -0.011404808610677719,
- 0.14616736769676208,
- -0.095743827521801,
- 0.10609542578458786,
- 0.023446492850780487,
- -0.06503932178020477,
- -0.013179803267121315,
- 0.019804542884230614,
- 0.08037396520376205,
- 0.00878772884607315,
- 0.04247255623340607,
- -0.009146429598331451,
- 0.09017577767372131,
- 0.04809287562966347,
- -0.07767311483621597,
- 0.03369986638426781,
- -0.06577889621257782,
- 0.07602810114622116,
- -0.11957098543643951,
- 0.020430153235793114,
- 0.011134928092360497,
- -0.01748080551624298,
- -0.017677491530776024,
- 0.043971192091703415,
- 0.12095426768064499,
- 0.006330494768917561,
- 0.025929244235157967,
- -0.05842278152704239,
- -0.03006148524582386,
- 0.06424582004547119,
- -0.12078702449798584,
- -0.02351185493171215,
- 0.04398408159613609,
- 0.004123013466596603,
- -0.10359456390142441,
- 4.202400018371355e-33,
- 0.03291171044111252,
- -0.04797106981277466,
- -0.014986183494329453,
- -0.029426991939544678,
- -0.021495046094059944,
- 0.05288975313305855,
- 0.05158476531505585,
- 0.01915896311402321,
- -0.02949616126716137,
- 0.00621761055663228,
- -0.06526631861925125,
- -0.009016338735818863,
- 0.027611326426267624,
- 0.050221532583236694,
- -0.029330167919397354,
- 0.023304076865315437,
- 0.10753144323825836,
- -0.04831727221608162,
- -0.10370605438947678,
- -0.015783758834004402,
- -0.03732343390583992,
- -0.10402534902095795,
- -0.022047512233257294,
- 0.025844870135188103,
- -0.025577925145626068,
- 0.04713704064488411,
- -0.02057540975511074,
- -0.0011605698382481933,
- 0.016976073384284973,
- 0.04008939489722252,
- -0.07418631762266159,
- -0.00403813598677516,
- -0.10080369561910629,
- 0.12888935208320618,
- -0.012266866862773895,
- 0.039828717708587646,
- -0.029209010303020477,
- 0.009627152234315872,
- 0.0017785438103601336,
- -0.04001304507255554,
- 0.005515759345144033,
- 0.012307408265769482,
- -0.07579752057790756,
- 0.11941448599100113,
- -0.010073669254779816,
- -0.03861032426357269,
- -0.0799851045012474,
- -0.020450595766305923,
- -0.04918140545487404,
- -0.014834570698440075,
- -0.10953597724437714,
- -0.028881026431918144,
- -0.050554368644952774,
- -0.030876878648996353,
- -0.008802325464785099,
- 0.047336239367723465,
- -0.08489656448364258,
- 0.0419621616601944,
- -0.020349720492959023,
- 0.014269336126744747,
- 0.029155271127820015,
- 0.011382871307432652,
- -0.04170968383550644,
- 0.10975980013608932,
- -0.0962611734867096,
- 0.052774492651224136,
- -0.012535960413515568,
- -0.020166030153632164,
- -0.007971730083227158,
- 0.002805066527798772,
- 0.0654761791229248,
- 0.02858489751815796,
- -0.057594090700149536,
- -0.021940112113952637,
- -0.07255628705024719,
- 0.016842158511281013,
- -0.008045399561524391,
- -0.04596416652202606,
- -0.04064818099141121,
- -0.012006423436105251,
- -0.001586497062817216,
- -0.005318930372595787,
- -0.05864791199564934,
- 0.008988012559711933,
- -0.027600491419434547,
- 0.0586174800992012,
- 0.006711417343467474,
- 0.032326556742191315,
- -0.004469427280128002,
- -0.010406888090074062,
- 0.008313562721014023,
- -0.03255670145153999,
- -0.06231564283370972,
- -0.0310138538479805,
- 0.00379500025883317,
- -1.1310269165676345e-8,
- -0.045191358774900436,
- 0.019847754389047623,
- 0.014464964158833027,
- -0.027509769424796104,
- 0.0008633402758277953,
- -0.03525811806321144,
- 0.05179992690682411,
- -0.051321156322956085,
- 0.04639067500829697,
- 0.07796403020620346,
- -0.004966394044458866,
- 0.0061384765431284904,
- -0.022637154906988144,
- -0.005138443782925606,
- -0.042571570724248886,
- -0.0019200518727302551,
- -0.06663905084133148,
- 0.02816190756857395,
- -0.0398259274661541,
- -0.023456405848264694,
- 0.015037151984870434,
- 0.03742087632417679,
- 0.026244664564728737,
- -0.020805232226848602,
- 0.0012463695602491498,
- 0.0009125590440817177,
- 0.022770488634705544,
- 0.014811796136200428,
- 0.07278750836849213,
- 0.020277129486203194,
- 0.021777359768748283,
- 0.07589635998010635,
- -0.07775093615055084,
- -0.01701509766280651,
- -0.050116341561079025,
- -0.05086694657802582,
- 0.011047792620956898,
- -0.0030635071452707052,
- 0.03424053639173508,
- -0.1100466251373291,
- -0.02407996542751789,
- -0.001092036603949964,
- -0.010985521599650383,
- 0.007135164458304644,
- 0.022877156734466553,
- -0.03675824776291847,
- 0.04732922837138176,
- 0.01673465222120285,
- 0.006592320743948221,
- -0.09420172870159149,
- -0.042958322912454605,
- 0.03833172097802162,
- -0.007628942374140024,
- 0.06160192936658859,
- -0.015022321604192257,
- -0.03669121861457825,
- -0.033599890768527985,
- -0.06008799001574516,
- -0.08600501716136932,
- 0.02445686049759388,
- -0.02056065760552883,
- -0.016542911529541016,
- 0.06353332102298737,
- 0.02550516091287136
- ]
- },
- {
- "keyword": "hq",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0001407667004968971,
- 0.003830099245533347,
- -0.01571526750922203,
- -0.0015104778576642275,
- -0.01884285733103752,
- -0.009138626977801323,
- 0.019933782517910004,
- -0.09052957594394684,
- 0.01479280460625887,
- -0.04320415481925011,
- -0.02244250476360321,
- 0.013924231752753258,
- 0.027349870651960373,
- -0.011989228427410126,
- 0.039231881499290466,
- -0.03159796819090843,
- 0.011431853286921978,
- -0.023616604506969452,
- 0.025065379217267036,
- -0.0775502398610115,
- 0.008716079406440258,
- -0.021063154563307762,
- 0.015403353609144688,
- 0.012791663408279419,
- 0.00785492267459631,
- 0.03576674684882164,
- -0.016955815255641937,
- 0.09191292524337769,
- -0.038285236805677414,
- -0.13301047682762146,
- 0.0006571279955096543,
- -0.034237753599882126,
- 0.0605333112180233,
- -0.03064669668674469,
- 0.04909857362508774,
- 0.038783811032772064,
- 0.054153893142938614,
- -0.09636558592319489,
- 0.047756657004356384,
- 0.02470684051513672,
- -0.000447214231826365,
- -0.03759944438934326,
- 0.0056694974191486835,
- 0.02099004201591015,
- -0.036395665258169174,
- 0.01192863192409277,
- 0.021016329526901245,
- -0.01015147939324379,
- 0.11164812743663788,
- 0.007387807127088308,
- 0.037091899663209915,
- -0.10332213342189789,
- 0.045549698173999786,
- 0.040468353778123856,
- -0.00011812338925665244,
- 0.07703309506177902,
- -0.025148021057248116,
- 0.010542330332100391,
- 0.051638200879096985,
- -0.06802260875701904,
- 0.06595892459154129,
- -0.051205407828092575,
- -0.017530472949147224,
- -0.004628107883036137,
- 0.10038262605667114,
- -0.07615635544061661,
- 0.018186647444963455,
- 0.049945950508117676,
- -0.015016970224678516,
- -0.14194703102111816,
- 0.013403579592704773,
- -0.050059545785188675,
- -0.01438169740140438,
- 0.06351721286773682,
- 0.055437639355659485,
- 0.006086247973144054,
- 0.04218640550971031,
- 0.020299768075346947,
- 0.09831258654594421,
- -0.04419809207320213,
- 0.055793698877096176,
- 0.021654685959219933,
- -0.010482766665518284,
- 0.10298416018486023,
- -0.07141406089067459,
- -0.002870119409635663,
- 0.015757272019982338,
- 0.00639474019408226,
- 0.04455133154988289,
- 0.01657356321811676,
- -0.1007143035531044,
- -0.02288452722132206,
- 0.03185175731778145,
- 0.020751051604747772,
- -0.12333875894546509,
- -0.026867393404245377,
- 0.016512291505932808,
- 0.076933354139328,
- -0.029879190027713776,
- 0.19801640510559082,
- 0.08758733421564102,
- 0.05529327318072319,
- -0.03013920783996582,
- -0.03219287469983101,
- 0.03328615427017212,
- 0.014017227105796337,
- -0.06099267676472664,
- 0.09691130369901657,
- 0.011686576530337334,
- 0.03304655849933624,
- -0.04654310643672943,
- 0.0592433363199234,
- -0.04266573116183281,
- -0.02771769091486931,
- -0.029023418202996254,
- -0.011060302145779133,
- 0.017231179401278496,
- -0.01481738593429327,
- -0.04005539417266846,
- -0.07488556951284409,
- 0.005295588169246912,
- -0.04322433844208717,
- 0.05908527970314026,
- 0.006785789504647255,
- -0.013569430448114872,
- -0.03132333979010582,
- -0.051914919167757034,
- -4.543633538787588e-33,
- 0.03918040171265602,
- 0.010114229284226894,
- 0.02555307000875473,
- 0.05635487660765648,
- 0.00020583019067998976,
- -0.003076215274631977,
- -0.043250925838947296,
- 0.07962686568498611,
- -0.0008179125725291669,
- -0.03758738934993744,
- -0.07062477618455887,
- 0.01805802807211876,
- -0.03561629354953766,
- -0.1023671105504036,
- 0.0007113037281669676,
- -0.02130419947206974,
- 0.05143886059522629,
- 0.014705212786793709,
- -0.08943945169448853,
- 0.027540622279047966,
- -0.09240560233592987,
- 0.010893100872635841,
- -0.06011005491018295,
- 0.09171822667121887,
- 0.005843206308782101,
- -0.016542894765734673,
- -0.04092894122004509,
- -0.03575059399008751,
- 0.07719762623310089,
- 0.0515829436480999,
- 0.08995556086301804,
- -0.011050067842006683,
- -0.03822508826851845,
- 0.05145514756441116,
- -0.002453881548717618,
- -0.01103423722088337,
- 0.01479120273143053,
- -0.034679919481277466,
- -0.04024666175246239,
- -0.058025144040584564,
- -0.0381200797855854,
- 0.05584145337343216,
- 0.002506587188690901,
- 0.04317549243569374,
- 0.055436376482248306,
- 0.040287166833877563,
- 0.0172890517860651,
- 0.053475961089134216,
- 0.16132330894470215,
- 0.036710429936647415,
- -0.035913676023483276,
- -0.005392002407461405,
- -0.06973443925380707,
- 0.0734383836388588,
- 0.012917280197143555,
- -0.025508027523756027,
- 0.0004244910378474742,
- 0.05102447420358658,
- 0.055213309824466705,
- 0.00751650333404541,
- 0.008916418068110943,
- 0.09637964516878128,
- -0.048375193029642105,
- 0.10710693150758743,
- 0.004620286636054516,
- -0.06011366471648216,
- 0.009673772379755974,
- 0.005239574238657951,
- 0.08875973522663116,
- 0.017200138419866562,
- 0.09202946722507477,
- -0.009893334470689297,
- 0.07937256991863251,
- 0.09735430032014847,
- -0.06706258654594421,
- -0.018107878044247627,
- -0.02876468189060688,
- 0.03363822400569916,
- -0.08221951872110367,
- 0.027370139956474304,
- 0.03797736391425133,
- -0.008166564628481865,
- -0.03735124692320824,
- 0.0051114982925355434,
- 0.08344769477844238,
- -0.0075446548871695995,
- 0.05456635355949402,
- -0.09789976477622986,
- -0.08376865088939667,
- 0.06197672337293625,
- -0.09606214612722397,
- -0.011068287305533886,
- 0.06761742383241653,
- 0.01555180735886097,
- -0.05859264358878136,
- 4.095756599470865e-33,
- 0.03972843661904335,
- -0.0260689165443182,
- -0.11956794559955597,
- -0.03668468818068504,
- -0.002716278890147805,
- 0.05656535178422928,
- 0.0645936131477356,
- 0.018258821219205856,
- -0.1007453203201294,
- 0.018776144832372665,
- -0.008524104952812195,
- -0.003783127758651972,
- 0.0008190934313461185,
- 0.051311615854501724,
- -0.017362618818879128,
- -0.02923576533794403,
- 0.09017311781644821,
- -0.02162914164364338,
- -0.10265599191188812,
- 0.08905747532844543,
- -0.05407031625509262,
- -0.055257730185985565,
- -0.07513371855020523,
- 0.08541136980056763,
- 0.04507191851735115,
- 0.08759748935699463,
- -0.034408509731292725,
- 0.046511679887771606,
- -0.03567670285701752,
- 0.04748622328042984,
- -0.05579705163836479,
- 0.026375796645879745,
- -0.06460830569267273,
- 0.102035753428936,
- 0.014843088574707508,
- 0.01917627640068531,
- 0.005723997019231319,
- 0.015165814198553562,
- -0.022921670228242874,
- -0.04071485996246338,
- -0.010405001230537891,
- -0.040682628750801086,
- -0.07767502218484879,
- 0.07722248882055283,
- 0.0015147995436564088,
- -0.0016423806082457304,
- -0.0936831459403038,
- -0.0008996276883408427,
- -0.04743483290076256,
- 0.0314372293651104,
- -0.1142667829990387,
- -0.05078417807817459,
- -0.054468415677547455,
- -0.054805561900138855,
- -0.023146329447627068,
- -0.018143683671951294,
- -0.09697871655225754,
- 0.03314689174294472,
- -0.0042264582589268684,
- 0.02701498381793499,
- 0.039689719676971436,
- 0.05797436088323593,
- -0.07103762030601501,
- 0.15605759620666504,
- -0.06864911317825317,
- 0.018539022654294968,
- 0.013647973537445068,
- -0.025562789291143417,
- -0.008142953738570213,
- 0.006698135752230883,
- 0.01355268806219101,
- 0.02692399173974991,
- 0.01692258194088936,
- -0.03301120921969414,
- -0.09566556662321091,
- -0.00489212479442358,
- 0.019969088956713676,
- -0.03791830316185951,
- -0.03903299197554588,
- -0.03789415955543518,
- -0.08382107317447662,
- -0.04177072271704674,
- -0.004567707423120737,
- 0.052511684596538544,
- 0.012561791576445103,
- 0.055051665753126144,
- 0.03246987238526344,
- 0.01305803470313549,
- -0.06495141983032227,
- 0.04156124219298363,
- 0.015669871121644974,
- -0.034758709371089935,
- -0.024232875555753708,
- 0.008167938329279423,
- -0.010176735930144787,
- -1.0851305631831565e-8,
- 0.024343932047486305,
- 0.03051304817199707,
- 0.0564199797809124,
- -0.006131150759756565,
- 0.02879341132938862,
- -0.027435142546892166,
- -0.015613171271979809,
- 0.010829870589077473,
- 0.04237372428178787,
- 0.08725974708795547,
- -0.03319309279322624,
- 0.02063440904021263,
- -0.022571275010704994,
- -0.010606028139591217,
- -0.032828401774168015,
- -0.02716796286404133,
- -0.06635691970586777,
- 0.07429170608520508,
- -0.048973072320222855,
- -0.058065373450517654,
- 0.010593034327030182,
- 0.022092631086707115,
- 0.006877324543893337,
- -0.014700357802212238,
- -0.00641587795689702,
- 0.015646744519472122,
- 0.024569964036345482,
- 0.04362118989229202,
- 0.11046399176120758,
- -0.016010280698537827,
- 0.06844471395015717,
- 0.07205811887979507,
- -0.04661303758621216,
- -0.019817374646663666,
- -0.03983907401561737,
- -0.025904811918735504,
- 0.02001212164759636,
- 0.0357273705303669,
- -0.0239401962608099,
- -0.07638795673847198,
- -0.03093571774661541,
- -0.011106958612799644,
- -0.012806348502635956,
- -0.027026783674955368,
- 0.04518384113907814,
- 0.0014483478153124452,
- 0.04004466533660889,
- -0.02757677063345909,
- -0.01627415232360363,
- -0.11900884658098221,
- -0.04155873507261276,
- 0.05137631669640541,
- 0.005341279320418835,
- 0.04073270782828331,
- 0.018704213201999664,
- 0.03272586315870285,
- 0.008025553077459335,
- -0.04165342077612877,
- -0.04380838945508003,
- 0.05846893787384033,
- 0.0010183125268667936,
- -0.0051437849178910255,
- 0.02206064946949482,
- -0.0033586546778678894
- ]
- },
- {
- "keyword": "campus",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.02282305248081684,
- -0.029585223644971848,
- 0.06503425538539886,
- -0.002889979165047407,
- 0.026410920545458794,
- -0.028684506192803383,
- 0.0011015341151505709,
- -0.05324563756585121,
- 0.003356390865519643,
- 0.03039625659584999,
- 0.11252415180206299,
- -0.033788956701755524,
- -0.0010163724655285478,
- -0.006965854205191135,
- -0.01780444197356701,
- -0.021015271544456482,
- -0.007218975108116865,
- -0.06889791041612625,
- 0.008290380239486694,
- -0.05634462833404541,
- -0.0013252249918878078,
- 0.01568828523159027,
- -0.028359202668070793,
- 0.025660887360572815,
- 0.03694922477006912,
- 0.020155223086476326,
- -0.019123045727610588,
- 0.03643171489238739,
- 0.022297753021121025,
- -0.08802929520606995,
- 0.06595184653997421,
- 0.03815816715359688,
- 0.044190414249897,
- -0.021876173093914986,
- 0.049543991684913635,
- 0.006784018129110336,
- 0.05660466104745865,
- -0.003101192880421877,
- 0.05324584245681763,
- -0.015151213854551315,
- -0.08418929576873779,
- 0.0431026816368103,
- 0.06250907480716705,
- 0.04096384719014168,
- -0.0327756367623806,
- -0.002981045749038458,
- -0.018332254141569138,
- -0.0727391391992569,
- 0.09435752779245377,
- 0.03321365267038345,
- 0.027751214802265167,
- -0.01540685910731554,
- -0.01666714996099472,
- 0.011233204044401646,
- -0.011447682045400143,
- 0.026749996468424797,
- 0.024073200300335884,
- 0.0011220460291951895,
- -0.01921091414988041,
- -0.006024242844432592,
- 0.022384706884622574,
- -0.04609500244259834,
- -0.06727428734302521,
- 0.03772209584712982,
- -0.0002400624507572502,
- -0.04658828675746918,
- 0.005065971054136753,
- 0.03946654871106148,
- 0.08044116199016571,
- -0.012881907634437084,
- 0.047178421169519424,
- -0.03682730346918106,
- 0.0132376030087471,
- 0.011883772909641266,
- 0.08100373297929764,
- 0.04695645719766617,
- -0.015036058612167835,
- 0.01289463136345148,
- 0.08267520368099213,
- 0.009960470721125603,
- 0.02505047246813774,
- -0.008917476050555706,
- 0.006060736253857613,
- -0.012895592488348484,
- 0.0017558347899466753,
- -0.06600574404001236,
- 0.025565294548869133,
- 0.006351149175316095,
- 0.03650224208831787,
- 0.023520417511463165,
- -0.016344862058758736,
- -0.026758208870887756,
- -0.06226068362593651,
- -0.03209521993994713,
- -0.08206438273191452,
- -0.038747768849134445,
- -0.030347106978297234,
- -0.023228749632835388,
- 0.06587477773427963,
- 0.22292502224445343,
- -0.06534381210803986,
- 0.08501314371824265,
- 0.0599043108522892,
- -0.022996176034212112,
- -0.023083090782165527,
- 0.0039539458230137825,
- 0.0195968896150589,
- 0.07456900179386139,
- 0.039887573570013046,
- 0.06526733189821243,
- 0.044231463223695755,
- 0.012640070170164108,
- -0.0526626855134964,
- -0.010147720575332642,
- 0.017386265099048615,
- 0.00461763609200716,
- 0.13011878728866577,
- -0.0571497417986393,
- -0.039247337728738785,
- 0.04610893502831459,
- -0.01760862022638321,
- 0.01690402254462242,
- -0.015519044362008572,
- -0.021485086530447006,
- -0.08598558604717255,
- -0.11720965057611465,
- -0.0899495780467987,
- -3.1341713637715245e-33,
- 0.01864425651729107,
- 0.031141206622123718,
- -0.041618749499320984,
- -0.02770902030169964,
- 0.002570012817159295,
- -0.06127012148499489,
- -0.04098701849579811,
- 0.06922999024391174,
- -0.09783320128917694,
- 0.019556939601898193,
- -0.011174846440553665,
- 0.03036261536180973,
- 0.05899927020072937,
- 0.02236461266875267,
- 0.10620436817407608,
- -0.06886456161737442,
- 0.028737176209688187,
- 0.060896195471286774,
- -0.0009630630374886096,
- 0.0682382732629776,
- 0.011228546500205994,
- -0.007693320047110319,
- 0.01240710448473692,
- -0.060285549610853195,
- -0.012488163076341152,
- -0.0522412434220314,
- -0.05452626198530197,
- 0.09249181300401688,
- 0.07536597549915314,
- -0.008271790109574795,
- 0.04993234947323799,
- -0.006556881126016378,
- -0.06304050981998444,
- -0.04065808281302452,
- 0.07300921529531479,
- -0.005792275536805391,
- -0.02546490542590618,
- -0.04071415588259697,
- 0.01712166704237461,
- -0.0337744876742363,
- 0.058911167085170746,
- 0.044289834797382355,
- 0.05877125263214111,
- 0.029904959723353386,
- 0.053100451827049255,
- 0.047853242605924606,
- 0.039199769496917725,
- -0.0020518111996352673,
- 0.058243248611688614,
- -0.06541493535041809,
- -0.10205280780792236,
- -0.0687767043709755,
- -0.07677173614501953,
- -0.04524756595492363,
- 0.02158968150615692,
- -0.009496533311903477,
- -0.0014875669730827212,
- 0.010802486911416054,
- -0.010724634863436222,
- -0.015677547082304955,
- -0.011733933351933956,
- 0.06949353218078613,
- -0.09047674387693405,
- -0.017739271745085716,
- 0.005712465848773718,
- -0.1204998642206192,
- -0.04432583972811699,
- -0.021744975820183754,
- 0.14855679869651794,
- -0.0804203599691391,
- -0.02954051084816456,
- -0.0767500177025795,
- 0.03577787056565285,
- 0.02816668525338173,
- 0.02561149373650551,
- 0.02741173468530178,
- -0.07047194242477417,
- 0.011070705950260162,
- -0.06835906952619553,
- 0.013618438504636288,
- -0.028912292793393135,
- -0.07405656576156616,
- -0.06421200931072235,
- 0.06410957872867584,
- 0.0472283661365509,
- 0.049886222928762436,
- 0.01409272663295269,
- -0.04030103236436844,
- -0.010132908821105957,
- 0.02133914828300476,
- -0.028847120702266693,
- -0.05335279181599617,
- 0.016822990030050278,
- 0.04319731146097183,
- -0.0228116475045681,
- 1.974706164119645e-33,
- 0.11628030240535736,
- 0.011517403647303581,
- -0.005523551255464554,
- 0.022059805691242218,
- 0.045083846896886826,
- 0.03805665299296379,
- -0.010199673473834991,
- 0.04559082165360451,
- -0.06632483005523682,
- -0.01901022158563137,
- -0.009076862595975399,
- -0.035719651728868484,
- 0.01638796180486679,
- 0.01576598919928074,
- -0.005921082105487585,
- 0.05532066151499748,
- 0.13447962701320648,
- -0.03747096285223961,
- -0.079379141330719,
- 0.01576833613216877,
- -0.04564601927995682,
- 0.00009430465433979407,
- 0.022540738806128502,
- -0.02667297050356865,
- -0.049935076385736465,
- 0.02464284934103489,
- 0.05253385752439499,
- -0.002020356711000204,
- -0.0535261444747448,
- 0.03653546795248985,
- -0.06991881877183914,
- 0.004652300383895636,
- -0.027834556996822357,
- 0.05280017852783203,
- -0.00468645291402936,
- 0.05394617095589638,
- 0.04412427917122841,
- 0.034703001379966736,
- -0.0901729092001915,
- 0.02657466195523739,
- 0.08850783109664917,
- -0.02145109325647354,
- -0.0695318803191185,
- 0.09609862416982651,
- 0.07472800463438034,
- 0.0010889866389334202,
- -0.04775018244981766,
- 0.06552781909704208,
- -0.03985395282506943,
- -0.006114108022302389,
- -0.15425068140029907,
- -0.06902706623077393,
- 0.049796897917985916,
- -0.0770091712474823,
- 0.08266422152519226,
- -0.04051896557211876,
- 0.0184782762080431,
- 0.01191997155547142,
- -0.05605803430080414,
- 0.04603562876582146,
- 0.059613171964883804,
- -0.04316537082195282,
- -0.057570427656173706,
- 0.04236234351992607,
- -0.0811762586236,
- 0.012442786246538162,
- -0.03286132588982582,
- 0.038524918258190155,
- -0.07767188549041748,
- 0.035977985709905624,
- -0.03447577729821205,
- 0.041554518043994904,
- -0.00030363252153620124,
- -0.04692532867193222,
- -0.08647017925977707,
- 0.005642916541546583,
- 0.03362066671252251,
- -0.03815873712301254,
- -0.037308283150196075,
- -0.012523633427917957,
- 0.012013387866318226,
- -0.0462917760014534,
- -0.09875668585300446,
- 0.033323392271995544,
- 0.03711775317788124,
- -0.004363890737295151,
- 0.031542010605335236,
- 0.014459075406193733,
- 0.06611274182796478,
- -0.0187112707644701,
- 0.012342301197350025,
- 0.043967436999082565,
- -0.01597021333873272,
- -0.11223510652780533,
- -0.020460952073335648,
- -1.0692727592243045e-8,
- -0.03701019287109375,
- 0.005986061412841082,
- -0.0063817487098276615,
- 0.03834184259176254,
- -0.02289177104830742,
- 0.039783746004104614,
- 0.01748950593173504,
- -0.037215299904346466,
- 0.04129297286272049,
- 0.11179832369089127,
- -0.004483302589505911,
- 0.004298640415072441,
- -0.054341621696949005,
- -0.03511366993188858,
- 0.05794135481119156,
- 0.07827597111463547,
- -0.03569294139742851,
- 0.005655298475176096,
- -0.006470688618719578,
- -0.04238394647836685,
- -0.054095588624477386,
- 0.008032090961933136,
- 0.025169627740979195,
- 0.07784464210271835,
- -0.013505290262401104,
- 0.06274886429309845,
- 0.08904761075973511,
- 0.10195229947566986,
- -0.0033576148562133312,
- 0.009549527429044247,
- -0.006314585916697979,
- 0.015556054189801216,
- -0.061215825378894806,
- -0.07010062783956528,
- 0.06247468292713165,
- -0.09863459318876266,
- 0.015167091973125935,
- -0.047685377299785614,
- 0.09582123160362244,
- -0.02814246341586113,
- 0.007924148812890053,
- -0.11770647019147873,
- -0.045820899307727814,
- 0.009654995054006577,
- 0.05963151156902313,
- 0.11341923475265503,
- 0.006711873691529036,
- 0.08062683045864105,
- 0.027895577251911163,
- -0.002663640072569251,
- -0.030605623498558998,
- 0.019968805834650993,
- -0.08749128133058548,
- -0.02094934694468975,
- 0.006083843298256397,
- 0.004418267868459225,
- -0.033070530742406845,
- -0.04175638407468796,
- -0.10793181508779526,
- -0.027047695592045784,
- 0.11797371506690979,
- -0.006685461383312941,
- -0.005001350771635771,
- -0.057301267981529236
- ]
- },
- {
- "keyword": "site",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08918949216604233,
- -0.031298451125621796,
- -0.10194268077611923,
- 0.007313333451747894,
- -0.017108967527747154,
- -0.023452192544937134,
- 0.090809166431427,
- 0.0427858792245388,
- -0.03068484179675579,
- 0.0007660332485102117,
- 0.026026491075754166,
- -0.009761249646544456,
- 0.03866403549909592,
- -0.020591406151652336,
- -0.055971816182136536,
- -0.019890418276190758,
- 0.05028171092271805,
- 0.012796941213309765,
- -0.030333364382386208,
- -0.05785558745265007,
- -0.014434867538511753,
- 0.040062956511974335,
- 0.031338661909103394,
- -0.00974480714648962,
- -0.011519991792738438,
- 0.041352175176143646,
- -0.05685616657137871,
- 0.06131690740585327,
- 0.06041320413351059,
- -0.10309191793203354,
- -0.03609998896718025,
- 0.029522912576794624,
- 0.10241436958312988,
- 0.018628109246492386,
- 0.006346660200506449,
- -0.06998701393604279,
- 0.06010289862751961,
- 0.001797666773200035,
- -0.012316787615418434,
- 0.03492359071969986,
- -0.04329098016023636,
- -0.05352138727903366,
- 0.012991031631827354,
- -0.011384648270905018,
- -0.026735080406069756,
- 0.08935227245092392,
- 0.0066367993131279945,
- -0.017032576724886894,
- 0.08895190805196762,
- 0.08074484020471573,
- -0.023897971957921982,
- 0.01797041855752468,
- -0.006430936045944691,
- 0.005296393763273954,
- -0.04137807711958885,
- -0.0479324646294117,
- 0.00866704247891903,
- 0.03937789425253868,
- 0.003703567897900939,
- -0.08835940062999725,
- 0.14408187568187714,
- 0.008150833658874035,
- -0.039478469640016556,
- 0.0459410697221756,
- 0.06223945692181587,
- -0.03433399274945259,
- 0.045622680336236954,
- 0.08555759489536285,
- 0.035013359040021896,
- -0.14989225566387177,
- -0.01741158403456211,
- 0.031315308064222336,
- -0.048018667846918106,
- 0.023986538872122765,
- 0.07498211413621902,
- -0.0017065983265638351,
- 0.026015043258666992,
- 0.03740190714597702,
- 0.030168814584612846,
- -0.04557696729898453,
- -0.05522006377577782,
- -0.012285962700843811,
- -0.03224823996424675,
- 0.039118796586990356,
- 0.019379790872335434,
- -0.052499864250421524,
- -0.011344026774168015,
- 0.05652615800499916,
- -0.027538731694221497,
- 0.014055587351322174,
- -0.013161526061594486,
- 0.04663749784231186,
- 0.04502478986978531,
- 0.03798429295420647,
- -0.06515820324420929,
- 0.07373277842998505,
- 0.037592824548482895,
- -0.05680400878190994,
- 0.045700978487730026,
- 0.2118157148361206,
- -0.010370658710598946,
- -0.020488033071160316,
- 0.010715796612203121,
- 0.02646118961274624,
- -0.03326868265867233,
- 0.025815455242991447,
- -0.024272646754980087,
- 0.08412984013557434,
- 0.0354253388941288,
- -0.0005564983002841473,
- -0.05416761338710785,
- 0.07504887878894806,
- -0.004853695165365934,
- -0.03697071596980095,
- 0.03467258810997009,
- -0.003187103196978569,
- -0.00784732773900032,
- 0.015247332863509655,
- 0.06509769707918167,
- -0.08663873374462128,
- -0.010777252726256847,
- -0.04477988928556442,
- -0.02142385020852089,
- -0.007063498720526695,
- 0.021308789029717445,
- -0.04274827986955643,
- -0.009125872515141964,
- -2.7781807974776643e-33,
- 0.05318702012300491,
- -0.017157219350337982,
- 0.00594453327357769,
- 0.0014541700948029757,
- 0.01855977065861225,
- 0.016826728358864784,
- 0.02580094523727894,
- -0.004671067930757999,
- -0.0394149050116539,
- 0.06345538049936295,
- -0.09726583957672119,
- -0.012714019976556301,
- -0.042698975652456284,
- -0.02120065502822399,
- 0.07611951231956482,
- -0.02227102406322956,
- 0.0802345797419548,
- -0.005095196422189474,
- -0.018260100856423378,
- -0.005061057396233082,
- -0.016997111961245537,
- 0.011024745181202888,
- -0.004903626162558794,
- 0.06249592453241348,
- -0.005981667432934046,
- -0.002284948481246829,
- 0.002787219826132059,
- 0.02289011888206005,
- 0.07916805893182755,
- 0.02274082787334919,
- -0.041134659200906754,
- -0.026372157037258148,
- -0.017992978915572166,
- -0.025564102455973625,
- 0.004708045162260532,
- -0.07328757643699646,
- 0.02517118863761425,
- -0.0508904792368412,
- 0.007659771479666233,
- -0.05063535273075104,
- 0.053558170795440674,
- -0.024269696325063705,
- -0.007456869352608919,
- 0.016244271770119667,
- 0.00897173024713993,
- -0.013750948943197727,
- 0.04361928626894951,
- 0.014499932527542114,
- 0.10201030224561691,
- 0.03450030833482742,
- -0.026538627222180367,
- -0.03288010135293007,
- -0.01557475421577692,
- 0.025423360988497734,
- -0.050568826496601105,
- 0.034387607127428055,
- -0.07772846519947052,
- -0.037754010409116745,
- 0.015173457562923431,
- -0.03865933045744896,
- 0.0660279393196106,
- 0.07469450682401657,
- -0.033389560878276825,
- -0.0331951342523098,
- -0.046445369720458984,
- -0.04579130932688713,
- -0.002070335205644369,
- -0.010824136435985565,
- 0.021418875083327293,
- -0.020663179457187653,
- -0.07106237858533859,
- 0.020792396739125252,
- 0.1198250874876976,
- 0.018394622951745987,
- -0.06836844235658646,
- 0.03967171162366867,
- -0.005317256785929203,
- 0.03916357085108757,
- -0.08006667345762253,
- 0.046267785131931305,
- -0.04045567288994789,
- -0.002135187154635787,
- -0.06394924223423004,
- 0.023042280226945877,
- 0.04710066318511963,
- -0.05774156376719475,
- -0.03282645344734192,
- -0.10120761394500732,
- 0.02241475321352482,
- -0.009417165070772171,
- -0.04302763193845749,
- -0.01585824228823185,
- 0.051683008670806885,
- 0.04468689113855362,
- 0.028242144733667374,
- 3.669531531412319e-33,
- -0.02582893706858158,
- -0.07890286296606064,
- -0.010052899830043316,
- 0.08326100558042526,
- 0.02525428682565689,
- 0.040363140404224396,
- 0.04699086397886276,
- 0.0004610410542227328,
- 0.029709884896874428,
- 0.06308618932962418,
- -0.03452605381608009,
- 0.06761449575424194,
- 0.04293748736381531,
- 0.03890256583690643,
- -0.01476046722382307,
- 0.008494041860103607,
- 0.0018409055192023516,
- 0.002148524858057499,
- -0.0761164054274559,
- 0.0010116762714460492,
- -0.03784947842359543,
- -0.01950438693165779,
- -0.09388197958469391,
- -0.05918371304869652,
- -0.017704010009765625,
- 0.0317222885787487,
- 0.05809783190488815,
- -0.024614445865154266,
- -0.03224347531795502,
- 0.006301741115748882,
- 0.04014306515455246,
- -0.010255998931825161,
- -0.07207085192203522,
- 0.10425478965044022,
- -0.021379759535193443,
- 0.10910233855247498,
- -0.025185519829392433,
- 0.06381642073392868,
- -0.018838200718164444,
- -0.009509210474789143,
- 0.026690775528550148,
- -0.060767896473407745,
- -0.10061976313591003,
- 0.1131005808711052,
- -0.06428532302379608,
- 0.06589269638061523,
- -0.040712665766477585,
- 0.04492730274796486,
- 0.08415079861879349,
- -0.0007374054403044283,
- -0.020875031128525734,
- -0.010061468929052353,
- 0.0800928920507431,
- -0.08678300678730011,
- 0.013189841993153095,
- -0.06001889333128929,
- -0.03051137551665306,
- 0.016168270260095596,
- -0.00475270627066493,
- 0.011189969256520271,
- -0.021593252196907997,
- 0.015342905186116695,
- -0.12884663045406342,
- 0.08803311735391617,
- 0.002554189180955291,
- 0.05667215213179588,
- -0.01129633653908968,
- 0.04676758497953415,
- 0.01643478311598301,
- 0.02201710268855095,
- 0.09064482152462006,
- -0.04854229837656021,
- 0.024518616497516632,
- 0.05390290915966034,
- -0.05161002650856972,
- -0.05435257405042648,
- -0.04407724738121033,
- 0.07983413338661194,
- -0.026245389133691788,
- -0.012715288437902927,
- 0.054003700613975525,
- 0.03246355056762695,
- -0.12407329678535461,
- -0.006785442121326923,
- -0.05966677889227867,
- -0.0389636866748333,
- -0.004580770619213581,
- 0.13367706537246704,
- -0.013153767213225365,
- 0.01703232154250145,
- -0.11188534647226334,
- 0.031953103840351105,
- -0.06552860140800476,
- 0.03498309478163719,
- -0.03353361412882805,
- -1.2423573281239442e-8,
- 0.044754061847925186,
- 0.05507499724626541,
- 0.11383681744337082,
- -0.004106050822883844,
- 0.02828943356871605,
- 0.0427112877368927,
- 0.05217339098453522,
- -0.0015487795462831855,
- -0.021516993641853333,
- 0.07906946539878845,
- -0.04574744403362274,
- -0.04855762794613838,
- 0.04098711162805557,
- 0.039880525320768356,
- -0.012828271836042404,
- -0.0949556976556778,
- -0.08946000039577484,
- 0.051593367010354996,
- -0.0067535704001784325,
- -0.06864114105701447,
- 0.036469943821430206,
- 0.03916575387120247,
- 0.01827656291425228,
- -0.044236090034246445,
- 0.023771604523062706,
- 0.01790316216647625,
- 0.0675339326262474,
- 0.15121865272521973,
- -0.02060740254819393,
- -0.09296359121799469,
- -0.003465968417003751,
- 0.06596949696540833,
- 0.026048576459288597,
- -0.07038741558790207,
- 0.08459976315498352,
- 0.04052545502781868,
- -0.08263683319091797,
- -0.048133447766304016,
- 0.0015934132970869541,
- -0.07010314613580704,
- 0.026236478239297867,
- -0.05315462127327919,
- 0.10542421042919159,
- -0.04450608789920807,
- 0.018237315118312836,
- 0.05399316921830177,
- -0.0063457307405769825,
- -0.002559112850576639,
- -0.03499583899974823,
- -0.03151515871286392,
- -0.11021973192691803,
- -0.02898743376135826,
- 0.03852454200387001,
- 0.025221047922968864,
- -0.038367800414562225,
- -0.012045185081660748,
- 0.004474254325032234,
- 0.01730271987617016,
- -0.036128316074609756,
- 0.07005500048398972,
- 0.09214524179697037,
- 0.09529747068881989,
- -0.03046616166830063,
- 0.019710669293999672
- ]
- },
- {
- "keyword": "center",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.02153121493756771,
- 0.020820867270231247,
- -0.11340183019638062,
- 0.002535501029342413,
- 0.026535773649811745,
- 0.042124293744564056,
- 0.03833003342151642,
- 0.050918687134981155,
- 0.07416358590126038,
- 0.022648392245173454,
- -0.0015600703191012144,
- -0.018073080107569695,
- 0.015147806145250797,
- 0.02552580088376999,
- 0.012249413877725601,
- 0.004274838138371706,
- -0.052346114069223404,
- 0.02248125895857811,
- -0.048082683235406876,
- -0.016474854201078415,
- -0.05577772483229637,
- -0.06747841089963913,
- 0.025893306359648705,
- 0.03151785954833031,
- -0.05345115438103676,
- 0.09671542793512344,
- -0.025997551158070564,
- 0.10877068340778351,
- -0.049077603965997696,
- -0.13497626781463623,
- -0.024822600185871124,
- -0.005344379227608442,
- 0.06648921221494675,
- 0.0231718048453331,
- -0.04227198660373688,
- 0.010836093686521053,
- -0.05957129970192909,
- -0.02135377936065197,
- 0.07964013516902924,
- -0.014266380108892918,
- 0.027697203680872917,
- -0.046983759850263596,
- 0.033518459647893906,
- -0.003118290565907955,
- -0.0017823620000854135,
- 0.08536437898874283,
- -0.0454755574464798,
- 0.046698324382305145,
- 0.09136857092380524,
- -0.03825337812304497,
- 0.008293441496789455,
- -0.07285240292549133,
- -0.037590786814689636,
- 0.047014519572257996,
- 0.05553293228149414,
- 0.05839276313781738,
- -0.06980615109205246,
- -0.032764118164777756,
- 0.09796983748674393,
- -0.10084275156259537,
- 0.12064579874277115,
- -0.011633016169071198,
- -0.0008267346420325339,
- 0.09214512258768082,
- -0.0018158373422920704,
- -0.0719582661986351,
- 0.03532347083091736,
- 0.04730026423931122,
- -0.03382549807429314,
- -0.08118794858455658,
- -0.020724553614854813,
- -0.004613589961081743,
- 0.04461222141981125,
- -0.10861318558454514,
- 0.10494266450405121,
- -0.0004914826713502407,
- -0.01935729756951332,
- -0.05003140866756439,
- 0.0023041199892759323,
- -0.010354746133089066,
- 0.026326533406972885,
- 0.06953708082437515,
- 0.016728373244404793,
- 0.10520941019058228,
- -0.07355012744665146,
- 0.0002808102872222662,
- -0.0027809799648821354,
- 0.03469889238476753,
- -0.010862577706575394,
- -0.0021673960145562887,
- -0.058949392288923264,
- 0.027705281972885132,
- -0.0716245248913765,
- -0.05868054926395416,
- -0.094890296459198,
- 0.019454725086688995,
- -0.055776771157979965,
- -0.0984615683555603,
- -0.07460625469684601,
- 0.22947998344898224,
- 0.05615514889359474,
- 0.06350000947713852,
- 0.07603126019239426,
- -0.08813586086034775,
- 0.03852999955415726,
- -0.08034193515777588,
- -0.03683968633413315,
- 0.05589339882135391,
- -0.04414504021406174,
- 0.009586775675415993,
- -0.06765659153461456,
- 0.037619125097990036,
- -0.0544150248169899,
- 0.01399580854922533,
- -0.046438977122306824,
- 0.004496896639466286,
- 0.07647363096475601,
- 0.008788692764937878,
- 0.06740733981132507,
- -0.03615850955247879,
- 0.02832505851984024,
- 0.019773444160819054,
- -0.028753558173775673,
- -0.022178001701831818,
- -0.034888140857219696,
- -0.021302038803696632,
- -0.009113972075283527,
- -4.284289362953451e-33,
- -0.06455985456705093,
- -0.03482900187373161,
- 0.0329812653362751,
- 0.06950847059488297,
- -0.013711594045162201,
- -0.003773059928789735,
- 0.020919688045978546,
- 0.047221846878528595,
- -0.0382634773850441,
- -0.020221132785081863,
- 0.002093565184623003,
- 0.002324273344129324,
- -0.013309094123542309,
- -0.03968295082449913,
- 0.09858237951993942,
- 0.022905776277184486,
- 0.05556230619549751,
- 0.00009223966480931267,
- -0.12738633155822754,
- -0.03604946658015251,
- -0.05306173115968704,
- 0.07594596594572067,
- 0.03951176255941391,
- 0.006251032929867506,
- -0.03671577572822571,
- -0.013050024397671223,
- -0.050261370837688446,
- -0.05030588060617447,
- -0.09397395700216293,
- 0.0008794305031187832,
- 0.012630225159227848,
- 0.05947057902812958,
- -0.008472481742501259,
- -0.001340382150374353,
- 0.021155845373868942,
- 0.09832555800676346,
- 0.01254983339458704,
- -0.03483523055911064,
- -0.015740210190415382,
- -0.009986032731831074,
- -0.04235215485095978,
- 0.012628694996237755,
- -0.04290737584233284,
- 0.024546923115849495,
- 0.02950890175998211,
- 0.08689190447330475,
- 0.039449822157621384,
- 0.04455266892910004,
- 0.05604870989918709,
- -0.029580291360616684,
- -0.005961332470178604,
- 0.0218829233199358,
- -0.05875329673290253,
- -0.0025388903450220823,
- 0.020897094160318375,
- 0.030618155375123024,
- 0.045381780713796616,
- -0.03476431593298912,
- 0.036551617085933685,
- -0.027038710191845894,
- 0.012825126759707928,
- -0.020350754261016846,
- -0.06817536801099777,
- -0.005371901206672192,
- 0.024047821760177612,
- -0.09825929254293442,
- -0.03135346248745918,
- -0.01968933455646038,
- 0.10771790891885757,
- 0.0417531318962574,
- -0.024365738034248352,
- -0.031129082664847374,
- 0.10069743543863297,
- 0.11122041195631027,
- -0.03594111278653145,
- -0.007768870331346989,
- 0.01448774617165327,
- 0.04867037013173103,
- -0.04857538640499115,
- -0.031612198799848557,
- -0.05673651769757271,
- 0.05665713548660278,
- 0.003364537376910448,
- 0.00731801288202405,
- 0.029440248385071754,
- -0.028330620378255844,
- -0.009017701260745525,
- -0.008106932044029236,
- -0.05586287006735802,
- 0.027602849528193474,
- -0.09048846364021301,
- -0.028153207153081894,
- 0.02260390855371952,
- 0.07077008485794067,
- -0.12300913780927658,
- 4.3173578557520054e-33,
- -0.024727918207645416,
- -0.004853551276028156,
- -0.029868019744753838,
- 0.1536155641078949,
- 0.025520609691739082,
- -0.00003304098208900541,
- 0.06807157397270203,
- -0.05589887872338295,
- 0.013821111060678959,
- 0.07165984809398651,
- -0.02713511697947979,
- 0.021015925332903862,
- 0.009180044755339622,
- 0.07403035461902618,
- 0.04722260683774948,
- 0.06721671670675278,
- 0.08674103021621704,
- 0.018807891756296158,
- -0.058356963098049164,
- 0.0193160530179739,
- 0.04339923337101936,
- -0.08406051993370056,
- -0.021782992407679558,
- -0.03284504637122154,
- -0.018571196123957634,
- 0.06066212058067322,
- -0.0040820869617164135,
- 0.011640209704637527,
- -0.04712776094675064,
- 0.023231305181980133,
- -0.03918216750025749,
- -0.03462971746921539,
- -0.02078031376004219,
- 0.038591258227825165,
- -0.028502432629466057,
- -0.016916710883378983,
- -0.03196427598595619,
- 0.07773831486701965,
- -0.06418269127607346,
- -0.003739255713298917,
- 0.09306344389915466,
- 0.020830392837524414,
- -0.05920732021331787,
- 0.09533724188804626,
- 0.08246313780546188,
- -0.007659432478249073,
- 0.036073971539735794,
- 0.0414060577750206,
- -0.0570094995200634,
- 0.09879221767187119,
- -0.12169986963272095,
- 0.017614996060729027,
- -0.009552165865898132,
- -0.036597974598407745,
- 0.025646181777119637,
- 0.09366586059331894,
- -0.055275265127420425,
- -0.033725641667842865,
- -0.01667453907430172,
- -0.009283364750444889,
- 0.031824223697185516,
- -0.0005244719795882702,
- -0.08267217874526978,
- 0.024229291826486588,
- -0.005411811172962189,
- 0.08190739899873734,
- 0.01566426455974579,
- 0.06978324800729752,
- -0.09260237962007523,
- 0.023795943707227707,
- 0.010991597548127174,
- 0.016659729182720184,
- -0.03409035876393318,
- -0.04192577674984932,
- -0.08392132073640823,
- 0.014552931301295757,
- -0.03287852182984352,
- 0.012932420708239079,
- 0.006620852276682854,
- 0.011021047830581665,
- -0.037424422800540924,
- -0.03840535506606102,
- -0.030779963359236717,
- 0.039065536111593246,
- 0.04536929726600647,
- 0.06817451864480972,
- 0.06241638585925102,
- -0.012469085864722729,
- 0.04105011373758316,
- -0.05117379501461983,
- 0.03444867953658104,
- 0.032566919922828674,
- 0.014838088303804398,
- -0.11129359900951385,
- -0.0055142659693956375,
- -1.195309362600483e-8,
- -0.09350184351205826,
- -0.0011010973248630762,
- -0.04161440208554268,
- 0.048940371721982956,
- 0.03518671914935112,
- -0.019129522144794464,
- 0.004148143343627453,
- -0.08642735332250595,
- 0.02226300910115242,
- 0.07756752520799637,
- -0.04152992367744446,
- 0.015962932258844376,
- -0.015993602573871613,
- 0.011559433303773403,
- 0.004536326974630356,
- 0.0581430159509182,
- -0.03956826031208038,
- 0.05365334451198578,
- -0.03524461388587952,
- -0.0008173134992830455,
- -0.03916729614138603,
- 0.00989472959190607,
- -0.036631278693675995,
- -0.028864312916994095,
- -0.00880059227347374,
- -0.0467342883348465,
- -0.04149910435080528,
- 0.10858168452978134,
- 0.014208090491592884,
- -0.009940837509930134,
- 0.03288064897060394,
- 0.02563205361366272,
- -0.0005211420939303935,
- -0.01625494472682476,
- -0.03510560095310211,
- -0.01607552170753479,
- -0.011340012773871422,
- 0.05127725750207901,
- 0.016518069431185722,
- -0.014400742948055267,
- 0.041589248925447464,
- -0.012643651105463505,
- 0.06606682389974594,
- -0.021681472659111023,
- -0.03313031047582626,
- 0.008884281851351261,
- 0.030126292258501053,
- 0.08204465359449387,
- 0.02220888063311577,
- -0.044077809900045395,
- -0.0012067508650943637,
- 0.015109202824532986,
- 0.01721184141933918,
- 0.05592511594295502,
- 0.04718361422419548,
- -0.008405470289289951,
- 0.03219105675816536,
- -0.036498840898275375,
- -0.06891316920518875,
- -0.018482573330402374,
- 0.02062828280031681,
- 0.046154022216796875,
- -0.03809873014688492,
- 0.05802760645747185
- ]
- },
- {
- "keyword": "venue",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.07088857144117355,
- 0.004604470916092396,
- -0.039398688822984695,
- -0.023079073056578636,
- -0.02576415427029133,
- 0.021537110209465027,
- 0.05937638506293297,
- -0.04808416590094566,
- 0.05427234619855881,
- -0.015148927457630634,
- -0.056124038994312286,
- -0.03935336694121361,
- 0.0009918470168486238,
- -0.0035102693364024162,
- 0.055923815816640854,
- -0.03914891928434372,
- 0.05059094727039337,
- -0.013826435431838036,
- 0.02814323827624321,
- 0.00676250783726573,
- -0.05535024777054787,
- -0.052504681050777435,
- -0.013683144003152847,
- 0.032767314463853836,
- -0.02298133075237274,
- 0.03190135955810547,
- -0.03549838438630104,
- 0.06640486419200897,
- 0.06960806250572205,
- -0.08838433772325516,
- 0.0013007073430344462,
- 0.03990962356328964,
- -0.006747888866811991,
- -0.0011380318319424987,
- 0.014892143197357655,
- 0.02843586355447769,
- -0.05271371826529503,
- -0.0908539816737175,
- -0.009571494534611702,
- 0.02931887097656727,
- 0.01243742648512125,
- -0.020627979189157486,
- 0.032912325114011765,
- -0.011535310186445713,
- 0.0357736274600029,
- 0.0003353673964738846,
- 0.005542040802538395,
- 0.006128725595772266,
- 0.024043789133429527,
- 0.02031891793012619,
- 0.04312247410416603,
- -0.008030942641198635,
- 0.02775385044515133,
- -0.05564114823937416,
- 0.0043398188427090645,
- 0.04212845489382744,
- -0.028021447360515594,
- -0.004286812152713537,
- 0.0071110972203314304,
- -0.03080381453037262,
- 0.07989445328712463,
- -0.03097795881330967,
- -0.11158303916454315,
- -0.0034381027799099684,
- -0.04797729104757309,
- -0.01343526877462864,
- -0.007175321225076914,
- 0.07368739694356918,
- 0.009079785086214542,
- -0.06271325796842575,
- 0.012843196280300617,
- 0.01523470226675272,
- 0.09030023962259293,
- -0.037433117628097534,
- 0.048764750361442566,
- 0.012363310903310776,
- -0.08531081676483154,
- -0.06427230685949326,
- 0.003648072713986039,
- 0.018819279968738556,
- 0.042119335383176804,
- -0.07690192759037018,
- 0.03018484078347683,
- -0.033095382153987885,
- -0.004672089591622353,
- -0.031789012253284454,
- -0.012124231085181236,
- 0.033674538135528564,
- -0.021686790511012077,
- -0.012225368060171604,
- -0.07583417743444443,
- 0.05418304726481438,
- -0.044283341616392136,
- 0.030618268996477127,
- -0.014169082045555115,
- 0.05182499811053276,
- -0.016962304711341858,
- 0.01428205892443657,
- 0.04989558830857277,
- 0.23236340284347534,
- 0.014733069576323032,
- 0.14670608937740326,
- 0.021674593910574913,
- 0.03579612076282501,
- 0.011158261448144913,
- -0.04065940901637077,
- -0.04906320199370384,
- 0.11419377475976944,
- 0.0030617685988545418,
- -0.008198052644729614,
- -0.035547222942113876,
- 0.04039778187870979,
- 0.02951427735388279,
- 0.045417580753564835,
- -0.019949866458773613,
- 0.07657384127378464,
- 0.057676199823617935,
- 0.02623620629310608,
- 0.03276937082409859,
- -0.10314253717660904,
- 0.026684744283556938,
- 0.10069887340068817,
- -0.02401503175497055,
- 0.04203318804502487,
- -0.0805405005812645,
- -0.05461674556136131,
- -0.026374278590083122,
- -4.552974678114794e-33,
- -0.02836921066045761,
- -0.06151363626122475,
- -0.034550122916698456,
- -0.05123986303806305,
- 0.07789377868175507,
- 0.01977192796766758,
- -0.10149123519659042,
- 0.0004873225698247552,
- -0.024001751095056534,
- 0.012028537690639496,
- 0.010136277414858341,
- -0.10730121284723282,
- 0.037878233939409256,
- -0.13004231452941895,
- 0.06976714730262756,
- 0.017961015924811363,
- 0.0065031712874770164,
- 0.09769685566425323,
- -0.07324397563934326,
- -0.06744236499071121,
- -0.08625622093677521,
- 0.045550767332315445,
- -0.011085324920713902,
- 0.054619595408439636,
- -0.03553839400410652,
- 0.04864661023020744,
- 0.009830477647483349,
- 0.0023420616053044796,
- 0.06790674477815628,
- -0.016684135422110558,
- -0.0017363728256896138,
- -0.0014438730431720614,
- -0.03541196137666702,
- -0.01279363501816988,
- 0.07438034564256668,
- 0.017429465427994728,
- -0.022256143391132355,
- -0.06147557497024536,
- 0.018751272931694984,
- -0.009590059518814087,
- -0.013833069242537022,
- 0.03315958380699158,
- -0.0530342198908329,
- 0.0034081966150552034,
- -0.022396564483642578,
- 0.09641199558973312,
- -0.06449111551046371,
- 0.02343294396996498,
- 0.11361659318208694,
- -0.0023066906724125147,
- -0.021522246301174164,
- 0.01913004368543625,
- -0.0758361965417862,
- 0.005506905261427164,
- 0.04348866641521454,
- -0.06573300808668137,
- -0.02730487287044525,
- -0.03365591540932655,
- 0.0669313371181488,
- -0.05117490142583847,
- 0.025514919310808182,
- 0.08512142300605774,
- -0.03980452939867973,
- 0.034235380589962006,
- -0.05157722532749176,
- -0.07036036252975464,
- 0.00007346164056798443,
- -0.1112711951136589,
- 0.10230765491724014,
- -0.012386206537485123,
- 0.0028553572483360767,
- 0.05068577080965042,
- 0.10492443293333054,
- 0.02126164548099041,
- -0.024244040250778198,
- -0.02989991381764412,
- -0.07057148218154907,
- 0.039867304265499115,
- -0.013736492022871971,
- 0.06131548807024956,
- -0.02157534845173359,
- 0.01283531729131937,
- 0.0036087194457650185,
- 0.055784523487091064,
- -0.0016395964194089174,
- -0.010425224900245667,
- 0.006234044674783945,
- -0.1189870610833168,
- -0.0867411196231842,
- -0.05768466368317604,
- -0.11350056529045105,
- -0.028243793174624443,
- 0.004884840454906225,
- -0.03553728014230728,
- -0.033619605004787445,
- 4.0569509595563286e-33,
- 0.06036587804555893,
- -0.04539312794804573,
- 0.010555955581367016,
- 0.05962376296520233,
- 0.01798390969634056,
- 0.027768956497311592,
- -0.008817841298878193,
- -0.04204685986042023,
- 0.05836094543337822,
- 0.043588798493146896,
- -0.07668356597423553,
- 0.0483650267124176,
- 0.11520220339298248,
- -0.01669185794889927,
- 0.013460480608046055,
- 0.01620657928287983,
- 0.051666583865880966,
- 0.006612791214138269,
- -0.01956085115671158,
- 0.0351877398788929,
- -0.03564118221402168,
- -0.06660201400518417,
- -0.011715594679117203,
- -0.03290779888629913,
- -0.027735598385334015,
- 0.02847357653081417,
- 0.06986784934997559,
- -0.07132253795862198,
- -0.0877360925078392,
- -0.016415270045399666,
- -0.03614939749240875,
- -0.04726561903953552,
- -0.049344874918460846,
- 0.006966026965528727,
- 0.022232310846447945,
- 0.13141123950481415,
- 0.029397400096058846,
- -0.012706823647022247,
- -0.08566268533468246,
- -0.030549248680472374,
- 0.036090072244405746,
- -0.008672826923429966,
- -0.01458957139402628,
- 0.12951351702213287,
- 0.06202537938952446,
- 0.045125607401132584,
- -0.06374653428792953,
- 0.050287798047065735,
- 0.07749809324741364,
- -0.049129635095596313,
- -0.08106251060962677,
- 0.008422886952757835,
- -0.005203681066632271,
- -0.075300432741642,
- 0.042935606092214584,
- 0.07276435941457748,
- -0.02015651948750019,
- 0.0055498587898910046,
- -0.009258251637220383,
- 0.02043105475604534,
- 0.0379800945520401,
- 0.07405496388673782,
- -0.06886420398950577,
- 0.06790182739496231,
- 0.026883192360401154,
- 0.08414065092802048,
- -0.04827454313635826,
- 0.051888156682252884,
- -0.05280119925737381,
- 0.06351315975189209,
- -0.03565077856183052,
- 0.016552159562706947,
- -0.03242964297533035,
- 0.058239683508872986,
- -0.05866774544119835,
- 0.03590793162584305,
- 0.06874820590019226,
- 0.06719627231359482,
- 0.023628544062376022,
- -0.04956026375293732,
- 0.07366105914115906,
- 0.03324798122048378,
- -0.04762299358844757,
- -0.008068272843956947,
- 0.057749394327402115,
- 0.07511209696531296,
- 0.07294084876775742,
- 0.02553344890475273,
- -0.049202147871255875,
- 0.04492166265845299,
- 0.04054410010576248,
- 0.05873127654194832,
- -0.023156460374593735,
- -0.0771704837679863,
- 0.02815389260649681,
- -1.1067406546771963e-8,
- -0.06028231978416443,
- 0.07269224524497986,
- -0.07892275601625443,
- -0.00522434338927269,
- -0.04219839349389076,
- -0.11918860673904419,
- 0.04899120703339577,
- -0.0075195180252194405,
- 0.024529756978154182,
- 0.0787254124879837,
- -0.06571274250745773,
- -0.0578768327832222,
- -0.017033206298947334,
- -0.00758691830560565,
- 0.0015939759323373437,
- 0.009988837875425816,
- -0.08133789896965027,
- -0.0007462489302270114,
- -0.09291058033704758,
- -0.009023994207382202,
- 0.015631485730409622,
- 0.034953199326992035,
- 0.055778611451387405,
- -0.06385156512260437,
- 0.019862309098243713,
- -0.01580219715833664,
- 0.053591106086969376,
- 0.06323671340942383,
- 0.039270225912332535,
- -0.046002715826034546,
- 0.014294929802417755,
- 0.025304004549980164,
- 0.0014179801801219583,
- -0.020536061376333237,
- 0.021379513666033745,
- -0.03350459411740303,
- -0.055091504007577896,
- 0.015668652951717377,
- 0.014022937044501305,
- -0.027927152812480927,
- -0.08071614056825638,
- -0.0758696123957634,
- -0.016702810302376747,
- 0.01142585277557373,
- 0.05625925213098526,
- 0.06789115071296692,
- 0.05837162956595421,
- 0.06561105698347092,
- 0.003197502577677369,
- -0.005024154670536518,
- -0.10346745699644089,
- -0.009692485444247723,
- -0.02118338830769062,
- -0.016627179458737373,
- -0.03093210607767105,
- 0.03411651775240898,
- 0.011349943466484547,
- 0.03513308987021446,
- 0.0065317172557115555,
- 0.02751537226140499,
- 0.043800387531518936,
- 0.05141126364469528,
- 0.018135473132133484,
- 0.023172486573457718
- ]
- },
- {
- "keyword": "space",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.020407093688845634,
- -0.015262187458574772,
- 0.007394012063741684,
- 0.0137732969596982,
- -0.07555051892995834,
- 0.013103329576551914,
- 0.12081098556518555,
- -0.02851937897503376,
- 0.09274116903543472,
- -0.006132997572422028,
- 0.058829229325056076,
- -0.02501203492283821,
- 0.009913705289363861,
- -0.013631794601678848,
- -0.03740682825446129,
- -0.06649570912122726,
- 0.0033085013274103403,
- -0.04078076034784317,
- -0.10747087001800537,
- -0.03585897758603096,
- 0.01607760600745678,
- 0.013402821496129036,
- -0.017618661746382713,
- 0.04755520448088646,
- 0.011841021478176117,
- 0.11271077394485474,
- -0.015536367893218994,
- 0.0480102114379406,
- -0.0009637934272177517,
- -0.09280923753976822,
- 0.02358657494187355,
- 0.004219478461891413,
- 0.021349145099520683,
- -0.04187536984682083,
- 0.026491105556488037,
- 0.04423162713646889,
- 0.03258617967367172,
- -0.001094663399271667,
- -0.00844729132950306,
- -0.0485495887696743,
- -0.07063137739896774,
- -0.09458756446838379,
- 0.030012529343366623,
- 0.05411052703857422,
- -0.031081384047865868,
- -0.001867580460384488,
- 0.013199670240283012,
- -0.013753642328083515,
- 0.06717328727245331,
- -0.013645478524267673,
- -0.052843060344457626,
- -0.009989377111196518,
- -0.07643609493970871,
- 0.047294437885284424,
- 0.06042217090725899,
- 0.010773366317152977,
- -0.013586402870714664,
- 0.0496443547308445,
- 0.021765943616628647,
- -0.11587616801261902,
- 0.054799869656562805,
- -0.04453956335783005,
- -0.01946251466870308,
- 0.06254956871271133,
- 0.01608627289533615,
- -0.03775452449917793,
- -0.07004716247320175,
- 0.10203501582145691,
- -0.0171219352632761,
- -0.011178169399499893,
- -0.016724810004234314,
- 0.0526752732694149,
- -0.05708393082022667,
- 0.01620451547205448,
- 0.06616418808698654,
- 0.007092416752129793,
- 0.0281801950186491,
- 0.04879691079258919,
- 0.13894042372703552,
- -0.007612531539052725,
- 0.07297947257757187,
- 0.0014476242940872908,
- -0.14747637510299683,
- 0.0632135346531868,
- -0.07463748008012772,
- -0.00011804630048573017,
- -0.020190516486763954,
- -0.006392334587872028,
- -0.093878835439682,
- -0.03254923224449158,
- 0.016954530030488968,
- -0.029483675956726074,
- 0.02968176081776619,
- -0.013629995286464691,
- -0.12953884899616241,
- -0.0035835937596857548,
- -0.05554986372590065,
- -0.03401816636323929,
- 0.045033615082502365,
- 0.21890589594841003,
- 0.021404709666967392,
- 0.023371439427137375,
- 0.02444487065076828,
- 0.05208549275994301,
- 0.007707798853516579,
- -0.039671506732702255,
- 0.008983269333839417,
- 0.01257952768355608,
- 0.03468131273984909,
- -0.006643925327807665,
- -0.035685211420059204,
- -0.0677993968129158,
- -0.08962345868349075,
- 0.06990402191877365,
- -0.0017759777838364244,
- 0.011810238473117352,
- 0.026955820620059967,
- 0.004092556890100241,
- 0.02375910058617592,
- 0.0006057642749510705,
- -0.016989419236779213,
- -0.0059347497299313545,
- -0.02828659489750862,
- -0.008894998580217361,
- -0.05955454707145691,
- -0.06943882256746292,
- 0.018182888627052307,
- -4.102965685919267e-33,
- -0.021379563957452774,
- -0.11560916155576706,
- 0.0720183327794075,
- 0.020889829844236374,
- 0.037983957678079605,
- -0.005160375032573938,
- -0.06296061724424362,
- 0.1049853190779686,
- -0.009298902936279774,
- 0.030226165428757668,
- -0.013712824322283268,
- -0.00020181684521958232,
- 0.018602022901177406,
- -0.028497794643044472,
- 0.1269521266222,
- 0.039525918662548065,
- 0.03537663817405701,
- 0.025503680109977722,
- -0.04741276800632477,
- -0.00401812931522727,
- -0.08962850272655487,
- 0.04898879677057266,
- -0.016799671575427055,
- -0.01793965883553028,
- 0.01789812557399273,
- -0.024758949875831604,
- -0.05280909687280655,
- -0.1160021498799324,
- -0.07945974916219711,
- 0.002241838024929166,
- -0.09603336453437805,
- 0.06954094767570496,
- -0.0010675210505723953,
- 0.0240437313914299,
- 0.032880015671253204,
- 0.10243003070354462,
- -0.030020562931895256,
- -0.03604867309331894,
- -0.04128747805953026,
- -0.04798262566328049,
- -0.06671161204576492,
- -0.0038675484247505665,
- -0.006444701459258795,
- 0.014614284969866276,
- 0.059761352837085724,
- 0.08888307213783264,
- 0.07921497523784637,
- -0.03990059345960617,
- -0.0019134286558255553,
- 0.08011337369680405,
- 0.06515194475650787,
- 0.013787166215479374,
- -0.08763765543699265,
- 0.008627003990113735,
- 0.05470126122236252,
- -0.010069914162158966,
- -0.012967301532626152,
- 0.023298056796193123,
- -0.04478136822581291,
- 0.048211172223091125,
- -0.017226099967956543,
- 0.0122993104159832,
- 0.07952594012022018,
- 0.03464429825544357,
- 0.028962470591068268,
- -0.08544113487005234,
- 0.06462843716144562,
- -0.02050604298710823,
- 0.03433661535382271,
- 0.019209222868084908,
- -0.10559287667274475,
- -0.021490564569830894,
- 0.029954129830002785,
- 0.050101324915885925,
- 0.0053265029564499855,
- -0.05516708642244339,
- -0.013706556521356106,
- -0.023414257913827896,
- -0.08413492143154144,
- -0.004513280466198921,
- -0.026702331379055977,
- -0.08084022253751755,
- -0.009147899225354195,
- -0.004218423273414373,
- -0.032986000180244446,
- 0.00445873849093914,
- 0.025363299995660782,
- -0.027366477996110916,
- 0.006513163447380066,
- -0.0016700965352356434,
- -0.11055492609739304,
- -0.029859058558940887,
- 0.04960040748119354,
- -0.013321710750460625,
- -0.10330768674612045,
- 3.5570392934325186e-33,
- -0.03961189463734627,
- -0.025663062930107117,
- -0.049780070781707764,
- 0.02074720337986946,
- 0.030122078955173492,
- 0.03584648668766022,
- -0.01886981539428234,
- -0.023436499759554863,
- -0.047614339739084244,
- 0.08096103370189667,
- -0.06230688467621803,
- 0.010714747942984104,
- 0.11102839559316635,
- 0.00573940621688962,
- -0.014007569290697575,
- 0.031191566959023476,
- 0.09213057160377502,
- -0.03821912035346031,
- -0.038082048296928406,
- 0.022700859233736992,
- 0.04678197577595711,
- -0.06431683152914047,
- 0.008394584059715271,
- -0.04199864715337753,
- -0.04525068402290344,
- 0.053644388914108276,
- 0.06644000113010406,
- -0.02315140888094902,
- -0.031766653060913086,
- 0.09221383929252625,
- -0.022670883685350418,
- -0.022807292640209198,
- -0.02598648890852928,
- 0.01998443901538849,
- -0.045983895659446716,
- 0.037613969296216965,
- 0.06729552149772644,
- 0.042520150542259216,
- -0.04875358194112778,
- -0.07483994960784912,
- -0.0036283964291214943,
- 0.05451538786292076,
- 0.04063420742750168,
- 0.14790692925453186,
- -0.0068612489849328995,
- -0.03664331138134003,
- 0.025793014094233513,
- 0.02767934836447239,
- -0.0662146508693695,
- 0.012971063144505024,
- -0.07924313843250275,
- -0.027721012011170387,
- -0.017697149887681007,
- -0.03598347306251526,
- -0.022115884348750114,
- 0.04580230265855789,
- -0.04491739720106125,
- 0.026662228628993034,
- 0.0467037558555603,
- -0.001373944105580449,
- 0.04922237992286682,
- 0.0046179029159247875,
- 0.020375942811369896,
- 0.043316978961229324,
- -0.02721586264669895,
- -0.035692885518074036,
- -0.010336190462112427,
- 0.04637553542852402,
- -0.07424689829349518,
- 0.06425128877162933,
- 0.0452999621629715,
- 0.008800962939858437,
- -0.07505806535482407,
- 0.057472359389066696,
- -0.03928317874670029,
- 0.07722275704145432,
- 0.13237883150577545,
- -0.0047686477191746235,
- 0.028495747596025467,
- 0.031172340735793114,
- -0.002163497032597661,
- 0.027715792879462242,
- 0.023987898603081703,
- 0.09266548603773117,
- 0.004175052046775818,
- 0.09200818091630936,
- -0.017581291496753693,
- -0.010560226626694202,
- -0.01479088794440031,
- -0.014194734394550323,
- -0.019885556772351265,
- 0.042005687952041626,
- -0.04764164984226227,
- 0.007797645404934883,
- -0.042374707758426666,
- -1.1457403026327029e-8,
- -0.04190070554614067,
- 0.016322238370776176,
- 0.014568625018000603,
- 0.025540564209222794,
- -0.0026374494191259146,
- 0.020968424156308174,
- 0.08457090705633163,
- 0.12695743143558502,
- -0.03409780561923981,
- 0.04209814965724945,
- -0.02529292367398739,
- 0.07706362009048462,
- -0.06500847637653351,
- 0.061492372304201126,
- -0.008152131922543049,
- -0.014544567093253136,
- -0.04067105054855347,
- -0.02638303115963936,
- -0.05131474882364273,
- 0.10840817540884018,
- -0.009838384576141834,
- 0.055674806237220764,
- -0.005873454734683037,
- -0.03465314954519272,
- 0.0054844035767018795,
- -0.01932954229414463,
- 0.05308977887034416,
- 0.05196313560009003,
- 0.07369091361761093,
- -0.04873237758874893,
- 0.09828810393810272,
- 0.00066733593121171,
- -0.021842045709490776,
- -0.02570810355246067,
- -0.06560925394296646,
- -0.043344736099243164,
- 0.01400862354785204,
- 0.06489909440279007,
- -0.03211643174290657,
- -0.0037601415533572435,
- -0.06001772731542587,
- 0.01873835362493992,
- 0.05664164200425148,
- -0.03190330043435097,
- -0.03205249086022377,
- 0.022001465782523155,
- 0.041050154715776443,
- -0.018725616857409477,
- -0.05335896834731102,
- 0.006653397809714079,
- -0.023914078250527382,
- 0.0024202100466936827,
- -0.00445561995729804,
- 0.009299913421273232,
- -0.022828303277492523,
- 0.05541527271270752,
- -0.0690075010061264,
- 0.06794961541891098,
- -0.08433165401220322,
- 0.06457604467868805,
- 0.012973439879715443,
- 0.05055221542716026,
- -0.03441812843084335,
- 0.042106784880161285
- ]
- },
- {
- "keyword": "room",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.017930977046489716,
- 0.013698624446988106,
- -0.0695650652050972,
- 0.05330896005034447,
- -0.007956191897392273,
- -0.035497359931468964,
- 0.08994831889867783,
- -0.02315807342529297,
- 0.04438674822449684,
- -0.03633497282862663,
- 0.03419462591409683,
- -0.06504510343074799,
- 0.07113786786794662,
- -0.012116042897105217,
- 0.03454577922821045,
- -0.023568328469991684,
- 0.029436949640512466,
- -0.03298642486333847,
- -0.053723692893981934,
- -0.033800188452005386,
- -0.010942239314317703,
- 0.0482855848968029,
- 0.06333714723587036,
- -0.0021157271694391966,
- 0.006734018214046955,
- 0.08708814531564713,
- -0.03352050483226776,
- 0.055037837475538254,
- 0.04281602427363396,
- -0.10777664929628372,
- 0.06532668322324753,
- 0.051790110766887665,
- 0.0515294224023819,
- -0.022850146517157555,
- 0.07401333749294281,
- 0.007877432741224766,
- -0.001456752186641097,
- -0.005162012297660112,
- 0.042003076523542404,
- -0.02368847280740738,
- -0.04668140038847923,
- -0.030766882002353668,
- 0.01780777797102928,
- -0.003816066076979041,
- -0.028626441955566406,
- 0.045403964817523956,
- -0.018207505345344543,
- 0.008740548975765705,
- 0.08311405777931213,
- -0.017439475283026695,
- -0.036367546766996384,
- 0.03246971592307091,
- -0.07570289820432663,
- 0.12467499077320099,
- 0.018718980252742767,
- 0.11374582350254059,
- 0.008611571975052357,
- 0.007580937352031469,
- 0.006076432764530182,
- -0.08730582147836685,
- 0.06975334882736206,
- -0.010747148655354977,
- 0.013613218441605568,
- 0.022305816411972046,
- -0.033644016832113266,
- -0.01580999605357647,
- -0.03683280944824219,
- 0.11067019402980804,
- -0.0019078231416642666,
- -0.02031993493437767,
- 0.011211426928639412,
- 0.071128711104393,
- 0.021302463486790657,
- 0.05479469895362854,
- 0.047064051032066345,
- -0.013036535121500492,
- 0.032813314348459244,
- -0.06209859251976013,
- 0.09067043662071228,
- 0.02172519639134407,
- -0.03873993828892708,
- -0.04270702227950096,
- -0.05575618892908096,
- 0.030694030225276947,
- -0.07285139709711075,
- -0.0386941097676754,
- 0.012989367358386517,
- 0.042159464210271835,
- -0.11445804685354233,
- 0.016197146847844124,
- -0.0338640995323658,
- 0.027413809671998024,
- -0.004315406084060669,
- -0.016518371179699898,
- -0.022596323862671852,
- 0.00912563782185316,
- -0.012305798009037971,
- -0.055398110300302505,
- -0.03486603498458862,
- 0.2026904970407486,
- 0.007420592941343784,
- 0.02047806791961193,
- 0.006927985232323408,
- -0.027514714747667313,
- -0.05669712647795677,
- -0.062159549444913864,
- 0.01377043779939413,
- 0.03219945356249809,
- -0.016280191019177437,
- -0.010530052706599236,
- -0.04648459702730179,
- 0.01308113057166338,
- -0.02061915583908558,
- 0.03238183632493019,
- 0.04522751271724701,
- 0.009446795098483562,
- 0.09509453922510147,
- -0.025915319100022316,
- 0.01642492413520813,
- 0.042888592928647995,
- 0.062247082591056824,
- 0.01689079962670803,
- 0.022332653403282166,
- 0.02419682964682579,
- -0.029082056134939194,
- -0.06371375173330307,
- -0.033862706273794174,
- -4.518436450035727e-33,
- 0.030301695689558983,
- -0.06698118150234222,
- -0.051652856171131134,
- 0.05895804986357689,
- 0.1152983084321022,
- 0.015510499477386475,
- -0.04648509994149208,
- 0.079274483025074,
- -0.004001751076430082,
- 0.049159593880176544,
- 0.012101002968847752,
- 0.0222775898873806,
- -0.040042515844106674,
- -0.04581447318196297,
- 0.14675796031951904,
- 0.0318094901740551,
- 0.037671174854040146,
- 0.07608786970376968,
- -0.08759964257478714,
- -0.023491520434617996,
- -0.06676630675792694,
- 0.04010792449116707,
- -0.007950383238494396,
- 0.08297369629144669,
- -0.02837657928466797,
- -0.0036641510669142008,
- -0.001222272519953549,
- -0.05113621801137924,
- -0.0018812305061146617,
- -0.00036386013380251825,
- -0.07032627612352371,
- 0.046162426471710205,
- 0.005316818132996559,
- -0.012522905133664608,
- 0.006994767114520073,
- 0.01467521209269762,
- -0.008503466844558716,
- -0.043667983263731,
- -0.00529171759262681,
- -0.041483908891677856,
- -0.06028767675161362,
- 0.028397394344210625,
- 0.02094309963285923,
- -0.020006025210022926,
- 0.006295616738498211,
- 0.09530292451381683,
- 0.057987261563539505,
- -0.03753683343529701,
- -0.023777738213539124,
- 0.059615060687065125,
- -0.024785274639725685,
- -0.02539713867008686,
- -0.10506489872932434,
- 0.018747694790363312,
- -0.043552909046411514,
- -0.06435123085975647,
- 0.01605909876525402,
- -0.04582575336098671,
- 0.03378421813249588,
- 0.04868408292531967,
- 0.043278586119413376,
- 0.0935615673661232,
- 0.03616826981306076,
- 0.03855245187878609,
- -0.03163355961441994,
- -0.09725099802017212,
- 0.019187752157449722,
- -0.024530155584216118,
- 0.08984583616256714,
- -0.007699254434555769,
- -0.11994915455579758,
- -0.035816654562950134,
- 0.004938052035868168,
- 0.044615842401981354,
- 0.007681958377361298,
- -0.027435339987277985,
- -0.07602424919605255,
- 0.06818126142024994,
- -0.10246634483337402,
- -0.07872822880744934,
- 0.017167991027235985,
- -0.01755267009139061,
- -0.005137589760124683,
- 0.06973083317279816,
- -0.0032943885307759047,
- 0.010383494198322296,
- -0.008916576392948627,
- 0.006185043603181839,
- -0.06362812966108322,
- -0.00513446144759655,
- -0.04261884093284607,
- -0.003940647933632135,
- 0.0746188536286354,
- 0.016533728688955307,
- -0.07344216108322144,
- 4.461543258139898e-33,
- 0.03197137638926506,
- -0.015440459363162518,
- -0.11011433601379395,
- 0.04605061188340187,
- 0.0655699372291565,
- -0.023666491732001305,
- -0.0020172165241092443,
- 0.0346490740776062,
- 0.049617134034633636,
- 0.06797520071268082,
- -0.0529075488448143,
- -0.014927037060260773,
- 0.11518359184265137,
- 0.022827720269560814,
- 0.06350786983966827,
- 0.016283497214317322,
- 0.14506496489048004,
- -0.07140263170003891,
- 0.018233682960271835,
- 0.03143332526087761,
- 0.0059391506947577,
- -0.03926870971918106,
- 0.01257592998445034,
- -0.050312332808971405,
- -0.0726560726761818,
- 0.06947292387485504,
- 0.04725222662091255,
- 0.010193577036261559,
- -0.04199998825788498,
- 0.03516928851604462,
- -0.04934007301926613,
- -0.03286208212375641,
- -0.026861928403377533,
- 0.07180871814489365,
- 0.01886204071342945,
- -0.004896612372249365,
- 0.03823322802782059,
- 0.03729667887091637,
- -0.08525824546813965,
- -0.011225808411836624,
- 0.11358924210071564,
- -0.02029937505722046,
- -0.07037030160427094,
- 0.16790519654750824,
- 0.03381562605500221,
- 0.012346068397164345,
- -0.028606757521629333,
- -0.03629892319440842,
- -0.009180531837046146,
- 0.013336959294974804,
- -0.06860616058111191,
- -0.029856933280825615,
- -0.04480508342385292,
- -0.0947558730840683,
- -0.03472388535737991,
- 0.023148374632000923,
- -0.06383035331964493,
- 0.022308045998215675,
- 0.06740319728851318,
- 0.0962468758225441,
- 0.021053964272141457,
- 0.022754399105906487,
- -0.03220970183610916,
- 0.06039741635322571,
- -0.05933734402060509,
- 0.02474455162882805,
- -0.040788684040308,
- -0.005379878915846348,
- 0.022757548838853836,
- 0.04870344698429108,
- -0.021022357046604156,
- 0.05426470935344696,
- -0.009983178228139877,
- 0.1076759397983551,
- -0.044763799756765366,
- 0.0361795648932457,
- -0.003285087877884507,
- -0.012958844192326069,
- 0.014211525209248066,
- -0.02776234596967697,
- -0.06566552072763443,
- -0.02264539897441864,
- -0.08320300281047821,
- 0.014795917086303234,
- -0.010668819770216942,
- -0.0003121687041129917,
- 0.028429990634322166,
- 0.0803670883178711,
- -0.04733872041106224,
- -0.07403375953435898,
- 0.013216247782111168,
- 0.04077296331524849,
- -0.044704992324113846,
- -0.10180604457855225,
- 0.010025295428931713,
- -1.1920988640667929e-8,
- -0.03731866180896759,
- 0.007137386128306389,
- 0.0005922136479057372,
- -0.01582827977836132,
- 0.02444150485098362,
- -0.07480590045452118,
- 0.0319829098880291,
- 0.07050994038581848,
- 0.0752079039812088,
- 0.08650815486907959,
- 0.05729210004210472,
- 0.049919553101062775,
- 0.04147731512784958,
- 0.053029511123895645,
- -0.04123413935303688,
- 0.01876717060804367,
- -0.0990113615989685,
- -0.03915916383266449,
- -0.042854003608226776,
- 0.01486887875944376,
- 0.05008009076118469,
- -0.027487320825457573,
- -0.009363613091409206,
- -0.009215091355144978,
- 0.033406808972358704,
- -0.07035141438245773,
- -0.02644278109073639,
- 0.06709519773721695,
- 0.004571104887872934,
- -0.02809128351509571,
- 0.02276707999408245,
- 0.010622185654938221,
- -0.06144524738192558,
- -0.011656224727630615,
- -0.04345071688294411,
- -0.05302412807941437,
- 0.016836345195770264,
- -0.006230957340449095,
- 0.02526250295341015,
- -0.03549310564994812,
- -0.08113210648298264,
- -0.12175952643156052,
- -0.02139252796769142,
- -0.03972809761762619,
- -0.016755497083067894,
- -0.02044336311519146,
- 0.0931878536939621,
- -0.025320319458842278,
- -0.028880618512630463,
- -0.05126398056745529,
- -0.0270940400660038,
- 0.01119375042617321,
- -0.009120117872953415,
- 0.031898435205221176,
- 0.04347705468535423,
- 0.012901924550533295,
- -0.013194368220865726,
- 0.04390311613678932,
- -0.07455889880657196,
- 0.029428545385599136,
- 0.08020436763763428,
- 0.10710383951663971,
- -0.08580844104290009,
- 0.019675761461257935
- ]
- },
- {
- "keyword": "warehouse",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.0031144320964813232,
- 0.013548427261412144,
- -0.07005182653665543,
- 0.04703092947602272,
- -0.016142819076776505,
- 0.003496962133795023,
- 0.046717654913663864,
- -0.0224232729524374,
- -0.0032796766608953476,
- -0.04064102843403816,
- 0.0886009931564331,
- -0.04977431148290634,
- 0.045518215745687485,
- -0.0039593554101884365,
- -0.03504796326160431,
- 0.02119741030037403,
- 0.09955522418022156,
- -0.0003494694537948817,
- -0.02324131317436695,
- -0.06980738788843155,
- -0.06617207080125809,
- 0.03608446940779686,
- -0.0691336914896965,
- 0.0007551599410362542,
- -0.017787491902709007,
- 0.07786484807729721,
- -0.006168913561850786,
- 0.033972833305597305,
- -0.011469020508229733,
- -0.12126899510622025,
- -0.062097519636154175,
- -0.013474857434630394,
- 0.005967095494270325,
- 0.05760318413376808,
- 0.06666101515293121,
- 0.03570621460676193,
- 0.008271662518382072,
- -0.02938077412545681,
- 0.10235211253166199,
- -0.040882546454668045,
- 0.018844610080122948,
- -0.031265389174222946,
- -0.021354326978325844,
- -0.020704325288534164,
- -0.07138796150684357,
- -0.030766388401389122,
- 0.001065433374606073,
- -0.014175393618643284,
- 0.08828853815793991,
- 0.03694174066185951,
- 0.010850885882973671,
- -0.017704494297504425,
- -0.00874423235654831,
- 0.07084713131189346,
- 0.015995724126696587,
- 0.02994796261191368,
- -0.04484131187200546,
- 0.024606266990303993,
- -0.013165383599698544,
- -0.06955579668283463,
- 0.10150310397148132,
- -0.045986391603946686,
- 0.008889887481927872,
- -0.03435894846916199,
- 0.051601894199848175,
- -0.012918819673359394,
- -0.02124047838151455,
- 0.018525423482060432,
- -0.027807489037513733,
- -0.060966797173023224,
- -0.018543658778071404,
- 0.021095141768455505,
- -0.03172983229160309,
- 0.03953107073903084,
- 0.03447037935256958,
- 0.002155191032215953,
- 0.025129148736596107,
- -0.06850690394639969,
- 0.06610304117202759,
- 0.001855085021816194,
- -0.010182521305978298,
- 0.027294307947158813,
- -0.07240869104862213,
- -0.026804858818650246,
- -0.12800900638103485,
- -0.016196364536881447,
- -0.0009248098358511925,
- 0.08686976879835129,
- -0.012690399773418903,
- -0.037083063274621964,
- -0.0012874077074229717,
- -0.0358557403087616,
- -0.06868357211351395,
- -0.022210652008652687,
- -0.1043618768453598,
- -0.04028261452913284,
- -0.030108623206615448,
- 0.022325145080685616,
- 0.021720610558986664,
- 0.16370657086372375,
- 0.06620494276285172,
- 0.11786694824695587,
- 0.02642870880663395,
- -0.04153315722942352,
- -0.1170259490609169,
- -0.10389015823602676,
- -0.04561544954776764,
- 0.04336756840348244,
- -0.01814453862607479,
- -0.0013829001691192389,
- 0.014090975746512413,
- 0.014786293730139732,
- -0.06274712830781937,
- 0.016619011759757996,
- -0.045058321207761765,
- 0.10243286192417145,
- 0.014368273317813873,
- -0.05582201108336449,
- -0.019708797335624695,
- -0.049312692135572433,
- 0.04319128394126892,
- 0.005280325189232826,
- 0.014219492673873901,
- 0.05069611966609955,
- -0.016883615404367447,
- -0.024456994608044624,
- -0.005544672254472971,
- -4.3867296548657826e-33,
- -0.042913954704999924,
- -0.022724170237779617,
- 0.02280919998884201,
- 0.03630684316158295,
- 0.10479748249053955,
- -0.04521336033940315,
- -0.0047099352814257145,
- 0.017420019954442978,
- 0.005828805733472109,
- 0.04403447359800339,
- -0.08862368017435074,
- 0.0641985833644867,
- -0.04972206801176071,
- -0.062042854726314545,
- 0.025212731212377548,
- -0.011286910623311996,
- -0.022608313709497452,
- 0.03686438500881195,
- -0.0036272939760237932,
- -0.01263307873159647,
- -0.06965421885251999,
- 0.021276788786053658,
- -0.015002522617578506,
- 0.05860943719744682,
- 0.053014736622571945,
- 0.0024701999500393867,
- -0.01417297963052988,
- -0.051908209919929504,
- 0.058237224817276,
- 0.03740505129098892,
- 0.05965573340654373,
- 0.04023677110671997,
- -0.009755369275808334,
- 0.020092176273465157,
- -0.021914862096309662,
- -0.019369328394532204,
- -0.05251511186361313,
- -0.025369791314005852,
- -0.0240249652415514,
- -0.07293706387281418,
- -0.01953945681452751,
- 0.05115129426121712,
- 0.0042793285101652145,
- 0.04770708456635475,
- -0.03816648945212364,
- 0.04266130551695824,
- -0.00601611053571105,
- -0.005677808076143265,
- 0.08611412346363068,
- -0.021056948229670525,
- -0.043934356421232224,
- 0.0024962995667010546,
- -0.03811793401837349,
- 0.008195919916033745,
- 0.013048713095486164,
- -0.14879851043224335,
- 0.03240756317973137,
- -0.04241563007235527,
- 0.03430047258734703,
- 0.0718492716550827,
- 0.019761784002184868,
- 0.09554518014192581,
- -0.03565385565161705,
- 0.10039330273866653,
- -0.02394137717783451,
- -0.04013238102197647,
- 0.006192340981215239,
- 0.019505470991134644,
- 0.05476268380880356,
- 0.06958087533712387,
- 0.019595881924033165,
- 0.030372442677617073,
- 0.13708288967609406,
- 0.04284465312957764,
- -0.037548813968896866,
- 0.03326556459069252,
- -0.02144685946404934,
- 0.07481750100851059,
- -0.03604176640510559,
- -0.07536659389734268,
- -0.0019006553338840604,
- 0.015038136392831802,
- 0.027538461610674858,
- 0.055201608687639236,
- -0.0320255309343338,
- -0.04261600598692894,
- -0.004805299919098616,
- -0.023685069754719734,
- -0.009023874066770077,
- -0.003230556845664978,
- -0.16101276874542236,
- 0.05613882839679718,
- 0.0004952243180014193,
- 0.05047544836997986,
- -0.015094189904630184,
- 3.2688161601345556e-33,
- 0.06932602822780609,
- -0.07707787305116653,
- -0.03826539218425751,
- 0.023639658465981483,
- 0.014971142634749413,
- 0.015339154750108719,
- 0.059964828193187714,
- 0.0010933876037597656,
- -0.002684247214347124,
- -0.003818740136921406,
- -0.03695661202073097,
- -0.011267800815403461,
- 0.037253543734550476,
- 0.06559908390045166,
- 0.1444692462682724,
- 0.016765324398875237,
- 0.06729090213775635,
- -0.05083397403359413,
- -0.0032006073743104935,
- 0.045342445373535156,
- -0.05834215506911278,
- -0.011848797090351582,
- -0.0682104304432869,
- -0.006075401324778795,
- -0.048487339168787,
- 0.08237577229738235,
- -0.05958494171500206,
- -0.000615383149124682,
- -0.045279327780008316,
- 0.02562916837632656,
- -0.014601238071918488,
- -0.027673084288835526,
- 0.044804949313402176,
- 0.10353028774261475,
- -0.07142683863639832,
- 0.01086539775133133,
- 0.041696395725011826,
- 0.08041249960660934,
- 0.0049017625860869884,
- -0.04465958848595619,
- 0.047631897032260895,
- -0.002887479495257139,
- -0.0835135281085968,
- 0.14914369583129883,
- 0.001686524716205895,
- -0.09157450497150421,
- -0.021849919110536575,
- -0.07347147166728973,
- 0.06463989615440369,
- -0.04028182104229927,
- -0.06400882452726364,
- 0.02256409451365471,
- -0.028544265776872635,
- -0.08120965957641602,
- -0.07318484783172607,
- 0.11736844480037689,
- -0.03156339377164841,
- 0.014200064353644848,
- 0.010099895298480988,
- 0.036686211824417114,
- -0.03991802781820297,
- 0.0507630854845047,
- 0.03584945201873779,
- 0.046029429882764816,
- -0.0922214463353157,
- 0.040213242173194885,
- 0.03661264106631279,
- -0.03960130736231804,
- -0.046081483364105225,
- 0.022247876971960068,
- 0.0646364688873291,
- 0.026047000661492348,
- -0.03287605196237564,
- 0.05963592231273651,
- -0.005817994009703398,
- -0.02923007495701313,
- -0.007700071670114994,
- -0.003009509528055787,
- 0.0016301102004945278,
- -0.019992943853139877,
- -0.03497804328799248,
- -0.04363569617271423,
- 0.018380120396614075,
- 0.08344163000583649,
- 0.016334060579538345,
- 0.00925762951374054,
- 0.04100469499826431,
- 0.10235969722270966,
- -0.01772388070821762,
- -0.04128766059875488,
- 0.00032776256557554007,
- -0.04241514950990677,
- -0.07828571647405624,
- -0.026199916377663612,
- -0.03017497807741165,
- -1.0636074243564053e-8,
- -0.09872029721736908,
- 0.016290390864014626,
- 0.0053625996224582195,
- -0.006703549530357122,
- 0.013388489373028278,
- -0.05886560678482056,
- 0.12299087643623352,
- 0.17022110521793365,
- 0.01879287324845791,
- 0.06710285693407059,
- 0.0025388426147401333,
- -0.06186318397521973,
- -0.10537808388471603,
- 0.04645151272416115,
- -0.011227128095924854,
- -0.009439353831112385,
- -0.07927384972572327,
- 0.020689474418759346,
- -0.022575832903385162,
- -0.06599874794483185,
- -0.01832333765923977,
- 0.015379386954009533,
- 0.09162350744009018,
- -0.008612262085080147,
- -0.044310376048088074,
- -0.006315117236226797,
- -0.038248561322689056,
- 0.027161676436662674,
- 0.04489040747284889,
- 0.011044338345527649,
- 0.02651570737361908,
- 0.06049421802163124,
- -0.0036210587713867426,
- -0.012441801838576794,
- -0.021096620708703995,
- -0.04888010025024414,
- 0.06204096972942352,
- 0.041725095361471176,
- -0.03852138668298721,
- -0.0043641868978738785,
- -0.04384518414735794,
- -0.045431263744831085,
- -0.0423845499753952,
- -0.017583612352609634,
- 0.10617274045944214,
- 0.013900376856327057,
- -0.012890870682895184,
- -0.03214622288942337,
- 0.047546714544296265,
- -0.001649708254262805,
- -0.006310552824288607,
- -0.028189996257424355,
- 0.06319482624530792,
- 0.05919541046023369,
- 0.013798088766634464,
- -0.0199568010866642,
- -0.025197824463248253,
- -0.04333466663956642,
- -0.01673365756869316,
- 0.03497925028204918,
- 0.12636657059192657,
- -0.05174718424677849,
- 0.045814383774995804,
- 0.01680120639503002
- ]
- },
- {
- "keyword": "depot",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08901139348745346,
- -0.006316387560218573,
- -0.02523181028664112,
- -0.025510748848319054,
- -0.0338558666408062,
- 0.013565599918365479,
- 0.023909185081720352,
- 0.050567641854286194,
- -0.009130462072789669,
- -0.01460486464202404,
- 0.016106275841593742,
- -0.016370976343750954,
- 0.026923758909106255,
- -0.01547455508261919,
- -0.02140064351260662,
- -0.004422149155288935,
- 0.07419361919164658,
- 0.05581340938806534,
- 0.035352520644664764,
- -0.16651849448680878,
- -0.08490655571222305,
- 0.031045254319906235,
- -0.05058183893561363,
- 0.0314847007393837,
- 0.020333677530288696,
- 0.044375184923410416,
- -0.08231621980667114,
- 0.03709443286061287,
- -0.031307026743888855,
- -0.12236414104700089,
- -0.018262384459376335,
- -0.029554512351751328,
- -0.027654457837343216,
- -0.0015398866962641478,
- 0.016340389847755432,
- 0.0604143925011158,
- -0.012233387678861618,
- -0.030951371416449547,
- 0.07283730059862137,
- 0.020115436986088753,
- 0.018611980602145195,
- -0.059715237468481064,
- -0.0029722130857408047,
- -0.017183354124426842,
- -0.013226856477558613,
- 0.014648664742708206,
- -0.003167018061503768,
- 0.0034063139464706182,
- 0.036950476467609406,
- -0.006553154904395342,
- 0.06638239324092865,
- -0.027340035885572433,
- 0.04283088445663452,
- 0.032079633325338364,
- 0.010093588382005692,
- 0.02802935801446438,
- 0.06792795658111572,
- 0.014304335229098797,
- 0.03463245928287506,
- 0.016452502459287643,
- 0.00417221849784255,
- -0.019226331263780594,
- -0.001908730249851942,
- 0.0013375807320699096,
- 0.010101890191435814,
- -0.037027761340141296,
- -0.06409298628568649,
- 0.09302911162376404,
- 0.02504427172243595,
- -0.06946020573377609,
- -0.024189135059714317,
- 0.05916472524404526,
- -0.039199814200401306,
- 0.020324986428022385,
- 0.05531102418899536,
- 0.049354031682014465,
- 0.03241340070962906,
- 0.007975739426910877,
- 0.02894686535000801,
- -0.10132277011871338,
- -0.02590140327811241,
- 0.05407608300447464,
- -0.02030131407082081,
- 0.04766608402132988,
- -0.031078357249498367,
- 0.039783775806427,
- 0.01509108953177929,
- 0.08588771522045135,
- 0.009150034748017788,
- -0.011579310521483421,
- -0.01489503588527441,
- 0.0183966476470232,
- -0.009085223078727722,
- 0.03940647095441818,
- -0.07423027604818344,
- -0.003562361467629671,
- -0.009631991386413574,
- -0.04837809503078461,
- -0.10895177721977234,
- 0.2072611153125763,
- 0.0075414166785776615,
- 0.07264062762260437,
- -0.06595295667648315,
- -0.055592089891433716,
- 0.03238663077354431,
- -0.014947132207453251,
- -0.06685478240251541,
- 0.07693599164485931,
- -0.00603521941229701,
- 0.021240446716547012,
- 0.023598436266183853,
- -0.04884638637304306,
- -0.003988876007497311,
- -0.01744556799530983,
- -0.06560547649860382,
- 0.04176352545619011,
- -0.027861617505550385,
- -0.07959780842065811,
- -0.06297755986452103,
- 0.004084399435669184,
- -0.0003079017042182386,
- 0.004084475804120302,
- -0.039577554911375046,
- -0.0035733773838728666,
- -0.08826565742492676,
- -0.03849243372678757,
- 0.10143031179904938,
- -4.730684077362184e-33,
- -0.007234711199998856,
- 0.007122274488210678,
- -0.0014334977604448795,
- 0.06427004933357239,
- 0.11005737632513046,
- -0.026917627081274986,
- 0.08589796721935272,
- 0.035356007516384125,
- -0.02969728410243988,
- 0.048748649656772614,
- 0.020986298099160194,
- -0.012616010382771492,
- -0.1004972830414772,
- 0.07707072049379349,
- -0.01273871585726738,
- -0.02398887276649475,
- 0.010190751403570175,
- 0.05655945464968681,
- 0.024535391479730606,
- -0.02124921604990959,
- -0.02028672769665718,
- 0.015596658922731876,
- -0.05050281807780266,
- 0.03534048795700073,
- 0.024987701326608658,
- 0.0011929945321753621,
- -0.012717869132757187,
- 0.029538700357079506,
- 0.026800762861967087,
- 0.05957271158695221,
- 0.023924842476844788,
- 0.05221037566661835,
- 0.0497228167951107,
- 0.030499612912535667,
- -0.0069090197794139385,
- -0.13449394702911377,
- -0.024871826171875,
- -0.09058360010385513,
- -0.03815300762653351,
- -0.048695314675569534,
- 0.005437722895294428,
- 0.03870118409395218,
- 0.005484947003424168,
- 0.0542595311999321,
- 0.030400419607758522,
- 0.025896048173308372,
- 0.06451476365327835,
- -0.022375009953975677,
- 0.11211930960416794,
- 0.022464342415332794,
- -0.022627443075180054,
- 0.07614027708768845,
- -0.019412165507674217,
- 0.031059999018907547,
- -0.0028881304897367954,
- -0.10327792167663574,
- -0.015504020266234875,
- -0.018771622329950333,
- 0.058828964829444885,
- 0.014762943610548973,
- 0.022885195910930634,
- 0.22601725161075592,
- -0.0914154127240181,
- 0.0827510729432106,
- -0.02036004513502121,
- -0.10130271315574646,
- 0.02829601801931858,
- 0.02420922741293907,
- 0.08847371488809586,
- 0.036123353987932205,
- 0.06430244445800781,
- -0.0417117103934288,
- 0.03970539569854736,
- 0.03361055627465248,
- -0.03645510971546173,
- 0.003523164428770542,
- -0.07698697596788406,
- 0.10018794983625412,
- -0.014428004622459412,
- -0.03222949430346489,
- -0.010861664079129696,
- -0.045022524893283844,
- -0.03454763442277908,
- 0.03394243121147156,
- 0.05458409711718559,
- -0.026476647704839706,
- 0.05434197559952736,
- 0.04315662011504173,
- 0.008431265130639076,
- -0.018734758719801903,
- -0.09410498291254044,
- 0.02190610207617283,
- 0.04486195743083954,
- 0.04471297562122345,
- -0.002279919106513262,
- 4.683251043596582e-33,
- 0.006494187284260988,
- -0.025843635201454163,
- 0.015508239157497883,
- 0.060389261692762375,
- 0.005885542370378971,
- 0.03731074929237366,
- -0.012508975341916084,
- -0.07925442606210709,
- 0.03367026895284653,
- 0.10996222496032715,
- -0.06432309001684189,
- 0.04876064509153366,
- 0.06798271089792252,
- 0.025645926594734192,
- 0.04602549225091934,
- 0.0039049452170729637,
- -0.01610114984214306,
- -0.03926074132323265,
- -0.019841233268380165,
- 0.03616270795464516,
- -0.006075856275856495,
- -0.10874336957931519,
- -0.07788442820310593,
- 0.016867173835635185,
- -0.010627725161612034,
- 0.05983882397413254,
- -0.006255157291889191,
- 0.028692476451396942,
- -0.13867683708667755,
- 0.013045059517025948,
- -0.004314137157052755,
- -0.028397543355822563,
- -0.11051781475543976,
- 0.030523860827088356,
- -0.06527269631624222,
- -0.050183940678834915,
- -0.00563577376306057,
- 0.14017830789089203,
- -0.021655304357409477,
- -0.04215873032808304,
- 0.033695317804813385,
- -0.03117203712463379,
- -0.0006786432350054383,
- 0.08822640031576157,
- -0.06933365762233734,
- -0.07311641424894333,
- -0.03078712336719036,
- -0.0719519630074501,
- 0.06670007109642029,
- 0.06225436553359032,
- -0.12825718522071838,
- 0.014385975897312164,
- 0.021519169211387634,
- -0.017349539324641228,
- -0.008810763247311115,
- 0.0003021850425284356,
- -0.041072092950344086,
- 0.07359714806079865,
- -0.027906252071261406,
- 0.045004237443208694,
- 0.04584908112883568,
- 0.016577349975705147,
- 0.02786623127758503,
- 0.020500456914305687,
- -0.0010631019249558449,
- -0.03604530915617943,
- 0.054443225264549255,
- -0.037109874188899994,
- -0.049165695905685425,
- 0.043441206216812134,
- 0.07061325758695602,
- 0.08477047085762024,
- 0.0798729732632637,
- -0.03746688738465309,
- -0.05191405862569809,
- 0.004274069797247648,
- 0.02550332620739937,
- -0.014143317937850952,
- -0.04640728607773781,
- -0.009114113636314869,
- -0.007428994867950678,
- -0.08728918433189392,
- 0.04701819270849228,
- 0.05837571248412132,
- -0.013845129869878292,
- -0.010187014937400818,
- 0.029521554708480835,
- 0.11807373911142349,
- 0.06455113738775253,
- -0.016389556229114532,
- -0.028271526098251343,
- 0.0015306164277717471,
- -0.043230313807725906,
- -0.10909005254507065,
- -0.039228104054927826,
- -1.0974579467415424e-8,
- 0.0036463066935539246,
- 0.0017140564741566777,
- -0.019838307052850723,
- -0.02218581549823284,
- 0.050167687237262726,
- -0.02522905357182026,
- -0.028182577341794968,
- 0.09196191281080246,
- -0.03413843736052513,
- 0.048508964478969574,
- 0.062242262065410614,
- -0.03951645642518997,
- -0.03583644703030586,
- 0.0676264539361,
- 0.035200610756874084,
- -0.04784873127937317,
- -0.02276843786239624,
- 0.011186758056282997,
- -0.03835342824459076,
- -0.08073609322309494,
- -0.01977146416902542,
- 0.04667350649833679,
- 0.09193585067987442,
- -0.05420994386076927,
- -0.05646362900733948,
- -0.00017359349294565618,
- 0.00016685716400388628,
- 0.03576534241437912,
- 0.05346819758415222,
- -0.01079237088561058,
- 0.09197594970464706,
- 0.024372071027755737,
- -0.011517406441271305,
- -0.09313591569662094,
- 0.067717544734478,
- 0.009387190453708172,
- -0.011955237947404385,
- 0.040858276188373566,
- -0.021555444225668907,
- -0.0372128002345562,
- -0.020767930895090103,
- -0.06335536390542984,
- 0.015486445277929306,
- -0.03759748488664627,
- 0.014115173369646072,
- 0.032704826444387436,
- -0.006020162720233202,
- 0.022801842540502548,
- -0.03144602105021477,
- -0.01285095140337944,
- -0.006719470955431461,
- -0.04312960058450699,
- 0.009409662336111069,
- 0.03199610114097595,
- 0.06236358731985092,
- -0.056510914117097855,
- -0.05326802283525467,
- -0.0505850650370121,
- -0.04136015847325325,
- -0.005680459551513195,
- 0.04796150326728821,
- 0.018932584673166275,
- 0.022036032751202583,
- -0.0027523681055754423
- ]
- },
- {
- "keyword": "terminal",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.06830950826406479,
- -0.04339183121919632,
- -0.06274273991584778,
- -0.026766136288642883,
- -0.00640281243249774,
- -0.007061105687171221,
- 0.05179562419652939,
- 0.1258251965045929,
- 0.048532795161008835,
- 0.06149953231215477,
- 0.0557362325489521,
- -0.0015174404252320528,
- 0.05156395956873894,
- -0.006623106077313423,
- -0.008714815601706505,
- -0.02813361957669258,
- -0.07613962888717651,
- -0.012423700653016567,
- 0.018373539671301842,
- -0.06319962441921234,
- -0.021267898380756378,
- 0.04645160213112831,
- -0.007848531939089298,
- -0.04123225808143616,
- -0.023416955024003983,
- 0.0046796356327831745,
- -0.029907001182436943,
- -0.019334986805915833,
- -0.03276669979095459,
- -0.129304438829422,
- -0.1259169578552246,
- 0.042026203125715256,
- 0.015252431854605675,
- 0.0013517129700630903,
- -0.0028545295353978872,
- 0.017456984147429466,
- 0.04856184497475624,
- 0.03603222221136093,
- -0.005872379522770643,
- -0.02375774458050728,
- -0.008134429343044758,
- -0.06551255285739899,
- -0.030115175992250443,
- -0.03176938742399216,
- -0.05706252530217171,
- -0.029497088864445686,
- -0.05479251593351364,
- -0.05265035480260849,
- 0.09152236580848694,
- 0.012893272563815117,
- 0.05502142012119293,
- 0.03790324181318283,
- -0.021180076524615288,
- 0.08155219256877899,
- 0.043739743530750275,
- 0.04020103067159653,
- -0.013375423848628998,
- -0.004082987084984779,
- 0.07143030315637589,
- -0.006568360608071089,
- -0.04311157390475273,
- 0.11639631539583206,
- -0.10801004618406296,
- 0.06937191635370255,
- 0.04986802861094475,
- -0.05379996821284294,
- -0.0024139725137501955,
- 0.010873028077185154,
- 0.015438993461430073,
- 0.022156573832035065,
- -0.08966762572526932,
- -0.06289806216955185,
- -0.037320271134376526,
- -0.012637956999242306,
- -0.03830955922603607,
- -0.10544396191835403,
- 0.08780336380004883,
- -0.02576657570898533,
- -0.020261216908693314,
- 0.09920624643564224,
- 0.012789016589522362,
- 0.0708216056227684,
- -0.030384741723537445,
- 0.05873661860823631,
- -0.01795302890241146,
- 0.07907918840646744,
- 0.0016670194454491138,
- 0.05880279839038849,
- 0.0029212315566837788,
- -0.02299545146524906,
- -0.04043547436594963,
- -0.0481264665722847,
- 0.0346195213496685,
- 0.008557968772947788,
- -0.16347689926624298,
- 0.01617484912276268,
- 0.07007349282503128,
- -0.036309391260147095,
- 0.005372627638280392,
- 0.21798184514045715,
- 0.02536550723016262,
- 0.014941583387553692,
- 0.028689425438642502,
- 0.024216050282120705,
- -0.0007635605288669467,
- -0.00042711899732239544,
- 0.03503526374697685,
- 0.007853821851313114,
- 0.06530525535345078,
- 0.011404306627810001,
- -0.023950781673192978,
- -0.10237176716327667,
- -0.011403921991586685,
- -0.04810686782002449,
- 0.01702490821480751,
- 0.029220465570688248,
- -0.02502238005399704,
- -0.004032176453620195,
- 0.0013969294959679246,
- 0.055048421025276184,
- 0.1098969429731369,
- -0.01325042825192213,
- -0.057648297399282455,
- 0.029200458899140358,
- -0.003007352352142334,
- -0.07061193883419037,
- 0.06345074623823166,
- -4.923004504048311e-33,
- 0.07180482149124146,
- 0.00023440631048288196,
- 0.0074552008882164955,
- -0.010001925751566887,
- 0.068499356508255,
- 0.05794977396726608,
- 0.02693328820168972,
- -0.0031705519650131464,
- -0.056648802012205124,
- 0.030589766800403595,
- -0.040882498025894165,
- 0.006720403674989939,
- -0.045539259910583496,
- 0.059065740555524826,
- 0.012185372412204742,
- -0.05035027489066124,
- 0.07172498106956482,
- 0.03179195150732994,
- -0.013132933527231216,
- -0.031707461923360825,
- 0.009275229647755623,
- 0.012397431768476963,
- 0.011530738323926926,
- 0.025546176359057426,
- 0.13419947028160095,
- -0.034061506390571594,
- -0.003915035165846348,
- 0.014961738139390945,
- 0.05705259367823601,
- 0.015677789226174355,
- -0.020461374893784523,
- 0.024118691682815552,
- -0.00975844170898199,
- 0.019381707534193993,
- -0.00849184114485979,
- -0.07812543958425522,
- -0.03422151878476143,
- 0.013044789433479309,
- 0.013734620064496994,
- -0.015967898070812225,
- -0.03179829567670822,
- 0.04822778329253197,
- 0.016114644706249237,
- 0.009939346462488174,
- 0.05121675878763199,
- -0.04821930453181267,
- 0.03986961022019386,
- -0.06333600729703903,
- 0.007170374505221844,
- 0.09113883972167969,
- -0.028656236827373505,
- -0.01399587094783783,
- 0.014432761818170547,
- 0.05436691269278526,
- -0.0005608615465462208,
- -0.021067073568701744,
- -0.022466106340289116,
- 0.013868449255824089,
- -0.007670581806451082,
- 0.03355860710144043,
- 0.016070885583758354,
- 0.11243771016597748,
- -0.0034881925676018,
- 0.028093548491597176,
- 0.030703864991664886,
- -0.0051795076578855515,
- -0.09428087621927261,
- -0.037896595895290375,
- 0.06099288910627365,
- 0.07409249991178513,
- -0.166191965341568,
- 0.0035673980601131916,
- 0.0911211371421814,
- 0.01275662798434496,
- -0.011247681453824043,
- 0.003990773111581802,
- -0.06988131999969482,
- 0.023894717916846275,
- -0.08332905173301697,
- 0.003407662035897374,
- -0.050816722214221954,
- -0.048212092369794846,
- -0.11439164727926254,
- 0.006466581020504236,
- 0.10095342993736267,
- -0.015201047994196415,
- 0.034647949039936066,
- -0.028635649010539055,
- -0.03742718696594238,
- -0.014436718076467514,
- -0.060235943645238876,
- 0.021024364978075027,
- 0.008753473870456219,
- 0.07226235419511795,
- -0.028699884191155434,
- 3.1445825702999636e-33,
- 0.005420541390776634,
- -0.02485731802880764,
- 0.014270585961639881,
- 0.0018811527406796813,
- -0.03616662696003914,
- 0.0064898040145635605,
- -0.04859171807765961,
- -0.07709957659244537,
- -0.12801823019981384,
- -0.010695923119783401,
- -0.07302946597337723,
- 0.09904197603464127,
- 0.049937471747398376,
- 0.042553629726171494,
- 0.11279832571744919,
- 0.016026070341467857,
- 0.04838167503476143,
- 0.0360860712826252,
- -0.07281459122896194,
- -0.04115976393222809,
- -0.05660685896873474,
- -0.0191839337348938,
- -0.06571431457996368,
- -0.0070742960087955,
- 0.054038699716329575,
- -0.03790447115898132,
- 0.11655206233263016,
- 0.01911022886633873,
- -0.017382265999913216,
- 0.014437304809689522,
- 0.027554577216506004,
- -0.00002330716233700514,
- -0.018671344965696335,
- 0.062104254961013794,
- -0.009720881469547749,
- 0.08063524961471558,
- 0.09747394919395447,
- 0.01463985349982977,
- -0.04081987962126732,
- -0.03386971727013588,
- 0.08761795610189438,
- 0.052566152065992355,
- -0.01877371408045292,
- 0.052938640117645264,
- -0.0529419369995594,
- 0.04459657147526741,
- -0.051357194781303406,
- -0.015810707584023476,
- 0.05277901142835617,
- 0.01350235752761364,
- -0.012197334319353104,
- -0.0674843043088913,
- 0.05383800342679024,
- -0.08565700054168701,
- 0.03560710698366165,
- -0.07487675547599792,
- -0.020511314272880554,
- 0.06270342320203781,
- -0.003308224258944392,
- -0.07307980954647064,
- -0.026000820100307465,
- 0.004563290160149336,
- -0.05844740569591522,
- -0.052822403609752655,
- -0.05589195713400841,
- -0.05676470324397087,
- 0.016954053193330765,
- -0.011769439093768597,
- -0.03246923163533211,
- -0.00008306616655318066,
- 0.07992663979530334,
- 0.03873760998249054,
- 0.0009861629223451018,
- 0.06355109065771103,
- 0.04926110431551933,
- -0.016894927248358727,
- -0.08129173517227173,
- -0.08907726407051086,
- -0.06738366186618805,
- 0.07578721642494202,
- 0.0240113977342844,
- -0.015082115307450294,
- 0.0005508671747520566,
- -0.003313422203063965,
- -0.07057880610227585,
- -0.005639082286506891,
- 0.010919594205915928,
- 0.08821073174476624,
- -0.011714492924511433,
- -0.03202727437019348,
- 0.05387512221932411,
- 0.056677818298339844,
- -0.027021175250411034,
- -0.03474169969558716,
- -0.03246660158038139,
- -1.1478886285942735e-8,
- 0.03826769441366196,
- -0.098259836435318,
- -0.027368612587451935,
- 0.012796633876860142,
- 0.019260868430137634,
- -0.014851666055619717,
- 0.03432869911193848,
- -0.04889783635735512,
- 0.004539978690445423,
- 0.03274963051080704,
- 0.06783784180879593,
- 0.05393034964799881,
- -0.00562669150531292,
- 0.02442709170281887,
- 0.07578964531421661,
- 0.03929721564054489,
- 0.0391925685107708,
- 0.02864246256649494,
- 0.011273764073848724,
- 0.041022203862667084,
- 0.003602971090003848,
- 0.002238638000562787,
- -0.0023256647400557995,
- 0.01684502325952053,
- -0.003043784061446786,
- -0.0190324354916811,
- 0.030328303575515747,
- 0.08161193132400513,
- -0.0799606442451477,
- -0.006855550687760115,
- 0.04118207469582558,
- -0.0206611230969429,
- -0.05716331675648689,
- -0.060642972588539124,
- 0.04731183126568794,
- -0.06137378141283989,
- -0.026718327775597572,
- -0.008255651220679283,
- -0.04888511449098587,
- -0.025697847828269005,
- 0.10565126687288284,
- -0.002692560199648142,
- 0.04280852898955345,
- -0.017409171909093857,
- -0.14378789067268372,
- -0.022110188379883766,
- 0.07508941739797592,
- -0.01992153935134411,
- 0.0006979902391321957,
- -0.10143071413040161,
- -0.016183316707611084,
- -0.0022677720990031958,
- -0.03700297325849533,
- -0.008785126730799675,
- 0.0017559339758008718,
- -0.005058361683040857,
- -0.008607160300016403,
- -0.03826543688774109,
- -0.0660221204161644,
- 0.011284875683486462,
- 0.03737880289554596,
- 0.07254958152770996,
- 0.02229326404631138,
- -0.023703740909695625
- ]
- },
- {
- "keyword": "station",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05934816971421242,
- -0.008835473097860813,
- -0.05248856544494629,
- 0.016526861116290092,
- -0.05604442581534386,
- 0.07052264362573624,
- 0.08453924208879471,
- 0.050463393330574036,
- 0.005215076729655266,
- -0.027341648936271667,
- -0.006975930649787188,
- 0.004196636378765106,
- 0.015374591574072838,
- -0.02569741941988468,
- 0.007702914997935295,
- -0.04674438014626503,
- 0.057159002870321274,
- -0.03366523236036301,
- 0.06491965800523758,
- 0.00793016143143177,
- -0.07059570401906967,
- 0.005695549305528402,
- -0.03636600822210312,
- 0.04439773038029671,
- 0.042897481471300125,
- 0.08540965616703033,
- -0.016284748911857605,
- 0.09424519538879395,
- 0.01595940627157688,
- -0.11233874410390854,
- -0.06703612953424454,
- 0.05638217180967331,
- 0.12673047184944153,
- -0.022855307906866074,
- 0.009991686791181564,
- 0.03211325407028198,
- 0.018965430557727814,
- -0.03375191614031792,
- 0.04338332638144493,
- 0.0546899177134037,
- -0.0313604474067688,
- -0.034266699105501175,
- -0.027749300003051758,
- 0.02381618320941925,
- -0.0139332739636302,
- -0.05109954625368118,
- 0.053757164627313614,
- -0.0412081778049469,
- 0.09792173653841019,
- 0.02134968340396881,
- 0.00888050440698862,
- -0.04294825345277786,
- 0.01695401594042778,
- 0.11090352386236191,
- 0.014598233625292778,
- -0.05345427617430687,
- -0.028899069875478745,
- 0.06699187308549881,
- 0.05338086560368538,
- 0.0287491325289011,
- 0.037030741572380066,
- -0.005649561993777752,
- -0.06054901331663132,
- 0.023765815421938896,
- 0.104726642370224,
- -0.01575399562716484,
- -0.04199282079935074,
- 0.07215757668018341,
- 0.020932944491505623,
- -0.1363748013973236,
- -0.01021917536854744,
- 0.04472844675183296,
- -0.010323925875127316,
- -0.04974929615855217,
- -0.009101027622818947,
- 0.00960946548730135,
- 0.02169758267700672,
- -0.046648282557725906,
- 0.061255309730768204,
- 0.03710908815264702,
- -0.009200496599078178,
- -0.06227998808026314,
- -0.04178871214389801,
- 0.008731151930987835,
- -0.013664006255567074,
- -0.0410013347864151,
- 0.0371602363884449,
- 0.044981084764003754,
- -0.03496584668755531,
- -0.010302195325493813,
- -0.07651108503341675,
- 0.11427132040262222,
- 0.02228945679962635,
- 0.01564314030110836,
- -0.03932563588023186,
- 0.06823032349348068,
- -0.04716780409216881,
- 0.0001634824729990214,
- -0.018572358414530754,
- 0.2245926558971405,
- 0.09919574111700058,
- 0.035045187920331955,
- -0.010045590810477734,
- 0.008580034598708153,
- -0.0045112427324056625,
- -0.11975286900997162,
- -0.06803805381059647,
- 0.06491284817457199,
- 0.02998720295727253,
- -0.025239288806915283,
- -0.04086645320057869,
- -0.010444213636219501,
- -0.11062318086624146,
- 0.021024420857429504,
- -0.03003079630434513,
- 0.10209781676530838,
- 0.059054184705019,
- -0.006583309266716242,
- -0.022417578846216202,
- 0.016085930168628693,
- -0.014932159334421158,
- 0.0056142788380384445,
- -0.04421443119645119,
- 0.054274238646030426,
- -0.07485859096050262,
- 0.00436638155952096,
- 0.07442731410264969,
- -3.717439905706035e-33,
- -0.05780009180307388,
- -0.010146918706595898,
- 0.030574986711144447,
- -0.00195567705668509,
- 0.05741162970662117,
- 0.03753625601530075,
- -0.06625965237617493,
- 0.05057525634765625,
- 0.002558868145570159,
- 0.05744102597236633,
- -0.05261853709816933,
- 0.04938143864274025,
- -0.017820890992879868,
- -0.05715550109744072,
- 0.04068637266755104,
- -0.06993626803159714,
- -0.01022552140057087,
- 0.011032968759536743,
- -0.03241708129644394,
- -0.029755158349871635,
- -0.0023889588192105293,
- -0.005368237849324942,
- -0.0672680139541626,
- -0.0529276542365551,
- 0.025353072211146355,
- -0.002186455763876438,
- -0.05205586180090904,
- -0.053502604365348816,
- 0.050385482609272,
- 0.020728053525090218,
- 0.02021765150129795,
- 0.0068106884136796,
- 0.0008670787210576236,
- 0.038003116846084595,
- -0.028228918090462685,
- -0.0801166445016861,
- -0.04980655759572983,
- -0.032952990382909775,
- -0.03696613758802414,
- -0.018343521282076836,
- 0.02384703792631626,
- 0.024898776784539223,
- -0.04515928402543068,
- 0.0514659583568573,
- 0.07245509326457977,
- 0.00032612349605187774,
- 0.034592632204294205,
- -0.01805730350315571,
- 0.10297024995088577,
- 0.05692576989531517,
- -0.02833128347992897,
- 0.036116693168878555,
- -0.16620120406150818,
- 0.0023875765036791563,
- 0.056061942130327225,
- 0.0159909650683403,
- -0.008110283873975277,
- 0.06778178364038467,
- 0.03835364803671837,
- 0.029891464859247208,
- 0.07538819313049316,
- 0.08582411706447601,
- 0.008155697956681252,
- -0.08145082741975784,
- 0.08079826831817627,
- -0.03423258289694786,
- 0.014138979837298393,
- -0.025377118960022926,
- 0.06428753584623337,
- 0.01794678345322609,
- -0.03956637904047966,
- -0.04216015338897705,
- 0.07115744054317474,
- 0.016984598711133003,
- -0.026801850646734238,
- 0.006190098822116852,
- -0.06335464864969254,
- 0.021679630503058434,
- -0.11281313747167587,
- -0.011931246146559715,
- -0.028413871303200722,
- 0.0009299640078097582,
- -0.03864448145031929,
- 0.05758149176836014,
- 0.08398030698299408,
- 0.036940064281225204,
- -0.019887369126081467,
- -0.0357532724738121,
- -0.03632108494639397,
- 0.026945732533931732,
- -0.071265310049057,
- 0.011605016887187958,
- 0.03284410014748573,
- 0.04937998577952385,
- -0.04696688428521156,
- 3.108892725099076e-33,
- -0.05821383744478226,
- -0.038372382521629333,
- -0.07383755594491959,
- -0.022607989609241486,
- -0.04500224068760872,
- 0.0023385551758110523,
- -0.02068561129271984,
- -0.030719837173819542,
- -0.01567929796874523,
- 0.14875708520412445,
- -0.08032802492380142,
- -0.0644325241446495,
- 0.058163706213235855,
- 0.06513313949108124,
- -0.07930877059698105,
- 0.01555380318313837,
- 0.03435618057847023,
- 0.020928092300891876,
- -0.04700804874300957,
- 0.011868186295032501,
- -0.042675167322158813,
- -0.009813995100557804,
- 0.01816556788980961,
- 0.03543177247047424,
- -0.006594657897949219,
- 0.05399598181247711,
- 0.12915214896202087,
- -0.013479622080922127,
- -0.03772133216261864,
- 0.05882880836725235,
- -0.0894879400730133,
- -0.032796308398246765,
- -0.02599494159221649,
- 0.02328769490122795,
- 0.030067458748817444,
- 0.12751848995685577,
- 0.026606643572449684,
- 0.07128144800662994,
- -0.016485748812556267,
- -0.02620375156402588,
- 0.029462510719895363,
- -0.001779985032044351,
- -0.021469544619321823,
- 0.09407976269721985,
- -0.016640331596136093,
- -0.034932926297187805,
- -0.016707854345440865,
- 0.08197662979364395,
- -0.002023642184212804,
- 0.05256529524922371,
- -0.04982754960656166,
- -0.07013599574565887,
- -0.020653005689382553,
- -0.019041500985622406,
- -0.038916535675525665,
- 0.005144630558788776,
- -0.06798773258924484,
- -0.003912619315087795,
- -0.028749797493219376,
- -0.03733540326356888,
- 0.06599780917167664,
- -0.030155982822179794,
- -0.06985264271497726,
- 0.017632341012358665,
- -0.006352165248245001,
- 0.04287469759583473,
- 0.010045979171991348,
- 0.008662153035402298,
- -0.006835860200226307,
- 0.06642262637615204,
- 0.040755871683359146,
- 0.024877149611711502,
- -0.004321546293795109,
- 0.029829951003193855,
- -0.0720471516251564,
- 0.0687548816204071,
- -0.004445836413651705,
- 0.04584519937634468,
- -0.046959493309259415,
- -0.08134797215461731,
- -0.00818611029535532,
- 0.04724617674946785,
- -0.051333844661712646,
- 0.007791562005877495,
- -0.02180161513388157,
- 0.05014913156628609,
- 0.08671396225690842,
- 0.04152848944067955,
- -0.02564235031604767,
- -0.05555688962340355,
- 0.01923184096813202,
- 0.0323663204908371,
- -0.09874431788921356,
- -0.024900667369365692,
- -0.04117487743496895,
- -1.0901148428388296e-8,
- -0.029989250004291534,
- -0.004383811727166176,
- -0.020526394248008728,
- 0.010740880854427814,
- 0.08639717847108841,
- -0.05908666178584099,
- -0.010318311862647533,
- -0.07902728766202927,
- 0.0029269936494529247,
- 0.03713613748550415,
- -0.021214047446846962,
- -0.0090122539550066,
- -0.004849341697990894,
- 0.004022690001875162,
- 0.0995948538184166,
- -0.006746656261384487,
- -0.06846673041582108,
- -0.028393341228365898,
- -0.014335675165057182,
- 0.03346393629908562,
- 0.021400313824415207,
- -0.017459498718380928,
- 0.07752884924411774,
- 0.0544917955994606,
- 0.03791777789592743,
- -0.025278648361563683,
- 0.06361635774374008,
- 0.06675068289041519,
- 0.08676210790872574,
- -0.016300328075885773,
- 0.073764368891716,
- 0.055272385478019714,
- -0.09505946934223175,
- -0.04995165765285492,
- -0.022758210077881813,
- -0.030248360708355904,
- -0.01416357047855854,
- 0.02573300525546074,
- -0.024941418319940567,
- 0.018542887642979622,
- -0.04845156893134117,
- -0.06622809916734695,
- -0.01606188714504242,
- -0.020453985780477524,
- 0.0007904444937594235,
- 0.0028644606936722994,
- 0.031073477119207382,
- -0.02636956237256527,
- 0.036843568086624146,
- -0.08948653936386108,
- -0.06928298622369766,
- -0.028633534908294678,
- 0.017528442665934563,
- 0.02644059620797634,
- 0.0602329857647419,
- 0.03904710337519646,
- -0.05488826707005501,
- -0.03111662156879902,
- -0.09887368977069855,
- 0.034505270421504974,
- -0.05846641957759857,
- 0.10318296402692795,
- -0.04806138947606087,
- 0.025404777377843857
- ]
- },
- {
- "keyword": "port",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.010854699648916721,
- -0.011905541643500328,
- -0.04407140612602234,
- -0.04491676762700081,
- -0.03897577151656151,
- -0.02257191203534603,
- 0.03975028917193413,
- -0.017606006935238838,
- -0.021747292950749397,
- -0.024339264258742332,
- 0.04605206474661827,
- 0.0120776928961277,
- -0.0045602209866046906,
- 0.04739711806178093,
- 0.03690364956855774,
- -0.01936410740017891,
- 0.011256291531026363,
- -0.11305639892816544,
- 0.013064099475741386,
- 0.05408113822340965,
- -0.06842757016420364,
- 0.023640688508749008,
- -0.049052633345127106,
- -0.10148969292640686,
- -0.040671322494745255,
- 0.021376069635152817,
- 0.04820450767874718,
- 0.07056434452533722,
- 0.016583776101469994,
- -0.11363794654607773,
- -0.09989876300096512,
- 0.06270396709442139,
- -0.02701547183096409,
- 0.043920669704675674,
- -0.02892477996647358,
- 0.0026855040341615677,
- 0.06936028599739075,
- -0.0037572698201984167,
- -0.05719558149576187,
- -0.015664715319871902,
- 0.044381968677043915,
- -0.09584671258926392,
- 0.046865373849868774,
- 0.06640446186065674,
- -0.02494114637374878,
- -0.022196335718035698,
- -0.0032245914917439222,
- -0.007520623970776796,
- 0.037561286240816116,
- -0.019408997148275375,
- -0.058407772332429886,
- -0.0030495175160467625,
- -0.028558561578392982,
- 0.04474432021379471,
- -0.007059757597744465,
- -0.06636987626552582,
- 0.0021009936463087797,
- 0.03370658680796623,
- 0.009280020371079445,
- 0.03779502958059311,
- 0.05227871611714363,
- 0.016271106898784637,
- -0.01935466192662716,
- -0.0017366039101034403,
- -0.001437076018191874,
- -0.08324741572141647,
- 0.006472246255725622,
- 0.03806110844016075,
- -0.05923600494861603,
- -0.0442262627184391,
- -0.08993740379810333,
- 0.011883383616805077,
- -0.022624382749199867,
- -0.005999900866299868,
- 0.05348651111125946,
- 0.04122338071465492,
- 0.02073672227561474,
- -0.047343909740448,
- 0.047761935740709305,
- 0.03858323022723198,
- -0.046930596232414246,
- -0.0463566929101944,
- -0.10533949732780457,
- 0.040004149079322815,
- -0.029104042798280716,
- 0.008339336141943932,
- -0.06268928945064545,
- 0.028131745755672455,
- -0.033024806529283524,
- -0.03240083530545235,
- -0.09497014433145523,
- 0.023710452020168304,
- 0.024594709277153015,
- 0.039227958768606186,
- -0.09907392412424088,
- -0.00919554103165865,
- 0.01628916710615158,
- 0.004888549447059631,
- -0.10134603083133698,
- 0.16473723948001862,
- 0.052244603633880615,
- 0.06761838495731354,
- -0.07172110676765442,
- -0.035279083997011185,
- -0.044921644032001495,
- -0.08425725251436234,
- -0.03538770228624344,
- 0.04235004633665085,
- 0.05381152778863907,
- -0.05462433770298958,
- -0.032329969108104706,
- 0.018886126577854156,
- -0.09151268005371094,
- 0.007809150498360395,
- -0.028792981058359146,
- 0.033345453441143036,
- -0.027319137006998062,
- -0.008222204633057117,
- 0.0385613739490509,
- 0.00555252842605114,
- -0.0032896194607019424,
- 0.01038383599370718,
- -0.012185022234916687,
- 0.037224575877189636,
- -0.03133011981844902,
- -0.04460883513092995,
- 0.07209468632936478,
- -4.588373955805838e-33,
- 0.01796165481209755,
- 0.010143709369003773,
- 0.0076840706169605255,
- 0.006792508065700531,
- 0.03778056427836418,
- 0.03646411746740341,
- 0.029173336923122406,
- 0.025675395503640175,
- -0.04716305434703827,
- 0.0326644591987133,
- -0.09761562943458557,
- 0.02744738943874836,
- -0.02871972881257534,
- 0.0007534909527748823,
- 0.043603602796792984,
- -0.01005984004586935,
- -0.0037657408975064754,
- -0.004416900686919689,
- -0.02196962758898735,
- -0.028811614960432053,
- -0.03838741034269333,
- -0.039706893265247345,
- -0.0139851663261652,
- -0.06597081571817398,
- 0.03200380504131317,
- 0.002419268013909459,
- -0.06543736904859543,
- -0.002005247166380286,
- 0.057316698133945465,
- 0.038873281329870224,
- 0.039648059755563736,
- 0.03991900756955147,
- -0.0238534864038229,
- 0.002960833953693509,
- 0.034093715250492096,
- -0.0743689239025116,
- 0.023443473502993584,
- -0.022619538009166718,
- -0.009174831211566925,
- -0.011840549297630787,
- -0.09844610840082169,
- -0.007266123779118061,
- -0.12664082646369934,
- 0.04838956147432327,
- 0.033851515501737595,
- -0.024411777034401894,
- -0.01113087683916092,
- -0.03236538916826248,
- 0.023764852434396744,
- 0.050465863198041916,
- -0.03163239732384682,
- -0.05802072212100029,
- -0.04493032395839691,
- 0.08720968663692474,
- -0.0009957988513633609,
- -0.018925264477729797,
- -0.03190546855330467,
- 0.09049040824174881,
- -0.040141236037015915,
- 0.04071512073278427,
- 0.051110390573740005,
- 0.08178235590457916,
- -0.05698190629482269,
- 0.03972967341542244,
- 0.052034683525562286,
- 0.03775833174586296,
- 0.07840586453676224,
- -0.024739770218729973,
- 0.03852418437600136,
- 0.044833455234766006,
- -0.05584970861673355,
- 0.01427607424557209,
- 0.1133728101849556,
- 0.04962022975087166,
- -0.04913230985403061,
- 0.05489908903837204,
- -0.050562333315610886,
- 0.0576995387673378,
- -0.0070210047997534275,
- 0.016451463103294373,
- -0.1123756617307663,
- 0.05182874947786331,
- -0.03406909108161926,
- 0.0612548366189003,
- 0.03493446484208107,
- 0.007036831229925156,
- -0.015322508290410042,
- -0.1165737584233284,
- 0.03601784631609917,
- 0.03762761503458023,
- -0.10562041401863098,
- 0.04200352728366852,
- 0.11486969888210297,
- -0.0485498383641243,
- -0.020721236243844032,
- 2.5476823346577452e-33,
- -0.08969442546367645,
- 0.00528165465220809,
- -0.057388171553611755,
- -0.002736315131187439,
- -0.03890988230705261,
- -0.06076330319046974,
- 0.12180615216493607,
- 0.020645052194595337,
- -0.0016031615668907762,
- 0.020573733374476433,
- -0.0442395843565464,
- 0.024673908948898315,
- 0.17120134830474854,
- 0.00047291989903897047,
- 0.004895125050097704,
- -0.025999851524829865,
- 0.011840605176985264,
- 0.023207135498523712,
- 0.017471935600042343,
- 0.02394639328122139,
- -0.04363828897476196,
- -0.010005326941609383,
- 0.14002984762191772,
- -0.03129627928137779,
- -0.05809581279754639,
- 0.028627809137105942,
- 0.060824014246463776,
- -0.06215176731348038,
- -0.05981030687689781,
- 0.02335100993514061,
- 0.07928424328565598,
- 0.020846456289291382,
- 0.05313549190759659,
- 0.09127875417470932,
- -0.03762190043926239,
- 0.10009341686964035,
- 0.10041569173336029,
- 0.046484190970659256,
- 0.05591409653425217,
- -0.030684389173984528,
- 0.06980852037668228,
- -0.02724904753267765,
- -0.015868978574872017,
- 0.12165207415819168,
- -0.05368325486779213,
- 0.022066080942749977,
- -0.05710003525018692,
- -0.045049864798784256,
- -0.009631342254579067,
- 0.01688571646809578,
- 0.008022545836865902,
- 0.0010695792734622955,
- 0.017903998494148254,
- -0.05095233768224716,
- -0.014268261380493641,
- 0.03455370292067528,
- 0.0131304282695055,
- 0.015755023807287216,
- 0.02336852438747883,
- 0.06369133293628693,
- 0.04230223596096039,
- 0.0008618970750831068,
- -0.11508921533823013,
- -0.06174890697002411,
- 0.016400046646595,
- 0.07297194749116898,
- 0.007447943557053804,
- 0.05577131360769272,
- 0.02866808883845806,
- 0.004410892724990845,
- 0.020183296874165535,
- 0.013364440761506557,
- -0.05438365787267685,
- 0.10439472645521164,
- -0.0695745050907135,
- -0.006468539126217365,
- -0.10752064734697342,
- 0.00664739403873682,
- -0.020228901877999306,
- 0.0706569105386734,
- -0.032521869987249374,
- 0.023733416572213173,
- -0.06415924429893494,
- -0.018789811059832573,
- 0.021757351234555244,
- -0.011740210466086864,
- 0.06953156739473343,
- 0.00745359668508172,
- 0.014123229309916496,
- -0.10263826698064804,
- -0.0009282296523451805,
- 0.05869607254862785,
- -0.08454109728336334,
- -0.026722393929958344,
- -0.015819251537322998,
- -1.0769399594323659e-8,
- 0.056113433092832565,
- 0.016136111691594124,
- -0.000033130818337667733,
- 0.0066561587154865265,
- -0.026527542620897293,
- 0.019551696255803108,
- -0.027814403176307678,
- -0.012269362807273865,
- 0.05073991417884827,
- 0.08854775130748749,
- -0.01664981245994568,
- -0.014031177386641502,
- -0.03637789934873581,
- 0.030610274523496628,
- 0.11357083171606064,
- -0.006581683177500963,
- -0.04594162106513977,
- -0.02493707649409771,
- -0.03315942361950874,
- -0.030560191720724106,
- 0.06196378916501999,
- 0.003845111932605505,
- 0.02162376046180725,
- 0.016500577330589294,
- -0.040087103843688965,
- -0.08496320992708206,
- 0.04289306327700615,
- 0.08606980741024017,
- 0.020935535430908203,
- -0.048079390078783035,
- 0.022201478481292725,
- 0.0009937278227880597,
- -0.02230699174106121,
- 0.01313925813883543,
- -0.062150485813617706,
- -0.00934579037129879,
- -0.055306073278188705,
- -0.004437061958014965,
- 0.04042523354291916,
- 0.06970030814409256,
- -0.0041006687097251415,
- -0.04555822163820267,
- -0.06641160696744919,
- -0.022838985547423363,
- -0.00346576445735991,
- 0.019061420112848282,
- 0.028230279684066772,
- -0.014891617931425571,
- -0.04292877018451691,
- 0.026104239746928215,
- -0.03712160885334015,
- 0.004831946920603514,
- 0.0795711874961853,
- 0.02237367257475853,
- 0.08357368409633636,
- 0.04784863442182541,
- -0.08122958242893219,
- -0.023627053946256638,
- -0.07763518393039703,
- 0.09467066824436188,
- 0.051279839128255844,
- 0.1634799987077713,
- 0.056413374841213226,
- 0.06913617998361588
- ]
- },
- {
- "keyword": "park",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.029920212924480438,
- 0.04483965411782265,
- 0.03988661244511604,
- -0.03220859169960022,
- 0.00040947250090539455,
- -0.00114444550126791,
- 0.17223183810710907,
- -0.008393840864300728,
- 0.06417540460824966,
- 0.017376190051436424,
- -0.02729969657957554,
- -0.032573387026786804,
- -0.008765141479671001,
- -0.008338755927979946,
- 0.07018579542636871,
- 0.014431891962885857,
- -0.008890004828572273,
- 0.09379448741674423,
- -0.025840342044830322,
- -0.051401179283857346,
- -0.0049699763767421246,
- 0.017083512619137764,
- -0.013993354514241219,
- 0.008895996026694775,
- -0.10598010569810867,
- 0.09808854013681412,
- -0.05178958922624588,
- 0.04327688366174698,
- -0.00990289170295,
- -0.07257726788520813,
- -0.03477642685174942,
- 0.021876215934753418,
- 0.01662275567650795,
- -0.029655886813998222,
- -0.04041411727666855,
- 0.04523696005344391,
- -0.03979247435927391,
- -0.06281095743179321,
- 0.04551273211836815,
- 0.026121675968170166,
- -0.047837357968091965,
- -0.03850347921252251,
- 0.026017745956778526,
- -0.020191021263599396,
- 0.019780848175287247,
- 0.03562457114458084,
- 0.00811639055609703,
- -0.0023000212386250496,
- 0.10805970430374146,
- -0.047641411423683167,
- 0.06613294035196304,
- 0.016046425327658653,
- 0.02722180262207985,
- -0.06075222045183182,
- 0.002363945124670863,
- 0.02526724711060524,
- -0.06930974870920181,
- 0.01518187765032053,
- 0.05474577844142914,
- -0.016250066459178925,
- 0.06993111222982407,
- -0.024802885949611664,
- -0.04940835386514664,
- 0.05353940650820732,
- 0.01871468685567379,
- -0.0382525734603405,
- -0.03573312982916832,
- 0.05160670354962349,
- 0.05247349664568901,
- -0.06299161911010742,
- -0.00811083149164915,
- 0.02707046829164028,
- 0.0192432701587677,
- -0.08463430404663086,
- -0.006933612748980522,
- 0.03716336190700531,
- 0.013606474734842777,
- 0.0032002131920307875,
- 0.05769389495253563,
- -0.1307191550731659,
- 0.0015829212497919798,
- -0.02888305112719536,
- 0.007350090425461531,
- 0.003270921064540744,
- 0.05791747570037842,
- -0.007913424633443356,
- 0.04806734621524811,
- 0.0673758015036583,
- 0.020480047911405563,
- 0.034585051238536835,
- -0.08501746505498886,
- -0.011093700304627419,
- -0.0011583651648834348,
- 0.0256564412266016,
- -0.10360752046108246,
- 0.05677394941449165,
- -0.03924630582332611,
- -0.10641080141067505,
- -0.07099582254886627,
- 0.2783532440662384,
- 0.014161069877445698,
- 0.11339439451694489,
- 0.018134379759430885,
- -0.03185605630278587,
- 0.0775073915719986,
- -0.01915654167532921,
- -0.08338212966918945,
- 0.059625063091516495,
- 0.00940589141100645,
- 0.03584296628832817,
- -0.005622108932584524,
- -0.029632577672600746,
- 0.024257907643914223,
- 0.08381491154432297,
- -0.018908239901065826,
- 0.04446535184979439,
- 0.037867773324251175,
- -0.036358792334795,
- 0.051528096199035645,
- -0.01970231719315052,
- -0.016481151804327965,
- -0.0035308515653014183,
- -0.016853438690304756,
- -0.011525633744895458,
- -0.04627232998609543,
- -0.06786606460809708,
- 0.04118797183036804,
- -6.141548764075572e-33,
- -0.014218771830201149,
- -0.08351349830627441,
- 0.028136149048805237,
- -0.08798586577177048,
- 0.04160968214273453,
- 0.03569096326828003,
- -0.0015545852947980165,
- 0.019284643232822418,
- -0.021347224712371826,
- 0.0765378549695015,
- 0.03877647966146469,
- -0.0015047116903588176,
- 0.04725086688995361,
- -0.07580012828111649,
- 0.07863029837608337,
- 0.032493289560079575,
- 0.02484903298318386,
- 0.02386593446135521,
- -0.012012993916869164,
- -0.026591308414936066,
- -0.03827991336584091,
- 0.03264318034052849,
- -0.0164021085947752,
- 0.06337679177522659,
- -0.0030513573437929153,
- -0.04975057393312454,
- -0.005868448875844479,
- -0.006575170438736677,
- 0.0869099348783493,
- 0.04171011224389076,
- -0.03720616176724434,
- -0.023264609277248383,
- 0.0015244652749970555,
- -0.018200043588876724,
- 0.03561169654130936,
- -0.0983939990401268,
- 0.0053505925461649895,
- -0.02461937814950943,
- 0.023092247545719147,
- -0.08493994921445847,
- -0.03167245164513588,
- -0.045941311866045,
- -0.0408673956990242,
- -0.0036661657504737377,
- -0.009143215604126453,
- 0.06326376646757126,
- 0.11297954618930817,
- 0.01903556101024151,
- -0.08507607877254486,
- 0.021256227046251297,
- -0.0015042213490232825,
- -0.006541657727211714,
- -0.07103915512561798,
- -0.02804030105471611,
- -0.058044400066137314,
- -0.051816683262586594,
- 0.023152600973844528,
- -0.004519911948591471,
- 0.010085644200444221,
- 0.020516425371170044,
- 0.04333829879760742,
- 0.1958688199520111,
- -0.057776376605033875,
- -0.03904300183057785,
- 0.008909114636480808,
- -0.08703036606311798,
- 0.05722032114863396,
- 0.007242976222187281,
- 0.022896546870470047,
- 0.02375885471701622,
- 0.07225681841373444,
- -0.015757843852043152,
- 0.0028932474087923765,
- 0.05832869932055473,
- -0.025022141635417938,
- -0.030480163171887398,
- -0.033907920122146606,
- 0.0582217238843441,
- -0.11299915611743927,
- 0.057242728769779205,
- 0.01638396456837654,
- 0.0053992136381566525,
- -0.03370370715856552,
- 0.049761053174734116,
- -0.044694144278764725,
- -0.012576206587255001,
- 0.043476205319166183,
- -0.027109293267130852,
- -0.053943388164043427,
- 0.011192616075277328,
- -0.10760485380887985,
- -0.023335812613368034,
- 0.04777192324399948,
- 0.034492287784814835,
- -0.01888466440141201,
- 4.106871265899874e-33,
- -0.012242600321769714,
- -0.06132058426737785,
- 0.05044306442141533,
- -0.006462089717388153,
- -0.04919510707259178,
- 0.04083361104130745,
- -0.0012320682872086763,
- -0.04857261851429939,
- -0.10780849307775497,
- -0.021907197311520576,
- -0.14347222447395325,
- -0.008832179941236973,
- 0.07745087891817093,
- 0.04936680570244789,
- 0.019511431455612183,
- -0.04093194752931595,
- 0.019561726599931717,
- 0.020890867337584496,
- -0.05886293202638626,
- 0.0854940414428711,
- -0.016724688932299614,
- 0.032705292105674744,
- -0.025875868275761604,
- 0.0955992266535759,
- -0.030577033758163452,
- 0.027696914970874786,
- 0.05086156353354454,
- 0.038468509912490845,
- -0.11621800065040588,
- 0.04621031507849693,
- -0.007668283302336931,
- -0.011217336170375347,
- -0.03592603653669357,
- -0.053844232112169266,
- -0.023700732737779617,
- 0.03634176403284073,
- 0.05212908610701561,
- -0.05666281282901764,
- -0.060190558433532715,
- -0.012808289378881454,
- 0.07957910746335983,
- -0.00757050234824419,
- 0.012824303470551968,
- 0.10379006713628769,
- 0.036492448300123215,
- 0.027845650911331177,
- -0.061289239674806595,
- 0.10366681218147278,
- -0.058368757367134094,
- 0.048709604889154434,
- -0.0801108106970787,
- -0.03173264488577843,
- -0.05401071533560753,
- 0.009642127901315689,
- 0.031186366453766823,
- 0.018667442724108696,
- -0.0435829721391201,
- -0.008049506694078445,
- -0.08836641162633896,
- -0.005918610375374556,
- -0.014424828812479973,
- 0.012402518652379513,
- -0.05659150332212448,
- 0.12309034168720245,
- -0.02623072825372219,
- -0.0041001117788255215,
- 0.01074904017150402,
- -0.004137773998081684,
- -0.011771080084145069,
- 0.012832014821469784,
- -0.06446203589439392,
- 0.05902853235602379,
- -0.037880539894104004,
- 0.022541258484125137,
- -0.08077742904424667,
- 0.05603131279349327,
- 0.09675697982311249,
- -0.0016194264171645045,
- 0.028770793229341507,
- -0.10561991482973099,
- 0.021067943423986435,
- 0.004918420221656561,
- 0.022127944976091385,
- 0.03635283559560776,
- 0.026203155517578125,
- 0.012204451486468315,
- 0.005338500719517469,
- -0.002062504179775715,
- -0.010617472231388092,
- 0.008080500178039074,
- 0.03221376612782478,
- 0.0386807844042778,
- -0.06637895107269287,
- 0.034315481781959534,
- -0.03320438414812088,
- -1.3465688120106734e-8,
- -0.008201160468161106,
- 0.06225466728210449,
- 0.009406699799001217,
- -0.07082416117191315,
- 0.046524882316589355,
- -0.0030194688588380814,
- -0.000203828327357769,
- 0.01563568226993084,
- 0.031157679855823517,
- 0.03514504432678223,
- 0.013023118488490582,
- 0.008250501938164234,
- 0.013847574591636658,
- 0.06209060922265053,
- 0.02389521896839142,
- -0.01141789648681879,
- 0.034875933080911636,
- -0.030680865049362183,
- -0.057059310376644135,
- 0.031125633046030998,
- -0.035715870559215546,
- -0.05342280864715576,
- 0.047442756593227386,
- 0.03310145437717438,
- 0.026070985943078995,
- -0.04158604145050049,
- 0.018017742782831192,
- -0.016552140936255455,
- 0.04012467339634895,
- -0.04345427080988884,
- 0.03565579280257225,
- 0.059137728065252304,
- -0.04956107586622238,
- -0.003723912173882127,
- 0.02868790365755558,
- -0.05935461074113846,
- -0.007608227431774139,
- 0.003638705937191844,
- -0.018617263063788414,
- -0.06887459754943848,
- -0.0501251295208931,
- 0.04731644317507744,
- 0.05798932537436485,
- -0.0190103892236948,
- -0.10105045884847641,
- 0.04757530614733696,
- 0.04997173324227333,
- 0.011870095506310463,
- -0.038330528885126114,
- -0.07920431345701218,
- -0.05713620036840439,
- -0.05102991312742233,
- 0.04885063320398331,
- 0.028724679723381996,
- 0.07366326451301575,
- -0.015545048750936985,
- -0.07100319117307663,
- 0.015691446140408516,
- -0.08977426588535309,
- 0.018061159178614616,
- 0.034193649888038635,
- 0.04512446001172066,
- -0.02254439704120159,
- -0.034852247685194016
- ]
- },
- {
- "keyword": "garden",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.016465479508042336,
- 0.033073682337999344,
- -0.01251248363405466,
- -0.02673349156975746,
- 0.03194538131356239,
- 0.0006176932947710156,
- 0.10127974301576614,
- -0.07939449697732925,
- 0.04057345911860466,
- 0.028698135167360306,
- 0.03752906247973442,
- -0.055437784641981125,
- 0.005269130691885948,
- 0.0138003621250391,
- 0.0241097379475832,
- 0.04340497776865959,
- 0.006648174021393061,
- 0.060820166021585464,
- -0.05311312526464462,
- -0.0391346700489521,
- -0.06570403277873993,
- 0.14288485050201416,
- 0.006658828351646662,
- 0.018054092302918434,
- 0.026151109486818314,
- 0.0788925439119339,
- -0.07108497619628906,
- 0.08406355232000351,
- -0.04837619513273239,
- -0.08921252191066742,
- 0.028059430420398712,
- 0.14046987891197205,
- -0.025398286059498787,
- 0.01730515994131565,
- -0.03646315634250641,
- 0.0876975879073143,
- -0.04382847994565964,
- -0.05143408477306366,
- 0.06043105199933052,
- 0.027418149635195732,
- -0.09200742840766907,
- -0.1060786172747612,
- 0.05752790719270706,
- -0.043510738760232925,
- -0.019803542643785477,
- 0.03850419446825981,
- 0.051071129739284515,
- -0.010189888998866081,
- 0.07976558804512024,
- -0.09647279977798462,
- 0.02881043031811714,
- -0.002826965181156993,
- -0.07640761882066727,
- -0.06593209505081177,
- -0.0030722348019480705,
- 0.018692195415496826,
- -0.036625415086746216,
- 0.042875129729509354,
- 0.009622574783861637,
- -0.012447775341570377,
- 0.08439169079065323,
- -0.00038281866000033915,
- -0.06496253609657288,
- 0.07055285573005676,
- 0.02788822166621685,
- -0.03481381759047508,
- -0.05461706593632698,
- 0.06022510305047035,
- 0.0058897570706903934,
- -0.06262572854757309,
- 0.02502632327377796,
- 0.011575675569474697,
- 0.023903578519821167,
- -0.04683833569288254,
- -0.03280516713857651,
- 0.03630201146006584,
- -0.03777867928147316,
- 0.03708106651902199,
- 0.02275812067091465,
- -0.040437646210193634,
- 0.03428079932928085,
- 0.010697521269321442,
- -0.005658756010234356,
- 0.0832798182964325,
- 0.0007124948897399008,
- -0.01081983745098114,
- 0.018749676644802094,
- 0.07880110293626785,
- 0.047215331345796585,
- -0.02526378445327282,
- -0.029810477048158646,
- -0.049886804074048996,
- 0.01739661395549774,
- 0.09542902559041977,
- -0.10750262439250946,
- 0.007908373139798641,
- 0.027131089940667152,
- -0.20523758232593536,
- -0.1028437539935112,
- 0.2325977087020874,
- -0.00411466509103775,
- 0.03266458958387375,
- 0.016252947971224785,
- 0.031087398529052734,
- 0.06725002080202103,
- -0.023051463067531586,
- -0.13614091277122498,
- 0.07388263195753098,
- -0.013831312768161297,
- 0.03160097077488899,
- -0.030593350529670715,
- -0.008942252025008202,
- -0.06933855265378952,
- 0.049721889197826385,
- -0.020412391051650047,
- -0.03209754079580307,
- 0.07595506310462952,
- -0.06005062907934189,
- 0.0028060090262442827,
- 0.055301111191511154,
- 0.030460093170404434,
- 0.003961647395044565,
- -0.0820918008685112,
- -0.004567843396216631,
- 0.005005476530641317,
- 0.017729809507727623,
- -0.023308081552386284,
- -5.4761260239880456e-33,
- 0.06138582155108452,
- -0.07666084915399551,
- 0.05841188132762909,
- 0.0335848443210125,
- 0.050697218626737595,
- 0.004362042061984539,
- -0.0058989813551306725,
- -0.008694296702742577,
- -0.023791028186678886,
- -0.00859967339783907,
- 0.013193553313612938,
- -0.043140873312950134,
- -0.007644966244697571,
- -0.02445998229086399,
- 0.08064514398574829,
- -0.006971732247620821,
- -0.035972464829683304,
- 0.0035847127437591553,
- 0.006058688275516033,
- 0.002566735725849867,
- -0.08438731729984283,
- 0.01355268806219101,
- -0.06041194498538971,
- 0.08194896578788757,
- -0.0010761036537587643,
- -0.10159949213266373,
- 0.09267113357782364,
- -0.036612823605537415,
- 0.006852262187749147,
- 0.014942756853997707,
- 0.07693891227245331,
- -0.022387640550732613,
- 0.008164729923009872,
- -0.006050656083971262,
- -0.005926836282014847,
- -0.06822875142097473,
- 0.012050113640725613,
- -0.05250120162963867,
- -0.010048150084912777,
- -0.0031562524382025003,
- -0.016622178256511688,
- 0.032597482204437256,
- 0.05365315452218056,
- -0.014889302663505077,
- 0.037913862615823746,
- 0.009826302528381348,
- 0.06505874544382095,
- 0.08528348058462143,
- -0.01938563585281372,
- 0.05995321646332741,
- 0.019073747098445892,
- 0.01888643018901348,
- 0.013644745573401451,
- 0.029572619125247,
- 0.024373315274715424,
- -0.04612328112125397,
- -0.004113342147320509,
- 0.04684578627347946,
- -0.0004659192927647382,
- 0.04028348624706268,
- 0.03819618001580238,
- 0.10059072077274323,
- -0.0824497863650322,
- -0.027236005291342735,
- 0.024131393060088158,
- -0.011123305186629295,
- -0.016761736944317818,
- 0.02945956215262413,
- -0.024304673075675964,
- 0.06842963397502899,
- 0.028406595811247826,
- -0.02947089821100235,
- 0.0938633382320404,
- 0.03212050348520279,
- -0.014995315112173557,
- 0.006630605552345514,
- -0.018671484664082527,
- 0.00036447885213419795,
- -0.05619334429502487,
- 0.05172552540898323,
- 0.06794945895671844,
- 0.008017282001674175,
- -0.06752706319093704,
- 0.021506967023015022,
- -0.03596192225813866,
- 0.004936203360557556,
- 0.003377326298505068,
- -0.051706187427043915,
- 0.0011243263725191355,
- 0.0023741337936371565,
- -0.10479840636253357,
- -0.012192090041935444,
- 0.03167272359132767,
- -0.05716659501194954,
- -0.07801412791013718,
- 4.361340078913975e-33,
- -0.05760176107287407,
- -0.007851721718907356,
- -0.031234165653586388,
- 0.12491058558225632,
- 0.05655825138092041,
- 0.008938762359321117,
- -0.06965009868144989,
- -0.027762318029999733,
- -0.004344473127275705,
- 0.03473227471113205,
- -0.11477076262235641,
- 0.1290397047996521,
- 0.10198578983545303,
- 0.010612609796226025,
- -0.038473185151815414,
- -0.023826662451028824,
- 0.030161049216985703,
- -0.008733904920518398,
- -0.01920480839908123,
- 0.08773186057806015,
- -0.046486593782901764,
- 0.008736995980143547,
- 0.025967229157686234,
- -0.07681503891944885,
- -0.06759323924779892,
- 0.019541531801223755,
- -0.0003889536310452968,
- 0.02681843563914299,
- -0.0492735281586647,
- -0.019249202683568,
- 0.04338253661990166,
- -0.06010793149471283,
- -0.05389445647597313,
- 0.020964568480849266,
- -0.008301670663058758,
- 0.030488258227705956,
- 0.017659621313214302,
- -0.11455643177032471,
- -0.023958370089530945,
- 0.03310330957174301,
- 0.03042132779955864,
- -0.015457539819180965,
- -0.010355884209275246,
- 0.11148309707641602,
- -0.014487211592495441,
- -0.04829652979969978,
- -0.05377698689699173,
- 0.09707881510257721,
- 0.05663071200251579,
- 0.009646671824157238,
- -0.08797752112150192,
- 0.07762528955936432,
- 0.03166041895747185,
- -0.053436651825904846,
- 0.06190181523561478,
- -0.06235818564891815,
- -0.0028899910394102335,
- 0.047066349536180496,
- -0.06856940686702728,
- 0.030247537419199944,
- 0.038261957466602325,
- 0.03421966731548309,
- -0.029808346182107925,
- 0.07416605204343796,
- -0.033732980489730835,
- 0.06189946457743645,
- -0.004206771031022072,
- 0.055741410702466965,
- -0.025913381949067116,
- 0.046310946345329285,
- -0.04093287140130997,
- 0.009090390987694263,
- -0.0018910813378170133,
- -0.038186170160770416,
- -0.007552467752248049,
- 0.015431168489158154,
- 0.04280794411897659,
- 0.0016564115649089217,
- -0.013125406578183174,
- -0.04498389735817909,
- 0.02561296336352825,
- 0.0017534273210912943,
- 0.03146776184439659,
- 0.00027680298080667853,
- 0.028833573684096336,
- -0.0709514170885086,
- 0.0059203775599598885,
- 0.022018369287252426,
- 0.02771054394543171,
- 0.011437196284532547,
- 0.0027819182723760605,
- 0.03503919020295143,
- -0.05392348766326904,
- -0.004938374273478985,
- 0.030271967872977257,
- -1.2262978188459783e-8,
- 0.02119685895740986,
- -0.003083533374592662,
- -0.02217826619744301,
- -0.06289032846689224,
- 0.05142886936664581,
- -0.04258299618959427,
- 0.12042324990034103,
- 0.04704567790031433,
- 0.02967979572713375,
- 0.06255039572715759,
- -0.03939981013536453,
- 0.05757138878107071,
- -0.011754474602639675,
- 0.059008657932281494,
- 0.0011216280981898308,
- -0.0707082450389862,
- 0.02595827728509903,
- -0.05161064490675926,
- -0.061599116772413254,
- 0.03212843835353851,
- 0.0035961861722171307,
- -0.0037393567617982626,
- -0.0036348793655633926,
- -0.036277394741773605,
- -0.024514805525541306,
- -0.058758050203323364,
- -0.02622891776263714,
- -0.09234288334846497,
- 0.022306619212031364,
- 0.02432260476052761,
- 0.053241949528455734,
- 0.029191194102168083,
- -0.03712845593690872,
- -0.00999352615326643,
- -0.13275748491287231,
- -0.04879224672913551,
- 0.02233646623790264,
- 0.007528930902481079,
- -0.034014150500297546,
- -0.061691977083683014,
- -0.06092881038784981,
- -0.027249082922935486,
- 0.03278511390089989,
- -0.013527024537324905,
- -0.04268350824713707,
- 0.022838646546006203,
- 0.03936859592795372,
- 0.008543110452592373,
- -0.05926685780286789,
- -0.034097205847501755,
- -0.03177084028720856,
- -0.009869161993265152,
- 0.07093651592731476,
- -0.03377172723412514,
- 0.03624887391924858,
- 0.01855817623436451,
- -0.01687840186059475,
- 0.002936483360826969,
- -0.00743241747841239,
- 0.0658796951174736,
- -0.08518306165933609,
- 0.015396544709801674,
- -0.020970122888684273,
- -0.02989303506910801
- ]
- },
- {
- "keyword": "plaza",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.11572578549385071,
- -0.08179893344640732,
- -0.07268789410591125,
- -0.02035754919052124,
- -0.03994356468319893,
- 0.024568617343902588,
- 0.044438812881708145,
- 0.03470074385404587,
- -0.02486809343099594,
- -0.02564181573688984,
- 0.038467422127723694,
- -0.025593196973204613,
- -0.013690756633877754,
- -0.04425100237131119,
- 0.04819658398628235,
- 0.013353120535612106,
- -0.0024773753248155117,
- 0.0639265924692154,
- -0.061866261065006256,
- -0.08326247334480286,
- -0.007934324443340302,
- -0.03426102548837662,
- -0.042772818356752396,
- -0.014874860644340515,
- -0.10156567394733429,
- 0.07555318623781204,
- -0.035439807921648026,
- 0.060023948550224304,
- -0.0580875389277935,
- -0.12183523923158646,
- 0.0115493293851614,
- 0.05529719963669777,
- 0.06886468827724457,
- -0.014368615113198757,
- 0.030249370262026787,
- 0.0002680307370610535,
- 0.0006672485615126789,
- -0.015222168527543545,
- 0.06684743613004684,
- 0.030989499762654305,
- -0.0420692041516304,
- -0.02059708721935749,
- -0.043715883046388626,
- 0.03335985913872719,
- 0.04583040997385979,
- 0.023749707266688347,
- -0.04390612244606018,
- -0.07766608148813248,
- 0.034202687442302704,
- 0.03313824161887169,
- 0.03477031737565994,
- 0.01744958758354187,
- -0.04180902987718582,
- 0.12847542762756348,
- 0.0188815426081419,
- 0.056227996945381165,
- 0.0038838142063468695,
- -0.022958409041166306,
- 0.06670020520687103,
- -0.013458352535963058,
- 0.060550540685653687,
- -0.02197607047855854,
- -0.022501572966575623,
- 0.033374372869729996,
- -0.022345995530486107,
- 0.006931601092219353,
- -0.0024331468157470226,
- -0.031026141718029976,
- -0.011775552295148373,
- -0.10316695272922516,
- 0.03839152678847313,
- 0.04874325916171074,
- -0.0001666061143623665,
- -0.07268686592578888,
- 0.04179205745458603,
- -0.0389241985976696,
- 0.011910468339920044,
- -0.05292809382081032,
- 0.030734920874238014,
- 0.06183601915836334,
- 0.0633665919303894,
- 0.05871594697237015,
- -0.04375946521759033,
- -0.003539346158504486,
- 0.014652553014457226,
- -0.04231993854045868,
- -0.025425730273127556,
- 0.025468865409493446,
- 0.008422021754086018,
- -0.013116046786308289,
- -0.07052945345640182,
- 0.07197991758584976,
- -0.009506179951131344,
- 0.01461656391620636,
- -0.1843867152929306,
- 0.02584819309413433,
- 0.019730865955352783,
- -0.02262791432440281,
- -0.08255991339683533,
- 0.1807420700788498,
- 0.06857609003782272,
- 0.03277475759387016,
- -0.025472590699791908,
- 0.006616201251745224,
- -0.015505019575357437,
- -0.02146507054567337,
- 0.01702810823917389,
- 0.10936702787876129,
- -0.01725141704082489,
- 0.022860482335090637,
- -0.01573166623711586,
- -0.043644048273563385,
- -0.009235226549208164,
- 0.06034386530518532,
- -0.004427484702318907,
- 0.13516132533550262,
- -0.026060553267598152,
- -0.04363624379038811,
- 0.054535362869501114,
- -0.003808567998930812,
- 0.07120451331138611,
- -0.04649801552295685,
- 0.029736749827861786,
- -0.07322095334529877,
- -0.1079958900809288,
- -0.028366269543766975,
- 0.009321292862296104,
- -4.116096325159937e-33,
- 0.0004946620319969952,
- 0.10172687470912933,
- -0.011736237443983555,
- 0.05923152714967728,
- 0.05050761252641678,
- -0.018632330000400543,
- 0.07944140583276749,
- -0.017108315601944923,
- 0.019599732011556625,
- -0.034948717802762985,
- -0.09569671750068665,
- 0.03507368639111519,
- -0.005454690661281347,
- -0.029415851458907127,
- -0.08118384331464767,
- 0.0009675329201854765,
- 0.04990091919898987,
- 0.03726900368928909,
- -0.04994584247469902,
- 0.00801497045904398,
- -0.01034065056592226,
- -0.039962053298950195,
- -0.005784228909760714,
- 0.07419150322675705,
- 0.033309657126665115,
- 0.026958167552947998,
- -0.018169783055782318,
- 0.0025477891322225332,
- 0.07716093212366104,
- 0.06194018945097923,
- 0.0027281928341835737,
- -0.02744644321501255,
- 0.019969230517745018,
- 0.07739348709583282,
- -0.01128669735044241,
- -0.08001979440450668,
- -0.06175210699439049,
- -0.03918629512190819,
- -0.04949616640806198,
- 0.011626922525465488,
- 0.027238896116614342,
- 0.0012278613867238164,
- -0.056926220655441284,
- 0.03375471010804176,
- -0.01770593784749508,
- -0.021099314093589783,
- 0.11676498502492905,
- 0.06229880824685097,
- 0.04641371965408325,
- 0.02566634863615036,
- -0.06881236284971237,
- 0.006365485023707151,
- -0.07678310573101044,
- 0.02272156998515129,
- -0.04769494757056236,
- 0.04728792980313301,
- -0.12169789522886276,
- 0.003698670072481036,
- 0.0008124897722154856,
- -0.005172500386834145,
- 0.10089240968227386,
- 0.07708606868982315,
- -0.07207661122083664,
- -0.06677968055009842,
- 0.03492368385195732,
- -0.021882744506001472,
- -0.015028811991214752,
- 0.0253639817237854,
- 0.044865429401397705,
- 0.021205352619290352,
- 0.026501363143324852,
- 0.0461689792573452,
- 0.05029387027025223,
- 0.11769752204418182,
- 0.029074041172862053,
- 0.020723778754472733,
- 0.08161784708499908,
- 0.05164840817451477,
- -0.07738973945379257,
- -0.0009916702983900905,
- -0.03755999356508255,
- -0.0026251531671732664,
- -0.09976217150688171,
- 0.04033014178276062,
- -0.008720636367797852,
- -0.035119663923978806,
- 0.005334694404155016,
- 0.004308626987040043,
- -0.050066832453012466,
- 0.052426859736442566,
- -0.05364014580845833,
- 0.03513177111744881,
- 0.06837992370128632,
- -0.05096850544214249,
- -0.07523419708013535,
- 3.741471050998674e-33,
- 0.02269301377236843,
- 0.0294929351657629,
- -0.09591991454362869,
- 0.01731436885893345,
- -0.04919002950191498,
- 0.01794608309864998,
- 0.06116602197289467,
- -0.040116652846336365,
- -0.001593900378793478,
- 0.011150437407195568,
- -0.14695914089679718,
- 0.02347947284579277,
- 0.005728942807763815,
- 0.006804353557527065,
- 0.04674040153622627,
- 0.12770117819309235,
- 0.058148548007011414,
- 0.021634964272379875,
- -0.023895815014839172,
- 0.001080359099432826,
- 0.0012662865919992328,
- -0.011448928155004978,
- -0.07144836336374283,
- -0.05394195020198822,
- -0.010593193583190441,
- 0.0970299020409584,
- -0.08027280867099762,
- -0.07786711305379868,
- 0.06389071047306061,
- 0.0431826151907444,
- 0.01262525375932455,
- 0.023910902440547943,
- -0.039059437811374664,
- 0.0701780691742897,
- -0.01483120210468769,
- 0.06265786290168762,
- 0.022676784545183182,
- -0.002181446645408869,
- 0.02234605699777603,
- 0.0019935807213187218,
- 0.005261764395982027,
- 0.05677749961614609,
- -0.031208153814077377,
- 0.13957400619983673,
- 0.04607664793729782,
- -0.031610678881406784,
- -0.022411758080124855,
- 0.04285135865211487,
- -0.004527393728494644,
- 0.05077144876122475,
- -0.06925389915704727,
- -0.024027898907661438,
- -0.041906531900167465,
- -0.03073958493769169,
- -0.0030104382894933224,
- -0.03249937668442726,
- 0.004259621724486351,
- 0.0015798151725903153,
- -0.05137496441602707,
- -0.021993929520249367,
- 0.011378687806427479,
- -0.03020828776061535,
- -0.005616053007543087,
- 0.05946509912610054,
- 0.0841030403971672,
- -0.02492174133658409,
- 0.02616172470152378,
- -0.09413766115903854,
- -0.09771907329559326,
- -0.020768433809280396,
- 0.04745135083794594,
- -0.04982642084360123,
- -0.05869296193122864,
- -0.01071151252835989,
- -0.004508208483457565,
- -0.055384304374456406,
- -0.057115886360406876,
- 0.03504105284810066,
- -0.0012109017698094249,
- 0.0394485779106617,
- -0.01428262609988451,
- 0.043885841965675354,
- 0.0384795255959034,
- -0.058360505849123,
- -0.005853762850165367,
- -0.010937209241092205,
- 0.04187575727701187,
- 0.0641808956861496,
- -0.010785792954266071,
- -0.11050660908222198,
- -0.009404422715306282,
- 0.027974452823400497,
- -0.04134513437747955,
- -0.08825777471065521,
- -0.06002607196569443,
- -1.1882380412941984e-8,
- 0.050642844289541245,
- 0.1063615158200264,
- -0.06608306616544724,
- 0.04581495746970177,
- 0.0638272613286972,
- 0.060666266828775406,
- 0.004812224768102169,
- 0.038563087582588196,
- 0.022324932739138603,
- -0.03730596974492073,
- -0.052756622433662415,
- -0.01388992927968502,
- 0.01615717075765133,
- 0.04034475237131119,
- -0.0022003541234880686,
- -0.018953615799546242,
- -0.08563951402902603,
- -0.027299273759126663,
- 0.00841527059674263,
- 0.00027881376445293427,
- 0.053487155586481094,
- 0.0062667736783623695,
- -0.0565718375146389,
- 0.04397985339164734,
- 0.02454051934182644,
- 0.05745953321456909,
- 0.05173506215214729,
- 0.05350026488304138,
- 0.045034777373075485,
- -0.046973977237939835,
- 0.01368615124374628,
- 0.05897785350680351,
- 0.020680027082562447,
- -0.06703447550535202,
- 0.0037759547121822834,
- -0.0517100915312767,
- 0.008563407696783543,
- 0.020669564604759216,
- -0.009128856472671032,
- -0.09434673190116882,
- 0.013609121553599834,
- -0.09000120311975479,
- 0.04474224895238876,
- -0.035879749804735184,
- 0.021882306784391403,
- 0.06410831958055496,
- 0.02734861522912979,
- -0.024800671264529228,
- 0.0010398911545053124,
- -0.04558967426419258,
- -0.0404009185731411,
- -0.07344357669353485,
- 0.026294786483049393,
- 0.011564575135707855,
- -0.033595286309719086,
- -0.014139129780232906,
- 0.07125665992498398,
- 0.041187506169080734,
- 0.027153342962265015,
- -0.0032025654800236225,
- 0.06563104689121246,
- 0.07249362021684647,
- -0.027398444712162018,
- 0.0036715620663017035
- ]
- },
- {
- "keyword": "square",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.10220781713724136,
- 0.07997225224971771,
- -0.01707747019827366,
- 0.05451682582497597,
- -0.09658515453338623,
- 0.03767469897866249,
- 0.023718049749732018,
- 0.008967284113168716,
- 0.042413391172885895,
- -0.062281470745801926,
- 0.00838429108262062,
- 0.024971041828393936,
- 0.007174281869083643,
- 0.052436891943216324,
- -0.01999417133629322,
- -0.03856939449906349,
- 0.001584261073730886,
- 0.01243355218321085,
- -0.04674947261810303,
- -0.039413951337337494,
- 0.036848586052656174,
- -0.06991155445575714,
- -0.007535588461905718,
- -0.010508323088288307,
- -0.03413103520870209,
- 0.05589533969759941,
- -0.006018454674631357,
- 0.07631880044937134,
- 0.04863196238875389,
- -0.10783927142620087,
- 0.048637062311172485,
- 0.009078889153897762,
- 0.007421038579195738,
- -0.00236855773255229,
- -0.02103176899254322,
- -0.006276514381170273,
- -0.03229410946369171,
- 0.035908907651901245,
- 0.058472078293561935,
- -0.0017531594494357705,
- 0.009581536054611206,
- -0.10266125947237015,
- 0.05955314636230469,
- 0.017588287591934204,
- 0.005052960943430662,
- 0.004378517158329487,
- 0.019118089228868484,
- 0.0025019606109708548,
- 0.049894582480192184,
- -0.04402545094490051,
- 0.016107788309454918,
- -0.02381032332777977,
- -0.020198266953229904,
- -0.02082587592303753,
- 0.04183267802000046,
- -0.021950310096144676,
- 0.0006187073304317892,
- 0.008579558692872524,
- 0.06364057213068008,
- -0.0009149136021733284,
- 0.09116488695144653,
- -0.029775768518447876,
- -0.03708779066801071,
- 0.03651805222034454,
- -0.0752132460474968,
- 0.032679468393325806,
- -0.026584958657622337,
- -0.021447598934173584,
- -0.034323543310165405,
- -0.034902725368738174,
- 0.025836609303951263,
- 0.08325643837451935,
- 0.02088715136051178,
- 0.010174856521189213,
- 0.05842997878789902,
- -0.14365966618061066,
- 0.017957843840122223,
- -0.04673754796385765,
- 0.031535882502794266,
- 0.06473114341497421,
- -0.06571003049612045,
- 0.013718931004405022,
- -0.042538274079561234,
- 0.024914152920246124,
- -0.043205272406339645,
- -0.03308206796646118,
- 0.02426106296479702,
- 0.02256966568529606,
- -0.02193984016776085,
- -0.03861238434910774,
- -0.06257844716310501,
- 0.03869656100869179,
- 0.038851626217365265,
- 0.04461146518588066,
- -0.10270671546459198,
- 0.023159153759479523,
- 0.008671674877405167,
- -0.042284008115530014,
- -0.053809359669685364,
- 0.21858681738376617,
- 0.0948786586523056,
- 0.03221610561013222,
- 0.0038930356968194246,
- -0.07057615369558334,
- 0.05869119614362717,
- -0.028608253225684166,
- 0.08075056225061417,
- 0.028323568403720856,
- 0.06108241155743599,
- 0.017163310199975967,
- -0.028231054544448853,
- -0.024195276200771332,
- 0.02986399084329605,
- 0.11208085715770721,
- -0.022297929972410202,
- 0.01385849341750145,
- 0.008845766074955463,
- -0.059334442019462585,
- 0.022534064948558807,
- -0.035621654242277145,
- 0.04661206528544426,
- 0.04444292560219765,
- 0.05228392034769058,
- -0.04457399249076843,
- -0.009172464720904827,
- -0.028140485286712646,
- -0.026877621188759804,
- -4.380001051733279e-33,
- -0.04855557903647423,
- 0.041871484369039536,
- 0.0965060144662857,
- 0.07260478287935257,
- 0.03093729354441166,
- -0.062196288257837296,
- -0.02026769146323204,
- -0.06726355105638504,
- 0.08083482086658478,
- 0.10343295335769653,
- -0.014991245232522488,
- -0.07029521465301514,
- -0.07078462094068527,
- 0.029592769220471382,
- 0.1223837211728096,
- 0.00023693230468779802,
- 0.04977279528975487,
- 0.08489452302455902,
- -0.04305653274059296,
- 0.001761648221872747,
- -0.060001540929079056,
- 0.02499292604625225,
- -0.007617053110152483,
- 0.06300138682126999,
- 0.00183833297342062,
- 0.0036874909419566393,
- 0.0021606949158012867,
- -0.05767331272363663,
- 0.055447619408369064,
- 0.05357996001839638,
- 0.06576526910066605,
- 0.021880129352211952,
- -0.021184582263231277,
- -0.006903284229338169,
- 0.0027479149866849184,
- -0.06828895211219788,
- 0.06065300852060318,
- -0.02792126126587391,
- 0.006809532642364502,
- -0.030896848067641258,
- -0.03454042598605156,
- -0.011950614862143993,
- -0.00819189753383398,
- -0.01917842961847782,
- 0.0861758291721344,
- -0.0075491624884307384,
- 0.10433362424373627,
- -0.026069670915603638,
- 0.00728235486894846,
- -0.019168037921190262,
- -0.015898212790489197,
- 0.004076000768691301,
- -0.11064063757658005,
- 0.01987745799124241,
- 0.09863846749067307,
- -0.057972200214862823,
- -0.04017845168709755,
- -0.02063095197081566,
- 0.014017626643180847,
- 0.08930656313896179,
- 0.0178217776119709,
- 0.03260503709316254,
- -0.03181569650769234,
- -0.033543433994054794,
- -0.07051526755094528,
- -0.019317399710416794,
- -0.009555335156619549,
- -0.08342695981264114,
- -0.025129863992333412,
- 0.036868348717689514,
- -0.03447171673178673,
- -0.03729628771543503,
- 0.07448477298021317,
- 0.017717307433485985,
- 0.02033904194831848,
- -0.05711271986365318,
- -0.02932066284120083,
- 0.018256494775414467,
- 0.021614551544189453,
- -0.041332993656396866,
- -0.051633890718221664,
- 0.04363766685128212,
- -0.04382377117872238,
- -0.09861472249031067,
- 0.03545025736093521,
- -0.05746263265609741,
- 0.004387977998703718,
- -0.1011049672961235,
- -0.02879336103796959,
- -0.047010522335767746,
- -0.11712419986724854,
- -0.02711542136967182,
- 0.0374278798699379,
- 0.04304961860179901,
- -0.068353570997715,
- 4.079747835780604e-33,
- -0.11086966097354889,
- 0.06789232790470123,
- -0.051115527749061584,
- 0.07614181190729141,
- 0.004778658039867878,
- -0.01774679310619831,
- -0.0166927482932806,
- 0.009716351516544819,
- 0.03311852738261223,
- 0.016548452898859978,
- -0.04736028611660004,
- -0.030388889834284782,
- 0.039113402366638184,
- -0.01802288368344307,
- 0.06487225741147995,
- 0.085298091173172,
- 0.1187252625823021,
- -0.0436943881213665,
- -0.09580574184656143,
- -0.05500233918428421,
- -0.019130300730466843,
- -0.11585349589586258,
- 0.02756357006728649,
- 0.014055190607905388,
- 0.007966825738549232,
- 0.10546226799488068,
- 0.008199542760848999,
- -0.020418107509613037,
- 0.018457122147083282,
- 0.07050330936908722,
- -0.023222193121910095,
- -0.04797840118408203,
- -0.0692686215043068,
- 0.00722135603427887,
- -0.08096256107091904,
- -0.015000100247561932,
- 0.029917150735855103,
- -0.06820755451917648,
- -0.030523866415023804,
- -0.03732544556260109,
- 0.11305185407400131,
- -0.027424370869994164,
- 0.004924219101667404,
- 0.16143302619457245,
- 0.01063049677759409,
- -0.023846548050642014,
- 0.07065324485301971,
- 0.009433688595890999,
- 0.02635776996612549,
- -0.056763846427202225,
- -0.09640803933143616,
- 0.02045191079378128,
- -0.010440582409501076,
- 0.001296380185522139,
- 0.019238542765378952,
- 0.009278781712055206,
- -0.03649379312992096,
- 0.05559542402625084,
- -0.03394225984811783,
- 0.04033373296260834,
- -0.01927671767771244,
- 0.009403909556567669,
- -0.017117004841566086,
- 0.05892536789178848,
- -0.05722085013985634,
- 0.070736825466156,
- 0.013656055554747581,
- 0.018982531502842903,
- -0.04806995764374733,
- 0.13883042335510254,
- -0.003986235707998276,
- 0.07000274956226349,
- -0.0939587950706482,
- -0.003280562348663807,
- -0.06057482585310936,
- 0.03226761147379875,
- -0.08043447881937027,
- 0.04287654161453247,
- -0.028364287689328194,
- 0.06892786920070648,
- 0.014504791237413883,
- 0.04963535815477371,
- 0.019831109791994095,
- -0.039321545511484146,
- 0.017700521275401115,
- -0.006188266910612583,
- 0.0597308874130249,
- 0.11285465955734253,
- -0.008223087526857853,
- -0.004643399268388748,
- 0.004162036348134279,
- 0.047313883900642395,
- -0.04300140589475632,
- -0.006969756446778774,
- 0.02061432972550392,
- -1.214780009917149e-8,
- -0.057514265179634094,
- 0.052306849509477615,
- -0.0016022422350943089,
- -0.01955268532037735,
- -0.022326815873384476,
- -0.030781088396906853,
- 0.011032631620764732,
- 0.028882918879389763,
- -0.041703961789608,
- 0.012386297807097435,
- -0.04825054109096527,
- 0.028650278225541115,
- -0.04002602398395538,
- 0.05756353586912155,
- -0.00037255664938129485,
- -0.009676593355834484,
- -0.009612602181732655,
- -0.004384938627481461,
- -0.006066263187676668,
- 0.018170228227972984,
- -0.010294057428836823,
- -0.03611135110259056,
- -0.06948316097259521,
- 0.037084273993968964,
- -0.08473795652389526,
- 0.012266742996871471,
- -0.0043172696605324745,
- 0.07737555354833603,
- 0.005629802588373423,
- 0.05878407508134842,
- 0.024539588019251823,
- 0.05213252454996109,
- -0.06883753836154938,
- -0.04652155935764313,
- -0.035817041993141174,
- -0.09819082170724869,
- 0.0013793950201943517,
- 0.007483446039259434,
- 0.01823796145617962,
- -0.07418842613697052,
- 0.025523090735077858,
- -0.07384539395570755,
- 0.06640879064798355,
- -0.013571654446423054,
- 0.051473408937454224,
- 0.09069033712148666,
- 0.02938653714954853,
- 0.038053691387176514,
- -0.04047175496816635,
- -0.07971560955047607,
- -0.07162869721651077,
- -0.017779553309082985,
- 0.02056499943137169,
- 0.07918338477611542,
- 0.03590954840183258,
- -0.01902150548994541,
- -0.05979287996888161,
- 0.002449708990752697,
- -0.01422507781535387,
- 0.02815687097609043,
- 0.0498044490814209,
- 0.03940621390938759,
- -0.048021044582128525,
- 0.02240101434290409
- ]
- },
- {
- "keyword": "mall",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.02668440155684948,
- 0.020301034674048424,
- -0.06210863217711449,
- 0.009289265610277653,
- -0.00011540223204065114,
- 0.011210951022803783,
- 0.102103091776371,
- -0.009419756941497326,
- 0.043878454715013504,
- -0.015066973865032196,
- 0.05541672557592392,
- 0.021033834666013718,
- 0.041519030928611755,
- 0.016080910339951515,
- 0.03595767170190811,
- -0.0073454673402011395,
- 0.09242525696754456,
- 0.05255349352955818,
- 0.02257230319082737,
- -0.07989386469125748,
- -0.04538401961326599,
- 0.023627473041415215,
- 0.02623830921947956,
- 0.03104814887046814,
- -0.08779297024011612,
- 0.02015811949968338,
- -0.039636608213186264,
- -0.03287418931722641,
- -0.08172880113124847,
- -0.049955569207668304,
- 0.054985273629426956,
- 0.0019992697052657604,
- 0.043306779116392136,
- 0.001026115962304175,
- 0.09680294990539551,
- 0.004157879389822483,
- -0.0029747060034424067,
- -0.038276463747024536,
- 0.038658108562231064,
- -0.011261549778282642,
- 0.00925560761243105,
- -0.000495916057843715,
- -0.05583879351615906,
- 0.025780310854315758,
- -0.01566719450056553,
- -0.014016406610608101,
- -0.0008985858294181526,
- 0.016658740118145943,
- 0.008570180274546146,
- 0.0021029922645539045,
- 0.02005258947610855,
- 0.07764405012130737,
- 0.0031901805195957422,
- -0.011913841590285301,
- 0.0037796783726662397,
- 0.11087621003389359,
- -0.05986402928829193,
- 0.0398159995675087,
- 0.06428854912519455,
- -0.02032046765089035,
- 0.03805569186806679,
- -0.05239696428179741,
- -0.06964482367038727,
- 0.0244099423289299,
- -0.00948266964405775,
- 0.009579177014529705,
- 0.012817276641726494,
- 0.07547558844089508,
- 0.028622040525078773,
- -0.09531071782112122,
- 0.028374359011650085,
- -0.01231038011610508,
- 0.0062767090275883675,
- 0.013873852789402008,
- 0.060196053236722946,
- 0.0191191378980875,
- 0.03038727305829525,
- -0.011077342554926872,
- 0.03425990790128708,
- -0.024532178416848183,
- -0.05360190197825432,
- -0.06189771369099617,
- 0.019780358299613,
- -0.0134768420830369,
- -0.0027315798215568066,
- -0.0018377830274403095,
- 0.03737087920308113,
- 0.012185940518975258,
- 0.030528778210282326,
- -0.026070278137922287,
- -0.03457268327474594,
- 0.039072539657354355,
- -0.14610175788402557,
- -0.0335703119635582,
- -0.09153217077255249,
- -0.03947298228740692,
- -0.012983674183487892,
- -0.014190281741321087,
- -0.010172910057008266,
- 0.2334647923707962,
- 0.016154980286955833,
- 0.06733962148427963,
- 0.12914322316646576,
- -0.012150758877396584,
- -0.04426533728837967,
- -0.08887291699647903,
- -0.03075544722378254,
- 0.06510492414236069,
- -0.05356498062610626,
- -0.0035097221843898296,
- -0.013188102282583714,
- -0.03178657963871956,
- 0.07070907205343246,
- 0.008993219584226608,
- 0.023496536538004875,
- 0.0013617001241073012,
- 0.08257223665714264,
- 0.010673766024410725,
- -0.0353698693215847,
- -0.0016014038119465113,
- -0.006105603650212288,
- 0.07040207833051682,
- -0.012034234590828419,
- 0.022055981680750847,
- -0.11622762680053711,
- -0.061251796782016754,
- -0.06649862229824066,
- -4.960520773596789e-33,
- -0.06324209272861481,
- 0.00011199276195839047,
- 0.008011141791939735,
- -0.07149730622768402,
- -0.05239417776465416,
- -0.0419643372297287,
- 0.0037207568529993296,
- -0.0833870992064476,
- -0.01698954403400421,
- 0.0473242923617363,
- 0.07826095819473267,
- -0.12602660059928894,
- -0.0016087780240923166,
- -0.021985137835144997,
- 0.10505799204111099,
- 0.04773000627756119,
- 0.019311610609292984,
- 0.04406361281871796,
- -0.03555416688323021,
- -0.05417098104953766,
- -0.07160302251577377,
- 0.08763992786407471,
- -0.020274801179766655,
- -0.037018418312072754,
- -0.03258463367819786,
- -0.017830686643719673,
- 0.04210655391216278,
- 0.06614714115858078,
- 0.15703827142715454,
- 0.043319426476955414,
- -0.012895464897155762,
- 0.020281553268432617,
- -0.0004397210432216525,
- 0.0027844696305692196,
- 0.008411861956119537,
- -0.005291227251291275,
- -0.07706225663423538,
- -0.04453614726662636,
- 0.0038387137465178967,
- -0.02546478807926178,
- 0.055931493639945984,
- -0.006026942282915115,
- 0.031578004360198975,
- 0.048034925013780594,
- 0.02292448841035366,
- 0.06722638756036758,
- 0.04325028136372566,
- 0.038383811712265015,
- 0.0006236143526621163,
- -0.011550037190318108,
- -0.023626815527677536,
- -0.005847560707479715,
- -0.0820317268371582,
- 0.06641145795583725,
- -0.05116194486618042,
- -0.05777393653988838,
- -0.04286821931600571,
- -0.050655100494623184,
- 0.10488073527812958,
- -0.013988125137984753,
- 0.058717239648103714,
- 0.06329775601625443,
- -0.09559983760118484,
- -0.04591062664985657,
- -0.0264512337744236,
- -0.10618405044078827,
- 0.005563625134527683,
- -0.04907647892832756,
- 0.06793581694364548,
- 0.02405051700770855,
- -0.00991768203675747,
- 0.03631183132529259,
- 0.11173690855503082,
- 0.07279179245233536,
- -0.014415021054446697,
- 0.04006032273173332,
- -0.050787489861249924,
- 0.12275473773479462,
- -0.06040840595960617,
- 0.013202347792685032,
- 0.014972568489611149,
- -0.016719888895750046,
- 0.03318691626191139,
- 0.099785715341568,
- 0.0246262326836586,
- -0.015049557201564312,
- 0.004906509071588516,
- -0.08001775294542313,
- -0.03239462897181511,
- 0.005847941618412733,
- 0.001107249059714377,
- 0.015211210586130619,
- -0.03150910139083862,
- 0.004472406581044197,
- 0.03490164130926132,
- 3.841588272200193e-33,
- 0.09965308010578156,
- -0.08208832889795303,
- -0.008445661514997482,
- 0.10442955046892166,
- -0.030038949102163315,
- 0.0009701924864202738,
- -0.09461187571287155,
- -0.015024692751467228,
- -0.042544927448034286,
- -0.03390178829431534,
- -0.08248292654752731,
- -0.02079130709171295,
- 0.035849545150995255,
- -0.007627084385603666,
- 0.12071254849433899,
- 0.09957155585289001,
- 0.1329594850540161,
- 0.025054937228560448,
- -0.0020507255103439093,
- -0.008943567052483559,
- -0.047928255051374435,
- -0.053408183157444,
- 0.0023195066023617983,
- -0.04727604240179062,
- -0.0741521343588829,
- 0.02442948706448078,
- -0.010475419461727142,
- -0.030925327911973,
- -0.0703963190317154,
- 0.024072948843240738,
- -0.09573648869991302,
- -0.038859300315380096,
- -0.02854369767010212,
- 0.1010078638792038,
- -0.023235464468598366,
- 0.02205810323357582,
- 0.012071206234395504,
- -0.06935349851846695,
- 0.02033761516213417,
- 0.01430978998541832,
- 0.060976654291152954,
- 0.00029521845863200724,
- -0.02559691108763218,
- 0.07874134927988052,
- 0.04791342094540596,
- -0.019325539469718933,
- 0.03375928848981857,
- 0.06121758371591568,
- 0.040966928005218506,
- -0.03379281237721443,
- -0.09698393940925598,
- 0.048996709287166595,
- -0.018392328172922134,
- -0.1282135248184204,
- 0.03479842469096184,
- 0.015162147581577301,
- 0.07725448906421661,
- 0.0033973404206335545,
- -0.008938482031226158,
- -0.007559800986200571,
- -0.030480721965432167,
- 0.02796594426035881,
- 0.010119070298969746,
- -0.018476689234375954,
- -0.05469715967774391,
- 0.0019468318205326796,
- -0.014427089132368565,
- -0.06194668635725975,
- -0.04517543315887451,
- 0.011861180886626244,
- -0.00793676357716322,
- 0.08275635540485382,
- -0.02869184873998165,
- -0.049691081047058105,
- -0.08607222884893417,
- 0.017014984041452408,
- 0.04294395446777344,
- 0.06864245235919952,
- -0.046489596366882324,
- -0.04886528477072716,
- -0.0015538595616817474,
- 0.019771624356508255,
- -0.029753422364592552,
- 0.02168678119778633,
- 0.042278751730918884,
- 0.04287227615714073,
- 0.015894170850515366,
- 0.033490635454654694,
- -0.04164338484406471,
- -0.0548282228410244,
- -0.00042767601553350687,
- 0.05014008283615112,
- -0.02464659884572029,
- 0.037817806005477905,
- -0.02636031061410904,
- -1.0925704785336166e-8,
- -0.05006230250000954,
- 0.04860522970557213,
- -0.052193835377693176,
- -0.015926403924822807,
- 0.07047909498214722,
- 0.0501706525683403,
- 0.023000158369541168,
- 0.1055639311671257,
- 0.05486558750271797,
- 0.11359808593988419,
- -0.013862812891602516,
- -0.04087589308619499,
- -0.08364073187112808,
- 0.03242461383342743,
- -0.050004731863737106,
- 0.0039053584914654493,
- 0.01792297698557377,
- -0.038967061787843704,
- -0.024891948327422142,
- -0.05735135078430176,
- -0.007199447136372328,
- 0.04413586109876633,
- 0.03773224726319313,
- 0.04833181947469711,
- -0.02092711813747883,
- -0.020320111885666847,
- -0.004256563261151314,
- 0.034184377640485764,
- 0.012628080323338509,
- -0.05505514517426491,
- 0.09792456775903702,
- 0.028076335787773132,
- -0.06121959164738655,
- -0.028729910030961037,
- -0.009443851187825203,
- -0.0547722689807415,
- -0.011506464332342148,
- 0.030877698212862015,
- 0.0032497963402420282,
- 0.039099711924791336,
- -0.06270597130060196,
- -0.08160998672246933,
- 0.02331872284412384,
- 0.025184497237205505,
- 0.018925463780760765,
- 0.038791317492723465,
- 0.0553613156080246,
- -0.021628770977258682,
- -0.051938049495220184,
- -0.010516325943171978,
- -0.08819541335105896,
- -0.012219865806400776,
- 0.0004820980248041451,
- -0.04183067008852959,
- 0.040259238332509995,
- -0.036110106855630875,
- -0.02675445005297661,
- -0.04343007877469063,
- -0.03164840489625931,
- 0.022130664438009262,
- 0.040895383805036545,
- -0.033441342413425446,
- -0.056073736399412155,
- 0.03582670912146568
- ]
- },
- {
- "keyword": "neighborhood",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.09572982788085938,
- -0.005617669317871332,
- 0.016836384311318398,
- 0.004806557670235634,
- -0.034742873162031174,
- 0.003684189636260271,
- 0.00432384992018342,
- -0.029652182012796402,
- -0.03593367338180542,
- -0.03437110409140587,
- 0.12145206332206726,
- -0.027128737419843674,
- 0.03417135775089264,
- 0.0011290329275652766,
- 0.017528129741549492,
- 0.01709914579987526,
- 0.027245577424764633,
- -0.016930513083934784,
- 0.005614736117422581,
- -0.08240029960870743,
- -0.08606034517288208,
- 0.03567388653755188,
- 0.0826142430305481,
- -0.0031132721342146397,
- -0.007334886118769646,
- 0.07479256391525269,
- 0.036847226321697235,
- 0.03524871543049812,
- -0.03162361681461334,
- -0.01252688281238079,
- 0.056154556572437286,
- 0.0196820218116045,
- 0.04859873652458191,
- -0.04159833863377571,
- 0.0322347916662693,
- 0.06923513114452362,
- 0.011058679781854153,
- 0.07817462831735611,
- 0.024399660527706146,
- 0.0351426862180233,
- -0.0156782828271389,
- -0.05842546373605728,
- 0.010805942118167877,
- -0.04562405124306679,
- -0.05042858049273491,
- -0.01709771528840065,
- 0.03821270167827606,
- 0.02004230208694935,
- 0.04045013338327408,
- -0.05100570246577263,
- 0.04931826889514923,
- 0.05268361419439316,
- -0.05267930403351784,
- 0.05247259885072708,
- 0.013043198734521866,
- 0.029331980273127556,
- -0.0020503501873463392,
- 0.03010646440088749,
- 0.021497385576367378,
- -0.05145172029733658,
- 0.052835483103990555,
- -0.015686025843024254,
- -0.08514723926782608,
- 0.012533098459243774,
- 0.09050750732421875,
- -0.05839851126074791,
- -0.000036432407796382904,
- 0.06533602625131607,
- 0.007385263219475746,
- -0.05386192351579666,
- 0.03575197234749794,
- -0.016338013112545013,
- 0.02616925910115242,
- 0.028407886624336243,
- 0.014990201219916344,
- 0.040228065103292465,
- 0.000007634894245711621,
- -0.009158634580671787,
- 0.07207293808460236,
- -0.0697118267416954,
- 0.021531857550144196,
- -0.02446042187511921,
- -0.016858713701367378,
- -0.005998215172439814,
- -0.04730074107646942,
- -0.002036444377154112,
- 0.028103910386562347,
- -0.05555828660726547,
- 0.03554925322532654,
- -0.005245507694780827,
- -0.04562162607908249,
- 0.025929294526576996,
- -0.03607245162129402,
- -0.020065346732735634,
- -0.07837244868278503,
- -0.05978476628661156,
- -0.034186746925115585,
- -0.10116641223430634,
- -0.04136359691619873,
- 0.24450282752513885,
- -0.05408155918121338,
- -0.017045920714735985,
- 0.00033555098343640566,
- 0.025493508204817772,
- 0.043697789311409,
- -0.05668243393301964,
- -0.0043058511801064014,
- 0.07598407566547394,
- -0.03745400905609131,
- 0.0285939984023571,
- 0.003950620535761118,
- -0.04465112090110779,
- -0.034823350608348846,
- 0.024114562198519707,
- 0.017207326367497444,
- -0.08598354458808899,
- 0.08575795590877533,
- -0.03415832668542862,
- -0.004824916832149029,
- 0.03944702818989754,
- -0.03593235835433006,
- -0.013414869084954262,
- -0.11377453058958054,
- -0.020406993106007576,
- 0.007356345187872648,
- 0.01122448593378067,
- 0.047098685055971146,
- -4.867908349141301e-33,
- 0.04416898265480995,
- -0.011156321503221989,
- -0.037171848118305206,
- -0.05895062908530235,
- 0.05864694342017174,
- -0.02985900081694126,
- -0.05053210258483887,
- 0.01223209872841835,
- -0.013535839505493641,
- 0.09018749743700027,
- 0.0666319951415062,
- -0.037833500653505325,
- -0.01843099482357502,
- 0.021913783624768257,
- 0.1350659281015396,
- 0.07536701112985611,
- 0.0321270227432251,
- -0.014613239094614983,
- -0.04924285411834717,
- 0.007479650899767876,
- -0.026171725243330002,
- 0.09824109077453613,
- -0.019088970497250557,
- 0.03394915536046028,
- -0.07484598457813263,
- -0.0906868427991867,
- 0.002925749635323882,
- -0.0008208665531128645,
- 0.03172656148672104,
- 0.011154220439493656,
- -0.0031432141549885273,
- 0.05096745491027832,
- -0.007154683116823435,
- -0.018158160150051117,
- 0.030097397044301033,
- 0.07487640529870987,
- 0.012632022611796856,
- -0.0675150454044342,
- -0.029340073466300964,
- -0.04642611742019653,
- -0.026960544288158417,
- -0.02958100661635399,
- 0.034817732870578766,
- -0.021432148292660713,
- 0.0863945335149765,
- 0.07088717818260193,
- -0.01689315214753151,
- -0.003439758438616991,
- -0.09821144491434097,
- 0.015608497895300388,
- 0.02592175453901291,
- -0.0400630421936512,
- -0.08522679656744003,
- 0.05616333708167076,
- -0.06475816667079926,
- -0.029582347720861435,
- -0.02768177166581154,
- -0.013846742920577526,
- 0.09342663735151291,
- 0.03027714043855667,
- 0.10830484330654144,
- 0.10412286221981049,
- -0.027885308489203453,
- -0.06913837045431137,
- -0.046637631952762604,
- -0.1423601657152176,
- 0.06371588259935379,
- 0.02712145261466503,
- 0.05591016635298729,
- 0.02456090785562992,
- 0.049255650490522385,
- 0.06673333048820496,
- 0.001093763392418623,
- 0.04878903925418854,
- 0.008353031240403652,
- 0.016213953495025635,
- -0.06827620416879654,
- 0.07138659060001373,
- -0.013780373148620129,
- -0.039468634873628616,
- -0.037783440202474594,
- -0.023183654993772507,
- -0.10048255324363708,
- 0.05938123166561127,
- 0.05572172626852989,
- -0.04554002732038498,
- 0.009989810176193714,
- -0.056382063776254654,
- -0.041727472096681595,
- -0.0249246284365654,
- -0.10037633031606674,
- 0.008954879827797413,
- 0.004676999058574438,
- 0.019039396196603775,
- -0.026737475767731667,
- 3.728865343454043e-33,
- -0.02208901382982731,
- -0.03382154554128647,
- 0.002079357858747244,
- 0.01286769937723875,
- 0.0019128411076962948,
- 0.029533185064792633,
- -0.05467351898550987,
- 0.00408611074090004,
- -0.0100450674071908,
- 0.03196931257843971,
- -0.1386244297027588,
- -0.0010980935767292976,
- 0.1398112028837204,
- -0.026982735842466354,
- 0.069996178150177,
- 0.03459640219807625,
- 0.06342671066522598,
- -0.015323786064982414,
- 0.00487323384732008,
- 0.07137878239154816,
- 0.0019711318891495466,
- -0.038737211376428604,
- 0.001440182444639504,
- 0.06431364268064499,
- -0.0331709124147892,
- 0.007025343831628561,
- -0.013153286650776863,
- 0.06112916022539139,
- -0.06783126294612885,
- -0.002795901382341981,
- -0.036913879215717316,
- -0.046719152480363846,
- -0.018774796277284622,
- 0.0009454379905946553,
- -0.025192752480506897,
- 0.11230821907520294,
- 0.07487333565950394,
- -0.07289879024028778,
- -0.06656473875045776,
- -0.015506201423704624,
- 0.06425420939922333,
- -0.0030266698449850082,
- -0.030223798006772995,
- 0.10693193227052689,
- 0.03363467752933502,
- 0.03946114704012871,
- -0.038707006722688675,
- 0.007673738058656454,
- -0.07333585619926453,
- -0.008962826803326607,
- -0.02897028811275959,
- 0.04770245403051376,
- 0.0425507053732872,
- 0.05320568382740021,
- 0.011967637576162815,
- 0.03982890397310257,
- 0.05219878628849983,
- 0.04212566092610359,
- -0.03103259764611721,
- 0.05887532979249954,
- 0.026056209579110146,
- -0.02510438859462738,
- -0.03519493713974953,
- 0.13444191217422485,
- -0.07448416948318481,
- -0.01489059068262577,
- -0.03972259536385536,
- -0.025604037567973137,
- -0.02528531104326248,
- 0.011578768491744995,
- -0.055417466908693314,
- 0.04677653685212135,
- -0.09507047384977341,
- -0.06898094713687897,
- -0.11029619723558426,
- -0.01703791692852974,
- 0.06607333570718765,
- -0.0026914917398244143,
- -0.016018398106098175,
- -0.017238063737750053,
- 0.03157652169466019,
- -0.007065026089549065,
- -0.03240019828081131,
- 0.041862666606903076,
- 0.02777000144124031,
- -0.012140918523073196,
- 0.035735659301280975,
- 0.039641838520765305,
- 0.025800123810768127,
- -0.000818752043414861,
- 0.03481007367372513,
- 0.03519285097718239,
- -0.12015345692634583,
- -0.08814709633588791,
- -0.04881417006254196,
- -1.1237950126030682e-8,
- -0.025136331096291542,
- 0.030722601339221,
- 0.005145158153027296,
- 0.018278203904628754,
- 0.04150979965925217,
- 0.07352031767368317,
- 0.016874250024557114,
- 0.05326129496097565,
- 0.03503430634737015,
- 0.12448340654373169,
- 0.024229109287261963,
- 0.006021533627063036,
- -0.041449468582868576,
- 0.0032097126822918653,
- -0.053635723888874054,
- -0.03675268590450287,
- 0.05706999450922012,
- -0.022933458909392357,
- -0.05999436601996422,
- 0.07320456206798553,
- -0.007596437819302082,
- 0.03680122271180153,
- 0.0003446590853855014,
- 0.02623824216425419,
- -0.010913530364632607,
- -0.09242334961891174,
- -0.039213377982378006,
- -0.07799972593784332,
- 0.04551677778363228,
- -0.008741188794374466,
- 0.021766915917396545,
- 0.09161417186260223,
- -0.04433661699295044,
- -0.038000985980033875,
- -0.02805117703974247,
- -0.032169222831726074,
- 0.04916587844491005,
- 0.05110850930213928,
- -0.003994472790509462,
- -0.07843569666147232,
- -0.016038930043578148,
- -0.11196403950452805,
- 0.029936324805021286,
- -0.043662331998348236,
- -0.010755929164588451,
- 0.02302454225718975,
- 0.08869631588459015,
- -0.05375944823026657,
- 0.025237062945961952,
- 0.026991093531250954,
- -0.037365637719631195,
- 0.029248224571347237,
- -0.019003847613930702,
- 0.01668633706867695,
- 0.04740452021360397,
- -0.11632551997900009,
- -0.08450793474912643,
- -0.014581741765141487,
- -0.043073870241642,
- -0.0009506929200142622,
- 0.06382441520690918,
- 0.05639757215976715,
- -0.04247843101620674,
- -0.0010438509052619338
- ]
- },
- {
- "keyword": "suburb",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.09866365790367126,
- 0.017403610050678253,
- -0.023568199947476387,
- -0.005254209972918034,
- -0.0182987991720438,
- -0.00856173224747181,
- 0.013811281882226467,
- -0.004066623281687498,
- -0.03697400167584419,
- -0.025740232318639755,
- 0.1285254806280136,
- -0.05592195317149162,
- 0.017393628135323524,
- 0.00013629015302285552,
- 0.03210509195923805,
- 0.010320588015019894,
- 0.03747538849711418,
- -0.038222361356019974,
- -0.026814371347427368,
- -0.12838523089885712,
- -0.0629500150680542,
- 0.02992502972483635,
- 0.03289227560162544,
- 0.044711884111166,
- 0.0157364122569561,
- 0.08426859229803085,
- 0.014828240498900414,
- 0.10170701891183853,
- -0.033603888005018234,
- -0.007608980871737003,
- 0.05329357087612152,
- 0.09034066647291183,
- 0.012532013468444347,
- -0.03510540723800659,
- 0.04654718562960625,
- 0.08318772912025452,
- 0.028228268027305603,
- 0.060747768729925156,
- 0.0235243309289217,
- 0.0033870895858854055,
- -0.010573267005383968,
- -0.07760796695947647,
- -0.010957451537251472,
- -0.058075059205293655,
- -0.04656432941555977,
- -0.040882136672735214,
- 0.01419533509761095,
- 0.01096052210777998,
- 0.03359748050570488,
- -0.05919263884425163,
- 0.04752524942159653,
- 0.0331023707985878,
- 0.010827302001416683,
- -0.009579150006175041,
- 0.00819145143032074,
- 0.03501483052968979,
- 0.005285772029310465,
- 0.06428556144237518,
- 0.009071207605302334,
- -0.04022093117237091,
- -0.007423180155456066,
- -0.02780473418533802,
- -0.1114111915230751,
- 0.0563926137983799,
- -0.004373540636152029,
- -0.028615040704607964,
- -0.02385992370545864,
- -0.011711161583662033,
- 0.005261772777885199,
- -0.11665783077478409,
- 0.006483111996203661,
- -0.057111822068691254,
- 0.05340315029025078,
- 0.016951659694314003,
- 0.049030669033527374,
- 0.011616602540016174,
- 0.022234566509723663,
- 0.021103817969560623,
- 0.06438178569078445,
- -0.05165428668260574,
- -0.0010926824761554599,
- -0.05744252726435661,
- -0.0518023744225502,
- 0.05710570886731148,
- -0.08810865134000778,
- -0.0006960206665098667,
- 0.021056506782770157,
- -0.04741465300321579,
- 0.03439439460635185,
- -0.023509269580245018,
- -0.04210307449102402,
- 0.07111220806837082,
- -0.022698765620589256,
- -0.004502623807638884,
- -0.09957171976566315,
- -0.06323100626468658,
- -0.03360605239868164,
- -0.0935206189751625,
- -0.08838997036218643,
- 0.240451380610466,
- -0.0171588733792305,
- -0.003729994408786297,
- 0.04674765095114708,
- 0.02507193200290203,
- 0.04111473634839058,
- -0.10017950087785721,
- 0.015162760391831398,
- 0.07530660927295685,
- -0.03518575802445412,
- 0.019614459946751595,
- 0.01104459073394537,
- -0.011232387274503708,
- -0.03153735399246216,
- 0.030586883425712585,
- 0.045208677649497986,
- -0.08158183842897415,
- 0.12399020045995712,
- -0.005806282628327608,
- -0.06430463492870331,
- -0.004809125792235136,
- -0.03204624727368355,
- 0.005580485332757235,
- -0.1298293173313141,
- -0.031036347150802612,
- -0.003910238854587078,
- -0.011819213628768921,
- 0.023641543462872505,
- -5.932614561450496e-33,
- 0.0319930724799633,
- 0.017849434167146683,
- 0.023297259584069252,
- 0.04368011653423309,
- -0.004024622496217489,
- -0.0261479951441288,
- -0.029846910387277603,
- 0.017756570130586624,
- -0.026057807728648186,
- 0.0028227055445313454,
- 0.12275826930999756,
- -0.019491489976644516,
- 0.0031625733245164156,
- -0.01614435575902462,
- 0.10274191945791245,
- 0.07387963682413101,
- -0.009688357822597027,
- -0.00894148275256157,
- -0.06474205106496811,
- -0.013816939666867256,
- -0.05298440530896187,
- 0.055594347417354584,
- -0.019453398883342743,
- -0.021702634170651436,
- -0.05400922894477844,
- -0.04866114631295204,
- 0.04801064357161522,
- -0.04073387756943703,
- 0.09683297574520111,
- 0.03820551186800003,
- -0.009068116545677185,
- 0.0851350799202919,
- -0.0042615244165062904,
- 0.003174027195200324,
- -0.019959358498454094,
- 0.0642142966389656,
- -0.0035068157594650984,
- -0.05304315686225891,
- -0.03624449297785759,
- -0.0037863519974052906,
- -0.009968850761651993,
- -0.00781100383028388,
- 0.024952154606580734,
- -0.004106924403458834,
- 0.07403378933668137,
- 0.05389784649014473,
- 0.02801983617246151,
- 0.007168564945459366,
- 0.037346251308918,
- -0.0400787815451622,
- 0.052350003272295,
- -0.012965084053575993,
- -0.11728961765766144,
- 0.031153742223978043,
- -0.03344426304101944,
- -0.018202483654022217,
- -0.032090820372104645,
- -0.006498279981315136,
- 0.06778822839260101,
- 0.01853605918586254,
- 0.08731332421302795,
- 0.09177019447088242,
- -0.015332023613154888,
- -0.010466516949236393,
- 0.020972102880477905,
- -0.14861556887626648,
- 0.040340546518564224,
- 0.0006278951186686754,
- 0.031066041439771652,
- 0.043252911418676376,
- 0.06364943832159042,
- 0.0016899197362363338,
- 0.11338819563388824,
- 0.08222810178995132,
- 0.009408592246472836,
- 0.018149688839912415,
- -0.06296113133430481,
- 0.0791444480419159,
- -0.05532822757959366,
- 0.018020955845713615,
- 0.042444828897714615,
- -0.028536058962345123,
- -0.0832960456609726,
- 0.039832595735788345,
- 0.09575838595628738,
- -0.03939421474933624,
- 0.0075615933164954185,
- -0.06691429764032364,
- -0.0423639714717865,
- -0.07023158669471741,
- -0.09563694894313812,
- -0.04684016853570938,
- -0.002068049507215619,
- 0.03245001286268234,
- -0.05197366699576378,
- 3.886423096108493e-33,
- -0.012707317247986794,
- -0.04931337758898735,
- 0.01008193101733923,
- 0.02111874148249626,
- -0.005412135738879442,
- 0.012188699096441269,
- 0.037796750664711,
- 0.05041557177901268,
- -0.0012586944503709674,
- 0.03378932550549507,
- -0.16360963881015778,
- -0.013447892852127552,
- 0.09994000196456909,
- -0.01946755312383175,
- 0.03551628440618515,
- 0.05236736685037613,
- 0.05840333178639412,
- -0.029198303818702698,
- 0.016873693093657494,
- 0.03847871348261833,
- 0.018022703006863594,
- -0.05441044270992279,
- -0.0018112665275111794,
- 0.0313166119158268,
- -0.021831095218658447,
- 0.02128986269235611,
- -0.02828860841691494,
- 0.06707683950662613,
- -0.08026617020368576,
- 0.005185595713555813,
- -0.028219664469361305,
- -0.03166903927922249,
- 0.029550088569521904,
- -0.00594482384622097,
- -0.04619656875729561,
- 0.047537289559841156,
- 0.029886305332183838,
- -0.05291936174035072,
- -0.04550981894135475,
- -0.03982759639620781,
- -0.009927402250468731,
- -0.07616644352674484,
- -0.0355917289853096,
- 0.08535853028297424,
- 0.04837743565440178,
- -0.03587178513407707,
- -0.022161666303873062,
- 0.04558698087930679,
- -0.03718801215291023,
- 0.01578308269381523,
- -0.007028862833976746,
- 0.08859356492757797,
- -0.0216453205794096,
- 0.11347728222608566,
- 0.02480759285390377,
- 0.04813454672694206,
- 0.016779132187366486,
- 0.049361731857061386,
- -0.0486968569457531,
- 0.0017466587014496326,
- -0.00917354691773653,
- -0.017764661461114883,
- -0.02086937241256237,
- 0.08977287262678146,
- -0.03127161040902138,
- -0.01861042156815529,
- -0.016348300501704216,
- -0.033738862723112106,
- -0.009780708700418472,
- -0.01261562667787075,
- -0.040451470762491226,
- 0.06447651237249374,
- -0.028893006965517998,
- -0.11018775403499603,
- -0.0704079195857048,
- 0.015493589453399181,
- 0.05872200056910515,
- -0.007355901878327131,
- -0.03490905836224556,
- 0.03870822861790657,
- -0.0512477308511734,
- -0.02286946401000023,
- -0.04475477337837219,
- 0.1009397804737091,
- -0.04179699718952179,
- -0.0287670586258173,
- 0.018301991745829582,
- 0.04135173559188843,
- 0.02813391387462616,
- -0.016463661566376686,
- 0.019217103719711304,
- 0.05037602409720421,
- -0.10635468363761902,
- -0.07500848174095154,
- -0.03413446620106697,
- -1.1299777114004428e-8,
- 0.03773273527622223,
- 0.03508099913597107,
- -0.09223775565624237,
- 0.005829279311001301,
- 0.03778009116649628,
- 0.0944417342543602,
- -0.032314714044332504,
- 0.04948931559920311,
- 0.017733966931700706,
- 0.1093030720949173,
- 0.02160494215786457,
- 0.021656466647982597,
- -0.026530247181653976,
- 0.026017552241683006,
- -0.07791256904602051,
- -0.020747434347867966,
- 0.03828283026814461,
- -0.05719056725502014,
- -0.029412776231765747,
- 0.012339651584625244,
- 0.01449707429856062,
- -0.008438708260655403,
- -0.003828104818239808,
- 0.06325771659612656,
- 0.012050962075591087,
- -0.08969467878341675,
- -0.0697617158293724,
- -0.050261300057172775,
- 0.029193328693509102,
- -0.0174210574477911,
- -0.0021127131767570972,
- 0.05088682472705841,
- -0.06796607375144958,
- -0.013654569163918495,
- -0.008540387265384197,
- -0.06080622971057892,
- 0.03366262465715408,
- 0.04378460347652435,
- -0.010537736117839813,
- -0.04401707276701927,
- 0.04758763313293457,
- -0.09671398997306824,
- 0.036225512623786926,
- 0.010725300759077072,
- 0.0030000649858266115,
- 0.026786651462316513,
- 0.08277040719985962,
- -0.03871230408549309,
- 0.06648170948028564,
- 0.03754378482699394,
- -0.06882229447364807,
- 0.04122798889875412,
- -0.014155922457575798,
- 0.01886470429599285,
- 0.044811930507421494,
- -0.08134794235229492,
- -0.06867530196905136,
- -0.05260802060365677,
- -0.02688666246831417,
- 0.00810383539646864,
- 0.057391077280044556,
- 0.050104979425668716,
- -0.03477122634649277,
- -0.0077264620922505856
- ]
- },
- {
- "keyword": "downtown",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.12027215212583542,
- 0.0003435359394643456,
- -0.020363694056868553,
- 0.028947800397872925,
- -0.03613849729299545,
- 0.07254642993211746,
- 0.048959676176309586,
- -0.017100956290960312,
- -0.0025990682188421488,
- -0.021965986117720604,
- 0.05173709988594055,
- -0.007154896855354309,
- 0.010817182250320911,
- 0.01258701179176569,
- 0.0626053512096405,
- 0.010991080664098263,
- 0.11753758788108826,
- -0.0026981693226844072,
- -0.025841258466243744,
- -0.11250115185976028,
- -0.1395999938249588,
- -0.016241949051618576,
- -0.04446568340063095,
- 0.024928612634539604,
- -0.003995127975940704,
- 0.06986529380083084,
- -0.01116674579679966,
- 0.04232137277722359,
- 0.002136676339432597,
- -0.028715673834085464,
- -0.010341629385948181,
- 0.02003912627696991,
- 0.05362193286418915,
- -0.017091931775212288,
- 0.033318500965833664,
- 0.003167476737871766,
- -0.004315047524869442,
- -0.0042117079719901085,
- 0.06937490403652191,
- -0.005501091945916414,
- 0.018722955137491226,
- -0.04323199763894081,
- -0.06383337825536728,
- 0.02044730633497238,
- -0.026520246639847755,
- -0.032161861658096313,
- 0.02891211211681366,
- 0.02573171816766262,
- 0.13585801422595978,
- -0.050998181104660034,
- 0.08450805395841599,
- 0.005308969411998987,
- -0.014053761959075928,
- 0.04000923037528992,
- 0.00492697861045599,
- 0.044359445571899414,
- -0.03432581573724747,
- 0.001433350844308734,
- 0.05784274637699127,
- -0.035211093723773956,
- 0.028403930366039276,
- -0.03819479048252106,
- -0.07156801968812943,
- 0.05507858470082283,
- 0.023107610642910004,
- -0.019873162731528282,
- -0.014748744666576385,
- 0.019414804875850677,
- 0.01612994074821472,
- -0.13146370649337769,
- 0.04110097885131836,
- 0.016711290925741196,
- -0.03306078165769577,
- -0.07785850763320923,
- 0.04885275661945343,
- 0.016027512028813362,
- -0.002651902846992016,
- -0.013018941506743431,
- 0.006756041198968887,
- 0.002574747893959284,
- 0.05726085975766182,
- -0.013714556582272053,
- 0.003179325722157955,
- 0.043255515396595,
- -0.060172807425260544,
- 0.01949254423379898,
- -0.0049111670814454556,
- -0.027202174067497253,
- 0.022468924522399902,
- -0.015761595219373703,
- -0.042237669229507446,
- 0.050678085535764694,
- -0.14983336627483368,
- -0.043661441653966904,
- -0.10858740657567978,
- -0.03483087196946144,
- -0.09279719740152359,
- -0.051410991698503494,
- 0.029810063540935516,
- 0.2162678986787796,
- -0.038649119436740875,
- 0.027905864641070366,
- 0.09460697323083878,
- -0.024141304194927216,
- 0.060067079961299896,
- -0.04179290309548378,
- 0.04217836633324623,
- 0.03961770981550217,
- -0.04585934802889824,
- 0.04352714121341705,
- 0.03784506022930145,
- -0.02714351750910282,
- 0.01596384309232235,
- 0.017172636464238167,
- 0.02868802472949028,
- 0.024495821446180344,
- 0.03442319855093956,
- -0.01643374375998974,
- -0.0005108037148602307,
- 0.066811703145504,
- -0.00435648811981082,
- 0.025985734537243843,
- -0.031425368040800095,
- 0.006660520564764738,
- -0.07430504262447357,
- -0.06517273932695389,
- -0.003781269770115614,
- -5.031209493725472e-33,
- 0.024108344689011574,
- 0.006091151386499405,
- 0.008390174247324467,
- 0.04384735971689224,
- 0.0682174414396286,
- -0.03934461623430252,
- -0.012334253638982773,
- -0.04651980474591255,
- -0.005948351230472326,
- -0.015636293217539787,
- -0.0035934937186539173,
- -0.05193086341023445,
- 0.009190619923174381,
- 0.03890857473015785,
- 0.05958548188209534,
- 0.0003991011471953243,
- 0.04199602082371712,
- -0.053553786128759384,
- -0.08002416789531708,
- -0.015701325610280037,
- -0.010593471117317677,
- -0.018906181678175926,
- -0.03251628950238228,
- -0.007303055841475725,
- -0.07025253027677536,
- -0.007462669629603624,
- 0.010842502117156982,
- 0.04080268368124962,
- 0.08312339335680008,
- 0.009441227652132511,
- -0.026849599555134773,
- 0.05917513743042946,
- 0.026577036827802658,
- 0.09022863209247589,
- 0.032543107867240906,
- 0.08702104538679123,
- -0.008521134033799171,
- -0.04496469348669052,
- -0.026586955413222313,
- -0.017347116023302078,
- -0.018661141395568848,
- 0.0016104629030451179,
- -0.056291453540325165,
- -0.00847996212542057,
- 0.05116239935159683,
- 0.055524468421936035,
- -0.005448467563837767,
- -0.01846325956285,
- 0.04346142336726189,
- -0.023032495751976967,
- -0.005019445437937975,
- 0.012547302059829235,
- -0.14335757493972778,
- 0.04544370248913765,
- -0.04913857951760292,
- 0.01856081187725067,
- -0.0666649341583252,
- -0.04798797145485878,
- 0.07699216157197952,
- 0.02208581008017063,
- 0.029447676613926888,
- 0.11434578150510788,
- -0.08402877300977707,
- -0.019447781145572662,
- -0.000058156812883680686,
- -0.027934633195400238,
- -0.015510724857449532,
- 0.03887224197387695,
- 0.10208515077829361,
- 0.054799143224954605,
- 0.06532102823257446,
- -0.036152686923742294,
- 0.11762220412492752,
- 0.05777188390493393,
- 0.045936740934848785,
- 0.039768826216459274,
- -0.05687950924038887,
- 0.042963966727256775,
- -0.009345129132270813,
- 0.026323489844799042,
- -0.01913074590265751,
- -0.015448929741978645,
- -0.032285574823617935,
- 0.08265219628810883,
- 0.1226058229804039,
- 0.0005188138457015157,
- -0.0033573624677956104,
- -0.0689225047826767,
- -0.04502208158373833,
- 0.005442284978926182,
- -0.16358140110969543,
- 0.03667376562952995,
- -0.0041094450280070305,
- 0.03877820819616318,
- -0.08883259445428848,
- 3.381313173560156e-33,
- 0.02574904076755047,
- -0.008246159180998802,
- 0.013182485476136208,
- 0.02186194621026516,
- -0.066360242664814,
- 0.012431406415998936,
- -0.028051717206835747,
- -0.03368271514773369,
- -0.019395815208554268,
- 0.048897091299295425,
- -0.0825822725892067,
- -0.02353685162961483,
- 0.03763934597373009,
- 0.022027820348739624,
- 0.048342399299144745,
- 0.06564425677061081,
- 0.13881565630435944,
- 0.07652661949396133,
- -0.08769502490758896,
- 0.05136673524975777,
- -0.04163854941725731,
- -0.04049115628004074,
- -0.07988892495632172,
- -0.015627488493919373,
- -0.02927510440349579,
- 0.044834256172180176,
- -0.034830935299396515,
- -0.01754017546772957,
- -0.10472939908504486,
- 0.009529086761176586,
- -0.10489729791879654,
- 0.017991209402680397,
- 0.01569466106593609,
- 0.05622037500143051,
- -0.056191690266132355,
- 0.10998960584402084,
- 0.02987847849726677,
- -0.018407568335533142,
- -0.033898476511240005,
- -0.03436143696308136,
- 0.024715816602110863,
- -0.04342232272028923,
- -0.009763278998434544,
- 0.08047641813755035,
- 0.03596183657646179,
- 0.0003609222767408937,
- -0.0630074292421341,
- -0.029622109606862068,
- -0.08582858741283417,
- 0.052219897508621216,
- -0.028854815289378166,
- 0.009782146662473679,
- -0.019843025133013725,
- 0.04332182928919792,
- 0.008152332156896591,
- 0.0012754338094964623,
- 0.07119819521903992,
- -0.01444063987582922,
- -0.052890364080667496,
- 0.04192386567592621,
- 0.01947132684290409,
- 0.004953366704285145,
- -0.02995566837489605,
- 0.09314803034067154,
- 0.005196233745664358,
- -0.0025185986887663603,
- 0.006912977900356054,
- -0.040400199592113495,
- -0.03781444951891899,
- -0.00392449926584959,
- -0.025328252464532852,
- 0.08098091930150986,
- -0.0538589172065258,
- -0.01999710127711296,
- -0.10956549644470215,
- -0.022121313959360123,
- 0.03507222607731819,
- 0.012615310959517956,
- 0.015834592282772064,
- 0.013873712159693241,
- 0.005851543974131346,
- 0.002670467598363757,
- -0.06714758276939392,
- -0.0071113440208137035,
- 0.019888978451490402,
- -0.011615503579378128,
- -0.009488696232438087,
- -0.006897889077663422,
- 0.00923733226954937,
- -0.026532800868153572,
- -0.005166726652532816,
- 0.08402743935585022,
- -0.10092820227146149,
- -0.09436295181512833,
- -0.08413538336753845,
- -1.126766679959701e-8,
- -0.031611520797014236,
- 0.09629154205322266,
- -0.11061104387044907,
- 0.04276711866259575,
- 0.03335004672408104,
- 0.0618189312517643,
- -0.019640205428004265,
- 0.05060645937919617,
- 0.04300243780016899,
- 0.07220704108476639,
- -0.04092364385724068,
- -0.00826764851808548,
- -0.06864811480045319,
- 0.039765167981386185,
- -0.0966523140668869,
- 0.04235510155558586,
- -0.0059759607538580894,
- -0.0693078339099884,
- 0.005112902726978064,
- 0.010767091996967793,
- -0.019647495821118355,
- 0.05338630825281143,
- -0.009168899618089199,
- 0.04924995079636574,
- 0.03571805730462074,
- -0.01483105681836605,
- -0.02181483805179596,
- 0.08160293847322464,
- 0.04935980960726738,
- -0.005348879378288984,
- 0.0004679725388996303,
- 0.1038888618350029,
- -0.06716982275247574,
- -0.08445806801319122,
- -0.013006673194468021,
- -0.057904697954654694,
- 0.06178334355354309,
- 0.04830608144402504,
- -0.024744555354118347,
- -0.03314147889614105,
- -0.00631555775180459,
- -0.09715423732995987,
- 0.027429571375250816,
- -0.06843408942222595,
- 0.016358280554413795,
- 0.025453926995396614,
- 0.005410411860793829,
- 0.027624573558568954,
- 0.006632781121879816,
- -0.014167370274662971,
- -0.021953199058771133,
- -0.0010634264908730984,
- 0.029860276728868484,
- 0.012551547959446907,
- -0.002733349334448576,
- -0.09300181269645691,
- -0.032123714685440063,
- 0.005182481370866299,
- -0.05808057636022568,
- -0.045519083738327026,
- 0.06962839514017105,
- 0.06599799543619156,
- -0.03340377286076546,
- 0.01544085331261158
- ]
- },
- {
- "keyword": "uptown",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.05745314434170723,
- -0.004867770709097385,
- -0.016387881711125374,
- -0.025664763525128365,
- -0.07437574863433838,
- 0.011056727729737759,
- 0.03775466978549957,
- -0.03063434362411499,
- -0.026400240138173103,
- -0.013038224540650845,
- 0.02952807955443859,
- -0.000821246940176934,
- 0.05533529072999954,
- -0.012053130194544792,
- 0.039632536470890045,
- 0.01241000834852457,
- 0.10556979477405548,
- -0.0583210326731205,
- 0.015385525301098824,
- -0.1132168099284172,
- -0.09730032086372375,
- -0.0027832931373268366,
- 0.06032876670360565,
- 0.041227951645851135,
- 0.0263069998472929,
- 0.008557409048080444,
- 0.011015291325747967,
- 0.06421447545289993,
- 0.004414530470967293,
- -0.04331628233194351,
- 0.0012941875029355288,
- 0.08715752512216568,
- 0.009071984328329563,
- -0.007345275022089481,
- 0.0028444924391806126,
- 0.09170025587081909,
- 0.014039563946425915,
- 0.023926585912704468,
- -0.0003990015829913318,
- 0.0072578610852360725,
- -0.02764805033802986,
- -0.018707914277911186,
- 0.020316610112786293,
- -0.05151238292455673,
- -0.036685265600681305,
- -0.03642258793115616,
- 0.025383030995726585,
- -0.018145347014069557,
- 0.07288620620965958,
- -0.011902522295713425,
- 0.061188340187072754,
- -0.004317933227866888,
- 0.012184525839984417,
- 0.03295379504561424,
- 0.01573818363249302,
- 0.07045788317918777,
- -0.0027253669686615467,
- -0.028686873614788055,
- 0.015016068704426289,
- 0.0025031447876244783,
- -0.04855143278837204,
- -0.015159137547016144,
- -0.07738243788480759,
- 0.05388164520263672,
- 0.07956808805465698,
- -0.019010715186595917,
- -0.033331796526908875,
- 0.06080936640501022,
- -0.07285591959953308,
- -0.0931386798620224,
- -0.004332511220127344,
- -0.015871291980147362,
- -0.03284161165356636,
- -0.05485023930668831,
- 0.005837973672896624,
- -0.032071731984615326,
- 0.020201988518238068,
- -0.04769087955355644,
- -0.02437395416200161,
- -0.026126151904463768,
- 0.06470797955989838,
- -0.004724407102912664,
- -0.009709950536489487,
- 0.0020492251496762037,
- -0.015666358172893524,
- 0.0077803912572562695,
- -0.03425934910774231,
- -0.014607377350330353,
- 0.02468288689851761,
- -0.09719588607549667,
- -0.05997385084629059,
- 0.01109305303543806,
- -0.11523280292749405,
- 0.018546009436249733,
- -0.12373107671737671,
- -0.01067182794213295,
- -0.016720732674002647,
- -0.10194562375545502,
- -0.028633633628487587,
- 0.19407804310321808,
- 0.012349500320851803,
- 0.004196481313556433,
- 0.05107581615447998,
- -0.04108177870512009,
- 0.060156747698783875,
- -0.027982065454125404,
- 0.04711250960826874,
- 0.0966072529554367,
- -0.0007163849077187479,
- 0.006634348072111607,
- -0.003777091158553958,
- -0.015384318307042122,
- 0.04291094094514847,
- 0.05252649635076523,
- 0.052354056388139725,
- 0.015528860501945019,
- 0.09403525292873383,
- 0.05954619497060776,
- 0.02823379635810852,
- -0.01199774444103241,
- -0.03163783997297287,
- 0.045951321721076965,
- -0.004292808473110199,
- 0.04159509390592575,
- -0.08113212883472443,
- -0.04438246786594391,
- 0.024553842842578888,
- -5.185011909271029e-33,
- 0.05827479064464569,
- -0.006517915986478329,
- 0.005647724959999323,
- 0.026868928223848343,
- 0.12307398021221161,
- -0.0073862806893885136,
- -0.002419803524389863,
- -0.006345618050545454,
- -0.034524280577898026,
- 0.049274709075689316,
- 0.09380515664815903,
- -0.009735344909131527,
- 0.040102243423461914,
- 0.05943910777568817,
- 0.03890372812747955,
- 0.03418156877160072,
- 0.05743368715047836,
- -0.030568741261959076,
- -0.0800958052277565,
- -0.03669292479753494,
- -0.024875851348042488,
- 0.04485224932432175,
- -0.01598418317735195,
- 0.06186710670590401,
- -0.057061418890953064,
- -0.08729227632284164,
- 0.01186840608716011,
- 0.0016095933970063925,
- 0.030058616772294044,
- 0.006982431281358004,
- -0.011468799784779549,
- 0.057180777192115784,
- 0.0019425235223025084,
- 0.04800686612725258,
- 0.07886026054620743,
- 0.048728037625551224,
- -0.05727701634168625,
- -0.02327338606119156,
- -0.07141333073377609,
- -0.002946528373286128,
- -0.018203413113951683,
- -0.0024404297582805157,
- -0.025702130049467087,
- -0.0470077283680439,
- 0.030988017097115517,
- 0.049838535487651825,
- 0.031983405351638794,
- 0.009328137151896954,
- -0.008318145759403706,
- 0.013902590610086918,
- 0.014725309796631336,
- 0.009160734713077545,
- -0.09921491891145706,
- 0.033397432416677475,
- -0.05532952398061752,
- 0.005416437517851591,
- -0.03922920674085617,
- 0.0027458015829324722,
- 0.05694059655070305,
- 0.023732205852866173,
- 0.032361023128032684,
- 0.09293994307518005,
- -0.037303656339645386,
- -0.06862208992242813,
- -0.04177897796034813,
- -0.08090934157371521,
- 0.027851330116391182,
- 0.02037874422967434,
- 0.047842055559158325,
- 0.04833133518695831,
- 0.058840133249759674,
- -0.025048067793250084,
- 0.12144199013710022,
- 0.05552852898836136,
- 0.06862008571624756,
- 0.022984612733125687,
- -0.08495523780584335,
- 0.04313306137919426,
- 0.06748940050601959,
- -0.011615123599767685,
- -0.05690140277147293,
- 0.035571545362472534,
- 0.007913264445960522,
- 0.0651983991265297,
- 0.09339175373315811,
- -0.07480728626251221,
- 0.04599496349692345,
- -0.051054924726486206,
- -0.04044535383582115,
- -0.029397152364253998,
- -0.16545242071151733,
- 0.0043437969870865345,
- -0.0031905716750770807,
- -0.017042649909853935,
- -0.06886191666126251,
- 4.157770538632464e-33,
- 0.021722644567489624,
- -0.030032195150852203,
- 0.03449731320142746,
- -0.034571144729852676,
- -0.026559526100754738,
- -0.0003299082745797932,
- -0.0017109288601204753,
- -0.007870184257626534,
- -0.006840823218226433,
- -0.007826506160199642,
- -0.03711216524243355,
- 0.03336591646075249,
- 0.05169571936130524,
- -0.003963367082178593,
- 0.09465479850769043,
- 0.04195103421807289,
- 0.0648554190993309,
- 0.05707528442144394,
- -0.013296592980623245,
- 0.04612106457352638,
- 0.02580086514353752,
- -0.05667636916041374,
- -0.006508737802505493,
- 0.03164262697100639,
- -0.011251687072217464,
- 0.041978780180215836,
- 0.03115805983543396,
- 0.07527913898229599,
- -0.10185690969228745,
- -0.02554130367934704,
- -0.08042008429765701,
- -0.023826057091355324,
- -0.026671284809708595,
- 0.0177629254758358,
- -0.038401998579502106,
- 0.11576416343450546,
- 0.03303631395101547,
- -0.0046059065498411655,
- -0.060120657086372375,
- -0.07698815315961838,
- -0.039578456431627274,
- 0.02116946317255497,
- -0.02057744562625885,
- 0.1176825538277626,
- 0.0494256354868412,
- -0.024169212207198143,
- -0.1076391339302063,
- -0.04310866445302963,
- -0.06727196276187897,
- 0.0863620862364769,
- -0.0765356495976448,
- 0.012810016982257366,
- 0.037979159504175186,
- 0.09218334406614304,
- 0.037671830505132675,
- -0.03291739523410797,
- -0.009800725616514683,
- 0.04168662801384926,
- -0.03260373696684837,
- -0.057486481964588165,
- 0.010844828560948372,
- 0.025169823318719864,
- -0.016680510714650154,
- 0.07201076298952103,
- 0.029481546953320503,
- 0.011949875392019749,
- 0.01928899809718132,
- -0.07899469882249832,
- -0.009607679210603237,
- 0.01475035585463047,
- -0.05337788164615631,
- 0.12504695355892181,
- -0.08061457425355911,
- -0.08753249049186707,
- -0.07078751921653748,
- -0.01982257515192032,
- 0.032704949378967285,
- -0.04006786644458771,
- -0.03870423510670662,
- -0.011250481009483337,
- 0.0106455497443676,
- -0.0246809683740139,
- -0.048658885061740875,
- 0.12408380955457687,
- -0.03906065225601196,
- -0.04122615233063698,
- 0.018769778311252594,
- 0.05519399419426918,
- 0.02839091047644615,
- -0.08161228150129318,
- 0.05130010098218918,
- -0.006269099656492472,
- -0.1259232759475708,
- -0.1301455944776535,
- -0.008829326368868351,
- -1.0549062068321291e-8,
- -0.023521728813648224,
- 0.04209069907665253,
- -0.13902653753757477,
- -0.023176809772849083,
- 0.008219505660235882,
- 0.11219917237758636,
- 0.015241132117807865,
- 0.00030972398235462606,
- 0.010537398979067802,
- 0.09739919751882553,
- 0.0070632705464959145,
- 0.037940863519907,
- 0.03543412312865257,
- -0.007131369784474373,
- -0.08100283145904541,
- -0.033844199031591415,
- 0.0617721863090992,
- -0.06321370601654053,
- -0.02373076230287552,
- 0.026867341250181198,
- 0.02150591090321541,
- 0.05824529007077217,
- 0.04121952876448631,
- 0.060190312564373016,
- 0.026874303817749023,
- -0.042905792593955994,
- -0.0017815502360463142,
- -0.03155311942100525,
- 0.04564405977725983,
- -0.000987244420684874,
- -0.022189168259501457,
- 0.04486105218529701,
- -0.036978211253881454,
- -0.039486344903707504,
- 0.03984646126627922,
- -0.0850544199347496,
- 0.0012399550760164857,
- 0.05652463436126709,
- -0.010643960908055305,
- -0.020493166521191597,
- 0.003220410319045186,
- -0.06085938587784767,
- 0.027645805850625038,
- -0.055005718022584915,
- 0.048774924129247665,
- -0.02269075997173786,
- 0.03250200301408768,
- 0.026754574850201607,
- 0.004780692979693413,
- 0.024687031283974648,
- -0.02818106859922409,
- 0.02679290622472763,
- 0.041705451905727386,
- 0.04360630735754967,
- 0.022882921621203423,
- -0.08000531047582626,
- -0.09249147772789001,
- 0.041760753840208054,
- -0.040367476642131805,
- 0.01167253591120243,
- 0.10152879357337952,
- 0.03133672848343849,
- -0.05348948389291763,
- -0.06808183342218399
- ]
- },
- {
- "keyword": "north",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- 0.05739591270685196,
- 0.047607459127902985,
- 0.0005250310059636831,
- -0.01257888600230217,
- -0.010191155597567558,
- 0.03734678775072098,
- -0.008350948803126812,
- -0.06155247241258621,
- -0.02032892033457756,
- -0.021952560171484947,
- -0.050926703959703445,
- -0.057488638907670975,
- 0.012638870626688004,
- 0.035710036754608154,
- -0.02439083158969879,
- -0.04080265015363693,
- -0.01380663737654686,
- -0.082516610622406,
- 0.0524936243891716,
- -0.06190556660294533,
- -0.11432843655347824,
- 0.06226060539484024,
- 0.03683648630976677,
- 0.017425185069441795,
- 0.050330888479948044,
- -0.009901877492666245,
- 0.051621899008750916,
- 0.021446866914629936,
- 0.0023680743761360645,
- -0.08137106895446777,
- 0.027066566050052643,
- -0.0010412681149318814,
- -0.052699584513902664,
- -0.01755080185830593,
- -0.029555128887295723,
- 0.009680689312517643,
- -0.013916641473770142,
- 0.013736155815422535,
- 0.011470912955701351,
- 0.03773323819041252,
- -0.03367418423295021,
- -0.040867336094379425,
- -0.012415342964231968,
- 0.035656243562698364,
- 0.054141800850629807,
- 0.07119939476251602,
- 0.02491658739745617,
- 0.007928197272121906,
- 0.10411547124385834,
- -0.002375067910179496,
- 0.045222893357276917,
- -0.058153729885816574,
- -0.03812653198838234,
- 0.0032979841344058514,
- 0.05118173360824585,
- 0.09005996584892273,
- -0.021168911829590797,
- -0.07492058724164963,
- 0.00623340392485261,
- 0.05485435947775841,
- 0.09656977653503418,
- -0.026758022606372833,
- -0.07158368080854416,
- 0.007147541269659996,
- 0.12096714228391647,
- 0.01279556192457676,
- -0.003432613331824541,
- 0.06544747948646545,
- -0.05078703910112381,
- -0.17910286784172058,
- 0.03305936977267265,
- -0.04902757704257965,
- -0.024049947038292885,
- -0.08444130420684814,
- -0.013933106325566769,
- 0.01268150843679905,
- -0.0021453206427395344,
- 0.028427954763174057,
- -0.020439388230443,
- -0.0555892214179039,
- 0.040393806993961334,
- 0.12251124531030655,
- -0.006372074130922556,
- 0.05998838320374489,
- 0.033282119780778885,
- -0.02933616377413273,
- -0.016580922529101372,
- 0.031378068029880524,
- 0.07560868561267853,
- 0.00615636445581913,
- 0.009646766819059849,
- 0.002936270786449313,
- -0.03216588497161865,
- 0.026254190132021904,
- -0.06570766121149063,
- 0.020849887281656265,
- -0.06441893428564072,
- -0.043345317244529724,
- -0.04310479015111923,
- 0.18684642016887665,
- 0.04284302890300751,
- 0.016408851370215416,
- -0.012655115686357021,
- 0.00687703350558877,
- 0.033729467540979385,
- 0.004079498816281557,
- -0.03943439573049545,
- 0.05544890835881233,
- -0.033934734761714935,
- 0.05598035454750061,
- -0.049806367605924606,
- -0.028125984594225883,
- -0.08604451268911362,
- 0.00296867941506207,
- 0.02384335920214653,
- 0.005586872808635235,
- 0.01870793290436268,
- 0.0168235432356596,
- -0.0100014079362154,
- -0.014340490102767944,
- -0.074365995824337,
- 0.034381285309791565,
- -0.061804067343473434,
- 0.061155758798122406,
- 0.000769802660215646,
- -0.01860360987484455,
- 0.008680866099894047,
- -4.780949685171284e-33,
- 0.05617702007293701,
- -0.02389438822865486,
- 0.051218412816524506,
- 0.08834262937307358,
- 0.017492379993200302,
- 0.02357316203415394,
- 0.004318146500736475,
- -0.02640940435230732,
- -0.009149927645921707,
- 0.029081763699650764,
- 0.04025775566697121,
- 0.023231949657201767,
- -0.00910177081823349,
- -0.02293390966951847,
- 0.021139036864042282,
- 0.007729664910584688,
- 0.04538777843117714,
- -0.03132594749331474,
- -0.13243700563907623,
- 0.018544171005487442,
- -0.05406495928764343,
- 0.08923260867595673,
- -0.01014530099928379,
- -0.023680876940488815,
- -0.06459935754537582,
- -0.10631276667118073,
- -0.08433962613344193,
- -0.038841888308525085,
- -0.011668290942907333,
- -0.01879991590976715,
- 0.024914972484111786,
- 0.006161331199109554,
- 0.0258368831127882,
- 0.02709544077515602,
- 0.06739990413188934,
- -0.006383825559169054,
- 0.0029258914291858673,
- -0.009159453213214874,
- -0.005285498686134815,
- -0.010135166347026825,
- -0.016200346872210503,
- 0.058647267520427704,
- 0.001420385204255581,
- 0.034465231001377106,
- 0.036777276545763016,
- 0.002114316448569298,
- 0.020711200311779976,
- 0.06060905009508133,
- -0.029120545834302902,
- -0.009715856052935123,
- -0.029677873477339745,
- 0.0428217314183712,
- -0.07013443857431412,
- 0.0018159759929403663,
- 0.0280552189797163,
- -0.009747091680765152,
- 0.007876263931393623,
- 0.05546970292925835,
- 0.04955920949578285,
- -0.006270423997193575,
- 0.038093362003564835,
- 0.09559605270624161,
- 0.0809393972158432,
- -0.08309154212474823,
- 0.04904690384864807,
- -0.11041495949029922,
- -0.016912654042243958,
- 0.01806296408176422,
- 0.0082527045160532,
- 0.0029207770712673664,
- 0.03689111769199371,
- 0.02310260199010372,
- 0.13175830245018005,
- 0.07632137089967728,
- -0.008391503244638443,
- 0.016355903819203377,
- -0.06271884590387344,
- 0.07483523339033127,
- 0.048901624977588654,
- -0.01907958649098873,
- -0.09113670885562897,
- 0.05754896253347397,
- -0.10742270946502686,
- 0.0482734851539135,
- 0.06253421306610107,
- -0.02683803252875805,
- -0.037107616662979126,
- -0.05459866672754288,
- 0.04646880924701691,
- -0.06263293325901031,
- -0.09102863818407059,
- 0.005729276686906815,
- 0.021208668127655983,
- -0.06615749001502991,
- -0.04647897183895111,
- 3.818691478956098e-33,
- 0.0044474247843027115,
- -0.06221342831850052,
- -0.05694516375660896,
- 0.004411264322698116,
- -0.04401462525129318,
- 0.006659901235252619,
- 0.08360849320888519,
- 0.05765118822455406,
- -0.06577689200639725,
- 0.01537043321877718,
- -0.07814030349254608,
- -0.04772678390145302,
- 0.13842888176441193,
- 0.05984744057059288,
- 0.09128235280513763,
- -0.03872905299067497,
- 0.09300193935632706,
- 0.11221462488174438,
- -0.016120824962854385,
- -0.01492740772664547,
- -0.03272572159767151,
- -0.0804576501250267,
- -0.0814862921833992,
- -0.020498765632510185,
- -0.04931706190109253,
- 0.0809316635131836,
- -0.028289759531617165,
- 0.12084398418664932,
- -0.10289008915424347,
- -0.048411667346954346,
- -0.01914084516465664,
- -0.0018075803527608514,
- -0.006232579238712788,
- 0.02983734756708145,
- -0.03938732668757439,
- 0.06128493323922157,
- 0.046360407024621964,
- 0.01778324879705906,
- 0.023928062990307808,
- -0.05030851811170578,
- 0.032611239701509476,
- 0.044717274606227875,
- 0.06412345916032791,
- 0.10164898633956909,
- 0.003672658698633313,
- -0.05783476680517197,
- -0.09328240156173706,
- 0.06575576215982437,
- -0.017990777269005775,
- 0.034749362617731094,
- -0.040461596101522446,
- 0.025913430377840996,
- 0.004291485995054245,
- 0.025768646970391273,
- 0.013701326213777065,
- 0.02540457807481289,
- -0.04479813948273659,
- 0.015715837478637695,
- 0.018667347729206085,
- -0.012782080098986626,
- -0.022571125999093056,
- 0.07692147046327591,
- -0.01870698295533657,
- 0.0007706402102485299,
- -0.011415939778089523,
- 0.013613227754831314,
- -0.001578669878654182,
- 0.04693077504634857,
- 0.06541892141103745,
- -0.02026260830461979,
- 0.02171446569263935,
- 0.09835256636142731,
- -0.009711064398288727,
- -0.12460474669933319,
- -0.08045730739831924,
- 0.021449020132422447,
- 0.07205989956855774,
- -0.04864679276943207,
- 0.002011470729485154,
- -0.09064090996980667,
- -0.05698937177658081,
- -0.05305871739983559,
- -0.050613027065992355,
- 0.08318891376256943,
- -0.04550983011722565,
- 0.03369598835706711,
- 0.05599277466535568,
- -0.04832316190004349,
- 0.03326769545674324,
- -0.0690196081995964,
- 0.026010943576693535,
- 0.014695238322019577,
- -0.15539301931858063,
- -0.07355499267578125,
- -0.03371217101812363,
- -1.1952415945870598e-8,
- -0.001788135152310133,
- 0.019893711432814598,
- -0.05299961939454079,
- 0.046706221997737885,
- 0.045167114585638046,
- 0.06409836560487747,
- 0.03956673666834831,
- -0.018289586529135704,
- -0.015598710626363754,
- 0.07517658919095993,
- 0.039235807955265045,
- 0.04640088602900505,
- 0.007668473292142153,
- -0.08466501533985138,
- 0.029989758506417274,
- -0.012665975838899612,
- 0.01559334434568882,
- 0.02499144896864891,
- -0.02665180340409279,
- -0.007504165172576904,
- -0.008401421830058098,
- 0.04519445449113846,
- 0.01795061305165291,
- 0.021330617368221283,
- -0.006747277919203043,
- -0.021073080599308014,
- 0.04035663604736328,
- 0.04562438279390335,
- 0.05817316472530365,
- -0.02692389488220215,
- -0.007149279583245516,
- 0.017254479229450226,
- 0.019418034702539444,
- -0.024028519168496132,
- 0.04365972802042961,
- -0.046598322689533234,
- -0.02427884005010128,
- 0.057983264327049255,
- -0.035401418805122375,
- -0.092584989964962,
- -0.0007435830193571746,
- 0.007744382135570049,
- -0.013672608882188797,
- -0.02903812564909458,
- -0.07370498031377792,
- -0.062222253531217575,
- -0.0047609577886760235,
- 0.02084767259657383,
- -0.045170314610004425,
- 0.0036954304669052362,
- -0.0698157325387001,
- 0.01899593695998192,
- 0.011315744370222092,
- 0.0830632671713829,
- 0.059363145381212234,
- 0.021955646574497223,
- -0.015531041659414768,
- -0.03979412838816643,
- -0.07351940125226974,
- 0.0953509509563446,
- 0.03349411115050316,
- -0.03222879022359848,
- -0.06062733009457588,
- 0.007734599523246288
- ]
- },
- {
- "keyword": "south",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- 0.05927953124046326,
- -0.011452477425336838,
- -0.0486704558134079,
- 0.024055929854512215,
- 0.01846114732325077,
- 0.010871075093746185,
- -0.02537728287279606,
- -0.04174879193305969,
- -0.009238732978701591,
- 0.05624517425894737,
- 0.01760614849627018,
- -0.00818688701838255,
- 0.04452144727110863,
- -0.01631694845855236,
- -0.04149431362748146,
- -0.016237372532486916,
- 0.028067437931895256,
- -0.14395290613174438,
- 0.0509401373565197,
- -0.058350443840026855,
- -0.029831910505890846,
- 0.012270418927073479,
- -0.01688198745250702,
- 0.07266615331172943,
- 0.08025321364402771,
- 0.05000527575612068,
- -0.022554820403456688,
- 0.045204028487205505,
- -0.023219436407089233,
- -0.0068888552486896515,
- 0.008895987644791603,
- 0.018261808902025223,
- -0.07214440405368805,
- -0.040716465562582016,
- -0.010886465199291706,
- -0.05297215282917023,
- 0.04580959677696228,
- 0.060741446912288666,
- 0.06678184121847153,
- -0.0024997026193886995,
- -0.06281163543462753,
- -0.036280471831560135,
- 0.013425017707049847,
- -0.029720980674028397,
- -0.00836301501840353,
- -0.009520985186100006,
- 0.029119616374373436,
- 0.02994491346180439,
- 0.04012447968125343,
- -0.019224248826503754,
- 0.06961312890052795,
- -0.008867943659424782,
- -0.10562222450971603,
- 0.031102173030376434,
- -0.036921411752700806,
- 0.0975320115685463,
- -0.025890063494443893,
- 0.011852681636810303,
- -0.00929491501301527,
- 0.04394599422812462,
- 0.02629043534398079,
- -0.00981854647397995,
- -0.0583576075732708,
- 0.05404162406921387,
- 0.07347919791936874,
- -0.010031300596892834,
- -0.05961558595299721,
- 0.08312507718801498,
- -0.020726902410387993,
- -0.07880497723817825,
- 0.03774229809641838,
- -0.05161646753549576,
- -0.01828756555914879,
- 0.0041945758275687695,
- 0.020688939839601517,
- 0.017488887533545494,
- 0.04664082080125809,
- 0.0011946293525397778,
- 0.037673220038414,
- -0.09579067677259445,
- 0.01765950582921505,
- 0.0133714834228158,
- -0.04879000037908554,
- 0.0618085078895092,
- -0.0636928379535675,
- -0.061768561601638794,
- -0.051049377769231796,
- 0.00012898190470878035,
- 0.10082940757274628,
- 0.001415611826814711,
- 0.008032123558223248,
- 0.013906854204833508,
- -0.03647615760564804,
- -0.01964220032095909,
- -0.0673118606209755,
- 0.010487145744264126,
- -0.05248575657606125,
- -0.0332154780626297,
- -0.05121583864092827,
- 0.20750656723976135,
- 0.012244217097759247,
- 0.03267989307641983,
- 0.0473395511507988,
- -0.06208908557891846,
- 0.04760593920946121,
- -0.005743892397731543,
- -0.07714194059371948,
- 0.08469615131616592,
- -0.009447961114346981,
- 0.001916759298183024,
- -0.06055207923054695,
- 0.04471288621425629,
- -0.020413869991898537,
- 0.010812630876898766,
- 0.00077307183528319,
- -0.04425942525267601,
- 0.08087000250816345,
- 0.002638850826770067,
- -0.07113312184810638,
- 0.0015462381998077035,
- -0.07891528308391571,
- 0.050222594290971756,
- -0.09762444347143173,
- 0.0020038997754454613,
- 0.018623346462845802,
- -0.07517415285110474,
- -0.04966315999627113,
- -5.089140794069871e-33,
- 0.05911270156502724,
- -0.09513653069734573,
- 0.047176066786050797,
- 0.04750008508563042,
- 0.00877691712230444,
- 0.02812483347952366,
- 0.039558637887239456,
- -0.05969762057065964,
- -0.06225607171654701,
- 0.0937909483909607,
- -0.0007540491642430425,
- -0.047935545444488525,
- 0.0009074055124074221,
- 0.0014188856584951282,
- 0.06056078523397446,
- 0.04713867977261543,
- -0.004877965897321701,
- -0.03655295446515083,
- -0.117140993475914,
- -0.025352617725729942,
- -0.06356523185968399,
- 0.061889003962278366,
- -0.005436936393380165,
- -0.02525014989078045,
- -0.03930700197815895,
- -0.08324270695447922,
- 0.02927480824291706,
- -0.05552449822425842,
- -0.0309026837348938,
- 0.037286460399627686,
- 0.024237986654043198,
- 0.08599574118852615,
- 0.006593088153749704,
- -0.013574679382145405,
- 0.06344736367464066,
- -0.024042127653956413,
- 0.02835046872496605,
- -0.060086242854595184,
- -0.03660314157605171,
- 0.009514197707176208,
- 0.08930449187755585,
- 0.030417928472161293,
- -0.03177843615412712,
- 0.08546145260334015,
- 0.11289858818054199,
- -0.006169281434267759,
- 0.031967975199222565,
- 0.06312606483697891,
- 0.014456341974437237,
- 0.0206319410353899,
- -0.04480012133717537,
- -0.02141566388309002,
- -0.01679953932762146,
- 0.046615440398454666,
- 0.015657588839530945,
- 0.009008403867483139,
- -0.019491255283355713,
- 0.020303335040807724,
- 0.028421936556696892,
- 0.007825203239917755,
- 0.03688419610261917,
- 0.10524725914001465,
- 0.04279725253582001,
- -0.09049291908740997,
- 0.04234442114830017,
- -0.08554568886756897,
- 0.014316711574792862,
- 0.0087831299751997,
- -0.0016631248872727156,
- -0.06096469238400459,
- 0.049742478877305984,
- 0.03639773279428482,
- 0.03058474324643612,
- 0.07999937236309052,
- 0.0596771314740181,
- 0.018016014248132706,
- 0.041273973882198334,
- 0.07621818035840988,
- 0.03364640474319458,
- 0.00259009818546474,
- -0.10426821559667587,
- 0.00017058689263649285,
- -0.07616821676492691,
- 0.09585219621658325,
- 0.13405917584896088,
- -0.05277257785201073,
- -0.09098126739263535,
- -0.07416147738695145,
- 0.021354293450713158,
- -0.07717273384332657,
- -0.10457455366849899,
- -0.03923039883375168,
- -0.0018104950431734324,
- 0.018408097326755524,
- -0.05932687968015671,
- 3.69642978089501e-33,
- -0.10239491611719131,
- -0.08375341445207596,
- 0.030967898666858673,
- 0.08811039477586746,
- -0.030273476615548134,
- 0.008523388765752316,
- 0.0024405503645539284,
- 0.07904493063688278,
- -0.009809178300201893,
- 0.01179902907460928,
- -0.1309078484773636,
- 0.018978139385581017,
- 0.1454104781150818,
- 0.05026645213365555,
- 0.05882185697555542,
- -0.004138853866606951,
- 0.06332319974899292,
- 0.05593922361731529,
- 0.004467464517802,
- 0.01211398933082819,
- -0.022754482924938202,
- 0.006060393527150154,
- 0.04090147092938423,
- -0.004265103489160538,
- -0.022668374702334404,
- 0.03959586098790169,
- -0.011045387014746666,
- 0.0826714038848877,
- -0.08476463705301285,
- -0.025597527623176575,
- 0.03439147397875786,
- 0.01859564520418644,
- 0.008516139350831509,
- 0.009052378125488758,
- -0.0900377407670021,
- 0.054640427231788635,
- -0.0006894895923323929,
- 0.032532934099435806,
- 0.004080234095454216,
- -0.024403467774391174,
- 0.05006527528166771,
- 0.04434410110116005,
- 0.021347038447856903,
- 0.07391490787267685,
- 0.010259437374770641,
- -0.0875781774520874,
- -0.04640946909785271,
- 0.018753699958324432,
- -0.00516104931011796,
- 0.020670099183917046,
- -0.0868048220872879,
- -0.04458240419626236,
- 0.01537279412150383,
- 0.028255818411707878,
- 0.053555723279714584,
- -0.047717560082674026,
- -0.07326078414916992,
- 0.08223775774240494,
- -0.056658484041690826,
- -0.0235188789665699,
- 0.00917335506528616,
- 0.07209637016057968,
- 0.004600183572620153,
- -0.0006598349427804351,
- 0.02090437337756157,
- 0.0694194957613945,
- 0.01327626220881939,
- -0.001987240044400096,
- 0.04378154128789902,
- -0.03587956726551056,
- 0.002402477664873004,
- 0.05028005689382553,
- -0.11084818840026855,
- -0.027034858241677284,
- 0.02724403887987137,
- 0.01589352637529373,
- -0.01345214992761612,
- -0.024257870391011238,
- -0.07548708468675613,
- -0.03208417072892189,
- -0.08414161950349808,
- -0.03675578907132149,
- -0.058353181928396225,
- 0.06817559152841568,
- -0.03027220256626606,
- 0.046465251594781876,
- -0.06478296220302582,
- -0.027896692976355553,
- 0.06453263014554977,
- -0.05621862784028053,
- 0.0003750486357603222,
- 0.027950484305620193,
- -0.0629652589559555,
- -0.10886768996715546,
- -0.05581918731331825,
- -1.1788126030864987e-8,
- 0.023216476663947105,
- 0.09036954492330551,
- -0.005456589628010988,
- 0.06029246002435684,
- -0.008763467893004417,
- 0.105741485953331,
- -0.0218992717564106,
- -0.010317874141037464,
- 0.016538018360733986,
- 0.01228790171444416,
- -0.002776606474071741,
- -0.0049313735216856,
- 0.06129257008433342,
- -0.08390038460493088,
- 0.011290878057479858,
- -0.02184930257499218,
- 0.0332573801279068,
- 0.03132481873035431,
- -0.05644457787275314,
- -0.004672394599765539,
- 0.03504231199622154,
- 0.01629556156694889,
- 0.08885568380355835,
- 0.06870757043361664,
- 0.0279991552233696,
- -0.05866297334432602,
- -0.021522462368011475,
- 0.04149806126952171,
- 0.08940812945365906,
- 0.009426397271454334,
- 0.02051430009305477,
- 0.005018102005124092,
- -0.0387716069817543,
- 0.01871974766254425,
- -0.023332839831709862,
- -0.09876400977373123,
- -0.07708396017551422,
- -0.003426656126976013,
- -0.0021826557349413633,
- -0.012067047879099846,
- 0.0036746191326528788,
- -0.03933699429035187,
- 0.031779710203409195,
- -0.010047917254269123,
- -0.04721107333898544,
- -0.005476160440593958,
- 0.03150947019457817,
- 0.03604588657617569,
- -0.05636131018400192,
- -0.003568188287317753,
- -0.07330018281936646,
- 0.008571126498281956,
- -0.017390884459018707,
- 0.045592620968818665,
- 0.04341301694512367,
- -0.022054016590118408,
- 0.06571852415800095,
- -0.025904007256031036,
- -0.03052329085767269,
- 0.04277078062295914,
- 0.03973369300365448,
- 0.025882598012685776,
- -0.08532480150461197,
- -0.003690191078931093
- ]
- },
- {
- "keyword": "east",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- 0.07541541755199432,
- 0.04050091281533241,
- 0.04402723163366318,
- -0.006552313920110464,
- -0.030185500159859657,
- -0.014937157742679119,
- 0.01733437553048134,
- -0.03553567826747894,
- -0.0037645595148205757,
- -0.019279014319181442,
- 0.039938583970069885,
- -0.006932706106454134,
- 0.004131997004151344,
- 0.007860060781240463,
- 0.02513784170150757,
- -0.0010044858790934086,
- 0.0014622318558394909,
- -0.10392072796821594,
- -0.0676443949341774,
- -0.06840740144252777,
- -0.03726312890648842,
- -0.002365518594160676,
- 0.04487047716975212,
- 0.06592409312725067,
- 0.04399522393941879,
- 0.01567390374839306,
- -0.012342509813606739,
- 0.09944543242454529,
- 0.026417048647999763,
- -0.07484114915132523,
- -0.0020646315533667803,
- -0.003714880673214793,
- -0.036533333361148834,
- -0.06230777129530907,
- -0.014178059063851833,
- -0.005926201120018959,
- 0.019414421170949936,
- -0.00927277933806181,
- 0.11513787508010864,
- 0.021416272968053818,
- -0.011417482979595661,
- -0.008277061395347118,
- -0.041621237993240356,
- 0.024578969925642014,
- 0.02790195308625698,
- 0.016836872324347496,
- -0.003970342688262463,
- 0.03192451596260071,
- 0.1036006435751915,
- -0.019999505952000618,
- 0.07178201526403427,
- 0.025223471224308014,
- -0.04313249513506889,
- 0.024770131334662437,
- 0.04463741183280945,
- 0.13080836832523346,
- -0.014208348467946053,
- 0.012118525803089142,
- 0.014047818258404732,
- 0.009544666856527328,
- 0.09432784467935562,
- -0.03612511232495308,
- -0.045912452042102814,
- 0.006137575954198837,
- 0.012673412449657917,
- -0.0285293310880661,
- 0.023622894659638405,
- 0.07424819469451904,
- -0.05031775310635567,
- -0.13409048318862915,
- 0.00602088775485754,
- -0.024332372471690178,
- -0.00970375258475542,
- -0.048057008534669876,
- 0.10339336842298508,
- 0.0637815073132515,
- -0.00004945708133163862,
- -0.02164103090763092,
- -0.01174852717667818,
- -0.05939990282058716,
- 0.11252134293317795,
- 0.024087054654955864,
- -0.017002586275339127,
- 0.019942108541727066,
- -0.03170649707317352,
- -0.00003730460230144672,
- -0.0198883805423975,
- 0.03538220375776291,
- 0.09176398813724518,
- 0.02379116602241993,
- -0.019037742167711258,
- -0.1072627380490303,
- 0.016562635079026222,
- 0.011524703353643417,
- 0.013975213281810284,
- 0.02780134044587612,
- -0.03900768607854843,
- -0.084225594997406,
- -0.05060625821352005,
- 0.1839178502559662,
- 0.0011711101979017258,
- -0.01431231014430523,
- -0.03218228369951248,
- -0.023435914888978004,
- 0.07077817618846893,
- -0.022892365232110023,
- -0.01020409632474184,
- 0.10864520072937012,
- -0.0504959411919117,
- -0.035116635262966156,
- -0.06740690022706985,
- -0.005370529368519783,
- -0.04692832753062248,
- -0.002617497695609927,
- -0.026303721591830254,
- 0.013727574609220028,
- 0.07116767764091492,
- 0.03146769106388092,
- -0.01956229656934738,
- -0.0654001533985138,
- -0.07410368323326111,
- 0.06377558410167694,
- -0.01838553696870804,
- 0.08606236428022385,
- -0.0145051134750247,
- -0.05529627948999405,
- -0.008719360455870628,
- -4.947671518316347e-33,
- 0.065106600522995,
- -0.07502991706132889,
- 0.0907890647649765,
- 0.06948833167552948,
- 0.030827730894088745,
- 0.008831152692437172,
- 0.03717231750488281,
- -0.04403231665492058,
- -0.055322080850601196,
- -0.02145213447511196,
- 0.006593824364244938,
- 0.04780750349164009,
- 0.024539237841963768,
- -0.05013349652290344,
- 0.08906930685043335,
- -0.015154382213950157,
- 0.01010122336447239,
- 0.06256145983934402,
- -0.07694780826568604,
- 0.05780867487192154,
- -0.032019685953855515,
- -0.03147745132446289,
- 0.01598127745091915,
- -0.023004192858934402,
- -0.08028971403837204,
- 0.006611447315663099,
- -0.033076684921979904,
- -0.05553354695439339,
- 0.017860746011137962,
- 0.010608600452542305,
- 0.005330306477844715,
- -0.03927367553114891,
- -0.05111820623278618,
- 0.025084113702178,
- 0.05188670754432678,
- 0.02522352896630764,
- 0.006470127031207085,
- -0.021219441667199135,
- 0.02971923165023327,
- -0.028511637821793556,
- 0.012915343977510929,
- 0.015138880349695683,
- -0.05508521571755409,
- -0.007784880232065916,
- 0.06021451950073242,
- 0.051195140928030014,
- 0.00932989176362753,
- 0.048609670251607895,
- 0.023815112188458443,
- 0.007720645517110825,
- -0.058525439351797104,
- 0.022989589720964432,
- -0.07068978995084763,
- -0.015928732231259346,
- 0.0032327906228601933,
- 0.05078594759106636,
- 0.02842283807694912,
- 0.030176794156432152,
- 0.028659658506512642,
- -0.0014932131161913276,
- 0.028431834653019905,
- 0.1689005196094513,
- -0.01909499242901802,
- -0.07086142152547836,
- -0.0342627577483654,
- -0.08158426731824875,
- 0.022680040448904037,
- -0.012931691482663155,
- 0.042283665388822556,
- 0.012118182145059109,
- 0.05351320654153824,
- -0.02925976924598217,
- 0.10297014564275742,
- 0.13474462926387787,
- 0.02467985451221466,
- 0.004684611689299345,
- -0.0944366380572319,
- 0.09036379307508469,
- -0.014161558821797371,
- 0.02857397310435772,
- -0.10918344557285309,
- 0.022517552599310875,
- -0.10041845589876175,
- 0.06609612703323364,
- 0.09609900414943695,
- -0.00029256995185278356,
- -0.04934162274003029,
- -0.03211594745516777,
- 0.046204812824726105,
- -0.03215879946947098,
- -0.12030152231454849,
- 0.030639108270406723,
- 0.02169404737651348,
- -0.0022042596247047186,
- -0.11011692881584167,
- 3.938968428274219e-33,
- 0.05703766644001007,
- -0.03978521749377251,
- -0.029066139832139015,
- 0.005625466350466013,
- -0.06268474459648132,
- 0.01784452050924301,
- 0.016009029000997543,
- 0.07873648405075073,
- 0.004918875638395548,
- 0.07143332809209824,
- -0.10009214282035828,
- 0.03311770036816597,
- 0.11882937699556351,
- 0.03518272936344147,
- 0.06971631944179535,
- -0.03056962601840496,
- 0.04841674491763115,
- 0.0680001750588417,
- 0.004858712665736675,
- -0.0071837264113128185,
- 0.015262848697602749,
- -0.07057318836450577,
- -0.0008242986514233053,
- 0.040150970220565796,
- 0.008860244415700436,
- 0.05335694178938866,
- 0.009694410488009453,
- 0.12498816847801208,
- -0.06410547345876694,
- -0.037275221198797226,
- -0.04146430268883705,
- -0.009253368712961674,
- -0.004989275708794594,
- 0.07662765681743622,
- -0.06139532849192619,
- 0.0655507817864418,
- -0.03541805222630501,
- -0.03532809764146805,
- 0.01621445082128048,
- -0.018789920955896378,
- -0.07913367450237274,
- 0.04410894215106964,
- -0.018684914335608482,
- 0.07985024154186249,
- -0.02341606467962265,
- 0.006850815378129482,
- -0.047925468534231186,
- 0.0898205041885376,
- -0.04550694301724434,
- 0.046860817819833755,
- -0.06884255260229111,
- 0.060809724032878876,
- -0.03551771119236946,
- 0.0483068972826004,
- -0.0007986733689904213,
- 0.023212647065520287,
- -0.06836965680122375,
- 0.004704006947577,
- -0.054542239755392075,
- -0.000969538523349911,
- 0.023591620847582817,
- 0.03790640830993652,
- -0.0015510551165789366,
- 0.05178281292319298,
- -0.05277702212333679,
- 0.046367302536964417,
- 0.044203393161296844,
- -0.0719931349158287,
- 0.009702430106699467,
- -0.03552459180355072,
- 0.027392785996198654,
- 0.0069358316250145435,
- -0.1094004288315773,
- -0.010433787479996681,
- 0.015531732700765133,
- 0.09571731090545654,
- -0.022464551031589508,
- -0.03435948118567467,
- -0.04741784557700157,
- -0.037458304315805435,
- -0.14021705090999603,
- -0.03876790031790733,
- -0.08605179190635681,
- 0.11792333424091339,
- -0.035764724016189575,
- 0.015410554595291615,
- -0.02301263064146042,
- -0.021612389013171196,
- 0.0075498316437006,
- -0.06482942402362823,
- 0.043596524745225906,
- -0.015069558285176754,
- -0.087696872651577,
- -0.06832373142242432,
- 0.03350597620010376,
- -1.0723157473080391e-8,
- -0.05639081448316574,
- 0.08320800960063934,
- 0.0026137209497392178,
- 0.021750014275312424,
- -0.06327776610851288,
- 0.043290022760629654,
- 0.03841915726661682,
- -0.014054782688617706,
- 0.03479010984301567,
- 0.021181941032409668,
- 0.05279070883989334,
- -0.003270546905696392,
- 0.0023803464137017727,
- -0.006687212269753218,
- -0.0334184393286705,
- -0.060503412038087845,
- -0.021960970014333725,
- 0.017687637358903885,
- 0.006350926589220762,
- -0.03246791288256645,
- -0.03584134206175804,
- -0.008646172471344471,
- 0.028427934274077415,
- 0.007095959968864918,
- 0.019064228981733322,
- -0.0003262474201619625,
- -0.032943591475486755,
- -0.048166707158088684,
- 0.045726653188467026,
- 0.03409683704376221,
- 0.04126088321208954,
- 0.039940137416124344,
- -0.024401674047112465,
- -0.04276933893561363,
- 0.0026930896565318108,
- -0.010121215134859085,
- -0.06191631779074669,
- 0.037097834050655365,
- -0.06761454790830612,
- 0.024685798212885857,
- -0.013886059634387493,
- -0.10163547098636627,
- 0.03677615150809288,
- -0.025310689583420753,
- 0.01179383136332035,
- -0.039699673652648926,
- 0.0642324686050415,
- 0.043210048228502274,
- -0.04741736128926277,
- -0.0847095474600792,
- 0.015684328973293304,
- 0.04460693523287773,
- -0.002755802823230624,
- 0.008782196789979935,
- -0.006331957411020994,
- 0.05060487613081932,
- -0.02144462615251541,
- -0.050189219415187836,
- -0.07419167459011078,
- 0.09199872612953186,
- 0.05895509943366051,
- 0.0457804799079895,
- -0.08649707585573196,
- 0.02381417341530323
- ]
- },
- {
- "keyword": "west",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- 0.1271725594997406,
- 0.025586362928152084,
- -0.04068475961685181,
- -0.022941501811146736,
- 0.008066369220614433,
- -0.015294848941266537,
- -0.0016080847708508372,
- -0.035621706396341324,
- -0.005591088440269232,
- -0.008036632090806961,
- 0.023461954668164253,
- -0.06002110242843628,
- 0.01294881571084261,
- 0.01390302274376154,
- 0.011375588364899158,
- 0.01706196367740631,
- -0.016378572210669518,
- -0.08057458698749542,
- -0.052495669573545456,
- -0.0827355682849884,
- -0.08743955194950104,
- 0.011506635695695877,
- 0.037799686193466187,
- 0.07851503044366837,
- 0.03948795050382614,
- 0.021679889410734177,
- 0.0634908676147461,
- 0.06937143951654434,
- 0.026194462552666664,
- -0.06684665381908417,
- -0.046186938881874084,
- -0.027693849056959152,
- 0.015144288539886475,
- -0.0028156288899481297,
- -0.016491323709487915,
- -0.03048349916934967,
- -0.027951085940003395,
- -0.01291107852011919,
- 0.051101818680763245,
- -0.011556106619536877,
- 0.003943555988371372,
- -0.02343304641544819,
- -0.002840403700247407,
- 0.05313381552696228,
- 0.005716981831938028,
- 0.0055651129223406315,
- 0.012865843251347542,
- 0.08264405280351639,
- 0.09063820540904999,
- 0.04627688229084015,
- 0.07392306625843048,
- -0.0009035457042045891,
- -0.06022287905216217,
- 0.013553072698414326,
- -0.023961614817380905,
- 0.07885845750570297,
- -0.027512745931744576,
- 0.07613565027713776,
- 0.04669107124209404,
- 0.018170811235904694,
- 0.059977609664201736,
- -0.008286613039672375,
- -0.0401252880692482,
- -0.010747910477221012,
- 0.051500383764505386,
- -0.018609944730997086,
- -0.011901144869625568,
- 0.0850566029548645,
- -0.004049672279506922,
- -0.18966689705848694,
- -0.0022076715249568224,
- -0.03837205842137337,
- -0.046854350715875626,
- -0.06420984864234924,
- 0.026535900309681892,
- 0.031018679961562157,
- 0.004527048673480749,
- -0.023571422323584557,
- -0.0003155541780870408,
- -0.0695047676563263,
- 0.13061338663101196,
- 0.03668562322854996,
- 0.03482433408498764,
- 0.00398162892088294,
- -0.021381070837378502,
- -0.02178170531988144,
- -0.026897937059402466,
- -0.0024742393288761377,
- 0.056162841618061066,
- -0.017749888822436333,
- -0.007084723096340895,
- -0.08170702308416367,
- -0.009568591602146626,
- 0.02761678397655487,
- -0.0037741928827017546,
- 0.04771123081445694,
- -0.01153538841754198,
- -0.055995434522628784,
- -0.039885956794023514,
- 0.18893419206142426,
- 0.023604506626725197,
- -0.014855262823402882,
- 0.05827416107058525,
- 0.01510003861039877,
- 0.05054716393351555,
- -0.04207024350762367,
- -0.047569405287504196,
- 0.07788200676441193,
- -0.07812255620956421,
- -0.09342608600854874,
- -0.08865570276975632,
- 0.0497722290456295,
- -0.010573978535830975,
- 0.04993438348174095,
- 0.03222186490893364,
- -0.05051598325371742,
- 0.12099333852529526,
- 0.018563296645879745,
- -0.039786264300346375,
- -0.07975733280181885,
- -0.026257412508130074,
- 0.02348494529724121,
- 0.0022299273405224085,
- 0.03566005825996399,
- 0.0031147627159953117,
- -0.13999994099140167,
- 0.020043442025780678,
- -4.115485068097509e-33,
- 0.09229597449302673,
- -0.0639268010854721,
- 0.08641212433576584,
- 0.036893460899591446,
- 0.06096896901726723,
- -0.011735356412827969,
- 0.030489178374409676,
- -0.03420870751142502,
- -0.04857853055000305,
- 0.040554165840148926,
- 0.00010450623085489497,
- 0.03712255507707596,
- 0.045509107410907745,
- -0.03995296359062195,
- 0.09655223041772842,
- 0.009969234466552734,
- 0.0364571176469326,
- 0.04860666021704674,
- -0.07459806650876999,
- 0.028886966407299042,
- -0.027264604344964027,
- 0.032213229686021805,
- 0.005193266551941633,
- -0.000841389293782413,
- -0.10440822690725327,
- -0.029695160686969757,
- -0.0291401706635952,
- -0.011909974738955498,
- 0.04123250022530556,
- 0.024994459003210068,
- -0.009060395881533623,
- -0.015813525766134262,
- -0.0010317940032109618,
- 0.01991257071495056,
- 0.013538227416574955,
- 0.03178858757019043,
- -0.07345511764287949,
- -0.05747988075017929,
- -0.04407656937837601,
- -0.07458864897489548,
- 0.03737528994679451,
- 0.01955815777182579,
- -0.03889826685190201,
- 0.04265813156962395,
- 0.08707739412784576,
- -0.024176668375730515,
- 0.035859670490026474,
- 0.028932441025972366,
- -0.05075705796480179,
- 0.044677142053842545,
- -0.05173414200544357,
- 0.00373517326079309,
- -0.07328049093484879,
- -0.0067285047844052315,
- 0.0030094075482338667,
- 0.00644488912075758,
- 0.06285225600004196,
- 0.011758563108742237,
- 0.017462605610489845,
- 0.032355647534132004,
- 0.030716843903064728,
- 0.10956896096467972,
- -0.04819587990641594,
- -0.038093358278274536,
- -0.04652983322739601,
- -0.0867539495229721,
- 0.025431927293539047,
- 0.03728335723280907,
- 0.0019090112764388323,
- 0.012182189151644707,
- 0.05190269649028778,
- -0.04614480584859848,
- 0.09290686249732971,
- 0.11252123862504959,
- 0.031051844358444214,
- 0.004709916654974222,
- -0.02048720046877861,
- 0.07276789098978043,
- -0.04225626587867737,
- -0.0012379313120618463,
- -0.15934893488883972,
- 0.05795954540371895,
- -0.06794348359107971,
- 0.1004585549235344,
- 0.08516769111156464,
- 0.021421153098344803,
- -0.027884406968951225,
- -0.08355673402547836,
- 0.030924750491976738,
- -0.023294223472476006,
- -0.19813621044158936,
- 0.028995061293244362,
- 0.048448625952005386,
- -0.005009208805859089,
- -0.059122007340192795,
- 3.239677859229579e-33,
- 0.014516821131110191,
- -0.0511787012219429,
- -0.0193388219922781,
- 0.03874749317765236,
- -0.04725777357816696,
- -0.01603761315345764,
- 0.041877854615449905,
- 0.06263519078493118,
- 0.012507340870797634,
- 0.017788982018828392,
- -0.049168746918439865,
- -0.03838858753442764,
- 0.0565466433763504,
- 0.05024386942386627,
- 0.07583591341972351,
- 0.011607291176915169,
- 0.09338714182376862,
- 0.078232042491436,
- -0.028863780200481415,
- 0.04227595776319504,
- 0.007189400494098663,
- -0.056576263159513474,
- -0.04796307533979416,
- -0.015047707594931126,
- -0.01556424517184496,
- 0.045432332903146744,
- 0.03399886563420296,
- 0.06994453817605972,
- -0.10001292824745178,
- -0.019023030996322632,
- -0.053251855075359344,
- -0.00017402639787178487,
- 0.020462695509195328,
- 0.08943215012550354,
- -0.0969822108745575,
- 0.04679545387625694,
- -0.020589830353856087,
- -0.02694866992533207,
- 0.00800679624080658,
- -0.01348881609737873,
- -0.018842732533812523,
- 0.010239288210868835,
- -0.017186572775244713,
- 0.1084645539522171,
- -0.02347886562347412,
- -0.007361200638115406,
- -0.03529103472828865,
- 0.005098918918520212,
- -0.038144733756780624,
- 0.03901784494519234,
- -0.01690039411187172,
- 0.0035487846471369267,
- -0.020111631602048874,
- 0.056483302265405655,
- -0.03520520403981209,
- 0.02770402655005455,
- -0.0228135883808136,
- 0.04894060268998146,
- -0.03499831631779671,
- 0.014912749640643597,
- -0.04899393394589424,
- 0.03449845314025879,
- 0.014268348924815655,
- 0.03916143998503685,
- -0.04143939167261124,
- -0.007832716219127178,
- 0.04658288508653641,
- 0.015466918237507343,
- 0.04464387521147728,
- -0.023026829585433006,
- 0.015087713487446308,
- 0.08442043513059616,
- -0.061384737491607666,
- 0.023602301254868507,
- -0.017189694568514824,
- 0.05227770283818245,
- -0.061034590005874634,
- -0.04891297593712807,
- -0.07693586498498917,
- -0.0194558072835207,
- -0.0637829527258873,
- -0.05057094246149063,
- -0.07783762365579605,
- 0.06470081955194473,
- -0.015513903461396694,
- 0.010495124384760857,
- -0.018669821321964264,
- -0.029370049014687538,
- 0.011231325566768646,
- -0.021460145711898804,
- 0.04033220559358597,
- -0.0027682879008352757,
- -0.04330666363239288,
- -0.09399391710758209,
- -0.012846345081925392,
- -1.132882765375598e-8,
- -0.06667540967464447,
- 0.0905369222164154,
- -0.05824901908636093,
- 0.049890898168087006,
- -0.06305745244026184,
- 0.1185636967420578,
- 0.0016995870973914862,
- -0.009045345708727837,
- -0.04058713838458061,
- 0.03928718343377113,
- 0.02249802090227604,
- -0.021404782310128212,
- -0.013540833257138729,
- -0.017432326450943947,
- -0.07119922339916229,
- -0.06006891280412674,
- -0.046825457364320755,
- -0.0059305340982973576,
- 0.024278001859784126,
- -0.0016709822230041027,
- -0.02140292339026928,
- 0.02409772016108036,
- 0.05555296316742897,
- 0.05093269422650337,
- 0.04688960686326027,
- -0.021974045783281326,
- -0.0168196652084589,
- 0.0014339067274704576,
- 0.05129484832286835,
- 0.00626507680863142,
- 0.12176094949245453,
- 0.0555865541100502,
- -0.04124448075890541,
- -0.025917990133166313,
- -0.0056022461503744125,
- -0.06136229634284973,
- -0.04963603615760803,
- 0.054843977093696594,
- -0.09823517501354218,
- 0.059884000569581985,
- 0.05245406553149223,
- -0.011135751381516457,
- 0.005891569424420595,
- -0.0185481496155262,
- -0.01872195489704609,
- -0.023094648495316505,
- 0.01402229256927967,
- 0.048681486397981644,
- -0.018903609365224838,
- -0.04970268905162811,
- 0.011963153257966042,
- 0.0029696945566684008,
- 0.010502815246582031,
- 0.018411289900541306,
- 0.06569793820381165,
- 0.040283795446157455,
- 0.0029581200797110796,
- -0.0751858800649643,
- -0.07744204998016357,
- 0.09461631625890732,
- 0.04896301031112671,
- 0.017290538176894188,
- -0.04200266674160957,
- -0.018549924716353416
- ]
- },
- {
- "keyword": "central",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- 0.0708390325307846,
- -0.0529383160173893,
- -0.05144868418574333,
- -0.006591197103261948,
- 0.03399644419550896,
- -0.0071731735952198505,
- -0.04927751421928406,
- 0.04252564162015915,
- 0.006779564544558525,
- -0.00028394159744493663,
- 0.0013136924244463444,
- -0.03477953374385834,
- 0.021676355972886086,
- -0.010083792731165886,
- 0.02019382268190384,
- -0.024603813886642456,
- 0.026370570063591003,
- -0.03782207518815994,
- 0.04555347189307213,
- -0.06218644231557846,
- -0.08204446732997894,
- -0.03494107350707054,
- -0.021736636757850647,
- 0.04252688214182854,
- 0.022861666977405548,
- 0.0469110906124115,
- -0.01739559881389141,
- 0.11319558322429657,
- -0.018623841926455498,
- -0.0815260037779808,
- -0.0656120553612709,
- 0.018360625952482224,
- 0.008276727981865406,
- -0.010257437825202942,
- 0.02529236301779747,
- -0.01130581833422184,
- -0.05159953236579895,
- -0.01837426796555519,
- 0.12052786350250244,
- -0.009228302165865898,
- 0.060610849410295486,
- 0.004335455130785704,
- -0.0316157341003418,
- -0.015115050598978996,
- -0.04221268370747566,
- 0.07140739262104034,
- -0.025273432955145836,
- -0.006494087632745504,
- 0.07552918791770935,
- -0.007266227155923843,
- 0.09724988043308258,
- -0.03852370008826256,
- -0.03321859985589981,
- 0.06324205547571182,
- 0.021642204374074936,
- 0.08365922421216965,
- -0.05204426497220993,
- -0.002081396523863077,
- 0.051038239151239395,
- -0.030013708397746086,
- 0.13331113755702972,
- -0.0414590984582901,
- -0.10911756008863449,
- 0.07412713021039963,
- 0.05062120780348778,
- -0.038880541920661926,
- -0.004629840143024921,
- 0.05548296496272087,
- 0.003722443711012602,
- -0.24108625948429108,
- 0.02417922019958496,
- -0.0007828986272215843,
- 0.017800386995077133,
- -0.06845145672559738,
- 0.08232197910547256,
- 0.06705264002084732,
- 0.005721976049244404,
- -0.015097531490027905,
- -0.01557966973632574,
- -0.03080175258219242,
- 0.031944990158081055,
- 0.05110716447234154,
- -0.010157006792724133,
- 0.05341663211584091,
- -0.0260414220392704,
- 0.00942923128604889,
- -0.013955557718873024,
- 0.020045846700668335,
- -0.004152736160904169,
- -0.0028412514366209507,
- -0.008472153916954994,
- 0.03735361620783806,
- -0.02813958004117012,
- -0.03325056657195091,
- -0.07372217625379562,
- 0.059644728899002075,
- -0.051114343106746674,
- -0.04477136954665184,
- -0.01725064218044281,
- 0.22251123189926147,
- 0.0343669094145298,
- 0.04515078291296959,
- 0.08163441717624664,
- -0.08651427179574966,
- 0.05174262821674347,
- -0.01472096424549818,
- -0.0027788726147264242,
- 0.05375579744577408,
- -0.030814163386821747,
- 0.033913660794496536,
- -0.08711424469947815,
- 0.03183058649301529,
- -0.0281868577003479,
- -0.05876137688755989,
- -0.03752132132649422,
- 0.0712500736117363,
- 0.11400113999843597,
- 0.0460958294570446,
- 0.05047774687409401,
- -0.045218996703624725,
- -0.00018003341392613947,
- -0.014478073455393314,
- -0.046284135431051254,
- -0.004358209669589996,
- -0.004591959994286299,
- -0.0069616734981536865,
- -0.023404182866215706,
- -2.821363133468098e-33,
- 0.015895461663603783,
- -0.024210380390286446,
- 0.0387590229511261,
- 0.014618586748838425,
- -0.0005122018046677113,
- 0.010916262865066528,
- -0.008703690022230148,
- -0.035641398280858994,
- -0.03536767140030861,
- 0.00017101837147492915,
- -0.0049803489819169044,
- 0.024360403418540955,
- 0.03232114389538765,
- -0.03289831057190895,
- -0.0012196754105389118,
- 0.012643895111978054,
- 0.06607290357351303,
- -0.04942833259701729,
- -0.05983823910355568,
- -0.05196844041347504,
- -0.038386981934309006,
- 0.08486717939376831,
- -0.017826959490776062,
- -0.01224012766033411,
- -0.0672852098941803,
- -0.007016452495008707,
- -0.015851831063628197,
- -0.04642502963542938,
- 0.024860510602593422,
- 0.020327817648649216,
- 0.01927756331861019,
- 0.09523369371891022,
- 0.03683776035904884,
- 0.08618103712797165,
- 0.042915116995573044,
- 0.07062923908233643,
- -0.0009396318346261978,
- -0.031555432826280594,
- -0.04444130137562752,
- 0.013704732991755009,
- 0.050425510853528976,
- 0.034927621483802795,
- -0.03188623860478401,
- 0.014235232025384903,
- 0.06322532892227173,
- 0.011091825552284718,
- -0.0026260458398610353,
- 0.020251497626304626,
- 0.09909472614526749,
- -0.04454835131764412,
- -0.05139068514108658,
- 0.019131315872073174,
- -0.1303810030221939,
- 0.039093419909477234,
- -0.018947744742035866,
- 0.04894515872001648,
- 0.011491956189274788,
- -0.05356660112738609,
- 0.028673561289906502,
- -0.014525397680699825,
- 0.08020704239606857,
- 0.09197152405977249,
- -0.06871550530195236,
- -0.021535463631153107,
- -0.006639839615672827,
- -0.10825952887535095,
- -0.07137031108140945,
- -0.009962181560695171,
- 0.10641451925039291,
- 0.009319043718278408,
- 0.0002717769530136138,
- -0.012047667056322098,
- 0.08288870006799698,
- 0.07156823575496674,
- 0.060424160212278366,
- 0.0188786331564188,
- -0.05977815389633179,
- 0.08799027651548386,
- -0.0536736436188221,
- 0.0401281900703907,
- -0.035061076283454895,
- 0.009639509953558445,
- -0.0738963708281517,
- 0.0798066258430481,
- 0.07324663549661636,
- -0.011878743767738342,
- -0.07125946879386902,
- -0.017232924699783325,
- -0.06261025369167328,
- 0.013345169834792614,
- -0.12847968935966492,
- 0.0013564329128712416,
- 0.03895442560315132,
- 0.064045250415802,
- -0.14017347991466522,
- 2.8098798393575105e-33,
- -0.047084320336580276,
- -0.013578715734183788,
- -0.005675680004060268,
- 0.06984347105026245,
- -0.0029516511131078005,
- 0.03188253194093704,
- 0.012114386074244976,
- -0.03432353958487511,
- 0.01090508047491312,
- 0.06386756151914597,
- 0.006522356066852808,
- 0.010882534086704254,
- 0.07681775838136673,
- 0.06455179303884506,
- 0.04527154192328453,
- 0.06302028894424438,
- 0.05197330564260483,
- 0.038998253643512726,
- -0.06160900741815567,
- 0.006688443943858147,
- 0.02311626449227333,
- -0.07180801779031754,
- -0.056656647473573685,
- -0.045536674559116364,
- -0.003642050549387932,
- 0.0620247907936573,
- -0.002614109544083476,
- 0.045417577028274536,
- -0.09471817314624786,
- 0.03551538288593292,
- -0.0798431783914566,
- -0.03746134787797928,
- -0.03573888540267944,
- 0.06747779250144958,
- -0.07172692567110062,
- 0.04243495315313339,
- -0.03231017291545868,
- 0.08667123317718506,
- -0.0539371594786644,
- -0.043213870376348495,
- 0.0024628913961350918,
- 0.025211656466126442,
- -0.032431017607450485,
- 0.05918632075190544,
- 0.04489647597074509,
- -0.03520115837454796,
- -0.010201224125921726,
- 0.012204782105982304,
- -0.05639449134469032,
- 0.07783962786197662,
- -0.07979043573141098,
- 0.01869683340191841,
- -0.015328790061175823,
- 0.03815371170639992,
- 0.03228054195642471,
- 0.07087214291095734,
- -0.018588837236166,
- 0.06876689195632935,
- -0.026558147743344307,
- -0.045243266969919205,
- 0.013245800510048866,
- 0.007784164976328611,
- -0.03245579078793526,
- 0.030928410589694977,
- 0.019591743126511574,
- 0.07242538779973984,
- 0.041807547211647034,
- 0.02801395021378994,
- -0.03372888267040253,
- 0.022002965211868286,
- -0.04353753849864006,
- 0.07537968456745148,
- -0.06611096113920212,
- -0.07875100523233414,
- -0.031437408179044724,
- 0.05168546363711357,
- 0.02545345574617386,
- -0.020745432004332542,
- -0.045754872262477875,
- 0.014797307550907135,
- -0.02770319953560829,
- -0.01660929061472416,
- -0.07380811870098114,
- 0.03136875107884407,
- 0.06700316816568375,
- 0.02805710770189762,
- 0.029798267409205437,
- 0.020313972607254982,
- 0.04037681221961975,
- -0.014728572219610214,
- 0.0025996931362897158,
- 0.03990066051483154,
- -0.0194062702357769,
- -0.11996914446353912,
- -0.008129757829010487,
- -1.0405307726557567e-8,
- -0.04290486127138138,
- 0.06440098583698273,
- -0.08809737861156464,
- 0.09338792413473129,
- 0.03673112019896507,
- -0.021969975903630257,
- -0.04095282405614853,
- -0.04091550037264824,
- -0.04111254960298538,
- 0.10072847455739975,
- 0.03663487359881401,
- 0.017846141010522842,
- 0.012041931040585041,
- -0.056542765349149704,
- -0.04474103823304176,
- 0.01839556358754635,
- -0.028040403500199318,
- -0.01855381950736046,
- -0.02243739180266857,
- -0.05468425527215004,
- -0.034380197525024414,
- -0.016283942386507988,
- 0.01439538411796093,
- 0.04220833629369736,
- 0.02931041270494461,
- -0.053957439959049225,
- 0.015894971787929535,
- 0.058563292026519775,
- 0.039709389209747314,
- -0.021479325369000435,
- 0.003654137020930648,
- 0.0793231800198555,
- -0.04180833324790001,
- -0.08699939399957657,
- -0.05067615956068039,
- -0.025262096896767616,
- -0.021507779136300087,
- 0.0413595475256443,
- -0.0161762498319149,
- -0.023461267352104187,
- 0.08816935122013092,
- -0.1019958034157753,
- 0.015539336949586868,
- -0.023555126041173935,
- -0.01101568154990673,
- -0.018431559205055237,
- 0.025704264640808105,
- 0.02123815007507801,
- 0.05228405445814133,
- -0.03755083307623863,
- -0.028127219527959824,
- 0.01940501295030117,
- -0.041103627532720566,
- 0.04938707500696182,
- 0.050466038286685944,
- -0.016621699556708336,
- -0.003687115153297782,
- -0.04307425394654274,
- -0.06470652669668198,
- -0.0018750701565295458,
- -0.012234575115144253,
- 0.039749789983034134,
- -0.061838649213314056,
- 0.010713201016187668
- ]
- },
- {
- "keyword": "coastal",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- 0.02089204266667366,
- 0.025721531361341476,
- 0.012241796590387821,
- 0.019592011347413063,
- -0.010599243454635143,
- -0.0920896828174591,
- 0.01721077971160412,
- -0.02382826805114746,
- -0.055909402668476105,
- -0.01565033756196499,
- 0.0026499470695853233,
- -0.16385376453399658,
- 0.040539633482694626,
- 0.0241603571921587,
- 0.028753703460097313,
- 0.03883730620145798,
- -0.026021266356110573,
- -0.04374762624502182,
- 0.05407757684588432,
- -0.027637001127004623,
- -0.147698312997818,
- 0.10061176121234894,
- -0.05082990229129791,
- -0.006558729335665703,
- 0.03815748915076256,
- 0.02225930616259575,
- 0.010092221200466156,
- 0.03514335677027702,
- -0.010090988129377365,
- -0.04195057228207588,
- -0.04212803766131401,
- 0.12616731226444244,
- 0.004604538902640343,
- -0.013027366250753403,
- 0.04299674555659294,
- 0.05244895815849304,
- -0.06183012202382088,
- -0.018164262175559998,
- -0.036413922905921936,
- 0.006216475274413824,
- -0.07635776698589325,
- -0.03544148430228233,
- 0.0939546599984169,
- 0.04252534359693527,
- 0.003224399872124195,
- -0.03654346615076065,
- -0.009349663741886616,
- 0.03729512542486191,
- 0.043976202607154846,
- 0.019632352516055107,
- 0.0029267389327287674,
- -0.07524655014276505,
- -0.13760894536972046,
- -0.07840953022241592,
- -0.011759662069380283,
- 0.011525662615895271,
- -0.04059794545173645,
- 0.016203811392188072,
- 0.019656766206026077,
- 0.050829578191041946,
- 0.04814009368419647,
- 0.002201040042564273,
- -0.046190984547138214,
- -0.004529147408902645,
- 0.11202040314674377,
- 0.02512246184051037,
- -0.028565049171447754,
- 0.02944282814860344,
- -0.025401920080184937,
- -0.08276273310184479,
- -0.009092496708035469,
- -0.0026346901431679726,
- 0.027596984058618546,
- 0.0024952611420303583,
- 0.029220687225461006,
- -0.05043412372469902,
- -0.017969515174627304,
- 0.0017919389065355062,
- 0.007174414582550526,
- -0.06049368530511856,
- -0.01087698619812727,
- -0.036888692528009415,
- -0.06435709446668625,
- -0.01645205356180668,
- -0.008633297868072987,
- -0.027698267251253128,
- 0.05330171436071396,
- -0.014224831014871597,
- 0.0774548277258873,
- 0.0678647980093956,
- -0.017065808176994324,
- -0.03431227058172226,
- -0.04359523206949234,
- -0.019497565925121307,
- -0.10400910675525665,
- -0.027005353942513466,
- -0.049158159643411636,
- -0.04236338660120964,
- -0.043736111372709274,
- 0.1864095777273178,
- 0.007564304396510124,
- 0.035020776093006134,
- 0.004152018576860428,
- -0.039944838732481,
- 0.013019153848290443,
- -0.03567487746477127,
- 0.008470905013382435,
- 0.011716999113559723,
- -0.05222220718860626,
- 0.017061829566955566,
- -0.052535656839609146,
- 0.043915729969739914,
- -0.10923866182565689,
- -0.05307195708155632,
- -0.019585242494940758,
- 0.05177693068981171,
- 0.07375817745923996,
- -0.05975991114974022,
- -0.019795875996351242,
- -0.025447029620409012,
- -0.03979739919304848,
- 0.0014654704136773944,
- -0.044273294508457184,
- 0.01817762479186058,
- -0.04671353101730347,
- -0.02106213942170143,
- 0.02338310331106186,
- -4.173960769263133e-33,
- 0.055672530084848404,
- -0.0256643109023571,
- 0.02352912165224552,
- 0.05738960579037666,
- 0.03430403023958206,
- -0.03106299415230751,
- -0.018116403371095657,
- -0.09315753728151321,
- -0.06427904218435287,
- -0.020448453724384308,
- 0.005030570086091757,
- 0.03496401384472847,
- -0.03932930529117584,
- -0.013946118764579296,
- 0.1464734673500061,
- -0.07493455708026886,
- 0.003030771156772971,
- -0.0724148079752922,
- -0.11179254204034805,
- -0.0443209707736969,
- -0.04863220453262329,
- 0.08852876722812653,
- -0.004983888939023018,
- -0.07854227721691132,
- -0.025582298636436462,
- -0.06308077275753021,
- 0.031000513583421707,
- 0.00519493268802762,
- 0.013892678543925285,
- 0.06814401596784592,
- -0.010275429114699364,
- -0.0004872684658039361,
- -0.010009659454226494,
- 0.005875998642295599,
- 0.0864357203245163,
- 0.03517184033989906,
- -0.01430666446685791,
- -0.07197874784469604,
- -0.007459606043994427,
- 0.014234822243452072,
- -0.01501833088696003,
- -0.005032193381339312,
- -0.0006567550590261817,
- 0.09603159129619598,
- 0.016141800209879875,
- -0.052499182522296906,
- 0.02596224658191204,
- 0.0050878021866083145,
- 0.0817778930068016,
- -0.04166371747851372,
- 0.03307609632611275,
- -0.014271030202507973,
- -0.0934891626238823,
- 0.003823590464890003,
- -0.01606326550245285,
- 0.007190993055701256,
- 0.05466918274760246,
- -0.030752895399928093,
- -0.052952900528907776,
- 0.058075904846191406,
- 0.05117706581950188,
- 0.04113604873418808,
- 0.024621477350592613,
- -0.04062168672680855,
- 0.03995182365179062,
- 0.019641881808638573,
- 0.04669981822371483,
- 0.02657322958111763,
- 0.011268782429397106,
- -0.049428604543209076,
- 0.030513936653733253,
- -0.02562212012708187,
- 0.15565910935401917,
- 0.10949362814426422,
- -0.03451888635754585,
- 0.04708807170391083,
- 0.07378796488046646,
- 0.06216536834836006,
- -0.009978809393942356,
- -0.0024481986183673143,
- -0.009591200388967991,
- 0.07756344228982925,
- -0.0391501784324646,
- 0.002335013821721077,
- -0.007420350331813097,
- 0.015748336911201477,
- -0.018818194046616554,
- -0.052396856248378754,
- 0.003955965396016836,
- -0.020855888724327087,
- -0.1547556221485138,
- 0.015822237357497215,
- 0.1329614669084549,
- -0.048454757779836655,
- -0.09296533465385437,
- 3.0250612434442305e-33,
- -0.04965069517493248,
- -0.027792789041996002,
- -0.009088351391255856,
- 0.0046198987402021885,
- -0.055920880287885666,
- -0.03196325525641441,
- 0.08330094814300537,
- 0.013969789259135723,
- -0.03332686424255371,
- 0.002768568927422166,
- -0.1663053184747696,
- 0.016161233186721802,
- 0.13286937773227692,
- 0.0016581133240833879,
- 0.04597267881035805,
- 0.03665992617607117,
- 0.07148896157741547,
- 0.03871593996882439,
- -0.011141392402350903,
- -0.034359000623226166,
- 0.0035978490486741066,
- -0.08593744039535522,
- 0.01920197531580925,
- 0.04179258644580841,
- -0.006323533598333597,
- 0.07140301913022995,
- -0.0068472521379590034,
- 0.014743317849934101,
- -0.03766179084777832,
- -0.030124671757221222,
- -0.006790714804083109,
- 0.01535630039870739,
- 0.06120174750685692,
- -0.009169943630695343,
- -0.0884368047118187,
- 0.0671590194106102,
- 0.0758434310555458,
- 0.015151713974773884,
- -0.05375344678759575,
- 0.004565385635942221,
- 0.025553356856107712,
- -0.06300120800733566,
- 0.04529031366109848,
- 0.06660754978656769,
- -0.00402820622548461,
- 0.010345407761633396,
- 0.02374568209052086,
- 0.07361859083175659,
- -0.06028825417160988,
- 0.047385554760694504,
- 0.012513362802565098,
- 0.05859383940696716,
- 0.03967411816120148,
- 0.026599498465657234,
- 0.017528967931866646,
- 0.03764471411705017,
- -0.05189618095755577,
- 0.016605501994490623,
- -0.044385235756635666,
- -0.028484826907515526,
- 0.06859178841114044,
- 0.03544067218899727,
- -0.049680452793836594,
- 0.05828940495848656,
- 0.07242301851511002,
- 0.03018859028816223,
- -0.0027172963600605726,
- -0.04454360529780388,
- -0.10205177962779999,
- -0.010943432338535786,
- -0.010400313884019852,
- 0.031359218060970306,
- -0.11954662948846817,
- -0.026273401454091072,
- -0.026860738173127174,
- 0.0019745470490306616,
- -0.08135148137807846,
- 0.00730582419782877,
- -0.06442565470933914,
- 0.04250217601656914,
- -0.039418816566467285,
- -0.039655901491642,
- -0.05446705222129822,
- 0.08553265035152435,
- -0.03708868846297264,
- -0.036899179220199585,
- 0.04780973121523857,
- -0.055430326610803604,
- 0.0917484387755394,
- -0.011343462392687798,
- 0.008175289258360863,
- 0.004524093586951494,
- -0.12220054864883423,
- -0.023105164989829063,
- -0.04320678487420082,
- -1.007123273666366e-8,
- 0.07582978904247284,
- 0.029881902039051056,
- -0.05287802591919899,
- 0.04755069687962532,
- -0.02182009629905224,
- 0.035098325461149216,
- 0.02001272514462471,
- 0.03499394655227661,
- 0.04508999362587929,
- 0.0111711286008358,
- -0.055906761437654495,
- 0.02245444618165493,
- 0.017914464697241783,
- 0.0009374584187753499,
- -0.009714576415717602,
- -0.008955568075180054,
- 0.015025335364043713,
- 0.017063666135072708,
- -0.04952487722039223,
- -0.01545759104192257,
- 0.02078000083565712,
- 0.0672081857919693,
- -0.0055595277808606625,
- 0.009979287162423134,
- -0.034112598747015,
- 0.031163226813077927,
- -0.0024767715949565172,
- 0.11481349915266037,
- 0.046310294419527054,
- 0.029701195657253265,
- 0.02825000509619713,
- 0.00220271828584373,
- -0.07263967394828796,
- -0.03606672212481499,
- -0.07704183459281921,
- -0.01593327336013317,
- 0.027059083804488182,
- 0.022330446168780327,
- -0.026556624099612236,
- 0.07628045976161957,
- -0.02369188331067562,
- 0.02165262959897518,
- 0.04748706892132759,
- 0.05242545157670975,
- -0.0005717494641430676,
- 0.08112645149230957,
- 0.019426608458161354,
- 0.08008885383605957,
- 0.01253201812505722,
- -0.005097970366477966,
- -0.008236206136643887,
- 0.041448771953582764,
- 0.008841617032885551,
- 0.08222043514251709,
- 0.052247222512960434,
- 0.0310532134026289,
- -0.007659596856683493,
- 0.006255601532757282,
- -0.006598384119570255,
- 0.09202335774898529,
- 0.0013192823389545083,
- 0.006899566855281591,
- 0.021890439093112946,
- 0.08631672710180283
- ]
- },
- {
- "keyword": "inland",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- 0.1113116517663002,
- 0.003602143144235015,
- 0.04411527141928673,
- 0.06824708729982376,
- 0.007885701954364777,
- -0.047262147068977356,
- 0.013559126295149326,
- -0.061028093099594116,
- -0.07225897908210754,
- -0.009975732304155827,
- 0.051042698323726654,
- -0.18296976387500763,
- -0.00690864073112607,
- 0.03602773696184158,
- 0.047722216695547104,
- 0.03156667202711105,
- -0.019982295110821724,
- -0.07888907194137573,
- 0.03782467916607857,
- -0.0027181636542081833,
- -0.07993368059396744,
- 0.07962449640035629,
- -0.045894965529441833,
- -0.009172513149678707,
- 0.06179744750261307,
- 0.0029220585711300373,
- 0.026851888746023178,
- 0.05416874215006828,
- 0.03561878576874733,
- -0.09697239845991135,
- -0.03371092677116394,
- 0.05626561492681503,
- 0.008856271393597126,
- -0.004933611955493689,
- 0.04805279150605202,
- 0.062213700264692307,
- -0.004492796026170254,
- -0.030555158853530884,
- -0.030862871557474136,
- 0.0025883163325488567,
- -0.01850132830440998,
- 0.013996937312185764,
- 0.04469607025384903,
- -0.015642058104276657,
- -0.03215818852186203,
- 0.01036856509745121,
- -0.0009947362123057246,
- 0.016773458570241928,
- 0.0636957436800003,
- -0.00530381640419364,
- 0.04694919288158417,
- 0.021867670118808746,
- -0.03494977951049805,
- -0.03356001526117325,
- -0.012885290198028088,
- -0.028686601668596268,
- 0.02625059150159359,
- 0.002354179974645376,
- -0.017396874725818634,
- 0.008018563501536846,
- 0.05037391930818558,
- 0.03206237033009529,
- -0.0591156929731369,
- -0.03406767174601555,
- 0.07961557805538177,
- 0.01691528782248497,
- -0.08826207369565964,
- 0.018129214644432068,
- -0.02293303795158863,
- -0.1797211766242981,
- 0.008224185556173325,
- -0.01532595045864582,
- -0.010502862744033337,
- 0.010428855195641518,
- -0.020416876301169395,
- -0.06869978457689285,
- -0.02227325551211834,
- 0.04687255993485451,
- 0.01560168992727995,
- -0.050373829901218414,
- 0.010743492282927036,
- -0.004801901988685131,
- -0.028866302222013474,
- -0.03963073343038559,
- 0.02425932139158249,
- -0.019401375204324722,
- 0.013497907668352127,
- -0.014839469455182552,
- 0.04123008996248245,
- 0.023206647485494614,
- 0.02392357401549816,
- 0.016388555988669395,
- -0.013291831128299236,
- 0.01533668115735054,
- -0.07198063284158707,
- 0.016456149518489838,
- 0.016249436885118484,
- -0.025945166125893593,
- -0.008062828332185745,
- 0.18430544435977936,
- 0.025249870494008064,
- 0.04981797933578491,
- -0.05921192839741707,
- -0.019088171422481537,
- -0.030077435076236725,
- -0.03212955594062805,
- -0.04419725388288498,
- 0.005454357247799635,
- 0.012292676605284214,
- -0.0018223687075078487,
- -0.02780229039490223,
- -0.008560230024158955,
- -0.08767807483673096,
- 0.0173779409378767,
- -0.010386647656559944,
- 0.08466755598783493,
- 0.016418831422924995,
- -0.03643086925148964,
- 0.009030439890921116,
- -0.09461367130279541,
- -0.0760166272521019,
- -0.027351709082722664,
- -0.024324387311935425,
- 0.01991160772740841,
- 0.0025773942470550537,
- -0.015321657992899418,
- -0.020033054053783417,
- -4.6125784865152226e-33,
- 0.040772031992673874,
- -0.04901833087205887,
- 0.027567777782678604,
- 0.05852484703063965,
- 0.05435746908187866,
- -0.02727254293859005,
- 0.04862532019615173,
- -0.08776603639125824,
- -0.05941421538591385,
- -0.06936611235141754,
- 0.006280682049691677,
- 0.03770038112998009,
- -0.056043557822704315,
- 0.0021053547970950603,
- 0.09652163088321686,
- 0.016719410195946693,
- -0.019975539296865463,
- -0.023793412372469902,
- -0.08230649679899216,
- -0.01584029383957386,
- 0.009492173790931702,
- 0.026915984228253365,
- -0.023866981267929077,
- -0.015010950155556202,
- -0.05072270333766937,
- -0.013681122101843357,
- 0.0021070868242532015,
- -0.021062299609184265,
- 0.05161168426275253,
- 0.05262444540858269,
- -0.02668709121644497,
- 0.00447013508528471,
- 0.04305178299546242,
- 0.006620700005441904,
- 0.026220668107271194,
- 0.04945759102702141,
- -0.040340300649404526,
- -0.04737554118037224,
- -0.005708192940801382,
- 0.08927355706691742,
- 0.030119331553578377,
- -0.012264550663530827,
- 0.054169438779354095,
- 0.022543206810951233,
- 0.014654609374701977,
- -0.0379190556704998,
- 0.02850930020213127,
- 0.0165997426956892,
- 0.028419604524970055,
- 0.005235603544861078,
- -0.06908974051475525,
- 0.013194706290960312,
- -0.06758315861225128,
- -0.05611182749271393,
- -0.014265591278672218,
- -0.021648529917001724,
- 0.0061140963807702065,
- 0.04201023280620575,
- 0.04021428897976875,
- 0.041277576237916946,
- 0.04584100469946861,
- 0.12180550396442413,
- 0.009744004346430302,
- -0.06309062242507935,
- 0.0037187591660767794,
- -0.046682268381118774,
- 0.03589451685547829,
- 0.06488974392414093,
- 0.015112067572772503,
- -0.04394766315817833,
- 0.02814626321196556,
- 0.014712754637002945,
- 0.1351800113916397,
- 0.07731171697378159,
- -0.0027662115171551704,
- 0.002520294627174735,
- -0.03364453464746475,
- 0.029816098511219025,
- 0.01631551794707775,
- 0.03963629528880119,
- -0.14160653948783875,
- 0.05463065579533577,
- -0.09591954201459885,
- 0.08966724574565887,
- 0.029055364429950714,
- -0.00012551587133202702,
- 0.016530482098460197,
- -0.017193922773003578,
- 0.015657395124435425,
- 0.0075967516750097275,
- -0.11443781852722168,
- -0.000846884329803288,
- 0.060392946004867554,
- -0.0971786230802536,
- -0.04204881563782692,
- 3.3231019586234674e-33,
- 0.08043774217367172,
- -0.07416058331727982,
- 0.024997761473059654,
- -0.004993842449039221,
- -0.04655924811959267,
- -0.01953853853046894,
- 0.07365676760673523,
- 0.08247582614421844,
- -0.03669712319970131,
- -0.03573336824774742,
- -0.16224707663059235,
- 0.014358368702232838,
- 0.14643174409866333,
- -0.013315062038600445,
- 0.08236078917980194,
- 0.08204840868711472,
- 0.0775037407875061,
- 0.1077883169054985,
- -0.017119742929935455,
- 0.002757323207333684,
- -0.019656293094158173,
- -0.08562811464071274,
- 0.0025403392501175404,
- 0.09920364618301392,
- -0.036310985684394836,
- 0.05433844029903412,
- 0.024653499945998192,
- -0.04604455456137657,
- -0.09871158748865128,
- -0.06408144533634186,
- -0.030272843316197395,
- 0.012478736229240894,
- -0.036522869020700455,
- 0.0539577379822731,
- -0.16955511271953583,
- 0.0010444748913869262,
- 0.04843674227595329,
- -0.05436847358942032,
- -0.024842236191034317,
- 0.05740371719002724,
- 0.02339489571750164,
- -0.05503973737359047,
- 0.012668676674365997,
- 0.09712426364421844,
- 0.0019912514835596085,
- -0.0003302929981146008,
- -0.027397742494940758,
- 0.0427132174372673,
- -0.019756900146603584,
- 0.06065404415130615,
- 0.04917444288730621,
- 0.03362805396318436,
- -0.002493719570338726,
- 0.08721240609884262,
- -0.01747134141623974,
- -0.0861615315079689,
- -0.03504127264022827,
- 0.08264461904764175,
- -0.09347426146268845,
- 0.005023965146392584,
- -0.028426015749573708,
- 0.08509786427021027,
- -0.06707745045423508,
- 0.038319021463394165,
- -0.013859196566045284,
- 0.05789580196142197,
- 0.010301902890205383,
- -0.005585363134741783,
- 0.014130176976323128,
- -0.05621742457151413,
- 0.018719982355833054,
- -0.029517699033021927,
- -0.09179259091615677,
- -0.011443167924880981,
- 0.009153812192380428,
- 0.004801393020898104,
- 0.002630326198413968,
- 0.008471564389765263,
- 0.030775580555200577,
- 0.008064577355980873,
- -0.014235176146030426,
- -0.031635113060474396,
- -0.06637586653232574,
- 0.04529976099729538,
- 0.01975388266146183,
- 0.0048205116763710976,
- -0.03531289100646973,
- -0.09446687996387482,
- 0.0758378803730011,
- -0.02353738062083721,
- -0.01405616570264101,
- 0.009268057532608509,
- -0.11611190438270569,
- -0.05977741628885269,
- -0.022712308913469315,
- -1.0736301625513534e-8,
- 0.07045930624008179,
- 0.005982621572911739,
- -0.04195965453982353,
- 0.04860982671380043,
- -0.02993330918252468,
- 0.024001356214284897,
- 0.012808674946427345,
- 0.11203473806381226,
- 0.010356005281209946,
- 0.026857823133468628,
- 0.012261672876775265,
- -0.03547460213303566,
- 0.05298981815576553,
- -0.04601244255900383,
- 0.006285069976001978,
- -0.01847369410097599,
- 0.05165967345237732,
- 0.08492597937583923,
- -0.04409468173980713,
- -0.002433179644867778,
- -0.01889675483107567,
- 0.05720965564250946,
- 0.004034452140331268,
- 0.09100127220153809,
- -0.02518812008202076,
- 0.040873054414987564,
- -0.0005833748145960271,
- 0.0350179485976696,
- 0.06737586110830307,
- 0.012291212566196918,
- 0.016469381749629974,
- 0.04832188040018082,
- -0.08007384091615677,
- -0.0076658944599330425,
- 0.012047819793224335,
- -0.02199428156018257,
- 0.031650200486183167,
- -0.011295920237898827,
- -0.06157277151942253,
- -0.009293301030993462,
- -0.005336961708962917,
- -0.03951834887266159,
- -0.02874518185853958,
- -0.03382694721221924,
- 0.02715589478611946,
- -0.0037450084928423166,
- -0.07136016339063644,
- 0.023049119859933853,
- -0.00459262216463685,
- -0.003439344698563218,
- -0.016721490770578384,
- -0.008951151743531227,
- 0.0023075828794389963,
- 0.13082820177078247,
- 0.00594314793124795,
- -0.004407643806189299,
- -0.014390230178833008,
- -0.0620880126953125,
- -0.05465087294578552,
- 0.10911110788583755,
- 0.10919595509767532,
- -0.011372035369277,
- 0.024671237915754318,
- 0.0646737664937973
- ]
- },
- {
- "keyword": "urban",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- 0.10196158289909363,
- 0.037109874188899994,
- 0.027944665402173996,
- 0.057980794459581375,
- -0.037520136684179306,
- 0.0030414946377277374,
- 0.06072134152054787,
- -0.052909255027770996,
- -0.036500778049230576,
- 0.016601871699094772,
- 0.06690891832113266,
- -0.1083163172006607,
- -0.023524656891822815,
- 0.02608650177717209,
- -0.002821630332618952,
- 0.015074746683239937,
- 0.03780589997768402,
- -0.015345421619713306,
- 0.009016833268105984,
- -0.03516610711812973,
- -0.10254300385713577,
- 0.05434570834040642,
- 0.030398143455386162,
- 0.048736780881881714,
- 0.004253085236996412,
- 0.10297522693872452,
- 0.007728765718638897,
- 0.06997805833816528,
- -0.034809861332178116,
- -0.07212845236063004,
- 0.012257584370672703,
- 0.0784875676035881,
- 0.07688473165035248,
- -0.04593728482723236,
- 0.004225387703627348,
- 0.015796029940247536,
- -0.048090290278196335,
- 0.03802364319562912,
- 0.005383473355323076,
- -0.0012872150400653481,
- 0.03711331635713577,
- -0.1086653396487236,
- -0.01934477873146534,
- -0.06098585203289986,
- 0.0026827510446310043,
- -0.01640763320028782,
- 0.04495939984917641,
- 0.02897370606660843,
- 0.05810367316007614,
- -0.04556984826922417,
- 0.03179529309272766,
- -0.003331861924380064,
- -0.008732900954782963,
- 0.022165358066558838,
- -0.05684589967131615,
- -0.005373100750148296,
- -0.025036858394742012,
- 0.06286485493183136,
- 0.031428225338459015,
- -0.04237411916255951,
- 0.05246833339333534,
- 0.021612498909235,
- -0.11709537357091904,
- 0.04887827858328819,
- 0.07498958706855774,
- 0.018348613753914833,
- -0.004412238020449877,
- 0.04831206426024437,
- 0.01592095196247101,
- -0.08706529438495636,
- 0.03421880677342415,
- -0.0417826771736145,
- 0.03977513313293457,
- 0.021460341289639473,
- 0.060969892889261246,
- -0.03021618165075779,
- -0.018725058063864708,
- -0.05314522609114647,
- 0.05397065356373787,
- -0.013334622606635094,
- 0.0451098307967186,
- 0.0017649410292506218,
- -0.04992717131972313,
- 0.05267856642603874,
- -0.03932476416230202,
- 0.020122546702623367,
- 0.003458501072600484,
- 0.033174507319927216,
- -0.028042197227478027,
- -0.020395886152982712,
- -0.04622079059481621,
- 0.055963363498449326,
- -0.046748559921979904,
- 0.016806110739707947,
- -0.10227508842945099,
- -0.0021152577828615904,
- -0.03866729885339737,
- -0.05568394437432289,
- -0.04015033692121506,
- 0.23133912682533264,
- -0.0631783977150917,
- 0.009286259301006794,
- 0.0024315647315233946,
- 0.05584654584527016,
- 0.050361260771751404,
- -0.09938152134418488,
- -0.007804743014276028,
- 0.030658433213829994,
- -0.056721512228250504,
- 0.026393592357635498,
- 0.006858706474304199,
- -0.011113794520497322,
- -0.04095016419887543,
- -0.0374433733522892,
- -0.006414314731955528,
- 0.03956807404756546,
- 0.04431735351681709,
- 0.011286528781056404,
- -0.02879810705780983,
- -0.019776899367570877,
- -0.04450027644634247,
- -0.0316312201321125,
- -0.07375285774469376,
- 0.03073740564286709,
- -0.04070032387971878,
- -0.06660827994346619,
- 0.034010667353868484,
- -5.267881322268123e-33,
- 0.03741922974586487,
- -0.07646328210830688,
- 0.05596339702606201,
- 0.058956727385520935,
- 0.01583479903638363,
- -0.03682703897356987,
- -0.0013052019057795405,
- -0.04174766689538956,
- -0.03326186537742615,
- 0.017449934035539627,
- 0.03432660177350044,
- -0.05734292417764664,
- -0.010346191003918648,
- 0.022507887333631516,
- 0.17243970930576324,
- 0.09747830033302307,
- 0.03604148328304291,
- -0.0013906206004321575,
- -0.0642651915550232,
- 0.02192099764943123,
- -0.03734847903251648,
- 0.07309441268444061,
- -0.04134029522538185,
- -0.02655160054564476,
- -0.04249143227934837,
- -0.03736397624015808,
- 0.007810835260897875,
- -0.01616539992392063,
- 0.05520327761769295,
- 0.014018717221915722,
- -0.0077030290849506855,
- 0.11131245642900467,
- 0.04939660802483559,
- 0.024357998743653297,
- 0.05080597102642059,
- 0.05533056706190109,
- -0.02459299936890602,
- -0.0490616150200367,
- -0.04442255571484566,
- 0.008943736553192139,
- -0.05055978149175644,
- -0.008390402421355247,
- -0.03813106566667557,
- 0.02216302417218685,
- 0.046094536781311035,
- 0.05364423990249634,
- -0.05020894110202789,
- -0.018854113295674324,
- 0.008251545950770378,
- -0.00583555456250906,
- 0.049573592841625214,
- 0.0018749266164377332,
- -0.14712783694267273,
- 0.04904613643884659,
- -0.015643354505300522,
- 0.02476629614830017,
- -0.018750328570604324,
- -0.017558088526129723,
- 0.06630463898181915,
- 0.04616837203502655,
- 0.006588294170796871,
- 0.12784422934055328,
- -0.03363190218806267,
- 0.0014744673389941454,
- 0.020782100036740303,
- -0.08565793931484222,
- 0.03686687722802162,
- 0.022773396223783493,
- 0.0760885626077652,
- 0.04893555864691734,
- -0.0006543367635458708,
- 0.003854090115055442,
- 0.13348917663097382,
- 0.055301912128925323,
- 0.033844009041786194,
- 0.0061689321883022785,
- -0.03185173124074936,
- 0.06252701580524445,
- -0.05864311382174492,
- 0.03417566046118736,
- -0.015365484170615673,
- -0.02119245007634163,
- -0.0652323067188263,
- 0.05006828531622887,
- 0.12013405561447144,
- 0.016409780830144882,
- -0.022831792011857033,
- -0.08053245395421982,
- 0.0511883944272995,
- 0.005598390940576792,
- -0.1400057077407837,
- -0.031113259494304657,
- -0.013571914285421371,
- 0.024783538654446602,
- -0.035488761961460114,
- 4.014918587648785e-33,
- 0.0013953008456155658,
- -0.0643736720085144,
- 0.009755957871675491,
- 0.08329363912343979,
- -0.04471626132726669,
- 0.0051951282657682896,
- -0.02637288346886635,
- -0.004258468747138977,
- 0.02031911350786686,
- 0.05593075975775719,
- -0.11455165594816208,
- -0.029734928160905838,
- 0.12995529174804688,
- 0.024005703628063202,
- 0.09860921651124954,
- 0.04109616205096245,
- 0.0661935806274414,
- -0.03061799891293049,
- -0.054674845188856125,
- 0.06884132325649261,
- -0.003286699764430523,
- -0.09132517874240875,
- -0.10001112520694733,
- -0.019886868074536324,
- -0.0767245814204216,
- 0.015126640908420086,
- -0.07444798201322556,
- 0.04561334475874901,
- -0.01793619431555271,
- -0.021313372999429703,
- -0.02225378341972828,
- -0.005054908338934183,
- -0.03651566803455353,
- 0.031770892441272736,
- -0.04005170986056328,
- 0.12277545034885406,
- 0.03493819758296013,
- -0.025569697842001915,
- -0.012266050092875957,
- -0.03293536603450775,
- -0.017940647900104523,
- -0.030212434008717537,
- -0.029438354074954987,
- 0.1006074845790863,
- 0.021909145638346672,
- 0.001144146197475493,
- -0.08123309910297394,
- -0.0002750306448433548,
- -0.04581931605935097,
- -0.023550141602754593,
- 0.012069511227309704,
- 0.02100788988173008,
- -0.0480942465364933,
- -0.0066186608746647835,
- -0.010736198164522648,
- 0.05530727282166481,
- -0.002018384402617812,
- 0.02767970785498619,
- -0.07405736297369003,
- -0.0036860331892967224,
- 0.0460992269217968,
- -0.029884427785873413,
- -0.04695252701640129,
- 0.08464904129505157,
- -0.07342986017465591,
- 0.0180711280554533,
- 0.03199424967169762,
- -0.021302606910467148,
- -0.021775783970952034,
- -0.015435077250003815,
- 0.044389039278030396,
- 0.03932219371199608,
- -0.11745432019233704,
- 0.005484751891344786,
- -0.07248706370592117,
- -0.03993571922183037,
- 0.03980535268783569,
- 0.08856535702943802,
- 0.052444230765104294,
- -0.0027901283465325832,
- 0.040106043219566345,
- -0.003325425088405609,
- -0.09046833962202072,
- 0.08409726619720459,
- 0.014755797572433949,
- 0.03779411315917969,
- 0.004871303215622902,
- 0.02383521758019924,
- 0.016045911237597466,
- 0.008641349151730537,
- 0.01924649439752102,
- 0.06004885956645012,
- -0.11693686991930008,
- -0.04073518142104149,
- -0.061057548969984055,
- -1.1754920592466078e-8,
- -0.005491025745868683,
- 0.05487688258290291,
- -0.10472290962934494,
- 0.007300936616957188,
- 0.04851365089416504,
- 0.04634992778301239,
- 0.021279413253068924,
- 0.07383476942777634,
- -0.0003615283058024943,
- 0.06477627158164978,
- -0.0072622657753527164,
- 0.015452388674020767,
- 0.021351026371121407,
- 0.02459878847002983,
- -0.06949592381715775,
- -0.016403689980506897,
- 0.04752710461616516,
- -0.05264682695269585,
- -0.02542547695338726,
- 0.050007302314043045,
- 0.020379040390253067,
- 0.006253160070627928,
- -0.0270068496465683,
- 0.021019509062170982,
- -0.004165391903370619,
- -0.09154926240444183,
- -0.027241719886660576,
- 0.0542568564414978,
- 0.009414480067789555,
- 0.02998003177344799,
- -0.0032398258335888386,
- 0.036224741488695145,
- -0.03560594096779823,
- -0.012546427547931671,
- 0.014314196072518826,
- -0.048098620027303696,
- 0.04554444178938866,
- 0.019398851320147514,
- -0.0024874780792742968,
- -0.10488200932741165,
- -0.011202153749763966,
- -0.05063663050532341,
- 0.04800329729914665,
- -0.04050850123167038,
- 0.022863710299134254,
- -0.03491725027561188,
- 0.04705144092440605,
- -0.047944195568561554,
- 0.0062060109339654446,
- -0.0004954863688908517,
- -0.08132511377334595,
- 0.007645434699952602,
- -0.0011743512004613876,
- 0.06623639911413193,
- 0.07542887330055237,
- -0.08469458669424057,
- -0.015492054633796215,
- -0.0002705698716454208,
- -0.05675647780299187,
- -0.021800095215439796,
- 0.07082522660493851,
- 0.02015610970556736,
- -0.040629517287015915,
- 0.041220635175704956
- ]
- },
- {
- "keyword": "rural",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- 0.07967474311590195,
- -0.02015269361436367,
- 0.006609784439206123,
- 0.0733853280544281,
- 0.04292893409729004,
- 0.009356953203678131,
- 0.019968781620264053,
- 0.00009144163050223142,
- -0.034538354724645615,
- -0.009044338949024677,
- 0.13231641054153442,
- -0.016068827360868454,
- 0.032539404928684235,
- 0.027605727314949036,
- 0.03324999287724495,
- -0.007812126073986292,
- 0.04429824277758598,
- -0.04110680893063545,
- 0.010743921622633934,
- -0.05677355080842972,
- -0.14526881277561188,
- 0.07066193222999573,
- -0.005598030984401703,
- 0.06187890097498894,
- 0.12228652089834213,
- 0.043939799070358276,
- 0.017373178154230118,
- 0.021038763225078583,
- -0.052711453288793564,
- -0.04670434817671776,
- -0.03747737035155296,
- 0.14951662719249725,
- -0.0005236135912127793,
- -0.005913921631872654,
- -0.000815143808722496,
- 0.07640552520751953,
- -0.008898607455193996,
- 0.04380962997674942,
- 0.06516684591770172,
- -0.03717196360230446,
- 0.01824534870684147,
- -0.07700953632593155,
- 0.11682365089654922,
- -0.08026094734668732,
- 0.031062684953212738,
- -0.04455544427037239,
- -0.03679855167865753,
- -0.0036812778562307358,
- 0.013545653782784939,
- -0.032115813344717026,
- 0.030827883630990982,
- -0.01813836209475994,
- -0.04493389651179314,
- 0.00767575204372406,
- 0.012005602940917015,
- -0.04530813544988632,
- 0.0020730281248688698,
- 0.04363773390650749,
- -0.01273626834154129,
- 0.032197605818510056,
- 0.033112868666648865,
- -0.019727522507309914,
- -0.048990387469530106,
- 0.0075544496066868305,
- 0.001851767534390092,
- 0.03682447597384453,
- -0.01402268186211586,
- 0.00917750783264637,
- -0.026935027912259102,
- -0.14880794286727905,
- 0.005534651223570108,
- -0.06932878494262695,
- -0.04838953912258148,
- 0.014926213771104813,
- -0.04312165826559067,
- -0.08073399215936661,
- -0.003547136904671788,
- 0.043306536972522736,
- 0.05543527007102966,
- -0.05532412603497505,
- 0.0032208769116550684,
- 0.023244274780154228,
- -0.00769464485347271,
- 0.002655721502378583,
- -0.030322620645165443,
- -0.007300999481230974,
- 0.04823146015405655,
- 0.002138052601367235,
- 0.0364057756960392,
- -0.03882605955004692,
- -0.04932602122426033,
- 0.04125412553548813,
- -0.02448030188679695,
- 0.03094431199133396,
- -0.09318090230226517,
- -0.056861914694309235,
- 0.016993597149848938,
- -0.05133878439664841,
- -0.07916352897882462,
- 0.23271168768405914,
- -0.02348615974187851,
- -0.017346687614917755,
- 0.012535285204648972,
- -0.04914725944399834,
- -0.00009487853822065517,
- -0.039099618792533875,
- -0.019232463091611862,
- 0.009580818936228752,
- -0.0058242157101631165,
- 0.019214952364563942,
- -0.05768899992108345,
- 0.058978158980607986,
- -0.08844996243715286,
- 0.028695791959762573,
- -0.007960321381688118,
- -0.019601836800575256,
- 0.10568051785230637,
- -0.01651124283671379,
- -0.036473605781793594,
- 0.04423689842224121,
- -0.042192403227090836,
- 0.007545542903244495,
- -0.06266658008098602,
- 0.015771206468343735,
- 0.019851114600896835,
- -0.047841064631938934,
- -0.006783793214708567,
- -4.330485188914813e-33,
- 0.054832469671964645,
- -0.025097273290157318,
- -0.02774670347571373,
- 0.08318064361810684,
- 0.04093104600906372,
- 0.0061218529008328915,
- -0.021126436069607735,
- -0.05866045504808426,
- -0.03663491830229759,
- -0.07847122848033905,
- 0.04959459975361824,
- 0.009122826159000397,
- 0.002120070392265916,
- -0.01462438702583313,
- 0.0859149619936943,
- -0.024589695036411285,
- -0.02222544699907303,
- -0.04642423614859581,
- 0.05849190801382065,
- 0.022745471447706223,
- -0.059350840747356415,
- 0.06536652147769928,
- -0.02985111065208912,
- 0.0670091062784195,
- -0.011652789078652859,
- -0.06788606196641922,
- 0.0468716137111187,
- -0.0384712852537632,
- 0.04223187640309334,
- 0.014156247489154339,
- 0.041087035089731216,
- 0.019324420019984245,
- 0.004909966606646776,
- -0.0669073835015297,
- 0.020739445462822914,
- -0.04693315178155899,
- 0.003599883057177067,
- -0.07069903612136841,
- -0.020447872579097748,
- 0.09246040880680084,
- -0.08471113443374634,
- -0.006454582791775465,
- -0.007659576833248138,
- -0.005018905736505985,
- 0.05436206981539726,
- 0.06733819842338562,
- 0.031057704240083694,
- 0.04471670091152191,
- -0.05139591917395592,
- 0.0317927785217762,
- -0.06482243537902832,
- 0.0028772142250090837,
- -0.02908223308622837,
- 0.015023068524897099,
- 0.04105071723461151,
- -0.011030210182070732,
- 0.008426563814282417,
- 0.003382102120667696,
- 0.0334424264729023,
- -0.027602234855294228,
- 0.05632307007908821,
- 0.07379723340272903,
- -0.04574652761220932,
- -0.11623196303844452,
- 0.005418932996690273,
- -0.04652699455618858,
- -0.005732811521738768,
- 0.02798481471836567,
- 0.05224326252937317,
- -0.012763815000653267,
- 0.08979567140340805,
- 0.004907625261694193,
- 0.02967478334903717,
- 0.15006670355796814,
- 0.0009020246216095984,
- -0.005574282258749008,
- -0.01212587021291256,
- 0.027826683595776558,
- -0.009045390412211418,
- -0.020171014592051506,
- 0.043207403272390366,
- -0.02591126039624214,
- -0.06640933454036713,
- 0.08894596993923187,
- 0.048027295619249344,
- 0.014782914891839027,
- -0.02996004931628704,
- -0.047378525137901306,
- 0.026521580293774605,
- -0.018187498673796654,
- -0.10189522802829742,
- 0.018103595823049545,
- -0.0002106373431161046,
- -0.003672783961519599,
- 0.02284727618098259,
- 3.668675257246142e-33,
- 0.002579256659373641,
- 0.00998229905962944,
- -0.0310781579464674,
- 0.13038146495819092,
- 0.06770963221788406,
- -0.075347401201725,
- 0.053231947124004364,
- -0.06314793974161148,
- 0.09234938025474548,
- 0.1169525608420372,
- -0.1459464579820633,
- -0.020469939336180687,
- 0.05361316725611687,
- 0.03963310644030571,
- 0.017575247213244438,
- 0.02247139811515808,
- 0.037071213126182556,
- 0.029741039499640465,
- 0.019107026979327202,
- 0.01409891713410616,
- -0.00890510343015194,
- -0.0854540541768074,
- -0.019182270392775536,
- 0.005578690208494663,
- 0.003657417604699731,
- 0.11405418813228607,
- -0.1946091502904892,
- 0.04761173203587532,
- -0.12558473646640778,
- -0.05171855539083481,
- -0.03233754634857178,
- -0.014965376816689968,
- -0.0038275476545095444,
- -0.03978632017970085,
- -0.06876608729362488,
- 0.07016868889331818,
- -0.03581138327717781,
- 0.02547740750014782,
- -0.06798754632472992,
- -0.059603478759527206,
- 0.052488163113594055,
- -0.05107210576534271,
- -0.016892269253730774,
- 0.0805087462067604,
- -0.02033179998397827,
- -0.0374113991856575,
- 0.040297526866197586,
- 0.017271321266889572,
- -0.03627471625804901,
- 0.021587546914815903,
- -0.02960318513214588,
- 0.09921668469905853,
- 0.061045657843351364,
- 0.023361191153526306,
- -0.05126478523015976,
- -0.06041719391942024,
- 0.0447855107486248,
- 0.05421094968914986,
- -0.07647102326154709,
- 0.03444899618625641,
- 0.05288177728652954,
- -0.030114933848381042,
- -0.01912000961601734,
- 0.09948525577783585,
- -0.0167621411383152,
- -0.021170489490032196,
- 0.0013234353391453624,
- -0.029364684596657753,
- -0.02118925005197525,
- 0.010067692026495934,
- -0.020900683477520943,
- -0.019625894725322723,
- -0.020075781270861626,
- -0.07500101625919342,
- -0.04787832871079445,
- 0.07084116339683533,
- -0.009037090465426445,
- 0.054381243884563446,
- 0.0017348147230222821,
- -0.03086695447564125,
- 0.04419928044080734,
- -0.10741513222455978,
- 0.008293837308883667,
- -0.01737816073000431,
- 0.010147150605916977,
- 0.048502661287784576,
- -0.004495738539844751,
- -0.06415148824453354,
- 0.04126596450805664,
- -0.020799752324819565,
- -0.07261240482330322,
- -0.04116057604551315,
- -0.04279324412345886,
- 0.029274648055434227,
- -0.010019877925515175,
- -1.2021690309893529e-8,
- 0.051976095885038376,
- -0.006573423743247986,
- -0.023073645308613777,
- 0.008441298268735409,
- 0.05649290978908539,
- 0.03143824636936188,
- 0.044179536402225494,
- 0.05808555707335472,
- 0.021192343905568123,
- 0.11457657068967819,
- -0.08953443169593811,
- 0.039660580456256866,
- 0.003380752634257078,
- 0.05371006205677986,
- 0.04800112172961235,
- 0.019297325983643532,
- 0.029154252260923386,
- -0.004886407870799303,
- -0.0519932359457016,
- 0.05544145405292511,
- 0.04904956743121147,
- -0.05534282699227333,
- -0.04728616401553154,
- 0.04971402511000633,
- -0.019762355834245682,
- -0.01188726257532835,
- 0.008751288056373596,
- 0.07396663725376129,
- 0.0547923818230629,
- 0.01306921523064375,
- -0.0001634628133615479,
- 0.03575379401445389,
- -0.07228432595729828,
- -0.035301707684993744,
- -0.10133203119039536,
- -0.026413895189762115,
- 0.0006797328242100775,
- 0.058909401297569275,
- 0.01840752549469471,
- -0.04430077597498894,
- -0.040000271052122116,
- -0.039627451449632645,
- 0.03128626197576523,
- -0.024973729625344276,
- 0.002775192027911544,
- -0.05021023377776146,
- 0.02785012684762478,
- 0.011228207498788834,
- 0.005752602592110634,
- 0.025907082483172417,
- -0.05310653895139694,
- -0.018719272688031197,
- -0.02544490061700344,
- 0.05136435478925705,
- 0.03628211468458176,
- -0.05299883335828781,
- 0.07538819313049316,
- 0.00026286341017112136,
- -0.003977463115006685,
- -0.02387312985956669,
- -0.032828379422426224,
- 0.005193015094846487,
- 0.0063656712882220745,
- -0.01956089958548546
- ]
- },
- {
- "keyword": "remote",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- -0.02690715156495571,
- -0.028861692175269127,
- -0.009837206453084946,
- -0.0032589458860456944,
- -0.052274059504270554,
- 0.0051595233380794525,
- 0.058758724480867386,
- 0.0321066714823246,
- 0.09501980245113373,
- 0.08688296377658844,
- 0.004585993010550737,
- 0.020203817635774612,
- -0.015223456546664238,
- -0.002000002423301339,
- 0.0638975128531456,
- -0.044708363711833954,
- 0.09310922771692276,
- -0.026535622775554657,
- -0.10453573614358902,
- -0.024550529196858406,
- -0.09426379203796387,
- 0.030960682779550552,
- -0.04686636105179787,
- -0.019738612696528435,
- 0.009632539935410023,
- -0.052116334438323975,
- 0.0240725576877594,
- 0.0009982138872146606,
- -0.0023671346716582775,
- -0.10851652920246124,
- -0.02759428508579731,
- -0.005004683043807745,
- -0.02955928072333336,
- 0.006042789667844772,
- -0.028339777141809464,
- -0.005389482714235783,
- 0.025377890095114708,
- 0.02259470708668232,
- 0.026598932221531868,
- -0.032271333038806915,
- 0.02133759669959545,
- -0.1524907946586609,
- 0.019129376858472824,
- -0.013864817097783089,
- -0.030312879011034966,
- 0.02354535087943077,
- 0.0053214686922729015,
- 0.0055127618834376335,
- 0.0554562583565712,
- -0.004442151170223951,
- -0.10713827610015869,
- -0.0201953686773777,
- 0.04341781884431839,
- 0.07583300769329071,
- 0.007374086417257786,
- 0.052160438150167465,
- 0.030683793127536774,
- 0.009264073334634304,
- 0.0441863089799881,
- 0.0680617094039917,
- 0.02510427124798298,
- -0.0042013972997665405,
- -0.020535467192530632,
- 0.0062906378880143166,
- 0.026672065258026123,
- 0.019390376284718513,
- -0.0047502052038908005,
- -0.028577176854014397,
- 0.020557690411806107,
- -0.04479444772005081,
- -0.03012934699654579,
- 0.021274400874972343,
- 0.029466094449162483,
- -0.007341298274695873,
- -0.01796671189367771,
- -0.059175800532102585,
- 0.05116114765405655,
- -0.06590985506772995,
- 0.0816069021821022,
- -0.008996551856398582,
- -0.02899985760450363,
- -0.08555471897125244,
- -0.09520366042852402,
- 0.019139233976602554,
- 0.013123385608196259,
- -0.002070209477096796,
- 0.07657457143068314,
- 0.015945814549922943,
- -0.0010476273018866777,
- 0.03742272034287453,
- -0.10059773921966553,
- -0.009180741384625435,
- 0.03355482220649719,
- -0.011024881154298782,
- -0.10441680252552032,
- -0.004723934456706047,
- 0.048809513449668884,
- -0.09030462801456451,
- -0.08065184205770493,
- 0.21713456511497498,
- 0.03696059435606003,
- 0.04608204588294029,
- -0.050976499915122986,
- -0.03708577901124954,
- -0.0019279310945421457,
- -0.03217984735965729,
- -0.013658828102052212,
- 0.061233773827552795,
- 0.06931732594966888,
- -0.006151537876576185,
- -0.07536924630403519,
- -0.015383808873593807,
- -0.043878715485334396,
- 0.014464630745351315,
- -0.02002011053264141,
- -0.04188275709748268,
- -0.0020919563248753548,
- 0.03673939034342766,
- 0.06420106440782547,
- -0.06408087909221649,
- 0.07372414320707321,
- -0.03299747034907341,
- -0.010870600119233131,
- 0.027307163923978806,
- 0.005643446929752827,
- -0.13915780186653137,
- 0.09553911536931992,
- -4.487559152175503e-33,
- 0.0063112713396549225,
- 0.02692410722374916,
- 0.0072770873084664345,
- 0.019331950694322586,
- 0.0563383512198925,
- 0.0826234444975853,
- 0.03283204883337021,
- -0.0015712419990450144,
- -0.10348440706729889,
- 0.01676974631845951,
- 0.0007610114407725632,
- 0.06347878277301788,
- 0.06929666548967361,
- 0.0008077858947217464,
- -0.009654158726334572,
- -0.025227900594472885,
- 0.04756748303771019,
- -0.014195213094353676,
- -0.06040284037590027,
- -0.040094729512929916,
- -0.05260040983557701,
- 0.08836546540260315,
- 0.07545019686222076,
- 0.10400209575891495,
- 0.030148986726999283,
- -0.04792267456650734,
- 0.016470540314912796,
- 0.0025184438563883305,
- 0.035412371158599854,
- 0.0064063058234751225,
- 0.030016284435987473,
- -0.001902374206110835,
- -0.033820994198322296,
- 0.05665850639343262,
- 0.03422539308667183,
- -0.10204941034317017,
- -0.0027236409951001406,
- -0.11293260008096695,
- 0.035355519503355026,
- 0.0057969605550169945,
- 0.0008820624207146466,
- -0.01585741527378559,
- -0.08002403378486633,
- -0.0031687128357589245,
- -0.043548714369535446,
- -0.044342707842588425,
- 0.05397407338023186,
- -0.0011177476262673736,
- -0.10776200145483017,
- 0.015751682221889496,
- -0.046820808202028275,
- 0.04196535050868988,
- -0.0922405868768692,
- 0.004593366757035255,
- 0.0019393773982301354,
- -0.030778681859374046,
- 0.040500953793525696,
- 0.04848628118634224,
- 0.009548830799758434,
- -0.02721780724823475,
- 0.05393591895699501,
- 0.10853836685419083,
- 0.04266976937651634,
- -0.02132180705666542,
- 0.06864236295223236,
- -0.024733969941735268,
- 0.07508296519517899,
- -0.0033633157145231962,
- 0.1086152121424675,
- -0.024033157154917717,
- -0.03241909667849541,
- 0.049591563642024994,
- 0.0802251547574997,
- 0.02758527360856533,
- -0.008134660311043262,
- 0.0037455204874277115,
- -0.03414595499634743,
- 0.046338535845279694,
- 0.018366556614637375,
- -0.025244303047657013,
- -0.0666675716638565,
- 0.05105237662792206,
- -0.06045893207192421,
- 0.12615256011486053,
- -0.01651417836546898,
- 0.01599924825131893,
- -0.08056425303220749,
- -0.03981737419962883,
- -0.005482744891196489,
- 0.0803859680891037,
- 0.0013967084232717752,
- -0.024229232221841812,
- 0.0313994437456131,
- 0.009421994909644127,
- -0.01750110648572445,
- 3.980726763061227e-33,
- -0.031680598855018616,
- 0.01178763248026371,
- -0.03317838907241821,
- 0.02085026353597641,
- 0.025943811982870102,
- -0.03862660005688667,
- 0.0020725084468722343,
- -0.012116151861846447,
- -0.10961980372667313,
- 0.05625734478235245,
- -0.01952308788895607,
- -0.03398814797401428,
- 0.029866673052310944,
- 0.0017149243503808975,
- 0.011645174585282803,
- 0.0639306828379631,
- 0.045976486057043076,
- -0.023097490891814232,
- -0.02517567202448845,
- -0.01893598958849907,
- -0.04309719800949097,
- -0.0248065497726202,
- -0.02313493750989437,
- 0.025154173374176025,
- -0.017812302336096764,
- 0.0422038733959198,
- 0.09172776341438293,
- 0.10203459858894348,
- -0.09945765882730484,
- -0.03068368136882782,
- 0.06196753308176994,
- -0.032550640404224396,
- -0.07409676909446716,
- 0.014073150232434273,
- -0.027118032798171043,
- 0.11259544640779495,
- 0.09215548634529114,
- 0.06421521306037903,
- -0.04352577403187752,
- -0.050377506762742996,
- 0.07651518285274506,
- -0.012647832743823528,
- -0.020102035254240036,
- 0.08747241646051407,
- -0.028645269572734833,
- -0.00204668240621686,
- -0.08474841713905334,
- 0.0020547923631966114,
- -0.030279312282800674,
- 0.06122748553752899,
- -0.010304215364158154,
- -0.009788052178919315,
- -0.007449411787092686,
- -0.05459203943610191,
- -0.041616540402173996,
- -0.031142838299274445,
- -0.022301238030195236,
- 0.0160724688321352,
- 0.10135465860366821,
- -0.01593533717095852,
- 0.05375391244888306,
- -0.02196674980223179,
- 0.02109527960419655,
- 0.0455358661711216,
- -0.10212204605340958,
- 0.035741254687309265,
- 0.05069006234407425,
- 0.07180652022361755,
- 0.07745625078678131,
- 0.03261740878224373,
- 0.0642746314406395,
- 0.0554664321243763,
- 0.0513555072247982,
- -0.013294686563313007,
- -0.002188005018979311,
- 0.0062460945919156075,
- -0.09282509982585907,
- -0.07464081794023514,
- -0.028506264090538025,
- -0.02660479210317135,
- 0.025425458326935768,
- -0.07939116656780243,
- -0.02630455419421196,
- -0.02207334153354168,
- 0.04208753630518913,
- 0.011597170494496822,
- 0.03594975546002388,
- 0.07644592225551605,
- 0.028081132099032402,
- -0.07490517199039459,
- -0.021806566044688225,
- -0.020015541464090347,
- -0.007844006642699242,
- 0.01371707022190094,
- 0.031516678631305695,
- -1.261272242203404e-8,
- 0.03935588151216507,
- -0.004700555466115475,
- 0.04515547305345535,
- -0.02014710009098053,
- -0.0021370896138250828,
- 0.04443486034870148,
- -0.03353283926844597,
- -0.05198905989527702,
- 0.0004506707191467285,
- 0.021198568865656853,
- -0.013761990703642368,
- -0.00910083670169115,
- 0.07014217972755432,
- 0.09641742706298828,
- 0.11219955235719681,
- -0.013615425676107407,
- -0.006406732834875584,
- 0.009329088032245636,
- 0.00843749102205038,
- 0.04247882217168808,
- 0.026200110092759132,
- -0.057313598692417145,
- -0.016608357429504395,
- 0.019607100635766983,
- 0.016680283471941948,
- -0.013516871258616447,
- -0.022187096998095512,
- 0.13129423558712006,
- -0.008152410387992859,
- 0.017612477764487267,
- 0.05384525656700134,
- -0.01557200588285923,
- -0.031440429389476776,
- -0.032692067325115204,
- -0.029681771993637085,
- -0.054323796182870865,
- -0.05975944548845291,
- -0.03659031167626381,
- 0.005525489337742329,
- -0.028171034529805183,
- 0.023462658748030663,
- 0.026516014710068703,
- -0.10280958563089371,
- 0.033511389046907425,
- -0.0374562032520771,
- 0.023861302062869072,
- 0.036352790892124176,
- -0.1533292531967163,
- -0.01611410267651081,
- -0.024344680830836296,
- -0.0003937865549232811,
- -0.05484344810247421,
- 0.029494186863303185,
- 0.046787235885858536,
- 0.020891059190034866,
- 0.04334681108593941,
- 0.009133260697126389,
- -0.06548109650611877,
- -0.04971776902675629,
- 0.07512031495571136,
- 0.09232371300458908,
- 0.0750603899359703,
- -0.08807127177715302,
- -0.057983074337244034
- ]
- },
- {
- "keyword": "san francisco",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.12268096953630447,
- 0.04697179049253464,
- 0.05085820332169533,
- 0.0462849996984005,
- -0.05405670776963234,
- 0.03427762910723686,
- -0.03696976974606514,
- 0.0015109482919797301,
- -0.007711268030107021,
- -0.019789643585681915,
- 0.026062265038490295,
- -0.06121228262782097,
- -0.03128615394234657,
- -0.02298533171415329,
- 0.006822611205279827,
- -0.0060211848467588425,
- -0.021863112226128578,
- -0.07467364519834518,
- 0.0948563739657402,
- -0.004603808745741844,
- -0.0027114059776067734,
- -0.026837293058633804,
- -0.04534533619880676,
- 0.013362470082938671,
- 0.032107941806316376,
- 0.06923040002584457,
- -0.01460388395935297,
- 0.09115231037139893,
- 0.010680480860173702,
- 0.006277595646679401,
- -0.03316178172826767,
- 0.04695438593626022,
- 0.10326151549816132,
- 0.011691384017467499,
- 0.023716367781162262,
- 0.02589547447860241,
- 0.05604837089776993,
- -0.028325842693448067,
- 0.04441486671566963,
- 0.07169167697429657,
- -0.038274940103292465,
- 0.02551031857728958,
- -0.03408489376306534,
- 0.035181183367967606,
- -0.027294084429740906,
- -0.018650883808732033,
- 0.05049904063344002,
- -0.0194051843136549,
- 0.0637253075838089,
- 0.00011946246377192438,
- -0.00848352164030075,
- 0.04544597491621971,
- -0.005521370097994804,
- 0.07179076224565506,
- -0.010754622519016266,
- 0.008332387544214725,
- 0.009710880927741528,
- -0.006742553785443306,
- 0.014856974594295025,
- -0.0015327513683587313,
- 0.05560184642672539,
- -0.08289355039596558,
- -0.09924140572547913,
- 0.024353917688131332,
- 0.03830496221780777,
- 0.06584315001964569,
- -0.02029229886829853,
- 0.058613795787096024,
- -0.024154169484972954,
- -0.13981005549430847,
- 0.005907807964831591,
- 0.06110183522105217,
- -0.015661008656024933,
- 0.02495856024324894,
- 0.015849439427256584,
- -0.009490352123975754,
- 0.050793785601854324,
- 0.03522804006934166,
- 0.05433867871761322,
- -0.014040469191968441,
- 0.05322132259607315,
- -0.05552813410758972,
- -0.07293516397476196,
- 0.00953131914138794,
- -0.058681368827819824,
- 0.03703175112605095,
- -0.015809552744030952,
- 0.03169536963105202,
- 0.016898833215236664,
- 0.048279423266649246,
- -0.04351772740483284,
- 0.06208903342485428,
- -0.023480290547013283,
- -0.09088756889104843,
- -0.048792820423841476,
- -0.008671404793858528,
- -0.04454858601093292,
- -0.03633300960063934,
- -0.05948232486844063,
- 0.16277055442333221,
- -0.02197880856692791,
- 0.08489225059747696,
- 0.023714140057563782,
- -0.006188744213432074,
- 0.0261191725730896,
- 0.005334018729627132,
- -0.0865059569478035,
- 0.051050275564193726,
- -0.07029199600219727,
- 0.03384676203131676,
- -0.009073520079255104,
- -0.002373653231188655,
- -0.08065439015626907,
- 0.042852018028497696,
- -0.025563737377524376,
- 0.08554041385650635,
- 0.07465395331382751,
- 0.019990717992186546,
- -0.07174725830554962,
- -0.027417205274105072,
- -0.02632787451148033,
- -0.04388801380991936,
- -0.11131440848112106,
- -0.026230931282043457,
- -0.0791945680975914,
- -0.06787899136543274,
- -0.07839533686637878,
- -2.469768732375321e-33,
- 0.047760047018527985,
- 0.0006744106649421155,
- -0.004615826532244682,
- -0.023846128955483437,
- 0.03708011284470558,
- -0.0468280091881752,
- -0.008978240191936493,
- -0.023326637223362923,
- -0.06919669359922409,
- 0.0374629907310009,
- 0.09807635098695755,
- -0.05863405391573906,
- -0.007838577963411808,
- 0.014261760748922825,
- 0.09967835247516632,
- 0.02825869992375374,
- 0.03922731801867485,
- -0.0050476971082389355,
- -0.0562250092625618,
- -0.013024716638028622,
- -0.0030046040192246437,
- -0.013719409704208374,
- -0.0009822531137615442,
- -0.04006142541766167,
- -0.05509886145591736,
- -0.026833439245820045,
- -0.00260309805162251,
- 0.015504342503845692,
- 0.03507884219288826,
- -0.007777695544064045,
- -0.06315626949071884,
- 0.04432139918208122,
- 0.02992931567132473,
- 0.04058276116847992,
- 0.05884166806936264,
- -0.08980364352464676,
- 0.0009688819409348071,
- -0.042887140065431595,
- 0.009877645410597324,
- 0.015810448676347733,
- -0.010578230954706669,
- 0.037465810775756836,
- 0.037337154150009155,
- 0.03516830503940582,
- 0.07438381016254425,
- 0.007459617219865322,
- 0.0017767507815733552,
- -0.05575942620635033,
- 0.09045934677124023,
- -0.03540598601102829,
- -0.05296526104211807,
- 0.03179822117090225,
- -0.09328333288431168,
- 0.026454826816916466,
- 0.06371738761663437,
- -0.006432407535612583,
- -0.02753065712749958,
- -0.06743896752595901,
- -0.03906162083148956,
- 0.05172243341803551,
- 0.06331053376197815,
- 0.14304086565971375,
- 0.0237595047801733,
- -0.010071510449051857,
- -0.014292830601334572,
- -0.06117963045835495,
- 0.024138791486620903,
- 0.07579212635755539,
- 0.02117895893752575,
- 0.03187207505106926,
- 0.028540564700961113,
- -0.04122527688741684,
- 0.1410580575466156,
- -0.014809875749051571,
- -0.06132526323199272,
- 0.012652545236051083,
- -0.11249517649412155,
- 0.03632340952754021,
- -0.006017015781253576,
- -0.008469105698168278,
- -0.013763739727437496,
- -0.026744408532977104,
- -0.0155365951359272,
- 0.10331570357084274,
- 0.06295216828584671,
- 0.08361964672803879,
- 0.028923120349645615,
- -0.09273625910282135,
- -0.05978080630302429,
- -0.048665422946214676,
- -0.11202084273099899,
- -0.02822965756058693,
- 0.08432374149560928,
- -0.016421247273683548,
- -0.08978750556707382,
- 1.1492407865226256e-33,
- -0.03450316563248634,
- -0.08045508712530136,
- 0.044249311089515686,
- 0.0021612728014588356,
- -0.01268656738102436,
- 0.0551309809088707,
- 0.02041308581829071,
- -0.05759977549314499,
- -0.01787152700126171,
- 0.04823105037212372,
- -0.12849727272987366,
- -0.012861180119216442,
- 0.12283358722925186,
- -0.02736104466021061,
- 0.03023633547127247,
- 0.05837098881602287,
- 0.0772489532828331,
- -0.012265068478882313,
- -0.09932185709476471,
- -0.060316648334264755,
- 0.04919736459851265,
- 0.00005734970545745455,
- 0.07269241660833359,
- 0.04805056378245354,
- -0.010108872316777706,
- 0.022211290895938873,
- 0.06007103994488716,
- 0.02702193334698677,
- -0.04501625895500183,
- -0.01608334481716156,
- -0.019661933183670044,
- -0.032904911786317825,
- -0.01082502119243145,
- 0.04588862508535385,
- -0.03011476807296276,
- 0.10369161516427994,
- 0.023296765983104706,
- 0.001056945533491671,
- 0.04588839411735535,
- 0.04893733188509941,
- -0.054998915642499924,
- -0.07176356017589569,
- 0.008712761104106903,
- 0.10281587392091751,
- -0.026850655674934387,
- 0.03184600546956062,
- -0.0870879590511322,
- 0.019741827622056007,
- 0.03738519176840782,
- -0.04180245101451874,
- -0.05152348056435585,
- 0.01365663856267929,
- -0.12263243645429611,
- 0.01797124557197094,
- -0.047590725123882294,
- 0.0699182078242302,
- -0.035433560609817505,
- 0.046767305582761765,
- -0.08684857189655304,
- -0.04658064618706703,
- -0.00009855035750661045,
- 0.017433268949389458,
- -0.04366502910852432,
- 0.05574999004602432,
- -0.04017835110425949,
- 0.008365788497030735,
- 0.01889560930430889,
- 0.0031604627147316933,
- -0.02062416635453701,
- 0.02417116053402424,
- 0.05566122755408287,
- 0.05971941351890564,
- -0.05583013966679573,
- 0.02284836955368519,
- -0.043205540627241135,
- 0.018650075420737267,
- -0.005518849939107895,
- 0.014736696146428585,
- -0.0029762566555291414,
- 0.07796121388673782,
- 0.009635497815907001,
- 0.008236761204898357,
- -0.12553295493125916,
- 0.1310008317232132,
- -0.0015756796346977353,
- 0.02296208031475544,
- -0.028648732230067253,
- -0.045614998787641525,
- 0.01918671652674675,
- -0.010707846842706203,
- 0.000634567579254508,
- 0.059453919529914856,
- -0.1350114643573761,
- -0.09295741468667984,
- -0.08537470549345016,
- -1.3726658920631962e-8,
- 0.0773506909608841,
- -0.03756898641586304,
- -0.08500732481479645,
- -0.011077901348471642,
- -0.02277737855911255,
- -0.009234161116182804,
- 0.02406436763703823,
- -0.010447405278682709,
- -0.00619698129594326,
- 0.05902153626084328,
- 0.0009608936961740255,
- 0.003203059546649456,
- 0.03323278948664665,
- -0.02949531562626362,
- -0.05842453986406326,
- -0.10952048748731613,
- 0.04186703637242317,
- 0.04768427461385727,
- -0.033403072506189346,
- -0.01683950424194336,
- -0.0203265193849802,
- 0.060424454510211945,
- -0.01015127170830965,
- -0.002258958062157035,
- -0.020233577117323875,
- -0.023205310106277466,
- 0.005376363638788462,
- 0.0111467856913805,
- 0.013034895993769169,
- 0.09542516618967056,
- -0.011653776280581951,
- -0.004449034575372934,
- -0.06942600011825562,
- -0.05222567543387413,
- 0.031519003212451935,
- -0.020186277106404305,
- -0.025448517873883247,
- -0.045881349593400955,
- -0.058874718844890594,
- -0.064018115401268,
- 0.02738967165350914,
- -0.016009047627449036,
- -0.03015121817588806,
- 0.09997246414422989,
- -0.038162797689437866,
- -0.008101250045001507,
- 0.02596556395292282,
- 0.022846192121505737,
- 0.020709553733468056,
- 0.04105057567358017,
- -0.019693797454237938,
- 0.070414699614048,
- -0.019971171393990517,
- 0.0569501668214798,
- -0.008530573919415474,
- 0.01167839765548706,
- -0.026209505274891853,
- -0.0035578999668359756,
- -0.02594071440398693,
- 0.07726463675498962,
- 0.0777052640914917,
- 0.014139296486973763,
- -0.03872058913111687,
- 0.01321982778608799
- ]
- },
- {
- "keyword": "new york",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.0931541696190834,
- -0.01156614813953638,
- 0.07617589831352234,
- 0.049436114728450775,
- -0.03827095404267311,
- 0.004854165017604828,
- 0.007320183329284191,
- -0.06722508370876312,
- -0.025953274220228195,
- -0.04240526631474495,
- 0.008287223987281322,
- -0.016703113913536072,
- -0.05075047165155411,
- 0.04250280559062958,
- -0.042318545281887054,
- 0.001461801235564053,
- 0.06892460584640503,
- -0.03913591429591179,
- -0.008942353539168835,
- -0.021801983937621117,
- 0.08985300362110138,
- -0.021672438830137253,
- 0.023633258417248726,
- 0.02902229130268097,
- 0.05952163413167,
- 0.04105290398001671,
- 0.01212792657315731,
- 0.012020397931337357,
- 0.0025755520910024643,
- -0.009278157725930214,
- -0.0033009310718625784,
- 0.002032168209552765,
- 0.02269781567156315,
- 0.014804287813603878,
- 0.03640948235988617,
- 0.03081190586090088,
- 0.060651879757642746,
- 0.04437192901968956,
- 0.13531698286533356,
- 0.05897683650255203,
- -0.037287116050720215,
- 0.005042786244302988,
- -0.027690649032592773,
- 0.026971859857439995,
- -0.0014259038725867867,
- 0.01699363999068737,
- 0.0016472104471176863,
- 0.06970633566379547,
- 0.08078216016292572,
- 0.017320338636636734,
- 0.00005223318294156343,
- -0.021164346486330032,
- -0.007637752220034599,
- 0.03223546966910362,
- 0.012799770571291447,
- -0.012358159758150578,
- 0.023043086752295494,
- 0.02871285378932953,
- 0.004616972990334034,
- 0.025385253131389618,
- 0.037718046456575394,
- -0.033768877387046814,
- -0.05968547612428665,
- 0.05365647003054619,
- 0.029270220547914505,
- -0.002996171824634075,
- -0.0016030115075409412,
- 0.08197852969169617,
- -0.0708412453532219,
- -0.16192938387393951,
- 0.013393222354352474,
- 0.037217166274785995,
- 0.02219468727707863,
- -0.004404314793646336,
- 0.04789463058114052,
- -0.021161677315831184,
- -0.014012862928211689,
- 0.020334038883447647,
- -0.007164157927036285,
- 0.04693077504634857,
- 0.05769513547420502,
- 0.010087531991302967,
- -0.011104795150458813,
- 0.03292768448591232,
- 0.007486462127417326,
- 0.01962585747241974,
- -0.09068922698497772,
- 0.10237964987754822,
- 0.02608554996550083,
- -0.010032140649855137,
- -0.09161470085382462,
- 0.04579859599471092,
- -0.0558537133038044,
- 0.015936559066176414,
- -0.0498974546790123,
- -0.006558031775057316,
- -0.0054031675681471825,
- 0.006637217476963997,
- -0.032771408557891846,
- 0.16981303691864014,
- -0.0005284114158712327,
- 0.014547749422490597,
- -0.00017869906150735915,
- 0.10755661129951477,
- 0.05725644528865814,
- 0.012377065606415272,
- -0.050644516944885254,
- 0.02622034400701523,
- -0.07785812765359879,
- 0.019837703555822372,
- 0.0069286031648516655,
- 0.02006072737276554,
- -0.05259455367922783,
- 0.02302696742117405,
- 0.016864150762557983,
- -0.013884710147976875,
- 0.006384106352925301,
- 0.02867707796394825,
- 0.004552856087684631,
- -0.09476185590028763,
- -0.03729776293039322,
- 0.058861300349235535,
- -0.06161339581012726,
- 0.007447282783687115,
- -0.09477868676185608,
- -0.03239179402589798,
- -0.04654841870069504,
- -3.025369076027352e-33,
- -0.003312480403110385,
- -0.06091766059398651,
- 0.06738069653511047,
- 0.04218824580311775,
- -0.02426440268754959,
- -0.013479214161634445,
- 0.020196566358208656,
- -0.04500638693571091,
- 0.007224073633551598,
- 0.03795085847377777,
- 0.01999199576675892,
- -0.05898040533065796,
- -0.007974733598530293,
- -0.027818914502859116,
- 0.0690230280160904,
- 0.037923429161310196,
- 0.04973802715539932,
- -0.0163047444075346,
- -0.038554199039936066,
- 0.023200729861855507,
- -0.061846621334552765,
- 0.0384233221411705,
- 0.017839401960372925,
- -0.0008235041168518364,
- -0.10272399336099625,
- -0.06943994760513306,
- -0.019737930968403816,
- -0.0043302555568516254,
- -0.0382908470928669,
- -0.025114350020885468,
- -0.003951586317270994,
- 0.047920309007167816,
- 0.0031593041494488716,
- 0.05018577724695206,
- 0.09036102145910263,
- -0.0299849733710289,
- -0.024246245622634888,
- -0.0607493557035923,
- -0.0020118828397244215,
- -0.038204409182071686,
- 0.01721631921827793,
- 0.037801340222358704,
- -0.0008825813420116901,
- 0.0020687563810497522,
- 0.05111845210194588,
- 0.08710860460996628,
- -0.03864705562591553,
- 0.0609063096344471,
- 0.030530322343111038,
- 0.008243952877819538,
- -0.0726960077881813,
- 0.041459642350673676,
- -0.16670940816402435,
- 0.0005307715618982911,
- 0.0007983319228515029,
- -0.0015718634240329266,
- 0.009651947766542435,
- -0.05396847426891327,
- 0.05949801951646805,
- 0.05265212059020996,
- -0.08898638188838959,
- 0.11413010209798813,
- 0.009214816614985466,
- -0.011857069097459316,
- -0.008641702122986317,
- -0.09342504292726517,
- 0.025485077872872353,
- 0.009592710994184017,
- 0.03369440883398056,
- 0.07269248366355896,
- -0.015962371602654457,
- 0.031214911490678787,
- 0.0403565987944603,
- 0.04559870809316635,
- 0.04376668483018875,
- -0.035472169518470764,
- -0.015847912058234215,
- 0.09277086704969406,
- -0.014760410413146019,
- -0.012203010730445385,
- -0.009469104930758476,
- 0.05477609485387802,
- 0.015094134025275707,
- 0.10352814942598343,
- 0.07364235073328018,
- -0.0015007236506789923,
- -0.02159014903008938,
- -0.048287197947502136,
- -0.012855778448283672,
- 0.034754782915115356,
- -0.203740194439888,
- -0.015873562544584274,
- -0.055062878876924515,
- -0.004118650685995817,
- 0.015005244873464108,
- 6.058845940668509e-34,
- -0.007397080305963755,
- -0.11985365301370621,
- 0.028229229152202606,
- -0.00416508549824357,
- -0.06634393334388733,
- 0.011631648987531662,
- -0.0067519862204790115,
- 0.036334432661533356,
- 0.012043080292642117,
- 0.07065621763467789,
- -0.09459654986858368,
- -0.015661053359508514,
- 0.13292503356933594,
- 0.1154874935746193,
- 0.01049034297466278,
- 0.032201770693063736,
- 0.015187108889222145,
- -0.0058554490096867085,
- -0.08147667348384857,
- 0.0006886404589749873,
- 0.06703450530767441,
- -0.011097671464085579,
- -0.0769517570734024,
- -0.00530460849404335,
- -0.07781662791967392,
- -0.004149946384131908,
- -0.009241622872650623,
- 0.07339576631784439,
- -0.08073535561561584,
- -0.029867127537727356,
- -0.00957691390067339,
- -0.021719474345445633,
- -0.04830436408519745,
- 0.030409259721636772,
- -0.028435785323381424,
- 0.10705552250146866,
- 0.018302833661437035,
- -0.04333047568798065,
- 0.03543522208929062,
- -0.04974028468132019,
- -0.018182264640927315,
- -0.03472702205181122,
- 0.01515353936702013,
- 0.0904347375035286,
- 0.021873269230127335,
- 0.05479012057185173,
- -0.07770169526338577,
- 0.051168348640203476,
- -0.026632022112607956,
- -0.022717764601111412,
- -0.10707741230726242,
- 0.029145432636141777,
- -0.08330167084932327,
- 0.012682179920375347,
- 0.02219609171152115,
- -0.0064761401154100895,
- -0.05429096519947052,
- 0.028586959466338158,
- -0.03242943063378334,
- -0.06881363689899445,
- -0.024604754522442818,
- 0.013042079284787178,
- -0.08166967332363129,
- 0.058721210807561874,
- -0.030797220766544342,
- -0.012443010695278645,
- 0.02856336534023285,
- -0.024695001542568207,
- 0.011967798694968224,
- 0.05194282531738281,
- 0.05925263836979866,
- 0.07260528951883316,
- -0.08445926010608673,
- -0.053818657994270325,
- -0.04888918995857239,
- -0.059102486819028854,
- -0.008241214789450169,
- 0.005034233443439007,
- -0.02396404556930065,
- 0.04941841959953308,
- 0.09372084587812424,
- -0.013351953588426113,
- -0.11576986312866211,
- 0.0668511614203453,
- 0.03465196117758751,
- 0.04055190831422806,
- 0.07466313987970352,
- -0.0186416395008564,
- -0.04700792580842972,
- -0.025152135640382767,
- 0.09168361127376556,
- 0.07811123877763748,
- -0.13951045274734497,
- -0.11393433064222336,
- -0.07334504276514053,
- -1.4465370234972852e-8,
- -0.010869881138205528,
- 0.08364642411470413,
- -0.05354144424200058,
- 0.001312548527494073,
- -0.008228792808949947,
- -0.00169624004047364,
- -0.015213070437312126,
- 0.010819660499691963,
- 0.020039070397615433,
- 0.03766321763396263,
- 0.0435398630797863,
- 0.009241786785423756,
- 0.054821256548166275,
- -0.0064183915965259075,
- -0.05826425552368164,
- -0.1102789044380188,
- 0.008700150065124035,
- -0.002431622939184308,
- 0.0023317912127822638,
- 0.014039278961718082,
- -0.007316123694181442,
- 0.07600808143615723,
- 0.03435877338051796,
- 0.0007619772804901004,
- -0.003537829965353012,
- -0.05759107321500778,
- 0.08040449768304825,
- 0.012272370979189873,
- 0.019155731424689293,
- -0.015614725649356842,
- 0.005928317550569773,
- 0.07722390443086624,
- -0.024500081315636635,
- -0.10749480873346329,
- -0.04607422649860382,
- -0.060694482177495956,
- -0.08251987397670746,
- -0.04677785187959671,
- 0.045839905738830566,
- -0.10801620036363602,
- -0.044911909848451614,
- 0.0037786138709634542,
- 0.0010702982544898987,
- 0.029830781742930412,
- -0.019154030829668045,
- -0.02177051268517971,
- 0.01678750291466713,
- -0.05581716075539589,
- -0.011914615519344807,
- -0.009682669304311275,
- -0.0953492745757103,
- -0.011814628727734089,
- 0.04625210911035538,
- -0.02035161480307579,
- 0.011564315296709538,
- 0.028685735538601875,
- -0.015413829125463963,
- 0.020795166492462158,
- -0.07025133818387985,
- 0.03332812711596489,
- 0.09310445189476013,
- -0.0515332855284214,
- -0.023908507078886032,
- 0.03259999677538872
- ]
- },
- {
- "keyword": "los angeles",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.10954561084508896,
- -0.02356167696416378,
- 0.021530617028474808,
- 0.036903802305459976,
- -0.030522450804710388,
- 0.019460618495941162,
- -0.01724654622375965,
- -0.022041792050004005,
- 0.045310478657484055,
- 0.03144403174519539,
- 0.06289835274219513,
- -0.0444723479449749,
- 0.02454826422035694,
- -0.006687693763524294,
- 0.011469707824289799,
- -0.028629351407289505,
- 0.006164348218590021,
- -0.10901052504777908,
- -0.02630680240690708,
- -0.061777763068675995,
- 0.03200535848736763,
- 0.04251360148191452,
- -0.05153922736644745,
- 0.07592320442199707,
- -0.0017253992846235633,
- -0.00677157286554575,
- -0.03882499039173126,
- 0.013152850791811943,
- -0.0009849444031715393,
- -0.03630939498543739,
- 0.037681881338357925,
- 0.05803854390978813,
- 0.015154790133237839,
- 0.029852798208594322,
- 0.05952126532793045,
- -0.033601097762584686,
- -0.06165351718664169,
- -0.008677470497786999,
- 0.04759183153510094,
- 0.048160746693611145,
- -0.0009152856073342264,
- -0.023111827671527863,
- -0.0009203749941661954,
- -0.05050969123840332,
- -0.04394941404461861,
- -0.044296205043792725,
- -0.006106889341026545,
- 0.059538550674915314,
- 0.06007855758070946,
- 0.010784757323563099,
- 0.041682012379169464,
- 0.04477958381175995,
- 0.008024489507079124,
- 0.025744371116161346,
- -0.10279998928308487,
- 0.02935582585632801,
- 0.02392285317182541,
- 0.03693133965134621,
- 0.030249668285250664,
- 0.07228931784629822,
- 0.030322512611746788,
- 0.008415210992097855,
- -0.09066705405712128,
- 0.042347393929958344,
- -0.029451660811901093,
- 0.029885971918702126,
- 0.04605472460389137,
- 0.01432151347398758,
- -0.056532856076955795,
- -0.11082223802804947,
- 0.00406282115727663,
- -0.0013435834553092718,
- 0.023812398314476013,
- 0.02215413935482502,
- 0.10420505702495575,
- -0.0205860398709774,
- 0.049283333122730255,
- 0.021593626588582993,
- 0.03659738600254059,
- -0.020664988085627556,
- 0.04626304283738136,
- -0.07905536890029907,
- -0.09728649258613586,
- 0.06816970556974411,
- -0.05964793637394905,
- 0.024299927055835724,
- -0.02684624306857586,
- 0.07351662963628769,
- 0.08908172696828842,
- -0.019228139892220497,
- -0.0735396072268486,
- 0.028922460973262787,
- -0.021491101011633873,
- -0.0003753378114197403,
- -0.04836496338248253,
- 0.0569080226123333,
- -0.020064709708094597,
- -0.06463132053613663,
- -0.03365536034107208,
- 0.15300963819026947,
- -0.011359021998941898,
- 0.04312824830412865,
- -0.012085365131497383,
- 0.014393164776265621,
- -0.018286917358636856,
- -0.045284856110811234,
- -0.06802404671907425,
- 0.04138754680752754,
- -0.06899862736463547,
- -0.03621073067188263,
- 0.01777423731982708,
- 0.03216705471277237,
- -0.015025407075881958,
- 0.023246509954333305,
- -0.04172159358859062,
- 0.05180813744664192,
- 0.09466428309679031,
- -0.011175887659192085,
- -0.025288734585046768,
- -0.10361932218074799,
- -0.04336850345134735,
- -0.024669935926795006,
- -0.0300368070602417,
- -0.01272412110120058,
- -0.042031362652778625,
- -0.057476550340652466,
- -0.07760166376829147,
- -3.164247121421282e-33,
- 0.031195303425192833,
- -0.04178621619939804,
- 0.04000161960721016,
- 0.018923627212643623,
- 0.008570772595703602,
- -0.020435413345694542,
- 0.023493997752666473,
- 0.007384916767477989,
- -0.03230493143200874,
- -0.019010458141565323,
- 0.03463039547204971,
- -0.03138066455721855,
- -0.0023674366530030966,
- -0.02446090802550316,
- 0.07142791897058487,
- 0.1063389852643013,
- 0.016962653025984764,
- 0.026906929910182953,
- -0.09529150277376175,
- 0.00101659691426903,
- -0.03799758851528168,
- -0.032692208886146545,
- 0.006456474773585796,
- 0.06209419295191765,
- -0.06331856548786163,
- 0.015742633491754532,
- 0.009961371310055256,
- -0.013898144476115704,
- 0.022533630952239037,
- 0.016222096979618073,
- -0.048198916018009186,
- 0.032549966126680374,
- 0.08525947481393814,
- 0.061442140489816666,
- 0.0607818104326725,
- -0.007398395333439112,
- -0.0513092465698719,
- -0.027733517810702324,
- 0.03784903511404991,
- -0.009586012922227383,
- 0.07827874273061752,
- 0.05454739183187485,
- -0.01622355729341507,
- -0.022961337119340897,
- 0.030257904902100563,
- 0.09668746590614319,
- 0.011371929198503494,
- 0.01217927411198616,
- 0.037008967250585556,
- -0.03745882585644722,
- -0.021881910040974617,
- 0.017547857016324997,
- -0.1133851483464241,
- -0.02347683161497116,
- 0.011364352889358997,
- 0.039340801537036896,
- -0.04362441226840019,
- -0.05762898921966553,
- 0.013199529610574245,
- 0.012526379898190498,
- 0.01717210002243519,
- 0.1607333868741989,
- -0.066283218562603,
- 0.010078328661620617,
- -0.01740461215376854,
- -0.07393359392881393,
- 0.05567638948559761,
- -0.004489470738917589,
- 0.08210942149162292,
- -0.02531260810792446,
- 0.018185153603553772,
- -0.045766886323690414,
- 0.11613598465919495,
- 0.07408012449741364,
- 0.05640392377972603,
- 0.006347710732370615,
- -0.057349298149347305,
- 0.04837672784924507,
- -0.0005712024285458028,
- 0.03840065747499466,
- -0.05750957876443863,
- 0.02630574256181717,
- -0.011470976285636425,
- 0.1239069327712059,
- 0.11436460167169571,
- -0.056264545768499374,
- -0.037015415728092194,
- -0.0416184738278389,
- 0.020829927176237106,
- -0.04786008596420288,
- -0.15158359706401825,
- -0.029467497020959854,
- 0.061567701399326324,
- -0.021727152168750763,
- -0.03771791607141495,
- 9.953367090828214e-34,
- -0.016071420162916183,
- -0.07742022722959518,
- 0.035446856170892715,
- 0.05789076164364815,
- 0.03520237281918526,
- 0.01609882526099682,
- 0.02432229183614254,
- 0.03525781258940697,
- 0.052143752574920654,
- 0.03252991661429405,
- -0.13075502216815948,
- -0.02049461007118225,
- 0.0639149397611618,
- 0.000321525294566527,
- 0.07480280846357346,
- 0.03452783450484276,
- 0.12134457379579544,
- -0.057391032576560974,
- -0.08266916126012802,
- 0.000026582136342767626,
- -0.008279692381620407,
- -0.05303121730685234,
- 0.016634657979011536,
- 0.011632679030299187,
- -0.006371193565428257,
- 0.0008512757485732436,
- 0.020055025815963745,
- 0.07674141973257065,
- -0.108911894261837,
- -0.02933841571211815,
- -0.05870477482676506,
- -0.03909992054104805,
- 0.007893561385571957,
- 0.05098724737763405,
- -0.0905483067035675,
- 0.09938430041074753,
- 0.03323394060134888,
- -0.013983449898660183,
- 0.03702588379383087,
- -0.027419397607445717,
- -0.06552841514348984,
- -0.0689028650522232,
- 0.04267483204603195,
- 0.045455336570739746,
- 0.02680942416191101,
- -0.019952641800045967,
- -0.05296030640602112,
- -0.026052776724100113,
- -0.07229980081319809,
- 0.007710195146501064,
- -0.04536018520593643,
- -0.019393501803278923,
- -0.06974323093891144,
- 0.05207616835832596,
- -0.04151587560772896,
- 0.05045895650982857,
- -0.023969290778040886,
- 0.04417988285422325,
- -0.03777138888835907,
- -0.05515430495142937,
- 0.041885484009981155,
- 0.017209285870194435,
- -0.10871190577745438,
- 0.08772699534893036,
- -0.08242501318454742,
- -0.042276252061128616,
- 0.0665624663233757,
- -0.05153895914554596,
- -0.004522423725575209,
- -0.003246977459639311,
- 0.0967801958322525,
- 0.05179734528064728,
- -0.07577793300151825,
- -0.008070757612586021,
- -0.09629952907562256,
- -0.021484654396772385,
- -0.0631173625588417,
- 0.015595006756484509,
- 0.024987591430544853,
- 0.011787289753556252,
- 0.026840895414352417,
- -0.015089883469045162,
- -0.1302318572998047,
- 0.06613561511039734,
- 0.06114375963807106,
- 0.053126923739910126,
- -0.06327440589666367,
- -0.0051855528727173805,
- 0.03944677859544754,
- -0.025171810761094093,
- -0.020758802071213722,
- 0.04937603324651718,
- -0.1204335168004036,
- -0.09423279017210007,
- -0.009591969661414623,
- -1.4422480099085533e-8,
- 0.0567401759326458,
- 0.06892596185207367,
- -0.07428431510925293,
- -0.010070696473121643,
- 0.017586715519428253,
- 0.006710178218781948,
- -0.021927528083324432,
- 0.08062459528446198,
- 0.05297411233186722,
- 0.03810380771756172,
- 0.012421699240803719,
- -0.02315520867705345,
- 0.067963145673275,
- -0.017840323969721794,
- -0.058654677122831345,
- -0.07730578631162643,
- 0.006880645640194416,
- 0.060665376484394073,
- -0.028483163565397263,
- 0.007221355568617582,
- -0.007631008978933096,
- 0.04480423405766487,
- -0.0016778450226411223,
- 0.009085542522370815,
- -0.009787296876311302,
- -0.06350991129875183,
- -0.04937250539660454,
- 0.007725289557129145,
- 0.027182094752788544,
- -0.0005342988879419863,
- -0.014818630181252956,
- 0.06778596341609955,
- -0.0331430621445179,
- -0.13443073630332947,
- -0.019513579085469246,
- -0.04817653447389603,
- -0.03689640015363693,
- -0.07890850305557251,
- 0.03362172096967697,
- -0.04544079676270485,
- 0.06364376842975616,
- 0.02233024314045906,
- -0.05082680284976959,
- 0.03785806521773338,
- 0.019493766129016876,
- -0.03098626807332039,
- 0.024315424263477325,
- -0.06303617358207703,
- -0.008189615793526173,
- 0.04004201665520668,
- -0.02779293991625309,
- 0.02739001251757145,
- -0.029787074774503708,
- 0.02510843798518181,
- 0.060923151671886444,
- -0.0512424111366272,
- 0.013171093538403511,
- -0.023465627804398537,
- -0.022672085091471672,
- 0.048335302621126175,
- 0.08988258242607117,
- 0.055271442979574203,
- 0.006282301619648933,
- 0.01685960590839386
- ]
- },
- {
- "keyword": "chicago",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.07485503703355789,
- 0.02904641442000866,
- 0.03051885962486267,
- 0.0038051840383559465,
- -0.02791382372379303,
- 0.03355463594198227,
- 0.0155751071870327,
- 0.0034010112285614014,
- -0.03409329056739807,
- 0.008737062104046345,
- 0.028134780004620552,
- -0.07018428295850754,
- -0.05689253658056259,
- -0.06788930296897888,
- -0.05673139914870262,
- -0.05713190138339996,
- 0.03268669918179512,
- -0.08336415141820908,
- 0.01710365153849125,
- -0.07583876699209213,
- -0.03968081250786781,
- -0.015576071105897427,
- 0.020136887207627296,
- -0.0027142809703946114,
- 0.020206334069371223,
- 0.009865012019872665,
- -0.011990057304501534,
- 0.02223728597164154,
- 0.045171335339546204,
- -0.024537337943911552,
- 0.02045830897986889,
- -0.021546822041273117,
- 0.05727166682481766,
- 0.02502104640007019,
- 0.04027632996439934,
- -0.05164898931980133,
- 0.0307888463139534,
- 0.010297609493136406,
- 0.05361998826265335,
- 0.049728069454431534,
- 0.015110692009329796,
- 0.005623522214591503,
- -0.026272611692547798,
- -0.033394552767276764,
- -0.019907919690012932,
- 0.0013934655580669641,
- 0.05473123490810394,
- 0.038894202560186386,
- 0.055575888603925705,
- 0.021737882867455482,
- 0.08841424435377121,
- 0.04153284430503845,
- -0.0400712676346302,
- 0.08782704174518585,
- -0.012531845830380917,
- 0.11066145449876785,
- -0.016887541860342026,
- 0.034755222499370575,
- -0.04263506829738617,
- 0.05334032326936722,
- -0.008605755865573883,
- 0.030926449224352837,
- -0.12142974138259888,
- 0.03367352485656738,
- 0.04135051742196083,
- 0.023433955386281013,
- -0.0006516111316159368,
- 0.07096842676401138,
- -0.06433075666427612,
- -0.12927746772766113,
- 0.033534083515405655,
- -0.027400434017181396,
- -0.022337106987833977,
- 0.016756145283579826,
- 0.04411180689930916,
- -0.026048222556710243,
- 0.06823381781578064,
- -0.016981199383735657,
- 0.1089693084359169,
- -0.008034767583012581,
- 0.043210308998823166,
- -0.045219309628009796,
- 0.031163305044174194,
- 0.020914414897561073,
- -0.07489541172981262,
- 0.01397289801388979,
- -0.04355092719197273,
- 0.05281607434153557,
- 0.10145792365074158,
- -0.021657751873135567,
- -0.07686250656843185,
- 0.011905456893146038,
- -0.07931958138942719,
- -0.004474485293030739,
- -0.07414694875478745,
- 0.06535565853118896,
- -0.00992531981319189,
- -0.014755942858755589,
- -0.009610104374587536,
- 0.21475005149841309,
- 0.006681588478386402,
- 0.0605456568300724,
- 0.05118599161505699,
- -0.04291582107543945,
- 0.04945819452404976,
- 0.05147166922688484,
- -0.05925724282860756,
- 0.0837487131357193,
- -0.06609662622213364,
- 0.04967933148145676,
- 0.01807473972439766,
- -0.008726879954338074,
- -0.025958534330129623,
- 0.04127484932541847,
- 0.028168540447950363,
- -0.005747349467128515,
- 0.04349476099014282,
- 0.008975440636277199,
- -0.003845047205686569,
- -0.08190382272005081,
- -0.08636481314897537,
- 0.06691382825374603,
- -0.01517379842698574,
- 0.0664919912815094,
- -0.10460327565670013,
- -0.0704866573214531,
- 0.004021578934043646,
- -5.285203700895428e-33,
- 0.01758462004363537,
- -0.07639804482460022,
- 0.034873947501182556,
- -0.010662592016160488,
- -0.0414806567132473,
- -0.020002873614430428,
- 0.035763680934906006,
- -0.01289683673530817,
- -0.05213421210646629,
- 0.04269023984670639,
- -0.008557137101888657,
- -0.10038821399211884,
- -0.01749706082046032,
- -0.014722331427037716,
- 0.09179747849702835,
- 0.05766407400369644,
- 0.04532492905855179,
- 0.01935422234237194,
- -0.05970108136534691,
- -0.02774488553404808,
- -0.05989884212613106,
- 0.017599543556571007,
- -0.020713424310088158,
- 0.006134542636573315,
- 0.016307318583130836,
- -0.047698404639959335,
- -0.04887237027287483,
- 0.02382379025220871,
- 0.04246532917022705,
- -0.024340499192476273,
- 0.00534161739051342,
- 0.1048625037074089,
- 0.023582346737384796,
- 0.08274903148412704,
- 0.06268883496522903,
- 0.02107158862054348,
- -0.0007143758703023195,
- -0.02344229258596897,
- -0.04076479747891426,
- -0.039337098598480225,
- 0.07163295149803162,
- 0.04220261424779892,
- -0.03649754822254181,
- 0.007572712376713753,
- 0.054874684661626816,
- 0.07834186404943466,
- 0.013057135976850986,
- -0.05954989418387413,
- 0.023787835612893105,
- -0.034013569355010986,
- -0.0365646630525589,
- 0.029989546164870262,
- -0.10785012692213058,
- 0.07381094992160797,
- -0.009055920876562595,
- 0.030213559046387672,
- -0.02176210843026638,
- -0.06718441843986511,
- 0.07249128818511963,
- 0.026408366858959198,
- -0.06676097214221954,
- 0.17450504004955292,
- -0.020137380808591843,
- -0.03382384032011032,
- 0.03201037272810936,
- -0.10071247071027756,
- -0.018483120948076248,
- 0.009431651793420315,
- 0.003879521507769823,
- 0.021633634343743324,
- 0.03217925503849983,
- -0.04994244500994682,
- 0.06821515411138535,
- -0.005380192305892706,
- 0.06393492221832275,
- 0.019886024296283722,
- -0.033944010734558105,
- 0.048814427107572556,
- -0.06259845197200775,
- -0.021839391440153122,
- -0.07315975427627563,
- -0.00862356647849083,
- -0.052148956805467606,
- 0.07825325429439545,
- 0.11203707009553909,
- -0.0014526739250868559,
- -0.06587754189968109,
- -0.04922770336270332,
- -0.06254472583532333,
- -0.06912461668252945,
- -0.11838068068027496,
- 0.00994383916258812,
- 0.023415492847561836,
- 0.030417632311582565,
- -0.010453090071678162,
- 2.802499755215262e-33,
- -0.05419449880719185,
- -0.08273668587207794,
- 0.022649500519037247,
- 0.031113136559724808,
- 0.04550755023956299,
- 0.00755823589861393,
- 0.006141206715255976,
- 0.03154047206044197,
- -0.0354091040790081,
- -0.03003562241792679,
- -0.127070352435112,
- -0.04712965339422226,
- 0.05995282158255577,
- 0.04291311651468277,
- 0.0543489046394825,
- 0.006352178752422333,
- 0.04252960532903671,
- 0.055475085973739624,
- -0.08728495240211487,
- 0.03156714141368866,
- 0.018471211194992065,
- -0.009226059541106224,
- -0.0709511861205101,
- 0.04602881893515587,
- -0.02387501299381256,
- 0.022260697558522224,
- 0.031670186668634415,
- 0.030171366408467293,
- -0.0381740964949131,
- -0.025466961786150932,
- -0.002289034426212311,
- 0.0031948217656463385,
- 0.02463684044778347,
- 0.019402077421545982,
- -0.02235773764550686,
- 0.12491591274738312,
- 0.0317792072892189,
- 0.0025663471315056086,
- -0.027967287227511406,
- -0.06583212316036224,
- -0.051451779901981354,
- 0.006536661181598902,
- -0.0443553552031517,
- 0.12334921956062317,
- 0.008782414719462395,
- 0.05755636468529701,
- -0.0984983891248703,
- 0.0022277662064880133,
- -0.0629778578877449,
- 0.037491895258426666,
- -0.10860297083854675,
- -0.04614970460534096,
- -0.0248072762042284,
- 0.03286721184849739,
- 0.003744955873116851,
- 0.020822294056415558,
- -0.01156352274119854,
- -0.014152527786791325,
- -0.033343732357025146,
- -0.04932074248790741,
- 0.005494271405041218,
- 0.034862637519836426,
- -0.07303688675165176,
- 0.08318763226270676,
- -0.029339870437979698,
- -0.027586208656430244,
- 0.06518273055553436,
- -0.0070372517220675945,
- 0.0024252072907984257,
- -0.023869773373007774,
- 0.053995147347450256,
- 0.08205666393041611,
- -0.027449175715446472,
- 0.020563317462801933,
- -0.03894345089793205,
- -0.02501099370419979,
- 0.08797618001699448,
- 0.00869365781545639,
- -0.00144900381565094,
- 0.033073749393224716,
- 0.004298027604818344,
- 0.025974124670028687,
- -0.010162720456719398,
- 0.09455421566963196,
- 0.035795506089925766,
- -0.0009167192620225251,
- -0.023002900183200836,
- -0.0007788209477439523,
- -0.00007022564386716112,
- 0.03309682384133339,
- 0.019047264009714127,
- 0.0417725145816803,
- -0.13038277626037598,
- -0.061111584305763245,
- -0.05103355273604393,
- -1.1994758075672962e-8,
- 0.017226509749889374,
- 0.09496340900659561,
- -0.0388287752866745,
- -0.026267753913998604,
- -0.02758881449699402,
- 0.027200838550925255,
- -0.016739606857299805,
- 0.012853706255555153,
- 0.01785966195166111,
- 0.005788367707282305,
- -0.016753632575273514,
- 0.05362461507320404,
- 0.02589416317641735,
- -0.01099061593413353,
- -0.045911841094493866,
- -0.07979124039411545,
- -0.05081887170672417,
- -0.009024850092828274,
- -0.004096954595297575,
- -0.030226752161979675,
- -0.008533106185495853,
- 0.06144627556204796,
- -0.00895739160478115,
- 0.032756369560956955,
- 0.07215482741594315,
- -0.026424121111631393,
- -0.05430815368890762,
- 0.03617947921156883,
- -0.03027213178575039,
- 0.032038308680057526,
- -0.019008317962288857,
- 0.11977915465831757,
- 0.015751997008919716,
- -0.03614993765950203,
- 0.11162792891263962,
- -0.05862666293978691,
- -0.025966709479689598,
- -0.06731247901916504,
- -0.029146427288651466,
- -0.09576597809791565,
- -0.004420395940542221,
- -0.012515032663941383,
- 0.02277412824332714,
- -0.027122747153043747,
- -0.0010946415131911635,
- -0.04142813757061958,
- 0.11805561929941177,
- -0.02002781070768833,
- 0.002056316938251257,
- -0.013842703774571419,
- -0.07730776816606522,
- 0.04939233139157295,
- -0.03658317029476166,
- 0.0041536595672369,
- 0.005838247016072273,
- -0.04304947331547737,
- -0.07932916283607483,
- -0.0005814070464111865,
- -0.05017007887363434,
- -0.0369153693318367,
- 0.10745162516832352,
- 0.03444991260766983,
- -0.0715136006474495,
- 0.013119630515575409
- ]
- },
- {
- "keyword": "boston",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.0675928145647049,
- 0.0353652760386467,
- 0.027815815061330795,
- 0.025095021352171898,
- -0.020326053723692894,
- 0.025428619235754013,
- -0.0008775966707617044,
- -0.015163731761276722,
- 0.027538342401385307,
- 0.02090410888195038,
- -0.02368156798183918,
- -0.03519132360816002,
- -0.056132812052965164,
- -0.04497037082910538,
- -0.07815688848495483,
- 0.005016610026359558,
- 0.025354962795972824,
- -0.03790481388568878,
- -0.015600207261741161,
- -0.011630091816186905,
- 0.01777059957385063,
- 0.03702579066157341,
- -0.06991231441497803,
- 0.06877006590366364,
- 0.08997292071580887,
- 0.10418388992547989,
- 0.05804802477359772,
- 0.08194521069526672,
- -0.023996461182832718,
- -0.07039164751768112,
- -0.02284112572669983,
- -0.07106335461139679,
- 0.05122324824333191,
- 0.021424705162644386,
- 0.015394151210784912,
- -0.019321046769618988,
- -0.00910220667719841,
- -0.02901170589029789,
- 0.13458426296710968,
- 0.04924944415688515,
- 0.007027407642453909,
- -0.02503950707614422,
- 0.009197922423481941,
- 0.0072845336981117725,
- -0.04310815781354904,
- 0.05111127719283104,
- 0.01716405339539051,
- 0.04254080355167389,
- 0.06096808984875679,
- -0.0012410932686179876,
- 0.01912684738636017,
- -0.029399802908301353,
- -0.04991491511464119,
- 0.0033716249745339155,
- 0.004191413521766663,
- 0.06590493768453598,
- -0.04065680876374245,
- 0.06302428990602493,
- 0.01810387149453163,
- -0.009232108481228352,
- 0.05583025515079498,
- -0.04400179162621498,
- -0.03446010500192642,
- 0.011267532594501972,
- 0.009702452458441257,
- 0.041903480887413025,
- -0.0872415155172348,
- 0.06830594688653946,
- -0.058513812720775604,
- -0.11951160430908203,
- 0.04919951409101486,
- 0.01115709450095892,
- 0.01938808150589466,
- 0.02066631056368351,
- 0.0599638894200325,
- 0.07537272572517395,
- -0.03635358810424805,
- 0.07707350701093674,
- 0.032898806035518646,
- 0.002446176949888468,
- 0.08456229418516159,
- -0.053686805069446564,
- -0.071308434009552,
- 0.0881032794713974,
- -0.054441384971141815,
- -0.060862161219120026,
- -0.02337200939655304,
- 0.04907640442252159,
- 0.053791895508766174,
- 0.02959645725786686,
- -0.05024826154112816,
- 0.05558110773563385,
- -0.03843854367733002,
- -0.03927882760763168,
- -0.08011044561862946,
- 0.009026788175106049,
- -0.05525294318795204,
- 0.00403251638635993,
- -0.018297510221600533,
- 0.19685347378253937,
- -0.008339529857039452,
- 0.10105578601360321,
- 0.020217910408973694,
- 0.026120014488697052,
- 0.029548581689596176,
- -0.023886704817414284,
- -0.06199195981025696,
- -0.010365677066147327,
- 0.02269802615046501,
- -0.026315957307815552,
- 0.0030076070688664913,
- -0.01443962287157774,
- -0.06924604624509811,
- 0.01409928873181343,
- -0.017985424026846886,
- -0.014594639651477337,
- 0.05741185322403908,
- 0.007788925897330046,
- -0.012944767251610756,
- -0.03586552292108536,
- 0.028522541746497154,
- 0.04273508861660957,
- 0.002934263786301017,
- -0.023910468444228172,
- -0.07414606958627701,
- -0.02963537909090519,
- -0.08470753580331802,
- -3.207097196586616e-33,
- 0.019501222297549248,
- -0.043760403990745544,
- 0.0027406811714172363,
- 0.04385283216834068,
- -0.04187702015042305,
- -0.0021301978267729282,
- -0.037337832152843475,
- -0.0693255141377449,
- -0.06721025705337524,
- -0.021661410108208656,
- 0.024007339030504227,
- -0.03743378072977066,
- -0.0656275600194931,
- -0.0609988309442997,
- 0.10552547872066498,
- 0.07151300460100174,
- 0.03809922933578491,
- -0.00865399744361639,
- -0.11062191426753998,
- 0.02098081260919571,
- -0.06850650906562805,
- -0.02105630189180374,
- -0.003892071545124054,
- 0.05629748851060867,
- -0.12102726846933365,
- -0.033213112503290176,
- 0.04039832204580307,
- -0.06892532855272293,
- 0.02440941147506237,
- 0.0014779344201087952,
- 0.02449890598654747,
- 0.06777482479810715,
- -0.021118149161338806,
- 0.014823976904153824,
- 0.032365720719099045,
- -0.047321468591690063,
- -0.01282655168324709,
- -0.026040636003017426,
- 0.04498685151338577,
- -0.028735646978020668,
- -0.014753484167158604,
- -0.005710739176720381,
- -0.017082402482628822,
- 0.03719475492835045,
- 0.04636630415916443,
- 0.0454418882727623,
- -0.02942524664103985,
- 0.03521033748984337,
- 0.1050531417131424,
- -0.07441189885139465,
- 0.03780217468738556,
- -0.05304400622844696,
- -0.07018838822841644,
- 0.0203598290681839,
- 0.06001283973455429,
- -0.02789439633488655,
- -0.031004779040813446,
- 0.030157577246427536,
- 0.019751066341996193,
- 0.04715755209326744,
- -0.00656074658036232,
- 0.08450111001729965,
- 0.053028352558612823,
- 0.002938101766631007,
- 0.01239022333174944,
- -0.050659794360399246,
- 0.036742452532052994,
- 0.012528505176305771,
- 0.017263831570744514,
- 0.02143729105591774,
- 0.05881887674331665,
- 0.022016827017068863,
- 0.09421008825302124,
- 0.05754607170820236,
- -0.041485197842121124,
- -0.0016572413733229041,
- 0.02917267195880413,
- 0.08102568238973618,
- -0.060757894068956375,
- -0.031328003853559494,
- -0.03619997948408127,
- -0.05562680959701538,
- -0.040970418602228165,
- 0.018962876871228218,
- 0.04124604910612106,
- -0.011516643688082695,
- -0.03122032806277275,
- -0.0663050189614296,
- -0.0287916399538517,
- -0.0069188689813017845,
- -0.10842527449131012,
- -0.0632033720612526,
- -0.03768223151564598,
- -0.0006551375263370574,
- -0.03774571046233177,
- 2.660529241323708e-33,
- 0.052387453615665436,
- -0.07947064936161041,
- -0.009751259349286556,
- 0.0796268880367279,
- -0.01807190664112568,
- 0.008758267387747765,
- 0.04842033237218857,
- 0.01813713274896145,
- 0.04281487688422203,
- 0.07784818857908249,
- -0.13136576116085052,
- -0.036086443811655045,
- 0.09302379190921783,
- 0.06684000045061111,
- 0.07031072676181793,
- 0.0442064069211483,
- 0.07165122777223587,
- -0.0013985303230583668,
- -0.07412807643413544,
- -0.07673217356204987,
- 0.013788370415568352,
- -0.03689106926321983,
- -0.046112071722745895,
- 0.005393647588789463,
- -0.030179155990481377,
- 0.04731103032827377,
- -0.07117535918951035,
- 0.07615091651678085,
- -0.07041803747415543,
- -0.022085150703787804,
- 0.009144393727183342,
- 0.08474025130271912,
- 0.02613556943833828,
- 0.04551948606967926,
- -0.0603618398308754,
- 0.1720893532037735,
- 0.024714834988117218,
- 0.04540122300386429,
- 0.07384869456291199,
- -0.0571448914706707,
- -0.01950104348361492,
- -0.039482709020376205,
- -0.024036124348640442,
- 0.09532077610492706,
- 0.05677775293588638,
- -0.016951149329543114,
- 0.022477295249700546,
- 0.08671358972787857,
- 0.005622584838420153,
- 0.0007249950431287289,
- -0.07829781621694565,
- 0.06971728801727295,
- -0.09717973321676254,
- 0.03077235445380211,
- -0.04647863283753395,
- 0.020474575459957123,
- -0.09993840754032135,
- 0.002926567569375038,
- -0.03277066722512245,
- -0.07274552434682846,
- 0.00632235873490572,
- -0.010383098386228085,
- -0.0812881737947464,
- 0.03544763848185539,
- -0.08462642133235931,
- 0.07146888226270676,
- 0.008685741573572159,
- -0.012068037874996662,
- 0.0029828629922121763,
- 0.08948658406734467,
- 0.023828038945794106,
- 0.06219148635864258,
- -0.05431584268808365,
- 0.06575589627027512,
- 0.051741309463977814,
- 0.08435405790805817,
- -0.02026541531085968,
- 0.0362410843372345,
- -0.027757897973060608,
- 0.02551492489874363,
- -0.011666239239275455,
- 0.001523297862149775,
- -0.08298368752002716,
- 0.10630910843610764,
- 0.022635778412222862,
- 0.02505621127784252,
- 0.02580290660262108,
- 0.024413522332906723,
- -0.02651488035917282,
- -0.02184131368994713,
- -0.009582284837961197,
- 0.035560812801122665,
- -0.07779788225889206,
- -0.10791633278131485,
- -0.054910533130168915,
- -1.1286862999781988e-8,
- 0.051433198153972626,
- 0.09097693115472794,
- -0.04471533000469208,
- -0.016331689432263374,
- 0.04221707209944725,
- -0.007581221405416727,
- 0.004848322365432978,
- 0.07598962634801865,
- 0.029086316004395485,
- -0.006746823433786631,
- -0.06257845461368561,
- -0.04954112321138382,
- 0.01648949272930622,
- -0.013480346649885178,
- -0.00761106563732028,
- -0.015040023252367973,
- -0.017596634104847908,
- 0.01997257210314274,
- -0.023306027054786682,
- -0.008419820107519627,
- -0.030149484053254128,
- 0.036937177181243896,
- -0.01710466481745243,
- -0.005857617594301701,
- -0.026039399206638336,
- -0.07511357963085175,
- 0.004728988278657198,
- 0.04931032285094261,
- -0.01505783200263977,
- 0.0183105431497097,
- 0.08690700680017471,
- 0.05627504736185074,
- -0.039373911917209625,
- -0.079004667699337,
- -0.03876979276537895,
- -0.009859533049166203,
- -0.027881378307938576,
- -0.0382397286593914,
- 0.003559465752914548,
- -0.10354279726743698,
- -0.0457928292453289,
- -0.025163978338241577,
- -0.08206428587436676,
- -0.0041704629547894,
- -0.0379338264465332,
- -0.0649971067905426,
- 0.06217841058969498,
- 0.0006899018189869821,
- -0.04507703334093094,
- -0.008988482877612114,
- -0.08620317280292511,
- 0.07589688152074814,
- -0.008799952454864979,
- 0.07322894781827927,
- -0.01474499050527811,
- 0.007902904413640499,
- 0.03768032789230347,
- 0.02497568167746067,
- -0.059302881360054016,
- 0.013696492649614811,
- 0.09599088877439499,
- 0.025930210947990417,
- -0.004122578073292971,
- 0.03332384675741196
- ]
- },
- {
- "keyword": "seattle",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.06044586002826691,
- 0.08130695670843124,
- 0.01881513185799122,
- 0.045494452118873596,
- -0.03064465895295143,
- 0.03560981899499893,
- 0.04874687269330025,
- -0.029095973819494247,
- 0.06507165729999542,
- 0.06426052749156952,
- -0.01745961792767048,
- -0.09987445175647736,
- 0.11249127984046936,
- -0.035979315638542175,
- 0.007273946888744831,
- -0.010188634507358074,
- 0.014036107808351517,
- -0.11254715919494629,
- -0.03578317165374756,
- -0.04912327975034714,
- -0.041747961193323135,
- 0.04023832827806473,
- -0.04683586210012436,
- 0.0024360099341720343,
- 0.08003921061754227,
- 0.05732635036110878,
- -0.017365964129567146,
- 0.03668106347322464,
- 0.019054170697927475,
- -0.023604145273566246,
- -0.03843434527516365,
- -0.04974261671304703,
- 0.03011411800980568,
- 0.053143031895160675,
- 0.04980767145752907,
- -0.01103826891630888,
- -0.06439800560474396,
- -0.037379190325737,
- 0.044834867119789124,
- 0.11442912369966507,
- -0.013736959546804428,
- 0.004683441948145628,
- -0.01949736289680004,
- -0.013134229928255081,
- -0.052395280450582504,
- -0.02144012413918972,
- 0.038620587438344955,
- -0.0016165755223482847,
- 0.01055024191737175,
- 0.03837047889828682,
- 0.034411974251270294,
- 0.003052857704460621,
- 0.010125839151442051,
- 0.003807852976024151,
- 0.052265338599681854,
- 0.0300018098205328,
- -0.07723298668861389,
- 0.028881791979074478,
- 0.00488682184368372,
- -0.04291945695877075,
- 0.0912628248333931,
- -0.06089058145880699,
- -0.07367537170648575,
- 0.002759450115263462,
- 0.023274419829249382,
- 0.04561987519264221,
- 0.02656279131770134,
- 0.03359711915254593,
- 0.02466173656284809,
- -0.16282279789447784,
- 0.009937702678143978,
- 0.003721467684954405,
- 0.0028675575740635395,
- 0.002277808729559183,
- 0.10133463144302368,
- -0.04283976927399635,
- 0.055054645985364914,
- -0.001489868969656527,
- 0.0615055076777935,
- -0.029669905081391335,
- 0.04062916338443756,
- -0.029205018654465675,
- -0.14373695850372314,
- 0.04440373182296753,
- -0.1080307587981224,
- -0.007467042654752731,
- 0.024614745751023293,
- 0.07191307842731476,
- 0.046106524765491486,
- 0.04706789553165436,
- -0.036887701600790024,
- -0.017158735543489456,
- -0.027068564668297768,
- -0.04956921562552452,
- -0.1439603716135025,
- 0.018056219443678856,
- -0.023773429915308952,
- -0.018606971949338913,
- -0.011433631181716919,
- 0.18442083895206451,
- -0.04049748182296753,
- 0.0709439143538475,
- -0.01102388184517622,
- -0.042252760380506516,
- 0.054890699684619904,
- -0.0988345518708229,
- -0.1617671251296997,
- 0.08046504110097885,
- -0.05870568007230759,
- -0.027513418346643448,
- 0.018005529418587685,
- -0.005097707733511925,
- -0.08538422733545303,
- 0.08307124674320221,
- -0.006114456802606583,
- 0.10868807137012482,
- 0.051503315567970276,
- -0.04722629860043526,
- -0.03747420385479927,
- -0.038205042481422424,
- -0.028613276779651642,
- -0.03839961439371109,
- 0.00041911430889740586,
- 0.05234314873814583,
- -0.0511031337082386,
- -0.054155200719833374,
- -0.05567905306816101,
- -4.791243709606625e-33,
- 0.0656774714589119,
- -0.08123356103897095,
- 0.06422809511423111,
- -0.01089838333427906,
- 0.026852333918213844,
- -0.0329877994954586,
- 0.012099253945052624,
- -0.011226465925574303,
- -0.03214224427938461,
- -0.01621522381901741,
- 0.04677923396229744,
- 0.0232707429677248,
- 0.020663494244217873,
- -0.059101685881614685,
- 0.06857649236917496,
- 0.033836957067251205,
- -0.0019831513054668903,
- 0.005722535774111748,
- -0.16423717141151428,
- 0.047666262835264206,
- -0.025500023737549782,
- 0.006389094982296228,
- 0.02506585791707039,
- 0.030175527557730675,
- -0.06947243958711624,
- -0.05619605630636215,
- -0.007630055770277977,
- -0.021183032542467117,
- 0.09418580681085587,
- 0.001979236491024494,
- -0.007618068717420101,
- 0.002404787577688694,
- 0.04249271750450134,
- 0.04583358392119408,
- 0.0592353530228138,
- -0.03743024915456772,
- -0.04343355819582939,
- -0.011763962917029858,
- 0.05778748169541359,
- -0.004787279758602381,
- 0.02988898754119873,
- 0.031975314021110535,
- -0.014107447117567062,
- 0.002883660141378641,
- 0.06349562853574753,
- 0.08314524590969086,
- -0.021263232454657555,
- -0.026792488992214203,
- -0.003517615143209696,
- -0.008817813359200954,
- -0.023047510534524918,
- 0.055705420672893524,
- 0.0018946779891848564,
- 0.036330919712781906,
- 0.012149089016020298,
- -0.0037076380103826523,
- 0.006703258026391268,
- -0.09130918234586716,
- -0.017845027148723602,
- 0.08429934084415436,
- -0.0064340615645051,
- 0.07991597056388855,
- 0.014866993762552738,
- -0.04962318390607834,
- 0.0462377592921257,
- -0.09265998005867004,
- 0.023829294368624687,
- 0.017021961510181427,
- 0.0260859914124012,
- 0.0021886888425797224,
- 0.09198841452598572,
- -0.04368552565574646,
- 0.10468531399965286,
- 0.079254150390625,
- -0.0002884627028834075,
- 0.009121086448431015,
- -0.06270435452461243,
- 0.09992963075637817,
- -0.04594726115465164,
- -0.014657906256616116,
- -0.04277895763516426,
- 0.019904091954231262,
- 0.015271514654159546,
- 0.030772503465414047,
- -0.006405393127351999,
- -0.026537014171481133,
- -0.03215739130973816,
- -0.077245332300663,
- 0.00006525225762743503,
- -0.05086127296090126,
- -0.1527038812637329,
- -0.0006791407358832657,
- 0.021132806316018105,
- -0.03478842228651047,
- -0.0057454281486570835,
- 2.440809878029837e-33,
- -0.008128688670694828,
- -0.10378127545118332,
- -0.036262065172195435,
- 0.04399515688419342,
- 0.020014816895127296,
- 0.007988069206476212,
- 0.04331885650753975,
- 0.03607401251792908,
- -0.007592510432004929,
- 0.0744486153125763,
- -0.026832012459635735,
- 0.017312055453658104,
- 0.049888499081134796,
- 0.05643344670534134,
- 0.05369392782449722,
- -0.010322300717234612,
- 0.09143390506505966,
- 0.020579036325216293,
- -0.08197614550590515,
- -0.0014881249517202377,
- -0.0027068068739026785,
- -0.1024722084403038,
- -0.007559399586170912,
- 0.0530061274766922,
- -0.039133220911026,
- 0.005033435765653849,
- -0.015625756233930588,
- 0.03402228653430939,
- -0.08181493729352951,
- -0.020031681284308434,
- -0.07248246669769287,
- 0.0537131242454052,
- 0.03584516420960426,
- 0.048473846167325974,
- -0.015374818816781044,
- 0.1054905578494072,
- -0.000004125738996663131,
- 0.021722465753555298,
- 0.018786845728754997,
- -0.02592742070555687,
- 0.01155293919146061,
- -0.06608417630195618,
- 0.02319442480802536,
- 0.09212174266576767,
- -0.014833466149866581,
- -0.01634293794631958,
- -0.10065984725952148,
- 0.0274429302662611,
- -0.03715921565890312,
- 0.0006774751818738878,
- -0.055847641080617905,
- 0.014429628849029541,
- -0.030135612934827805,
- 0.04364844411611557,
- -0.029785871505737305,
- 0.08371472358703613,
- -0.07287117093801498,
- 0.007616637274622917,
- 0.026038434356451035,
- -0.054300032556056976,
- -0.012185918167233467,
- 0.018613437190651894,
- -0.05445513129234314,
- 0.0887753963470459,
- -0.07292662560939789,
- 0.017093192785978317,
- 0.0430353581905365,
- -0.05243828892707825,
- -0.048792388290166855,
- -0.003988219890743494,
- 0.012818020768463612,
- 0.04590767249464989,
- -0.03579317778348923,
- -0.03256805241107941,
- -0.032693419605493546,
- -0.005703008268028498,
- -0.030091334134340286,
- 0.03547365963459015,
- -0.004596218001097441,
- 0.012530989944934845,
- 0.031038550660014153,
- 0.022956840693950653,
- -0.07974893599748611,
- 0.11593776941299438,
- 0.034950900822877884,
- 0.034973543137311935,
- 0.047935087233781815,
- 0.030736293643712997,
- -0.04995374754071236,
- -0.016223259270191193,
- -0.052491601556539536,
- 0.05967748910188675,
- -0.11971376836299896,
- -0.06683353334665298,
- -0.029986917972564697,
- -1.273199146112347e-8,
- -0.0037019425071775913,
- 0.057976216077804565,
- -0.08050837367773056,
- -0.0028630816377699375,
- 0.04005083814263344,
- 0.007641227450221777,
- 0.029106512665748596,
- 0.02029651403427124,
- 0.02640826813876629,
- 0.023952817544341087,
- 0.02457726188004017,
- -0.009039961732923985,
- -0.017605984583497047,
- -0.022035647183656693,
- -0.026148350909352303,
- -0.0784917026758194,
- -0.013568525202572346,
- 0.025882869958877563,
- -0.007455365266650915,
- 0.022587863728404045,
- -0.07192739099264145,
- 0.08798621594905853,
- -0.0246635340154171,
- 0.010618116706609726,
- 0.025477277114987373,
- -0.005699016619473696,
- 0.03341993689537048,
- 0.04340195655822754,
- 0.03863155469298363,
- 0.00952056422829628,
- 0.002395246410742402,
- 0.054600466042757034,
- -0.07280582189559937,
- -0.012083355337381363,
- -0.03768262639641762,
- -0.04407865181565285,
- -0.03134402260184288,
- 0.012111328542232513,
- 0.0002123664744431153,
- 0.010754733346402645,
- -0.0325549840927124,
- -0.008115536533296108,
- -0.03659125044941902,
- 0.006044798996299505,
- -0.0018541938625276089,
- -0.022953854873776436,
- 0.006481637712568045,
- -0.0032642879523336887,
- -0.04625677689909935,
- 0.018973788246512413,
- -0.05372278392314911,
- 0.03691236302256584,
- 0.004176804330199957,
- 0.022172758355736732,
- 0.017084278166294098,
- -0.013085748068988323,
- -0.04209650680422783,
- -0.037706971168518066,
- -0.09380201250314713,
- 0.11335381865501404,
- 0.11072190850973129,
- 0.06303048878908157,
- -0.012916676700115204,
- 0.07280363887548447
- ]
- },
- {
- "keyword": "austin",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.03173043578863144,
- 0.037723928689956665,
- 0.07829741388559341,
- 0.0985264927148819,
- -0.06484614312648773,
- -0.021066026762127876,
- 0.036565955728292465,
- -0.023368531838059425,
- -0.005765069741755724,
- -0.01129910722374916,
- 0.04317160323262215,
- -0.08648458868265152,
- 0.13043105602264404,
- -0.027745380997657776,
- 0.019716713577508926,
- -0.023070737719535828,
- 0.051341623067855835,
- -0.022069552913308144,
- 0.04832202568650246,
- -0.05151251330971718,
- 0.03618646040558815,
- 0.08440975099802017,
- -0.02343650348484516,
- 0.04450349509716034,
- 0.05958276987075806,
- 0.1192188486456871,
- 0.054352350533008575,
- 0.05277348309755325,
- -0.035490259528160095,
- -0.08592676371335983,
- 0.0018572693224996328,
- 0.0074055870063602924,
- 0.06618481874465942,
- -0.07181207090616226,
- 0.07356887310743332,
- 0.014456698670983315,
- -0.07905672490596771,
- -0.02619359828531742,
- 0.012857865542173386,
- -0.01835644245147705,
- -0.015861408784985542,
- -0.012316376902163029,
- 0.06623134762048721,
- 0.004993909038603306,
- -0.04212275519967079,
- -0.05463283881545067,
- 0.11180420964956284,
- -0.004859412554651499,
- 0.05120592936873436,
- -0.002446540631353855,
- 0.01916590891778469,
- 0.0417199544608593,
- 0.020682716742157936,
- 0.031347498297691345,
- 0.009784555062651634,
- 0.017658686265349388,
- -0.048244427889585495,
- -0.0032707240898162127,
- 0.04057607054710388,
- -0.025694699957966805,
- 0.02094741351902485,
- -0.016670074313879013,
- -0.06109131500124931,
- 0.0391622856259346,
- -0.021123003214597702,
- 0.0535762719810009,
- -0.04910464957356453,
- 0.03234781324863434,
- 0.027946211397647858,
- -0.12167705595493317,
- 0.041951049119234085,
- -0.02632295899093151,
- 0.04503405839204788,
- 0.03729841113090515,
- 0.11488733440637589,
- 0.010210518725216389,
- 0.06771048903465271,
- -0.06893262267112732,
- 0.015545557253062725,
- 0.022972453385591507,
- -0.021754352375864983,
- -0.0641416385769844,
- -0.07900982350111008,
- -0.024452567100524902,
- -0.07557427138090134,
- -0.06014937907457352,
- 0.06389841437339783,
- 0.03160230815410614,
- 0.026528120040893555,
- -0.0055831908248364925,
- -0.002347346628084779,
- 0.04699133709073067,
- -0.07810553908348083,
- -0.04221973568201065,
- -0.01128824707120657,
- -0.016378188505768776,
- -0.03148524835705757,
- 0.006943289190530777,
- -0.032639794051647186,
- 0.23032552003860474,
- 0.028768064454197884,
- 0.026718048378825188,
- 0.009061385877430439,
- 0.10734233260154724,
- 0.05759074538946152,
- -0.05075987055897713,
- -0.0838061198592186,
- 0.030196884647011757,
- -0.020755913108587265,
- -0.023965392261743546,
- 0.04415138438344002,
- -0.04381980746984482,
- -0.07451315224170685,
- 0.05017376318573952,
- 0.030714692547917366,
- 0.04797299951314926,
- 0.051012370735406876,
- 0.050173062831163406,
- -0.020127201452851295,
- -0.013279646635055542,
- -0.021607909351587296,
- -0.00033939784043468535,
- -0.03356875479221344,
- 0.02336578071117401,
- 0.012655451893806458,
- -0.02154957689344883,
- -0.10984907299280167,
- -3.445178883666285e-33,
- -0.04903895780444145,
- -0.08677884936332703,
- 0.0065522575750947,
- 0.021168913692235947,
- -0.00547799514606595,
- -0.021116970106959343,
- -0.06138438358902931,
- -0.029384514316916466,
- -0.04461543262004852,
- -0.05763157084584236,
- 0.03496304899454117,
- 0.03838162496685982,
- 0.028750741854310036,
- -0.0060609676875174046,
- 0.09239374846220016,
- 0.013236870989203453,
- 0.0045354473404586315,
- 0.020399002358317375,
- -0.03706540912389755,
- -0.014282887801527977,
- -0.09153904765844345,
- 0.028125228360295296,
- 0.0042199608869850636,
- 0.03296311944723129,
- -0.06827984005212784,
- -0.01887696608901024,
- 0.029097016900777817,
- -0.057415395975112915,
- 0.060411762446165085,
- 0.01805023103952408,
- -0.043208975344896317,
- -0.009022392332553864,
- 0.08123337477445602,
- -0.024166321381926537,
- 0.02587280049920082,
- 0.01866702362895012,
- -0.011869130656123161,
- -0.05819094926118851,
- -0.0507081113755703,
- 0.021104680374264717,
- -0.0491187609732151,
- 0.05724341794848442,
- 0.020468028262257576,
- -0.005693205166608095,
- 0.03064999356865883,
- 0.025780100375413895,
- -0.02754082717001438,
- 0.05532154068350792,
- 0.02727333828806877,
- 0.017646849155426025,
- 0.012619669549167156,
- -0.04269358143210411,
- -0.004634647164493799,
- -0.011821349151432514,
- 0.05027524381875992,
- -0.0053196921944618225,
- -0.008704977110028267,
- -0.005578543059527874,
- 0.0642579197883606,
- 0.014428731985390186,
- 0.004102690611034632,
- 0.10485324263572693,
- 0.009790841490030289,
- 0.000362956925528124,
- 0.019465792924165726,
- -0.029861263930797577,
- 0.024703076109290123,
- 0.0037439451552927494,
- 0.04133228585124016,
- 0.03262176364660263,
- -0.029905622825026512,
- 0.059890251606702805,
- 0.033739831298589706,
- 0.05316358059644699,
- -0.04765898361802101,
- 0.06184754520654678,
- -0.0837833508849144,
- 0.00184286804869771,
- -0.024560797959566116,
- 0.04802785813808441,
- -0.03280564770102501,
- 0.022265275940299034,
- -0.0985981896519661,
- 0.06268590688705444,
- 0.07703951001167297,
- -0.01135549508035183,
- -0.08310339599847794,
- -0.006100369151681662,
- 0.002252256264910102,
- 0.004652487579733133,
- -0.04783860966563225,
- 0.014124026522040367,
- -0.014534707181155682,
- 0.008868147619068623,
- -0.0182664655148983,
- 2.9744622727840775e-33,
- 0.018698178231716156,
- -0.07968463003635406,
- 0.04666190966963768,
- 0.07628396153450012,
- -0.0019056799355894327,
- -0.04359704628586769,
- 0.037400584667921066,
- 0.05312834307551384,
- 0.022366996854543686,
- 0.006063840351998806,
- -0.0406254418194294,
- -0.01642169989645481,
- 0.1055837944149971,
- -0.0449904128909111,
- 0.018712827935814857,
- 0.0413203127682209,
- 0.08159273862838745,
- 0.01628253236413002,
- -0.08608841150999069,
- 0.03614991530776024,
- -0.060064371675252914,
- -0.018124358728528023,
- -0.0413643904030323,
- -0.06156196817755699,
- -0.07421329617500305,
- 0.03157700598239899,
- -0.04014935344457626,
- 0.0445345900952816,
- -0.09763550758361816,
- -0.018863895907998085,
- -0.07215695828199387,
- 0.013139386661350727,
- -0.011374237015843391,
- 0.06542831659317017,
- -0.034336481243371964,
- 0.15910904109477997,
- 0.012321431189775467,
- 0.03731895238161087,
- 0.05553041771054268,
- -0.03607542812824249,
- 0.018107442185282707,
- 0.04183191433548927,
- 0.018414638936519623,
- 0.07433141767978668,
- 0.021846545860171318,
- 0.0032683981116861105,
- 0.01575016975402832,
- 0.07762300968170166,
- -0.022191761061549187,
- -0.0031272040214389563,
- -0.11581142246723175,
- -0.03277348726987839,
- -0.07920995354652405,
- 0.0030240193009376526,
- -0.011517023667693138,
- -0.0010044644586741924,
- -0.011030337773263454,
- 0.05645286664366722,
- 0.0006407301407307386,
- 0.014507710002362728,
- -0.005062479991465807,
- 0.0017816105391830206,
- 0.07661673426628113,
- 0.01901550032198429,
- -0.08423051983118057,
- 0.04818165674805641,
- -0.01593669317662716,
- -0.03551013395190239,
- -0.05688962712883949,
- 0.012856214307248592,
- 0.059857066720724106,
- 0.04054222255945206,
- -0.10914477705955505,
- -0.041517678648233414,
- 0.029966648668050766,
- 0.09651987999677658,
- -0.02169434167444706,
- 0.029048409312963486,
- -0.04151386395096779,
- -0.031649332493543625,
- 0.050156839191913605,
- 0.012956386432051659,
- -0.12042766809463501,
- 0.0748974084854126,
- 0.03130048140883446,
- 0.03837399557232857,
- -0.003962479066103697,
- 0.05159715935587883,
- 0.08966939896345139,
- -0.005760282278060913,
- -0.061839133501052856,
- 0.030352631583809853,
- -0.08404592424631119,
- -0.13678927719593048,
- -0.09390915930271149,
- -1.1546621436764326e-8,
- -0.11562776565551758,
- 0.02598358690738678,
- -0.05163635313510895,
- 0.020034924149513245,
- 0.0674368143081665,
- 0.13924969732761383,
- 0.023346206173300743,
- 0.05779002234339714,
- 0.059416454285383224,
- 0.020478099584579468,
- 0.06460566073656082,
- -0.041164059191942215,
- -0.07524832338094711,
- -0.034850139170885086,
- -0.019530024379491806,
- 0.0005378301138989627,
- -0.028374556452035904,
- 0.025600025430321693,
- -0.032596245408058167,
- -0.0663645938038826,
- -0.0308372862637043,
- 0.044428784400224686,
- 0.032536886632442474,
- 0.03736927732825279,
- -0.0033361504320055246,
- -0.06336168199777603,
- 0.012522818520665169,
- 0.044560860842466354,
- 0.013580650091171265,
- -0.06453271955251694,
- 0.010045851580798626,
- 0.016667043790221214,
- -0.1347968727350235,
- -0.05668339133262634,
- -0.02822897396981716,
- -0.09421897679567337,
- -0.035921066999435425,
- 0.043166276067495346,
- -0.013315491378307343,
- -0.0039072902873158455,
- -0.046022046357393265,
- -0.0767272561788559,
- -0.04367614537477493,
- -0.02144348993897438,
- -0.0609368160367012,
- 0.018678700551390648,
- -0.0012652215082198381,
- 0.014071603305637836,
- -0.04889905825257301,
- 0.008973076939582825,
- -0.044231049716472626,
- -0.05949956923723221,
- 0.028077110648155212,
- 0.04998402297496796,
- 0.04445769637823105,
- -0.0540584921836853,
- 0.056568443775177,
- -0.044792287051677704,
- -0.06833937019109726,
- 0.036632247269153595,
- 0.028769973665475845,
- 0.0009034068207256496,
- 0.010134680196642876,
- 0.02527899108827114
- ]
- },
- {
- "keyword": "denver",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.12258004397153854,
- -0.04483210667967796,
- 0.010860182344913483,
- 0.001285379403270781,
- -0.011619716882705688,
- -0.026796285063028336,
- -0.038883063942193985,
- -0.07160639017820358,
- 0.0009398235706612468,
- 0.00991468783468008,
- -0.028986895456910133,
- -0.023217912763357162,
- -0.010727353394031525,
- -0.012699522078037262,
- -0.05779394134879112,
- 0.004421009216457605,
- 0.04583459347486496,
- -0.05774086341261864,
- 0.0018565735081210732,
- -0.12070050835609436,
- -0.0638226866722107,
- 0.050439171493053436,
- -0.010352370329201221,
- 0.05181511119008064,
- 0.020522862672805786,
- 0.03310919925570488,
- -0.04557143896818161,
- 0.04656554386019707,
- 0.011049233376979828,
- -0.08173289149999619,
- -0.0024394013453274965,
- 0.0006757128867320716,
- 0.03328683227300644,
- -0.02765098214149475,
- 0.07083228975534439,
- -0.0045359134674072266,
- -0.023739391937851906,
- 0.0012299851514399052,
- 0.043512534350156784,
- 0.04707825183868408,
- 0.028617581352591515,
- -0.06386660784482956,
- -0.025213811546564102,
- 0.02636057324707508,
- -0.013413765467703342,
- 0.0737546980381012,
- -0.021114548668265343,
- 0.07033155858516693,
- 0.13727478682994843,
- 0.019018806517124176,
- 0.08681447058916092,
- -0.020503347739577293,
- 0.0032876809127628803,
- -0.016153326258063316,
- 0.01278244610875845,
- 0.06323795020580292,
- -0.0605289451777935,
- -0.009145923890173435,
- 0.014359917491674423,
- 0.05659622699022293,
- 0.08029233664274216,
- 0.042026542127132416,
- -0.08515800535678864,
- 0.03730160742998123,
- -0.0023192791268229485,
- 0.01598449796438217,
- 0.052492789924144745,
- 0.002450451022014022,
- -0.08143896609544754,
- -0.17692631483078003,
- 0.006419837009161711,
- 0.025098271667957306,
- 0.03135248273611069,
- -0.019740980118513107,
- 0.08771125227212906,
- -0.0027938790153712034,
- -0.029701393097639084,
- -0.013818477280437946,
- 0.01884525455534458,
- 0.03402557969093323,
- 0.07782742381095886,
- 0.006900198757648468,
- -0.004550265613943338,
- 0.008101435378193855,
- -0.04288381710648537,
- -0.020570427179336548,
- 0.022169774398207664,
- 0.008321145549416542,
- 0.05820894241333008,
- 0.023516690358519554,
- -0.0798894613981247,
- -0.06584580987691879,
- -0.08013145625591278,
- 0.011207101866602898,
- -0.06693671643733978,
- 0.030023593455553055,
- 0.04805421084165573,
- -0.06467633694410324,
- -0.020756039768457413,
- 0.1885237693786621,
- -0.051720961928367615,
- 0.05639725551009178,
- 0.01812935806810856,
- -0.016866512596607208,
- 0.060902275145053864,
- 0.011197436600923538,
- -0.08352872729301453,
- 0.04618313908576965,
- -0.08880677074193954,
- 0.054329920560121536,
- 0.036045316606760025,
- 0.02204037643969059,
- -0.029014917090535164,
- 0.003997812047600746,
- 0.05027451738715172,
- 0.006637305952608585,
- 0.012987549416720867,
- -0.0038826751988381147,
- -0.03638264536857605,
- -0.03670211136341095,
- -0.02034279704093933,
- 0.08194227516651154,
- 0.00674204807728529,
- 0.110499307513237,
- -0.022635068744421005,
- -0.08229541033506393,
- -0.00758889177814126,
- -3.7178050436387595e-33,
- 0.0740109384059906,
- -0.014165601693093777,
- 0.05125320702791214,
- 0.021555781364440918,
- -0.0010449266992509365,
- -0.036945875734090805,
- -0.014696741476655006,
- 0.02982666902244091,
- -0.04985780268907547,
- 0.018952302634716034,
- -0.009976368397474289,
- -0.06694453209638596,
- 0.041048068553209305,
- -0.032417234033346176,
- 0.09151230752468109,
- 0.06693471968173981,
- 0.0875030979514122,
- -0.023177919909358025,
- -0.06373243778944016,
- 0.00015565076319035143,
- -0.11272625625133514,
- -0.005780516657978296,
- -0.05849317088723183,
- 0.10453370213508606,
- -0.03685632720589638,
- -0.014686857350170612,
- -0.06242377683520317,
- -0.019173860549926758,
- 0.060229137539863586,
- -0.023744069039821625,
- -0.02911800891160965,
- 0.048896707594394684,
- 0.017385443672537804,
- 0.07066687196493149,
- 0.07558013498783112,
- 0.0011251362739130855,
- -0.05445340275764465,
- -0.010254979133605957,
- -0.03343500196933746,
- 0.04538322612643242,
- 0.043087515980005264,
- 0.032761190086603165,
- -0.004610385745763779,
- -0.09228818863630295,
- 0.04570481926202774,
- 0.04922842979431152,
- 0.030145548284053802,
- -0.028818029910326004,
- -0.007000416051596403,
- -0.04588846117258072,
- 0.00045625705388374627,
- 0.0062047140672802925,
- -0.11368648707866669,
- 0.0012200267519801855,
- -0.03574797138571739,
- -0.036870621144771576,
- -0.04185191169381142,
- -0.06659683585166931,
- 0.039293259382247925,
- 0.06168738380074501,
- -0.01847730204463005,
- 0.08455144613981247,
- -0.08536781370639801,
- -0.05379005894064903,
- -0.05842842534184456,
- -0.11228009313344955,
- -0.010229559615254402,
- -0.024810437113046646,
- 0.10281960666179657,
- 0.03468727320432663,
- 0.02848563902080059,
- 0.015610920265316963,
- 0.10907603800296783,
- 0.021869098767638206,
- 0.03681968152523041,
- 0.01819138415157795,
- -0.05994865670800209,
- 0.03448038920760155,
- 0.004547453951090574,
- -0.00453692814335227,
- -0.0037842141464352608,
- 0.0035585619043558836,
- -0.012787281535565853,
- 0.05415312573313713,
- 0.05041515827178955,
- 0.006789105478674173,
- -0.08350659906864166,
- -0.07152671366930008,
- -0.04748216271400452,
- -0.04596362262964249,
- -0.16483508050441742,
- -0.017344551160931587,
- 0.03297717496752739,
- -0.06862909346818924,
- 0.0833682268857956,
- 2.1913407730975692e-33,
- 0.0892980620265007,
- -0.05351119861006737,
- 0.013778765685856342,
- 0.0617324635386467,
- 0.004822955466806889,
- 0.024599039927124977,
- 0.02150493487715721,
- 0.037245601415634155,
- 0.004710488487035036,
- -0.02071092091500759,
- -0.07102931290864944,
- -0.035447049885988235,
- 0.03113417699933052,
- 0.0006622262299060822,
- 0.04499857872724533,
- 0.056599315255880356,
- -0.01701590046286583,
- -0.003277078503742814,
- -0.0360911600291729,
- 0.0675516128540039,
- -0.0381351001560688,
- -0.04343465715646744,
- -0.09835103899240494,
- -0.03703736141324043,
- 0.03819973021745682,
- 0.007456495426595211,
- -0.04854648560285568,
- -0.007045676000416279,
- -0.015129837207496166,
- 0.03770119696855545,
- -0.04634123668074608,
- -0.054989319294691086,
- 0.002925696549937129,
- 0.07292532175779343,
- -0.007028711494058371,
- 0.1431608945131302,
- -0.026636632159352303,
- 0.0005554421804845333,
- -0.04056275263428688,
- -0.010894483886659145,
- -0.03144108131527901,
- 0.02843547984957695,
- 0.03893660753965378,
- 0.05760348588228226,
- 0.025713330134749413,
- 0.0525146946310997,
- -0.023438487201929092,
- 0.030320001766085625,
- 0.07829492539167404,
- -0.016696764156222343,
- -0.046843383461236954,
- 0.016333308070898056,
- -0.11464151740074158,
- 0.02423095889389515,
- -0.009252632968127728,
- 0.04604734107851982,
- 0.03892382234334946,
- 0.030551841482520103,
- -0.05298948287963867,
- -0.024802852421998978,
- 0.036003608256578445,
- -0.013265409506857395,
- -0.045324210077524185,
- 0.014810181222856045,
- -0.02056427113711834,
- -0.009559410624206066,
- 0.005766024813055992,
- -0.02023332752287388,
- -0.04043840244412422,
- 0.05013950169086456,
- -0.00472774263471365,
- 0.017854105681180954,
- -0.010893617756664753,
- -0.0286614578217268,
- -0.03356952592730522,
- -0.05225634202361107,
- 0.05426419526338577,
- 0.027995271608233452,
- -0.04091407731175423,
- 0.0631880983710289,
- 0.051933687180280685,
- -0.017309166491031647,
- -0.06763624399900436,
- 0.07491211593151093,
- 0.05464482307434082,
- 0.04568938910961151,
- 0.0803186222910881,
- -0.0076746148988604546,
- -0.03930521011352539,
- -0.016853734850883484,
- 0.02528487518429756,
- 0.04565354064106941,
- -0.08680660277605057,
- -0.050294894725084305,
- -0.02197618968784809,
- -1.0796306959548474e-8,
- 0.05698244273662567,
- 0.11081049591302872,
- -0.12297845631837845,
- -0.03581506386399269,
- 0.050020888447761536,
- 0.0386960543692112,
- 0.06765769422054291,
- 0.05564295873045921,
- -0.052781663835048676,
- 0.004514351487159729,
- -0.01301627978682518,
- 0.013527260161936283,
- -0.01979982852935791,
- 0.01602044515311718,
- 0.008449126966297626,
- 0.001279979944229126,
- -0.06625766307115555,
- -0.05267894268035889,
- 0.010193267837166786,
- -0.03826335445046425,
- -0.014225517399609089,
- 0.017324307933449745,
- -0.07870914041996002,
- 0.006623381748795509,
- -0.018600303679704666,
- -0.06840065121650696,
- 0.08126471191644669,
- 0.06583486497402191,
- -0.00007000796176725999,
- 0.02417719177901745,
- 0.02260703779757023,
- 0.09028348326683044,
- -0.0074458373710513115,
- -0.1360856592655182,
- 0.08263907581567764,
- -0.058826059103012085,
- 0.009261122904717922,
- -0.008487110026180744,
- -0.015701407566666603,
- -0.04292074963450432,
- -0.0005905140424147248,
- 0.014623486436903477,
- -0.013018163852393627,
- -0.05276995897293091,
- 0.037486474961042404,
- -0.003573288209736347,
- 0.07253438979387283,
- -0.007764671463519335,
- -0.0013262623688206077,
- 0.0007477382314391434,
- -0.0004128137370571494,
- 0.05619794875383377,
- 0.005152096971869469,
- 0.10650207102298737,
- 0.06344812363386154,
- 0.0045323739759624004,
- -0.0037630777806043625,
- -0.11170069128274918,
- -0.05989383906126022,
- -0.015806738287210464,
- 0.07796625047922134,
- -0.007532185409218073,
- 0.04657801613211632,
- -0.00004766164056491107
- ]
- },
- {
- "keyword": "portland",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.09240894764661789,
- 0.04412422329187393,
- 0.021391453221440315,
- 0.0529368594288826,
- -0.04181314632296562,
- 0.0373169407248497,
- 0.010333132930099964,
- -0.055807918310165405,
- 0.011638381518423557,
- -0.010217951610684395,
- 0.006299965083599091,
- -0.04815319553017616,
- 0.0823095440864563,
- -0.04290223494172096,
- -0.008391122333705425,
- 0.05523088946938515,
- 0.026976482942700386,
- -0.06349360942840576,
- 0.0668637752532959,
- -0.030795758590102196,
- -0.03883783146739006,
- -0.0031421410385519266,
- -0.02792217768728733,
- 0.021666642278432846,
- 0.05412190780043602,
- 0.07480096817016602,
- 0.023270079866051674,
- 0.013029025867581367,
- -0.03099420666694641,
- -0.031968165189027786,
- -0.06325103342533112,
- -0.006547329947352409,
- 0.05772349610924721,
- 0.008688067086040974,
- 0.04325219988822937,
- 0.04714558273553848,
- -0.006301631685346365,
- -0.02253197506070137,
- 0.033735401928424835,
- 0.1190398558974266,
- 0.028218403458595276,
- -0.01405484788119793,
- -0.03594464436173439,
- -0.0000022081135284679476,
- -0.08705989271402359,
- 0.00919676199555397,
- 0.03647557646036148,
- 0.01615549623966217,
- 0.014588008634746075,
- 0.06480350345373154,
- 0.046518538147211075,
- 0.021615171805024147,
- -0.00023700094607193023,
- -0.061403438448905945,
- 0.024642109870910645,
- -0.020430799573659897,
- -0.03471045941114426,
- 0.10837575793266296,
- 0.01604151539504528,
- -0.048909951001405716,
- 0.11633386462926865,
- -0.04673435539007187,
- -0.10298626124858856,
- 0.031102651730179787,
- 0.01646466553211212,
- -0.0012075778795406222,
- 0.010283205658197403,
- 0.05353066325187683,
- -0.008197033777832985,
- -0.20561368763446808,
- 0.006096116732805967,
- 0.0484020859003067,
- -0.034347210079431534,
- -0.014592543244361877,
- 0.09008333086967468,
- 0.04596537724137306,
- 0.006552617531269789,
- -0.00913897156715393,
- 0.025323539972305298,
- 0.001566077582538128,
- 0.06708476692438126,
- -0.0266136284917593,
- -0.08399634063243866,
- 0.03859293833374977,
- -0.04684675857424736,
- 0.012838528491556644,
- 0.033546458929777145,
- 0.08158046007156372,
- 0.040833115577697754,
- -0.004551854450255632,
- -0.06619483232498169,
- 0.004753698594868183,
- -0.0649012103676796,
- -0.032887667417526245,
- -0.02320004068315029,
- 0.00423005735501647,
- -0.013636297546327114,
- -0.008996023796498775,
- -0.051840800791978836,
- 0.21055494248867035,
- -0.009444163180887699,
- 0.0371323898434639,
- -0.00483354227617383,
- -0.01905994676053524,
- 0.0495595820248127,
- -0.07247275859117508,
- -0.052366916090250015,
- 0.03385870158672333,
- -0.00643228180706501,
- 0.03802512213587761,
- -0.01727268472313881,
- -0.014808650128543377,
- -0.06770554184913635,
- 0.012539020739495754,
- 0.037584088742733,
- 0.0754447802901268,
- 0.0568729005753994,
- 0.011380163952708244,
- -0.019481565803289413,
- -0.05946796387434006,
- -0.005614372901618481,
- -0.03304824233055115,
- -0.05444685369729996,
- 0.057585638016462326,
- -0.05184311792254448,
- -0.05110517516732216,
- -0.02670697495341301,
- -4.238742630278934e-33,
- 0.021883580833673477,
- -0.009138291701674461,
- 0.045640792697668076,
- 0.027438247576355934,
- -0.012960237450897694,
- -0.015238474123179913,
- -0.013077293522655964,
- -0.049489445984363556,
- -0.07560396194458008,
- -0.04188307374715805,
- 0.04670344293117523,
- 0.00572269968688488,
- 0.03204068914055824,
- 0.05976802110671997,
- 0.09577329456806183,
- -0.009260417893528938,
- 0.025562532246112823,
- 0.012985690496861935,
- -0.04379141330718994,
- -0.06295686215162277,
- -0.08765459060668945,
- 0.022642869502305984,
- -0.022095326334238052,
- 0.035699233412742615,
- -0.09923234581947327,
- -0.019891656935214996,
- -0.008064396679401398,
- -0.04408733919262886,
- 0.02468726970255375,
- 0.004662482067942619,
- -0.003300879616290331,
- 0.030273795127868652,
- 0.038615819066762924,
- 0.0670897588133812,
- -0.030194994062185287,
- 0.02780625969171524,
- -0.09494905918836594,
- -0.02558150142431259,
- -0.029067836701869965,
- -0.06401482969522476,
- 0.03516923636198044,
- 0.020124122500419617,
- 0.005590157117694616,
- 0.011698340997099876,
- 0.05913076922297478,
- 0.035686928778886795,
- -0.0706484317779541,
- -0.03977976739406586,
- -0.014299370348453522,
- -0.04433503374457359,
- 0.0014781138161197305,
- 0.08520696312189102,
- -0.07025007158517838,
- 0.00131456449162215,
- 0.013741383329033852,
- -0.09837476164102554,
- -0.012993091717362404,
- 0.018329910933971405,
- 0.007204195484519005,
- 0.04844296723604202,
- 0.06447634845972061,
- 0.09255712479352951,
- 0.00042644134373404086,
- 0.020017502829432487,
- -0.03033275716006756,
- -0.1092463806271553,
- 0.009843253530561924,
- 0.06797458976507187,
- 0.11450984328985214,
- 0.01491562556475401,
- 0.04250813648104668,
- 0.020990286022424698,
- 0.11801714450120926,
- 0.054655760526657104,
- -0.061845820397138596,
- 0.007987129501998425,
- -0.037022609263658524,
- 0.0774618536233902,
- -0.03478032723069191,
- 0.0372929722070694,
- 0.010763522237539291,
- -0.038136713206768036,
- -0.012856665998697281,
- -0.00017702260811347514,
- -0.026653185486793518,
- -0.02818235009908676,
- 0.03453440219163895,
- -0.06264062970876694,
- -0.05921122059226036,
- 0.005123289301991463,
- -0.12452518194913864,
- -0.008847321383655071,
- -0.020299287512898445,
- 0.03368685394525528,
- 0.011081578209996223,
- 2.1749821161669462e-33,
- 0.004669917281717062,
- -0.1028653159737587,
- 0.02679404430091381,
- -0.031296998262405396,
- -0.022451017051935196,
- 0.028974691405892372,
- 0.05051843449473381,
- 0.01006222888827324,
- -0.04519890621304512,
- 0.010463790968060493,
- -0.061359573155641556,
- -0.06849537044763565,
- 0.09517169743776321,
- 0.07202402502298355,
- 0.04654423147439957,
- 0.06946054846048355,
- 0.06152328848838806,
- -0.03142889589071274,
- -0.023499978706240654,
- 0.008092354983091354,
- -0.05858633667230606,
- -0.0635853037238121,
- -0.04617335647344589,
- 0.04709816351532936,
- -0.05438157171010971,
- 0.03720444440841675,
- -0.019973894581198692,
- -0.001302201533690095,
- -0.10650971531867981,
- -0.011277034878730774,
- -0.05784529820084572,
- 0.022404242306947708,
- -0.024551700800657272,
- 0.11262621730566025,
- -0.01714632287621498,
- 0.1080070286989212,
- -0.03585808351635933,
- 0.0440378375351429,
- 0.03058195672929287,
- -0.04828682541847229,
- 0.036751240491867065,
- -0.07676345854997635,
- -0.0019736788235604763,
- 0.08019808679819107,
- 0.06034482270479202,
- -0.014564698562026024,
- 0.03183485567569733,
- -0.0614524744451046,
- -0.02216416224837303,
- -0.006238069850951433,
- -0.02310425229370594,
- 0.0773438885807991,
- -0.1118617057800293,
- 0.0712665319442749,
- 0.016175519675016403,
- 0.051873814314603806,
- -0.10521197319030762,
- 0.04310489445924759,
- -0.039731115102767944,
- -0.08635345846414566,
- -0.019837625324726105,
- 0.05940183997154236,
- -0.02581244334578514,
- 0.05987148731946945,
- -0.047883063554763794,
- 0.058412179350852966,
- 0.010636192746460438,
- -0.007834890857338905,
- -0.09417181462049484,
- 0.004176680464297533,
- 0.04323151707649231,
- 0.09505977481603622,
- -0.07372933626174927,
- 0.0006757877999916673,
- -0.005921592004597187,
- -0.01758933998644352,
- -0.019132502377033234,
- 0.05525647848844528,
- -0.1267135888338089,
- 0.044779952615499496,
- -0.022626202553510666,
- -0.03824600204825401,
- -0.08238285034894943,
- 0.12411069869995117,
- 0.030100733041763306,
- -0.0127607686445117,
- 0.09201955050230026,
- 0.011983358301222324,
- -0.03202854096889496,
- -0.0062282495200634,
- 0.006216502748429775,
- 0.054454635828733444,
- -0.09815513342618942,
- -0.06867998838424683,
- -0.0360911563038826,
- -1.1066831007155997e-8,
- 0.0033173661213368177,
- 0.046561237424612045,
- -0.05321021378040314,
- 0.02756459452211857,
- 0.027002893388271332,
- 0.03128020465373993,
- 0.04227204620838165,
- 0.07506252825260162,
- -0.07368689775466919,
- 0.05084856599569321,
- -0.0021473108790814877,
- -0.039231352508068085,
- -0.024723347276449203,
- 0.012493601068854332,
- 0.020098339766263962,
- -0.03553842008113861,
- -0.0627896711230278,
- 0.03822179138660431,
- 0.01130970474332571,
- -0.037894003093242645,
- -0.09626947343349457,
- 0.06328404694795609,
- 0.04091544821858406,
- 0.02266121096909046,
- -0.057084571570158005,
- 0.0011390033178031445,
- 0.021855473518371582,
- -0.030874842777848244,
- 0.05944588780403137,
- -0.06143656373023987,
- 0.027871988713741302,
- 0.04146285355091095,
- -0.09947363287210464,
- -0.08060851693153381,
- -0.046165112406015396,
- 0.005984117742627859,
- 0.04683201014995575,
- 0.0028425955679267645,
- -0.006176797207444906,
- 0.04206273332238197,
- -0.037988826632499695,
- -0.039657678455114365,
- -0.035664211958646774,
- 0.0047760009765625,
- 0.025967681780457497,
- -0.025444647297263145,
- 0.016535913571715355,
- -0.04389330372214317,
- 0.015091613866388798,
- -0.00024947067140601575,
- -0.07467030733823776,
- 0.014216974377632141,
- 0.04803084582090378,
- 0.029936209321022034,
- 0.0548398494720459,
- -0.017658598721027374,
- -0.06504079699516296,
- -0.017279770225286484,
- -0.041400935500860214,
- 0.06479723751544952,
- 0.04435388743877411,
- 0.03407525643706322,
- 0.052086345851421356,
- 0.017083236947655678
- ]
- },
- {
- "keyword": "miami",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.050108227878808975,
- 0.02271333336830139,
- -0.07426688820123672,
- 0.04491910710930824,
- -0.0008157124975696206,
- -0.024248778820037842,
- 0.032597243785858154,
- -0.07439275085926056,
- 0.046482983976602554,
- 0.024271618574857712,
- -0.008954265154898167,
- -0.0628780722618103,
- 0.05650947242975235,
- 0.02249433659017086,
- 0.01448705606162548,
- -0.08202363550662994,
- -0.0014378539053723216,
- -0.06204267218708992,
- 0.01781661994755268,
- -0.09188400954008102,
- -0.015701422467827797,
- 0.04160340875387192,
- -0.06179770454764366,
- 0.007643749471753836,
- -0.03412334620952606,
- 0.049315325915813446,
- -0.029341265559196472,
- 0.06671316176652908,
- -0.001292838016524911,
- -0.08776731044054031,
- -0.017073042690753937,
- -0.013102914206683636,
- -0.03141511231660843,
- 0.02683447115123272,
- 0.01109412033110857,
- -0.10793471336364746,
- -0.10049901157617569,
- -0.01339091919362545,
- 0.012288923375308514,
- 0.03396426886320114,
- -0.02525302581489086,
- -0.037064794450998306,
- 0.02566574700176716,
- 0.060443684458732605,
- 0.006010538432747126,
- -0.08805892616510391,
- -0.016788039356470108,
- 0.08808478713035583,
- 0.08904848247766495,
- 0.026272917166352272,
- 0.060877103358507156,
- 0.09554984420537949,
- -0.096047542989254,
- 0.04266337677836418,
- -0.01038235705345869,
- 0.12211234867572784,
- 0.012572381645441055,
- 0.00490918755531311,
- -0.03384384512901306,
- 0.027695417404174805,
- 0.13153202831745148,
- 0.04502907022833824,
- -0.10479441285133362,
- 0.0021212385036051273,
- 0.03013446368277073,
- 0.01944258064031601,
- 0.048495106399059296,
- 0.05240277200937271,
- -0.03875776007771492,
- -0.10778965055942535,
- -0.005723153240978718,
- -0.014157230965793133,
- 0.01766386814415455,
- 0.04060303792357445,
- 0.08028645068407059,
- 0.04687312990427017,
- 0.06500031054019928,
- 0.047199614346027374,
- 0.051119040697813034,
- 0.03081505000591278,
- 0.0627402514219284,
- -0.14017091691493988,
- -0.06243942677974701,
- 0.03588661551475525,
- -0.07359135895967484,
- 0.024324392899870872,
- -0.047540877014398575,
- 0.0013607805594801903,
- 0.07908732444047928,
- 0.03119044192135334,
- -0.06497181206941605,
- 0.0035962306428700686,
- -0.04278898239135742,
- -0.04584922641515732,
- -0.0609169565141201,
- 0.05253516137599945,
- -0.09250634908676147,
- -0.016153017058968544,
- 0.01770349033176899,
- 0.19065441191196442,
- -0.028796054422855377,
- 0.07739078998565674,
- -0.04480118677020073,
- 0.03676515445113182,
- 0.01964876987040043,
- 0.01075755339115858,
- -0.04308503121137619,
- 0.01570962369441986,
- -0.036800891160964966,
- 0.050395667552948,
- -0.08317124098539352,
- 0.009237976744771004,
- -0.03332063928246498,
- -0.007009975612163544,
- -0.013567849062383175,
- 0.0556938536465168,
- 0.052518222481012344,
- -0.001802512677386403,
- -0.028233861550688744,
- -0.04662856087088585,
- -0.007756025064736605,
- 0.07504692673683167,
- -0.021761223673820496,
- 0.046263400465250015,
- -0.03648889809846878,
- -0.05656201019883156,
- -0.040718015283346176,
- -3.8643407000443273e-33,
- 0.07232744991779327,
- -0.04898887127637863,
- 0.061071574687957764,
- 0.029043858870863914,
- 0.056565701961517334,
- 0.024834100157022476,
- 0.004182328004390001,
- -0.05196714773774147,
- -0.10505223274230957,
- 0.034661952406167984,
- 0.06310334801673889,
- 0.010312777943909168,
- -0.008085153065621853,
- -0.031221462413668633,
- 0.12896741926670074,
- 0.02161507122218609,
- 0.050366003066301346,
- -0.003644014475867152,
- -0.11819443851709366,
- 0.01093621551990509,
- -0.06694401800632477,
- 0.08610352873802185,
- 0.035103026777505875,
- 0.06462216377258301,
- -0.010409957729279995,
- 0.041177988052368164,
- -0.11339090764522552,
- 0.020281916484236717,
- 0.0014148977352306247,
- 0.02112787775695324,
- -0.0729885995388031,
- 0.017783962190151215,
- -0.017790811136364937,
- -0.012418144382536411,
- 0.059990257024765015,
- -0.07812941074371338,
- 0.03217385336756706,
- -0.05127953365445137,
- 0.001967557007446885,
- -0.007958085276186466,
- 0.07882281392812729,
- 0.03860287368297577,
- 0.023477019742131233,
- 0.01656421832740307,
- 0.012960038147866726,
- -0.0058006043545901775,
- -0.04261382669210434,
- 0.06325367838144302,
- 0.007293484639376402,
- -0.03699944168329239,
- -0.038132403045892715,
- -0.05071553960442543,
- -0.0347730852663517,
- 0.015564076602458954,
- 0.0023833021987229586,
- 0.016429884359240532,
- -0.005724071525037289,
- -0.06347460299730301,
- 0.054430752992630005,
- 0.034656137228012085,
- -0.009988694451749325,
- 0.11244804412126541,
- -0.02665630355477333,
- -0.02592640183866024,
- 0.02659779042005539,
- -0.04983743652701378,
- 0.043633535504341125,
- 0.035145118832588196,
- 0.05384514853358269,
- -0.0019981134682893753,
- 0.03530002385377884,
- 0.024386562407016754,
- 0.04376361146569252,
- 0.042139653116464615,
- 0.052043307572603226,
- 0.021412180736660957,
- 0.009268973022699356,
- 0.0919884592294693,
- -0.02236703410744667,
- -0.02965947799384594,
- -0.03938805311918259,
- -0.026466771960258484,
- 0.05196671560406685,
- 0.0319894403219223,
- 0.0360354445874691,
- -0.0038440909702330828,
- -0.08915017545223236,
- -0.04391482099890709,
- -0.02896260656416416,
- -0.013525746762752533,
- -0.1361025869846344,
- -0.014227654784917831,
- 0.05459406226873398,
- 0.0170766469091177,
- 0.008526971563696861,
- 2.056595876043726e-33,
- -0.03783520683646202,
- -0.08071358501911163,
- 0.0016909320838749409,
- 0.05460033938288689,
- -0.009223720990121365,
- -0.03691760078072548,
- 0.004335023928433657,
- 0.009514087811112404,
- 0.007222989574074745,
- -0.014194929040968418,
- -0.09859517216682434,
- 0.014633196406066418,
- 0.10062307864427567,
- -0.08603405952453613,
- 0.051750946789979935,
- 0.022450845688581467,
- 0.0827762559056282,
- -0.035221949219703674,
- -0.04951648414134979,
- 0.02461191453039646,
- -0.017354130744934082,
- 0.0034454092383384705,
- -0.0230585727840662,
- 0.024271508678793907,
- 0.015507041476666927,
- -0.020508110523223877,
- 0.003241556230932474,
- 0.02552019990980625,
- -0.06036606803536415,
- -0.001293021603487432,
- -0.016347302123904228,
- 0.006170165725052357,
- 0.05338815227150917,
- -0.0032556841615587473,
- -0.05426923558115959,
- 0.08259893208742142,
- 0.05364261567592621,
- 0.0378628745675087,
- 0.050993531942367554,
- -0.053737491369247437,
- -0.0018633260624483228,
- 0.0044705551117658615,
- -0.06356482207775116,
- 0.08371860533952713,
- 0.052322037518024445,
- 0.04930457845330238,
- -0.03471260890364647,
- 0.02295639179646969,
- 0.01095369178801775,
- 0.025230439379811287,
- -0.014517716132104397,
- -0.015782209113240242,
- -0.07390546053647995,
- 0.09384490549564362,
- 0.0026987509336322546,
- -0.012366930954158306,
- -0.039759255945682526,
- 0.021769331768155098,
- 0.013187739066779613,
- 0.00772056682035327,
- 0.05940135568380356,
- 0.029041675850749016,
- -0.10009771585464478,
- 0.021127747371792793,
- 0.0194410290569067,
- 0.019116077572107315,
- 0.005879561882466078,
- 0.007762394845485687,
- -0.00859819632023573,
- -0.015241370536386967,
- -0.012873957864940166,
- 0.04493570700287819,
- -0.09526776522397995,
- 0.07153201848268509,
- 0.012397510930895805,
- 0.005797590594738722,
- -0.04344247654080391,
- 0.055800531059503555,
- 0.03155731037259102,
- 0.07858408242464066,
- -0.032067522406578064,
- 0.03744672238826752,
- -0.1262052357196808,
- 0.08715775609016418,
- 0.033981066197156906,
- -0.015716031193733215,
- 0.02195458859205246,
- -0.017965249717235565,
- 0.01679372414946556,
- -0.038110096007585526,
- -0.025397786870598793,
- 0.02061356231570244,
- -0.09294956922531128,
- -0.1332484632730484,
- -0.0716133788228035,
- -1.1547491851615632e-8,
- 0.033569253981113434,
- 0.07014583796262741,
- -0.019374171271920204,
- -0.017776932567358017,
- -0.010148218832910061,
- 0.0031316366512328386,
- 0.007489512674510479,
- -0.005879310891032219,
- 0.09172317385673523,
- -0.015843231230974197,
- 0.03052883967757225,
- 0.019018657505512238,
- 0.1047319695353508,
- -0.0032382856588810682,
- -0.04766090586781502,
- -0.01931905746459961,
- 0.010448089800775051,
- 0.024693936109542847,
- -0.017210394144058228,
- -0.03233563154935837,
- 0.01258496567606926,
- 0.07647770643234253,
- -0.03577854856848717,
- -0.028890321031212807,
- 0.02995847910642624,
- -0.09705905616283417,
- -0.08840805292129517,
- 0.04586358740925789,
- 0.0033884039148688316,
- 0.06140997260808945,
- -0.017412589862942696,
- -0.044277340173721313,
- -0.04312704876065254,
- -0.08495017886161804,
- -0.044146034866571426,
- -0.04358413442969322,
- 0.0649026408791542,
- -0.09513586759567261,
- 0.020988676697015762,
- -0.080752894282341,
- 0.01369180716574192,
- -0.03086407110095024,
- -0.023094389587640762,
- -0.015338484197854996,
- -0.02791023813188076,
- -0.07253316044807434,
- 0.03815315291285515,
- -0.010108474642038345,
- -0.04371888190507889,
- -0.08937182277441025,
- -0.012649581767618656,
- 0.0823642835021019,
- -0.030913403257727623,
- 0.038062091916799545,
- 0.03795241191983223,
- -0.07278633862733841,
- 0.02999757044017315,
- -0.008810227736830711,
- -0.021332180127501488,
- 0.03014542907476425,
- 0.07551601529121399,
- 0.056426942348480225,
- -0.027416808530688286,
- 0.015410587191581726
- ]
- },
- {
- "keyword": "london",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.0826236829161644,
- -0.006932987831532955,
- 0.027210772037506104,
- -0.011936496943235397,
- -0.05365786701440811,
- 0.01613195613026619,
- 0.0906747430562973,
- -0.05851102992892265,
- -0.012125224806368351,
- -0.022422419860959053,
- 0.002962638856843114,
- -0.0766775980591774,
- 0.00007415093568852171,
- 0.006776433438062668,
- -0.008568575605750084,
- -0.0239191222935915,
- 0.021341459825634956,
- -0.08613225817680359,
- -0.0418873205780983,
- -0.10612472891807556,
- 0.012362378649413586,
- 0.037965789437294006,
- 0.045684490352869034,
- 0.056640252470970154,
- 0.004411118570715189,
- 0.0630125179886818,
- 0.02608976513147354,
- 0.039607200771570206,
- 0.04384271800518036,
- -0.027622824534773827,
- 0.001987607218325138,
- -0.003623813157901168,
- -0.012594015337526798,
- 0.009491938166320324,
- 0.047143083065748215,
- 0.01797676831483841,
- -0.0331139974296093,
- 0.012152163311839104,
- 0.039594702422618866,
- -0.014913255348801613,
- 0.03983379155397415,
- -0.06678539514541626,
- -0.0015164051437750459,
- -0.06703030318021774,
- 0.05296890437602997,
- 0.04865734651684761,
- 0.09209533780813217,
- 0.007075778674334288,
- -0.011361487209796906,
- -0.032570842653512955,
- 0.07988814264535904,
- -0.0017629137728363276,
- 0.029631195589900017,
- -0.08594876527786255,
- -0.053930431604385376,
- -0.0216912142932415,
- -0.07081648707389832,
- 0.05299833044409752,
- -0.006041956599801779,
- -0.04647492989897728,
- -0.008189715445041656,
- 0.040292415767908096,
- -0.13882412016391754,
- 0.04801351949572563,
- 0.0753144845366478,
- 0.009937628172338009,
- 0.019746581092476845,
- 0.06588320434093475,
- 0.02558095194399357,
- -0.114859938621521,
- -0.03165072202682495,
- -0.07990715652704239,
- 0.015420726500451565,
- -0.035801324993371964,
- 0.04996004328131676,
- 0.012769495137035847,
- 0.030209990218281746,
- -0.04650065302848816,
- 0.0013567390851676464,
- 0.0014185094041749835,
- 0.04892861843109131,
- -0.02435486949980259,
- -0.03934745118021965,
- 0.06187814846634865,
- -0.02918008342385292,
- -0.11662774533033371,
- 0.026546936482191086,
- 0.03280326724052429,
- 0.0106043154373765,
- -0.017659731209278107,
- 0.013593954034149647,
- 0.00041438156040385365,
- -0.039667535573244095,
- 0.09813530743122101,
- -0.03585269674658775,
- 0.02121160551905632,
- 0.039217960089445114,
- -0.0019910300616174936,
- -0.00238295691087842,
- 0.22683322429656982,
- -0.032688919454813004,
- 0.08044248819351196,
- 0.021043166518211365,
- 0.12621226906776428,
- 0.004477484617382288,
- -0.07767286151647568,
- -0.09773671627044678,
- 0.09141005575656891,
- -0.0024764693807810545,
- -0.056506551802158356,
- -0.030671685934066772,
- 0.01949669048190117,
- -0.02384808473289013,
- 0.0021174915600568056,
- -0.0016388058429583907,
- 0.020397624000906944,
- 0.021343229338526726,
- -0.01434459537267685,
- -0.004602071363478899,
- -0.02229439839720726,
- -0.005886014085263014,
- 0.02446075528860092,
- -0.03676983341574669,
- 0.046930331736803055,
- -0.09208083152770996,
- -0.02138024941086769,
- -0.039050985127687454,
- -4.429245816167086e-33,
- -0.020796893164515495,
- -0.05236688628792763,
- 0.09913426637649536,
- 0.011768311262130737,
- -0.010302482172846794,
- -0.03238362818956375,
- -0.04459784924983978,
- 0.04401533305644989,
- -0.0074249920435249805,
- 0.06092718988656998,
- 0.015133455395698547,
- -0.06870292127132416,
- 0.0179142989218235,
- -0.05941801518201828,
- 0.04324870929121971,
- 0.12735173106193542,
- 0.09602691233158112,
- 0.00969927478581667,
- -0.07142432779073715,
- 0.032678280025720596,
- -0.08465290069580078,
- 0.019192595034837723,
- 0.041344065219163895,
- -0.0026066319551318884,
- -0.024772541597485542,
- -0.06923600286245346,
- 0.006429883651435375,
- -0.0007138815708458424,
- 0.12163149565458298,
- 0.023718612268567085,
- 0.016629528254270554,
- 0.041624005883932114,
- -0.002808176912367344,
- 0.0408584289252758,
- -0.009808560833334923,
- 0.028806665912270546,
- -0.0672622099518776,
- -0.10226951539516449,
- 0.011409662663936615,
- -0.02712087891995907,
- 0.01685473322868347,
- 0.019532693549990654,
- 0.0076597873121500015,
- -0.04884787276387215,
- 0.0795765072107315,
- 0.058498453348875046,
- -0.07022851705551147,
- -0.043551113456487656,
- 0.026106223464012146,
- 0.024615826085209846,
- 0.03395729884505272,
- -0.007684094365686178,
- -0.15670108795166016,
- 0.021781934425234795,
- 0.012755442410707474,
- 0.017906393855810165,
- -0.010100011713802814,
- 0.041944388300180435,
- 0.036313947290182114,
- 0.023651201277971268,
- -0.004383903928101063,
- 0.14722765982151031,
- -0.03515530005097389,
- -0.02362687513232231,
- 0.052280738949775696,
- -0.09660865366458893,
- 0.02479538880288601,
- -0.030221397057175636,
- -0.04099893942475319,
- 0.005006193183362484,
- -0.031015288084745407,
- 0.04897104576230049,
- 0.15363167226314545,
- -0.002797050168737769,
- -0.003551969537511468,
- -0.004598238971084356,
- -0.08694770187139511,
- 0.03811102360486984,
- -0.01750936731696129,
- 0.07242192327976227,
- -0.021654384210705757,
- 0.05921359360218048,
- -0.0390043780207634,
- 0.060412000864744186,
- 0.11125989258289337,
- -0.04025893658399582,
- -0.015089977532625198,
- -0.09461388736963272,
- 0.03551316261291504,
- -0.032422732561826706,
- -0.17317861318588257,
- -0.0779370442032814,
- -0.012309795245528221,
- 0.0013196872314438224,
- -0.015181608498096466,
- 2.645556933043086e-33,
- -0.00853722169995308,
- -0.08155075460672379,
- 0.02514471858739853,
- 0.06757212430238724,
- -0.016948578879237175,
- 0.04188504442572594,
- 0.06559207290410995,
- 0.02240891382098198,
- 0.004430070053786039,
- 0.10438533127307892,
- -0.0967627763748169,
- -0.03400741145014763,
- 0.14418452978134155,
- -0.020378004759550095,
- 0.04544450715184212,
- -0.017136240378022194,
- 0.06563932448625565,
- -0.01760556362569332,
- -0.0050836168229579926,
- 0.07690256088972092,
- 0.013961322605609894,
- -0.07413173466920853,
- -0.00008782541408436373,
- -0.006062933709472418,
- -0.03599180653691292,
- -0.0029269515071064234,
- -0.034894272685050964,
- -0.004159296862781048,
- -0.05082749202847481,
- -0.023088373243808746,
- -0.08543909341096878,
- 0.051355503499507904,
- -0.022707954049110413,
- -0.002719660522416234,
- -0.020190846174955368,
- 0.08420359343290329,
- 0.03925524652004242,
- 0.010467030107975006,
- 0.0355212464928627,
- 0.0010538024362176657,
- -0.06786186248064041,
- -0.03880893439054489,
- 0.04129188135266304,
- 0.08373960107564926,
- 0.07854823768138885,
- -0.019123857840895653,
- -0.11805734783411026,
- 0.02738182246685028,
- 0.030658379197120667,
- -0.016675103455781937,
- -0.00037891618558205664,
- 0.0584050752222538,
- -0.05207819491624832,
- -0.006228944752365351,
- 0.022159922868013382,
- 0.039727408438920975,
- -0.04886474087834358,
- -0.009084782563149929,
- -0.011349862441420555,
- -0.05056384205818176,
- -0.0011052826885133982,
- -0.010902929119765759,
- -0.0455208383500576,
- 0.030671225860714912,
- -0.0809457078576088,
- 0.009525038301944733,
- 0.026696927845478058,
- 0.02624789997935295,
- -0.0067007895559072495,
- 0.01153432298451662,
- 0.04010478034615517,
- 0.023503851145505905,
- -0.03001486323773861,
- 0.0004282187728676945,
- -0.051591213792562485,
- -0.030800117179751396,
- 0.04228513315320015,
- -0.01557418517768383,
- 0.002274266676977277,
- -0.02491915412247181,
- 0.07427506148815155,
- -0.000584139721468091,
- -0.0025040300097316504,
- 0.030023587867617607,
- 0.02553710713982582,
- -0.026452848687767982,
- 0.021769650280475616,
- 0.09541916847229004,
- 0.030625561252236366,
- -0.045701656490564346,
- 0.05174493044614792,
- 0.012937652878463268,
- -0.07021787017583847,
- -0.08717550337314606,
- -0.021513672545552254,
- -1.2638150082011634e-8,
- -0.03252209350466728,
- 0.02482425794005394,
- -0.051215190440416336,
- 0.016766970977187157,
- 0.0026926707942038774,
- -0.0020026813726872206,
- 0.05192519351840019,
- 0.05035402625799179,
- -0.009220930747687817,
- 0.02561742067337036,
- 0.015016336925327778,
- -0.0057106614112854,
- -0.018048174679279327,
- 0.0076993899419903755,
- -0.06932816654443741,
- -0.02832016721367836,
- -0.0697178840637207,
- -0.06018853187561035,
- 0.01983702927827835,
- 0.03781964257359505,
- -0.022915584966540337,
- 0.03591260313987732,
- 0.026764554902911186,
- -0.003141026245430112,
- 0.02751932293176651,
- -0.0961059182882309,
- 0.05188320204615593,
- 0.015631848946213722,
- -0.008620810694992542,
- -0.0632563903927803,
- 0.008303888142108917,
- 0.04944145679473877,
- 0.0427386611700058,
- -0.014878845773637295,
- -0.026772961020469666,
- -0.053826939314603806,
- 0.016970442607998848,
- 0.033224377781152725,
- -0.039406660944223404,
- -0.08960233628749847,
- -0.03495000675320625,
- -0.10018488019704819,
- 0.02835037186741829,
- -0.021080823615193367,
- 0.08154259622097015,
- -0.009005645290017128,
- 0.030937086790800095,
- -0.0299055315554142,
- -0.02783975936472416,
- -0.030304288491606712,
- -0.035292547196149826,
- 0.026747306808829308,
- 0.09274614602327347,
- 0.03490366041660309,
- 0.035668447613716125,
- -0.007581969257444143,
- -0.027178170159459114,
- -0.039288729429244995,
- -0.04144773632287979,
- 0.07789775729179382,
- 0.06116067245602608,
- 0.004552521742880344,
- -0.053144123405218124,
- 0.035963717848062515
- ]
- },
- {
- "keyword": "paris",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.08527924865484238,
- 0.02922000363469124,
- 0.016194147989153862,
- -0.02931222692131996,
- 0.011530803516507149,
- -0.031243300065398216,
- 0.022261735051870346,
- -0.027400968596339226,
- 0.03170516714453697,
- 0.012274779379367828,
- -0.0014908519806340337,
- -0.08326155692338943,
- -0.01065331231802702,
- -0.05109364166855812,
- -0.03701230511069298,
- -0.08346794545650482,
- 0.013622576370835304,
- -0.058172427117824554,
- 0.007935376837849617,
- -0.04560127109289169,
- -0.019001824781298637,
- -0.0019298000261187553,
- 0.06027727574110031,
- 0.07248807698488235,
- -0.025252392515540123,
- 0.013278605416417122,
- -0.058370668441057205,
- -0.010189126245677471,
- 0.005524132400751114,
- -0.05605626478791237,
- 0.02913467213511467,
- 0.0032982169650495052,
- -0.061751846224069595,
- 0.031163636595010757,
- 0.0020277102012187243,
- -0.010571437887847424,
- 0.010708246380090714,
- -0.03396293893456459,
- -0.005647493992000818,
- 0.03695515915751457,
- 0.00036040949635207653,
- -0.07655250281095505,
- -0.06386673450469971,
- -0.060878366231918335,
- -0.03641410544514656,
- -0.0068455711007118225,
- 0.059556398540735245,
- 0.061448901891708374,
- 0.03443039581179619,
- -0.05389484018087387,
- 0.10072817653417587,
- 0.049032989889383316,
- -0.052088502794504166,
- -0.04100101813673973,
- -0.04357195273041725,
- 0.060634545981884,
- 0.03683990240097046,
- 0.05424553155899048,
- 0.028100918978452682,
- 0.0879296213388443,
- 0.03402329981327057,
- -0.018358927220106125,
- -0.08762351423501968,
- 0.028095150366425514,
- 0.09508553147315979,
- 0.013574431650340557,
- -0.013020556420087814,
- 0.04775713011622429,
- -0.0660315677523613,
- -0.01385024469345808,
- 0.003348307916894555,
- -0.020689474418759346,
- -0.011236886493861675,
- -0.004093101713806391,
- 0.09560025483369827,
- -0.003518211655318737,
- -0.02731255628168583,
- 0.016885891556739807,
- 0.02123071625828743,
- -0.02760232985019684,
- 0.08302078396081924,
- -0.07502521574497223,
- 0.016149384900927544,
- 0.027216963469982147,
- 0.026703162118792534,
- -0.03644763305783272,
- 0.07938327640295029,
- 0.03080032207071781,
- 0.07235544174909592,
- -0.0305879358202219,
- -0.07914271950721741,
- 0.05578150972723961,
- -0.05268433317542076,
- 0.06739185750484467,
- -0.12573720514774323,
- 0.02158074453473091,
- -0.006713211536407471,
- -0.01634923741221428,
- -0.05001096427440643,
- 0.20476843416690826,
- -0.06584697961807251,
- 0.07375435531139374,
- 0.07775983214378357,
- -0.00866406038403511,
- -0.005516591481864452,
- -0.023478591814637184,
- -0.052838943898677826,
- 0.010646837763488293,
- -0.023381873965263367,
- 0.009170705452561378,
- -0.07844526320695877,
- -0.03743439167737961,
- 0.023569472134113312,
- -0.014218502677977085,
- 0.023009518161416054,
- 0.024731231853365898,
- -0.007193707395344973,
- -0.07188249379396439,
- 0.0033219053875654936,
- -0.0622614286839962,
- -0.04658683016896248,
- -0.0012680991785600781,
- -0.0224895142018795,
- 0.07145819067955017,
- -0.11291111260652542,
- -0.024404251947999,
- -0.010269326157867908,
- -4.02886252204343e-33,
- 0.02289978414773941,
- 0.00655871769413352,
- 0.053949952125549316,
- -0.010790295898914337,
- -0.012892202474176884,
- -0.011224085465073586,
- -0.06299698352813721,
- 0.029816051945090294,
- -0.022270403802394867,
- 0.022584302350878716,
- 0.01886659674346447,
- -0.08947724103927612,
- -0.050540581345558167,
- 0.07548042386770248,
- 0.11400910466909409,
- 0.0372980460524559,
- 0.15789242088794708,
- 0.06414336711168289,
- -0.07738415896892548,
- 0.007259628269821405,
- -0.037746936082839966,
- 0.04092561453580856,
- 0.013576550409197807,
- 0.0605066642165184,
- 0.02004854939877987,
- 0.007302078418433666,
- -0.029478006064891815,
- 0.0294334776699543,
- 0.012261340394616127,
- 0.006262768059968948,
- -0.047902997583150864,
- 0.06414151191711426,
- 0.06773509085178375,
- 0.016471127048134804,
- 0.04931642860174179,
- 0.007937938906252384,
- 0.012791500426828861,
- -0.022260943427681923,
- 0.03440093621611595,
- 0.03525494411587715,
- 0.054727621376514435,
- -0.000825260067358613,
- 0.027498416602611542,
- -0.020709337666630745,
- 0.031420283019542694,
- 0.05386123061180115,
- 0.026139363646507263,
- -0.01677866466343403,
- 0.09632400423288345,
- 0.01126146875321865,
- -0.031073682010173798,
- -0.036914922297000885,
- -0.11070747673511505,
- -0.0005781622603535652,
- 0.0565778911113739,
- 0.057418882846832275,
- -0.06513907760381699,
- -0.0691457986831665,
- 0.030042169615626335,
- -0.03952164202928543,
- -0.0012772667687386274,
- 0.1281527578830719,
- -0.04102500155568123,
- 0.023005513474345207,
- 0.047947827726602554,
- -0.01939118281006813,
- 0.00012489159416873008,
- -0.01473052054643631,
- 0.007359978277236223,
- -0.02424745075404644,
- -0.0891537219285965,
- 0.022569017484784126,
- 0.13647763431072235,
- -0.004849288146942854,
- 0.032538704574108124,
- 0.0683562234044075,
- -0.04081195965409279,
- 0.07405858486890793,
- -0.0652405247092247,
- 0.002525162184610963,
- -0.033307209610939026,
- 0.012281009927392006,
- -0.03547396510839462,
- 0.06588669866323471,
- 0.06489071249961853,
- 0.009480230510234833,
- -0.001402689958922565,
- -0.046488162130117416,
- -0.0070964922197163105,
- -0.023066446185112,
- -0.12071525305509567,
- -0.08484672755002975,
- 0.023021843284368515,
- -0.03763653337955475,
- -0.042475905269384384,
- 2.5387239656785255e-33,
- 0.010090811178088188,
- -0.02760470286011696,
- 0.016331864520907402,
- 0.0556945838034153,
- 0.03589920699596405,
- 0.050443679094314575,
- 0.01485772430896759,
- 0.0016332005616277456,
- 0.0313042588531971,
- 0.06077368184924126,
- -0.11466111242771149,
- -0.12559233605861664,
- 0.11106039583683014,
- -0.09333634376525879,
- 0.05217833071947098,
- 0.038352120667696,
- 0.038303837180137634,
- -0.0547374002635479,
- -0.035288192331790924,
- 0.0457419790327549,
- -0.05520905554294586,
- -0.06879305839538574,
- -0.04138760641217232,
- 0.028417913243174553,
- -0.07260683178901672,
- 0.011687767691910267,
- 0.04392911493778229,
- -0.011233227327466011,
- -0.06723210215568542,
- -0.061002008616924286,
- -0.07023072987794876,
- -0.003754782723262906,
- 0.017780175432562828,
- 0.08488450944423676,
- 0.017851190641522408,
- 0.12832047045230865,
- 0.014486723579466343,
- 0.022359823808073997,
- 0.010665062814950943,
- -0.04972847178578377,
- -0.05366738513112068,
- -0.004400128498673439,
- 0.016013747081160545,
- 0.08146936446428299,
- 0.07185129821300507,
- 0.025246206670999527,
- -0.08235208690166473,
- 0.005966485943645239,
- -0.022017324343323708,
- 0.02171604335308075,
- -0.009419234469532967,
- 0.04631742089986801,
- -0.07957663387060165,
- -0.03256744518876076,
- -0.010955979116261005,
- 0.01806636154651642,
- -0.032635994255542755,
- 0.01840418390929699,
- -0.008300432935357094,
- -0.04017376899719238,
- 0.022566678002476692,
- 0.03909505903720856,
- -0.0499437041580677,
- 0.06793317943811417,
- -0.05897349864244461,
- -0.07483602315187454,
- -0.08130259066820145,
- 0.06021524965763092,
- -0.0038550933822989464,
- 0.06047356128692627,
- 0.07827511429786682,
- 0.029802966862916946,
- -0.0722251757979393,
- 0.0841297060251236,
- -0.0558558814227581,
- -0.004565253853797913,
- 0.018447166308760643,
- 0.029829028993844986,
- 0.013915739953517914,
- 0.0314762108027935,
- 0.0056604258716106415,
- 0.019134143367409706,
- -0.05192628875374794,
- 0.04551628604531288,
- 0.03856928274035454,
- 0.03791823983192444,
- -0.021926667541265488,
- -0.02638273313641548,
- 0.10504264384508133,
- -0.0636727437376976,
- 0.021699531003832817,
- 0.002844015369191766,
- -0.09834340214729309,
- -0.12342949956655502,
- 0.008606601506471634,
- -1.1256995335884312e-8,
- 0.03724703937768936,
- 0.07525550574064255,
- -0.026946580037474632,
- 0.021285392343997955,
- 0.00660494901239872,
- -0.09278932958841324,
- 0.05125591531395912,
- 0.02742641419172287,
- -0.014724870212376118,
- -0.020664285868406296,
- -0.054972898215055466,
- 0.05079776793718338,
- 0.03603583946824074,
- -0.0684090331196785,
- -0.06575621664524078,
- -0.05169881880283356,
- 0.017209492623806,
- -0.01213238574564457,
- -0.0035223495215177536,
- 0.08538617193698883,
- 0.007727361284196377,
- 0.04427407309412956,
- 0.002256506821140647,
- -0.0690792053937912,
- 0.02185826189815998,
- -0.10308165848255157,
- 0.012697800993919373,
- 0.03671189025044441,
- -0.05818628892302513,
- 0.014748615212738514,
- 0.034063827246427536,
- -0.02040477842092514,
- -0.0445733368396759,
- -0.07172686606645584,
- 0.04799157381057739,
- 0.0012856356333941221,
- -0.03290855512022972,
- 0.007556510623544455,
- -0.008855740539729595,
- -0.04787224531173706,
- 0.03916167840361595,
- -0.02629115805029869,
- 0.04025890678167343,
- -0.0312524177134037,
- 0.04295927286148071,
- -0.0034946275409311056,
- 0.0888814851641655,
- -0.07734823226928711,
- 0.05664747580885887,
- 0.024205025285482407,
- -0.08191055059432983,
- 0.0838109701871872,
- -0.0186972264200449,
- 0.026636820286512375,
- 0.021359603852033615,
- -0.03135295957326889,
- -0.05515604093670845,
- -0.005684510804712772,
- -0.02586555853486061,
- 0.04868296906352043,
- 0.05678841099143028,
- 0.03423363342881203,
- 0.0053957742638885975,
- 0.01791352592408657
- ]
- },
- {
- "keyword": "berlin",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.04276507347822189,
- 0.038898687809705734,
- -0.02369796857237816,
- 0.058073077350854874,
- -0.015220487490296364,
- 0.06393665820360184,
- 0.04303482919931412,
- 0.02901701256632805,
- -0.0269062090665102,
- -0.03498128801584244,
- 0.006032370496541262,
- -0.0785214826464653,
- 0.035061828792095184,
- 0.04226269572973251,
- -0.011414662934839725,
- -0.03213272988796234,
- 0.029541561380028725,
- -0.05472957715392113,
- -0.019961468875408173,
- -0.09306146204471588,
- -0.03171433135867119,
- -0.02900250069797039,
- 0.059229008853435516,
- -0.03859984502196312,
- 0.03849770873785019,
- 0.04691958799958229,
- -0.013209562748670578,
- -0.016443194821476936,
- 0.02510780654847622,
- -0.029603036120533943,
- 0.006569962948560715,
- -0.027676844969391823,
- -0.0012605998199433088,
- 0.004044273402541876,
- 0.08568202704191208,
- -0.03201647475361824,
- 0.024194061756134033,
- -0.02696380950510502,
- 0.02492508664727211,
- 0.042445674538612366,
- -0.05975490063428879,
- -0.019084734842181206,
- -0.03831657022237778,
- 0.003914967179298401,
- 0.00235937163233757,
- 0.02458283118903637,
- 0.0938989669084549,
- 0.05651197209954262,
- -0.002595007186755538,
- 0.010651749558746815,
- 0.06923577189445496,
- 0.011378577910363674,
- -0.0061578000895679,
- 0.06483063846826553,
- 0.00730035500600934,
- 0.01878703199326992,
- -0.023513002321124077,
- 0.00919139850884676,
- 0.033799875527620316,
- -0.036793798208236694,
- -0.007883841171860695,
- -0.056730836629867554,
- -0.11486303061246872,
- -0.0029430463910102844,
- 0.038517460227012634,
- -0.01873982511460781,
- 0.014068526215851307,
- 0.10072572529315948,
- -0.002140619093552232,
- -0.04223565757274628,
- 0.07425113022327423,
- -0.06785520166158676,
- -0.02939753420650959,
- 0.04167275130748749,
- 0.09762612730264664,
- -0.06790390610694885,
- -0.005269942805171013,
- -0.053878434002399445,
- 0.023245306685566902,
- -0.038583092391490936,
- 0.015293609350919724,
- -0.028722282499074936,
- -0.08437557518482208,
- 0.02611566334962845,
- -0.019683435559272766,
- -0.07344385981559753,
- 0.020614249631762505,
- -0.0013184897834435105,
- 0.0655287653207779,
- 0.01249577384442091,
- -0.020776871591806412,
- 0.007499363273382187,
- -0.026002312079072,
- -0.00421537971124053,
- -0.12285403907299042,
- -0.00592310493811965,
- 0.03175974264740944,
- 0.06349337846040726,
- 0.06960216164588928,
- 0.21788759529590607,
- -0.004939170554280281,
- 0.0035978308878839016,
- 0.07984332740306854,
- 0.0290125273168087,
- 0.005420295987278223,
- -0.05589868500828743,
- -0.026661178097128868,
- 0.06058908626437187,
- -0.0426703616976738,
- -0.03403050824999809,
- -0.04546722024679184,
- -0.03687213361263275,
- -0.012615377083420753,
- -0.002391481539234519,
- -0.0021002136636525393,
- 0.01199139840900898,
- 0.08286826312541962,
- -0.04875157028436661,
- -0.044174592941999435,
- -0.010185068473219872,
- -0.005998450331389904,
- -0.010936818085610867,
- -0.022398240864276886,
- 0.08473505079746246,
- -0.10846371203660965,
- -0.03149517998099327,
- 0.00026316841831430793,
- -4.698982096746461e-33,
- -0.026982177048921585,
- -0.1246042475104332,
- 0.006291336379945278,
- 0.044007062911987305,
- -0.026071112602949142,
- 0.04287248104810715,
- -0.02756365016102791,
- 0.07339978963136673,
- -0.0641644299030304,
- 0.05147614702582359,
- -0.023868165910243988,
- -0.04732219874858856,
- -0.0049925451166927814,
- -0.005630255676805973,
- 0.09140487015247345,
- 0.041244082152843475,
- 0.05216628685593605,
- 0.03670845553278923,
- -0.09237862378358841,
- 0.04170031100511551,
- 0.026305409148335457,
- 0.0602879673242569,
- 0.03840145841240883,
- -0.002084883861243725,
- 0.06753761321306229,
- -0.010749711655080318,
- 0.04203600063920021,
- 0.006574816070497036,
- 0.08603637665510178,
- 0.013392298482358456,
- -0.01847994327545166,
- 0.03556976094841957,
- -0.011200843378901482,
- -0.0454636886715889,
- 0.04476344957947731,
- 0.05936754494905472,
- -0.04023797810077667,
- -0.013882376253604889,
- -0.017057832330465317,
- -0.026264654472470284,
- 0.05587228387594223,
- -0.018599625676870346,
- -0.08403755724430084,
- 0.05439795181155205,
- 0.1220419704914093,
- 0.08939427137374878,
- -0.033012762665748596,
- 0.006165066733956337,
- 0.0681074932217598,
- -0.045912474393844604,
- 0.012887252494692802,
- -0.022772500291466713,
- -0.05261169746518135,
- 0.03144519403576851,
- 0.019984157755970955,
- 0.10557159781455994,
- 0.010654441080987453,
- 0.0013221516273915768,
- 0.034192200750112534,
- -0.0025285736192017794,
- -0.04428476467728615,
- 0.1497676819562912,
- -0.05122074857354164,
- 0.0015819149557501078,
- 0.09975338727235794,
- -0.05165231227874756,
- -0.021902775391936302,
- 0.017895326018333435,
- -0.053760819137096405,
- 0.036944929510354996,
- -0.06581670790910721,
- -0.03200162202119827,
- 0.10982278734445572,
- 0.030855543911457062,
- -0.06511703133583069,
- 0.03973258286714554,
- -0.0785614401102066,
- 0.04590878263115883,
- -0.010249078273773193,
- -0.02553742192685604,
- -0.11398002505302429,
- 0.03961394727230072,
- -0.01307208277285099,
- 0.06155566871166229,
- 0.11097043752670288,
- -0.008247754536569118,
- -0.04283526912331581,
- -0.06063678115606308,
- -0.06328364461660385,
- -0.008005458861589432,
- -0.1337735503911972,
- 0.010309574194252491,
- -0.004086185246706009,
- 0.0018112865509465337,
- -0.06443760544061661,
- 2.5591647104133712e-33,
- -0.014659074135124683,
- -0.08905617892742157,
- -0.007334319408982992,
- 0.07110708206892014,
- -0.01125363726168871,
- 0.07729041576385498,
- -0.03911970555782318,
- 0.05815844237804413,
- -0.0010178586235269904,
- 0.07654748857021332,
- -0.027568325400352478,
- -0.07524571567773819,
- 0.10626526921987534,
- 0.037031907588243484,
- 0.031071797013282776,
- -0.010507174767553806,
- 0.06900758296251297,
- 0.03938661515712738,
- -0.11450529098510742,
- 0.04784613847732544,
- -0.04985741898417473,
- -0.026506097987294197,
- 0.0028612164314836264,
- -0.016127437353134155,
- -0.16023361682891846,
- 0.033461619168519974,
- 0.028619434684515,
- 0.03354325890541077,
- -0.045003507286310196,
- 0.05880334600806236,
- -0.07763872295618057,
- -0.03284803032875061,
- -0.027220074087381363,
- 0.013462100178003311,
- 0.029035750776529312,
- 0.12026891112327576,
- -0.014843433164060116,
- -0.007700423244386911,
- -0.0031807851046323776,
- -0.023655207827687263,
- -0.0112785454839468,
- 0.013580836355686188,
- -0.039305634796619415,
- 0.13276401162147522,
- 0.07913672178983688,
- -0.036812182515859604,
- -0.14254871010780334,
- 0.012736906297504902,
- -0.058900780975818634,
- -0.03819185122847557,
- -0.04123421013355255,
- -0.023648977279663086,
- -0.01115676574409008,
- -0.027033915743231773,
- 0.03597766160964966,
- -0.01681017130613327,
- -0.06315144151449203,
- -0.02601916901767254,
- 0.04741441830992699,
- -0.0249266866594553,
- -0.011850045993924141,
- 0.03524337708950043,
- 0.0055302162654697895,
- 0.03290330246090889,
- -0.06047649681568146,
- -0.04919768124818802,
- -0.02661367692053318,
- 0.02854265831410885,
- 0.03189617022871971,
- 0.005518580321222544,
- 0.08954769372940063,
- 0.1214718371629715,
- -0.07288561761379242,
- 0.019451068714261055,
- -0.05390731990337372,
- 0.03096456080675125,
- 0.04285864159464836,
- 0.06754857301712036,
- 0.009359474293887615,
- -0.007827667519450188,
- 0.015052522532641888,
- 0.05357041582465172,
- 0.0038943530526012182,
- 0.026618976145982742,
- 0.02810817025601864,
- 0.0317421481013298,
- -0.02114775963127613,
- -0.009225953370332718,
- 0.09028942883014679,
- 0.005947246681898832,
- -0.028570037335157394,
- 0.013534064404666424,
- -0.06483657658100128,
- -0.037532102316617966,
- -0.07384315878152847,
- -1.1356574347587411e-8,
- -0.04562465846538544,
- 0.08280393481254578,
- -0.0001010551059152931,
- 0.03444238752126694,
- -0.007990830577909946,
- -0.08945219963788986,
- -0.04622212052345276,
- -0.046191249042749405,
- -0.020979227498173714,
- 0.05217297375202179,
- -0.0237574502825737,
- 0.042211633175611496,
- -0.04368315637111664,
- -0.026154138147830963,
- -0.08128461986780167,
- -0.0133025161921978,
- -0.05279627814888954,
- -0.04028100147843361,
- 0.002227886812761426,
- 0.02877221256494522,
- 0.005080848466604948,
- 0.07062070816755295,
- 0.051026344299316406,
- 0.031455617398023605,
- 0.03806570917367935,
- -0.02976960316300392,
- -0.007233848795294762,
- 0.027376918122172356,
- 0.02697933092713356,
- -0.08066166192293167,
- 0.06192570552229881,
- 0.028386179357767105,
- 0.002141321310773492,
- 0.01411237008869648,
- -0.0014775426825508475,
- -0.044255029410123825,
- -0.03998642414808273,
- 0.0033441497944295406,
- -0.03911888226866722,
- -0.07057173550128937,
- -0.05094774067401886,
- -0.056514136493206024,
- 0.02302362769842148,
- -0.000956432893872261,
- 0.002526703290641308,
- -0.02790944278240204,
- 0.004196529276669025,
- -0.04119586944580078,
- -0.008848984725773335,
- 0.01601484604179859,
- -0.09406673163175583,
- 0.002170380437746644,
- -0.018406527116894722,
- 0.05768364667892456,
- 0.008081426844000816,
- -0.0019262186251580715,
- -0.058882370591163635,
- -0.018459858372807503,
- -0.051096025854349136,
- 0.09700941294431686,
- 0.03329656273126602,
- 0.0025274481158703566,
- -0.07964309304952621,
- 0.061247438192367554
- ]
- },
- {
- "keyword": "tokyo",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.044365230947732925,
- 0.017828041687607765,
- -0.02431308478116989,
- 0.048550404608249664,
- -0.04738972708582878,
- -0.016182539984583855,
- 0.0707634687423706,
- 0.038584236055612564,
- -0.030351655557751656,
- -0.026710297912359238,
- 0.04398749768733978,
- -0.07940855622291565,
- -0.021143820136785507,
- 0.07845772057771683,
- 0.040977198630571365,
- -0.03781905770301819,
- 0.04072219133377075,
- -0.007011152803897858,
- 0.026234110817313194,
- -0.09484835714101791,
- 0.0026985337026417255,
- -0.024808291345834732,
- 0.02174959145486355,
- 0.03497576341032982,
- 0.041246041655540466,
- 0.06016463041305542,
- 0.005279631819576025,
- 0.07933063805103302,
- 0.03153761848807335,
- -0.024611683562397957,
- -0.03331489488482475,
- 0.05477878823876381,
- 0.03563670814037323,
- 0.016969023272395134,
- 0.054613009095191956,
- -0.010088496841490269,
- -0.001964900176972151,
- -0.0003593725268729031,
- 0.02828316204249859,
- -0.040550701320171356,
- -0.007575355004519224,
- 0.020461034029722214,
- 0.028793804347515106,
- -0.04468453302979469,
- 0.038581281900405884,
- 0.026015201583504677,
- 0.04334640875458717,
- 0.014474766328930855,
- 0.07307035475969315,
- -0.04718508571386337,
- 0.027393888682127,
- -0.02299770899116993,
- -0.0035587141755968332,
- 0.0705997571349144,
- 0.019470835104584694,
- 0.012318678200244904,
- -0.00010887649114010856,
- 0.015783239156007767,
- 0.0034164837561547756,
- 0.002634116681292653,
- -0.0005549934576265514,
- -0.0342944860458374,
- -0.04398781433701515,
- 0.010477120988070965,
- 0.10437048971652985,
- -0.0009819294791668653,
- -0.03397858142852783,
- 0.08753590285778046,
- -0.019641587510704994,
- -0.09019118547439575,
- 0.03133196383714676,
- 0.007680133916437626,
- 0.06989782303571701,
- 0.02133404091000557,
- -0.05210479721426964,
- -0.025821508839726448,
- 0.0029191768262535334,
- -0.014845491386950016,
- 0.012090988457202911,
- -0.006682943552732468,
- 0.07223191857337952,
- -0.056109920144081116,
- -0.010089066810905933,
- 0.03424493595957756,
- -0.015894031152129173,
- -0.004330245777964592,
- 0.0027862803544849157,
- -0.04129873216152191,
- 0.060909733176231384,
- 0.053264740854501724,
- -0.0521014928817749,
- 0.070201575756073,
- -0.017324047163128853,
- -0.012159943580627441,
- -0.1648082435131073,
- -0.0024185089860111475,
- -0.04107083007693291,
- 0.02140253409743309,
- 0.0004148742591496557,
- 0.1997569501399994,
- 0.007059772964566946,
- 0.029899826273322105,
- 0.06407327950000763,
- -0.0435638502240181,
- 0.004887809976935387,
- -0.008804526180028915,
- -0.05092140659689903,
- 0.013117320835590363,
- -0.04477083683013916,
- 0.07452620565891266,
- -0.07984005659818649,
- -0.023556003347039223,
- -0.03205648437142372,
- -0.005866955034434795,
- -0.004603516310453415,
- 0.0771799385547638,
- 0.09917883574962616,
- 0.05210178345441818,
- -0.08640754967927933,
- 0.02184394933283329,
- -0.0315818265080452,
- 0.004230727907270193,
- 0.02057511918246746,
- 0.024031881242990494,
- -0.09249332547187805,
- -0.042659662663936615,
- -0.07176455110311508,
- -3.283130742591694e-33,
- 0.057217683643102646,
- -0.08240137249231339,
- -0.00823140051215887,
- -0.019219692796468735,
- -0.001107163610868156,
- -0.05413004383444786,
- -0.008133437484502792,
- 0.008783888071775436,
- -0.038621287792921066,
- 0.04027906060218811,
- -0.020865365862846375,
- -0.07401132583618164,
- -0.02118001878261566,
- -0.08219113200902939,
- 0.11855437606573105,
- 0.044636715203523636,
- 0.058874692767858505,
- 0.016388507559895515,
- -0.04387148097157478,
- 0.039490826427936554,
- -0.0010664380388334394,
- -0.016264615580439568,
- -0.02402757667005062,
- 0.005196892656385899,
- -0.046076953411102295,
- 0.006451284978538752,
- 0.012269003316760063,
- -0.03445770964026451,
- 0.045859210193157196,
- 0.0339730866253376,
- -0.026517756283283234,
- 0.012850077822804451,
- -0.016548600047826767,
- 0.006009601056575775,
- 0.05225474014878273,
- -0.08152542263269424,
- 0.0076165287755429745,
- -0.0559217743575573,
- -0.016048546880483627,
- 0.005647432524710894,
- -0.0015826920280233026,
- -0.013543910346925259,
- -0.07717205584049225,
- 0.03682597726583481,
- 0.09702685475349426,
- 0.06327437609434128,
- 0.025426704436540604,
- 0.0031299616675823927,
- 0.09551963955163956,
- 0.048626262694597244,
- -0.08164861053228378,
- -0.05690007284283638,
- -0.04956323653459549,
- 0.03879714012145996,
- 0.03177052363753319,
- 0.04355114698410034,
- 0.0386149138212204,
- -0.07204148173332214,
- 0.024133164435625076,
- 0.07950209081172943,
- -0.06454036384820938,
- 0.11436901986598969,
- -0.14709195494651794,
- -0.017540739849209785,
- 0.003420223481953144,
- -0.014255383983254433,
- 0.058016445487737656,
- -0.04735861346125603,
- 0.01729145087301731,
- 0.01782454177737236,
- -0.011345156468451023,
- -0.06326073408126831,
- 0.05934039130806923,
- 0.07518965005874634,
- -0.05146431550383568,
- -0.015257801860570908,
- -0.042898308485746384,
- 0.05553677678108215,
- -0.03248290345072746,
- 0.021815277636051178,
- -0.07809854298830032,
- 0.06123090907931328,
- -0.06185600161552429,
- 0.1108604222536087,
- 0.10178747028112411,
- 0.06015622243285179,
- 0.00425249757245183,
- -0.0591537170112133,
- -0.04440092295408249,
- -0.024869881570339203,
- -0.05485595390200615,
- -0.06454452872276306,
- 0.07425012439489365,
- -0.04402363300323486,
- -0.06388739496469498,
- 3.0073742778971783e-33,
- 0.03647982329130173,
- -0.06827802956104279,
- -0.03593510016798973,
- 0.01909172348678112,
- -0.008061452768743038,
- 0.03768370673060417,
- -0.0607994981110096,
- 0.0477905236184597,
- 0.03280315920710564,
- 0.012361643835902214,
- -0.11318399012088776,
- -0.0328989140689373,
- 0.10276054590940475,
- 0.04104598984122276,
- 0.03748030588030815,
- 0.038196250796318054,
- 0.08435910195112228,
- 0.007171983830630779,
- -0.09166250377893448,
- 0.005232619121670723,
- 0.013639806769788265,
- -0.07037796080112457,
- -0.017005320638418198,
- 0.026654960587620735,
- -0.04305935278534889,
- 0.0794958621263504,
- 0.03321341797709465,
- 0.033454298973083496,
- -0.05563171207904816,
- 0.08690983057022095,
- -0.0791473388671875,
- -0.06430988758802414,
- -0.023762576282024384,
- 0.043872784823179245,
- -0.015011700801551342,
- 0.07329175621271133,
- 0.014350984245538712,
- -0.028496908023953438,
- -0.03249539062380791,
- 0.0026799035258591175,
- -0.06324370950460434,
- 0.02092507667839527,
- -0.04244885966181755,
- 0.1086287796497345,
- -0.035580262541770935,
- -0.014886713586747646,
- -0.11718926578760147,
- 0.12637971341609955,
- -0.024186745285987854,
- -0.0519782193005085,
- -0.03959941118955612,
- -0.016326425597071648,
- -0.030348222702741623,
- -0.057214584201574326,
- -0.05316665396094322,
- -0.03522993251681328,
- -0.05022395774722099,
- 0.007440042681992054,
- -0.02881288342177868,
- -0.017955981194972992,
- 0.03960335999727249,
- -0.050349120050668716,
- -0.02616478130221367,
- 0.0942951887845993,
- -0.11825921386480331,
- 0.02748168259859085,
- 0.13511386513710022,
- -0.00581062538549304,
- 0.01683049649000168,
- -0.004990507382899523,
- 0.008652224205434322,
- 0.03931616246700287,
- -0.05206737294793129,
- 0.08454100042581558,
- -0.02345951460301876,
- -0.004879545420408249,
- -0.037197500467300415,
- 0.06132286787033081,
- 0.08843105286359787,
- 0.007401843089610338,
- 0.032214999198913574,
- 0.07660911232233047,
- -0.0769832506775856,
- 0.006638684775680304,
- 0.09859489649534225,
- 0.02951989881694317,
- -0.03417057543992996,
- 0.046063028275966644,
- 0.056804727762937546,
- -0.08763939887285233,
- 0.026037978008389473,
- 0.08845319598913193,
- -0.061194341629743576,
- -0.04398275911808014,
- -0.06451433151960373,
- -1.1122659238083088e-8,
- 0.020282821729779243,
- -0.01695205084979534,
- -0.020655669271945953,
- -0.027581963688135147,
- 0.007842118851840496,
- -0.013698242604732513,
- -0.009860974736511707,
- 0.05448918417096138,
- 0.04036005958914757,
- 0.05698216333985329,
- 0.04603986814618111,
- 0.07103870809078217,
- 0.014439325779676437,
- 0.03474678844213486,
- -0.06425900757312775,
- -0.04978132247924805,
- 0.05366934835910797,
- 0.03681771084666252,
- -0.03732670843601227,
- -0.008890705183148384,
- 0.0495201013982296,
- 0.040495265275239944,
- 0.003905021818354726,
- -0.045412275940179825,
- 0.017672788351774216,
- -0.03983054682612419,
- -0.03046736679971218,
- 0.0555582232773304,
- -0.028395960107445717,
- 0.011492748744785786,
- 0.03210277110338211,
- 0.036163654178380966,
- -0.03329797834157944,
- -0.04916611313819885,
- -0.017746364697813988,
- -0.022035274654626846,
- 0.01199825294315815,
- -0.05567711964249611,
- -0.06567523628473282,
- -0.0814565122127533,
- -0.023830194026231766,
- -0.0633314847946167,
- 0.016372326761484146,
- -0.0018741284729912877,
- 0.019845472648739815,
- 0.049444667994976044,
- 0.07194726914167404,
- -0.03774645924568176,
- -0.00236787018366158,
- -0.06784234941005707,
- -0.06281831115484238,
- 0.030533382669091225,
- -0.011426740325987339,
- 0.0059328037314116955,
- -0.008790683932602406,
- -0.005953780375421047,
- -0.02122882381081581,
- -0.03258020803332329,
- -0.07215475291013718,
- 0.08983199298381805,
- 0.09011632949113846,
- 0.022977372631430626,
- -0.09310365468263626,
- 0.06323211640119553
- ]
- },
- {
- "keyword": "beijing",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.0105562973767519,
- 0.04225402697920799,
- 0.05255459249019623,
- 0.06230361759662628,
- -0.015416117385029793,
- -0.019841386005282402,
- 0.10377187281847,
- -0.02312573418021202,
- -0.023747334256768227,
- 0.0014593821251764894,
- 0.03233309090137482,
- -0.0704195648431778,
- 0.056634433567523956,
- 0.06133374944329262,
- -0.013320457190275192,
- -0.01879781112074852,
- 0.0691896304488182,
- 0.014420713298022747,
- -0.00023629020142834634,
- -0.11863770335912704,
- -0.0162510983645916,
- -0.06856194883584976,
- 0.04268792271614075,
- 0.07290014624595642,
- -0.022002194076776505,
- 0.01788700558245182,
- -0.054634939879179,
- 0.10463995486497879,
- 0.03548575937747955,
- -0.022970523685216904,
- -0.08829595148563385,
- 0.07615725696086884,
- 0.04330768808722496,
- 0.028387300670146942,
- 0.09109549224376678,
- 0.049249399453401566,
- -0.027241265401244164,
- -0.04255053028464317,
- 0.015320293605327606,
- 0.008424228988587856,
- 0.08575090765953064,
- -0.007899129763245583,
- 0.09949205070734024,
- -0.04959367960691452,
- 0.06373418122529984,
- 0.040483508259058,
- 0.0591401569545269,
- -0.009759482927620411,
- -0.005161288194358349,
- -0.04881589114665985,
- 0.0780094638466835,
- 0.04605486989021301,
- -0.024843676015734673,
- 0.017476337030529976,
- 0.0029878243803977966,
- 0.08617977797985077,
- -0.025105400010943413,
- -0.01571536622941494,
- -0.030256999656558037,
- -0.015417327173054218,
- -0.03755922242999077,
- 0.03444498032331467,
- -0.08212298899888992,
- 0.021959491074085236,
- 0.07855655997991562,
- 0.042464498430490494,
- -0.042477961629629135,
- 0.09490670263767242,
- 0.04324908182024956,
- -0.0727391168475151,
- 0.04512801766395569,
- 0.0014462824910879135,
- -0.030927494168281555,
- 0.004494844004511833,
- 0.008932930417358875,
- -0.07722635567188263,
- 0.03643164411187172,
- -0.013964047655463219,
- -0.009295837953686714,
- -0.05622076243162155,
- 0.05509902909398079,
- -0.07423745095729828,
- 0.039936818182468414,
- 0.032154809683561325,
- -0.005803451407700777,
- -0.06815752387046814,
- -0.016850953921675682,
- 0.036581553518772125,
- 0.07771963626146317,
- -0.000337484321789816,
- -0.05885007232427597,
- 0.11027464270591736,
- -0.04103117808699608,
- 0.06169533357024193,
- -0.06910128891468048,
- -0.003661936381831765,
- 0.003235691227018833,
- 0.009144788607954979,
- -0.014510169625282288,
- 0.17234362661838531,
- 0.03572096675634384,
- 0.04434160515666008,
- 0.03196321055293083,
- -0.004383356776088476,
- 0.07496611028909683,
- -0.05665065348148346,
- -0.08073268830776215,
- 0.06050604209303856,
- -0.029648974537849426,
- 0.03355105593800545,
- -0.09343071281909943,
- -0.015038201585412025,
- -0.011100385338068008,
- 0.006606729701161385,
- -0.004114904906600714,
- 0.07233221083879471,
- -0.0024448945187032223,
- 0.06256616860628128,
- -0.07611511647701263,
- 0.005193399731069803,
- -0.02427138201892376,
- 0.03300182521343231,
- -0.03450731188058853,
- -0.022389238700270653,
- -0.05131853371858597,
- -0.05518755689263344,
- -0.031242264434695244,
- -3.719414736215417e-33,
- 0.01043526828289032,
- -0.022368989884853363,
- 0.038695573806762695,
- -0.008395018987357616,
- -0.033018678426742554,
- -0.005073471460491419,
- 0.03754490241408348,
- -0.0022400629241019487,
- -0.08467063307762146,
- 0.028705280274152756,
- -0.029964275658130646,
- -0.025059904903173447,
- -0.02308088168501854,
- 0.048961278051137924,
- 0.15005075931549072,
- 0.05471429601311684,
- 0.01867382787168026,
- 0.020701834931969643,
- -0.05330604687333107,
- 0.021899500861763954,
- -0.034485988318920135,
- 0.018214793875813484,
- -0.039177875965833664,
- -0.00971069186925888,
- 0.013628387823700905,
- 0.0297844298183918,
- 0.016713501885533333,
- 0.01299449522048235,
- 0.05335455387830734,
- 0.016455136239528656,
- 0.006362468004226685,
- 0.023711159825325012,
- 0.011539340950548649,
- 0.010491167195141315,
- -0.0005358880152925849,
- 0.02183888666331768,
- -0.024601392447948456,
- -0.01560570951551199,
- -0.0005481058615259826,
- 0.043043069541454315,
- 0.02588033676147461,
- 0.0036963627208024263,
- -0.04417308419942856,
- -0.027892816811800003,
- 0.030993498861789703,
- 0.07387949526309967,
- -0.04771498590707779,
- -0.02711089327931404,
- 0.07711686193943024,
- -0.023191431537270546,
- -0.020657138898968697,
- -0.006668619345873594,
- -0.06546232849359512,
- 0.04939408600330353,
- 0.05578591302037239,
- -0.016856582835316658,
- -0.009459911845624447,
- -0.05206689238548279,
- -0.011250277049839497,
- 0.03448345512151718,
- 0.00391218438744545,
- 0.05225103721022606,
- -0.14501677453517914,
- 0.04000207409262657,
- 0.05939139425754547,
- -0.019448116421699524,
- 0.0011549486080184579,
- -0.006701016332954168,
- 0.005050754640251398,
- -0.0004637654637917876,
- -0.03279748558998108,
- -0.023677699267864227,
- 0.054946377873420715,
- 0.026586465537548065,
- -0.014882584102451801,
- -0.010060110129415989,
- -0.09577548503875732,
- -0.024280454963445663,
- -0.02710111066699028,
- 0.05519627034664154,
- -0.08952540904283524,
- 0.023238828405737877,
- -0.02455792762339115,
- 0.0646497830748558,
- 0.006693837698549032,
- -0.018284425139427185,
- 0.027324998751282692,
- -0.013286830857396126,
- 0.022375870496034622,
- -0.034047629684209824,
- -0.19297917187213898,
- -0.10721799731254578,
- 0.06329596042633057,
- 0.030533645302057266,
- -0.03960198536515236,
- 2.2412474877876833e-33,
- -0.04022466018795967,
- -0.02810404635965824,
- -0.02534492127597332,
- 0.0920809656381607,
- -0.015100794844329357,
- -0.020367221906781197,
- 0.0309272613376379,
- 0.03224584460258484,
- 0.039985790848731995,
- 0.05043911188840866,
- -0.06441839784383774,
- -0.06990203261375427,
- 0.12530598044395447,
- 0.0452885702252388,
- -0.007472188677638769,
- 0.03317353129386902,
- 0.06594077497720718,
- 0.046219393610954285,
- -0.08645244687795639,
- 0.051117319613695145,
- -0.046277061104774475,
- -0.10777350515127182,
- -0.06657171994447708,
- -0.014013535343110561,
- -0.09714307636022568,
- 0.06477614492177963,
- 0.04207588732242584,
- -0.0783921629190445,
- -0.058038901537656784,
- 0.01856832019984722,
- -0.1162242516875267,
- 0.015856198966503143,
- -0.030609985813498497,
- 0.114755779504776,
- -0.026940524578094482,
- 0.07418501377105713,
- -0.014788004569709301,
- -0.023497555404901505,
- 0.004722250159829855,
- -0.05516005679965019,
- -0.011681840755045414,
- -0.024759940803050995,
- 0.032074254006147385,
- 0.08909634500741959,
- 0.04069513827562332,
- -0.010401877574622631,
- -0.07197703421115875,
- 0.03496190160512924,
- -0.045847199857234955,
- 0.010355978272855282,
- -0.08204487711191177,
- 0.02222927287220955,
- -0.02322879061102867,
- -0.005269954912364483,
- -0.059632133692502975,
- -0.004163817968219519,
- -0.049965981394052505,
- -0.0008891981560736895,
- 0.025021139532327652,
- -0.10734149813652039,
- 0.04280959442257881,
- 0.050084300339221954,
- -0.07497189939022064,
- 0.05405907332897186,
- -0.09164290130138397,
- 0.023938091471791267,
- 0.08760205656290054,
- 0.05562411621212959,
- 0.05136498063802719,
- -0.05421357974410057,
- 0.059052564203739166,
- 0.05807079002261162,
- -0.04762563854455948,
- 0.048352040350437164,
- -0.054404836148023605,
- 0.029748031869530678,
- -0.055884625762701035,
- 0.09458298236131668,
- 0.025581687688827515,
- -0.006013515871018171,
- 0.05534245818853378,
- 0.006993163377046585,
- -0.003247367450967431,
- 0.016349444165825844,
- -0.011657205410301685,
- 0.0071840728633105755,
- 0.01530142780393362,
- 0.053831715136766434,
- 0.06321179121732712,
- -0.02813906967639923,
- -0.020075969398021698,
- 0.02789558470249176,
- -0.0611291266977787,
- -0.07649006694555283,
- -0.07000831514596939,
- -1.1647099285028162e-8,
- 0.006137560587376356,
- -0.014848658815026283,
- -0.044407788664102554,
- 0.04962754249572754,
- -0.07544295489788055,
- 0.018360449001193047,
- 0.014454196207225323,
- 0.02987515553832054,
- 0.054780568927526474,
- 0.03105279989540577,
- -0.004258900880813599,
- 0.005987036041915417,
- -0.05154977738857269,
- 0.027788834646344185,
- -0.09316366165876389,
- -0.014348174445331097,
- -0.04715742915868759,
- 0.020040350034832954,
- 0.006741974037140608,
- -0.052952203899621964,
- -0.06191356107592583,
- 0.07524482905864716,
- 0.005412047728896141,
- -0.06106240302324295,
- -0.010743494145572186,
- -0.021372033283114433,
- -0.0731683298945427,
- 0.02860790677368641,
- -0.038829632103443146,
- -0.026376165449619293,
- 0.04217265918850899,
- -0.029990304261446,
- -0.01486777514219284,
- -0.029044177383184433,
- 0.0055290344171226025,
- 0.027505308389663696,
- 0.05080344155430794,
- -0.06026720628142357,
- 0.04146064072847366,
- -0.09844940155744553,
- -0.029540127143263817,
- -0.08383813500404358,
- 0.044835589826107025,
- -0.0031820659060031176,
- 0.09969845414161682,
- -0.09041391313076019,
- 0.07325728237628937,
- -0.08344276994466782,
- 0.02392803505063057,
- 0.0047373161651194096,
- -0.09491714835166931,
- -0.022650349885225296,
- 0.013877694495022297,
- -0.02593439817428589,
- 0.018438000231981277,
- 0.0336291566491127,
- 0.0051706270314753056,
- -0.05171370133757591,
- -0.05058537423610687,
- 0.07490939646959305,
- 0.028671562671661377,
- -0.005811203271150589,
- -0.0858917161822319,
- 0.052611127495765686
- ]
- },
- {
- "keyword": "silicon valley",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.07205129414796829,
- -0.000978771480731666,
- 0.04093677178025246,
- 0.06293527781963348,
- -0.03896550461649895,
- -0.07679438591003418,
- 0.031855080276727676,
- -0.05821797624230385,
- -0.023025911301374435,
- -0.03276665881276131,
- 0.01177902240306139,
- -0.08195770531892776,
- 0.07000159472227097,
- -0.020832616835832596,
- -0.031700026243925095,
- 0.008351909928023815,
- -0.008513924665749073,
- -0.055309563875198364,
- 0.007278526201844215,
- -0.07876231521368027,
- -0.014278477989137173,
- -0.042992569506168365,
- -0.03682521730661392,
- 0.030048705637454987,
- 0.07133454829454422,
- 0.03521128371357918,
- -0.01176818460226059,
- 0.04087012633681297,
- -0.025821499526500702,
- -0.039174165576696396,
- 0.001856673159636557,
- 0.1312497854232788,
- 0.06298667192459106,
- -0.03925541043281555,
- 0.09227132797241211,
- 0.08843163400888443,
- 0.03334428369998932,
- -0.010732359252870083,
- -0.00687346002086997,
- 0.0018423480214551091,
- -0.002193924505263567,
- -0.07673968374729156,
- 0.053003568202257156,
- 0.0010072160512208939,
- -0.00957819540053606,
- 0.02007332071661949,
- 0.03867001459002495,
- -0.06070279702544212,
- 0.004897594451904297,
- -0.0015196383465081453,
- 0.006233667954802513,
- -0.018140532076358795,
- 0.026556188240647316,
- 0.040767818689346313,
- -0.050887301564216614,
- -0.002714197151362896,
- 0.09651768952608109,
- 0.04223727807402611,
- 0.007993013598024845,
- 0.02140010893344879,
- 0.07555719465017319,
- -0.07984308153390884,
- -0.10064954310655594,
- 0.06714044511318207,
- 0.05321287363767624,
- 0.042900200933218,
- 0.0534672848880291,
- 0.03345411270856857,
- -0.07979489862918854,
- -0.1522919088602066,
- 0.023486044257879257,
- -0.014041264541447163,
- -0.03292207047343254,
- 0.012884471565485,
- 0.10834596306085587,
- -0.009148702025413513,
- 0.06055304780602455,
- 0.07278268784284592,
- 0.08411668986082077,
- -0.0406380333006382,
- 0.07877901941537857,
- -0.006237623747438192,
- -0.06384962797164917,
- 0.031258076429367065,
- -0.06843938678503036,
- 0.04066943749785423,
- -0.0882628932595253,
- 0.03667746111750603,
- 0.07683224976062775,
- -0.05261131003499031,
- -0.08983196318149567,
- 0.008661553263664246,
- 0.0005234370473772287,
- -0.04220682382583618,
- 0.058290354907512665,
- 0.0003247680433560163,
- -0.07206021994352341,
- -0.06148378178477287,
- -0.011425339616835117,
- 0.14406225085258484,
- -0.03822316974401474,
- 0.03270871564745903,
- -0.02702172100543976,
- -0.022233491763472557,
- 0.0834248960018158,
- -0.017103224992752075,
- 0.017522050067782402,
- 0.13233885169029236,
- -0.008631656877696514,
- 0.03344989940524101,
- 0.001792380353435874,
- 0.04295191168785095,
- 0.020567098632454872,
- -0.03173608332872391,
- 0.03890107199549675,
- 0.017634620890021324,
- 0.08704929053783417,
- 0.060035452246665955,
- -0.055143240839242935,
- 0.009011275134980679,
- -0.01995222084224224,
- -0.028175728395581245,
- -0.12535730004310608,
- -0.04914286360144615,
- -0.015980621799826622,
- -0.06810490787029266,
- -0.09874513000249863,
- -3.5310505827037764e-33,
- 0.04803509637713432,
- -0.002552814083173871,
- 0.04407275468111038,
- -0.019416699185967445,
- 0.02571004629135132,
- -0.03970886021852493,
- 0.03098369389772415,
- -0.055048421025276184,
- -0.08478225022554398,
- -0.047856442630290985,
- 0.0038800151087343693,
- -0.016055110841989517,
- -0.016757594421505928,
- 0.03377291187644005,
- 0.1529054045677185,
- -0.009192303754389286,
- -0.010313269682228565,
- -0.04242655634880066,
- -0.03896335884928703,
- -0.06482423096895218,
- -0.021218715235590935,
- 0.023984700441360474,
- -0.05214962735772133,
- -0.032633520662784576,
- 0.013068840838968754,
- -0.035335153341293335,
- 0.0085627231746912,
- 0.048703163862228394,
- 0.00849791057407856,
- 0.019295111298561096,
- -0.045671772211790085,
- 0.08055440336465836,
- 0.0033477700781077147,
- -0.0363817997276783,
- 0.03541187569499016,
- -0.003355281660333276,
- -0.054364826530218124,
- -0.007281378377228975,
- -0.008188387379050255,
- 0.027235424146056175,
- -0.018531912937760353,
- 0.056758664548397064,
- 0.05566186457872391,
- -0.021742943674325943,
- 0.07430512458086014,
- 0.02704799175262451,
- 0.03854392096400261,
- 0.0034347891341894865,
- 0.04184812307357788,
- -0.02671550028026104,
- -0.06570379436016083,
- 0.06651509553194046,
- -0.013089916668832302,
- -0.026576772332191467,
- 0.02719196118414402,
- -0.018619781360030174,
- 0.029158279299736023,
- -0.056783147156238556,
- -0.057091351598501205,
- 0.0725046694278717,
- 0.04563529044389725,
- 0.07166494429111481,
- -0.012318048626184464,
- 0.039519473910331726,
- -0.0451744943857193,
- -0.030246155336499214,
- 0.011660798452794552,
- 0.13047729432582855,
- 0.024004634469747543,
- 0.0427885428071022,
- -0.026369042694568634,
- -0.004016909282654524,
- 0.03140459954738617,
- 0.020771421492099762,
- -0.08245409280061722,
- -0.00024798596859909594,
- -0.0829736515879631,
- 0.006679695099592209,
- -0.024782579392194748,
- 0.014221835881471634,
- -0.001514563336968422,
- -0.05178293585777283,
- -0.03068079799413681,
- 0.0639079362154007,
- 0.034564077854156494,
- 0.04812606796622276,
- -0.0007749219075776637,
- -0.09036184102296829,
- 0.030175847932696342,
- -0.08930844068527222,
- -0.17793892323970795,
- -0.1016039326786995,
- 0.1056419238448143,
- 0.03185451030731201,
- -0.09568421542644501,
- 1.794600960448485e-33,
- -0.03489255905151367,
- -0.020330391824245453,
- 0.0015219624619930983,
- 0.04682878032326698,
- 0.018527109175920486,
- -0.0038947986904531717,
- 0.05080974102020264,
- -0.0111716128885746,
- -0.03345746546983719,
- 0.1070333942770958,
- -0.07196394354104996,
- 0.01932099647819996,
- 0.0207965187728405,
- 0.00003207411282346584,
- 0.02763066068291664,
- 0.0054936534725129604,
- 0.10170771181583405,
- -0.02869280055165291,
- 0.010166488587856293,
- 0.04850045219063759,
- 0.03016706183552742,
- -0.026368793100118637,
- -0.053467072546482086,
- -0.045935846865177155,
- 0.01754584163427353,
- 0.014145527966320515,
- -0.006466852035373449,
- 0.024006931111216545,
- -0.02127067930996418,
- 0.02178788185119629,
- -0.05066525191068649,
- -0.06154792755842209,
- 0.00577903725206852,
- 0.025533966720104218,
- 0.005848531145602465,
- 0.024792687967419624,
- 0.026852644979953766,
- -0.10491380840539932,
- 0.0059051536954939365,
- -0.06266969442367554,
- 0.045954663306474686,
- -0.07690711319446564,
- -0.027554916217923164,
- 0.07618418335914612,
- 0.019473182037472725,
- 0.025594627484679222,
- -0.01098654605448246,
- 0.007375121582299471,
- -0.07381583750247955,
- -0.04808168113231659,
- -0.054672032594680786,
- 0.009193502366542816,
- -0.017907802015542984,
- 0.0620860680937767,
- -0.02231401763856411,
- 0.011455297470092773,
- -0.038559332489967346,
- 0.1160464957356453,
- -0.07724820822477341,
- -0.03758282959461212,
- -0.023323040455579758,
- 0.028933141380548477,
- -0.023442214354872704,
- 0.05302485078573227,
- -0.009950857609510422,
- -0.014320972375571728,
- 0.05711488053202629,
- 0.06364993751049042,
- -0.05558479204773903,
- -0.03617030754685402,
- 0.020354855805635452,
- 0.02574387937784195,
- -0.058602459728717804,
- -0.05632727965712547,
- -0.13654208183288574,
- -0.0008728968095965683,
- -0.05076899752020836,
- 0.028526851907372475,
- -0.06206453591585159,
- 0.0661415234208107,
- 0.04834068566560745,
- -0.05557141825556755,
- -0.05276152491569519,
- 0.13526108860969543,
- 0.005242225248366594,
- 0.1002955362200737,
- 0.06518687307834625,
- -0.03696292266249657,
- 0.0023476670030504465,
- -0.030103649944067,
- -0.07138294726610184,
- 0.015009351074695587,
- -0.010553105734288692,
- -0.012421807274222374,
- -0.06412795931100845,
- -1.2400443338833611e-8,
- 0.07303271442651749,
- -0.027728410437703133,
- -0.11463833600282669,
- -0.027151810005307198,
- -0.02952086552977562,
- 0.0029961741529405117,
- -0.024081628769636154,
- 0.04541204124689102,
- -0.024015318602323532,
- 0.10376325994729996,
- -0.030207866802811623,
- -0.04456601291894913,
- 0.02525658905506134,
- 0.007989429868757725,
- -0.023745961487293243,
- -0.005481490399688482,
- -0.013704197481274605,
- 0.04231951758265495,
- -0.021227838471531868,
- -0.035036493092775345,
- 0.028358981013298035,
- 0.034092310816049576,
- 0.08360981196165085,
- -0.0018949662335217,
- -0.015066366642713547,
- -0.0019358539720997214,
- 0.0035353058483451605,
- -0.02439034916460514,
- 0.003346532816067338,
- 0.02045230008661747,
- -0.03591299429535866,
- -0.0057725501246750355,
- -0.07285795360803604,
- -0.0428563691675663,
- -0.029853494837880135,
- 0.020061003044247627,
- 0.038968149572610855,
- -0.005936292931437492,
- 0.06794148683547974,
- -0.023962847888469696,
- -0.01900758035480976,
- 0.012744528241455555,
- 0.0339498408138752,
- 0.05836156755685806,
- 0.04543977230787277,
- -0.033133041113615036,
- 0.01333638560026884,
- -0.00035809868131764233,
- 0.03936402127146721,
- 0.0020823136437684298,
- -0.03388501703739166,
- 0.02028270810842514,
- -0.02384345978498459,
- 0.06224888190627098,
- 0.04718538746237755,
- -0.007328334264457226,
- 0.008490106090903282,
- -0.041646476835012436,
- -0.011763907968997955,
- 0.12218067795038223,
- 0.09744873642921448,
- -0.033372439444065094,
- -0.0030374685302376747,
- -0.04814441502094269
- ]
- },
- {
- "keyword": "bay area",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.058550890535116196,
- -0.0027448232285678387,
- 0.04940921440720558,
- 0.0155714750289917,
- -0.026641206815838814,
- -0.01083948090672493,
- -0.015702789649367332,
- 0.011930055916309357,
- -0.03169780969619751,
- -0.042174626141786575,
- 0.03890521824359894,
- -0.06077244505286217,
- 0.008642240427434444,
- -0.043652474880218506,
- 0.020645691081881523,
- 0.06449117511510849,
- 0.10130816698074341,
- -0.01514382939785719,
- 0.04548024758696556,
- -0.0358613096177578,
- -0.040188297629356384,
- 0.019307661801576614,
- -0.03254096955060959,
- -0.061702728271484375,
- -0.018854215741157532,
- 0.03606550022959709,
- 0.07301545143127441,
- 0.10059161484241486,
- 0.02325557731091976,
- -0.005997592117637396,
- -0.01894949935376644,
- 0.0661734864115715,
- 0.03670242801308632,
- -0.020309505984187126,
- 0.12660163640975952,
- -0.020825762301683426,
- -0.03765282407402992,
- -0.0421254001557827,
- 0.02122892253100872,
- 0.060957252979278564,
- -0.04213535413146019,
- 0.023317651823163033,
- 0.01979842595756054,
- 0.09678769111633301,
- -0.01942228153347969,
- -0.021840756759047508,
- -0.03931225836277008,
- 0.006717821583151817,
- 0.10699059069156647,
- -0.014856850728392601,
- 0.022061973810195923,
- -0.02208182029426098,
- -0.0054810745641589165,
- 0.028582295402884483,
- 0.0178623478859663,
- 0.037802305072546005,
- -0.016308072954416275,
- 0.02340124361217022,
- 0.06449556350708008,
- -0.034572191536426544,
- 0.0022018207237124443,
- -0.025067806243896484,
- -0.028351161628961563,
- 0.011982349678874016,
- 0.017971495166420937,
- 0.07898598909378052,
- -0.05160779878497124,
- 0.039071474224328995,
- -0.009441250935196877,
- -0.12763693928718567,
- -0.007337579037994146,
- 0.04147278890013695,
- 0.014757538214325905,
- 0.005148870404809713,
- -0.021296150982379913,
- -0.09026771783828735,
- -0.031174929812550545,
- 0.045455243438482285,
- 0.08456515520811081,
- -0.010359380394220352,
- -0.036047324538230896,
- -0.03833208233118057,
- -0.03553168103098869,
- 0.03267929330468178,
- -0.08042318373918533,
- -0.02234894223511219,
- 0.03843368962407112,
- 0.06211978197097778,
- 0.04648270830512047,
- 0.08578895032405853,
- -0.018918389454483986,
- 0.02043343521654606,
- -0.08531799912452698,
- -0.11742294579744339,
- -0.03961137309670448,
- -0.03275321051478386,
- -0.016632800921797752,
- -0.05249786376953125,
- -0.01673315279185772,
- 0.1302165687084198,
- 0.035424426198005676,
- 0.08099547773599625,
- 0.006789165548980236,
- -0.0544862262904644,
- -0.00302583328448236,
- 0.015098820440471172,
- -0.08224296569824219,
- 0.11164382845163345,
- 0.018044088035821915,
- 0.030840463936328888,
- -0.058748017996549606,
- -0.018540583550930023,
- -0.0505828894674778,
- 0.005084240809082985,
- -0.04213772341609001,
- 0.030647853389382362,
- 0.1329999566078186,
- 0.005071349907666445,
- -0.06686107814311981,
- -0.028751567006111145,
- 0.01142358873039484,
- -0.03848915919661522,
- -0.020279014483094215,
- 0.006791485007852316,
- -0.00848214142024517,
- -0.08418809622526169,
- -0.04038719832897186,
- -1.5912566008035532e-33,
- 0.06373777240514755,
- -0.030146226286888123,
- 0.01684773899614811,
- 0.05814748629927635,
- -0.005577460862696171,
- -0.0005421222303994,
- -0.03238322213292122,
- -0.07345374673604965,
- -0.1148809865117073,
- 0.01839849166572094,
- 0.01809546910226345,
- -0.010612384416162968,
- -0.04066133126616478,
- -0.07849889248609543,
- 0.14557817578315735,
- 0.010273478925228119,
- -0.022488940507173538,
- 0.03805427625775337,
- -0.051892492920160294,
- -0.0357811376452446,
- -0.057285409420728683,
- 0.008081573992967606,
- 0.003860498545691371,
- -0.04010116681456566,
- -0.04243791848421097,
- 0.030227800831198692,
- 0.04444907233119011,
- 0.0017760494956746697,
- 0.06396445631980896,
- 0.03595304116606712,
- -0.03850249573588371,
- 0.025662627071142197,
- 0.01772291027009487,
- 0.024473797529935837,
- 0.005722299683839083,
- -0.03768365830183029,
- 0.005348811857402325,
- -0.0785626471042633,
- 0.029395483434200287,
- 0.0024377191439270973,
- 0.044401057064533234,
- 0.028884120285511017,
- 0.048464398831129074,
- -0.01234106719493866,
- 0.025686152279376984,
- -0.04611993581056595,
- 0.04944669082760811,
- -0.0885554626584053,
- 0.10191671550273895,
- -0.01853569783270359,
- -0.03496195003390312,
- -0.03333813324570656,
- -0.04119981452822685,
- 0.00028536305762827396,
- -0.010992408730089664,
- 0.009485076181590557,
- 0.0318361297249794,
- -0.0424555204808712,
- -0.018667059019207954,
- 0.048740096390247345,
- 0.10954373329877853,
- 0.12932151556015015,
- 0.014095564372837543,
- -0.08622118085622787,
- -0.019865021109580994,
- -0.04851603880524635,
- 0.05316021665930748,
- 0.002133434871211648,
- -0.002998804673552513,
- -0.003674133215099573,
- 0.033558718860149384,
- -0.08663704991340637,
- 0.12068364769220352,
- 0.04386936128139496,
- -0.002850277815014124,
- 0.02070499211549759,
- -0.08476011455059052,
- 0.07136435061693192,
- -0.07612109184265137,
- 0.019723044708371162,
- -0.02174988016486168,
- -0.06333725154399872,
- -0.056309524923563004,
- 0.07118067145347595,
- 0.08265519887208939,
- -0.000973161484580487,
- -0.016244081780314445,
- -0.03073681890964508,
- -0.0798514112830162,
- -0.03674200549721718,
- -0.06758081912994385,
- -0.054284922778606415,
- 0.04448285326361656,
- 0.025423264130949974,
- -0.08669967949390411,
- 3.2563181756269184e-34,
- -0.08702658861875534,
- -0.05935819447040558,
- 0.01879918947815895,
- 0.014001754112541676,
- -0.046650055795907974,
- -0.03171277046203613,
- 0.07418840378522873,
- 0.028817670419812202,
- 0.016504598781466484,
- 0.036292463541030884,
- -0.1528383493423462,
- 0.013164041563868523,
- 0.003916999325156212,
- -0.00269914697855711,
- 0.0230533666908741,
- 0.03970792144536972,
- 0.05772218108177185,
- 0.019027719274163246,
- -0.07659348100423813,
- -0.11763138324022293,
- 0.028459887951612473,
- -0.0927715077996254,
- 0.06391574442386627,
- -0.01109679602086544,
- -0.059833183884620667,
- 0.08947894722223282,
- 0.043245140463113785,
- 0.05082002282142639,
- -0.043716296553611755,
- 0.00792935024946928,
- -0.07210258394479752,
- 0.007524076383560896,
- 0.018187418580055237,
- 0.03351660817861557,
- -0.11483141779899597,
- -0.019644122570753098,
- 0.03385921195149422,
- 0.04778806120157242,
- 0.03828036040067673,
- -0.026840314269065857,
- -0.02423333190381527,
- -0.06310368329286575,
- -0.03868381306529045,
- 0.042737603187561035,
- -0.06831297278404236,
- -0.04130140319466591,
- 0.033329036086797714,
- 0.01795441098511219,
- 0.03177201747894287,
- -0.00910181738436222,
- -0.06464703381061554,
- 0.059939779341220856,
- -0.015398241579532623,
- 0.06333564221858978,
- -0.08870244026184082,
- 0.07071634382009506,
- -0.014214473776519299,
- 0.021363096311688423,
- -0.010988819412887096,
- 0.0010642001871019602,
- 0.026550034061074257,
- 0.08286833763122559,
- -0.018918421119451523,
- 0.09546757489442825,
- 0.048332810401916504,
- 0.07158217579126358,
- 0.021694371476769447,
- 0.011320190504193306,
- -0.026916181668639183,
- -0.011341546662151814,
- 0.016781073063611984,
- 0.09677144140005112,
- -0.021089814603328705,
- 0.010683061555027962,
- 0.014490929432213306,
- 0.04426846653223038,
- 0.015415916219353676,
- 0.03472423553466797,
- 0.0058649093843996525,
- 0.06996149569749832,
- -0.0241647120565176,
- -0.00712286913767457,
- -0.12283344566822052,
- 0.11109798401594162,
- -0.0426487997174263,
- -0.008269506506621838,
- 0.035873595625162125,
- 0.004367648158222437,
- -0.0017492248443886638,
- -0.06858460605144501,
- -0.051348812878131866,
- 0.08803291618824005,
- -0.11545093357563019,
- -0.001496494049206376,
- -0.09462863206863403,
- -1.2287285855450136e-8,
- -0.004208141937851906,
- 0.05878913775086403,
- -0.047254934906959534,
- 0.01422517653554678,
- 0.0278785303235054,
- -0.028869779780507088,
- -0.03790502995252609,
- 0.0882912427186966,
- 0.032877467572689056,
- 0.020527569577097893,
- 0.026738008484244347,
- -0.013560500927269459,
- 0.008170472458004951,
- -0.05098716542124748,
- -0.006986077409237623,
- -0.06179232895374298,
- -0.007351579610258341,
- -0.04290083423256874,
- -0.025878505781292915,
- -0.06961528211832047,
- 0.0033440738916397095,
- 0.06866341829299927,
- 0.04151909425854683,
- 0.026319384574890137,
- -0.04452897608280182,
- -0.004893384873867035,
- 0.018757769837975502,
- 0.0709642693400383,
- 0.004597813356667757,
- 0.011685376986861229,
- -0.02506771683692932,
- 0.02525903843343258,
- -0.09399715065956116,
- -0.005363116506487131,
- -0.006931609008461237,
- -0.0377381332218647,
- -0.07779622822999954,
- -0.009135814383625984,
- -0.016197657212615013,
- 0.010324428789317608,
- -0.009993602521717548,
- -0.05931692197918892,
- -0.053654298186302185,
- 0.03390900790691376,
- 0.06706317514181137,
- 0.090291827917099,
- 0.016598083078861237,
- 0.06033504381775856,
- 0.0134686678647995,
- 0.04488407075405121,
- -0.046790946274995804,
- 0.054322727024555206,
- -0.08203167468309402,
- 0.012721587903797626,
- -0.02943573333323002,
- 0.02588512748479843,
- 0.04391055554151535,
- -0.04317192733287811,
- -0.03279288485646248,
- 0.11423834413290024,
- 0.0036492005456238985,
- -0.030813634395599365,
- -0.02764442004263401,
- 0.07204674929380417
- ]
- },
- {
- "keyword": "new york city",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.08044176548719406,
- 0.0229889415204525,
- 0.04415718838572502,
- 0.048377763479948044,
- -0.015640864148736,
- 0.0020176286343485117,
- 0.024165552109479904,
- -0.04537832364439964,
- -0.03768501058220863,
- -0.010816841386258602,
- 0.023065460845828056,
- -0.04671766608953476,
- -0.03996788710355759,
- 0.0385938324034214,
- -0.01941838674247265,
- 0.03812013939023018,
- 0.06549529731273651,
- -0.023801203817129135,
- -0.008081271313130856,
- -0.03669707477092743,
- 0.03625445440411568,
- -0.024944284930825233,
- 0.039128515869379044,
- 0.03350008279085159,
- 0.029159972444176674,
- 0.06695136427879333,
- 0.004919661674648523,
- 0.02576596848666668,
- -0.017323831096291542,
- -0.02535869926214218,
- -0.003022770630195737,
- -0.018301459029316902,
- 0.08370188623666763,
- 0.010969108901917934,
- 0.03071724623441696,
- 0.03625313937664032,
- 0.06425818800926208,
- 0.046376798301935196,
- 0.10813217610120773,
- 0.06058807298541069,
- -0.019846724346280098,
- -0.03528491407632828,
- -0.029779555276036263,
- 0.011529853567481041,
- 0.002287451643496752,
- 0.010100236162543297,
- 0.00825559627264738,
- 0.08053699880838394,
- 0.06370623409748077,
- 0.0024624804500490427,
- -0.010705655440688133,
- -0.012399649247527122,
- -0.034063614904880524,
- 0.022179894149303436,
- 0.0011824608081951737,
- 0.010337497107684612,
- 0.017471086233854294,
- 0.05400741472840309,
- -0.01306134182959795,
- -0.016581149771809578,
- 0.04161589592695236,
- -0.04392194375395775,
- -0.06861864030361176,
- 0.06069744750857353,
- 0.05657641589641571,
- -0.00863094162195921,
- 0.008599922060966492,
- 0.08279933035373688,
- -0.04269777238368988,
- -0.172237828373909,
- 0.020740313455462456,
- 0.01777714304625988,
- 0.023310959339141846,
- 0.012975255958735943,
- 0.05624551698565483,
- -0.01250468846410513,
- 0.0017654979601502419,
- 0.02116512879729271,
- 0.00863910373300314,
- 0.043703045696020126,
- 0.056218866258859634,
- -0.015277274884283543,
- -0.021684765815734863,
- 0.06207234784960747,
- -0.008303034119307995,
- 0.04686865583062172,
- -0.09045102447271347,
- 0.10789934545755386,
- 0.025963930413126945,
- 0.020819734781980515,
- -0.08410626649856567,
- 0.04615652561187744,
- -0.05065624415874481,
- -0.007819942198693752,
- -0.06793033331632614,
- 0.026255210861563683,
- -0.010634462349116802,
- 0.004422864876687527,
- -0.023779964074492455,
- 0.10773308575153351,
- -0.027380261570215225,
- 0.01129317469894886,
- 0.01806669682264328,
- 0.12084469199180603,
- 0.0846070721745491,
- -0.011642060242593288,
- -0.04002410173416138,
- 0.015107178129255772,
- -0.08008701354265213,
- 0.043963201344013214,
- 0.0002825841947924346,
- 0.0075518288649618626,
- -0.07535110414028168,
- 0.004101019352674484,
- 0.006301224231719971,
- 0.0045261080376803875,
- 0.013791078701615334,
- 0.044501543045043945,
- -0.03150850161910057,
- -0.0783509910106659,
- -0.026508918032050133,
- 0.046986717730760574,
- -0.052223656326532364,
- 0.008242734707891941,
- -0.13554401695728302,
- -0.04313014820218086,
- -0.04944906756281853,
- -2.9608199261588155e-33,
- -0.010575282387435436,
- -0.07595007866621017,
- 0.03915121406316757,
- 0.04962237551808357,
- -0.03757588937878609,
- -0.009888526052236557,
- 0.024206381291151047,
- -0.02267240174114704,
- 0.012532828375697136,
- 0.028205912560224533,
- 0.031468819826841354,
- -0.09571805596351624,
- 0.019600946456193924,
- -0.006502510514110327,
- 0.08301325887441635,
- 0.02202044054865837,
- 0.03983693942427635,
- -0.0371612086892128,
- -0.04308490455150604,
- 0.02479890175163746,
- -0.045667845755815506,
- 0.044111426919698715,
- 0.008932153694331646,
- -0.023700131103396416,
- -0.10944206267595291,
- -0.047954436391592026,
- -0.030521119013428688,
- 0.001484871725551784,
- 0.0022979502100497484,
- -0.01637112721800804,
- 0.0030270013958215714,
- 0.08247600495815277,
- 0.004076047334820032,
- 0.0027597059961408377,
- 0.06416338682174683,
- 0.015130206011235714,
- -0.024611923843622208,
- -0.06547926366329193,
- -0.002013840712606907,
- -0.03856966644525528,
- -0.010242332704365253,
- 0.014415400102734566,
- -0.0025115625467151403,
- 0.028614310547709465,
- 0.03145688399672508,
- 0.07824069261550903,
- -0.06434380263090134,
- 0.03861825168132782,
- 0.040182214230298996,
- -0.021982602775096893,
- -0.03949858248233795,
- 0.037028610706329346,
- -0.18926215171813965,
- 0.046469371765851974,
- 0.04374236613512039,
- -0.01314244233071804,
- 0.005784719716757536,
- -0.05664295703172684,
- 0.034783076494932175,
- 0.048505280166864395,
- -0.09787488728761673,
- 0.14100369811058044,
- 0.022665290161967278,
- 0.0028895800933241844,
- 0.011667292565107346,
- -0.06407549977302551,
- 0.024098200723528862,
- 0.01219915971159935,
- 0.03954419121146202,
- 0.07666581124067307,
- -0.02423817850649357,
- 0.01422720868140459,
- 0.057682380080223083,
- 0.03322182968258858,
- 0.03506562113761902,
- -0.02492259070277214,
- -0.03753502666950226,
- 0.0931568294763565,
- -0.045455850660800934,
- -0.008991613052785397,
- 0.014343206770718098,
- 0.0558503121137619,
- -0.011693581938743591,
- 0.08697858452796936,
- 0.0918164998292923,
- 0.01333917211741209,
- -0.006401177495718002,
- -0.06512864679098129,
- -0.01924811862409115,
- 0.01664644479751587,
- -0.18266700208187103,
- -0.02704726718366146,
- -0.031239500269293785,
- 0.007774189580231905,
- 0.0035505257546901703,
- 2.1183167279590552e-35,
- -0.0343162976205349,
- -0.12079282850027084,
- 0.02263524942100048,
- -0.003304628422483802,
- -0.08430246263742447,
- -0.0031383957248181105,
- -0.0344218946993351,
- 0.017753515392541885,
- 0.0071086701937019825,
- 0.09699176996946335,
- -0.1053127571940422,
- -0.040890831500291824,
- 0.12468651682138443,
- 0.08240506052970886,
- 0.0036516510881483555,
- 0.029762744903564453,
- 0.004228139296174049,
- -0.017097389325499535,
- -0.09221100062131882,
- 0.0020819634664803743,
- 0.0664876252412796,
- -0.004938234109431505,
- -0.07035014778375626,
- -0.02318388782441616,
- -0.0794881135225296,
- -0.030787857249379158,
- -0.025453748181462288,
- 0.00557287409901619,
- -0.05985972285270691,
- -0.025651397183537483,
- -0.031071407720446587,
- -0.032295435667037964,
- -0.061772942543029785,
- 0.030741075053811073,
- -0.005960978101938963,
- 0.105097196996212,
- 0.0006747699808329344,
- -0.04698215797543526,
- 0.032511886209249496,
- -0.05807359889149666,
- -0.010834675282239914,
- -0.022592341527342796,
- 0.001260561402887106,
- 0.08473142236471176,
- 0.040663864463567734,
- 0.06136612594127655,
- -0.09359710663557053,
- 0.015943830832839012,
- -0.02016419731080532,
- -0.059326354414224625,
- -0.08868306130170822,
- 0.01842009834945202,
- -0.077504463493824,
- 0.003164915833622217,
- 0.023344634100794792,
- 0.017123036086559296,
- -0.04600736126303673,
- 0.05166450887918472,
- 0.002953914925456047,
- -0.07743354141712189,
- -0.01857060007750988,
- 0.009020029567182064,
- -0.09245554357767105,
- 0.08231562376022339,
- -0.04103274643421173,
- 0.007040871772915125,
- 0.040929410606622696,
- -0.0226365365087986,
- 0.0021377471275627613,
- 0.013361761346459389,
- 0.061042383313179016,
- 0.09009376168251038,
- -0.06217201054096222,
- -0.012407723814249039,
- -0.0715656727552414,
- -0.07015537470579147,
- -0.004486302379518747,
- 0.013476310297846794,
- -0.0026711735408753157,
- 0.049413371831178665,
- 0.10807546228170395,
- 0.02549656294286251,
- -0.10472811758518219,
- 0.044524721801280975,
- 0.03807723522186279,
- 0.02744043804705143,
- 0.08068329095840454,
- -0.00785092543810606,
- -0.037731654942035675,
- -0.02895941585302353,
- 0.07753005623817444,
- 0.10178562253713608,
- -0.14034628868103027,
- -0.12881352007389069,
- -0.04894402250647545,
- -1.4410963977695701e-8,
- -0.023005753755569458,
- 0.06277504563331604,
- -0.05125433951616287,
- 0.020558936521410942,
- 0.03033507987856865,
- -0.01004974078387022,
- -0.005818603094667196,
- 0.015598352998495102,
- 0.015272838063538074,
- 0.03448428958654404,
- 0.05670204758644104,
- 0.023246213793754578,
- 0.024894878268241882,
- -0.009114167653024197,
- -0.058009073138237,
- -0.11942135542631149,
- 0.016987269744277,
- -0.010784092359244823,
- 0.025435665622353554,
- 0.009926636703312397,
- 0.021749377250671387,
- 0.07974668592214584,
- 0.0019193387124687433,
- -0.0054134177044034,
- 0.001532942522317171,
- -0.07709688693284988,
- 0.06068596616387367,
- 0.011374506168067455,
- -0.0036185001954436302,
- -0.019783586263656616,
- 0.018092691898345947,
- 0.056338947266340256,
- -0.02154684066772461,
- -0.07398597151041031,
- 0.001910585444420576,
- -0.037196915596723557,
- -0.06876254081726074,
- -0.06690007448196411,
- 0.028365151956677437,
- -0.10260629653930664,
- -0.05233535170555115,
- 0.013469455763697624,
- 0.0055996268056333065,
- 0.041042909026145935,
- -0.015777289867401123,
- -0.017380259931087494,
- 0.03966743126511574,
- -0.07112903892993927,
- -0.02706623636186123,
- -0.010946953669190407,
- -0.11278466135263443,
- 0.01174424309283495,
- 0.061429012566804886,
- -0.019770007580518723,
- 0.0043515958823263645,
- -0.003358611837029457,
- -0.03004685789346695,
- 0.02354826033115387,
- -0.05566350743174553,
- 0.0451304167509079,
- 0.09896258264780045,
- -0.023533355444669724,
- -0.026588745415210724,
- 0.04124689847230911
- ]
- },
- {
- "keyword": "washington dc",
- "type": "location",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.012829435057938099,
- 0.020846975967288017,
- 0.0531967394053936,
- 0.048977576196193695,
- -0.022237258031964302,
- 0.01502029038965702,
- -0.0017766370438039303,
- -0.012846737168729305,
- 0.016599483788013458,
- 0.0586964450776577,
- -0.01671491377055645,
- -0.08712505549192429,
- 0.07613486796617508,
- -0.04447920620441437,
- -0.06571141630411148,
- -0.0413786843419075,
- 0.053071528673172,
- -0.0075771077536046505,
- -0.0839458778500557,
- -0.009445713832974434,
- -0.0005512505304068327,
- 0.02400200068950653,
- -0.02718416601419449,
- -0.023191658779978752,
- 0.011137674562633038,
- 0.060501325875520706,
- -0.042484916746616364,
- -0.020630262792110443,
- -0.027118559926748276,
- -0.011240368708968163,
- 0.007817842066287994,
- -0.07081245630979538,
- 0.06979703903198242,
- 0.0658196359872818,
- 0.04007037356495857,
- -0.012122265994548798,
- -0.0339927114546299,
- 0.017450565472245216,
- 0.12122160196304321,
- 0.035391103476285934,
- 0.032501887530088425,
- 0.03926550969481468,
- 0.03363119810819626,
- 0.014761248603463173,
- -0.0272381529211998,
- 0.005040441639721394,
- 0.05922708660364151,
- 0.00454894220456481,
- 0.010255038738250732,
- 0.04234929755330086,
- 0.1044720858335495,
- 0.005926637444645166,
- 0.01174144633114338,
- 0.06423824280500412,
- 0.014900216832756996,
- 0.00288780452683568,
- -0.06290827691555023,
- 0.06657437980175018,
- 0.022636977955698967,
- -0.034675441682338715,
- 0.03161492198705673,
- -0.04357841610908508,
- -0.0944889560341835,
- 0.030529720708727837,
- 0.019177913665771484,
- -0.008236715570092201,
- 0.01388474926352501,
- 0.020641183480620384,
- 0.003040201961994171,
- -0.18782556056976318,
- -0.05069276690483093,
- -0.006188948638737202,
- 0.013549044728279114,
- 0.015580025501549244,
- 0.14881359040737152,
- -0.008606795221567154,
- 0.04317719116806984,
- 0.01929055154323578,
- 0.10094145685434341,
- -0.06678377836942673,
- 0.056156136095523834,
- 0.004952132701873779,
- -0.051990341395139694,
- 0.019806500524282455,
- -0.05150236561894417,
- -0.0042699603363871574,
- -0.004928859882056713,
- 0.07349921017885208,
- 0.04801487550139427,
- -0.028719881549477577,
- -0.04336727410554886,
- 0.03596721589565277,
- -0.03142712265253067,
- -0.008632268756628036,
- -0.14656856656074524,
- -0.019054152071475983,
- -0.009633256122469902,
- 0.03737541288137436,
- -0.08476632088422775,
- 0.1797271966934204,
- 0.011664600111544132,
- 0.05208597704768181,
- 0.0006815334782004356,
- 0.006614429410547018,
- 0.045103687793016434,
- -0.028664126992225647,
- -0.13352465629577637,
- 0.10852257162332535,
- -0.059109676629304886,
- 0.018404994159936905,
- 0.0029156848322600126,
- 0.033233027905225754,
- -0.08094203472137451,
- 0.005591248627752066,
- 0.0034058433957397938,
- 0.07699479162693024,
- 0.024236353114247322,
- -0.020458875223994255,
- -0.02687755785882473,
- -0.06523331254720688,
- -0.07947725802659988,
- -0.016775798052549362,
- -0.028748344630002975,
- -0.04470912367105484,
- -0.03342108428478241,
- -0.09019399434328079,
- -0.019568845629692078,
- -3.168952404902433e-33,
- -0.00003833317896351218,
- -0.04684734344482422,
- 0.06415953487157822,
- 0.015974359586834908,
- -0.018681034445762634,
- -0.006478391122072935,
- 0.021703902631998062,
- 0.020302264019846916,
- 0.030575308948755264,
- 0.05391531065106392,
- 0.0030048720072954893,
- 0.01740652322769165,
- -0.0098068593069911,
- 0.013136619701981544,
- -0.009687114506959915,
- 0.040589913725852966,
- 0.03419183939695358,
- -0.0014028720324859023,
- -0.09891535341739655,
- 0.01725250855088234,
- -0.06333449482917786,
- 0.022697286680340767,
- -0.006293231155723333,
- 0.025758545845746994,
- 0.001319798524491489,
- -0.030953925102949142,
- 0.004363077227026224,
- -0.03303741663694382,
- 0.13348153233528137,
- 0.013047181069850922,
- 0.004616567399352789,
- 0.01557582151144743,
- 0.03809520974755287,
- 0.059347741305828094,
- 0.07508077472448349,
- -0.031971827149391174,
- -0.021861037239432335,
- -0.016191227361559868,
- 0.039477549493312836,
- -0.056265220046043396,
- 0.03808990493416786,
- 0.009679626673460007,
- 0.02224385179579258,
- 0.050442155450582504,
- 0.04838712513446808,
- 0.07309361547231674,
- 0.016914304345846176,
- 0.023888729512691498,
- 0.02552429959177971,
- -0.00664220517501235,
- -0.011241677217185497,
- 0.07865525782108307,
- -0.05923878028988838,
- -0.013918736949563026,
- 0.001938176341354847,
- -0.06731849908828735,
- -0.02870989218354225,
- -0.06894588470458984,
- 0.036113493144512177,
- 0.016109351068735123,
- -0.04228901118040085,
- 0.10197397321462631,
- -0.0861041396856308,
- 0.029929280281066895,
- -0.03338576480746269,
- -0.11810505390167236,
- -0.08146828413009644,
- -0.035918861627578735,
- 0.06795966625213623,
- -0.037610314786434174,
- 0.0305815190076828,
- -0.024478483945131302,
- 0.07785895466804504,
- 0.0368807278573513,
- 0.01380082592368126,
- 0.013289209455251694,
- -0.008541334420442581,
- -0.028878042474389076,
- -0.05288337916135788,
- -0.01768411323428154,
- -0.10507113486528397,
- 0.03347541391849518,
- -0.015502018854022026,
- 0.06217140704393387,
- 0.062090467661619186,
- -0.015694165602326393,
- -0.09295185655355453,
- -0.10347479581832886,
- 0.008549636229872704,
- -0.058250103145837784,
- -0.17342928051948547,
- -0.02552163042128086,
- 0.032172463834285736,
- 0.013212794438004494,
- 0.0074932994320988655,
- -6.131217821770775e-34,
- -0.027657536789774895,
- -0.11566320061683655,
- -0.03122122399508953,
- 0.05135612562298775,
- 0.05943828821182251,
- -0.005345283076167107,
- 0.029178831726312637,
- 0.007556786295026541,
- -0.0031120325438678265,
- -0.004931080155074596,
- -0.051321081817150116,
- -0.04453714191913605,
- 0.05713196098804474,
- 0.13422581553459167,
- 0.044626180082559586,
- 0.007914016023278236,
- 0.04374866932630539,
- 0.005733934696763754,
- -0.04067254438996315,
- 0.02100691758096218,
- 0.005523961503058672,
- -0.03005223721265793,
- -0.07412209361791611,
- 0.00246620480902493,
- -0.02426152117550373,
- -0.0002885672729462385,
- -0.021085398271679878,
- -0.02422003634274006,
- 0.024293089285492897,
- 0.035225916653871536,
- -0.06008918210864067,
- 0.041270941495895386,
- -0.04039638116955757,
- 0.1297382116317749,
- -0.04963682219386101,
- 0.08282439410686493,
- 0.060461126267910004,
- -0.03970537707209587,
- -0.015983663499355316,
- -0.020021086558699608,
- 0.04133058339357376,
- -0.049916625022888184,
- 0.006237405352294445,
- 0.09537875652313232,
- 0.0031458984594792128,
- 0.013757864013314247,
- -0.06011762470006943,
- 0.06347154825925827,
- -0.06987670809030533,
- 0.028188850730657578,
- -0.11965697258710861,
- -0.03038506768643856,
- -0.01730024814605713,
- 0.0052041844464838505,
- -0.013855366967618465,
- 0.08824976533651352,
- -0.010233286768198013,
- 0.020093629136681557,
- 0.03476985543966293,
- -0.033441632986068726,
- 0.0016205455176532269,
- 0.04332275688648224,
- -0.09519877284765244,
- 0.028198884800076485,
- -0.09482169151306152,
- 0.01286186184734106,
- 0.03701784089207649,
- -0.010218534618616104,
- -0.03972633555531502,
- -0.01033635064959526,
- 0.1070234626531601,
- -0.010746024549007416,
- -0.05401825159788132,
- -0.08567477017641068,
- -0.06714669615030289,
- -0.01088508777320385,
- 0.034217674285173416,
- -0.00789697840809822,
- -0.03551095724105835,
- 0.06577930599451065,
- 0.03639743849635124,
- 0.0031658129300922155,
- -0.046159278601408005,
- 0.07222329825162888,
- -0.0013079073978587985,
- 0.09505617618560791,
- 0.04032593220472336,
- -0.04403809830546379,
- -0.08269520848989487,
- 0.023635582998394966,
- -0.04511550813913345,
- 0.06310482323169708,
- -0.07171370834112167,
- -0.04553965479135513,
- -0.05558263510465622,
- -1.6036848293765615e-8,
- 0.0300158578902483,
- 0.07652893662452698,
- -0.057385072112083435,
- -0.011067758314311504,
- 0.007090478669852018,
- 0.006658458150923252,
- -0.010381920263171196,
- 0.013357395306229591,
- 0.014919388107955456,
- -0.00299049005843699,
- 0.042977653443813324,
- -0.0028863982297480106,
- -0.018939724192023277,
- -0.052420198917388916,
- -0.011876022443175316,
- -0.0962224081158638,
- -0.0545676052570343,
- 0.032138608396053314,
- -0.01893794909119606,
- 0.010921136476099491,
- -0.05524605140089989,
- 0.06366148591041565,
- 0.004298903048038483,
- -0.002462532138451934,
- -0.00111869047395885,
- 0.0040249950252473354,
- 0.06371021270751953,
- 0.0225200392305851,
- -0.033559754490852356,
- 0.0191942285746336,
- 0.04586782678961754,
- 0.11602748930454254,
- -0.005391731392592192,
- -0.07946670055389404,
- 0.004477363545447588,
- -0.060109931975603104,
- -0.03319936245679855,
- -0.03982032835483551,
- 0.021001053974032402,
- -0.05618566274642944,
- -0.014016448520123959,
- 0.023384975269436836,
- -0.015564562752842903,
- 0.026197539642453194,
- 0.026123367249965668,
- -0.024165350943803787,
- 0.08677870035171509,
- -0.03250148519873619,
- 0.02964920736849308,
- -0.011415977030992508,
- -0.12023871392011642,
- 0.03446207568049431,
- -0.03279901295900345,
- -0.03737863153219223,
- 0.057236868888139725,
- 0.01876545324921608,
- 0.00018030725186690688,
- -0.04722202196717262,
- -0.049036528915166855,
- 0.031150471419095993,
- 0.08015864342451096,
- -0.01580723188817501,
- -0.06421352177858353,
- 0.028952747583389282
- ]
- },
- {
- "keyword": "document",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.06641978025436401,
- 0.14561398327350616,
- 0.0027954766992479563,
- 0.03581397235393524,
- -0.008466007187962532,
- -0.006057411432266235,
- 0.007532127667218447,
- 0.06641168892383575,
- 0.02948778122663498,
- 0.0032111182808876038,
- 0.02376614138484001,
- 0.07666865736246109,
- 0.009397681802511215,
- -0.00934615358710289,
- -0.07179789245128632,
- 0.023372240364551544,
- -0.029794763773679733,
- -0.006056486163288355,
- -0.026976879686117172,
- 0.08086177706718445,
- -0.016144730150699615,
- 0.07336272299289703,
- 0.02352803200483322,
- -0.01809825375676155,
- -0.016253836452960968,
- 0.09106267243623734,
- -0.1030200868844986,
- -0.025799967348575592,
- 0.04261711239814758,
- -0.06921344995498657,
- 0.046700578182935715,
- 0.026849256828427315,
- 0.09087394177913666,
- -0.028944699093699455,
- 0.07635430246591568,
- 0.005684411618858576,
- 0.04533899202942848,
- -0.041859883815050125,
- 0.03947911038994789,
- 0.008218229748308659,
- -0.005633290857076645,
- -0.08923591673374176,
- -0.03424903377890587,
- 0.01856914721429348,
- 0.020875757560133934,
- 0.022535372525453568,
- -0.03653477132320404,
- 0.01785152405500412,
- -0.023516112938523293,
- 0.05708393082022667,
- -0.0869789570569992,
- -0.042336951941251755,
- -0.030886603519320488,
- -0.0026541161350905895,
- 0.0028921805787831545,
- 0.04968920722603798,
- -0.009613538160920143,
- 0.06493128091096878,
- -0.05325431376695633,
- -0.0834895595908165,
- 0.049068670719861984,
- 0.026674838736653328,
- -0.1331411749124527,
- 0.04872427135705948,
- 0.04537419602274895,
- 0.08218793570995331,
- -0.013337078504264355,
- 0.042037323117256165,
- -0.07214192301034927,
- -0.015448974445462227,
- 0.016803152859210968,
- 0.016095418483018875,
- 0.04665668308734894,
- 0.028535131365060806,
- 0.04090215638279915,
- -0.08448320627212524,
- 0.024668285623192787,
- -0.005424683913588524,
- 0.08499543368816376,
- -0.07195883244276047,
- 0.02046074904501438,
- 0.01144365780055523,
- 0.04585091769695282,
- 0.020567161962389946,
- -0.007296958472579718,
- -0.021601570770144463,
- 0.036316994577646255,
- 0.016206707805395126,
- -0.010500926524400711,
- 0.048805415630340576,
- -0.038083598017692566,
- -0.057238224893808365,
- 0.06776375323534012,
- -0.019785333424806595,
- -0.13317450881004333,
- 0.020215509459376335,
- 0.011468012817203999,
- -0.012935815379023552,
- 0.0820293053984642,
- 0.2479153722524643,
- 0.02108110301196575,
- 0.04518092796206474,
- 0.0624331496655941,
- -0.03978830948472023,
- -0.003125704126432538,
- -0.04376985877752304,
- -0.05484536662697792,
- -0.019849048927426338,
- 0.02617611363530159,
- -0.07153332978487015,
- 0.010724884457886219,
- -0.056687891483306885,
- -0.1768583506345749,
- -0.003272086614742875,
- 0.0013420034665614367,
- -0.05903400853276253,
- -0.0008799461065791547,
- 0.005004256498068571,
- 0.04942191019654274,
- -0.015396690927445889,
- 0.0011879723751917481,
- 0.024561867117881775,
- -0.041763756424188614,
- -0.02489056997001171,
- -0.10380718111991882,
- -0.09389210492372513,
- 0.08762674778699875,
- -6.194268216342013e-33,
- 0.01809726655483246,
- -0.022140508517622948,
- -0.05668145790696144,
- 0.0857781320810318,
- 0.004173637367784977,
- 0.014819545671343803,
- 0.0036424435675144196,
- -0.015285564586520195,
- -0.09695842117071152,
- 0.0026726131327450275,
- -0.01576564647257328,
- 0.018247351050376892,
- -0.0027062934823334217,
- 0.04246535524725914,
- -0.003693327307701111,
- 0.035438422113657,
- -0.0518912672996521,
- 0.0826365277171135,
- 0.012495127506554127,
- -0.03174823522567749,
- -0.017812669277191162,
- 0.0008204143960028887,
- 0.04050580412149429,
- 0.051131971180438995,
- -0.010348111391067505,
- 0.04841417819261551,
- -0.001799516612663865,
- -0.08998433500528336,
- -0.06442936509847641,
- 0.0105885686352849,
- 0.03076081909239292,
- 0.04173796996474266,
- 0.05578461289405823,
- -0.0756281241774559,
- -0.023486267775297165,
- 0.11101184785366058,
- -0.014958842657506466,
- -0.05518639460206032,
- 0.014887223020195961,
- -0.04720215126872063,
- -0.04926378279924393,
- -0.000088506392785348,
- 0.04808136820793152,
- -0.02426789328455925,
- 0.008264529518783092,
- 0.04811173304915428,
- 0.03102593682706356,
- 0.025669056922197342,
- 0.08803439140319824,
- 0.007253394462168217,
- -0.0020724604837596416,
- -0.004106882959604263,
- -0.08137615770101547,
- -0.0015614440198987722,
- 0.04006338119506836,
- -0.01500030979514122,
- -0.03256205469369888,
- 0.07136639952659607,
- 0.03153260052204132,
- -0.01361930277198553,
- 0.06361237168312073,
- 0.09074480831623077,
- -0.009959308430552483,
- 0.020364880561828613,
- -0.03971489146351814,
- -0.06286966055631638,
- -0.0563206747174263,
- -0.018525972962379456,
- 0.06851185113191605,
- -0.08676233142614365,
- -0.09951718151569366,
- -0.013617010787129402,
- 0.048811763525009155,
- -0.08176255971193314,
- 0.03257378935813904,
- 0.006433752831071615,
- 0.04783156141638756,
- -0.05921507626771927,
- -0.11336454749107361,
- 0.006693224888294935,
- -0.09878459572792053,
- -0.02480328641831875,
- 0.004245713818818331,
- -0.012596863321959972,
- 0.03846690431237221,
- 0.06196347251534462,
- 0.03516135364770889,
- -0.05229787155985832,
- -0.00549404788762331,
- 0.013791466131806374,
- 0.018798012286424637,
- 0.002544619143009186,
- -0.014613904058933258,
- -0.04807566851377487,
- 0.10635129362344742,
- 4.645943424295375e-33,
- 0.001751431729644537,
- -0.06954198330640793,
- -0.09137056767940521,
- 0.1143542230129242,
- 0.027632100507616997,
- 0.028686195611953735,
- 0.04446236044168472,
- 0.05425313860177994,
- -0.028857145458459854,
- -0.0030557180289179087,
- -0.022002751007676125,
- -0.02564609795808792,
- 0.037905726581811905,
- 0.010856464505195618,
- 0.003970376681536436,
- -0.02263297699391842,
- 0.03547836095094681,
- -0.021747663617134094,
- -0.00845409370958805,
- 0.03693759813904762,
- -0.08399505913257599,
- -0.0640573799610138,
- 0.04292205348610878,
- 0.046635791659355164,
- 0.06112666800618172,
- 0.003681500907987356,
- 0.04508381709456444,
- -0.06431234627962112,
- -0.03217969834804535,
- -0.01384344045072794,
- -0.011479578912258148,
- -0.027387844398617744,
- -0.10107996314764023,
- 0.059601135551929474,
- 0.024963971227407455,
- -0.036100540310144424,
- 0.09721415489912033,
- 0.03607222065329552,
- -0.03662242367863655,
- 0.030781015753746033,
- 0.06421852856874466,
- 0.028705505654215813,
- 0.014049368910491467,
- 0.05088981240987778,
- -0.0415569432079792,
- -0.007234450429677963,
- -0.007143828086555004,
- 0.01701764203608036,
- 0.055803947150707245,
- 0.03269602358341217,
- -0.009821771644055843,
- -0.018248971551656723,
- 0.0370023176074028,
- -0.12311118096113205,
- -0.07173336297273636,
- -0.004180739633738995,
- -0.038812603801488876,
- -0.07347340136766434,
- 0.011149642989039421,
- 0.06985913962125778,
- 0.029487833380699158,
- 0.06110098585486412,
- -0.04817888140678406,
- 0.07339245080947876,
- -0.000043855103285750374,
- -0.06028396263718605,
- -0.0911007821559906,
- 0.022808393463492393,
- -0.052097029983997345,
- 0.06579535454511642,
- 0.0002784064563456923,
- -0.05633531138300896,
- -0.03505203500390053,
- 0.0061952522955834866,
- 0.07487479597330093,
- -0.026678482070565224,
- -0.012223593890666962,
- -0.02881656214594841,
- -0.06204087659716606,
- -0.06185174733400345,
- 0.1259995847940445,
- 0.054879527539014816,
- -0.044596195220947266,
- 0.05293794348835945,
- 0.06987729668617249,
- -0.031414423137903214,
- 0.0077177551575005054,
- -0.02316584251821041,
- -0.03309883922338486,
- -0.008033821359276772,
- -0.007270383648574352,
- 0.05298358201980591,
- -0.0018330327002331614,
- 0.029148461297154427,
- -0.02695493772625923,
- -1.2626626855194445e-8,
- -0.08088881522417068,
- 0.03908590227365494,
- 0.001955758547410369,
- -0.057610031217336655,
- 0.042047787457704544,
- 0.026884257793426514,
- 0.08085072040557861,
- -0.003318240400403738,
- -0.03230058401823044,
- -0.043167874217033386,
- 0.058932725340127945,
- -0.07413084805011749,
- -0.0162810105830431,
- -0.03235379606485367,
- 0.005419579800218344,
- -0.03757692873477936,
- 0.02844404987990856,
- -0.06847674399614334,
- -0.0641482025384903,
- 0.011459301225841045,
- -0.015601308085024357,
- -0.015547052025794983,
- -0.003248773515224457,
- 0.015821482986211777,
- 0.004318874794989824,
- 0.017026416957378387,
- 0.017210578545928,
- 0.06021066755056381,
- 0.014264784753322601,
- -0.05474245548248291,
- 0.020455503836274147,
- 0.09364885836839676,
- 0.0028725024312734604,
- 0.03266160190105438,
- 0.08272343873977661,
- 0.05629131570458412,
- 0.06908313184976578,
- -0.001736453385092318,
- -0.033786118030548096,
- -0.004390806891024113,
- 0.007544426713138819,
- 0.058524344116449356,
- -0.002455900190398097,
- -0.017329324036836624,
- 0.04773741587996483,
- -0.009384074248373508,
- 0.019043585285544395,
- -0.05094179883599281,
- -0.013399544171988964,
- -0.060120340436697006,
- -0.024248044937849045,
- -0.06352269649505615,
- 0.09851570427417755,
- 0.07393787056207657,
- -0.030176151543855667,
- -0.008371446281671524,
- 0.07678388059139252,
- 0.016893187537789345,
- -0.028186442330479622,
- -0.016487017273902893,
- 0.07599828392267227,
- 0.056899458169937134,
- 0.060135312378406525,
- 0.0016579178627580404
- ]
- },
- {
- "keyword": "file",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.03241985663771629,
- 0.06515493243932724,
- -0.09104815125465393,
- -0.015907106921076775,
- 0.02346513420343399,
- -0.006606511306017637,
- 0.061346203088760376,
- 0.0583704449236393,
- -0.013060697354376316,
- 0.03001340478658676,
- 0.03858989477157593,
- 0.06345979124307632,
- -0.023691227659583092,
- -0.05553058907389641,
- -0.07766575366258621,
- -0.019627735018730164,
- -0.11703849583864212,
- 0.00028032154659740627,
- -0.08202429860830307,
- 0.03429222106933594,
- -0.010662171058356762,
- 0.027542844414711,
- 0.006219715811312199,
- -0.021335041150450706,
- 0.009057008661329746,
- 0.05549728125333786,
- -0.03474864736199379,
- 0.025582829490303993,
- -0.04141020029783249,
- -0.10528229922056198,
- 0.009475193917751312,
- 0.0461493581533432,
- 0.09771386533975601,
- 0.0037940889596939087,
- 0.03828749060630798,
- 0.0013338072458282113,
- 0.05870157107710838,
- -0.04095233976840973,
- -0.03995797038078308,
- -0.026778608560562134,
- -0.024042360484600067,
- -0.0219907034188509,
- -0.001842524274252355,
- -0.005685445852577686,
- -0.029943548142910004,
- -0.00854972843080759,
- 0.011446909047663212,
- -0.03583640605211258,
- 0.01911635510623455,
- 0.012879193760454655,
- -0.0729033574461937,
- 0.017852967604994774,
- -0.01477359700948,
- 0.010379868559539318,
- 0.049143511801958084,
- 0.00294392928481102,
- 0.002694745548069477,
- 0.07848099619150162,
- -0.016742879524827003,
- -0.008643271401524544,
- 0.013156901113688946,
- 0.020738959312438965,
- -0.11216183751821518,
- 0.04301771894097328,
- 0.08106311410665512,
- 0.03643312677741051,
- -0.045051056891679764,
- 0.0718894824385643,
- -0.019644571468234062,
- -0.1585005223751068,
- -0.08315833657979965,
- 0.0325428806245327,
- -0.052626483142375946,
- 0.0534227229654789,
- 0.03854962810873985,
- -0.06405867636203766,
- -0.0051080528646707535,
- 0.04539726302027702,
- 0.05391344428062439,
- -0.057937152683734894,
- 0.007364320103079081,
- -0.07937052845954895,
- 0.06043710187077522,
- 0.030557166785001755,
- 0.04402262344956398,
- 0.0088336281478405,
- 0.035449832677841187,
- 0.03138943016529083,
- -0.033878423273563385,
- -0.004258741624653339,
- -0.08243097364902496,
- 0.004234034568071365,
- 0.04140935093164444,
- -0.0029345271177589893,
- -0.06019584834575653,
- 0.09022313356399536,
- 0.04455507919192314,
- 0.047589611262083054,
- 0.011880160309374332,
- 0.23230618238449097,
- -0.002671886468306184,
- 0.009222706779837608,
- 0.015876086428761482,
- 0.006795074325054884,
- 0.003990863915532827,
- -0.06075255945324898,
- 0.04167308658361435,
- 0.04485134780406952,
- 0.0620601586997509,
- -0.07075456529855728,
- 0.00033408470335416496,
- -0.09874127805233002,
- -0.07626047730445862,
- -0.08810003101825714,
- 0.06414545327425003,
- -0.05231194570660591,
- -0.08945949375629425,
- 0.0688665434718132,
- -0.0030036456882953644,
- 0.023790493607521057,
- 0.03153912350535393,
- -0.04884979501366615,
- -0.07242374122142792,
- 0.014914552681148052,
- -0.07024489343166351,
- -0.13263985514640808,
- 0.0989600270986557,
- -4.38685712253445e-33,
- 0.02404671348631382,
- -0.04277842491865158,
- 0.008632549084722996,
- 0.10110500454902649,
- 0.04941188544034958,
- -0.08321232348680496,
- 0.03016306832432747,
- -0.026268193498253822,
- -0.13214711844921112,
- 0.06946644932031631,
- -0.030163653194904327,
- -0.019651703536510468,
- -0.004194322973489761,
- 0.036100778728723526,
- 0.02614334039390087,
- 0.02357645519077778,
- -0.02397182397544384,
- 0.027065906673669815,
- -0.02597109228372574,
- -0.04254976660013199,
- 0.0011637380812317133,
- 0.0614340640604496,
- -0.013087665662169456,
- 0.0395984873175621,
- -0.03571222722530365,
- 0.010986611247062683,
- 0.016661083325743675,
- -0.08029001951217651,
- 0.04406903684139252,
- 0.007275096606463194,
- 0.02508554607629776,
- -0.05167930945754051,
- 0.08758141100406647,
- -0.04796218127012253,
- -0.020411254838109016,
- 0.03004273772239685,
- 0.009813373908400536,
- -0.026381732895970345,
- -0.005158977583050728,
- -0.04037832096219063,
- 0.03965368494391441,
- 0.016297610476613045,
- 0.0012876824475824833,
- 0.0021740379743278027,
- -0.008104672655463219,
- -0.020002014935016632,
- 0.010413502342998981,
- 0.030723631381988525,
- -0.0017132373759523034,
- 0.020894909277558327,
- 0.03398866578936577,
- 0.019391892477869987,
- -0.016906864941120148,
- 0.041685670614242554,
- -0.0010739432182163,
- 0.0002687682572286576,
- -0.02538749948143959,
- -0.044467661529779434,
- 0.0385901965200901,
- -0.00048594377585686743,
- 0.12267877906560898,
- 0.048026278614997864,
- -0.06163155287504196,
- -0.004864661488682032,
- -0.026427606120705605,
- -0.07969093322753906,
- 0.01563837379217148,
- -0.03663766011595726,
- 0.0650317370891571,
- 0.0020046948920935392,
- -0.11761622875928879,
- -0.05368301272392273,
- 0.1192208081483841,
- -0.06763437390327454,
- 0.03798701614141464,
- -0.008785147219896317,
- -0.021848777309060097,
- 0.003539139637723565,
- -0.12367547303438187,
- -0.018706724047660828,
- -0.0960388332605362,
- -0.08086349815130234,
- -0.045007746666669846,
- -0.005724677816033363,
- 0.028172707185149193,
- -0.028601525351405144,
- -0.0033917187247425318,
- -0.09007188677787781,
- 0.03559758514165878,
- -0.02050376683473587,
- -0.02738553285598755,
- 0.017042893916368484,
- -0.015265612863004208,
- -0.04081020876765251,
- 0.04046586900949478,
- 3.6981849408975816e-33,
- 0.028722811490297318,
- 0.0063459076918661594,
- -0.04288385435938835,
- 0.03447380289435387,
- 0.03294894099235535,
- 0.07619217038154602,
- 0.08072125166654587,
- 0.005446071270853281,
- 0.0001448065449949354,
- 0.04954170063138008,
- -0.08737539499998093,
- 0.03968184441328049,
- 0.0876169502735138,
- -0.05698568746447563,
- 0.03577229008078575,
- -0.001890043611638248,
- 0.0401710644364357,
- -0.05300157144665718,
- -0.05197213590145111,
- -0.021805845201015472,
- -0.0824916884303093,
- -0.053468432277441025,
- 0.1349676102399826,
- 0.04242135211825371,
- 0.04729939624667168,
- 0.028379390016198158,
- 0.07218943536281586,
- 0.029645608738064766,
- -0.013450369238853455,
- 0.001968884840607643,
- 0.04911203682422638,
- -0.04845047369599342,
- -0.13332699239253998,
- -0.041988857090473175,
- 0.02733694389462471,
- -0.00650534313172102,
- 0.08906011283397675,
- 0.012203028425574303,
- -0.025109635666012764,
- 0.04818516597151756,
- 0.053761959075927734,
- 0.07033190131187439,
- 0.00965032260864973,
- 0.09581614285707474,
- 0.0251908041536808,
- 0.00961308367550373,
- 0.011004195548593998,
- 0.07298875600099564,
- 0.024537675082683563,
- 0.037176214158535004,
- 0.04238918051123619,
- -0.027092305943369865,
- 0.07411912828683853,
- -0.0639747604727745,
- 0.017100617289543152,
- 0.05340567231178284,
- 0.043136224150657654,
- -0.01721280813217163,
- -0.04862813279032707,
- 0.035091642290353775,
- -0.009845328517258167,
- -0.01075615081936121,
- -0.057896655052900314,
- -0.030899710953235626,
- -0.10032244771718979,
- -0.005830969195812941,
- 0.004357891157269478,
- -0.03399871662259102,
- -0.015527340583503246,
- 0.03169428929686546,
- -0.02487565018236637,
- -0.015615797601640224,
- -0.0743207260966301,
- 0.0401090569794178,
- 0.019109107553958893,
- -0.00100711768027395,
- -0.042440105229616165,
- -0.00703825568780303,
- -0.05955323204398155,
- 0.011828958056867123,
- 0.08975227177143097,
- 0.010379724204540253,
- -0.026231059804558754,
- 0.05136307701468468,
- 0.11723356693983078,
- -0.02123177982866764,
- 0.01204655971378088,
- 0.023927217349410057,
- 0.014543834142386913,
- -0.029346443712711334,
- -0.026995420455932617,
- 0.06620004773139954,
- 0.04608634114265442,
- 0.054256804287433624,
- -0.027309628203511238,
- -1.22159553583856e-8,
- -0.07449875771999359,
- 0.017608176916837692,
- 0.0236758291721344,
- -0.023042531684041023,
- 0.04396690055727959,
- 0.08854389190673828,
- -0.029063615947961807,
- -0.013073225505650043,
- -0.007489639800041914,
- -0.0004120570083614439,
- 0.07662972062826157,
- -0.07304731011390686,
- -0.07111500948667526,
- 0.005220708902925253,
- -0.01838293857872486,
- -0.04450604319572449,
- 0.049932632595300674,
- -0.00669501069933176,
- -0.05030506104230881,
- 0.01295249629765749,
- 0.015385742299258709,
- 0.05533949285745621,
- -0.006942907813936472,
- 0.05267670750617981,
- 0.038867365568876266,
- -0.007807340007275343,
- 0.09378909319639206,
- 0.10686834901571274,
- -0.0706566572189331,
- -0.041876040399074554,
- -0.00066033547045663,
- 0.03778683394193649,
- 0.05624280869960785,
- 0.0007522618398070335,
- 0.010220601223409176,
- 0.07397325336933136,
- 0.05153626576066017,
- 0.02821028046309948,
- -0.01836632750928402,
- -0.02460377663373947,
- 0.02004818618297577,
- 0.04238462820649147,
- 0.010665607638657093,
- -0.04269465059041977,
- -0.035107195377349854,
- -0.08979982137680054,
- 0.001798963756300509,
- -0.03404591605067253,
- -0.06534017622470856,
- -0.014528194442391396,
- -0.0527973547577858,
- 0.008983890525996685,
- 0.004007492680102587,
- 0.12345847487449646,
- 0.01811964064836502,
- -0.0031857292633503675,
- 0.044702813029289246,
- -0.002454534638673067,
- -0.01515632402151823,
- 0.04972588270902634,
- 0.06925143301486969,
- 0.07389624416828156,
- 0.0023913190234452486,
- 0.009730019606649876
- ]
- },
- {
- "keyword": "text",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.01819823868572712,
- 0.07256481051445007,
- -0.020028669387102127,
- 0.02777079865336418,
- -0.026948602870106697,
- 0.039940979331731796,
- 0.13612215220928192,
- 0.05341484025120735,
- 0.10390564054250717,
- -0.031878311187028885,
- 0.0432700552046299,
- 0.04290206730365753,
- 0.013922077603638172,
- -0.009741789661347866,
- -0.013895065523684025,
- 0.007124667521566153,
- 0.06658755242824554,
- -0.04878481850028038,
- -0.08725325018167496,
- -0.057122137397527695,
- 0.020760253071784973,
- 0.0790913924574852,
- 0.038726791739463806,
- 0.046325840055942535,
- -0.0004322021559346467,
- 0.1258367896080017,
- -0.1198154166340828,
- 0.0684722438454628,
- 0.04475415125489235,
- -0.03419315069913864,
- -0.043171387165784836,
- 0.04028582200407982,
- 0.1533927321434021,
- 0.032665740698575974,
- -0.048213258385658264,
- 0.0009329587337560952,
- -0.029594948515295982,
- 0.027980338782072067,
- -0.00975907500833273,
- 0.003803899744525552,
- -0.037989672273397446,
- -0.10275299102067947,
- 0.00835488922894001,
- 0.02035374753177166,
- 0.06658520549535751,
- -0.0249592587351799,
- -0.05081934481859207,
- 0.015423418954014778,
- 0.02796284109354019,
- 0.06704231351613998,
- -0.04172947257757187,
- -0.052143923938274384,
- -0.044380009174346924,
- 0.014428818598389626,
- -0.019253933802247047,
- 0.08084946870803833,
- 0.007603019941598177,
- 0.015355478040874004,
- 0.024734199047088623,
- -0.003456796519458294,
- 0.045419517904520035,
- 0.01519346795976162,
- -0.01815185695886612,
- 0.05626882240176201,
- 0.038849253207445145,
- -0.004816876724362373,
- -0.01748962327837944,
- 0.03779150918126106,
- -0.11920061707496643,
- -0.029990199953317642,
- 0.00967432465404272,
- 0.0015229705022647977,
- 0.03635629639029503,
- 0.08905674517154694,
- 0.014097052626311779,
- -0.03385528549551964,
- -0.01629830151796341,
- -0.06806239485740662,
- 0.055863961577415466,
- 0.03738031163811684,
- -0.013958727940917015,
- -0.016119886189699173,
- 0.0658738911151886,
- 0.08870618045330048,
- 0.02806699275970459,
- 0.019754497334361076,
- 0.027206530794501305,
- 0.020783359184861183,
- -0.040698230266571045,
- 0.0011400472139939666,
- 0.00519569544121623,
- -0.05170280858874321,
- 0.09826795756816864,
- -0.01664338819682598,
- -0.16684141755104065,
- 0.03890489786863327,
- -0.04839583858847618,
- -0.08863754570484161,
- -0.019228870049118996,
- 0.24018660187721252,
- 0.013290107250213623,
- -0.003788210218772292,
- 0.028364861384034157,
- 0.003645362099632621,
- -0.058514758944511414,
- -0.046493034809827805,
- 0.05298099294304848,
- -0.02763790637254715,
- 0.023158187046647072,
- -0.05445614084601402,
- 0.014605219475924969,
- -0.07610359787940979,
- -0.11256785690784454,
- -0.043532997369766235,
- -0.015180453658103943,
- -0.07529179006814957,
- 0.005596490111202002,
- -0.027869408950209618,
- 0.0653969869017601,
- 0.040611691772937775,
- -0.04184532165527344,
- -0.04314801096916199,
- -0.04926885664463043,
- 0.014979890547692776,
- -0.07222442328929901,
- -0.048397716134786606,
- 0.06878980249166489,
- -4.53253246401201e-33,
- 0.006954481825232506,
- 0.0031878557056188583,
- 0.03801499307155609,
- 0.09192723780870438,
- -0.029380416497588158,
- 0.04863998666405678,
- -0.08965342491865158,
- -0.06592052429914474,
- -0.022779641672968864,
- -0.006378015037626028,
- 0.002852583536878228,
- -0.03854883834719658,
- -0.007057033013552427,
- 0.002085775602608919,
- 0.07527489215135574,
- -0.07030774652957916,
- -0.027958974242210388,
- 0.044545918703079224,
- 0.030361780896782875,
- -0.039754848927259445,
- -0.06345709413290024,
- 0.032666970044374466,
- 0.05310136452317238,
- -0.00035540806129574776,
- -0.011366928927600384,
- 0.02032581716775894,
- 0.008277051150798798,
- -0.06891973316669464,
- -0.023964963853359222,
- 0.002269579330459237,
- -0.02715488150715828,
- -0.0024200843181461096,
- 0.08467918634414673,
- -0.05057094618678093,
- -0.019409967586398125,
- 0.027338961139321327,
- -0.002569339005276561,
- -0.06028825789690018,
- 0.03545105829834938,
- 0.0032495514024049044,
- -0.04298447072505951,
- -0.0068256063386797905,
- 0.03235480561852455,
- -0.10737866163253784,
- 0.0028656059876084328,
- 0.07597184926271439,
- -0.005419773980975151,
- 0.0038492304738610983,
- -0.05693545192480087,
- -0.028862187638878822,
- 0.003285615937784314,
- 0.0317164845764637,
- -0.011526566930115223,
- -0.008886710740625858,
- 0.04360821098089218,
- -0.020346371456980705,
- 0.013084262609481812,
- 0.014836786314845085,
- -0.015135027468204498,
- 0.047309067100286484,
- 0.032642658799886703,
- 0.04878128319978714,
- 0.04142564907670021,
- -0.005500985309481621,
- 0.007967950776219368,
- -0.037126634269952774,
- -0.033119041472673416,
- -0.08850850909948349,
- 0.06987102329730988,
- -0.043780144304037094,
- -0.09775401651859283,
- -0.03512745350599289,
- 0.011542563326656818,
- 0.002850637072697282,
- -0.05227517709136009,
- 0.023028457537293434,
- -0.006458158604800701,
- 0.0008237733272835612,
- -0.04706711694598198,
- 0.02092762291431427,
- -0.030961208045482635,
- -0.11387324333190918,
- 0.0416487418115139,
- -0.016773568466305733,
- 0.006549943704158068,
- 0.007004286162555218,
- 0.03179353103041649,
- -0.17629413306713104,
- 0.023235445842146873,
- 0.03415079787373543,
- -0.09149449318647385,
- -0.002791099715977907,
- -0.0064405156299471855,
- -0.0010577328503131866,
- 0.04017825052142143,
- 3.611266684545874e-33,
- -0.028808489441871643,
- -0.021962473168969154,
- -0.08210697770118713,
- 0.06645114719867706,
- 0.0349198654294014,
- 0.06149113178253174,
- 0.04795299097895622,
- 0.07278799265623093,
- 0.034933555871248245,
- 0.00004787750731338747,
- 0.00579015864059329,
- 0.06188355013728142,
- 0.018422432243824005,
- -0.027222776785492897,
- -0.011197973974049091,
- 0.037485409528017044,
- 0.12023820728063583,
- 0.026311317458748817,
- 0.006929223891347647,
- 0.011945324949920177,
- -0.07664036750793457,
- -0.07758715003728867,
- -0.09829993546009064,
- -0.01994898170232773,
- 0.0064348820596933365,
- 0.028951169922947884,
- 0.028803668916225433,
- -0.0056191799230873585,
- -0.02707740105688572,
- -0.01503544021397829,
- -0.0022225938737392426,
- -0.03969402238726616,
- 0.028234366327524185,
- 0.03909088298678398,
- -0.047885507345199585,
- 0.04206660017371178,
- 0.07705225795507431,
- -0.0177219957113266,
- -0.06560336798429489,
- 0.043747611343860626,
- 0.16326044499874115,
- 0.030403178185224533,
- 0.0014992337673902512,
- 0.053431231528520584,
- -0.04898007586598396,
- 0.009995088912546635,
- -0.1126306802034378,
- -0.02819403074681759,
- 0.023961734026670456,
- 0.05384751036763191,
- 0.00648911390453577,
- -0.039844758808612823,
- -0.015371986664831638,
- -0.08642870932817459,
- -0.08561819046735764,
- -0.024588236585259438,
- -0.0390927717089653,
- 0.016105251386761665,
- -0.01691165566444397,
- -0.03382214531302452,
- -0.0563838966190815,
- 0.007972429506480694,
- -0.024456020444631577,
- 0.039885107427835464,
- 0.05159415304660797,
- -0.05350961163640022,
- -0.021044975146651268,
- 0.0017077301163226366,
- -0.049037493765354156,
- 0.005249161273241043,
- 0.08021556586027145,
- -0.019810259342193604,
- -0.06562153995037079,
- 0.006349249742925167,
- -0.0068697379902005196,
- 0.015118805691599846,
- -0.04801536723971367,
- 0.02052331157028675,
- -0.11873486638069153,
- -0.02936231717467308,
- 0.106985904276371,
- 0.028404971584677696,
- -0.03698090836405754,
- 0.09225630015134811,
- 0.03475460782647133,
- 0.027556585147976875,
- -0.030953267589211464,
- -0.012133060023188591,
- -0.016128631308674812,
- 0.0001023509685182944,
- 0.0005652586696669459,
- 0.043298959732055664,
- -0.0029583347495645285,
- 0.06163087859749794,
- -0.04932761564850807,
- -1.1739163419122178e-8,
- -0.009613691829144955,
- -0.08917655050754547,
- -0.048450738191604614,
- -0.0028936616145074368,
- 0.007761922664940357,
- 0.04343360289931297,
- 0.02870618738234043,
- -0.04234094172716141,
- -0.011764772236347198,
- -0.028582172468304634,
- 0.01662997156381607,
- -0.006865139119327068,
- -0.05513964220881462,
- -0.03268604725599289,
- 0.051533292979002,
- 0.009949592873454094,
- -0.0050304951146245,
- -0.023966649547219276,
- 0.004920724779367447,
- 0.005803715903311968,
- 0.0701698362827301,
- 0.04914582520723343,
- -0.03326145187020302,
- 0.026683278381824493,
- -0.051926180720329285,
- 0.023115864023566246,
- -0.017438475042581558,
- 0.08040286600589752,
- 0.0168510302901268,
- 0.001567102037370205,
- 0.09659025818109512,
- 0.04110610857605934,
- -0.009586513042449951,
- -0.01367090456187725,
- 0.0401698499917984,
- -0.022371584549546242,
- 0.05655885115265846,
- -0.0345306433737278,
- 0.05147841200232506,
- 0.047502290457487106,
- 0.04328456148505211,
- 0.031804587692022324,
- -0.033369652926921844,
- -0.04292122274637222,
- 0.01398176234215498,
- -0.0069769639521837234,
- 0.03249584138393402,
- -0.12044637650251389,
- -0.019862527027726173,
- -0.041994038969278336,
- -0.01514480635523796,
- 0.024490248411893845,
- 0.04515411704778671,
- 0.04740245267748833,
- 0.012124903500080109,
- -0.03588571026921272,
- 0.10076664388179779,
- 0.06190827488899231,
- -0.061567604541778564,
- 0.04655918478965759,
- 0.10556872934103012,
- 0.06398376077413559,
- 0.04597809538245201,
- -0.03173329681158066
- ]
- },
- {
- "keyword": "writing",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.025085585191845894,
- 0.03016190603375435,
- 0.055092088878154755,
- 0.09402705729007721,
- -0.056519389152526855,
- 0.022924384102225304,
- 0.060565780848264694,
- -0.010261035524308681,
- 0.05242139846086502,
- 0.03336780518293381,
- -0.0050057596527040005,
- 0.07429138571023941,
- -0.00020071945618838072,
- -0.02361523173749447,
- -0.009270676411688328,
- 0.014097155071794987,
- -0.04156123474240303,
- -0.04381971433758736,
- -0.06364715844392776,
- -0.05915268510580063,
- -0.025136245414614677,
- 0.030023176223039627,
- 0.012804965488612652,
- 0.007131717633455992,
- 0.029471516609191895,
- 0.05177091434597969,
- -0.00873231329023838,
- -0.028636932373046875,
- 0.018431281670928,
- -0.037286486476659775,
- -0.07743823528289795,
- 0.023448258638381958,
- 0.034899696707725525,
- -0.03677617385983467,
- 0.033721163868904114,
- 0.047204963862895966,
- 0.02906723879277706,
- 0.029322057962417603,
- -0.00978036131709814,
- -0.07202935963869095,
- -0.009129396639764309,
- -0.06324397772550583,
- 0.04158606007695198,
- 0.017161304131150246,
- 0.04449762403964996,
- -0.07785263657569885,
- -0.03771110996603966,
- 0.02146637998521328,
- -0.05516095831990242,
- 0.04842391982674599,
- -0.014460009522736073,
- -0.023595064878463745,
- -0.07350507378578186,
- -0.04049433395266533,
- 0.03133038431406021,
- -0.036547478288412094,
- -0.04986148700118065,
- 0.06220041215419769,
- -0.03992745652794838,
- -0.09338348358869553,
- 0.02404114045202732,
- 0.019086020067334175,
- -0.06785071641206741,
- 0.035468753427267075,
- 0.05117299035191536,
- -0.025254538282752037,
- -0.025527330115437508,
- 0.07901924103498459,
- -0.0813634917140007,
- 0.016250062733888626,
- 0.015379409305751324,
- 0.049494434148073196,
- 0.017376035451889038,
- 0.07116715610027313,
- 0.06635908782482147,
- -0.06468939036130905,
- 0.015627814456820488,
- -0.044741351157426834,
- 0.05604547634720802,
- -0.02505592443048954,
- 0.0312149990350008,
- -0.010482446290552616,
- -0.06322842091321945,
- 0.0783948004245758,
- 0.014885898679494858,
- -0.053840283304452896,
- 0.039847876876592636,
- 0.04019201174378395,
- -0.022861316800117493,
- 0.007582026068121195,
- 0.019638311117887497,
- -0.08525903522968292,
- 0.04509837180376053,
- 0.011045866645872593,
- -0.12525205314159393,
- 0.00811768602579832,
- -0.008061003871262074,
- -0.0013577991630882025,
- -0.030031811445951462,
- 0.25065162777900696,
- 0.029501302167773247,
- 0.020648997277021408,
- -0.003820652374997735,
- 0.018582990393042564,
- 0.07851310074329376,
- -0.05196430906653404,
- -0.012950771488249302,
- -0.007288062945008278,
- -0.07138647884130478,
- -0.04633931815624237,
- 0.023318234831094742,
- 0.028064053505659103,
- -0.03958459943532944,
- 0.08186088502407074,
- 0.07143578678369522,
- 0.024601664394140244,
- 0.010875911451876163,
- -0.0155806764960289,
- 0.03049878031015396,
- 0.09450580924749374,
- -0.013749910518527031,
- 0.039774663746356964,
- -0.07216688990592957,
- 0.002360051963478327,
- -0.06345555186271667,
- -0.1154847964644432,
- 0.04167615994811058,
- -3.995199302571757e-33,
- 0.0980793833732605,
- 0.03837890550494194,
- -0.02031521126627922,
- 0.11588899046182632,
- 0.02341432310640812,
- 0.05188329145312309,
- 0.0006721995305269957,
- 0.0017539210384711623,
- -0.028808481991291046,
- -0.03299742937088013,
- 0.020075684413313866,
- -0.012514578178524971,
- 0.04787717014551163,
- 0.09703271090984344,
- 0.07643817365169525,
- -0.023158207535743713,
- -0.038281429558992386,
- 0.021643882617354393,
- -0.012521117925643921,
- 0.014132489450275898,
- -0.014913836494088173,
- 0.02113858424127102,
- -0.0034141119103878736,
- -0.005255663767457008,
- -0.10206704586744308,
- 0.020237216725945473,
- -0.03810242563486099,
- -0.13362739980220795,
- -0.019663143903017044,
- -0.003957143519073725,
- -0.026827409863471985,
- 0.020146828144788742,
- -0.009608310647308826,
- -0.0804557055234909,
- -0.08698736131191254,
- -0.09699969738721848,
- 0.039675068110227585,
- -0.1059143990278244,
- 0.07050418853759766,
- 0.007112312130630016,
- -0.06676770746707916,
- -0.006042540539056063,
- 0.005697951652109623,
- -0.10237997025251389,
- 0.08242230117321014,
- 0.11461549252271652,
- 0.026718594133853912,
- 0.04468671232461929,
- 0.0030423500575125217,
- 0.05496114864945412,
- -0.02335500903427601,
- -0.009619306772947311,
- 0.019907144829630852,
- -0.017753615975379944,
- 0.06643950939178467,
- -0.0021350407041609287,
- 0.060727085918188095,
- -0.023588187992572784,
- 0.048515088856220245,
- 0.013627739623188972,
- 0.08547268807888031,
- 0.1496674120426178,
- -0.03574325144290924,
- 0.02421720325946808,
- -0.05333840101957321,
- -0.0007748191710561514,
- -0.043573442846536636,
- -0.029141345992684364,
- 0.09636998921632767,
- -0.11040318012237549,
- -0.08726999908685684,
- -0.02945215255022049,
- -0.0671248584985733,
- 0.02828286774456501,
- -0.00332503579556942,
- -0.0129765709862113,
- 0.04204228147864342,
- -0.07359310239553452,
- -0.045461539179086685,
- 0.07891760766506195,
- -0.018473120406270027,
- 0.00393306789919734,
- -0.029814591631293297,
- -0.011550900526344776,
- 0.01411265879869461,
- -0.006219127681106329,
- -0.02147717960178852,
- -0.055351532995700836,
- -0.017746353521943092,
- 0.02929769828915596,
- -0.071554996073246,
- -0.03408919647336006,
- 0.07238130271434784,
- -0.035711150616407394,
- -0.03266768157482147,
- 3.4106068601246324e-33,
- -0.0445181168615818,
- 0.022807618603110313,
- -0.07630391418933868,
- 0.08180313557386398,
- -0.05072720721364021,
- -0.04055435210466385,
- -0.003663616254925728,
- -0.0036211879923939705,
- 0.02985863946378231,
- 0.0513591431081295,
- -0.09293773770332336,
- -0.015510841272771358,
- -0.0017761748749762774,
- 0.03805549815297127,
- 0.006848715245723724,
- -0.057837847620248795,
- 0.05431211739778519,
- 0.003226030617952347,
- -0.035870153456926346,
- -0.008744646795094013,
- -0.06716662645339966,
- -0.0010936566395685077,
- -0.003106193384155631,
- -0.0072515131905674934,
- 0.07355045527219772,
- 0.03387688845396042,
- 0.028597619384527206,
- 0.007504937704652548,
- -0.10518834739923477,
- -0.05084453895688057,
- 0.005262493155896664,
- 0.008877807296812534,
- 0.048890598118305206,
- 0.023524513468146324,
- -0.034016456454992294,
- 0.028035877272486687,
- 0.042755402624607086,
- -0.014130577445030212,
- -0.06412395089864731,
- 0.025390082970261574,
- 0.12539705634117126,
- -0.030247660353779793,
- 0.05921115353703499,
- 0.09834668785333633,
- -0.024793453514575958,
- 0.011865001171827316,
- -0.07700961828231812,
- 0.007693848107010126,
- 0.05592310428619385,
- 0.04754672199487686,
- -0.03965143486857414,
- -0.01442855317145586,
- -0.04422108083963394,
- -0.022899914532899857,
- -0.010938319377601147,
- -0.03278650343418121,
- 0.019957803189754486,
- -0.11780191957950592,
- -0.025881722569465637,
- 0.010381609201431274,
- 0.01654409058392048,
- 0.07449377328157425,
- -0.014770491980016232,
- 0.012567696161568165,
- 0.02205917425453663,
- -0.10181466490030289,
- -0.008887043222784996,
- 0.031274206936359406,
- -0.03596518561244011,
- -0.0004462582292035222,
- 0.024830233305692673,
- -0.007646042853593826,
- -0.009868540801107883,
- 0.021437114104628563,
- -0.029002418741583824,
- 0.01522368285804987,
- -0.046457137912511826,
- -0.010326855815947056,
- -0.05638172850012779,
- -0.04258948937058449,
- -0.022025389596819878,
- -0.009968644008040428,
- -0.03787369653582573,
- 0.06909488886594772,
- -0.044814612716436386,
- 0.04528306797146797,
- 0.03501657396554947,
- 0.003918747883290052,
- 0.016723211854696274,
- -0.014286529272794724,
- -0.0064370958134531975,
- 0.021708805114030838,
- 0.07751904428005219,
- -0.007304753642529249,
- -0.06384733319282532,
- -1.270785343621128e-8,
- -0.03528719022870064,
- -0.06908756494522095,
- -0.005060320254415274,
- -0.013905759900808334,
- 0.01009619701653719,
- 0.05280793458223343,
- 0.08205738663673401,
- -0.09254031628370285,
- 0.005384729243814945,
- 0.08345040678977966,
- 0.04263664036989212,
- -0.06400585174560547,
- -0.04712890461087227,
- -0.005566528532654047,
- 0.055421121418476105,
- -0.06769776344299316,
- 0.11354701220989227,
- -0.04794826731085777,
- -0.07537604123353958,
- 0.005202698055654764,
- 0.047557178884744644,
- 0.004687169101089239,
- -0.10421773046255112,
- 0.016682477667927742,
- -0.032699309289455414,
- 0.007237807847559452,
- 0.062233760952949524,
- 0.046397626399993896,
- 0.011854330077767372,
- 0.002380341524258256,
- -0.00836211908608675,
- 0.05618813633918762,
- 0.06651986390352249,
- 0.04591040685772896,
- -0.018888523802161217,
- -0.03593653440475464,
- 0.1112314835190773,
- 0.0029778950847685337,
- 0.032095860689878464,
- 0.03608774393796921,
- 0.036364324390888214,
- 0.07952636480331421,
- 0.07227922230958939,
- -0.020425301045179367,
- 0.0668921247124672,
- -0.04924424737691879,
- 0.031085534021258354,
- -0.03453927859663963,
- -0.015881948173046112,
- -0.03329130634665489,
- -0.0241908747702837,
- -0.010881824418902397,
- 0.11595863848924637,
- 0.05374385416507721,
- 0.023838326334953308,
- 0.01547049731016159,
- -0.018463395535945892,
- 0.04264909774065018,
- -0.05830879509449005,
- -0.02420121617615223,
- 0.10904057323932648,
- 0.0662568062543869,
- 0.016941480338573456,
- 0.005025448277592659
- ]
- },
- {
- "keyword": "manuscript",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.09731489419937134,
- 0.0719732716679573,
- -0.05281950533390045,
- -0.01097793783992529,
- -0.04421527311205864,
- -0.007830672897398472,
- -0.05849049985408783,
- 0.014437798410654068,
- 0.014897543005645275,
- 0.07125865668058395,
- -0.005408100318163633,
- 0.07784681767225266,
- -0.0009196029859595001,
- -0.03965529799461365,
- -0.10742472857236862,
- -0.016938207671046257,
- -0.05888047814369202,
- 0.013329681940376759,
- 0.010890878736972809,
- 0.053675808012485504,
- -0.0760318785905838,
- 0.02791902795433998,
- 0.044378530234098434,
- 0.01599590666592121,
- 0.10420075803995132,
- 0.013669227249920368,
- -0.06472282111644745,
- -0.049925439059734344,
- 0.033832598477602005,
- -0.10764294862747192,
- -0.007252780254930258,
- -0.018875274807214737,
- 0.009468608535826206,
- -0.03444100543856621,
- 0.12617143988609314,
- 0.03299855440855026,
- 0.017012106254696846,
- 0.011375969275832176,
- 0.04697144404053688,
- -0.04880598559975624,
- 0.04190954193472862,
- -0.042386606335639954,
- -0.03900352865457535,
- 0.08275462687015533,
- 0.032909031957387924,
- -0.01809847541153431,
- -0.03309056535363197,
- 0.004940288607031107,
- -0.03376705199480057,
- 0.04625428840517998,
- -0.02705639787018299,
- -0.06686007231473923,
- -0.05709020793437958,
- 0.029765447601675987,
- 0.0018514875555410981,
- 0.0325736440718174,
- -0.0065746731124818325,
- 0.013988950289785862,
- -0.047470103949308395,
- -0.07571574300527573,
- -0.03716805949807167,
- 0.05028700828552246,
- -0.09653671085834503,
- 0.0440048947930336,
- 0.05044066533446312,
- 0.030240746214985847,
- 0.03036065585911274,
- 0.006517393514513969,
- 0.012190509587526321,
- -0.01991177722811699,
- -0.01766737923026085,
- 0.012077624909579754,
- 0.012973785400390625,
- -0.0009407275356352329,
- -0.004124081693589687,
- -0.09101704508066177,
- -0.027365244925022125,
- -0.07501141726970673,
- 0.0522669181227684,
- -0.027163628488779068,
- 0.03445756807923317,
- -0.035481903702020645,
- 0.0375516302883625,
- 0.05013033002614975,
- -0.06409262865781784,
- -0.006793246604502201,
- 0.057716917246580124,
- 0.038145795464515686,
- 0.02485654503107071,
- 0.02843739092350006,
- 0.042523935437202454,
- 0.02750380150973797,
- 0.06465820968151093,
- -0.054553188383579254,
- -0.20122280716896057,
- 0.015628041699528694,
- 0.03591464087367058,
- 0.04812421649694443,
- 0.10513179004192352,
- 0.231248140335083,
- 0.04457772150635719,
- 0.01983589492738247,
- 0.05880739539861679,
- -0.007965046912431717,
- 0.01772795431315899,
- -0.07188139110803604,
- 0.004463395103812218,
- -0.06042454391717911,
- -0.0009614623850211501,
- -0.04560375213623047,
- -0.015063116326928139,
- 0.014445233158767223,
- -0.021475445479154587,
- 0.05426895618438721,
- 0.038637176156044006,
- 0.01961601711809635,
- 0.031855423003435135,
- -0.001515720272436738,
- -0.01598883606493473,
- 0.08501682430505753,
- -0.000448993785539642,
- 0.024747129529714584,
- -0.05536303669214249,
- -0.052692800760269165,
- -0.07777340710163116,
- -0.04446681961417198,
- 0.026631271466612816,
- -5.0845339582406016e-33,
- 0.07269219309091568,
- 0.018178042024374008,
- -0.03800999000668526,
- 0.09785202145576477,
- 0.09633010625839233,
- 0.005495557561516762,
- 0.008826144970953465,
- -0.03169497102499008,
- -0.10292618721723557,
- -0.020319150760769844,
- -0.010486340150237083,
- -0.06485188752412796,
- -0.004747709725052118,
- 0.10858786106109619,
- -0.06294267624616623,
- 0.0499163419008255,
- -0.038288556039333344,
- -0.008209435269236565,
- 0.0663268193602562,
- -0.00919808354228735,
- -0.0463472343981266,
- -0.04379723593592644,
- 0.0185590498149395,
- 0.03726887330412865,
- 0.03828546032309532,
- 0.04717731475830078,
- -0.07217071205377579,
- -0.02916724979877472,
- -0.03895246237516403,
- 0.025697976350784302,
- -0.014075523242354393,
- -0.03612704575061798,
- 0.0026014610193669796,
- -0.07344232499599457,
- -0.006983614061027765,
- 0.0614999495446682,
- -0.003977503161877394,
- -0.059187836945056915,
- 0.026447176933288574,
- 0.06392603367567062,
- 0.002809583442285657,
- 0.017138326540589333,
- -0.0004436571034602821,
- -0.01859642192721367,
- 0.07510855793952942,
- 0.06795184314250946,
- 0.02940886840224266,
- 0.06103871390223503,
- 0.11155237257480621,
- 0.03122851438820362,
- -0.028426518663764,
- 0.013679742813110352,
- -0.04701278358697891,
- -0.053995538502931595,
- 0.023767583072185516,
- 0.010367962531745434,
- 0.007183529902249575,
- 0.03091161698102951,
- 0.036801159381866455,
- 0.02736266516149044,
- 0.08843465149402618,
- 0.137589231133461,
- -0.02631290629506111,
- 0.04283742979168892,
- 0.06650761514902115,
- -0.035633958876132965,
- -0.08111345022916794,
- -0.05483556538820267,
- 0.05507750064134598,
- -0.09090772271156311,
- -0.12603716552257538,
- -0.01853337325155735,
- 0.04741562902927399,
- -0.045158542692661285,
- -0.00158132694195956,
- 0.0011242214823141694,
- 0.0032634406816214323,
- -0.04264358803629875,
- -0.05771169438958168,
- -0.10477875173091888,
- -0.08040966838598251,
- -0.006645166780799627,
- -0.06641530990600586,
- -0.008629332296550274,
- -0.006234876811504364,
- -0.010951574891805649,
- 0.006698234472423792,
- -0.0004226989985909313,
- -0.05778804048895836,
- 0.037114743143320084,
- -0.010077049024403095,
- 0.02182968705892563,
- 0.025770187377929688,
- -0.045493513345718384,
- 0.03280596062541008,
- 4.4825298730639067e-33,
- -0.01395483873784542,
- -0.07707564532756805,
- -0.06790419667959213,
- 0.11005081236362457,
- 0.001872438471764326,
- -0.02076260931789875,
- -0.04894151911139488,
- 0.02854403480887413,
- 0.08622153848409653,
- 0.04063653200864792,
- -0.03585491701960564,
- -0.03502313047647476,
- 0.05174660682678223,
- 0.041747093200683594,
- 0.017476709559559822,
- -0.0564010888338089,
- -0.03233196586370468,
- 0.015527956187725067,
- 0.004222063347697258,
- 0.004617607221007347,
- -0.005994521547108889,
- 0.00649426132440567,
- 0.06404490023851395,
- 0.023864319548010826,
- 0.10832555592060089,
- 0.04195825010538101,
- 0.020785650238394737,
- 0.011220579966902733,
- -0.06077060475945473,
- -0.02667316421866417,
- -0.036611929535865784,
- -0.006856549996882677,
- 0.01316102221608162,
- 0.025835534557700157,
- -0.01231327187269926,
- -0.031774651259183884,
- 0.12499763816595078,
- 0.01673933118581772,
- -0.01061182003468275,
- 0.005766250658780336,
- 0.06549407541751862,
- 0.017711518332362175,
- -0.013743510469794273,
- 0.03601190075278282,
- -0.023284558206796646,
- 0.03424642235040665,
- -0.06358308345079422,
- 0.06976114213466644,
- 0.11628145724534988,
- 0.012024154886603355,
- -0.005491858348250389,
- -0.012920276261866093,
- 0.016496950760483742,
- -0.02864314801990986,
- 0.032765086740255356,
- 0.018971621990203857,
- -0.06744679808616638,
- -0.0517246276140213,
- 0.04413031041622162,
- 0.03882943093776703,
- -0.013500102795660496,
- 0.05527827888727188,
- -0.041776757687330246,
- 0.046357087790966034,
- 0.07703632861375809,
- -0.07435181736946106,
- 0.0028404041659086943,
- 0.019327376037836075,
- -0.07645078748464584,
- 0.06379522383213043,
- 0.007921225391328335,
- -0.02723746746778488,
- -0.015581106767058372,
- 0.04616159200668335,
- 0.08198621869087219,
- 0.030921801924705505,
- -0.04890578240156174,
- -0.03575620800256729,
- -0.011354655958712101,
- 0.012691826559603214,
- -0.01853976584970951,
- 0.02974884957075119,
- -0.07779853045940399,
- 0.04471566900610924,
- 0.02342768758535385,
- -0.03790762647986412,
- 0.06652558594942093,
- -0.0029402337968349457,
- -0.014334207400679588,
- -0.04639473557472229,
- 0.039648134261369705,
- 0.022176593542099,
- 0.0121807511895895,
- -0.04931832104921341,
- -0.006481621414422989,
- -1.1247263564939658e-8,
- -0.016961827874183655,
- -0.024913452565670013,
- -0.0186855960637331,
- -0.019942255690693855,
- 0.017321959137916565,
- -0.024547291919589043,
- 0.09073147177696228,
- 0.01110858004540205,
- -0.02770077995955944,
- 0.05274851620197296,
- 0.06708206981420517,
- -0.01510531548410654,
- 0.014081791043281555,
- -0.008430017158389091,
- 0.01735728047788143,
- -0.060696426779031754,
- 0.012811493128538132,
- -0.04963380843400955,
- -0.11825959384441376,
- -0.05843251571059227,
- 0.0025166328996419907,
- 0.010604461655020714,
- -0.00325874169357121,
- -0.07349829375743866,
- -0.002527951030060649,
- 0.041766442358493805,
- 0.022070934996008873,
- 0.0346723347902298,
- -0.0844808965921402,
- -0.01582704484462738,
- -0.006292130798101425,
- 0.09716898202896118,
- 0.030161838978528976,
- -0.043154213577508926,
- -0.05020030215382576,
- -0.01282970979809761,
- 0.10286256670951843,
- 0.03593744710087776,
- 0.0029156345408409834,
- 0.010634115897119045,
- 0.00029966418514959514,
- -0.03677794709801674,
- -0.004608869086951017,
- -0.023711510002613068,
- 0.036057863384485245,
- -0.05572844296693802,
- 0.0794491395354271,
- 0.02533997781574726,
- 0.00531268073245883,
- -0.059010203927755356,
- 0.03985164687037468,
- -0.10314304381608963,
- 0.10273746401071548,
- 0.04428606852889061,
- -0.04555429890751839,
- -0.015338924713432789,
- 0.04404408112168312,
- 0.054491203278303146,
- -0.027754032984375954,
- -0.06417490541934967,
- 0.12509378790855408,
- 0.009395545348525047,
- 0.07431777566671371,
- -0.09127417951822281
- ]
- },
- {
- "keyword": "report",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.006473032291978598,
- 0.09584154933691025,
- -0.03430477902293205,
- 0.06333205103874207,
- -0.016956297680735588,
- -0.013898215256631374,
- -0.002565576694905758,
- 0.07841183245182037,
- -0.12919749319553375,
- 0.0017626496264711022,
- 0.013890139758586884,
- 0.002212250605225563,
- 0.025412432849407196,
- 0.04261909797787666,
- -0.05162741616368294,
- 0.008009379729628563,
- 0.02241627871990204,
- -0.05189995467662811,
- -0.032239798456430435,
- -0.03243568539619446,
- 0.03406753018498421,
- 0.07601291686296463,
- 0.06386817991733551,
- 0.02563643641769886,
- -0.05691179260611534,
- 0.04710530862212181,
- -0.0775575041770935,
- 0.03506307303905487,
- -0.060405097901821136,
- -0.05262552946805954,
- -0.03223315253853798,
- 0.0605744905769825,
- 0.08692926168441772,
- 0.02154567465186119,
- -0.015173189342021942,
- 0.019035005941987038,
- 0.045159414410591125,
- 0.03465481102466583,
- 0.02683623507618904,
- -0.06866736710071564,
- 0.03907545283436775,
- -0.08203009516000748,
- 0.009179003536701202,
- 0.012634922750294209,
- -0.05482267960906029,
- 0.05306296795606613,
- -0.06368149816989899,
- 0.015587043948471546,
- -0.016184568405151367,
- 0.05332598835229874,
- -0.10140286386013031,
- 0.04179128631949425,
- 0.0127168083563447,
- -0.04279638081789017,
- -0.017918046563863754,
- -0.031224370002746582,
- -0.06561614573001862,
- -0.04799452796578407,
- -0.025564787909388542,
- -0.0066151805222034454,
- 0.051715388894081116,
- 0.032337937504053116,
- -0.02081369422376156,
- 0.016060469672083855,
- 0.024937445297837257,
- 0.02973250113427639,
- -0.005633378401398659,
- -0.05520457401871681,
- -0.06873773783445358,
- -0.0005406116251833737,
- 0.0426015742123127,
- 0.0008035092614591122,
- -0.07015946507453918,
- 0.08797582983970642,
- 0.05509353429079056,
- 0.01635269820690155,
- -0.010261925868690014,
- -0.003857285948470235,
- 0.05670788139104843,
- -0.08549513667821884,
- -0.02294725738465786,
- 0.05902574956417084,
- -0.016534585505723953,
- 0.0467887707054615,
- 0.06416365504264832,
- -0.05843517929315567,
- 0.0797070637345314,
- -0.024881137534976006,
- -0.11814983934164047,
- -0.0014164216117933393,
- 0.013339046388864517,
- 0.018039574846625328,
- 0.04859843850135803,
- 0.011715216562151909,
- -0.05363602936267853,
- -0.04533959552645683,
- -0.039521921426057816,
- -0.07100342959165573,
- 0.02092083916068077,
- 0.24684204161167145,
- 0.006056118290871382,
- 0.04374147579073906,
- -0.008233006112277508,
- -0.0475805290043354,
- -0.07570456713438034,
- -0.03885357454419136,
- -0.02966301701962948,
- 0.08439207077026367,
- -0.04929395020008087,
- 0.015134936198592186,
- 0.016563856974244118,
- -0.01373801939189434,
- -0.06413964182138443,
- 0.005115936044603586,
- 0.07105766981840134,
- 0.03789713978767395,
- 0.012943423353135586,
- 0.05977772921323776,
- 0.019463112577795982,
- 0.017787320539355278,
- -0.0020594222005456686,
- -0.0022051159758120775,
- -0.04293692111968994,
- 0.02941937930881977,
- 0.014049558900296688,
- -0.04038107022643089,
- -0.023170290514826775,
- -5.190850075432785e-33,
- -0.0057913074269890785,
- -0.031138965860009193,
- 0.031094495207071304,
- 0.05359790101647377,
- 0.029892105609178543,
- 0.04035866633057594,
- -0.04602698236703873,
- -0.019279494881629944,
- -0.01582447439432144,
- 0.04759945347905159,
- 0.0021346283610910177,
- 0.009187456220388412,
- -0.033756155520677567,
- -0.017846975475549698,
- -0.003031706204637885,
- 0.05920820310711861,
- 0.003862332319840789,
- 0.05854900926351547,
- -0.12101530283689499,
- -0.004893273115158081,
- 0.051142651587724686,
- -0.01799079217016697,
- 0.059234440326690674,
- 0.037192732095718384,
- -0.033318180590867996,
- -0.006514388136565685,
- -0.014517364092171192,
- -0.05021853744983673,
- -0.03547724336385727,
- 0.0002628689107950777,
- 0.0025496603921055794,
- 0.003999376203864813,
- 0.06952293962240219,
- 0.011356440372765064,
- -0.01219776552170515,
- -0.019310535863041878,
- 0.0414993017911911,
- -0.041534557938575745,
- 0.019471660256385803,
- 0.002168516395613551,
- -0.009210910648107529,
- 0.03464672341942787,
- -0.09552392363548279,
- 0.013920475728809834,
- 0.03547126054763794,
- 0.0443580262362957,
- 0.04955644905567169,
- 0.03192857280373573,
- 0.06058983877301216,
- -0.03550054877996445,
- 0.007089356891810894,
- 0.0284290574491024,
- -0.09092050045728683,
- -0.0702059343457222,
- 0.01219941582530737,
- -0.013420337811112404,
- -0.007044095546007156,
- -0.06125935912132263,
- 0.03736856207251549,
- 0.009029907174408436,
- 0.08478748053312302,
- 0.07015141099691391,
- -0.05824599415063858,
- -0.0058571649715304375,
- 0.00400859909132123,
- -0.02929837442934513,
- 0.06587500125169754,
- 0.05456071346998215,
- 0.012535768561065197,
- -0.01735103316605091,
- -0.061044394969940186,
- 0.01275175902992487,
- 0.11219164729118347,
- -0.0037742676213383675,
- -0.0328221395611763,
- -0.025686006993055344,
- 0.02911967784166336,
- -0.0075051384046673775,
- -0.040441177785396576,
- -0.022692527621984482,
- 0.03413550555706024,
- -0.059275366365909576,
- -0.007105376571416855,
- 0.02390533685684204,
- 0.03429890796542168,
- 0.017581088468432426,
- 0.07025450468063354,
- -0.06503821164369583,
- 0.01531086303293705,
- 0.02938895858824253,
- -0.026018671691417694,
- 0.034183744341135025,
- 0.06578711420297623,
- 0.03116500750184059,
- -0.07595732808113098,
- 3.946297268209611e-33,
- -0.08815566450357437,
- 0.04408540204167366,
- -0.013931093737483025,
- -0.016064831987023354,
- 0.02020895481109619,
- -0.05745350569486618,
- 0.004424481652677059,
- -0.028623104095458984,
- -0.05894900858402252,
- 0.05681101605296135,
- -0.007706610485911369,
- -0.05994651839137077,
- 0.005704463925212622,
- -0.001065579941496253,
- 0.017183657735586166,
- -0.008439282886683941,
- 0.09860667586326599,
- -0.048279669135808945,
- -0.08679936826229095,
- 0.04953528195619583,
- 0.007505936082452536,
- 0.06695357710123062,
- 0.002610885538160801,
- 0.014411051757633686,
- -0.13379314541816711,
- 0.058788903057575226,
- 0.16498522460460663,
- -0.0033494350500404835,
- -0.01457945816218853,
- -0.038321275264024734,
- 0.06864874809980392,
- -0.017415395006537437,
- -0.08797663450241089,
- -0.02204935811460018,
- -0.008847363293170929,
- 0.06732884049415588,
- 0.0931868776679039,
- 0.016391156241297722,
- -0.01616530865430832,
- 0.07520410418510437,
- 0.11070211231708527,
- 0.015434345230460167,
- -0.023350754752755165,
- 0.1033540740609169,
- -0.055232707411050797,
- 0.015588760375976562,
- 0.045631393790245056,
- -0.03009635955095291,
- 0.0010285313474014401,
- -0.003133206395432353,
- -0.10358121991157532,
- 0.04788938909769058,
- -0.06002818048000336,
- -0.11296630650758743,
- -0.06334565579891205,
- -0.03491099178791046,
- -0.03565552458167076,
- -0.017594430595636368,
- -0.05897126346826553,
- 0.019048525020480156,
- -0.008034911006689072,
- 0.10182981193065643,
- -0.10677199810743332,
- 0.00035783747443929315,
- 0.013616813346743584,
- -0.05367846041917801,
- -0.04260890185832977,
- -0.01468916330486536,
- 0.03319314494729042,
- 0.00574395339936018,
- 0.04832317307591438,
- 0.0025840201415121555,
- -0.0754721537232399,
- -0.015981560572981834,
- 0.05834254249930382,
- 0.03886808082461357,
- -0.06932622939348221,
- 0.08920611441135406,
- -0.027518827468156815,
- 0.019563665613532066,
- -0.042345959693193436,
- -0.08265314996242523,
- 0.02614481747150421,
- 0.011652329005300999,
- -0.040190406143665314,
- -0.009779619984328747,
- 0.06411727517843246,
- 0.027731752023100853,
- 0.00010491929424460977,
- 0.01751885749399662,
- -0.03371431678533554,
- -0.053821876645088196,
- -0.048749685287475586,
- 0.024374328553676605,
- 0.1090206578373909,
- -1.4962910910298888e-8,
- 0.0019096891628578305,
- -0.00650484673678875,
- 0.013288022018969059,
- 0.011012015864253044,
- 0.05456129088997841,
- 0.08087506145238876,
- -0.019714368507266045,
- 0.03811762481927872,
- 0.025280054658651352,
- 0.09117483347654343,
- -0.03067217394709587,
- -0.01897985301911831,
- -0.022957799956202507,
- -0.010469389148056507,
- 0.09970774501562119,
- -0.10214509814977646,
- 0.011057338677346706,
- 0.04998447746038437,
- -0.05414588004350662,
- -0.0018980096792802215,
- -0.10459979623556137,
- -0.03523394837975502,
- 0.025721006095409393,
- -0.07557663321495056,
- -0.05661676451563835,
- -0.04649725928902626,
- 0.02430826611816883,
- 0.10253246128559113,
- 0.04705698788166046,
- 0.08275825530290604,
- 0.006284363567829132,
- 0.05341305211186409,
- -0.04097994416952133,
- -0.0843634232878685,
- -0.01306266337633133,
- -0.02286544255912304,
- 0.04534529522061348,
- 0.025313302874565125,
- 0.030944552272558212,
- -0.029889047145843506,
- -0.05309136584401131,
- 0.040753502398729324,
- -0.013590172864496708,
- 0.04784344136714935,
- -0.07316748052835464,
- 0.03797372803092003,
- -0.03336917236447334,
- -0.059003304690122604,
- -0.007144451607018709,
- -0.026949113234877586,
- 0.03169194236397743,
- -0.020992323756217957,
- 0.10472273826599121,
- 0.056222349405288696,
- 0.03217929229140282,
- 0.11783755570650101,
- -0.011276154778897762,
- -0.0680987536907196,
- -0.025769533589482307,
- -0.036469344049692154,
- 0.11573577672243118,
- -0.04441037029027939,
- 0.05822735279798508,
- 0.05533993989229202
- ]
- },
- {
- "keyword": "summary",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0010325323091819882,
- 0.07123058289289474,
- 0.05271673575043678,
- 0.0879371166229248,
- 0.0032776445150375366,
- 0.0008789563435129821,
- 0.0945686474442482,
- 0.05398799479007721,
- 0.03260587900876999,
- 0.008431955240666866,
- 0.018947985023260117,
- -0.008459589444100857,
- 0.004734945483505726,
- -0.01485511101782322,
- -0.06809300929307938,
- 0.010242102667689323,
- 0.04537297785282135,
- -0.09166119992733002,
- -0.09450647234916687,
- -0.038576461374759674,
- -0.015605182386934757,
- 0.024076074361801147,
- 0.02095784805715084,
- 0.020968811586499214,
- 0.008086184039711952,
- 0.08759644627571106,
- -0.0385512113571167,
- 0.07728151977062225,
- -0.05146729201078415,
- -0.0760895162820816,
- 0.02630477584898472,
- 0.07155852764844894,
- 0.07595359534025192,
- 0.010189327411353588,
- -0.06436598300933838,
- 0.020326942205429077,
- -0.02845735289156437,
- 0.022374920547008514,
- 0.029449600726366043,
- -0.057238589972257614,
- 0.034865640103816986,
- -0.07324766367673874,
- 0.03521406650543213,
- 0.05262604355812073,
- 0.016873564571142197,
- -0.035100892186164856,
- -0.03541393205523491,
- -0.05582302063703537,
- 0.003488230751827359,
- 0.0026660775765776634,
- -0.02625899203121662,
- 0.07124046236276627,
- -0.010302207432687283,
- -0.015667079016566277,
- 0.050745271146297455,
- 0.06574384868144989,
- -0.024385208263993263,
- -0.028206737712025642,
- 0.04112890362739563,
- -0.04986196011304855,
- 0.12611307203769684,
- -0.03020661137998104,
- -0.022606058046221733,
- 0.038196150213479996,
- 0.12619270384311676,
- -0.049796462059020996,
- 0.036383822560310364,
- -0.027537323534488678,
- -0.04565626010298729,
- 0.030977923423051834,
- -0.09033384919166565,
- 0.005806248169392347,
- -0.005491878371685743,
- -0.0020074089989066124,
- 0.02322031743824482,
- -0.028758054599165916,
- -0.0030375798232853413,
- -0.0071165491826832294,
- 0.0035002115182578564,
- -0.05228866636753082,
- -0.06554786115884781,
- 0.022394804283976555,
- -0.047560449689626694,
- -0.0027608037926256657,
- 0.009974196553230286,
- 0.007333613932132721,
- 0.047383345663547516,
- -0.07507245242595673,
- -0.020409999415278435,
- 0.016093943268060684,
- -0.051248639822006226,
- -0.0806824117898941,
- 0.07655613869428635,
- 0.0027616480365395546,
- -0.056719083338975906,
- 0.049656979739665985,
- 0.002931976690888405,
- -0.08093688637018204,
- 0.008960378356277943,
- 0.21762336790561676,
- 0.049939293414354324,
- 0.007940934039652348,
- -0.05202881619334221,
- -0.07924982905387878,
- -0.029751500114798546,
- -0.06867159903049469,
- -0.0034499072935432196,
- 0.008905764669179916,
- -0.04200984537601471,
- -0.04300675913691521,
- 0.0004263161972630769,
- -0.0015905855689197779,
- -0.012590717524290085,
- 0.02403816021978855,
- 0.04608718305826187,
- -0.0086570605635643,
- 0.10270096361637115,
- 0.012497054412961006,
- 0.002068928210064769,
- 0.00605163536965847,
- 0.09255152195692062,
- 0.003401763504371047,
- -0.020047148689627647,
- 0.05289744585752487,
- -0.10531993210315704,
- -0.07055651396512985,
- 0.018271828070282936,
- -5.240768545066407e-33,
- -0.02196265384554863,
- -0.04228255897760391,
- 0.01611660048365593,
- 0.15952754020690918,
- 0.07848623394966125,
- 0.0009622529614716768,
- 0.00295171607285738,
- -0.0022018314339220524,
- -0.041826970875263214,
- 0.08603303134441376,
- -0.06000644713640213,
- -0.00041552475886419415,
- -0.09328599274158478,
- -0.0145467733964324,
- 0.00017499153909739107,
- -0.019926786422729492,
- -0.0683683380484581,
- 0.092013418674469,
- -0.016125572845339775,
- 0.028838934376835823,
- 0.019319821149110794,
- 0.019726872444152832,
- 0.008337701670825481,
- -0.008191091008484364,
- 0.0111488476395607,
- 0.015351328067481518,
- -0.02684050425887108,
- -0.026287486776709557,
- -0.06027425825595856,
- 0.0009324835846200585,
- 0.019929492846131325,
- 0.06409256160259247,
- 0.05656548961997032,
- -0.010656965896487236,
- 0.0029409860726445913,
- -0.040179140865802765,
- 0.005421102978289127,
- -0.021206170320510864,
- 0.015071804635226727,
- 0.011501980945467949,
- -0.08202052116394043,
- -0.047993164509534836,
- -0.10448011755943298,
- -0.07838499546051025,
- -0.001643856754526496,
- 0.030167892575263977,
- 0.033291157335042953,
- -0.025860534980893135,
- 0.04906611517071724,
- 0.02133786864578724,
- -0.05409456789493561,
- -0.014107838273048401,
- -0.07192987948656082,
- -0.03958279266953468,
- -0.01677456684410572,
- 0.049961112439632416,
- 0.010389427654445171,
- 0.00990842841565609,
- 0.0021953971590846777,
- -0.01817210018634796,
- 0.09412860870361328,
- 0.09070011973381042,
- -0.11082670092582703,
- 0.008279782719910145,
- 0.007581705693155527,
- 0.005986787378787994,
- -0.000619546219240874,
- 0.007002672180533409,
- 0.010435095988214016,
- 0.021122384816408157,
- -0.09820840507745743,
- -0.003652055747807026,
- 0.14784018695354462,
- 0.06401316821575165,
- -0.001531075919046998,
- 0.0015534936683252454,
- 0.038140811026096344,
- 0.02206885814666748,
- -0.04620274156332016,
- -0.03489423170685768,
- 0.027410509064793587,
- -0.008629120886325836,
- 0.004146731458604336,
- -0.08741707354784012,
- -0.03587695211172104,
- 0.029859354719519615,
- 0.10004843771457672,
- -0.1103774905204773,
- -0.05106233060359955,
- -0.03950699418783188,
- -0.04595700651407242,
- 0.0028748733457177877,
- 0.029939260333776474,
- 0.030732443556189537,
- -0.0585017204284668,
- 2.4819358335903008e-33,
- -0.013949579559266567,
- 0.021934304386377335,
- -0.06452392786741257,
- -0.05477580800652504,
- 0.0028177767526358366,
- 0.011228303425014019,
- -0.05098696053028107,
- 0.06994713097810745,
- 0.003967497497797012,
- 0.0028356697876006365,
- -0.07215984910726547,
- -0.023818792775273323,
- 0.08202628791332245,
- 0.039568256586790085,
- 0.03734607622027397,
- -0.06685543060302734,
- 0.09101726114749908,
- -0.009863433428108692,
- -0.07403455674648285,
- 0.037258587777614594,
- 0.013546829111874104,
- -0.013972667045891285,
- -0.0035056835040450096,
- -0.09082407504320145,
- -0.09744004160165787,
- 0.030779840424656868,
- 0.03917744383215904,
- 0.004669983871281147,
- -0.06789103895425797,
- -0.05552459880709648,
- 0.11309181153774261,
- -0.04880928248167038,
- -0.05823029205203056,
- -0.1026265099644661,
- -0.03793276101350784,
- 0.03034302219748497,
- 0.10511624813079834,
- 0.017558932304382324,
- -0.033626873046159744,
- 0.023276306688785553,
- 0.10589541494846344,
- -0.07698153704404831,
- 0.0315299890935421,
- 0.0027255720924586058,
- -0.022808486595749855,
- 0.03748827055096626,
- 0.11627766489982605,
- 0.019817106425762177,
- 0.05498182773590088,
- 0.0016070082783699036,
- -0.05377339571714401,
- 0.026240544393658638,
- -0.03418966755270958,
- -0.049472786486148834,
- -0.05737172067165375,
- -0.08884682506322861,
- 0.016348958015441895,
- -0.03190380707383156,
- 0.0026168052572757006,
- -0.048201922327280045,
- -0.011143971234560013,
- 0.015235727652907372,
- -0.10817547887563705,
- 0.043561872094869614,
- -0.024697739630937576,
- -0.009183072485029697,
- -0.04251672700047493,
- -0.1174943670630455,
- 0.03774164617061615,
- 0.014755407348275185,
- -0.013412664644420147,
- -0.044576823711395264,
- -0.04548529535531998,
- 0.0467693917453289,
- 0.0766725242137909,
- -0.00768442265689373,
- -0.08779700100421906,
- 0.030178729444742203,
- -0.02659294754266739,
- -0.04060796648263931,
- -0.03691483289003372,
- -0.02646324783563614,
- -0.01697034388780594,
- 0.007444155402481556,
- -0.03646426647901535,
- 0.024656647816300392,
- 0.0006628697738051414,
- 0.003952734638005495,
- -0.01904185116291046,
- 0.010724332183599472,
- -0.027516914531588554,
- -0.047219570726156235,
- 0.027078600600361824,
- -0.010165195912122726,
- 0.020697304978966713,
- -1.4495227240729491e-8,
- -0.0228878166526556,
- 0.01538826059550047,
- -0.021138491109013557,
- -0.030990419909358025,
- 0.026271836832165718,
- 0.11225465685129166,
- -0.005741025786846876,
- 0.022962840273976326,
- 0.0031131990253925323,
- 0.1653517335653305,
- -0.01805184967815876,
- 0.021139750257134438,
- -0.006335184443742037,
- 0.04272693768143654,
- 0.05198444798588753,
- 0.06289530545473099,
- -0.003706791205331683,
- 0.07817835360765457,
- 0.011076200753450394,
- -0.029516126960515976,
- -0.013996475376188755,
- -0.012456309050321579,
- 0.021587355062365532,
- -0.07614593952894211,
- 0.0074316468089818954,
- 0.06282521784305573,
- -0.05338910222053528,
- 0.1505717635154724,
- 0.01484605111181736,
- 0.041657596826553345,
- 0.03379952907562256,
- 0.05937254801392555,
- -0.04782910272479057,
- -0.004196750000119209,
- -0.03072858601808548,
- 0.029903016984462738,
- 0.07693938165903091,
- 0.014553305692970753,
- 0.09981685876846313,
- 0.00833974964916706,
- -0.06439287215471268,
- -0.00004762498792842962,
- 0.056969694793224335,
- 0.045880112797021866,
- 0.03780830278992653,
- -0.01051193755120039,
- -0.046591829508543015,
- -0.028147749602794647,
- 0.0256352536380291,
- 0.012832974083721638,
- 0.00044313326361589134,
- -0.04155731201171875,
- 0.02552834339439869,
- 0.010270874947309494,
- 0.015802783891558647,
- -0.0008096375386230648,
- -0.0064947232604026794,
- -0.019507629796862602,
- -0.022973990067839622,
- -0.011278875172138214,
- 0.11610348522663116,
- 0.04151229187846184,
- 0.06458009779453278,
- -0.00995992124080658
- ]
- },
- {
- "keyword": "brief",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.042626481503248215,
- 0.13562117516994476,
- 0.04570329561829567,
- 0.009862012229859829,
- 0.05849309638142586,
- 0.03722517192363739,
- 0.04960372671484947,
- 0.020028093829751015,
- 0.000344372441759333,
- -0.012713070958852768,
- 0.039410725235939026,
- 0.05532373860478401,
- -0.08376460522413254,
- -0.04250166192650795,
- 0.04737406224012375,
- -0.015991806983947754,
- 0.03747836872935295,
- -0.009482847526669502,
- -0.07160113006830215,
- 0.009433931671082973,
- 0.005108638666570187,
- 0.04674624651670456,
- -0.06496220082044601,
- 0.04965205863118172,
- -0.03856853023171425,
- -0.005354301538318396,
- 0.022350408136844635,
- 0.022619448602199554,
- 0.05940159410238266,
- -0.03820786625146866,
- 0.025595558807253838,
- 0.08332166075706482,
- 0.11030664294958115,
- 0.03889579325914383,
- -0.0696670413017273,
- 0.11720097810029984,
- -0.04120122268795967,
- 0.003015256952494383,
- 0.022821525111794472,
- -0.028528550639748573,
- 0.026158206164836884,
- -0.05212479084730148,
- 0.013417803682386875,
- 0.1545117348432541,
- 0.024429764598608017,
- -0.024229547008872032,
- 0.047310516238212585,
- -0.04923726245760918,
- 0.0037443519104272127,
- -0.06092502921819687,
- -0.07361528277397156,
- -0.0018921064911410213,
- 0.010120326653122902,
- -0.020952245220541954,
- 0.03317014127969742,
- -0.05512164905667305,
- -0.07883843034505844,
- -0.04517069458961487,
- -0.04217669367790222,
- 0.017726704478263855,
- 0.05149981006979942,
- -0.06493666023015976,
- -0.08017399162054062,
- -0.0010501788929104805,
- 0.08074309676885605,
- -0.027377275750041008,
- 0.022867361083626747,
- -0.0027381631080061197,
- -0.0882168784737587,
- -0.002073161071166396,
- 0.004747266415506601,
- -0.016955342143774033,
- -0.04793468862771988,
- 0.09274229407310486,
- -0.036291033029556274,
- -0.031187446787953377,
- 0.011123319156467915,
- 0.003186723915860057,
- -0.006796118337661028,
- -0.03322867304086685,
- -0.01532960869371891,
- 0.006659586913883686,
- -0.056628916412591934,
- 0.013954637572169304,
- 0.01065756380558014,
- -0.003378759603947401,
- 0.03165204077959061,
- 0.005032988265156746,
- -0.032351940870285034,
- -0.06081143766641617,
- 0.01925872638821602,
- -0.0926332026720047,
- 0.012526252306997776,
- -0.011078543029725552,
- -0.03102155402302742,
- -0.01658189296722412,
- 0.025522980839014053,
- -0.08555043488740921,
- -0.06648628413677216,
- 0.25559550523757935,
- 0.05533284321427345,
- 0.027097368612885475,
- -0.05168703943490982,
- 0.04080168157815933,
- -0.08670371770858765,
- -0.050204839557409286,
- -0.021692724898457527,
- 0.017539510503411293,
- -0.02212362177670002,
- -0.017887219786643982,
- 0.0028533069416880608,
- 0.008146130479872227,
- -0.010476567782461643,
- 0.004266358446329832,
- 0.05239574611186981,
- -0.03918956220149994,
- -0.02662227302789688,
- -0.01742996834218502,
- 0.06809566169977188,
- 0.07404087483882904,
- 0.006549096666276455,
- 0.0069013722240924835,
- -0.033844076097011566,
- 0.06693757325410843,
- -0.06560499221086502,
- -0.006713241338729858,
- 0.030907589942216873,
- -6.824602817399479e-33,
- 0.02103804610669613,
- 0.026295937597751617,
- -0.03320147469639778,
- 0.12184156477451324,
- -0.016974352300167084,
- 0.021783338859677315,
- -0.024603553116321564,
- -0.09452766925096512,
- -0.07448464632034302,
- 0.07880865037441254,
- 0.012824254110455513,
- 0.03423664718866348,
- 0.01539907418191433,
- 0.02246406488120556,
- -0.029097408056259155,
- -0.029386892914772034,
- -0.049792349338531494,
- 0.16102850437164307,
- -0.0359213650226593,
- 0.040700484067201614,
- -0.06659574061632156,
- 0.06991302222013474,
- 0.020885063335299492,
- 0.028973707929253578,
- 0.03823496773838997,
- -0.09298937767744064,
- -0.05786332115530968,
- -0.11032448709011078,
- -0.02844616398215294,
- -0.0010733645176514983,
- -0.003208281472325325,
- 0.012407136149704456,
- 0.005279445089399815,
- -0.0044239419512450695,
- -0.008779850788414478,
- 0.02541966177523136,
- -0.02981220744550228,
- -0.014435078017413616,
- -0.025637568905949593,
- -0.04402837157249451,
- -0.04625333100557327,
- -0.006438695825636387,
- -0.017242729663848877,
- -0.041627898812294006,
- -0.013978611677885056,
- -0.06790848821401596,
- -0.042061273008584976,
- 0.04155934974551201,
- 0.007921566255390644,
- 0.04992586374282837,
- 0.040214668959379196,
- 0.0026748517993837595,
- -0.036739282310009,
- -0.09275302290916443,
- -0.01378083135932684,
- 0.03517220914363861,
- -0.0033989031799137592,
- 0.002139383228495717,
- -0.00990133173763752,
- 0.09123160690069199,
- -0.015757130458950996,
- 0.124387726187706,
- -0.10417517274618149,
- 0.0017125315498560667,
- 0.023189375177025795,
- 0.02624671161174774,
- -0.014692484401166439,
- 0.025917965918779373,
- 0.07527492195367813,
- -0.05472724512219429,
- -0.08145402371883392,
- -0.020784365013241768,
- 0.05966401845216751,
- 0.028842447325587273,
- 0.008821696974337101,
- 0.04419331252574921,
- 0.09789714962244034,
- -0.07477244734764099,
- -0.011578577570617199,
- -0.029676664620637894,
- 0.04125430807471275,
- -0.0005474920035339892,
- 0.044226404279470444,
- -0.014639240689575672,
- -0.07825593650341034,
- 0.037072502076625824,
- 0.043756332248449326,
- -0.07949753850698471,
- -0.05814759433269501,
- -0.006920618936419487,
- -0.1570616364479065,
- 0.017588134855031967,
- 0.01091949362307787,
- -0.03728313371539116,
- 0.0069737983867526054,
- 5.737860861458167e-33,
- 0.06772390007972717,
- -0.015743253752589226,
- -0.03285325691103935,
- -0.027147430926561356,
- 0.04703965783119202,
- 0.03350631892681122,
- -0.0025565065443515778,
- 0.1270114779472351,
- -0.14318442344665527,
- -0.005553359165787697,
- -0.07497621327638626,
- -0.03989240527153015,
- -0.023390095680952072,
- -0.010997232981026173,
- -0.05500436946749687,
- -0.021109191700816154,
- 0.07013500481843948,
- -0.015830855816602707,
- -0.025310087949037552,
- 0.04625342786312103,
- 0.05850771814584732,
- -0.048924896866083145,
- 0.024376576766371727,
- -0.06415119767189026,
- -0.0748412013053894,
- 0.08329503983259201,
- 0.041993290185928345,
- -0.024168718606233597,
- -0.09707134962081909,
- -0.028560049831867218,
- -0.006303443107753992,
- -0.01890888623893261,
- -0.09863555431365967,
- -0.06793256103992462,
- -0.030807381495833397,
- 0.02411620505154133,
- -0.01218885276466608,
- -0.00799665879458189,
- 0.0027972650714218616,
- 0.0010322631569579244,
- 0.04852359741926193,
- 0.013804500922560692,
- 0.013938774354755878,
- 0.05583798140287399,
- -0.047042567282915115,
- -0.006824504118412733,
- 0.011185587383806705,
- 0.049237824976444244,
- 0.01228945143520832,
- 0.09336372464895248,
- -0.029695658013224602,
- 0.010935873724520206,
- 0.01956138387322426,
- -0.014763480983674526,
- -0.025678621605038643,
- -0.1221911609172821,
- -0.03914378955960274,
- -0.018805047497153282,
- -0.009601525962352753,
- -0.03016483038663864,
- -0.015880713239312172,
- 0.030398909002542496,
- -0.12047867476940155,
- 0.023647719994187355,
- 0.05985566973686218,
- -0.01136227510869503,
- 0.032992638647556305,
- 0.0013942030491307378,
- 0.0555107519030571,
- -0.06412455439567566,
- 0.03401108458638191,
- 0.037207815796136856,
- -0.04727833718061447,
- -0.04836566746234894,
- 0.01195534411817789,
- 0.09321463853120804,
- -0.012080870568752289,
- -0.06461140513420105,
- 0.006215635221451521,
- 0.03795972093939781,
- 0.012097379192709923,
- -0.039365556091070175,
- -0.049851711839437485,
- -0.04263169690966606,
- 0.04948493465781212,
- 0.04078631103038788,
- 0.0057998704724013805,
- -0.003197351936250925,
- 0.07070612162351608,
- 0.03283863514661789,
- -0.023481279611587524,
- 0.084464430809021,
- 0.0895242691040039,
- 0.04628903791308403,
- -0.07081121951341629,
- -1.4265682857228512e-8,
- 0.01843792386353016,
- 0.03197859972715378,
- -0.053436100482940674,
- -0.012319806031882763,
- 0.030427424237132072,
- 0.029878418892621994,
- 0.020214593037962914,
- 0.040682435035705566,
- 0.0327012836933136,
- 0.0649733617901802,
- 0.020230131223797798,
- 0.03285541757941246,
- -0.0742282047867775,
- 0.06492187082767487,
- 0.06225257366895676,
- -0.033212512731552124,
- 0.07054551690816879,
- -0.023580892011523247,
- -0.04044421762228012,
- 0.029444199055433273,
- 0.033462636172771454,
- 0.05989319086074829,
- 0.0010446355445310473,
- 0.003424627473577857,
- 0.010773016139864922,
- -0.0016246207524091005,
- -0.01449560560286045,
- 0.09493624418973923,
- 0.016903690993785858,
- 0.04429884999990463,
- 0.039643753319978714,
- 0.0862341970205307,
- -0.04252782464027405,
- -0.037153951823711395,
- -0.04246029630303383,
- 0.0625307708978653,
- 0.0730462595820427,
- 0.03598365560173988,
- 0.059820763766765594,
- 0.0174932312220335,
- -0.035739466547966,
- 0.024952175095677376,
- 0.05427195131778717,
- 0.014579398557543755,
- -0.05062912777066231,
- 0.0027406997978687286,
- -0.03117714822292328,
- -0.0356673039495945,
- 0.033931948244571686,
- -0.044663701206445694,
- -0.04823620989918709,
- -0.03181967884302139,
- 0.062235601246356964,
- 0.046256206929683685,
- -0.04414849355816841,
- 0.052829090505838394,
- 0.030426982790231705,
- 0.012834759429097176,
- -0.025924155488610268,
- -0.002302280394360423,
- 0.023001203313469887,
- 0.1068606972694397,
- -0.0027822803240269423,
- 0.057363901287317276
- ]
- },
- {
- "keyword": "overview",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04624021798372269,
- 0.04274018853902817,
- 0.007982107810676098,
- 0.037676069885492325,
- 0.004892558790743351,
- 0.030844934284687042,
- 0.12631316483020782,
- 0.06034725159406662,
- -0.06979835033416748,
- 0.002577272243797779,
- -0.03192628175020218,
- 0.024137413129210472,
- 0.03305341675877571,
- -0.05470398813486099,
- -0.08795342594385147,
- -0.015031037852168083,
- 0.034817684441804886,
- -0.11178158968687057,
- -0.0537676177918911,
- -0.03298768028616905,
- -0.05703146755695343,
- 0.0215228833258152,
- 0.019771289080381393,
- 0.026980098336935043,
- -0.013957834802567959,
- 0.03755667060613632,
- -0.0025039517786353827,
- 0.027351858094334602,
- 0.03627350181341171,
- -0.07340292632579803,
- 0.020676201209425926,
- 0.037306319922208786,
- 0.10546620190143585,
- 0.06648930162191391,
- -0.07137921452522278,
- -0.034420765936374664,
- -0.014788464643061161,
- -0.006969285663217306,
- 0.016700152307748795,
- -0.021115969866514206,
- 0.019947301596403122,
- -0.05513545125722885,
- -0.07182992249727249,
- 0.006363450083881617,
- 0.04374568536877632,
- -0.014280200935900211,
- -0.0008850354352034628,
- -0.07108411937952042,
- -0.013095441274344921,
- -0.015867913141846657,
- -0.029338033869862556,
- -0.025881826877593994,
- -0.02024264447391033,
- 0.011229953728616238,
- -0.02956455759704113,
- 0.01728062517940998,
- -0.031011754646897316,
- -0.0635199174284935,
- 0.00044531963067129254,
- -0.014561155810952187,
- 0.10954853892326355,
- -0.015622520819306374,
- -0.007080053444951773,
- 0.04684815928339958,
- 0.029657892882823944,
- -0.04592711105942726,
- 0.02609621174633503,
- 0.03152031823992729,
- -0.014086122624576092,
- -0.05571749806404114,
- -0.10941862314939499,
- 0.0024691543076187372,
- -0.0258319191634655,
- -0.04298388957977295,
- 0.04194643348455429,
- -0.055406469851732254,
- -0.031607840210199356,
- -0.027232704684138298,
- 0.03483488783240318,
- -0.11826100200414658,
- 0.04406674578785896,
- 0.038496751338243484,
- -0.026240453124046326,
- -0.07810139656066895,
- 0.027648406103253365,
- 0.05611684173345566,
- -0.025071850046515465,
- -0.05539059266448021,
- 0.015511496923863888,
- 0.018455786630511284,
- 0.021588288247585297,
- -0.06649044156074524,
- 0.09525191783905029,
- 0.010854308493435383,
- -0.024736540392041206,
- 0.015881670638918877,
- 0.0745740756392479,
- -0.05660214647650719,
- -0.03631303459405899,
- 0.19607439637184143,
- 0.07241596281528473,
- -0.06606557220220566,
- -0.04136539250612259,
- -0.06351153552532196,
- -0.08330123126506805,
- -0.05356709286570549,
- -0.0028497246094048023,
- 0.05873388424515724,
- -0.005351461935788393,
- -0.04498300328850746,
- -0.03179921954870224,
- 0.003844355931505561,
- -0.03715028613805771,
- -0.03410269692540169,
- -0.000520572008099407,
- -0.01714746467769146,
- 0.10135847330093384,
- 0.05140504613518715,
- 0.04579564929008484,
- -0.03135085105895996,
- -0.01654070056974888,
- -0.02572823129594326,
- -0.03121442347764969,
- -0.02470843307673931,
- -0.0992877259850502,
- -0.050062596797943115,
- -0.04844849556684494,
- -5.452401609252575e-33,
- -0.025148605927824974,
- -0.05847509950399399,
- -0.003415861167013645,
- 0.07842905074357986,
- 0.01060993131250143,
- -0.0002707191451918334,
- -0.0010011896956712008,
- -0.03798653930425644,
- -0.035938747227191925,
- 0.057915668934583664,
- 0.04486652463674545,
- 0.04156496375799179,
- -0.07219186425209045,
- -0.01726192608475685,
- -0.013315150514245033,
- -0.10953167080879211,
- -0.10375870764255524,
- 0.1567557454109192,
- 0.02292625978589058,
- 0.0233442522585392,
- -0.017887799069285393,
- 0.07647997885942459,
- 0.024591924622654915,
- -0.012159274891018867,
- 0.029309256002306938,
- 0.0315224751830101,
- -0.00960859190672636,
- -0.045015111565589905,
- 0.00018134880519937724,
- 0.02062087692320347,
- 0.03945460170507431,
- 0.032170481979846954,
- -0.034396253526210785,
- -0.0452013723552227,
- -0.03273521363735199,
- 0.06140880286693573,
- -0.005008222535252571,
- -0.05480373278260231,
- 0.03772783279418945,
- -0.0837792381644249,
- -0.10754189640283585,
- -0.01671578735113144,
- -0.03565876558423042,
- -0.07565659284591675,
- 0.01726357638835907,
- 0.02299642562866211,
- 0.014141850173473358,
- 0.034974098205566406,
- 0.1329922080039978,
- 0.04474025219678879,
- -0.04370308294892311,
- -0.00903217401355505,
- -0.10038481652736664,
- -0.06357259303331375,
- 0.04161705821752548,
- -0.012304970063269138,
- -0.05566110461950302,
- 0.03421059623360634,
- -0.015295345336198807,
- 0.051849063485860825,
- 0.040571194142103195,
- 0.07454940676689148,
- -0.12531578540802002,
- -0.012327412143349648,
- -0.019552575424313545,
- 0.043216340243816376,
- -0.002251735655590892,
- -0.023709017783403397,
- 0.07793468981981277,
- -0.027635129168629646,
- -0.06129319965839386,
- 0.006121151614934206,
- 0.11574720591306686,
- 0.056608647108078,
- -0.003992208279669285,
- 0.010875299572944641,
- 0.04896795377135277,
- 0.041531436145305634,
- -0.09293284267187119,
- 0.021262388676404953,
- -0.09669577330350876,
- -0.016460057348012924,
- -0.01843181625008583,
- -0.00554616330191493,
- -0.06174224615097046,
- 0.013853092677891254,
- 0.06291403621435165,
- -0.021824609488248825,
- -0.01809106208384037,
- -0.04123992845416069,
- -0.05802476778626442,
- 0.02837791107594967,
- 0.07139855623245239,
- 0.07171185314655304,
- -0.058495428413152695,
- 2.8533619264074038e-33,
- 0.04708785191178322,
- 0.01613723672926426,
- -0.0863666981458664,
- -0.011594331823289394,
- 0.044851236045360565,
- 0.00710091320797801,
- 0.00557413836941123,
- 0.10293447971343994,
- -0.04357294365763664,
- -0.05722453072667122,
- -0.060796625912189484,
- -0.020883100107312202,
- -0.005331836640834808,
- 0.01972784474492073,
- -0.013307102955877781,
- -0.12998515367507935,
- 0.07939717173576355,
- -0.036019545048475266,
- -0.08442128449678421,
- 0.03895322233438492,
- -0.02388060837984085,
- 0.0014592978404834867,
- -0.00017079951066989452,
- -0.047913629561662674,
- -0.09237407892942429,
- 0.05434713512659073,
- 0.07250062376260757,
- 0.06198593229055405,
- 0.011916193179786205,
- -0.0601852647960186,
- 0.054190877825021744,
- -0.04531591758131981,
- -0.023502036929130554,
- -0.01450568437576294,
- -0.001447463408112526,
- 0.050101425498723984,
- 0.13148251175880432,
- 0.07107380777597427,
- -0.01949203759431839,
- 0.00525004044175148,
- 0.11383192986249924,
- -0.01540830172598362,
- 0.014278591610491276,
- 0.030553413555026054,
- -0.0695514902472496,
- 0.0030051530338823795,
- 0.015283443965017796,
- 0.05718247964978218,
- 0.010732792317867279,
- 0.05708954483270645,
- -0.025876302272081375,
- 0.014710251241922379,
- -0.03789154067635536,
- -0.05859110504388809,
- -0.03634944558143616,
- 0.04488829895853996,
- 0.027978889644145966,
- -0.02412308007478714,
- 0.018347611650824547,
- -0.012823691591620445,
- 0.00005013104237150401,
- 0.04191197454929352,
- -0.07857048511505127,
- 0.11399011313915253,
- 0.01927686296403408,
- 0.030094103887677193,
- -0.005935776513069868,
- -0.035551298409700394,
- 0.08310917019844055,
- -0.029478022828698158,
- 0.023934394121170044,
- -0.005952666979283094,
- -0.0410609245300293,
- -0.011831308715045452,
- 0.04167134687304497,
- -0.07000327110290527,
- -0.03646691516041756,
- -0.019585993140935898,
- -0.046339891850948334,
- -0.07698079943656921,
- -0.02867165580391884,
- -0.0007099456852301955,
- -0.02227606065571308,
- 0.059552669525146484,
- 0.04087689146399498,
- 0.0002667871303856373,
- 0.07278710603713989,
- -0.05473492294549942,
- 0.05667582154273987,
- -0.02177322842180729,
- -0.05908051133155823,
- -0.012788883410394192,
- 0.021055778488516808,
- 0.04993303492665291,
- 0.013619421049952507,
- -1.5369762351724603e-8,
- -0.02493184059858322,
- -0.012243875302374363,
- -0.009486889466643333,
- -0.00015888774942141026,
- 0.0362817756831646,
- 0.052416250109672546,
- -0.008871789090335369,
- 0.00033750938018783927,
- -0.013080352917313576,
- 0.08944351971149445,
- -0.028210042044520378,
- 0.004230482503771782,
- -0.05011848360300064,
- 0.0234121885150671,
- 0.12513309717178345,
- 0.028332935646176338,
- -0.01130740437656641,
- 0.11185169219970703,
- -0.019162757322192192,
- -0.003373492043465376,
- -0.025771766901016235,
- 0.015254378318786621,
- 0.035912588238716125,
- -0.008937595412135124,
- 0.011113149113953114,
- 0.02437366358935833,
- -0.05771014466881752,
- 0.07877899706363678,
- 0.031147200614213943,
- -0.0032402821816504,
- -0.022678054869174957,
- 0.11732980608940125,
- -0.007826067507266998,
- -0.04877917841076851,
- 0.025872090831398964,
- 0.03270190581679344,
- 0.004792104009538889,
- 0.012094286270439625,
- 0.053992245346307755,
- 0.014892811886966228,
- -0.06424449384212494,
- -0.012359291315078735,
- 0.037235382944345474,
- 0.031249800696969032,
- 0.0850028544664383,
- 0.02454403229057789,
- -0.11418747901916504,
- -0.012896599248051643,
- 0.03651236370205879,
- 0.01926092617213726,
- -0.03695106878876686,
- 0.009637987241148949,
- 0.06558342278003693,
- 0.025675132870674133,
- 0.0013834803830832243,
- 0.06646104156970978,
- 0.010477454401552677,
- -0.046027667820453644,
- 0.011887304484844208,
- 0.02973061054944992,
- 0.13523712754249573,
- 0.026287982240319252,
- 0.055211201310157776,
- 0.06338220834732056
- ]
- },
- {
- "keyword": "analysis",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.01832699589431286,
- 0.11740602552890778,
- -0.0138731449842453,
- 0.04020318016409874,
- 0.022395629435777664,
- 0.058522723615169525,
- 0.1270783394575119,
- 0.003958574030548334,
- 0.011878423392772675,
- -0.006315126549452543,
- 0.03214596211910248,
- 0.004199372138828039,
- 0.01603126712143421,
- 0.04113581404089928,
- -0.07781308144330978,
- -0.04805605858564377,
- -0.023069802671670914,
- -0.07091505080461502,
- -0.06528914719820023,
- -0.08721701055765152,
- -0.0810401663184166,
- -0.019077355042099953,
- 0.01549991499632597,
- 0.03606898710131645,
- -0.07002710551023483,
- 0.04450724273920059,
- -0.01789250783622265,
- 0.04492165148258209,
- 0.05599169805645943,
- -0.06254202872514725,
- 0.012359611690044403,
- 0.020014872774481773,
- 0.10803637653589249,
- -0.010599990375339985,
- -0.03999064862728119,
- 0.023707130923867226,
- 0.028614075854420662,
- 0.0444711297750473,
- 0.040492136031389236,
- 0.0013914810260757804,
- -0.10548827052116394,
- -0.06080292537808418,
- 0.020087702199816704,
- 0.008215713314712048,
- -0.014644395560026169,
- -0.03791012987494469,
- -0.027284815907478333,
- 0.0007867516251280904,
- -0.0408688522875309,
- 0.0010369679657742381,
- -0.0977955013513565,
- 0.03368333727121353,
- -0.04517471045255661,
- -0.07616443932056427,
- 0.02277824655175209,
- 0.01066044345498085,
- -0.04991019144654274,
- -0.06044629588723183,
- 0.02671470306813717,
- -0.032176174223423004,
- 0.10997523367404938,
- 0.013532997108995914,
- -0.025084691122174263,
- 0.0787721648812294,
- 0.1048058420419693,
- -0.028279565274715424,
- 0.039233896881341934,
- 0.040975552052259445,
- -0.035312775522470474,
- 0.04125206544995308,
- -0.02765066921710968,
- 0.00032235882827080786,
- -0.025532357394695282,
- 0.021173126995563507,
- 0.025940077379345894,
- -0.06235592067241669,
- -0.00914747267961502,
- 0.049668099731206894,
- 0.07384199649095535,
- -0.08741903305053711,
- 0.028877411037683487,
- -0.05244651436805725,
- -0.04156327620148659,
- 0.00521013094112277,
- 0.01922011189162731,
- 0.006556120701134205,
- 0.020560933277010918,
- -0.0587419830262661,
- -0.04969686269760132,
- 0.06374174356460571,
- 0.0087515814229846,
- 0.020324526354670525,
- 0.005293263588100672,
- 0.004485112149268389,
- 0.002317495411261916,
- -0.04491230100393295,
- -0.02648106776177883,
- -0.07565099745988846,
- 0.07660502940416336,
- 0.27501410245895386,
- -0.0198255255818367,
- 0.04567131772637367,
- -0.021505016833543777,
- 0.00022583786631003022,
- -0.07780744880437851,
- -0.0923105999827385,
- 0.023955654352903366,
- -0.04750121757388115,
- 0.05964807793498039,
- 0.07982742786407471,
- 0.02635587751865387,
- -0.03620769828557968,
- -0.012356295250356197,
- 0.058790795505046844,
- 0.08718918263912201,
- -0.07675324380397797,
- 0.01814373768866062,
- -0.004741135518997908,
- -0.023703686892986298,
- 0.0064409165643155575,
- 0.016736779361963272,
- -0.013839741237461567,
- -0.06338819861412048,
- 0.007339897565543652,
- 0.03119286522269249,
- -0.0619429349899292,
- 0.0008644909830763936,
- -5.114143926253846e-33,
- -0.07034921646118164,
- -0.13179701566696167,
- -0.03673974797129631,
- -0.0012148839887231588,
- -0.05590074509382248,
- -0.017170505598187447,
- -0.05189450457692146,
- -0.08344342559576035,
- -0.011422863230109215,
- 0.10460249334573746,
- -0.005688825622200966,
- 0.10822635889053345,
- -0.03274277225136757,
- -0.005048659630119801,
- 0.13763368129730225,
- 0.025039931759238243,
- 0.03202949836850166,
- 0.05547730252146721,
- -0.07671011984348297,
- -0.02229412831366062,
- -0.022793134674429893,
- -0.07490876317024231,
- 0.06414869427680969,
- 0.05652565509080887,
- 0.015843909233808517,
- -0.07275775820016861,
- 0.06379196792840958,
- -0.026941731572151184,
- -0.06372307240962982,
- 0.02065861225128174,
- 0.006777729373425245,
- 0.012245855294167995,
- -0.035830724984407425,
- 0.015666168183088303,
- 0.02047361247241497,
- 0.005756914149969816,
- 0.02754783071577549,
- 0.010827559046447277,
- 0.06788745522499084,
- 0.012857631780207157,
- -0.04285698011517525,
- -0.04138568043708801,
- -0.020822614431381226,
- -0.05211924389004707,
- 0.001274657784961164,
- 0.08160307258367538,
- 0.00518537312746048,
- 0.02132538892328739,
- 0.050907015800476074,
- 0.03918317332863808,
- -0.048343680799007416,
- -0.03081905096769333,
- -0.05961073935031891,
- 0.00784473679959774,
- 0.029092399403452873,
- 0.03852660581469536,
- -0.03449097275733948,
- 0.01826407015323639,
- 0.002117068273946643,
- 0.002179906005039811,
- 0.01901320181787014,
- 0.023189954459667206,
- -0.030252212658524513,
- -0.07897313684225082,
- -0.028739696368575096,
- -0.000618437014054507,
- -0.037990082055330276,
- -0.005959262605756521,
- 0.0414385050535202,
- -0.02660467103123665,
- -0.07766492664813995,
- -0.028377896174788475,
- 0.08188802748918533,
- 0.02912384644150734,
- -0.021662594750523567,
- 0.012905370444059372,
- -0.026093753054738045,
- 0.06217280402779579,
- -0.02790810354053974,
- 0.019490955397486687,
- -0.06544435024261475,
- -0.02243875525891781,
- 0.07224402576684952,
- -0.104030080139637,
- -0.010265649296343327,
- -0.042186543345451355,
- 0.021780572831630707,
- -0.053842902183532715,
- -0.025203362107276917,
- 0.028835223987698555,
- -0.12470199912786484,
- 0.0162220261991024,
- -0.007014697417616844,
- 0.040953733026981354,
- 0.012600839138031006,
- 2.3302131246907373e-33,
- -0.08411266654729843,
- 0.052920304238796234,
- -0.05479726567864418,
- 0.05177300423383713,
- 0.027367480099201202,
- 0.017982980236411095,
- 0.02515357919037342,
- -0.024543507024645805,
- 0.02379850298166275,
- 0.0755021870136261,
- 0.02648300863802433,
- -0.003474780824035406,
- 0.038929399102926254,
- -0.000683444959577173,
- -0.03625301644206047,
- -0.018110385164618492,
- 0.04303243011236191,
- -0.10443094372749329,
- -0.020457282662391663,
- 0.06248239055275917,
- -0.03641727939248085,
- -0.011569707654416561,
- 0.02859252132475376,
- -0.03281908854842186,
- -0.0678786188364029,
- 0.06596503406763077,
- 0.005567430052906275,
- -0.0381515808403492,
- -0.01599140837788582,
- -0.04770286753773689,
- 0.015422515571117401,
- -0.03234751522541046,
- -0.024742692708969116,
- 0.01851784996688366,
- -0.03746208921074867,
- 0.012814117595553398,
- 0.1265321969985962,
- 0.002714822068810463,
- 0.011868859641253948,
- 0.06950187683105469,
- 0.10817530751228333,
- 0.06303539127111435,
- 0.05556337162852287,
- 0.05402829498052597,
- 0.013684569858014584,
- -0.019244398921728134,
- 0.01681922934949398,
- 0.02374047040939331,
- -0.02699272334575653,
- 0.00481716962531209,
- -0.05637061223387718,
- 0.03890902176499367,
- 0.035518959164619446,
- -0.06113297864794731,
- -0.054091472178697586,
- -0.027238450944423676,
- 0.10577862709760666,
- -0.03849026560783386,
- -0.04684659466147423,
- 0.0500926673412323,
- -0.016854451969265938,
- 0.038722600787878036,
- -0.05022003501653671,
- 0.07391951233148575,
- 0.03023708611726761,
- -0.009524332359433174,
- -0.05428927019238472,
- -0.0473979115486145,
- 0.018148070201277733,
- 0.06099432706832886,
- 0.010147333145141602,
- 0.054720304906368256,
- -0.04955373331904411,
- 0.008686661720275879,
- -0.04572252184152603,
- -0.019489159807562828,
- -0.1094731017947197,
- -0.040120769292116165,
- 0.0389806292951107,
- 0.052862588316202164,
- -0.0627485066652298,
- 0.04482138156890869,
- 0.018453363329172134,
- 0.021658780053257942,
- -0.0783696249127388,
- 0.056025415658950806,
- 0.0032428817357867956,
- -0.01690165512263775,
- -0.04948039725422859,
- -0.024320196360349655,
- 0.009876859374344349,
- -0.0053789964877069,
- -0.08441729843616486,
- -0.07411830127239227,
- 0.04663683846592903,
- -1.3616014982176239e-8,
- -0.02132648602128029,
- -0.10482393205165863,
- 0.0739779993891716,
- 0.016988476738333702,
- 0.0702865943312645,
- -0.04171627759933472,
- -0.059622425585985184,
- 0.019506022334098816,
- -0.010283038020133972,
- 0.03204992413520813,
- 0.0677894651889801,
- 0.007017573807388544,
- -0.09600625187158585,
- 0.10114583373069763,
- -0.0008247536025010049,
- -0.007231035735458136,
- -0.03061039000749588,
- 0.013251678086817265,
- -0.06431837379932404,
- -0.04533854499459267,
- -0.013466949574649334,
- 0.029446233063936234,
- -0.019777623936533928,
- -0.010370814241468906,
- 0.046340737491846085,
- 0.006262656766921282,
- -0.10210491716861725,
- -0.01404983177781105,
- -0.07368109375238419,
- 0.0014444257831200957,
- 0.020938372239470482,
- 0.1001686379313469,
- 0.06890194863080978,
- -0.08779123425483704,
- 0.02606866881251335,
- -0.0262263435870409,
- 0.03662712872028351,
- 0.02471194975078106,
- -0.055832456797361374,
- 0.04232504591345787,
- -0.06690467894077301,
- 0.02341168001294136,
- 0.019191570580005646,
- -0.04469328001141548,
- -0.02964690700173378,
- -0.04609351605176926,
- -0.023059001192450523,
- 0.06466751545667648,
- 0.058864593505859375,
- 0.004956958349794149,
- 0.00336428452283144,
- 0.00199356721714139,
- 0.035848334431648254,
- 0.07392768561840057,
- 0.026150628924369812,
- 0.012160450220108032,
- 0.049038007855415344,
- 0.010977940633893013,
- -0.03764787316322327,
- 0.06959434598684311,
- 0.10830041021108627,
- 0.03787504509091377,
- 0.05616027116775513,
- -0.03695434704422951
- ]
- },
- {
- "keyword": "article",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0003348107566125691,
- 0.12085341662168503,
- 0.0152049008756876,
- 0.13802474737167358,
- -0.02570435404777527,
- 0.01410219632089138,
- 0.009491459466516972,
- 0.07398964464664459,
- -0.03456586226820946,
- 0.053860001266002655,
- 0.03950326144695282,
- 0.07261906564235687,
- -0.04632085934281349,
- 0.027106475085020065,
- -0.041549380868673325,
- 0.019392898306250572,
- -0.037161801010370255,
- 0.005898297298699617,
- -0.06958171725273132,
- 0.0171918086707592,
- -0.06620959937572479,
- 0.007912917993962765,
- 0.02298247069120407,
- 0.011444534175097942,
- -0.026688765734434128,
- 0.05450597032904625,
- -0.06391742080450058,
- -0.03913768753409386,
- 0.02112007513642311,
- -0.03629716858267784,
- -0.04222308471798897,
- 0.032566219568252563,
- 0.1083889752626419,
- 0.015880394726991653,
- -0.004054645542055368,
- -0.001753464573994279,
- -0.012202288024127483,
- -0.025770336389541626,
- 0.060669928789138794,
- 0.03432948514819145,
- 0.10811776667833328,
- -0.1121096983551979,
- -0.05496349558234215,
- -0.055136341601610184,
- -0.025749769061803818,
- 0.024878446012735367,
- -0.03943435475230217,
- 0.021666351705789566,
- -0.05577067658305168,
- 0.05120598152279854,
- -0.01118489820510149,
- 0.026096971705555916,
- -0.01243135891854763,
- -0.11084660142660141,
- 0.04439743608236313,
- 0.010474435985088348,
- -0.030129525810480118,
- 0.021000999957323074,
- -0.014197719283401966,
- -0.024357091635465622,
- 0.11613309383392334,
- 0.00822561327368021,
- -0.11394563317298889,
- 0.04719327762722969,
- 0.04320472478866577,
- 0.005710353143513203,
- 0.03981795161962509,
- -0.0889117643237114,
- -0.09788776189088821,
- -0.04460713639855385,
- 0.034974370151758194,
- -0.013754748739302158,
- -0.013334735296666622,
- 0.009074930101633072,
- 0.03865307942032814,
- -0.05997706577181816,
- 0.020924337208271027,
- -0.016554594039916992,
- 0.024772929027676582,
- -0.005917435046285391,
- 0.0241774320602417,
- 0.02195846289396286,
- -0.02396319806575775,
- -0.07908239960670471,
- 0.027612537145614624,
- -0.009383969940245152,
- 0.012164839543402195,
- -0.029293419793248177,
- -0.04323165863752365,
- 0.030386483296751976,
- -0.07328087836503983,
- -0.04829650744795799,
- 0.05160592496395111,
- 0.018801119178533554,
- 0.03338603675365448,
- 0.01053601410239935,
- 0.0014736755983904004,
- -0.009968118742108345,
- -0.02630789205431938,
- 0.22155466675758362,
- 0.054377973079681396,
- 0.04079468548297882,
- -0.005126446019858122,
- 0.02090979553759098,
- 0.01876949891448021,
- -0.07066041231155396,
- -0.0517437681555748,
- 0.05753616243600845,
- -0.060063719749450684,
- 0.01836380735039711,
- -0.0344039611518383,
- 0.07452887296676636,
- 0.011333907954394817,
- 0.0034077921882271767,
- 0.03325776383280754,
- 0.029011953622102737,
- 0.04887499287724495,
- -0.027325671166181564,
- 0.050260234624147415,
- -0.03194256126880646,
- -0.019134141504764557,
- -0.03178146481513977,
- -0.00706389918923378,
- 0.04622389003634453,
- -0.08599159121513367,
- -0.036837220191955566,
- -0.0317111574113369,
- -6.644454634716117e-33,
- 0.00011796827311627567,
- 0.03169881924986839,
- 0.026313528418540955,
- 0.055468734353780746,
- -0.03627760708332062,
- -0.017814181745052338,
- -0.003654801519587636,
- -0.11161434650421143,
- 0.0047919568605721,
- -0.05017906799912453,
- -0.03812790662050247,
- -0.003499816870316863,
- -0.025045519694685936,
- 0.0001473481534048915,
- 0.10540306568145752,
- 0.01459748949855566,
- -0.09938494861125946,
- 0.0868866890668869,
- -0.03819922357797623,
- -0.09048241376876831,
- 0.08450128883123398,
- -0.005165173672139645,
- -0.02764742262661457,
- 0.05365830287337303,
- -0.046059753745794296,
- 0.015697039663791656,
- -0.008877255022525787,
- -0.04450782760977745,
- -0.06001703068614006,
- 0.018444176763296127,
- -0.03538094833493233,
- 0.04171564429998398,
- -0.005603889934718609,
- -0.06348917633295059,
- -0.008704842068254948,
- 0.043790336698293686,
- 0.07906223833560944,
- 0.00624760752543807,
- 0.00018659666238818318,
- -0.012338686734437943,
- -0.07400313764810562,
- -0.0207783505320549,
- -0.023363163694739342,
- -0.03287462890148163,
- 0.034735944122076035,
- 0.06464069336652756,
- 0.03972373902797699,
- -0.05867839977145195,
- 0.011721542105078697,
- -0.06537019461393356,
- 0.019243299961090088,
- -0.0014550290070474148,
- -0.08577695488929749,
- -0.06284182518720627,
- 0.09280036389827728,
- 0.07558183372020721,
- 0.018821116536855698,
- 0.02753579430282116,
- -0.002705095335841179,
- 0.026861021295189857,
- 0.11595924198627472,
- 0.09224662184715271,
- -0.09580353647470474,
- 0.11215248703956604,
- -0.011717058718204498,
- 0.023765236139297485,
- -0.027011193335056305,
- 0.015418694354593754,
- 0.03497990965843201,
- -0.026014763861894608,
- -0.009387928061187267,
- -0.058703187853097916,
- 0.05283563211560249,
- 0.0005608866922557354,
- -0.09376613050699234,
- 0.013073730282485485,
- 0.0005224563064984977,
- -0.027234017848968506,
- -0.07761769741773605,
- -0.02714938297867775,
- 0.02671593800187111,
- -0.015424288809299469,
- -0.003651538398116827,
- -0.027314186096191406,
- -0.017413021996617317,
- -0.02847984991967678,
- 0.005329391919076443,
- -0.06252587586641312,
- 0.04443371295928955,
- -0.01277805957943201,
- 0.04100552946329117,
- 0.08265190571546555,
- -0.006865282077342272,
- 0.07517827302217484,
- -0.015556641854345798,
- 3.7825747823690676e-33,
- -0.08558407425880432,
- -0.04367373511195183,
- 0.01188211515545845,
- 0.062156081199645996,
- 0.03944429010152817,
- -0.02820366434752941,
- -0.0078022535890340805,
- 0.06905369460582733,
- -0.009165916591882706,
- 0.058832552284002304,
- -0.011905454099178314,
- -0.11094176024198532,
- 0.025087693706154823,
- 0.11735223233699799,
- 0.04324360191822052,
- 0.02502538077533245,
- 0.09694384783506393,
- -0.06423261761665344,
- -0.07105015963315964,
- 0.08854925632476807,
- -0.014839034527540207,
- -0.04322345554828644,
- 0.00735523970797658,
- 0.02762497216463089,
- -0.010580351576209068,
- -0.007111174985766411,
- 0.07325229793787003,
- 0.0656960979104042,
- -0.04914565756917,
- -0.010075990110635757,
- -0.0019211082253605127,
- -0.06357303261756897,
- -0.0856926366686821,
- -0.03633392974734306,
- 0.0255559254437685,
- 0.09192578494548798,
- 0.03783654049038887,
- 0.05457480624318123,
- -0.03353160619735718,
- 0.02724354900419712,
- 0.10650623589754105,
- -0.06376150995492935,
- -0.05118003487586975,
- 0.04566837474703789,
- -0.046755872666835785,
- 0.04264466091990471,
- 0.04664146527647972,
- 0.004837144631892443,
- 0.040599796921014786,
- -0.0033291014842689037,
- -0.03859340399503708,
- 0.00108095514588058,
- -0.011312227696180344,
- -0.021222015842795372,
- -0.10738234221935272,
- 0.0038656725082546473,
- -0.0523613840341568,
- -0.0618433840572834,
- 0.02759379893541336,
- 0.023082377389073372,
- -0.011344468221068382,
- 0.07637494057416916,
- -0.13021498918533325,
- 0.03419877588748932,
- -0.027954116463661194,
- -0.021820684894919395,
- -0.08738617599010468,
- -0.041025616228580475,
- 0.06758259981870651,
- 0.008714213036000729,
- 0.04418957605957985,
- 0.05507497861981392,
- -0.037724819034338,
- 0.005714550614356995,
- -0.0018822207348421216,
- -0.0012262517120689154,
- -0.0910947248339653,
- 0.0825299322605133,
- -0.04061371460556984,
- -0.04389786347746849,
- -0.02125995047390461,
- -0.021904369816184044,
- -0.038689229637384415,
- 0.023327883332967758,
- 0.011400004848837852,
- -0.04014653339982033,
- 0.04059126600623131,
- -0.08854620903730392,
- -0.09275609999895096,
- 0.0007704508607275784,
- -0.006038004532456398,
- -0.07296466082334518,
- -0.06077801063656807,
- 0.058695316314697266,
- 0.007025425788015127,
- -1.4471695841677956e-8,
- -0.0028578999917954206,
- -0.012678871862590313,
- -0.029038602486252785,
- -0.03379737585783005,
- 0.04443196952342987,
- 0.05702017620205879,
- 0.0019532025326043367,
- -0.08400201052427292,
- 0.025745339691638947,
- 0.11493197083473206,
- -0.041810013353824615,
- 0.031876590102910995,
- 0.036643628031015396,
- 0.08768034726381302,
- 0.029731204733252525,
- -0.030567774549126625,
- -0.01716242916882038,
- 0.0684393048286438,
- 0.004350407049059868,
- -0.008324888534843922,
- 0.040679849684238434,
- 0.03163723275065422,
- 0.007126334588974714,
- -0.05830717086791992,
- 0.03723229840397835,
- 0.037698663771152496,
- -0.040026403963565826,
- -0.05671384558081627,
- -0.007294200360774994,
- 0.012730556540191174,
- -0.07891059666872025,
- 0.0762229785323143,
- -0.050487540662288666,
- -0.008729708380997181,
- 0.036796316504478455,
- 0.026928862556815147,
- 0.06309948116540909,
- -0.02757197991013527,
- -0.03150194138288498,
- -0.05472929775714874,
- 0.019694339483976364,
- -0.02057761326432228,
- -0.005338079761713743,
- -0.015697870403528214,
- -0.01742750033736229,
- 0.03920816630125046,
- -0.04653768986463547,
- -0.02313581109046936,
- 0.04554140195250511,
- 0.030216971412301064,
- 0.016190001741051674,
- -0.05452541634440422,
- 0.09393838047981262,
- 0.011061345227062702,
- 0.04304380714893341,
- -0.02143041603267193,
- 0.03998110070824623,
- -0.04061661288142204,
- 0.0005544988089241087,
- -0.03546982258558273,
- 0.10738972574472427,
- 0.03902285546064377,
- 0.1399674117565155,
- 0.032747939229011536
- ]
- },
- {
- "keyword": "essay",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04078557342290878,
- 0.09351449459791183,
- 0.011028977110981941,
- 0.015644073486328125,
- 0.005385665688663721,
- 0.040669869631528854,
- 0.05999373272061348,
- -0.012133601121604443,
- -0.02030409500002861,
- 0.029532190412282944,
- -0.009284152649343014,
- 0.046766627579927444,
- -0.027454236522316933,
- 0.004869697615504265,
- -0.015939868986606598,
- 0.010759084485471249,
- 0.015757326036691666,
- -0.06322149187326431,
- -0.10192973911762238,
- 0.0141463503241539,
- 0.0002521822170820087,
- 0.028138719499111176,
- -0.007548947352916002,
- 0.030872132629156113,
- -0.05033780261874199,
- 0.11681042611598969,
- -0.006112599745392799,
- -0.02100907824933529,
- -0.03153945505619049,
- -0.025197211652994156,
- -0.05418903008103371,
- 0.03957502171397209,
- 0.04724080115556717,
- 0.01997583918273449,
- 0.025396429002285004,
- 0.03153102472424507,
- 0.0076708607375621796,
- 0.038587458431720734,
- 0.019931891933083534,
- -0.008218896575272083,
- -0.036972206085920334,
- -0.08452440798282623,
- 0.007968060672283173,
- -0.03856956958770752,
- -0.0010126102715730667,
- -0.051498979330062866,
- 0.010882710106670856,
- -0.0708882063627243,
- -0.048431962728500366,
- 0.042568475008010864,
- -0.02450738660991192,
- 0.02565009519457817,
- -0.13610297441482544,
- -0.07590344548225403,
- -0.0011784379603341222,
- 0.0007653474458493292,
- 0.009812189266085625,
- 0.05214976519346237,
- -0.034014176577329636,
- -0.04379034414887428,
- 0.046715352684259415,
- -0.010302655398845673,
- -0.06646326929330826,
- 0.10237213969230652,
- 0.12436091154813766,
- -0.012082772329449654,
- 0.03809328004717827,
- 0.02073468267917633,
- -0.08929778635501862,
- 0.04215313121676445,
- -0.023769112303853035,
- 0.06991661339998245,
- 0.04118405282497406,
- 0.03579181432723999,
- 0.005550313740968704,
- -0.09362819045782089,
- 0.019618306308984756,
- -0.05205787345767021,
- 0.0753915086388588,
- -0.047321807593107224,
- -0.017294302582740784,
- 0.03137525916099548,
- -0.030869117006659508,
- 0.04005930945277214,
- 0.017151957377791405,
- -0.021553659811615944,
- 0.01934029906988144,
- -0.06639491021633148,
- -0.018670061603188515,
- 0.03905961662530899,
- 0.028661835938692093,
- -0.10275285691022873,
- 0.031123504042625427,
- 0.019487785175442696,
- -0.01880488730967045,
- 0.0149200689047575,
- -0.06260604411363602,
- -0.06994438171386719,
- -0.020244091749191284,
- 0.2362448275089264,
- 0.032703518867492676,
- -0.0005679138703271747,
- -0.049074653536081314,
- 0.09120123088359833,
- 0.0014779784251004457,
- -0.05740020051598549,
- -0.07328440248966217,
- -0.018712438642978668,
- -0.04089764133095741,
- 0.030137034133076668,
- -0.03802488371729851,
- -0.010958465747535229,
- -0.026510626077651978,
- 0.042393408715724945,
- 0.10611137002706528,
- 0.02742224745452404,
- 0.06139492243528366,
- -0.01828683540225029,
- -0.0008350670104846358,
- -0.0036293473094701767,
- 0.019641028717160225,
- -0.02388465777039528,
- -0.024569515138864517,
- -0.04012840613722801,
- -0.14818686246871948,
- -0.08735942095518112,
- -0.01238186750560999,
- -4.639137312004114e-33,
- -0.002576261991634965,
- -0.010079733096063137,
- -0.03823474422097206,
- 0.08908743411302567,
- -0.04355849325656891,
- -0.033055536448955536,
- 0.015686137601733208,
- 0.043589796870946884,
- -0.01598564349114895,
- -0.0015409718034788966,
- 0.02424740418791771,
- -0.042259011417627335,
- 0.036402519792318344,
- -0.0170708280056715,
- 0.025361763313412666,
- 0.020628158003091812,
- -0.0850641131401062,
- 0.04175001382827759,
- -0.0029724810738116503,
- 0.006695915944874287,
- 0.030952809378504753,
- 0.04269607737660408,
- 0.02062026783823967,
- -0.038982268422842026,
- -0.049164462834596634,
- -0.01975059136748314,
- -0.029776204377412796,
- -0.11533177644014359,
- -0.07851161062717438,
- 0.018493518233299255,
- 0.05692572146654129,
- 0.05160241201519966,
- -0.03517496585845947,
- -0.04645915329456329,
- 0.004117810167372227,
- 0.02202754281461239,
- 0.01380571722984314,
- -0.061865899711847305,
- 0.059278201311826706,
- -0.030189454555511475,
- -0.026277657598257065,
- -0.036359094083309174,
- 0.036985788494348526,
- -0.10017427802085876,
- 0.0841325968503952,
- 0.08171870559453964,
- 0.03590882942080498,
- 0.03708215802907944,
- 0.03742717579007149,
- -0.0032966164872050285,
- 0.03800409287214279,
- -0.023403935134410858,
- 0.013999930582940578,
- -0.07977157831192017,
- 0.04187581315636635,
- 0.03995188698172569,
- 0.005135551560670137,
- 0.03726385161280632,
- 0.013393489643931389,
- -0.049387525767087936,
- 0.0743078738451004,
- 0.05468035861849785,
- -0.07520602643489838,
- 0.05101983621716499,
- -0.04574863612651825,
- -0.035469964146614075,
- -0.04338664934039116,
- -0.035744599997997284,
- 0.0700966864824295,
- -0.02778797037899494,
- -0.06171567365527153,
- -0.03424270823597908,
- -0.04635990783572197,
- 0.00873001478612423,
- -0.008143655024468899,
- 0.009543322958052158,
- -0.008618555031716824,
- -0.04651712253689766,
- -0.09389224648475647,
- -0.03618243709206581,
- -0.0616326741874218,
- -0.045306842774152756,
- -0.01327800564467907,
- -0.06363296508789062,
- -0.03046509437263012,
- 0.005606141872704029,
- 0.06391413509845734,
- -0.0725230947136879,
- 0.08362915366888046,
- 0.021151302382349968,
- -0.028998447582125664,
- -0.017541734501719475,
- -0.019921349361538887,
- 0.0006344934809021652,
- 0.018839320167899132,
- 2.239109373766133e-33,
- -0.0025017489679157734,
- -0.051080938428640366,
- -0.03206313028931618,
- 0.0707322210073471,
- 0.08412768691778183,
- 0.027386710047721863,
- 0.019040431827306747,
- 0.013358557596802711,
- 0.057552970945835114,
- 0.09261927008628845,
- -0.06771350651979446,
- -0.0006601080531254411,
- 0.03338843584060669,
- 0.10596868395805359,
- 0.045038431882858276,
- 0.027187058702111244,
- 0.06941696256399155,
- -0.005048432853072882,
- -0.04537538066506386,
- 0.017926864326000214,
- -0.09116174280643463,
- 0.002090712310746312,
- 0.01891769841313362,
- -0.0787150114774704,
- 0.03816252574324608,
- 0.02037283405661583,
- 0.07691817730665207,
- -0.008154435083270073,
- -0.01852661371231079,
- -0.10631680488586426,
- 0.03295036405324936,
- 0.014983514323830605,
- -0.06732351332902908,
- 0.0037877708673477173,
- 0.007219776976853609,
- 0.1372363269329071,
- 0.09421733021736145,
- 0.004933635238558054,
- -0.04557419568300247,
- 0.014188713394105434,
- 0.06953199207782745,
- 0.022183895111083984,
- 0.0011364795500412583,
- 0.09400629252195358,
- -0.009502161294221878,
- 0.02785256691277027,
- 0.012899684719741344,
- -0.0021243994124233723,
- 0.044529855251312256,
- 0.06666949391365051,
- -0.04623432084918022,
- 0.023345353081822395,
- 0.05023929476737976,
- -0.03867117315530777,
- -0.04051746428012848,
- -0.006194407120347023,
- 0.06766285747289658,
- -0.0810186117887497,
- -0.044705137610435486,
- 0.01774030737578869,
- 0.029450805857777596,
- 0.030080115422606468,
- -0.09463600814342499,
- 0.07706054300069809,
- 0.0907139852643013,
- -0.07968880981206894,
- -0.060914069414138794,
- -0.03110281378030777,
- -0.01398713979870081,
- 0.013111486099660397,
- 0.010866987518966198,
- -0.005032001994550228,
- -0.012075980193912983,
- 0.032880883663892746,
- -0.0002970375644508749,
- -0.025226065889000893,
- -0.045294858515262604,
- 0.0028018050361424685,
- -0.030286014080047607,
- -0.09586970508098602,
- -0.042869701981544495,
- -0.03238319978117943,
- 0.016541680321097374,
- -0.0043295337818562984,
- -0.006491980515420437,
- 0.011169024743139744,
- 0.06667578220367432,
- 0.013996399007737637,
- 0.0248869638890028,
- -0.001636797096580267,
- -0.03510231897234917,
- -0.011717659421265125,
- 0.030086012557148933,
- -0.07515530288219452,
- -0.02994115836918354,
- -1.3733933101889306e-8,
- -0.004640394356101751,
- -0.010195036418735981,
- 0.05030790716409683,
- 0.015040268190205097,
- -0.027124494314193726,
- 0.052677784115076065,
- 0.014498370699584484,
- -0.020817872136831284,
- -0.005404536612331867,
- 0.07823310047388077,
- -0.05379066988825798,
- 0.015118020586669445,
- -0.017785144969820976,
- 0.0444827601313591,
- 0.03354200720787048,
- -0.0527457594871521,
- 0.013209730386734009,
- -0.04634270817041397,
- -0.059153664857149124,
- -0.012394006364047527,
- 0.11227956414222717,
- 0.04570833966135979,
- -0.06406186521053314,
- -0.015815947204828262,
- -0.0239502415060997,
- 0.06071434170007706,
- 0.03989742323756218,
- -0.051858216524124146,
- 0.006433689035475254,
- 0.010078776627779007,
- -0.022879084572196007,
- 0.05996796488761902,
- -0.0417187437415123,
- -0.10868749022483826,
- -0.003609311766922474,
- 0.059791211038827896,
- 0.1252461075782776,
- -0.04281776398420334,
- 0.006147758103907108,
- -0.09095195680856705,
- -0.023304196074604988,
- -0.021791595965623856,
- 0.07360435277223587,
- -0.04963342100381851,
- 0.09360533207654953,
- 0.023198656737804413,
- -0.13511128723621368,
- 0.0169399231672287,
- 0.0004937159828841686,
- 0.004841796588152647,
- -0.043501049280166626,
- -0.00764509430155158,
- 0.058970626443624496,
- -0.004305622074753046,
- -0.002683444181457162,
- -0.04091396927833557,
- 0.026067595928907394,
- 0.012828790582716465,
- -0.04569382220506668,
- 0.002958811353892088,
- 0.17748868465423584,
- 0.12719900906085968,
- 0.05373222753405571,
- -0.04353681206703186
- ]
- },
- {
- "keyword": "paper",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.10475058853626251,
- 0.08498057723045349,
- -0.02349930629134178,
- 0.05786990374326706,
- -0.02182244509458542,
- -0.014308877289295197,
- 0.05914178118109703,
- -0.011724364012479782,
- -0.0074050044640898705,
- -0.002417844021692872,
- 0.07569752633571625,
- 0.07447218894958496,
- -0.005288311280310154,
- 0.0277058444917202,
- -0.05391672998666763,
- -0.05089253559708595,
- -0.04319712892174721,
- 0.005243403371423483,
- -0.05632602423429489,
- 0.039875149726867676,
- -0.003977647516876459,
- 0.05560890585184097,
- -0.0029167341999709606,
- 0.013804655522108078,
- 0.011458897963166237,
- 0.07741336524486542,
- -0.06474868953227997,
- -0.07275374978780746,
- 0.018667973577976227,
- -0.0729602575302124,
- 0.0667317733168602,
- -0.0019362644525244832,
- 0.0346793569624424,
- 0.015412597917020321,
- 0.06499724835157394,
- -0.007616064045578241,
- 0.009928666055202484,
- -0.05340910702943802,
- 0.08217127621173859,
- -0.03840401768684387,
- 0.01679486408829689,
- -0.11916376650333405,
- -0.013362964615225792,
- -0.007581649348139763,
- 0.01593475602567196,
- -0.03869122266769409,
- -0.043541766703128815,
- 0.05366851016879082,
- -0.03403842821717262,
- -0.006233816966414452,
- -0.024221021682024002,
- -0.029206695035099983,
- -0.07687254995107651,
- -0.015323419123888016,
- 0.06405714899301529,
- -0.05848906561732292,
- -0.012763495557010174,
- 0.03073631413280964,
- -0.026445480063557625,
- -0.0332932211458683,
- 0.03081820346415043,
- 0.03936348110437393,
- -0.13728030025959015,
- 0.015200680121779442,
- 0.022050878033041954,
- 0.04948372393846512,
- -0.052325066179037094,
- 0.0695430338382721,
- -0.03371276333928108,
- 0.01644187606871128,
- 0.021403497084975243,
- 0.08388462662696838,
- 0.046824656426906586,
- -0.009793208912014961,
- 0.06732143461704254,
- -0.1160481870174408,
- 0.02352677844464779,
- -0.0880245640873909,
- 0.04531123489141464,
- -0.0045034377835690975,
- 0.012226738035678864,
- -0.035124022513628006,
- -0.003824142972007394,
- 0.1103375181555748,
- 0.009358123876154423,
- -0.030405351892113686,
- 0.005229549948126078,
- -0.023157266899943352,
- -0.04652073234319687,
- 0.033662792295217514,
- -0.019621945917606354,
- 0.0006608203402720392,
- -0.01900344341993332,
- -0.00760482344776392,
- -0.11790554970502853,
- 0.022009514272212982,
- -0.056595828384160995,
- -0.05428606644272804,
- 0.027876855805516243,
- 0.2688436806201935,
- 0.04555724561214447,
- 0.04311733320355415,
- 0.06755519658327103,
- -0.0384354293346405,
- 0.019100818783044815,
- -0.05780648812651634,
- -0.06197217106819153,
- -0.018183201551437378,
- 0.031547531485557556,
- -0.003181065432727337,
- -0.006582530681043863,
- 0.021106475964188576,
- -0.08755757659673691,
- 0.057196296751499176,
- -0.0009521160391159356,
- -0.015858396887779236,
- 0.04396795108914375,
- -0.042739737778902054,
- 0.0056259832344949245,
- -0.059133365750312805,
- 0.005462991539388895,
- 0.04376403987407684,
- -0.06043350696563721,
- -0.04566212370991707,
- -0.10293296724557877,
- -0.0469406358897686,
- -0.024249892681837082,
- -5.068288258970253e-33,
- 0.02539234235882759,
- 0.044186074286699295,
- 0.010952952317893505,
- 0.10147959738969803,
- -0.0034351390786468983,
- 0.05786552280187607,
- -0.016272686421871185,
- -0.053707219660282135,
- -0.009377245791256428,
- 0.01588899828493595,
- -0.021982930600643158,
- 0.022027453407645226,
- 0.011473006568849087,
- 0.10291897505521774,
- 0.11211778223514557,
- 0.03482406958937645,
- -0.08143053948879242,
- 0.03449533134698868,
- -0.024478795006871223,
- 0.03922290354967117,
- -0.009714899584650993,
- -0.03323395177721977,
- 0.0431855209171772,
- 0.04901449754834175,
- 0.029640881344676018,
- 0.042354241013526917,
- -0.0491957925260067,
- -0.09558655321598053,
- 0.009231924079358578,
- 0.024385768920183182,
- 0.022541562095284462,
- 0.020119814202189445,
- 0.019343499094247818,
- -0.0487922839820385,
- -0.07222484797239304,
- 0.04565189778804779,
- -0.01512071117758751,
- -0.07620134204626083,
- -0.010388786904513836,
- -0.0056808884255588055,
- -0.033637478947639465,
- 0.008218317292630672,
- 0.026830345392227173,
- -0.011652936227619648,
- 0.05214298143982887,
- 0.04329043999314308,
- 0.04507162794470787,
- 0.07204835116863251,
- 0.046004947274923325,
- 0.03270581737160683,
- 0.027144338935613632,
- -0.024032793939113617,
- -0.08652699738740921,
- -0.04666518419981003,
- -0.009947468526661396,
- -0.029621819034218788,
- 0.05071830376982689,
- -0.0037294146604835987,
- 0.005735097452998161,
- -0.004190540872514248,
- 0.09686318784952164,
- 0.08154591172933578,
- -0.024579431861639023,
- 0.06633841246366501,
- -0.034316133707761765,
- 0.029233328998088837,
- -0.059860486537218094,
- 0.013971022330224514,
- 0.0350421778857708,
- -0.08513983339071274,
- -0.06467673182487488,
- -0.05438970774412155,
- -0.004906928166747093,
- -0.04418151080608368,
- -0.005580626428127289,
- -0.003932981286197901,
- 0.02980065904557705,
- -0.04956962540745735,
- -0.04852236434817314,
- -0.05201023072004318,
- -0.05711405351758003,
- -0.034623339772224426,
- -0.054915402084589005,
- -0.0606529600918293,
- -0.02522200532257557,
- -0.0024003193248063326,
- 0.018491769209504128,
- -0.0029923878610134125,
- -0.012473649345338345,
- -0.008111031726002693,
- -0.050179481506347656,
- 0.023338688537478447,
- 0.10039792954921722,
- -0.010223508812487125,
- -0.016185401007533073,
- 2.5706781265666985e-33,
- -0.055999305099248886,
- -0.05098823085427284,
- -0.01664329320192337,
- 0.11857790499925613,
- 0.03225964307785034,
- -0.0139914620667696,
- 0.04764476418495178,
- -0.002427874132990837,
- 0.055617235600948334,
- 0.09145832061767578,
- -0.03518655151128769,
- -0.06799489259719849,
- 0.07875881344079971,
- 0.07429274171590805,
- 0.05812699720263481,
- -0.009522399865090847,
- -0.011660387739539146,
- 0.05032931640744209,
- 0.00006515722634503618,
- 0.0024675338063389063,
- -0.03900233283638954,
- -0.011599352583289146,
- 0.0716649666428566,
- 0.09242645651102066,
- 0.009191677905619144,
- 0.028030849993228912,
- 0.03839097544550896,
- -0.07281231135129929,
- -0.010873645544052124,
- 0.03308871015906334,
- -0.07482519000768661,
- -0.11398173868656158,
- -0.03225324675440788,
- 0.04919510334730148,
- 0.00341499550268054,
- 0.11012526601552963,
- 0.07675471901893616,
- -0.010214078240096569,
- -0.02766384929418564,
- 0.00031294795917347074,
- 0.04628590866923332,
- 0.007566775660961866,
- 0.03501419350504875,
- 0.12535487115383148,
- -0.08711571991443634,
- 0.01333196647465229,
- -0.016655635088682175,
- 0.026319902390241623,
- 0.013353790156543255,
- 0.03937998041510582,
- -0.0025914886500686407,
- -0.010156086646020412,
- 0.0577254481613636,
- -0.06316781789064407,
- -0.09355834126472473,
- 0.1030031219124794,
- -0.08011061698198318,
- -0.04568108916282654,
- -0.026626478880643845,
- 0.06729397922754288,
- -0.026672707870602608,
- 0.028946397826075554,
- -0.07350211590528488,
- 0.08152014017105103,
- -0.02822478488087654,
- -0.07425449043512344,
- -0.052676569670438766,
- -0.03301066532731056,
- -0.06385905295610428,
- 0.04819832369685173,
- 0.03046652488410473,
- 0.1021072044968605,
- -0.017008133232593536,
- -0.022157616913318634,
- 0.007262048777192831,
- 0.018395455554127693,
- -0.09130363911390305,
- 0.027280818670988083,
- -0.03690466657280922,
- -0.06833560764789581,
- -0.03786333650350571,
- 0.015900395810604095,
- -0.02606612630188465,
- 0.005547745153307915,
- -0.005707938689738512,
- -0.02271152101457119,
- 0.00038049599970690906,
- -0.05186574161052704,
- -0.04312701150774956,
- -0.053787942975759506,
- 0.03215731307864189,
- 0.046501342207193375,
- 0.0960051417350769,
- -0.0008449412998743355,
- -0.033097293227910995,
- -1.3247908547953102e-8,
- -0.0892823114991188,
- -0.029972558841109276,
- 0.056827232241630554,
- -0.11441729217767715,
- 0.03296244516968727,
- 0.05740928277373314,
- 0.0956585481762886,
- -0.03418310359120369,
- -0.006908738985657692,
- 0.003421580186113715,
- 0.047821760177612305,
- -0.02546311728656292,
- -0.06957826018333435,
- 0.0022769197821617126,
- 0.03873511403799057,
- -0.05939095839858055,
- 0.013815648853778839,
- -0.026563188061118126,
- -0.05793030187487602,
- -0.012182040140032768,
- -0.04079531505703926,
- -0.040549833327531815,
- 0.012732142582535744,
- 0.010502373799681664,
- -0.004574430175125599,
- -0.018226316198706627,
- 0.057625964283943176,
- 0.08019540458917618,
- 0.028697341680526733,
- 0.0481574572622776,
- -0.03107086569070816,
- 0.06690172851085663,
- 0.007008433807641268,
- 0.022649774327874184,
- 0.03038434498012066,
- -0.02190255932509899,
- 0.11352142691612244,
- -0.015526172704994678,
- -0.03304743766784668,
- 0.05228828638792038,
- -0.05938531830906868,
- -0.025300171226263046,
- -0.02949206717312336,
- -0.04405474290251732,
- 0.06791078299283981,
- -0.010954739525914192,
- 0.001654443796724081,
- -0.006615997292101383,
- -0.03913557156920433,
- -0.0026046200655400753,
- 0.0010116719640791416,
- -0.05386168509721756,
- 0.0904412642121315,
- 0.04745246842503548,
- 0.04442474991083145,
- -0.005119975656270981,
- -0.0064523471519351006,
- 0.048025332391262054,
- 0.021687207743525505,
- 0.040870100259780884,
- 0.06760857999324799,
- 0.0037263601552695036,
- 0.0488814041018486,
- 0.045360367745161057
- ]
- },
- {
- "keyword": "publication",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03158511966466904,
- 0.09475996345281601,
- -0.050145067274570465,
- 0.08678802847862244,
- -0.04374800994992256,
- 0.00837536621838808,
- 0.009610609151422977,
- 0.029456084594130516,
- -0.026938527822494507,
- 0.09150556474924088,
- 0.06353963166475296,
- 0.05922585353255272,
- 0.047956060618162155,
- 0.00047970947343856096,
- -0.03779590502381325,
- 0.004692702554166317,
- 0.018381260335445404,
- 0.006204552482813597,
- -0.011710531078279018,
- 0.025874057784676552,
- -0.09352215379476547,
- 0.06045979633927345,
- 0.06396540254354477,
- 0.020770318806171417,
- -0.01483106054365635,
- -0.0036824513226747513,
- -0.04219306632876396,
- -0.07382547855377197,
- 0.010127426125109196,
- -0.06459736824035645,
- 0.014072651043534279,
- 0.030371766537427902,
- -0.013503743335604668,
- -0.028918787837028503,
- 0.06078839302062988,
- 0.04872581735253334,
- 0.0457911416888237,
- 0.02093254029750824,
- 0.04271490126848221,
- -0.02432655729353428,
- 0.0573565810918808,
- -0.12114706635475159,
- -0.04551122710108757,
- -0.03779873251914978,
- -0.022742019966244698,
- -0.00667814165353775,
- 0.005182554479688406,
- 0.0655222088098526,
- -0.053264521062374115,
- 0.0816953256726265,
- -0.039822448045015335,
- -0.059965163469314575,
- -0.017768757417798042,
- -0.027641573920845985,
- 0.029829824343323708,
- -0.008550001308321953,
- -0.026383016258478165,
- 0.03537357226014137,
- -0.010722233913838863,
- -0.06203162670135498,
- 0.07560258358716965,
- 0.032515015453100204,
- -0.1492527574300766,
- 0.05374012142419815,
- 0.10637728869915009,
- 0.050225112587213516,
- 0.01571788266301155,
- -0.020238708704710007,
- -0.06098596751689911,
- 0.008894715458154678,
- 0.05567532032728195,
- 0.012636587023735046,
- -0.013767577707767487,
- 0.04141439497470856,
- 0.0164798516780138,
- -0.08687724173069,
- -0.023828428238630295,
- -0.015624304302036762,
- 0.12072210758924484,
- -0.028239656239748,
- 0.0885649099946022,
- -0.04741659760475159,
- -0.027105169370770454,
- 0.03711172565817833,
- -0.05673184245824814,
- -0.05785718932747841,
- 0.07324269413948059,
- 0.026375239714980125,
- -0.024584824219346046,
- -0.00436552707105875,
- 0.005010209511965513,
- -0.0002455150242894888,
- 0.05295516550540924,
- -0.04100755602121353,
- -0.13560450077056885,
- -0.036263950169086456,
- -0.03939007595181465,
- -0.057118453085422516,
- 0.0492391362786293,
- 0.2544876039028168,
- -0.009885515086352825,
- 0.034181300550699234,
- 0.016615411266684532,
- -0.017876140773296356,
- 0.00864012073725462,
- -0.0656237080693245,
- -0.04984002187848091,
- -0.03248107060790062,
- -0.01593860797584057,
- 0.024026744067668915,
- 0.00036627502413466573,
- 0.04039718210697174,
- -0.04890238121151924,
- 0.05527792125940323,
- 0.09436402469873428,
- 0.035601794719696045,
- -0.02022656798362732,
- 0.039595991373062134,
- 0.050203971564769745,
- -0.06574887782335281,
- -0.03939110413193703,
- 0.031856782734394073,
- -0.03868982195854187,
- -0.04167798161506653,
- -0.06992344558238983,
- -0.08788857609033585,
- -0.0004947633133269846,
- -6.208089091171806e-33,
- 0.03334963694214821,
- 0.002668790053576231,
- 0.031189072877168655,
- 0.0929209440946579,
- 0.06974226236343384,
- 0.03640378266572952,
- 0.0038654012605547905,
- -0.10161378979682922,
- -0.02881011553108692,
- -0.041137389838695526,
- 0.03036772832274437,
- 0.09980541467666626,
- 0.005247918423265219,
- 0.06761528551578522,
- -0.021574119105935097,
- 0.023312276229262352,
- -0.013031023554503918,
- 0.09007672965526581,
- -0.0009541906183585525,
- -0.006199279334396124,
- -0.040114399045705795,
- -0.0831209346652031,
- 0.014076760970056057,
- 0.04818692058324814,
- -0.02219233475625515,
- 0.025632867589592934,
- -0.03913569450378418,
- -0.03625553101301193,
- -0.03574614226818085,
- 0.022427676245570183,
- 0.049525920301675797,
- 0.02196798473596573,
- 0.017716404050588608,
- -0.08850593119859695,
- -0.007853368297219276,
- -0.016890984028577805,
- 0.04648298770189285,
- -0.0679173618555069,
- 0.015849504619836807,
- 0.00966326892375946,
- 0.01578046754002571,
- -0.006921349558979273,
- 0.016978317871689796,
- 0.007774429861456156,
- 0.06635314971208572,
- 0.08768390864133835,
- 0.022525640204548836,
- -0.01112323347479105,
- 0.0718209519982338,
- 0.017412353307008743,
- 0.033343423157930374,
- 0.01557869277894497,
- -0.0763569176197052,
- -0.05855264514684677,
- 0.0263358261436224,
- -0.0027861136477440596,
- -0.05747124180197716,
- -0.051363736391067505,
- -0.01709299348294735,
- 0.017122847959399223,
- 0.09042888879776001,
- 0.10506037622690201,
- -0.10482776165008545,
- 0.06483606994152069,
- 0.019459344446659088,
- 0.05252984166145325,
- -0.08100532740354538,
- -0.08267811685800552,
- 0.049567144364118576,
- -0.04876720905303955,
- -0.05186847597360611,
- 0.005691200960427523,
- 0.02555188722908497,
- -0.05671881139278412,
- -0.004165047779679298,
- -0.03523612022399902,
- -0.026954594999551773,
- -0.013320737518370152,
- -0.017239375039935112,
- 0.027320578694343567,
- -0.005546271335333586,
- 0.02529451623558998,
- -0.0387670062482357,
- 0.03918743133544922,
- 0.026872679591178894,
- 0.0072501907125115395,
- -0.01630801521241665,
- 0.00102474563755095,
- 0.006764315068721771,
- 0.05024591088294983,
- -0.002971653826534748,
- 0.013268765062093735,
- 0.010184131562709808,
- 0.012341991066932678,
- 0.02536642737686634,
- 5.0486497891298435e-33,
- -0.10067664831876755,
- -0.09622084349393845,
- -0.02510545216500759,
- 0.11032381653785706,
- -0.007039777003228664,
- -0.02134685404598713,
- -0.06245158240199089,
- -0.03416227176785469,
- 0.045471739023923874,
- 0.00404522567987442,
- -0.030038921162486076,
- -0.10466793179512024,
- 0.026435930281877518,
- 0.04381396248936653,
- -0.009902112185955048,
- -0.0697379931807518,
- 0.03695005178451538,
- -0.05969229340553284,
- -0.085035040974617,
- 0.042644403874874115,
- 0.02237507700920105,
- -0.06358195841312408,
- 0.017162147909402847,
- 0.013262101449072361,
- 0.0571606382727623,
- 0.009144405834376812,
- 0.12211896479129791,
- -0.008038719184696674,
- -0.01787184737622738,
- -0.03676128014922142,
- 0.03193339705467224,
- -0.01772630214691162,
- -0.005002741701900959,
- -0.05908795818686485,
- -0.03408707305788994,
- 0.04453494772315025,
- 0.10990463942289352,
- -0.009947050362825394,
- -0.03618433326482773,
- -0.05001259595155716,
- 0.03515070304274559,
- -0.012707698158919811,
- -0.028719337657094002,
- 0.03227321803569794,
- -0.02474134787917137,
- 0.003168038558214903,
- 0.006883993279188871,
- 0.027322979643940926,
- 0.08902844041585922,
- 0.018402474001049995,
- -0.03589995577931404,
- -0.05113702267408371,
- 0.00795963779091835,
- -0.05429816618561745,
- -0.00038761532050557435,
- 0.03431141376495361,
- -0.047157153487205505,
- -0.01533161848783493,
- -0.015246990136802197,
- 0.0877145305275917,
- 0.01278936117887497,
- 0.08282673358917236,
- -0.062491316348314285,
- 0.07490694522857666,
- 0.01850142516195774,
- -0.04414397478103638,
- -0.020823363214731216,
- 0.08496231585741043,
- -0.020318856462836266,
- 0.030590301379561424,
- 0.011433370411396027,
- -0.02900000847876072,
- 0.004279893822968006,
- -0.03314056992530823,
- -0.02057410404086113,
- 0.011711113154888153,
- -0.0511959008872509,
- 0.006644623354077339,
- 0.018626287579536438,
- 0.07941894233226776,
- -0.07629409432411194,
- 0.012876643799245358,
- -0.01719999499619007,
- 0.05673404037952423,
- 0.01083570159971714,
- -0.05573651194572449,
- 0.030207328498363495,
- -0.07908940315246582,
- -0.023529034107923508,
- 0.015558011829853058,
- 0.01823875680565834,
- -0.03002399578690529,
- -0.07661768794059753,
- -0.022068917751312256,
- -0.01022852212190628,
- -1.3784910990466415e-8,
- 0.0030063220765441656,
- -0.028032030910253525,
- -0.02113633044064045,
- -0.017209099605679512,
- 0.06038461998105049,
- 0.09121716767549515,
- 0.08251287043094635,
- -0.08592189103364944,
- -0.009846886619925499,
- 0.05710949748754501,
- -0.008920526131987572,
- -0.01823969930410385,
- -0.01658049039542675,
- 0.03330050781369209,
- 0.012786002829670906,
- -0.09650272130966187,
- 0.008216312155127525,
- -0.03764130920171738,
- -0.08883889764547348,
- 0.001027799560688436,
- -0.0030359781812876463,
- 0.011649618856608868,
- 0.08443383127450943,
- -0.1307746171951294,
- 0.0108667416498065,
- 0.010270725004374981,
- 0.05713723227381706,
- -0.010160145349800587,
- -0.0233750082552433,
- 0.05929083749651909,
- -0.012716167606413364,
- 0.04833308234810829,
- 0.015313839539885521,
- -0.0025656723883002996,
- 0.05041098967194557,
- -0.0845712348818779,
- 0.07149398326873779,
- 0.06016676500439644,
- -0.030114497989416122,
- -0.0038863869849592447,
- -0.03225865960121155,
- 0.059385769069194794,
- 0.023079311475157738,
- 0.041354790329933167,
- -0.022266129031777382,
- -0.016653547063469887,
- 0.02530696429312229,
- 0.05006701126694679,
- -0.0048016770742833614,
- 0.015469660051167011,
- 0.015238773077726364,
- -0.05841069296002388,
- 0.12728838622570038,
- 0.03955567255616188,
- -0.054985810071229935,
- 0.06330541521310806,
- 0.017522575333714485,
- -0.009910596534609795,
- -0.04183788225054741,
- -0.03681091219186783,
- 0.16259057819843292,
- -0.05612824857234955,
- 0.08106756210327148,
- 0.03263470157980919
- ]
- },
- {
- "keyword": "journal",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.02849951758980751,
- 0.07352603226900101,
- -0.04679467901587486,
- 0.10902338474988937,
- 0.033321455121040344,
- -0.03489174693822861,
- 0.01937318593263626,
- -0.002810804173350334,
- -0.005035518202930689,
- 0.028968973085284233,
- -0.025869090110063553,
- 0.005246336106210947,
- -0.025156961753964424,
- 0.044849127531051636,
- -0.03567609190940857,
- -0.0240778811275959,
- -0.02526303380727768,
- -0.002592635340988636,
- -0.01181093230843544,
- 0.05995869264006615,
- -0.009880314581096172,
- 0.04446972534060478,
- 0.03206128627061844,
- 0.023392077535390854,
- 0.005129656754434109,
- -0.04357708618044853,
- -0.09101985394954681,
- -0.05711737647652626,
- -0.019691869616508484,
- -0.10208957642316818,
- 0.015518208034336567,
- 0.008332879282534122,
- -0.0019806488417088985,
- 0.027447005733847618,
- 0.02413620613515377,
- -0.025698935613036156,
- 0.0209268219769001,
- 0.00164862594101578,
- 0.0654136911034584,
- -0.024129239842295647,
- -0.03393171727657318,
- -0.10016185790300369,
- -0.026263762265443802,
- -0.017449021339416504,
- 0.004987574182450771,
- -0.03659205511212349,
- 0.00021855550585314631,
- 0.002365312073379755,
- -0.07474114745855331,
- 0.1051318347454071,
- -0.003457137616351247,
- -0.06751181930303574,
- -0.03201448917388916,
- -0.00006834680971223861,
- 0.07129497081041336,
- 0.03135603293776512,
- -0.06998658925294876,
- 0.012904786504805088,
- -0.03914983198046684,
- -0.06702014803886414,
- 0.07783515751361847,
- 0.006725898012518883,
- -0.1376619040966034,
- 0.07890540361404419,
- 0.07925916463136673,
- 0.00908559188246727,
- 0.040329210460186005,
- 0.05416499823331833,
- -0.030283812433481216,
- -0.0462249219417572,
- 0.008419936522841454,
- 0.020033061504364014,
- -0.002809484489262104,
- -0.00014084824942983687,
- 0.051081158220767975,
- 0.0032049634028226137,
- 0.02639920637011528,
- 0.06076895818114281,
- 0.09022003412246704,
- -0.007926460355520248,
- 0.0763586014509201,
- -0.07312408089637756,
- -0.014591502025723457,
- 0.0698522999882698,
- 0.04423035681247711,
- -0.050519950687885284,
- 0.03435669094324112,
- -0.001813036622479558,
- -0.012335889041423798,
- 0.006335757207125425,
- 0.00010218573152087629,
- 0.022914713248610497,
- 0.0736163854598999,
- -0.011952334083616734,
- -0.09713392704725266,
- -0.010132097639143467,
- -0.06760450452566147,
- 0.03734169527888298,
- 0.006256626918911934,
- 0.22156818211078644,
- 0.042404141277074814,
- 0.10864229500293732,
- -0.0418931283056736,
- 0.031329065561294556,
- 0.030123941600322723,
- -0.0919516459107399,
- -0.0461624413728714,
- 0.017382577061653137,
- -0.004086075350642204,
- 0.03896966204047203,
- 0.02428557723760605,
- 0.10657016187906265,
- -0.013057518750429153,
- 0.0010611633770167828,
- 0.09323014318943024,
- 0.04456840455532074,
- 0.035031165927648544,
- -0.023897333070635796,
- 0.02927374839782715,
- 0.027763722464442253,
- -0.0035366532392799854,
- 0.027532242238521576,
- -0.09612318873405457,
- -0.04869457706809044,
- -0.10888093709945679,
- 0.006211752071976662,
- 0.014398416504263878,
- -5.0670771324469214e-33,
- 0.043154630810022354,
- 0.04699089005589485,
- 0.061634279787540436,
- 0.0305495448410511,
- 0.02151903137564659,
- 0.07547090202569962,
- -0.03991607576608658,
- -0.06472374498844147,
- -0.09997065365314484,
- 0.014474073424935341,
- -0.023299312219023705,
- 0.09287919104099274,
- 0.008732032030820847,
- 0.053309254348278046,
- 0.03852921724319458,
- 0.02303723804652691,
- -0.061876293271780014,
- 0.04918261617422104,
- 0.045046113431453705,
- -0.044032711535692215,
- 0.04828798025846481,
- -0.004186313133686781,
- -0.01889067515730858,
- 0.03659537807106972,
- 0.04963115230202675,
- 0.028197582811117172,
- -0.015622086822986603,
- -0.07198349386453629,
- -0.05064999312162399,
- 0.05385206639766693,
- -0.018861640244722366,
- -0.027898387983441353,
- -0.04221078380942345,
- -0.06169721856713295,
- 0.020704839378595352,
- 0.019114956259727478,
- -0.01718873158097267,
- -0.023722201585769653,
- -0.0482674278318882,
- -0.04028880596160889,
- -0.012539740651845932,
- 0.005551948677748442,
- -0.06071840971708298,
- -0.01723151095211506,
- 0.009404764510691166,
- 0.13019415736198425,
- 0.0014565547462552786,
- 0.00013826288341078907,
- 0.0261977631598711,
- 0.0017274145502597094,
- -0.0038402527570724487,
- -0.024304110556840897,
- -0.088923379778862,
- -0.06913391500711441,
- 0.03502485528588295,
- 0.018238138407468796,
- 0.09419936686754227,
- -0.03342724218964577,
- -0.03533552959561348,
- 0.010882069356739521,
- 0.0801030620932579,
- 0.060656286776065826,
- -0.04518158361315727,
- 0.025100991129875183,
- -0.021993862465023994,
- 0.05018901079893112,
- -0.02189837582409382,
- -0.04249117895960808,
- 0.03861450031399727,
- -0.022505437955260277,
- -0.06972307711839676,
- -0.038490310311317444,
- 0.04463803768157959,
- -0.02267998456954956,
- -0.011085287667810917,
- 0.011639931239187717,
- -0.025513263419270515,
- -0.030158674344420433,
- -0.09838881343603134,
- 0.00801908690482378,
- -0.03134426474571228,
- -0.022391829639673233,
- -0.05165449529886246,
- 0.0017710834508761764,
- 0.013179581612348557,
- -0.018561560660600662,
- -0.02126646414399147,
- -0.0019567254930734634,
- -0.017733516171574593,
- -0.015053559094667435,
- -0.013785925693809986,
- 0.06126943603157997,
- 0.11326621472835541,
- 0.049082349985837936,
- -0.039376985281705856,
- 3.185069901820145e-33,
- -0.08442199975252151,
- -0.07681570947170258,
- 0.010225996375083923,
- 0.03653537482023239,
- 0.021173937246203423,
- -0.049206458032131195,
- -0.0199168398976326,
- 0.07696744054555893,
- 0.06007261946797371,
- 0.06705564260482788,
- -0.0273783877491951,
- -0.11099707335233688,
- 0.01387832686305046,
- 0.10699748247861862,
- 0.004427480511367321,
- -0.00481508020311594,
- -0.022255022078752518,
- -0.059878963977098465,
- -0.03819775581359863,
- 0.07704664766788483,
- 0.03696298599243164,
- 0.06144653260707855,
- 0.030118022114038467,
- 0.059105921536684036,
- 0.05156097188591957,
- 0.02439034730195999,
- 0.06275101006031036,
- -0.05498842895030975,
- -0.03530510514974594,
- -0.06976959854364395,
- -0.04499014839529991,
- -0.09170029312372208,
- 0.008601724170148373,
- 0.02197139710187912,
- -0.026613498106598854,
- 0.0107249291613698,
- 0.08484245836734772,
- -0.0072586797177791595,
- 0.0011850419687107205,
- -0.02885649912059307,
- -0.004667055327445269,
- 0.035159338265657425,
- -0.049512915313243866,
- 0.04464520141482353,
- -0.04257405921816826,
- -0.007145216688513756,
- -0.023143256083130836,
- 0.022498484700918198,
- 0.0337957926094532,
- 0.02816830575466156,
- -0.06651870906352997,
- -0.05204228311777115,
- 0.0657552108168602,
- 0.013629465363919735,
- -0.04365032538771629,
- 0.05850003659725189,
- -0.05485167354345322,
- 0.002060967730358243,
- -0.015708429738879204,
- 0.06367500871419907,
- -0.03009132295846939,
- 0.07739204913377762,
- -0.08029183000326157,
- 0.0791950523853302,
- 0.022887788712978363,
- -0.06023959070444107,
- -0.02596474438905716,
- 0.015979627147316933,
- -0.06495301425457001,
- -0.047560688108205795,
- 0.07428994029760361,
- 0.0289938785135746,
- -0.01826758123934269,
- 0.062350768595933914,
- 0.09031402319669724,
- 0.02341218665242195,
- -0.08156860619783401,
- -0.06282271444797516,
- -0.05866566300392151,
- 0.015608069486916065,
- -0.06286420673131943,
- 0.04246214032173157,
- -0.03795374184846878,
- 0.042861394584178925,
- -0.010275780223309994,
- -0.06574182212352753,
- 0.0780278667807579,
- -0.07790694385766983,
- -0.02628692053258419,
- -0.04011710733175278,
- 0.030629776418209076,
- -0.04530773311853409,
- -0.025766316801309586,
- 0.01573590189218521,
- -0.03271540626883507,
- -1.1532714339068662e-8,
- -0.029504820704460144,
- -0.02084568329155445,
- -0.012415524572134018,
- -0.045245908200740814,
- 0.10125873237848282,
- 0.012605664320290089,
- 0.09193647652864456,
- 0.0570715069770813,
- -0.016485869884490967,
- 0.08949590474367142,
- 0.024111995473504066,
- 0.06084134802222252,
- -0.06225888058543205,
- 0.01735972799360752,
- 0.009736111387610435,
- -0.14594003558158875,
- -0.010133530013263226,
- -0.0075945681892335415,
- -0.06016874685883522,
- -0.035223767161369324,
- 0.05596195161342621,
- 0.014800802804529667,
- 0.031561411917209625,
- -0.00591569347307086,
- 0.03525453805923462,
- -0.03315266966819763,
- 0.015535530634224415,
- -0.020136607810854912,
- 0.009853864088654518,
- 0.029337961226701736,
- -0.04883851110935211,
- 0.08635425567626953,
- -0.006937757600098848,
- -0.03106631524860859,
- -0.1143859326839447,
- 0.02161395363509655,
- 0.0801289975643158,
- -0.0021060712169855833,
- -0.043305132538080215,
- 0.04794008657336235,
- -0.02299077808856964,
- -0.08908668905496597,
- 0.051460057497024536,
- -0.009659182280302048,
- -0.03272368758916855,
- -0.030293790623545647,
- -0.016042347997426987,
- -0.0007531027076765895,
- 0.04368855059146881,
- -0.027798034250736237,
- -0.01468732114881277,
- -0.07858119159936905,
- 0.09942234307527542,
- 0.02722248062491417,
- 0.001821607118472457,
- -0.04017535597085953,
- -0.02837262861430645,
- 0.012781748548150063,
- -0.011913294903934002,
- -0.013859019614756107,
- 0.19450250267982483,
- -0.034536514431238174,
- 0.0967661440372467,
- -0.017288845032453537
- ]
- },
- {
- "keyword": "book",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.02090924046933651,
- 0.04608948528766632,
- -0.028750721365213394,
- 0.0983433946967125,
- -0.1316717565059662,
- -0.012219376862049103,
- 0.11067900061607361,
- 0.0007031554123386741,
- 0.02589114010334015,
- 0.05527064576745033,
- 0.029875049367547035,
- 0.11855201423168182,
- 0.06590905785560608,
- -0.0602678544819355,
- -0.07672762125730515,
- -0.016539311036467552,
- -0.07413903623819351,
- -0.03213520720601082,
- -0.03295271843671799,
- -0.06194230541586876,
- -0.06560215353965759,
- 0.0849677100777626,
- -0.015521100722253323,
- 0.009797375649213791,
- -0.029749298468232155,
- 0.05668184533715248,
- 0.008340914733707905,
- -0.012224001809954643,
- -0.022518211975693703,
- -0.0774577260017395,
- -0.01133233867585659,
- 0.04808248206973076,
- -0.024299047887325287,
- -0.04626847431063652,
- -0.033850885927677155,
- 0.0027087691705673933,
- 0.06985603272914886,
- -0.0014787031104788184,
- 0.030252136290073395,
- 0.01395313162356615,
- 0.06802581995725632,
- -0.09399385750293732,
- -0.010958414524793625,
- -0.014176104217767715,
- 0.06357032805681229,
- 0.039391323924064636,
- 0.0038864449597895145,
- -0.003061426104977727,
- 0.010509205982089043,
- 0.00888014119118452,
- -0.06719178706407547,
- 0.04113326221704483,
- -0.03608696162700653,
- -0.009647359140217304,
- 0.011281909421086311,
- 0.0598524771630764,
- -0.015726326033473015,
- -0.006510152947157621,
- -0.025066867470741272,
- -0.060395244508981705,
- 0.06901224702596664,
- -0.037313301116228104,
- -0.10931561142206192,
- 0.05008314549922943,
- 0.05268879979848862,
- 0.01887807808816433,
- 0.01769615150988102,
- 0.049230534583330154,
- -0.091582290828228,
- -0.043616872280836105,
- -0.060775209218263626,
- 0.042909327894449234,
- 0.03145337104797363,
- 0.0455608069896698,
- 0.06359276920557022,
- -0.058193638920784,
- -0.003953198902308941,
- -0.05632930248975754,
- 0.08464397490024567,
- -0.059756409376859665,
- -0.07344087213277817,
- -0.018709206953644753,
- -0.006699986290186644,
- 0.028133703395724297,
- -0.027554675936698914,
- 0.009488453157246113,
- 0.029199138283729553,
- -0.07448229938745499,
- -0.04472425952553749,
- 0.053312480449676514,
- 0.004144940059632063,
- -0.043290335685014725,
- 0.06153694540262222,
- 0.022848324850201607,
- -0.08975894749164581,
- 0.0707831084728241,
- -0.0009524792549200356,
- -0.026886653155088425,
- -0.002713523805141449,
- 0.24930550158023834,
- -0.0004001969355158508,
- 0.03382379561662674,
- 0.025514693930745125,
- -0.014659803360700607,
- 0.008049570955336094,
- -0.105778269469738,
- -0.07009190320968628,
- 0.024146385490894318,
- -0.014230712316930294,
- -0.09916747361421585,
- -0.07667358219623566,
- 0.012831708416342735,
- -0.017182480543851852,
- 0.027506930753588676,
- 0.05853312835097313,
- 0.005109802354127169,
- 0.08252714574337006,
- 0.0205861646682024,
- 0.06839581578969955,
- 0.007486688904464245,
- 0.00040086277294903994,
- 0.011928446590900421,
- -0.027204612269997597,
- 0.04219472408294678,
- -0.056638386100530624,
- -0.11102607846260071,
- 0.027110006660223007,
- -4.5518491422738816e-33,
- 0.060827597975730896,
- -0.032428331673145294,
- -0.03232308104634285,
- 0.06470808386802673,
- 0.03349505737423897,
- -0.008031107485294342,
- 0.07070422917604446,
- -0.014205120503902435,
- -0.01864599995315075,
- 0.06325319409370422,
- -0.038600265979766846,
- 0.0288473479449749,
- -0.0627935454249382,
- -0.0023626217152923346,
- 0.05920275300741196,
- 0.10684166103601456,
- -0.034307342022657394,
- -0.013903363607823849,
- -0.02332501858472824,
- -0.03517201915383339,
- -0.010586055926978588,
- 0.0658407136797905,
- 0.0007716219406574965,
- 0.04299626126885414,
- -0.009961890988051891,
- -0.00418114336207509,
- 0.005630914121866226,
- -0.01231449842453003,
- 0.004444871563464403,
- 0.030681435018777847,
- 0.026949778199195862,
- 0.03277229890227318,
- 0.03195291757583618,
- -0.08219297975301743,
- -0.029387306421995163,
- -0.03889749199151993,
- -0.012494909577071667,
- -0.059451885521411896,
- 0.049280378967523575,
- 0.021014036610722542,
- -0.09898890554904938,
- 0.029278893023729324,
- 0.004366084933280945,
- -0.0697430670261383,
- -0.028385715559124947,
- 0.08699885755777359,
- 0.08962929993867874,
- 0.017730671912431717,
- 0.009329695254564285,
- 0.056767672300338745,
- -0.008415158838033676,
- -0.049191914498806,
- -0.09290190786123276,
- -0.023377563804388046,
- -0.0064645931124687195,
- 0.006597613450139761,
- -0.034592125564813614,
- 0.006773234345018864,
- 0.04514452442526817,
- 0.027727138251066208,
- 0.0576871819794178,
- 0.12825700640678406,
- 0.02282700128853321,
- 0.05688338726758957,
- 0.022344904020428658,
- 0.035743024200201035,
- -0.06065532937645912,
- -0.06057935580611229,
- -0.008948340080678463,
- -0.05881504714488983,
- -0.12035121768712997,
- 0.05186045542359352,
- 0.07609008252620697,
- -0.0030081262812018394,
- -0.06047024950385094,
- -0.03565041348338127,
- 0.0023829382844269276,
- 0.01301190722733736,
- -0.08198007941246033,
- -0.06757738441228867,
- -0.013865270651876926,
- -0.005129008553922176,
- 0.012374497950077057,
- 0.004616702441126108,
- -0.06955045461654663,
- -0.009796247817575932,
- 0.049182116985321045,
- -0.06428627669811249,
- 0.028635283932089806,
- -0.006372965406626463,
- 0.0008996829274110496,
- 0.004273918457329273,
- 0.02430318482220173,
- 0.02293051965534687,
- 0.01860133372247219,
- 4.044467944234565e-33,
- 0.028869403526186943,
- -0.07567952573299408,
- 0.0007625868893228471,
- 0.07529296725988388,
- 0.06978187710046768,
- -0.02761121839284897,
- -0.01196167804300785,
- 0.03162350878119469,
- -0.02315022051334381,
- 0.0010867924429476261,
- -0.15016162395477295,
- -0.0413193441927433,
- 0.10050498694181442,
- 0.07393578439950943,
- 0.04025103524327278,
- -0.05204802006483078,
- 0.05578392744064331,
- -0.050452712923288345,
- -0.027195367962121964,
- -0.011875596828758717,
- -0.11112185567617416,
- -0.012463822029531002,
- -0.0226031094789505,
- -0.10150778293609619,
- 0.03710390627384186,
- 0.025845777243375778,
- 0.012906321324408054,
- -0.007842689752578735,
- -0.06272104382514954,
- 0.03184877708554268,
- 0.02836036868393421,
- -0.01591227762401104,
- -0.017163457348942757,
- 0.026602154597640038,
- -0.04411529377102852,
- 0.060819242149591446,
- 0.08424817770719528,
- 0.006393278483301401,
- -0.020100746303796768,
- 0.004072884563356638,
- 0.01271409634500742,
- -0.02352418377995491,
- -0.03803406283259392,
- 0.08516865968704224,
- -0.014834295958280563,
- -0.019198855385184288,
- 0.07588820159435272,
- 0.045318808406591415,
- 0.028356196358799934,
- 0.03675103932619095,
- -0.03127910941839218,
- 0.0061690229922533035,
- 0.014974340796470642,
- -0.05609125271439552,
- -0.035230062901973724,
- 0.008153045549988747,
- 0.007491626311093569,
- -0.031028637662529945,
- 0.06432149559259415,
- 0.030771570280194283,
- -0.040078386664390564,
- 0.007512431126087904,
- -0.014098257757723331,
- 0.0857141986489296,
- -0.05395430326461792,
- -0.03373638913035393,
- -0.04028625041246414,
- -0.019412314519286156,
- 0.10705843567848206,
- 0.028406629338860512,
- -0.11597303301095963,
- 0.02737284265458584,
- -0.05081293731927872,
- 0.041560832411050797,
- -0.009931650012731552,
- 0.013050016947090626,
- -0.12186753004789352,
- 0.02480625919997692,
- -0.059629425406455994,
- -0.06217039003968239,
- -0.009256397373974323,
- -0.018264593556523323,
- -0.053796153515577316,
- 0.11653254926204681,
- -0.0137253999710083,
- 0.05671735852956772,
- 0.09381463378667831,
- -0.024215003475546837,
- 0.014429837465286255,
- -0.017904754728078842,
- -0.052610285580158234,
- 0.009782491251826286,
- -0.027999402955174446,
- 0.04229094088077545,
- 0.013355308212339878,
- -1.2755714706713661e-8,
- -0.03483349084854126,
- 0.039398882538080215,
- 0.013140364550054073,
- -0.042121030390262604,
- 0.06351828575134277,
- 0.09582754969596863,
- 0.044469404965639114,
- 0.03254024311900139,
- -0.04981863126158714,
- 0.08756963163614273,
- -0.004057754762470722,
- -0.000871746800839901,
- 0.0718311294913292,
- 0.06150660291314125,
- 0.034146763384342194,
- -0.016834819689393044,
- 0.06674876064062119,
- -0.009174583479762077,
- -0.07314722239971161,
- 0.07718110084533691,
- 0.03652104362845421,
- 0.000059072059229947627,
- 0.05249644070863724,
- -0.06484835594892502,
- 0.016265785321593285,
- 0.054864875972270966,
- -0.04025149717926979,
- 0.08803380280733109,
- -0.0011846756096929312,
- 0.0180564746260643,
- -0.0017164774471893907,
- 0.12414848059415817,
- 0.004046558868139982,
- -0.027013927698135376,
- 0.09999426454305649,
- -0.008798164315521717,
- 0.03352887183427811,
- 0.012330897152423859,
- -0.022115902975201607,
- 0.022745860740542412,
- -0.03201710060238838,
- 0.018111808225512505,
- 0.04511450231075287,
- -0.01610516756772995,
- -0.0016314499080181122,
- -0.011952673085033894,
- 0.024765312671661377,
- -0.0023442371748387814,
- 0.024597885087132454,
- 0.0019880712497979403,
- 0.005566861014813185,
- -0.012659085914492607,
- 0.08366432785987854,
- 0.0046747359447181225,
- 0.02018299512565136,
- 0.0016890569822862744,
- -0.0031280836556106806,
- 0.030565602704882622,
- -0.06434135884046555,
- 0.010218340903520584,
- 0.11460456252098083,
- -0.006166441831737757,
- -0.026629315689206123,
- 0.026246830821037292
- ]
- },
- {
- "keyword": "ebook",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0428660586476326,
- -0.002111451467499137,
- -0.03817182406783104,
- -0.00876554474234581,
- 0.004451541695743799,
- 0.01872536540031433,
- -0.032704442739486694,
- -0.0044633010402321815,
- 0.10404089093208313,
- 0.0929853692650795,
- 0.01839621551334858,
- 0.052344538271427155,
- -0.010235636495053768,
- -0.09798935055732727,
- 0.023219631984829903,
- -0.030161570757627487,
- -0.04130835831165314,
- -0.020959682762622833,
- 0.03204173967242241,
- -0.04516955092549324,
- -0.006759654264897108,
- 0.07940218597650528,
- 0.04170295596122742,
- -0.003044232726097107,
- -0.019921405240893364,
- -0.030808068811893463,
- -0.020297979936003685,
- -0.037661246955394745,
- -0.04572582617402077,
- -0.14738814532756805,
- 0.025058241561055183,
- -0.024112191051244736,
- -0.0012452725786715746,
- 0.02142886258661747,
- -0.01886599510908127,
- -0.034363195300102234,
- 0.017825089395046234,
- -0.05273193493485451,
- 0.005592074245214462,
- 0.009352142922580242,
- -0.005905333440750837,
- -0.07850093394517899,
- -0.02505679428577423,
- -0.007581652607768774,
- 0.02710164152085781,
- 0.05129070580005646,
- -0.04143430292606354,
- 0.018969859927892685,
- 0.0308710765093565,
- 0.039867598563432693,
- -0.025719668716192245,
- -0.029977064579725266,
- -0.05286792293190956,
- -0.032227013260126114,
- 0.03527979180216789,
- -0.015300734899938107,
- 0.0060953013598918915,
- 0.020841991528868675,
- 0.0330134779214859,
- -0.028510408475995064,
- 0.02027873881161213,
- -0.10615498572587967,
- -0.05242299288511276,
- 0.07218591868877411,
- -0.002519286470487714,
- 0.057159703224897385,
- 0.019497595727443695,
- 0.03958874195814133,
- 0.001146400929428637,
- -0.08804886043071747,
- -0.14977720379829407,
- -0.03973516821861267,
- 0.04240531101822853,
- 0.06879588961601257,
- 0.029782596975564957,
- -0.09154950082302094,
- -0.022281872108578682,
- -0.04586631804704666,
- 0.008354593999683857,
- -0.02740141563117504,
- -0.09852539002895355,
- -0.01928737200796604,
- 0.018830545246601105,
- -0.017813904210925102,
- -0.04341105744242668,
- 0.021786419674754143,
- 0.05926959589123726,
- 0.003333813278004527,
- 0.011919938959181309,
- 0.016563357785344124,
- 0.036543432623147964,
- 0.061253733932971954,
- 0.04661396145820618,
- 0.10641421377658844,
- -0.06591412425041199,
- 0.002712329151108861,
- 0.024028560146689415,
- -0.07725188136100769,
- -0.0014128090115264058,
- 0.2263205349445343,
- -0.027759656310081482,
- 0.050266169011592865,
- 0.026659313589334488,
- -0.06081148609519005,
- -0.07903928309679031,
- -0.14635875821113586,
- 0.05042250081896782,
- -0.022824374958872795,
- 0.006831352598965168,
- -0.03288435935974121,
- -0.034809209406375885,
- -0.05150623247027397,
- -0.04418469965457916,
- -0.04990912973880768,
- 0.0463959202170372,
- -0.04471582919359207,
- 0.05996907874941826,
- 0.02225995622575283,
- 0.10059807449579239,
- 0.015953637659549713,
- 0.0013941297074779868,
- 0.06671267747879028,
- -0.025933535769581795,
- 0.0035036748740822077,
- -0.04580403491854668,
- -0.07146342098712921,
- 0.05775461718440056,
- -3.874914271729974e-33,
- 0.06374616920948029,
- 0.010920132510364056,
- -0.028775382786989212,
- -0.017015578225255013,
- 0.052149541676044464,
- -0.03475283458828926,
- 0.040931586176157,
- -0.06488059461116791,
- -0.05230521410703659,
- -0.05288100242614746,
- 0.003218142781406641,
- 0.026861898601055145,
- -0.1010221466422081,
- 0.069039486348629,
- 0.03990187123417854,
- 0.029690291732549667,
- -0.06443760544061661,
- 0.0696210041642189,
- 0.038723938167095184,
- 0.0029764168430119753,
- -0.02717597596347332,
- -0.031202659010887146,
- 0.04005679860711098,
- -0.02896919474005699,
- -0.01392962597310543,
- -0.003050088882446289,
- -0.009297105483710766,
- -0.04336610063910484,
- 0.06646029651165009,
- 0.0032104316633194685,
- 0.018712235614657402,
- -0.011730226688086987,
- -0.04810970649123192,
- -0.14528319239616394,
- -0.013251004740595818,
- -0.01722543127834797,
- -0.0396152064204216,
- -0.014256922528147697,
- 0.037833765149116516,
- 0.04838370159268379,
- -0.04361673817038536,
- -0.0022581571247428656,
- 0.0723273828625679,
- -0.02132444642484188,
- 0.006835537496954203,
- 0.010234369896352291,
- 0.06275733560323715,
- 0.04280250519514084,
- 0.11549171060323715,
- 0.030733272433280945,
- -0.023634960874915123,
- -0.0683903843164444,
- -0.009103690274059772,
- -0.08646976202726364,
- 0.008944759145379066,
- 0.020787104964256287,
- -0.04185163602232933,
- -0.003783379215747118,
- 0.01436546165496111,
- -0.013476144522428513,
- 0.06782260537147522,
- 0.11135570704936981,
- 0.07693981379270554,
- -0.02092440240085125,
- -0.010197275318205357,
- -0.006068406160920858,
- -0.019128868356347084,
- -0.033107172697782516,
- -0.015653152018785477,
- -0.08747636526823044,
- -0.09131507575511932,
- -0.02199947088956833,
- 0.18220704793930054,
- -0.06343363970518112,
- -0.1073925569653511,
- -0.00841212272644043,
- -0.012323525734245777,
- -0.015744376927614212,
- -0.07490356266498566,
- -0.02756829746067524,
- -0.05736970156431198,
- -0.04891526699066162,
- 0.0027773119509220123,
- 0.011084356345236301,
- -0.00929129496216774,
- 0.018119188025593758,
- -0.04914653301239014,
- -0.05285540968179703,
- -0.03201407566666603,
- 0.04370877146720886,
- 0.013914198614656925,
- 0.018942816182971,
- -0.039515718817710876,
- -0.022017115727066994,
- 0.06436752527952194,
- 2.9914441253916286e-33,
- -0.02164476364850998,
- -0.10469656437635422,
- -0.06839139014482498,
- 0.029182838276028633,
- 0.04758092015981674,
- 0.08160015940666199,
- -0.00897677056491375,
- 0.057333461940288544,
- -0.009415528737008572,
- -0.01182696782052517,
- -0.08201629668474197,
- 0.021705100312829018,
- 0.0448237843811512,
- -0.05014316365122795,
- 0.0501430481672287,
- -0.09912816435098648,
- 0.036623332649469376,
- -0.04327201843261719,
- 0.012765517458319664,
- 0.011398774571716785,
- -0.05316338315606117,
- -0.027835151180624962,
- 0.02430347353219986,
- -0.019798224791884422,
- 0.1363147348165512,
- 0.03296816721558571,
- -0.005378437228500843,
- 0.07483892887830734,
- -0.08225062489509583,
- -0.049096424132585526,
- 0.07998926192522049,
- -0.024128008633852005,
- -0.0184246264398098,
- 0.07165791839361191,
- -0.05429253727197647,
- -0.012851781211793423,
- 0.024690380319952965,
- -0.01574314571917057,
- -0.0029011343140155077,
- -0.02550075575709343,
- 0.1181216910481453,
- -0.014577007852494717,
- 0.012338907457888126,
- -0.03077794425189495,
- 0.020188666880130768,
- -0.008863900788128376,
- -0.006300876848399639,
- 0.048618048429489136,
- 0.056545332074165344,
- -0.009016064926981926,
- 0.026726627722382545,
- 0.05930432677268982,
- 0.05016079172492027,
- -0.1352032572031021,
- 0.019641688093543053,
- 0.06491868942975998,
- -0.005430301185697317,
- -0.003935011103749275,
- 0.0860963836312294,
- -0.0007035026210360229,
- -0.08033299446105957,
- 0.016557229682803154,
- 0.04235411807894707,
- 0.05752912163734436,
- -0.07505194842815399,
- -0.004329779651015997,
- 0.00043570788693614304,
- 0.0038542025722563267,
- -0.003338895970955491,
- 0.08004189282655716,
- -0.04031864181160927,
- -0.011324113234877586,
- -0.004808555357158184,
- -0.058358319103717804,
- 0.015864942222833633,
- 0.13520726561546326,
- -0.030008379369974136,
- 0.03934868052601814,
- -0.057486534118652344,
- 0.005681621376425028,
- -0.016902055591344833,
- 0.09229060262441635,
- -0.003160970052704215,
- 0.0537588857114315,
- 0.07676860690116882,
- 0.024768657982349396,
- -0.002694358117878437,
- -0.041807908564805984,
- -0.0214923694729805,
- -0.005378709640353918,
- -0.02231748029589653,
- 0.004585423041135073,
- 0.0811551883816719,
- 0.022871721535921097,
- 0.025105087086558342,
- -1.0491866930806282e-8,
- 0.013211307115852833,
- -0.036240365356206894,
- 0.05915885418653488,
- -0.03532979264855385,
- 0.020284133031964302,
- 0.04249630868434906,
- 0.0766649842262268,
- 0.010268387384712696,
- -0.04314493387937546,
- 0.009874647483229637,
- -0.010146643966436386,
- -0.05505121871829033,
- 0.06684235483407974,
- 0.02590518817305565,
- 0.019360030069947243,
- 0.02017715387046337,
- 0.13263104856014252,
- -0.04355273023247719,
- -0.03982779383659363,
- 0.022092442959547043,
- 0.05885988846421242,
- 0.009876443073153496,
- 0.04259733110666275,
- -0.03242511674761772,
- 0.033740025013685226,
- 0.07845369726419449,
- 0.05452895164489746,
- 0.05233485996723175,
- 0.030390720814466476,
- 0.0058360924012959,
- -0.005386751610785723,
- 0.02429463341832161,
- 0.0004176341462880373,
- -0.031041344627738,
- 0.026063978672027588,
- 0.0004287137126084417,
- -0.0021772778127342463,
- 0.03394395485520363,
- -0.07405684888362885,
- 0.055853378027677536,
- 0.019266316667199135,
- -0.006800965406000614,
- 0.0521480031311512,
- -0.024159537628293037,
- 0.0034955390729010105,
- -0.01819058135151863,
- 0.0008299849578179419,
- -0.03892969712615013,
- 0.05363816022872925,
- 0.055824000388383865,
- -0.019054988399147987,
- -0.023004118353128433,
- 0.0294631477445364,
- 0.023413728922605515,
- -0.04363711178302765,
- -0.007940237410366535,
- 0.028487101197242737,
- 0.049513060599565506,
- -0.013631464913487434,
- 0.06409798562526703,
- 0.137922003865242,
- -0.06295745074748993,
- -0.0040802364237606525,
- 0.059257134795188904
- ]
- },
- {
- "keyword": "novel",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.015261505730450153,
- 0.015661537647247314,
- 0.00723853288218379,
- 0.07078965753316879,
- -0.09475944191217422,
- -0.01816093735396862,
- 0.06391226500272751,
- 0.004891194868832827,
- 0.052877847105264664,
- 0.04354126751422882,
- 0.02683567814528942,
- 0.08018771559000015,
- 0.03376498073339462,
- -0.012264370918273926,
- -0.07383345812559128,
- 0.03085874766111374,
- -0.01819830946624279,
- -0.019087204709649086,
- 0.004045208916068077,
- -0.048651207238435745,
- -0.01873406395316124,
- 0.036833252757787704,
- -0.016631141304969788,
- -0.013388394378125668,
- -0.03553345799446106,
- 0.04649372771382332,
- 0.027740605175495148,
- 0.008429796434938908,
- -0.07834841310977936,
- -0.05798954889178276,
- -0.011710667051374912,
- 0.07944762706756592,
- -0.06604825705289841,
- -0.02231074683368206,
- -0.00920804776251316,
- 0.04061771184206009,
- 0.0088860047981143,
- 0.009262742474675179,
- 0.04219959303736687,
- -0.02168392762541771,
- -0.004778027068823576,
- -0.13675016164779663,
- 0.03683456405997276,
- 0.0344308465719223,
- 0.054633866995573044,
- -0.02697131223976612,
- -0.040395256131887436,
- 0.004809722304344177,
- -0.018756547942757607,
- -0.025132905691862106,
- -0.03273903205990791,
- 0.04487401992082596,
- -0.03759129345417023,
- -0.029839426279067993,
- 0.019825134426355362,
- 0.035268668085336685,
- -0.0473756305873394,
- -0.0372125543653965,
- 0.0039023899007588625,
- -0.08779162168502808,
- 0.09764432907104492,
- -0.03846445307135582,
- -0.050588954240083694,
- 0.012459229677915573,
- 0.052938248962163925,
- 0.02500802092254162,
- -0.013702266849577427,
- 0.001716658822260797,
- -0.06768691539764404,
- 0.002197952475398779,
- 0.02136716991662979,
- 0.046459197998046875,
- 0.05942821130156517,
- 0.02915610559284687,
- 0.029895182698965073,
- -0.08015583455562592,
- -0.04924147576093674,
- -0.053729280829429626,
- 0.014757392928004265,
- -0.05073754861950874,
- -0.07396909594535828,
- 0.01856447383761406,
- 0.001026985002681613,
- 0.024479391053318977,
- -0.02750200778245926,
- -0.003969249781221151,
- 0.018525224179029465,
- -0.055130138993263245,
- -0.03418368846178055,
- 0.060980964452028275,
- -0.028208749368786812,
- -0.0945730060338974,
- -0.0040626791305840015,
- 0.02685924619436264,
- -0.1383584439754486,
- 0.029147401452064514,
- -0.01622563786804676,
- -0.036046791821718216,
- -0.05592462420463562,
- 0.2561046779155731,
- 0.039787717163562775,
- 0.03344431146979332,
- -0.04286189749836922,
- -0.01052959356456995,
- 0.025744382292032242,
- -0.11125998944044113,
- -0.01135481521487236,
- -0.06334222853183746,
- -0.01711759902536869,
- -0.04769063740968704,
- -0.05233105644583702,
- -0.01580636575818062,
- -0.014178005047142506,
- 0.03920947015285492,
- 0.048373959958553314,
- 0.02927330508828163,
- 0.05925014615058899,
- 0.0328201986849308,
- 0.039357081055641174,
- 0.10179731994867325,
- 0.030668316408991814,
- -0.01187052670866251,
- -0.13116109371185303,
- 0.00683557940647006,
- -0.05075724050402641,
- -0.06165030226111412,
- 0.031503282487392426,
- -5.6241159873107714e-33,
- 0.0010848835809156299,
- 0.003997957333922386,
- -0.011867118068039417,
- 0.08887799829244614,
- 0.07049591839313507,
- -0.024727636948227882,
- 0.0684364065527916,
- -0.03237873315811157,
- -0.039057403802871704,
- 0.018003001809120178,
- -0.08544602990150452,
- 0.012478566728532314,
- -0.07539258152246475,
- 0.03329906240105629,
- 0.06886713206768036,
- 0.07567105442285538,
- -0.04732990637421608,
- 0.028496241196990013,
- -0.007705530151724815,
- -0.06179819256067276,
- -0.03638783097267151,
- 0.044491011649370193,
- -0.0585210882127285,
- 0.0006676912307739258,
- -0.05964621528983116,
- -0.023874478414654732,
- -0.03181292116641998,
- 0.011019187979400158,
- 0.0037873275578022003,
- 0.03825046867132187,
- 0.03648655489087105,
- 0.11724848300218582,
- 0.02528577484190464,
- -0.05983723700046539,
- -0.040527183562517166,
- -0.07122672349214554,
- 0.0030739884823560715,
- -0.08410832285881042,
- 0.07550641894340515,
- 0.09985639154911041,
- -0.06863556057214737,
- 0.019996609538793564,
- -0.06035032868385315,
- -0.07434887439012527,
- 0.031390465795993805,
- 0.023318884894251823,
- 0.09656678885221481,
- 0.0017516260268166661,
- 0.0012049194192513824,
- 0.06323502212762833,
- -0.01786634512245655,
- -0.0176762193441391,
- -0.06619099527597427,
- 0.01784079149365425,
- 0.00279860757291317,
- 0.0010861819609999657,
- -0.028065567836165428,
- 0.005972916726022959,
- 0.05344286188483238,
- 0.008033991791307926,
- 0.06632231920957565,
- 0.05082179978489876,
- -0.06078699603676796,
- 0.028041312471032143,
- 0.06465312838554382,
- 0.02010592818260193,
- -0.014957031235098839,
- -0.0614517442882061,
- -0.031680043786764145,
- -0.028773391619324684,
- -0.10702180862426758,
- 0.019006606191396713,
- 0.0908852070569992,
- 0.07421867549419403,
- -0.008716562762856483,
- -0.029296696186065674,
- 0.08496934175491333,
- 0.01635877601802349,
- -0.09277473390102386,
- -0.06943836808204651,
- -0.04063844308257103,
- 0.02636021561920643,
- -0.010789822787046432,
- 0.017790600657463074,
- -0.09031654894351959,
- 0.01758009009063244,
- 0.04718068242073059,
- -0.09568065404891968,
- -0.05145968124270439,
- 0.05339783430099487,
- -0.02420186810195446,
- -0.006604914553463459,
- -0.01713285781443119,
- 0.00450844457373023,
- -0.0062929377891123295,
- 4.048477481996823e-33,
- 0.006350311450660229,
- -0.018687743693590164,
- -0.061590857803821564,
- 0.01986083947122097,
- 0.04772237688302994,
- -0.025355659425258636,
- -0.05786088481545448,
- 0.037237703800201416,
- -0.06909690797328949,
- 0.006946423556655645,
- -0.13758310675621033,
- -0.04729177802801132,
- 0.09688114374876022,
- 0.06121649220585823,
- 0.08876053243875504,
- -0.03377605974674225,
- 0.1116710677742958,
- -0.03510046750307083,
- -0.00005714429426006973,
- 0.007791727315634489,
- -0.07565982639789581,
- 0.03727211430668831,
- 0.007111965212970972,
- -0.08142107725143433,
- 0.029169423505663872,
- 0.03907115384936333,
- 0.007610753178596497,
- 0.07823561877012253,
- -0.12779627740383148,
- 0.03479659557342529,
- 0.030116308480501175,
- -0.000651917012874037,
- -0.010577053762972355,
- -0.011268525384366512,
- -0.017326923087239265,
- 0.08195915073156357,
- 0.11402466893196106,
- -0.03981390222907066,
- -0.049656160175800323,
- -0.0038839057087898254,
- 0.03515410050749779,
- -0.07690170407295227,
- -0.007654685992747545,
- 0.09257383644580841,
- -0.02116154506802559,
- 0.000739895855076611,
- 0.03159257397055626,
- 0.039800599217414856,
- 0.03688977658748627,
- 0.018597397953271866,
- 0.0029504275880753994,
- 0.05521368980407715,
- -0.01653626561164856,
- -0.03305406495928764,
- 0.018635116517543793,
- -0.027370678260922432,
- -0.009203074499964714,
- -0.046064190566539764,
- 0.014379290863871574,
- 0.030532408505678177,
- -0.050282321870326996,
- 0.03437083214521408,
- -0.011108760721981525,
- 0.032923463732004166,
- -0.037785544991493225,
- 0.00731428898870945,
- -0.04193485900759697,
- 0.008527137339115143,
- 0.07743106782436371,
- 0.049952562898397446,
- -0.11262821406126022,
- -0.041382674127817154,
- -0.07832387089729309,
- 0.0039633032865822315,
- -0.04000566527247429,
- -0.006154702510684729,
- -0.109975166618824,
- -0.015256785787642002,
- -0.03830605000257492,
- -0.01318963710218668,
- -0.03433539345860481,
- -0.02033040300011635,
- 0.006264114752411842,
- 0.05875788629055023,
- -0.011607863940298557,
- 0.02656819485127926,
- 0.04008329287171364,
- 0.008017939515411854,
- 0.0013722132425755262,
- 0.015355406329035759,
- -0.009348142892122269,
- -0.04190339148044586,
- -0.016617082059383392,
- 0.030318282544612885,
- -0.006680864375084639,
- -1.3490246253411442e-8,
- 0.021268364042043686,
- 0.004857578314840794,
- -0.037079863250255585,
- -0.03638068586587906,
- -0.0018013659864664078,
- 0.10973814874887466,
- 0.0009511288953945041,
- 0.01044747419655323,
- -0.020512837916612625,
- 0.08742739260196686,
- -0.03420524299144745,
- -0.009571871720254421,
- 0.10398995876312256,
- 0.10456855595111847,
- -0.020768798887729645,
- -0.013974354602396488,
- 0.09689129143953323,
- 0.022675393149256706,
- -0.08494444936513901,
- 0.11462438106536865,
- 0.04465146362781525,
- 0.0395926870405674,
- 0.0028437795117497444,
- -0.06556017696857452,
- -0.022379383444786072,
- 0.052590806037187576,
- 0.02775045670568943,
- 0.003144307527691126,
- 0.015638034790754318,
- 0.06365597993135452,
- -0.004379311576485634,
- 0.0679335966706276,
- 0.01706567220389843,
- 0.005747945513576269,
- 0.04759424552321434,
- 0.02881872095167637,
- 0.07415390759706497,
- 0.005988187622278929,
- -0.01769394613802433,
- -0.038221169263124466,
- 0.025255510583519936,
- 0.04568355157971382,
- 0.01329039130359888,
- 0.02520637772977352,
- 0.02998410165309906,
- -0.03149824216961861,
- 0.06587867438793182,
- -0.020524682477116585,
- 0.044178519397974014,
- 0.01386349368840456,
- -0.0029023464303463697,
- 0.018049713224172592,
- 0.11265305429697037,
- 0.016574319452047348,
- -0.0005057866801507771,
- 0.044272057712078094,
- -0.042315978556871414,
- 0.04101879149675369,
- -0.08112640678882599,
- 0.005456016398966312,
- 0.12256608158349991,
- 0.012858493253588676,
- 0.0009566454100422561,
- 0.006859140004962683
- ]
- },
- {
- "keyword": "chapter",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.02240707166492939,
- 0.03150330111384392,
- -0.017752090469002724,
- -0.0030253641307353973,
- -0.05245019495487213,
- 0.06784724444150925,
- 0.08138014376163483,
- 0.023125771433115005,
- 0.01759195886552334,
- -0.030559729784727097,
- 0.05615558847784996,
- 0.005297518335282803,
- 0.06612677872180939,
- -0.026010015979409218,
- 0.0012781331315636635,
- -0.0747930258512497,
- -0.038691259920597076,
- -0.023937903344631195,
- -0.0471801832318306,
- -0.03340168297290802,
- -0.0022426729556173086,
- 0.0696428120136261,
- 0.020872393622994423,
- 0.015824606642127037,
- -0.04385960102081299,
- 0.014554097317159176,
- -0.010003181174397469,
- -0.02784896269440651,
- -0.04089927673339844,
- -0.162404403090477,
- -0.0037170485593378544,
- 0.048489153385162354,
- -0.025993578135967255,
- -0.03728485107421875,
- -0.01324552483856678,
- -0.00047652755165472627,
- 0.09509918093681335,
- 0.017852427437901497,
- 0.03481506183743477,
- -0.016297658905386925,
- -0.02695831097662449,
- -0.03118482604622841,
- -0.03384563699364662,
- -0.0015956275165081024,
- 0.021445326507091522,
- -0.015777818858623505,
- 0.03863586112856865,
- 0.003805027576163411,
- 0.06984850764274597,
- 0.01456848531961441,
- 0.00888794381171465,
- -0.011525390669703484,
- -0.07040112465620041,
- 0.07949180901050568,
- 0.014952165074646473,
- 0.11007888615131378,
- 0.05220074951648712,
- -0.005175301339477301,
- 0.026736272498965263,
- 0.015066920779645443,
- -0.009108725003898144,
- 0.02303348295390606,
- -0.13440045714378357,
- 0.012938790023326874,
- 0.05027078464627266,
- -0.06985069811344147,
- -0.0341208390891552,
- -0.03565606474876404,
- -0.05185354873538017,
- -0.00476802047342062,
- 0.012198885902762413,
- -0.007640721742063761,
- 0.013123704120516777,
- -0.05765753984451294,
- -0.023075386881828308,
- -0.027523454278707504,
- 0.06989844143390656,
- -0.03871794044971466,
- 0.07351468503475189,
- -0.06886789202690125,
- -0.09967372566461563,
- -0.02307567000389099,
- 0.02070368453860283,
- -0.05767538398504257,
- 0.015979068353772163,
- 0.0735299363732338,
- 0.005804198794066906,
- -0.06105859950184822,
- -0.061156559735536575,
- 0.014507475309073925,
- -0.0201574694365263,
- -0.040611233562231064,
- 0.09903286397457123,
- -0.02480676956474781,
- -0.09529661387205124,
- 0.04283885285258293,
- 0.016817834228277206,
- -0.01642530970275402,
- 0.04995184764266014,
- 0.3040972650051117,
- 0.006753678899258375,
- 0.015699593350291252,
- 0.004653784912079573,
- -0.027065115049481392,
- -0.06672114878892899,
- -0.036930058151483536,
- -0.029491649940609932,
- -0.016106324270367622,
- 0.003136091399937868,
- -0.04440360888838768,
- -0.03731371462345123,
- -0.02697419933974743,
- -0.01920694299042225,
- -0.004635132383555174,
- 0.08157990127801895,
- -0.01969427429139614,
- 0.12051049619913101,
- -0.01188257709145546,
- 0.036398451775312424,
- 0.03848635405302048,
- 0.027242138981819153,
- 0.022967176511883736,
- 0.038837820291519165,
- 0.08971995860338211,
- -0.10039666295051575,
- -0.03025766834616661,
- 0.02105936035513878,
- -5.375900804243045e-33,
- 0.07229562848806381,
- -0.044395893812179565,
- 0.020019862800836563,
- 0.002623651409521699,
- 0.03648333251476288,
- 0.029202861711382866,
- 0.026110565289855003,
- 0.0776737630367279,
- -0.023305442184209824,
- 0.014062550850212574,
- -0.07632561773061752,
- -0.022291498258709908,
- -0.0607929490506649,
- -0.054835665971040726,
- 0.025166690349578857,
- 0.009440407156944275,
- 0.004248941317200661,
- 0.024517716839909554,
- -0.08555757254362106,
- -0.012959841638803482,
- -0.010331480763852596,
- 0.09300919622182846,
- 0.034326400607824326,
- -0.029459411278367043,
- 0.004862010013312101,
- 0.016775663942098618,
- -0.010564946569502354,
- -0.03981107473373413,
- -0.04129672050476074,
- 0.062453608959913254,
- 0.01838449202477932,
- 0.040226567536592484,
- -0.04859039559960365,
- -0.0772208496928215,
- -0.02421700209379196,
- 0.004602524451911449,
- -0.00946089532226324,
- -0.037793271243572235,
- 0.05679041147232056,
- 0.00927426666021347,
- -0.04022792726755142,
- -0.021308468654751778,
- -0.005373951513320208,
- -0.02093367837369442,
- 0.025199417024850845,
- 0.08304902166128159,
- 0.1293659806251526,
- 0.017100319266319275,
- -0.02048538811504841,
- 0.013056951574981213,
- 0.019235793501138687,
- -0.022627457976341248,
- -0.024432910606265068,
- -0.041477467864751816,
- 0.002340938663110137,
- 0.017834767699241638,
- -0.035224515944719315,
- -0.009383485652506351,
- 0.013683957979083061,
- 0.046151790767908096,
- 0.09077776968479156,
- 0.10771091282367706,
- 0.003280466189607978,
- 0.0182382520288229,
- -0.05829327553510666,
- -0.023290082812309265,
- 0.02411261573433876,
- -0.06012341380119324,
- 0.0732705295085907,
- -0.04749298095703125,
- -0.15079356729984283,
- -0.04756779968738556,
- 0.09454652667045593,
- 0.03279542177915573,
- 0.046900372952222824,
- -0.060383860021829605,
- -0.015227359719574451,
- 0.03891628980636597,
- -0.11252333968877792,
- 0.02345571666955948,
- -0.0497305728495121,
- -0.05557273328304291,
- -0.07146758586168289,
- 0.047435563057661057,
- 0.030255431309342384,
- 0.003695795079693198,
- 0.06622021645307541,
- -0.053926732391119,
- -0.02163221687078476,
- -0.030062612146139145,
- 0.01848856545984745,
- -0.011555933393537998,
- 0.05999857559800148,
- 0.06467115879058838,
- 0.02523892931640148,
- 3.729211746945551e-33,
- 0.020263073965907097,
- -0.06947574019432068,
- -0.06320443004369736,
- -0.014882819727063179,
- 0.0597611628472805,
- -0.036502376198768616,
- -0.03717779368162155,
- 0.011797730810940266,
- -0.10191608220338821,
- -0.002926196902990341,
- -0.11946603655815125,
- 0.031894925981760025,
- 0.03498781472444534,
- 0.03472312167286873,
- 0.07100672274827957,
- -0.01810842752456665,
- 0.06254547834396362,
- -0.00928372424095869,
- -0.05475078895688057,
- 0.0043015568517148495,
- -0.023350395262241364,
- -0.018205709755420685,
- -0.00908578559756279,
- -0.02346392348408699,
- 0.040847569704055786,
- 0.004942361265420914,
- 0.06482689827680588,
- 0.016091782599687576,
- 0.003278568387031555,
- 0.028250383213162422,
- -0.012094021774828434,
- -0.01750761829316616,
- -0.03710188716650009,
- 0.010303833521902561,
- -0.07698459923267365,
- 0.023775970563292503,
- 0.033122505992650986,
- -0.03724498674273491,
- 0.01923205330967903,
- 0.022444315254688263,
- 0.09069745987653732,
- -0.01586393639445305,
- 0.0253685861825943,
- 0.11749294400215149,
- -0.031565193086862564,
- -0.003704886883497238,
- 0.09291935712099075,
- 0.001756135723553598,
- -0.020455574616789818,
- 0.04960405081510544,
- -0.04145413637161255,
- -0.05581832304596901,
- 0.03678610920906067,
- -0.04535236582159996,
- 0.029499435797333717,
- 0.01025255024433136,
- -0.02265581302344799,
- -0.0497874952852726,
- 0.020985880866646767,
- 0.012717491947114468,
- -0.029162880033254623,
- 0.06737087666988373,
- -0.06952960044145584,
- 0.09624089300632477,
- 0.041670359671115875,
- -0.04880548641085625,
- -0.04233184829354286,
- -0.04577493295073509,
- 0.019392460584640503,
- 0.011266794055700302,
- -0.10520002990961075,
- -0.04329627752304077,
- 0.012345094233751297,
- 0.05646904557943344,
- 0.0019579920917749405,
- -0.007427252363413572,
- -0.12680472433567047,
- -0.03724225237965584,
- -0.08901145309209824,
- -0.054214395582675934,
- -0.08429045230150223,
- -0.08176890760660172,
- -0.0628606304526329,
- 0.03265134617686272,
- 0.03380442038178444,
- -0.03165167197585106,
- 0.087749183177948,
- 0.008455193601548672,
- 0.05186096578836441,
- 0.0002652169787324965,
- 0.02074977196753025,
- 0.056427001953125,
- -0.00265969755128026,
- 0.043107278645038605,
- 0.018954426050186157,
- -1.2726725451273069e-8,
- 0.01579231396317482,
- 0.10212844610214233,
- 0.08608914911746979,
- 0.005453651770949364,
- 0.015605399385094643,
- 0.05507265403866768,
- 0.0223503690212965,
- 0.058761075139045715,
- -0.015271167270839214,
- 0.0781409814953804,
- -0.0023812600411474705,
- 0.04771409556269646,
- 0.04364725202322006,
- 0.058724649250507355,
- 0.027653245255351067,
- 0.01137071568518877,
- 0.03338375687599182,
- -0.00257129012607038,
- -0.03738999366760254,
- 0.0029990593902766705,
- 0.018346460536122322,
- 0.029715966433286667,
- 0.026549577713012695,
- -0.11250342428684235,
- -0.042809098958969116,
- 0.02886074222624302,
- -0.039704661816358566,
- 0.15624620020389557,
- -0.012159341014921665,
- -0.0007835854776203632,
- 0.006938309874385595,
- 0.05888671055436134,
- -0.1088365986943245,
- -0.04404629021883011,
- 0.0019114086171612144,
- 0.01460440456867218,
- 0.047176674008369446,
- 0.02348269522190094,
- 0.009227987378835678,
- -0.06918955594301224,
- -2.855624074982188e-7,
- -0.009144704788923264,
- 0.09338700026273727,
- 0.036735378205776215,
- 0.012414278462529182,
- 0.03238856792449951,
- 0.0020394911989569664,
- -0.00030499594868160784,
- 0.012105378322303295,
- -0.054339658468961716,
- -0.043239712715148926,
- 0.015481820330023766,
- 0.03542736545205116,
- 0.03037302941083908,
- -0.02445378340780735,
- 0.009586192667484283,
- 0.0037889594677835703,
- -0.01429731585085392,
- -0.08893799036741257,
- -0.012718448415398598,
- 0.08159643411636353,
- 0.02302948758006096,
- -0.033739130944013596,
- -0.03644350543618202
- ]
- },
- {
- "keyword": "volume",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.03463006019592285,
- -0.002018990460783243,
- -0.03869093209505081,
- -0.012054713442921638,
- -0.06367745995521545,
- -0.08926533162593842,
- 0.04527951776981354,
- 0.06703604757785797,
- 0.05015980824828148,
- -0.03132043033838272,
- -0.05126338452100754,
- -0.03913004323840141,
- -0.024343479424715042,
- 0.03920196741819382,
- -0.09968714416027069,
- -0.05174403265118599,
- 0.003225176827982068,
- 0.025660524144768715,
- -0.17789311707019806,
- 0.011073180474340916,
- 0.028109928593039513,
- 0.07431324571371078,
- 0.010101892985403538,
- 0.055236682295799255,
- 0.0035190365742892027,
- 0.046865057200193405,
- -0.02151421085000038,
- 0.0259456355124712,
- 0.048051171004772186,
- -0.10865713655948639,
- 0.01823544315993786,
- 0.009641553275287151,
- 0.08309923112392426,
- 0.0009154094732366502,
- -0.05024740844964981,
- -0.13692112267017365,
- -0.009772343561053276,
- -0.01917296089231968,
- 0.02123529277741909,
- 0.02681698091328144,
- 0.012105627916753292,
- -0.06002872809767723,
- 0.05762868374586105,
- 0.00609597098082304,
- -0.04056452214717865,
- 0.025684896856546402,
- -0.03378733620047569,
- 0.0338970310986042,
- 0.021985867992043495,
- 0.03825759515166283,
- 0.0021936900448054075,
- -0.0772131159901619,
- -0.04788002744317055,
- 0.09023260325193405,
- 0.002867860486730933,
- 0.005604920443147421,
- 0.04692370072007179,
- 0.08792486786842346,
- -0.01684073731303215,
- -0.044531188905239105,
- -0.02270830236375332,
- 0.036716535687446594,
- -0.029825031757354736,
- 0.037018075585365295,
- 0.04277295619249344,
- -0.055738355964422226,
- -0.05233993008732796,
- -0.030815398320555687,
- -0.1123090386390686,
- 0.031008053570985794,
- 0.013306333683431149,
- 0.09841270744800568,
- 0.008854658342897892,
- -0.033677663654088974,
- 0.017831582576036453,
- -0.07935629040002823,
- 0.04109006002545357,
- -0.016779959201812744,
- 0.016755837947130203,
- 0.10725682973861694,
- -0.016307206824421883,
- 0.0320204421877861,
- -0.13151749968528748,
- 0.03813186287879944,
- -0.033979009836912155,
- -0.006548710633069277,
- 0.019433768466114998,
- 0.07831450551748276,
- -0.07328448444604874,
- 0.006177485454827547,
- -0.014466316439211369,
- -0.004040014464408159,
- -0.013222930021584034,
- 0.011324812658131123,
- 0.00093226128956303,
- -0.010427301749587059,
- 0.01314679253846407,
- -0.1012788787484169,
- 0.031322281807661057,
- 0.1785106211900711,
- -0.00014510308392345905,
- 0.04050245136022568,
- -0.018973028287291527,
- -0.06756370514631271,
- 0.020150016993284225,
- -0.01435354445129633,
- 0.009549789130687714,
- 0.10129754990339279,
- 0.012899261899292469,
- 0.06358867138624191,
- 0.030408654361963272,
- -0.03294376656413078,
- 0.0016761134611442685,
- 0.023097805678844452,
- 0.09228231012821198,
- 0.02375202812254429,
- -0.020095281302928925,
- 0.030389154329895973,
- -0.037675246596336365,
- -0.05682612583041191,
- 0.04135335609316826,
- -0.0441809706389904,
- -0.07153446972370148,
- -0.01509429793804884,
- -0.04054093360900879,
- -0.059431105852127075,
- 0.011256658472120762,
- -4.385629098279825e-33,
- -0.04206063970923424,
- -0.07565698772668839,
- 0.04356931522488594,
- 0.05810970067977905,
- -0.016158804297447205,
- 0.032807983458042145,
- 0.013719880022108555,
- -0.05086424946784973,
- -0.018514301627874374,
- 0.0066327196545898914,
- -0.046087950468063354,
- 0.14100585877895355,
- -0.03342106193304062,
- -0.025971295312047005,
- 0.0048955101519823074,
- -0.05482541024684906,
- 0.02568703144788742,
- 0.12134163081645966,
- -0.10460641235113144,
- -0.07611898332834244,
- -0.030354583635926247,
- 0.004082321189343929,
- -0.005733065772801638,
- 0.09103012084960938,
- 0.005403829272836447,
- -0.011743980459868908,
- -0.00027140017482452095,
- -0.08048370480537415,
- 0.013754256069660187,
- 0.002849627984687686,
- -0.05570486932992935,
- 0.022608451545238495,
- -0.00392383337020874,
- -0.0247019175440073,
- -0.04030904173851013,
- -0.00967505481094122,
- 0.03956111893057823,
- 0.015828315168619156,
- 0.03933006152510643,
- -0.07766709476709366,
- -0.043459922075271606,
- 0.025374634191393852,
- 0.020329315215349197,
- 0.031218409538269043,
- -0.06299139559268951,
- 0.018929127603769302,
- 0.004303803667426109,
- -0.022965962067246437,
- 0.022318236529827118,
- 0.03605092316865921,
- 0.012782387435436249,
- 0.011849711649119854,
- -0.04179200157523155,
- -0.003993523307144642,
- 0.004565827548503876,
- 0.00004064991662744433,
- -0.023864662274718285,
- 0.023417135700583458,
- -0.021060192957520485,
- -0.012626023963093758,
- 0.0757933035492897,
- 0.1431390941143036,
- 0.07701485604047775,
- 0.008526870049536228,
- -0.08234558254480362,
- 0.04067894443869591,
- 0.018744725733995438,
- -0.03728719428181648,
- 0.052972689270973206,
- -0.05088530480861664,
- -0.04740142822265625,
- -0.056168679147958755,
- 0.06697690486907959,
- -0.017488084733486176,
- -0.045998714864254,
- -0.06212027370929718,
- 0.03234747797250748,
- 0.00801576767116785,
- 0.022898590192198753,
- 0.0130477175116539,
- -0.09872043132781982,
- -0.05023454874753952,
- -0.03138957917690277,
- 0.0012641728390008211,
- 0.022814486175775528,
- 0.014753758907318115,
- 0.003837666707113385,
- 0.0012832951033487916,
- -0.004809822887182236,
- -0.04649641737341881,
- -0.06965778768062592,
- -0.09065496921539307,
- 0.018559902906417847,
- -0.1190633699297905,
- -0.02297653630375862,
- 3.041250372048946e-33,
- -0.02845902368426323,
- 0.02034466527402401,
- -0.06747899949550629,
- 0.10844993591308594,
- 0.028516877442598343,
- 0.05720621719956398,
- 0.033515218645334244,
- 0.05503162741661072,
- -0.022356046363711357,
- -0.001455825986340642,
- 0.0018095560371875763,
- 0.001614619279280305,
- 0.023562226444482803,
- -0.012596188113093376,
- 0.06384146958589554,
- -0.006190791726112366,
- 0.03344927728176117,
- -0.057272933423519135,
- 0.031187904998660088,
- 0.054280467331409454,
- -0.04781997203826904,
- -0.032386574894189835,
- 0.0090109808370471,
- 0.03655615448951721,
- -0.08172811567783356,
- -0.0016709060873836279,
- 0.029754599556326866,
- 0.006967417895793915,
- -0.055425092577934265,
- -0.034864794462919235,
- 0.034107889980077744,
- -0.07388454675674438,
- -0.03769076615571976,
- 0.003498273901641369,
- -0.04216516762971878,
- -0.006325090769678354,
- 0.1531883180141449,
- 0.024677621200680733,
- -0.05698654055595398,
- -0.05448471009731293,
- 0.045311152935028076,
- -0.04242054745554924,
- 0.11485664546489716,
- 0.08986715227365494,
- -0.057382967323064804,
- -0.007896830327808857,
- 0.10260777175426483,
- -0.045701395720243454,
- 0.040002718567848206,
- 0.009950462728738785,
- 0.0059755477122962475,
- -0.02425726316869259,
- 0.05711694434285164,
- 0.0024062772281467915,
- -0.00044793792767450213,
- 0.018184863030910492,
- -0.05396963283419609,
- 0.03467889875173569,
- 0.019585076719522476,
- -0.026751630008220673,
- 0.022143036127090454,
- 0.057596590369939804,
- -0.02602900192141533,
- -0.013865567743778229,
- -0.1241547092795372,
- 0.04214297607541084,
- -0.01898624747991562,
- 0.0004438321047928184,
- -0.0042753745801746845,
- 0.057618651539087296,
- 0.06472829729318619,
- 0.03299432247877121,
- 0.06733323633670807,
- -0.021340325474739075,
- -0.03499610349535942,
- -0.04390387982130051,
- -0.11294733732938766,
- -0.011178085580468178,
- -0.05292937904596329,
- 0.021456830203533173,
- -0.023311134427785873,
- 0.03994552418589592,
- -0.012265038676559925,
- 0.013145837932825089,
- 0.059904102236032486,
- -0.03180522471666336,
- 0.087030328810215,
- 0.028588159009814262,
- -0.06734961271286011,
- 0.004843328148126602,
- -0.04951560124754906,
- 0.07388847321271896,
- -0.0209808386862278,
- -0.004016214050352573,
- 0.05622510984539986,
- -1.1215781192674967e-8,
- 0.011068208143115044,
- 0.036443211138248444,
- 0.026213834062218666,
- 0.007083921693265438,
- 0.0003300258540548384,
- -0.026415126398205757,
- 0.05082520842552185,
- 0.07812627404928207,
- -0.030637675896286964,
- 0.1472959667444229,
- 0.07254298031330109,
- -0.06627388298511505,
- -0.009800616651773453,
- 0.03331252187490463,
- 0.016765112057328224,
- 0.006608516909182072,
- -0.05750776082277298,
- 0.04004809260368347,
- -0.017462750896811485,
- -0.03413742035627365,
- 0.04606256261467934,
- 0.045788075774908066,
- 0.02511880174279213,
- -0.058006592094898224,
- 0.07596927136182785,
- 0.022321293130517006,
- -0.013912164606153965,
- 0.009159048087894917,
- -0.00313388230279088,
- -0.018124165013432503,
- 0.06489268690347672,
- 0.07934855669736862,
- -0.07706106454133987,
- -0.02863933891057968,
- 0.0306052528321743,
- -0.007623159792274237,
- 0.012635662220418453,
- 0.02985810488462448,
- 0.014323839917778969,
- 0.02487383782863617,
- -0.05842679366469383,
- -0.09532731026411057,
- 0.044257402420043945,
- -0.030976036563515663,
- -0.0005134604871273041,
- 0.010951347649097443,
- 0.010959570296108723,
- 0.04843427985906601,
- -0.04139605909585953,
- -0.030864231288433075,
- 0.00872001051902771,
- 0.06600116938352585,
- -0.008449340239167213,
- 0.06265293061733246,
- 0.09954347461462021,
- 0.041899364441633224,
- -0.04751932621002197,
- 0.03415089100599289,
- -0.1113208681344986,
- 0.0823819562792778,
- 0.07628347724676132,
- 0.10285962373018265,
- -0.040041208267211914,
- -0.010040942579507828
- ]
- },
- {
- "keyword": "manual",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.07216693460941315,
- 0.02171752043068409,
- -0.029265940189361572,
- 0.00020290425163693726,
- -0.12323973327875137,
- 0.001593086519278586,
- 0.01817656308412552,
- 0.005987857934087515,
- -0.060643233358860016,
- 0.04881738871335983,
- 0.005300338380038738,
- 0.02373126707971096,
- -0.016324331983923912,
- -0.024190358817577362,
- -0.1235036849975586,
- -0.08930642902851105,
- -0.023108351975679398,
- -0.02825813926756382,
- 0.009990770369768143,
- -0.05826934799551964,
- -0.003519789082929492,
- 0.06314943730831146,
- -0.028519297018647194,
- -0.03457188233733177,
- -0.010456273332238197,
- -0.012889722362160683,
- -0.046231597661972046,
- 0.0567866712808609,
- 0.03727079927921295,
- -0.10465779155492783,
- -0.026569148525595665,
- 0.030978603288531303,
- 0.07611297070980072,
- 0.008882222697138786,
- -0.09268740564584732,
- -0.08975780010223389,
- 0.020963693037629128,
- 0.012993019074201584,
- 0.00886627659201622,
- -0.007740625645965338,
- -0.011733458377420902,
- -0.11692488938570023,
- 0.01740008406341076,
- -0.019428567960858345,
- 0.06278413534164429,
- 0.09200423955917358,
- -0.04572729021310806,
- -0.03825007751584053,
- 0.05197396129369736,
- 0.026938261464238167,
- -0.08253372460603714,
- 0.008652857504785061,
- 0.04513084888458252,
- 0.008906370028853416,
- 0.0486161895096302,
- 0.03976396843791008,
- 0.04706500470638275,
- 0.045200053602457047,
- 0.010558119975030422,
- -0.0014492517802864313,
- 0.093149833381176,
- -0.022083235904574394,
- -0.13872073590755463,
- 0.04582834616303444,
- 0.08465435355901718,
- 0.04571560025215149,
- -0.009441139176487923,
- -0.0456123910844326,
- 0.05336853116750717,
- -0.003576030023396015,
- -0.054663002490997314,
- -0.008783607743680477,
- -0.04289982095360756,
- 0.009260413236916065,
- 0.010073589161038399,
- -0.0796443298459053,
- -0.05255018547177315,
- -0.03357451781630516,
- -0.0332033596932888,
- -0.014537682756781578,
- -0.09643016755580902,
- 0.026866622269153595,
- -0.020106546580791473,
- 0.12041206657886505,
- 0.026462139561772346,
- 0.04752593860030174,
- 0.01814388670027256,
- 0.06753195077180862,
- -0.00584568502381444,
- 0.021764026954770088,
- -0.005068832077085972,
- -0.042801402509212494,
- 0.00040178699418902397,
- 0.03138766065239906,
- -0.08167135715484619,
- 0.059300489723682404,
- -0.005567934364080429,
- -0.04512898251414299,
- -0.06049559265375137,
- 0.1972411721944809,
- 0.06738916039466858,
- -0.006371378432959318,
- 0.004939141683280468,
- -0.04650912061333656,
- -0.04514384642243385,
- -0.043444495648145676,
- 0.01915709488093853,
- 0.09799657016992569,
- 0.031619083136320114,
- -0.04823259636759758,
- -0.0966394767165184,
- 0.041379306465387344,
- -0.05587153881788254,
- -0.028168020769953728,
- 0.015302121639251709,
- -0.050733696669340134,
- 0.01973569579422474,
- 0.030845720320940018,
- 0.09302008152008057,
- -0.010025336407124996,
- 0.03035559132695198,
- -0.02198026515543461,
- 0.016037698835134506,
- 0.028082765638828278,
- 0.010583006776869297,
- -0.07889535278081894,
- 0.051364559680223465,
- -4.7560806328117e-33,
- 0.0741710439324379,
- -0.022197609767317772,
- 0.009300783276557922,
- 0.13383673131465912,
- -0.014820268377661705,
- -0.01864965818822384,
- -0.017503779381513596,
- -0.025866765528917313,
- -0.0007722033187747002,
- 0.04617762193083763,
- 0.06639591604471207,
- 0.07029161602258682,
- -0.11477929353713989,
- 0.012870341539382935,
- -0.013655357994139194,
- -0.10063490271568298,
- 0.014258202165365219,
- 0.06045696511864662,
- -0.019973967224359512,
- -0.05488567426800728,
- 0.043307315558195114,
- 0.08133533596992493,
- 0.03671407327055931,
- 0.016441257670521736,
- 0.06196637824177742,
- 0.11439848691225052,
- 0.03356500342488289,
- -0.014295200817286968,
- 0.039020489901304245,
- 0.03226129710674286,
- -0.02310345135629177,
- -0.0026212772354483604,
- -0.01760861650109291,
- -0.02698594331741333,
- 0.00636356370523572,
- 0.04406719282269478,
- -0.06949552148580551,
- 0.012181911617517471,
- 0.03353176638484001,
- -0.04710208252072334,
- 0.04914047569036484,
- -0.014698801562190056,
- -0.08070354163646698,
- -0.029636673629283905,
- -0.022765353322029114,
- 0.034220825880765915,
- 0.041498251259326935,
- 0.04970035329461098,
- 0.045836903154850006,
- 0.05513589084148407,
- 0.005937146954238415,
- -0.030105680227279663,
- -0.038586463779211044,
- -0.027840379625558853,
- 0.0029779640026390553,
- 0.04994271323084831,
- 0.0058436826802790165,
- -0.013593826442956924,
- -0.02214580774307251,
- 0.03495178744196892,
- 0.08026580512523651,
- 0.1345413327217102,
- 0.003935924265533686,
- 0.07853403687477112,
- -0.003783089341595769,
- -0.014743913896381855,
- 0.007851297967135906,
- -0.053714726120233536,
- 0.037635840475559235,
- -0.02669869177043438,
- -0.11786407977342606,
- -0.01592468097805977,
- 0.032805196940898895,
- 0.03523334860801697,
- -0.048913970589637756,
- -0.005026291124522686,
- -0.00674922950565815,
- -0.018307659775018692,
- -0.07977215945720673,
- -0.04639086127281189,
- -0.09507109224796295,
- -0.019357971847057343,
- -0.0029017189517617226,
- 0.06515352427959442,
- 0.034987837076187134,
- 0.011533263139426708,
- 0.007050696760416031,
- 0.027795156463980675,
- 0.043832626193761826,
- -0.02079499140381813,
- 0.022471776232123375,
- -0.010577459819614887,
- -0.03768058866262436,
- 0.05452657863497734,
- 0.03523923084139824,
- 4.118690126913423e-33,
- 0.005892159882932901,
- -0.037143900990486145,
- 0.010224542580544949,
- 0.0962195098400116,
- 0.016100136563181877,
- -0.03835729882121086,
- -0.021364057436585426,
- 0.06073010340332985,
- 0.044368866831064224,
- -0.03505801409482956,
- -0.014219728298485279,
- -0.009310653433203697,
- 0.0008887285948731005,
- 0.056280799210071564,
- 0.0018264964455738664,
- 0.0064918044954538345,
- 0.028550727292895317,
- 0.01134712714701891,
- 0.009401231072843075,
- 0.03311719745397568,
- -0.09043265134096146,
- -0.020229404792189598,
- 0.009281916543841362,
- -0.04794858396053314,
- -0.06465229392051697,
- 0.04413611441850662,
- 0.0725138708949089,
- 0.0830710232257843,
- -0.08004672080278397,
- -0.01859237812459469,
- 0.0406411848962307,
- -0.05275491252541542,
- -0.005204311106353998,
- 0.11652984470129013,
- -0.04078121855854988,
- 0.04571821913123131,
- 0.08687088638544083,
- 0.09790781885385513,
- -0.010834316723048687,
- 0.03282605856657028,
- 0.054948870092630386,
- 0.10480291396379471,
- -0.06263602524995804,
- 0.05917437747120857,
- -0.008666325360536575,
- -0.04172728583216667,
- -0.004212893079966307,
- -0.06267950683832169,
- 0.026623966172337532,
- 0.0539485402405262,
- 0.053819797933101654,
- -0.043200939893722534,
- 0.032949622720479965,
- -0.06513075530529022,
- -0.028781278058886528,
- -0.028472352772951126,
- 0.0009120127651840448,
- -0.006826119031757116,
- 0.015056861564517021,
- -0.007927384227514267,
- -0.036671023815870285,
- 0.03255952522158623,
- -0.06683775037527084,
- 0.006917813792824745,
- -0.07610978931188583,
- 0.011942969635128975,
- -0.08394289761781693,
- -0.035663165152072906,
- -0.03243622928857803,
- 0.04469755291938782,
- -0.06600411236286163,
- 0.06749915331602097,
- 0.04248063638806343,
- 0.0051587047055363655,
- 0.08847425132989883,
- -0.05511433258652687,
- -0.10090257972478867,
- -0.04438644275069237,
- -0.057719405740499496,
- -0.11199959367513657,
- -0.042737994343042374,
- -0.05329184979200363,
- -0.02916344255208969,
- 0.04391578584909439,
- -0.09512531012296677,
- 0.007432449143379927,
- 0.03571144491434097,
- 0.04701205715537071,
- 0.03313308581709862,
- 0.0013168920995667577,
- -0.043293651193380356,
- 0.026517758145928383,
- 0.003150586038827896,
- 0.058893341571092606,
- -0.0647500604391098,
- -1.2321611286836287e-8,
- -0.01319928839802742,
- 0.04783518612384796,
- 0.05217454582452774,
- -0.023571403697133064,
- 0.03406733646988869,
- 0.07686300575733185,
- 0.03167083114385605,
- -0.013748016208410263,
- 0.01480693370103836,
- -0.04068567231297493,
- 0.021451037377119064,
- -0.005516100209206343,
- 0.06542016565799713,
- 0.07356717437505722,
- 0.01824905164539814,
- -0.06104082614183426,
- 0.004722935147583485,
- 0.0707397535443306,
- -0.10092450678348541,
- 0.009802509099245071,
- 0.02964583970606327,
- -0.03584251552820206,
- 0.03898804262280464,
- -0.049994464963674545,
- 0.09752897173166275,
- -0.008607011288404465,
- 0.012796065770089626,
- 0.08843760192394257,
- 0.014209290966391563,
- 0.07027123123407364,
- -0.007235927041620016,
- 0.08206067979335785,
- -0.021453985944390297,
- -0.056859247386455536,
- -0.004149960819631815,
- 0.026796970516443253,
- 0.06645426899194717,
- -0.029787125065922737,
- -0.005004648584872484,
- -0.044529154896736145,
- -0.013348685577511787,
- 0.03572554141283035,
- -0.08714113384485245,
- -0.03008391335606575,
- 0.03360016644001007,
- -0.04447336494922638,
- -0.021883638575673103,
- -0.06884295493364334,
- -0.07731197029352188,
- 0.019352322444319725,
- 0.061258088797330856,
- -0.00033995709964074194,
- 0.042185667902231216,
- 0.0516330860555172,
- 0.04878731071949005,
- 0.059978872537612915,
- 0.06399718672037125,
- -0.012518729083240032,
- -0.02291109785437584,
- 0.020580071955919266,
- 0.051477883011102676,
- 0.08527061343193054,
- -0.048163071274757385,
- 0.006183733232319355
- ]
- },
- {
- "keyword": "guide",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03701269254088402,
- 0.04287822172045708,
- -0.033312030136585236,
- 0.015694549307227135,
- 0.004992253612726927,
- 0.03016153909265995,
- 0.03188924863934517,
- -0.005056510679423809,
- -0.11975148320198059,
- -0.03446784242987633,
- 0.006159837823361158,
- 0.056508202105760574,
- -0.028534293174743652,
- -0.022897915914654732,
- -0.02431265264749527,
- 0.0034870554227381945,
- -0.006172618828713894,
- -0.03845198452472687,
- 0.03008722886443138,
- -0.08356986194849014,
- 0.0274029728025198,
- 0.04474231228232384,
- 0.009904792532324791,
- -0.046289727091789246,
- -0.060114145278930664,
- 0.04319509491324425,
- -0.016992805525660515,
- -0.01097101904451847,
- 0.0070463684387505054,
- -0.07545793801546097,
- -0.03136615455150604,
- -0.025235120207071304,
- -0.012276691384613514,
- -0.02250175178050995,
- -0.006590601988136768,
- 0.0462338961660862,
- 0.06923816353082657,
- 0.0215282179415226,
- -0.02661462500691414,
- 0.014613738283514977,
- 0.025752784684300423,
- -0.00876922532916069,
- -0.017034340649843216,
- -0.005800583865493536,
- 0.05575818940997124,
- 0.06290703266859055,
- -0.025322765111923218,
- -0.0691579133272171,
- 0.03646979108452797,
- 0.010467076674103737,
- -0.13308541476726532,
- -0.03144556283950806,
- -0.07755237817764282,
- 0.03629366308450699,
- 0.08405634760856628,
- 0.0393403135240078,
- -0.008861306123435497,
- 0.00884468387812376,
- 0.038020744919776917,
- -0.007406481076031923,
- 0.10753828287124634,
- -0.006515508983284235,
- -0.12123874574899673,
- 0.0367400087416172,
- -0.0013342212187126279,
- -0.01613069325685501,
- -0.0001534291368443519,
- 0.017863761633634567,
- 0.01799810864031315,
- -0.0722745731472969,
- -0.11261829733848572,
- 0.0104245999827981,
- 0.02206098847091198,
- 0.011981296353042126,
- 0.008965078741312027,
- 0.009983217343688011,
- -0.0036701199132949114,
- -0.04820774123072624,
- 0.008151073940098286,
- -0.08978371322154999,
- -0.09628759324550629,
- 0.018869077786803246,
- 0.006368533242493868,
- 0.07409597188234329,
- -0.002054409822449088,
- 0.010589342564344406,
- 0.03261818736791611,
- -0.014941023662686348,
- 0.00912718940526247,
- 0.0556437224149704,
- 0.07461033761501312,
- -0.0406908355653286,
- -0.01606319099664688,
- -0.011657195165753365,
- -0.09175892174243927,
- 0.057110678404569626,
- -0.01054338552057743,
- -0.09575039893388748,
- -0.05539310351014137,
- 0.28615546226501465,
- -0.0035840230993926525,
- -0.05050177499651909,
- -0.009157421067357063,
- -0.018220961093902588,
- -0.03900633379817009,
- -0.06461647152900696,
- 0.017459645867347717,
- 0.06487102806568146,
- 0.012253036722540855,
- -0.06442682445049286,
- -0.050055261701345444,
- 0.03355821222066879,
- -0.07285995036363602,
- 0.012046178802847862,
- 0.025833308696746826,
- 0.015958676114678383,
- 0.003076007589697838,
- 0.05155924707651138,
- 0.08222777396440506,
- 0.06959418952465057,
- -0.009512598626315594,
- -0.001552124391309917,
- 0.03866233304142952,
- 0.024448899552226067,
- -0.016410386189818382,
- -0.07625500112771988,
- -0.00320891453884542,
- -6.83907462222604e-33,
- 0.053323473781347275,
- 0.08059041202068329,
- -0.006550238933414221,
- 0.09414035826921463,
- 0.020620612427592278,
- 0.014282088726758957,
- -0.031509917229413986,
- 0.011326768435537815,
- -0.07448215782642365,
- 0.0694090723991394,
- 0.052568476647138596,
- -0.01782061532139778,
- -0.10110174864530563,
- -0.006100724451243877,
- -0.010309692472219467,
- -0.027842087671160698,
- 0.01573902741074562,
- 0.09687113761901855,
- -0.04071185365319252,
- -0.05433852598071098,
- -0.04075827822089195,
- 0.0502939410507679,
- 0.013311002403497696,
- -0.054567016661167145,
- 0.028047194704413414,
- 0.01547461748123169,
- -0.018005939200520515,
- 0.0010804012417793274,
- 0.07532351464033127,
- 0.029467882588505745,
- 0.008444764651358128,
- -0.002854714635759592,
- -0.02390683814883232,
- -0.041751109063625336,
- -0.016341082751750946,
- 0.0656450092792511,
- -0.027801452204585075,
- -0.07962703704833984,
- -0.0024459182750433683,
- -0.07364567369222641,
- -0.07094580680131912,
- 0.010176477022469044,
- -0.03281779587268829,
- -0.025473851710557938,
- -0.005465602036565542,
- 0.08980698138475418,
- 0.06645172834396362,
- -0.009814150631427765,
- 0.018080998212099075,
- 0.02426161989569664,
- -0.05493321642279625,
- -0.04400207847356796,
- -0.021560639142990112,
- -0.0031201255042105913,
- -0.008831671439111233,
- -0.04245170205831528,
- 0.03630449250340462,
- 0.01893322914838791,
- -0.012237979099154472,
- 0.010000880807638168,
- 0.09959209710359573,
- 0.0645277127623558,
- -0.04335394874215126,
- 0.04781745374202728,
- -0.009166918694972992,
- 0.001882272306829691,
- -0.0787125825881958,
- -0.054594818502664566,
- 0.03216337785124779,
- -0.07656779885292053,
- -0.11151357740163803,
- 0.06741861999034882,
- 0.09360956400632858,
- 0.07019168138504028,
- -0.05615682154893875,
- -0.03361406549811363,
- -0.047921858727931976,
- -0.026722276583313942,
- 0.01104338001459837,
- -0.05678495392203331,
- -0.13189037144184113,
- 0.023127125576138496,
- -0.02691357396543026,
- 0.060331396758556366,
- 0.04502217844128609,
- -0.0003531742549967021,
- 0.07812986522912979,
- 0.041797224432229996,
- -0.01964706741273403,
- -0.027979776263237,
- -0.09657013416290283,
- -0.01941903866827488,
- -0.011883098632097244,
- 0.04845617711544037,
- -0.02236492559313774,
- 6.0580111560084325e-33,
- 0.04542047902941704,
- -0.009293168783187866,
- 0.058132003992795944,
- 0.073496513068676,
- 0.08198379725217819,
- -0.0011417058994993567,
- -0.050126586109399796,
- 0.03351172059774399,
- 0.1286277323961258,
- -0.05494098737835884,
- -0.059595752507448196,
- 0.0036705450620502234,
- 0.062193162739276886,
- 0.07773704826831818,
- -0.00817637424916029,
- -0.01219696644693613,
- 0.0236838236451149,
- -0.019585443660616875,
- -0.01801854744553566,
- -0.026363704353570938,
- -0.07916318625211716,
- -0.015146642923355103,
- 0.0046511017717421055,
- -0.03907399624586105,
- -0.0353618860244751,
- 0.025096707046031952,
- 0.0879141241312027,
- 0.0814613327383995,
- -0.07300309091806412,
- -0.04793195798993111,
- 0.0364968404173851,
- -0.02271578088402748,
- -0.00509939668700099,
- -0.04709731787443161,
- -0.05967065319418907,
- 0.10947000980377197,
- 0.05141675844788551,
- 0.019647296518087387,
- -0.04131298139691353,
- 0.04591226950287819,
- 0.04753993824124336,
- 0.052391089498996735,
- 0.035241056233644485,
- 0.009104998782277107,
- -0.03608643263578415,
- 0.018057171255350113,
- 0.12091118097305298,
- 0.019557194784283638,
- 0.01963241957128048,
- 0.06332894414663315,
- -0.012843367643654346,
- -0.030262431129813194,
- -0.0026848323177546263,
- -0.10243050009012222,
- -0.04973568394780159,
- 0.0699077844619751,
- -0.030511869117617607,
- 0.021388381719589233,
- 0.016525406390428543,
- -0.03824051469564438,
- 0.030108602717518806,
- 0.07910037785768509,
- -0.07423897087574005,
- 0.10614201426506042,
- 0.006187408231198788,
- -0.033125609159469604,
- -0.013628884218633175,
- 0.0239233560860157,
- -0.0004348869842942804,
- 0.006027410738170147,
- -0.0944162979722023,
- 0.07134832441806793,
- 0.015112055465579033,
- 0.017359567806124687,
- 0.012246116995811462,
- -0.12921889126300812,
- -0.025317436084151268,
- -0.014717064797878265,
- 0.008144653402268887,
- -0.05476050078868866,
- -0.06025844067335129,
- -0.023060306906700134,
- -0.042992766946554184,
- 0.057646408677101135,
- 0.0769292414188385,
- 0.04515771195292473,
- 0.08356425911188126,
- 0.01980297453701496,
- 0.038085706532001495,
- 0.05008711293339729,
- -0.05665402486920357,
- 0.0028051636181771755,
- 0.031227439641952515,
- 0.051094137132167816,
- -0.04058721661567688,
- -1.4691440064495964e-8,
- -0.048263873904943466,
- 0.040489207953214645,
- -0.02182125113904476,
- 0.0032881537918001413,
- 0.015064836479723454,
- 0.08241581916809082,
- 0.038008201867341995,
- 0.010519435629248619,
- 0.018068740144371986,
- 0.11223910003900528,
- 0.015212447382509708,
- -0.008309096097946167,
- 0.0675644800066948,
- 0.059646423906087875,
- 0.06802716106176376,
- -0.09792064130306244,
- 0.0028951505664736032,
- 0.02485540136694908,
- -0.0728842169046402,
- -0.0032076863572001457,
- 0.013378633186221123,
- -0.025304391980171204,
- 0.046115171164274216,
- -0.0028363200835883617,
- 0.07184523344039917,
- 0.008816453628242016,
- -0.006190897431224585,
- 0.05344616621732712,
- 0.06484245508909225,
- 0.0616326704621315,
- 0.0003787395544350147,
- 0.013117929920554161,
- 0.0035694201942533255,
- 0.022542854771018028,
- -0.03453869745135307,
- 0.060768671333789825,
- -0.004423769190907478,
- -0.006665937136858702,
- 0.0007500597857870162,
- 0.09724138677120209,
- 0.0023611229844391346,
- 0.019895996898412704,
- 0.02350863628089428,
- -0.026620429009199142,
- -0.07790012657642365,
- 0.004731940571218729,
- 0.006227708421647549,
- -0.07352601736783981,
- -0.0778927356004715,
- -0.04634866490960121,
- 0.009049095213413239,
- -0.04789173603057861,
- 0.05245865508913994,
- 0.009563900530338287,
- 0.08348820358514786,
- 0.06686452776193619,
- 0.0630350410938263,
- -0.03673349693417549,
- -0.006914834026247263,
- 0.03595135733485222,
- 0.033534903079271317,
- -0.0045294915325939655,
- -0.027229825034737587,
- 0.027073806151747704
- ]
- },
- {
- "keyword": "handbook",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.026296300813555717,
- 0.026605645194649696,
- -0.035240013152360916,
- -0.011267593130469322,
- -0.003160440130159259,
- 0.013188247568905354,
- 0.06286986917257309,
- 0.027154693379998207,
- -0.11364270001649857,
- 0.026291226968169212,
- -0.013021999038755894,
- 0.09167693555355072,
- 0.011374526657164097,
- -0.06068212166428566,
- -0.03677099943161011,
- 0.0013524122769013047,
- 0.014504042454063892,
- 0.020236674696207047,
- 0.05137539282441139,
- -0.08640033006668091,
- 0.04384101927280426,
- 0.026085002347826958,
- 0.019605368375778198,
- -0.02518795058131218,
- -0.06993455439805984,
- 0.024725934490561485,
- -0.008072316646575928,
- -0.02597760409116745,
- -0.039387237280607224,
- -0.06961964815855026,
- -0.0036009515170007944,
- 0.012560104951262474,
- 0.04477042332291603,
- -0.07747159898281097,
- -0.048335686326026917,
- 0.04458993673324585,
- 0.0797976702451706,
- -0.06524187326431274,
- 0.02485455758869648,
- 0.016280461102724075,
- -0.0002644607739057392,
- -0.02511393092572689,
- -0.06938373297452927,
- 0.00864915270358324,
- 0.056661732494831085,
- 0.0608399324119091,
- -0.023807194083929062,
- -0.040070317685604095,
- -0.04960710555315018,
- 0.007754310499876738,
- 0.008517107926309109,
- -0.02115199714899063,
- 0.0026773635763674974,
- 0.05722057446837425,
- 0.028550999239087105,
- 0.11198267340660095,
- -0.0324040949344635,
- -0.018346238881349564,
- -0.03356465697288513,
- -0.033570609986782074,
- 0.05297365412116051,
- -0.018756087869405746,
- -0.10542743653059006,
- 0.03739773854613304,
- 0.10269328206777573,
- 0.04695253074169159,
- 0.02538420259952545,
- 0.011588092893362045,
- 0.040134865790605545,
- -0.07392832636833191,
- -0.1743260771036148,
- 0.004231513012200594,
- 0.03613097965717316,
- 0.010152293369174004,
- -0.019001618027687073,
- -0.023567335680127144,
- -0.01746460422873497,
- -0.052559733390808105,
- 0.07744935154914856,
- -0.07814879715442657,
- -0.08180440962314606,
- 0.05058327317237854,
- 0.057640112936496735,
- -0.04733431711792946,
- 0.0505765937268734,
- 0.021256377920508385,
- 0.004812929779291153,
- -0.010268205776810646,
- 0.04719061404466629,
- 0.04061729088425636,
- 0.044660285115242004,
- -0.004012684337794781,
- 0.024779001250863075,
- 0.001198510522954166,
- -0.08637557178735733,
- 0.03247382491827011,
- -0.040060855448246,
- -0.08126351237297058,
- -0.006528669502586126,
- 0.23525799810886383,
- 0.0007763547473587096,
- -0.06592635810375214,
- -0.008550542406737804,
- -0.0029451395384967327,
- -0.031099209561944008,
- -0.08193385601043701,
- -0.023462306708097458,
- 0.004504297394305468,
- -0.0006296812207438052,
- -0.02939371019601822,
- -0.04752924665808678,
- 0.0575217604637146,
- -0.06893705576658249,
- -0.05418483167886734,
- 0.06372851878404617,
- 0.008467004634439945,
- 0.10577834397554398,
- -0.0004399557365104556,
- 0.091617152094841,
- 0.01621495746076107,
- -0.05830392614006996,
- -0.019781215116381645,
- -0.03316843882203102,
- -0.010954990051686764,
- -0.011158212088048458,
- -0.07899312674999237,
- -0.05669165030121803,
- -5.7324124451421056e-33,
- -0.026459531858563423,
- 0.033696070313453674,
- -0.015886351466178894,
- 0.1197734922170639,
- 0.004777295980602503,
- -0.0006096565630286932,
- 0.02045833133161068,
- -0.03610453009605408,
- -0.03343731164932251,
- 0.08242440968751907,
- 0.03523658588528633,
- 0.08248825371265411,
- -0.04757959768176079,
- -0.008242003619670868,
- 0.016162855550646782,
- -0.050386276096105576,
- -0.07994937896728516,
- 0.09818842262029648,
- -0.04310552775859833,
- -0.06523129343986511,
- -0.0033421306870877743,
- 0.04348171874880791,
- 0.020543845370411873,
- 0.038241419941186905,
- 0.04561616852879524,
- 0.08221051096916199,
- -0.016567938029766083,
- -0.059945203363895416,
- 0.02616884745657444,
- 0.02864367701113224,
- 0.03707122802734375,
- -0.003276490606367588,
- -0.003652268787845969,
- -0.10623738914728165,
- 0.002379940589889884,
- 0.046589843928813934,
- -0.10117219388484955,
- -0.03602789714932442,
- 0.017511090263724327,
- -0.015285550616681576,
- -0.11415833234786987,
- 0.007336748763918877,
- 0.0034486809745430946,
- -0.04988204687833786,
- 0.042297378182411194,
- 0.0712902843952179,
- 0.053731296211481094,
- 0.03699083253741264,
- 0.09707439690828323,
- 0.0006277423817664385,
- -0.038726724684238434,
- -0.005429322365671396,
- 0.0037040007300674915,
- -0.035074442625045776,
- 0.04808972775936127,
- 0.02338334545493126,
- 0.029666464775800705,
- 0.028784828260540962,
- 0.0128261037170887,
- 0.030334841459989548,
- 0.07296974211931229,
- 0.07553721219301224,
- -0.09564757347106934,
- 0.004887712188065052,
- 0.025740982964634895,
- -0.01795286312699318,
- -0.06044338271021843,
- -0.010009242221713066,
- 0.05385065823793411,
- -0.09247902035713196,
- -0.05359622836112976,
- 0.04374610260128975,
- 0.06166599318385124,
- 0.01958814449608326,
- -0.048987191170454025,
- -0.03689887747168541,
- 0.019945882260799408,
- 0.019756795838475227,
- -0.06878665089607239,
- -0.04179560765624046,
- -0.07415028661489487,
- -0.011987508274614811,
- -0.02830704301595688,
- -0.03756318986415863,
- -0.0343242846429348,
- 0.01979406736791134,
- 0.037526387721300125,
- -0.03145190328359604,
- -0.033546220511198044,
- 0.03194655478000641,
- 0.023637572303414345,
- 0.004236363340169191,
- 0.01118522696197033,
- 0.0971812754869461,
- -0.0242361668497324,
- 3.749411147996494e-33,
- 0.08780872076749802,
- -0.08226573467254639,
- 0.004425059538334608,
- 0.05518225207924843,
- 0.08817098289728165,
- 0.025870047509670258,
- -0.057831455022096634,
- 0.11917801201343536,
- -0.028737980872392654,
- -0.04549156129360199,
- -0.055034272372722626,
- 0.0051131178624928,
- 0.04588780924677849,
- 0.053640276193618774,
- -0.01673230342566967,
- -0.04363559931516647,
- -0.0013798577710986137,
- -0.04527882859110832,
- -0.0015879110433161259,
- -0.007336052134633064,
- 0.012327146716415882,
- 0.05275123566389084,
- -0.005888075567781925,
- -0.03950074315071106,
- 0.010067648254334927,
- 0.0013441152404993773,
- 0.00428470503538847,
- 0.004842405207455158,
- -0.0418718121945858,
- -0.019714554771780968,
- -0.037867188453674316,
- 0.022774748504161835,
- -0.05524228513240814,
- 0.0010801118332892656,
- -0.04867913946509361,
- -0.026265960186719894,
- 0.06564781814813614,
- 0.031022870913147926,
- -0.048497822135686874,
- 0.018583184108138084,
- 0.010201559402048588,
- 0.03349979966878891,
- -0.010589506477117538,
- -0.016497517004609108,
- -0.07367385178804398,
- -0.017792491242289543,
- 0.0009521037572994828,
- -0.01931707374751568,
- -0.027517814189195633,
- 0.03281206637620926,
- 0.048731040209531784,
- -0.03871788829565048,
- -0.04673340544104576,
- -0.08759765326976776,
- -0.04576803371310234,
- 0.020832113921642303,
- 0.008514384739100933,
- -0.05145033076405525,
- 0.03486720100045204,
- 0.005567851942032576,
- 0.00010758206917671487,
- 0.028361979871988297,
- -0.1015249639749527,
- 0.13618598878383636,
- -0.010683776810765266,
- 0.021271098405122757,
- -0.017107253894209862,
- 0.04145091027021408,
- 0.1008051261305809,
- -0.0027804796118289232,
- -0.050241872668266296,
- 0.08783940225839615,
- 0.04587165266275406,
- 0.028721550479531288,
- -0.018127456307411194,
- -0.07940444350242615,
- -0.01714426279067993,
- -0.05707339197397232,
- -0.07762753218412399,
- -0.03815983235836029,
- -0.08949816226959229,
- -0.0046155392192304134,
- -0.03652436286211014,
- 0.1298687905073166,
- 0.07301126420497894,
- 0.0284382663667202,
- 0.05962487682700157,
- -0.0754096731543541,
- -0.04334809631109238,
- -0.007721498608589172,
- -0.03231845051050186,
- 0.047035008668899536,
- -0.02592310681939125,
- 0.140090674161911,
- 0.014397568069398403,
- -1.4269131654032208e-8,
- -0.012373524717986584,
- 0.07403133809566498,
- -0.016853826120495796,
- -0.04045558720827103,
- -0.025925928726792336,
- 0.03380191698670387,
- 0.07204234600067139,
- 0.04721822217106819,
- -0.014357157982885838,
- 0.0804641917347908,
- 0.04621908813714981,
- -0.006295282859355211,
- 0.0431576743721962,
- 0.05404386296868324,
- 0.031365394592285156,
- -0.07566266506910324,
- -0.01660146377980709,
- 0.06112657114863396,
- -0.10826633125543594,
- 0.02663673646748066,
- 0.030929189175367355,
- 0.0038892943412065506,
- 0.05301668867468834,
- -0.04889910668134689,
- 0.053381334990262985,
- 0.060078490525484085,
- 0.005492388736456633,
- 0.013459544628858566,
- -0.01792757585644722,
- -0.0257067009806633,
- -0.024299561977386475,
- 0.10753706842660904,
- -0.008291773498058319,
- -0.06620510667562485,
- -0.01338768657296896,
- 0.08269801735877991,
- 0.05978255718946457,
- 0.005543294828385115,
- -0.027802351862192154,
- 0.06992541998624802,
- -0.07416421920061111,
- 0.02686361037194729,
- -0.0075790914706885815,
- -0.001649404875934124,
- 0.025928640738129616,
- 0.03813521936535835,
- -0.08290832489728928,
- 0.04044318571686745,
- 0.0038550349418073893,
- 0.06917378306388855,
- 0.07132362574338913,
- -0.007003662176430225,
- 0.08727771043777466,
- 0.0539720356464386,
- -0.01068977452814579,
- 0.014504005201160908,
- 0.007548462599515915,
- -0.0190277062356472,
- -0.023189065977931023,
- -0.04096948727965355,
- 0.06786574423313141,
- 0.015058217570185661,
- 0.009304600767791271,
- -0.0213517714291811
- ]
- },
- {
- "keyword": "reference",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.01152399368584156,
- 0.07383186370134354,
- -0.03462719917297363,
- 0.10436702519655228,
- -0.029875600710511208,
- -0.06174745410680771,
- 0.14918848872184753,
- 0.07595954835414886,
- 0.025211425498127937,
- 0.0006400183774530888,
- 0.011864803731441498,
- 0.02176353894174099,
- 0.013493763282895088,
- -0.05400591343641281,
- -0.10553383082151413,
- 0.03141086921095848,
- 0.04562681168317795,
- -0.01714535616338253,
- -0.03037400357425213,
- 0.023959793150424957,
- -0.0418938472867012,
- 0.0609615333378315,
- 0.007432402577251196,
- 0.017878659069538116,
- -0.012028768658638,
- 0.02198038622736931,
- -0.06380603462457657,
- 0.06608398258686066,
- 0.05690229684114456,
- -0.039659690111875534,
- -0.06847409904003143,
- 0.11767344921827316,
- -0.01580372080206871,
- -0.0026543792337179184,
- -0.0335540808737278,
- 0.04347456991672516,
- 0.022740839049220085,
- 0.07238341122865677,
- 0.0021381310652941465,
- -0.02525869756937027,
- -0.0012123127235099673,
- -0.037135690450668335,
- -0.005178309045732021,
- -0.042981646955013275,
- -0.027179356664419174,
- 0.05057423189282417,
- 0.00899997167289257,
- -0.018526162952184677,
- 0.04010508581995964,
- 0.06068842113018036,
- -0.13471439480781555,
- 0.021987643092870712,
- -0.006376638077199459,
- -0.03406549245119095,
- -0.015275169163942337,
- 0.029034994542598724,
- -0.054187923669815063,
- -0.06183229386806488,
- 0.024107271805405617,
- 0.008834689855575562,
- 0.11819883435964584,
- 0.018815619871020317,
- -0.04773405194282532,
- -0.019125303253531456,
- -0.036993835121393204,
- -0.005441940389573574,
- 0.024434184655547142,
- -0.012849913910031319,
- -0.14879001677036285,
- 0.005864635109901428,
- -0.09170854836702347,
- 0.04112565889954567,
- -0.030581848695874214,
- 0.059808745980262756,
- 0.045615304261446,
- -0.018392466008663177,
- 0.05608299374580383,
- -0.045120641589164734,
- 0.021270500496029854,
- -0.03439953178167343,
- -0.0774504691362381,
- -0.038337647914886475,
- -0.030153414234519005,
- 0.017514759674668312,
- -0.028031570836901665,
- 0.03694147616624832,
- 0.04898146539926529,
- -0.07338376343250275,
- -0.04785553365945816,
- -0.0007628544117324054,
- -0.03501896932721138,
- -0.005535705015063286,
- 0.06988850980997086,
- -0.009042378515005112,
- 0.05529876425862312,
- -0.03982190415263176,
- -0.0013386757345870137,
- -0.012160358019173145,
- -0.08636347949504852,
- 0.20456641912460327,
- -0.029063966125249863,
- 0.07764230668544769,
- -0.0697183683514595,
- -0.0012283115647733212,
- -0.03715715557336807,
- -0.012559446506202221,
- -0.01608406752347946,
- 0.04504872113466263,
- 0.02716764621436596,
- -0.06519488990306854,
- -0.12709271907806396,
- -0.03137720376253128,
- -0.012736279517412186,
- 0.06406455487012863,
- -0.009786873124539852,
- -0.06024863198399544,
- 0.05059361830353737,
- -0.031424786895513535,
- -0.050696201622486115,
- -0.04644560441374779,
- 0.02896290272474289,
- 0.04858165979385376,
- -0.06195184588432312,
- 0.037851329892873764,
- -0.05172507464885712,
- -0.10836401581764221,
- -0.010640566237270832,
- -2.4023539476846703e-33,
- 0.0337795689702034,
- -0.06025971099734306,
- -0.022952282801270485,
- 0.07749183475971222,
- 0.045927293598651886,
- -0.030362633988261223,
- 0.023087037727236748,
- 0.007475013844668865,
- -0.0387885682284832,
- 0.03264668211340904,
- 0.0051988400518894196,
- 0.015039144083857536,
- -0.0800672248005867,
- -0.04851720854640007,
- 0.020584678277373314,
- 0.04087378457188606,
- -0.007838277146220207,
- 0.11344245821237564,
- -0.024748466908931732,
- -0.033544450998306274,
- -0.02075468935072422,
- 0.03737766295671463,
- 0.004820775240659714,
- 0.017693230882287025,
- 0.043480511754751205,
- 0.006645466201007366,
- -0.03712209686636925,
- -0.008433199487626553,
- -0.00626137712970376,
- -0.00009507925278740004,
- -0.004907066933810711,
- 0.032841868698596954,
- 0.03546670451760292,
- 0.011396127752959728,
- 0.012162321247160435,
- -0.05004538968205452,
- -0.029488861560821533,
- 0.01972566545009613,
- 0.014988015405833721,
- 0.01944003626704216,
- -0.033551476895809174,
- -0.01940268464386463,
- -0.04076678305864334,
- 0.011026705615222454,
- 0.02372625470161438,
- -0.02972615882754326,
- 0.03696339949965477,
- 0.005401921458542347,
- -0.03908809646964073,
- -0.06069944426417351,
- 0.053687695413827896,
- -0.004517060704529285,
- -0.04880707710981369,
- 0.015317641198635101,
- -0.09120040386915207,
- 0.020618708804249763,
- 0.007988241501152515,
- -0.017274241894483566,
- -0.03678235039114952,
- 0.05882077291607857,
- 0.0029303974006325006,
- 0.06178094819188118,
- -0.08082962036132812,
- 0.024559330195188522,
- 0.033788636326789856,
- 0.05735592171549797,
- 0.0077013494446873665,
- -0.041968803852796555,
- 0.057983241975307465,
- -0.04483351856470108,
- 0.04676460102200508,
- -0.00800245814025402,
- 0.046977851539850235,
- 0.04999508336186409,
- -0.012125212699174881,
- -0.046710025519132614,
- -0.001970351906493306,
- 0.05804022029042244,
- -0.07288739830255508,
- -0.01742458902299404,
- -0.0141732944175601,
- -0.008356393314898014,
- 0.0175687987357378,
- 0.01841060444712639,
- 0.017503343522548676,
- -0.007787594571709633,
- -0.018266642466187477,
- -0.1519927680492401,
- -0.026839667931199074,
- -0.04568253085017204,
- -0.03785650059580803,
- 0.018235741183161736,
- 0.020203622058033943,
- -0.022500328719615936,
- -0.06713417917490005,
- 1.750079662924068e-33,
- 0.016369890421628952,
- 0.014350258745253086,
- 0.009742776863276958,
- 0.10137316584587097,
- 0.08729924261569977,
- -0.002526060910895467,
- 0.07308204472064972,
- 0.07792730629444122,
- 0.016566280275583267,
- 0.04703739285469055,
- -0.06813887506723404,
- -0.03154050558805466,
- 0.08661749213933945,
- -0.018706925213336945,
- 0.050895802676677704,
- -0.03755675256252289,
- 0.0723285973072052,
- 0.017656492069363594,
- -0.07532192021608353,
- -0.009291638620197773,
- -0.031951360404491425,
- -0.06490124762058258,
- -0.027839509770274162,
- 0.010454503819346428,
- -0.10322819650173187,
- 0.06127973645925522,
- 0.11274910718202591,
- -0.056362003087997437,
- -0.010428065434098244,
- -0.02954687736928463,
- 0.01974470354616642,
- -0.010419868864119053,
- -0.05614915117621422,
- -0.010490071959793568,
- 0.021391624584794044,
- 0.10278039425611496,
- 0.05938997119665146,
- 0.026869500055909157,
- -0.04103386029601097,
- 0.013759361580014229,
- 0.10164490342140198,
- 0.05901522934436798,
- -0.06721083074808121,
- 0.07580976188182831,
- -0.0756140649318695,
- 0.021452855318784714,
- 0.09085147082805634,
- 0.04486354440450668,
- 0.06294433027505875,
- 0.006297234911471605,
- -0.10332106053829193,
- -0.0253402478992939,
- -0.05721135810017586,
- -0.05873703211545944,
- -0.07409051060676575,
- -0.03396505489945412,
- -0.0003693343314807862,
- 0.04490610584616661,
- 0.03812694177031517,
- -0.019524909555912018,
- -0.041451942175626755,
- 0.038647521287202835,
- -0.020304100587964058,
- 0.012763341888785362,
- 0.00976476538926363,
- -0.021967120468616486,
- -0.07065118849277496,
- -0.00640273280441761,
- 0.0596717968583107,
- -0.016810746863484383,
- 0.003002007259055972,
- 0.058196309953927994,
- -0.040603529661893845,
- 0.03939574956893921,
- 0.03603566810488701,
- -0.02807195670902729,
- -0.06443461775779724,
- 0.0839172825217247,
- -0.07596627622842789,
- -0.03123101219534874,
- -0.08244118839502335,
- -0.03266458958387375,
- -0.04870644584298134,
- 0.10280264914035797,
- 0.006425543688237667,
- 0.014962534420192242,
- 0.048336055129766464,
- -0.022925253957509995,
- -0.04338719695806503,
- 0.0027704329695552588,
- -0.07589739561080933,
- -0.04090932756662369,
- -0.008559366688132286,
- -0.00433837017044425,
- -0.01696447655558586,
- -1.4736553310967793e-8,
- 0.005856979172676802,
- 0.14122933149337769,
- 0.0456591434776783,
- 0.01412931177765131,
- 0.07656150311231613,
- 0.023514274507761,
- -0.024737335741519928,
- -0.013251197524368763,
- 0.01331411488354206,
- 0.09451532363891602,
- -0.00762543361634016,
- -0.004702407401055098,
- 0.059257108718156815,
- 0.0359930582344532,
- 0.07453054934740067,
- -0.01862369477748871,
- 0.05158539116382599,
- -0.0028557507321238518,
- -0.0008036869112402201,
- 0.06652681529521942,
- -0.04578198865056038,
- 0.026188882067799568,
- 0.05641208216547966,
- 0.026825251057744026,
- 0.09621323645114899,
- 0.01285269483923912,
- -0.0022308221086859703,
- 0.12690038979053497,
- -0.015927251428365707,
- 0.04634905233979225,
- 0.006643110420554876,
- 0.12548790872097015,
- -0.09262210875749588,
- -0.08472003787755966,
- -0.036459971219301224,
- 0.01809709146618843,
- -0.005351237487047911,
- -0.051099713891744614,
- 0.01915142871439457,
- 0.04842350259423256,
- -0.011556241661310196,
- -0.020236436277627945,
- 0.04408097267150879,
- -0.014409977942705154,
- -0.03187531232833862,
- -0.02802070789039135,
- 0.02218795195221901,
- -0.014763576909899712,
- 0.04445144906640053,
- -0.03377414494752884,
- -0.02072295732796192,
- 0.0427912138402462,
- 0.04793868958950043,
- 0.034836456179618835,
- 0.10440965741872787,
- -0.03944922983646393,
- -0.005294848699122667,
- -0.03859980031847954,
- -0.053153857588768005,
- 0.017601177096366882,
- 0.15769460797309875,
- -0.030848421156406403,
- 0.03426364064216614,
- 0.03602113202214241
- ]
- },
- {
- "keyword": "documentation",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06821151822805405,
- 0.05712813138961792,
- -0.03625352680683136,
- 0.029275968670845032,
- 0.0017719944007694721,
- -0.028322823345661163,
- 0.010821402072906494,
- 0.09234590083360672,
- -0.04240208491683006,
- 0.022339625284075737,
- -0.014219333417713642,
- 0.038930200040340424,
- 0.022222667932510376,
- -0.02294749952852726,
- -0.01305873692035675,
- -0.018954142928123474,
- 0.0001435890735592693,
- -0.016319839283823967,
- -0.01790703646838665,
- -0.02414936013519764,
- 0.06036700680851936,
- 0.022749055176973343,
- -0.03277067095041275,
- 0.00017388658307027072,
- -0.019424080848693848,
- 0.02361016906797886,
- -0.03840190917253494,
- -0.04900597035884857,
- 0.040109723806381226,
- -0.05586301535367966,
- -0.0485360212624073,
- 0.03883907571434975,
- 0.054391343146562576,
- -0.010777018032968044,
- -0.007145003881305456,
- 0.04341882839798927,
- 0.09013286232948303,
- -0.044285260140895844,
- 0.036182209849357605,
- 0.005153346341103315,
- -0.03422641009092331,
- -0.06761148571968079,
- -0.07001957297325134,
- 0.002487239195033908,
- 0.04048408195376396,
- 0.04125538840889931,
- -0.0494205504655838,
- -0.044767916202545166,
- -0.07172799110412598,
- 0.030130868777632713,
- -0.12503588199615479,
- -0.017404932528734207,
- 0.004668476525694132,
- 0.015261995606124401,
- 0.06047489494085312,
- 0.010843735188245773,
- 0.006391413509845734,
- 0.014888397417962551,
- -0.04764416068792343,
- -0.09766317903995514,
- 0.06864374876022339,
- 0.028268739581108093,
- -0.10677219927310944,
- 0.08008601516485214,
- 0.06371842324733734,
- 0.0325973778963089,
- -0.0073898243717849255,
- 0.054722633212804794,
- 0.03240450844168663,
- -0.06096440553665161,
- -0.13995161652565002,
- -0.030215077102184296,
- -0.0006156989256851375,
- -0.01804414764046669,
- 0.02054734155535698,
- -0.05179387331008911,
- 0.004752298351377249,
- 0.045895397663116455,
- -0.011292602866888046,
- -0.11844629794359207,
- -0.014862905256450176,
- 0.06256665289402008,
- 0.028132662177085876,
- 0.06954166293144226,
- -0.05802736058831215,
- 0.035267915576696396,
- 0.0812479555606842,
- 0.033316005021333694,
- 0.043728385120630264,
- 0.04505973681807518,
- 0.06131107732653618,
- -0.0953356921672821,
- 0.027761947363615036,
- -0.030696241185069084,
- -0.0680670365691185,
- 0.04727545753121376,
- -0.028937002643942833,
- -0.10707810521125793,
- 0.05709310248494148,
- 0.23154491186141968,
- 0.029819723218679428,
- -0.01389546412974596,
- 0.08880037069320679,
- -0.04271222651004791,
- -0.02876919135451317,
- -0.0542878694832325,
- -0.04662454500794411,
- -0.027923820540308952,
- 0.05484141409397125,
- 0.010655704885721207,
- -0.020605096593499184,
- 0.0396563857793808,
- -0.1703583300113678,
- -0.0296788290143013,
- 0.0095855463296175,
- 0.018485287204384804,
- 0.006303312722593546,
- 0.002180754439905286,
- 0.049801137298345566,
- -0.01935580186545849,
- -0.023377347737550735,
- 0.03730221465229988,
- 0.00948568619787693,
- -0.012220011092722416,
- -0.026827435940504074,
- -0.04891728237271309,
- -0.005263609811663628,
- -6.330417645474097e-33,
- 0.0651257112622261,
- 0.014164122752845287,
- -0.07856708765029907,
- 0.10591050982475281,
- 0.047327958047389984,
- 0.005752367898821831,
- 0.020497772842645645,
- -0.03345927968621254,
- -0.04777536541223526,
- 0.008977627381682396,
- 0.0552242286503315,
- 0.09761708974838257,
- -0.011206494644284248,
- 0.006263555493205786,
- -0.0533805713057518,
- 0.010367264971137047,
- -0.07472748309373856,
- 0.0938551053404808,
- 0.002850003307685256,
- 0.000922084494959563,
- -0.0016615388449281454,
- -0.03771781548857689,
- 0.05044073611497879,
- 0.062168579548597336,
- 0.08200599998235703,
- 0.08874624967575073,
- -0.016892941668629646,
- -0.05088404566049576,
- -0.01963459514081478,
- -0.007725412491708994,
- 0.0650804340839386,
- -0.024600844830274582,
- 0.029377339407801628,
- -0.07427428662776947,
- 0.013856103643774986,
- 0.07837752997875214,
- -0.05988971143960953,
- -0.04030698165297508,
- 0.04516301304101944,
- -0.0673932209610939,
- -0.0502731092274189,
- -0.04597337543964386,
- -0.022717177867889404,
- -0.04431743174791336,
- 0.04797272011637688,
- 0.03652065247297287,
- -0.007182270288467407,
- -0.029308391734957695,
- 0.13447241485118866,
- -0.01664428785443306,
- -0.010417918674647808,
- 0.01763223297894001,
- -0.011860684491693974,
- -0.016516340896487236,
- 0.057288434356451035,
- -0.016984080895781517,
- -0.01734459027647972,
- 0.01766398549079895,
- -0.03285465016961098,
- 0.027139486744999886,
- 0.07187904417514801,
- 0.07055825740098953,
- -0.03213651105761528,
- -0.004627027548849583,
- -0.05522897467017174,
- -0.022213926538825035,
- -0.12139104306697845,
- -0.010430258698761463,
- 0.09065786749124527,
- -0.06685146689414978,
- -0.11759458482265472,
- 0.0003778414102271199,
- -0.028177885338664055,
- 0.007213078439235687,
- -0.024739379063248634,
- -0.03424505889415741,
- 0.00995681993663311,
- -0.04216976463794708,
- -0.04453662410378456,
- -0.002115726936608553,
- -0.09618832170963287,
- -0.03852732479572296,
- 0.02605571784079075,
- 0.05281197279691696,
- 0.00895851943641901,
- 0.04179343953728676,
- 0.046293262392282486,
- 0.03987913951277733,
- -0.014177491888403893,
- -0.018619677051901817,
- -0.0007224621949717402,
- 0.0182263795286417,
- -0.06963391602039337,
- -0.0238417387008667,
- 0.0665203332901001,
- 2.653549927286693e-33,
- 0.005000205244868994,
- -0.052508432418107986,
- -0.010523825883865356,
- 0.06667546182870865,
- -0.05647363141179085,
- 0.02843802236020565,
- 0.01101000513881445,
- 0.06471705436706543,
- 0.019308527931571007,
- -0.010645541362464428,
- -0.021879596635699272,
- -0.0000714780471753329,
- 0.007520817220211029,
- 0.007207891903817654,
- -0.05262664332985878,
- -0.05208537355065346,
- -0.054139189422130585,
- -0.0548226423561573,
- 0.01952851004898548,
- 0.03884907811880112,
- -0.06460052728652954,
- -0.00412030192092061,
- 0.028419336304068565,
- 0.005484236869961023,
- 0.013229397125542164,
- -0.014182589016854763,
- 0.055748771876096725,
- -0.060983601957559586,
- -0.002076648874208331,
- -0.06402994692325592,
- 0.07755690068006516,
- -0.04131646454334259,
- -0.05042314529418945,
- 0.04285542294383049,
- -0.028017612174153328,
- -0.05903350189328194,
- 0.06052844598889351,
- 0.07373958826065063,
- -0.015763135626912117,
- -0.023860080167651176,
- 0.12116775661706924,
- 0.016494672745466232,
- -0.011977710761129856,
- -0.036549508571624756,
- -0.05860218033194542,
- -0.0068741352297365665,
- 0.0005007090512663126,
- 0.0029171586502343416,
- -0.0018111641984432936,
- -0.037873465567827225,
- 0.06970306485891342,
- -0.05113867670297623,
- 0.0584917813539505,
- -0.08433087915182114,
- -0.06436523795127869,
- 0.017733905464410782,
- 0.02467113919556141,
- -0.04223106801509857,
- 0.0030091898515820503,
- 0.015305398032069206,
- -0.006365510169416666,
- 0.061198197305202484,
- -0.04681609570980072,
- 0.08908572793006897,
- -0.07602851837873459,
- -0.09223531931638718,
- -0.050814054906368256,
- -0.042906489223241806,
- -0.04762815311551094,
- 0.04106742888689041,
- -0.05865800380706787,
- -0.02783624455332756,
- -0.048946164548397064,
- 0.010350795462727547,
- 0.10537024587392807,
- -0.013160335831344128,
- -0.07439225167036057,
- -0.0786328911781311,
- -0.06532152742147446,
- -0.062296461313962936,
- 0.02825292758643627,
- 0.033154506236314774,
- -0.005329558625817299,
- 0.06662614643573761,
- 0.040339767932891846,
- -0.006092708092182875,
- 0.04559262469410896,
- 0.003958695102483034,
- -0.006415653042495251,
- -0.015393056906759739,
- -0.07362207770347595,
- 0.04913625866174698,
- -0.02201344631612301,
- 0.09610354155302048,
- -0.044988323003053665,
- -1.3465121462274965e-8,
- -0.06296496093273163,
- 0.047065723687410355,
- 0.0468624085187912,
- -0.05313899740576744,
- -0.021182915195822716,
- 0.06115487217903137,
- 0.015608003363013268,
- 0.023107193410396576,
- -0.0009880401194095612,
- 0.04523828998208046,
- 0.0020419065840542316,
- 0.0062608299776911736,
- -0.03864928334951401,
- 0.0036902446299791336,
- 0.038559749722480774,
- 0.05430803820490837,
- 0.0510936863720417,
- 0.032628174871206284,
- -0.06668372452259064,
- 0.009747655130922794,
- -0.007733464241027832,
- -0.030448805540800095,
- 0.029233504086732864,
- -0.003016750793904066,
- 0.10675593465566635,
- 0.011612770147621632,
- 0.02308676764369011,
- 0.12651431560516357,
- -0.010398943908512592,
- -0.07616429775953293,
- -0.010633904486894608,
- 0.057973895221948624,
- 0.050504617393016815,
- -0.05027230829000473,
- 0.043917249888181686,
- 0.0452304370701313,
- 0.004558333661407232,
- -0.011344500817358494,
- 0.063997782766819,
- 0.003112297970801592,
- -0.045351359993219376,
- 0.04412226751446724,
- 0.006179053336381912,
- -0.0008751011337153614,
- 0.062042150646448135,
- 0.06385120749473572,
- -0.041054632514715195,
- -0.0440618172287941,
- -0.06181703880429268,
- 0.0017735970905050635,
- -0.04151538014411926,
- -0.03557119891047478,
- 0.06631006300449371,
- 0.0763516053557396,
- -0.042945340275764465,
- 0.06432092934846878,
- 0.0352998748421669,
- -0.0183566901832819,
- 0.054540690034627914,
- -0.08395493775606155,
- 0.04564598947763443,
- 0.1458127349615097,
- 0.029783207923173904,
- 0.04051581025123596
- ]
- },
- {
- "keyword": "tutorial",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.06386668980121613,
- 0.010891563259065151,
- -0.0517626516520977,
- 0.050829652696847916,
- -0.026173951104283333,
- -0.03509993106126785,
- 0.05427064374089241,
- 0.0353604257106781,
- -0.08262314647436142,
- 0.032843247056007385,
- 0.059463176876306534,
- -0.028652086853981018,
- 0.02428147941827774,
- -0.06636296212673187,
- -0.022892381995916367,
- -0.009080082178115845,
- -0.033266618847846985,
- 0.0001513778988737613,
- -0.03925701975822449,
- -0.08559098839759827,
- -0.023710906505584717,
- -0.046733558177948,
- -0.01384376548230648,
- -0.014779669232666492,
- 0.016661595553159714,
- 0.026018090546131134,
- 0.009020580910146236,
- 0.09079062193632126,
- 0.10277619957923889,
- -0.06626586616039276,
- 0.01805872842669487,
- 0.0027937358245253563,
- 0.01634662039577961,
- -0.03468657657504082,
- -0.03948868066072464,
- -0.04127001389861107,
- 0.04573894292116165,
- -0.0060140895657241344,
- -0.060464899986982346,
- 0.039941057562828064,
- -0.02539491280913353,
- -0.046539969742298126,
- -0.004403075203299522,
- -0.049624696373939514,
- 0.0007495686877518892,
- -0.01451049093157053,
- -0.012675660662353039,
- -0.028865022584795952,
- 0.04048410803079605,
- -0.02794395387172699,
- -0.06576187908649445,
- -0.08432415127754211,
- 0.010481797158718109,
- -0.025030624121427536,
- 0.021313393488526344,
- 0.045028090476989746,
- -0.024722877889871597,
- 0.025817180052399635,
- 0.026830662041902542,
- -0.06328823417425156,
- 0.10295760631561279,
- -0.013182070106267929,
- -0.05402083322405815,
- 0.042848922312259674,
- 0.062110673636198044,
- -0.0609406903386116,
- -0.02323809452354908,
- 0.02440319024026394,
- 0.00011254257697146386,
- -0.01856493204832077,
- -0.1570587456226349,
- -0.012879383750259876,
- -0.07208769768476486,
- 0.0454876534640789,
- 0.001409198041073978,
- -0.05504913628101349,
- -0.04225819557905197,
- -0.003966858144849539,
- -0.002208653138950467,
- -0.017223883420228958,
- -0.020865919068455696,
- -0.014508534222841263,
- -0.002988629275932908,
- 0.08711472898721695,
- 0.011071574874222279,
- 0.051893483847379684,
- 0.01651761122047901,
- -0.013436258770525455,
- 0.0452599972486496,
- 0.028815370053052902,
- 0.11237465590238571,
- 0.017269868403673172,
- -0.03139788284897804,
- 0.008390696719288826,
- -0.06790851801633835,
- 0.0067258900962769985,
- -0.04771609231829643,
- -0.06826099753379822,
- -0.0261198952794075,
- 0.18551023304462433,
- 0.02395896054804325,
- -0.08046441525220871,
- 0.03498508408665657,
- -0.1025536060333252,
- -0.0917588323354721,
- -0.07144404947757721,
- 0.012307249009609222,
- 0.05084895342588425,
- 0.07468833029270172,
- -0.027929438278079033,
- -0.03611317649483681,
- 0.0037244344130158424,
- -0.0374985933303833,
- 0.007436996791511774,
- 0.012074249796569347,
- 0.011806405149400234,
- 0.09083319455385208,
- -0.011180597357451916,
- -0.01770634390413761,
- -0.005245721898972988,
- 0.06949274241924286,
- 0.04657778516411781,
- -0.11229606717824936,
- -0.019211795181035995,
- 0.05473582446575165,
- -0.042591504752635956,
- -0.04212507605552673,
- -2.2315474553414916e-33,
- 0.06995812803506851,
- 0.022511497139930725,
- 0.0074957204051315784,
- 0.08308825641870499,
- 0.033408209681510925,
- -0.03600019961595535,
- 0.003003143472597003,
- 0.010954602621495724,
- -0.05033935233950615,
- 0.13529591262340546,
- 0.07801371812820435,
- 0.0155296316370368,
- -0.09629569202661514,
- 0.06845968216657639,
- -0.005761848762631416,
- -0.12175153195858002,
- -0.02835722826421261,
- 0.028168680146336555,
- 0.023024756461381912,
- -0.05000877007842064,
- 0.0029566651210188866,
- -0.0013923029182478786,
- 0.05776505172252655,
- -0.049015823751688004,
- 0.04086378216743469,
- 0.16932952404022217,
- 0.04379713535308838,
- 0.011195791885256767,
- 0.05776281654834747,
- 0.009470612742006779,
- -0.049470506608486176,
- 0.04090005159378052,
- -0.11213213205337524,
- 0.016840314492583275,
- 0.040792033076286316,
- 0.027611372992396355,
- 0.021378012374043465,
- -0.03471065312623978,
- -0.0021441166754812002,
- -0.05735209211707115,
- -0.047997571527957916,
- -0.056609783321619034,
- -0.0027623907662928104,
- -0.09382300823926926,
- 0.030473856255412102,
- 0.0293614249676466,
- 0.02471202425658703,
- 0.05320810526609421,
- 0.07302209734916687,
- 0.03853058069944382,
- -0.0321267731487751,
- -0.04631008580327034,
- -0.05512266978621483,
- 0.04139354079961777,
- -0.006013177335262299,
- 0.049243565648794174,
- -0.024224160239100456,
- 0.006910332012921572,
- -0.06961420178413391,
- -0.02418965846300125,
- -0.02210173010826111,
- 0.019827259704470634,
- -0.020080382004380226,
- -0.02772683836519718,
- -0.07772309333086014,
- 0.020752741023898125,
- -0.03300837427377701,
- -0.02404753305017948,
- 0.09045320749282837,
- -0.010504062287509441,
- -0.056584060192108154,
- 0.06391362100839615,
- 0.07651888579130173,
- 0.012424667365849018,
- -0.06589803844690323,
- -0.01144077442586422,
- -0.012899607419967651,
- 0.013892392627894878,
- 0.015024447813630104,
- -0.07418441027402878,
- -0.06713242828845978,
- -0.05321222171187401,
- 0.019366268068552017,
- 0.004343634936958551,
- -0.013532706536352634,
- -0.009374165907502174,
- 0.0751921683549881,
- -0.012729299254715443,
- -0.00631488673388958,
- 0.0069679804146289825,
- -0.029382387176156044,
- -0.02291146107017994,
- -0.0011749210534617305,
- 0.02796151302754879,
- 0.011107519268989563,
- 1.399926344437002e-33,
- 0.015676038339734077,
- 0.007284985855221748,
- -0.03482832387089729,
- 0.01828630454838276,
- 0.06089906394481659,
- 0.04502098262310028,
- 0.015210059471428394,
- 0.07410318404436111,
- 0.023013010621070862,
- -0.051804762333631516,
- -0.050002239644527435,
- 0.03810601681470871,
- -0.018278684467077255,
- 0.057667214423418045,
- -0.003151174634695053,
- 0.0493609718978405,
- 0.04797355830669403,
- 0.053022243082523346,
- -0.026103448122739792,
- -0.03275555744767189,
- -0.05985742062330246,
- 0.06231757253408432,
- 0.021972056478261948,
- -0.09089142084121704,
- -0.0798509269952774,
- -0.050961218774318695,
- 0.0993061512708664,
- 0.06825099140405655,
- 0.009285171516239643,
- 0.006213983055204153,
- 0.03957477957010269,
- -0.02368353120982647,
- 0.015854232013225555,
- 0.01283932477235794,
- -0.02819042094051838,
- 0.06709330528974533,
- 0.1281319260597229,
- 0.041430044919252396,
- 0.003738013096153736,
- -0.03281964734196663,
- 0.09026379138231277,
- 0.01454223319888115,
- -0.023838898167014122,
- -0.07100073248147964,
- 0.017372088506817818,
- -0.016056613996624947,
- 0.039527252316474915,
- 0.000452092761406675,
- -0.02132645808160305,
- 0.051963333040475845,
- -0.004988358821719885,
- -0.07061965763568878,
- 0.028127875179052353,
- -0.07925450801849365,
- -0.055467408150434494,
- 0.005993016064167023,
- 0.08217311650514603,
- -0.0014522880082949996,
- 0.08678736537694931,
- -0.005441352259367704,
- -0.06323449313640594,
- 0.010229098610579967,
- 0.00017779672634787858,
- 0.023772617802023888,
- -0.07801274955272675,
- -0.04310021549463272,
- -0.08514297753572464,
- 0.00758256996050477,
- -0.02911774441599846,
- 0.043538838624954224,
- -0.11645007133483887,
- 0.10445287823677063,
- 0.0895271748304367,
- -0.05537646636366844,
- 0.055042531341314316,
- -0.08035272359848022,
- -0.03031511791050434,
- 0.05711179971694946,
- -0.05416164919734001,
- -0.07855721563100815,
- 0.09455422312021255,
- -0.051946576684713364,
- -0.03259320929646492,
- 0.01777784340083599,
- 0.011240845546126366,
- -0.009590688161551952,
- 0.1084308847784996,
- 0.03773033246397972,
- 0.026012718677520752,
- -0.04784845560789108,
- -0.1050763726234436,
- 0.10662569850683212,
- 0.07568094879388809,
- 0.0911204144358635,
- -0.02797400951385498,
- -1.3877843763054898e-8,
- -0.026410458609461784,
- 0.022815285250544548,
- 0.013642149977385998,
- 0.0095023512840271,
- -0.02296953834593296,
- 0.06772474199533463,
- 0.07668102532625198,
- -0.003880465868860483,
- -0.05539872869849205,
- -0.0022090342827141285,
- 0.03224062919616699,
- 0.0034539217595010996,
- 0.04163360968232155,
- 0.04843778908252716,
- 0.04818590730428696,
- 0.07177947461605072,
- -0.07651422172784805,
- 0.06435471773147583,
- -0.02468140609562397,
- -0.005902744363993406,
- 0.0177735835313797,
- -0.0327414944767952,
- 0.04858609661459923,
- -0.008746595121920109,
- 0.09932906925678253,
- -0.029595997184515,
- 0.0010396454017609358,
- 0.12651731073856354,
- -0.009302165359258652,
- -0.016805440187454224,
- -0.009278194047510624,
- 0.06368816643953323,
- 0.035332005470991135,
- 0.004489183891564608,
- 0.027212223038077354,
- 0.053726524114608765,
- -0.002350261202082038,
- -0.014021554030478,
- -0.011201989836990833,
- -0.02252347022294998,
- -0.022366661578416824,
- 0.012057253159582615,
- 0.005932137835770845,
- -0.05024810880422592,
- -0.019732391461730003,
- 0.0661059319972992,
- 0.015915298834443092,
- -0.06776091456413269,
- -0.03637157753109932,
- 0.027164138853549957,
- 0.0015844384906813502,
- -0.024770300835371017,
- 0.004638797137886286,
- -0.01029228325933218,
- 0.03700569272041321,
- 0.03848157823085785,
- 0.04206858575344086,
- 0.004291839431971312,
- -0.008682440035045147,
- 0.07107197493314743,
- -0.010222711600363255,
- 0.15178623795509338,
- -0.05220094695687294,
- -0.013088528998196125
- ]
- },
- {
- "keyword": "walkthrough",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.020837241783738136,
- 0.0855182558298111,
- -0.034409232437610626,
- 0.06933582574129105,
- 0.03315425291657448,
- 0.0050070760771632195,
- 0.06650887429714203,
- -0.011851654388010502,
- -0.07460857927799225,
- -0.0011319495970383286,
- 0.06452188640832901,
- -0.04474155232310295,
- 0.029003044590353966,
- 0.02526216022670269,
- -0.05544985458254814,
- -0.03813280537724495,
- -0.08703268319368362,
- 0.101416677236557,
- -0.04145854339003563,
- -0.05789632350206375,
- -0.048374518752098083,
- -0.0369444414973259,
- 0.016712073236703873,
- -0.004996473900973797,
- 0.02990034967660904,
- 0.06483032554388046,
- 0.004334461875259876,
- 0.01834942027926445,
- 0.03935088589787483,
- -0.0866033062338829,
- 0.03185127303004265,
- 0.12422578781843185,
- 0.005228606518357992,
- 0.006172807887196541,
- -0.08849053084850311,
- -0.018005121499300003,
- 0.05236824229359627,
- 0.05297320708632469,
- -0.007225597742944956,
- 0.009970888495445251,
- -0.023941125720739365,
- -0.03891148418188095,
- -0.003907280974090099,
- -0.03050892800092697,
- 0.04132017120718956,
- 0.002127481158822775,
- -0.015306597575545311,
- 0.015573747456073761,
- 0.04772632569074631,
- 0.017071016132831573,
- -0.08444247394800186,
- -0.04998098313808441,
- -0.07450397312641144,
- 0.031599510461091995,
- 0.02281157299876213,
- -0.02949213609099388,
- 0.04218195378780365,
- -0.008206946775317192,
- 0.07307808846235275,
- -0.01555743720382452,
- 0.053152624517679214,
- -0.022473938763141632,
- -0.09662679582834244,
- 0.022682273760437965,
- 0.0674506276845932,
- -0.03731899335980415,
- 0.06863372772932053,
- -0.11957839131355286,
- 0.012819061987102032,
- 0.021560313180088997,
- -0.051299795508384705,
- 0.03642408922314644,
- -0.015229062177240849,
- -0.025243982672691345,
- 0.008479845710098743,
- 0.004313166253268719,
- 0.0055850534699857235,
- -0.05179132893681526,
- 0.00743856793269515,
- -0.01387832872569561,
- -0.07752841711044312,
- -0.05228060483932495,
- -0.030428262427449226,
- 0.13384103775024414,
- 0.04379599168896675,
- 0.03162756189703941,
- -0.01882079429924488,
- 0.00530101777985692,
- -0.035861093550920486,
- 0.01917928084731102,
- -0.03340044245123863,
- -0.049763474613428116,
- -0.015447337180376053,
- -0.0009759082458913326,
- -0.014256519265472889,
- 0.05349886789917946,
- -0.0373145192861557,
- -0.09452594816684723,
- -0.06366392225027084,
- 0.1375432014465332,
- -0.0523931160569191,
- -0.03993149846792221,
- 0.03753998503088951,
- -0.04392271488904953,
- 0.010918475687503815,
- -0.013982100412249565,
- 0.04599139094352722,
- -0.011196177452802658,
- 0.0690993070602417,
- -0.009713026694953442,
- -0.029281815513968468,
- -0.023860415443778038,
- 0.0846216231584549,
- 0.06139868125319481,
- 0.03219355270266533,
- 0.0150822214782238,
- 0.03886912390589714,
- -0.0020195767283439636,
- -0.025922343134880066,
- 0.05919584631919861,
- 0.062015365809202194,
- 0.06167563796043396,
- 0.023125026375055313,
- -0.001130382064729929,
- -0.040183402597904205,
- 0.018712732940912247,
- 0.030211737379431725,
- -1.9875148281107848e-33,
- 0.06641141325235367,
- -0.008144184947013855,
- 0.05477534234523773,
- 0.08629767596721649,
- 0.07626990228891373,
- -0.01737186871469021,
- -0.05857536569237709,
- 0.002541797701269388,
- -0.006791058462113142,
- 0.03300151601433754,
- -0.007174637634307146,
- -0.041820015758275986,
- -0.004376295953989029,
- -0.03349659591913223,
- 0.0669422522187233,
- -0.09165290743112564,
- -0.023624319583177567,
- 0.016613483428955078,
- -0.0447220578789711,
- -0.03479542210698128,
- 0.047366563230752945,
- -0.06833140552043915,
- -0.002026389352977276,
- -0.007246755994856358,
- 0.11596084386110306,
- 0.012804470956325531,
- 0.03621490299701691,
- -0.09656648337841034,
- 0.06900575011968613,
- 0.04184482619166374,
- -0.024728914722800255,
- -0.007609230931848288,
- -0.07584230601787567,
- 0.07630076259374619,
- 0.005864562001079321,
- -0.042896073311567307,
- 0.006674247793853283,
- -0.04818219318985939,
- 0.04616927355527878,
- -0.030838333070278168,
- -0.12538045644760132,
- -0.07558229565620422,
- -0.01381230540573597,
- -0.09753291308879852,
- 0.029854116961359978,
- 0.03574657067656517,
- 0.022240296006202698,
- 0.05446251481771469,
- -0.010443029925227165,
- 0.07971012592315674,
- -0.024464774876832962,
- 0.04521369934082031,
- 0.04025346413254738,
- 0.01015187706798315,
- -0.005620826035737991,
- -0.04996606707572937,
- -0.013186612166464329,
- 0.00332651031203568,
- -0.04048096388578415,
- 0.0681275725364685,
- 0.05981922894716263,
- 0.0957690179347992,
- 0.023867055773735046,
- 0.013338107615709305,
- -0.08584645390510559,
- -0.005382627248764038,
- -0.06977652758359909,
- -0.06611059606075287,
- -0.0035197304096072912,
- -0.010862824507057667,
- -0.12433179467916489,
- 0.03009243868291378,
- 0.08213821798563004,
- 0.07664543390274048,
- 0.044088199734687805,
- -0.05254506319761276,
- -0.06374698877334595,
- 0.010443630628287792,
- -0.03668120875954628,
- -0.09808754175901413,
- -0.07664880901575089,
- -0.04217613860964775,
- -0.0831039622426033,
- 0.00014350199489854276,
- 0.05316757783293724,
- -0.03349361568689346,
- -0.017642972990870476,
- -0.05482734739780426,
- -0.03205246105790138,
- -0.09998352825641632,
- -0.11738830804824829,
- -0.018439555540680885,
- 0.05943132936954498,
- -0.023802321404218674,
- -0.0038839182816445827,
- -6.955172206990633e-35,
- -0.10223045945167542,
- 0.016379578039050102,
- 0.00533894170075655,
- -0.005822896026074886,
- -0.019678320735692978,
- -0.018287887796759605,
- -0.022964008152484894,
- -0.028532840311527252,
- 0.025865212082862854,
- 0.08664947748184204,
- -0.03898249566555023,
- 0.021170975640416145,
- -0.0031247963197529316,
- 0.02029901184141636,
- 0.0864262729883194,
- 0.0047918884083628654,
- 0.08758500218391418,
- 0.034425120800733566,
- 0.034904345870018005,
- 0.003309817286208272,
- -0.07707133889198303,
- -0.03161260858178139,
- -0.15830403566360474,
- -0.13145902752876282,
- 0.010498586110770702,
- 0.01728716678917408,
- 0.09318146854639053,
- 0.027094844728708267,
- 0.015843071043491364,
- -0.04611388221383095,
- 0.054831407964229584,
- -0.01111722830682993,
- -0.028263157233595848,
- -0.016053471714258194,
- -0.04987137019634247,
- 0.1252397894859314,
- 0.008017033338546753,
- 0.018283642828464508,
- 0.006540112197399139,
- -0.03522942215204239,
- 0.07777468860149384,
- 0.0005031153559684753,
- -0.046430058777332306,
- 0.07097350060939789,
- -0.000865490990690887,
- -0.0231696218252182,
- -0.024185210466384888,
- 0.049956098198890686,
- -0.0331035852432251,
- -0.014009073376655579,
- 0.009507299400866032,
- -0.06060418859124184,
- 0.026607321575284004,
- -0.11040150374174118,
- -0.005591860041022301,
- 0.06354431062936783,
- 0.007412578444927931,
- -0.003524733940139413,
- 0.012335547246038914,
- -0.02169470489025116,
- -0.06793273985385895,
- -0.019271105527877808,
- 0.053853921592235565,
- 0.030115289613604546,
- -0.09354980289936066,
- -0.07820528000593185,
- -0.06630722433328629,
- -0.0038364368956536055,
- -0.07402560114860535,
- -0.016877176240086555,
- -0.027245081961154938,
- 0.12020277976989746,
- 0.017050962895154953,
- 0.0029295310378074646,
- 0.03244718536734581,
- -0.004272073041647673,
- -0.03381359949707985,
- 0.02498992346227169,
- 0.0005758475745096803,
- -0.019650330767035484,
- 0.052578557282686234,
- -0.06600014120340347,
- -0.031681932508945465,
- -0.011394903995096684,
- 0.0041212053038179874,
- 0.015493982471525669,
- 0.022543249651789665,
- 0.03637736290693283,
- 0.05005952715873718,
- -0.012636939063668251,
- -0.011004057712852955,
- 0.06545791774988174,
- 0.08339565992355347,
- -0.03273698315024376,
- 0.011337216943502426,
- -1.6890172815919868e-8,
- -0.06368697434663773,
- 0.036918461322784424,
- -0.010321675799787045,
- 0.01230169739574194,
- 0.07055548578500748,
- 0.0948336124420166,
- 0.08071687072515488,
- 0.02888338267803192,
- -0.04875551536679268,
- 0.007747587747871876,
- 0.04146915674209595,
- 0.029812349006533623,
- 0.06969941407442093,
- 0.08350900560617447,
- 0.06310638040304184,
- 0.00998629629611969,
- -0.023112129420042038,
- -0.04139408841729164,
- -0.03486409783363342,
- 0.0695510134100914,
- -0.028064193204045296,
- -0.048885196447372437,
- 0.031189680099487305,
- -0.009909425862133503,
- -0.02902105078101158,
- -0.028400862589478493,
- 0.013423260301351547,
- -0.0009223693050444126,
- 0.05219767987728119,
- 0.06396310776472092,
- 0.09229302406311035,
- 0.09116822481155396,
- -0.08690200746059418,
- -0.010485578328371048,
- -0.0528818741440773,
- 0.04410760849714279,
- 0.056375399231910706,
- 0.026075508445501328,
- 0.012103505432605743,
- 0.009398229420185089,
- -0.022253407165408134,
- 0.06451794505119324,
- -0.028798310086131096,
- -0.00206098728813231,
- -0.08076199889183044,
- -0.03486911579966545,
- -0.023112833499908447,
- -0.07817327231168747,
- -0.06529667228460312,
- 0.0057666851207613945,
- -0.014746543951332569,
- 0.038455531001091,
- 0.03960021585226059,
- 0.004656909964978695,
- 0.08463850617408752,
- 0.017368296161293983,
- 0.0035687352064996958,
- 0.0034789983183145523,
- -0.0366615355014801,
- 0.11212826520204544,
- -0.050122249871492386,
- 0.04867176711559296,
- 0.03584318980574608,
- 0.046005602926015854
- ]
- },
- {
- "keyword": "instructions",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.002515987027436495,
- 0.060238126665353775,
- 0.01698228158056736,
- 0.017207104712724686,
- -0.06962014734745026,
- 0.008013173937797546,
- -0.007343886885792017,
- 0.012782393023371696,
- -0.09828323870897293,
- 0.007004339713603258,
- 0.00874830037355423,
- 0.0017562862485647202,
- 0.015940578654408455,
- -0.05603524670004845,
- -0.08075905591249466,
- -0.016861865296959877,
- -0.030803238973021507,
- 0.07181359827518463,
- -0.08660949021577835,
- -0.04712698236107826,
- 0.037454649806022644,
- -0.019695788621902466,
- 0.016498925164341927,
- -0.020396286621689796,
- -0.00246654381044209,
- 0.028385980054736137,
- -0.0009689967264421284,
- 0.04413387179374695,
- 0.06635779142379761,
- -0.06918853521347046,
- 0.0724036917090416,
- -0.044740017503499985,
- 0.08510308712720871,
- 0.020259568467736244,
- -0.037179239094257355,
- 0.013180794194340706,
- 0.04360228776931763,
- -0.03004918247461319,
- -0.024332217872142792,
- -0.03382231667637825,
- 0.01767951063811779,
- -0.1406860649585724,
- 0.01209670677781105,
- -0.010860144160687923,
- 0.044760335236787796,
- 0.04619315266609192,
- 0.005618590395897627,
- -0.015009574592113495,
- 0.04721849784255028,
- -0.028158551082015038,
- -0.022593915462493896,
- -0.03902824968099594,
- 0.0033156736753880978,
- -0.008474201895296574,
- -0.00019629286543931812,
- 0.04868581146001816,
- 0.03788722679018974,
- 0.05603110417723656,
- 0.05043325573205948,
- 0.011456260457634926,
- 0.06634850054979324,
- 0.031069699674844742,
- -0.03492659330368042,
- 0.07945317775011063,
- 0.025500861927866936,
- -0.06410632282495499,
- 0.0022730110213160515,
- 0.014461907558143139,
- 0.04817637428641319,
- 0.020152822136878967,
- -0.1264566332101822,
- -0.008745994418859482,
- -0.10613177716732025,
- 0.021484730765223503,
- -0.04334569722414017,
- -0.04685717448592186,
- 0.0177975594997406,
- 0.006747197359800339,
- -0.04123009368777275,
- 0.020379837602376938,
- -0.11388455331325531,
- -0.027200058102607727,
- 0.0350467748939991,
- 0.12993265688419342,
- 0.02209756337106228,
- 0.043853409588336945,
- 0.06744200736284256,
- -0.0015126202488318086,
- -0.021130651235580444,
- -0.0025595996994525194,
- 0.05847792327404022,
- -0.023716798052191734,
- -0.08024657517671585,
- 0.039185233414173126,
- -0.01716175116598606,
- 0.06550245732069016,
- -0.0617542564868927,
- -0.07152548432350159,
- -0.03394058719277382,
- 0.25693798065185547,
- 0.059302493929862976,
- -0.036542944610118866,
- 0.028906837105751038,
- -0.08234001696109772,
- -0.048587411642074585,
- -0.03657664358615875,
- -0.012286456301808357,
- 0.07222849130630493,
- -0.0011138947447761893,
- -0.05704985931515694,
- -0.018095800653100014,
- 0.036024369299411774,
- -0.009962162002921104,
- -0.011882876046001911,
- 0.005098205059766769,
- 0.0059258416295051575,
- 0.027313582599163055,
- 0.03269175440073013,
- 0.04539527744054794,
- -0.04636933654546738,
- 0.06345704197883606,
- -0.017926214262843132,
- -0.0022523023653775454,
- -0.0378609299659729,
- -0.04195820167660713,
- -0.02317149005830288,
- 0.013005881570279598,
- -4.4690245449989125e-33,
- 0.09531904757022858,
- 0.044028375297784805,
- -0.014697683975100517,
- 0.12480421364307404,
- -0.00851235818117857,
- -0.0016161426901817322,
- 0.020803434774279594,
- -0.03532540425658226,
- -0.01777525804936886,
- 0.10206876695156097,
- 0.11753202974796295,
- -0.03519367799162865,
- -0.013528416864573956,
- -0.004997379146516323,
- -0.003853285452350974,
- -0.10645890980958939,
- -0.03556784614920616,
- 0.01141033973544836,
- -0.020582664757966995,
- -0.015352921560406685,
- 0.004753922577947378,
- 0.038682445883750916,
- 0.027744321152567863,
- 0.041194114834070206,
- 0.015107479877769947,
- 0.13804619014263153,
- -0.023054247722029686,
- -0.03546927124261856,
- 0.019649777561426163,
- -0.005271502770483494,
- 0.0367402546107769,
- 0.001532399677671492,
- -0.026488129049539566,
- -0.002563614398241043,
- 0.02978954277932644,
- -0.010775767266750336,
- -0.0024382704868912697,
- -0.021189643070101738,
- -0.004477012436836958,
- -0.0666622668504715,
- 0.022920263931155205,
- -0.013467536307871342,
- -0.02611781843006611,
- 0.0019299422856420279,
- 0.03243813291192055,
- 0.058746181428432465,
- 0.025231994688510895,
- 0.03940221667289734,
- 0.0981592983007431,
- 0.04644779860973358,
- 0.05949060991406441,
- -0.003975560888648033,
- -0.03380122408270836,
- -0.010223527438938618,
- -0.01625625230371952,
- 0.03480587154626846,
- -0.024079415947198868,
- -0.1015021950006485,
- 0.003529366571456194,
- -0.006432262249290943,
- 0.11632892489433289,
- 0.07525363564491272,
- -0.022955693304538727,
- 0.02451062761247158,
- -0.03040384314954281,
- -0.018849464133381844,
- -0.08511698991060257,
- -0.014403263106942177,
- 0.08275468647480011,
- -0.0798644870519638,
- -0.10765451192855835,
- 0.031437408179044724,
- 0.0525757297873497,
- 0.0003064326592721045,
- -0.12355776876211166,
- -0.030649598687887192,
- 0.0051000164821743965,
- 0.020352069288492203,
- -0.018966058269143105,
- -0.08503854274749756,
- 0.005215206649154425,
- 0.005185059737414122,
- -0.019866546615958214,
- 0.05409393832087517,
- 0.01016325131058693,
- -0.06619249284267426,
- 0.0018670381978154182,
- 0.012876881286501884,
- 0.02993025630712509,
- 0.0073419176042079926,
- -0.03517598286271095,
- -0.02632959373295307,
- 0.039432134479284286,
- -0.08972933143377304,
- -0.04115423932671547,
- 2.6820767874582497e-33,
- -0.022293077781796455,
- -0.019463935866951942,
- 0.006449186243116856,
- 0.033750008791685104,
- -0.010909199714660645,
- -0.024848198518157005,
- -0.004882958717644215,
- 0.00031120466883294284,
- 0.03383350372314453,
- -0.012145787477493286,
- -0.10631769895553589,
- 0.015683019533753395,
- 0.00537988031283021,
- -0.02403883822262287,
- -0.06615345925092697,
- 0.008056209422647953,
- 0.09212420135736465,
- 0.11457988619804382,
- -0.009588335640728474,
- -0.03861309587955475,
- -0.008203159086406231,
- 0.014168999157845974,
- 0.03684622049331665,
- 0.004735378082841635,
- -0.04555085673928261,
- -0.008330236189067364,
- 0.13214334845542908,
- 0.014814046211540699,
- -0.04283253103494644,
- -0.05450640991330147,
- -0.01735256239771843,
- -0.09927390515804291,
- -0.04097720608115196,
- 0.07708116620779037,
- -0.07181885838508606,
- 0.03988554701209068,
- 0.10242126137018204,
- 0.026187943294644356,
- -0.04954901337623596,
- -0.08115720003843307,
- 0.06561828404664993,
- 0.04056275635957718,
- -0.0892251506447792,
- 0.06171376258134842,
- -0.019440067932009697,
- 0.026386553421616554,
- -0.0002704602957237512,
- -0.01029432937502861,
- -0.06006871163845062,
- 0.030899761244654655,
- 0.05227801948785782,
- -0.04498324543237686,
- -0.046492841094732285,
- -0.047975968569517136,
- -0.03404008597135544,
- -0.03680407255887985,
- 0.02522304467856884,
- -0.025310242548584938,
- 0.023530730977654457,
- 0.008908198215067387,
- -0.045474689453840256,
- 0.0041138487868011,
- -0.048413801938295364,
- 0.009526006877422333,
- -0.1107834130525589,
- -0.03410595282912254,
- -0.05779591202735901,
- -0.0033712394069880247,
- -0.0496254563331604,
- 0.03788061439990997,
- -0.12143006920814514,
- 0.030924923717975616,
- 0.025977300480008125,
- -0.008961285464465618,
- 0.08688002824783325,
- -0.05362323299050331,
- -0.03915891423821449,
- -0.006205212324857712,
- -0.07687532156705856,
- -0.028780000284314156,
- -0.02334543503820896,
- -0.02192005328834057,
- -0.01693493314087391,
- 0.05813346803188324,
- -0.0006968584493733943,
- -0.0008441977552138269,
- 0.07487501949071884,
- 0.021877141669392586,
- -0.01691204309463501,
- -0.04521169885993004,
- -0.04827047139406204,
- 0.057859644293785095,
- 0.07432327419519424,
- 0.034744277596473694,
- 0.00840987078845501,
- -1.2963971229851268e-8,
- -0.03391733020544052,
- -0.012314396910369396,
- 0.09681157767772675,
- 0.009183776564896107,
- 0.007272030226886272,
- 0.11068905144929886,
- 0.05179806053638458,
- -0.04978930950164795,
- -0.020469659939408302,
- -0.06711680442094803,
- 0.0033413167111575603,
- 0.07558641582727432,
- 0.05531231313943863,
- 0.025167888030409813,
- 0.08652724325656891,
- -0.006035154219716787,
- -0.017764512449502945,
- 0.07166486978530884,
- -0.06448143720626831,
- -0.010302755981683731,
- -0.040642403066158295,
- -0.003257269039750099,
- 0.07219180464744568,
- -0.017319483682513237,
- 0.07994970679283142,
- -0.017908835783600807,
- 0.06853228062391281,
- 0.09955567121505737,
- -0.02758055180311203,
- 0.03647400438785553,
- -0.027416164055466652,
- 0.015002856962382793,
- -0.0020599013660103083,
- -0.026341067627072334,
- 0.02133108861744404,
- -0.018504414707422256,
- -0.0009591922862455249,
- -0.03215380385518074,
- 0.05010271444916725,
- -0.04286031797528267,
- -0.044156916439533234,
- 0.04914885759353638,
- 0.00672089634463191,
- -0.014924301765859127,
- 0.027833079919219017,
- 0.04558586701750755,
- -0.03290863335132599,
- -0.02512635476887226,
- -0.06944450736045837,
- 0.05373679846525192,
- 0.03863973170518875,
- -0.039442189037799835,
- 0.012086549773812294,
- 0.05338563770055771,
- -0.015900930389761925,
- 0.017183266580104828,
- 0.0568293035030365,
- -0.010613626800477505,
- -0.0014346366515383124,
- 0.0002908137103077024,
- 0.02364359423518181,
- 0.1923523247241974,
- -0.039507925510406494,
- -0.08515509963035583
- ]
- },
- {
- "keyword": "specification",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.048376694321632385,
- 0.07482273876667023,
- -0.03214484080672264,
- -0.019087467342615128,
- -0.02581830322742462,
- 0.010901578702032566,
- 0.04764748364686966,
- 0.08226516097784042,
- -0.05604152753949165,
- 0.008265047334134579,
- -0.01874247007071972,
- -0.08367870002985,
- 0.012668616138398647,
- 0.02578127197921276,
- 0.0010863244533538818,
- -0.04815351963043213,
- 0.09421424567699432,
- -0.046317558735609055,
- -0.05860188603401184,
- -0.0044756485149264336,
- 0.05166799947619438,
- 0.009051471948623657,
- -0.04429900646209717,
- 0.011432275176048279,
- -0.06360159069299698,
- 0.022319383919239044,
- 0.017919721081852913,
- -0.002058326965197921,
- 0.0331898033618927,
- -0.07774367928504944,
- 0.027308428660035133,
- 0.0263434536755085,
- 0.08339277654886246,
- -0.0037783323787152767,
- -0.0012127879308536649,
- 0.009879693388938904,
- 0.06296406686306,
- -0.08995715528726578,
- 0.0027011160273104906,
- -0.006103590130805969,
- -0.03599567711353302,
- -0.08760984241962433,
- -0.04651410132646561,
- 0.06689529120922089,
- 0.02302589826285839,
- 0.030996527522802353,
- 0.014403564855456352,
- 0.009411903098225594,
- -0.11838033050298691,
- 0.0013255099765956402,
- -0.05446062237024307,
- 0.00772800762206316,
- -0.01922396942973137,
- 0.007024581544101238,
- 0.057845838367938995,
- 0.04274783283472061,
- -0.005764036905020475,
- -0.0294425617903471,
- 0.001982427667826414,
- -0.024362856522202492,
- 0.014572164043784142,
- 0.008840224705636501,
- -0.0835140123963356,
- 0.020800668746232986,
- 0.20885956287384033,
- -0.01863369159400463,
- -0.047845300287008286,
- -0.06414365768432617,
- -0.036461737006902695,
- 0.046613335609436035,
- -0.06647592037916183,
- -0.05398765578866005,
- -0.029709456488490105,
- 0.04200410097837448,
- -0.02105291560292244,
- -0.0475793182849884,
- 0.015286278910934925,
- 0.015121566131711006,
- 0.028499364852905273,
- -0.043805986642837524,
- -0.05004173517227173,
- -0.01563693769276142,
- -0.031286031007766724,
- 0.010096719488501549,
- -0.01001628115773201,
- 0.00437505915760994,
- 0.027123253792524338,
- 0.029564863070845604,
- 0.006907646544277668,
- 0.029937077313661575,
- 0.023510286584496498,
- -0.041237033903598785,
- 0.04085824638605118,
- 0.006868813652545214,
- 0.01967371068894863,
- 0.03722408041357994,
- 0.025087576359510422,
- -0.12183403968811035,
- 0.05517964065074921,
- 0.22703184187412262,
- 0.00979012530297041,
- 0.03174104541540146,
- 0.03948751091957092,
- -0.008960185572504997,
- -0.08106639981269836,
- -0.08072911947965622,
- -0.0021403233986347914,
- -0.018243612721562386,
- -0.008426545187830925,
- -0.024886351078748703,
- 0.007439581677317619,
- -0.05871991440653801,
- -0.05754287913441658,
- -0.0858597382903099,
- 0.005698950029909611,
- -0.05492768436670303,
- -0.05244271457195282,
- 0.03190324455499649,
- 0.1001027375459671,
- -0.009731784462928772,
- 0.041766852140426636,
- -0.039627671241760254,
- 0.03343083709478378,
- -0.047304797917604446,
- 0.006129852496087551,
- -0.040397580713033676,
- -0.016814088448882103,
- -6.685079719480536e-33,
- -0.045021459460258484,
- -0.03639834374189377,
- -0.045822832733392715,
- 0.045003991574048996,
- -0.07006721943616867,
- -0.011312886141240597,
- -0.03108897991478443,
- -0.020656874403357506,
- -0.024381013587117195,
- 0.060408879071474075,
- 0.022117052227258682,
- 0.032994594424963,
- -0.058019816875457764,
- 0.042049065232276917,
- 0.038546301424503326,
- 0.006153233349323273,
- 0.04095471277832985,
- 0.14301323890686035,
- 0.07328233867883682,
- 0.03162594139575958,
- 0.029088884592056274,
- 0.004729290492832661,
- -0.020505521446466446,
- 0.017062703147530556,
- 0.057462405413389206,
- 0.010121945291757584,
- -0.006349391769617796,
- -0.01200680062174797,
- -0.001985203707590699,
- 0.0011322831269353628,
- 0.09287620335817337,
- -0.014655716717243195,
- 0.029923103749752045,
- -0.03242575004696846,
- 0.013012170791625977,
- 0.061864715069532394,
- -0.04964015260338783,
- -0.11061925441026688,
- 0.04338795691728592,
- -0.035641878843307495,
- 0.019129153341054916,
- -0.016534222289919853,
- -0.030647998675704002,
- -0.00693166721612215,
- 0.0350261814892292,
- 0.043172258883714676,
- 0.013400761410593987,
- 0.0394512414932251,
- -0.028820808976888657,
- 0.02417982928454876,
- -0.002632399322465062,
- 0.06586814671754837,
- -0.016768379136919975,
- -0.059360258281230927,
- 0.09199851006269455,
- -0.041091542690992355,
- -0.02041119523346424,
- 0.01055875699967146,
- -0.005296873860061169,
- 0.11317140609025955,
- -0.03774849325418472,
- 0.0675758644938469,
- -0.05184880271553993,
- -0.020105978474020958,
- -0.03338631987571716,
- 0.02159591019153595,
- -0.012951936572790146,
- -0.04864565283060074,
- 0.057637106627225876,
- -0.05777202546596527,
- -0.10644672065973282,
- -0.042712319642305374,
- 0.0049845147877931595,
- 0.042799390852451324,
- -0.014760289341211319,
- -0.05080246925354004,
- 0.04024912789463997,
- 0.0010611099423840642,
- 0.002081808866932988,
- -0.02573431469500065,
- -0.13361993432044983,
- 0.07315636426210403,
- 0.019665265455842018,
- 0.06248713284730911,
- 0.0017576486570760608,
- -0.0015685016987845302,
- 0.07352186739444733,
- 0.04583578184247017,
- -0.017759006470441818,
- -0.00007320664008148015,
- -0.03149326518177986,
- 0.010846401564776897,
- -0.04272821918129921,
- 0.06982322782278061,
- 0.0886383056640625,
- 4.100753919829798e-33,
- 0.04607263207435608,
- 0.011256244964897633,
- -0.060142386704683304,
- 0.013539791107177734,
- -0.024464813992381096,
- -0.030516257509589195,
- 0.0014760703779757023,
- -0.0810098946094513,
- 0.020197417587041855,
- 0.0377345085144043,
- 0.004482361953705549,
- -0.05244576558470726,
- 0.04551909863948822,
- -0.04286286234855652,
- -0.04665007442235947,
- -0.015497395768761635,
- -0.05720851942896843,
- -0.15489599108695984,
- 0.01612521894276142,
- 0.0454757921397686,
- 0.012206614017486572,
- -0.01792280189692974,
- -0.031172428280115128,
- 0.023249918594956398,
- -0.0445074699819088,
- -0.027716442942619324,
- -0.050787948071956635,
- -0.04024628549814224,
- -0.050815023481845856,
- -0.0318085141479969,
- 0.0065555814653635025,
- -0.11024535447359085,
- -0.02177646942436695,
- 0.10023932158946991,
- -0.049922384321689606,
- -0.09761664271354675,
- 0.08456937223672867,
- 0.03157620131969452,
- -0.0029114377684891224,
- -0.00564574683085084,
- 0.09905515611171722,
- 0.0336303636431694,
- -0.009276227094233036,
- 0.1054413765668869,
- 0.003111141035333276,
- 0.005200081039220095,
- 0.038785021752119064,
- -0.0174980778247118,
- 0.08828920125961304,
- -0.07088642567396164,
- 0.029331425204873085,
- -0.00297885132022202,
- 0.08254518359899521,
- -0.06420668214559555,
- -0.039995141327381134,
- 0.01886979304254055,
- 0.014857511036098003,
- -0.03684777393937111,
- -0.000047891571739455685,
- -0.007288379594683647,
- 0.036375682801008224,
- 0.016855215653777122,
- -0.020753972232341766,
- 0.11459466814994812,
- 0.02328776754438877,
- -0.03425443917512894,
- -0.022621098905801773,
- -0.06550564616918564,
- 0.04412955418229103,
- -0.015777580440044403,
- 0.003477952443063259,
- -0.08587672561407089,
- -0.0852922797203064,
- -0.014085027389228344,
- 0.027024805545806885,
- -0.05803412199020386,
- -0.03196997195482254,
- -0.04447852075099945,
- 0.00867935549467802,
- 0.043393563479185104,
- -0.06984192132949829,
- 0.0842759758234024,
- 0.032183341681957245,
- 0.04410801827907562,
- 0.009008996188640594,
- 0.00901712104678154,
- 0.024875670671463013,
- -0.010838331654667854,
- -0.017375733703374863,
- -0.0072338697500526905,
- -0.038731470704078674,
- 0.03252001851797104,
- -0.06833308190107346,
- 0.05680186301469803,
- -0.07289604842662811,
- -1.3303612433901435e-8,
- -0.052598897367715836,
- -0.03101908415555954,
- 0.0422150120139122,
- -0.01914031244814396,
- -0.0037125356029719114,
- 0.037261854857206345,
- 0.028048012405633926,
- -0.11133517324924469,
- 0.03827414661645889,
- 0.08916855603456497,
- 0.018534395843744278,
- 0.01937028393149376,
- -0.040880490094423294,
- 0.07025256007909775,
- 0.06676086783409119,
- 0.05332767590880394,
- -0.021673528477549553,
- 0.02605975605547428,
- -0.08289413154125214,
- 0.026217669248580933,
- 0.024145374074578285,
- 0.01593690924346447,
- 0.025593994185328484,
- -0.003224999411031604,
- 0.027448313310742378,
- 0.0461091585457325,
- 0.03688398376107216,
- 0.06969478726387024,
- 0.01153772883117199,
- 0.14032141864299774,
- 0.04411451891064644,
- 0.037405163049697876,
- 0.09420304000377655,
- -0.0741916075348854,
- -0.01766001433134079,
- -0.015719421207904816,
- -0.010178660973906517,
- 0.07873208075761795,
- 0.11694493889808655,
- -0.016628947108983994,
- 0.006205563899129629,
- -0.017862677574157715,
- -0.05394198000431061,
- 0.035662729293107986,
- 0.07651419192552567,
- 0.027434514835476875,
- -0.11686202883720398,
- -0.06142980605363846,
- -0.09180661290884018,
- 0.033360544592142105,
- -0.014424464665353298,
- -0.03076421469449997,
- 0.03340227156877518,
- 0.05523456260561943,
- 0.017900986596941948,
- 0.07281339168548584,
- 0.0101823965087533,
- -0.03194355219602585,
- -0.0023923558183014393,
- -0.03732920065522194,
- 0.10295461863279343,
- 0.07158459722995758,
- 0.04868028685450554,
- -0.012390273623168468
- ]
- },
- {
- "keyword": "spec",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.046090591698884964,
- 0.0688696876168251,
- -0.07213278114795685,
- 0.062480002641677856,
- -0.014988888055086136,
- -0.012767676264047623,
- 0.12163350731134415,
- 0.07120539247989655,
- -0.1251523345708847,
- 0.017870573326945305,
- 0.018366754055023193,
- -0.09436161816120148,
- -0.05466923117637634,
- -0.010920428670942783,
- -0.011697685346007347,
- 0.002420345786958933,
- 0.09485767781734467,
- -0.07670522481203079,
- -0.06758987903594971,
- 0.04261177405714989,
- 0.014611896127462387,
- -0.02137177810072899,
- -0.01170481275767088,
- 0.0003094554122071713,
- -0.01079146470874548,
- 0.01923711970448494,
- -0.04268389195203781,
- 0.0661000981926918,
- 0.036648016422986984,
- -0.1282256841659546,
- 0.04459138587117195,
- 0.07057113200426102,
- 0.026580514386296272,
- 0.04457752779126167,
- 0.006757308263331652,
- -0.032451581209897995,
- 0.04607485607266426,
- -0.0032420246861875057,
- 0.05418454855680466,
- 0.012081156484782696,
- -0.009284494444727898,
- -0.07726188749074936,
- -0.0029298835434019566,
- -0.000897699617780745,
- 0.046069130301475525,
- -0.01591235026717186,
- 0.015871290117502213,
- -0.029526498168706894,
- -0.0676533579826355,
- 0.03119339793920517,
- -0.07089994102716446,
- -0.02759035862982273,
- -0.05821559950709343,
- 0.048370614647865295,
- 0.0021445907186716795,
- 0.02788151428103447,
- -0.02764364518225193,
- -0.01742919534444809,
- 0.025136705487966537,
- -0.03524259105324745,
- 0.04077180474996567,
- -0.02291983924806118,
- -0.04770846292376518,
- 0.02514638938009739,
- 0.11641528457403183,
- 0.0027685854583978653,
- -0.015259034931659698,
- -0.08716491609811783,
- 0.03088240511715412,
- -0.02560516819357872,
- -0.04535782337188721,
- -0.015588412992656231,
- -0.05752988159656525,
- -0.007782114204019308,
- -0.013091348111629486,
- -0.014279901050031185,
- -0.011681482195854187,
- -0.05955221503973007,
- 0.03211165964603424,
- -0.0894659161567688,
- 0.020479053258895874,
- 0.017732352018356323,
- -0.08850778639316559,
- -0.034067586064338684,
- 0.07924851030111313,
- 0.026137825101614,
- 0.023380117490887642,
- 0.024048496037721634,
- -0.05526468902826309,
- 0.0009769558673724532,
- 0.01577763445675373,
- -0.041847918182611465,
- -0.03589197248220444,
- 0.04276689514517784,
- -0.00833031628280878,
- 0.05420130491256714,
- -0.03387017175555229,
- -0.13412849605083466,
- 0.017816705629229546,
- 0.26715195178985596,
- 0.042026132345199585,
- 0.04048941284418106,
- -0.035125549882650375,
- 0.015392028726637363,
- -0.06881420314311981,
- 0.001254845643416047,
- 0.0012071372475475073,
- 0.09348665922880173,
- -0.035006873309612274,
- 0.027912424877285957,
- -0.005102531984448433,
- -0.0071031805127859116,
- -0.10270270705223083,
- -0.035722266882658005,
- 0.03759812191128731,
- -0.06381325423717499,
- -0.04334382712841034,
- 0.07862222194671631,
- 0.07644585520029068,
- -0.018043706193566322,
- 0.05814944580197334,
- -0.012011346407234669,
- 0.014017008244991302,
- -0.003086216514930129,
- -0.08751900494098663,
- -0.03006962686777115,
- -0.018726738169789314,
- -3.447286691974103e-33,
- -0.01255417987704277,
- 0.02848164178431034,
- -0.04379795491695404,
- 0.014305275864899158,
- -0.017501002177596092,
- -0.04912886023521423,
- -0.052252814173698425,
- -0.02115766704082489,
- -0.01586710289120674,
- 0.05052987486124039,
- -0.039966534823179245,
- -0.011721312999725342,
- 0.017181577160954475,
- -0.0036606385838240385,
- 0.07783649116754532,
- 0.006174345966428518,
- 0.06928398460149765,
- 0.07814622670412064,
- -0.03803626447916031,
- -0.0363306850194931,
- -0.005878583528101444,
- 0.04481184110045433,
- 0.0008297616150230169,
- 0.014332667924463749,
- -0.0008786069811321795,
- 0.02016235701739788,
- 0.01869272068142891,
- -0.025920476764440536,
- -0.03676316514611244,
- 0.036789216101169586,
- -0.007397444918751717,
- -0.03252622112631798,
- 0.03020835481584072,
- -0.01915149576961994,
- 0.03510827198624611,
- 0.04676871374249458,
- -0.006758800242096186,
- -0.08282752335071564,
- 0.06310021132230759,
- -0.052588481456041336,
- -0.045573268085718155,
- 0.030588092282414436,
- -0.032374877482652664,
- 0.04261365905404091,
- 0.017792776226997375,
- 0.006608794443309307,
- 0.011704882606863976,
- 0.023226460441946983,
- 0.056706126779317856,
- 0.050128694623708725,
- -0.04968458414077759,
- -0.021806474775075912,
- -0.039792537689208984,
- -0.0003999331675004214,
- -0.012884017080068588,
- 0.015644125640392303,
- 0.01465458981692791,
- 0.019999852403998375,
- 0.038608428090810776,
- 0.08765509724617004,
- 0.07658854126930237,
- 0.0700167715549469,
- -0.11663782596588135,
- -0.08477932959794998,
- -0.08893599361181259,
- 0.025796324014663696,
- -0.033243902027606964,
- 0.03863740339875221,
- -0.03429555147886276,
- 0.0015606581000611186,
- -0.1232679933309555,
- 0.008962105959653854,
- 0.07796285301446915,
- 0.03412368893623352,
- -0.0006816807435825467,
- -0.036918267607688904,
- 0.01185377687215805,
- 0.009155976586043835,
- -0.06831688433885574,
- 0.0025001345202326775,
- -0.13444030284881592,
- 0.08621793240308762,
- -0.018541844561696053,
- 0.039358869194984436,
- -0.06093112379312515,
- 0.014655990526080132,
- -0.003161179833114147,
- 0.05808448791503906,
- 0.041362568736076355,
- 0.03484264761209488,
- -0.017385879531502724,
- 0.013931890949606895,
- -0.03036327101290226,
- -0.06581230461597443,
- -0.002275248058140278,
- 2.9196021351021936e-33,
- -0.021498441696166992,
- 0.023622123524546623,
- -0.06016073375940323,
- 0.1517792046070099,
- 0.049843091517686844,
- -0.014259147457778454,
- 0.017160676419734955,
- 0.030911650508642197,
- -0.07441484928131104,
- -0.0005387338460423052,
- -0.0002829589357133955,
- 0.021126026287674904,
- 0.03021802194416523,
- -0.03644067049026489,
- 0.04767754673957825,
- 0.009292716160416603,
- -0.07222864776849747,
- -0.08939184993505478,
- 0.055468011647462845,
- 0.04098368436098099,
- 0.04232547804713249,
- -0.02824004553258419,
- 0.0025036016013473272,
- -0.07611311972141266,
- -0.06904064118862152,
- 0.022551849484443665,
- -0.05452379211783409,
- -0.02699381113052368,
- -0.00949811190366745,
- 0.03317876532673836,
- 0.044751349836587906,
- -0.05577675253152847,
- -0.024423740804195404,
- 0.06196185573935509,
- 0.00534776272252202,
- 0.032698579132556915,
- 0.05332723259925842,
- 0.02642713487148285,
- -0.0024997382424771786,
- 0.04737304523587227,
- 0.014492906630039215,
- 0.0009947799844667315,
- 0.015919718891382217,
- 0.049993641674518585,
- -0.042572665959596634,
- 0.03294893726706505,
- 0.08531711995601654,
- -0.0434817411005497,
- 0.1276591420173645,
- -0.08082722127437592,
- 0.06515341252088547,
- 0.008767321705818176,
- 0.09072030335664749,
- -0.04912002012133598,
- -0.030098356306552887,
- -0.05192672833800316,
- 0.026785437017679214,
- -0.014479395933449268,
- -0.013786339201033115,
- -0.03155885636806488,
- 0.13751497864723206,
- 0.05100902542471886,
- -0.01921461708843708,
- 0.03394998610019684,
- 0.015362268313765526,
- 0.012654397636651993,
- -0.022250039502978325,
- -0.07138529419898987,
- -0.02963699772953987,
- 0.037866707891225815,
- 0.043760381639003754,
- -0.030572768300771713,
- -0.0005106042954139411,
- -0.04699590802192688,
- 0.005979282781481743,
- -0.09134815633296967,
- -0.10489587485790253,
- 0.013432911597192287,
- 0.04069213196635246,
- 0.05812525004148483,
- 0.014944924972951412,
- -0.0002560472348704934,
- -0.03641669079661369,
- -0.011414892040193081,
- 0.05186140537261963,
- -0.0005409562145359814,
- -0.03268904983997345,
- 0.07355906814336777,
- -0.05128282681107521,
- -0.008692445233464241,
- 0.002188732847571373,
- 0.059177447110414505,
- 0.005727797746658325,
- -0.0017142553115263581,
- -0.028335455805063248,
- -1.2726831144505013e-8,
- -0.030114805325865746,
- 0.022776374593377113,
- 0.030833164229989052,
- 0.016243726015090942,
- 0.042412251234054565,
- -0.015014623291790485,
- -0.01153530739247799,
- -0.08653082698583603,
- 0.02279203198850155,
- 0.10750826448202133,
- 0.07816271483898163,
- -0.0737251564860344,
- 0.014104997739195824,
- 0.056017059832811356,
- 0.022924678400158882,
- -0.05166899785399437,
- -0.06306640058755875,
- 0.08968920260667801,
- -0.03538617119193077,
- 0.0020643984898924828,
- 0.013253177516162395,
- 0.045026764273643494,
- -0.001173444208689034,
- -0.052741069346666336,
- 0.005428094882518053,
- 0.02676357701420784,
- 0.024655761197209358,
- 0.06697753816843033,
- 0.06527920067310333,
- 0.0648818090558052,
- 0.030868669971823692,
- 0.04411076009273529,
- 0.005770015995949507,
- -0.07926781475543976,
- 0.027698589488863945,
- 0.03234730288386345,
- -0.06680064648389816,
- 0.07677415013313293,
- 0.06062975898385048,
- 0.08138544112443924,
- -0.02538461983203888,
- -0.0852566659450531,
- -0.002643520710989833,
- 0.011928310617804527,
- 0.04049598053097725,
- -0.009760371409356594,
- -0.05335104838013649,
- -0.04880601540207863,
- -0.11225085705518723,
- 0.029643407091498375,
- -0.011482401750981808,
- -0.01695197820663452,
- -0.038112811744213104,
- 0.0610617958009243,
- -0.017905443906784058,
- 0.047768644988536835,
- -0.030808230862021446,
- -0.04525284096598625,
- -0.06090554594993591,
- -0.007517424877732992,
- 0.13467496633529663,
- 0.03417809680104256,
- -0.06697842478752136,
- 0.04084508493542671
- ]
- },
- {
- "keyword": "standard",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.009475420229136944,
- 0.05561680719256401,
- -0.058045804500579834,
- -0.008505147881805897,
- -0.05367705598473549,
- -0.023962410166859627,
- 0.004616978578269482,
- 0.06458761543035507,
- -0.022255679592490196,
- 0.017142310738563538,
- 0.02597140707075596,
- 0.0306636281311512,
- -0.020881539210677147,
- 0.002071305876597762,
- -0.011011508293449879,
- -0.039879992604255676,
- 0.059942688792943954,
- -0.04264887422323227,
- -0.008152851834893227,
- 0.08128399401903152,
- -0.034413497895002365,
- 0.011804879643023014,
- -0.012893270701169968,
- -0.0013264308217912912,
- -0.0066831354051828384,
- -0.01808890886604786,
- 0.025055989623069763,
- 0.04932679608464241,
- 0.019843660295009613,
- -0.13130196928977966,
- -0.05773239582777023,
- -0.0040737334638834,
- 0.2016620934009552,
- -0.03261517360806465,
- -0.02280258946120739,
- -0.044954560697078705,
- -0.0020216486882418394,
- -0.005536094773560762,
- -0.014182831160724163,
- -0.004098390229046345,
- 0.036315761506557465,
- -0.05185966193675995,
- -0.05256013944745064,
- 0.0008836794295348227,
- -0.0325595997273922,
- 0.05987286567687988,
- 0.021487845107913017,
- 0.023950960487127304,
- -0.013445395976305008,
- 0.026361213997006416,
- 0.0638716071844101,
- -0.024083605036139488,
- -0.05903726443648338,
- 0.07688813656568527,
- 0.07829809933900833,
- -0.02601507492363453,
- -0.0465628020465374,
- -0.0309293270111084,
- 0.01612897403538227,
- -0.015158623456954956,
- -0.05813252925872803,
- -0.006218219641596079,
- -0.0968225821852684,
- 0.022206438705325127,
- 0.06256089359521866,
- -0.012877539731562138,
- -0.02643556334078312,
- -0.0665561780333519,
- 0.011320633813738823,
- -0.006417062599211931,
- -0.10938557982444763,
- 0.04920869693160057,
- 0.005138554144650698,
- 0.04278029873967171,
- 0.03035711869597435,
- -0.03100322000682354,
- -0.018166780471801758,
- -0.02639148198068142,
- 0.02516329661011696,
- 0.012561499141156673,
- -0.07464466989040375,
- -0.024320248514413834,
- -0.010709567926824093,
- 0.016662316396832466,
- 0.1291845589876175,
- 0.062117911875247955,
- 0.009635033085942268,
- 0.02465461567044258,
- 0.004875740502029657,
- 0.017568187788128853,
- -0.006898477207869291,
- -0.05576317012310028,
- 0.07898890972137451,
- -0.003525331849232316,
- -0.05927029624581337,
- -0.01583937183022499,
- 0.05071033537387848,
- -0.05601236969232559,
- -0.002939684083685279,
- 0.2687259316444397,
- 0.08162727952003479,
- 0.06367811560630798,
- 0.011723972856998444,
- -0.010659566149115562,
- 0.04985137656331062,
- 0.03631041944026947,
- 0.012104266323149204,
- 0.013470797799527645,
- -0.008584021590650082,
- 0.002332682954147458,
- -0.05704334005713463,
- -0.07035477459430695,
- -0.11291756480932236,
- -0.07794366776943207,
- -0.010748268105089664,
- -0.10097378492355347,
- -0.04368758574128151,
- -0.017672885209321976,
- 0.09562666714191437,
- -0.07518362998962402,
- 0.03102937527000904,
- 0.007983728311955929,
- -0.029101325199007988,
- -0.04484203830361366,
- -0.10012301802635193,
- -0.02480856329202652,
- 0.045120272785425186,
- -5.377820900796716e-33,
- 0.027262413874268532,
- 0.03375896438956261,
- -0.002910437062382698,
- 0.012192384339869022,
- -0.05768856778740883,
- 0.0691150426864624,
- -0.033383674919605255,
- -0.009290676563978195,
- -0.009867621585726738,
- 0.0338398739695549,
- 0.049737341701984406,
- 0.09086651355028152,
- -0.05097465589642525,
- -0.054188817739486694,
- 0.04982524365186691,
- 0.04877323657274246,
- 0.04143737629055977,
- 0.06628206372261047,
- 0.03914598003029823,
- -0.044071078300476074,
- 0.003004804952070117,
- 0.07502845674753189,
- 0.0069899000227451324,
- 0.07629463821649551,
- 0.027461495250463486,
- 0.002014610217884183,
- -0.006498116534203291,
- -0.00452842004597187,
- 0.03127962723374367,
- -0.009252163581550121,
- 0.045050203800201416,
- -0.04576621577143669,
- 0.0660676658153534,
- -0.05171367898583412,
- -0.006271076388657093,
- 0.02190234884619713,
- 0.06525051593780518,
- -0.03207429125905037,
- 0.04450839385390282,
- -0.02450142614543438,
- -0.0034367209300398827,
- 0.012075552716851234,
- -0.03242688626050949,
- 0.045035410672426224,
- -0.03016955591738224,
- 0.09243592619895935,
- -0.006643406115472317,
- -0.007525745313614607,
- 0.002999972552061081,
- -0.01321433950215578,
- -0.024021681398153305,
- -0.022569889202713966,
- -0.04031569883227348,
- 0.02536024898290634,
- -0.017463618889451027,
- -0.010313700884580612,
- 0.08098341524600983,
- -0.048869822174310684,
- -0.002331370022147894,
- 0.09255500882863998,
- 0.04513472318649292,
- 0.10505487769842148,
- -0.0017157025868073106,
- 0.07963857799768448,
- -0.015798810869455338,
- 0.05838656798005104,
- -0.0032485141418874264,
- -0.03117409348487854,
- -0.06119176372885704,
- -0.03255505859851837,
- -0.019987041130661964,
- 0.02319488860666752,
- -0.02559390477836132,
- 0.05298257991671562,
- -0.011721591465175152,
- -0.06866482645273209,
- 0.030039269477128983,
- 0.009119645692408085,
- 0.04695311188697815,
- -0.046030040830373764,
- -0.1329750120639801,
- 0.05380464345216751,
- -0.04589300975203514,
- 0.01980309747159481,
- -0.02770736813545227,
- -0.02483845315873623,
- -0.0027852263301610947,
- -0.027976028621196747,
- 0.016980433836579323,
- 0.02481653355062008,
- -0.01904233545064926,
- -0.008950513787567616,
- 0.011040899902582169,
- 0.04978029429912567,
- 0.016297325491905212,
- 5.3179375451459826e-33,
- -0.018573228269815445,
- 0.04560098052024841,
- -0.08568641543388367,
- 0.15402929484844208,
- 0.04186805337667465,
- -0.008996529504656792,
- 0.0013006951194256544,
- 0.014082628302276134,
- -0.007606431841850281,
- 0.07943417131900787,
- 0.04586663842201233,
- -0.026821637526154518,
- 0.02245514653623104,
- 0.008856236934661865,
- 0.10491465777158737,
- 0.047771960496902466,
- 0.024634957313537598,
- -0.08127552270889282,
- -0.037526778876781464,
- -0.028011946007609367,
- 0.04715277627110481,
- 0.01133926585316658,
- -0.0034694927744567394,
- 0.002977506723254919,
- -0.003940268885344267,
- -0.00523847620934248,
- -0.08803141117095947,
- 0.010699843056499958,
- -0.1080598458647728,
- -0.073194220662117,
- -0.0011934431968256831,
- -0.06772631406784058,
- 0.015262220986187458,
- 0.0786556750535965,
- -0.005092272534966469,
- -0.01655527576804161,
- -0.03326341137290001,
- 0.06239480525255203,
- -0.033721212297677994,
- 0.0107679208740592,
- 0.01715080998837948,
- 0.026270044967532158,
- 0.04183194786310196,
- 0.12449269741773605,
- -0.006240971852093935,
- -0.009006335400044918,
- -0.004773497581481934,
- -0.07909809798002243,
- 0.057977087795734406,
- -0.02636997029185295,
- -0.14561577141284943,
- -0.03437749296426773,
- -0.02213876135647297,
- -0.0023448492866009474,
- -0.025719178840517998,
- -0.007608553394675255,
- -0.021159913390874863,
- 0.02307811565697193,
- -0.0962987169623375,
- -0.06515732407569885,
- 0.10290074348449707,
- -0.013620440848171711,
- -0.0494980663061142,
- 0.011730621568858624,
- 0.025207169353961945,
- -0.02299230732023716,
- 0.02332398109138012,
- -0.03400339558720589,
- -0.08743871003389359,
- -0.009082896634936333,
- -0.051749784499406815,
- -0.008797844871878624,
- -0.029492421075701714,
- 0.006905019283294678,
- -0.06632083654403687,
- -0.07809241861104965,
- 0.027413349598646164,
- 0.027830643579363823,
- 0.05273769795894623,
- 0.07143496721982956,
- -0.0535937175154686,
- 0.02755792997777462,
- 0.01498732902109623,
- 0.023122696205973625,
- 0.05551173910498619,
- -0.0007637175149284303,
- 0.07787369936704636,
- -0.0033541126176714897,
- 0.0026320498436689377,
- 0.050438497215509415,
- -0.002389499917626381,
- 0.007241487968713045,
- 0.0074347807094454765,
- 0.04546545073390007,
- -0.006282974034547806,
- -1.3037961821282806e-8,
- -0.13526594638824463,
- 0.043262045830488205,
- -0.030525920912623405,
- 0.013693928718566895,
- 0.04861077293753624,
- -0.0023642892483621836,
- -0.05401695892214775,
- -0.056120436638593674,
- -0.04102844372391701,
- 0.06541416049003601,
- 0.014489023946225643,
- -0.08784846216440201,
- 0.008198751136660576,
- -0.024193966761231422,
- 0.06443028897047043,
- -0.03570137172937393,
- 0.0010715663665905595,
- 0.01796554960310459,
- -0.04597378894686699,
- 0.03119008243083954,
- -0.03827448561787605,
- 0.03839511051774025,
- -0.0033903939183801413,
- -0.035233110189437866,
- 0.003984902985394001,
- 0.05145488306879997,
- -0.011105002835392952,
- 0.09348281472921371,
- -0.01329442486166954,
- 0.06741969287395477,
- 0.055639468133449554,
- 0.07306364923715591,
- 0.056829825043678284,
- -0.07669075578451157,
- -0.01041551772505045,
- -0.033021144568920135,
- 0.04955750331282616,
- 0.06358759105205536,
- 0.08484728634357452,
- 0.07513613998889923,
- -0.024654531851410866,
- -0.08545975387096405,
- 0.03158203512430191,
- -0.03249054774641991,
- -0.07059600204229355,
- 0.07701999694108963,
- -0.05737275257706642,
- 0.0017593130469322205,
- -0.07355030626058578,
- 0.01650506816804409,
- 0.10399827361106873,
- -0.024528196081519127,
- 0.0465710312128067,
- 0.04587053507566452,
- 0.07306956499814987,
- 0.021980324760079384,
- 0.02353646419942379,
- 0.013309385627508163,
- -0.08353821933269501,
- -0.039192475378513336,
- 0.08874212205410004,
- -0.005162123125046492,
- -0.031141195446252823,
- 0.0536738857626915
- ]
- },
- {
- "keyword": "protocol",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.031963083893060684,
- 0.0750444084405899,
- -0.050159744918346405,
- -0.06913716346025467,
- -0.058735426515340805,
- 0.040277790278196335,
- 0.12379569560289383,
- -0.030171934515237808,
- 0.006162249483168125,
- -0.003358177375048399,
- 0.014153296127915382,
- 0.041555341333150864,
- 0.04763028770685196,
- 0.041173748672008514,
- 0.003576234681531787,
- -0.008242311887443066,
- 0.10765423625707626,
- -0.0448416993021965,
- -0.0037125926464796066,
- -0.007569007575511932,
- -0.02014932408928871,
- -0.04319506883621216,
- -0.03847566992044449,
- 0.022708410397171974,
- -0.06983072310686111,
- 0.05320471152663231,
- 0.03873641788959503,
- -0.0451374314725399,
- -0.0017275335267186165,
- -0.06575728952884674,
- -0.01669638603925705,
- -0.003675777232274413,
- -0.00883107166737318,
- 0.0429338738322258,
- -0.08635507524013519,
- 0.019442252814769745,
- 0.07103335857391357,
- -0.014656838960945606,
- -0.06381125003099442,
- 0.011600412428379059,
- -0.011519200168550014,
- -0.12536336481571198,
- -0.06432880461215973,
- 0.028141556307673454,
- -0.03345421329140663,
- 0.031848564743995667,
- 0.009957951493561268,
- 0.0942903459072113,
- -0.11491343379020691,
- -0.022128015756607056,
- -0.026972563937306404,
- 0.036331284791231155,
- -0.044974539428949356,
- 0.0980369821190834,
- 0.06120939925312996,
- -0.009805472567677498,
- -0.06824524700641632,
- 0.023577973246574402,
- 0.006978323217481375,
- 0.030749423429369926,
- -0.016367029398679733,
- -0.012155618518590927,
- -0.0834878534078598,
- 0.05874696001410484,
- 0.08021137118339539,
- -0.035830870270729065,
- 0.015329763293266296,
- 0.0035798654425889254,
- 0.02192031405866146,
- -0.0477837510406971,
- -0.04899798333644867,
- -0.02243364043533802,
- -0.02427103742957115,
- 0.051185742020606995,
- 0.03501893952488899,
- -0.03416247293353081,
- 0.007656636647880077,
- -0.018948057666420937,
- 0.03770381212234497,
- -0.026285260915756226,
- 0.007161199115216732,
- -0.039458129554986954,
- 0.01934867538511753,
- 0.037698421627283096,
- 0.03260307013988495,
- -0.07753364741802216,
- -0.05024545267224312,
- -0.00561749842017889,
- -0.03154461085796356,
- 0.010817800648510456,
- -0.07697296887636185,
- 0.016368858516216278,
- -0.03745856508612633,
- -0.016069045290350914,
- -0.022078050300478935,
- 0.046480484306812286,
- -0.006956679280847311,
- -0.05206597223877907,
- -0.0035594431683421135,
- 0.21236343681812286,
- 0.017987089231610298,
- 0.02103422023355961,
- -0.077430859208107,
- -0.07337070256471634,
- -0.016151681542396545,
- -0.04859687015414238,
- -0.04464086517691612,
- -0.02441958710551262,
- 0.05963173136115074,
- 0.044293902814388275,
- -0.030572794377803802,
- -0.0674065425992012,
- -0.08284588158130646,
- -0.03628487139940262,
- -0.07402677088975906,
- 0.05663952976465225,
- -0.07259754091501236,
- 0.0865844339132309,
- 0.002040620893239975,
- -0.02080564573407173,
- -0.03944011777639389,
- -0.06365308165550232,
- 0.03738071024417877,
- -0.045645374804735184,
- 0.011647098697721958,
- -0.039600878953933716,
- 0.07211312651634216,
- -5.03213960363056e-33,
- -0.06326834112405777,
- 0.02085852064192295,
- -0.05531955137848854,
- 0.025299077853560448,
- 0.0028977547772228718,
- 0.03397124633193016,
- 0.02203596755862236,
- -0.06781953573226929,
- -0.06301393359899521,
- -0.05360954999923706,
- -0.006716540548950434,
- 0.01962568797171116,
- 0.03612414374947548,
- 0.018114261329174042,
- 0.07895242422819138,
- 0.014867191202938557,
- 0.026785479858517647,
- 0.08501425385475159,
- 0.05741005390882492,
- 0.02729160711169243,
- 0.03188223019242287,
- 0.02230604737997055,
- 0.038680583238601685,
- 0.02595592476427555,
- 0.0755724385380745,
- 0.030586563050746918,
- -0.05089302733540535,
- -0.044716592878103256,
- 0.06874371320009232,
- 0.013091754168272018,
- 0.04632739722728729,
- 0.041009321808815,
- 0.001292473985813558,
- 0.008652486838400364,
- 0.06424708664417267,
- 0.018824050202965736,
- 0.041239578276872635,
- -0.09812546521425247,
- 0.014057076536118984,
- -0.09430549293756485,
- 0.01486544031649828,
- -0.006597882602363825,
- -0.09091935306787491,
- -0.0014608085621148348,
- 0.01373513787984848,
- 0.030070140957832336,
- -0.009985143318772316,
- -0.02827722206711769,
- -0.07397344708442688,
- 0.04707667604088783,
- -0.005620941054075956,
- -0.01841062866151333,
- -0.037133149802684784,
- -0.020845983177423477,
- 0.05240701511502266,
- -0.033341556787490845,
- -0.0014256563736125827,
- 0.04740826040506363,
- 0.0015893286326900125,
- 0.05099119246006012,
- 0.039089079946279526,
- 0.07954990863800049,
- -0.02723228558897972,
- -0.03896632045507431,
- 0.055734794586896896,
- -0.0024809311144053936,
- -0.06634419411420822,
- -0.06412087380886078,
- 0.08728909492492676,
- 0.0499102920293808,
- -0.057274989783763885,
- 0.058254990726709366,
- 0.04643513262271881,
- 0.04367830604314804,
- -0.06172683835029602,
- 0.020504264160990715,
- 0.010791616514325142,
- 0.06235570088028908,
- 0.010915929451584816,
- 0.022971278056502342,
- -0.12640084326267242,
- -0.0233597569167614,
- 0.046783432364463806,
- 0.12660625576972961,
- -0.04742767661809921,
- 0.01209305040538311,
- -0.06498119980096817,
- -0.009900533594191074,
- -0.0022900451440364122,
- 0.07250779867172241,
- -0.03998597338795662,
- 0.011013018898665905,
- 0.04896436631679535,
- 0.06290297210216522,
- 0.04714503511786461,
- 3.5198617131938714e-33,
- 0.014441653154790401,
- 0.05907216668128967,
- -0.02078777737915516,
- 0.11079394817352295,
- -0.013841021806001663,
- -0.06626077741384506,
- 0.024047650396823883,
- -0.05519736930727959,
- -0.003527639200910926,
- 0.06055913493037224,
- 0.007355341222137213,
- -0.04745754227042198,
- 0.08475203812122345,
- -0.02616521157324314,
- 0.0441441535949707,
- -0.06528904289007187,
- 0.04586411640048027,
- -0.05900043249130249,
- -0.014911643229424953,
- 0.005153255071491003,
- -0.00024854563525877893,
- -0.06626126170158386,
- -0.01506432518362999,
- -0.05149979516863823,
- 0.025815948843955994,
- 0.032181039452552795,
- 0.03226489573717117,
- -0.05532791092991829,
- -0.004044948611408472,
- -0.02521984837949276,
- -0.01717977598309517,
- -0.07706190645694733,
- 0.019101273268461227,
- 0.01199436653405428,
- 0.010885846801102161,
- 0.10256568342447281,
- 0.03308812901377678,
- 0.09293106943368912,
- -0.010331819765269756,
- -0.061188820749521255,
- 0.12495237588882446,
- -0.0022140732035040855,
- -0.06869921088218689,
- 0.09304631501436234,
- 0.01979353465139866,
- -0.0579477958381176,
- -0.04056984558701515,
- 0.07074884325265884,
- -0.027405906468629837,
- -0.03815855085849762,
- 0.04109647497534752,
- -0.011353354901075363,
- 0.04067578166723251,
- -0.10755622386932373,
- -0.04873695969581604,
- 0.09629450738430023,
- 0.024202696979045868,
- 0.0031316676177084446,
- 0.023890824988484383,
- -0.0028074057772755623,
- 0.06016693636775017,
- -0.07538803666830063,
- -0.030572665855288506,
- 0.1146417185664177,
- 0.01972821168601513,
- 0.00967484712600708,
- 0.007824091240763664,
- 0.005807124078273773,
- 0.033950790762901306,
- 0.029416752979159355,
- 0.09201451390981674,
- 0.05209840461611748,
- -0.028927616775035858,
- 0.02597634121775627,
- 0.10017579793930054,
- -0.033020902425050735,
- -0.0956871286034584,
- -0.03628028184175491,
- -0.024976687505841255,
- 0.062394849956035614,
- -0.05866475775837898,
- 0.06396709382534027,
- -0.01092798262834549,
- 0.010491134598851204,
- 0.09547902643680573,
- 0.07284995168447495,
- 0.02691018208861351,
- 0.012181662954390049,
- -0.04177210107445717,
- -0.05860693007707596,
- -0.022736726328730583,
- 0.06877907365560532,
- -0.05548442527651787,
- 0.0034806602634489536,
- -0.06856745481491089,
- -1.1078708617162647e-8,
- -0.036279115825891495,
- -0.05209774523973465,
- 0.06557198613882065,
- -0.03218952938914299,
- 0.019517997279763222,
- 0.10818132758140564,
- -0.04879171401262283,
- -0.08992676436901093,
- 0.043474555015563965,
- 0.053386177867650986,
- -0.023299699649214745,
- 0.05045395717024803,
- -0.03861735016107559,
- -0.002505057957023382,
- 0.08098629117012024,
- 0.0023615695536136627,
- -0.015540003776550293,
- -0.08005713671445847,
- -0.0837932676076889,
- -0.008411749266088009,
- 0.009251024574041367,
- -0.020951705053448677,
- -0.016938287764787674,
- 0.04075601324439049,
- 0.0020612541120499372,
- 0.030253272503614426,
- 0.07611537724733353,
- 0.09201548248529434,
- -0.007187765557318926,
- 0.015130211599171162,
- -0.03454716131091118,
- -0.061860475689172745,
- 0.006356038153171539,
- 0.00643724063411355,
- -0.05069326236844063,
- 0.05080536752939224,
- -0.007624635938555002,
- -0.01577114872634411,
- 0.04604081064462662,
- -0.060205843299627304,
- -0.016913270577788353,
- -0.05765748769044876,
- -0.05914809927344322,
- 0.004615440499037504,
- 0.012326587922871113,
- 0.021559882909059525,
- 0.0382733978331089,
- -0.05745086446404457,
- -0.0760139599442482,
- 0.032892387360334396,
- -0.04408584162592888,
- -0.0416577011346817,
- 0.020034711807966232,
- 0.016729213297367096,
- 0.020375533029437065,
- 0.04372888430953026,
- -0.016041293740272522,
- -0.1427016705274582,
- 0.044316090643405914,
- 0.047792889177799225,
- 0.008155778050422668,
- 0.10074571520090103,
- 0.028204409405589104,
- 0.02036139741539955
- ]
- },
- {
- "keyword": "proposal",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.030457859858870506,
- 0.0703139454126358,
- 0.009279374964535236,
- -0.045163173228502274,
- -0.025746524333953857,
- -0.012558436021208763,
- 0.045029740780591965,
- 0.012772916816174984,
- -0.05366542562842369,
- -0.0213297251611948,
- -0.06593862175941467,
- -0.016245460137724876,
- 0.004102055449038744,
- 0.03364120423793793,
- 0.016819048672914505,
- 0.013528438284993172,
- 0.05738222971558571,
- -0.013287653215229511,
- 0.004477403126657009,
- 0.06896063685417175,
- -0.01898184046149254,
- 0.07490244507789612,
- 0.025097336620092392,
- -0.008133630268275738,
- -0.03885074704885483,
- 0.030545992776751518,
- 0.02788332663476467,
- 0.011382520198822021,
- 0.03539688512682915,
- -0.025097189471125603,
- 0.08755197376012802,
- 0.1132841408252716,
- 0.05326351150870323,
- -0.005536223761737347,
- -0.007353388704359531,
- -0.018677767366170883,
- -0.03698029741644859,
- -0.014039412140846252,
- 0.007063518278300762,
- -0.05624205246567726,
- -0.0541982464492321,
- -0.07810468971729279,
- -0.04172526299953461,
- -0.006896335631608963,
- -0.05584867298603058,
- -0.032567642629146576,
- 0.014495759271085262,
- 0.015211563557386398,
- -0.030949456617236137,
- 0.07128968834877014,
- 0.010692693293094635,
- -0.05252952128648758,
- -0.0071473559364676476,
- 0.006514354608952999,
- -0.006124529987573624,
- -0.030894307419657707,
- -0.03637850284576416,
- -0.06091753765940666,
- 0.01600176841020584,
- 0.012231307104229927,
- 0.03664567321538925,
- -0.013733389787375927,
- -0.030094033107161522,
- -0.01781591773033142,
- 0.0666770190000534,
- -0.04358519986271858,
- 0.040802884846925735,
- 0.04201964661478996,
- 0.017489800229668617,
- 0.002600958338007331,
- 0.07512010633945465,
- 0.056023601442575455,
- -0.0419868566095829,
- -0.04136054217815399,
- 0.009668542072176933,
- -0.019923735409975052,
- -0.007170151919126511,
- 0.013970021158456802,
- 0.09871547669172287,
- -0.07356555759906769,
- -0.04856959730386734,
- 0.029179204255342484,
- -0.037243735045194626,
- -0.019911939278244972,
- 0.0012527033686637878,
- 0.011692823842167854,
- -0.009504451416432858,
- 0.00263319443911314,
- -0.03225986286997795,
- -0.02673283964395523,
- -0.05987916141748428,
- -0.06128489971160889,
- 0.04981257766485214,
- -0.03248656913638115,
- -0.07138799130916595,
- 0.04330085217952728,
- 0.022042211145162582,
- -0.05410142242908478,
- -0.07045836001634598,
- 0.24683012068271637,
- -0.009430618956685066,
- 0.049776822328567505,
- -0.03894348815083504,
- -0.11062096059322357,
- -0.008246583864092827,
- -0.02233068272471428,
- -0.03743544965982437,
- -0.01361540425568819,
- 0.07491815090179443,
- 0.009747276082634926,
- -0.022246869280934334,
- -0.034807633608579636,
- -0.006994147785007954,
- 0.0366944745182991,
- -0.006062021479010582,
- -0.056387852877378464,
- 0.05617690831422806,
- 0.014114129357039928,
- 0.0962536409497261,
- -0.05345020443201065,
- -0.026041915640234947,
- 0.011932398192584515,
- -0.06068326532840729,
- -0.031531475484371185,
- 0.03822385147213936,
- -0.07119789719581604,
- -0.04498590528964996,
- -5.989149227569324e-33,
- -0.04008374363183975,
- 0.04589129239320755,
- 0.02758295089006424,
- 0.055720265954732895,
- 0.033532846719026566,
- 0.01947408728301525,
- -0.015322680585086346,
- 0.030061524361371994,
- -0.06864751875400543,
- -0.058524638414382935,
- 0.0072803799994289875,
- 0.036369308829307556,
- 0.033808425068855286,
- 0.052793197333812714,
- 0.08738917857408524,
- -0.12903961539268494,
- 0.044565726071596146,
- 0.05996241793036461,
- -0.0069205667823553085,
- 0.01801769807934761,
- -0.007752600125968456,
- 0.07406700402498245,
- 0.02866508439183235,
- 0.04035939648747444,
- -0.04469164460897446,
- -0.024784011766314507,
- -0.008307300508022308,
- -0.03241502493619919,
- 0.06877189129590988,
- 0.025239525362849236,
- -0.003613280365243554,
- 0.08283134549856186,
- -0.06854895502328873,
- -0.057936228811740875,
- -0.03761981427669525,
- 0.050204817205667496,
- -0.015896085649728775,
- -0.09102596342563629,
- -0.0005543780862353742,
- -0.03704224154353142,
- -0.10131028294563293,
- 0.09091377258300781,
- -0.06638315320014954,
- -0.024056006222963333,
- 0.06971156597137451,
- 0.04132318124175072,
- 0.11383767426013947,
- 0.06446395814418793,
- 0.07331294566392899,
- 0.025686314329504967,
- -0.010071832686662674,
- -0.07019760459661484,
- -0.07383198291063309,
- -0.056283436715602875,
- 0.048850167542696,
- -0.006726283114403486,
- -0.051049549132585526,
- -0.07035328447818756,
- 0.014862902462482452,
- -0.04721830412745476,
- 0.058944765478372574,
- -0.00906437635421753,
- -0.035582058131694794,
- 0.04263652116060257,
- -0.041342347860336304,
- -0.06490058451890945,
- 0.059966813772916794,
- -0.0162441935390234,
- 0.01974128931760788,
- -0.029545702040195465,
- -0.06252729892730713,
- -0.014775151386857033,
- -0.02223965711891651,
- 0.009708127938210964,
- -0.05907968059182167,
- -0.02298196218907833,
- 0.022779399529099464,
- 0.027677584439516068,
- -0.014345934614539146,
- -0.03889726102352142,
- -0.053322941064834595,
- 0.06983916461467743,
- 0.015787873417139053,
- 0.04338333383202553,
- 0.08579064160585403,
- 0.01950521022081375,
- 0.05087602138519287,
- 0.010450772009789944,
- -0.054627347737550735,
- 0.018915317952632904,
- -0.10435833781957626,
- 0.047164883464574814,
- 0.03657901659607887,
- 0.05646882951259613,
- 0.025284752249717712,
- 5.1743964605991345e-33,
- 0.0060180495493113995,
- -0.008546250872313976,
- -0.05724359676241875,
- 0.05543389171361923,
- 0.13635970652103424,
- -0.04553154483437538,
- 0.03136380761861801,
- -0.056275904178619385,
- 0.040024284273386,
- -0.02011648379266262,
- -0.06909814476966858,
- -0.06813853234052658,
- 0.0875687301158905,
- 0.01593140885233879,
- -0.011640082113444805,
- -0.01801140047609806,
- 0.08343140780925751,
- -0.05402632802724838,
- -0.02088281325995922,
- 0.032505668699741364,
- 0.0017724748468026519,
- -0.0007036610622890294,
- -0.01831497624516487,
- -0.04852428659796715,
- -0.05085333436727524,
- 0.07505683600902557,
- 0.0779634565114975,
- 0.022379325702786446,
- -0.014908287674188614,
- -0.006363996770232916,
- -0.0021004779264330864,
- -0.06610316783189774,
- -0.07972797006368637,
- -0.00047081144293770194,
- 0.06091327965259552,
- 0.08449333906173706,
- 0.038260750472545624,
- -0.02308320812880993,
- -0.037064265459775925,
- 0.028570588678121567,
- 0.1379210352897644,
- 0.01505661103874445,
- 0.0011066552251577377,
- 0.14025217294692993,
- -0.015967147424817085,
- -0.008337127976119518,
- 0.05088100954890251,
- 0.08568167686462402,
- 0.02339293621480465,
- -0.0012626623502001166,
- -0.07723785191774368,
- 0.06355121731758118,
- -0.07277344912290573,
- -0.02182549424469471,
- 0.019549546763300896,
- 0.041270896792411804,
- 0.08223941177129745,
- -0.04765947535634041,
- 0.042220763862133026,
- 0.02903120405972004,
- 0.036471202969551086,
- 0.07311351597309113,
- 0.025613445788621902,
- 0.016517119482159615,
- 0.004234440624713898,
- -0.01794060505926609,
- 0.014277533628046513,
- -0.020370040088891983,
- 0.040968794375658035,
- 0.04369986802339554,
- 0.02967396005988121,
- 0.03960369899868965,
- -0.07641690224409103,
- 0.07647646218538284,
- 0.053706616163253784,
- -0.06575435400009155,
- 0.007033007685095072,
- -0.033574555069208145,
- -0.016919413581490517,
- -0.005679495632648468,
- -0.07183694839477539,
- -0.033697083592414856,
- -0.06697320938110352,
- 0.044680092483758926,
- 0.10700575262308121,
- -0.06917332857847214,
- -0.008924060501158237,
- -0.002067605732008815,
- -0.00014260548050515354,
- 0.01932297833263874,
- -0.021802254021167755,
- -0.020645281299948692,
- 0.03525986894965172,
- -0.01489017903804779,
- -0.024027585983276367,
- -1.2540310123654308e-8,
- 0.021291695535182953,
- -0.025663750246167183,
- -0.029780616983771324,
- -0.003798079676926136,
- 0.0015440465649589896,
- 0.046015143394470215,
- -0.0685231015086174,
- -0.10590575635433197,
- 0.001121613197028637,
- 0.024713492020964622,
- 0.03006761334836483,
- 0.047573573887348175,
- -0.015078948810696602,
- 0.05027642101049423,
- 0.035222142934799194,
- -0.052837807685136795,
- -0.024709105491638184,
- -0.041840072721242905,
- -0.1307017058134079,
- 0.05562291294336319,
- -0.0769142434000969,
- 0.03745633736252785,
- 0.004978346172720194,
- -0.004271307960152626,
- -0.025930406525731087,
- 0.017799919471144676,
- 0.04276281222701073,
- 0.13969045877456665,
- -0.0070501817390322685,
- 0.0046391915529966354,
- -0.012054266408085823,
- 0.011960910633206367,
- -0.07508126646280289,
- -0.01948602683842182,
- 0.09759915620088577,
- -0.0538039430975914,
- -0.07041137665510178,
- 0.06529442220926285,
- 0.10000814497470856,
- -0.03545248135924339,
- 0.01267841923981905,
- -0.012272372841835022,
- -0.014422143809497356,
- 0.00010004775685956702,
- -0.03535741940140724,
- 0.0023760725744068623,
- -0.038847632706165314,
- -0.06215895712375641,
- -0.046808820217847824,
- -0.008418961428105831,
- -0.11750075221061707,
- 0.03282346948981285,
- 0.04107895866036415,
- 0.075118787586689,
- 0.08040370047092438,
- 0.02972334809601307,
- -0.005005728453397751,
- -0.012361908331513405,
- -0.06681495904922485,
- 0.04025540500879288,
- 0.18069113790988922,
- -0.010624409653246403,
- -0.038116246461868286,
- -0.00813270267099142
- ]
- },
- {
- "keyword": "pitch",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.012302029877901077,
- 0.09336475282907486,
- -0.06106261909008026,
- -0.0890737846493721,
- 0.0005076679517515004,
- 0.06874393671751022,
- -0.0038769543170928955,
- 0.07212281227111816,
- 0.11476198583841324,
- 0.07602714747190475,
- 0.03728640452027321,
- -0.06667602807283401,
- -0.04825960472226143,
- 0.0022373036481440067,
- 0.09560047090053558,
- 0.014134027995169163,
- -0.05363541468977928,
- -0.020507261157035828,
- -0.05001825466752052,
- -0.007230666931718588,
- 0.014558394439518452,
- 0.16036030650138855,
- -0.003106732154265046,
- -0.005806923843920231,
- 0.027484579011797905,
- 0.06977597624063492,
- 0.025360960513353348,
- 0.06549425423145294,
- -0.012633881531655788,
- -0.09749699383974075,
- -0.0005444801645353436,
- 0.06792652606964111,
- 0.06571842730045319,
- 0.032739270478487015,
- -0.11472642421722412,
- 0.009543925523757935,
- -0.04077048599720001,
- -0.0015960898017510772,
- 0.03652555122971535,
- 0.047900810837745667,
- -0.004437809344381094,
- -0.012968705967068672,
- 0.0612427182495594,
- 0.017550276592373848,
- -0.04234140366315842,
- 0.05542653799057007,
- -0.026417991146445274,
- 0.0429101288318634,
- -0.0028297079261392355,
- -0.035009242594242096,
- 0.0007028600084595382,
- -0.020121626555919647,
- 0.04308805242180824,
- 0.03228311240673065,
- 0.0716700479388237,
- 0.09979576617479324,
- -0.0023349635303020477,
- 0.046661097556352615,
- 0.026610560715198517,
- 0.007081277202814817,
- 0.044150833040475845,
- -0.01368837058544159,
- -0.04606042057275772,
- -0.05298175662755966,
- -0.07081016898155212,
- -0.09545806795358658,
- -0.07572001218795776,
- 0.00231950543820858,
- -0.006140049546957016,
- 0.03222350776195526,
- 0.017062552273273468,
- -0.026417270302772522,
- 0.042779501527547836,
- -0.04294711723923683,
- 0.1142614483833313,
- -0.05845310166478157,
- -0.03433900699019432,
- -0.07175043225288391,
- -0.03256193920969963,
- -0.02191993221640587,
- -0.056034479290246964,
- -0.11848680675029755,
- -0.098402239382267,
- -0.019699303433299065,
- -0.008274003863334656,
- -0.06519830971956253,
- 0.01127473171800375,
- 0.09487268328666687,
- 0.005103691481053829,
- 0.02912943996489048,
- -0.08964107185602188,
- 0.008691713213920593,
- -0.027406848967075348,
- -0.00947111938148737,
- -0.029850902035832405,
- 0.038002271205186844,
- -0.029581813141703606,
- -0.08660504221916199,
- -0.0654718428850174,
- 0.20916524529457092,
- 0.012679681181907654,
- -0.004593302495777607,
- 0.03084852732717991,
- 0.040930770337581635,
- -0.02589683048427105,
- -0.020455705001950264,
- 0.010243890807032585,
- 0.034862615168094635,
- 0.016298571601510048,
- -0.014852983877062798,
- 0.004609762690961361,
- 0.05028976500034332,
- -0.08428800106048584,
- 0.08247239887714386,
- -0.012287353165447712,
- -0.026563815772533417,
- -0.031617775559425354,
- -0.00039406513678841293,
- -0.0037811496295034885,
- 0.011007814668118954,
- 0.024190157651901245,
- 0.0283649954944849,
- -0.05279477685689926,
- 0.05427110567688942,
- -0.06387051194906235,
- -0.002048990922048688,
- -0.013947177678346634,
- -4.418363309872364e-33,
- -0.047088317573070526,
- 0.04776934161782265,
- -0.01797635853290558,
- 0.013855512253940105,
- -0.015441481955349445,
- -0.017589550465345383,
- -0.04029176011681557,
- 0.08491476625204086,
- 0.06320435553789139,
- 0.025302130728960037,
- -0.014862144365906715,
- -0.019916171208024025,
- 0.006038626190274954,
- -0.03174198046326637,
- 0.075620137155056,
- -0.05359676107764244,
- -0.06983083486557007,
- 0.04528418555855751,
- -0.04388155788183212,
- 0.05203381925821304,
- -0.05530036985874176,
- -0.0006672693998552859,
- -0.035062167793512344,
- -0.05321875959634781,
- -0.018784713000059128,
- 0.02100815810263157,
- 0.023982703685760498,
- -0.13153252005577087,
- 0.002461499534547329,
- -0.009692966006696224,
- 0.02327818050980568,
- 0.037019502371549606,
- -0.06769434362649918,
- -0.002639084355905652,
- -0.03034229762852192,
- -0.0019735575187951326,
- -0.03575926646590233,
- -0.036320313811302185,
- -0.0307327713817358,
- -0.049928780645132065,
- -0.05897660180926323,
- 0.013981273397803307,
- -0.06048188731074333,
- -0.021774033084511757,
- -0.00680306414142251,
- 0.015572111122310162,
- -0.05661175772547722,
- 0.03592333197593689,
- 0.08702275156974792,
- 0.05431123077869415,
- 0.08335280418395996,
- -0.05541497468948364,
- 0.027715256437659264,
- 0.03279343619942665,
- 0.08252684772014618,
- -0.058713044971227646,
- -0.0222915168851614,
- 0.041325319558382034,
- -0.02816552296280861,
- 0.0023138984106481075,
- 0.05714194476604462,
- 0.005351786967366934,
- -0.03042958304286003,
- -0.004779611248522997,
- -0.012099125422537327,
- -0.01002772431820631,
- 0.08485426008701324,
- -0.053937021642923355,
- 0.03566495329141617,
- -0.07135391980409622,
- -0.029717786237597466,
- -0.0269156601279974,
- -0.004585198126733303,
- 0.08067512512207031,
- -0.09224415570497513,
- 0.014784427359700203,
- 0.07821661978960037,
- 0.12216555327177048,
- 0.02460150420665741,
- 0.009732495993375778,
- -0.051081787794828415,
- 0.020741745829582214,
- -0.003748829010874033,
- -0.09779679775238037,
- -0.025357693433761597,
- 0.027075573801994324,
- -0.013213501311838627,
- -0.0720122903585434,
- 0.017664216458797455,
- 0.09340384602546692,
- -0.09198419749736786,
- 0.02143462374806404,
- -0.031413063406944275,
- 0.041534654796123505,
- -0.002156216185539961,
- 2.794457353474722e-33,
- -0.048979032784700394,
- 0.02434111200273037,
- -0.07242891192436218,
- 0.0719761773943901,
- 0.013537273742258549,
- 0.09052387624979019,
- 0.07164573669433594,
- 0.017240513116121292,
- -0.03707992658019066,
- -0.009292635135352612,
- -0.03372383490204811,
- -0.013659563846886158,
- 0.024967065081000328,
- -0.007355066016316414,
- 0.027956124395132065,
- 0.0014749204274266958,
- 0.028660429641604424,
- 0.05839687958359718,
- 0.030390655621886253,
- 0.047941792756319046,
- -0.010105335153639317,
- -0.01143876276910305,
- -0.0402466356754303,
- 0.011273846961557865,
- -0.08736560493707657,
- 0.041836101561784744,
- 0.035118699073791504,
- 0.029812108725309372,
- -0.1310168206691742,
- -0.05651436373591423,
- 0.02663074992597103,
- -0.03361250460147858,
- 0.004350597970187664,
- -0.002424638718366623,
- -0.040517304092645645,
- 0.11290372908115387,
- -0.00971206370741129,
- 0.02287147380411625,
- -0.08667748421430588,
- 0.04655413329601288,
- 0.040636301040649414,
- 0.07576406002044678,
- 0.053950682282447815,
- 0.12110195308923721,
- -0.07545851171016693,
- 0.005833368748426437,
- 0.047334495931863785,
- 0.030196890234947205,
- -0.02537137269973755,
- 0.04917120933532715,
- -0.03236227110028267,
- 0.017758622765541077,
- 0.03670875355601311,
- -0.08611883968114853,
- -0.03554001823067665,
- -0.0225905142724514,
- 0.0034586547408252954,
- -0.040831059217453,
- 0.007097194902598858,
- -0.0328216552734375,
- -0.022565923631191254,
- 0.03623194247484207,
- -0.07686040550470352,
- 0.01272963359951973,
- -0.017765086144208908,
- 0.052732203155756,
- -0.03829779475927353,
- -0.0643867552280426,
- -0.015460094437003136,
- 0.07475187629461288,
- -0.05791522189974785,
- 0.05740676075220108,
- -0.028260309249162674,
- 0.010930228978395462,
- -0.0705399215221405,
- 0.061153512448072433,
- -0.016741877421736717,
- -0.04498821869492531,
- -0.03613882511854172,
- -0.04244152829051018,
- -0.03848036378622055,
- 0.01885673590004444,
- -0.060740143060684204,
- 0.012238336727023125,
- 0.06289849430322647,
- 0.026856811717152596,
- -0.04047871008515358,
- -0.012777838855981827,
- -0.0038616752717643976,
- 0.02546689845621586,
- 0.06250691413879395,
- 0.07474137842655182,
- 0.012629983015358448,
- -0.036566536873579025,
- 0.04595623537898064,
- -1.0587962506747317e-8,
- -0.03971899300813675,
- 0.033996857702732086,
- -0.010554574429988861,
- -0.029330817982554436,
- 0.03630049526691437,
- 0.012492284178733826,
- 0.034021131694316864,
- -0.07555949687957764,
- 0.06374087184667587,
- -0.051871731877326965,
- -0.030634978786110878,
- -0.005134921986609697,
- 0.011811128817498684,
- 0.015202627517282963,
- 0.03422157093882561,
- -0.018947212025523186,
- -0.10503233969211578,
- 0.08850537985563278,
- -0.00560892466455698,
- 0.0634729266166687,
- -0.0022867312654852867,
- 0.06195756793022156,
- -0.009659687988460064,
- -0.007252957206219435,
- 0.06369173526763916,
- -0.015170622617006302,
- 0.03230723738670349,
- 0.12462779134511948,
- 0.024505674839019775,
- -0.01655576378107071,
- 0.05410156771540642,
- 0.10196417570114136,
- 0.00841666478663683,
- -0.04991377145051956,
- -0.029772218316793442,
- 0.010221734642982483,
- 0.03678157925605774,
- -0.02953704074025154,
- 0.008814179338514805,
- -0.034488677978515625,
- -0.07615625858306885,
- 0.11827316135168076,
- -0.14115510880947113,
- -0.03358437120914459,
- 0.007884285412728786,
- -0.0250751581043005,
- 0.0024225893430411816,
- 0.0013723023002967238,
- -0.056553784757852554,
- -0.02707061730325222,
- -0.0958116427063942,
- 0.0575028620660305,
- 0.019556233659386635,
- 0.06155659630894661,
- 0.005115952342748642,
- 0.06579775363206863,
- -0.06784208118915558,
- -0.045410651713609695,
- -0.012183243408799171,
- -0.022325672209262848,
- 0.010852854698896408,
- -0.014606289565563202,
- 0.04273844137787819,
- 0.027593910694122314
- ]
- },
- {
- "keyword": "presentation",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03580596670508385,
- 0.10763891786336899,
- -0.023403048515319824,
- -0.011622719466686249,
- 0.006376767065376043,
- 0.06645732372999191,
- 0.009137402288615704,
- 0.0374857634305954,
- 0.0038176709786057472,
- -0.0053966171108186245,
- 0.006486836355179548,
- 0.010897235944867134,
- -0.027471164241433144,
- 0.05335012450814247,
- -0.012203488498926163,
- -0.03336374834179878,
- 0.05343090370297432,
- -0.0023734422866255045,
- 0.01634959690272808,
- 0.03169161453843117,
- 0.07782161235809326,
- 0.014302057214081287,
- -0.011963154189288616,
- 0.0064692250452935696,
- 0.0014523849822580814,
- 0.05269159376621246,
- -0.014930084347724915,
- 0.001678653177805245,
- 0.12737828493118286,
- -0.051114246249198914,
- -0.028535762801766396,
- -0.024533208459615707,
- 0.042190756648778915,
- 0.020037081092596054,
- -0.0059682466089725494,
- 0.027494968846440315,
- -0.025222307071089745,
- 0.044408440589904785,
- -0.02226335182785988,
- 0.0005703670904040337,
- -0.022222278639674187,
- -0.033493004739284515,
- -0.0099327452480793,
- -0.07501401752233505,
- 0.04241524636745453,
- -0.06345731019973755,
- 0.01247221790254116,
- 0.024342535063624382,
- -0.007609186228364706,
- 0.020395072177052498,
- -0.10812672972679138,
- -0.03592532500624657,
- -0.008019044995307922,
- -0.021280424669384956,
- 0.04000290110707283,
- -0.014161095954477787,
- -0.025536976754665375,
- -0.021212872117757797,
- -0.0311460979282856,
- -0.02760537713766098,
- 0.00727182999253273,
- 0.024837760254740715,
- -0.04791415110230446,
- 0.04797089472413063,
- 0.0676896795630455,
- 0.03586675971746445,
- 0.0328642800450325,
- 0.07589911669492722,
- -0.033105358481407166,
- 0.0016688087489455938,
- -0.0007188665331341326,
- -0.04676299914717674,
- 0.05588041990995407,
- -0.016363097354769707,
- -0.0026121579576283693,
- -0.0765463337302208,
- -0.005634986329823732,
- -0.06408340483903885,
- 0.006100296508520842,
- -0.0033416927326470613,
- 0.12471897900104523,
- 0.00688467500731349,
- -0.017805766314268112,
- -0.0460297130048275,
- -0.01081633660942316,
- -0.028541209176182747,
- -0.05158623307943344,
- 0.006422264035791159,
- -0.08303800225257874,
- 0.010679595172405243,
- -0.12030142545700073,
- 0.013410136103630066,
- -0.04909926652908325,
- 0.0039113364182412624,
- -0.010275984182953835,
- -0.06523041427135468,
- -0.041783470660448074,
- -0.06809836626052856,
- 0.04510001838207245,
- 0.2639614939689636,
- 0.019414139911532402,
- 0.06061127036809921,
- 0.03962019830942154,
- -0.07040055841207504,
- -0.14332416653633118,
- -0.1283881515264511,
- -0.08191791921854019,
- 0.032464563846588135,
- -0.03890391066670418,
- 0.01907104067504406,
- 0.009777404367923737,
- 0.04338986799120903,
- -0.11362650245428085,
- -0.001406976254656911,
- 0.03299297019839287,
- -0.011200889013707638,
- -0.026319559663534164,
- 0.004516302607953548,
- 0.006702432408928871,
- -0.05119070038199425,
- 0.0835103914141655,
- 0.018788928166031837,
- 0.03778071328997612,
- 0.08104871958494186,
- -0.0683068111538887,
- -0.0895334854722023,
- 0.0068244184367358685,
- -6.389181342755672e-33,
- 0.009882824495434761,
- 0.007322638761252165,
- 0.005711668636649847,
- 0.11901402473449707,
- 0.02358340658247471,
- 0.05040186271071434,
- -0.04106373339891434,
- -0.03842425346374512,
- 0.0005655706627294421,
- 0.023343978449702263,
- 0.06909184902906418,
- 0.0418962761759758,
- 0.06164926290512085,
- 0.03108985722064972,
- -0.0058913384564220905,
- 0.003308822400867939,
- -0.00794178992509842,
- 0.17047016322612762,
- -0.0497465617954731,
- -0.0442446693778038,
- -0.04483940824866295,
- 0.06197312846779823,
- 0.027269510552287102,
- 0.028384635224938393,
- 0.012221736833453178,
- 0.036332692950963974,
- 0.0384162999689579,
- -0.06500066071748734,
- -0.07210206985473633,
- -0.016446301713585854,
- -0.021878140047192574,
- 0.02777720056474209,
- 0.0614328607916832,
- -0.07029851526021957,
- 0.04701453447341919,
- -0.03534150868654251,
- 0.003227889770641923,
- -0.12682636082172394,
- 0.10078374296426773,
- 0.0313166044652462,
- -0.028204089030623436,
- 0.000985761289484799,
- -0.009517259895801544,
- 0.00884437095373869,
- 0.04692515358328819,
- 0.11992241442203522,
- 0.03841042518615723,
- 0.013813378289341927,
- -0.028209347277879715,
- 0.038520462810993195,
- 0.030677447095513344,
- -0.02597566694021225,
- -0.05446641519665718,
- -0.05117737129330635,
- 0.04839120805263519,
- -0.04707837477326393,
- -0.016554992645978928,
- 0.006348397117108107,
- 0.0394262857735157,
- -0.02003253996372223,
- 0.017377443611621857,
- 0.0857945904135704,
- -0.09068962931632996,
- -0.05117311328649521,
- -0.0671454444527626,
- 0.01879829354584217,
- -0.06036090850830078,
- -0.07219220697879791,
- 0.06604762375354767,
- -0.010971070267260075,
- -0.09650992602109909,
- -0.00022066582459956408,
- 0.01678352616727352,
- -0.022890737280249596,
- 0.0686001256108284,
- 0.00013972083979751915,
- -0.004661009646952152,
- 0.04026395082473755,
- -0.03930091857910156,
- 0.022922266274690628,
- -0.12487755715847015,
- -0.05722976475954056,
- 0.046629056334495544,
- -0.02572876401245594,
- -0.033388324081897736,
- 0.010779079049825668,
- 0.005603361409157515,
- 0.0003092636470682919,
- -0.008924686349928379,
- 0.04031951352953911,
- -0.04030958563089371,
- 0.027095066383481026,
- 0.007401082199066877,
- 0.08659554272890091,
- 0.0598834864795208,
- 4.862440463700054e-33,
- -0.0080269705504179,
- 0.07032258808612823,
- -0.1166180893778801,
- 0.007386630866676569,
- 0.05936349555850029,
- -0.02658982202410698,
- 0.03767022863030434,
- -0.00467517226934433,
- -0.02857140824198723,
- -0.01629597693681717,
- 0.015427369624376297,
- -0.04477337747812271,
- 0.04852467030286789,
- 0.011633580550551414,
- -0.014834937639534473,
- 0.014701250940561295,
- 0.15588384866714478,
- 0.005564396735280752,
- -0.03861240670084953,
- 0.03952755406498909,
- 0.003542904043570161,
- 0.07581184059381485,
- -0.04121115058660507,
- -0.09168419241905212,
- -0.022516988217830658,
- 0.03294411301612854,
- 0.07988147437572479,
- -0.004777609370648861,
- 0.024759044870734215,
- 0.005859905853867531,
- 0.027330484241247177,
- -0.09672105312347412,
- -0.04390102997422218,
- -0.0024269074201583862,
- -0.02446753904223442,
- 0.16121456027030945,
- 0.04553208127617836,
- -0.07597727328538895,
- -0.04143771156668663,
- -0.01749962568283081,
- 0.013294513337314129,
- -0.009657599963247776,
- -0.027128087356686592,
- 0.13047918677330017,
- -0.04601547494530678,
- -0.0030699532944709063,
- -0.006905808579176664,
- 0.02174539864063263,
- 0.07157022505998611,
- 0.020590858533978462,
- -0.07779676467180252,
- 0.016799798235297203,
- 0.01917833834886551,
- -0.16176669299602509,
- -0.007073289714753628,
- -0.0663982480764389,
- -0.04039411619305611,
- -0.046507176011800766,
- 0.00989637803286314,
- -0.0022216644138097763,
- 0.000478603906231001,
- 0.013350601308047771,
- -0.06252229958772659,
- -0.05861368402838707,
- 0.02038588374853134,
- -0.012392371892929077,
- -0.03603728488087654,
- 0.03289124742150307,
- 0.00018575855938252062,
- 0.038980282843112946,
- 0.08670583367347717,
- 0.05752801522612572,
- -0.00708020431920886,
- -0.0373094342648983,
- 0.009961351752281189,
- 0.017916955053806305,
- -0.06497222930192947,
- 0.07596568018198013,
- 0.007064825389534235,
- -0.04027697816491127,
- -0.05010909587144852,
- 0.030742600560188293,
- 0.01130860298871994,
- -0.02258710190653801,
- 0.011230669915676117,
- 0.038620881736278534,
- 0.024882633239030838,
- 0.016802582889795303,
- -0.0323842391371727,
- 0.04050889611244202,
- -0.02650800719857216,
- -0.02154131978750229,
- 0.09590964019298553,
- -0.021918023005127907,
- 0.04488984867930412,
- -1.3061995041141472e-8,
- -0.01977873034775257,
- 0.007407298311591148,
- 0.05338875576853752,
- -0.10662419348955154,
- -0.017821619287133217,
- 0.015000966377556324,
- 0.020034154877066612,
- -0.0241390373557806,
- -0.000999783631414175,
- -0.013270007446408272,
- -0.005842126905918121,
- -0.014398494735360146,
- 0.027543433010578156,
- 0.06087293475866318,
- 0.06702002137899399,
- -0.021934110671281815,
- -0.022382235154509544,
- -0.007964015938341618,
- -0.035993073135614395,
- -0.07026837021112442,
- 0.04025839641690254,
- -0.015942217782139778,
- 0.021887054666876793,
- 0.036000192165374756,
- -0.012399211525917053,
- 0.040700726211071014,
- 0.022784443572163582,
- 0.021719956770539284,
- -0.002612875308841467,
- 0.0008280529291369021,
- -0.029800651594996452,
- 0.025727681815624237,
- -0.05243954062461853,
- 0.01412829477339983,
- 0.046369731426239014,
- 0.008447873406112194,
- -0.062168266624212265,
- 0.030717747285962105,
- 0.08314623683691025,
- 0.02369186095893383,
- -0.024776114150881767,
- -0.05128519982099533,
- 0.06708107143640518,
- 0.06527925282716751,
- -0.04076220095157623,
- 0.0634516254067421,
- -0.013222523964941502,
- -0.042787112295627594,
- -0.06028507649898529,
- -0.02909078262746334,
- -0.05372381582856178,
- -0.06877414137125015,
- -0.02039628103375435,
- 0.010039189830422401,
- 0.050974152982234955,
- 0.045925211161375046,
- 0.05828586220741272,
- 0.01855294406414032,
- -0.010621168650686741,
- 0.03863457217812538,
- 0.05119886249303818,
- 0.108315609395504,
- -0.04517936706542969,
- 0.074897401034832
- ]
- },
- {
- "keyword": "slide",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03313707932829857,
- 0.028579948469996452,
- 0.006873397622257471,
- -0.03278267756104469,
- -0.05600471422076225,
- 0.023931188508868217,
- 0.05532034859061241,
- 0.04277743399143219,
- 0.0693478137254715,
- -0.0363435298204422,
- 0.020741650834679604,
- 0.038582853972911835,
- -0.006014914717525244,
- 0.04083447903394699,
- -0.016728248447179794,
- -0.024859081953763962,
- -0.017752863466739655,
- 0.08082237839698792,
- -0.010830704122781754,
- -0.04184753820300102,
- -0.04456266388297081,
- -0.017461981624364853,
- -0.037416111677885056,
- 0.013310483656823635,
- -0.09024181962013245,
- 0.08675650507211685,
- -0.03063611313700676,
- -0.0002618315920699388,
- 0.0015894860262051225,
- -0.03519865870475769,
- -0.03479650616645813,
- -0.08351703733205795,
- -0.030203914269804955,
- 0.0506175272166729,
- -0.05380447581410408,
- -0.03531736135482788,
- -0.07252320647239685,
- 0.03205425292253494,
- 0.0001975126942852512,
- 0.04722338914871216,
- -0.027222752571105957,
- -0.09850288182497025,
- 0.04210616275668144,
- -0.0547822080552578,
- 0.06632133573293686,
- 0.07344591617584229,
- -0.000947055930737406,
- 0.022939888760447502,
- 0.005579282995313406,
- 0.02823101542890072,
- -0.06473664939403534,
- -0.028450628742575645,
- 0.051102206110954285,
- 0.026413267478346825,
- 0.024577533826231956,
- 0.020721198990941048,
- 0.015000244602560997,
- 0.002289361320436001,
- 0.05351652950048447,
- -0.0007538057980127633,
- 0.06539475917816162,
- 0.019891314208507538,
- -0.041660938411951065,
- 0.06373686343431473,
- -0.012472426518797874,
- -0.028013132512569427,
- -0.02393212728202343,
- 0.012662836350500584,
- -0.0030283688101917505,
- 0.032222144305706024,
- 0.027753010392189026,
- -0.04071948677301407,
- 0.0751342922449112,
- 0.032024282962083817,
- -0.009460479952394962,
- -0.11165601015090942,
- 0.05847686901688576,
- -0.0054300385527312756,
- -0.01844608597457409,
- 0.015979794785380363,
- 0.10305415093898773,
- -0.03236759081482887,
- -0.02466050535440445,
- -0.042391397058963776,
- -0.006133516319096088,
- 0.010619060136377811,
- -0.005635562818497419,
- 0.08563753217458725,
- -0.03228331357240677,
- 0.04722879081964493,
- -0.06936826556921005,
- -0.010562015697360039,
- -0.07745087891817093,
- 0.01355212926864624,
- 0.015436912886798382,
- -0.05545719340443611,
- -0.08753221482038498,
- -0.10435856878757477,
- -0.07208477705717087,
- 0.2204464226961136,
- -0.011242800392210484,
- 0.01941547356545925,
- 0.05991324037313461,
- 0.021110622212290764,
- -0.09547822922468185,
- -0.03509947285056114,
- -0.03553009033203125,
- 0.07282808423042297,
- -0.002705948194488883,
- 0.046029940247535706,
- -0.007951684296131134,
- -0.04795301705598831,
- -0.002839988563209772,
- -0.007898980751633644,
- -0.01507825031876564,
- -0.11327385902404785,
- -0.048281848430633545,
- 0.020289812237024307,
- -0.0044862087815999985,
- -0.09201853722333908,
- 0.07404747605323792,
- 0.03324446827173233,
- -0.007554355077445507,
- 0.018236776813864708,
- -0.07141266763210297,
- -0.07671822607517242,
- -0.007833004929125309,
- -6.0722012095327806e-33,
- 0.033889688551425934,
- -0.08337920159101486,
- -0.008054361678659916,
- -0.04418231546878815,
- 0.0034429235383868217,
- 0.015478720888495445,
- 0.012982119806110859,
- -0.04154018685221672,
- -0.03122941590845585,
- 0.07123734802007675,
- 0.03541332855820656,
- 0.005768189672380686,
- -0.0215840395539999,
- 0.023576773703098297,
- 0.042561039328575134,
- -0.033800527453422546,
- 0.08451760560274124,
- 0.09065818041563034,
- 0.020976625382900238,
- -0.001445013447664678,
- -0.016073759645223618,
- 0.061039865016937256,
- 0.002500941976904869,
- 0.021288763731718063,
- -0.014776196330785751,
- 0.08574901521205902,
- 0.009944958612322807,
- -0.06698492169380188,
- -0.03371112793684006,
- 0.007547901012003422,
- -0.06384941190481186,
- -0.0006361613050103188,
- -0.020037610083818436,
- -0.07747803628444672,
- 0.07458584010601044,
- -0.05140075087547302,
- -0.027742648497223854,
- -0.09275747090578079,
- 0.06022276356816292,
- -0.061093274503946304,
- -0.006244427990168333,
- -0.030905401334166527,
- 0.016304152086377144,
- 0.008284825831651688,
- -0.041412103921175,
- 0.07177022844552994,
- 0.083486407995224,
- 0.059900421649217606,
- -0.030188612639904022,
- 0.021416503936052322,
- 0.06877182424068451,
- -0.02636251412332058,
- -0.06735756993293762,
- -0.023040002211928368,
- 0.04115743562579155,
- -0.047132767736911774,
- 0.04601588845252991,
- 0.03373517096042633,
- 0.0398264043033123,
- -0.011982699856162071,
- 0.028875501826405525,
- 0.07255358248949051,
- -0.039769429713487625,
- -0.10419720411300659,
- 0.0670042634010315,
- -0.03990646079182625,
- 0.0024347680155187845,
- 0.03047095239162445,
- 0.025045737624168396,
- -0.01903212070465088,
- -0.0640222430229187,
- -0.0619506910443306,
- 0.04527633637189865,
- 0.00746153574436903,
- 0.04114218428730965,
- 0.022573653608560562,
- 0.04374108836054802,
- 0.0570513941347599,
- -0.019997304305434227,
- -0.009774585254490376,
- -0.14499817788600922,
- -0.06012069806456566,
- 0.045483969151973724,
- 0.00009967868390958756,
- -0.02247682958841324,
- 0.058282192796468735,
- -0.016874123364686966,
- 0.027822550386190414,
- -0.038848381489515305,
- 0.03729549050331116,
- -0.07394594699144363,
- 0.011402948759496212,
- 0.022354518994688988,
- 0.13809530436992645,
- 0.011282071471214294,
- 5.038625026369237e-33,
- -0.04550406336784363,
- 0.07705985009670258,
- -0.060014281421899796,
- 0.0981837660074234,
- 0.008566704578697681,
- -0.01919892616569996,
- 0.004961393773555756,
- 0.0004851298872381449,
- 0.022067831829190254,
- 0.01498186495155096,
- -0.026614323258399963,
- 0.0014819727512076497,
- 0.031445275992155075,
- -0.0160905160009861,
- 0.050904735922813416,
- 0.0524037703871727,
- 0.09104783833026886,
- 0.008570636622607708,
- -0.021609539166092873,
- 0.090184785425663,
- 0.015248003415763378,
- 0.09281213581562042,
- -0.005407748743891716,
- 0.022861039265990257,
- -0.032289136201143265,
- 0.03658599406480789,
- 0.12475734949111938,
- 0.024467136710882187,
- -0.09817689657211304,
- 0.026593539863824844,
- -0.013713212683796883,
- -0.07250922173261642,
- -0.05088954418897629,
- -0.00907987728714943,
- -0.05604429170489311,
- 0.028427647426724434,
- 0.006871192716062069,
- -0.0559275858104229,
- -0.028051020577549934,
- -0.0656651109457016,
- 0.018801696598529816,
- 0.007980591617524624,
- 0.032849669456481934,
- 0.12227289378643036,
- 0.0077207861468195915,
- 0.06330427527427673,
- 0.03875286877155304,
- 0.12273204326629639,
- 0.031565744429826736,
- -0.003545680083334446,
- -0.08468539267778397,
- 0.00040830924990586936,
- -0.019970694556832314,
- -0.12517844140529633,
- 0.05974740535020828,
- -0.03142074868083,
- -0.02050882764160633,
- -0.042440593242645264,
- -0.002389273140579462,
- -0.059993844479322433,
- 0.039810534566640854,
- 0.0776020735502243,
- -0.006926876958459616,
- -0.026897529140114784,
- -0.03108217380940914,
- 0.09637091308832169,
- -0.05929422006011009,
- -0.038237255066633224,
- -0.08529960364103317,
- 0.0180201455950737,
- -0.0010427763918414712,
- 0.039615925401449203,
- 0.035900771617889404,
- -0.07129975408315659,
- -0.05418691411614418,
- -0.042230263352394104,
- -0.010808872990310192,
- 0.05536964163184166,
- 0.006016208790242672,
- 0.005400541238486767,
- 0.009838041849434376,
- -0.009248573333024979,
- 0.012335319072008133,
- -0.029871445149183273,
- -0.03570065274834633,
- 0.05345744639635086,
- -0.054813202470541,
- -0.01207614503800869,
- -0.024889765307307243,
- -0.009883817285299301,
- -0.011268187314271927,
- 0.03634769469499588,
- 0.13884271681308746,
- -0.061343006789684296,
- -0.011814279481768608,
- -1.225401291549133e-8,
- -0.02274550497531891,
- 0.022413378581404686,
- 0.008938130922615528,
- -0.10209472477436066,
- -0.016641881316900253,
- 0.02976052090525627,
- 0.03486471623182297,
- 0.11235007643699646,
- 0.05003611370921135,
- -0.08635114133358002,
- 0.04500008374452591,
- -0.07923287153244019,
- 0.06702560931444168,
- 0.10346236824989319,
- 0.03579212352633476,
- 0.0174967460334301,
- -0.049227986484766006,
- 0.059122346341609955,
- -0.0313829630613327,
- 0.004685219842940569,
- 0.023494644090533257,
- -0.03037748672068119,
- 0.07698269933462143,
- 0.06870556622743607,
- -0.043568529188632965,
- -0.00817969348281622,
- -0.0438840426504612,
- -0.010231864638626575,
- -0.007680551148951054,
- -0.02580811269581318,
- 0.04465864971280098,
- -0.022157106548547745,
- 0.011640162207186222,
- 0.02243625372648239,
- 0.04578373581171036,
- 0.030293207615613937,
- -0.05051377788186073,
- 0.01055062748491764,
- 0.01842496544122696,
- 0.025925984606146812,
- -0.01963629014790058,
- 0.032930031418800354,
- 0.0680474266409874,
- 0.06537947058677673,
- -0.14316202700138092,
- 0.03887069970369339,
- 0.022590065374970436,
- -0.05736482888460159,
- -0.03984351456165314,
- 0.013333961367607117,
- 0.00652435002848506,
- -0.03679055720567703,
- -0.0415969155728817,
- 0.040685009211301804,
- 0.12746894359588623,
- 0.012402486987411976,
- 0.024592459201812744,
- -0.027126766741275787,
- -0.0786871612071991,
- 0.07311420142650604,
- -0.005149350967258215,
- -0.009330841712653637,
- -0.04447353258728981,
- 0.04038095846772194
- ]
- },
- {
- "keyword": "deck",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05478779599070549,
- 0.0476115345954895,
- -0.02508329600095749,
- -0.007475284393876791,
- -0.0372927188873291,
- -0.023283720016479492,
- 0.11633004248142242,
- 0.05326109007000923,
- -0.007146070711314678,
- -0.027658967301249504,
- -0.025287365540862083,
- -0.07935220003128052,
- -0.05920564383268356,
- -0.032609134912490845,
- -0.03995119035243988,
- 0.032753780484199524,
- 0.03165944665670395,
- 0.04881356656551361,
- 0.030631763860583305,
- 0.019530389457941055,
- -0.024632299318909645,
- 0.060550346970558167,
- -0.07463383674621582,
- 0.023442691192030907,
- -0.10472086071968079,
- 0.05160530284047127,
- -0.07575927674770355,
- 0.021147863939404488,
- 0.002921856939792633,
- -0.12154562026262283,
- -0.03110484778881073,
- 0.1080719381570816,
- 0.028625421226024628,
- 0.022090794518589973,
- -0.05241217464208603,
- 0.012875179760158062,
- -0.024518566206097603,
- 0.010889224708080292,
- -0.005477811209857464,
- 0.0004934244207106531,
- -0.0523386225104332,
- -0.025933656841516495,
- -0.023821664974093437,
- 0.05331164970993996,
- -0.05781279876828194,
- -0.031790219247341156,
- 0.02347956784069538,
- -0.04015938937664032,
- 0.015927908942103386,
- 0.060772623866796494,
- 0.024720050394535065,
- 0.05461512878537178,
- -0.0019287732429802418,
- -0.02325695939362049,
- 0.00588639359921217,
- 0.01793493703007698,
- -0.008749708533287048,
- -0.04336703568696976,
- 0.023860666900873184,
- -0.018974632024765015,
- 0.051459550857543945,
- 0.024136539548635483,
- -0.07010922580957413,
- 0.06400442868471146,
- 0.013512284494936466,
- -0.07863502949476242,
- 0.05098123103380203,
- 0.08268608152866364,
- 0.04389183968305588,
- -0.015564868226647377,
- 0.02375143952667713,
- 0.07279499620199203,
- 0.044437818229198456,
- -0.046717993915081024,
- 0.026614027097821236,
- 0.028094695881009102,
- 0.029440337792038918,
- -0.07594280689954758,
- 0.05272415652871132,
- -0.05692826956510544,
- -0.010839615017175674,
- 0.0011230823583900928,
- -0.0633716955780983,
- -0.031373023986816406,
- 0.000386562489438802,
- -0.001150811556726694,
- -0.009401475079357624,
- 0.15768522024154663,
- -0.008403408341109753,
- -0.03006383404135704,
- -0.009736799634993076,
- -0.03305524215102196,
- 0.011033490300178528,
- 0.03540898114442825,
- -0.12103874236345291,
- 0.05857117846608162,
- -0.02284533530473709,
- -0.05065295100212097,
- -0.1285286545753479,
- 0.22371776401996613,
- 0.06152372807264328,
- 0.10439441353082657,
- 0.007062756922096014,
- -0.014884019270539284,
- 0.025042207911610603,
- -0.01067780889570713,
- -0.038295846432447433,
- 0.04874768853187561,
- 0.02924785390496254,
- -0.04708455502986908,
- 0.012997708283364773,
- -0.062337879091501236,
- -0.08038796484470367,
- -0.0411953367292881,
- -0.045243557542562485,
- 0.06452479958534241,
- -0.019362885504961014,
- -0.03178407996892929,
- -0.06361503899097443,
- 0.06701647490262985,
- 0.06352932006120682,
- -0.0758744552731514,
- 0.011104672215878963,
- 0.014701900072395802,
- -0.06103542819619179,
- -0.03889930993318558,
- 0.0545707531273365,
- -4.82338833731383e-33,
- 0.023416223004460335,
- -0.045433513820171356,
- 0.02968040108680725,
- -0.009986513294279575,
- 0.09396872669458389,
- 0.006360178347676992,
- 0.0033942258451133966,
- -0.03247436508536339,
- -0.07355740666389465,
- 0.0937725305557251,
- -0.010224058292806149,
- 0.03522656112909317,
- -0.024896282702684402,
- 0.03033086098730564,
- 0.07216721773147583,
- -0.052964843809604645,
- -0.06633086502552032,
- 0.0011198186548426747,
- -0.016702622175216675,
- -0.049365028738975525,
- 0.017857113853096962,
- 0.07416311651468277,
- -0.005050590727478266,
- -0.0324140265583992,
- -0.013389105908572674,
- -0.000007309136435651453,
- 0.033494479954242706,
- -0.04438144713640213,
- 0.04779669642448425,
- 0.06490860134363174,
- 0.046924520283937454,
- -0.07675861567258835,
- 0.016820216551423073,
- 0.006785402074456215,
- 0.03570558503270149,
- -0.007428535260260105,
- -0.006051162723451853,
- -0.04225901886820793,
- 0.03546058014035225,
- -0.06423144787549973,
- -0.058384962379932404,
- 0.004233728162944317,
- 0.014641729183495045,
- -0.027825191617012024,
- -0.0022698300890624523,
- -0.049605656415224075,
- 0.09659328311681747,
- 0.023699136450886726,
- -0.07104059308767319,
- 0.05503297224640846,
- 0.04128574579954147,
- -0.0013035020092502236,
- 0.02244524657726288,
- -0.006939164828509092,
- -0.03394073247909546,
- -0.08691547811031342,
- 0.03136826306581497,
- 0.058240924030542374,
- -0.0017867879942059517,
- 0.0016836950089782476,
- 0.004100900609046221,
- 0.011368106119334698,
- -0.0710626021027565,
- 0.016868064180016518,
- -0.05764050781726837,
- 0.05186549574136734,
- 0.05143631249666214,
- -0.04183303192257881,
- -0.021714190021157265,
- 0.020711494609713554,
- 0.004453491419553757,
- -0.04436661675572395,
- 0.023683687672019005,
- 0.05705586075782776,
- -0.012258879840373993,
- 0.04600386321544647,
- -0.012563942931592464,
- 0.02489449642598629,
- -0.15570181608200073,
- 0.011307151056826115,
- -0.12795716524124146,
- 0.004932364448904991,
- -0.10080159455537796,
- 0.01661561243236065,
- -0.03155633062124252,
- -0.009267357178032398,
- 0.016528477892279625,
- 0.0408305898308754,
- -0.011957590468227863,
- -0.006984929088503122,
- -0.07116670906543732,
- -0.00809506606310606,
- 0.12758710980415344,
- -0.035086557269096375,
- 0.02897113934159279,
- 4.056189826964171e-33,
- -0.10896669328212738,
- 0.0194877777248621,
- 0.024352071806788445,
- -0.005747274961322546,
- 0.004214564338326454,
- -0.017604341730475426,
- 0.050327301025390625,
- 0.04119495674967766,
- -0.007920946925878525,
- -0.04593466967344284,
- -0.08603525906801224,
- 0.11463768035173416,
- -0.014823977835476398,
- 0.03080517239868641,
- 0.013683123514056206,
- 0.04951927438378334,
- 0.032906532287597656,
- 0.035971395671367645,
- -0.004227406810969114,
- 0.01240029651671648,
- 0.04786726087331772,
- 0.015555215068161488,
- -0.023189479485154152,
- 0.08920260518789291,
- 0.01967298425734043,
- 0.0547957643866539,
- 0.05450475960969925,
- -0.0581505261361599,
- 0.026827819645404816,
- -0.026375090703368187,
- 0.07295318692922592,
- -0.040920305997133255,
- -0.010143266059458256,
- 0.03635597974061966,
- -0.03658057749271393,
- 0.07912789285182953,
- 0.010037817992269993,
- 0.08087965846061707,
- -0.09228343516588211,
- -0.04247891902923584,
- 0.022967051714658737,
- 0.025399522855877876,
- 0.022280888631939888,
- 0.09479770809412003,
- -0.05826830863952637,
- -0.011522318236529827,
- -0.03190042823553085,
- 0.08004085719585419,
- 0.10774412006139755,
- 0.04285359010100365,
- -0.1434623748064041,
- -0.019802598282694817,
- 0.008373365737497807,
- -0.04199669882655144,
- 0.046033333986997604,
- -0.019509930163621902,
- -0.08175507932901382,
- -0.012908249162137508,
- -0.08574731647968292,
- -0.02185983583331108,
- 0.015291234478354454,
- 0.03997469320893288,
- -0.013904388062655926,
- -0.002186789410188794,
- -0.0006578249158337712,
- 0.03126673772931099,
- -0.03742179274559021,
- -0.010867386125028133,
- -0.08994600921869278,
- 0.01215359102934599,
- -0.01893022283911705,
- 0.10641788691282272,
- -0.10965242981910706,
- 0.04398273304104805,
- -0.036321140825748444,
- 0.0032453020103275776,
- 0.02316976897418499,
- 0.05120418220758438,
- 0.008487621322274208,
- -0.03177734464406967,
- -0.019035130739212036,
- -0.05244279280304909,
- -0.011467624455690384,
- -0.02249082550406456,
- 0.007349949795752764,
- -0.0009479029686190188,
- 0.048228561878204346,
- 0.029266027733683586,
- 0.05108851566910744,
- -0.08563638478517532,
- 0.07211627066135406,
- 0.023830534890294075,
- 0.007222004700452089,
- 0.003879917785525322,
- -0.06490415334701538,
- -1.1090084406362166e-8,
- 0.01671791635453701,
- 0.009056885726749897,
- 0.020913736894726753,
- -0.013559604063630104,
- 0.006042966619133949,
- 0.00425442261621356,
- 0.04787331819534302,
- 0.005677415989339352,
- -0.060410212725400925,
- -0.004556485917419195,
- 0.0749317929148674,
- 0.04993169382214546,
- 0.04242908954620361,
- 0.014027311466634274,
- 0.1052718460559845,
- -0.03873472288250923,
- -0.0236988365650177,
- -0.0008751916466280818,
- -0.047807902097702026,
- -0.018924027681350708,
- 0.026702262461185455,
- -0.036245569586753845,
- 0.0996936783194542,
- 0.03706671670079231,
- -0.10013162344694138,
- -0.004467105958610773,
- 0.046539969742298126,
- -0.08691117912530899,
- 0.12423504889011383,
- 0.043300382792949677,
- 0.0976540818810463,
- 0.05604305863380432,
- -0.047427304089069366,
- 0.0636577382683754,
- 0.05818726494908333,
- 0.054986193776130676,
- -0.057632703334093094,
- 0.03706100955605507,
- -0.02698090299963951,
- 0.00992315448820591,
- -0.027665279805660248,
- -0.034859199076890945,
- 0.019401084631681442,
- -0.038386210799217224,
- -0.05478457361459732,
- -0.03552260622382164,
- -0.027961108833551407,
- -0.014761142432689667,
- 0.030209602788090706,
- -0.07116267830133438,
- 0.01473498996347189,
- -0.012718654237687588,
- 0.0025436566211283207,
- 0.03559202700853348,
- 0.051547348499298096,
- 0.023521265015006065,
- -0.026670824736356735,
- 0.026148300617933273,
- -0.013257196173071861,
- -0.0506196990609169,
- 0.08390382677316666,
- 0.013019353151321411,
- 0.017753833904862404,
- 0.08433780074119568
- ]
- },
- {
- "keyword": "contract",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.08327751606702805,
- 0.10330499708652496,
- -0.022340036928653717,
- -0.01219639740884304,
- -0.08757728338241577,
- 0.0751676857471466,
- 0.1072157546877861,
- 0.054382260888814926,
- 0.059127312153577805,
- 0.017306827008724213,
- -0.045161325484514236,
- -0.031559478491544724,
- 0.004611453507095575,
- 0.03026450239121914,
- -0.0012174509465694427,
- -0.023515472188591957,
- 0.013898485340178013,
- 0.01829308457672596,
- -0.060994118452072144,
- 0.01957111991941929,
- -0.033034734427928925,
- 0.061234135180711746,
- -0.026265764608979225,
- -0.011956174857914448,
- 0.027951205149292946,
- 0.0057306657545268536,
- -0.01143157109618187,
- 0.03952392190694809,
- 0.011195721104741096,
- -0.1133059561252594,
- -0.03803599253296852,
- 0.05013026297092438,
- 0.0663154274225235,
- 0.002098530763760209,
- 0.005304350517690182,
- 0.012583667412400246,
- -0.08520083129405975,
- -0.06085135415196419,
- -0.01792488619685173,
- -0.022703517228364944,
- -0.007121833972632885,
- -0.05642643943428993,
- -0.036660924553871155,
- 0.012555657885968685,
- 0.01442353893071413,
- 0.010196947492659092,
- 0.003985345829278231,
- 0.06400473415851593,
- 0.03849927335977554,
- 0.08157021552324295,
- 0.0034751850180327892,
- 0.0016641643596813083,
- -0.019492708146572113,
- 0.016442319378256798,
- 0.01659286580979824,
- 0.03497039154171944,
- -0.015928003937005997,
- -0.020042944699525833,
- -0.0013259006664156914,
- -0.010103030130267143,
- 0.08960673958063126,
- -0.005960080306977034,
- -0.07136844098567963,
- 0.040698885917663574,
- -0.008609398268163204,
- -0.019773248583078384,
- -0.0030896083917468786,
- 0.029621539637446404,
- -0.11662839353084564,
- -0.015206442214548588,
- -0.03344864770770073,
- -0.019748901948332787,
- -0.0014508621534332633,
- 0.015271122567355633,
- 0.1109248474240303,
- -0.0012042357120662928,
- 0.03350028768181801,
- 0.014431064948439598,
- 0.10843370109796524,
- -0.139573335647583,
- 0.010312579572200775,
- -0.014439071528613567,
- -0.03138034790754318,
- -0.0061723049730062485,
- 0.012046310119330883,
- -0.061728812754154205,
- 0.07083871215581894,
- 0.0530531220138073,
- 0.07564995437860489,
- -0.01376629713922739,
- -0.0029449050780385733,
- -0.02377018705010414,
- 0.04391395300626755,
- -0.04715205729007721,
- -0.15683986246585846,
- 0.04307118058204651,
- 0.01158730685710907,
- -0.024094032123684883,
- -0.040209025144577026,
- 0.27001914381980896,
- 0.006119672674685717,
- 0.04616117104887962,
- -0.06545049697160721,
- 0.02097596600651741,
- -0.017315277829766273,
- -0.039605092257261276,
- -0.04162131994962692,
- -0.041273221373558044,
- 0.016777683049440384,
- 0.0460130013525486,
- -0.09458575397729874,
- 0.011758828535676003,
- -0.10685890167951584,
- 0.019031429663300514,
- 0.014111638069152832,
- 0.020074989646673203,
- -0.09794700145721436,
- 0.05163103714585304,
- 0.06958474218845367,
- -0.07417145371437073,
- 0.04617930203676224,
- 0.030828526243567467,
- -0.09379183501005173,
- 0.027746446430683136,
- -0.14615172147750854,
- -0.0701262578368187,
- 0.049215395003557205,
- -5.605583584186089e-33,
- 0.029553914442658424,
- -0.035598043352365494,
- -0.025484921410679817,
- 0.07319682091474533,
- 0.055819373577833176,
- 0.002819169545546174,
- 0.020406920462846756,
- 0.09189044684171677,
- -0.08572066575288773,
- 0.11277318000793457,
- -0.045502327382564545,
- -0.0432056225836277,
- 0.014939792454242706,
- 0.025915028527379036,
- 0.03862092271447182,
- 0.04751591384410858,
- 0.009565776214003563,
- -0.0034485983196645975,
- 0.03597639501094818,
- 0.014282464049756527,
- -0.05919623374938965,
- 0.06124646216630936,
- 0.029590986669063568,
- 0.09689494967460632,
- 0.006320605520159006,
- -0.0656839981675148,
- -0.027265293523669243,
- -0.070783831179142,
- 0.03164214268326759,
- 0.0067318277433514595,
- 0.024525783956050873,
- 0.034141167998313904,
- 0.02048490010201931,
- 0.014874636195600033,
- 0.010362067259848118,
- 0.06107489764690399,
- -0.01694273017346859,
- -0.027030350640416145,
- 0.009878331795334816,
- -0.03784836456179619,
- -0.02184443175792694,
- -0.004204345867037773,
- -0.09597955644130707,
- -0.027888990938663483,
- -0.000008711892405699473,
- -0.020347747951745987,
- 0.0923234149813652,
- -0.005819534417241812,
- 0.07160710543394089,
- 0.04162636771798134,
- -0.028131533414125443,
- 0.04258156940340996,
- -0.04298839718103409,
- -0.0024598571471869946,
- -0.018449530005455017,
- -0.035404253751039505,
- -0.008413217961788177,
- -0.0173551794141531,
- -0.016213390976190567,
- 0.010759850032627583,
- 0.007909313775599003,
- -0.017075689509510994,
- 0.041872333735227585,
- 0.06999807059764862,
- -0.06373568624258041,
- -0.0062644160352647305,
- 0.024652888998389244,
- -0.027271278202533722,
- 0.03816685080528259,
- -0.054813992232084274,
- -0.06588947772979736,
- -0.029929347336292267,
- 0.05200836807489395,
- -0.021890336647629738,
- -0.06411243230104446,
- -0.039048876613378525,
- 0.043296199291944504,
- 0.06297866255044937,
- -0.048877377063035965,
- -0.00733390636742115,
- -0.05469999834895134,
- -0.004379554186016321,
- 0.04906132072210312,
- 0.05823003500699997,
- 0.031191498041152954,
- 0.002040226710960269,
- 0.04480262100696564,
- -0.02738216519355774,
- 0.07259641587734222,
- 0.08097262680530548,
- -0.08961465209722519,
- -0.004123253282159567,
- 0.04283672571182251,
- 0.07274341583251953,
- 0.16144679486751556,
- 4.434659702336592e-33,
- -0.004277482628822327,
- 0.03972185030579567,
- -0.03313962370157242,
- 0.03982861712574959,
- 0.03645378723740578,
- -0.002635894576087594,
- 0.011684328317642212,
- 0.009423179551959038,
- -0.012342714704573154,
- 0.08675932139158249,
- -0.011620660312473774,
- -0.04122082144021988,
- 0.024868862703442574,
- -0.030916068702936172,
- 0.055551815778017044,
- -0.06340111792087555,
- -0.0048399739898741245,
- -0.06914485991001129,
- -0.03894273191690445,
- 0.06086084619164467,
- 0.027369296178221703,
- -0.036629706621170044,
- -0.017975840717554092,
- -0.018830599263310432,
- 0.012356704100966454,
- 0.05128618702292442,
- 0.010470373556017876,
- 0.02491617761552334,
- -0.10391417890787125,
- 0.06655790656805038,
- 0.0228255782276392,
- -0.08057278394699097,
- -0.09192654490470886,
- 0.022829381749033928,
- -0.003664874704554677,
- -0.012899592518806458,
- 0.042317524552345276,
- 0.06169166415929794,
- -0.013787779025733471,
- -0.005592850502580404,
- 0.11938764154911041,
- -0.04504391923546791,
- 0.07650100439786911,
- 0.11977997422218323,
- -0.0007153251208364964,
- -0.03672242537140846,
- -0.01581212319433689,
- -0.08881323784589767,
- 0.06054387986660004,
- 0.07464026659727097,
- -0.014928637072443962,
- 0.044402897357940674,
- -0.028531696647405624,
- -0.08072537183761597,
- -0.03184603527188301,
- 0.016747869551181793,
- -0.060088954865932465,
- -0.03467414528131485,
- 0.07975731045007706,
- 0.004733550827950239,
- 0.04143223166465759,
- 0.0899493619799614,
- 0.03460771590471268,
- 0.007560288067907095,
- 0.03055732324719429,
- 0.010239488445222378,
- 0.023565707728266716,
- -0.03655967488884926,
- 0.029747337102890015,
- 0.0021873300429433584,
- -0.04330079257488251,
- 0.008271013386547565,
- -0.06662336736917496,
- 0.042739879339933395,
- 0.033824238926172256,
- -0.020056772977113724,
- -0.08266507089138031,
- -0.06538820266723633,
- -0.012188894674181938,
- 0.02732771262526512,
- -0.0026056121569126844,
- -0.04130548983812332,
- -0.007238785736262798,
- 0.04527569189667702,
- -0.00726421270519495,
- -0.02415868639945984,
- 0.02419615536928177,
- 0.004866420291364193,
- -0.041796378791332245,
- 0.0023422420490533113,
- 0.002978394739329815,
- 0.030643202364444733,
- -0.027868524193763733,
- -0.025201255455613136,
- -0.04453258588910103,
- -1.2248372982526234e-8,
- -0.05367813631892204,
- 0.009518858045339584,
- 0.017379583790898323,
- -0.06027235835790634,
- 0.07880783826112747,
- -0.043974634259939194,
- 0.030734019353985786,
- -0.009464450180530548,
- 0.04476501792669296,
- 0.05634508654475212,
- 0.01494203694164753,
- -0.03625616058707237,
- -0.013093044981360435,
- -0.02052115462720394,
- -0.014425386674702168,
- -0.022598793730139732,
- -0.03832597658038139,
- -0.03824392333626747,
- -0.08830191940069199,
- -0.0059444536454975605,
- -0.09049248695373535,
- 0.058715250343084335,
- -0.006162966135889292,
- -0.07023349404335022,
- 0.043772343546152115,
- -0.04042311757802963,
- 0.011437634006142616,
- 0.158084899187088,
- 0.018950290977954865,
- 0.07652349025011063,
- 0.005879130680114031,
- 0.03599976375699043,
- 0.019282015040516853,
- -0.06224359571933746,
- -0.018848713487386703,
- -0.0771450623869896,
- 0.0058209835551679134,
- -0.034997064620256424,
- 0.05515448749065399,
- -0.037083856761455536,
- -0.027786029502749443,
- 0.08605635166168213,
- 0.0614142045378685,
- 0.01172997523099184,
- 0.0073810480535030365,
- -0.020047472789883614,
- 0.010547277517616749,
- -0.04078354686498642,
- 0.017225459218025208,
- -0.07028978317975998,
- -0.059947095811367035,
- 0.02863256447017193,
- 0.06718309968709946,
- 0.02735801599919796,
- 0.008379298262298107,
- -0.04346571862697601,
- 0.00548472348600626,
- -0.01665038801729679,
- -0.018098672851920128,
- 0.004638828802853823,
- -0.056398261338472366,
- -0.07680778950452805,
- 0.049763258546590805,
- -0.03831174597144127
- ]
- },
- {
- "keyword": "agreement",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0332506038248539,
- 0.11815736442804337,
- -0.018809504806995392,
- 0.018428370356559753,
- -0.04878341406583786,
- -0.007558770012110472,
- 0.08519092202186584,
- -0.009034110233187675,
- 0.057935960590839386,
- -0.009608597494661808,
- -0.021234283223748207,
- -0.022605186328291893,
- -0.034089360386133194,
- 0.041548024863004684,
- -0.0046875206753611565,
- -0.004675344564020634,
- -0.004378260113298893,
- 0.006144851446151733,
- -0.07487120479345322,
- 0.03811339661478996,
- -0.08399656414985657,
- 0.03588264808058739,
- 0.011420933529734612,
- 0.015121213160455227,
- 0.002732126973569393,
- 0.055043332278728485,
- -0.018674219027161598,
- 0.05304538831114769,
- 0.026661619544029236,
- -0.10721742361783981,
- 0.017091084271669388,
- 0.05460001155734062,
- 0.15711823105812073,
- 0.03465458005666733,
- -0.026572490110993385,
- -0.022768951952457428,
- -0.031979769468307495,
- -0.033138733357191086,
- 0.01965157873928547,
- -0.04285040870308876,
- -0.034849587827920914,
- -0.0708356723189354,
- -0.047981005162000656,
- -0.06258345395326614,
- -0.048643115907907486,
- 0.034856367856264114,
- -0.02322731912136078,
- 0.019432950764894485,
- 0.003366016084328294,
- 0.058049414306879044,
- -0.01216770987957716,
- -0.01505734957754612,
- -0.0778466984629631,
- 0.004345697350800037,
- 0.011503145098686218,
- 0.024931279942393303,
- -0.04146413505077362,
- -0.039882805198431015,
- -0.01313703041523695,
- -0.03320473060011864,
- 0.043701790273189545,
- -0.022363945841789246,
- -0.06866538524627686,
- 0.08558128774166107,
- 0.10199978947639465,
- -0.05146893858909607,
- 0.019458208233118057,
- -0.02605319209396839,
- -0.09733691066503525,
- 0.009064813144505024,
- -0.011984148994088173,
- 0.026505833491683006,
- 0.057454802095890045,
- -0.017507584765553474,
- 0.02694719098508358,
- 0.01422395370900631,
- 0.020802481099963188,
- -0.00031274111825041473,
- 0.07572145760059357,
- -0.08811569213867188,
- -0.014784510247409344,
- 0.07038354128599167,
- -0.04359043762087822,
- -0.09390504658222198,
- 0.02145964279770851,
- -0.05153368040919304,
- 0.005608364939689636,
- 0.040767233818769455,
- -0.02633073180913925,
- 0.005137536209076643,
- -0.08723306655883789,
- -0.005439803469926119,
- 0.09303215891122818,
- -0.0508301742374897,
- -0.02629363164305687,
- 0.02097085304558277,
- 0.0030644203070551157,
- -0.04679608717560768,
- -0.0358155257999897,
- 0.2424449771642685,
- -0.0022785235196352005,
- 0.06631350517272949,
- -0.1223144456744194,
- -0.04651457071304321,
- -0.0070261345244944096,
- -0.03130045160651207,
- -0.05664534494280815,
- -0.02504321001470089,
- 0.09985528141260147,
- 0.03906950727105141,
- -0.06458482891321182,
- -0.01885516382753849,
- -0.004965479485690594,
- 0.04758687689900398,
- -0.005389809608459473,
- -0.019500425085425377,
- -0.023676130920648575,
- 0.010359340347349644,
- 0.09402848780155182,
- -0.13454650342464447,
- 0.0050665088929235935,
- -0.013346008956432343,
- -0.03767939284443855,
- -0.011608279310166836,
- -0.04275231063365936,
- -0.10036522150039673,
- 0.046792589128017426,
- -6.171081590272044e-33,
- 0.009145776741206646,
- 0.018748681992292404,
- 0.01985851675271988,
- 0.03238113224506378,
- 0.02249634824693203,
- 0.04482804611325264,
- -0.00987828429788351,
- 0.014005962759256363,
- -0.09468744695186615,
- 0.08114529401063919,
- -0.02590293064713478,
- 0.019789094105362892,
- 0.05661013722419739,
- -0.05519622936844826,
- 0.1009371429681778,
- 0.0289801973849535,
- -0.015065939165651798,
- 0.07797513157129288,
- -0.037553802132606506,
- 0.033036887645721436,
- 0.0041414471343159676,
- 0.06186700239777565,
- 0.04959564656019211,
- 0.14030589163303375,
- -0.03230417147278786,
- -0.09089712053537369,
- 0.016284357756376266,
- -0.028179088607430458,
- 0.024110032245516777,
- -0.010859674774110317,
- -0.004632654134184122,
- 0.04444234445691109,
- 0.032207172363996506,
- -0.006516586057841778,
- 0.01084981206804514,
- 0.08762115985155106,
- 0.03283828869462013,
- -0.07141878455877304,
- 0.016031578183174133,
- -0.014110881835222244,
- -0.06259061396121979,
- 0.04046497866511345,
- -0.11136271059513092,
- -0.019095223397016525,
- 0.014288828708231449,
- 0.07177239656448364,
- 0.05241338163614273,
- 0.0079099852591753,
- 0.054381582885980606,
- 0.03675686940550804,
- -0.03034602291882038,
- 0.0010317072737962008,
- -0.05727577954530716,
- -0.07900197803974152,
- 0.039423126727342606,
- 0.03057151287794113,
- -0.054990336298942566,
- -0.010488922707736492,
- -0.031262438744306564,
- 0.02390003390610218,
- 0.05626405403017998,
- -0.0018562852637842298,
- -0.020058060064911842,
- -0.010164385661482811,
- 0.02576983906328678,
- -0.006069233175367117,
- 0.014929256401956081,
- 0.0352259986102581,
- 0.051784761250019073,
- -0.06987491250038147,
- -0.03695262223482132,
- -0.05573807656764984,
- 0.0595368817448616,
- 0.06345149129629135,
- -0.029015956446528435,
- -0.04116023704409599,
- 0.04193994402885437,
- 0.0740802064538002,
- 0.05151444301009178,
- -0.058523017913103104,
- -0.03693206235766411,
- 0.029737036675214767,
- 0.0025332102086395025,
- 0.026062726974487305,
- -0.030934583395719528,
- -0.004281694535166025,
- 0.055482540279626846,
- -0.04249062016606331,
- 0.01761278137564659,
- 0.06386623531579971,
- -0.04318884760141373,
- 0.0021692905575037003,
- 0.11514416337013245,
- 0.04229719564318657,
- 0.04586523771286011,
- 4.830158817432582e-33,
- -0.003287553321570158,
- -0.047170575708150864,
- -0.023678218945860863,
- 0.030046043917536736,
- 0.06826970726251602,
- 0.027163028717041016,
- -0.00105385878123343,
- -0.011476390063762665,
- -0.012671731412410736,
- 0.09086911380290985,
- -0.009123595431447029,
- -0.08155672252178192,
- -0.00556862261146307,
- -0.04048116132616997,
- 0.035237859934568405,
- -0.0523017980158329,
- 0.03790436312556267,
- -0.04902954772114754,
- 0.0004731642547994852,
- 0.01996416226029396,
- 0.05285802483558655,
- -0.04300401359796524,
- -0.015232335776090622,
- 0.016072703525424004,
- 0.021584535017609596,
- 0.023072652518749237,
- 0.05577756464481354,
- -0.06348725408315659,
- -0.07676767557859421,
- 0.008454577997326851,
- 0.04137176647782326,
- -0.042849451303482056,
- -0.16901010274887085,
- -0.02558126486837864,
- 0.01736864633858204,
- -0.03727054223418236,
- 0.04331747815012932,
- -0.022585414350032806,
- -0.002516807522624731,
- 0.016150200739502907,
- 0.07877884805202484,
- -0.05579206347465515,
- -0.007979892194271088,
- 0.1258612871170044,
- -0.01976552978157997,
- -0.06811604648828506,
- 0.018269993364810944,
- -0.02085273154079914,
- -0.013597629964351654,
- 0.027977872639894485,
- -0.009775904938578606,
- 0.031009595841169357,
- -0.0009408659534528852,
- -0.11008954048156738,
- -0.03752928599715233,
- 0.050371550023555756,
- 0.020122183486819267,
- -0.021635333076119423,
- 0.061010316014289856,
- -0.024234937503933907,
- 0.04377736151218414,
- 0.07307707518339157,
- -0.0025645759887993336,
- 0.06243673339486122,
- 0.021908896043896675,
- 0.03196747973561287,
- -0.004154300782829523,
- 0.07831933349370956,
- 0.009767958894371986,
- 0.047873858362436295,
- -0.011063503101468086,
- -0.02944399230182171,
- -0.07507378607988358,
- 0.030799562111496925,
- 0.13572749495506287,
- -0.08443905413150787,
- -0.07111220061779022,
- -0.04135372117161751,
- -0.01701756939291954,
- -0.06728143990039825,
- -0.030651014298200607,
- 0.04723205044865608,
- 0.05524231493473053,
- 0.08412046730518341,
- 0.0585065558552742,
- -0.06924953311681747,
- 0.013004420325160027,
- -0.054665710777044296,
- 0.011045672930777073,
- 0.06998969614505768,
- 0.051858242601156235,
- -0.013509225100278854,
- 0.04825275391340256,
- -0.013401118107140064,
- 0.010152766481041908,
- -1.3850773861179277e-8,
- -0.006767782848328352,
- 0.012090908363461494,
- 0.010884439572691917,
- -0.029863663017749786,
- 0.016309058293700218,
- -0.010418185964226723,
- 0.0079489191994071,
- 0.000038055288314353675,
- 0.024104610085487366,
- 0.11526437848806381,
- 0.03280767798423767,
- -0.010782667435705662,
- -0.06144428998231888,
- 0.01226112712174654,
- -0.03803947940468788,
- -0.018477577716112137,
- -0.07902240753173828,
- -0.050966180860996246,
- -0.06918192654848099,
- 0.033889107406139374,
- -0.0922851487994194,
- 0.017993634566664696,
- -0.0010587719734758139,
- -0.03872121870517731,
- 0.006636344362050295,
- -0.03901924192905426,
- 0.0263091828674078,
- 0.13056311011314392,
- -0.04515264183282852,
- 0.0021246271207928658,
- -0.02305641770362854,
- 0.04349096864461899,
- -0.022593209519982338,
- -0.03661510348320007,
- 0.0581904761493206,
- -0.10887666046619415,
- 0.01907002553343773,
- -0.0009503652690909803,
- 0.07512278109788895,
- -0.03529183939099312,
- -0.045060183852910995,
- 0.04943078011274338,
- 0.0269171129912138,
- -0.02091098763048649,
- -0.021638711914420128,
- 0.01168040744960308,
- -0.0554133802652359,
- 0.010365070775151253,
- -0.053180571645498276,
- -0.031964145600795746,
- -0.05042208731174469,
- 0.034949593245983124,
- 0.03546425327658653,
- 0.03726553916931152,
- 0.04282683879137039,
- 0.010562318377196789,
- -0.03758707270026207,
- 0.01966880075633526,
- 0.05333153158426285,
- -0.04118940979242325,
- 0.13142918050289154,
- 0.02641153335571289,
- 0.049525924026966095,
- -0.04938427731394768
- ]
- },
- {
- "keyword": "license",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.020856162533164024,
- 0.027946067973971367,
- -0.016265543177723885,
- -0.04861121252179146,
- 0.014806407503783703,
- -0.006412808783352375,
- 0.07033957540988922,
- 0.012076481245458126,
- 0.0241523589938879,
- -0.02137847989797592,
- -0.039465125650167465,
- 0.02233375608921051,
- -0.02986355684697628,
- -0.03450632095336914,
- -0.03845468908548355,
- -0.05575818568468094,
- -0.005164828151464462,
- 0.04848141595721245,
- -0.04136190190911293,
- 0.00839949119836092,
- -0.04722786694765091,
- 0.0960150882601738,
- -0.036156076937913895,
- 0.038975127041339874,
- 0.010534009896218777,
- 0.0041696252301335335,
- -0.0406884029507637,
- 0.058969683945178986,
- 0.082298643887043,
- -0.09739064425230026,
- 0.01260243821889162,
- 0.04223785176873207,
- 0.11597113311290741,
- -0.026431869715452194,
- -0.03414911404252052,
- -0.034037135541439056,
- 0.03711636736989021,
- -0.008658467791974545,
- 0.0010452673304826021,
- -0.02179563418030739,
- 0.05789560079574585,
- -0.04909113794565201,
- -0.057880695909261703,
- 0.10207474231719971,
- 0.017004946246743202,
- 0.009928824380040169,
- 0.023107348009943962,
- 0.013978775590658188,
- 0.1062367781996727,
- 0.07419707626104355,
- -0.017876436933875084,
- 0.023198049515485764,
- -0.04283180460333824,
- -0.027821363881230354,
- -0.03993652015924454,
- -0.1450609266757965,
- 0.021639246493577957,
- 0.04895583167672157,
- -0.025386538356542587,
- 0.015685949474573135,
- 0.022519558668136597,
- -0.031591448932886124,
- -0.05427824705839157,
- 0.08871177583932877,
- 0.003791764145717025,
- 0.00912053044885397,
- 0.010266954079270363,
- -0.02208489552140236,
- -0.01880251057446003,
- -0.14464959502220154,
- -0.05989910662174225,
- -0.036990247666835785,
- -0.0021589158568531275,
- 0.07033217698335648,
- 0.0479920357465744,
- -0.04180454835295677,
- 0.04059119150042534,
- -0.002583341673016548,
- 0.07424988597631454,
- -0.04784043878316879,
- -0.06797178089618683,
- 0.03659769520163536,
- -0.030750583857297897,
- 0.018924685195088387,
- -0.018526826053857803,
- -0.006828688085079193,
- 0.010420580394566059,
- 0.09036842733621597,
- 0.0541251040995121,
- 0.0028488468378782272,
- -0.008407647721469402,
- -0.029306991025805473,
- 0.075749471783638,
- -0.00936282891780138,
- -0.02761274389922619,
- 0.04402441531419754,
- -0.006037408020347357,
- -0.12730588018894196,
- 0.010138344950973988,
- 0.23957380652427673,
- -0.018611852079629898,
- 0.013554565608501434,
- -0.09430639445781708,
- -0.003835262032225728,
- -0.016559123992919922,
- 0.012847267091274261,
- 0.030001221224665642,
- 0.0578199177980423,
- 0.006756113842129707,
- 0.039459433406591415,
- 0.02215065434575081,
- 0.0029910311568528414,
- 0.04880391061306,
- -0.039887961000204086,
- 0.03781958669424057,
- 0.10965968668460846,
- -0.08159752935171127,
- -0.017991887405514717,
- 0.09045381844043732,
- -0.03880541771650314,
- -0.04919431358575821,
- -0.023599261417984962,
- -0.016228754073381424,
- -0.08445476740598679,
- -0.03945230692625046,
- -0.0814431682229042,
- 0.012471875175833702,
- -5.237274388108588e-33,
- -0.030039744451642036,
- -0.012456419877707958,
- 0.0057052746415138245,
- 0.06985592842102051,
- 0.07345689833164215,
- 0.010730430483818054,
- 0.027877695858478546,
- 0.03324209898710251,
- -0.1429234743118286,
- 0.10616457462310791,
- 0.02212648093700409,
- 0.015760717913508415,
- -0.06090359017252922,
- 0.03212190791964531,
- 0.09034818410873413,
- 0.0606316514313221,
- -0.0038094508927315474,
- 0.05316653475165367,
- 0.026862265542149544,
- 0.01952754519879818,
- -0.0354597307741642,
- -0.04433957487344742,
- 0.02686215750873089,
- 0.09456532448530197,
- -0.04907761141657829,
- 0.020085712894797325,
- 0.002860235283151269,
- -0.014268857426941395,
- 0.14908309280872345,
- 0.012627082876861095,
- -0.0075609623454511166,
- 0.027863433584570885,
- -0.039896201342344284,
- -0.0311324093490839,
- 0.03884173184633255,
- 0.04108370095491409,
- -0.04499831050634384,
- -0.043049875646829605,
- 0.038632333278656006,
- -0.012392774224281311,
- -0.012116214260458946,
- -0.0323467031121254,
- -0.04588291049003601,
- -0.01444459892809391,
- -0.026549648493528366,
- -0.04641062393784523,
- 0.038848552852869034,
- 0.022258266806602478,
- 0.013603875413537025,
- 0.06839286535978317,
- -0.047732725739479065,
- 0.030432919040322304,
- -0.10678397119045258,
- -0.036515962332487106,
- -0.0685378760099411,
- 0.05757809802889824,
- 0.038168519735336304,
- 0.024835707619786263,
- -0.02936447411775589,
- -0.028823290020227432,
- 0.0015295026823878288,
- 0.05786038190126419,
- -0.03645578771829605,
- 0.0774783045053482,
- 0.09840218722820282,
- -0.05280696600675583,
- -0.01540551707148552,
- -0.09034237265586853,
- 0.0503903329372406,
- -0.016401732340455055,
- 0.004626670852303505,
- 0.004492613486945629,
- 0.01960844360291958,
- -0.04232627525925636,
- -0.009908205829560757,
- -0.0026542621199041605,
- -0.016528816893696785,
- 0.0002623301697894931,
- 0.0241806972771883,
- 0.05869071185588837,
- -0.08607518672943115,
- 0.013995915651321411,
- -0.08287063986063004,
- -0.02123175747692585,
- 0.031287018209695816,
- 0.08033855259418488,
- -0.000623652245849371,
- -0.015893345698714256,
- -0.026814844459295273,
- 0.03603100776672363,
- -0.048917729407548904,
- -0.03601110726594925,
- -0.024044940248131752,
- -0.01019398681819439,
- -0.011381763964891434,
- 3.677524525655926e-33,
- -0.07452316582202911,
- -0.03876703977584839,
- -0.008451495319604874,
- 0.052072472870349884,
- 0.004237022250890732,
- -0.01558762788772583,
- 0.014537620358169079,
- -0.008427366614341736,
- -0.0618121400475502,
- 0.003806981025263667,
- 0.02413063310086727,
- -0.022204633802175522,
- 0.04316987097263336,
- 0.07637757062911987,
- 0.0651790127158165,
- -0.018099306151270866,
- 0.01849733293056488,
- -0.03305139020085335,
- -0.03905986249446869,
- -0.001011921325698495,
- -0.022459208965301514,
- 0.02737913280725479,
- 0.0066305361688137054,
- 0.0714837834239006,
- -0.004198313225060701,
- -0.033597804605960846,
- -0.04204275831580162,
- 0.09788712859153748,
- 0.020627759397029877,
- 0.04094695299863815,
- 0.0618097186088562,
- 0.016944633796811104,
- -0.1351858526468277,
- 0.004821692127734423,
- -0.0647597685456276,
- 0.00468188663944602,
- 0.05580614507198334,
- -0.007587861269712448,
- -0.03320620581507683,
- 0.024129778146743774,
- 0.05394989624619484,
- -0.052806489169597626,
- 0.07964018732309341,
- 0.06496330350637436,
- -0.05699170380830765,
- -0.01297704316675663,
- 0.0269059669226408,
- -0.015221747569739819,
- 0.04312770813703537,
- 0.017467498779296875,
- -0.055721696466207504,
- -0.00400818744674325,
- 0.03916896879673004,
- -0.06989621371030807,
- -0.04771128296852112,
- 0.010097254067659378,
- 0.006517342757433653,
- 0.058717064559459686,
- 0.027902381494641304,
- 0.0037212178576737642,
- 0.06274335086345673,
- 0.09922711551189423,
- -0.092671699821949,
- 0.010817582719027996,
- -0.07406637817621231,
- 0.016518641263246536,
- -0.0015723577234894037,
- -0.04339960962533951,
- 0.0029368337709456682,
- 0.05863145366311073,
- 0.009359881281852722,
- 0.01259713526815176,
- -0.022527186200022697,
- -0.07569059729576111,
- -0.04879878833889961,
- -0.023656336590647697,
- -0.008872581645846367,
- 0.05757436528801918,
- -0.056003984063863754,
- -0.068046435713768,
- 0.0005358608905225992,
- -0.04645857587456703,
- -0.028483320027589798,
- 0.12962429225444794,
- -0.029992392286658287,
- -0.05586325377225876,
- -0.00028925639344379306,
- -0.1327749490737915,
- 0.023785436525940895,
- 0.003995558246970177,
- -0.009961848147213459,
- 0.05925280973315239,
- -0.10415679961442947,
- -0.01680401712656021,
- 0.0009905133629217744,
- -1.1852351100571923e-8,
- -0.07769444584846497,
- 0.04539119824767113,
- -0.02936740778386593,
- -0.007240600883960724,
- -0.015978500247001648,
- 0.05254687741398811,
- -0.04326225444674492,
- -0.008188691921532154,
- 0.0023372643627226353,
- 0.01682228408753872,
- 0.01770411618053913,
- -0.09497644752264023,
- -0.0006003082962706685,
- 0.014278750866651535,
- 0.041182760149240494,
- 0.0071684811264276505,
- 0.05304156243801117,
- 0.061408720910549164,
- -0.006817333400249481,
- 0.07415486872196198,
- 0.002637844532728195,
- 0.003319481387734413,
- 0.05489890277385712,
- 0.018439196050167084,
- -0.05996270850300789,
- -0.008364235050976276,
- 0.06525932997465134,
- 0.050842419266700745,
- 0.004325315821915865,
- 0.029361458495259285,
- 0.02897469885647297,
- 0.11213138699531555,
- 0.020080946385860443,
- -0.029019488021731377,
- 0.03245040029287338,
- -0.1405242532491684,
- -0.05561332032084465,
- 0.024775562807917595,
- 0.032726265490055084,
- 0.05274562910199165,
- -0.018499325960874557,
- 0.08020401746034622,
- 0.03177628293633461,
- -0.011334149166941643,
- -0.07890062779188156,
- 0.017869267612695694,
- -0.09073199331760406,
- -0.014984979294240475,
- 0.02443811669945717,
- 0.022260773926973343,
- -0.004368452820926905,
- -0.012952430173754692,
- 0.004747933242470026,
- 0.0028230915777385235,
- -0.046275511384010315,
- 0.014933343976736069,
- 0.052821945399045944,
- 0.013539530336856842,
- -0.09249898791313171,
- 0.06294924765825272,
- 0.04597679525613785,
- 0.006563349161297083,
- 0.12860284745693207,
- -0.08764146268367767
- ]
- },
- {
- "keyword": "terms",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.0356915220618248,
- 0.030341101810336113,
- -0.008652282878756523,
- 0.03680700808763504,
- -0.025764495134353638,
- -0.023228241130709648,
- 0.07754060626029968,
- 0.02831709198653698,
- -0.026413189247250557,
- 0.04332447424530983,
- 0.06147124618291855,
- -0.04992099851369858,
- 0.020036442205309868,
- 0.010692852549254894,
- -0.02610500156879425,
- 0.017528213560581207,
- -0.005290186498314142,
- 0.010276755318045616,
- -0.05828292295336723,
- 0.06425607204437256,
- 0.03998391702771187,
- 0.016242962330579758,
- -0.02834249846637249,
- 0.04224112257361412,
- 0.05629630759358406,
- -0.022873807698488235,
- -0.05326642468571663,
- 0.03922107815742493,
- 0.06370722502470016,
- -0.0072851842269301414,
- -0.045824747532606125,
- 0.0816756933927536,
- 0.10315517336130142,
- 0.040370527654886246,
- -0.07507967203855515,
- -0.010122955776751041,
- -0.11545945703983307,
- 0.008701750077307224,
- -0.020075058564543724,
- -0.035070449113845825,
- 0.005836790427565575,
- -0.03511865809559822,
- -0.05273289605975151,
- -0.006162878125905991,
- 0.00878655444830656,
- -0.03764853626489639,
- -0.014518591575324535,
- 0.012175193056464195,
- -0.012595866806805134,
- 0.0014959865948185325,
- -0.05269086733460426,
- -0.023982878774404526,
- -0.10374807566404343,
- 0.04866964742541313,
- 0.06362337619066238,
- -0.0523928701877594,
- -0.03894873708486557,
- -0.016907840967178345,
- -0.04573440179228783,
- -0.040155328810214996,
- 0.04818493500351906,
- -0.03303195908665657,
- -0.11981366574764252,
- 0.04979155212640762,
- 0.0730440616607666,
- -0.024754557758569717,
- 0.03155944496393204,
- -0.03566836565732956,
- -0.038688939064741135,
- 0.06169676035642624,
- 0.004168590065091848,
- -0.0006022699526511133,
- 0.022380389273166656,
- -0.024903828278183937,
- 0.07848162949085236,
- -0.030376609414815903,
- 0.06397777050733566,
- -0.006750582717359066,
- 0.0067529138177633286,
- -0.01961510069668293,
- -0.03537621721625328,
- 0.1045587956905365,
- -0.030029023066163063,
- -0.08803804963827133,
- -0.017106590792536736,
- 0.03367205709218979,
- 0.020765839144587517,
- -0.020863035693764687,
- 0.013202663511037827,
- 0.01165985781699419,
- -0.0094711072742939,
- -0.13436385989189148,
- 0.10118984431028366,
- -0.06779902428388596,
- -0.02502557821571827,
- -0.1063026487827301,
- 0.004072708077728748,
- -0.06914319097995758,
- 0.07054558396339417,
- 0.2548573613166809,
- 0.01788903772830963,
- -0.007589600048959255,
- -0.09283414483070374,
- -0.0791945531964302,
- -0.051638275384902954,
- -0.03141157329082489,
- -0.07600542902946472,
- -0.011770394630730152,
- 0.04470622539520264,
- 0.029927829280495644,
- -0.127518892288208,
- -0.010031421668827534,
- 0.032018031924963,
- 0.015972068533301353,
- -0.0410495400428772,
- -0.015936249867081642,
- -0.01930096000432968,
- 0.0023974122013896704,
- 0.11990761756896973,
- -0.02634984627366066,
- 0.061424121260643005,
- 0.07632501423358917,
- 0.003963112365454435,
- -0.0481916107237339,
- -0.05797553062438965,
- -0.09488963335752487,
- 0.009001664817333221,
- -6.656147130086953e-33,
- 0.0060467226430773735,
- -0.005074972286820412,
- 0.006461625918745995,
- 0.07490554451942444,
- -0.04702446237206459,
- 0.01121221762150526,
- -0.0011834715260192752,
- 0.036882273852825165,
- 0.03479143977165222,
- 0.1123242899775505,
- 0.0013164456468075514,
- 0.14897078275680542,
- -0.00512247160077095,
- -0.028819680213928223,
- 0.1472974270582199,
- -0.043979015201330185,
- -0.02786320634186268,
- 0.1144343763589859,
- 0.03580319881439209,
- 0.042448364198207855,
- -0.03544088825583458,
- -0.007131997495889664,
- 0.03420420363545418,
- 0.07754014432430267,
- -0.010541388764977455,
- -0.09018813073635101,
- -0.0016912567662075162,
- -0.04576954245567322,
- 0.00884922780096531,
- 0.002683928469195962,
- 0.056350354105234146,
- 0.01866636797785759,
- 0.06863457709550858,
- -0.07069425284862518,
- 0.02212853543460369,
- 0.0673125609755516,
- 0.02041114680469036,
- -0.0052213603630661964,
- 0.058528631925582886,
- -0.01954282820224762,
- -0.14389106631278992,
- -0.03305360674858093,
- -0.07253976911306381,
- -0.03281160816550255,
- 0.01615261286497116,
- 0.006034395657479763,
- 0.06804797798395157,
- -0.052691470831632614,
- -0.025394469499588013,
- 0.07188521325588226,
- -0.02911526896059513,
- -0.04932541027665138,
- -0.007455320563167334,
- 0.0029689171351492405,
- -0.010839567519724369,
- 0.07228183001279831,
- -0.016201430931687355,
- 0.02288069948554039,
- -0.09837272018194199,
- -0.009091584011912346,
- -0.0019059835467487574,
- 0.026726366952061653,
- 0.01921994797885418,
- 0.0016976591432467103,
- -0.005804850719869137,
- -0.004499345552176237,
- -0.058481767773628235,
- 0.04053497314453125,
- 0.003843880956992507,
- 0.015151185914874077,
- -0.04303865134716034,
- -0.022090747952461243,
- 0.025042148306965828,
- 0.02804598957300186,
- 0.102733314037323,
- -0.07346565276384354,
- 0.029773373156785965,
- 0.009116368368268013,
- -0.07153670489788055,
- -0.0450311116874218,
- -0.09774678200483322,
- 0.0371212475001812,
- -0.03753840923309326,
- -0.012914033606648445,
- -0.07811590284109116,
- 0.08347556740045547,
- 0.04007811099290848,
- -0.03557537496089935,
- 0.03885162994265556,
- -0.04728609323501587,
- -0.11665968596935272,
- 0.005650925450026989,
- 0.010034279897809029,
- 0.01797393709421158,
- -0.001882118289358914,
- 3.0643615093410736e-33,
- -0.07389822602272034,
- -0.012118132784962654,
- -0.08049660176038742,
- 0.026451949030160904,
- 0.036260828375816345,
- -0.005621026270091534,
- 0.0002678920573089272,
- 0.06809139996767044,
- 0.01138375699520111,
- -0.005347377620637417,
- -0.06410843878984451,
- -0.0029754287097603083,
- -0.08191373944282532,
- 0.04762245714664459,
- 0.053791169077157974,
- -0.037246886640787125,
- 0.025110455229878426,
- -0.028937334194779396,
- -0.04232506826519966,
- 0.060862891376018524,
- -0.012321602553129196,
- -0.030242925509810448,
- -0.04993663355708122,
- -0.04897502064704895,
- -0.02519172616302967,
- 0.007389899808913469,
- 0.05466855689883232,
- 0.018638091161847115,
- -0.05574303865432739,
- 0.02698478102684021,
- -0.028191113844513893,
- -0.0655364841222763,
- -0.021778220310807228,
- -0.022246887907385826,
- -0.0047787330113351345,
- 0.009901858866214752,
- 0.1226092129945755,
- -0.018192917108535767,
- -0.13588981330394745,
- 0.010364018380641937,
- 0.06733473390340805,
- -0.013088615611195564,
- 0.11394799500703812,
- 0.011831684969365597,
- 0.004092623479664326,
- -0.031654514372348785,
- -0.08404432237148285,
- -0.0189275573939085,
- 0.0013734796084463596,
- 0.0272684209048748,
- -0.082631416618824,
- 0.004424336366355419,
- -0.06526783853769302,
- -0.015170055441558361,
- -0.05056234449148178,
- -0.0028528261464089155,
- -0.0059141297824680805,
- -0.06308943778276443,
- -0.047663453966379166,
- 0.006670564878731966,
- 0.004809065721929073,
- 0.03234611079096794,
- -0.0032034884206950665,
- -0.017932476475834846,
- -0.021634144708514214,
- -0.00824712123721838,
- -0.048865024000406265,
- -0.03950284793972969,
- 0.019882110878825188,
- -0.007997211068868637,
- 0.03402944654226303,
- 0.03701085224747658,
- -0.07968997955322266,
- 0.023227626457810402,
- -0.008109756745398045,
- -0.061635278165340424,
- -0.10920656472444534,
- -0.022917769849300385,
- -0.019811231642961502,
- -0.048735957592725754,
- -0.008328557945787907,
- -0.0037939553149044514,
- 0.028314385563135147,
- 0.017625566571950912,
- -0.0483257994055748,
- -0.0004358723817858845,
- 0.06189689412713051,
- 0.05479557067155838,
- 0.00045788948773406446,
- -0.05646343156695366,
- 0.028214430436491966,
- -0.024696633219718933,
- 0.042474109679460526,
- 0.02410261332988739,
- 0.023489464074373245,
- -1.4334248454872522e-8,
- -0.005009452812373638,
- 0.020076241344213486,
- 0.031902607530355453,
- 0.01428932510316372,
- 0.0577852725982666,
- 0.015287444926798344,
- 0.04150061309337616,
- -0.0050027151592075825,
- 0.034501317888498306,
- 0.026997338980436325,
- 0.05306335538625717,
- 0.028653137385845184,
- -0.04840155318379402,
- 0.03134450688958168,
- 0.0659371167421341,
- 0.041891347616910934,
- -0.03653152659535408,
- 0.01159712951630354,
- -0.050813037902116776,
- -0.0046874056570231915,
- -0.06424318999052048,
- 0.0640483871102333,
- -0.004759045783430338,
- 0.00234526046551764,
- 0.043885618448257446,
- -0.000048989462811732665,
- 0.017196163535118103,
- 0.08589046448469162,
- -0.003684049705043435,
- 0.06940910220146179,
- 0.03903622552752495,
- 0.0827518031001091,
- -0.013675603084266186,
- -0.058281123638153076,
- -0.0255499966442585,
- 0.022825494408607483,
- -0.03008914738893509,
- -0.038236189633607864,
- 0.06502088904380798,
- 0.041334368288517,
- -0.04168430343270302,
- -0.011414477601647377,
- 0.07879675179719925,
- 0.0005737949395552278,
- 0.023773236200213432,
- -0.0012829512124881148,
- -0.019976792857050896,
- 0.043108873069286346,
- 0.059263113886117935,
- -0.09468865394592285,
- -0.000812751823104918,
- 0.07919912785291672,
- -0.012846581637859344,
- 0.004734007176011801,
- 0.05163859575986862,
- 0.007618842646479607,
- 0.05013466253876686,
- 0.0253517497330904,
- -0.03239275515079498,
- 0.07308100163936615,
- 0.08232683688402176,
- -0.037673309445381165,
- 0.10993234813213348,
- 0.027928663417696953
- ]
- },
- {
- "keyword": "policy",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.008676583878695965,
- 0.11803649365901947,
- 0.02077614888548851,
- 0.001581745338626206,
- 0.03810245543718338,
- 0.05812186747789383,
- 0.13635516166687012,
- -0.036388568580150604,
- -0.05898408591747284,
- 0.05445139855146408,
- 0.051814302802085876,
- 0.04863138124346733,
- 0.007195246405899525,
- -0.020533278584480286,
- 0.033296067267656326,
- 0.024395717307925224,
- -0.02814895659685135,
- -0.06409212946891785,
- -0.16137532889842987,
- -0.009503697976469994,
- -0.008577758446335793,
- 0.0036646155640482903,
- 0.0701090544462204,
- 0.03522809222340584,
- -0.058588169515132904,
- 0.06020601838827133,
- 0.005161935463547707,
- 0.062412284314632416,
- -0.061730265617370605,
- 0.015392755158245564,
- 0.00892753154039383,
- -0.029840761795639992,
- -0.004622423090040684,
- -0.05925041437149048,
- -0.03749600797891617,
- 0.04291440173983574,
- -0.07038234919309616,
- -0.06355760991573334,
- -0.035126421600580215,
- -0.029931051656603813,
- -0.01815267838537693,
- -0.08070090413093567,
- -0.04985876381397247,
- 0.04875282198190689,
- 0.05368999391794205,
- -0.0059252651408314705,
- 0.06531929969787598,
- -0.014538987539708614,
- -0.005286389496177435,
- 0.00535327335819602,
- 0.03218020871281624,
- 0.01253350730985403,
- 0.04671340063214302,
- -0.025631770491600037,
- 0.05295558646321297,
- -0.03134084492921829,
- -0.017093244940042496,
- -0.032791610807180405,
- 0.032708365470170975,
- -0.024535756558179855,
- 0.04366973415017128,
- -0.08642902225255966,
- -0.11017142236232758,
- 0.025463076308369637,
- 0.036695174872875214,
- -0.04813529923558235,
- -0.01624714955687523,
- 0.029765864834189415,
- -0.07318980991840363,
- 0.018747495487332344,
- -0.04247337952256203,
- 0.00908918771892786,
- 0.005526736844331026,
- 0.04435303062200546,
- 0.016985978931188583,
- -0.08065544068813324,
- -0.010150584392249584,
- 0.040063824504613876,
- 0.10094674676656723,
- -0.07714040577411652,
- 0.007585261482745409,
- -0.04004201665520668,
- 0.06895417720079422,
- 0.025355052202939987,
- -0.03313178941607475,
- -0.03495069220662117,
- -0.020501751452684402,
- 0.0012985699577257037,
- 0.009312164038419724,
- 0.010649070143699646,
- -0.012677044607698917,
- -0.02488413266837597,
- 0.11221595853567123,
- 0.007121183443814516,
- -0.04905261471867561,
- 0.015559274703264236,
- -0.035370297729969025,
- -0.08950309455394745,
- -0.1429019719362259,
- 0.24586006999015808,
- -0.0032736288849264383,
- -0.0073956591077148914,
- -0.05977676063776016,
- 0.013860401697456837,
- -0.02847038209438324,
- -0.028920430690050125,
- -0.051559727638959885,
- 0.06536738574504852,
- -0.023286325857043266,
- 0.018372340127825737,
- -0.010259715840220451,
- 0.009475178085267544,
- 0.06132598966360092,
- -0.005989096127450466,
- 0.024496404454112053,
- -0.02709857188165188,
- -0.051193851977586746,
- -0.009166790172457695,
- 0.056405577808618546,
- 0.025527961552143097,
- -0.05137675255537033,
- -0.03359929099678993,
- 0.035768330097198486,
- -0.010349835269153118,
- -0.018520567566156387,
- -0.06289537250995636,
- 0.0049103242345154285,
- -6.879672523683596e-33,
- 0.004470388870686293,
- -0.015136498026549816,
- -0.05128367990255356,
- 0.0050432621501386166,
- 0.004919746425002813,
- 0.003345675766468048,
- -0.03477508947253227,
- -0.015785297378897667,
- 0.01853264681994915,
- -0.023677991703152657,
- 0.035178303718566895,
- 0.046790990978479385,
- -0.01773396134376526,
- 0.0181962251663208,
- 0.1346210539340973,
- 0.031768277287483215,
- -0.05481832101941109,
- 0.19944094121456146,
- 0.020253214985132217,
- 0.044999636709690094,
- -0.026109367609024048,
- 0.026704132556915283,
- 0.02454879693686962,
- 0.019594591110944748,
- 0.0168863944709301,
- 0.006351189687848091,
- -0.03342195227742195,
- -0.031531937420368195,
- 0.06297976523637772,
- 0.0378330796957016,
- 0.022475171834230423,
- 0.0770866796374321,
- -0.014336966909468174,
- -0.08855170756578445,
- 0.02863016165792942,
- -0.025951972231268883,
- -0.013704849407076836,
- -0.010403978638350964,
- -0.06192092224955559,
- -0.041871774941682816,
- -0.015882745385169983,
- -0.02074144408106804,
- 0.04644428566098213,
- 0.013888410292565823,
- 0.03189857304096222,
- 0.009444079361855984,
- 0.048074837774038315,
- -0.01692292094230652,
- -0.03852051869034767,
- -0.0111166313290596,
- 0.024265993386507034,
- 0.015887757763266563,
- -0.066555455327034,
- -0.018250131979584694,
- 0.005223522894084454,
- -0.009306050837039948,
- -0.05577697977423668,
- 0.025472469627857208,
- -0.013838688842952251,
- -0.039834968745708466,
- 0.09604116529226303,
- 0.03687213361263275,
- -0.02803896740078926,
- 0.030990181490778923,
- -0.05559184402227402,
- 0.05522921681404114,
- -0.043582428246736526,
- 0.00959739275276661,
- 0.013607612811028957,
- -0.05558386072516441,
- -0.041588664054870605,
- 0.04042796790599823,
- 0.05141656845808029,
- 0.01094509195536375,
- -0.024729138240218163,
- 0.05083223432302475,
- -0.019331438466906548,
- 0.03653119131922722,
- -0.016219565644860268,
- -0.06592195481061935,
- -0.07654214650392532,
- 0.03404060751199722,
- 0.026207217946648598,
- -0.01933765970170498,
- 0.04332046955823898,
- -0.0005968636833131313,
- 0.03536529093980789,
- 0.02477087825536728,
- 0.04395345225930214,
- 0.046228501945734024,
- -0.13037681579589844,
- -0.007692632265388966,
- -0.008529182523488998,
- 0.09233906120061874,
- 0.04177293926477432,
- 3.796205741392806e-33,
- -0.0031901018228381872,
- 0.007529505994170904,
- 0.0037234732881188393,
- 0.017854850739240646,
- -0.014858839102089405,
- -0.0070345052517950535,
- -0.017155183479189873,
- -0.07063180208206177,
- 0.06669964641332626,
- -0.00988287478685379,
- -0.08864855021238327,
- -0.022033510729670525,
- 0.06978275626897812,
- 0.025210287421941757,
- 0.00622576754540205,
- -0.04162508621811867,
- 0.04145972803235054,
- -0.06837650388479233,
- -0.05297119542956352,
- 0.0028477751184254885,
- -0.04189363867044449,
- -0.08642742037773132,
- -0.07674863934516907,
- 0.08551299571990967,
- -0.07671698182821274,
- 0.004194876179099083,
- 0.0052229235880076885,
- -0.03145596757531166,
- 0.03263744339346886,
- -0.0402735099196434,
- -0.008823475800454617,
- -0.04078112915158272,
- -0.09537619352340698,
- 0.019197218120098114,
- -0.056462362408638,
- 0.02314080111682415,
- 0.05636505037546158,
- 0.014570464380085468,
- -0.056827399879693985,
- 0.014265616424381733,
- 0.08528099209070206,
- -0.06022799387574196,
- 0.010802037082612514,
- 0.11565180122852325,
- -0.05052993819117546,
- -0.004617631435394287,
- 0.03705763444304466,
- -0.007782653905451298,
- -0.009864849038422108,
- -0.012694559060037136,
- -0.06246763840317726,
- -0.02147846110165119,
- 0.03321818262338638,
- -0.06134771555662155,
- -0.035970136523246765,
- -0.05586060881614685,
- 0.021991409361362457,
- 0.04279889166355133,
- -0.07111943513154984,
- 0.05960528925061226,
- 0.027787180617451668,
- 0.03845302760601044,
- -0.09210264682769775,
- 0.08272040635347366,
- -0.01950422115623951,
- 0.03128024563193321,
- -0.04514315724372864,
- -0.03242068365216255,
- 0.13973237574100494,
- -0.01339915581047535,
- 0.053928811103105545,
- -0.05543927103281021,
- -0.13924075663089752,
- 0.06342039257287979,
- -0.0023957870434969664,
- -0.004404006525874138,
- 0.029535142704844475,
- -0.009587736800312996,
- -0.026061302050948143,
- 0.09827429801225662,
- -0.03859768062829971,
- -0.033832769840955734,
- -0.025046369060873985,
- 0.028296874836087227,
- 0.000678775308188051,
- -0.02868288941681385,
- 0.026023758575320244,
- -0.03651462122797966,
- -0.04684906825423241,
- -0.008691942319273949,
- -0.03773299232125282,
- -0.0017715798458084464,
- -0.04199988394975662,
- -0.017027005553245544,
- -0.04614817351102829,
- -1.2797351622850783e-8,
- 0.010095742531120777,
- 0.000014622903108829632,
- 0.17068742215633392,
- 0.04499807581305504,
- 0.04245343431830406,
- -0.0050033400766551495,
- -0.05417997017502785,
- -0.03484134376049042,
- 0.036632511764764786,
- 0.0230800099670887,
- 0.035002417862415314,
- 0.11393425613641739,
- 0.029931752011179924,
- -0.04267047718167305,
- 0.016753844916820526,
- -0.08837301284074783,
- 0.026257412508130074,
- 0.043699197471141815,
- -0.05237094312906265,
- 0.08025559782981873,
- -0.004815029911696911,
- 0.013648336753249168,
- 0.01566387340426445,
- -0.008536862209439278,
- -0.004754236433655024,
- 0.025520412251353264,
- 0.06886296719312668,
- 0.058338478207588196,
- 0.023469801992177963,
- 0.08050477504730225,
- 0.015443204902112484,
- 0.03643486648797989,
- -0.028267154470086098,
- -0.031647443771362305,
- 0.002937162760645151,
- -0.10917065292596817,
- 0.058445580303668976,
- -0.014302446506917477,
- 0.1266067773103714,
- -0.07081946730613708,
- -0.015048493631184101,
- -0.009804685600101948,
- 0.08305282890796661,
- 0.009592016227543354,
- -0.00039289251435548067,
- 0.03778163716197014,
- -0.05089682713150978,
- -0.007608048617839813,
- 0.055343903601169586,
- -0.01508338563144207,
- -0.03159669414162636,
- 0.0016504148952662945,
- 0.03623699024319649,
- 0.09996436536312103,
- 0.02112436667084694,
- -0.029411261901259422,
- -0.0021764743141829967,
- 0.015094881877303123,
- -0.09476534277200699,
- 0.08908294141292572,
- 0.08176854997873306,
- -0.021904518827795982,
- 0.011290771886706352,
- -0.035673029720783234
- ]
- },
- {
- "keyword": "invoice",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.10076479613780975,
- 0.09857957810163498,
- -0.024837946519255638,
- -0.030765848234295845,
- -0.14393934607505798,
- -0.07137856632471085,
- 0.019490061327815056,
- 0.05950672924518585,
- 0.031356751918792725,
- 0.007624585647135973,
- 0.022957460954785347,
- -0.01931079477071762,
- -0.027144793421030045,
- -0.021249985322356224,
- -0.034465257078409195,
- -0.013123748824000359,
- 0.04592226445674896,
- -0.050625305622816086,
- -0.03279401361942291,
- 0.0015393743524327874,
- -0.027851127088069916,
- 0.024484189227223396,
- -0.10280456393957138,
- -0.0009725218405947089,
- 0.08812588453292847,
- 0.03837894648313522,
- -0.10735753178596497,
- -0.01541868969798088,
- 0.006801293231546879,
- -0.1167261004447937,
- 0.02558256685733795,
- 0.009080260060727596,
- 0.07006608694791794,
- -0.050922296941280365,
- 0.06089799478650093,
- 0.03913799673318863,
- 0.030722668394446373,
- 0.033204056322574615,
- 0.06965050101280212,
- -0.012819000519812107,
- 0.03622584044933319,
- -0.10691399872303009,
- -0.018882256001234055,
- -0.039025403559207916,
- 0.0011950809275731444,
- 0.002672529546543956,
- 0.022489698603749275,
- 0.045361630618572235,
- 0.06481684744358063,
- 0.08617988973855972,
- -0.06451494991779327,
- -0.015942666679620743,
- -0.03871040418744087,
- 0.09933951497077942,
- 0.011139931157231331,
- -0.05072212964296341,
- 0.06744229048490524,
- -0.04372351989150047,
- -0.04162677004933357,
- -0.05633348599076271,
- -0.06266799569129944,
- 0.061320558190345764,
- -0.06082699075341225,
- 0.03574972599744797,
- -0.021624643355607986,
- 0.01647556945681572,
- 0.030366891995072365,
- 0.058233700692653656,
- -0.092150017619133,
- -0.06605442613363266,
- 0.09440367668867111,
- 0.007527216803282499,
- 0.03755437582731247,
- 0.08274585008621216,
- 0.050659071654081345,
- -0.07053576409816742,
- 0.10807619988918304,
- -0.06728886067867279,
- -0.017188752070069313,
- -0.03261025995016098,
- 0.07278917729854584,
- 0.005922676529735327,
- -0.07513692229986191,
- -0.0018018976552411914,
- 0.01180398091673851,
- -0.02051815390586853,
- 0.03454761952161789,
- 0.05415366590023041,
- 0.05296524241566658,
- 0.013873016461730003,
- -0.027290411293506622,
- 0.012560277245938778,
- 0.04253311827778816,
- -0.03437080234289169,
- -0.014119736850261688,
- 0.043786510825157166,
- 0.03232733532786369,
- -0.030405357480049133,
- 0.042693234980106354,
- 0.13256946206092834,
- 0.06062883883714676,
- -0.023954208940267563,
- 0.021144311875104904,
- -0.04337496683001518,
- -0.03242991864681244,
- -0.03773711994290352,
- -0.0053350478410720825,
- -0.000489325262606144,
- 0.028457937762141228,
- -0.023132048547267914,
- -0.05747348442673683,
- -0.07347650825977325,
- 0.011998332105576992,
- -0.07416530698537827,
- -0.007615021895617247,
- 0.011452062986791134,
- 0.037102650851011276,
- 0.02912495657801628,
- 0.07846420258283615,
- -0.08635742962360382,
- 0.01725328527390957,
- 0.06565116345882416,
- -0.0697818174958229,
- -0.0005809094291180372,
- -0.10342389345169067,
- -0.0333489254117012,
- 0.09399615228176117,
- -1.6507996141055254e-33,
- -0.0586412139236927,
- -0.0001485907268943265,
- 0.04735983535647392,
- 0.004919237457215786,
- 0.07669305801391602,
- 0.07290598005056381,
- 0.04988778382539749,
- 0.07613213360309601,
- -0.015317106619477272,
- -0.028659269213676453,
- -0.013675058260560036,
- -0.004334527067840099,
- -0.03112746961414814,
- 0.04071216285228729,
- -0.07455682754516602,
- -0.007931963540613651,
- -0.029207522049546242,
- 0.09554178267717361,
- -0.006709598004817963,
- 0.019470347091555595,
- -0.07945562899112701,
- -0.0730719193816185,
- -0.017866231501102448,
- 0.11022674292325974,
- 0.01777261681854725,
- 0.013360065408051014,
- 0.03425772860646248,
- -0.02528119459748268,
- 0.052098095417022705,
- 0.026352016255259514,
- 0.10490254312753677,
- 0.05697707459330559,
- 0.004086057655513287,
- 0.007992619648575783,
- -0.06633662432432175,
- 0.030077658593654633,
- -0.016508759930729866,
- -0.04958952218294144,
- 0.05973970144987106,
- -0.05505965277552605,
- -0.02900928445160389,
- 0.040730349719524384,
- -0.009374143555760384,
- 0.03393279388546944,
- -0.11416139453649521,
- 0.05503273382782936,
- 0.06448669731616974,
- -0.001745127490721643,
- 0.04601911082863808,
- 0.03545355051755905,
- -0.018025286495685577,
- -0.005840275436639786,
- -0.06555969268083572,
- -0.038820527493953705,
- 0.026862530037760735,
- 0.010475773364305496,
- 0.08785860240459442,
- -0.025989556685090065,
- 0.02789553813636303,
- -0.06401561200618744,
- 0.07532733678817749,
- 0.039189662784338,
- 0.012097509577870369,
- 0.06217747554183006,
- -0.07628089189529419,
- -0.11770322173833847,
- -0.014229956082999706,
- -0.050826963037252426,
- 0.05205204337835312,
- -0.03419199213385582,
- -0.09767438471317291,
- 0.004134125076234341,
- 0.0007172087789513171,
- -0.062095366418361664,
- -0.03754293918609619,
- 0.06907041370868683,
- 0.007623308338224888,
- -0.03126069903373718,
- -0.002647927962243557,
- -0.02452795021235943,
- -0.056439436972141266,
- -0.009864955209195614,
- 0.03034459985792637,
- 0.10492405295372009,
- 0.10576224327087402,
- 0.13809120655059814,
- 0.031758375465869904,
- -0.010528084821999073,
- -0.005838911980390549,
- 0.007952271960675716,
- -0.06648477166891098,
- 0.013508939184248447,
- -0.03355332836508751,
- 0.025448424741625786,
- 0.07355722784996033,
- 4.589771416550874e-34,
- -0.029039427638053894,
- -0.039229486137628555,
- -0.007012200076133013,
- 0.07801719754934311,
- 0.034093137830495834,
- 0.043385256081819534,
- 0.031185321509838104,
- -0.015364590100944042,
- 0.029329732060432434,
- 0.06801444292068481,
- -0.03442862629890442,
- -0.03039812296628952,
- -0.02455114759504795,
- -0.011416921392083168,
- 0.050021469593048096,
- -0.05649169534444809,
- 0.0776691660284996,
- -0.0020162183791399,
- 0.04831957072019577,
- 0.018327346071600914,
- -0.049298759549856186,
- 0.049546610563993454,
- 0.018945470452308655,
- 0.06050253286957741,
- -0.0571775957942009,
- 0.03300715610384941,
- -0.03094204142689705,
- -0.04594836384057999,
- 0.01233726553618908,
- 0.04919329658150673,
- -0.042802855372428894,
- -0.039732132107019424,
- -0.022902067750692368,
- 0.051000483334064484,
- -0.05359307676553726,
- 0.0461217537522316,
- 0.053877733647823334,
- 0.026844369247555733,
- -0.027713943272829056,
- -0.013358324766159058,
- 0.07451067119836807,
- 0.005508181639015675,
- 0.09009122103452682,
- 0.082832470536232,
- -0.07193785160779953,
- -0.07459105551242828,
- -0.01617898978292942,
- -0.0004382963525131345,
- 0.009274332784116268,
- 0.041661519557237625,
- -0.09177962690591812,
- 0.03766156733036041,
- -0.029792310670018196,
- 0.04445486515760422,
- -0.0638161301612854,
- 0.05634992569684982,
- 0.0008605462498962879,
- -0.03863697126507759,
- 0.037184759974479675,
- -0.009474246762692928,
- -0.0822785347700119,
- 0.040400128811597824,
- 0.017650289461016655,
- -0.01232898235321045,
- -0.030820287764072418,
- 0.035855475813150406,
- 0.04555462300777435,
- -0.06743545085191727,
- 0.0544956810772419,
- 0.0047288998030126095,
- -0.02008138969540596,
- -0.025482522323727608,
- -0.015505499206483364,
- -0.1031278669834137,
- 0.05051171034574509,
- 0.026605332270264626,
- -0.03450043871998787,
- -0.06833425909280777,
- 0.00010906890383921564,
- 0.008164315484464169,
- -0.012081876397132874,
- -0.010506643913686275,
- -0.03056821972131729,
- 0.05790414288640022,
- -0.11234728991985321,
- -0.07276387512683868,
- 0.06587330251932144,
- -0.019656354561448097,
- 0.01865830272436142,
- 0.005272855516523123,
- -0.04163479804992676,
- 0.09600107371807098,
- 0.03699442371726036,
- -0.021285759285092354,
- -0.03644011542201042,
- -1.3911875207384128e-8,
- 0.010579843074083328,
- -0.014400859363377094,
- 0.05483933165669441,
- -0.013674051500856876,
- 0.010852470993995667,
- -0.12458233535289764,
- 0.02965487726032734,
- 0.03899835795164108,
- -0.0018825307488441467,
- 0.04851003363728523,
- 0.012913653627038002,
- -0.055163636803627014,
- 0.0519140362739563,
- -0.05719819292426109,
- 0.009069904685020447,
- -0.01658465713262558,
- 0.01889771781861782,
- -0.038884732872247696,
- -0.060334835201501846,
- 0.0001508620916865766,
- -0.00035181629937142134,
- 0.027413973584771156,
- -0.01567355915904045,
- -0.03678598627448082,
- -0.009794891811907291,
- -0.04214568808674812,
- -0.005363259464502335,
- 0.11482664942741394,
- 0.014130045659840107,
- 0.07546167820692062,
- -0.053809136152267456,
- 0.10533275455236435,
- 0.005825541913509369,
- -0.05800887942314148,
- -0.00048313059960491955,
- -0.07270985096693039,
- -0.002263240283355117,
- -0.0005560775171034038,
- -0.013492301106452942,
- -0.07046310603618622,
- 0.00966422725468874,
- -0.027801819145679474,
- -0.026558075100183487,
- -0.03248056396842003,
- -0.011106177233159542,
- 0.032583460211753845,
- -0.10568532347679138,
- -0.03252072632312775,
- -0.04619375988841057,
- -0.05917132645845413,
- -0.07001035660505295,
- 0.02168991230428219,
- 0.05021313577890396,
- 0.033417124301195145,
- -0.0052682748064398766,
- -0.04031804949045181,
- -0.007198816165328026,
- -0.05938452109694481,
- 0.01700005680322647,
- 0.04734301194548607,
- 0.09480821341276169,
- -0.056544315069913864,
- 0.054185155779123306,
- -0.01109984889626503
- ]
- },
- {
- "keyword": "receipt",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.11032628268003464,
- 0.15219253301620483,
- -0.007353242952376604,
- -0.0696268379688263,
- -0.002775923116132617,
- 0.017393313348293304,
- 0.15531891584396362,
- 0.02486073598265648,
- 0.05146330967545509,
- 0.023396700620651245,
- 0.1022539734840393,
- -0.0812983438372612,
- -0.018072307109832764,
- 0.0030632526613771915,
- -0.11432863026857376,
- -0.08538132905960083,
- 0.03214472159743309,
- 0.013509932905435562,
- -0.02147289738059044,
- 0.006338313687592745,
- -0.04877351224422455,
- 0.049809250980615616,
- 0.02155168727040291,
- 0.047425974160432816,
- 0.0017175425309687853,
- 0.04149169474840164,
- -0.03161517530679703,
- 0.034134309738874435,
- -0.002250104444101453,
- -0.12562856078147888,
- 0.0417698472738266,
- -0.04568207636475563,
- 0.04619629308581352,
- -0.03442314267158508,
- 0.01600930467247963,
- -0.02247019112110138,
- 0.073137067258358,
- -0.017060687765479088,
- -0.0010325431358069181,
- -0.04661460965871811,
- -0.02004821039736271,
- -0.06284940242767334,
- -0.03856335207819939,
- -0.0011347386753186584,
- -0.0016794175608083606,
- 0.011699503287672997,
- 0.044138990342617035,
- 0.026534605771303177,
- 0.013852708972990513,
- 0.07075204700231552,
- 0.08136221766471863,
- -0.010262951254844666,
- 0.012287675403058529,
- 0.021721696481108665,
- -0.010638458654284477,
- -0.013785120099782944,
- 0.10178245604038239,
- -0.02381129562854767,
- -0.06068994477391243,
- -0.06267128139734268,
- -0.009177874773740768,
- -0.051722072064876556,
- -0.062295034527778625,
- -0.011684687808156013,
- 0.014520383439958096,
- 0.042340073734521866,
- -0.04234720394015312,
- -0.03193025663495064,
- -0.023111974820494652,
- -0.041679441928863525,
- 0.04804268106818199,
- 0.00894258078187704,
- -0.026104940101504326,
- 0.010257922112941742,
- 0.005260123871266842,
- -0.0574326366186142,
- 0.05496862158179283,
- -0.05533567816019058,
- -0.05422595888376236,
- -0.0018410623306408525,
- -0.032097410410642624,
- 0.09047285467386246,
- -0.01975776068866253,
- 0.028350921347737312,
- 0.04866459220647812,
- 0.029829883947968483,
- 0.008033731952309608,
- 0.06917653232812881,
- -0.009117155335843563,
- -0.007147778291255236,
- -0.018366780132055283,
- -0.014532980509102345,
- 0.004078795667737722,
- -0.004361450672149658,
- -0.14055398106575012,
- -0.04098908603191376,
- -0.004002331290394068,
- -0.06815627962350845,
- 0.08465217053890228,
- 0.23883776366710663,
- 0.08790504187345505,
- 0.08498489111661911,
- -0.030003447085618973,
- -0.05328940227627754,
- 0.0382799357175827,
- -0.017652422189712524,
- -0.05419113487005234,
- 0.018833421170711517,
- 0.02717389166355133,
- -0.006930259522050619,
- -0.02324242889881134,
- -0.02926051616668701,
- -0.029980815947055817,
- 0.05652967467904091,
- 0.028571030125021935,
- 0.06680535525083542,
- -0.07743684947490692,
- 0.05935954302549362,
- 0.04044465348124504,
- -0.11429544538259506,
- 0.0021535344421863556,
- -0.029452068731188774,
- -0.008421449922025204,
- -0.03685498610138893,
- -0.10405509173870087,
- -0.08206124603748322,
- 0.09055065363645554,
- -5.3488993316626724e-33,
- -0.027469877153635025,
- 0.03571084886789322,
- -0.009930022992193699,
- -0.017998211085796356,
- 0.053466495126485825,
- 0.013235187157988548,
- 0.023831568658351898,
- 0.006072246469557285,
- -0.016008365899324417,
- -0.05866796523332596,
- -0.05532950162887573,
- 0.054850537329912186,
- 0.02132568694651127,
- -0.01268776599317789,
- 0.002727760700508952,
- 0.049037154763936996,
- -0.04863830283284187,
- 0.05422293767333031,
- 0.06997422873973846,
- 0.01195493433624506,
- -0.04433875158429146,
- -0.08644890040159225,
- 0.03809816762804985,
- 0.04346192628145218,
- 0.052303191274404526,
- 0.00369956879876554,
- -0.0177540834993124,
- 0.032194819301366806,
- 0.002377784578129649,
- -0.004855656065046787,
- 0.05057522654533386,
- 0.006776462309062481,
- 0.07099985331296921,
- -0.013956050388514996,
- 0.02745545469224453,
- 0.01853487454354763,
- 0.05436209589242935,
- -0.04076676443219185,
- 0.030832484364509583,
- -0.06411337852478027,
- 0.017897829413414,
- -0.04373588785529137,
- 0.02084546908736229,
- -0.0027607253286987543,
- -0.07619645446538925,
- -0.033091891556978226,
- 0.027580173686146736,
- -0.012244464829564095,
- 0.07345817238092422,
- 0.033443231135606766,
- -0.024539992213249207,
- -0.006152509246021509,
- 0.004465427249670029,
- -0.026352835819125175,
- -0.04501422122120857,
- -0.05170318856835365,
- 0.031787678599357605,
- 0.0251975879073143,
- 0.03682753071188927,
- -0.007515544071793556,
- 0.06857552379369736,
- 0.13724030554294586,
- 0.06669910997152328,
- -0.0014200180303305387,
- -0.05627303943037987,
- -0.040503159165382385,
- 0.007758500520139933,
- -0.03868953511118889,
- 0.057207196950912476,
- -0.03597033768892288,
- -0.060207389295101166,
- 0.018915677443146706,
- 0.02371852472424507,
- -0.007703975308686495,
- -0.013127585873007774,
- 0.0009657408227212727,
- -0.025155747309327126,
- 0.009926722384989262,
- 0.09990433603525162,
- -0.054085034877061844,
- -0.062185727059841156,
- -0.026228835806250572,
- 0.025312714278697968,
- 0.046857088804244995,
- -0.0003006269980687648,
- 0.1217879205942154,
- -0.00962681695818901,
- -0.037006717175245285,
- 0.01713211089372635,
- 0.038268279284238815,
- -0.03855085372924805,
- 0.013588695786893368,
- 0.06498455256223679,
- 0.016585510224103928,
- 0.05065639689564705,
- 3.480674772299287e-33,
- 0.03289799392223358,
- 0.032000232487916946,
- -0.02379770763218403,
- 0.020285997539758682,
- -0.04575458914041519,
- -0.01666889525949955,
- 0.00214621820487082,
- 0.05417312681674957,
- -0.0685572400689125,
- 0.059815723448991776,
- -0.006737560033798218,
- -0.007353981491178274,
- -0.04664893448352814,
- 0.03902149945497513,
- 0.03988067805767059,
- -0.0626152753829956,
- 0.08997595310211182,
- -0.029444491490721703,
- 0.05242770165205002,
- -0.044008828699588776,
- 0.014668474905192852,
- -0.022243065759539604,
- -0.0028533588629215956,
- -0.037611931562423706,
- -0.05378139764070511,
- 0.04248194769024849,
- 0.03966076672077179,
- -0.02701624296605587,
- -0.09057898819446564,
- -0.020442543551325798,
- 0.06266942620277405,
- -0.03420235961675644,
- -0.01370175275951624,
- 0.09437820315361023,
- 0.010679826140403748,
- -0.10041320323944092,
- 0.06466346979141235,
- 0.02813054621219635,
- 0.022815672680735588,
- 0.04564690962433815,
- 0.04195309430360794,
- 0.05702856183052063,
- 0.06268259882926941,
- 0.10065656155347824,
- 0.004891658201813698,
- -0.06436487287282944,
- -0.0015095070702955127,
- 0.007454652804881334,
- 0.11953946948051453,
- -0.013710119761526585,
- -0.038136567920446396,
- -0.022016560658812523,
- 0.021921593695878983,
- 0.04540672525763512,
- -0.12575837969779968,
- 0.09648953378200531,
- 0.03036222979426384,
- -0.022634131833910942,
- 0.01860436052083969,
- -0.016035521402955055,
- -0.07074658572673798,
- 0.016024233773350716,
- -0.03119633160531521,
- 0.04959138110280037,
- 0.0033595741260796785,
- -0.05101944878697395,
- 0.057980649173259735,
- -0.04020096734166145,
- 0.06301292777061462,
- 0.035603247582912445,
- 0.01172641757875681,
- -0.03141317144036293,
- -0.013295801356434822,
- -0.10909439623355865,
- 0.02738991752266884,
- 0.045543164014816284,
- -0.1119694858789444,
- -0.012084444053471088,
- -0.0473957359790802,
- -0.00653997203335166,
- -0.0023740448523312807,
- -0.04408469423651695,
- 0.01545657031238079,
- 0.013840829022228718,
- 0.004585582297295332,
- -0.11157088726758957,
- -0.01966605894267559,
- -0.029582105576992035,
- 0.03691178187727928,
- 0.04091159254312515,
- 0.013812567107379436,
- 0.030274996533989906,
- -0.028887450695037842,
- -0.05304661765694618,
- 0.005958770401775837,
- -1.170252250659587e-8,
- 0.026181552559137344,
- 0.03970424830913544,
- 0.049300309270620346,
- -0.02679409272968769,
- 0.026718953624367714,
- -0.026254355907440186,
- 0.017773473635315895,
- -0.05752523988485336,
- -0.048083338886499405,
- -0.04832938686013222,
- -0.019852833822369576,
- -0.05840875208377838,
- -0.1179700493812561,
- -0.05021490156650543,
- -0.013753123581409454,
- 0.02626076526939869,
- 0.013112730346620083,
- -0.06273681670427322,
- -0.05270757898688316,
- 0.016429683193564415,
- 0.026585612446069717,
- 0.015434177592396736,
- 0.027787989005446434,
- -0.03533771634101868,
- -0.08244049549102783,
- -0.09157140552997589,
- 0.03469717875123024,
- 0.1124415248632431,
- 0.04008027911186218,
- -0.07752266526222229,
- 0.008229970932006836,
- 0.0656500905752182,
- 0.02307022735476494,
- -0.022186772897839546,
- 0.09923306107521057,
- -0.015165930613875389,
- 0.006905269809067249,
- -0.019292296841740608,
- 0.04445735737681389,
- -0.01272846944630146,
- -0.03833219036459923,
- -0.06509114056825638,
- -0.011742758564651012,
- 0.0014749661786481738,
- 0.03265536203980446,
- 0.008194899186491966,
- -0.027029436081647873,
- -0.05228244513273239,
- -0.10065386444330215,
- -0.011935587972402573,
- 0.005655081942677498,
- -0.07427117228507996,
- 0.02999841421842575,
- 0.08196499943733215,
- -0.03683113679289818,
- -0.03198010474443436,
- 0.017264584079384804,
- -0.01737135834991932,
- 0.011778353713452816,
- -0.008778510615229607,
- 0.15648150444030762,
- -0.028169386088848114,
- 0.035578519105911255,
- -0.01592782698571682
- ]
- },
- {
- "keyword": "statement",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.11300738155841827,
- 0.07275267690420151,
- 0.008278568275272846,
- 0.11056695878505707,
- -0.028496745973825455,
- 0.0191264059394598,
- 0.18708644807338715,
- 0.03140644729137421,
- -0.01178028155118227,
- 0.008812764659523964,
- 0.04794513061642647,
- 0.013979059644043446,
- 0.09020198881626129,
- -0.03974117711186409,
- 0.0513797402381897,
- 0.013923892751336098,
- 0.000857411534525454,
- -0.08534357696771622,
- -0.05705943703651428,
- -0.027910372242331505,
- 0.016735676676034927,
- 0.015883319079875946,
- -0.006876470521092415,
- 0.06433261185884476,
- -0.027506213635206223,
- 0.03541466221213341,
- 0.00035565413418225944,
- 0.07158634066581726,
- 0.10335958749055862,
- -0.00089379952987656,
- -0.06475241482257843,
- 0.09407009929418564,
- 0.030226336792111397,
- 0.016849052160978317,
- -0.0033178231678903103,
- 0.020057203248143196,
- -0.04203077033162117,
- 0.03288976475596428,
- -0.03484600409865379,
- -0.012686486355960369,
- -0.028324350714683533,
- -0.13171863555908203,
- -0.03716746345162392,
- -0.013479572720825672,
- 0.012014546431601048,
- 0.017828067764639854,
- -0.02949821576476097,
- 0.01598082110285759,
- -0.030262911692261696,
- 0.04247855767607689,
- -0.09835019707679749,
- 0.014956716448068619,
- -0.031207067891955376,
- -0.06382930278778076,
- 0.02906535193324089,
- 0.005067606456577778,
- -0.026797933503985405,
- 0.01488526351749897,
- -0.023491179570555687,
- -0.037605371326208115,
- 0.10215108841657639,
- 0.00564039871096611,
- -0.016716741025447845,
- 0.055912744253873825,
- 0.17720694839954376,
- -0.03943246230483055,
- 0.049806006252765656,
- 0.024123141542077065,
- -0.11949928104877472,
- -0.004230753984302282,
- -0.03825820982456207,
- 0.01687868870794773,
- -0.02141774259507656,
- 0.03626153618097305,
- 0.017387498170137405,
- -0.01757720485329628,
- 0.019683675840497017,
- 0.013450381346046925,
- 0.11134940385818481,
- 0.06226170063018799,
- -0.05576489493250847,
- -0.023167617619037628,
- -0.052868083119392395,
- 0.06644491106271744,
- -0.0004110966401640326,
- -0.02826506644487381,
- 0.006870456971228123,
- -0.08534423261880875,
- -0.06525015085935593,
- 0.04026906564831734,
- -0.032702669501304626,
- -0.04056265205144882,
- 0.053456686437129974,
- 0.03395586088299751,
- -0.03013135865330696,
- -0.012081379070878029,
- -0.031865645200014114,
- -0.03771088644862175,
- -0.03311226889491081,
- 0.19428208470344543,
- -0.04346735030412674,
- 0.12327998876571655,
- -0.011797869578003883,
- -0.06802602857351303,
- -0.025988580659031868,
- -0.0670546367764473,
- 0.01910092867910862,
- -0.008402383886277676,
- -0.04042580723762512,
- -0.05726884305477142,
- 0.034172043204307556,
- -0.024433018639683723,
- 0.007564860861748457,
- 0.0165965985506773,
- 0.040666092187166214,
- -0.008068515919148922,
- -0.03331693261861801,
- 0.038548246026039124,
- -0.04143957421183586,
- -0.029807886108756065,
- 0.028622448444366455,
- 0.043781522661447525,
- 0.013172329403460026,
- 0.041891906410455704,
- -0.041042134165763855,
- -0.1547277718782425,
- 0.07496050745248795,
- -5.473423856349093e-33,
- -0.025642959401011467,
- -0.082216776907444,
- 0.022945677861571312,
- 0.02090788632631302,
- -0.042442288249731064,
- -0.00042869578464888036,
- -0.04762941226363182,
- -0.033580247312784195,
- -0.024854300543665886,
- 0.036641769111156464,
- -0.04675602167844772,
- -0.11717043817043304,
- -0.02340884506702423,
- 0.0341627337038517,
- 0.06947974115610123,
- 0.04649481549859047,
- -0.0036078577395528555,
- -0.007493443321436644,
- 0.003541664918884635,
- -0.03453541919589043,
- -0.03769208490848541,
- 0.008535181172192097,
- -0.04133010283112526,
- 0.03733889013528824,
- 0.020593365654349327,
- -0.011072198860347271,
- 0.027011992409825325,
- -0.04469684883952141,
- -0.11416139453649521,
- -0.006336499936878681,
- 0.006046983879059553,
- -0.011100389063358307,
- -0.017241477966308594,
- 0.026204204186797142,
- 0.08818469941616058,
- 0.043085891753435135,
- 0.007795100100338459,
- -0.11112378537654877,
- 0.05267741531133652,
- 0.00039034869405440986,
- -0.0987870916724205,
- -0.020885059610009193,
- -0.044206492602825165,
- -0.05252368375658989,
- 0.07603137195110321,
- 0.05096367746591568,
- 0.006227689329534769,
- 0.010823518969118595,
- -0.06491482257843018,
- -0.00039984245086088777,
- 0.009279655292630196,
- 0.002429285552352667,
- -0.05227009207010269,
- -0.020020384341478348,
- 0.08991260826587677,
- -0.01998540386557579,
- -0.014686854556202888,
- 0.042607542127370834,
- -0.013001342304050922,
- 0.028933914378285408,
- -0.02114121802151203,
- -0.020264558494091034,
- -0.05061826482415199,
- 0.011059349402785301,
- 0.004978464916348457,
- -0.002311530290171504,
- 0.058612968772649765,
- -0.022464897483587265,
- 0.01412466261535883,
- 0.013819847255945206,
- -0.0031869274098426104,
- -0.04053012654185295,
- 0.028585080057382584,
- 0.02372491918504238,
- -0.055628061294555664,
- -0.009123856201767921,
- 0.00851630512624979,
- 0.03570794686675072,
- -0.021590009331703186,
- -0.01076944638043642,
- 0.03042594902217388,
- -0.04968634620308876,
- 0.0032494578044861555,
- 0.022412052378058434,
- 0.07532934099435806,
- 0.10215047001838684,
- 0.022349543869495392,
- -0.04562413692474365,
- 0.049338702112436295,
- 0.043999042361974716,
- -0.04683835431933403,
- 0.012836288660764694,
- 0.09195239841938019,
- 0.030567849054932594,
- -0.03234797716140747,
- 4.5879482064456494e-33,
- -0.018170688301324844,
- 0.04230566322803497,
- -0.015352587215602398,
- -0.0005077054374851286,
- 0.017398841679096222,
- -0.04146517068147659,
- 0.04707248508930206,
- 0.007216977421194315,
- -0.04233939200639725,
- 0.0368473120033741,
- 0.03965438902378082,
- -0.021623974665999413,
- 0.0706038549542427,
- 0.02593894489109516,
- -0.009868442080914974,
- 0.045743778347969055,
- 0.08318998664617538,
- -0.007051541469991207,
- -0.0448547899723053,
- 0.05967118963599205,
- -0.05238139256834984,
- 0.004815211519598961,
- -0.02410748600959778,
- -0.025495784357190132,
- -0.09125839918851852,
- 0.03499174863100052,
- -0.007343382108956575,
- 0.01172403059899807,
- -0.04813222959637642,
- -0.04004700854420662,
- 0.08010227978229523,
- -0.0836097002029419,
- -0.13657255470752716,
- -0.026174373924732208,
- -0.03918059915304184,
- 0.030069710686802864,
- 0.0905332937836647,
- 0.0003854034875985235,
- -0.11112253367900848,
- 0.05014804005622864,
- 0.06496873497962952,
- -0.05650736764073372,
- -0.017963731661438942,
- 0.10038010030984879,
- -0.09453413635492325,
- -0.0698988139629364,
- 0.037475649267435074,
- -0.005388140678405762,
- 0.05580207705497742,
- 0.01790752448141575,
- -0.1320459097623825,
- -0.0031722590792924166,
- 0.017219148576259613,
- 0.01035197451710701,
- -0.029118932783603668,
- -0.0011580641148611903,
- 0.04049888998270035,
- -0.006128468085080385,
- -0.02337455190718174,
- -0.047294631600379944,
- -0.012523718178272247,
- 0.10185718536376953,
- -0.06297053396701813,
- 0.08506358414888382,
- 0.01817290484905243,
- -0.03729740157723427,
- -0.07497899979352951,
- 0.020204797387123108,
- 0.07881731539964676,
- 0.055531375110149384,
- 0.0616820864379406,
- 0.02439085580408573,
- -0.08478835225105286,
- 0.02003331296145916,
- -0.04794704169034958,
- 0.029717154800891876,
- -0.09218865633010864,
- 0.0024242447689175606,
- -0.030141590163111687,
- 0.022619051858782768,
- 0.04928359389305115,
- -0.01189284585416317,
- 0.006705147214233875,
- 0.04090063273906708,
- -0.01894034817814827,
- -0.01989348791539669,
- 0.031084982678294182,
- -0.030223391950130463,
- -0.022121965885162354,
- 0.06591694056987762,
- -0.03641142696142197,
- -0.017432423308491707,
- -0.037596188485622406,
- -0.0043852259404957294,
- 0.02036197856068611,
- -1.4065534514884348e-8,
- -0.004623225424438715,
- 0.0072493418119847775,
- 0.10997748374938965,
- 0.02743331342935562,
- 0.05095512419939041,
- 0.012041772715747356,
- 0.009688959456980228,
- -0.020232589915394783,
- -0.015366245992481709,
- 0.057419270277023315,
- 0.006291182711720467,
- 0.01742454804480076,
- -0.05441590026021004,
- 0.028454698622226715,
- 0.05418862774968147,
- 0.018868325278162956,
- -0.05275817960500717,
- -0.07366660237312317,
- -0.002407256281003356,
- -0.004333508666604757,
- -0.07455823570489883,
- 0.006713699549436569,
- -0.02678111381828785,
- 0.08463644981384277,
- -0.028372282162308693,
- -0.005241925362497568,
- 0.01380113698542118,
- 0.02181236259639263,
- 0.002391254296526313,
- 0.024760372936725616,
- 0.00899070780724287,
- 0.13054068386554718,
- 0.027012357488274574,
- -0.02937847562134266,
- 0.1287541538476944,
- -0.014496136456727982,
- 0.008462248370051384,
- 0.028043948113918304,
- 0.0930640697479248,
- -0.09042750298976898,
- -0.052753571420907974,
- -0.0021776033099740744,
- -0.04295400157570839,
- 0.04490179941058159,
- -0.0032435378525406122,
- -0.02324083261191845,
- -0.01036991085857153,
- -0.022492649033665657,
- -0.040637269616127014,
- 0.020567577332258224,
- -0.008211723528802395,
- 0.03260205686092377,
- 0.027853839099407196,
- 0.023572390899062157,
- 0.04189639538526535,
- 0.04078654199838638,
- 0.03470610827207565,
- 0.018819192424416542,
- -0.08593852072954178,
- 0.023518245667219162,
- 0.10934649407863617,
- -0.05626099556684494,
- 0.041799936443567276,
- -0.07496783882379532
- ]
- },
- {
- "keyword": "bill",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.06548166275024414,
- 0.10361684113740921,
- -0.016913410276174545,
- 0.016400480642914772,
- -0.06034504249691963,
- 0.017319517210125923,
- 0.07748627662658691,
- -0.0033725856337696314,
- -0.005361558869481087,
- -0.029260793700814247,
- -0.03407679498195648,
- -0.014413020573556423,
- 0.023187648504972458,
- -0.05819394066929817,
- 0.018273349851369858,
- 0.03079054318368435,
- 0.04512675479054451,
- 0.009182238951325417,
- -0.05065888166427612,
- 0.01936190575361252,
- -0.024044830352067947,
- 0.12559542059898376,
- -0.03726375102996826,
- 0.007217648439109325,
- -0.018562745302915573,
- 0.022791702300310135,
- -0.02398660033941269,
- -0.07406731694936752,
- -0.06874178349971771,
- -0.14725035429000854,
- 0.038818519562482834,
- -0.002607748843729496,
- 0.061890166252851486,
- -0.007776307873427868,
- -0.010567243210971355,
- -0.04089156165719032,
- 0.02413463406264782,
- 0.05286913365125656,
- 0.0867307186126709,
- -0.008145918138325214,
- -0.038017477840185165,
- -0.09055305272340775,
- -0.04713302105665207,
- -0.018989654257893562,
- -0.004176630638539791,
- 0.011094891466200352,
- 0.01690782979130745,
- 0.05834732949733734,
- 0.019643772393465042,
- 0.09103814512491226,
- -0.027980133891105652,
- -0.012712543830275536,
- -0.03340880945324898,
- 0.03645087778568268,
- 0.10820040106773376,
- -0.025420675054192543,
- 0.07560776174068451,
- 0.042755987495183945,
- 0.02169003151357174,
- -0.02431323193013668,
- -0.006694794166833162,
- -0.01854608580470085,
- -0.05866802856326103,
- 0.05395742878317833,
- 0.0227985680103302,
- 0.009083021432161331,
- -0.015093776397407055,
- 0.04601981118321419,
- -0.0722544714808464,
- -0.05572530999779701,
- -0.009502686560153961,
- 0.019467690959572792,
- -0.007371163461357355,
- -0.025906890630722046,
- 0.06217252463102341,
- -0.05467008054256439,
- 0.13233357667922974,
- 0.003046038094907999,
- 0.05775955319404602,
- -0.007378085050731897,
- -0.025762241333723068,
- -0.03770406171679497,
- -0.08461250364780426,
- -0.005941260606050491,
- 0.01642242819070816,
- 0.01766715757548809,
- -0.01762344315648079,
- 0.02415483631193638,
- -0.015553655102849007,
- 0.024461504071950912,
- -0.021621331572532654,
- 0.0026969537138938904,
- 0.065035380423069,
- -0.06531061232089996,
- 0.05024319887161255,
- 0.03028138540685177,
- -0.06286349147558212,
- -0.08035827428102493,
- -0.07627285271883011,
- 0.25754672288894653,
- 0.007655366789549589,
- 0.010111619718372822,
- 0.0390247143805027,
- -0.00020613439846783876,
- 0.08435658365488052,
- 0.03835207596421242,
- -0.00047990461462177336,
- -0.007089357357472181,
- 0.03778328001499176,
- 0.0019447749946266413,
- 0.0671074390411377,
- -0.015314956195652485,
- -0.00720558874309063,
- -0.015591698698699474,
- 0.011677976697683334,
- -0.03461744263768196,
- -0.010055643506348133,
- 0.0008871292811818421,
- 0.03145647048950195,
- -0.02776314504444599,
- 0.030860070139169693,
- 0.07230670005083084,
- -0.06516345590353012,
- -0.017258280888199806,
- -0.10888838768005371,
- -0.02788584679365158,
- 0.04298372194170952,
- -5.599737703842656e-33,
- -0.043232597410678864,
- -0.059734225273132324,
- 0.012532398104667664,
- -0.02883603610098362,
- 0.041029684245586395,
- 0.06047607585787773,
- -0.020938415080308914,
- 0.009020221419632435,
- -0.05528169870376587,
- -0.02038542553782463,
- -0.03042004629969597,
- -0.030795717611908913,
- -0.019413389265537262,
- 0.07700950652360916,
- -0.017629234120249748,
- 0.022401200607419014,
- -0.030418217182159424,
- 0.01329953782260418,
- -0.06622239947319031,
- -0.002401158446446061,
- -0.01847764104604721,
- 0.09431289881467819,
- 0.04267483577132225,
- 0.09706182032823563,
- -0.0182263795286417,
- -0.07468656450510025,
- 0.06960555166006088,
- -0.07532515376806259,
- 0.027838602662086487,
- 0.0192050002515316,
- -0.01591823622584343,
- 0.021319670602679253,
- 0.03519057482481003,
- 0.010146504268050194,
- 0.018053967505693436,
- -0.014443575404584408,
- -0.020729687064886093,
- -0.07285397499799728,
- 0.005135571118444204,
- -0.07571998238563538,
- 0.002126980572938919,
- 0.05893982574343681,
- -0.009824804961681366,
- 0.032410237938165665,
- -0.10530221462249756,
- 0.04100622236728668,
- 0.07704031467437744,
- 0.010172579437494278,
- 0.0035263006575405598,
- 0.04976525157690048,
- -0.023431986570358276,
- 0.00417962484061718,
- -0.09673136472702026,
- -0.019678978249430656,
- -0.0039769732393324375,
- -0.08135315775871277,
- 0.027040276676416397,
- -0.0160355381667614,
- 0.010865936987102032,
- -0.08463173359632492,
- 0.020830612629652023,
- 0.056163541972637177,
- 0.06140177696943283,
- 0.08906155079603195,
- -0.035500477999448776,
- -0.08208020031452179,
- 0.025132324546575546,
- -0.02886495366692543,
- 0.05334469676017761,
- -0.04366626590490341,
- -0.028244920074939728,
- -0.024292197078466415,
- -0.00890664104372263,
- 0.019337566569447517,
- -0.019663279876112938,
- 0.054052747786045074,
- 0.053972743451595306,
- -0.020936748012900352,
- -0.05216332897543907,
- -0.02999177761375904,
- -0.1030748263001442,
- 0.02828625775873661,
- 0.055773425847291946,
- 0.04118034616112709,
- 0.022240255028009415,
- 0.05349154397845268,
- -0.061976924538612366,
- -0.07696569710969925,
- 0.06100846081972122,
- -0.05291762575507164,
- -0.06460439413785934,
- -0.007701749913394451,
- 0.05985165759921074,
- 0.004386277869343758,
- 0.022304724901914597,
- 3.5624072618539455e-33,
- -0.04764943942427635,
- -0.009374051354825497,
- 0.09945704787969589,
- 0.05979923531413078,
- 0.0016568327555432916,
- -0.031326957046985626,
- -0.0074447630904614925,
- -0.01213520485907793,
- -0.01062250230461359,
- 0.061611052602529526,
- -0.03608998283743858,
- -0.016856325790286064,
- -0.0195012129843235,
- 0.04136635363101959,
- 0.14631249010562897,
- 0.03645792603492737,
- 0.04863830655813217,
- -0.02080385573208332,
- 0.004243118688464165,
- 0.03596552461385727,
- -0.05028308555483818,
- -0.0010828629601746798,
- -0.0386316254734993,
- 0.00019711216737050563,
- -0.06746360659599304,
- 0.049856286495923996,
- -0.008406118489801884,
- -0.08351627737283707,
- 0.017883794382214546,
- 0.02690623141825199,
- -0.04005914181470871,
- 0.010848117992281914,
- -0.07689539343118668,
- 0.040200572460889816,
- -0.050735197961330414,
- 0.11451635509729385,
- 0.06805560737848282,
- 0.030971044674515724,
- -0.020642690360546112,
- -0.0004892117576673627,
- 0.08590035140514374,
- 0.031968723982572556,
- 0.06200280413031578,
- 0.08466608822345734,
- -0.050087302923202515,
- -0.04415879771113396,
- -0.02753976359963417,
- -0.003875397378578782,
- -0.08767145127058029,
- 0.0397256501019001,
- -0.11242934316396713,
- 0.018631381914019585,
- -0.00780642032623291,
- -0.022746969014406204,
- -0.06959866732358932,
- 0.008653032593429089,
- 0.07529442757368088,
- 0.005465866066515446,
- 0.04768865182995796,
- -0.024977002292871475,
- -0.04925030097365379,
- 0.0185238029807806,
- 0.03355739638209343,
- -0.00013758119894191623,
- -0.0399271696805954,
- 0.062098994851112366,
- -0.04658779501914978,
- -0.014929528348147869,
- -0.07471439242362976,
- 0.029738599434494972,
- 0.013763073831796646,
- 0.003217079909518361,
- -0.09079861640930176,
- 0.02870936691761017,
- -0.03926631063222885,
- 0.026157546788454056,
- -0.09481775015592575,
- -0.01708277314901352,
- -0.08415661007165909,
- 0.040680985897779465,
- 0.027251088991761208,
- -0.011324205435812473,
- -0.011433221399784088,
- 0.05802904814481735,
- -0.017845148220658302,
- -0.0767340213060379,
- 0.039437126368284225,
- -0.03999548405408859,
- -0.04296647012233734,
- 0.023740608245134354,
- 0.004201771691441536,
- -0.027775779366493225,
- -0.02457164227962494,
- -0.016219856217503548,
- -0.01829925738275051,
- -1.2549619121671185e-8,
- -0.0727706030011177,
- -0.015051824040710926,
- -0.04397663101553917,
- -0.06167231500148773,
- 0.04384961724281311,
- -0.029829856008291245,
- -0.041566893458366394,
- 0.023765133693814278,
- 0.02882787026464939,
- 0.07314247637987137,
- 0.04015542194247246,
- -0.019597068428993225,
- 0.045777931809425354,
- -0.04961906000971794,
- 0.06134823337197304,
- -0.02569691836833954,
- -0.05313204228878021,
- -0.05192886292934418,
- -0.01617925800383091,
- 0.03459155187010765,
- -0.011275390163064003,
- 0.031167717650532722,
- 0.006454783957451582,
- 0.055910613387823105,
- 0.002623617881909013,
- -0.004494158085435629,
- 0.025340810418128967,
- 0.15085360407829285,
- 0.06489710509777069,
- 0.017747938632965088,
- 0.01093100756406784,
- 0.17662006616592407,
- -0.07182282954454422,
- -0.12777841091156006,
- 0.003293749876320362,
- -0.025812827050685883,
- 0.0067203412763774395,
- -0.028446298092603683,
- 0.03751102089881897,
- 0.06362628191709518,
- -0.014325512573122978,
- 0.048739735037088394,
- 0.003898917930200696,
- -0.038176264613866806,
- 0.0036672649439424276,
- -0.05851509049534798,
- -0.01574636623263359,
- -0.009747503325343132,
- -0.018524039536714554,
- -0.05060373246669769,
- -0.055151037871837616,
- 0.04419754818081856,
- 0.028520002961158752,
- 0.05497945845127106,
- 0.0394841767847538,
- -0.0013399834278970957,
- -0.030678479000926018,
- -0.008453115820884705,
- -0.027658259496092796,
- -0.017899224534630775,
- 0.1779511570930481,
- 0.00899801030755043,
- 0.08294448256492615,
- -0.05240180715918541
- ]
- },
- {
- "keyword": "voucher",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.11392594873905182,
- 0.0800054743885994,
- -0.03148636594414711,
- -0.0556064248085022,
- -0.037735868245363235,
- 0.023081637918949127,
- 0.14417891204357147,
- 0.00021183438366279006,
- 0.03582242876291275,
- -0.00729683181270957,
- 0.08272338658571243,
- 0.02940019965171814,
- -0.03300538286566734,
- -0.037073202431201935,
- 0.015358109027147293,
- -0.0023195536341518164,
- 0.029890352860093117,
- -0.01340720895677805,
- -0.07939140498638153,
- -0.04753793776035309,
- -0.050848815590143204,
- -0.008748577907681465,
- -0.07361342012882233,
- 0.010924536734819412,
- 0.013407027348876,
- 0.03354490175843239,
- -0.03460033982992172,
- 0.01154251303523779,
- 0.03833857551217079,
- -0.09457280486822128,
- 0.12851275503635406,
- -0.031859636306762695,
- 0.06453300267457962,
- -0.015928540378808975,
- 0.044315386563539505,
- 0.004418933764100075,
- -0.022086653858423233,
- -0.07005893439054489,
- -0.053017739206552505,
- 0.039076704531908035,
- -0.04913457855582237,
- -0.028353547677397728,
- -0.0997149795293808,
- 0.0728621557354927,
- 0.018223797902464867,
- -0.029022255912423134,
- -0.0037929259706288576,
- 0.0719447135925293,
- -0.00932367704808712,
- 0.07463537156581879,
- 0.07871559262275696,
- -0.028175808489322662,
- -0.0362815260887146,
- 0.04222632572054863,
- -0.03731701895594597,
- -0.018069393932819366,
- 0.01959136314690113,
- 0.010572216473519802,
- -0.029514377936720848,
- -0.036878667771816254,
- -0.025729168206453323,
- -0.0017251112731173635,
- -0.0332086905837059,
- 0.03144986927509308,
- -0.1045045480132103,
- 0.00026258896104991436,
- -0.029330948367714882,
- 0.04146986082196236,
- 0.01127918902784586,
- 0.004225659649819136,
- 0.011406750418245792,
- 0.05589047074317932,
- 0.09644287079572678,
- -0.016274433583021164,
- 0.018337052315473557,
- 0.020009303465485573,
- 0.02607634849846363,
- -0.06372538954019547,
- 0.09396609663963318,
- -0.028973737731575966,
- -0.015839628875255585,
- -0.016909584403038025,
- -0.007211660034954548,
- -0.04761241376399994,
- 0.05104277282953262,
- -0.015460183843970299,
- 0.002326446585357189,
- -0.05546850338578224,
- 0.016326701268553734,
- -0.007924745790660381,
- -0.007416378241032362,
- -0.0007811757386662066,
- 0.05106783285737038,
- 0.018708674237132072,
- -0.14234140515327454,
- 0.006191933061927557,
- -0.006602849345654249,
- -0.08152254670858383,
- -0.06917992979288101,
- 0.2190607637166977,
- -0.016546152532100677,
- 0.0037716517690569162,
- -0.03076239861547947,
- 0.03966463357210159,
- 0.009517334401607513,
- -0.03627348691225052,
- 0.007135028950870037,
- 0.015896916389465332,
- 0.07028446346521378,
- -0.0026102066040039062,
- -0.07128104567527771,
- 0.03162936121225357,
- 0.09351510554552078,
- -0.014682233333587646,
- -0.06652260571718216,
- 0.04851171001791954,
- -0.03519934415817261,
- 0.05832754075527191,
- 0.07185881584882736,
- -0.09900495409965515,
- 0.029303601011633873,
- 0.049070000648498535,
- 0.003235885640606284,
- -0.08168524503707886,
- -0.08255316317081451,
- -0.044468361884355545,
- -0.030010603368282318,
- -3.0624595962156416e-33,
- -0.03733735904097557,
- 0.018339306116104126,
- -0.02910330519080162,
- 0.012743472121655941,
- 0.008123030886054039,
- -0.010020550340414047,
- 0.03343511372804642,
- 0.014169430360198021,
- -0.1062488704919815,
- 0.007589519489556551,
- -0.023795926943421364,
- -0.10796911269426346,
- -0.014282691292464733,
- 0.026455266401171684,
- 0.0592837929725647,
- -0.0023617877159267664,
- -0.05588119477033615,
- 0.046772394329309464,
- 0.09414602816104889,
- 0.04341738671064377,
- 0.01804715022444725,
- 0.02388439141213894,
- 0.05784991383552551,
- 0.013702326454222202,
- 0.0441313236951828,
- -0.0029008169658482075,
- -0.020595388486981392,
- -0.031016197055578232,
- 0.08921007812023163,
- 0.06586525589227676,
- -0.0042619770392775536,
- 0.0408046618103981,
- 0.06969834864139557,
- -0.07621084898710251,
- -0.032782912254333496,
- 0.029994787648320198,
- -0.013109397143125534,
- -0.07962985336780548,
- 0.0036050742492079735,
- -0.07076344639062881,
- 0.03792833909392357,
- -0.016196439042687416,
- -0.0257855374366045,
- 0.0035692229866981506,
- -0.0012636251049116254,
- 0.020538009703159332,
- 0.09947346895933151,
- 0.0001259293348994106,
- 0.019528741016983986,
- 0.033513717353343964,
- -0.05926625803112984,
- -0.0263285581022501,
- -0.13097582757472992,
- -0.07270729541778564,
- -0.07561618089675903,
- -0.10528279840946198,
- 0.0106278695166111,
- -0.01308040227741003,
- 0.06320174783468246,
- -0.07349453121423721,
- 0.08203653991222382,
- -0.040298592299222946,
- 0.012562795542180538,
- 0.022862879559397697,
- -0.07763760536909103,
- -0.019006047397851944,
- -0.0014896417269483209,
- -0.0888240784406662,
- 0.059908464550971985,
- -0.006634913384914398,
- -0.04233850538730621,
- 0.02091585472226143,
- -0.053098972886800766,
- -0.04260154813528061,
- -0.04927811771631241,
- 0.02754064090549946,
- 0.04922956973314285,
- 0.04257737472653389,
- 0.024795053526759148,
- -0.028155429288744926,
- -0.0022433202248066664,
- -0.06853628903627396,
- 0.06037107855081558,
- 0.017648186534643173,
- 0.04636307433247566,
- 0.06708396971225739,
- 0.04579098895192146,
- -0.010753671638667583,
- 0.04871463030576706,
- -0.007647560443729162,
- -0.03579048812389374,
- -0.004687447100877762,
- 0.011350761167705059,
- -0.056928593665361404,
- 0.10664799809455872,
- 2.675753362534795e-33,
- -0.04701049625873566,
- -0.05800282955169678,
- -0.054145634174346924,
- 0.07396306842565536,
- 0.03088422119617462,
- 0.04843269661068916,
- -0.0726713016629219,
- -0.010487952269613743,
- -0.007913145236670971,
- 0.02842496708035469,
- -0.08621525019407272,
- 0.04878436401486397,
- 0.06266310065984726,
- 0.037907183170318604,
- 0.057003799825906754,
- -0.0016653822967782617,
- -0.0776030495762825,
- 0.006573122926056385,
- 0.0788518413901329,
- 0.0016484800726175308,
- -0.06171844154596329,
- 0.01933279260993004,
- 0.01310296356678009,
- 0.02760333940386772,
- -0.0010512970620766282,
- 0.05139876902103424,
- -0.06823880970478058,
- 0.04631167650222778,
- -0.011294362135231495,
- 0.05071435496211052,
- -0.06346335262060165,
- -0.1076996698975563,
- -0.06247945874929428,
- 0.047730349004268646,
- -0.010518382303416729,
- 0.039806414395570755,
- 0.07511016726493835,
- -0.004195055458694696,
- -0.03214338794350624,
- 0.06764723360538483,
- 0.04094142094254494,
- -0.11558102816343307,
- 0.03876948356628418,
- 0.037949517369270325,
- -0.042193494737148285,
- 0.00017291503900196403,
- 0.034155163913965225,
- 0.005082214716821909,
- 0.0477469302713871,
- 0.003822805592790246,
- -0.032262831926345825,
- 0.02788020484149456,
- 0.019015146419405937,
- 0.09888789802789688,
- -0.007997318170964718,
- 0.06495335698127747,
- -0.024967867881059647,
- -0.05499063804745674,
- 0.15674033761024475,
- -0.013176603242754936,
- -0.0001636993110878393,
- 0.015462467446923256,
- -0.05649344623088837,
- 0.04423103854060173,
- 0.05513427406549454,
- -0.01935904286801815,
- 0.04718545451760292,
- 0.012224334292113781,
- 0.0323525071144104,
- 0.007009418681263924,
- -0.0359342098236084,
- 0.039403438568115234,
- 0.03897000104188919,
- -0.06292609870433807,
- 0.04022129997611046,
- 0.0524405762553215,
- -0.039683155715465546,
- 0.11819833517074585,
- -0.011116884648799896,
- 0.0238327793776989,
- -0.09265119582414627,
- -0.07664568722248077,
- 0.006581327877938747,
- 0.028947453945875168,
- 0.04574493318796158,
- -0.07509840279817581,
- 0.08312525600194931,
- -0.022168423980474472,
- -0.018190165981650352,
- 0.007300510071218014,
- -0.027201306074857712,
- 0.034977469593286514,
- 0.08289831131696701,
- 0.0034568149130791426,
- 0.06576589494943619,
- -1.2452903597193199e-8,
- 0.016939686611294746,
- 0.01019846461713314,
- 0.013171711936593056,
- -0.0243105199187994,
- 0.06635905802249908,
- -0.06823801249265671,
- -0.050912391394376755,
- 0.031923528760671616,
- -0.03131677582859993,
- 0.11077351868152618,
- 0.0059296623803675175,
- 0.04867345839738846,
- -0.04197769984602928,
- -0.056840259581804276,
- -0.055222466588020325,
- 0.046354446560144424,
- -0.032169681042432785,
- 0.041205137968063354,
- -0.011660944670438766,
- 0.03278067335486412,
- 0.025317132472991943,
- 0.06715307384729385,
- 0.03478395938873291,
- -0.016520891338586807,
- -0.054099272936582565,
- 0.007086279336363077,
- 0.06754542887210846,
- 0.07274197041988373,
- 0.01824413798749447,
- 0.015678172931075096,
- 0.013253260403871536,
- 0.06491982191801071,
- 0.034094348549842834,
- -0.10523215681314468,
- 0.0015284775290638208,
- -0.003238263074308634,
- -0.048647504299879074,
- 0.005990399047732353,
- -0.007428579498082399,
- -0.016302503645420074,
- 0.004143374040722847,
- -0.07036687433719635,
- -0.038906823843717575,
- -0.03693963214755058,
- 0.01741863042116165,
- 0.0776066929101944,
- -0.04350738599896431,
- -0.03599150478839874,
- -0.009058354422450066,
- -0.044710997492074966,
- -0.05857457220554352,
- -0.005062210373580456,
- 0.008864972740411758,
- 0.010668708011507988,
- 0.014171515591442585,
- -0.08018465340137482,
- -0.0041302344761788845,
- -0.07634638994932175,
- 0.03356368839740753,
- -0.016474148258566856,
- 0.05531826615333557,
- -0.021401818841695786,
- 0.0006345301517285407,
- -0.05096501484513283
- ]
- },
- {
- "keyword": "form",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.11341789364814758,
- 0.060475047677755356,
- -0.034518636763095856,
- 0.014973349869251251,
- -0.06201769411563873,
- 0.0605660080909729,
- 0.03838372975587845,
- 0.028274066746234894,
- -0.019093941897153854,
- -0.002691308269277215,
- -0.009599275887012482,
- -0.03294835984706879,
- -0.010498705320060253,
- -0.02497772127389908,
- 0.006372529547661543,
- 0.016669977456331253,
- -0.05723424255847931,
- -0.04821499437093735,
- -0.03366553410887718,
- -0.00846092589199543,
- -0.022063374519348145,
- 0.010666225105524063,
- -0.04167817905545235,
- 0.02592651918530464,
- -0.03926418349146843,
- 0.0572730228304863,
- 0.01794694922864437,
- 0.028939994052052498,
- 0.1320648193359375,
- -0.11344700306653976,
- -0.007371596992015839,
- -0.004096671938896179,
- 0.08031594753265381,
- -0.04233534634113312,
- -0.017552416771650314,
- -0.03321295231580734,
- -0.04570595547556877,
- 0.015280438587069511,
- -0.0463426299393177,
- -0.06845520436763763,
- -0.11431092768907547,
- -0.1099320575594902,
- -0.016613444313406944,
- 0.04250544682145119,
- -0.009236606769263744,
- 0.018535742536187172,
- -0.0060310666449368,
- -0.0203559510409832,
- 0.030311154201626778,
- 0.019739322364330292,
- -0.03268495574593544,
- -0.06285376846790314,
- -0.014833519235253334,
- 0.04814993217587471,
- -0.006923874374479055,
- -0.053859587758779526,
- -0.04055093973875046,
- -0.05142432823777199,
- -0.028246620669960976,
- 0.006839551962912083,
- 0.01158206071704626,
- 0.026566654443740845,
- -0.06079584360122681,
- 0.03820766881108284,
- -0.02446109429001808,
- 0.03357623144984245,
- -0.06628356873989105,
- -0.03499821573495865,
- -0.01714794524013996,
- -0.07130055129528046,
- 0.008033277466893196,
- -0.003972429316490889,
- -0.060789261013269424,
- -0.022051388397812843,
- 0.022310743108391762,
- -0.09822350740432739,
- -0.007244683802127838,
- -0.07634430378675461,
- 0.06550131738185883,
- 0.06784115731716156,
- 0.03693573176860809,
- 0.07999949157238007,
- -0.06128433719277382,
- -0.010428027249872684,
- 0.02034018188714981,
- 0.016908196732401848,
- -0.015727326273918152,
- 0.002825518837198615,
- 0.0068343146704137325,
- -0.09258952736854553,
- -0.0004838512104470283,
- 0.045935310423374176,
- 0.022766273468732834,
- 0.05120644345879555,
- -0.03765352815389633,
- -0.009618767537176609,
- 0.008634709753096104,
- 0.0037969150580465794,
- 0.04092496633529663,
- 0.2647216022014618,
- 0.04186328873038292,
- -0.0023692462127655745,
- -0.07121507078409195,
- 0.03435030207037926,
- 0.006283183582127094,
- -0.0890779048204422,
- 0.030149297788739204,
- 0.026362916454672813,
- 0.08558807522058487,
- -0.006629640702158213,
- -0.04587597772479057,
- -0.0768122524023056,
- -0.11407866328954697,
- 0.07352734357118607,
- -0.010619872249662876,
- 0.03649640828371048,
- -0.004396325442939997,
- 0.013259518891572952,
- -0.013088159263134003,
- 0.004018462263047695,
- 0.042094286531209946,
- 0.027297018095850945,
- -0.06960344314575195,
- -0.045294422656297684,
- -0.044114820659160614,
- -0.1284661889076233,
- 0.06006081402301788,
- -4.722752061888026e-33,
- 0.06748292595148087,
- 0.08515697717666626,
- 0.0017657947028055787,
- 0.11988676339387894,
- -0.011269551701843739,
- 0.03253583610057831,
- -0.03434734791517258,
- 0.06503209471702576,
- 0.022660167887806892,
- 0.03967510163784027,
- -0.08547693490982056,
- -0.028538720682263374,
- -0.004061810672283173,
- 0.00010571483289822936,
- 0.03908698260784149,
- -0.02704140916466713,
- -0.0207388773560524,
- 0.12613756954669952,
- -0.03255898505449295,
- -0.0183667354285717,
- 0.0032013487070798874,
- 0.06478652358055115,
- 0.07079949975013733,
- -0.010400545783340931,
- 0.039064474403858185,
- 0.018643956631422043,
- -0.044085729867219925,
- -0.002672372153028846,
- -0.0457182340323925,
- 0.003399258479475975,
- 0.012588574551045895,
- -0.0692720115184784,
- -0.06593123078346252,
- -0.04123810678720474,
- -0.008431067690253258,
- 0.019436130300164223,
- -0.017490340396761894,
- -0.08932448923587799,
- 0.039439648389816284,
- -0.041565075516700745,
- 0.0261533223092556,
- -0.018665920943021774,
- 0.007380953058600426,
- -0.022738639265298843,
- -0.011547683738172054,
- 0.011171422898769379,
- 0.04435817897319794,
- 0.06738708913326263,
- 0.023074796423316002,
- 0.013876697048544884,
- -0.023561175912618637,
- 0.03442668542265892,
- -0.052325136959552765,
- -0.030188610777258873,
- 0.01183040626347065,
- 0.03001253306865692,
- -0.031513117253780365,
- -0.01881481520831585,
- -0.00189101486466825,
- -0.022554300725460052,
- 0.1028880923986435,
- 0.03824014589190483,
- -0.09766118228435516,
- 0.041334960609674454,
- -0.12892332673072815,
- -0.080140121281147,
- -0.022802088409662247,
- -0.06898973882198334,
- 0.11491148173809052,
- -0.024378430098295212,
- -0.07146385312080383,
- 0.03338178992271423,
- -0.029703831300139427,
- -0.01960434578359127,
- 0.0357147753238678,
- -0.07981666177511215,
- 0.0010187174193561077,
- 0.016114380210638046,
- -0.036871444433927536,
- 0.04054023325443268,
- -0.06661179661750793,
- -0.024842169135808945,
- -0.10856571793556213,
- 0.06499423086643219,
- 0.12291491776704788,
- 0.005168885458260775,
- 0.0166799146682024,
- -0.06274759024381638,
- -0.028208132833242416,
- 0.020062437281012535,
- -0.09412793070077896,
- -0.023520229384303093,
- -0.012176528573036194,
- -0.037001412361860275,
- 0.020581470802426338,
- 3.904621218027161e-33,
- -0.08157245069742203,
- -0.06353645771741867,
- -0.06337272375822067,
- 0.012647544033825397,
- 0.08084243535995483,
- 0.003230651840567589,
- 0.10785041004419327,
- -0.00031800862052477896,
- 0.04826834052801132,
- 0.07940321415662766,
- -0.05297742038965225,
- 0.022151891142129898,
- 0.08792203664779663,
- -0.05815847963094711,
- -0.05120375007390976,
- 0.03869321197271347,
- 0.008532637730240822,
- 0.027190076187253,
- -0.002811306156218052,
- -0.019993705675005913,
- -0.0760536640882492,
- 0.046062689274549484,
- 0.006447125691920519,
- -0.0052203587256371975,
- -0.074969582259655,
- 0.021891679614782333,
- 0.03637475520372391,
- 0.03372611105442047,
- 0.052701737731695175,
- 0.05500050261616707,
- 0.004762672353535891,
- -0.07392820715904236,
- -0.03791957348585129,
- 0.08678874373435974,
- -0.0597781240940094,
- 0.04940700903534889,
- 0.05334194377064705,
- 0.04925575852394104,
- -0.04346027225255966,
- -0.0013940015342086554,
- 0.037752583622932434,
- 0.017650919035077095,
- 0.09240859746932983,
- 0.12088121473789215,
- -0.01016133464872837,
- 0.007618844509124756,
- -0.01983673684298992,
- 0.011421849019825459,
- 0.027387773618102074,
- 0.019767802208662033,
- -0.03969738259911537,
- -0.019249049946665764,
- -0.07034538686275482,
- 0.010640318505465984,
- 0.0032596264500170946,
- 0.08796285092830658,
- -0.08783593028783798,
- -0.026770107448101044,
- 0.004596436861902475,
- 0.06754200160503387,
- -0.027648499235510826,
- 0.07899260520935059,
- -0.024667097255587578,
- -0.012544057331979275,
- 0.08081307262182236,
- -0.004451863933354616,
- 0.0012923490721732378,
- 0.03240238502621651,
- 0.03378192335367203,
- 0.004883717279881239,
- 0.02554936148226261,
- -0.0028417729772627354,
- -0.014842230826616287,
- -0.03970569372177124,
- 0.014745304360985756,
- -0.02233171835541725,
- -0.008800925686955452,
- 0.08460593223571777,
- -0.004884451627731323,
- -0.06483468413352966,
- 0.031674329191446304,
- -0.006346081383526325,
- -0.03254212439060211,
- 0.0344715416431427,
- -0.006625561974942684,
- 0.004314726684242487,
- 0.10873319953680038,
- -0.03828594833612442,
- 0.011567539535462856,
- 0.02910614013671875,
- -0.026743073016405106,
- 0.10614942014217377,
- 0.06797517836093903,
- 0.08474832773208618,
- -0.016158800572156906,
- -1.2001585503185197e-8,
- 0.017518509179353714,
- -0.000934017647523433,
- 0.07152248173952103,
- -0.024816907942295074,
- 0.03747977316379547,
- 0.01269781868904829,
- 0.06123346462845802,
- 0.019561627879738808,
- 0.005407457705587149,
- 0.019711999222636223,
- 0.038702938705682755,
- -0.008927232585847378,
- 0.00905036460608244,
- -0.012301907874643803,
- 0.04891003668308258,
- 0.007604498416185379,
- -0.015061721205711365,
- 0.02259891852736473,
- -0.06111695244908333,
- -0.009745393879711628,
- 0.030591776594519615,
- -0.03698205575346947,
- -0.05106004327535629,
- 0.031255465000867844,
- 0.022681910544633865,
- -0.02204754948616028,
- -0.04416040703654289,
- 0.06853965669870377,
- -0.006094814278185368,
- 0.04236062243580818,
- 0.03452291339635849,
- 0.12149886041879654,
- 0.06399906426668167,
- 0.004653602372854948,
- -0.03748408332467079,
- -0.042704567313194275,
- 0.001972621539607644,
- 0.025940215215086937,
- 0.03202014043927193,
- 0.1482325792312622,
- 0.0029790671542286873,
- 0.059709202498197556,
- 0.04574776068329811,
- -0.031265031546354294,
- -0.0005067179445177317,
- 0.038410693407058716,
- -0.06714336574077606,
- -0.040252685546875,
- 0.000046646349801449105,
- -0.014041600748896599,
- -0.04841303825378418,
- 0.00012434422387741506,
- 0.03667911887168884,
- 0.07178587466478348,
- 0.012785296887159348,
- 0.019512547180056572,
- -0.012688461691141129,
- -0.031979676336050034,
- -0.006620103493332863,
- 0.03273358196020126,
- 0.09431851655244827,
- 0.04617874696850777,
- 0.0928991436958313,
- 0.06284062564373016
- ]
- },
- {
- "keyword": "application",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.040498629212379456,
- 0.01922963187098503,
- -0.04778120294213295,
- -0.10044625401496887,
- -0.019638381898403168,
- -0.017946524545550346,
- 0.12253336608409882,
- 0.11493907123804092,
- -0.04647047072649002,
- -0.03671048954129219,
- -0.027475491166114807,
- -0.024770736694335938,
- 0.020518092438578606,
- -0.016396375373005867,
- 0.017017165198922157,
- 0.01537512056529522,
- 0.07546018809080124,
- -0.029321802780032158,
- -0.03331516683101654,
- -0.043100979179143906,
- -0.00996521208435297,
- -0.0066988165490329266,
- -0.06837977468967438,
- 0.02340569719672203,
- -0.07984641194343567,
- 0.008535277098417282,
- -0.024224931374192238,
- 0.028219033032655716,
- 0.12020134180784225,
- -0.06196316331624985,
- 0.006224617827683687,
- 0.06812042742967606,
- 0.07666293531656265,
- 0.0029797626193612814,
- 0.00010926704271696508,
- 0.007112371735274792,
- -0.017495546489953995,
- -0.04006696864962578,
- -0.029711976647377014,
- -0.028060350567102432,
- -0.032996054738759995,
- -0.1051037460565567,
- -0.053070470690727234,
- 0.028237463906407356,
- 0.023915238678455353,
- -0.11310082674026489,
- 0.011314147152006626,
- 0.008723831735551357,
- 0.038121964782476425,
- 0.025457467883825302,
- -0.014809561893343925,
- -0.0170170646160841,
- 0.013015891425311565,
- 0.0039560371078550816,
- -0.049696262925863266,
- 0.013109161518514156,
- 0.017908697947859764,
- 0.01763017103075981,
- -0.03463162109255791,
- -0.011671943590044975,
- 0.04154761880636215,
- 0.03047851100564003,
- -0.06825470179319382,
- 0.11545896530151367,
- 0.06193939596414566,
- 0.03614400699734688,
- -0.049570418894290924,
- -0.012221839278936386,
- 0.03807856887578964,
- -0.17816129326820374,
- -0.06457506865262985,
- -0.033714260905981064,
- -0.074350506067276,
- -0.05342203751206398,
- -0.035771507769823074,
- -0.09569291025400162,
- -0.04321255162358284,
- -0.022733483463525772,
- 0.05302560329437256,
- -0.05137456953525543,
- 0.08562522381544113,
- -0.04097006469964981,
- -0.05734187364578247,
- 0.05211815983057022,
- -0.0037948412355035543,
- 0.029679933562874794,
- 0.024158407002687454,
- 0.004745759069919586,
- 0.08307511359453201,
- 0.05058173090219498,
- 0.04093081131577492,
- -0.011314869858324528,
- 0.012175323441624641,
- -0.038959041237831116,
- -0.04833655431866646,
- 0.000008111337592708878,
- -0.00002494638647476677,
- -0.01194155216217041,
- -0.03611477091908455,
- 0.28336769342422485,
- 0.024900255724787712,
- -0.08764734864234924,
- -0.026435697451233864,
- -0.0426434651017189,
- 0.016207197681069374,
- -0.06670919060707092,
- -0.00671154260635376,
- -0.06667510420084,
- 0.02174592763185501,
- 0.007316763512790203,
- -0.11171527206897736,
- -0.06756626814603806,
- -0.029143426567316055,
- -0.026405859738588333,
- 0.02018590457737446,
- 0.026813261210918427,
- -0.02675926871597767,
- 0.035249337553977966,
- -0.00944394152611494,
- 0.06931804120540619,
- 0.003419376676902175,
- 0.049888771027326584,
- -0.04209670424461365,
- -0.046947360038757324,
- -0.009957690723240376,
- -0.0960882157087326,
- -0.027053484693169594,
- -6.276131112301216e-33,
- -0.06463690102100372,
- -0.04598521813750267,
- -0.02168940007686615,
- 0.045786015689373016,
- -0.003899218048900366,
- -0.0387338362634182,
- 0.0038441293872892857,
- 0.004103736486285925,
- -0.043159641325473785,
- -0.02075650356709957,
- 0.0027944177854806185,
- 0.09624090790748596,
- 0.014721013605594635,
- 0.01225238386541605,
- 0.11253250390291214,
- 0.046242605894804,
- 0.019869569689035416,
- 0.1228565126657486,
- 0.005526485852897167,
- 0.018049636855721474,
- -0.01370063703507185,
- -0.057796407490968704,
- -0.01228571217507124,
- 0.06264283508062363,
- 0.03182315081357956,
- 0.039997879415750504,
- 0.006359163671731949,
- -0.024418318644165993,
- 0.052421387284994125,
- 0.03580937534570694,
- 0.11882141977548599,
- 0.037245918065309525,
- -0.05382915958762169,
- -0.024383293464779854,
- 0.02474767155945301,
- -0.03402458131313324,
- 0.0031434434931725264,
- -0.0453772246837616,
- 0.03426576033234596,
- -0.045968540012836456,
- -0.032085832208395004,
- -0.048771001398563385,
- 0.024544918909668922,
- 0.023364465683698654,
- 0.05630543455481529,
- 0.002678193850442767,
- 0.06323931366205215,
- 0.024027522653341293,
- 0.00391012616455555,
- 0.0675225630402565,
- 0.02840294875204563,
- 0.03665480017662048,
- -0.012247533537447453,
- 0.048367228358983994,
- -0.04990115389227867,
- 0.005526033230125904,
- -0.015360334888100624,
- -0.012935377657413483,
- 0.006805486045777798,
- -0.003938371781259775,
- -0.002865993184968829,
- -0.017727719619870186,
- -0.08915330469608307,
- -0.010510677471756935,
- -0.04926227033138275,
- -0.042225513607263565,
- 0.006812880747020245,
- -0.09223249554634094,
- 0.056896090507507324,
- 0.007341280579566956,
- -0.13152705132961273,
- -0.0029701530002057552,
- 0.10923294723033905,
- -0.00807084608823061,
- -0.0023035521153360605,
- 0.004720007535070181,
- -0.004163858015090227,
- 0.03468218073248863,
- -0.1147758737206459,
- 0.027060821652412415,
- -0.034130241721868515,
- -0.014600102789700031,
- -0.010282227769494057,
- -0.022394033148884773,
- 0.0038681922014802694,
- 0.02987617440521717,
- 0.006969362962990999,
- -0.07895033806562424,
- -0.014043169096112251,
- 0.07391377538442612,
- -0.042838290333747864,
- 0.04993531480431557,
- -0.02263553999364376,
- 0.12425965815782547,
- 0.0513186901807785,
- 3.746513187079732e-33,
- 0.007774060592055321,
- 0.011293316259980202,
- -0.027781538665294647,
- -0.024579495191574097,
- 0.08858279138803482,
- 0.04177437350153923,
- 0.023203473538160324,
- 0.004615989048033953,
- -0.02259228006005287,
- 0.055206868797540665,
- -0.04067816957831383,
- 0.01722925342619419,
- 0.10288675874471664,
- 0.012924748472869396,
- -0.09625580161809921,
- 0.03816097974777222,
- 0.06176280975341797,
- 0.014800654724240303,
- -0.03833591938018799,
- 0.06079798936843872,
- -0.08383160829544067,
- 0.02832791768014431,
- 0.013928305357694626,
- -0.040745269507169724,
- -0.02280205301940441,
- -0.03161987289786339,
- 0.025468597188591957,
- -0.060534968972206116,
- 0.0217516478151083,
- -0.026301365345716476,
- -0.04330544173717499,
- -0.04709427431225777,
- -0.08766036480665207,
- -0.02330254763364792,
- -0.06530946493148804,
- -0.007856029085814953,
- 0.13252227008342743,
- -0.04360267147421837,
- 0.01928708329796791,
- -0.033245500177145004,
- 0.14040152728557587,
- -0.03100140579044819,
- 0.061127785593271255,
- 0.04192742332816124,
- -0.026220761239528656,
- 0.003248038934543729,
- -0.09625041484832764,
- 0.02704405039548874,
- 0.039896346628665924,
- 0.0019999889191240072,
- -0.016524214297533035,
- 0.009535448625683784,
- 0.05944773554801941,
- -0.02673405595123768,
- 0.02505674585700035,
- 0.07282806187868118,
- 0.05465239658951759,
- -0.020610805600881577,
- -0.06410370767116547,
- 0.0692824125289917,
- -0.049793023616075516,
- 0.01623508706688881,
- -0.018257126212120056,
- -0.011225483380258083,
- 0.017980637028813362,
- -0.00791956763714552,
- -0.005810307338833809,
- 0.0015687489649280906,
- -0.02044844813644886,
- 0.03965657576918602,
- 0.05079488828778267,
- 0.04450336471199989,
- -0.01988210715353489,
- 0.009912370704114437,
- -0.07706610858440399,
- -0.03112933039665222,
- 0.03630131110548973,
- -0.03234213590621948,
- -0.0766260176897049,
- -0.03226996213197708,
- -0.06482048332691193,
- 0.020083416253328323,
- 0.04373621195554733,
- 0.003050382249057293,
- -0.05814020708203316,
- -0.03395358473062515,
- 0.042135074734687805,
- -0.053452812135219574,
- 0.006829984486103058,
- -0.06532688438892365,
- -0.06425181031227112,
- 0.08873173594474792,
- -0.01083298958837986,
- 0.03446917235851288,
- -0.039453957229852676,
- -1.2948417449365479e-8,
- -0.004096561577171087,
- -0.03537623956799507,
- 0.01952451281249523,
- -0.010567707940936089,
- -0.008906563743948936,
- 0.018931062892079353,
- -0.06391944736242294,
- 0.05906659737229347,
- 0.04528498277068138,
- -0.005948288831859827,
- -0.06944012641906738,
- 0.017591048032045364,
- -0.10367144644260406,
- 0.05332690477371216,
- 0.06229611858725548,
- -0.02252465859055519,
- 0.017824841663241386,
- 0.0406065471470356,
- -0.03768032416701317,
- -0.012165769003331661,
- 0.05216619372367859,
- 0.03788846731185913,
- 0.014576246961951256,
- 0.09896744787693024,
- 0.04209920018911362,
- -0.010005716234445572,
- 0.07880766689777374,
- 0.02389797940850258,
- -0.02345193736255169,
- 0.055678341537714005,
- 0.005384984891861677,
- 0.07420361042022705,
- 0.030613360926508904,
- 0.00012576484004966915,
- -0.031272634863853455,
- 0.01711474172770977,
- 0.0031953335274010897,
- 0.01331363432109356,
- 0.05310829356312752,
- 0.009343087673187256,
- -0.02027137763798237,
- -0.0019556633196771145,
- 0.06178031489253044,
- -0.07151283323764801,
- 0.010815219953656197,
- 0.030522242188453674,
- 0.00905179139226675,
- -0.06660549342632294,
- 0.045135412365198135,
- 0.03709420934319496,
- -0.05927123874425888,
- 0.025753837078809738,
- -0.009180325083434582,
- 0.021263008937239647,
- 0.06421750783920288,
- 0.07812407612800598,
- 0.04370473325252533,
- -0.10373716801404953,
- -0.027591058984398842,
- 0.061559781432151794,
- 0.06966546177864075,
- 0.04687374085187912,
- -0.026367630809545517,
- 0.05935925617814064
- ]
- },
- {
- "keyword": "survey",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.02744528092443943,
- 0.06483573466539383,
- 0.018268300220370293,
- 0.047480084002017975,
- -0.04670070484280586,
- 0.06221431866288185,
- 0.08308819681406021,
- 0.04388803243637085,
- -0.05718587711453438,
- 0.045645348727703094,
- 0.04765300080180168,
- -0.10058288276195526,
- -0.027433276176452637,
- 0.0007909299456514418,
- 0.03624454885721207,
- -0.007616481278091669,
- 0.07439985871315002,
- -0.0818256065249443,
- -0.0519646555185318,
- -0.054244525730609894,
- -0.11523691564798355,
- -0.024879205971956253,
- 0.0627417042851448,
- 0.039328597486019135,
- -0.024082623422145844,
- -0.024827489629387856,
- 0.03783247619867325,
- 0.05702386051416397,
- 0.021197529509663582,
- -0.10819188505411148,
- -0.016290398314595222,
- 0.04234752058982849,
- 0.09786530584096909,
- -0.032086946070194244,
- 0.05166514590382576,
- -0.011723137460649014,
- 0.06903723627328873,
- 0.028936833143234253,
- -0.058591924607753754,
- 0.0089626619592309,
- -0.06506260484457016,
- -0.029192209243774414,
- 0.015154006890952587,
- 0.012745628133416176,
- -0.013252993114292622,
- -0.03246470168232918,
- 0.0000749363680370152,
- 0.034314777702093124,
- -0.027948450297117233,
- 0.09678277373313904,
- -0.07007291913032532,
- 0.01643272489309311,
- -0.019519826397299767,
- 0.017701663076877594,
- 0.027020122855901718,
- -0.04284656047821045,
- -0.08892504125833511,
- 0.008975552394986153,
- 0.02771693654358387,
- -0.022652283310890198,
- 0.0776870846748352,
- 0.014492384158074856,
- -0.06624085456132889,
- 0.06717454642057419,
- 0.025739826261997223,
- 0.04532042145729065,
- -0.05203761160373688,
- -0.03929661586880684,
- -0.030627787113189697,
- -0.04409380629658699,
- -0.0834210142493248,
- 0.034465909004211426,
- -0.062142059206962585,
- 0.018748125061392784,
- 0.00397852947935462,
- -0.04905475303530693,
- -0.018051953986287117,
- -0.08782272785902023,
- 0.05617815628647804,
- -0.12188185751438141,
- -0.0018160828622058034,
- 0.059256650507450104,
- -0.031475529074668884,
- 0.02272467501461506,
- 0.027536679059267044,
- -0.022543318569660187,
- 0.00886749941855669,
- 0.019194040447473526,
- 0.012126190587878227,
- -0.033056214451789856,
- 0.02576979622244835,
- 0.13201600313186646,
- -0.01359681785106659,
- -0.023948075249791145,
- -0.02924715355038643,
- 0.059815309941768646,
- -0.045897528529167175,
- -0.08039797097444534,
- -0.016694992780685425,
- 0.25862744450569153,
- 0.007104252465069294,
- 0.03732134774327278,
- -0.05293216556310654,
- 0.06651647388935089,
- -0.0492544062435627,
- 0.018009530380368233,
- -0.02796798013150692,
- 0.048900458961725235,
- 0.034727130085229874,
- -0.004919030703604221,
- -0.04609126225113869,
- 0.013104148209095001,
- 0.0007803312037140131,
- -0.001170952687971294,
- 0.0003503249608911574,
- -0.07908506691455841,
- 0.033786363899707794,
- 0.02861873246729374,
- 0.008276106789708138,
- -0.009068865329027176,
- 0.02035699039697647,
- 0.052200764417648315,
- -0.0066757360473275185,
- -0.09675360471010208,
- -0.01609603501856327,
- -0.08475016057491302,
- -0.024770166724920273,
- -4.1029083805696645e-33,
- -0.0404757559299469,
- 0.017695670947432518,
- 0.0499504916369915,
- 0.06574858725070953,
- 0.050707414746284485,
- 0.0251157209277153,
- -0.05308443680405617,
- -0.030184531584382057,
- 0.009208384901285172,
- 0.025754226371645927,
- 0.01500683557242155,
- 0.0045752376317977905,
- -0.023856746032834053,
- 0.037351273000240326,
- 0.10426818579435349,
- -0.0081002376973629,
- 0.030239621177315712,
- 0.03918061777949333,
- -0.1478048712015152,
- 0.016160527244210243,
- 0.0022932933643460274,
- -0.003423344809561968,
- 0.03963175788521767,
- 0.09230925887823105,
- 0.006643873639404774,
- -0.08415612578392029,
- 0.032055944204330444,
- -0.05151737481355667,
- -0.018901947885751724,
- 0.012894734740257263,
- 0.02161942608654499,
- -0.03657454624772072,
- -0.0703224316239357,
- -0.025723271071910858,
- -0.020174073055386543,
- 0.037577077746391296,
- -0.000008161197001754772,
- -0.10094943642616272,
- 0.0034793929662555456,
- -0.028450950980186462,
- 0.0011838744394481182,
- -0.05084075778722763,
- 0.008014696650207043,
- 0.02075345627963543,
- 0.0076998136937618256,
- 0.046222954988479614,
- 0.11492685228586197,
- 0.03347093611955643,
- 0.01947675086557865,
- 0.04837050288915634,
- -0.04379231855273247,
- -0.04582105204463005,
- -0.08119864016771317,
- -0.05954709276556969,
- -0.026596467941999435,
- -0.03013671562075615,
- 0.025957543402910233,
- -0.05633676424622536,
- -0.05237443745136261,
- 0.04486033692955971,
- -0.030249083414673805,
- 0.01301878783851862,
- -0.010482964105904102,
- -0.14840881526470184,
- -0.0017758978065103292,
- 0.019304942339658737,
- 0.0038717365823686123,
- -0.004098162986338139,
- 0.051341716200113297,
- -0.006643014028668404,
- -0.006670540664345026,
- -0.001778745325282216,
- -0.05141523480415344,
- 0.04516731947660446,
- -0.018666379153728485,
- -0.012416059151291847,
- -0.0471469908952713,
- 0.024385923519730568,
- -0.014644191600382328,
- -0.04333930462598801,
- -0.024380037561058998,
- -0.03922514244914055,
- -0.007847504690289497,
- -0.023356569930911064,
- 0.062051381915807724,
- 0.028192078694701195,
- 0.02040328085422516,
- -0.16133703291416168,
- -0.05616694316267967,
- 0.054056037217378616,
- -0.0426245853304863,
- -0.019948000088334084,
- 0.06294514238834381,
- 0.037884391844272614,
- -0.05730949714779854,
- 2.0467665392189437e-33,
- -0.016466515138745308,
- -0.0019990168511867523,
- -0.03206036612391472,
- 0.11532864719629288,
- 0.031388651579618454,
- 0.008634903468191624,
- 0.02440582402050495,
- 0.021897567436099052,
- 0.02496272139251232,
- 0.06841637939214706,
- -0.017993127927184105,
- -0.033124566078186035,
- 0.05583738163113594,
- -0.03898930922150612,
- -0.016497472301125526,
- 0.032839689403772354,
- 0.01132224127650261,
- -0.0659032016992569,
- 0.014627153053879738,
- 0.02008412405848503,
- -0.04360603913664818,
- 0.049963220953941345,
- -0.04608175531029701,
- 0.02463650517165661,
- -0.0730535238981247,
- 0.057761743664741516,
- -0.06913179159164429,
- 0.027896888554096222,
- 0.022261234000325203,
- 0.03424150496721268,
- 0.020360378548502922,
- -0.024113353341817856,
- 0.014142846688628197,
- -0.007528789807111025,
- -0.028795475140213966,
- 0.1427561342716217,
- 0.14372271299362183,
- 0.009684658609330654,
- -0.0028719697147607803,
- 0.09482800215482712,
- 0.1039813682436943,
- 0.030373547226190567,
- -0.02332867495715618,
- 0.11868160963058472,
- -0.05371461063623428,
- -0.047485869377851486,
- -0.051631417125463486,
- -0.06809612363576889,
- -0.0382305271923542,
- 0.04009784013032913,
- -0.09398345649242401,
- 0.04360516741871834,
- -0.05109424516558647,
- 0.04422951489686966,
- 0.005274305585771799,
- 0.022576291114091873,
- 0.07570657134056091,
- -0.017193926498293877,
- -0.023768402636051178,
- -0.022614752873778343,
- 0.017350459471344948,
- 0.05565248057246208,
- -0.017962884157896042,
- 0.06339188665151596,
- 0.08982206135988235,
- -0.054467927664518356,
- 0.006947809364646673,
- 0.03588854894042015,
- -0.021264106035232544,
- -0.02123023197054863,
- 0.013773355633020401,
- -0.018336221575737,
- -0.006031878758221865,
- 0.025398962199687958,
- -0.0036142838653177023,
- -0.019462164491415024,
- 0.010469089262187481,
- 0.04261940345168114,
- -0.027622289955615997,
- 0.05031707510352135,
- -0.07900761812925339,
- -0.08834876865148544,
- -0.02665913850069046,
- 0.09232432395219803,
- 0.012028598226606846,
- 0.01875474862754345,
- 0.08316124230623245,
- -0.06708908826112747,
- -0.02621344104409218,
- -0.0041366335935890675,
- 0.022773800417780876,
- 0.03154072165489197,
- 0.011698856949806213,
- -0.0665484294295311,
- 0.004665078595280647,
- -1.5177654688613984e-8,
- -0.019998861476778984,
- 0.02288188226521015,
- 0.02609310671687126,
- 0.026385582983493805,
- 0.0891726091504097,
- -0.01605963334441185,
- 0.037421368062496185,
- 0.06702782213687897,
- -0.0544113852083683,
- 0.06693866848945618,
- 0.06797866523265839,
- 0.039270590990781784,
- -0.048954639583826065,
- 0.036573413759469986,
- 0.05467960238456726,
- -0.069251149892807,
- -0.02370593696832657,
- 0.09308936446905136,
- -0.029970457777380943,
- -0.0367061123251915,
- 0.031991537660360336,
- 0.030821843072772026,
- 0.007552563678473234,
- -0.01722441054880619,
- -0.03264130279421806,
- 0.03863659128546715,
- 0.01078928355127573,
- 0.020605431869626045,
- -0.01634439267218113,
- 0.0160804595798254,
- -0.014353240840137005,
- 0.02229222282767296,
- -0.07686736434698105,
- -0.05468275398015976,
- 0.03246872127056122,
- -0.02326621487736702,
- -0.0008805750985629857,
- -0.0771634504199028,
- 0.007275057025253773,
- 0.002341239247471094,
- 0.022393250837922096,
- -0.000059290956414770335,
- -0.01369186956435442,
- -0.031868305057287216,
- 0.004760642070323229,
- -0.018481455743312836,
- -0.02352004498243332,
- -0.016029488295316696,
- -0.031421687453985214,
- -0.026074230670928955,
- -0.04976904019713402,
- -0.02977878786623478,
- 0.08426983654499054,
- 0.03239996358752251,
- 0.03461900353431702,
- 0.042450398206710815,
- 0.05927850306034088,
- -0.013276441022753716,
- -0.03214052692055702,
- 0.04492974281311035,
- 0.1858217865228653,
- -0.06878290325403214,
- -0.08187469094991684,
- -0.004001404158771038
- ]
- },
- {
- "keyword": "questionnaire",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.0664161965250969,
- 0.10439720004796982,
- -0.0248063113540411,
- 0.04170253500342369,
- -0.059826258569955826,
- 0.07547377794981003,
- 0.13243761658668518,
- 0.055629413574934006,
- -0.03948625177145004,
- 0.003338879905641079,
- 0.08208975195884705,
- -0.0999612882733345,
- -0.033796608448028564,
- 0.013466659002006054,
- -0.012587656266987324,
- -0.0012614608276635408,
- 0.06267903000116348,
- -0.09465949237346649,
- -0.07235385477542877,
- 0.015093653462827206,
- -0.029556239023804665,
- 0.011607421562075615,
- 0.06718311458826065,
- 0.05168243497610092,
- -0.09915728121995926,
- -0.0038212903309613466,
- 0.0493181012570858,
- -0.015102731063961983,
- 0.0050748186185956,
- -0.038075726479291916,
- -0.019737202674150467,
- 0.056656643748283386,
- 0.05078123137354851,
- -0.005397597327828407,
- -0.021924059838056564,
- -0.05609764903783798,
- 0.01793934963643551,
- 0.009911277331411839,
- -0.00803168211132288,
- 0.016132740303874016,
- -0.06811363250017166,
- -0.07548671215772629,
- 0.059591662138700485,
- -0.04743409529328346,
- -0.05051284655928612,
- -0.041205137968063354,
- -0.03890417143702507,
- 0.06995034217834473,
- -0.0672956332564354,
- 0.07915128767490387,
- -0.09494607150554657,
- -0.04043041914701462,
- -0.036453016102313995,
- 0.0172891765832901,
- 0.06631048768758774,
- -0.042223818600177765,
- -0.07345181703567505,
- 0.0026237464044243097,
- -0.021873392164707184,
- 0.02977541647851467,
- -0.02524617128074169,
- 0.010577484034001827,
- -0.06912527978420258,
- 0.09212922304868698,
- 0.08379000425338745,
- 0.02517988346517086,
- -0.08199822157621384,
- -0.0770139992237091,
- -0.006050779949873686,
- 0.04660625755786896,
- -0.05378007888793945,
- -0.029964376240968704,
- -0.05871410667896271,
- -0.011708732694387436,
- 0.010694500058889389,
- -0.0315619595348835,
- -0.07506968080997467,
- -0.09054799377918243,
- 0.008085327222943306,
- -0.0012327786535024643,
- 0.04010086879134178,
- 0.0066480739042162895,
- 0.012219185940921307,
- 0.06480918079614639,
- 0.04123110696673393,
- 0.003955424297600985,
- 0.047202225774526596,
- 0.04812860116362572,
- -0.10266416519880295,
- 0.018444720655679703,
- 0.025787850841879845,
- 0.07263961434364319,
- -0.022426549345254898,
- -0.022022653371095657,
- -0.0277762059122324,
- 0.07177052646875381,
- -0.07592185586690903,
- -0.04838264361023903,
- 0.011707205325365067,
- 0.12305458635091782,
- 0.03591354936361313,
- 0.043171949684619904,
- -0.049975764006376266,
- 0.0648464635014534,
- -0.07465348392724991,
- 0.02131941355764866,
- -0.017583267763257027,
- -0.017331136390566826,
- 0.01997264474630356,
- -0.00007020256452960894,
- -0.09124020487070084,
- 0.020674578845500946,
- -0.0036604495253413916,
- -0.030623847618699074,
- 0.055526819080114365,
- -0.12436436861753464,
- 0.06572653353214264,
- 0.07909137010574341,
- -0.07735839486122131,
- -0.005861885379999876,
- 0.0404169000685215,
- 0.0011627011699602008,
- 0.05388998985290527,
- -0.04474404454231262,
- -0.021806444972753525,
- -0.10297151654958725,
- -0.030815009027719498,
- -2.974390457426082e-33,
- 0.010429236106574535,
- -0.03553048148751259,
- 0.03553824499249458,
- 0.07157346606254578,
- -0.02269033156335354,
- 0.04618934914469719,
- -0.044062789529561996,
- 0.05081932246685028,
- 0.05234401300549507,
- -0.01929646171629429,
- 0.0592854879796505,
- 0.03191256523132324,
- 0.013745368458330631,
- 0.06626591831445694,
- 0.07145979255437851,
- 0.0029095180798321962,
- -0.011053050868213177,
- 0.03398076817393303,
- -0.07349550724029541,
- -0.022970357909798622,
- 0.04174526780843735,
- 0.020195472985506058,
- 0.03545687720179558,
- 0.06672296673059464,
- 0.04534373804926872,
- -0.07576596736907959,
- 0.01564287580549717,
- -0.03777686506509781,
- -0.017186341807246208,
- -0.029670823365449905,
- -0.037731293588876724,
- -0.020267033949494362,
- -0.04583073779940605,
- -0.08564074337482452,
- -0.026109736412763596,
- 0.07906154543161392,
- 0.03876009210944176,
- 0.025711853057146072,
- -0.03197336941957474,
- -0.02227398194372654,
- -0.013391214422881603,
- -0.018521860241889954,
- 0.05781975015997887,
- 0.10177574306726456,
- -0.014206316322088242,
- 0.04146736487746239,
- 0.0730157122015953,
- -0.0719524472951889,
- -0.05927472561597824,
- 0.053502973169088364,
- -0.05746970698237419,
- -0.01939491182565689,
- 0.032417312264442444,
- -0.017804760485887527,
- 0.026781996712088585,
- 0.018710460513830185,
- 0.01660001277923584,
- 0.0033299534115940332,
- -0.09329411387443542,
- 0.020047379657626152,
- 0.04584107547998428,
- -0.03035733848810196,
- -0.04757186025381088,
- -0.019639955833554268,
- 0.0170399509370327,
- -0.01897183619439602,
- -0.007310721557587385,
- -0.0633542612195015,
- 0.08600809425115585,
- -0.017192255705595016,
- -0.012554029002785683,
- -0.0030623972415924072,
- -0.01989162154495716,
- 0.0023460728116333485,
- -0.07476305961608887,
- 0.017269283533096313,
- -0.09234032779932022,
- 0.08502014726400375,
- -0.03515288606286049,
- -0.08595127612352371,
- -0.016725094988942146,
- -0.018876396119594574,
- -0.017702780663967133,
- -0.009235263802111149,
- 0.05673644691705704,
- 0.01670725829899311,
- 0.06335870921611786,
- 0.01091749593615532,
- 0.002322112675756216,
- 0.023952798917889595,
- -0.021673325449228287,
- -0.05189802125096321,
- 0.05774780362844467,
- -0.0000751764455344528,
- 0.017189351841807365,
- 1.747327353104213e-33,
- -0.03557310998439789,
- -0.01706809364259243,
- -0.025812188163399696,
- 0.07252921164035797,
- 0.08695602416992188,
- 0.017688559368252754,
- -0.0007934728637337685,
- 0.06014557182788849,
- 0.030324164777994156,
- 0.05959096923470497,
- 0.02265416458249092,
- -0.01478602085262537,
- 0.053287800401449203,
- -0.00015281698142644018,
- -0.03511612489819527,
- 0.05012720450758934,
- 0.012366535142064095,
- -0.05721191689372063,
- -0.02313643880188465,
- 0.01550278626382351,
- -0.04860972985625267,
- 0.0887552872300148,
- 0.005754049401730299,
- -0.0797947496175766,
- -0.07693470269441605,
- 0.06272655725479126,
- 0.027425002306699753,
- -0.1141572967171669,
- -0.01615304872393608,
- -0.00261087529361248,
- 0.02045333757996559,
- -0.042844414710998535,
- 0.1047416478395462,
- 0.045906513929367065,
- 0.04789810627698898,
- 0.08277488499879837,
- 0.08198033273220062,
- -0.0525827519595623,
- -0.002618044149130583,
- 0.10921430587768555,
- 0.003935832530260086,
- 0.09191355109214783,
- -0.015991702675819397,
- 0.06628301739692688,
- -0.0007251883507706225,
- -0.020383911207318306,
- -0.01439954899251461,
- -0.09100458770990372,
- -0.007107606623321772,
- 0.0842176154255867,
- -0.032050956040620804,
- 0.022183425724506378,
- 0.014119268395006657,
- -0.023803912103176117,
- -0.01769273914396763,
- -0.02006555162370205,
- 0.02420712634921074,
- -0.013674086891114712,
- 0.08055991679430008,
- 0.0025672034826129675,
- 0.07322872430086136,
- 0.03174896165728569,
- 0.0026244057808071375,
- -0.034929562360048294,
- 0.04900557920336723,
- -0.03530579432845116,
- 0.01201994251459837,
- 0.014013267122209072,
- -0.041297752410173416,
- 0.02665100432932377,
- -0.10876390337944031,
- -0.03621114045381546,
- 0.048127174377441406,
- -0.03995474427938461,
- 0.004699171520769596,
- -0.027313334867358208,
- -0.05278237909078598,
- 0.007217970676720142,
- -0.03821307048201561,
- -0.01993626542389393,
- -0.03059871308505535,
- -0.0884702205657959,
- 0.017639746889472008,
- 0.0375843308866024,
- -0.09342163801193237,
- -0.0769163966178894,
- 0.11413197219371796,
- -0.014933961443603039,
- 0.02546309493482113,
- 0.04352978616952896,
- 0.06766782701015472,
- -0.0036424079444259405,
- -0.020788688212633133,
- -0.027588579803705215,
- -0.008696097880601883,
- -1.398363380644696e-8,
- 0.012765881605446339,
- -0.020323386415839195,
- 0.015253354795277119,
- 0.03623966872692108,
- 0.05287589877843857,
- 0.0018132837722077966,
- -0.009143591858446598,
- 0.00024167721858248115,
- -0.07647895812988281,
- 0.03802688419818878,
- 0.034188635647296906,
- 0.015308821573853493,
- -0.039983898401260376,
- 0.05446824058890343,
- 0.014728428795933723,
- -0.0675133466720581,
- 0.05668354034423828,
- 0.02660328894853592,
- -0.03648826852440834,
- -0.08332021534442902,
- 0.09767363220453262,
- 0.03782340884208679,
- -0.09475037455558777,
- 0.11337610334157944,
- -0.05293664708733559,
- 0.0632510781288147,
- -0.012089374475181103,
- -0.034750957041978836,
- -0.10284749418497086,
- 0.01764417253434658,
- 0.05559532344341278,
- 0.014927116222679615,
- -0.06657063215970993,
- 0.01713215373456478,
- -0.01644575595855713,
- -0.018009932711720467,
- -0.003717225044965744,
- 0.00004773919499712065,
- 0.000662033970002085,
- 0.04787750542163849,
- -0.047854866832494736,
- 0.0320754200220108,
- -0.028069591149687767,
- 0.038091182708740234,
- -0.0017702551558613777,
- -0.021000592038035393,
- -0.06486654281616211,
- -0.046927306801080704,
- -0.05261887237429619,
- -0.05543959513306618,
- -0.07248261570930481,
- -0.04594409838318825,
- 0.030177947133779526,
- 0.002766455989331007,
- 0.0035875297617167234,
- 0.04741428792476654,
- 0.06873278319835663,
- 0.09708108007907867,
- -0.09081723541021347,
- -0.041585348546504974,
- 0.15111909806728363,
- 0.06675383448600769,
- -0.05932722985744476,
- -0.0291536096483469
- ]
- },
- {
- "keyword": "transcript",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0768047347664833,
- 0.05837495997548103,
- -0.07339049130678177,
- -0.020108168944716454,
- 0.04582943394780159,
- 0.057234931737184525,
- 0.002696457551792264,
- 0.057729411870241165,
- -0.029018426313996315,
- -0.04873101785778999,
- -0.0013163686962798238,
- 0.005984062794595957,
- -0.07852781563997269,
- -0.06028669700026512,
- -0.1130216121673584,
- -0.011179151944816113,
- -0.0862201377749443,
- 0.03701375797390938,
- -0.011918165720999241,
- -0.085057832300663,
- 0.0017598337726667523,
- 0.07844209671020508,
- -0.008031463250517845,
- 0.07559263706207275,
- 0.028037751093506813,
- 0.07286543399095535,
- -0.05296538770198822,
- 0.014362506568431854,
- 0.053497832268476486,
- -0.04708614945411682,
- 0.002491873688995838,
- 0.060385316610336304,
- 0.13870421051979065,
- 0.019898688420653343,
- -0.003810261841863394,
- 0.034519992768764496,
- -0.0017952314810827374,
- 0.0029618970584124327,
- 0.020360304042696953,
- 0.015473154373466969,
- 0.012074911966919899,
- -0.06119557097554207,
- 0.018215682357549667,
- 0.01965671218931675,
- -0.03907376155257225,
- -0.020648228004574776,
- -0.039755914360284805,
- -0.02366473153233528,
- -0.02061351388692856,
- 0.05299215018749237,
- -0.05879708379507065,
- 0.013620817102491856,
- 0.007802720181643963,
- 0.04866029694676399,
- -0.0358777716755867,
- -0.006741760298609734,
- 0.08388140052556992,
- 0.07111740857362747,
- -0.03914889320731163,
- -0.02283479832112789,
- -0.04166176915168762,
- -0.023154305294156075,
- -0.04354678839445114,
- 0.06770496070384979,
- 0.055727194994688034,
- 0.008183089084923267,
- 0.017697731032967567,
- 0.045204244554042816,
- 0.02268749661743641,
- -0.0625436082482338,
- -0.08411098271608353,
- -0.03391391411423683,
- -0.03150654956698418,
- 0.03045029379427433,
- -0.016362976282835007,
- 0.032583653926849365,
- 0.010693991556763649,
- 0.03761489316821098,
- 0.05036479979753494,
- -0.012990867719054222,
- -0.03418435528874397,
- -0.05117441341280937,
- 0.05413895100355148,
- 0.03043299913406372,
- -0.040427181869745255,
- 0.013265600427985191,
- 0.019033139571547508,
- 0.016549019142985344,
- -0.027737991884350777,
- 0.09312598407268524,
- -0.03270616754889488,
- -0.05854715406894684,
- 0.10672888904809952,
- -0.01999625377357006,
- -0.04129641130566597,
- 0.05027491971850395,
- -0.0677500069141388,
- -0.002369687659665942,
- 0.07014907151460648,
- 0.1898372918367386,
- 0.009058860130608082,
- 0.07518139481544495,
- -0.08745510131120682,
- -0.029087191447615623,
- -0.07631120830774307,
- -0.057549599558115005,
- 0.04449252784252167,
- 0.01588590256869793,
- 0.004094324540346861,
- -0.0042876554653048515,
- 0.008202160708606243,
- 0.026835042983293533,
- 0.03430033475160599,
- -0.03257386386394501,
- 0.05796772241592407,
- 0.07128880172967911,
- 0.027101684361696243,
- 0.01978832110762596,
- -0.0055667026899755,
- -0.010014393366873264,
- -0.00437580980360508,
- -0.028598332777619362,
- -0.09205542504787445,
- -0.025582820177078247,
- -0.11022604256868362,
- -0.11440841108560562,
- 0.014134028926491737,
- -5.179327659400834e-33,
- 0.08080116659402847,
- 0.011994532309472561,
- -0.012309129349887371,
- 0.005905314814299345,
- 0.004609988536685705,
- 0.008663910441100597,
- -0.006766144651919603,
- -0.022384056821465492,
- -0.09865141659975052,
- 0.02455371432006359,
- -0.06323336809873581,
- -0.0694006159901619,
- -0.023524140939116478,
- -0.0004659880942199379,
- -0.08970961719751358,
- 0.026572734117507935,
- -0.12020476907491684,
- 0.0835702046751976,
- -0.034691162407398224,
- 0.02114599198102951,
- 0.04494849219918251,
- -0.013031336478888988,
- 0.01042158156633377,
- 0.004561749752610922,
- 0.030331524088978767,
- 0.036931440234184265,
- -0.009916702285408974,
- -0.05044462904334068,
- -0.028135478496551514,
- 0.002330473391339183,
- -0.012183578684926033,
- -0.07959127426147461,
- 0.03173608332872391,
- -0.05861306190490723,
- 0.12115509063005447,
- -0.04680674895644188,
- -0.013763081282377243,
- 0.0017215630505234003,
- -0.00035805502557195723,
- 0.023326892405748367,
- 0.052621565759181976,
- 0.015218904241919518,
- 0.02131979912519455,
- -0.011016716249287128,
- 0.04287250339984894,
- -0.03075549006462097,
- -0.0508473664522171,
- 0.028529925271868706,
- 0.068467877805233,
- 0.022191757336258888,
- 0.030471693724393845,
- 0.02802863158285618,
- -0.04529833421111107,
- -0.10855693370103836,
- -0.06945917010307312,
- 0.03881502524018288,
- 0.010873816907405853,
- -0.03556948900222778,
- 0.02052609808743,
- 0.018912825733423233,
- 0.020916104316711426,
- 0.04622397944331169,
- 0.022236229851841927,
- -0.023424958810210228,
- 0.002125344704836607,
- -0.07404541224241257,
- -0.07289590686559677,
- -0.0750616192817688,
- 0.08784299343824387,
- 0.027479318901896477,
- -0.057698167860507965,
- -0.02674281783401966,
- 0.050965242087841034,
- -0.008949683979153633,
- 0.037110187113285065,
- 0.02038516476750374,
- 0.024476410821080208,
- -0.0065822722390294075,
- -0.03360309824347496,
- -0.009420529939234257,
- -0.019638916477560997,
- -0.05482202768325806,
- -0.07470004260540009,
- 0.02070477046072483,
- 0.04877835139632225,
- 0.03265698626637459,
- -0.023947199806571007,
- -0.08846032619476318,
- 0.01728091947734356,
- 0.074918732047081,
- -0.03959786519408226,
- -0.010074805468320847,
- -0.003273937152698636,
- -0.05119462311267853,
- 0.010683969594538212,
- 2.583412220134958e-33,
- 0.007691151928156614,
- 0.06741158664226532,
- -0.028272539377212524,
- 0.004101188387721777,
- 0.02440524660050869,
- 0.02015545591711998,
- 0.09867040067911148,
- 0.07400751113891602,
- 0.040179722011089325,
- 0.06547670066356659,
- 0.06061507761478424,
- 0.03210147097706795,
- 0.0836227610707283,
- -0.0037139952182769775,
- 0.006220899056643248,
- 0.020684555172920227,
- 0.0352616049349308,
- 0.06662613153457642,
- -0.00565538601949811,
- 0.025494473055005074,
- 0.0478866808116436,
- 0.01805940642952919,
- -0.08056356757879257,
- 0.04482392966747284,
- 0.05048404261469841,
- 0.015981480479240417,
- 0.024767449125647545,
- 0.047087885439395905,
- -0.007658207323402166,
- 0.008045780472457409,
- 0.04626091197133064,
- -0.012127039022743702,
- -0.14304834604263306,
- 0.06519907712936401,
- -0.021250929683446884,
- -0.016880055889487267,
- 0.14901940524578094,
- 0.05094442516565323,
- -0.08269011229276657,
- 0.012430652044713497,
- 0.047751329839229584,
- 0.02234196476638317,
- -0.0670958086848259,
- 0.08695709705352783,
- 0.02497030794620514,
- -0.06216263025999069,
- -0.0635925680398941,
- 0.05852658301591873,
- 0.05135125666856766,
- 0.05007622018456459,
- -0.08697956800460815,
- 0.01789432391524315,
- 0.010490236803889275,
- 0.0176383089274168,
- 0.039469894021749496,
- -0.05072801560163498,
- 0.010691704228520393,
- 0.041985299438238144,
- -0.046183861792087555,
- 0.0034382694866508245,
- -0.006846974138170481,
- 0.049668990075588226,
- -0.059968143701553345,
- -0.0292225144803524,
- 0.028074190020561218,
- -0.07000043988227844,
- 0.012742005288600922,
- -0.015306754969060421,
- -0.028722422197461128,
- -0.02656088024377823,
- 0.09894943982362747,
- -0.04346572235226631,
- 0.0487949475646019,
- 0.014539132826030254,
- -0.0057482486590743065,
- -0.007930430583655834,
- -0.10055731236934662,
- -0.006222659256309271,
- -0.06887974590063095,
- 0.054507769644260406,
- -0.02159302681684494,
- -0.028310108929872513,
- -0.01726219244301319,
- 0.1040007546544075,
- 0.032248061150312424,
- 0.015445967204868793,
- 0.12111607193946838,
- 0.0173660721629858,
- 0.029210805892944336,
- 0.0020782980136573315,
- -0.05220736190676689,
- 0.03368838503956795,
- -0.051153067499399185,
- -0.03673895448446274,
- -0.03141966834664345,
- -1.1378562980723927e-8,
- -0.02920634113252163,
- -0.053402580320835114,
- -0.035044219344854355,
- 0.03990913927555084,
- 0.005817989818751812,
- 0.007720212917774916,
- -0.09941968321800232,
- -0.00020433102326933295,
- 0.0018995219143107533,
- -0.019413748756051064,
- 0.030969342216849327,
- -0.021893655881285667,
- -0.07562731951475143,
- -0.043706927448511124,
- 0.07741036266088486,
- 0.038567956537008286,
- -0.055457089096307755,
- -0.002735877875238657,
- -0.0015381023986265063,
- -0.03578159585595131,
- -0.04633856937289238,
- -0.0009427830809727311,
- 0.010057814419269562,
- 0.04879341274499893,
- -0.06764701008796692,
- -0.015330418013036251,
- 0.11952854692935944,
- 0.1265294849872589,
- 0.021297680214047432,
- -0.08557029068470001,
- 0.04038069397211075,
- 0.09673381596803665,
- 0.023195095360279083,
- -0.13638366758823395,
- -0.054909855127334595,
- -0.04038483649492264,
- 0.06992223858833313,
- -0.026188982650637627,
- 0.0508628711104393,
- -0.037466444075107574,
- -0.04931935295462608,
- -0.06384633481502533,
- 0.017091307789087296,
- -0.021542105823755264,
- -0.02362886816263199,
- 0.023875705897808075,
- -0.039689820259809494,
- 0.027322111651301384,
- -0.015321910381317139,
- -0.05796625092625618,
- 0.026839612051844597,
- -0.03599211946129799,
- -0.014930108562111855,
- 0.01818680576980114,
- 0.04985864460468292,
- -0.005548482295125723,
- 0.00021630892297253013,
- -0.026847707107663155,
- -0.040380366146564484,
- -0.05161981284618378,
- 0.10569924861192703,
- 0.0871274471282959,
- 0.08838590979576111,
- -0.11738214641809464
- ]
- },
- {
- "keyword": "minutes",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.006301996763795614,
- 0.08612166345119476,
- -0.040796488523483276,
- -0.0025467693340033293,
- 0.007799522951245308,
- 0.05208689719438553,
- 0.047376856207847595,
- 0.026936013251543045,
- 0.08442969620227814,
- -0.06566211581230164,
- -0.013531281612813473,
- -0.0852990597486496,
- -0.009491904638707638,
- 0.01563958264887333,
- -0.03197682276368141,
- -0.031173769384622574,
- 0.034776721149683,
- 0.005365318153053522,
- -0.12233205884695053,
- -0.007097333204001188,
- 0.004724061116576195,
- -0.03542507439851761,
- 0.013254495337605476,
- -0.01415669359266758,
- -0.023912837728857994,
- 0.027684690430760384,
- -0.007541314233094454,
- 0.04968299716711044,
- 0.021509254351258278,
- -0.011873695068061352,
- -0.03565387800335884,
- 0.005262609105557203,
- 0.16922883689403534,
- 0.011761819012463093,
- -0.06221223995089531,
- 0.005914515350013971,
- -0.007450044620782137,
- 0.007793917786329985,
- 0.007586476858705282,
- -0.05707024782896042,
- -0.0146399587392807,
- -0.059121787548065186,
- -0.016517547890543938,
- 0.05101681128144264,
- -0.021924711763858795,
- 0.05181891471147537,
- 0.012138265185058117,
- -0.013565354980528355,
- 0.013164715841412544,
- 0.0725654661655426,
- -0.0060347383841872215,
- 0.07509396225214005,
- -0.05150897428393364,
- 0.03902650251984596,
- 0.0012959142914041877,
- 0.026034289970993996,
- -0.012413330376148224,
- 0.04034479707479477,
- 0.0258424524217844,
- -0.010187771171331406,
- -0.030111653730273247,
- -0.030303509905934334,
- -0.08669184148311615,
- 0.008853258565068245,
- -0.02622668817639351,
- -0.08632872253656387,
- -0.010072303004562855,
- -0.038365691900253296,
- -0.02780844271183014,
- 0.01618032716214657,
- -0.0021761609241366386,
- 0.053644366562366486,
- -0.05642975866794586,
- -0.028011521324515343,
- 0.015409831888973713,
- -0.041929274797439575,
- 0.028812792152166367,
- -0.009453466162085533,
- 0.039042819291353226,
- -0.06147966906428337,
- -0.008872246369719505,
- -0.027764417231082916,
- -0.010968371294438839,
- 0.007710160221904516,
- 0.027532849460840225,
- -0.01239051204174757,
- 0.0818733498454094,
- 0.16027779877185822,
- -0.03715362027287483,
- -0.02994488924741745,
- -0.056403208523988724,
- 0.05195627734065056,
- -0.02871866710484028,
- -0.00857486017048359,
- -0.06647065281867981,
- 0.03946678340435028,
- 0.023501930758357048,
- 0.04383080452680588,
- -0.06511883437633514,
- 0.23857465386390686,
- -0.025822678580880165,
- -0.009169861674308777,
- -0.07412832230329514,
- -0.02308483049273491,
- -0.005543302278965712,
- -0.010288660414516926,
- -0.00897507555782795,
- 0.0731009915471077,
- -0.000053330626542447135,
- 0.07740858942270279,
- 0.09030620008707047,
- -0.06799963116645813,
- 0.03940621018409729,
- 0.02117493934929371,
- 0.08466493338346481,
- 0.01684608682990074,
- 0.02046172134578228,
- -0.031699907034635544,
- 0.06506015360355377,
- -0.010915825143456459,
- 0.058344531804323196,
- -0.00013611739268526435,
- -0.021089250221848488,
- -0.014785770326852798,
- -0.06961047649383545,
- -0.0028424933552742004,
- 0.06778430193662643,
- -5.9173823587157466e-33,
- -0.042976610362529755,
- 0.0018389461329206824,
- -0.006015530787408352,
- -0.007299561519175768,
- 0.029620828106999397,
- -0.010945304296910763,
- 0.022732362151145935,
- -0.04588025063276291,
- 0.05782976374030113,
- 0.002982356585562229,
- -0.039147548377513885,
- -0.03077426739037037,
- -0.02115383744239807,
- -0.012699268758296967,
- 0.010108079761266708,
- -0.012018471024930477,
- 0.05391241982579231,
- 0.0221363827586174,
- -0.020445479080080986,
- -0.09838405251502991,
- -0.042639847844839096,
- -0.054210010915994644,
- -0.0011141732102259994,
- 0.025287076830863953,
- 0.055533528327941895,
- -0.04866630956530571,
- -0.04170328006148338,
- -0.08386208117008209,
- 0.028558576479554176,
- -0.014904199168086052,
- 0.0194836612790823,
- 0.06508529931306839,
- -0.06371542811393738,
- 0.09164951741695404,
- 0.0274676401168108,
- -0.00834465492516756,
- 0.03559885174036026,
- 0.02338741160929203,
- 0.022495822980999947,
- -0.011372326873242855,
- -0.06313735246658325,
- 0.003913684282451868,
- -0.00020448944997042418,
- -0.009358400478959084,
- -0.03002161905169487,
- 0.01712740585207939,
- 0.033598024398088455,
- 0.0015395337250083685,
- -0.034902557730674744,
- -0.021150458604097366,
- -0.0021505749318748713,
- 0.027056735008955002,
- 0.010403413325548172,
- -0.06997700780630112,
- -0.02971799485385418,
- 0.044708747416734695,
- 0.0255834199488163,
- 0.010339398868381977,
- -0.04187702015042305,
- 0.06228556111454964,
- 0.026891643181443214,
- 0.09934286773204803,
- 0.055095091462135315,
- -0.06704902648925781,
- -0.0692533329129219,
- 0.02160637266933918,
- -0.020322326570749283,
- 0.017942635342478752,
- 0.04862796887755394,
- 0.02840634621679783,
- -0.058249589055776596,
- 0.001478511723689735,
- 0.08152652531862259,
- 0.012082426808774471,
- -0.019455833360552788,
- -0.04330198094248772,
- 0.12664271891117096,
- 0.05914917215704918,
- -0.09942937642335892,
- 0.005077790468931198,
- 0.0029375357553362846,
- -0.0695827528834343,
- -0.04218931868672371,
- -0.04740059748291969,
- 0.03641524910926819,
- -0.054470207542181015,
- 0.03130699694156647,
- -0.007529411930590868,
- -0.07192379981279373,
- -0.04340244084596634,
- -0.09593696147203445,
- 0.036906931549310684,
- 0.043276596814394,
- -0.01796215958893299,
- -0.08328308165073395,
- 4.867721004729139e-33,
- -0.04172888025641441,
- -0.011481567285954952,
- -0.032896317541599274,
- 0.14985083043575287,
- 0.047449495643377304,
- -0.02076164074242115,
- -0.008708869107067585,
- 0.197165384888649,
- -0.02330416813492775,
- 0.051794588565826416,
- -0.04914237558841705,
- -0.07285206019878387,
- -0.0007425257354043424,
- -0.07822726666927338,
- -0.03914804384112358,
- 0.02099744789302349,
- 0.1461276262998581,
- -0.02968323603272438,
- 0.030872870236635208,
- 0.010276404209434986,
- 0.10433822125196457,
- -0.03721476346254349,
- -0.08868112415075302,
- -0.008616374805569649,
- -0.07499868422746658,
- 0.040370192378759384,
- 0.06935735791921616,
- -0.08796484768390656,
- -0.0773484855890274,
- -0.020411986857652664,
- 0.03466000780463219,
- -0.06591442227363586,
- -0.08131329715251923,
- 0.013947559520602226,
- -0.09885802119970322,
- 0.012088713236153126,
- 0.053772397339344025,
- 0.0965983122587204,
- 0.023056698963046074,
- 0.07361134886741638,
- 0.08017924427986145,
- -0.023367609828710556,
- -0.031458474695682526,
- 0.11228812485933304,
- 0.01862974464893341,
- 0.025850636884570122,
- 0.05286763608455658,
- -0.07890617102384567,
- -0.09101646393537521,
- -0.005073951557278633,
- -0.022209197282791138,
- 0.01895892806351185,
- -0.007732142228633165,
- 0.03908552601933479,
- 0.025737039744853973,
- -0.06877705454826355,
- -0.001243664650246501,
- -0.05071467533707619,
- 0.10644613206386566,
- -0.006430682260543108,
- 0.05017989128828049,
- 0.04267266392707825,
- -0.017715683206915855,
- 0.03727414458990097,
- 0.01086741778999567,
- 0.09613720327615738,
- -0.035142239183187485,
- -0.055311236530542374,
- 0.002385621890425682,
- 0.008418210782110691,
- -0.03468388319015503,
- 0.04987628757953644,
- -0.033306002616882324,
- -0.005801193416118622,
- -0.10337795317173004,
- 0.018726374953985214,
- -0.07516229152679443,
- 0.02691224217414856,
- -0.012038810178637505,
- -0.017822343856096268,
- -0.021955499425530434,
- -0.029964299872517586,
- -0.03854149952530861,
- -0.01696237176656723,
- -0.019030505791306496,
- 0.06426721811294556,
- 0.07134976983070374,
- 0.09222021698951721,
- 0.02227052114903927,
- -0.0773433968424797,
- 0.05055171251296997,
- 0.08673643320798874,
- 0.04743771627545357,
- 0.032761845737695694,
- 0.01703498139977455,
- -1.3130310172471127e-8,
- 0.08110688626766205,
- 0.037360262125730515,
- 0.006157980300486088,
- -0.0402759425342083,
- 0.02893112227320671,
- 0.052066776901483536,
- -0.058287326246500015,
- 0.012860488146543503,
- 0.014678865671157837,
- 0.036216851323843,
- 0.09008163213729858,
- 0.0014619348803535104,
- -0.019130706787109375,
- 0.04866396263241768,
- -0.07346626371145248,
- -0.05778585001826286,
- -0.040775977075099945,
- -0.03688861057162285,
- 0.0001910076243802905,
- -0.0031457021832466125,
- -0.025189833715558052,
- 0.03951752930879593,
- -0.014028763398528099,
- -0.0010651623597368598,
- 0.018005967140197754,
- 0.028301719576120377,
- 0.05339614674448967,
- 0.1256544142961502,
- 0.013915921561419964,
- -0.0510859414935112,
- -0.052966516464948654,
- 0.05335119739174843,
- -0.08058802038431168,
- -0.02925015613436699,
- -0.04784746095538139,
- -0.07097335904836655,
- -0.05110456794500351,
- -0.012301744893193245,
- 0.0038859075866639614,
- -0.0010797558352351189,
- -0.03067467361688614,
- -0.0357055738568306,
- -0.02186642587184906,
- -0.04688137024641037,
- -0.010528196580708027,
- -0.014681589789688587,
- -0.0014786020619794726,
- 0.006726306863129139,
- -0.015272260643541813,
- -0.02817418798804283,
- 0.06654296070337296,
- 0.019968803972005844,
- 0.05803524702787399,
- 0.02458677627146244,
- 0.08153489232063293,
- 0.006909294985234737,
- 0.005053067579865456,
- -0.03080417960882187,
- 0.024632440879940987,
- -0.017316512763500214,
- 0.04769987612962723,
- 0.08194567263126373,
- -0.0544356107711792,
- -0.04488305374979973
- ]
- },
- {
- "keyword": "record",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0623759999871254,
- 0.12220796197652817,
- -0.019750133156776428,
- -0.027745557948946953,
- -0.051620591431856155,
- 0.013875961303710938,
- 0.038423024117946625,
- 0.046742577105760574,
- -0.026289230212569237,
- -0.062354180961847305,
- -0.017590615898370743,
- -0.04912252724170685,
- 0.034431833773851395,
- -0.02191188745200634,
- -0.05876114219427109,
- -0.008490015752613544,
- -0.07839059829711914,
- 0.026224803179502487,
- -0.059036605060100555,
- -0.0014078617095947266,
- -0.0010308785131201148,
- 0.05773022770881653,
- 0.029095539823174477,
- 0.04729349911212921,
- -0.03758876770734787,
- 0.03658311069011688,
- -0.051633320748806,
- 0.004505728371441364,
- 0.019166426733136177,
- -0.08891087770462036,
- -0.028727928176522255,
- -0.03119933046400547,
- 0.06087244302034378,
- 0.021330280229449272,
- -0.011845543049275875,
- -0.017932945862412453,
- -0.02928314171731472,
- 0.015422086231410503,
- -0.004634700249880552,
- -0.025154849514365196,
- 0.03474386781454086,
- -0.041440755128860474,
- -0.00028880438185296953,
- 0.014884877018630505,
- -0.03661549463868141,
- 0.09476232528686523,
- -0.001531531335785985,
- 0.013700513169169426,
- -0.007103963289409876,
- 0.04391962289810181,
- -0.057515647262334824,
- 0.0685180127620697,
- 0.04127931222319603,
- 0.04604177922010422,
- 0.0010598395019769669,
- 0.04523199424147606,
- -0.02393038012087345,
- 0.007395729422569275,
- -0.03976435959339142,
- 0.017765430733561516,
- 0.03432050719857216,
- 0.01464816089719534,
- -0.06638085842132568,
- -0.03041010908782482,
- -0.0844695046544075,
- -0.0005733073339797556,
- -0.044252052903175354,
- 0.06633888185024261,
- 0.014000095427036285,
- -0.0016819783486425877,
- 0.016938287764787674,
- 0.07494280487298965,
- -0.015028939582407475,
- -0.005669247359037399,
- 0.04952581226825714,
- -0.0678199976682663,
- -0.0019690250046551228,
- -0.00491445604711771,
- 0.05709420517086983,
- -0.011576392687857151,
- 0.04757886379957199,
- -0.07846327126026154,
- -0.05259573087096214,
- 0.00028437969740480185,
- 0.050323206931352615,
- -0.06145155057311058,
- 0.06159927323460579,
- 0.03132953494787216,
- -0.050815828144550323,
- 0.0229815561324358,
- -0.11394666880369186,
- -0.012790110893547535,
- 0.040915947407484055,
- -0.03177511319518089,
- -0.09631863236427307,
- 0.043791305273771286,
- 0.0024581102188676596,
- 0.0038846570532768965,
- 0.02433941327035427,
- 0.23309136927127838,
- 0.02478657104074955,
- 0.10640699416399002,
- -0.03278541937470436,
- 0.05647779256105423,
- 0.004881012253463268,
- -0.045226432383060455,
- -0.06010324880480766,
- 0.026875318959355354,
- 0.020621757954359055,
- -0.02880517765879631,
- 0.056654009968042374,
- 0.05995543673634529,
- -0.044362872838974,
- 0.06460002809762955,
- 0.10532789677381516,
- 0.03434697911143303,
- -0.14268554747104645,
- 0.06859604269266129,
- 0.03908396139740944,
- -0.08656668663024902,
- 0.030817223712801933,
- -0.012002683244645596,
- -0.08023826777935028,
- 0.03863478824496269,
- -0.08193732798099518,
- -0.06539935618638992,
- 0.0964842215180397,
- -5.212877370199256e-33,
- 0.09812547266483307,
- 0.008243020623922348,
- 0.015047079883515835,
- -0.059384096413850784,
- -0.021288810297846794,
- 0.06417781859636307,
- -0.058938268572092056,
- 0.04576257988810539,
- -0.037437085062265396,
- 0.09320342540740967,
- -0.05159471929073334,
- -0.03610870614647865,
- 0.009522617794573307,
- -0.0347227044403553,
- 0.06502630561590195,
- 0.1052938923239708,
- -0.11313420534133911,
- 0.052405066788196564,
- -0.02684173174202442,
- 0.00018498374265618622,
- -0.03622254356741905,
- -0.025395691394805908,
- 0.03377344086766243,
- 0.10841166228055954,
- -0.014921528287231922,
- 0.036050863564014435,
- -0.026137270033359528,
- -0.05348768085241318,
- 0.017269790172576904,
- -0.01614396460354328,
- -0.0018735249759629369,
- -0.04431235417723656,
- 0.009086182340979576,
- -0.05470399558544159,
- 0.0697895735502243,
- 0.03802327439188957,
- 0.0023939560633152723,
- -0.05438872054219246,
- 0.017713844776153564,
- -0.0497368760406971,
- 0.005605353973805904,
- 0.05245717614889145,
- -0.052454873919487,
- -0.09258430451154709,
- -0.02960134670138359,
- 0.0074129244312644005,
- 0.04301999881863594,
- 0.052510667592287064,
- -0.016449784860014915,
- 0.04853799194097519,
- 0.019525134935975075,
- -0.025244008749723434,
- -0.1073303371667862,
- -0.039826616644859314,
- -0.09469030052423477,
- 0.03548315912485123,
- 0.011293720453977585,
- -0.02180304564535618,
- 0.019508948549628258,
- 0.08157723397016525,
- 0.09048597514629364,
- 0.009519183076918125,
- 0.020240310579538345,
- 0.00018880399875342846,
- -0.09821775555610657,
- 0.01833726465702057,
- 0.018596036359667778,
- -0.06268039345741272,
- 0.07984308898448944,
- -0.0322197787463665,
- -0.03272026777267456,
- -0.05352678522467613,
- -0.0321669802069664,
- -0.009847459383308887,
- 0.0643773227930069,
- 0.008260957896709442,
- 0.021896932274103165,
- -0.01742366887629032,
- -0.029151447117328644,
- 0.041278913617134094,
- -0.011481845751404762,
- -0.008551226928830147,
- -0.06768569350242615,
- 0.02365601807832718,
- 0.0659346729516983,
- 0.07421152293682098,
- 0.026923514902591705,
- -0.02767237089574337,
- -0.019474366679787636,
- 0.020936736837029457,
- -0.03331784904003143,
- 0.04699411988258362,
- 0.040033601224422455,
- 0.01862727664411068,
- 0.006594538222998381,
- 4.465139536169445e-33,
- 0.0034250777680426836,
- 0.04511181265115738,
- -0.011087720282375813,
- 0.051994554698467255,
- 0.02380257286131382,
- -0.037923768162727356,
- 0.09589597582817078,
- 0.05225435271859169,
- -0.042519461363554,
- 0.05539052188396454,
- -0.010058754123747349,
- -0.013322299346327782,
- 0.03745977208018303,
- 0.016710732132196426,
- 0.03727911040186882,
- 0.007283319719135761,
- 0.014612691476941109,
- -0.028951827436685562,
- -0.0637279525399208,
- 0.06254950910806656,
- 0.03560740873217583,
- 0.03440316766500473,
- 0.05013327673077583,
- 0.06832857429981232,
- -0.03459661081433296,
- 0.02161514014005661,
- 0.08584697544574738,
- 0.05942319333553314,
- 0.0028838536236435175,
- -0.07394726574420929,
- 0.06651058048009872,
- -0.03079160675406456,
- -0.021121425554156303,
- -0.030776595696806908,
- 0.005257188808172941,
- -0.013573354110121727,
- 0.10864708572626114,
- 0.008299915120005608,
- -0.017969941720366478,
- 0.06125156581401825,
- 0.019015295431017876,
- 0.06304848939180374,
- 0.0023579325061291456,
- 0.11606854945421219,
- -0.014144930057227612,
- -0.013507837429642677,
- -0.062411848455667496,
- 0.07224102318286896,
- -0.007420039270073175,
- 0.0793999433517456,
- -0.0928974449634552,
- -0.004633705597370863,
- -0.018317071720957756,
- 0.0035207243636250496,
- -0.0133046330884099,
- 0.003644147887825966,
- -0.05198034271597862,
- -0.010981890372931957,
- -0.033542778342962265,
- 0.04137507453560829,
- -0.021861055865883827,
- 0.1303626447916031,
- -0.02668342925608158,
- 0.02514609880745411,
- 0.031698234379291534,
- 0.0015914681134745479,
- -0.002625770168378949,
- 0.012000812217593193,
- -0.04025666415691376,
- 0.05836953595280647,
- -0.06687680631875992,
- 0.038910605013370514,
- 0.003804743057116866,
- 0.044683318585157394,
- -0.048808224499225616,
- 0.0011207452043890953,
- -0.17121635377407074,
- 0.0012043020687997341,
- -0.03324027359485626,
- -0.021532109007239342,
- -0.1330755650997162,
- -0.0683416873216629,
- 0.019095517694950104,
- 0.05003199726343155,
- -0.019108057022094727,
- -0.011679653078317642,
- 0.13410240411758423,
- -0.07176241278648376,
- -0.02707129903137684,
- -0.015415986068546772,
- -0.007189048919826746,
- 0.02987007237970829,
- -0.017167482525110245,
- -0.0518483892083168,
- -0.028378209099173546,
- -1.210461775258409e-8,
- -0.08865808695554733,
- 0.050018154084682465,
- -0.013015823438763618,
- 0.02663988061249256,
- 0.06668388098478317,
- -0.03836885839700699,
- 0.06052490323781967,
- 0.058058906346559525,
- 0.03941360488533974,
- -0.09006558358669281,
- 0.10047685354948044,
- -0.06350283324718475,
- -0.019788183271884918,
- 0.015731211751699448,
- 0.020647140219807625,
- -0.07423952966928482,
- -0.0003800413687713444,
- 0.03208479657769203,
- -0.02850940078496933,
- 0.038650993257761,
- -0.0256964024156332,
- -0.02499707043170929,
- -0.01022720243781805,
- -0.0191632229834795,
- 0.012802320532500744,
- -0.08908943086862564,
- 0.017258306965231895,
- 0.10731528699398041,
- 0.03581269457936287,
- -0.0116789061576128,
- 0.016573233529925346,
- 0.04174460098147392,
- 0.06334744393825531,
- -0.008611687459051609,
- 0.013005031272768974,
- -0.036966513842344284,
- -0.009143409319221973,
- 0.033247873187065125,
- -0.01601741649210453,
- -0.043759919703006744,
- -0.0814041718840599,
- 0.042979270219802856,
- 0.01821838691830635,
- -0.004051093943417072,
- -0.04060925915837288,
- -0.02438451163470745,
- 0.023511698469519615,
- -0.024621011689305305,
- 0.01036034245043993,
- -0.06871184706687927,
- -0.0312890000641346,
- -0.015116769820451736,
- 0.04625219479203224,
- 0.09280236065387726,
- 0.03312606364488602,
- 0.03992900252342224,
- -0.014201919548213482,
- -0.034406211227178574,
- -0.06937633454799652,
- -0.03305758535861969,
- 0.08810661733150482,
- -0.061289165169000626,
- -0.06856274604797363,
- 0.044745367020368576
- ]
- },
- {
- "keyword": "log",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.01728058233857155,
- 0.05430677533149719,
- -0.0077990018762648106,
- 0.030915459617972374,
- 0.04339327663183212,
- -0.052404552698135376,
- 0.11876951158046722,
- 0.026212960481643677,
- 0.07504794001579285,
- 0.047155458480119705,
- 0.013368050567805767,
- -0.09271075576543808,
- -0.001472671516239643,
- 0.030893636867403984,
- -0.05867106094956398,
- -0.016492268070578575,
- -0.1026887595653534,
- 0.01715964637696743,
- -0.11231134831905365,
- 0.024744808673858643,
- 0.08224839717149734,
- 0.02041543647646904,
- -0.05637870356440544,
- 0.07354363054037094,
- 0.05138857662677765,
- 0.0010395264253020287,
- -0.009762469679117203,
- -0.040349267423152924,
- -0.0037909739185124636,
- -0.09775403141975403,
- -0.03154393658041954,
- 0.000526158488355577,
- 0.019328320398926735,
- 0.06397169083356857,
- -0.0655335932970047,
- -0.07279883325099945,
- 0.01357516273856163,
- -0.03169093653559685,
- 0.03281058743596077,
- -0.05853385478258133,
- -0.05774828419089317,
- -0.10287323594093323,
- 0.0399472750723362,
- -0.023695839568972588,
- 0.01578039489686489,
- 0.020959042012691498,
- -0.05317414179444313,
- 0.020249567925930023,
- 0.022164255380630493,
- 0.07895980775356293,
- 0.03211869299411774,
- -0.024131081998348236,
- 0.012027845717966557,
- -0.014187118969857693,
- -0.002685362473130226,
- 0.05842016264796257,
- 0.007954192347824574,
- 0.03875732421875,
- 0.03257593512535095,
- -0.02216172032058239,
- 0.011866053566336632,
- 0.03925511613488197,
- -0.08047448098659515,
- -0.013289367780089378,
- 0.03151924908161163,
- -0.02466948889195919,
- 0.0012670630821958184,
- -0.000032808846299303696,
- 0.039218585938215256,
- 0.03558472916483879,
- -0.07207376509904861,
- -0.012775835581123829,
- -0.0018070666119456291,
- -0.03441112861037254,
- 0.0536075085401535,
- -0.05518244951963425,
- 0.03969108685851097,
- 0.015142209827899933,
- 0.05517294630408287,
- -0.019855473190546036,
- -0.036354098469018936,
- 0.009111884981393814,
- -0.0619577132165432,
- 0.07830853015184402,
- 0.06005099043250084,
- -0.051206085830926895,
- 0.042299315333366394,
- 0.1882379949092865,
- 0.019985195249319077,
- -0.02442948706448078,
- -0.07130413502454758,
- 0.06965716183185577,
- 0.036216095089912415,
- 0.02719799056649208,
- -0.029342880472540855,
- 0.04880449175834656,
- -0.03328823298215866,
- 0.07507487386465073,
- 0.019747477024793625,
- 0.23241877555847168,
- 0.017600292339920998,
- 0.11334607750177383,
- -0.016013246029615402,
- -0.06093990057706833,
- 0.0228726826608181,
- -0.012040483765304089,
- -0.04860395938158035,
- 0.053536370396614075,
- 0.00586652709171176,
- 0.018299680203199387,
- -0.0002968483022414148,
- 0.009163915179669857,
- -0.005675685126334429,
- 0.06454268097877502,
- 0.1178942322731018,
- 0.014079482294619083,
- -0.023079361766576767,
- -0.026061244308948517,
- -0.030941735953092575,
- 0.01957494579255581,
- 0.030890999361872673,
- 0.04262484982609749,
- -0.026600392535328865,
- -0.0641019269824028,
- -0.03711053729057312,
- -0.0416155681014061,
- 0.12090051919221878,
- -4.2386361011033907e-33,
- 0.032360538840293884,
- 0.022178402170538902,
- 0.016316941007971764,
- 0.025863848626613617,
- 0.01147951278835535,
- 0.07594393193721771,
- -0.05056578665971756,
- 0.0007781122112646699,
- -0.10275408625602722,
- 0.06411123275756836,
- -0.12125884741544724,
- 0.04691728949546814,
- 0.02313491329550743,
- -0.05844029039144516,
- 0.0906534269452095,
- -0.017926208674907684,
- 0.02757757343351841,
- 0.011654581874608994,
- -0.0011968970065936446,
- 0.0069853151217103004,
- -0.0568896047770977,
- -0.028448626399040222,
- 0.018881773576140404,
- 0.008627460338175297,
- 0.018228858709335327,
- 0.02383885532617569,
- 0.015758763998746872,
- -0.07075720280408859,
- -0.011241897940635681,
- 0.026887191459536552,
- 0.021863045170903206,
- -0.011952703818678856,
- -0.037416476756334305,
- -0.05879659950733185,
- 0.03797391802072525,
- -0.03849363699555397,
- 0.021203655749559402,
- -0.0074166106060147285,
- -0.022665858268737793,
- -0.033165547996759415,
- -0.051156654953956604,
- -0.006829327903687954,
- -0.05383026599884033,
- -0.032830338925123215,
- -0.077267587184906,
- 0.002096506068482995,
- -0.037444740533828735,
- 0.01625598408281803,
- 0.02452106401324272,
- 0.013653400354087353,
- -0.019228525459766388,
- 0.029875408858060837,
- -0.07467961311340332,
- -0.008349359035491943,
- -0.022267991676926613,
- 0.021584292873740196,
- 0.08096365630626678,
- -0.04226435348391533,
- -0.015395395457744598,
- 0.014942753128707409,
- 0.13032130897045135,
- 0.0006875020917505026,
- 0.047311365604400635,
- -0.06147416681051254,
- -0.02344387210905552,
- 0.009563312865793705,
- 0.07584774494171143,
- -0.003802101593464613,
- -0.018683945760130882,
- 0.013947655446827412,
- -0.057327497750520706,
- -0.087053082883358,
- 0.07404005527496338,
- -0.00557086244225502,
- 0.002219029702246189,
- 0.023686766624450684,
- -0.01651839166879654,
- 0.04032156243920326,
- -0.04499515891075134,
- 0.06702795624732971,
- -0.04634811729192734,
- -0.07863641530275345,
- -0.024509232491254807,
- 0.024905497208237648,
- 0.03110406920313835,
- -0.015288050286471844,
- -0.052718013525009155,
- -0.03591184318065643,
- -0.06333994120359421,
- 0.03579354286193848,
- -0.0987420305609703,
- 0.0028505735099315643,
- 0.08755835890769958,
- -0.03023235872387886,
- 0.003947698511183262,
- 2.9175764277279406e-33,
- -0.1043224036693573,
- 0.09767971932888031,
- -0.017683476209640503,
- 0.005114785861223936,
- 0.026646779850125313,
- -0.011843216605484486,
- -0.007507798261940479,
- -0.01519895438104868,
- -0.006818703841418028,
- 0.06138134375214577,
- 0.02754145674407482,
- -0.025026598945260048,
- 0.055831972509622574,
- 0.04545527324080467,
- 0.05997179448604584,
- 0.06337638944387436,
- -0.005433430429548025,
- -0.01846095360815525,
- -0.03131411597132683,
- -0.009908132255077362,
- 0.037727002054452896,
- -0.014808032661676407,
- -0.030880032107234,
- -0.02834581956267357,
- -0.02493663690984249,
- 0.03766855597496033,
- 0.05539985001087189,
- 0.021115370094776154,
- -0.027975022792816162,
- -0.056203410029411316,
- 0.06920479983091354,
- -0.08794766664505005,
- -0.0641612559556961,
- 0.030786387622356415,
- 0.02966553345322609,
- -0.027373237535357475,
- 0.06921570003032684,
- 0.0544457733631134,
- 0.010780238546431065,
- 0.01341690868139267,
- 0.04822003096342087,
- 0.05402220040559769,
- 0.06829195469617844,
- 0.07866621762514114,
- -0.040691521018743515,
- -0.016141144558787346,
- -0.049058422446250916,
- -0.0008333296864293516,
- 0.05722261220216751,
- 0.016259869560599327,
- -0.01989775523543358,
- -0.012956270016729832,
- 0.10101637244224548,
- 0.024051139131188393,
- -0.07199523597955704,
- 0.03324969485402107,
- 0.03937651962041855,
- 0.025571515783667564,
- -0.03929297253489494,
- -0.017038004472851753,
- -0.0527321957051754,
- 0.017654171213507652,
- -0.010884595103561878,
- 0.04135774075984955,
- -0.08776428550481796,
- -0.08758004009723663,
- -0.0030328237917274237,
- -0.036346618086099625,
- -0.03041134402155876,
- -0.03632169961929321,
- 0.04849676787853241,
- 0.018243882805109024,
- -0.05194969102740288,
- 0.053679127246141434,
- 0.0465766005218029,
- 0.009940601885318756,
- -0.11542358994483948,
- -0.031311094760894775,
- -0.05477723479270935,
- -0.004046197514981031,
- -0.01707579381763935,
- -0.02715034782886505,
- -0.06468696147203445,
- -0.033484164625406265,
- 0.03215093910694122,
- -0.08706128597259521,
- 0.055700723081827164,
- 0.020030103623867035,
- 0.01595010794699192,
- -0.018055450171232224,
- -0.02047744207084179,
- 0.061932601034641266,
- -0.06956108659505844,
- -0.06088745966553688,
- -0.018208878114819527,
- -1.1679694544852737e-8,
- -0.0677548199892044,
- -0.03344448283314705,
- 0.07544326782226562,
- -0.009383171796798706,
- 0.15537029504776,
- 0.10343116521835327,
- -0.00093510327860713,
- 0.07410456240177155,
- -0.08239787071943283,
- 0.019741550087928772,
- -0.005645078141242266,
- -0.02800755575299263,
- -0.026970449835062027,
- -0.03812425211071968,
- 0.0307773370295763,
- -0.09926316142082214,
- -0.06405548751354218,
- -0.01944723166525364,
- 0.005711263511329889,
- -0.03258145600557327,
- -0.0000615079261478968,
- -0.0006334861391223967,
- 0.01752709038555622,
- -0.011006425134837627,
- -0.07402098923921585,
- -0.06796225905418396,
- 0.05309486389160156,
- 0.13698427379131317,
- -0.06240060552954674,
- 0.01850205287337303,
- 0.07174021750688553,
- 0.12463213503360748,
- -0.015389925800263882,
- -0.0938812792301178,
- -0.07865133881568909,
- 0.004670624155551195,
- 0.018018199130892754,
- -0.05060146003961563,
- -0.012856978923082352,
- -0.0076504601165652275,
- -0.06009569764137268,
- -0.03591429442167282,
- 0.04684677720069885,
- -0.010827869176864624,
- -0.040981996804475784,
- -0.033785443753004074,
- 0.01314416155219078,
- -0.05974872037768364,
- 0.029008712619543076,
- -0.020363865420222282,
- -0.0019658927340060472,
- -0.0038486504927277565,
- 0.04154473543167114,
- 0.06027711182832718,
- 0.04176563024520874,
- 0.004714631475508213,
- 0.052664000540971756,
- -0.046442385762929916,
- 0.02858399786055088,
- 0.03648597374558449,
- 0.11300955712795258,
- -0.04437199607491493,
- 0.00014207045023795217,
- -0.02680146135389805
- ]
- },
- {
- "keyword": "entry",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.012891145423054695,
- 0.0295733530074358,
- -0.000013924764971307013,
- 0.0017456834902986884,
- -0.009870107285678387,
- 0.022211991250514984,
- 0.12394820898771286,
- -0.013223623856902122,
- -0.03456251695752144,
- -0.022948849946260452,
- -0.035333480685949326,
- -0.08177054673433304,
- 0.04479128494858742,
- -0.06112442538142204,
- -0.04381989315152168,
- -0.03254726901650429,
- 0.012843277305364609,
- -0.06165379658341408,
- -0.023508314043283463,
- -0.0178470928221941,
- -0.033095333725214005,
- -0.0046903351321816444,
- -0.02673238515853882,
- 0.02738487906754017,
- -0.0144292451441288,
- 0.00035351538099348545,
- -0.02020198106765747,
- 0.05561190843582153,
- 0.06432735919952393,
- -0.08029142022132874,
- -0.04072648659348488,
- 0.04790109768509865,
- 0.05121498927474022,
- 0.030960706993937492,
- -0.004471397493034601,
- 0.014317132532596588,
- 0.029442185536026955,
- -0.03418567404150963,
- 0.05659430846571922,
- -0.06832966208457947,
- -0.015626121312379837,
- -0.12593577802181244,
- 0.01733252964913845,
- -0.03205970302224159,
- 0.03472898527979851,
- 0.014437101781368256,
- -0.024160731583833694,
- -0.038836296647787094,
- 0.031056245788931847,
- 0.055160924792289734,
- -0.06168937310576439,
- 0.021157976239919662,
- -0.04609260335564613,
- 0.04971538484096527,
- -0.04909220337867737,
- 0.09934667497873306,
- -0.03213731572031975,
- -0.029454274103045464,
- 0.01963927410542965,
- -0.06385426223278046,
- 0.09248101711273193,
- -0.027019785717129707,
- -0.017297809943556786,
- 0.036024414002895355,
- 0.005482605658471584,
- -0.05642327293753624,
- -0.03023727424442768,
- 0.030173100531101227,
- -0.05743994191288948,
- -0.09613524377346039,
- 0.10374283045530319,
- -0.004293191246688366,
- -0.09838036447763443,
- 0.03154747188091278,
- 0.02513791434466839,
- -0.04322202131152153,
- -0.02564798854291439,
- -0.037655897438526154,
- 0.046211834996938705,
- -0.013324013911187649,
- 0.04203784465789795,
- 0.029711706563830376,
- -0.10748570412397385,
- 0.003996923100203276,
- 0.038755863904953,
- -0.0198046937584877,
- 0.024844041094183922,
- 0.029134362936019897,
- 0.05274009704589844,
- 0.051507435739040375,
- -0.02627204731106758,
- -0.07846764475107193,
- 0.059445787221193314,
- 0.021022379398345947,
- -0.06622643768787384,
- 0.006593938451260328,
- 0.012785074301064014,
- 0.02399972267448902,
- 0.023538967594504356,
- 0.24874471127986908,
- 0.03233548626303673,
- 0.03734511137008667,
- -0.0946081280708313,
- 0.03441667929291725,
- -0.01900148019194603,
- -0.04577948525547981,
- 0.0010860604234039783,
- -0.005769313778728247,
- 0.04376957193017006,
- -0.033956144005060196,
- -0.05490470305085182,
- -0.021779442206025124,
- 0.054137710481882095,
- 0.061575427651405334,
- -0.025079280138015747,
- 0.06217994913458824,
- -0.05405750125646591,
- 0.04597494751214981,
- 0.05381675437092781,
- 0.07598020881414413,
- -0.02205037511885166,
- 0.019847167655825615,
- -0.019719477742910385,
- 0.010900587774813175,
- -0.09319145232439041,
- -0.15077634155750275,
- 0.031310416758060455,
- -6.766456989336055e-33,
- 0.02088100090622902,
- 0.001928968820720911,
- 0.0015092520043253899,
- 0.0552549883723259,
- -0.055687982589006424,
- -0.04654572531580925,
- -0.027193214744329453,
- 0.009037344716489315,
- -0.0786154717206955,
- -0.002012623008340597,
- -0.07877923548221588,
- 0.009529677219688892,
- 0.022953327745199203,
- 0.04973218962550163,
- 0.059757981449365616,
- 0.05448111891746521,
- -0.0032443322706967592,
- 0.0685657411813736,
- -0.009571473114192486,
- -0.04514842852950096,
- -0.02833523228764534,
- -0.016966067254543304,
- -0.01132286712527275,
- 0.05630142614245415,
- 0.0737757757306099,
- 0.04961758106946945,
- -0.06178733706474304,
- -0.07315554469823837,
- -0.02342653088271618,
- 0.037658773362636566,
- 0.07508011162281036,
- -0.014455954544246197,
- -0.04159808158874512,
- -0.03850334510207176,
- 0.062233004719018936,
- 0.0006395279779098928,
- 0.044041458517313004,
- -0.045810844749212265,
- 0.021311651915311813,
- -0.11147083342075348,
- -0.07250317931175232,
- -0.05825866758823395,
- -0.05621117725968361,
- 0.019243426620960236,
- -0.042043380439281464,
- 0.041204825043678284,
- 0.05408786982297897,
- 0.023350557312369347,
- 0.027130747213959694,
- 0.0841941386461258,
- 0.002881040796637535,
- -0.013691678643226624,
- -0.05676813796162605,
- -0.025059986859560013,
- -0.09986822307109833,
- -0.014748968183994293,
- 0.012422592379152775,
- -0.0232685673981905,
- -0.015450983308255672,
- 0.0005892864428460598,
- 0.026170389726758003,
- 0.0766986608505249,
- -0.056823913007974625,
- 0.08050461858510971,
- -0.030811751261353493,
- 0.020730938762426376,
- -0.03606180474162102,
- -0.028426334261894226,
- 0.061872564256191254,
- -0.015409581363201141,
- -0.13328024744987488,
- -0.05145229771733284,
- 0.005520193837583065,
- 0.0062183719128370285,
- 0.044354166835546494,
- -0.04373655840754509,
- -0.027822939679026604,
- -0.021753886714577675,
- -0.03190843015909195,
- -0.043926797807216644,
- -0.03886885941028595,
- -0.0026607103645801544,
- -0.048499248921871185,
- 0.015594694763422012,
- 0.11849698424339294,
- 0.04990146681666374,
- 0.021225759759545326,
- -0.16437533497810364,
- 0.07095187902450562,
- -0.037219591438770294,
- -0.0045290603302419186,
- 0.02288668602705002,
- 0.029099520295858383,
- 0.0344022661447525,
- 0.014372467994689941,
- 4.423848460386889e-33,
- 0.017786819487810135,
- -0.02696475200355053,
- 0.05249796062707901,
- -0.04577525332570076,
- 0.07255927473306656,
- -0.005398956127464771,
- 0.04787268489599228,
- 0.03426266089081764,
- 0.042710769921541214,
- 0.053392961621284485,
- -0.02106718346476555,
- 0.02288670465350151,
- 0.12498770654201508,
- 0.004586068447679281,
- -0.02286326326429844,
- -0.03151080012321472,
- 0.09762408584356308,
- 0.05539156123995781,
- -0.06766576319932938,
- 0.029803309589624405,
- -0.003650474129244685,
- -0.08857117593288422,
- 0.05298665910959244,
- -0.030489064753055573,
- -0.025173747912049294,
- 0.08124695718288422,
- 0.12089633196592331,
- 0.07119747251272202,
- -0.057467177510261536,
- -0.01838069036602974,
- -0.02118241973221302,
- -0.015478875488042831,
- -0.06094931811094284,
- 0.05202214792370796,
- -0.06665153056383133,
- 0.01812661997973919,
- 0.14046317338943481,
- 0.0025117567274719477,
- -0.06523004174232483,
- 0.03912607952952385,
- 0.058787278831005096,
- 0.06575831025838852,
- 0.052055202424526215,
- 0.15959781408309937,
- -0.05213094502687454,
- -0.008384201675653458,
- -0.07583000510931015,
- 0.06966632604598999,
- 0.022064300253987312,
- 0.030160393565893173,
- -0.016411570832133293,
- 0.03843307867646217,
- 0.005147882737219334,
- 0.013613363727927208,
- 0.02625715732574463,
- 0.055010538548231125,
- -0.051600176841020584,
- -0.016371671110391617,
- 0.029032064601778984,
- 0.00549048837274313,
- -0.0289931483566761,
- 0.10542286187410355,
- -0.045434899628162384,
- 0.09648429602384567,
- 0.009280655533075333,
- -0.060351841151714325,
- -0.03065725415945053,
- 0.03284401819109917,
- -0.002138159004971385,
- -0.017508819699287415,
- 0.08490916341543198,
- -0.01558512169867754,
- 0.027997201308608055,
- 0.004671209957450628,
- -0.007883730344474316,
- -0.04844158515334129,
- 0.014814762398600578,
- 0.01070292480289936,
- -0.06876692920923233,
- -0.02826927974820137,
- -0.10122931748628616,
- 0.006945789325982332,
- 0.034921400249004364,
- 0.04482579603791237,
- 0.013560556806623936,
- -0.04025964066386223,
- 0.027862031012773514,
- 0.03451725095510483,
- -0.014374274760484695,
- -0.01879672147333622,
- -0.032813917845487595,
- 0.022971831262111664,
- 0.014595769345760345,
- -0.011544622480869293,
- -0.03297118470072746,
- -1.2726481202207651e-8,
- -0.020716790109872818,
- 0.05580727383494377,
- -0.0013492084108293056,
- 0.05368172377347946,
- 0.0814676284790039,
- -0.014348747208714485,
- -0.054747000336647034,
- 0.008904090151190758,
- 0.039718952029943466,
- 0.026688745245337486,
- -0.016317948698997498,
- -0.0012499192962422967,
- -0.031708043068647385,
- -0.0445978119969368,
- 0.03161105886101723,
- 0.02228814736008644,
- -0.044699396938085556,
- -0.03008701093494892,
- -0.055037807673215866,
- -0.030265821143984795,
- 0.05456331744790077,
- -0.016665147617459297,
- 0.08108235150575638,
- -0.030129684135317802,
- -0.026275290176272392,
- 0.0017563458532094955,
- -0.051135674118995667,
- 0.026411253958940506,
- 0.005180036183446646,
- 0.04213827848434448,
- -0.03445344790816307,
- 0.1322862207889557,
- 0.005738849751651287,
- 0.00005596259143203497,
- -0.010162890888750553,
- 0.008818925358355045,
- -0.005783898290246725,
- -0.0111131826415658,
- 0.030232809484004974,
- -0.10066737979650497,
- -0.012545608915388584,
- -0.03271454945206642,
- 0.034734729677438736,
- -0.07147777825593948,
- -0.03344026207923889,
- 0.029361654072999954,
- 0.013928056694567204,
- -0.050168395042419434,
- 0.03719985485076904,
- -0.04319969192147255,
- -0.029840661212801933,
- -0.040074992924928665,
- -0.008111359551548958,
- 0.008339060470461845,
- 0.07948615401983261,
- 0.05682273209095001,
- -0.02736641652882099,
- -0.05704501271247864,
- -0.06306065618991852,
- 0.036530181765556335,
- 0.12033775448799133,
- -0.0014604891184717417,
- 0.005599509458988905,
- 0.0038998231757432222
- ]
- },
- {
- "keyword": "note",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.020752795040607452,
- 0.03320913016796112,
- 0.022178981453180313,
- 0.003675864078104496,
- 0.02549818903207779,
- -0.06481125205755234,
- 0.01832575350999832,
- 0.07385661453008652,
- -0.08123336732387543,
- 0.003405285533517599,
- 0.025216631591320038,
- 0.019493468105793,
- 0.002611062955111265,
- 0.011449525132775307,
- 0.022923564538359642,
- -0.0031702700071036816,
- 0.029536033049225807,
- -0.1137787327170372,
- -0.06304890662431717,
- 0.025765754282474518,
- -0.04955841228365898,
- 0.002995321061462164,
- 0.04857269302010536,
- -0.002592426026239991,
- -0.016470622271299362,
- 0.05007185786962509,
- -0.013876033946871758,
- 0.0472443550825119,
- 0.030014779418706894,
- -0.025990206748247147,
- -0.015186804346740246,
- -0.004688879009336233,
- 0.09869254380464554,
- 0.016726024448871613,
- 0.03511654585599899,
- 0.030131662264466286,
- 0.014387287199497223,
- 0.004122897982597351,
- 0.023768087849020958,
- -0.0075898850336670876,
- -0.013732518069446087,
- -0.05777197331190109,
- 0.040500205010175705,
- -0.01611149311065674,
- 0.03524678573012352,
- 0.0021404994186013937,
- -0.08338897675275803,
- 0.00794618483632803,
- 0.03743171691894531,
- -0.022552434355020523,
- 0.03265544772148132,
- -0.015711547806859016,
- -0.04705047607421875,
- -0.03137606009840965,
- 0.03476986289024353,
- 0.015666678547859192,
- 0.01670064590871334,
- -0.010078356601297855,
- 0.004659073892980814,
- -0.02882138080894947,
- 0.1567746251821518,
- -0.019824828952550888,
- -0.08749337494373322,
- -0.03873160108923912,
- -0.09217384457588196,
- 0.02517889440059662,
- -0.012705832719802856,
- 0.0037811666261404753,
- -0.11266796290874481,
- -0.060792963951826096,
- 0.02282276749610901,
- 0.014607084915041924,
- -0.05513783171772957,
- 0.00725997518748045,
- -0.007689469959586859,
- 0.028207620605826378,
- 0.05581642687320709,
- -0.02315826155245304,
- 0.045236967504024506,
- -0.010682136751711369,
- 0.0027554070111364126,
- -0.015243446454405785,
- -0.039139535278081894,
- 0.017627712339162827,
- -0.0075326841324567795,
- -0.0334184393286705,
- -0.020459715276956558,
- -0.054860956966876984,
- 0.010989774949848652,
- 0.08246966451406479,
- 0.005925552453845739,
- 0.03135180473327637,
- 0.02712206169962883,
- 0.02127494290471077,
- -0.03133950009942055,
- 0.015377874486148357,
- -0.004270465113222599,
- -0.02425203286111355,
- -0.08807441592216492,
- 0.26807376742362976,
- 0.014734713360667229,
- 0.0630708560347557,
- 0.030662773177027702,
- 0.09208390861749649,
- -0.05093059316277504,
- -0.03945495933294296,
- -0.058448269963264465,
- 0.026344014331698418,
- 0.05584214627742767,
- -0.04822864383459091,
- -0.008741641417145729,
- -0.01600703038275242,
- -0.007464733440428972,
- 0.0018760793609544635,
- 0.054613515734672546,
- -0.032698601484298706,
- 0.022783124819397926,
- 0.0019352277740836143,
- 0.07427427917718887,
- 0.07464934140443802,
- 0.033375728875398636,
- 0.03088354505598545,
- -0.08160630613565445,
- -0.017044685781002045,
- -0.06906908005475998,
- -0.09241761267185211,
- -0.046916522085666656,
- -4.019950438154274e-33,
- -0.0388052873313427,
- -0.02089754305779934,
- -0.028726913034915924,
- -0.0373828262090683,
- 0.07358305901288986,
- 0.04049347713589668,
- -0.05660384148359299,
- -0.021795714274048805,
- -0.08837602287530899,
- -0.027131153270602226,
- -0.024946870282292366,
- -0.11514965444803238,
- 0.017369769513607025,
- 0.062109559774398804,
- 0.026533225551247597,
- 0.04291299358010292,
- 0.005357959307730198,
- 0.11209426075220108,
- 0.05854865163564682,
- 0.06077020987868309,
- -0.004479569848626852,
- 0.005291896406561136,
- 0.04102655127644539,
- 0.048262808471918106,
- -0.005117416847497225,
- -0.026349617168307304,
- 0.029091402888298035,
- -0.08036419749259949,
- 0.009584592655301094,
- -0.007022807374596596,
- -0.04769075661897659,
- -0.027264097705483437,
- 0.03714439272880554,
- -0.0284962709993124,
- -0.054068729281425476,
- -0.04007963836193085,
- 0.04701709374785423,
- -0.0671626627445221,
- 0.013647171668708324,
- -0.033939771354198456,
- 0.0026406270917505026,
- 0.0630355104804039,
- -0.07806716859340668,
- -0.03378991782665253,
- 0.04547084867954254,
- 0.08237003535032272,
- 0.0313156396150589,
- 0.05432068556547165,
- 0.10938546806573868,
- 0.03306625038385391,
- -0.000698226853273809,
- 0.011529711075127125,
- -0.0878923311829567,
- 0.038251545280218124,
- -0.0028332320507615805,
- -0.028313837945461273,
- 0.05033661425113678,
- -0.03168858215212822,
- -0.018426863476634026,
- -0.02483161725103855,
- 0.010939826257526875,
- 0.025714179500937462,
- -0.020037958398461342,
- 0.014350168406963348,
- -0.0596737265586853,
- -0.04071240872144699,
- -0.005180777981877327,
- -0.012512988410890102,
- -0.009277751669287682,
- -0.009422577917575836,
- -0.08769124746322632,
- 0.026134943589568138,
- 0.08416798710823059,
- 0.00886301975697279,
- -0.050742942839860916,
- -0.05400665104389191,
- 0.05073460191488266,
- 0.03355647251009941,
- 0.03448469564318657,
- 0.022182254120707512,
- 0.032482899725437164,
- -0.07045867294073105,
- 0.01652740128338337,
- -0.015391525812447071,
- 0.04266202077269554,
- 0.017528032884001732,
- 0.03106144815683365,
- -0.22388537228107452,
- -0.023320674896240234,
- -0.0046712118200957775,
- -0.07946893572807312,
- -0.040194928646087646,
- 0.052274204790592194,
- 0.025010915473103523,
- -0.07092864066362381,
- 3.833943150816032e-33,
- -0.055027712136507034,
- 0.01373306754976511,
- -0.0969979390501976,
- 0.08362247049808502,
- -0.04096733406186104,
- 0.07547952234745026,
- 0.025643156841397285,
- 0.016666095703840256,
- -0.023987388238310814,
- 0.05901525169610977,
- -0.03924380615353584,
- 0.0200918260961771,
- 0.006980272475630045,
- 0.018762638792395592,
- 0.045809872448444366,
- -0.01947946473956108,
- 0.049434076994657516,
- -0.007686142344027758,
- -0.04572875052690506,
- -0.008808176964521408,
- -0.03842170163989067,
- -0.015016146935522556,
- -0.009424334391951561,
- 0.06947479397058487,
- -0.01823120191693306,
- 0.061439529061317444,
- 0.032446786761283875,
- -0.0436551570892334,
- -0.02630455419421196,
- 0.0189125407487154,
- 0.042604077607393265,
- -0.0008969373884610832,
- -0.11224102228879929,
- -0.074872687458992,
- 0.01592773199081421,
- 0.07127724587917328,
- 0.10030750930309296,
- -0.041773855686187744,
- -0.011266132816672325,
- 0.049206655472517014,
- 0.07914124429225922,
- 0.08249067515134811,
- 0.06476268917322159,
- 0.15395000576972961,
- -0.06460687518119812,
- 0.03107943944633007,
- 0.02912270464003086,
- -0.02564251609146595,
- -0.052154481410980225,
- 0.020610235631465912,
- -0.06299388408660889,
- -0.009667333215475082,
- -0.001419372041709721,
- -0.012058870866894722,
- -0.09153231233358383,
- 0.019443584606051445,
- 0.03265836089849472,
- -0.0533645898103714,
- -0.05170914903283119,
- -0.030990002676844597,
- -0.026206206530332565,
- 0.037543781101703644,
- -0.041448112577199936,
- -0.029459115117788315,
- 0.0011545944726094604,
- 0.04045986756682396,
- -0.020257534459233284,
- -0.008497161790728569,
- 0.0268549881875515,
- 0.008789831772446632,
- 0.10896707326173782,
- 0.028765857219696045,
- -0.07594326883554459,
- -0.055894266813993454,
- 0.026770297437906265,
- -0.05997437983751297,
- -0.07020500302314758,
- 0.020702868700027466,
- -0.013604468666017056,
- -0.05697471275925636,
- 0.000037152611184865236,
- -0.018320303410291672,
- 0.013264999724924564,
- 0.03308115899562836,
- 0.061020538210868835,
- -0.03196457400918007,
- 0.028318539261817932,
- -0.04469887167215347,
- -0.047596145421266556,
- 0.07771434634923935,
- -0.02415340207517147,
- 0.06352264434099197,
- 0.10290258377790451,
- -0.0036500846035778522,
- -0.04841967299580574,
- -1.3621854755285767e-8,
- -0.07817701995372772,
- 0.09096335619688034,
- -0.0188389103859663,
- -0.07805544137954712,
- 0.04061425104737282,
- 0.004270282573997974,
- -0.04815676063299179,
- -0.03631369397044182,
- 0.02068905159831047,
- 0.11049798876047134,
- 0.0862693190574646,
- -0.04541313648223877,
- -0.0026841238141059875,
- 0.0027544000186026096,
- 0.0363931804895401,
- -0.02781229093670845,
- -0.04755238816142082,
- 0.06894969940185547,
- -0.06962168961763382,
- -0.05265407636761665,
- -0.07040359824895859,
- -0.004669815301895142,
- -0.019985834136605263,
- -0.02678670734167099,
- -0.022611599415540695,
- 0.010602915659546852,
- -0.0015118904411792755,
- 0.15126708149909973,
- 0.058377355337142944,
- 0.025638429448008537,
- -0.025578152388334274,
- 0.011333677917718887,
- 0.04955142363905907,
- -0.03771119564771652,
- 0.04038219153881073,
- -0.0023520844988524914,
- 0.00984157994389534,
- 0.017536524683237076,
- 0.05807565152645111,
- 0.09813763946294785,
- -0.024252288043498993,
- 0.03499726206064224,
- -0.05191050097346306,
- 0.025866573676466942,
- 0.05991178750991821,
- -0.03811485692858696,
- -0.025642648339271545,
- -0.01955055445432663,
- -0.006363542750477791,
- -0.028583355247974396,
- -0.037892334163188934,
- 0.09293576329946518,
- 0.0039382148534059525,
- 0.06182781979441643,
- 0.008311751298606396,
- 0.04543470963835716,
- 0.03342161327600479,
- 0.04474111273884773,
- 0.0036681280471384525,
- 0.03324682638049126,
- 0.14534097909927368,
- -0.0026947318110615015,
- 0.05640595406293869,
- 0.04826505854725838
- ]
- },
- {
- "keyword": "memo",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.035051845014095306,
- 0.09181705862283707,
- -0.02974340319633484,
- 0.005726881790906191,
- -0.04830889031291008,
- 0.06300442665815353,
- 0.06131752207875252,
- 0.01794171892106533,
- 0.01014577317982912,
- -0.03211906924843788,
- 0.037102244794368744,
- 0.042417678982019424,
- 0.020305730402469635,
- 0.01530072744935751,
- 0.005099454429000616,
- 0.032586224377155304,
- 0.009123590774834156,
- 0.04389908164739609,
- -0.0419829897582531,
- -0.020365949720144272,
- 0.007735129911452532,
- 0.05139823630452156,
- 0.09448087215423584,
- 0.052676230669021606,
- -0.008220107294619083,
- 0.10499633848667145,
- -0.02841532602906227,
- -0.035870686173439026,
- 0.004017981700599194,
- -0.06994841247797012,
- 0.03180268034338951,
- 0.03916402906179428,
- 0.02178783155977726,
- 0.015230448916554451,
- 0.032873786985874176,
- 0.01530403085052967,
- -0.1442253589630127,
- 0.04737485572695732,
- 0.049614183604717255,
- -0.061734605580568314,
- -0.07890816777944565,
- -0.008201606571674347,
- 0.0035649591591209173,
- -0.011355423368513584,
- 0.006171983666718006,
- 0.05013704299926758,
- -0.012955715879797935,
- 0.008046703413128853,
- -0.03713011369109154,
- 0.06755175441503525,
- -0.02357253059744835,
- 0.04894444718956947,
- -0.07627105712890625,
- 0.04589013010263443,
- -0.004408424720168114,
- 0.06624037772417068,
- 0.06119098141789436,
- -0.012256639078259468,
- -0.026522062718868256,
- 0.005325025878846645,
- 0.022620754316449165,
- -0.08816216140985489,
- -0.0822528600692749,
- -0.04441644623875618,
- -0.08267351239919662,
- -0.01180181372910738,
- 0.036449894309043884,
- 0.06550931185483932,
- -0.03944775462150574,
- 0.025892246514558792,
- 0.019366813823580742,
- 0.039816807955503464,
- -0.0327318012714386,
- -0.05105050280690193,
- 0.02812342159450054,
- -0.0158358346670866,
- -0.005744929425418377,
- -0.02428659424185753,
- 0.03839574754238129,
- -0.07503540068864822,
- -0.04698789864778519,
- 0.0193564984947443,
- 0.0011649586958810687,
- -0.040737349539995193,
- 0.04582042619585991,
- -0.010365155525505543,
- 0.025053758174180984,
- -0.001113112666644156,
- -0.06424092501401901,
- 0.013672107830643654,
- 0.0097479447722435,
- -0.026415470987558365,
- 0.019701233133673668,
- -0.05351017415523529,
- -0.08650396019220352,
- -0.009788069874048233,
- -0.013028617948293686,
- 0.015902619808912277,
- -0.07215271145105362,
- 0.2186325043439865,
- 0.0702202320098877,
- 0.13028311729431152,
- -0.0918944701552391,
- -0.03192170336842537,
- 0.03597288578748703,
- 0.011375674046576023,
- -0.021132977679371834,
- -0.03391864523291588,
- 0.03632931783795357,
- 0.027564873918890953,
- 0.011038471944630146,
- 0.023904314264655113,
- -0.013176416978240013,
- 0.047125644981861115,
- 0.010425140149891376,
- -0.024774372577667236,
- -0.05291692912578583,
- -0.013931412249803543,
- 0.01705838553607464,
- 0.07613596320152283,
- 0.036227013915777206,
- -0.0034665470011532307,
- -0.030807334929704666,
- 0.08971158415079117,
- -0.11407574266195297,
- -0.10313476622104645,
- 0.06994481384754181,
- -5.309937204062683e-33,
- 0.05267823487520218,
- -0.016315564513206482,
- -0.05195493996143341,
- 0.02263541705906391,
- 0.05600921809673309,
- 0.02314119227230549,
- -0.03262042626738548,
- -0.020490147173404694,
- -0.05323654040694237,
- -0.0291257593780756,
- -0.03077259473502636,
- 0.011514417827129364,
- -0.01606498844921589,
- 0.021209416911005974,
- 0.03450654074549675,
- 0.008560209535062313,
- -0.14977407455444336,
- 0.04503658041357994,
- 0.012244483456015587,
- -0.007701515685766935,
- -0.019055821001529694,
- 0.05976339429616928,
- 0.07080597430467606,
- 0.019584201276302338,
- 0.006467857398092747,
- -0.06711666285991669,
- -0.01925589330494404,
- -0.004040370229631662,
- 0.05781128630042076,
- 0.022820215672254562,
- -0.005716640502214432,
- 0.019083213061094284,
- -0.028569314628839493,
- -0.021999511867761612,
- 0.04259919002652168,
- 0.03579897806048393,
- -0.010262137278914452,
- -0.07191640138626099,
- 0.01418271753937006,
- -0.08715765178203583,
- -0.045701295137405396,
- 0.050157856196165085,
- -0.09576564282178879,
- -0.0521535687148571,
- -0.051526594907045364,
- 0.015635717660188675,
- 0.09273146092891693,
- -0.015020662918686867,
- 0.09838162362575531,
- -0.014374864287674427,
- -0.018624089658260345,
- -0.06276857852935791,
- -0.03221706300973892,
- -0.06373029947280884,
- -0.006683449726551771,
- -0.020074455067515373,
- -0.011523162014782429,
- 0.01347514521330595,
- 0.010781606659293175,
- 0.035924192517995834,
- 0.04353078082203865,
- 0.07146133482456207,
- 0.02491520158946514,
- 0.08639933913946152,
- -0.08206074684858322,
- -0.015819126740098,
- -0.018184445798397064,
- 0.040517110377550125,
- 0.05127774551510811,
- -0.055185943841934204,
- 0.02985287271440029,
- -0.0613422617316246,
- -0.024486951529979706,
- 0.018376339226961136,
- 0.0019482857314869761,
- -0.03154018521308899,
- 0.14184162020683289,
- -0.008059278130531311,
- -0.05360031872987747,
- -0.07734414935112,
- -0.02733023650944233,
- -0.031918033957481384,
- 0.024031080305576324,
- 0.0322452113032341,
- 0.0303624477237463,
- 0.017621172592043877,
- 0.035970546305179596,
- -0.039406634867191315,
- -0.022047894075512886,
- 0.07426972687244415,
- -0.08138404786586761,
- -0.023941829800605774,
- 0.13667325675487518,
- 0.03087257593870163,
- -0.033851295709609985,
- 3.9469974220323196e-33,
- -0.021450914442539215,
- -0.006566647440195084,
- 0.0066149309277534485,
- 0.05395811051130295,
- -0.02166130766272545,
- -0.0358586311340332,
- -0.04124988615512848,
- 0.04416987672448158,
- -0.04311711713671684,
- -0.03360817953944206,
- -0.05630012974143028,
- -0.02578805387020111,
- -0.028615398332476616,
- 0.012238216586411,
- 0.030130023136734962,
- -0.05111481621861458,
- 0.05907135829329491,
- -0.017566928640007973,
- -0.0267045721411705,
- 0.059593625366687775,
- -0.03642696887254715,
- -0.02207282930612564,
- 0.019500287249684334,
- 0.0421111136674881,
- -0.07230821996927261,
- 0.07215472310781479,
- -0.008652620017528534,
- -0.08595594763755798,
- -0.030857669189572334,
- -0.059060655534267426,
- 0.06331662088632584,
- 0.006500964052975178,
- -0.08269286155700684,
- 0.07295742630958557,
- -0.031602974981069565,
- -0.02988099306821823,
- 0.08785343915224075,
- 0.029694726690649986,
- -0.044430360198020935,
- 0.04400678724050522,
- 0.06710220873355865,
- 0.045152697712183,
- -0.019113115966320038,
- 0.11493378132581711,
- -0.010103932581841946,
- -0.05039437487721443,
- -0.08363129943609238,
- 0.041937097907066345,
- -0.00021803987328894436,
- 0.06614203751087189,
- -0.08133067935705185,
- -0.002793113235384226,
- -0.04168860241770744,
- -0.035571470856666565,
- -0.0443153977394104,
- -0.023120762780308723,
- 0.01035773754119873,
- -0.05973183736205101,
- 0.028436023741960526,
- -0.02831942029297352,
- -0.011067382991313934,
- 0.05453687533736229,
- -0.02972181886434555,
- -0.02023863047361374,
- -0.007469046860933304,
- -0.010837146081030369,
- -0.006437435746192932,
- -0.00019227054144721478,
- -0.07939167320728302,
- 0.1312653124332428,
- 0.03775903582572937,
- 0.044740717858076096,
- -0.13112890720367432,
- 0.0029558073729276657,
- 0.0420791432261467,
- 0.014965079724788666,
- -0.09796127676963806,
- -0.02504315972328186,
- -0.0714767724275589,
- -0.07271448522806168,
- -0.04633300006389618,
- 0.009144116193056107,
- -0.06199825555086136,
- 0.05759197846055031,
- -0.05093654990196228,
- -0.019739748910069466,
- 0.06441421061754227,
- 0.004714637063443661,
- -0.0644940659403801,
- 0.024732330814003944,
- 0.015051069669425488,
- -0.05355770140886307,
- 0.031585462391376495,
- 0.009673644788563251,
- 0.009505899623036385,
- -1.2445087627099838e-8,
- -0.04940912872552872,
- -0.0029801682103425264,
- 0.07781441509723663,
- -0.029630251228809357,
- 0.07288064807653427,
- -0.05973657965660095,
- -0.0761350616812706,
- 0.04788986220955849,
- 0.025519080460071564,
- -0.040837034583091736,
- 0.08481130748987198,
- 0.011121784336864948,
- -0.08060827106237411,
- -0.016744514927268028,
- 0.01674913614988327,
- 0.0004148557782173157,
- -0.01871745102107525,
- -0.008950097486376762,
- -0.02976064570248127,
- -0.023332519456744194,
- -0.06526929885149002,
- 0.04168791323900223,
- 0.022521141916513443,
- 0.03149816766381264,
- -0.004298493266105652,
- -0.004976626485586166,
- 0.04732919856905937,
- 0.17057360708713531,
- 0.054603371769189835,
- -0.020605571568012238,
- 0.014374328777194023,
- 0.04180068522691727,
- 0.05368077754974365,
- -0.07100067287683487,
- 0.03441448509693146,
- -0.01916344277560711,
- 0.08876438438892365,
- 0.002707394538447261,
- 0.0807587057352066,
- -0.040116652846336365,
- -0.04998304694890976,
- 0.02311905287206173,
- 0.06278249621391296,
- 0.027930643409490585,
- 0.006165444850921631,
- -0.02736872434616089,
- 0.004758290946483612,
- -0.03848531097173691,
- -0.06062658503651619,
- -0.026923635974526405,
- -0.050895847380161285,
- 0.07012029737234116,
- 0.037300437688827515,
- 0.1327887624502182,
- 0.027125045657157898,
- 0.05704040452837944,
- -0.004846234805881977,
- -0.003143339417874813,
- -0.03153892606496811,
- -0.03759973123669624,
- 0.14477574825286865,
- 0.04421192780137062,
- -0.008657568134367466,
- 0.026583852246403694
- ]
- },
- {
- "keyword": "message",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.002884788205847144,
- 0.011118643917143345,
- 0.01341329887509346,
- 0.06894446164369583,
- 0.061336252838373184,
- -0.030970390886068344,
- 0.10291696339845657,
- 0.05890956148505211,
- 0.0198769960552454,
- 0.021145332604646683,
- -0.0025719639379531145,
- -0.055737484246492386,
- 0.01902064122259617,
- 0.06677093356847763,
- -0.006174677982926369,
- 0.05761637166142464,
- -0.004271442070603371,
- -0.0946938544511795,
- -0.1407264769077301,
- 0.06250182539224625,
- -0.018954627215862274,
- 0.017416656017303467,
- -0.03620130941271782,
- 0.03416841849684715,
- -0.03212175890803337,
- -0.0167374387383461,
- -0.05527546629309654,
- 0.06338615715503693,
- -0.06256920844316483,
- -0.03755941614508629,
- -0.0030224299989640713,
- -0.035123560577631,
- 0.1437336653470993,
- 0.04160896688699722,
- 0.07488899677991867,
- 0.05507470294833183,
- -0.024075141176581383,
- 0.020084064453840256,
- -0.0038686306215822697,
- -0.017177477478981018,
- -0.027127545326948166,
- -0.03864823281764984,
- -0.04944953694939613,
- 0.054064907133579254,
- 0.01481747068464756,
- -0.011043835431337357,
- -0.03943900763988495,
- 0.029068876057863235,
- 0.04904325306415558,
- 0.0209744181483984,
- -0.009725679643452168,
- 0.005687887780368328,
- 0.010174200870096684,
- 0.045314230024814606,
- 0.05250468850135803,
- 0.02001095563173294,
- -0.06398073583841324,
- 0.06288044154644012,
- 0.025784537196159363,
- -0.03149958327412605,
- 0.11096607893705368,
- 0.008230013772845268,
- -0.09692362695932388,
- -0.023653516545891762,
- 0.029253017157316208,
- -0.013774381019175053,
- -0.060035835951566696,
- -0.022677991539239883,
- -0.10067345201969147,
- -0.05742441490292549,
- 0.025493856519460678,
- 0.07127299904823303,
- -0.0505402497947216,
- 0.0015886063920333982,
- 0.00912016723304987,
- -0.0011039027012884617,
- -0.02016650140285492,
- -0.026447391137480736,
- 0.0219623651355505,
- -0.011768851429224014,
- -0.04885871708393097,
- -0.02503739856183529,
- -0.011974821798503399,
- 0.005905947647988796,
- 0.03365187719464302,
- 0.0040171402506530285,
- -0.045850615948438644,
- 0.014652997255325317,
- -0.007671228144317865,
- 0.012634268030524254,
- 0.017291389405727386,
- 0.05495184287428856,
- 0.011444349773228168,
- 0.03220924735069275,
- -0.059024423360824585,
- 0.016351336613297462,
- -0.030046937987208366,
- 0.0006321268738247454,
- -0.08968979865312576,
- 0.23320969939231873,
- -0.004033607430756092,
- -0.006864681374281645,
- 0.05252084508538246,
- -0.05992647260427475,
- -0.01927817612886429,
- 0.02467040717601776,
- -0.04631856083869934,
- 0.04975241422653198,
- -0.0205855593085289,
- -0.03119594231247902,
- -0.027543023228645325,
- 0.026368293911218643,
- 0.02014663815498352,
- 0.03865867853164673,
- 0.06495103240013123,
- 0.023906392976641655,
- -0.053929466754198074,
- -0.02341129630804062,
- 0.07745508849620819,
- -0.05265626311302185,
- -0.03816772624850273,
- -0.07172971963882446,
- -0.03405307978391647,
- -0.018481235951185226,
- -0.03760391101241112,
- -0.09270518273115158,
- 0.06456483900547028,
- -3.570985799221056e-33,
- 0.01664665900170803,
- 0.0391649454832077,
- 0.01698308065533638,
- 0.17394796013832092,
- 0.042535003274679184,
- 0.0242451224476099,
- 0.050782207399606705,
- -0.033293675631284714,
- -0.07981287688016891,
- -0.012020367197692394,
- -0.03483303263783455,
- -0.006732850335538387,
- -0.006236114539206028,
- -0.045975279062986374,
- 0.04254491627216339,
- -0.054197099059820175,
- 0.026089102029800415,
- 0.0014018354704603553,
- 0.04760338366031647,
- -0.019308021292090416,
- -0.03557174280285835,
- 0.02033965103328228,
- -0.04590388014912605,
- 0.07200831919908524,
- -0.048615340143442154,
- 0.01820840872824192,
- 0.04734346643090248,
- -0.10324383527040482,
- -0.005232198163866997,
- 0.026182712987065315,
- -0.016834769397974014,
- 0.0179910771548748,
- 0.05259702354669571,
- 0.02746116928756237,
- 0.018397841602563858,
- 0.02237490564584732,
- 0.003357684938237071,
- -0.0269140787422657,
- -0.01382326241582632,
- -0.06886373460292816,
- 0.05244552344083786,
- -0.0491509884595871,
- -0.03897380083799362,
- -0.028182324022054672,
- 0.009728663600981236,
- -0.0034810914658010006,
- 0.09500483423471451,
- 0.026275089010596275,
- 0.03611301630735397,
- 0.011920241639018059,
- -0.03365607187151909,
- -0.007564150262624025,
- -0.08165948837995529,
- -0.046149615198373795,
- -0.05766379460692406,
- -0.02095557004213333,
- 0.020430412143468857,
- 0.0049549853429198265,
- -0.07505190372467041,
- -0.061890609562397,
- 0.06620573252439499,
- 0.07494369894266129,
- 0.03799884393811226,
- -0.03654980659484863,
- 0.0034825713373720646,
- -0.12708215415477753,
- -0.019313616678118706,
- -0.0795038491487503,
- -0.058918196707963943,
- -0.11702234297990799,
- -0.06977803260087967,
- 0.014610842801630497,
- 0.11166750639677048,
- 0.0413193516433239,
- -0.007963781245052814,
- -0.048674408346414566,
- -0.0007416994194500148,
- 0.0493655800819397,
- 0.020719926804304123,
- 0.04545658826828003,
- -0.06931283324956894,
- -0.015803895890712738,
- -0.06272310763597488,
- -0.008461401797831059,
- 0.08159308135509491,
- 0.05257885158061981,
- -0.02031588740646839,
- -0.06089460477232933,
- 0.0266116950660944,
- 0.07755204290151596,
- -0.13548368215560913,
- -0.02581886015832424,
- 0.08162518590688705,
- 0.09842066466808319,
- -0.015358427539467812,
- 4.1295840208096685e-33,
- -0.010520560666918755,
- 0.0374787412583828,
- -0.06464307010173798,
- -0.021955545991659164,
- 0.1052749902009964,
- 0.03109719045460224,
- 0.07112277299165726,
- 0.03711432218551636,
- -0.06782417744398117,
- 0.050193317234516144,
- -0.04210945591330528,
- 0.039827145636081696,
- 0.011875898577272892,
- -0.04565367475152016,
- 0.008755671791732311,
- 0.025482455268502235,
- 0.06782311201095581,
- -0.019134432077407837,
- -0.007262664381414652,
- -0.014293760992586613,
- -0.0467645488679409,
- 0.028796905651688576,
- -0.03580211102962494,
- 0.01065724715590477,
- -0.03050484135746956,
- 0.015398637391626835,
- 0.08927802741527557,
- 0.011605060659348965,
- 0.001722013927064836,
- -0.008491957560181618,
- 0.10325466096401215,
- 0.030804075300693512,
- 0.015856415033340454,
- 0.01960054412484169,
- -0.0015921368030831218,
- 0.047718171030282974,
- 0.12612050771713257,
- -0.009234513156116009,
- -0.07922448962926865,
- 0.09816358983516693,
- 0.04902896285057068,
- 0.04014410078525543,
- -0.06474889814853668,
- 0.07127953320741653,
- -0.04897366836667061,
- 0.047507837414741516,
- 0.03690014034509659,
- -0.06102798879146576,
- 0.029801394790410995,
- 0.09826665371656418,
- 0.016585199162364006,
- 0.00027101734303869307,
- 0.1094125360250473,
- 0.040792983025312424,
- -0.011646034196019173,
- 0.01802707649767399,
- 0.03675138205289841,
- 0.012040735222399235,
- -0.002188313752412796,
- -0.018803102895617485,
- 0.004655851051211357,
- -0.07785295695066452,
- 0.01612124778330326,
- 0.023975558578968048,
- 0.045554161071777344,
- 0.06346942484378815,
- 0.026125555858016014,
- -0.0015474101528525352,
- 0.033114511519670486,
- 0.015984833240509033,
- 0.014479216188192368,
- -0.07752981036901474,
- -0.06292648613452911,
- 0.05315858870744705,
- 0.057146478444337845,
- -0.07192077487707138,
- -0.02745700813829899,
- -0.017259620130062103,
- -0.05285760760307312,
- -0.013520942069590092,
- 0.0028474577702581882,
- -0.07626929134130478,
- -0.004126573447138071,
- 0.06438212841749191,
- 0.026948904618620872,
- -0.09510805457830429,
- 0.06566708534955978,
- 0.10327078402042389,
- -0.03841404989361763,
- -0.03439825773239136,
- -0.07585679739713669,
- -0.013382080011069775,
- 0.05487025901675224,
- -0.014471114613115788,
- 0.020734677091240883,
- -1.3274239485383532e-8,
- -0.03037729114294052,
- -0.012041142210364342,
- 0.02430572547018528,
- -0.027473153546452522,
- 0.06661298125982285,
- 0.06727452576160431,
- -0.060624655336141586,
- 0.0005980200367048383,
- -0.018702292814850807,
- 0.03360212594270706,
- -0.022523583844304085,
- 0.0038935632910579443,
- 0.007160448003560305,
- -0.01287129707634449,
- 0.016584785655140877,
- -0.07726290076971054,
- -0.0957675650715828,
- 0.02641843631863594,
- -0.005721383728086948,
- -0.08151602745056152,
- 0.0463322214782238,
- 0.02023748867213726,
- 0.016254547983407974,
- 0.02090742252767086,
- -0.017781060189008713,
- 0.001479156082496047,
- 0.0526813305914402,
- 0.1192588359117508,
- -0.09230787307024002,
- -0.053381629288196564,
- 0.01006189826875925,
- 0.015534243546426296,
- 0.026148397475481033,
- -0.06229813024401665,
- 0.00293877930380404,
- -0.0025374365504831076,
- -0.05663902685046196,
- -0.00904243066906929,
- 0.0254791472107172,
- 0.04629332572221756,
- 0.06522803008556366,
- -0.004061706829816103,
- -0.04215512424707413,
- -0.04554088041186333,
- -0.02917110174894333,
- 0.05184576287865639,
- 0.003925659228116274,
- -0.09391582012176514,
- -0.026414843276143074,
- 0.07370194047689438,
- -0.050212737172842026,
- -0.021891849115490913,
- -0.013291480019688606,
- -0.02091573365032673,
- -0.04446184262633324,
- -0.0067295171320438385,
- 0.07824787497520447,
- 0.03112388402223587,
- -0.046260442584753036,
- 0.052896831184625626,
- 0.10450322926044464,
- 0.02624683454632759,
- -0.0598764643073082,
- -0.0678209662437439
- ]
- },
- {
- "keyword": "email",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05935780331492424,
- 0.015885304659605026,
- 0.04582023620605469,
- 0.027421722188591957,
- 0.06735467910766602,
- -0.019613973796367645,
- 0.07481139153242111,
- -0.021739332005381584,
- 0.030790463089942932,
- 0.03436243161559105,
- -0.07958155125379562,
- -0.007944979704916477,
- -0.021988851949572563,
- 0.00005927797610638663,
- 0.00602725287899375,
- 0.06635817885398865,
- -0.018028978258371353,
- -0.0244128555059433,
- -0.10077071189880371,
- 0.001876870053820312,
- -0.06051034852862358,
- -0.04847124591469765,
- 0.018024757504463196,
- 0.013593045063316822,
- -0.020684201270341873,
- -0.04999937489628792,
- -0.07636133581399918,
- 0.051307905465364456,
- -0.10988646000623703,
- -0.06380929052829742,
- 0.0599822998046875,
- -0.02259434387087822,
- 0.07166993618011475,
- 0.017997238785028458,
- -0.01108589582145214,
- 0.01841726526618004,
- 0.015902558341622353,
- 0.06276439875364304,
- -0.043528106063604355,
- -0.07161790877580643,
- -0.0756080225110054,
- -0.062272150069475174,
- -0.0034417316783219576,
- -0.0045898957177996635,
- 0.03594155237078667,
- -0.00835341401398182,
- 0.051454998552799225,
- 0.05827696993947029,
- -0.02515888400375843,
- 0.008750127628445625,
- 0.013531826436519623,
- -0.09159354120492935,
- 0.021640801802277565,
- 0.04635266214609146,
- 0.0311870314180851,
- 0.018966125324368477,
- -0.04877325892448425,
- 0.02534051053225994,
- 0.009757923893630505,
- -0.016940969973802567,
- 0.02578946202993393,
- 0.0043858797289431095,
- -0.05293434113264084,
- 0.015914669260382652,
- 0.009886447340250015,
- -0.07246852666139603,
- 0.011933463625609875,
- 0.05918120965361595,
- -0.0082883695140481,
- -0.08288305252790451,
- -0.07602235674858093,
- 0.007010848261415958,
- -0.04599914327263832,
- 0.06870527565479279,
- 0.09118600934743881,
- -0.030207538977265358,
- 0.02274494431912899,
- 0.006625014822930098,
- 0.03970455750823021,
- 0.12370892614126205,
- -0.06139395758509636,
- 0.032745715230703354,
- -0.04834035038948059,
- -0.014199553057551384,
- 0.09839683771133423,
- 0.030556131154298782,
- 0.026496073231101036,
- 0.02419034205377102,
- -0.0632757693529129,
- 0.02127845026552677,
- 0.0035456924233585596,
- 0.03492102771997452,
- -0.03145374357700348,
- 0.01777273789048195,
- -0.027856241911649704,
- 0.03846510127186775,
- 0.026230463758111,
- -0.025176703929901123,
- -0.09160536527633667,
- 0.2896977365016937,
- 0.06985004246234894,
- 0.07418080419301987,
- -0.00146987265907228,
- -0.054733820259571075,
- 0.012327771633863449,
- 0.00001990388409467414,
- -0.04545559734106064,
- 0.09472927451133728,
- -0.06287015229463577,
- -0.040942441672086716,
- -0.014640338718891144,
- -0.0036689983680844307,
- -0.029384393244981766,
- -0.018798604607582092,
- 0.05509315803647041,
- -0.04833820089697838,
- -0.020529691129922867,
- 0.10086076706647873,
- 0.1530984342098236,
- 0.022769229486584663,
- -0.06260547041893005,
- -0.021931100636720657,
- -0.02791898511350155,
- -0.03515319153666496,
- -0.04811795428395271,
- -0.13696537911891937,
- 0.04432449862360954,
- -3.756060037918332e-33,
- 0.005455487407743931,
- -0.00321810320019722,
- 0.06443192809820175,
- 0.0383036732673645,
- -0.0624944306910038,
- 0.022986041381955147,
- 0.02882925420999527,
- 0.007970602251589298,
- -0.06678768247365952,
- -0.041386984288692474,
- -0.11269741505384445,
- 0.07524756342172623,
- 0.09276305884122849,
- -0.013409921899437904,
- -0.018276533111929893,
- 0.017586486414074898,
- 0.03010583482682705,
- 0.02612803317606449,
- 0.0673983097076416,
- -0.06808189302682877,
- -0.0004509512218646705,
- -0.0018331838073208928,
- -0.0023468146100640297,
- 0.09291514754295349,
- 0.032352134585380554,
- -0.01224992424249649,
- 0.05926581472158432,
- -0.017415611073374748,
- 0.03941724821925163,
- 0.03260281682014465,
- -0.03871612623333931,
- 0.0020965924486517906,
- -0.046844854950904846,
- 0.047877538949251175,
- 0.026888741180300713,
- 0.0303210262209177,
- 0.008945918641984463,
- -0.04358045384287834,
- 0.05867219343781471,
- -0.024149291217327118,
- 0.03913811594247818,
- 0.01681344583630562,
- 0.007357096765190363,
- 0.010622642934322357,
- -0.05015711486339569,
- 0.06130722537636757,
- 0.15305718779563904,
- -0.007273506838828325,
- 0.09175102412700653,
- -0.02053358405828476,
- 0.022789418697357178,
- -0.04142338037490845,
- -0.07971590012311935,
- -0.028637805953621864,
- -0.03604995831847191,
- -0.004739478696137667,
- 0.034128203988075256,
- -0.034965578466653824,
- 0.05067550763487816,
- -0.037526074796915054,
- 0.005547369364649057,
- 0.07910813391208649,
- 0.018779855221509933,
- -0.015461341477930546,
- -0.022966763004660606,
- -0.11814793199300766,
- -0.03682169318199158,
- -0.11823341995477676,
- 0.04247719794511795,
- -0.04709457606077194,
- -0.02158270962536335,
- -0.02679886296391487,
- 0.0015663065714761615,
- 0.04934490844607353,
- -0.03075336664915085,
- -0.05523144081234932,
- -0.0035242640879005194,
- -0.04136338829994202,
- -0.04776579514145851,
- 0.0232157651335001,
- 0.012571261264383793,
- 0.04770027846097946,
- -0.06465331465005875,
- 0.05542338639497757,
- 0.041270021349191666,
- 0.002694677794352174,
- -0.014167717657983303,
- 0.011427526362240314,
- -0.040892958641052246,
- 0.03582830727100372,
- -0.10433351248502731,
- -0.08711986988782883,
- 0.07796487212181091,
- 0.07456546276807785,
- 0.04360503703355789,
- 3.1417382413129583e-33,
- -0.001659210305660963,
- -0.058283731341362,
- -0.06261655688285828,
- 0.04613448306918144,
- -0.004455281421542168,
- 0.01712718792259693,
- 0.08928196877241135,
- -0.0034243441186845303,
- 0.020250944420695305,
- 0.06667998433113098,
- -0.06687524169683456,
- -0.010592564009130001,
- 0.026421675458550453,
- 0.0303212758153677,
- 0.01857750117778778,
- -0.017709840089082718,
- 0.09057360887527466,
- -0.02417842112481594,
- -0.059136100113391876,
- -0.0038175354711711407,
- -0.09696128219366074,
- 0.001277555013075471,
- 0.007035193964838982,
- -0.02179383859038353,
- -0.04468834772706032,
- 0.043714966624975204,
- 0.07656972855329514,
- 0.038068737834692,
- -0.052824702113866806,
- -0.0075660948641598225,
- 0.03994737192988396,
- -0.019327541813254356,
- -0.034602295607328415,
- 0.13282594084739685,
- -0.10017668455839157,
- -0.01749172993004322,
- 0.044267915189266205,
- 0.025582240894436836,
- 0.027965275570750237,
- -0.007576725911349058,
- 0.12352792173624039,
- 0.09344549477100372,
- 0.009294421412050724,
- 0.09930694103240967,
- -0.00973883830010891,
- 0.05653895437717438,
- -0.01874624937772751,
- 0.048250049352645874,
- 0.004807509947568178,
- 0.0745745524764061,
- -0.023319566622376442,
- 0.04035647585988045,
- 0.06711756438016891,
- -0.034218717366456985,
- -0.009044083766639233,
- 0.0272962749004364,
- 0.026716109365224838,
- -0.04994545131921768,
- 0.022882085293531418,
- -0.01993642933666706,
- -0.05419343337416649,
- -0.0014274759450927377,
- 0.00992809422314167,
- 0.002076714299619198,
- 0.020862074568867683,
- 0.007548711262643337,
- -0.022624418139457703,
- -0.047914016991853714,
- 0.01261437963694334,
- 0.029152901843190193,
- -0.0024458745028823614,
- -0.06507126241922379,
- -0.05341305956244469,
- -0.010322237387299538,
- 0.028830505907535553,
- 0.026065871119499207,
- -0.08655049651861191,
- 0.03452807664871216,
- -0.044309359043836594,
- 0.0122805405408144,
- 0.02530508302152157,
- -0.04321562498807907,
- 0.0024707261472940445,
- -0.02044484205543995,
- -0.004652895499020815,
- -0.0705348402261734,
- 0.039523329585790634,
- -0.06809521466493607,
- 0.08204322308301926,
- -0.033733222633600235,
- 0.04038278013467789,
- 0.02734578400850296,
- -0.01660860888659954,
- -0.04795350134372711,
- -0.010955920442938805,
- -1.232794133443349e-8,
- 0.017238497734069824,
- -0.0461844727396965,
- 0.07544704526662827,
- 0.05181174725294113,
- -0.006709088105708361,
- 0.045151520520448685,
- 0.06220512464642525,
- 0.033414244651794434,
- 0.020375803112983704,
- -0.032906610518693924,
- -0.0626923069357872,
- -0.005882828030735254,
- 0.006120988633483648,
- 0.03800419718027115,
- 0.05094156786799431,
- -0.03917699307203293,
- 0.04716088995337486,
- -0.08172304183244705,
- -0.04755871742963791,
- 0.004596170037984848,
- -0.00029935999191366136,
- 0.025313861668109894,
- 0.012032081373035908,
- -0.049631476402282715,
- 0.05494563281536102,
- -0.039756011217832565,
- 0.047528982162475586,
- 0.10289131850004196,
- -0.002623955486342311,
- -0.0001982608955586329,
- -0.025903167203068733,
- -0.02353057824075222,
- -0.030628489330410957,
- -0.023011794313788414,
- -0.05365588888525963,
- -0.048411063849925995,
- -0.04113885015249252,
- -0.13842076063156128,
- -0.004953429568558931,
- -0.06269063800573349,
- 0.02258467487990856,
- 0.013341024518013,
- 0.057473909109830856,
- -0.058525118976831436,
- -0.01574935019016266,
- 0.0163283608853817,
- -0.0015578593593090773,
- -0.0905144140124321,
- -0.010240738280117512,
- 0.01653190329670906,
- -0.04635872691869736,
- 0.011770506389439106,
- 0.039390891790390015,
- 0.07775713503360748,
- -0.014260727912187576,
- -0.04775391146540642,
- 0.020228957757353783,
- -0.04069051146507263,
- 0.0001655190426390618,
- -0.004647249821573496,
- 0.039873912930488586,
- 0.03518832474946976,
- -0.061826180666685104,
- -0.006182021461427212
- ]
- },
- {
- "keyword": "letter",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.053889546543359756,
- 0.005745006259530783,
- 0.007016624324023724,
- 0.07255496829748154,
- -0.0949181541800499,
- 0.039860282093286514,
- 0.09408940374851227,
- -0.005143053364008665,
- -0.018914874643087387,
- -0.03572196140885353,
- 0.029145069420337677,
- 0.009933031164109707,
- 0.015926523134112358,
- -0.014920231886208057,
- -0.09276347607374191,
- 0.0122552290558815,
- -0.005913367960602045,
- -0.029281457886099815,
- -0.08292098343372345,
- -0.038146473467350006,
- -0.05113312974572182,
- 0.09786254912614822,
- 0.04872037470340729,
- -0.02214762754738331,
- -0.021250566467642784,
- 0.13539579510688782,
- -0.04488207772374153,
- -0.03758106008172035,
- -0.04731622710824013,
- -0.0846327617764473,
- -0.002876853570342064,
- 0.03595773130655289,
- 0.04006361961364746,
- -0.05489020049571991,
- 0.010011416859924793,
- 0.057379305362701416,
- 0.007518064230680466,
- -0.018610402941703796,
- -0.0023622310254722834,
- -0.045476872473955154,
- -0.028194256126880646,
- -0.14091242849826813,
- 0.017981791868805885,
- 0.04406588897109032,
- -0.021268920972943306,
- -0.007145616225898266,
- 0.004827755969017744,
- 0.05902532488107681,
- -0.04228159412741661,
- -0.012964073568582535,
- 0.04237375408411026,
- -0.047482315450906754,
- -0.03985920920968056,
- -0.018022403120994568,
- 0.02388559654355049,
- -0.029734745621681213,
- -0.012981696054339409,
- -0.01061270758509636,
- -0.07771484553813934,
- -0.013812314718961716,
- 0.012415753677487373,
- -0.002795812673866749,
- -0.0403713621199131,
- 0.010741567239165306,
- 0.058293577283620834,
- -0.018978092819452286,
- -0.025873631238937378,
- -0.06781212240457535,
- -0.04864022135734558,
- -0.030963392928242683,
- 0.048981018364429474,
- 0.03401708975434303,
- 0.0013415340799838305,
- 0.014014468528330326,
- -0.015447170473635197,
- -0.04850073531270027,
- 0.05140436068177223,
- -0.1183534637093544,
- 0.12187905609607697,
- 0.0498335100710392,
- -0.08948887139558792,
- -0.05238286778330803,
- 0.006106748711317778,
- 0.07143069803714752,
- 0.05726541206240654,
- 0.04112110659480095,
- -0.06907860934734344,
- -0.03484966605901718,
- -0.07912807911634445,
- 0.041139740496873856,
- -0.013177495449781418,
- -0.10862776637077332,
- 0.08353378623723984,
- 0.00648146728053689,
- -0.1444636583328247,
- -0.005608858074992895,
- -0.03940153867006302,
- -0.03761768341064453,
- -0.09977041929960251,
- 0.2409733533859253,
- 0.0013649524189531803,
- 0.026704605668783188,
- -0.02458718791604042,
- -0.0007737635751254857,
- 0.019931970164179802,
- -0.0425884872674942,
- 0.013396714814007282,
- -0.08692251890897751,
- 0.010849693790078163,
- -0.005558966193348169,
- -0.05925716832280159,
- 0.019518718123435974,
- -0.01900470443069935,
- -0.08120957016944885,
- -0.058423373848199844,
- -0.03147267550230026,
- -0.0627753883600235,
- 0.01117374561727047,
- 0.10416190326213837,
- -0.010759132914245129,
- -0.026036815717816353,
- -0.017851483076810837,
- -0.10751397907733917,
- 0.0024155485443770885,
- -0.11640332639217377,
- -0.10984157770872116,
- 0.0251151192933321,
- -5.878948836231643e-33,
- -0.02849939651787281,
- 0.072079136967659,
- 0.015594171360135078,
- 0.027471840381622314,
- 0.0411190427839756,
- 0.022028107196092606,
- 0.012683439068496227,
- 0.039984673261642456,
- -0.061571281403303146,
- -0.03848852589726448,
- -0.013439156115055084,
- -0.03128994628787041,
- 0.06789982318878174,
- 0.021077802404761314,
- 0.01876888796687126,
- 0.018078044056892395,
- -0.009313051588833332,
- -0.02323196455836296,
- -0.039105374366045,
- -0.06709914654493332,
- 0.032664209604263306,
- 0.08778953552246094,
- 0.021455489099025726,
- 0.103082075715065,
- -0.04297182708978653,
- -0.017855016514658928,
- -0.009473265148699284,
- -0.05621366947889328,
- -0.052209287881851196,
- 0.030236031860113144,
- 0.029274996370077133,
- 0.017901625484228134,
- 0.038782257586717606,
- -0.0138352420181036,
- -0.019937871024012566,
- -0.05719466507434845,
- 0.011200517416000366,
- -0.06541531533002853,
- 0.030919263139367104,
- 0.027961958199739456,
- -0.000052690891607198864,
- -0.01996828429400921,
- -0.02850869670510292,
- -0.021363014355301857,
- 0.0699247419834137,
- 0.09763328731060028,
- 0.11160141229629517,
- 0.007056509610265493,
- 0.0408773198723793,
- -0.007740408182144165,
- 0.0480913408100605,
- -0.03986148163676262,
- 0.0010075991740450263,
- 0.044339071959257126,
- 0.028339892625808716,
- 0.006459793541580439,
- 0.07233429700136185,
- 0.023944957181811333,
- -0.022022752091288567,
- 0.025299394503235817,
- 0.0824437066912651,
- 0.08836644887924194,
- 0.07583237439393997,
- 0.07997723668813705,
- -0.011296958662569523,
- -0.10684673488140106,
- -0.07987840473651886,
- -0.087650828063488,
- 0.0018835904775187373,
- 0.003932025749236345,
- -0.011123900301754475,
- 0.00024815299548208714,
- 0.06887716799974442,
- 0.04215208813548088,
- 0.0034096387680619955,
- -0.039438363164663315,
- 0.041861530393362045,
- -0.03922131657600403,
- -0.018055865541100502,
- -0.013599126599729061,
- -0.07864890247583389,
- 0.03130988031625748,
- -0.04456089809536934,
- -0.026039768010377884,
- 0.05979756638407707,
- 0.051040589809417725,
- -0.01537272147834301,
- -0.1250161975622177,
- 0.01329832710325718,
- 0.0127776600420475,
- -0.10940948873758316,
- -0.04065130278468132,
- 0.03927125781774521,
- 0.019295625388622284,
- -0.004688117187470198,
- 3.406603934518098e-33,
- -0.0057595339603722095,
- -0.017358962446451187,
- -0.023652490228414536,
- 0.10389543324708939,
- 0.01959758624434471,
- -0.004287344869226217,
- 0.03973546624183655,
- 0.04219690337777138,
- -0.0072595165111124516,
- 0.09484441578388214,
- -0.07272546738386154,
- 0.06198950856924057,
- 0.06811440736055374,
- -0.02237984538078308,
- 0.03410840407013893,
- -0.013635048642754555,
- 0.1329268366098404,
- 0.015678228810429573,
- -0.002820167923346162,
- -0.02610480599105358,
- -0.10012177377939224,
- -0.008410325273871422,
- -0.05373113602399826,
- -0.010082677006721497,
- 0.016730882227420807,
- 0.016912199556827545,
- 0.11128954589366913,
- -0.06323114037513733,
- -0.06454010307788849,
- 0.018559707328677177,
- 0.013084153644740582,
- 0.01559129822999239,
- 0.0036493567749857903,
- 0.06878191232681274,
- -0.062444332987070084,
- 0.08648549765348434,
- 0.08540020138025284,
- -0.03516894951462746,
- -0.055106960237026215,
- 0.08335214853286743,
- 0.06953175365924835,
- 0.01616283506155014,
- 0.017350126057863235,
- 0.14174680411815643,
- 0.013445105403661728,
- 0.011469876393675804,
- -0.024275168776512146,
- -0.018312033265829086,
- 0.058572426438331604,
- 0.0671430379152298,
- -0.009285744279623032,
- -0.03178495168685913,
- -0.007964156568050385,
- -0.004210090264678001,
- -0.045148059725761414,
- 0.06533286720514297,
- -0.09814004600048065,
- -0.046745333820581436,
- 0.007879001088440418,
- -0.006049806717783213,
- 0.0029401204083114862,
- -0.013717874884605408,
- 0.03244481235742569,
- 0.03762611374258995,
- 0.00870347861200571,
- 0.004549616482108831,
- -0.04128177836537361,
- -0.0050427913665771484,
- 0.0395682230591774,
- -0.03415241092443466,
- 0.019767696037888527,
- 0.053687684237957,
- -0.03408254310488701,
- 0.037322044372558594,
- -0.0008980287821032107,
- 0.009440381079912186,
- -0.030190549790859222,
- -0.038422778248786926,
- -0.0617409385740757,
- -0.04509139433503151,
- -0.10682886093854904,
- -0.02682569995522499,
- -0.020294025540351868,
- 0.032199252396821976,
- 0.0235661081969738,
- -0.04823492094874382,
- 0.015585111454129219,
- -0.053219493478536606,
- 0.021385034546256065,
- -0.00803303811699152,
- 0.052754975855350494,
- 0.03208991512656212,
- 0.04357737675309181,
- -0.03349417820572853,
- -0.055952250957489014,
- -1.3173032442637123e-8,
- 0.010490612126886845,
- 0.004770600702613592,
- 0.0025398586876690388,
- -0.04514039307832718,
- 0.048099156469106674,
- -0.013248722068965435,
- -0.0053070588037371635,
- -0.05853661894798279,
- 0.025375476107001305,
- 0.05241231620311737,
- 0.034852806478738785,
- -0.007649719249457121,
- -0.05299214646220207,
- -0.012250546365976334,
- 0.09363338351249695,
- -0.018634270876646042,
- -0.011706503108143806,
- 0.03933633491396904,
- -0.07349491864442825,
- 0.037117306143045425,
- 0.04573746770620346,
- 0.09184291213750839,
- -0.010056101717054844,
- -0.048049766570329666,
- -0.05920712277293205,
- 0.022933335974812508,
- 0.04009991139173508,
- 0.028473790735006332,
- 0.016028083860874176,
- 0.029196729883551598,
- 0.028564177453517914,
- 0.030896756798028946,
- 0.009933714754879475,
- -0.10411754250526428,
- -0.031937599182128906,
- -0.014637074433267117,
- 0.07677079737186432,
- -0.01378641091287136,
- 0.03659147024154663,
- 0.02959885261952877,
- 0.06406500935554504,
- 0.007108880672603846,
- 0.000557278806809336,
- 0.027540873736143112,
- 0.022668354213237762,
- 0.04110748693346977,
- -0.018393654376268387,
- -0.038497887551784515,
- 0.011273290030658245,
- -0.04516978561878204,
- 0.06370774656534195,
- 0.04926229640841484,
- 0.028881806880235672,
- 0.06031002104282379,
- 0.01382558885961771,
- 0.015163743868470192,
- 0.028000954538583755,
- 0.019087640568614006,
- -0.0478384830057621,
- 0.03533048927783966,
- 0.051758017390966415,
- 0.007850423455238342,
- 0.010388550348579884,
- -0.042679108679294586
- ]
- },
- {
- "keyword": "whitepaper",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.08481361716985703,
- 0.07982633262872696,
- -0.024040022864937782,
- -0.018212245777249336,
- 0.05198075994849205,
- -0.0036029010079801083,
- -0.037319350987672806,
- 0.013621562160551548,
- 0.017807675525546074,
- -0.01675037480890751,
- -0.006350212264806032,
- 0.05501193553209305,
- 0.04133927822113037,
- 0.0021781218238174915,
- -0.04323869198560715,
- 0.01060742698609829,
- 0.014013108797371387,
- -0.07248575240373611,
- -0.1388426125049591,
- 0.0022087886463850737,
- -0.057688068598508835,
- 0.04584480822086334,
- -0.04259893670678139,
- -0.059455111622810364,
- -0.04927816241979599,
- 0.0335797555744648,
- -0.012558146379888058,
- 0.030648162588477135,
- 0.026940155774354935,
- -0.04135706275701523,
- 0.020264171063899994,
- 0.018566593527793884,
- 0.08675945550203323,
- 0.02889525517821312,
- -0.00546282809227705,
- -0.05824190750718117,
- 0.03773489221930504,
- -0.04663526639342308,
- -0.04199768230319023,
- 0.0575251467525959,
- 0.05107627063989639,
- -0.0321759358048439,
- -0.051409997045993805,
- 0.03630497306585312,
- 0.0011233763070777059,
- -0.053896836936473846,
- -0.033307868987321854,
- -0.06770219653844833,
- -0.008260291069746017,
- 0.003469951916486025,
- -0.051504138857126236,
- -0.0705086886882782,
- -0.03999829664826393,
- 0.05383304879069328,
- 0.04453768581151962,
- -0.023543311282992363,
- 0.011463957838714123,
- 0.08672267943620682,
- -0.005254953168332577,
- -0.06432048976421356,
- 0.010133371688425541,
- 0.013158666901290417,
- -0.06930689513683319,
- 0.03590017557144165,
- 0.11303969472646713,
- 0.07219395786523819,
- -0.1106569841504097,
- -0.022981761023402214,
- -0.010842801071703434,
- -0.10522450506687164,
- -0.03205084055662155,
- 0.027463726699352264,
- 0.04823433980345726,
- 0.012526866048574448,
- -0.03495999425649643,
- -0.06532219052314758,
- 0.010095938108861446,
- 0.008532815612852573,
- 0.08252386748790741,
- -0.14211316406726837,
- 0.06725756078958511,
- -0.058753181248903275,
- -0.022771133109927177,
- 0.021142147481441498,
- 0.021200507879257202,
- 0.041834354400634766,
- -0.003190136980265379,
- 0.017714757472276688,
- 0.004246924538165331,
- 0.0049892314709723,
- -0.02327086590230465,
- 0.0030339716468006372,
- -0.015184150077402592,
- -0.002681795274838805,
- -0.09010329842567444,
- 0.0025055566802620888,
- -0.004023317247629166,
- -0.05219082906842232,
- -0.020857887342572212,
- 0.2165234088897705,
- -0.0036885524168610573,
- 0.02290252596139908,
- 0.12658219039440155,
- 0.060299698263406754,
- 0.0008595132385380566,
- -0.038609206676483154,
- 0.049560923129320145,
- 0.030090700834989548,
- -0.011279014870524406,
- -0.014132420532405376,
- 0.03971156105399132,
- 0.06590013951063156,
- -0.1177070289850235,
- -0.030849887058138847,
- -0.020156588405370712,
- -0.09144462645053864,
- 0.02721075713634491,
- -0.044988807290792465,
- -0.0340072400867939,
- -0.05212879553437233,
- 0.0484783798456192,
- -0.03353724256157875,
- -0.05659840255975723,
- -0.029370486736297607,
- -0.042126625776290894,
- -0.06969573348760605,
- -0.00031847559148445725,
- -2.529727393132904e-33,
- 0.04351102560758591,
- -0.014812394045293331,
- 0.0019146451959386468,
- 0.04877713695168495,
- 0.09530746191740036,
- -0.011478624306619167,
- 0.006626795046031475,
- 0.0020599057897925377,
- -0.008875137194991112,
- -0.023251790553331375,
- -0.03156843036413193,
- 0.08294420689344406,
- -0.04994271695613861,
- 0.08559713512659073,
- 0.08249520510435104,
- -0.03694644570350647,
- 0.013993174768984318,
- 0.06464279443025589,
- 0.03235144913196564,
- 0.01571805775165558,
- 0.04911808669567108,
- -0.04011812061071396,
- -0.0025458531454205513,
- 0.005866559688001871,
- 0.007372889667749405,
- 0.06446514278650284,
- 0.005590743385255337,
- -0.0690697655081749,
- 0.07229263335466385,
- 0.0336969755589962,
- 0.03507237881422043,
- 0.018104402348399162,
- 0.022423667833209038,
- -0.024186762049794197,
- -0.08469442278146744,
- 0.06351841241121292,
- -0.15135765075683594,
- -0.10637423396110535,
- 0.004625116474926472,
- -0.017356732860207558,
- -0.024717528373003006,
- -0.034950342029333115,
- -0.0705125629901886,
- 0.04050755128264427,
- 0.05197582021355629,
- -0.021114496514201164,
- 0.03266899660229683,
- -0.005540244746953249,
- 0.07940550148487091,
- 0.05165097862482071,
- 0.00521359546110034,
- -0.03652274236083031,
- -0.1073492243885994,
- -0.0167109165340662,
- -0.08627553284168243,
- -0.06391279399394989,
- 0.006464346777647734,
- -0.03559119254350662,
- 0.017414070665836334,
- 0.027917001396417618,
- 0.04910149797797203,
- 0.0837300643324852,
- -0.1310165971517563,
- 0.024824827909469604,
- 0.015552165918052197,
- 0.032171666622161865,
- -0.029832500964403152,
- 0.022879280149936676,
- 0.0472756028175354,
- -0.06814959645271301,
- -0.04042075201869011,
- -0.0747712254524231,
- 0.05908799543976784,
- 0.05042543634772301,
- -0.036182597279548645,
- 0.02292654849588871,
- 0.08549140393733978,
- -0.039967551827430725,
- -0.08994091302156448,
- -0.02237362414598465,
- 0.023882608860731125,
- -0.011940629221498966,
- 0.01575434021651745,
- -0.046954378485679626,
- 0.00956180039793253,
- 0.03971664607524872,
- -0.01477080024778843,
- -0.0017922729020938277,
- -0.024234410375356674,
- 0.014381401240825653,
- -0.09944149106740952,
- 0.041995249688625336,
- 0.02251450903713703,
- 0.07397762686014175,
- -0.01070365309715271,
- 1.0910056943569356e-33,
- -0.07487699389457703,
- -0.07008569687604904,
- -0.03895619139075279,
- 0.09874102473258972,
- 0.043068479746580124,
- 0.07641894370317459,
- -0.000027784153644461185,
- 0.062131382524967194,
- -0.004936990328133106,
- 0.07822148501873016,
- 0.030413370579481125,
- -0.005829869769513607,
- 0.03750123828649521,
- 0.09189663827419281,
- 0.03383984789252281,
- 0.005275540053844452,
- -0.011149464175105095,
- 0.060038138180971146,
- -0.07758428901433945,
- 0.05761117860674858,
- -0.05019620805978775,
- 0.04731384664773941,
- -0.030639279633760452,
- 0.044377803802490234,
- 0.045721977949142456,
- 0.007856704294681549,
- 0.07708089798688889,
- 0.005424052942544222,
- -0.05577402561903,
- -0.01686854287981987,
- -0.03647692874073982,
- -0.05973523482680321,
- -0.01842714101076126,
- 0.08167028427124023,
- 0.08238919079303741,
- 0.07268380373716354,
- 0.04164143279194832,
- 0.03524275869131088,
- -0.018235990777611732,
- 0.013042420148849487,
- 0.023846857249736786,
- -0.017472097650170326,
- -0.09646867960691452,
- 0.06388022750616074,
- -0.02380000427365303,
- -0.04544815048575401,
- -0.11449145525693893,
- 0.029707301408052444,
- 0.045928411185741425,
- 0.008203749544918537,
- 0.06594713777303696,
- 0.020455820485949516,
- 0.07744619250297546,
- -0.07678820192813873,
- -0.06257767975330353,
- 0.02791459858417511,
- -0.030874677002429962,
- 0.01882251165807247,
- 0.006626030430197716,
- 0.02522960864007473,
- -0.04395494982600212,
- 0.04664851352572441,
- -0.09096597135066986,
- 0.08047521114349365,
- 0.01977480575442314,
- -0.04072369635105133,
- 0.0066374544985592365,
- 0.03181472420692444,
- -0.08018071204423904,
- 0.014249776490032673,
- -0.07765740156173706,
- -0.010814585722982883,
- -0.012472051195800304,
- -0.005297458730638027,
- -0.03062490187585354,
- -0.0024712367448955774,
- -0.026303928345441818,
- -0.032844178378582,
- -0.04628264158964157,
- 0.029364727437496185,
- -0.005185639951378107,
- 0.00955134630203247,
- 0.09325684607028961,
- 0.013834023848176003,
- 0.021931830793619156,
- 0.0470157265663147,
- 0.04046815633773804,
- -0.022197993472218513,
- 0.004899696446955204,
- -0.06592614948749542,
- -0.05941340699791908,
- 0.018606895580887794,
- 0.05890742316842079,
- 0.0434376522898674,
- 0.020636001601815224,
- -1.3081266736492125e-8,
- -0.06722468137741089,
- 0.05692259222269058,
- 0.07935463637113571,
- -0.0019125723047181964,
- 0.04568688943982124,
- 0.010021585039794445,
- -0.008761576376855373,
- -0.056713104248046875,
- 0.019670719280838966,
- 0.014186489395797253,
- -0.06874269247055054,
- -0.08587294816970825,
- -0.11364015191793442,
- 0.005836114287376404,
- -0.037559304386377335,
- -0.021282805129885674,
- -0.07785826176404953,
- -0.0039145383052527905,
- 0.013945558108389378,
- -0.031052257865667343,
- -0.018163250759243965,
- -0.008594292216002941,
- 0.07931045442819595,
- 0.016823220998048782,
- 0.024979928508400917,
- -0.05431104451417923,
- 0.055422522127628326,
- 0.15440453588962555,
- 0.02722182869911194,
- -0.004326923284679651,
- -0.007170585915446281,
- 0.10969383269548416,
- 0.03784459829330444,
- -0.04317542165517807,
- 0.026700275018811226,
- -0.01668303832411766,
- 0.09907077252864838,
- 0.07757547497749329,
- -0.040194544941186905,
- -0.03410836309194565,
- 0.004265943542122841,
- -0.00938373152166605,
- 0.022904478013515472,
- -0.04068315401673317,
- 0.03724195435643196,
- 0.03365355357527733,
- 0.026951979845762253,
- -0.04753301665186882,
- -0.0011450911406427622,
- -0.002901108469814062,
- 0.018802523612976074,
- -0.023144956678152084,
- 0.02787861041724682,
- 0.0037638754583895206,
- -0.004034228622913361,
- -0.030966170132160187,
- 0.0001406455849064514,
- -0.017585404217243195,
- 0.032326169312000275,
- 0.04417496919631958,
- 0.02490202710032463,
- 0.035219158977270126,
- 0.015448500402271748,
- 0.03144966438412666
- ]
- },
- {
- "keyword": "thesis",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03281233832240105,
- 0.06494248658418655,
- -0.012161550112068653,
- -0.017032045871019363,
- -0.02503817342221737,
- 0.05583306774497032,
- -0.024261634796857834,
- 0.0036531081423163414,
- -0.041364822536706924,
- 0.053167469799518585,
- 0.03310621529817581,
- 0.06910445541143417,
- -0.05019044503569603,
- -0.04386227950453758,
- -0.03195216506719589,
- 0.03219654783606529,
- 0.04826672375202179,
- -0.023127812892198563,
- 0.020325222983956337,
- 0.050533246248960495,
- -0.028499124571681023,
- 0.014763245359063148,
- 0.011056015267968178,
- -0.03468851372599602,
- -0.031009063124656677,
- 0.09937307238578796,
- 0.03223375231027603,
- -0.0521051287651062,
- 0.03547844663262367,
- -0.07445730268955231,
- -0.04316462576389313,
- 0.10067141801118851,
- 0.0319550521671772,
- 0.021510586142539978,
- 0.004552507307380438,
- 0.021883076056838036,
- 0.022951409220695496,
- 0.055870961397886276,
- -0.005619393195956945,
- 0.05714624375104904,
- -0.0947723239660263,
- -0.016837382689118385,
- 0.0051629007793962955,
- -0.008034811355173588,
- 0.02664666436612606,
- -0.007863584905862808,
- -0.0148102305829525,
- -0.02714824676513672,
- 0.023780152201652527,
- -0.018555741757154465,
- -0.06670065969228745,
- -0.030617905780673027,
- -0.021722961217164993,
- 0.030230697244405746,
- -0.08984999358654022,
- -0.06495998799800873,
- 0.05088392272591591,
- 0.004982723854482174,
- -0.030405554920434952,
- -0.040824003517627716,
- 0.03436249867081642,
- 0.03897964954376221,
- -0.07155580818653107,
- 0.008016308769583702,
- 0.21572016179561615,
- -0.01388139184564352,
- -0.02504592202603817,
- 0.02568195015192032,
- -0.029532741755247116,
- 0.0888388454914093,
- 0.03315535560250282,
- -0.018881848081946373,
- -0.027823684737086296,
- 0.03672707453370094,
- -0.036247868090867996,
- -0.03374546766281128,
- 0.03618761897087097,
- 0.0012190764537081122,
- 0.05640189349651337,
- -0.056947011500597,
- 0.024166082963347435,
- 0.01682516746222973,
- 0.012511417269706726,
- -0.04402239993214607,
- -0.0078391432762146,
- 0.05364704504609108,
- 0.023656707257032394,
- -0.02543361485004425,
- -0.05511057749390602,
- 0.025858517736196518,
- -0.009087244980037212,
- -0.05406823754310608,
- 0.036140963435173035,
- 0.01633908599615097,
- -0.041773345321416855,
- 0.017359720543026924,
- -0.04206841066479683,
- -0.08160708844661713,
- 0.10641337186098099,
- 0.23856627941131592,
- -0.03167149797081947,
- -0.006667880807071924,
- -0.02558976225554943,
- 0.02009914442896843,
- -0.026540622115135193,
- -0.03685152903199196,
- -0.02447318285703659,
- -0.01390091236680746,
- 0.0066327000968158245,
- 0.019974753260612488,
- -0.029777416959404945,
- 0.0030025970190763474,
- -0.041142042726278305,
- 0.019353557378053665,
- 0.05913623049855232,
- -0.061685994267463684,
- 0.07490044087171555,
- -0.020658280700445175,
- -0.016508733853697777,
- 0.021828973665833473,
- 0.04356302320957184,
- -0.054880380630493164,
- -0.00798122864216566,
- 0.06952756643295288,
- -0.05299563705921173,
- -0.06223410740494728,
- -0.06397809833288193,
- -5.482249247529876e-33,
- 0.012611833401024342,
- -0.04921720176935196,
- -0.030089521780610085,
- 0.054714351892471313,
- 0.005306478124111891,
- -0.005487682763487101,
- -0.02408456802368164,
- 0.0528523214161396,
- -0.001651465194299817,
- 0.008400588296353817,
- -0.027829287573695183,
- 0.001180823426693678,
- 0.015468114987015724,
- -0.026845833286643028,
- 0.03690999373793602,
- -0.060816824436187744,
- 0.04679868742823601,
- 0.08635952323675156,
- -0.0007224715081974864,
- -0.030160361900925636,
- -0.0414922721683979,
- 0.0344858393073082,
- 0.03487984091043472,
- -0.02494632825255394,
- -0.025635195896029472,
- 0.04940997064113617,
- 0.015113732777535915,
- -0.039550092071294785,
- -0.06615877896547318,
- 0.015697158873081207,
- 0.1074674129486084,
- 0.0644916370511055,
- -0.0960390493273735,
- -0.03490392491221428,
- -0.036371998488903046,
- 0.07085268944501877,
- 0.036158494651317596,
- -0.08979446440935135,
- 0.06725236773490906,
- 0.044369205832481384,
- -0.07277409732341766,
- -0.01722894422709942,
- 0.0793730765581131,
- -0.04600342735648155,
- 0.10651174187660217,
- 0.059374865144491196,
- 0.04947832599282265,
- -0.024766553193330765,
- 0.08582063764333725,
- -0.013885041698813438,
- -0.03196736425161362,
- -0.01063411682844162,
- -0.05053726211190224,
- -0.07919564843177795,
- 0.02225404791533947,
- 0.0066710300743579865,
- -0.062015414237976074,
- 0.00017985535669140518,
- 0.004856859799474478,
- 0.00707606878131628,
- -0.005907699000090361,
- 0.06172533333301544,
- -0.09052347391843796,
- -0.07140108197927475,
- -0.02462150529026985,
- 0.015679897740483284,
- 0.0002591513912193477,
- -0.05998225510120392,
- 0.11130361258983612,
- -0.08909183740615845,
- -0.09364137798547745,
- -0.08526226133108139,
- 0.10555574297904968,
- 0.010208110325038433,
- -0.0012990502873435616,
- 0.04148473963141441,
- 0.01839098520576954,
- -0.020988212898373604,
- -0.058746952563524246,
- 0.01075177825987339,
- -0.0874311625957489,
- -0.04151110723614693,
- 0.002602042630314827,
- -0.06675007194280624,
- 0.04090999439358711,
- 0.035658471286296844,
- 0.03184278681874275,
- 0.010955140925943851,
- 0.04601239040493965,
- 0.05752801522612572,
- -0.01951180398464203,
- -0.007203266955912113,
- -0.013609902933239937,
- 0.03368125110864639,
- 0.05803137645125389,
- 2.9581658803198496e-33,
- -0.03777376562356949,
- -0.04764019697904587,
- -0.11050788313150406,
- 0.03579925000667572,
- 0.1264238953590393,
- 0.038347989320755005,
- -0.08358485251665115,
- -0.005611749365925789,
- -0.12023809552192688,
- 0.0524992011487484,
- 0.0009540630271658301,
- -0.09706036746501923,
- 0.024312933906912804,
- 0.050228238105773926,
- 0.00473746145144105,
- -0.028378598392009735,
- 0.02169303596019745,
- -0.12453840672969818,
- -0.09015737473964691,
- 0.03769887238740921,
- -0.08085266500711441,
- -0.004889639560133219,
- 0.030303504317998886,
- 0.007179767359048128,
- -0.0035151829943060875,
- 0.055495962500572205,
- -0.05258049815893173,
- -0.04514433071017265,
- -0.0027849674224853516,
- -0.02045872062444687,
- -0.045610517263412476,
- 0.03639978542923927,
- -0.11941468715667725,
- 0.03433365374803543,
- 0.02293398790061474,
- 0.06803125143051147,
- -0.03001324273645878,
- -0.012616639025509357,
- 0.006878398824483156,
- 0.03250640258193016,
- 0.016788264736533165,
- 0.001537472358904779,
- -0.005250792019069195,
- 0.008787570521235466,
- 0.005271388217806816,
- -0.02884545549750328,
- -0.06003493443131447,
- 0.04119516909122467,
- 0.0764215886592865,
- -0.008353439159691334,
- 0.026575535535812378,
- 0.05898887291550636,
- 0.013645640574395657,
- -0.0811970978975296,
- -0.027727682143449783,
- -0.0007349484949372709,
- 0.05379288271069527,
- -0.09721995145082474,
- -0.01216205395758152,
- 0.09786833822727203,
- 0.03061509132385254,
- -0.010365452617406845,
- -0.06910993158817291,
- 0.025578917935490608,
- 0.01813817210495472,
- -0.008384033106267452,
- -0.056473374366760254,
- 0.016460880637168884,
- 0.005130305886268616,
- 0.007316524162888527,
- -0.031224016100168228,
- -0.043068818747997284,
- -0.012401112355291843,
- 0.11407492309808731,
- -0.006083612330257893,
- -0.05025295168161392,
- -0.022425420582294464,
- -0.03431688994169235,
- -0.02657221257686615,
- -0.023003889247775078,
- -0.0039905221201479435,
- -0.008842694573104382,
- 0.0039529697969555855,
- 0.013843037188053131,
- 0.0013678004033863544,
- 0.021849598735570908,
- -0.010872644372284412,
- -0.03830739110708237,
- -0.0005292819114401937,
- -0.015866855159401894,
- -0.049839794635772705,
- -0.02065953239798546,
- -0.027134975418448448,
- -0.034872688353061676,
- 0.052146799862384796,
- -1.234867585964139e-8,
- 0.03744272515177727,
- 0.020012905821204185,
- 0.06342622637748718,
- -0.01805335469543934,
- 0.029837654903531075,
- 0.00816091988235712,
- -0.020405324175953865,
- -0.04811137914657593,
- -0.07327503710985184,
- 0.049367841333150864,
- -0.06814971566200256,
- 0.06048552319407463,
- 0.02494463324546814,
- 0.11623667180538177,
- 0.059519119560718536,
- -0.04193606972694397,
- 0.06612677872180939,
- -0.054022736847400665,
- -0.038894955068826675,
- 0.00001644279109314084,
- 0.09335625171661377,
- 0.04115451127290726,
- -0.028185775503516197,
- -0.034656822681427,
- -0.008687295019626617,
- 0.03069794736802578,
- 0.016143620014190674,
- 0.05488438904285431,
- -0.059020016342401505,
- 0.10448078066110611,
- -0.04985683411359787,
- 0.09658610820770264,
- -0.053752437233924866,
- -0.07804705202579498,
- 0.06714771687984467,
- 0.03179486468434334,
- 0.11394120007753372,
- -0.018702611327171326,
- -0.04559929296374321,
- -0.06242278963327408,
- 0.0034317553509026766,
- 0.003313586348667741,
- 0.012954307720065117,
- 0.012997154146432877,
- 0.07599739730358124,
- -0.010785619728267193,
- -0.013350656256079674,
- 0.010080321691930294,
- -0.004422346595674753,
- 0.04507116600871086,
- 0.0016072355210781097,
- 0.033251356333494186,
- 0.036361899226903915,
- 0.01957809180021286,
- 0.011267120018601418,
- -0.001005673548206687,
- 0.01187471579760313,
- -0.07999254018068314,
- -0.11552460491657257,
- -0.0064440942369401455,
- 0.12961415946483612,
- 0.11042466759681702,
- 0.03138292208313942,
- -0.05090989172458649
- ]
- },
- {
- "keyword": "dissertation",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.032664697617292404,
- 0.04835295304656029,
- -0.011602373793721199,
- -0.07272136211395264,
- 0.06117142364382744,
- 0.045050233602523804,
- -0.028154004365205765,
- 0.038654763251543045,
- 0.01415360625833273,
- 0.0773066058754921,
- 0.051992181688547134,
- 0.10063811391592026,
- -0.09142271429300308,
- -0.07906866818666458,
- -0.004961862228810787,
- 0.04459847882390022,
- 0.022898033261299133,
- 0.006251029670238495,
- 0.030219536274671555,
- -0.012478390708565712,
- -0.04928465560078621,
- 0.023906849324703217,
- 0.050152312964200974,
- -0.040159571915864944,
- 0.03924703970551491,
- 0.07816323637962341,
- 0.03435816615819931,
- -0.015022870153188705,
- -0.0456109344959259,
- -0.0486457422375679,
- 0.011000964790582657,
- 0.061069197952747345,
- -0.05334393307566643,
- 0.00741713447496295,
- 0.04593019559979439,
- 0.08259773999452591,
- -0.00232818815857172,
- 0.0954948142170906,
- 0.0009830541675910354,
- 0.040943656116724014,
- -0.07591511309146881,
- -0.10309967398643494,
- 0.0012271172599866986,
- 0.010432923212647438,
- -0.007649404928088188,
- -0.06711219251155853,
- 0.001363331568427384,
- 0.008170675486326218,
- 0.033109910786151886,
- -0.003464495064690709,
- -0.024809803813695908,
- 0.0053017716854810715,
- -0.06697626411914825,
- -0.011228417977690697,
- -0.036865197122097015,
- -0.039837587624788284,
- 0.017028411850333214,
- 0.042707085609436035,
- 0.0030359309166669846,
- -0.01691656932234764,
- -0.027672594413161278,
- -0.035252295434474945,
- -0.10008066147565842,
- 0.053901270031929016,
- 0.166890487074852,
- 0.0056198276579380035,
- -0.012665553018450737,
- 0.021949436515569687,
- -0.01032579317688942,
- 0.059713393449783325,
- -0.04802604764699936,
- -0.009125709533691406,
- -0.006145910359919071,
- 0.03970544785261154,
- 0.008883211761713028,
- -0.0002765885728877038,
- 0.017958074808120728,
- 0.030767064541578293,
- 0.10343176126480103,
- -0.10840923339128494,
- 0.07654301077127457,
- 0.06257615983486176,
- 0.05732613801956177,
- -0.03737091273069382,
- -0.03426327183842659,
- 0.028110895305871964,
- 0.06686566770076752,
- -0.03272636607289314,
- -0.04528322443366051,
- -0.025745389983057976,
- 0.005627843085676432,
- -0.06805895268917084,
- 0.04869166389107704,
- 0.029055314138531685,
- -0.1071677953004837,
- -0.02305424027144909,
- -0.027960263192653656,
- -0.10957296937704086,
- 0.054302673786878586,
- 0.2627577781677246,
- -0.048308759927749634,
- 0.016053855419158936,
- -0.009416505694389343,
- 0.02083030715584755,
- -0.04112280160188675,
- -0.029353970661759377,
- 0.015712033957242966,
- 0.005444949958473444,
- -0.02139931544661522,
- 0.030341673642396927,
- -0.02519979514181614,
- -0.00027454784139990807,
- -0.041211117058992386,
- 0.03559275344014168,
- 0.03697086498141289,
- -0.08492155373096466,
- 0.042932506650686264,
- -0.03227943554520607,
- 0.03088538534939289,
- 0.045979224145412445,
- 0.04170925170183182,
- -0.008970157243311405,
- -0.05183737725019455,
- 0.006927287206053734,
- -0.08425126224756241,
- -0.056810371577739716,
- -0.029647549614310265,
- -5.078058821077494e-33,
- 0.033358607441186905,
- 0.03207870572805405,
- -0.03155752271413803,
- 0.04450292885303497,
- -0.08225440233945847,
- 0.002592730335891247,
- -0.017564907670021057,
- 0.03946373984217644,
- -0.03565356507897377,
- 0.004088439047336578,
- 0.001921170623973012,
- 0.030926888808608055,
- 0.0016962025547400117,
- 0.027784543111920357,
- -0.005813440773636103,
- -0.0156266950070858,
- 0.021870270371437073,
- 0.09561416506767273,
- 0.02591826021671295,
- -0.004506459925323725,
- -0.04364846646785736,
- 0.049595173448324203,
- 0.01930786296725273,
- -0.05228717252612114,
- -0.03996029868721962,
- 0.03527574613690376,
- 0.012956783175468445,
- -0.03811135143041611,
- -0.09268274903297424,
- 0.024147577583789825,
- 0.05679437890648842,
- 0.036861203610897064,
- -0.09009464085102081,
- -0.014051134698092937,
- -0.06032757833600044,
- 0.0505099780857563,
- -0.0003819569537881762,
- -0.059656910598278046,
- 0.07182801514863968,
- 0.01378558948636055,
- -0.060928620398044586,
- -0.00012888701166957617,
- 0.10100259631872177,
- 0.0011985606979578733,
- 0.050282370299100876,
- 0.037656012922525406,
- 0.09245676547288895,
- 0.009761924855411053,
- 0.13552995026111603,
- -0.013354036957025528,
- -0.007351176347583532,
- -0.03720317408442497,
- -0.05582534894347191,
- -0.085270456969738,
- 0.043607812374830246,
- 0.01365728210657835,
- -0.09341194480657578,
- -0.0077748834155499935,
- 0.014396332204341888,
- -0.027137823402881622,
- -0.005783084314316511,
- 0.0349644236266613,
- -0.12310680001974106,
- -0.05356447771191597,
- 0.007639056071639061,
- -0.009431175887584686,
- -0.058125775307416916,
- -0.0497836209833622,
- 0.11670471727848053,
- -0.06559809297323227,
- -0.0939021185040474,
- -0.019438713788986206,
- 0.15229544043540955,
- 0.0025447942316532135,
- -0.0033724408131092787,
- 0.05992547795176506,
- 0.1196073517203331,
- -0.007832572795450687,
- -0.04624310880899429,
- 0.0158633291721344,
- -0.040334127843379974,
- -0.009454585611820221,
- -0.018435977399349213,
- -0.03569774702191353,
- 0.03958579897880554,
- 0.05317316949367523,
- 0.02130700834095478,
- -0.05753285437822342,
- -0.04678519442677498,
- 0.0329611636698246,
- 0.008358174003660679,
- -0.04911905154585838,
- -0.053598906844854355,
- 0.0699077695608139,
- 0.047474540770053864,
- 2.2017868771145484e-33,
- 0.02655954658985138,
- -0.020901674404740334,
- -0.04815530776977539,
- 0.05703383684158325,
- 0.16355381906032562,
- 0.060120176523923874,
- -0.027477920055389404,
- 0.010971486568450928,
- -0.09649741649627686,
- 0.04202132672071457,
- -0.01589447632431984,
- -0.09844136983156204,
- 0.003411033423617482,
- 0.006200413219630718,
- 0.003904971992596984,
- -0.029179813340306282,
- 0.02468939684331417,
- -0.09955845028162003,
- -0.0624300092458725,
- 0.03734315559267998,
- -0.07033021003007889,
- 0.0475175678730011,
- 0.07504305243492126,
- 0.029476238414645195,
- 0.04932962730526924,
- 0.030847391113638878,
- -0.000049365356971975416,
- -0.025264400988817215,
- -0.10754680633544922,
- -0.0060743349604308605,
- 0.03189117833971977,
- 0.015433068387210369,
- -0.07843789458274841,
- -0.0013556123012676835,
- 0.018647734075784683,
- 0.003707332070916891,
- -0.03858538717031479,
- -0.04634500667452812,
- -0.0465225875377655,
- 0.004095622804015875,
- 0.020661450922489166,
- -0.012123629450798035,
- 0.002070225775241852,
- -0.02779075689613819,
- 0.033843379467725754,
- -0.012552168220281601,
- -0.06277576833963394,
- 0.025714216753840446,
- 0.06609632074832916,
- -0.036372244358062744,
- 0.022661201655864716,
- 0.08304142951965332,
- -0.03265839442610741,
- -0.050283581018447876,
- -0.0001577349321451038,
- 0.012064045295119286,
- 0.0790020152926445,
- -0.08243566006422043,
- 0.01475473865866661,
- 0.04983781278133392,
- 0.0008151509100571275,
- -0.0024911428336054087,
- -0.029794352129101753,
- 0.04228578880429268,
- 0.04998721182346344,
- -0.042603373527526855,
- -0.061734121292829514,
- 0.018320495262742043,
- -0.03041962906718254,
- 0.08068086951971054,
- -0.022711070254445076,
- -0.046200744807720184,
- -0.02216295339167118,
- 0.028620779514312744,
- 0.056745871901512146,
- 0.0002693146525416523,
- 0.016490908339619637,
- -0.08821991086006165,
- -0.07138558477163315,
- 0.05537058785557747,
- -0.04934285953640938,
- 0.04033460468053818,
- -0.031128494068980217,
- 0.04445343464612961,
- -0.013159051537513733,
- 0.06315184384584427,
- 0.00796503759920597,
- -0.0493992455303669,
- -0.012601342052221298,
- -0.015615427866578102,
- 0.01855619065463543,
- -0.018869509920477867,
- -0.030967244878411293,
- -0.023215144872665405,
- 0.021631548181176186,
- -1.1733200189212312e-8,
- 0.08447062969207764,
- 0.05904894322156906,
- 0.030332518741488457,
- -0.027599886059761047,
- -0.04941003769636154,
- 0.018660856410861015,
- -0.017471671104431152,
- -0.04435478523373604,
- -0.023610277101397514,
- 0.025411292910575867,
- -0.07419976592063904,
- 0.02349943481385708,
- -0.008299759589135647,
- 0.04067466780543327,
- -0.009991747327148914,
- -0.0032399382907897234,
- 0.0578722320497036,
- -0.022899940609931946,
- -0.08513016998767853,
- -0.08291754126548767,
- 0.036444175988435745,
- 0.02652675285935402,
- -0.01638703979551792,
- -0.06317161023616791,
- -0.009665439836680889,
- 0.07336609810590744,
- 0.012050663121044636,
- 0.00016088641132228076,
- 0.005145626608282328,
- 0.09925982356071472,
- -0.0569126270711422,
- 0.04647212475538254,
- -0.06230539083480835,
- -0.07197228074073792,
- 0.05001624673604965,
- -0.006438446696847677,
- 0.12424930185079575,
- -0.02921869605779648,
- -0.0269846823066473,
- -0.0021481215953826904,
- 0.006376903038471937,
- -0.01795043610036373,
- 0.03084811195731163,
- 0.028063436970114708,
- 0.020093342289328575,
- -0.015880096703767776,
- 0.052923817187547684,
- 0.0010051255812868476,
- 0.001269501051865518,
- -0.007488675881177187,
- 0.011684450320899487,
- 0.007737977430224419,
- -0.013284505344927311,
- -0.019954431802034378,
- -0.009181261993944645,
- 0.01785881817340851,
- 0.0016122894594445825,
- -0.04925699904561043,
- -0.10451201349496841,
- -0.05220684036612511,
- 0.09634184837341309,
- 0.03258546441793442,
- -0.021565934643149376,
- -0.029333259910345078
- ]
- },
- {
- "keyword": "abstract",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06093890964984894,
- 0.07949893176555634,
- 0.02941998280584812,
- 0.07828779518604279,
- -0.0451543852686882,
- 0.03306333348155022,
- 0.08452262729406357,
- 0.012576429173350334,
- 0.019873498007655144,
- -0.05215317755937576,
- -0.034302081912755966,
- -0.04354573413729668,
- -0.02515183575451374,
- 0.0466189943253994,
- 0.013537724502384663,
- 0.03730626776814461,
- 0.024291470646858215,
- 0.05409293249249458,
- -0.07155129313468933,
- 0.004978536162525415,
- -0.02151402086019516,
- -0.010325323790311813,
- -0.04520750790834427,
- 0.09269344806671143,
- -0.004165406804531813,
- 0.09521274268627167,
- 0.0003334281500428915,
- -0.057559918612241745,
- 0.10930494219064713,
- -0.0856807753443718,
- -0.08163311332464218,
- 0.055270131677389145,
- 0.11970780789852142,
- 0.02540425956249237,
- 0.027137262746691704,
- 0.044830404222011566,
- -0.03927277773618698,
- 0.0006230900762602687,
- 0.0032103604171425104,
- -0.019045423716306686,
- -0.05735719949007034,
- -0.0943727195262909,
- 0.010708345100283623,
- -0.05420001968741417,
- 0.03173716738820076,
- 0.04749642685055733,
- 0.022868527099490166,
- 0.020358053967356682,
- 0.05117584764957428,
- -0.013472471386194229,
- -0.0895424634218216,
- -0.013615504838526249,
- -0.06788098812103271,
- -0.029157983139157295,
- 0.017903754487633705,
- 0.008713021874427795,
- -0.0012311545433476567,
- -0.01617692969739437,
- -0.07263980805873871,
- -0.07245635986328125,
- 0.059481456875801086,
- -0.021132878959178925,
- -0.03461576998233795,
- 0.07137235254049301,
- 0.15432794392108917,
- 0.06045360118150711,
- 0.026407962664961815,
- -0.007679665926843882,
- 0.003088063793256879,
- -0.023643603548407555,
- 0.045220643281936646,
- -0.0014602543087676167,
- 0.05184212699532509,
- 0.04628986120223999,
- 0.0036101853474974632,
- 0.0027924138121306896,
- 0.009932308457791805,
- -0.048300307244062424,
- -0.01477290503680706,
- -0.06911527365446091,
- 0.06415725499391556,
- -0.00473090261220932,
- -0.01232304610311985,
- 0.024603884667158127,
- 0.0508650504052639,
- 0.061797335743904114,
- 0.028484651818871498,
- -0.027779409661889076,
- -0.08024625480175018,
- 0.043113090097904205,
- -0.03568368777632713,
- -0.026627786457538605,
- -0.003220584476366639,
- -0.011907310225069523,
- -0.027722865343093872,
- 0.0008469116291962564,
- -0.03479939326643944,
- -0.11312909424304962,
- -0.005151181481778622,
- 0.25099343061447144,
- 0.029582181945443153,
- 0.05059271678328514,
- -0.06072636693716049,
- -0.0346580371260643,
- 0.010927105322480202,
- -0.0545571893453598,
- -0.006506009493023157,
- -0.08648595213890076,
- -0.0045194560661911964,
- 0.09346019476652145,
- 0.01461849082261324,
- -0.1017964705824852,
- -0.011426678858697414,
- -0.01854352280497551,
- -0.05995382368564606,
- -0.020829109475016594,
- 0.062220994383096695,
- 0.0006647231639362872,
- -0.01068807765841484,
- -0.03493651747703552,
- 0.053363192826509476,
- -0.02664118818938732,
- 0.04808618873357773,
- 0.06910792738199234,
- -0.003381348680704832,
- -0.028343433514237404,
- -0.03215756267309189,
- -4.784401965142855e-33,
- 0.00764426589012146,
- -0.03588048368692398,
- -0.002223019488155842,
- 0.08371400833129883,
- -0.06076491251587868,
- 0.018262621015310287,
- 0.007195473648607731,
- -0.023398371413350105,
- -0.016105515882372856,
- -0.05395971238613129,
- 0.018009498715400696,
- 0.09170803427696228,
- 0.017095427960157394,
- 0.00995167251676321,
- 0.03162741661071777,
- -0.0257982537150383,
- 0.07237476110458374,
- 0.03531740605831146,
- 0.009227726608514786,
- -0.0029803586658090353,
- -0.07161079347133636,
- 0.06647542119026184,
- -0.07874583452939987,
- 0.022965561598539352,
- 0.006782599724829197,
- 0.08223016560077667,
- -0.005685694515705109,
- -0.09079192578792572,
- -0.13213606178760529,
- 0.016757488250732422,
- 0.012081927619874477,
- 0.003070674603804946,
- -0.09139890968799591,
- 0.062349095940589905,
- 0.03215311840176582,
- 0.03815499320626259,
- -0.006282960996031761,
- -0.04958263039588928,
- 0.02340009994804859,
- -0.025005396455526352,
- 0.00269587361253798,
- 0.00462371064350009,
- -0.02608283795416355,
- -0.05251937732100487,
- 0.12486117333173752,
- 0.053444039076566696,
- 0.015063030645251274,
- 0.027406884357333183,
- -0.008193429559469223,
- -0.021558085456490517,
- 0.002791042672470212,
- 0.04541141539812088,
- -0.06839285045862198,
- -0.09028925746679306,
- 0.005851417779922485,
- -0.06338980793952942,
- -0.01929590478539467,
- 0.09290522336959839,
- -0.013168659061193466,
- 0.03396664932370186,
- -0.06824559718370438,
- 0.11978147178888321,
- -0.13888530433177948,
- 0.03289131447672844,
- -0.0994700938463211,
- 0.03850814327597618,
- -0.09070465713739395,
- -0.07195299118757248,
- 0.0873924046754837,
- -0.0017951726913452148,
- -0.053309231996536255,
- 0.01706562004983425,
- 0.05713997036218643,
- 0.09755287319421768,
- 0.027486339211463928,
- -0.011391342617571354,
- 0.0854344442486763,
- -0.09636251628398895,
- -0.06970556080341339,
- 0.05565425008535385,
- -0.05356026068329811,
- -0.0015501806046813726,
- 0.03191328048706055,
- -0.016153646633028984,
- -0.09352102130651474,
- 0.058245088905096054,
- 0.04092133045196533,
- 0.012776553630828857,
- 0.016003485769033432,
- 0.0027245020028203726,
- -0.10812773555517197,
- 0.019041486084461212,
- 0.027393648400902748,
- 0.05893292650580406,
- -0.023554736748337746,
- 2.3431931537177078e-33,
- 0.04244127497076988,
- -0.028699293732643127,
- -0.03879917412996292,
- -0.026376012712717056,
- -0.019854828715324402,
- 0.04688046872615814,
- -0.05309520661830902,
- -0.01224777102470398,
- 0.012771355919539928,
- 0.04656215384602547,
- 0.03881974518299103,
- -0.06924480944871902,
- 0.06471531093120575,
- 0.007741859648376703,
- 0.010059184394776821,
- -0.015218429267406464,
- 0.005770539399236441,
- -0.025933336466550827,
- -0.03955347463488579,
- 0.08818607032299042,
- -0.08357388526201248,
- 0.06731893867254257,
- -0.013082652352750301,
- 0.032176315784454346,
- 0.009455502033233643,
- 0.07007355242967606,
- -0.020895512774586678,
- 0.04836726188659668,
- 0.06934872269630432,
- 0.03110651858150959,
- 0.01637749746441841,
- -0.07491462677717209,
- -0.05832431837916374,
- -0.00878693163394928,
- 0.02842753380537033,
- 0.08277745544910431,
- 0.04124392941594124,
- 0.03245711699128151,
- -0.04504448175430298,
- -0.010491708293557167,
- -0.034092094749212265,
- 0.007562318816781044,
- -0.02838677540421486,
- 0.05103873834013939,
- 0.0633716732263565,
- -0.05595306679606438,
- -0.010094975121319294,
- -0.02697369083762169,
- -0.09678966552019119,
- 0.011316167190670967,
- 0.007060494273900986,
- 0.0030663262587040663,
- 0.04924576357007027,
- -0.11569926887750626,
- -0.014119669795036316,
- -0.03973697870969772,
- 0.013044350780546665,
- -0.055632226169109344,
- -0.013873090967535973,
- 0.023050541058182716,
- 0.0397089347243309,
- 0.011902326717972755,
- -0.0029250027146190405,
- 0.0852704867720604,
- -0.05199718475341797,
- -0.01632589101791382,
- -0.041332848370075226,
- -0.0008671979303471744,
- -0.07268056273460388,
- 0.05128329247236252,
- 0.009962550364434719,
- -0.025448529049754143,
- -0.06073318049311638,
- 0.06906299293041229,
- 0.05771736055612564,
- 0.05804242938756943,
- 0.010130567476153374,
- 0.02375675179064274,
- 0.0033926942851394415,
- -0.011192778125405312,
- -0.033384207636117935,
- -0.03946409001946449,
- 0.025435665622353554,
- 0.05251436308026314,
- -0.010427643544971943,
- -0.04995917156338692,
- 0.03569319099187851,
- 0.009230174124240875,
- -0.005184968933463097,
- 0.03639872372150421,
- -0.005694405175745487,
- 0.007328738458454609,
- -0.06504888087511063,
- 0.04526413232088089,
- 0.01597985066473484,
- -1.195540377807447e-8,
- 0.021383289247751236,
- 0.004858572036027908,
- 0.04789075627923012,
- 0.00005684285861207172,
- 0.06966089457273483,
- 0.003456634934991598,
- 0.024665705859661102,
- -0.035950668156147,
- -0.0138691496104002,
- -0.0018736886559054255,
- -0.05781620368361473,
- 0.08915556222200394,
- -0.049310073256492615,
- 0.09831299632787704,
- 0.048784010112285614,
- -0.02956550568342209,
- -0.024529244750738144,
- -0.05587292090058327,
- -0.022756366059184074,
- 0.04156184196472168,
- 0.04568837210536003,
- -0.044933438301086426,
- -0.021133936941623688,
- -0.13234853744506836,
- -0.04854173585772514,
- 0.007951626554131508,
- -0.01296199206262827,
- -0.022090673446655273,
- -0.09261796623468399,
- 0.04740666225552559,
- 0.010166320949792862,
- 0.0761147066950798,
- -0.03226397559046745,
- 0.003628656268119812,
- -0.02688128687441349,
- -0.017796063795685768,
- 0.07256118208169937,
- 0.0025605843402445316,
- -0.09855609387159348,
- -0.0026533741038292646,
- 0.010987471789121628,
- -0.025790376588702202,
- -0.005302247125655413,
- -0.030031347647309303,
- 0.06653536856174469,
- -0.050702933222055435,
- 0.015436118468642235,
- -0.050627127289772034,
- -0.01709398627281189,
- -0.0009029617067426443,
- 0.017560193315148354,
- -0.006155895534902811,
- 0.01743261329829693,
- -0.01577172614634037,
- -0.026547515764832497,
- -0.0053363763727247715,
- 0.003428510157391429,
- -0.025635024532675743,
- -0.05528081953525543,
- -0.04416527971625328,
- 0.033897560089826584,
- 0.0472712367773056,
- 0.10340510308742523,
- 0.018339812755584717
- ]
- },
- {
- "keyword": "readme",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.025926750153303146,
- -0.02268998697400093,
- 0.026017582044005394,
- 0.03997024893760681,
- -0.00922955758869648,
- 0.014230567030608654,
- 0.13590775430202484,
- 0.11907485127449036,
- -0.018656214699149132,
- 0.05372275412082672,
- -0.005976766347885132,
- 0.01510128378868103,
- -0.0024736851919442415,
- -0.0026015278417617083,
- -0.04304719343781471,
- -0.01739945076406002,
- -0.006543300114572048,
- 0.06415574252605438,
- -0.10806988179683685,
- -0.1055261492729187,
- 0.015331271104514599,
- 0.08761782199144363,
- -0.013542775064706802,
- -0.02339138835668564,
- -0.12450943887233734,
- -0.0009083400364033878,
- -0.043630436062812805,
- 0.07970254868268967,
- -0.06382160633802414,
- 0.0010197150986641645,
- -0.004736825358122587,
- 0.05511440709233284,
- -0.027679841965436935,
- -0.015370230190455914,
- -0.03246202692389488,
- -0.023837130516767502,
- 0.050532106310129166,
- -0.07560598850250244,
- -0.014070061966776848,
- 0.004586543422192335,
- 0.03732689470052719,
- -0.013168774545192719,
- -0.0028942523058503866,
- 0.01860625110566616,
- 0.07481905817985535,
- -0.043487705290317535,
- 0.04960650950670242,
- -0.0587649941444397,
- 0.048556357622146606,
- 0.015628468245267868,
- -0.06255374848842621,
- -0.03368699550628662,
- 0.008698010817170143,
- -0.026392759755253792,
- 0.03531986474990845,
- 0.026226121932268143,
- -0.03463180363178253,
- 0.00688844034448266,
- 0.08071735501289368,
- -0.10232824832201004,
- 0.027762215584516525,
- 0.012193889357149601,
- -0.09208263456821442,
- 0.052012234926223755,
- -0.01553631667047739,
- 0.005000980570912361,
- 0.04498939961194992,
- 0.03911074623465538,
- -0.0996169000864029,
- -0.08606795966625214,
- 0.082573302090168,
- -0.012843075208365917,
- -0.0775039792060852,
- 0.028535759076476097,
- 0.021076850593090057,
- 0.03694571927189827,
- 0.0031383635941892862,
- -0.026825502514839172,
- 0.03090493194758892,
- -0.05590539425611496,
- -0.09701184928417206,
- 0.045689236372709274,
- 0.027936942875385284,
- -0.036590516567230225,
- -0.053269606083631516,
- -0.01831570640206337,
- -0.000025903598725562915,
- -0.0426577664911747,
- -0.02315734513103962,
- 0.017757155001163483,
- -0.05052434653043747,
- -0.008799977600574493,
- -0.003197065554559231,
- 0.07949800044298172,
- 0.007244425360113382,
- 0.05249674990773201,
- 0.007987640798091888,
- 0.04099119082093239,
- -0.03286486491560936,
- 0.23660992085933685,
- 0.04378197342157364,
- 0.0649566724896431,
- 0.09058282524347305,
- 0.056105028837919235,
- 0.05537280812859535,
- -0.05245892331004143,
- -0.03435429558157921,
- 0.053027234971523285,
- -0.0005203825421631336,
- -0.003764221677556634,
- 0.019285401329398155,
- -0.05367628484964371,
- 0.015118333511054516,
- 0.02082923613488674,
- 0.007508473005145788,
- -0.026458121836185455,
- 0.015480737201869488,
- -0.01197779830545187,
- 0.06383053958415985,
- 0.01526438258588314,
- 0.02469724230468273,
- 0.027659788727760315,
- -0.07145164906978607,
- 0.07272344827651978,
- 0.03637799248099327,
- -0.13359896838665009,
- -0.01600050739943981,
- -9.337264787623328e-34,
- -0.008227815851569176,
- -0.020656762644648552,
- 0.013155497610569,
- 0.05929291248321533,
- 0.029198631644248962,
- -0.0034787985496222973,
- -0.0037010202649980783,
- 0.000024056640540948138,
- -0.05276228487491608,
- -0.07184451073408127,
- -0.015451115556061268,
- -0.019490232691168785,
- -0.09141620248556137,
- 0.10290452092885971,
- 0.07361394912004471,
- 0.013059361837804317,
- 0.014785154722630978,
- 0.036892473697662354,
- 0.001019932678900659,
- 0.004791634157299995,
- -0.03194861114025116,
- -0.03455789014697075,
- -0.0007617968949489295,
- 0.06691603362560272,
- -0.05526209995150566,
- -0.027592549100518227,
- 0.028018251061439514,
- -0.059990424662828445,
- 0.004658134188503027,
- 0.008091459050774574,
- -0.0018286887789145112,
- -0.0029992617201060057,
- 0.0030840663239359856,
- 0.013197154738008976,
- -0.04783368483185768,
- -0.12171187251806259,
- 0.09798593074083328,
- -0.028988637030124664,
- -0.018340080976486206,
- 0.009237897582352161,
- -0.0014307921519502997,
- -0.07382433861494064,
- -0.005911786574870348,
- -0.07519637793302536,
- 0.03734269738197327,
- 0.10413676500320435,
- -0.036219555884599686,
- -0.09458252787590027,
- -0.027034394443035126,
- -0.03084682673215866,
- -0.07037336379289627,
- 0.006291938479989767,
- -0.038296379148960114,
- -0.006595910061150789,
- 0.00325963506475091,
- -0.012981753796339035,
- 0.03775272145867348,
- 0.04173079878091812,
- 0.09302560240030289,
- -0.03802045062184334,
- 0.0704202875494957,
- 0.1391388475894928,
- 0.06135827675461769,
- -0.06307293474674225,
- -0.014551631174981594,
- 0.02877296321094036,
- -0.06283482909202576,
- -0.03062526322901249,
- 0.026643743738532066,
- -0.011507095769047737,
- -0.04562868922948837,
- 0.027906961739063263,
- 0.03639470785856247,
- 0.01909181848168373,
- -0.007489760871976614,
- -0.045247651636600494,
- -0.0423540398478508,
- 0.04535241425037384,
- 0.03971881791949272,
- 0.0071399318985641,
- 0.050799548625946045,
- -0.009498106315732002,
- 0.05328884720802307,
- 0.050305839627981186,
- -0.03203140199184418,
- -0.03927407041192055,
- 0.033666882663965225,
- -0.12105389684438705,
- -0.002977503463625908,
- -0.011078699491918087,
- -0.03180912137031555,
- 0.008822876960039139,
- 0.011270217597484589,
- -0.01423395611345768,
- -0.045510683208703995,
- 2.3081647077601498e-33,
- -0.08168315887451172,
- 0.0037757244426757097,
- 0.01614382117986679,
- 0.07225550711154938,
- -0.005450154654681683,
- 0.01985514536499977,
- -0.05383499339222908,
- 0.07143129408359528,
- 0.026316123083233833,
- -0.017228081822395325,
- 0.024547919631004333,
- 0.00482200738042593,
- 0.06451218575239182,
- 0.013989980332553387,
- 0.03683699294924736,
- -0.00805679801851511,
- 0.13632643222808838,
- -0.11798199266195297,
- -0.11649754643440247,
- 0.04285147041082382,
- -0.055354926735162735,
- -0.012911337427794933,
- -0.008655439130961895,
- 0.0508786216378212,
- -0.02804236300289631,
- 0.08377179503440857,
- -0.004009715281426907,
- -0.02485126629471779,
- -0.08392297476530075,
- -0.05016941577196121,
- 0.019155453890562057,
- -0.0002836835919879377,
- -0.012413342483341694,
- -0.0319472961127758,
- -0.041490960866212845,
- 0.058689337223768234,
- -0.009562636725604534,
- 0.022004859521985054,
- -0.06468872725963593,
- 0.0697072297334671,
- 0.08202946931123734,
- 0.06862131506204605,
- -0.01333739422261715,
- -0.0006424164748750627,
- -0.0449083037674427,
- 0.006840553134679794,
- 0.06352399289608002,
- -0.06747269630432129,
- 0.06797029823064804,
- 0.09020359069108963,
- -0.08353987336158752,
- 0.025895817205309868,
- -0.025691289454698563,
- -0.045731835067272186,
- -0.027898238971829414,
- -0.05905141681432724,
- 0.006038983818143606,
- -0.015654563903808594,
- -0.004841131623834372,
- -0.09746664017438889,
- 0.025605836883187294,
- 0.004171891137957573,
- -0.057708460837602615,
- -0.018202951177954674,
- -0.02094290219247341,
- -0.060221705585718155,
- -0.0593116469681263,
- -0.061526402831077576,
- 0.033049922436475754,
- -0.009922714903950691,
- 0.03284226730465889,
- -0.035976383835077286,
- -0.06995249539613724,
- -0.0016992773162201047,
- 0.06777120381593704,
- -0.01605568639934063,
- -0.06641024351119995,
- 0.08592502027750015,
- -0.08785846084356308,
- 0.017951661720871925,
- 0.003943958319723606,
- -0.02487083338201046,
- -0.06283176690340042,
- 0.0751340240240097,
- 0.10519247502088547,
- 0.013283574022352695,
- -0.018971525132656097,
- 0.020412882789969444,
- 0.029780283570289612,
- -0.018310662358999252,
- -0.04251383990049362,
- -0.003801077837124467,
- 0.09060278534889221,
- 0.09696033596992493,
- -0.024038372561335564,
- -1.515690328801611e-8,
- -0.0001417361490894109,
- 0.002285401336848736,
- -0.02058868668973446,
- 0.06823579221963882,
- 0.03398556262254715,
- -0.026820413768291473,
- -0.047685377299785614,
- -0.026620915159583092,
- -0.014515741728246212,
- 0.030063586309552193,
- 0.001936334534548223,
- 0.004264857154339552,
- -0.04109754040837288,
- 0.07848139107227325,
- 0.03157421946525574,
- 0.06774664670228958,
- -0.06698231399059296,
- -0.042980700731277466,
- -0.038893308490514755,
- -0.022406872361898422,
- 0.04474937543272972,
- 0.020157774910330772,
- -0.02496015466749668,
- 0.010485783219337463,
- 0.049974773079156876,
- 0.06329651921987534,
- 0.015555168502032757,
- 0.07763775438070297,
- -0.008322297595441341,
- 0.05030614510178566,
- -0.0038004620000720024,
- 0.06109403446316719,
- -0.024772385135293007,
- -0.031024472787976265,
- -0.005112739279866219,
- 0.01892136223614216,
- 0.04005973041057587,
- 0.025860533118247986,
- 0.037944260984659195,
- 0.1126910001039505,
- 0.08840012550354004,
- 0.02242443524301052,
- 0.10972533375024796,
- -0.0003692800528369844,
- -0.08740450441837311,
- -0.018235107883810997,
- 0.05048694461584091,
- -0.039676766842603683,
- 0.029488161206245422,
- -0.06622286140918732,
- 0.00868442002683878,
- 0.053328026086091995,
- 0.06691596657037735,
- 0.012370645068585873,
- 0.0024652087595313787,
- -0.02627413533627987,
- 0.0739348977804184,
- 0.07703666388988495,
- -0.03231412544846535,
- 0.020274056121706963,
- 0.05979466810822487,
- 0.009759798645973206,
- 0.03675520792603493,
- 0.019488874822854996
- ]
- },
- {
- "keyword": "changelog",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.008171035908162594,
- 0.016690582036972046,
- 0.04471650719642639,
- -0.00949071254581213,
- 0.08359057456254959,
- -0.024067552760243416,
- 0.09176507592201233,
- -0.03239336982369423,
- 0.029945874586701393,
- 0.05504318326711655,
- -0.009875151328742504,
- -0.031008651480078697,
- -0.007181902881711721,
- 0.009529799222946167,
- -0.0255901999771595,
- 0.007148623000830412,
- -0.07285790145397186,
- -0.0012671631993725896,
- -0.046674009412527084,
- 0.04005968198180199,
- 0.026487452909350395,
- 0.03161829337477684,
- -0.037822969257831573,
- 0.06827865540981293,
- 0.039127372205257416,
- 0.013283737935125828,
- -0.05047719553112984,
- -0.016830524429678917,
- 0.002934920834377408,
- -0.0988251194357872,
- -0.04609127715229988,
- 0.03807378560304642,
- -0.011869031935930252,
- 0.006695053074508905,
- -0.015705255791544914,
- -0.08133348822593689,
- 0.05383197218179703,
- -0.01437376532703638,
- 0.024354662746191025,
- -0.014433229342103004,
- -0.04846944287419319,
- -0.05052727833390236,
- -0.02338714897632599,
- -0.05762333422899246,
- -0.051709603518247604,
- 0.05723818019032478,
- -0.051415108144283295,
- 0.01524414587765932,
- -0.01562666706740856,
- 0.03743746876716614,
- 0.028972219675779343,
- -0.019318658858537674,
- -0.007864813320338726,
- -0.07113532721996307,
- 0.029968393966555595,
- 0.04532229155302048,
- 0.07314657419919968,
- 0.07246500998735428,
- 0.015565912239253521,
- -0.07361099123954773,
- 0.029738904908299446,
- 0.061676498502492905,
- -0.04314045608043671,
- 0.008964241482317448,
- 0.01689651608467102,
- -0.03509560227394104,
- 0.030482284724712372,
- 0.01497091818600893,
- 0.0791209489107132,
- 0.0025699790567159653,
- -0.09666017442941666,
- 0.09880126267671585,
- 0.020753642544150352,
- -0.0500401109457016,
- 0.03982292488217354,
- -0.08598703891038895,
- 0.030213691294193268,
- 0.06982197612524033,
- 0.05914178863167763,
- -0.10224874317646027,
- 0.017310652881860733,
- 0.05438133329153061,
- -0.030715566128492355,
- 0.04494025185704231,
- 0.05905762314796448,
- -0.08368168771266937,
- -0.03322409838438034,
- 0.05277501419186592,
- 0.04369056597352028,
- -0.05630681663751602,
- 0.0004505259857978672,
- 0.01096242293715477,
- 0.07173213362693787,
- -0.007846402004361153,
- -0.09214135259389877,
- 0.031941842287778854,
- -0.12525169551372528,
- 0.029382208362221718,
- 0.1067366972565651,
- 0.17708735167980194,
- 0.002991084009408951,
- 0.09185384958982468,
- 0.03630887717008591,
- -0.01600111834704876,
- 0.014857984147965908,
- -0.029133131727576256,
- -0.00413846829906106,
- 0.0436992384493351,
- 0.003553445916622877,
- 0.0681692585349083,
- 0.04277892783284187,
- 0.013106582686305046,
- -0.005103091709315777,
- -0.021851852536201477,
- 0.04563196748495102,
- -0.008732311427593231,
- -0.02889147400856018,
- 0.012104872614145279,
- -0.11626388877630234,
- 0.008796527050435543,
- 0.11675148457288742,
- 0.005834527779370546,
- -0.042736444622278214,
- -0.01989569142460823,
- -0.013771208934485912,
- 0.008941532112658024,
- 0.06325171887874603,
- -2.979414961091878e-33,
- 0.09531018137931824,
- 0.01324380561709404,
- 0.01899837888777256,
- 0.07177271693944931,
- 0.0988709032535553,
- 0.07164569199085236,
- -0.0486014150083065,
- -0.020113544538617134,
- -0.05558823421597481,
- 0.0013498542830348015,
- -0.02707938477396965,
- 0.057925548404455185,
- 0.0014601770089939237,
- -0.06357600539922714,
- 0.055242735892534256,
- -0.047500673681497574,
- -0.034610386937856674,
- -0.00426459452137351,
- 0.09280692785978317,
- 0.031474918127059937,
- -0.051412999629974365,
- 0.03977084159851074,
- -0.0005541678401641548,
- 0.0038474160246551037,
- 0.010869268327951431,
- 0.07605955004692078,
- 0.039186589419841766,
- -0.04336820915341377,
- 0.015413596294820309,
- -0.005603828467428684,
- 0.026191553100943565,
- -0.04178144037723541,
- -0.04591305926442146,
- 0.015125613659620285,
- 0.03855764865875244,
- -0.06096892058849335,
- -0.008580890484154224,
- -0.08462109416723251,
- -0.017473967745900154,
- -0.06317766010761261,
- -0.018799426034092903,
- -0.06118515878915787,
- -0.10650596022605896,
- -0.03311416134238243,
- -0.00825200043618679,
- 0.007104284130036831,
- -0.014477510936558247,
- 0.04815016686916351,
- 0.013132925145328045,
- -0.061154551804065704,
- 0.03698372468352318,
- 0.0357680507004261,
- -0.1029759868979454,
- -0.059804439544677734,
- -0.003243429120630026,
- -0.0031984192319214344,
- 0.03533431887626648,
- -0.021930059418082237,
- 0.040854498744010925,
- -0.0013989320723339915,
- 0.09037341177463531,
- -0.0028218631632626057,
- 0.08629096299409866,
- 0.02078840509057045,
- -0.010194058530032635,
- 0.04517044872045517,
- 0.027891060337424278,
- -0.041053250432014465,
- -0.018088599666953087,
- 0.02360769361257553,
- -0.0821838527917862,
- -0.05706118792295456,
- 0.01495986059308052,
- 0.07345180958509445,
- -0.02328154258430004,
- -0.004723936319351196,
- -0.07629232853651047,
- 0.03868936747312546,
- -0.09394479542970657,
- 0.01979060471057892,
- -0.037642888724803925,
- -0.047802556306123734,
- -0.04829719662666321,
- 0.02496776171028614,
- 0.06089339777827263,
- -0.1035853698849678,
- 0.025298798456788063,
- 0.045227449387311935,
- -0.05583367124199867,
- 0.03768268600106239,
- -0.013494187034666538,
- 0.031954485923051834,
- 0.07291402667760849,
- 0.04619435593485832,
- 0.04747078940272331,
- 7.635376719663128e-34,
- -0.11221134662628174,
- 0.019542871043086052,
- -0.024002015590667725,
- -0.009935709647834301,
- 0.0005119589040987194,
- -0.02214701659977436,
- 0.046016860753297806,
- 0.07245330512523651,
- 0.05620509386062622,
- 0.017798904329538345,
- 0.060682788491249084,
- -0.04432537779211998,
- -0.060711126774549484,
- -0.004125233739614487,
- -0.0033442385029047728,
- 0.0748070478439331,
- -0.01613357663154602,
- -0.010185757651925087,
- -0.08097296953201294,
- 0.03307773172855377,
- 0.006497090682387352,
- 0.09148890525102615,
- -0.1351616531610489,
- 0.0005558740231208503,
- -0.057906247675418854,
- -0.012596034444868565,
- 0.07402314990758896,
- 0.07234113663434982,
- 0.041664496064186096,
- -0.07881732285022736,
- -0.052680447697639465,
- -0.06849471479654312,
- -0.11323650926351547,
- 0.07734150439500809,
- 0.039702292531728745,
- -0.039199985563755035,
- 0.021784337237477303,
- -0.035734403878450394,
- -0.07316364347934723,
- 0.0642838254570961,
- -0.025282615795731544,
- 0.009181389585137367,
- 0.03615005686879158,
- 0.03094705194234848,
- -0.028025180101394653,
- 0.045472390949726105,
- -0.07369699329137802,
- 0.0024200924672186375,
- 0.031434498727321625,
- -0.02201710268855095,
- 0.023422427475452423,
- -0.06811601668596268,
- 0.10087913274765015,
- 0.001805783249437809,
- -0.027668079361319542,
- 0.09641099721193314,
- -0.04394138231873512,
- -0.04249557852745056,
- 0.016271524131298065,
- 0.042956896126270294,
- -0.08116175979375839,
- 0.005972919054329395,
- 0.0033920712303370237,
- 0.0421401672065258,
- -0.017327304929494858,
- -0.03115648776292801,
- -0.06611441820859909,
- -0.06096255034208298,
- 0.008010031655430794,
- -0.035955652594566345,
- 0.05803724378347397,
- -0.09432584047317505,
- -0.05781795084476471,
- -0.005915882531553507,
- 0.03891654312610626,
- -0.06061559170484543,
- -0.06700877100229263,
- -0.10057701170444489,
- -0.04757370799779892,
- 0.007217492908239365,
- -0.0367184653878212,
- -0.033790312707424164,
- 0.028759349137544632,
- 0.026270100846886635,
- -0.007119819987565279,
- -0.01058889739215374,
- 0.012170534580945969,
- 0.10550551861524582,
- 0.015742290765047073,
- -0.02795686572790146,
- -0.06182006374001503,
- 0.03391281142830849,
- -0.010783212259411812,
- -0.0046740369871258736,
- -0.03812599927186966,
- -1.2228054124818755e-8,
- -0.10692139714956284,
- -0.012520411051809788,
- 0.09319345653057098,
- 0.04613450542092323,
- 0.1549241989850998,
- 0.024302182719111443,
- -0.010909509845077991,
- 0.045518726110458374,
- -0.042547594755887985,
- 0.03340106084942818,
- -0.032941609621047974,
- 0.03359067812561989,
- 0.018240852281451225,
- 0.0026652966625988483,
- 0.015709521248936653,
- -0.06634234637022018,
- -0.010884417220950127,
- -0.04559071362018585,
- -0.010575172491371632,
- -0.09645311534404755,
- -0.020866870880126953,
- 0.04879768565297127,
- 0.011183664202690125,
- 0.0005983504233881831,
- -0.029125653207302094,
- -0.07158713042736053,
- 0.04901545122265816,
- 0.061957161873579025,
- -0.062190938740968704,
- 0.005851855035871267,
- 0.07402952015399933,
- 0.08023176342248917,
- 0.02652907744050026,
- 0.012388003058731556,
- -0.018224922940135002,
- -0.0012413387885317206,
- -0.013361840508878231,
- -0.01157299242913723,
- 0.03730406239628792,
- -0.0357113853096962,
- 0.013132897205650806,
- -0.015479113906621933,
- 0.018828440457582474,
- 0.03784212842583656,
- -0.1269751787185669,
- -0.059755124151706696,
- 0.014213716611266136,
- -0.11042799800634384,
- -0.030865855515003204,
- -0.0596742108464241,
- 0.021554740145802498,
- 0.05903123319149017,
- 0.03045598603785038,
- 0.037179134786129,
- 0.04010414332151413,
- -0.017049945890903473,
- 0.04731745645403862,
- -0.040034517645835876,
- 0.0694308951497078,
- 0.041281331330537796,
- 0.04929141327738762,
- -0.0005530380294658244,
- 0.042099714279174805,
- -0.0004181722761131823
- ]
- },
- {
- "keyword": "wiki",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05513677000999451,
- 0.048316486179828644,
- -0.045858774334192276,
- -0.009004289284348488,
- -0.010216046124696732,
- -0.08132945001125336,
- 0.10870584845542908,
- 0.08682016283273697,
- -0.04352154955267906,
- 0.03950139135122299,
- 0.10098688304424286,
- 0.06870602071285248,
- -0.004639600869268179,
- -0.005019068252295256,
- -0.0626291036605835,
- 0.003173896810039878,
- -0.0427006259560585,
- -0.007532097399234772,
- -0.12648577988147736,
- -0.05775080621242523,
- 0.06399694830179214,
- -0.017587250098586082,
- 0.04326951131224632,
- 0.023639608174562454,
- 0.019239580258727074,
- -0.017213718965649605,
- -0.013008585199713707,
- 0.03445716202259064,
- 0.015281792730093002,
- -0.06782308965921402,
- -0.09398234635591507,
- 0.05650528520345688,
- 0.05788212642073631,
- 0.005237344652414322,
- -0.08320070803165436,
- 0.08713967353105545,
- 0.027579285204410553,
- -0.03958030417561531,
- 0.06789666414260864,
- -0.020761117339134216,
- -0.022229865193367004,
- -0.04744596779346466,
- 0.019592152908444405,
- 0.030065054073929787,
- 0.019469890743494034,
- 0.0650671198964119,
- -0.005607835948467255,
- -0.05997200310230255,
- -0.0837913379073143,
- 0.03179088234901428,
- -0.05529502034187317,
- 0.004614232107996941,
- -0.0331047959625721,
- -0.004463054705411196,
- 0.013456199318170547,
- -0.07801561057567596,
- -0.1237291693687439,
- 0.0074204071424901485,
- 0.02184346131980419,
- -0.05590082332491875,
- 0.0725003331899643,
- 0.0022604139521718025,
- -0.10142061859369278,
- 0.10907699167728424,
- 0.014903047122061253,
- -0.04828939959406853,
- 0.00993062648922205,
- 0.05362385883927345,
- 0.010521700605750084,
- -0.0704113245010376,
- 0.019745532423257828,
- 0.006399679929018021,
- 0.062148548662662506,
- 0.02601844072341919,
- 0.026900814846158028,
- -0.0718466117978096,
- 0.054712049663066864,
- -0.006328059360384941,
- -0.03302464261651039,
- -0.016046004369854927,
- 0.03983459249138832,
- 0.016580354422330856,
- 0.04008720442652702,
- -0.022213680669665337,
- 0.06312967836856842,
- -0.032554980367422104,
- -0.02039773017168045,
- 0.017387066036462784,
- -0.0628361850976944,
- 0.026997772976756096,
- -0.00869340356439352,
- -0.0787695124745369,
- 0.07201220095157623,
- -0.0253240205347538,
- -0.009748001582920551,
- 0.014069435186684132,
- 0.06207205355167389,
- -0.04119158536195755,
- -0.010952314361929893,
- 0.21663552522659302,
- -0.002968038897961378,
- 0.06127661094069481,
- 0.06371523439884186,
- 0.05277403071522713,
- -0.02065015397965908,
- -0.06213454529643059,
- 0.03368629142642021,
- 0.05315910652279854,
- 0.02260473184287548,
- -0.04468940570950508,
- -0.015794873237609863,
- -0.012464959174394608,
- -0.03356758877635002,
- -0.06316708773374557,
- -0.0454646535217762,
- 0.04513565078377724,
- 0.02489255554974079,
- 0.0354270413517952,
- 0.013322423212230206,
- -0.02702007070183754,
- 0.028607705608010292,
- -0.019648786634206772,
- -0.04502091184258461,
- -0.00909183919429779,
- -0.07475630193948746,
- -0.027359621599316597,
- -0.03237459063529968,
- -2.7887192880037784e-33,
- 0.04781046509742737,
- 0.007975829765200615,
- -0.050869427621364594,
- 0.08290812373161316,
- 0.013960286974906921,
- -0.05888015404343605,
- 0.01592482626438141,
- -0.04748532921075821,
- -0.09817769378423691,
- 0.0036824208218604326,
- 0.043938200920820236,
- 0.03260593116283417,
- -0.08652088791131973,
- -0.030615318566560745,
- 0.09609072655439377,
- 0.018400341272354126,
- -0.05323903635144234,
- 0.041996076703071594,
- -0.012486740946769714,
- 0.04458308964967728,
- 0.044310495257377625,
- -0.020572949200868607,
- -0.05000944808125496,
- -0.033867381513118744,
- 0.017354048788547516,
- 0.035714585334062576,
- -0.04923216998577118,
- -0.02137109264731407,
- -0.019918275997042656,
- 0.053860582411289215,
- 0.04499995708465576,
- 0.001379089429974556,
- 0.015414274297654629,
- 0.011064658872783184,
- 0.08368270844221115,
- -0.01592005044221878,
- -0.014253538101911545,
- -0.049248240888118744,
- 0.0828222781419754,
- -0.07952209562063217,
- 0.004491182044148445,
- -0.06426354497671127,
- -0.10082825273275375,
- 0.0017843017121776938,
- 0.01573421061038971,
- 0.06437614560127258,
- -0.025058792904019356,
- -0.056256819516420364,
- 0.06088170409202576,
- -0.01592441089451313,
- -0.01263011060655117,
- 0.0684298574924469,
- -0.03748901188373566,
- -0.03062625601887703,
- 0.007303889375180006,
- -0.0436941422522068,
- -0.01444623526185751,
- 0.006434977520257235,
- -0.011953292414546013,
- 0.055008452385663986,
- -0.012033450417220592,
- 0.09597194194793701,
- -0.07583212852478027,
- 0.048617035150527954,
- -0.03149024769663811,
- -0.007409586105495691,
- -0.07385765761137009,
- -0.045140888541936874,
- 0.019034720957279205,
- -0.03074556589126587,
- -0.03935268148779869,
- 0.00038993105408735573,
- -0.027400458231568336,
- 0.00759522058069706,
- -0.08802219480276108,
- 0.010261994786560535,
- 0.019320977851748466,
- -0.051528677344322205,
- -0.11255153268575668,
- 0.015420299954712391,
- -0.022209754213690758,
- -0.0524059496819973,
- -0.06493371725082397,
- 0.008954595774412155,
- -0.06728505343198776,
- 0.04477309435606003,
- 0.02615443989634514,
- -0.027950620278716087,
- 0.06619266420602798,
- -0.00885473471134901,
- -0.06712111830711365,
- 0.02330874279141426,
- -0.009824521839618683,
- -0.0006682423409074545,
- -0.07499555498361588,
- 4.098860639241005e-34,
- -0.029506787657737732,
- -0.07689682394266129,
- 0.0054415189661085606,
- 0.056994374841451645,
- -0.004977012984454632,
- 0.01605367101728916,
- -0.04415534809231758,
- 0.015595490112900734,
- 0.008566086180508137,
- 0.05927532538771629,
- 0.06594403833150864,
- -0.04743296280503273,
- -0.049234434962272644,
- 0.10525225847959518,
- 0.01889606937766075,
- 0.0361488051712513,
- 0.02539903298020363,
- -0.0324016734957695,
- -0.03199772536754608,
- 0.01825338415801525,
- 0.001757790450938046,
- 0.06315471231937408,
- 0.026232847943902016,
- 0.01720772497355938,
- -0.02928769774734974,
- 0.053251493722200394,
- 0.049045905470848083,
- 0.03839976340532303,
- -0.08389909565448761,
- -0.013426468707621098,
- -0.05440020561218262,
- -0.15030167996883392,
- 0.023910613730549812,
- -0.005074708256870508,
- -0.041701871901750565,
- 0.0019271960482001305,
- 0.04191727936267853,
- 0.024953648447990417,
- -0.04481782391667366,
- 0.002153138630092144,
- 0.1392366588115692,
- -0.028754398226737976,
- 0.0034369472414255142,
- -0.005846295040100813,
- -0.09578843414783478,
- 0.010770021006464958,
- 0.0195535309612751,
- 0.05651812627911568,
- 0.014719817787408829,
- -0.08321723341941833,
- 0.08803877234458923,
- 0.09125903248786926,
- 0.012749817222356796,
- -0.0886150524020195,
- 0.023432664573192596,
- 0.021497536450624466,
- -0.06646514683961868,
- 0.027958117425441742,
- 0.01845315471291542,
- 0.01913338527083397,
- -0.03604209050536156,
- -0.06966706365346909,
- -0.09744258224964142,
- 0.15828196704387665,
- 0.010407956317067146,
- 0.027817629277706146,
- -0.08305077254772186,
- -0.0010185155551880598,
- -0.012970534153282642,
- 0.001800829661078751,
- 0.015110179781913757,
- 0.05650619789958,
- 0.013114485889673233,
- -0.007030488457530737,
- -0.00813914742320776,
- -0.020701821893453598,
- -0.03433884307742119,
- -0.024377616122364998,
- -0.06783415377140045,
- -0.018588578328490257,
- -0.027815911918878555,
- -0.03722149878740311,
- 0.018240416422486305,
- -0.002043234184384346,
- 0.022121857851743698,
- 0.003811428789049387,
- 0.07528118044137955,
- 0.027187157422304153,
- -0.055641867220401764,
- -0.03030327521264553,
- -0.02554342895746231,
- -0.0066122435964643955,
- 0.024672096595168114,
- 0.06986483186483383,
- -0.03519745543599129,
- -1.7211210234790997e-8,
- -0.05207081139087677,
- 0.003890763968229294,
- 0.0053448788821697235,
- -0.004788821097463369,
- -0.01780950091779232,
- 0.023777898401021957,
- 0.13863572478294373,
- -0.026185402646660805,
- -0.025466466322541237,
- 0.09250492602586746,
- 0.02145577035844326,
- 0.0630967915058136,
- 0.03248857334256172,
- 0.007636444643139839,
- 0.09024427086114883,
- -0.022016996517777443,
- 0.01962181366980076,
- 0.08368100970983505,
- -0.002854940015822649,
- -0.06239702180027962,
- 0.07795760035514832,
- -0.030245790258049965,
- 0.06570107489824295,
- 0.018275124952197075,
- 0.009396533481776714,
- 0.07698266953229904,
- 0.04521796107292175,
- 0.08988668024539948,
- 0.006856509018689394,
- -0.08028673380613327,
- -0.04320291429758072,
- 0.07532704621553421,
- -0.04465775191783905,
- -0.04183531925082207,
- 0.032881155610084534,
- 0.02890930138528347,
- -0.0659276470541954,
- -0.07057890295982361,
- -0.05618929862976074,
- -0.05569896474480629,
- -0.021981680765748024,
- 0.04013948515057564,
- -0.03528931364417076,
- 0.09636896103620529,
- -0.01043426338583231,
- 0.04414335638284683,
- 0.023221028968691826,
- -0.03454709053039551,
- 0.03234871104359627,
- -0.031999263912439346,
- -0.00009493045217823237,
- 0.0265245009213686,
- 0.12740454077720642,
- 0.05781025066971779,
- -0.023557201027870178,
- -0.006293139886111021,
- 0.02394702658057213,
- 0.06064790487289429,
- -0.032661210745573044,
- -0.041346509009599686,
- 0.1116279661655426,
- 0.015723569318652153,
- 0.04494314268231392,
- 0.003872077213600278
- ]
- },
- {
- "keyword": "cv",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.10409380495548248,
- 0.054924238473176956,
- -0.07767441868782043,
- 0.013104257173836231,
- 0.04712884500622749,
- 0.05152852460741997,
- -0.018265942111611366,
- 0.04592062160372734,
- -0.04839802905917168,
- -0.009477353654801846,
- 0.018941661342978477,
- -0.097200408577919,
- 0.021286845207214355,
- 0.008061634376645088,
- -0.08557099103927612,
- -0.030578607693314552,
- 0.04701561853289604,
- 0.026110950857400894,
- 0.04809831827878952,
- -0.009041126817464828,
- -0.13563863933086395,
- 0.06315764784812927,
- 0.030166422948241234,
- -0.01997111178934574,
- -0.021653708070516586,
- 0.051582060754299164,
- -0.09196501225233078,
- 0.02741091139614582,
- 0.010331369005143642,
- -0.11284967511892319,
- -0.013226546347141266,
- -0.04037768766283989,
- 0.08139974623918533,
- 0.06607816368341446,
- -0.0030624177306890488,
- 0.029667677357792854,
- -0.041439078748226166,
- 0.04205811396241188,
- -0.034727826714515686,
- 0.02945900149643421,
- -0.042669735848903656,
- -0.06711320579051971,
- -0.05812569335103035,
- 0.010292353108525276,
- 0.07028985768556595,
- 0.008388922549784184,
- 0.05632910877466202,
- -0.0061698839999735355,
- 0.016213346272706985,
- 0.010114769451320171,
- -0.0036217779852449894,
- -0.05195894092321396,
- -0.03242534026503563,
- 0.016653604805469513,
- -0.0686156302690506,
- 0.018446799367666245,
- -0.043099295347929,
- -0.0032597158569842577,
- -0.048642415553331375,
- -0.03933633118867874,
- 0.00006013469464960508,
- 0.02329629473388195,
- -0.0018181494669988751,
- 0.0764029324054718,
- -0.01262154895812273,
- -0.03508486971259117,
- -0.012337584979832172,
- 0.07943527400493622,
- -0.01574745774269104,
- -0.0779716745018959,
- -0.03480859473347664,
- 0.0023365907836705446,
- -0.06559691578149796,
- 0.07421106100082397,
- 0.02982228249311447,
- 0.03390125185251236,
- 0.029648680239915848,
- -0.04142110422253609,
- 0.0834902971982956,
- -0.0542888417840004,
- 0.05776533856987953,
- 0.0029135996010154486,
- -0.0976688340306282,
- 0.0014911046018823981,
- 0.05939856171607971,
- 0.03734903782606125,
- 0.043410640209913254,
- -0.019518621265888214,
- 0.009557850658893585,
- 0.03717748820781708,
- 0.04382602125406265,
- -0.03513398393988609,
- 0.0852552279829979,
- 0.028950368985533714,
- -0.04694262892007828,
- 0.004990898072719574,
- 0.0152664165943861,
- -0.03464127331972122,
- 0.04369841888546944,
- 0.20625263452529907,
- -0.01843121275305748,
- -0.0059481048956513405,
- -0.0011893664486706257,
- 0.04176823049783707,
- 0.015911966562271118,
- 0.011987377889454365,
- 0.03552861511707306,
- 0.05564909428358078,
- -0.01364298164844513,
- 0.031889382749795914,
- 0.03723714500665665,
- 0.12272603064775467,
- -0.06522295624017715,
- -0.03531640022993088,
- 0.05348852649331093,
- 0.047965288162231445,
- -0.057434361428022385,
- 0.02849050797522068,
- -0.015303367748856544,
- 0.011975893750786781,
- -0.01814389042556286,
- 0.015346930362284184,
- -0.0269352775067091,
- -0.028422750532627106,
- -0.14376294612884521,
- -0.13237731158733368,
- 0.07882551103830338,
- -4.329038228837348e-33,
- -0.00657250639051199,
- 0.010945009998977184,
- 0.07787452638149261,
- 0.036565035581588745,
- 0.015600726939737797,
- 0.06376727670431137,
- -0.04184029996395111,
- 0.009535381570458412,
- -0.04501707851886749,
- 0.026742221787571907,
- -0.02235621213912964,
- 0.032377567142248154,
- 0.03400421887636185,
- 0.07404505461454391,
- 0.04299105703830719,
- 0.10009603202342987,
- -0.045947808772325516,
- 0.019139468669891357,
- -0.006132720969617367,
- -0.06774864345788956,
- -0.02185608632862568,
- -0.044110413640737534,
- 0.003266856772825122,
- 0.043737176805734634,
- 0.013567966409027576,
- -0.020891008898615837,
- 0.03236505016684532,
- -0.02729428932070732,
- 0.03319040313363075,
- 0.018290655687451363,
- -0.005679766181856394,
- 0.03086581826210022,
- 0.02529304102063179,
- -0.04121891409158707,
- 0.052508365362882614,
- 0.07969328761100769,
- 0.0016494992887601256,
- -0.0928773432970047,
- 0.019945887848734856,
- 0.0005384773830883205,
- -0.00973147340118885,
- 0.016113106161355972,
- 0.007786333095282316,
- 0.00719260610640049,
- 0.018132174387574196,
- -0.016052696853876114,
- 0.10357632488012314,
- 0.09130905568599701,
- -0.060752518475055695,
- 0.004247650504112244,
- -0.0161068644374609,
- -0.05518428608775139,
- -0.08212181180715561,
- -0.027252433821558952,
- -0.050882697105407715,
- 0.013320992700755596,
- 0.04491208493709564,
- 0.033189963549375534,
- -0.02909383550286293,
- -0.017534589394927025,
- 0.08616199344396591,
- 0.03303183242678642,
- -0.07953381538391113,
- -0.07216230034828186,
- -0.06989026814699173,
- -0.08903705328702927,
- -0.013241719454526901,
- -0.008222400210797787,
- 0.0799565315246582,
- -0.02571842260658741,
- -0.036107387393713,
- 0.020201275125145912,
- 0.003106551244854927,
- -0.04215220734477043,
- 0.01161221880465746,
- 0.006744969170540571,
- -0.027206655591726303,
- -0.0023181424476206303,
- -0.04411451518535614,
- -0.013860518112778664,
- -0.06453752517700195,
- 0.090053990483284,
- -0.020827893167734146,
- 0.014536852948367596,
- 0.11378828436136246,
- 0.07113107293844223,
- 0.007467091549187899,
- -0.05526352673768997,
- -0.0524371899664402,
- 0.023074151948094368,
- -0.07201562076807022,
- 0.049000244587659836,
- 0.11676057428121567,
- 0.02796979434788227,
- -0.0074297767132520676,
- 3.550968599794491e-33,
- -0.04094727337360382,
- 0.02511531114578247,
- -0.017464270815253258,
- 0.10947440564632416,
- 0.030953554436564445,
- -0.039794228971004486,
- 0.04690141975879669,
- 0.036320071667432785,
- -0.11888643354177475,
- 0.0032009913120418787,
- 0.005287309642881155,
- -0.05080866441130638,
- 0.037279993295669556,
- 0.022418823093175888,
- 0.039106860756874084,
- 0.05340147763490677,
- -0.053833428770303726,
- 0.0064386967569589615,
- -0.05823906883597374,
- 0.045216187834739685,
- 0.052647266536951065,
- -0.03190714493393898,
- 0.04882032051682472,
- -0.016193261370062828,
- -0.038581278175115585,
- -0.022879650816321373,
- -0.007114945445209742,
- 0.010239104740321636,
- -0.01665402576327324,
- 0.025720464065670967,
- -0.01597374863922596,
- -0.010094890370965004,
- -0.08743109554052353,
- 0.10395213961601257,
- -0.01966696046292782,
- 0.017031358554959297,
- 0.01901145838201046,
- -0.09743703156709671,
- 0.034703005105257034,
- 0.06313769519329071,
- 0.05197235569357872,
- -0.03668307512998581,
- -0.10339175164699554,
- -0.010157163254916668,
- -0.02103823982179165,
- -0.01768394187092781,
- 0.027411676943302155,
- 0.02873137779533863,
- 0.10270478576421738,
- -0.02857472002506256,
- -0.03280501067638397,
- 0.006523757241666317,
- -0.057373110204935074,
- 0.10566005110740662,
- -0.017546476796269417,
- 0.01765800453722477,
- -0.03686830401420593,
- 0.03849024698138237,
- 0.05267295613884926,
- -0.0524861179292202,
- 0.04386315494775772,
- 0.10222192853689194,
- -0.04606673866510391,
- 0.030572941526770592,
- 0.047926247119903564,
- 0.02884587273001671,
- 0.010511918924748898,
- 0.050058361142873764,
- -0.10447695851325989,
- -0.04250669851899147,
- 0.058768484741449356,
- 0.011471940204501152,
- 0.011872806586325169,
- -0.10156457126140594,
- -0.09394793957471848,
- -0.13385610282421112,
- 0.0005436536157503724,
- -0.02131108194589615,
- -0.040374066680669785,
- 0.014028717763721943,
- -0.04915238171815872,
- -0.06306158751249313,
- 0.020692462101578712,
- 0.057385917752981186,
- -0.008533846586942673,
- 0.08764208853244781,
- 0.041206322610378265,
- -0.08197533339262009,
- -0.01885419711470604,
- 0.07487887889146805,
- -0.03366558626294136,
- 0.04445723816752434,
- 0.02588045969605446,
- -0.0036056286189705133,
- 0.0008032606565393507,
- -1.1426275925430218e-8,
- 0.006226823665201664,
- 0.07194866240024567,
- -0.04854607209563255,
- 0.00383793655782938,
- 0.06864920258522034,
- -0.03921172022819519,
- -0.07511905580759048,
- -0.030575329437851906,
- 0.033208683133125305,
- 0.037506502121686935,
- -0.01020840648561716,
- -0.040007587522268295,
- -0.019453750923275948,
- 0.01666315086185932,
- 0.05431116372346878,
- 0.02102317102253437,
- -0.09004690498113632,
- 0.11823059618473053,
- 0.003598193172365427,
- -0.022328650578856468,
- 0.023199385032057762,
- 0.004695327021181583,
- 0.026883289217948914,
- 0.09481512755155563,
- 0.002294247504323721,
- -0.036783020943403244,
- -0.015134187415242195,
- 0.040622029453516006,
- 0.10216988623142242,
- -0.0786430686712265,
- -0.011597497388720512,
- 0.07023237645626068,
- 0.025347206741571426,
- -0.11124799400568008,
- 0.06639828532934189,
- 0.01377320010215044,
- 0.00626331428065896,
- -0.03133038058876991,
- 0.003596261143684387,
- 0.020464742556214333,
- -0.029446782544255257,
- -0.026207387447357178,
- 0.08924935758113861,
- -0.03452159836888313,
- 0.004218601621687412,
- 0.010498699732124805,
- -0.0154115566983819,
- -0.02855619601905346,
- -0.04816784709692001,
- -0.002788294106721878,
- -0.00895819254219532,
- -0.060707755386829376,
- 0.042977139353752136,
- 0.08037607371807098,
- 0.0024131990503519773,
- -0.03112177364528179,
- 0.018978407606482506,
- -0.04430418089032173,
- -0.06922531872987747,
- 0.010641651228070259,
- 0.07004959881305695,
- -0.049118079245090485,
- 0.01383457612246275,
- -0.029418207705020905
- ]
- },
- {
- "keyword": "resume",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.09803977608680725,
- 0.016639789566397667,
- -0.004039442632347345,
- 0.032869357615709305,
- -0.000672451569698751,
- 0.07252182066440582,
- -0.02544376067817211,
- 0.025849422439932823,
- -0.09595951437950134,
- -0.07396768778562546,
- -0.054960936307907104,
- 0.02840483747422695,
- -0.026008710265159607,
- -0.03939192742109299,
- -0.06846402585506439,
- 0.015217886306345463,
- -0.01318325474858284,
- 0.04496176540851593,
- 0.04105689749121666,
- -0.041979990899562836,
- -0.03906594216823578,
- 0.08264485001564026,
- 0.04300730302929878,
- -0.04021994769573212,
- -0.009127991273999214,
- 0.02598131075501442,
- -0.019338103011250496,
- 0.040491484105587006,
- 0.001707293326035142,
- -0.08181771636009216,
- 0.03792760148644447,
- -0.02889714203774929,
- 0.031518422067165375,
- 0.04215805605053902,
- 0.052361294627189636,
- 0.14237374067306519,
- -0.07791605591773987,
- 0.05471402034163475,
- 0.010256356559693813,
- -0.01353754848241806,
- -0.042984575033187866,
- -0.15026775002479553,
- -0.0536329559981823,
- 0.004630525130778551,
- 0.026618333533406258,
- -0.05397055298089981,
- 0.05826536938548088,
- 0.016309477388858795,
- 0.055307138711214066,
- 0.002133072353899479,
- -0.07280202209949493,
- -0.07962868362665176,
- -0.00955013744533062,
- -0.011693342588841915,
- -0.009647566825151443,
- 0.07819584757089615,
- -0.033350829035043716,
- -0.02538422681391239,
- -0.02822476625442505,
- -0.076743483543396,
- -0.02541264519095421,
- 0.03292243182659149,
- -0.06760520488023758,
- 0.08831783384084702,
- -0.003827829612419009,
- 0.039773084223270416,
- -0.062146443873643875,
- 0.08919624239206314,
- -0.01908523589372635,
- -0.06831257045269012,
- -0.05314519256353378,
- -0.017793375998735428,
- -0.07951171696186066,
- 0.09753797203302383,
- 0.06101570650935173,
- -0.04525024816393852,
- 0.061973605304956436,
- -0.0021392162889242172,
- 0.06941661238670349,
- 0.004803255200386047,
- 0.0501013845205307,
- -0.07394824922084808,
- -0.04018731787800789,
- 0.048590246587991714,
- 0.010742029175162315,
- -0.02093813754618168,
- 0.0011730067199096084,
- -0.008312804624438286,
- -0.04576429724693298,
- -0.0104564493522048,
- 0.055363673716783524,
- -0.09223475307226181,
- 0.05340676009654999,
- 0.039075817912817,
- -0.11258400231599808,
- -0.03455961123108864,
- 0.03206830471754074,
- 0.041923653334379196,
- 0.10787941515445709,
- 0.19807866215705872,
- -0.027377789840102196,
- -0.0361301526427269,
- -0.05086236819624901,
- 0.04895584285259247,
- -0.08923739939928055,
- -0.05389127880334854,
- 0.014961116015911102,
- 0.014305135235190392,
- -0.048491280525922775,
- 0.019742246717214584,
- 0.03481278941035271,
- 0.015561490319669247,
- -0.12328808754682541,
- 0.015441572293639183,
- 0.039040543138980865,
- 0.013089674524962902,
- -0.049988068640232086,
- 0.026287460699677467,
- -0.003641401184722781,
- 0.0329471230506897,
- 0.02182314358651638,
- 0.10050435364246368,
- -0.006951751187443733,
- -0.03449155390262604,
- -0.11310452967882156,
- -0.11616218835115433,
- 0.028735725209116936,
- -5.5688670181381546e-33,
- 0.010429522022604942,
- 0.0272772666066885,
- 0.0014491933397948742,
- 0.08862566947937012,
- 0.012243678793311119,
- -0.025966037064790726,
- -0.07108190655708313,
- 0.08783873170614243,
- 0.027268623933196068,
- 0.05607178434729576,
- -0.05125783756375313,
- 0.12445932626724243,
- -0.025862881913781166,
- 0.008969315327703953,
- -0.017585553228855133,
- 0.0654037818312645,
- 0.030031410977244377,
- 0.08915366232395172,
- -0.01572205312550068,
- 0.02473975159227848,
- -0.06590786576271057,
- -0.0068022264167666435,
- -0.015107350423932076,
- 0.039694998413324356,
- -0.005246218293905258,
- 0.04156357795000076,
- 0.04169201850891113,
- 0.0017503058770671487,
- -0.01038346253335476,
- 0.005802104715257883,
- 0.06756842881441116,
- 0.001016786671243608,
- -0.00604230398312211,
- -0.07267095148563385,
- 0.05876072123646736,
- 0.05631134286522865,
- -0.035367924720048904,
- -0.0958852544426918,
- 0.04845649003982544,
- -0.04680705815553665,
- 0.006457468960434198,
- 0.045042362064123154,
- 0.05023941770195961,
- -0.02689320407807827,
- 0.018410194665193558,
- -0.0955854207277298,
- 0.0919642373919487,
- 0.04153919592499733,
- 0.047723766416311264,
- 0.12614403665065765,
- 0.03297895938158035,
- -0.027659906074404716,
- -0.020082341507077217,
- -0.01688859425485134,
- -0.07602860778570175,
- 0.00869364757090807,
- -0.03459697961807251,
- 0.020187189802527428,
- -0.02933289110660553,
- 0.003776170779019594,
- 0.04362090304493904,
- 0.04592116177082062,
- -0.06176649034023285,
- 0.0022044875659048557,
- -0.008354387246072292,
- 0.005875272676348686,
- -0.020158860832452774,
- -0.0015746696153655648,
- 0.10474980622529984,
- 0.00684466352686286,
- 0.007730377838015556,
- -0.017712442204356194,
- 0.017665240913629532,
- 0.012158944271504879,
- 0.0030963714234530926,
- 0.018572626635432243,
- -0.026555892080068588,
- -0.03241758421063423,
- -0.05309774726629257,
- 0.03326534107327461,
- 0.04646109417080879,
- 0.006845702882856131,
- -0.03539002686738968,
- -0.036679115146398544,
- 0.09540043026208878,
- 0.019562944769859314,
- 0.01894027180969715,
- -0.0714220255613327,
- 0.028361372649669647,
- 0.06288176029920578,
- -0.08053966611623764,
- -0.015303910709917545,
- 0.03627782315015793,
- 0.04199826344847679,
- -0.010985891334712505,
- 4.040156084018955e-33,
- 0.05553916096687317,
- -0.058804821223020554,
- -0.032732103019952774,
- 0.015071528032422066,
- 0.005282389000058174,
- -0.0029255119152367115,
- 0.0954369455575943,
- 0.02744961716234684,
- -0.12409644573926926,
- 0.0033704987727105618,
- 0.025567904114723206,
- -0.007138763088732958,
- 0.06506342440843582,
- 0.028941279277205467,
- -0.02954583428800106,
- 0.011454430408775806,
- -0.007670477498322725,
- 0.012020302936434746,
- -0.07372429221868515,
- 0.06762140989303589,
- 0.028602520003914833,
- -0.10465463250875473,
- 0.017282215878367424,
- -0.011515571735799313,
- 0.05309893563389778,
- 0.05329624190926552,
- -0.029412981122732162,
- -0.026187371462583542,
- -0.019284317269921303,
- 0.0008326483657583594,
- 0.0641268938779831,
- -0.0454975888133049,
- -0.04593214392662048,
- 0.054316263645887375,
- -0.033930178731679916,
- -0.0025167767889797688,
- -0.02346031554043293,
- -0.03317805007100105,
- 0.025428038090467453,
- 0.04635520279407501,
- 0.11656302958726883,
- -0.012332042679190636,
- 0.0021246529649943113,
- 0.04838348925113678,
- 0.012369472533464432,
- -0.032669343054294586,
- -0.021209465339779854,
- 0.007960901595652103,
- -0.01203097216784954,
- -0.0665123388171196,
- -0.12332785129547119,
- -0.004305245820432901,
- -0.010551824234426022,
- -0.03330041095614433,
- 0.008606037124991417,
- 0.038546282798051834,
- -0.02614482305943966,
- -0.07846353948116302,
- -0.012491878122091293,
- -0.023088274523615837,
- 0.06629174947738647,
- 0.055759597569704056,
- -0.024831196293234825,
- 0.03238620609045029,
- 0.06576215475797653,
- -0.12987902760505676,
- 0.053907960653305054,
- -0.015063701197504997,
- -0.1003345176577568,
- -0.017340632155537605,
- -0.021274756640195847,
- 0.006060515530407429,
- 0.00581648014485836,
- -0.04993302747607231,
- -0.10443297028541565,
- -0.01275739073753357,
- -0.026890531182289124,
- -0.022185850888490677,
- -0.02759595215320587,
- 0.056506648659706116,
- -0.09583323448896408,
- -0.025032585486769676,
- -0.063202403485775,
- 0.057656180113554,
- -0.02253505028784275,
- 0.024440143257379532,
- 0.054031070321798325,
- 0.01309911534190178,
- 0.05350400134921074,
- -0.07559162378311157,
- -0.02649001032114029,
- 0.06224525719881058,
- 0.034300435334444046,
- -0.009145677089691162,
- -0.07417700439691544,
- -1.1800100452319384e-8,
- -0.03806888312101364,
- -0.01730884611606598,
- 0.015234150923788548,
- 0.010432167910039425,
- 0.009562820196151733,
- -0.04367503151297569,
- -0.038246624171733856,
- -0.010653981938958168,
- 0.039215460419654846,
- -0.058453269302845,
- -0.014860620722174644,
- -0.009666886180639267,
- -0.04839408025145531,
- 0.009665357880294323,
- 0.07741963863372803,
- 0.066680908203125,
- 0.03997776657342911,
- 0.09123759716749191,
- -0.015092235989868641,
- 0.018585817888379097,
- 0.002102420898154378,
- 0.0359644889831543,
- 0.011301150545477867,
- 0.052829399704933167,
- 0.05622347444295883,
- 0.01612773910164833,
- -0.032918255776166916,
- 0.04738037288188934,
- 0.030926890671253204,
- 0.012693212367594242,
- 0.001271996647119522,
- 0.05090252310037613,
- 0.06711786985397339,
- -0.05716043338179588,
- -0.012000144459307194,
- -0.02915937267243862,
- 0.10544714331626892,
- -0.02803003042936325,
- 0.0203639417886734,
- -0.019863560795783997,
- 0.023822328075766563,
- 0.061836402863264084,
- 0.11257413774728775,
- 0.035701651126146317,
- 0.06670423597097397,
- -0.026369906961917877,
- -0.014562499709427357,
- 0.05258423462510109,
- 0.0033777260687202215,
- -0.03630019724369049,
- -0.03428306058049202,
- -0.04386737197637558,
- 0.03368321433663368,
- -0.03623788431286812,
- -0.0006923467153683305,
- -0.013092807494103909,
- 0.03857274726033211,
- -0.03710991516709328,
- -0.06391081213951111,
- -0.03280770778656006,
- 0.10416066646575928,
- -0.020049631595611572,
- -0.05273111164569855,
- 0.025693954899907112
- ]
- },
- {
- "keyword": "portfolio",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.010672160424292088,
- 0.05111926048994064,
- -0.10387212783098221,
- -0.006315587554126978,
- -0.009486928582191467,
- 0.005486640147864819,
- 0.11955264955759048,
- 0.018615679815411568,
- 0.023202525451779366,
- 0.0219299104064703,
- 0.024480532854795456,
- 0.005113076418638229,
- -0.08407945185899734,
- -0.022664181888103485,
- -0.06804382055997849,
- 0.03052954375743866,
- 0.010377657599747181,
- 0.0484335832297802,
- -0.029563071206212044,
- 0.023881077766418457,
- -0.08601740747690201,
- -0.069610595703125,
- 0.009030320681631565,
- -0.0018087915377691388,
- 0.04189427196979523,
- 0.04150920361280441,
- -0.018387172371149063,
- 0.046362701803445816,
- 0.010579473339021206,
- -0.07469387352466583,
- 0.03171572834253311,
- -0.020015012472867966,
- -0.004054578486829996,
- -0.025791671127080917,
- -0.03213990479707718,
- 0.044524744153022766,
- -0.0397392138838768,
- 0.013587888330221176,
- 0.019201824441552162,
- 0.05277217552065849,
- -0.05535592511296272,
- 0.007489730603992939,
- -0.009454425424337387,
- -0.00848141685128212,
- 0.08753473311662674,
- -0.08237991482019424,
- 0.016145506873726845,
- 0.04456327110528946,
- 0.08534242957830429,
- 0.015693549066781998,
- -0.09088218212127686,
- -0.03221404552459717,
- -0.12448005378246307,
- -0.09930797666311264,
- -0.06794576346874237,
- 0.026888791471719742,
- -0.033435046672821045,
- -0.00942608155310154,
- 0.015189466066658497,
- -0.048267774283885956,
- 0.016292130574584007,
- -0.020912814885377884,
- 0.019078120589256287,
- 0.08454284816980362,
- 0.10738871991634369,
- -0.03907088190317154,
- -0.05161337926983833,
- 0.09803696721792221,
- -0.0047574215568602085,
- 0.01796567812561989,
- 0.030457044020295143,
- -0.07856371253728867,
- -0.08381005376577377,
- -0.03482118621468544,
- 0.012206965126097202,
- -0.0008528800681233406,
- 0.05667444318532944,
- -0.00458553247153759,
- 0.09840565174818039,
- -0.07161318510770798,
- 0.040515609085559845,
- -0.008560621179640293,
- 0.003665648167952895,
- -0.0211630892008543,
- 0.05078020319342613,
- -0.0050939228385686874,
- 0.01718662865459919,
- 0.02091105654835701,
- 0.0531553290784359,
- -0.03379201516509056,
- 0.011148621328175068,
- -0.022565318271517754,
- 0.08024948835372925,
- 0.055351756513118744,
- -0.10705304145812988,
- -0.00990600697696209,
- 0.030875766649842262,
- -0.0768415555357933,
- -0.0475933775305748,
- 0.2321261465549469,
- 0.038180626928806305,
- -0.03182219713926315,
- 0.028741655871272087,
- 0.055134907364845276,
- -0.06760336458683014,
- -0.041457124054431915,
- 0.009175298735499382,
- 0.01595444791018963,
- -0.011455143801867962,
- 0.0008164561586454511,
- -0.05689467117190361,
- 0.06629931181669235,
- -0.10318171977996826,
- -0.0037570009008049965,
- -0.030573582276701927,
- -0.03841133043169975,
- -0.05182937532663345,
- -0.007284346502274275,
- 0.05424636974930763,
- 0.056886836886405945,
- -0.0039039351977407932,
- 0.046822912991046906,
- -0.02715870924293995,
- -0.026967430487275124,
- -0.14263705909252167,
- -0.03961362689733505,
- 0.0027449624612927437,
- -3.927542623184226e-33,
- -0.052430927753448486,
- -0.017100593075156212,
- 0.04606456682085991,
- 0.0875236839056015,
- -0.03726213797926903,
- -0.007946322672069073,
- 0.018944773823022842,
- 0.023274144157767296,
- -0.09683900326490402,
- 0.006928912829607725,
- 0.055994950234889984,
- 0.03810420259833336,
- -0.015629101544618607,
- 0.0805535763502121,
- 0.030398214235901833,
- -0.037160273641347885,
- 0.006107787601649761,
- 0.07763171941041946,
- 0.12273751199245453,
- -0.11564841121435165,
- -0.07143817096948624,
- 0.0032005624379962683,
- -0.024561194702982903,
- -0.03554563969373703,
- 0.029411746188998222,
- -0.04514165595173836,
- 0.00262121157720685,
- -0.07740835100412369,
- -0.11851086467504501,
- 0.062494244426488876,
- 0.08109508454799652,
- 0.0030991188250482082,
- -0.07040034234523773,
- -0.007959118112921715,
- -0.03859468922019005,
- 0.045720137655735016,
- -0.032012227922677994,
- -0.06776928156614304,
- 0.08020320534706116,
- 0.033352114260196686,
- -0.05708497017621994,
- 0.017187578603625298,
- 0.010531296953558922,
- -0.017145700752735138,
- -0.07420103251934052,
- 0.019577935338020325,
- 0.13875062763690948,
- 0.08925032615661621,
- -0.026580149307847023,
- 0.032453157007694244,
- -0.030698303133249283,
- -0.004844101145863533,
- -0.023006290197372437,
- 0.010619083419442177,
- 0.030181361362338066,
- -0.00415092334151268,
- -0.03204823285341263,
- 0.022535227239131927,
- -0.020133666694164276,
- -0.05678439885377884,
- 0.06535118818283081,
- 0.028568850830197334,
- -0.06570202857255936,
- -0.03265858441591263,
- -0.02686784602701664,
- 0.10096462070941925,
- 0.004881928209215403,
- 0.00006405910244211555,
- 0.09831822663545609,
- 0.047818928956985474,
- -0.04757491871714592,
- -0.009196753613650799,
- 0.1413668990135193,
- -0.01032632403075695,
- 0.0210246741771698,
- 0.00404017511755228,
- -0.05486757308244705,
- 0.021263474598526955,
- -0.09395215660333633,
- 0.0830998420715332,
- -0.040914345532655716,
- 0.02814842388033867,
- -0.023916272446513176,
- 0.03897368907928467,
- -0.025631560012698174,
- 0.06489980220794678,
- 0.04939508065581322,
- -0.04108000919222832,
- 0.04493245854973793,
- 0.04055944085121155,
- -0.07771838456392288,
- -0.031125131994485855,
- -0.006013843230903149,
- 0.04387085884809494,
- 0.0213411133736372,
- 2.971603984801656e-33,
- -0.05733681097626686,
- -0.03422296419739723,
- 0.00298378081060946,
- 0.009625788778066635,
- 0.05163654685020447,
- -0.0933343842625618,
- 0.008767259307205677,
- -0.05764703080058098,
- -0.05281515419483185,
- 0.10112062096595764,
- 0.024644289165735245,
- -0.049394071102142334,
- -0.013151061721146107,
- -0.047108087688684464,
- -0.021532772108912468,
- 0.03232642263174057,
- -0.066779226064682,
- -0.04223935678601265,
- -0.04048540070652962,
- -0.05198083445429802,
- 0.016255391761660576,
- -0.06446675956249237,
- 0.04293202981352806,
- 0.011888346634805202,
- 0.038568392395973206,
- 0.020703058689832687,
- -0.029809048399329185,
- -0.06175543740391731,
- 0.014426717534661293,
- 0.009932258166372776,
- -0.005427914671599865,
- -0.05065999925136566,
- -0.008668730035424232,
- 0.05395524203777313,
- -0.0429113544523716,
- 0.05282912775874138,
- 0.0005518227117136121,
- -0.028508193790912628,
- -0.011126914992928505,
- 0.057704657316207886,
- 0.03011905588209629,
- -0.020722730085253716,
- 0.10503549873828888,
- 0.09201595932245255,
- 0.05357171595096588,
- -0.01840725541114807,
- 0.03441229462623596,
- 0.06965021789073944,
- 0.1628390997648239,
- -0.012623205780982971,
- -0.07289687544107437,
- 0.06180041283369064,
- 0.017349543049931526,
- 0.05483656004071236,
- -0.05501224845647812,
- 0.04766598716378212,
- 0.03983783349394798,
- -0.043063316494226456,
- -0.005080805625766516,
- -0.004867659416049719,
- 0.017924267798662186,
- 0.010556133463978767,
- -0.05282190814614296,
- 0.10150543600320816,
- 0.018297947943210602,
- -0.03564916551113129,
- -0.10401179641485214,
- 0.005043413955718279,
- -0.011798452585935593,
- -0.04603998735547066,
- 0.04580925405025482,
- 0.014941032975912094,
- 0.041166696697473526,
- -0.05580560117959976,
- -0.04404645785689354,
- 0.006595774088054895,
- 0.048426754772663116,
- -0.007662465330213308,
- 0.051132265478372574,
- -0.0002104653394781053,
- -0.016119597479701042,
- -0.02444407157599926,
- 0.005013386253267527,
- 0.05512964352965355,
- -0.0022371350787580013,
- 0.022024480625987053,
- -0.011655144393444061,
- -0.04377387464046478,
- -0.054000627249479294,
- -0.05170494318008423,
- 0.02799820341169834,
- 0.029440244659781456,
- 0.015877313911914825,
- 0.017688609659671783,
- -0.017850667238235474,
- -1.1003809419207755e-8,
- -0.048505570739507675,
- -0.016300110146403313,
- 0.07993346452713013,
- 0.019851399585604668,
- 0.0453052893280983,
- 0.009404046460986137,
- -0.05267902463674545,
- -0.06442739814519882,
- 0.021019112318754196,
- 0.04362786188721657,
- 0.042971156537532806,
- -0.046870023012161255,
- -0.07221654802560806,
- 0.05509563907980919,
- -0.0649445578455925,
- -0.06397566944360733,
- -0.04337482899427414,
- 0.01598442904651165,
- -0.016093207523226738,
- -0.020337024703621864,
- 0.08202727138996124,
- 0.036908283829689026,
- 0.03009617142379284,
- -0.02511688694357872,
- -0.021803610026836395,
- 0.03804366663098335,
- 0.019530171528458595,
- -0.0029850031714886427,
- 0.08549849689006805,
- 0.045867208391427994,
- -0.022919069975614548,
- 0.05069420486688614,
- 0.05135267600417137,
- -0.04260345920920372,
- -0.0029040295630693436,
- 0.03363319858908653,
- 0.009062003344297409,
- 0.009797636419534683,
- -0.037195175886154175,
- 0.017312804237008095,
- -0.040585655719041824,
- -0.029505500569939613,
- 0.0579831525683403,
- 0.00888904370367527,
- 0.05745793133974075,
- 0.05434903874993324,
- -0.03165839985013008,
- -0.011554398573935032,
- 0.021623823791742325,
- -0.06332740932703018,
- -0.026949336752295494,
- -0.09315177798271179,
- 0.030951108783483505,
- 0.040495265275239944,
- 0.026114771142601967,
- 0.015547594055533409,
- 0.004194942303001881,
- -0.012536919675767422,
- -0.07433923333883286,
- 0.012967240996658802,
- 0.07828056812286377,
- -0.044306736439466476,
- -0.0280035138130188,
- 0.0003518429002724588
- ]
- },
- {
- "keyword": "profile",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07875475287437439,
- 0.0020564706064760685,
- -0.0367799773812294,
- 0.035872988402843475,
- 0.03531638905405998,
- -0.018976233899593353,
- 0.12141110748052597,
- 0.06490358710289001,
- -0.04864232987165451,
- -0.06391500681638718,
- 0.0024498431012034416,
- -0.11312312632799149,
- 0.05222609266638756,
- 0.007925563491880894,
- -0.004001881927251816,
- -0.036171503365039825,
- -0.03991730511188507,
- 0.01709096133708954,
- -0.033741265535354614,
- -0.10155326128005981,
- -0.08251702040433884,
- -0.007661781739443541,
- 0.042014311999082565,
- -0.03676409274339676,
- -0.008485923521220684,
- -0.02841268666088581,
- -0.050733666867017746,
- 0.07980947196483612,
- -0.0667089894413948,
- -0.05525323748588562,
- 0.028184425085783005,
- 0.008506652899086475,
- 0.017828235402703285,
- 0.00781955011188984,
- -0.022472543641924858,
- -0.012095380574464798,
- 0.024896644055843353,
- 0.010473305359482765,
- -0.05870187282562256,
- -0.0390004925429821,
- -0.057147298008203506,
- -0.09383254498243332,
- -0.06084790080785751,
- 0.0442647822201252,
- -0.023351319134235382,
- 0.004934981465339661,
- 0.022503536194562912,
- 0.0038015292957425117,
- -0.02280653454363346,
- 0.03317531943321228,
- -0.015234677121043205,
- -0.015411251224577427,
- 0.014023237861692905,
- 0.03250466659665108,
- 0.056593723595142365,
- 0.08033819496631622,
- 0.014020470902323723,
- 0.04729273170232773,
- 0.0004140126402489841,
- 0.0024424202274531126,
- -0.0014901035465300083,
- -0.0006193833542056382,
- -0.05825390666723251,
- 0.06800428032875061,
- 0.03997509926557541,
- -0.022838247939944267,
- -0.036246031522750854,
- 0.027718031778931618,
- -0.0443350113928318,
- -0.036303844302892685,
- -0.05529424920678139,
- -0.00018928163626696914,
- -0.05177503451704979,
- -0.001362237730063498,
- 0.08266528695821762,
- -0.050475090742111206,
- 0.007227324414998293,
- -0.013252467848360538,
- 0.10163796693086624,
- 0.05931601673364639,
- 0.023792723193764687,
- -0.056646380573511124,
- -0.003893690649420023,
- 0.036828648298978806,
- 0.02819243259727955,
- -0.03637818992137909,
- 0.01809127815067768,
- -0.06640640646219254,
- -0.057649195194244385,
- 0.02767569199204445,
- 0.0263832900673151,
- 0.08140111714601517,
- 0.1296694576740265,
- -0.009155018255114555,
- -0.10479516535997391,
- 0.006791988387703896,
- 0.057016726583242416,
- -0.06294360011816025,
- -0.029320046305656433,
- 0.26682138442993164,
- -0.04687967151403427,
- -0.01619044318795204,
- 0.010062969289720058,
- 0.08209677785634995,
- 0.03895409777760506,
- 0.003041135147213936,
- -0.0183070357888937,
- 0.055067483335733414,
- -0.00045238216989673674,
- -0.021141042932868004,
- -0.029570721089839935,
- -0.011529256589710712,
- -0.048534881323575974,
- 0.024550722911953926,
- 0.1056201308965683,
- -0.05623754858970642,
- 0.009207341820001602,
- 0.02925175428390503,
- 0.04667287692427635,
- 0.0019842085894197226,
- 0.03733844682574272,
- 0.02510964870452881,
- -0.007540873251855373,
- -0.01047849003225565,
- -0.03886863961815834,
- -0.016215063631534576,
- -0.010243261232972145,
- -4.7061592244422e-33,
- 0.08518356084823608,
- -0.009205133654177189,
- -0.003923672251403332,
- 0.05479089170694351,
- -0.06596260517835617,
- 0.025889217853546143,
- -0.06260105222463608,
- -0.017488447949290276,
- -0.01073276624083519,
- 0.011921849101781845,
- 0.008439967408776283,
- 0.03943469747900963,
- -0.04615955427289009,
- 0.1130063459277153,
- 0.08930689096450806,
- 0.0356597900390625,
- 0.09505372494459152,
- 0.05114835873246193,
- -0.05178200453519821,
- 0.003240461926907301,
- 0.0036940178833901882,
- -0.01968378573656082,
- -0.012442268431186676,
- 0.05997201427817345,
- 0.03477460518479347,
- 0.036823123693466187,
- 0.08609065413475037,
- -0.04005608335137367,
- -0.0048083774745464325,
- 0.022004766389727592,
- 0.006240176036953926,
- -0.0015707237180322409,
- 0.0060684047639369965,
- -0.013253003358840942,
- 0.056735266000032425,
- 0.011144605465233326,
- 0.01661069504916668,
- -0.03462562710046768,
- -0.002301860833540559,
- 0.005481179803609848,
- 0.013548251241445541,
- 0.014846785925328732,
- 0.016146600246429443,
- -0.024602878838777542,
- -0.14948254823684692,
- 0.014508266933262348,
- 0.10964208841323853,
- 0.014216401614248753,
- 0.041685666888952255,
- 0.04537786915898323,
- 0.031322941184043884,
- -0.05762658268213272,
- -0.05698971822857857,
- 0.02883303537964821,
- -0.05144130066037178,
- -0.018641142174601555,
- -0.06470902264118195,
- -0.052065249532461166,
- -0.028639497235417366,
- -0.04874533414840698,
- 0.08145309239625931,
- 0.057610444724559784,
- -0.03230040520429611,
- -0.0635080337524414,
- -0.05592099204659462,
- -0.11067744344472885,
- 0.01166775356978178,
- -0.05887066572904587,
- 0.05511367693543434,
- 0.025407060980796814,
- -0.08631762862205505,
- 0.04261007159948349,
- 0.08754955977201462,
- 0.022769151255488396,
- -0.03599410131573677,
- 0.0016600063536316156,
- -0.0016307398909702897,
- 0.06140227988362312,
- -0.1399819552898407,
- 0.1066342443227768,
- 0.01202776562422514,
- 0.05941270664334297,
- -0.09246636927127838,
- -0.06033843010663986,
- 0.03484669327735901,
- -0.012004598043859005,
- -0.015134569257497787,
- -0.0498511902987957,
- -0.02681995928287506,
- -0.016489503905177116,
- -0.011825915426015854,
- -0.009454630315303802,
- 0.09746108204126358,
- 0.08510036766529083,
- -0.09906867891550064,
- 3.443241889381321e-33,
- -0.045928243547677994,
- -0.06672602891921997,
- 0.022341260686516762,
- 0.002229295903816819,
- 0.04411787912249565,
- -0.03906169533729553,
- 0.09910382330417633,
- 0.09998917579650879,
- -0.021539457142353058,
- 0.03726884722709656,
- -0.046782854944467545,
- 0.0051994360983371735,
- 0.06725478917360306,
- 0.009571749716997147,
- 0.11657292395830154,
- 0.08844389021396637,
- -0.021645646542310715,
- 0.039080873131752014,
- -0.07624641060829163,
- -0.01766892336308956,
- -0.05428897216916084,
- -0.08994543552398682,
- -0.09710640460252762,
- -0.0419195257127285,
- -0.0592174232006073,
- 0.01633347198367119,
- 0.04543648287653923,
- 0.012310574762523174,
- -0.03219420090317726,
- 0.031458429992198944,
- 0.045331958681344986,
- -0.013565067201852798,
- -0.09867320209741592,
- -0.03696642816066742,
- -0.03958331048488617,
- 0.08500076830387115,
- -0.03343529254198074,
- 0.007965604774653912,
- -0.026768025010824203,
- -0.02146935649216175,
- 0.05975579842925072,
- 0.04778959974646568,
- -0.008669833652675152,
- 0.06805488467216492,
- 0.029995955526828766,
- 0.054922159761190414,
- 0.05965248867869377,
- 0.018538586795330048,
- 0.03283269330859184,
- 0.03570457175374031,
- -0.002731653396040201,
- 0.019600065425038338,
- 0.062139321118593216,
- 0.011406050063669682,
- 0.025054899975657463,
- -0.018042011186480522,
- -0.010174334049224854,
- -0.020009195432066917,
- 0.06744341552257538,
- -0.018275756388902664,
- 0.008235495537519455,
- 0.028949705883860588,
- -0.0031871527899056673,
- 0.08555411547422409,
- -0.057988617569208145,
- -0.024866344407200813,
- 0.004640904720872641,
- -0.004968937952071428,
- -0.08094098418951035,
- -0.04147906228899956,
- 0.004146771505475044,
- -0.04566342383623123,
- -0.012132393196225166,
- -0.0010765095939859748,
- -0.022321097552776337,
- -0.07443023473024368,
- -0.10160952806472778,
- -0.002961881458759308,
- -0.07040033489465714,
- 0.12033547461032867,
- 0.011780754663050175,
- 0.009870951063930988,
- -0.0880974531173706,
- -0.04033469781279564,
- 0.006510632112622261,
- -0.03492356464266777,
- 0.00451500341296196,
- 0.050665903836488724,
- -0.015176326036453247,
- -0.01736101321876049,
- 0.05642903968691826,
- 0.02631603740155697,
- -0.13545268774032593,
- -0.019663561135530472,
- -0.058509379625320435,
- -1.2378310820793104e-8,
- -0.02817089483141899,
- -0.023251423612236977,
- -0.004437591414898634,
- 0.04405711591243744,
- -0.005780989769846201,
- 0.0735718235373497,
- -0.03948076069355011,
- 0.0027776637580245733,
- 0.04148700460791588,
- 0.03376644849777222,
- 0.008698437362909317,
- 0.005894873291254044,
- -0.020787276327610016,
- 0.04050840809941292,
- 0.048922840505838394,
- -0.03939404711127281,
- -0.04380227252840996,
- 0.07731258124113083,
- 0.010800528340041637,
- 0.028869464993476868,
- -0.03668367862701416,
- 0.021011503413319588,
- 0.002891247859224677,
- -0.041931070387363434,
- 0.011089677922427654,
- -0.012944670394062996,
- 0.003112690756097436,
- 0.07051410526037216,
- -0.030125435441732407,
- 0.013398952782154083,
- 0.001828445470891893,
- 0.0947827696800232,
- 0.0134162912145257,
- -0.065945565700531,
- -0.0093226945027709,
- -0.018292780965566635,
- -0.06429077684879303,
- -0.005379322450608015,
- -0.02580779790878296,
- 0.05837726220488548,
- 0.07209165394306183,
- -0.015242409892380238,
- 0.09871257096529007,
- 0.05283523350954056,
- -0.051485493779182434,
- 0.010492551140487194,
- 0.051060162484645844,
- -0.08356911689043045,
- 0.018465278670191765,
- -0.03144363313913345,
- -0.05837005004286766,
- -0.06771647185087204,
- 0.08095042407512665,
- 0.03484654054045677,
- 0.008019712753593922,
- -0.017255013808608055,
- -0.01765265502035618,
- 0.0476473867893219,
- -0.02607157453894615,
- -0.007224699016660452,
- 0.03215416520833969,
- 0.015262151136994362,
- -0.02964109554886818,
- -0.03006664477288723
- ]
- },
- {
- "keyword": "doc",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": false,
- "embedding": [
- -0.05719848349690437,
- 0.10025843977928162,
- 0.07371442019939423,
- 0.026814710348844528,
- -0.009497597813606262,
- -0.03882761672139168,
- 0.07524121552705765,
- 0.08221030235290527,
- 0.05939266458153725,
- 0.02250630594789982,
- -0.05467873439192772,
- -0.026355894282460213,
- 0.01310307439416647,
- 0.03500222787261009,
- -0.08356894552707672,
- -0.01138949766755104,
- -0.07007858902215958,
- 0.0035718060098588467,
- -0.000773256178945303,
- 0.04449218884110451,
- -0.11110927164554596,
- 0.17427730560302734,
- -0.036495551466941833,
- -0.013574440032243729,
- -0.0005635155830532312,
- 0.08136573433876038,
- -0.07114999741315842,
- -0.08615288883447647,
- -0.03269265964627266,
- -0.06135956570506096,
- 0.02055354416370392,
- 0.040831148624420166,
- 0.04978427290916443,
- -0.019137414172291756,
- 0.029449647292494774,
- 0.010361781343817711,
- 0.016059760004281998,
- -0.017506204545497894,
- 0.06533443927764893,
- 0.03999042883515358,
- -0.02037632465362549,
- -0.09065773338079453,
- -0.00875338725745678,
- 0.012119456194341183,
- 0.0369705855846405,
- -0.03762921690940857,
- -0.005657156463712454,
- -0.010335827246308327,
- 0.041054241359233856,
- 0.08994001895189285,
- -0.1330210268497467,
- -0.04563239961862564,
- -0.031706128269433975,
- 0.027162855491042137,
- 0.035065095871686935,
- 0.03960997611284256,
- 0.0010405314387753606,
- 0.007967568933963776,
- -0.06506100296974182,
- -0.062354788184165955,
- -0.00873552169650793,
- 0.03032664582133293,
- -0.06024197116494179,
- 0.05062903091311455,
- 0.03144831582903862,
- 0.08252270519733429,
- -0.03550701588392258,
- 0.043213777244091034,
- 0.004264074843376875,
- -0.019822120666503906,
- -0.02766566164791584,
- 0.0358731709420681,
- 0.06481076776981354,
- -0.013901234604418278,
- 0.02772386185824871,
- -0.02318035438656807,
- 0.050074052065610886,
- -0.014872157946228981,
- 0.09254644811153412,
- -0.051071543246507645,
- 0.08487465977668762,
- 0.05180293694138527,
- -0.07491922378540039,
- -0.023131821304559708,
- -0.025035683065652847,
- 0.014200727455317974,
- 0.029001332819461823,
- -0.0046539208851754665,
- -0.07781615853309631,
- 0.0041108513250947,
- 0.022404300048947334,
- -0.06887698173522949,
- 0.0569889172911644,
- -0.007402774412184954,
- -0.11044880002737045,
- 0.015196844935417175,
- -0.028469325974583626,
- -0.04061632230877876,
- -0.015506099909543991,
- 0.23670507967472076,
- 0.009721819311380386,
- 0.0014853189932182431,
- 0.05709428712725639,
- -0.003789349226281047,
- 0.016418317332863808,
- -0.046889372169971466,
- -0.06370874494314194,
- -0.041815657168626785,
- 0.011309164576232433,
- -0.061391912400722504,
- -0.00020857983327005059,
- -0.015123697929084301,
- -0.1280793696641922,
- 0.012002209201455116,
- -0.026464061811566353,
- 0.058021388947963715,
- -0.07059025764465332,
- -0.0004410342953633517,
- 0.02459050714969635,
- 0.012281497940421104,
- -0.058568671345710754,
- 0.013175135478377342,
- -0.03725510463118553,
- -0.01574150286614895,
- -0.06357994675636292,
- -0.04939373955130577,
- 0.07076763361692429,
- -5.3140121286982054e-33,
- 0.031686440110206604,
- -0.06261301040649414,
- 0.03233501315116882,
- 0.03685317561030388,
- 0.027923395857214928,
- 0.08532857149839401,
- -0.0015119044110178947,
- -0.0043798042461276054,
- -0.050891049206256866,
- -0.03265748545527458,
- -0.06362031400203705,
- 0.06232324242591858,
- -0.03689898923039436,
- -0.006902760826051235,
- -0.005822634324431419,
- 0.05264030396938324,
- -0.072901651263237,
- 0.10397941619157791,
- -0.06296693533658981,
- 0.01795356161892414,
- 0.012753964401781559,
- 0.04501883313059807,
- -0.02621730975806713,
- 0.11433865875005722,
- -0.0057883309200406075,
- 0.006056235637515783,
- 0.01639118231832981,
- -0.11197634786367416,
- 0.048602692782878876,
- 0.022060606628656387,
- -0.06308893859386444,
- 0.00007227478636195883,
- 0.05670754238963127,
- -0.011120491661131382,
- -0.02524210326373577,
- -0.027273312211036682,
- -0.030699942260980606,
- -0.048460833728313446,
- 0.018172288313508034,
- 0.008824019692838192,
- -0.07240208983421326,
- 0.017492730170488358,
- 0.04863763228058815,
- 0.001489402842707932,
- 0.021762797608971596,
- 0.033673182129859924,
- 0.03540587052702904,
- 0.043324973434209824,
- -0.050842635333538055,
- 0.060162197798490524,
- 0.027192765846848488,
- -0.01511139515787363,
- -0.02944561466574669,
- 0.02029878832399845,
- 0.04847143217921257,
- -0.07826341688632965,
- 0.012608930468559265,
- 0.005872420966625214,
- 0.027294430881738663,
- 0.012789176777005196,
- 0.09594734758138657,
- 0.053412698209285736,
- 0.011329550296068192,
- -0.03075478971004486,
- -0.07427573949098587,
- -0.08802058547735214,
- 0.011887365952134132,
- 0.008558398112654686,
- 0.0594865083694458,
- 0.038348712027072906,
- -0.0780562236905098,
- 0.012166852131485939,
- -0.02327186055481434,
- 0.039750318974256516,
- 0.05633075535297394,
- -0.02048463374376297,
- 0.06115689501166344,
- -0.04271798953413963,
- -0.09324709326028824,
- -0.04528588429093361,
- -0.034025613218545914,
- 0.013759366236627102,
- -0.005890579894185066,
- 0.07742301374673843,
- -0.003029943211004138,
- -0.007934223860502243,
- -0.04675746336579323,
- 0.004590095020830631,
- 0.005413330625742674,
- -0.009176270104944706,
- -0.04524616524577141,
- 0.016820650547742844,
- 0.003153156489133835,
- 0.01759413443505764,
- 0.006773730274289846,
- 4.303513103693211e-33,
- 0.016810080036520958,
- -0.05893184244632721,
- -0.008355296216905117,
- 0.09221592545509338,
- 0.021040834486484528,
- 0.012369412928819656,
- 0.08974116295576096,
- 0.10344479978084564,
- 0.016900746151804924,
- 0.06743218004703522,
- 0.027850506827235222,
- -0.046700917184352875,
- 0.025601720437407494,
- -0.00777205778285861,
- 0.016530856490135193,
- 0.015489937737584114,
- -0.0022411972749978304,
- -0.049031395465135574,
- -0.03268827497959137,
- 0.09839779883623123,
- -0.0063795484602451324,
- -0.05463492497801781,
- -0.008066817186772823,
- 0.021098105236887932,
- -0.003981200512498617,
- 0.02375221811234951,
- 0.03480922803282738,
- -0.0459827296435833,
- -0.024950871244072914,
- -0.02624807134270668,
- 0.013637597672641277,
- 0.0026679527945816517,
- -0.1126217171549797,
- -0.016851484775543213,
- 0.015589096583425999,
- 0.14913086593151093,
- -0.004886334296315908,
- 0.04416176304221153,
- -0.019488468766212463,
- -0.02174708992242813,
- 0.11038824915885925,
- -0.026782115921378136,
- -0.0014001188101246953,
- 0.11753667891025543,
- -0.003194074146449566,
- -0.0049081165343523026,
- -0.017000142484903336,
- 0.009088949300348759,
- 0.0358123742043972,
- 0.06754203885793686,
- -0.06551963835954666,
- -0.032446522265672684,
- 0.023664753884077072,
- -0.06784018129110336,
- -0.052183639258146286,
- -0.07795947045087814,
- -0.09942749887704849,
- -0.07614610344171524,
- -0.05798213928937912,
- 0.026781311258673668,
- 0.0009894495597109199,
- 0.05962051451206207,
- -0.01655714400112629,
- 0.10093215107917786,
- -0.07655893266201019,
- 0.0042504481971263885,
- -0.05210518091917038,
- 0.011303577572107315,
- -0.10687312483787537,
- 0.0711098238825798,
- 0.024502763524651527,
- -0.0244189091026783,
- -0.024955088272690773,
- 0.03476659581065178,
- 0.03898422792553902,
- -0.01651562936604023,
- -0.11474961787462234,
- -0.05576670914888382,
- -0.050778768956661224,
- -0.03346465528011322,
- 0.030481072142720222,
- -0.08346614241600037,
- 0.04500321298837662,
- 0.09174849092960358,
- -0.03128514438867569,
- 0.02891325019299984,
- 0.03477420657873154,
- -0.019631236791610718,
- -0.03690135106444359,
- 0.0063300589099526405,
- 0.00022076748427934945,
- 0.015546811744570732,
- -0.04074878245592117,
- 0.007961798459291458,
- 0.008513517677783966,
- -1.2592152209833785e-8,
- -0.058331239968538284,
- -0.003461299231275916,
- -0.00007595389615744352,
- -0.01944565214216709,
- 0.030908238142728806,
- -0.05029672756791115,
- -0.046374376863241196,
- 0.07957319170236588,
- 0.020107509568333626,
- 0.012854063883423805,
- 0.033626679331064224,
- -0.03374764695763588,
- -0.0078058429062366486,
- -0.021105194464325905,
- 0.0865861251950264,
- 0.006000051274895668,
- -0.010222148150205612,
- 0.013743197545409203,
- -0.04994789883494377,
- 0.015334868803620338,
- -0.04752372205257416,
- -0.028071057051420212,
- 0.03672872856259346,
- 0.00866382010281086,
- 0.0490751750767231,
- 0.022336352616548538,
- -0.017412588000297546,
- 0.06889189779758453,
- 0.035953227430582047,
- 0.011569498106837273,
- 0.06022239848971367,
- 0.08103114366531372,
- -0.11414965987205505,
- 0.033775269985198975,
- 0.03605286031961441,
- -0.03139612451195717,
- 0.010325086303055286,
- -0.021342914551496506,
- -0.03204644098877907,
- 0.021480271592736244,
- -0.05034610256552696,
- 0.04910925403237343,
- 0.017985543236136436,
- -0.04864472895860672,
- -0.011659303680062294,
- -0.04555768147110939,
- 0.06568862497806549,
- -0.005778035614639521,
- -0.02158256620168686,
- -0.07324671000242233,
- 0.00945280585438013,
- -0.024475974962115288,
- 0.1305052787065506,
- 0.04616071283817291,
- 0.01682491973042488,
- 0.030345499515533447,
- 0.061863407492637634,
- 0.01284672413021326,
- -0.06557919830083847,
- -0.02164124883711338,
- 0.06266260147094727,
- 0.0339595302939415,
- 0.10977864265441895,
- 0.07750464230775833
- ]
- },
- {
- "keyword": "docs",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": false,
- "embedding": [
- -0.06932611763477325,
- 0.039602965116500854,
- 0.06976480036973953,
- 0.04154544696211815,
- -0.00978765543550253,
- -0.042392682284116745,
- 0.03034150041639805,
- 0.0717192143201828,
- 0.03546265885233879,
- 0.05518975481390953,
- -0.02586064115166664,
- 0.017746953293681145,
- 0.03015727363526821,
- 0.05843059718608856,
- -0.121087945997715,
- -0.02986724115908146,
- -0.0638791173696518,
- 0.001962054753676057,
- -0.02485550194978714,
- 0.05841878801584244,
- -0.10105271637439728,
- 0.1273481547832489,
- -0.032971516251564026,
- 0.008959988132119179,
- 0.008302289061248302,
- 0.08892117440700531,
- -0.08180045336484909,
- -0.09926924854516983,
- -0.019999152049422264,
- -0.06805908679962158,
- -0.01365215890109539,
- 0.03049027919769287,
- 0.06157832592725754,
- -0.01512384507805109,
- -0.0017865303670987487,
- 0.01671570912003517,
- 0.06360888481140137,
- -0.00813965406268835,
- 0.03706831857562065,
- 0.009097308851778507,
- -0.019311586394906044,
- -0.06548918038606644,
- 0.0030256384052336216,
- 0.023142831400036812,
- 0.033966682851314545,
- -0.025855587795376778,
- -0.010728211142122746,
- 0.012469521723687649,
- 0.03382989019155502,
- 0.08236823976039886,
- -0.12462430447340012,
- -0.0897546336054802,
- -0.018442118540406227,
- 0.045011039823293686,
- 0.0015236682957038283,
- 0.01681232452392578,
- 0.021382169798016548,
- 0.054932259023189545,
- -0.09541501849889755,
- -0.05866231769323349,
- 0.041573863476514816,
- 0.006307779345661402,
- -0.08179175853729248,
- 0.0761321485042572,
- 0.05841205269098282,
- 0.11735817790031433,
- -0.056715480983257294,
- 0.08138180524110794,
- -0.0008310976554639637,
- -0.020289519801735878,
- -0.06535610556602478,
- 0.012280076742172241,
- 0.02403865195810795,
- 0.04979073256254196,
- 0.04444066435098648,
- 0.008400602266192436,
- 0.05234118178486824,
- -0.032935094088315964,
- 0.05858900770545006,
- -0.06704728305339813,
- 0.01924002915620804,
- 0.02800467237830162,
- -0.06294400244951248,
- -0.023104233667254448,
- -0.0001622498093638569,
- 0.0032226708717644215,
- 0.007722560781985521,
- 0.018249953165650368,
- -0.08420120924711227,
- -0.019723841920495033,
- 0.04809590056538582,
- -0.129420205950737,
- 0.06368200480937958,
- -0.024906929582357407,
- -0.0946730375289917,
- -0.0008071363554336131,
- 0.002720267279073596,
- -0.011992564424872398,
- 0.03682074695825577,
- 0.12470757216215134,
- -0.010123648680746555,
- 0.005902690812945366,
- 0.0979219600558281,
- 0.029579663649201393,
- -0.014290060847997665,
- -0.029230384156107903,
- -0.064330093562603,
- -0.060675300657749176,
- 0.003931491635739803,
- -0.04812796041369438,
- -0.01629459671676159,
- 0.010149411857128143,
- -0.10453921556472778,
- -0.033666159957647324,
- -0.03750196844339371,
- 0.008208581246435642,
- -0.018725194036960602,
- 0.02155875973403454,
- 0.06571140885353088,
- 0.009202726185321808,
- -0.07117286324501038,
- -0.00488517340272665,
- 0.019422370940446854,
- -0.03220783919095993,
- -0.057591747492551804,
- -0.00934216845780611,
- 0.0315057709813118,
- -3.832538067724815e-33,
- 0.04564143344759941,
- -0.047585826367139816,
- -0.004452655557543039,
- 0.08183803409337997,
- 0.016814731061458588,
- 0.03147197514772415,
- -0.017693782225251198,
- -0.022780079394578934,
- 0.011908548884093761,
- -0.011261297389864922,
- -0.06607957184314728,
- 0.07428466528654099,
- -0.02259434573352337,
- -0.008977650664746761,
- 0.04965147748589516,
- 0.035001080483198166,
- -0.03460666537284851,
- 0.10158175230026245,
- -0.09557416290044785,
- 0.003077194793149829,
- -0.010733257979154587,
- 0.02583206817507744,
- -0.018339388072490692,
- 0.0796208307147026,
- 0.018831556662917137,
- 0.028175590559840202,
- -0.0018453954253345728,
- -0.1042560264468193,
- 0.06565571576356888,
- 0.016880620270967484,
- -0.03398152440786362,
- 0.0018215971067547798,
- 0.03288733586668968,
- -0.04464321210980415,
- -0.03258587047457695,
- 0.06372366845607758,
- -0.023973185569047928,
- -0.05665915831923485,
- 0.0608595535159111,
- -0.01930481381714344,
- -0.0387333445250988,
- 0.045525480061769485,
- 0.027209730818867683,
- 0.019188277423381805,
- -0.0010972169693559408,
- 0.030010292306542397,
- -0.0009267108398489654,
- 0.03900405392050743,
- -0.0004651474591810256,
- 0.06071564555168152,
- -0.01831519976258278,
- 0.003159641521051526,
- -0.013159547932446003,
- 0.008271872065961361,
- 0.06202004477381706,
- -0.04023517295718193,
- 0.03749775141477585,
- -0.033935584127902985,
- 0.023456627503037453,
- 0.0380437932908535,
- 0.09034690260887146,
- 0.056940119713544846,
- 0.009996130131185055,
- -0.08846758306026459,
- -0.10585304349660873,
- -0.08865325897932053,
- -0.01972697116434574,
- -0.0024092700332403183,
- 0.028495274484157562,
- 0.020828668028116226,
- -0.12111545354127884,
- 0.028138501569628716,
- 0.020249029621481895,
- 0.01795627549290657,
- 0.07345836609601974,
- -0.008687477558851242,
- 0.0433625690639019,
- -0.03412388265132904,
- -0.07547658681869507,
- -0.018014324828982353,
- -0.005361450370401144,
- -0.004295255523175001,
- -0.015351733192801476,
- 0.10106752067804337,
- -0.0005982506554573774,
- -0.014098596759140491,
- -0.055838074535131454,
- -0.007012327667325735,
- -0.015499635599553585,
- -0.0010177473304793239,
- -0.08144666254520416,
- 0.018412796780467033,
- -0.011728763580322266,
- 0.007049530278891325,
- -0.003687748685479164,
- 2.3643279911325156e-33,
- -0.05396486073732376,
- -0.07507402449846268,
- -0.058293718844652176,
- 0.09177185595035553,
- 0.027762778103351593,
- 0.010087123140692711,
- 0.062328897416591644,
- 0.07657672464847565,
- 0.018937978893518448,
- 0.027137143537402153,
- 0.02325427532196045,
- -0.015005810186266899,
- 0.03046860173344612,
- 0.023385755717754364,
- -0.0282317865639925,
- -0.028534123674035072,
- -0.02236679196357727,
- -0.04930349811911583,
- -0.0017796793254092336,
- 0.0633348673582077,
- -0.017502566799521446,
- 0.010820789262652397,
- 0.0029347988311201334,
- 0.018063755705952644,
- 0.02132549323141575,
- 0.016755038872361183,
- -0.019428003579378128,
- -0.09105700999498367,
- -0.05303122103214264,
- -0.03220922872424126,
- 0.01964765600860119,
- 0.005673786159604788,
- -0.1304701417684555,
- 0.03166906535625458,
- 0.03171216696500778,
- 0.06889168173074722,
- -0.012900217436254025,
- 0.05730637162923813,
- -0.027361096814274788,
- -0.019287122413516045,
- 0.15573947131633759,
- 0.00522548658773303,
- 0.02033052034676075,
- 0.07077329605817795,
- -0.03061036951839924,
- -0.034770481288433075,
- -0.040930405259132385,
- 0.01734936237335205,
- 0.056301478296518326,
- 0.03683292120695114,
- -0.04966083541512489,
- -0.02053471840918064,
- 0.012986129149794579,
- -0.04785871505737305,
- -0.006616008002310991,
- -0.10845944285392761,
- -0.095044806599617,
- -0.07785777747631073,
- -0.03812403976917267,
- 0.013208172284066677,
- -0.017484497278928757,
- 0.05528835952281952,
- -0.06524456292390823,
- 0.07081469148397446,
- -0.07022649049758911,
- -0.025453191250562668,
- -0.04697743058204651,
- 0.010781525634229183,
- -0.10294963419437408,
- 0.06352478265762329,
- 0.06329220533370972,
- -0.007765990681946278,
- -0.013303141109645367,
- 0.027507968246936798,
- 0.040115661919116974,
- -0.04999745264649391,
- -0.1048867255449295,
- -0.04073433578014374,
- -0.03628087788820267,
- -0.06194969639182091,
- 0.062088437378406525,
- -0.1020049899816513,
- 0.03581596538424492,
- 0.10604764521121979,
- 0.008861672133207321,
- 0.008407228626310825,
- 0.05369746685028076,
- -0.029359465464949608,
- -0.032363198697566986,
- -0.029214421287178993,
- -0.0021481227595359087,
- -0.0037065064534544945,
- -0.011438052169978619,
- 0.04020364582538605,
- 0.026310443878173828,
- -1.2282811212571687e-8,
- -0.08340981602668762,
- 0.041523560881614685,
- 0.0158799160271883,
- -0.012122736312448978,
- -0.02775261364877224,
- -0.04363282397389412,
- -0.029044000431895256,
- 0.1605541855096817,
- 0.014021655544638634,
- -0.008554119616746902,
- 0.03322681784629822,
- -0.059266913682222366,
- -0.009972134605050087,
- -0.02108713798224926,
- 0.11318223178386688,
- 0.024068154394626617,
- 0.03650083392858505,
- 0.05520997568964958,
- -0.05073094367980957,
- 0.005312052089720964,
- -0.051431190222501755,
- 0.013925873674452305,
- 0.06377322971820831,
- -0.010895862244069576,
- 0.06164109334349632,
- 0.038626883178949356,
- 0.020644277334213257,
- 0.053324129432439804,
- 0.01558720413595438,
- 0.03275652974843979,
- 0.06326547265052795,
- 0.057686515152454376,
- -0.0754784569144249,
- 0.03471312299370766,
- 0.1003667488694191,
- -0.03879289701581001,
- 0.015859730541706085,
- -0.02599889412522316,
- -0.05222795158624649,
- 0.01444172766059637,
- -0.08619264513254166,
- 0.020680278539657593,
- 0.0445401631295681,
- -0.0030781470704823732,
- -0.003457961603999138,
- -0.05668652430176735,
- 0.05202556028962135,
- 0.025570858269929886,
- -0.02176353707909584,
- -0.056087955832481384,
- 0.05465526133775711,
- -0.04238910973072052,
- 0.09937217086553574,
- 0.05947915464639664,
- 0.016757285222411156,
- 0.036043934524059296,
- 0.11425983905792236,
- 0.03186383843421936,
- -0.05851125717163086,
- -0.003389382967725396,
- 0.05642092600464821,
- 0.03434041887521744,
- 0.0762375071644783,
- 0.07600203156471252
- ]
- },
- {
- "keyword": "howto",
- "type": "document",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": false,
- "embedding": [
- -0.05880472809076309,
- 0.06102022901177406,
- -0.0027076881378889084,
- 0.003174100536853075,
- -0.051139626652002335,
- -0.03818420693278313,
- 0.03782285377383232,
- -0.01520281657576561,
- -0.08290901780128479,
- 0.02151372656226158,
- -0.0243841465562582,
- -0.06955613195896149,
- -0.04700727388262749,
- 0.005106355994939804,
- 0.018762333318591118,
- -0.008930262178182602,
- 0.04211760684847832,
- -0.015268421731889248,
- -0.1620797961950302,
- -0.07795444130897522,
- -0.06882788240909576,
- -0.060712382197380066,
- -0.046263109892606735,
- -0.011390221305191517,
- -0.10934716463088989,
- 0.022262414917349815,
- -0.017331015318632126,
- 0.05323779582977295,
- 0.04365036264061928,
- -0.07595742493867874,
- 0.008907198905944824,
- 0.07646699994802475,
- -0.06295600533485413,
- 0.038169048726558685,
- -0.03000243939459324,
- -0.0570518784224987,
- 0.037645142525434494,
- -0.010275856591761112,
- -0.07426020503044128,
- -0.07657210528850555,
- 0.014049561694264412,
- -0.08395570516586304,
- -0.00823996216058731,
- -0.01533058937638998,
- 0.001430805423296988,
- -0.033429864794015884,
- 0.01108790747821331,
- 0.025509389117360115,
- 0.08204937726259232,
- 0.07375914603471756,
- -0.03095497190952301,
- -0.0013290762435644865,
- 0.030276894569396973,
- 0.009789790026843548,
- -0.023832805454730988,
- 0.03945317491889,
- -0.06790996342897415,
- 0.0339791513979435,
- 0.025790167972445488,
- -0.02279573865234852,
- 0.05466316640377045,
- 0.018045885488390923,
- -0.1490294188261032,
- 0.04829375445842743,
- 0.08569220453500748,
- -0.032139480113983154,
- -0.005502300802618265,
- -0.035226285457611084,
- -0.033546749502420425,
- -0.05521612614393234,
- -0.01840651035308838,
- -0.034051038324832916,
- -0.044516779482364655,
- -0.06280803680419922,
- 0.04978044703602791,
- 0.04053487628698349,
- 0.006767465732991695,
- 0.06531838327646255,
- 0.048325467854738235,
- 0.014143885113298893,
- -0.04304136335849762,
- 0.05709414929151535,
- -0.005158388987183571,
- 0.05067676678299904,
- -0.03666977211833,
- 0.08650758862495422,
- 0.06928322464227676,
- -0.05436723306775093,
- -0.029718099161982536,
- 0.02267429605126381,
- 0.04510440304875374,
- 0.040090832859277725,
- 0.024168172851204872,
- -0.021813979372382164,
- -0.06687893718481064,
- -0.048027507960796356,
- 0.03171546757221222,
- 0.006606130860745907,
- 0.008417749777436256,
- 0.23538748919963837,
- 0.03434696048498154,
- -0.020925937220454216,
- 0.043948665261268616,
- -0.0730971097946167,
- 0.009048381820321083,
- -0.03398393839597702,
- -0.06256252527236938,
- 0.04839353635907173,
- 0.014336081221699715,
- -0.03215125575661659,
- -0.0792083889245987,
- 0.0399433895945549,
- -0.031074631959199905,
- -0.0049247476272284985,
- -0.006903539877384901,
- 0.05129120126366615,
- 0.007918862625956535,
- 0.07957437634468079,
- 0.00980354193598032,
- -0.08356770873069763,
- 0.057175032794475555,
- 0.025370623916387558,
- -0.01629936508834362,
- -0.08317738026380539,
- 0.001484604086726904,
- 0.0064560286700725555,
- -0.013930212706327438,
- -7.470758837735044e-34,
- 0.058042917400598526,
- 0.031350187957286835,
- 0.006181367672979832,
- 0.013397960923612118,
- -0.055907364934682846,
- 0.026040025055408478,
- 0.009686712175607681,
- -0.02706313319504261,
- 0.014143931679427624,
- -0.010254022665321827,
- 0.003352087689563632,
- -0.03013816848397255,
- -0.05026436597108841,
- 0.014867041260004044,
- 0.07419733703136444,
- -0.027410181239247322,
- 0.001823062659241259,
- -0.00253869965672493,
- 0.00032442202791571617,
- 0.026578813791275024,
- -0.01325802132487297,
- -0.08252981305122375,
- -0.014601434580981731,
- 0.0172179713845253,
- -0.025390051305294037,
- 0.06966999173164368,
- 0.028100330382585526,
- -0.08122507482767105,
- -0.010092143900692463,
- 0.08500054478645325,
- 0.007265271153301001,
- 0.034135546535253525,
- -0.09046831727027893,
- 0.03325862064957619,
- -0.029284555464982986,
- 0.03390708193182945,
- 0.07045146077871323,
- -0.010408480651676655,
- 0.01091739907860756,
- -0.023597637191414833,
- 0.002859551226720214,
- -0.018691254779696465,
- -0.13626191020011902,
- -0.0685289055109024,
- 0.01779364049434662,
- 0.09575087577104568,
- 0.06785725802183151,
- 0.029087748378515244,
- 0.03541912883520126,
- -0.0022942768409848213,
- 0.017115293070673943,
- -0.058407559990882874,
- -0.10678057372570038,
- 0.0027805352583527565,
- -0.05400664731860161,
- 0.000014610263860959094,
- 0.026287587359547615,
- 0.0029121076222509146,
- 0.07522797584533691,
- -0.03247583284974098,
- 0.15400905907154083,
- 0.09463737159967422,
- 0.018462946638464928,
- -0.025394918397068977,
- -0.1200089231133461,
- 0.03716747462749481,
- 0.0356631837785244,
- -0.03504885360598564,
- -0.010660652071237564,
- -0.07752059400081635,
- -0.033704277127981186,
- 0.01809600554406643,
- 0.07397602498531342,
- 0.0450313463807106,
- -0.057745326310396194,
- -0.04448169842362404,
- 0.03294438496232033,
- 0.03461306542158127,
- 0.01722237467765808,
- 0.03560837730765343,
- 0.07534284144639969,
- 0.004326839931309223,
- -0.012996280565857887,
- 0.06166142225265503,
- 0.12561070919036865,
- 0.00994338933378458,
- 0.010889226570725441,
- -0.06264094263315201,
- 0.0015973870176821947,
- -0.019915515556931496,
- -0.07005532085895538,
- -0.007908010855317116,
- -0.002193101681768894,
- -0.035785235464572906,
- 0.015770040452480316,
- -7.298745443301357e-34,
- -0.037618495523929596,
- -0.010575353167951107,
- -0.013240012340247631,
- 0.08038778603076935,
- -0.016543082892894745,
- -0.017927661538124084,
- 0.01722857356071472,
- 0.05623168498277664,
- 0.021096481010317802,
- 0.024051528424024582,
- 0.019090335816144943,
- -0.032521940767765045,
- 0.11216900497674942,
- 0.004890554118901491,
- 0.030964406207203865,
- 0.03143909201025963,
- 0.07817624509334564,
- 0.050423067063093185,
- -0.07448635250329971,
- 0.026694104075431824,
- -0.085838183760643,
- -0.09706494212150574,
- -0.023132173344492912,
- -0.02791697531938553,
- -0.012098690494894981,
- 0.011448394507169724,
- 0.031249580904841423,
- 0.042149629443883896,
- 0.013214321807026863,
- 0.025354783982038498,
- 0.11681373417377472,
- -0.06190597265958786,
- -0.10707290470600128,
- 0.004925700835883617,
- 0.04173704981803894,
- 0.0632067620754242,
- -0.06632599234580994,
- 0.030239533632993698,
- 0.0290813148021698,
- -0.040640607476234436,
- 0.03323912248015404,
- 0.01866927742958069,
- -0.13122394680976868,
- 0.01333226915448904,
- 0.039231233298778534,
- -0.09261111170053482,
- 0.09334518760442734,
- 0.012043035589158535,
- 0.05335213616490364,
- 0.05637316033244133,
- -0.05698079615831375,
- 0.04268230125308037,
- -0.042292285710573196,
- 0.0002638203150127083,
- -0.027617167681455612,
- -0.07134146988391876,
- 0.11384457349777222,
- -0.018848402425646782,
- -0.0037510860711336136,
- -0.07081200182437897,
- 0.0582704022526741,
- 0.02816077508032322,
- 0.01098767202347517,
- 0.004066500347107649,
- 0.04665282368659973,
- -0.0073099881410598755,
- -0.012737207114696503,
- 0.016261203214526176,
- -0.06795614212751389,
- -0.0008647274225950241,
- -0.0273570753633976,
- 0.06570764631032944,
- -0.047525521367788315,
- -0.007729190867394209,
- 0.034410689026117325,
- -0.053298838436603546,
- 0.027003850787878036,
- 0.031032744795084,
- 0.013385419733822346,
- 0.010948345065116882,
- 0.020802730694413185,
- -0.029648425057530403,
- 0.016994239762425423,
- 0.00032292012474499643,
- -0.0293657835572958,
- -0.09297903627157211,
- 0.05549369752407074,
- -0.011911804787814617,
- -0.03115556575357914,
- -0.02965705096721649,
- -0.07962646335363388,
- 0.06107775866985321,
- 0.08034742623567581,
- 0.020216580480337143,
- 0.011406614445149899,
- -1.5015309884347516e-8,
- 0.015153047628700733,
- -0.057822421193122864,
- 0.0843120589852333,
- 0.0881074070930481,
- 0.01461070403456688,
- 0.11734311282634735,
- -0.021818701177835464,
- 0.011985627934336662,
- 0.06768599897623062,
- -0.016448600217700005,
- 0.007029124069958925,
- -0.044767826795578,
- 0.0027694988530129194,
- 0.06919088959693909,
- -0.0024051712825894356,
- -0.043770186603069305,
- -0.025166355073451996,
- 0.027445252984762192,
- -0.04790578410029411,
- -0.02072034776210785,
- 0.014886539429426193,
- -0.06465815007686615,
- 0.08534406125545502,
- -0.01118842326104641,
- 0.029125910252332687,
- 0.0292032640427351,
- 0.0625821202993393,
- 0.08662576228380203,
- -0.029963858425617218,
- 0.018650906160473824,
- -0.06281998008489609,
- 0.005646620411425829,
- -0.001000134740024805,
- 0.007193584460765123,
- 0.0625045970082283,
- 0.0577576719224453,
- -0.09415778517723083,
- 0.002039552666246891,
- 0.018043439835309982,
- 0.007370378822088242,
- -0.0026471996679902077,
- -0.013681499287486076,
- 0.021071523427963257,
- 0.01364814955741167,
- -0.04996398836374283,
- -0.016319546848535538,
- 0.008200042881071568,
- -0.1281834840774536,
- -0.04145954176783562,
- 0.026221632957458496,
- 0.01557594258338213,
- 0.01238599419593811,
- 0.054177913814783096,
- 0.04647147282958031,
- 0.06966868788003922,
- 0.008818179368972778,
- 0.06651610136032104,
- 0.047048281878232956,
- -0.05574183166027069,
- 0.07394444197416306,
- 0.012584312818944454,
- 0.028454871848225594,
- -0.0455169752240181,
- 0.007554538547992706
- ]
- },
- {
- "keyword": "media",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.04306936636567116,
- 0.02226889878511429,
- -0.01508952397853136,
- -0.019262949004769325,
- 0.08521265536546707,
- 0.055839791893959045,
- 0.054729629307985306,
- 0.013462438248097897,
- 0.0021183143835514784,
- 0.07047028094530106,
- 0.05443551763892174,
- 0.06060227006673813,
- 0.025858445093035698,
- 0.02914191409945488,
- -0.013965610414743423,
- -0.06932276487350464,
- -0.0026085232384502888,
- -0.08343739807605743,
- -0.10918758809566498,
- -0.011713304556906223,
- -0.09650439023971558,
- 0.024042200297117233,
- 0.052009113132953644,
- -0.0159694142639637,
- 0.00036514722160063684,
- -0.01022130437195301,
- -0.049993570894002914,
- 0.02719785086810589,
- 0.02016679011285305,
- -0.09811908006668091,
- 0.023129459470510483,
- 0.012352481484413147,
- 0.06132886931300163,
- -0.020310983061790466,
- -0.013818577863276005,
- 0.009986466728150845,
- -0.0032998204696923494,
- -0.06904032826423645,
- -0.01790088601410389,
- -0.0013156533241271973,
- 0.06537873297929764,
- -0.07144562155008316,
- 0.015605689957737923,
- -0.03196718171238899,
- -0.05057705193758011,
- -0.04438577964901924,
- 0.0174038615077734,
- 0.025168562307953835,
- -0.04346492886543274,
- 0.07897228747606277,
- -0.06610523909330368,
- 0.023678921163082123,
- -0.03796302154660225,
- 0.02715938165783882,
- 0.019881267100572586,
- -0.14839836955070496,
- -0.038817305117845535,
- 0.09574294090270996,
- 0.04429418593645096,
- 0.04731173440814018,
- 0.033367376774549484,
- -0.05901792645454407,
- -0.10412836074829102,
- 0.04048856720328331,
- 0.09731237590312958,
- 0.04810161888599396,
- -0.033167608082294464,
- 0.11585361510515213,
- -0.06049313023686409,
- -0.04451199993491173,
- 0.029775036498904228,
- 0.002872264012694359,
- 0.04690476134419441,
- 0.048549994826316833,
- 0.05014488473534584,
- -0.09925734996795654,
- 0.03895203769207001,
- 0.03824517875909805,
- 0.05358968675136566,
- -0.034646712243556976,
- 0.10445533692836761,
- -0.07144230604171753,
- -0.0577310174703598,
- 0.004877786617726088,
- 0.011236617341637611,
- -0.06901118159294128,
- -0.03819726034998894,
- -0.03655390068888664,
- -0.054279737174510956,
- 0.014525788836181164,
- -0.09446196258068085,
- -0.021689193323254585,
- 0.06564188003540039,
- 0.04313783347606659,
- -0.02419024147093296,
- -0.005092462990432978,
- -0.02430517040193081,
- -0.07610341161489487,
- 0.004901004955172539,
- 0.2384473830461502,
- -0.0172602366656065,
- 0.05157320201396942,
- 0.039459507912397385,
- -0.0038887690752744675,
- -0.021906496956944466,
- -0.11524724215269089,
- -0.0800052136182785,
- 0.10511454194784164,
- -0.022381948307156563,
- 0.007968570105731487,
- -0.09478648751974106,
- 0.05286047235131264,
- -0.03769813850522041,
- -0.0016723796725273132,
- 0.07758885622024536,
- -0.004975945223122835,
- 0.004669191315770149,
- 0.030153248459100723,
- 0.002946869470179081,
- -0.0896880105137825,
- -0.023131530731916428,
- -0.007648742292076349,
- -0.09785893559455872,
- -0.005640523508191109,
- -0.044752027839422226,
- -0.0914730429649353,
- -0.019458245486021042,
- -4.779035833431351e-33,
- 0.04362314194440842,
- -0.06970460712909698,
- 0.03443199396133423,
- 0.031941790133714676,
- -0.027414890006184578,
- 0.03900112956762314,
- -0.001712675904855132,
- -0.03500976786017418,
- -0.01830032654106617,
- -0.028255144134163857,
- 0.027940357103943825,
- 0.08493161201477051,
- -0.09995508939027786,
- 0.02366839535534382,
- 0.07209306955337524,
- 0.04939522594213486,
- -0.08562086522579193,
- 0.13868236541748047,
- -0.049438152462244034,
- -0.0063698082230985165,
- 0.0017524539725854993,
- 0.0353403240442276,
- 0.024259913712739944,
- 0.04405675455927849,
- 0.03321032598614693,
- -0.02793547883629799,
- 0.02115241065621376,
- -0.11663774400949478,
- 0.03704936057329178,
- 0.016922740265727043,
- -0.05513331666588783,
- 0.014156371355056763,
- 0.04679477959871292,
- -0.07683282345533371,
- 0.028555978089571,
- -0.029750879853963852,
- -0.026724744588136673,
- -0.06372421234846115,
- 0.037482429295778275,
- 0.02884546108543873,
- 0.0005111652426421642,
- 0.03102247416973114,
- -0.08332115411758423,
- 0.017193404957652092,
- -0.022908678278326988,
- 0.028973571956157684,
- -0.0016105984104797244,
- -0.0076642329804599285,
- -0.07879748940467834,
- 0.015679368749260902,
- 0.05568493530154228,
- 0.038725510239601135,
- -0.005034216213971376,
- -0.052900660783052444,
- 0.06998273730278015,
- 0.039848167449235916,
- 0.015208745375275612,
- -0.061221905052661896,
- -0.007432343438267708,
- -0.03881716728210449,
- 0.09771798551082611,
- 0.10232080519199371,
- -0.0036203553900122643,
- -0.02697468176484108,
- -0.032748762518167496,
- -0.014156060293316841,
- 0.03965054452419281,
- -0.026269886642694473,
- 0.06605450809001923,
- -0.031722765415906906,
- -0.03626643493771553,
- 0.0074241673573851585,
- -0.017519500106573105,
- -0.016203928738832474,
- -0.012884559109807014,
- 0.03387589007616043,
- 0.01495534647256136,
- -0.01599997468292713,
- -0.015651103109121323,
- 0.07200431078672409,
- 0.004639067221432924,
- -0.00292221293784678,
- 0.0035025905817747116,
- 0.016641801223158836,
- -0.048386625945568085,
- 0.07251707464456558,
- -0.020389432087540627,
- -0.07583512365818024,
- 0.021589288488030434,
- 0.033706773072481155,
- -0.11822493374347687,
- 0.04310280457139015,
- 0.01067429967224598,
- 0.017471754923462868,
- -0.03552902862429619,
- 3.685749312691836e-33,
- -0.11040695756673813,
- -0.007332390174269676,
- -0.033018987625837326,
- 0.035708826035261154,
- 0.007616669405251741,
- -0.025167152285575867,
- 0.06956221163272858,
- -0.031839799135923386,
- 0.0734345018863678,
- 0.045195452868938446,
- -0.09091430902481079,
- -0.11253519356250763,
- -0.008987720124423504,
- 0.02958943136036396,
- -0.06979444622993469,
- -0.06286729127168655,
- 0.0794660747051239,
- -0.060915734618902206,
- -0.00591573491692543,
- 0.02700277976691723,
- -0.021995119750499725,
- -0.024259397760033607,
- 0.035427868366241455,
- 0.035404834896326065,
- 0.003848265390843153,
- 0.012098964303731918,
- 0.05247604474425316,
- -0.002818786771968007,
- 0.027684517204761505,
- -0.014325007796287537,
- 0.02884344942867756,
- -0.04478566721081734,
- 0.013707790523767471,
- -0.024115441367030144,
- 0.06312770396471024,
- 0.11108773201704025,
- 0.07749362289905548,
- 0.04049203172326088,
- -0.059629201889038086,
- -0.03569909557700157,
- 0.07832543551921844,
- 0.03446875140070915,
- -0.02034408040344715,
- 0.09839475899934769,
- -0.04643290117383003,
- 0.0011842247331514955,
- -0.03082852065563202,
- 0.0137565266340971,
- 0.004479077644646168,
- -0.014694982208311558,
- 0.01772768422961235,
- 0.005817147437483072,
- 0.038032762706279755,
- -0.041379883885383606,
- -0.016838928684592247,
- 0.060687486082315445,
- -0.05081896483898163,
- -0.039888206869363785,
- -0.032719820737838745,
- 0.0499144084751606,
- 0.02279602736234665,
- 0.0403827428817749,
- -0.0911828950047493,
- 0.004532873630523682,
- -0.042550500482320786,
- 0.027568960562348366,
- 0.02936350554227829,
- -0.01192515715956688,
- -0.07343625277280807,
- 0.024984611198306084,
- 0.08797721564769745,
- 0.042426709085702896,
- 0.016405073925852776,
- -0.0022220220416784286,
- -0.06946539133787155,
- 0.053421247750520706,
- -0.14024366438388824,
- 0.08236391097307205,
- -0.0030923299491405487,
- 0.007270325440913439,
- 0.014563416130840778,
- 0.015688683837652206,
- -0.0559428408741951,
- -0.012370912358164787,
- 0.010502384044229984,
- 0.03828500956296921,
- 0.08696378022432327,
- -0.05617730692028999,
- -0.06784648448228836,
- -0.0638125091791153,
- 0.0039155809208750725,
- -0.05513440817594528,
- -0.008294040337204933,
- 0.010753572918474674,
- 0.019816145300865173,
- -1.2225571666135693e-8,
- -0.07082438468933105,
- -0.07606744766235352,
- -0.018504051491618156,
- -0.0193343348801136,
- -0.027337785810232162,
- -0.003348467405885458,
- 0.051998648792505264,
- 0.03062431886792183,
- 0.09661491215229034,
- 0.04937049373984337,
- -0.0176832377910614,
- -0.003912495449185371,
- 0.0445922315120697,
- 0.058499835431575775,
- 0.00007601966353831813,
- -0.003802928375080228,
- 0.03514303267002106,
- -0.01215183176100254,
- -0.03532981500029564,
- -0.0016482603969052434,
- 0.020440882071852684,
- 0.03384777903556824,
- 0.03797568008303642,
- 0.0012702177045866847,
- 0.0074620856903493404,
- -0.03974352777004242,
- 0.05996211618185043,
- -0.01691220887005329,
- 0.09491492807865143,
- 0.019975272938609123,
- -0.06502256542444229,
- -0.01687558926641941,
- -0.033071935176849365,
- -0.022419767454266548,
- 0.00365908513776958,
- -0.000079003453720361,
- 0.009412079118192196,
- -0.024441378191113472,
- -0.017255496233701706,
- 0.024953139945864677,
- -0.01810879074037075,
- 0.01401170901954174,
- 0.06335172057151794,
- 0.002525041811168194,
- 0.042853232473134995,
- 0.019608240574598312,
- 0.005377363879233599,
- 0.06438743323087692,
- -0.046132493764162064,
- -0.022093161940574646,
- -0.058182235807180405,
- 0.036161184310913086,
- 0.039136745035648346,
- 0.00838859099894762,
- 0.04575705900788307,
- -0.01557986345142126,
- 0.0629512220621109,
- 0.04219437390565872,
- -0.044571831822395325,
- 0.035769227892160416,
- 0.11010158807039261,
- 0.017604835331439972,
- 0.033995114266872406,
- 0.09639623016119003
- ]
- },
- {
- "keyword": "multimedia",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.011452148668467999,
- -0.03428710624575615,
- 0.01153738982975483,
- -0.12650153040885925,
- 0.053092364221811295,
- 0.006473814137279987,
- 0.11722280830144882,
- 0.030800454318523407,
- 0.09619631618261337,
- 0.026330888271331787,
- 0.0014536345843225718,
- -0.02581029385328293,
- 0.0011947762686759233,
- 0.0527741014957428,
- -0.0005121600697748363,
- -0.04081521928310394,
- 0.0002913048956543207,
- -0.04515600949525833,
- -0.041398655623197556,
- -0.04343481361865997,
- -0.02997388318181038,
- -0.060428645461797714,
- 0.05465254932641983,
- -0.04178542271256447,
- 0.0027641798369586468,
- 0.06401855498552322,
- 0.0035200868733227253,
- 0.055348917841911316,
- 0.06764140725135803,
- -0.09408247470855713,
- 0.029889823868870735,
- 0.021655960008502007,
- 0.10421325266361237,
- -0.01025545783340931,
- -0.042464762926101685,
- 0.022492898628115654,
- 0.023736130446195602,
- -0.058499373495578766,
- -0.06719190627336502,
- -0.0461670458316803,
- -0.07248473167419434,
- -0.000005568519100052072,
- 0.046006232500076294,
- -0.06701619923114777,
- -0.03241468593478203,
- -0.056284099817276,
- 0.025077063590288162,
- -0.03357716277241707,
- -0.06935881078243256,
- 0.017774280160665512,
- -0.05147614702582359,
- -0.022662024945020676,
- -0.07001030445098877,
- 0.02663593739271164,
- -0.01958109252154827,
- -0.0813448578119278,
- 0.043493445962667465,
- 0.012118842452764511,
- 0.02568749524652958,
- 0.005211573094129562,
- -0.025402037426829338,
- -0.05267205089330673,
- -0.0238172747194767,
- 0.04506700485944748,
- 0.027646051719784737,
- 0.03801915422081947,
- 0.005757192615419626,
- -0.022107116878032684,
- 0.04355859011411667,
- -0.07456672191619873,
- -0.10587143898010254,
- -0.030665652826428413,
- 0.011402633972465992,
- 0.05370836704969406,
- -0.002350777620449662,
- -0.03653173893690109,
- 0.026757467538118362,
- 0.02353169396519661,
- 0.05421135202050209,
- -0.07048612833023071,
- 0.08905577659606934,
- -0.03185132518410683,
- -0.02668815478682518,
- -0.07548468559980392,
- 0.101375050842762,
- -0.025967396795749664,
- -0.03090050257742405,
- 0.03052617982029915,
- -0.06599653512239456,
- -0.04039378464221954,
- -0.09270540624856949,
- -0.0016489075496792793,
- 0.05645105615258217,
- 0.06728092581033707,
- -0.02173631452023983,
- -0.03014497458934784,
- -0.019529076293110847,
- -0.14547887444496155,
- 0.00654586823657155,
- 0.18404428660869598,
- 0.0025211074389517307,
- -0.0536528043448925,
- -0.011610178276896477,
- 0.00795849971473217,
- 0.004646305926144123,
- -0.07792544364929199,
- 0.010774735361337662,
- 0.08894512802362442,
- 0.01248963363468647,
- -0.022612450644373894,
- -0.0915982648730278,
- -0.025275619700551033,
- -0.056267645210027695,
- -0.03235809504985809,
- 0.038908399641513824,
- 0.034402333199977875,
- -0.004496389999985695,
- 0.005302450153976679,
- 0.05566428229212761,
- -0.022004157304763794,
- -0.03735220059752464,
- -0.0850619524717331,
- -0.1428700089454651,
- -0.021247627213597298,
- 0.0004334939585532993,
- -0.09381817281246185,
- -0.04542418196797371,
- -3.462487303298174e-33,
- 0.007682425901293755,
- -0.0071378229185938835,
- 0.04683892801403999,
- 0.0091622956097126,
- 0.018682820722460747,
- 0.012406488880515099,
- 0.0018417751416563988,
- -0.03598519787192345,
- -0.0037449179217219353,
- -0.037377189844846725,
- 0.06763062626123428,
- 0.03325020894408226,
- -0.08472234010696411,
- 0.06975767016410828,
- 0.05727395787835121,
- -0.045375674962997437,
- -0.0906514897942543,
- 0.11206188797950745,
- -0.012376085855066776,
- -0.002485745120793581,
- 0.0011930681066587567,
- 0.019207365810871124,
- 0.048091500997543335,
- 0.08071442693471909,
- 0.05132259801030159,
- 0.02650691755115986,
- 0.026239249855279922,
- -0.03686561807990074,
- 0.1608792096376419,
- 0.002692076377570629,
- -0.08147081732749939,
- -0.007241458166390657,
- 0.007886032573878765,
- -0.07269320636987686,
- 0.006706759799271822,
- -0.02879061922430992,
- -0.031226348131895065,
- -0.04051272198557854,
- 0.03985271602869034,
- 0.020615816116333008,
- -0.05394352227449417,
- 0.043996166437864304,
- -0.025425193831324577,
- 0.001026118639856577,
- 0.007117179222404957,
- 0.08138220757246017,
- 0.058684781193733215,
- 0.028873415663838387,
- -0.10680750012397766,
- 0.052451927214860916,
- 0.027073156088590622,
- 0.0494217649102211,
- 0.014585825614631176,
- -0.043620433658361435,
- -0.005139697343111038,
- -0.02235325798392296,
- 0.09868822991847992,
- 0.021866867318749428,
- -0.022774837911128998,
- -0.019680390134453773,
- 0.047250475734472275,
- 0.06727412343025208,
- -0.02951459214091301,
- -0.053574852645397186,
- -0.031785767525434494,
- -0.04048982262611389,
- 0.09093445539474487,
- -0.028061335906386375,
- 0.04738999530673027,
- 0.01817193813621998,
- -0.026179634034633636,
- 0.01467353105545044,
- 0.05978306755423546,
- -0.04536940157413483,
- -0.02923123724758625,
- 0.018214542418718338,
- -0.006460526026785374,
- -0.03887000307440758,
- -0.0722329244017601,
- 0.12266711890697479,
- -0.11136167496442795,
- 0.030164973810315132,
- -0.0025998218916356564,
- -0.0033730657305568457,
- -0.05039871484041214,
- -0.007252759300172329,
- -0.004452368710190058,
- -0.10123870521783829,
- -0.06476904451847076,
- 0.06479059159755707,
- -0.02344260923564434,
- 0.0499216727912426,
- -0.002169025829061866,
- 0.05322399362921715,
- -0.03644378110766411,
- 3.107560008378831e-33,
- -0.03620735928416252,
- 0.06437176465988159,
- -0.011445478536188602,
- 0.06393572688102722,
- 0.021873822435736656,
- -0.0005354432505555451,
- 0.09177505970001221,
- 0.03730207681655884,
- 0.039493728429079056,
- -0.026713022962212563,
- 0.013534946367144585,
- -0.03485579416155815,
- -0.06445347517728806,
- -0.008519405499100685,
- -0.10376616567373276,
- -0.058791596442461014,
- 0.056105680763721466,
- -0.080539770424366,
- 0.0008888422744348645,
- 0.044260505586862564,
- -0.029873820021748543,
- 0.010307499207556248,
- 0.033537689596414566,
- -0.007877938449382782,
- -0.01677939109504223,
- 0.06710847467184067,
- 0.01699160970747471,
- -0.0010907587129622698,
- -0.006532514002174139,
- -0.0170835480093956,
- 0.042822979390621185,
- -0.07177003473043442,
- -0.019696339964866638,
- -0.020065441727638245,
- 0.09316647052764893,
- -0.016989458352327347,
- 0.10413560271263123,
- 0.02485470660030842,
- -0.051994070410728455,
- 0.017907092347741127,
- 0.09455761313438416,
- 0.06640531867742538,
- -0.0061444505117833614,
- 0.07421771436929703,
- -0.0052553764544427395,
- -0.006626978516578674,
- -0.08493509143590927,
- 0.029816441237926483,
- 0.010470944456756115,
- -0.0036063070874661207,
- 0.016934897750616074,
- -0.008149395696818829,
- 0.07990498095750809,
- -0.11462816596031189,
- 0.016925625503063202,
- 0.013504358939826488,
- -0.07325389236211777,
- -0.010130700655281544,
- 0.007156247738748789,
- 0.05958268791437149,
- 0.028548380360007286,
- -0.013313612900674343,
- -0.07366640120744705,
- -0.00791873037815094,
- -0.0595131441950798,
- 0.086837038397789,
- 0.0008418179349973798,
- -0.03648904711008072,
- -0.034217312932014465,
- 0.025224102661013603,
- 0.10846839100122452,
- 0.0634118914604187,
- -0.0020430157892405987,
- -0.00548946438357234,
- -0.0186921376734972,
- 0.044414713978767395,
- -0.060426387935876846,
- 0.025852689519524574,
- -0.02058366872370243,
- -0.04694676771759987,
- 0.008869582787156105,
- 0.014021211303770542,
- 0.03617217019200325,
- 0.005150342360138893,
- 0.00863818358629942,
- 0.10014999657869339,
- 0.02696482092142105,
- -0.03774476423859596,
- -0.04417406767606735,
- -0.03883838653564453,
- -0.020633747801184654,
- 0.0793648362159729,
- 0.04909514635801315,
- 0.053167179226875305,
- -0.027665162459015846,
- -1.0182807486103229e-8,
- -0.05384305119514465,
- -0.06837482750415802,
- 0.04331914335489273,
- -0.10532275587320328,
- -0.014618128538131714,
- -0.019371816888451576,
- 0.03474263846874237,
- -0.002969306195154786,
- 0.09036508947610855,
- 0.01366878580302,
- 0.020317604765295982,
- -0.037986233830451965,
- 0.04544344171881676,
- 0.08876673877239227,
- 0.025661207735538483,
- -0.0007157570216804743,
- 0.03764404356479645,
- 0.014422593638300896,
- -0.006036095321178436,
- 0.020030874758958817,
- 0.036770179867744446,
- 0.047102876007556915,
- -0.016473043709993362,
- -0.019750375300645828,
- -0.034913595765829086,
- 0.00020717325969599187,
- 0.08584531396627426,
- 0.007611182518303394,
- 0.07357307523488998,
- 0.008505748584866524,
- 0.006108489353209734,
- 0.06233944743871689,
- -0.0175614133477211,
- -0.010068376548588276,
- -0.03008192591369152,
- -0.05972784757614136,
- -0.00828652922064066,
- -0.03633534535765648,
- -0.044895999133586884,
- -0.004715797957032919,
- 0.007294100243598223,
- 0.032991040498018265,
- 0.02402905933558941,
- -0.034726582467556,
- 0.07478152215480804,
- 0.031536590307950974,
- 0.001113296253606677,
- -0.04351960867643356,
- -0.04117077216506004,
- 0.06555745005607605,
- -0.10919385403394699,
- 0.07716868072748184,
- -0.009644916281104088,
- 0.01192441675812006,
- 0.07703898102045059,
- -0.04777713492512703,
- 0.08265581727027893,
- 0.050432782620191574,
- -0.032471295446157455,
- 0.05433104559779167,
- 0.07300136238336563,
- -0.0019080231431871653,
- 0.03977533057332039,
- 0.06765342503786087
- ]
- },
- {
- "keyword": "content",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.014362289570271969,
- 0.011781800538301468,
- -0.0724906399846077,
- -0.0021882655564695597,
- 0.027733398601412773,
- 0.02452964521944523,
- 0.07114105671644211,
- -0.01048980187624693,
- 0.026431072503328323,
- 0.03687345236539841,
- 0.012655428610742092,
- 0.01659446954727173,
- 0.02862895093858242,
- 0.03194662556052208,
- -0.03129677101969719,
- -0.0060135601088404655,
- 0.12396284192800522,
- -0.024844907224178314,
- -0.09791078418493271,
- -0.05647166445851326,
- -0.08634845167398453,
- 0.0379134863615036,
- 0.011134650558233261,
- 0.041217874735593796,
- -0.02110787108540535,
- 0.11337455362081528,
- -0.09111762791872025,
- 0.04382262006402016,
- 0.1207386702299118,
- -0.11544738709926605,
- 0.03705139458179474,
- 0.005257801152765751,
- 0.13104622066020966,
- -0.01903144083917141,
- -0.04744965210556984,
- 0.08172696828842163,
- 0.044390540570020676,
- -0.054077062755823135,
- 0.006842820905148983,
- -0.02294270321726799,
- 0.025284843519330025,
- -0.08778412640094757,
- -0.05138549581170082,
- 0.045297153294086456,
- 0.038760460913181305,
- 0.04970688745379448,
- -0.004528285004198551,
- -0.046216849237680435,
- 0.03437943756580353,
- 0.037861987948417664,
- -0.01691552624106407,
- 0.04437866061925888,
- -0.0819169282913208,
- 0.013075370341539383,
- -0.017307942733168602,
- -0.010633541271090508,
- -0.020617911592125893,
- 0.07080615311861038,
- 0.03327025845646858,
- -0.028975611552596092,
- 0.14245691895484924,
- -0.019382508471608162,
- -0.04687009006738663,
- 0.06571047008037567,
- 0.094093918800354,
- -0.07653927057981491,
- -0.04090142622590065,
- 0.05645156279206276,
- -0.1117500513792038,
- -0.05301812291145325,
- 0.031307995319366455,
- 0.006821992341428995,
- 0.015080392360687256,
- 0.10506606847047806,
- 0.06551865488290787,
- -0.07419560849666595,
- 0.036822009831666946,
- -0.07702244818210602,
- -0.007655562367290258,
- -0.041838809847831726,
- 0.008015180006623268,
- 0.0011162826558575034,
- 0.015418389812111855,
- 0.011307239532470703,
- -0.030888138338923454,
- -0.027043407782912254,
- -0.00040486518992111087,
- 0.009359348565340042,
- -0.040415890514850616,
- 0.013694184832274914,
- -0.027506142854690552,
- -0.0023644452448934317,
- 0.14730001986026764,
- 0.006143716163933277,
- -0.06898747384548187,
- 0.03488941490650177,
- -0.040723104029893875,
- -0.08309552818536758,
- 0.037952493876218796,
- 0.23027044534683228,
- 0.031164750456809998,
- 0.05753715708851814,
- 0.009820611216127872,
- -0.027318434789776802,
- -0.05976494774222374,
- -0.04828188195824623,
- -0.060427822172641754,
- 0.10416477173566818,
- 0.01752924732863903,
- -0.015985291451215744,
- -0.03686936944723129,
- 0.03332529217004776,
- -0.0796087384223938,
- -0.04155498370528221,
- 0.008410193957388401,
- -0.06097111478447914,
- 0.03844456374645233,
- 0.022433582693338394,
- 0.011152892373502254,
- -0.014527902938425541,
- -0.002309985226020217,
- -0.02456602454185486,
- 0.0020731736440211535,
- -0.014270767569541931,
- -0.052045054733753204,
- -0.11500310897827148,
- 0.019458942115306854,
- -4.952995038357634e-33,
- 0.06599283218383789,
- -0.07394981384277344,
- 0.07224047183990479,
- 0.07084240764379501,
- -0.018867766484618187,
- 0.0324164479970932,
- -0.012864784337580204,
- -0.057905931025743484,
- -0.013796237297356129,
- 0.03134521469473839,
- -0.002638385398313403,
- 0.06435159593820572,
- -0.040764279663562775,
- 0.0008676280849613249,
- 0.037068311125040054,
- -0.06849782168865204,
- -0.04220467433333397,
- 0.07792151719331741,
- 0.017912082374095917,
- -0.010189933702349663,
- -0.025056181475520134,
- -0.002711603417992592,
- 0.04483750835061073,
- 0.023525571450591087,
- -0.00373858236707747,
- 0.005411134101450443,
- -0.03643431141972542,
- -0.10993696749210358,
- -0.059992969036102295,
- 0.012610156089067459,
- -0.01415275689214468,
- 0.024850979447364807,
- 0.01946224831044674,
- -0.07347790896892548,
- 0.014672552235424519,
- 0.027137991040945053,
- 0.004075201693922281,
- -0.06611470133066177,
- 0.024144649505615234,
- -0.08393459022045135,
- 0.020592443645000458,
- -0.01821625791490078,
- -0.0011788359843194485,
- 0.0216046255081892,
- -0.047429513186216354,
- 0.05413691699504852,
- 0.03831842541694641,
- -0.015020553022623062,
- -0.052926015108823776,
- -0.006853137165307999,
- 0.07558530569076538,
- 0.02003610134124756,
- -0.01950552500784397,
- -0.05838743597269058,
- 0.013962594792246819,
- 0.03165782615542412,
- -0.0669771283864975,
- -0.03315374627709389,
- 0.02752944640815258,
- 0.03952477127313614,
- 0.10615486651659012,
- 0.0728520080447197,
- -0.0677451640367508,
- -0.0591680109500885,
- 0.026651399210095406,
- 0.03575747087597847,
- -0.015716252848505974,
- -0.05059259757399559,
- 0.05963314697146416,
- -0.037954624742269516,
- -0.0737880989909172,
- -0.007119887974113226,
- 0.04808373376727104,
- -0.043722428381443024,
- -0.02557419426739216,
- 0.022380467504262924,
- -0.07764909416437149,
- -0.040170203894376755,
- -0.03570018336176872,
- 0.026272810995578766,
- 0.0127734849229455,
- -0.056776680052280426,
- 0.028299203142523766,
- -0.0322721041738987,
- -0.028595367446541786,
- 0.02199779637157917,
- 0.05595540627837181,
- -0.10185728967189789,
- 0.004038437735289335,
- 0.010536286979913712,
- -0.0479707270860672,
- 0.0001144636917160824,
- -0.0062451534904539585,
- -0.04166819155216217,
- 0.01798246242105961,
- 3.966733604840641e-33,
- -0.10314087569713593,
- -0.02184337191283703,
- -0.10712781548500061,
- 0.09810985624790192,
- 0.03334303945302963,
- 0.018354199826717377,
- -0.016505463048815727,
- 0.010691705159842968,
- 0.024786271154880524,
- 0.01886821538209915,
- -0.024287832900881767,
- -0.02200656197965145,
- 0.006682350300252438,
- 0.016755742952227592,
- -0.0998506024479866,
- -0.021430298686027527,
- 0.07447312027215958,
- -0.03218642994761467,
- -0.06455705314874649,
- 0.05185803398489952,
- -0.06937471777200699,
- -0.03587090224027634,
- -0.05979540944099426,
- -0.01597755029797554,
- 0.03251207247376442,
- 0.0462719090282917,
- 0.05566253885626793,
- -0.015457021072506905,
- 0.05705011263489723,
- 0.03177992254495621,
- 0.06509783864021301,
- -0.04523779824376106,
- -0.03128719702363014,
- -0.0754333883523941,
- -0.02082071825861931,
- 0.0031071994453668594,
- 0.05189964920282364,
- 0.036535851657390594,
- -0.071283720433712,
- 0.008723229169845581,
- 0.11759623140096664,
- 0.015718139708042145,
- -0.03323577344417572,
- 0.10758799314498901,
- -0.05341336503624916,
- 0.031165963038802147,
- -0.07214708626270294,
- 0.015840429812669754,
- 0.04097731411457062,
- 0.029855158179998398,
- -0.010948149487376213,
- -0.014822795055806637,
- -0.009684971533715725,
- -0.06244092062115669,
- 0.02818921208381653,
- 0.012913987971842289,
- -0.1205429956316948,
- 0.06994853913784027,
- 0.024317163974046707,
- -0.041899219155311584,
- -0.0058346460573375225,
- 0.08215915411710739,
- -0.12642444670200348,
- 0.03134305775165558,
- 0.051474060863256454,
- -0.032392799854278564,
- 0.004522118717432022,
- 0.03686681389808655,
- -0.05738571286201477,
- -0.006313840392976999,
- 0.05248008295893669,
- -0.03557118400931358,
- -0.004224387928843498,
- -0.061530306935310364,
- 0.005198701284825802,
- -0.013168925419449806,
- -0.011122633703052998,
- 0.03320138528943062,
- -0.0039513809606432915,
- 0.024308137595653534,
- -0.018604904413223267,
- -0.02481277845799923,
- -0.05460921674966812,
- 0.10775013267993927,
- 0.07822440564632416,
- 0.030869770795106888,
- -0.007224253844469786,
- -0.041588298976421356,
- -0.0011901967227458954,
- -0.016136856749653816,
- -0.007727723103016615,
- 0.027184460312128067,
- -0.010877182707190514,
- 0.04733334109187126,
- -0.033690690994262695,
- -1.1989942372281348e-8,
- -0.008972561918199062,
- -0.06435779482126236,
- -0.08604509383440018,
- 0.011762039735913277,
- 0.03226190060377121,
- 0.13533897697925568,
- 0.022776661440730095,
- -0.00013709737686440349,
- -0.010517997667193413,
- 0.06323058158159256,
- -0.03885611519217491,
- 0.01666533760726452,
- -0.01077013649046421,
- 0.010512341745197773,
- 0.06599515676498413,
- 0.01332608237862587,
- -0.010952414944767952,
- -0.04963596537709236,
- 0.006599759217351675,
- -0.012347467243671417,
- 0.0232047438621521,
- 0.03908315300941467,
- 0.015334444120526314,
- -0.04709136113524437,
- 0.008917177096009254,
- 0.025421742349863052,
- 0.06328735500574112,
- 0.0517270602285862,
- 0.011639939621090889,
- 0.026992999017238617,
- 0.07013151794672012,
- 0.0036460254341363907,
- -0.06725234538316727,
- -0.008766009472310543,
- 0.07336351275444031,
- -0.020670322701334953,
- 0.03539010509848595,
- -0.07306890934705734,
- -0.0028923586942255497,
- 0.004978951998054981,
- 0.04761699214577675,
- 0.0192542877048254,
- 0.09467887133359909,
- 0.014928282238543034,
- -0.033622343093156815,
- 0.01747402548789978,
- 0.031337935477495193,
- -0.021814117208123207,
- 0.0030304796528071165,
- -0.03681303560733795,
- -0.02991294302046299,
- -0.07524815201759338,
- 0.006332013290375471,
- 0.03179087117314339,
- 0.06411672383546829,
- -0.02085379883646965,
- 0.02805388532578945,
- 0.04136257991194725,
- -0.04595280811190605,
- 0.06049196422100067,
- 0.07800683379173279,
- 0.07826198637485504,
- 0.0761006623506546,
- -0.023996762931346893
- ]
- },
- {
- "keyword": "image",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.024632897228002548,
- 0.10721025615930557,
- -0.0366617776453495,
- -0.006145673803985119,
- 0.020872075110673904,
- -0.03960581123828888,
- 0.1472000777721405,
- 0.03808446228504181,
- 0.0792321115732193,
- -0.018581075593829155,
- 0.05083327367901802,
- -0.032169025391340256,
- 0.04370901733636856,
- 0.027696114033460617,
- -0.07501222938299179,
- 0.006374027580022812,
- -0.039980318397283554,
- -0.028718499466776848,
- -0.13158553838729858,
- -0.023534955456852913,
- -0.06941448897123337,
- -0.0058770314790308475,
- -0.019270138815045357,
- -0.041183095425367355,
- -0.02060634270310402,
- 0.06578365713357925,
- -0.01943366229534149,
- 0.017974315211176872,
- 0.07103979587554932,
- -0.09150861203670502,
- -0.027079472318291664,
- -0.013159748166799545,
- 0.08487171679735184,
- 0.014343122020363808,
- -0.040049463510513306,
- 0.07259281724691391,
- 0.02914619632065296,
- 0.018309740349650383,
- 0.017265092581510544,
- -0.028312740847468376,
- 0.0024979293812066317,
- -0.04692992940545082,
- 0.009596055373549461,
- -0.025941910222172737,
- 0.010632352903485298,
- 0.05226816609501839,
- 0.0643821433186531,
- -0.0375063419342041,
- 0.020663002505898476,
- 0.01920785754919052,
- -0.06498076766729355,
- -0.031109342351555824,
- -0.06075217202305794,
- -0.03049604408442974,
- 0.04932167008519173,
- 0.03253072872757912,
- 0.030831998214125633,
- -0.00546265859156847,
- 0.028689099475741386,
- 0.012554404325783253,
- 0.11641212552785873,
- 0.05144599452614784,
- -0.07232679426670074,
- 0.0549672394990921,
- 0.05794505029916763,
- -0.01144074834883213,
- -0.02548886276781559,
- -0.08599088340997696,
- -0.042960405349731445,
- -0.14879779517650604,
- 0.038523051887750626,
- 0.002663013758137822,
- 0.02073388360440731,
- -0.04517107084393501,
- -0.0004550177254714072,
- -0.04937175288796425,
- 0.017695261165499687,
- 0.005906467791646719,
- 0.11506007611751556,
- -0.0024356974754482508,
- 0.0217465590685606,
- -0.04711072891950607,
- -0.014217290095984936,
- 0.018465185537934303,
- 0.064156673848629,
- 0.04052015766501427,
- -0.038747742772102356,
- -0.021005386486649513,
- -0.02444334141910076,
- 0.009088975377380848,
- -0.1027340516448021,
- -0.004893585108220577,
- -0.03000989370048046,
- 0.028399502858519554,
- -0.004231979604810476,
- -0.0027933958917856216,
- 0.030486319214105606,
- -0.08623600006103516,
- -0.017127931118011475,
- 0.23345500230789185,
- 0.021619731560349464,
- 0.010949203744530678,
- 0.0759914219379425,
- 0.031556446105241776,
- 0.042155783623456955,
- -0.013126139529049397,
- -0.01767902262508869,
- -0.00795061606913805,
- 0.02371908910572529,
- -0.0308381374925375,
- -0.06834257394075394,
- -0.05648410692811012,
- -0.07007801532745361,
- 0.005156144965440035,
- 0.03118227608501911,
- -0.10219693928956985,
- -0.01547915954142809,
- -0.02737233228981495,
- -0.018083753064274788,
- -0.08244981616735458,
- -0.0016300082206726074,
- -0.01976507157087326,
- -0.022872021421790123,
- 0.0055341171100735664,
- -0.03947410359978676,
- -0.1028454378247261,
- 0.004075724631547928,
- -2.8723773842418775e-33,
- 0.05678607523441315,
- -0.07563052326440811,
- 0.05392846465110779,
- -0.0021962595637887716,
- -0.02769767865538597,
- 0.04605376720428467,
- -0.02303694747388363,
- -0.07974392175674438,
- 0.009098481386899948,
- 0.060489773750305176,
- -0.05229400843381882,
- -0.00961441732943058,
- -0.05697433650493622,
- 0.06698999553918839,
- 0.11693067103624344,
- -0.03607584163546562,
- 0.007489506155252457,
- 0.07057924568653107,
- -0.05455534905195236,
- -0.026101958006620407,
- -0.06675563752651215,
- 0.061025265604257584,
- -0.001154961995780468,
- 0.054372403770685196,
- -0.052719973027706146,
- -0.01872934214770794,
- 0.04569389298558235,
- -0.06400389224290848,
- -0.002767676953226328,
- 0.007465820759534836,
- 0.007231923285871744,
- 0.038436006754636765,
- 0.031890589743852615,
- -0.020795317366719246,
- -0.00008631173113826662,
- -0.04959055408835411,
- 0.015257956460118294,
- -0.010640732944011688,
- 0.035337239503860474,
- 0.010018639266490936,
- 0.050819624215364456,
- -0.007443229202181101,
- 0.015485585667192936,
- 0.057539042085409164,
- -0.002492991043254733,
- 0.020533548668026924,
- 0.03915819898247719,
- 0.03835613653063774,
- -0.06049367040395737,
- 0.0066121784038841724,
- 0.05605504289269447,
- -0.030454769730567932,
- -0.03782933950424194,
- -0.02785326912999153,
- -0.033733416348695755,
- -0.0017196473199874163,
- -0.00424629170447588,
- 0.006099395919591188,
- -0.010208276100456715,
- -0.028371134772896767,
- 0.059180356562137604,
- 0.08477873355150223,
- -0.0482754223048687,
- 0.060962073504924774,
- 0.009923615492880344,
- -0.009294398128986359,
- 0.028805533424019814,
- -0.018189359456300735,
- 0.01322275958955288,
- 0.004591055680066347,
- -0.06506159901618958,
- 0.005468870513141155,
- 0.055665209889411926,
- -0.08220367133617401,
- -0.021627476438879967,
- -0.03419565409421921,
- 0.012520870193839073,
- 0.04163803532719612,
- -0.06940267980098724,
- 0.0350448414683342,
- -0.13172683119773865,
- -0.030319897457957268,
- 0.01728927530348301,
- -0.02189062349498272,
- -0.006962842773646116,
- 0.004920970648527145,
- -0.0034682846162468195,
- -0.07470685243606567,
- 0.04749889299273491,
- 0.004873272031545639,
- -0.0299748033285141,
- 0.049981702119112015,
- -0.007972920313477516,
- 0.04213478043675423,
- -0.01756627857685089,
- 3.942928742210536e-33,
- -0.0034910517279058695,
- 0.015559801831841469,
- 0.0066490788012743,
- 0.10233362019062042,
- 0.049253396689891815,
- -0.01793525740504265,
- 0.1281432807445526,
- 0.05947362631559372,
- -0.008110377937555313,
- 0.04853666201233864,
- -0.034545883536338806,
- 0.02252741903066635,
- -0.03129599243402481,
- -0.01815737783908844,
- -0.07139046490192413,
- -0.002537286374717951,
- 0.08156479150056839,
- -0.05182385444641113,
- -0.027532262727618217,
- 0.02679881826043129,
- -0.06992625445127487,
- 0.019201526418328285,
- 0.05431697145104408,
- -0.009596834890544415,
- -0.08969613909721375,
- 0.11050793528556824,
- 0.11233947426080704,
- -0.034827157855033875,
- -0.01698864996433258,
- 0.008028396405279636,
- 0.048261500895023346,
- -0.054311949759721756,
- 0.034589022397994995,
- -0.012664977461099625,
- 0.030445685610175133,
- 0.09426601231098175,
- 0.08284450322389603,
- -0.04371142387390137,
- -0.00886616576462984,
- -0.04286835715174675,
- 0.07150967419147491,
- -0.024235809221863747,
- -0.026809461414813995,
- 0.16850785911083221,
- -0.019094234332442284,
- -0.013033397495746613,
- 0.013284859247505665,
- 0.03740536421537399,
- 0.0866599902510643,
- 0.08324378728866577,
- -0.046802472323179245,
- -0.04513866454362869,
- -0.03636797145009041,
- -0.009870318695902824,
- -0.032767098397016525,
- -0.015281690284609795,
- -0.11841658502817154,
- 0.04187602177262306,
- 0.08012143522500992,
- 0.011049010790884495,
- -0.02186400443315506,
- -0.003170338924974203,
- -0.0585038885474205,
- 0.004163788165897131,
- -0.024390794336795807,
- 0.03990190103650093,
- -0.08475171029567719,
- -0.034029122442007065,
- -0.05246255174279213,
- 0.07949741929769516,
- 0.0969545990228653,
- -0.006078639533370733,
- 0.006558812223374844,
- 0.048917852342128754,
- -0.031019974499940872,
- -0.09726326167583466,
- -0.03091062791645527,
- 0.08463095128536224,
- -0.01274016872048378,
- -0.05810593068599701,
- 0.0023125752341002226,
- -0.09897689521312714,
- -0.08185235410928726,
- 0.06070702150464058,
- 0.036820244044065475,
- -0.0003716480277944356,
- -0.009963519871234894,
- -0.06391004472970963,
- 0.047029588371515274,
- -0.036504823714494705,
- -0.031164128333330154,
- 0.042255837470293045,
- -0.0157262422144413,
- 0.04908997565507889,
- 0.039483651518821716,
- -1.316903919246215e-8,
- 0.04001791030168533,
- -0.0574784129858017,
- 0.06667250394821167,
- -0.05451032146811485,
- 0.056969765573740005,
- 0.030519451946020126,
- 0.03618912026286125,
- -0.031715027987957,
- 0.008009679615497589,
- -0.04499301314353943,
- 0.03415139392018318,
- 0.029358431696891785,
- 0.004015837796032429,
- 0.032395437359809875,
- 0.021204836666584015,
- -0.009131348691880703,
- -0.031289342790842056,
- 0.03769976645708084,
- -0.001127379946410656,
- 0.024052806198596954,
- -0.09192259609699249,
- -0.04763965681195259,
- 0.004901634994894266,
- -0.0024325617123395205,
- -0.06241729110479355,
- -0.0352163128554821,
- -0.01429772935807705,
- 0.11062018573284149,
- -0.044737886637449265,
- -0.011867556720972061,
- 0.042742665857076645,
- 0.07068230956792831,
- 0.030819056555628777,
- -0.010293415747582912,
- 0.09227548539638519,
- 0.011660474352538586,
- -0.05067281424999237,
- -0.011381978169083595,
- -0.0022147921845316887,
- -0.011876591481268406,
- -0.01649363711476326,
- -0.06839389353990555,
- 0.0764426738023758,
- -0.03436768427491188,
- 0.02502571791410446,
- 0.045425813645124435,
- 0.05512038618326187,
- -0.019853198900818825,
- -0.02984347753226757,
- 0.043203119188547134,
- 0.015147434547543526,
- -0.020515549927949905,
- 0.027431102469563484,
- 0.08080282807350159,
- 0.011822541244328022,
- -0.07403475046157837,
- 0.0670778900384903,
- -0.020856041461229324,
- -0.03364632651209831,
- 0.12080056965351105,
- 0.10707685351371765,
- 0.039682693779468536,
- 0.0051483334973454475,
- 0.01092403382062912
- ]
- },
- {
- "keyword": "photo",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.10767365992069244,
- 0.15775683522224426,
- -0.0270522553473711,
- 0.022118089720606804,
- -0.0021183323115110397,
- -0.015240919776260853,
- 0.13640998303890228,
- 0.030879540368914604,
- 0.061838939785957336,
- -0.028634674847126007,
- 0.09205751866102219,
- -0.030421938747167587,
- 0.05130404606461525,
- 0.04755707457661629,
- -0.04673059284687042,
- 0.015127024613320827,
- -0.04528428241610527,
- 0.031899433583021164,
- -0.09288191050291061,
- -0.011349634267389774,
- -0.1034080758690834,
- 0.008035187609493732,
- 0.018586724996566772,
- 0.0008303199429064989,
- -0.029231106862425804,
- 0.025797806680202484,
- 0.004678134340792894,
- 0.003266967600211501,
- -0.0011156311957165599,
- -0.10178308188915253,
- -0.02412487380206585,
- -0.03474416583776474,
- 0.06588412076234818,
- 0.03443322330713272,
- -0.05309731885790825,
- 0.010083314962685108,
- 0.014468492940068245,
- 0.0020977577660232782,
- 0.014462540857493877,
- -0.022197861224412918,
- -0.020048007369041443,
- -0.0765572339296341,
- -0.02985296957194805,
- -0.024142857640981674,
- -0.002093634568154812,
- 0.004822422284632921,
- 0.033628448843955994,
- 0.008156990632414818,
- -0.009668471291661263,
- 0.001699225977063179,
- -0.09854664653539658,
- -0.02053852565586567,
- -0.04683016240596771,
- -0.05871060863137245,
- 0.06637106835842133,
- -0.01253489125519991,
- -0.020161915570497513,
- -0.06009485200047493,
- 0.0637679249048233,
- -0.01960710622370243,
- 0.12180138379335403,
- 0.034627627581357956,
- -0.07696795463562012,
- 0.00314564211294055,
- 0.036596983671188354,
- 0.04990047961473465,
- 0.008113851770758629,
- -0.08039949834346771,
- -0.01752076856791973,
- -0.1372307986021042,
- 0.042888253927230835,
- 0.0553293339908123,
- -0.019909054040908813,
- -0.08134747296571732,
- 0.014028691686689854,
- -0.05098113790154457,
- 0.03182772919535637,
- 0.004944691434502602,
- 0.04500836133956909,
- -0.0009634766611270607,
- 0.06318213790655136,
- -0.009314402006566525,
- -0.01603461615741253,
- 0.005975601263344288,
- 0.054940201342105865,
- -0.005569289438426495,
- -0.05608206242322922,
- 0.020240485668182373,
- -0.047907643020153046,
- -0.01860678941011429,
- -0.12152404338121414,
- 0.022532116621732712,
- -0.04728734865784645,
- -0.022933077067136765,
- -0.09668080508708954,
- -0.008120170794427395,
- -0.02659738063812256,
- -0.08941884338855743,
- -0.05215101316571236,
- 0.22159917652606964,
- 0.03068665973842144,
- 0.001640267320908606,
- 0.02305786684155464,
- 0.05264301225543022,
- 0.00770521117374301,
- 0.007418453693389893,
- -0.037842120975255966,
- -0.014257356524467468,
- 0.004063718020915985,
- 0.00498183211311698,
- -0.018110794946551323,
- -0.012314384803175926,
- -0.10232656449079514,
- 0.05357282608747482,
- 0.04018419608473778,
- -0.09332282096147537,
- -0.02933681011199951,
- -0.019539054483175278,
- 0.01068831980228424,
- -0.09797661006450653,
- 0.03439752385020256,
- -0.06689730286598206,
- -0.040613263845443726,
- -0.014683312736451626,
- -0.08411484956741333,
- -0.09049231559038162,
- 0.03198546916246414,
- -5.2378907879588004e-33,
- 0.014158237725496292,
- -0.038653723895549774,
- 0.07769490033388138,
- 0.05134904012084007,
- 0.057369016110897064,
- -0.005441483110189438,
- -0.05058416724205017,
- -0.028344258666038513,
- -0.01921868324279785,
- 0.058505818247795105,
- -0.00941513478755951,
- -0.07890057563781738,
- -0.0006205901154316962,
- 0.020930783823132515,
- 0.1063217744231224,
- -0.05194796621799469,
- 0.0025219563394784927,
- 0.019684437662363052,
- -0.05718894302845001,
- 0.020288923755288124,
- -0.03044714778661728,
- -0.042929165065288544,
- 0.036764997988939285,
- 0.044170018285512924,
- -0.021028373390436172,
- -0.023150939494371414,
- 0.08412323147058487,
- -0.06942061334848404,
- -0.004585559479892254,
- 0.008513606153428555,
- 0.034780245274305344,
- 0.030171271413564682,
- 0.07403720170259476,
- -0.009561807848513126,
- 0.004452063236385584,
- -0.04470238462090492,
- 0.05485071614384651,
- -0.03916101157665253,
- 0.029736561700701714,
- -0.04998322203755379,
- 0.04246962070465088,
- 0.05307677388191223,
- 0.009588310495018959,
- 0.04948749393224716,
- 0.0040606483817100525,
- 0.06342083215713501,
- 0.025055428966879845,
- 0.06523469090461731,
- -0.005298472475260496,
- 0.024193627759814262,
- 0.03144318237900734,
- -0.006068606860935688,
- -0.07912078499794006,
- -0.03173314407467842,
- -0.027369104325771332,
- -0.00801816862076521,
- -0.012309628538787365,
- -0.02796705812215805,
- -0.018445128574967384,
- 0.014179926365613937,
- 0.050196573138237,
- 0.06735680252313614,
- -0.03987589478492737,
- 0.03460929915308952,
- 0.03837303817272186,
- 0.019701821729540825,
- 0.01994403451681137,
- 0.0064513483084738255,
- 0.04572700709104538,
- -0.0018053309759125113,
- -0.0649648979306221,
- -0.013578991405665874,
- 0.06480222195386887,
- -0.0313221774995327,
- 0.018931234255433083,
- -0.0199612844735384,
- 0.0296226404607296,
- 0.0002018565428443253,
- -0.015173300169408321,
- 0.02509135566651821,
- -0.08991368114948273,
- -0.0484841912984848,
- 0.009730624966323376,
- -0.02754705585539341,
- -0.062108173966407776,
- 0.007481598295271397,
- -0.05155080929398537,
- -0.049869686365127563,
- 0.02252272516489029,
- 0.04586881026625633,
- -0.07410266995429993,
- 0.08226056396961212,
- 0.05259758606553078,
- 0.05648089572787285,
- 0.0027611844707280397,
- 3.696528963230861e-33,
- 0.031308554112911224,
- 0.054947543889284134,
- -0.035988278687000275,
- 0.004339543171226978,
- 0.042667195200920105,
- -0.007970978505909443,
- 0.08956901729106903,
- 0.05916475132107735,
- 0.0007550873560830951,
- 0.07686425745487213,
- -0.031342532485723495,
- 0.01607590727508068,
- 0.0011989388149231672,
- 0.0035884366370737553,
- -0.02617010287940502,
- 0.06751598417758942,
- 0.06844333559274673,
- -0.02797691710293293,
- -0.049371153116226196,
- 0.04296942800283432,
- -0.05763281136751175,
- -0.009374761953949928,
- 0.06996076554059982,
- -0.006388623733073473,
- -0.03937612101435661,
- 0.1030624583363533,
- 0.13940419256687164,
- -0.0037808662746101618,
- -0.017411688342690468,
- 0.021542735397815704,
- 0.017348451539874077,
- -0.017594238743185997,
- 0.04332955554127693,
- 0.004711579531431198,
- -0.022230716422200203,
- 0.10522366315126419,
- 0.050565361976623535,
- -0.0011191520607098937,
- 0.010804850608110428,
- 0.039608798921108246,
- 0.06275904178619385,
- 0.045559048652648926,
- 0.06313265115022659,
- 0.07454479485750198,
- -0.005805866792798042,
- -0.06818324327468872,
- -0.04441983252763748,
- 0.011891914531588554,
- 0.013036844320595264,
- 0.07569465041160583,
- -0.043062854558229446,
- -0.03749093413352966,
- -0.024410143494606018,
- 0.0368451289832592,
- -0.002644812688231468,
- -0.03651387616991997,
- -0.07249048352241516,
- 0.04649210721254349,
- 0.005574577953666449,
- 0.037806227803230286,
- -0.015009134076535702,
- 0.040260471403598785,
- -0.05979595705866814,
- 0.005219109822064638,
- -0.029133997857570648,
- -0.013223979622125626,
- -0.07403584569692612,
- 0.007933749817311764,
- -0.07366275042295456,
- 0.06513343751430511,
- 0.09908325970172882,
- 0.0018702398519963026,
- 0.007149305194616318,
- 0.03820836916565895,
- -0.017065798863768578,
- -0.05676327273249626,
- -0.03271486610174179,
- 0.11310086399316788,
- 0.03274116665124893,
- -0.02215128391981125,
- -0.04396273195743561,
- -0.09812208265066147,
- -0.08430099487304688,
- 0.05814259126782417,
- -0.039923589676618576,
- -0.04909421131014824,
- 0.0014913836494088173,
- -0.06892387568950653,
- 0.000249391800025478,
- -0.05603209137916565,
- -0.008591733872890472,
- 0.06455183774232864,
- -0.03486281633377075,
- -0.02429656684398651,
- 0.04054080694913864,
- -1.4550667337687173e-8,
- 0.0390804298222065,
- -0.09509613364934921,
- 0.020868610590696335,
- -0.05429484322667122,
- 0.13054408133029938,
- 0.08082970976829529,
- 0.06784263998270035,
- 0.009751157835125923,
- 0.006790473125874996,
- -0.04473135992884636,
- 0.053780559450387955,
- 0.05945846810936928,
- 0.007722016423940659,
- -0.010352544486522675,
- 0.030117064714431763,
- -0.04464199021458626,
- -0.08382727950811386,
- 0.04153900966048241,
- -0.0080910325050354,
- 0.019800247624516487,
- -0.06384348124265671,
- -0.08176785707473755,
- 0.04459177702665329,
- 0.02417282946407795,
- -0.06369102746248245,
- -0.041632767766714096,
- -0.016471579670906067,
- 0.08434880524873734,
- -0.012231674045324326,
- -0.007281656842678785,
- 0.0377296544611454,
- 0.09651358425617218,
- 0.019054116681218147,
- -0.0574399009346962,
- 0.06008460745215416,
- -0.04282161965966225,
- -0.005653378553688526,
- -0.024186355993151665,
- -0.026679541915655136,
- -0.01586788333952427,
- -0.0848548412322998,
- 0.022762343287467957,
- 0.08351990580558777,
- 0.0002488305326551199,
- 0.019998114556074142,
- 0.04896426573395729,
- 0.08284793794155121,
- -0.02725621871650219,
- 0.0024466963950544596,
- -0.000893184682354331,
- -0.026455193758010864,
- -0.011635424569249153,
- 0.06583894789218903,
- 0.09333539754152298,
- -0.05123782530426979,
- -0.06366081535816193,
- 0.007474359590560198,
- -0.06959256529808044,
- 0.004804256837815046,
- 0.0432000495493412,
- 0.11619766056537628,
- -0.009606252424418926,
- -0.058432240039110184,
- 0.0812053233385086
- ]
- },
- {
- "keyword": "picture",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.1020527258515358,
- 0.07690660655498505,
- -0.04270455986261368,
- 0.010066638700664043,
- 0.011919369921088219,
- -0.07805629819631577,
- 0.09980407357215881,
- 0.04639312997460365,
- 0.08803340792655945,
- -0.012287553399801254,
- 0.057360514998435974,
- -0.061999619007110596,
- 0.04635864123702049,
- 0.03812519833445549,
- -0.11326589435338974,
- -0.024003034457564354,
- -0.04372013732790947,
- -0.03895827382802963,
- -0.12041406333446503,
- -0.030838115140795708,
- -0.08717191219329834,
- 0.0696607455611229,
- 0.04761727526783943,
- 0.009639525786042213,
- -0.033416081219911575,
- 0.026811016723513603,
- 0.009466765448451042,
- 0.01961664669215679,
- 0.005278872791677713,
- -0.09599585831165314,
- -0.08964555710554123,
- 0.0032316409051418304,
- 0.09592872858047485,
- 0.06738871335983276,
- -0.027452586218714714,
- 0.05691133812069893,
- -0.02799050882458687,
- -0.017329223453998566,
- 0.013617302291095257,
- -0.008315169252455235,
- 0.057175181806087494,
- -0.0682874396443367,
- -0.015564336441457272,
- 0.008960843086242676,
- -0.004515768960118294,
- -0.012619854882359505,
- 0.015579089522361755,
- 0.0005882885889150202,
- -0.01918880268931389,
- 0.010682898573577404,
- -0.05777488648891449,
- -0.03264548256993294,
- 0.015140173956751823,
- -0.03974101319909096,
- 0.03423752635717392,
- -0.016593053936958313,
- -0.0023251217789947987,
- -0.047481730580329895,
- 0.03642071411013603,
- -0.03566713631153107,
- 0.10331779718399048,
- 0.05732446163892746,
- -0.05820425972342491,
- 0.037246789783239365,
- 0.04695615544915199,
- 0.008141928352415562,
- 0.039730094373226166,
- -0.053309086710214615,
- -0.008363393135368824,
- -0.09379979223012924,
- 0.054513778537511826,
- -0.014028497971594334,
- -0.05153774842619896,
- -0.14057928323745728,
- 0.029024332761764526,
- -0.02328181453049183,
- 0.043160080909729004,
- 0.02836223505437374,
- 0.02196001075208187,
- 0.01134461723268032,
- 0.021861393004655838,
- -0.03314245864748955,
- -0.017244089394807816,
- 0.019707757979631424,
- 0.0315883494913578,
- -0.0027955989353358746,
- -0.01714986003935337,
- 0.017477748915553093,
- -0.08587668836116791,
- 0.017253920435905457,
- -0.08907943218946457,
- -0.01140599511563778,
- 0.009991545230150223,
- -0.000569268420804292,
- -0.08137461543083191,
- -0.008219151757657528,
- 0.0062158978544175625,
- -0.06544040143489838,
- -0.0466899648308754,
- 0.188521608710289,
- 0.01333214808255434,
- -0.018395215272903442,
- 0.060929667204618454,
- 0.023575779050588608,
- -0.005150832701474428,
- 0.010617475025355816,
- -0.059885282069444656,
- 0.014700008556246758,
- -0.009626716375350952,
- -0.02423296682536602,
- -0.0917331874370575,
- -0.05520009621977806,
- -0.0050597889348864555,
- 0.033359333872795105,
- 0.04791868478059769,
- -0.03164594992995262,
- -0.04450281336903572,
- -0.037173133343458176,
- 0.025645656511187553,
- -0.08595991879701614,
- 0.07241925597190857,
- -0.08094114065170288,
- -0.012170065194368362,
- 0.04956013709306717,
- -0.036290671676397324,
- -0.11939511448144913,
- -0.030116437003016472,
- -2.4017412212543042e-33,
- 0.046541400253772736,
- -0.04221605509519577,
- 0.024592075496912003,
- 0.03658109903335571,
- 0.04731281101703644,
- 0.019979331642389297,
- -0.0374688021838665,
- 0.019133053719997406,
- 0.013440798036754131,
- 0.10462123900651932,
- 0.026123909279704094,
- -0.04818480461835861,
- 0.004281078465282917,
- 0.030333386734128,
- 0.11352598667144775,
- -0.02395429089665413,
- -0.02780189737677574,
- 0.00805174745619297,
- -0.012123006395995617,
- 0.026560401543974876,
- -0.04987355321645737,
- -0.026293901726603508,
- 0.021329844370484352,
- 0.032883621752262115,
- -0.016423160210251808,
- -0.016081299632787704,
- 0.07595513015985489,
- -0.09269721060991287,
- 0.006564544513821602,
- -0.014724656008183956,
- -0.01142545323818922,
- 0.048238422721624374,
- 0.05889798328280449,
- 0.006854276172816753,
- -0.0002491234627086669,
- -0.1404656618833542,
- 0.03268672898411751,
- -0.012381265871226788,
- -0.016274068504571915,
- -0.0008733599679544568,
- 0.03662098944187164,
- 0.06350388377904892,
- -0.04711242392659187,
- 0.0850309208035469,
- 0.03054557740688324,
- 0.04312551021575928,
- 0.029297063127160072,
- 0.04862900823354721,
- -0.07663146406412125,
- 0.007067941594868898,
- 0.0429348424077034,
- -0.00610157148912549,
- -0.11905231326818466,
- -0.046646200120449066,
- -0.0788847953081131,
- -0.007174844853579998,
- 0.012141282670199871,
- -0.03016887605190277,
- -0.040430277585983276,
- 0.010293162427842617,
- 0.08516932278871536,
- 0.11673819273710251,
- -0.01861824467778206,
- 0.05843237414956093,
- 0.012251371517777443,
- 0.032809823751449585,
- -0.004986642859876156,
- 0.024679651483893394,
- 0.055953461676836014,
- -0.0016479322221130133,
- -0.04506085440516472,
- 0.045107364654541016,
- 0.025911876931786537,
- -0.06997327506542206,
- -0.030289115384221077,
- -0.016624702140688896,
- 0.012333745136857033,
- 0.05996404588222504,
- -0.007160753943026066,
- -0.024401837959885597,
- -0.03660588338971138,
- -0.07107434421777725,
- 0.02477250061929226,
- -0.033034972846508026,
- 0.004463433753699064,
- -0.02461251989006996,
- -0.023269902914762497,
- -0.09016342461109161,
- 0.057298772037029266,
- -0.01824711635708809,
- -0.03866519033908844,
- 0.05196382850408554,
- 0.09210017323493958,
- 0.04396269842982292,
- -0.00269981287419796,
- 1.804845210044909e-33,
- 0.004928820766508579,
- 0.06978767365217209,
- -0.032624583691358566,
- -0.0010049546835944057,
- 0.0504998154938221,
- -0.008963894098997116,
- 0.11544398218393326,
- 0.05772959068417549,
- 0.03691897168755531,
- 0.07488428801298141,
- -0.03473640978336334,
- 0.0029715050477534533,
- -0.016476839780807495,
- -0.015118230134248734,
- 0.020382296293973923,
- 0.019839026033878326,
- 0.07224732637405396,
- -0.0628872886300087,
- -0.037832170724868774,
- 0.0350976400077343,
- -0.0731472447514534,
- 0.0027968406211584806,
- 0.06018093228340149,
- 0.007322513498365879,
- -0.017425712198019028,
- 0.10269513726234436,
- 0.09926927089691162,
- -0.02142886444926262,
- -0.040619801729917526,
- 0.039445750415325165,
- 0.09002449363470078,
- -0.0015326051507145166,
- -0.0014549981569871306,
- 0.002263807924464345,
- -0.023425105959177017,
- 0.08856110274791718,
- 0.066631980240345,
- -0.0405694916844368,
- 0.01727309823036194,
- 0.03795332834124565,
- 0.07660630345344543,
- 0.007470359094440937,
- 0.06187065318226814,
- 0.12813398241996765,
- 0.0001338170695817098,
- -0.07393664121627808,
- -0.04263284057378769,
- 0.035323768854141235,
- 0.06338120251893997,
- 0.08771198242902756,
- -0.050470441579818726,
- -0.05067042261362076,
- -0.03911881521344185,
- 0.027407696470618248,
- -0.04884222894906998,
- -0.052772555500268936,
- -0.10326484590768814,
- 0.08190947026014328,
- -0.011114437133073807,
- 0.035612836480140686,
- -0.031644318252801895,
- 0.023243185132741928,
- -0.012505934573709965,
- 0.006107883993536234,
- 0.0026611003559082747,
- 0.012331686913967133,
- -0.09706822782754898,
- 0.00399051932618022,
- -0.03048904798924923,
- 0.01889444887638092,
- 0.02373391203582287,
- 0.013371606357395649,
- -0.016193076968193054,
- 0.05529318004846573,
- 0.025456443428993225,
- -0.04884355515241623,
- 0.0003977985179517418,
- 0.08192719519138336,
- 0.0068059153854846954,
- 0.003739973297342658,
- -0.028543956577777863,
- -0.06870879977941513,
- -0.01254725269973278,
- 0.022880908101797104,
- -0.07690431922674179,
- -0.0567297637462616,
- -0.01979766972362995,
- -0.0717373862862587,
- 0.011694002896547318,
- -0.037598177790641785,
- -0.03410156071186066,
- 0.05237453058362007,
- 0.0016791903181001544,
- 0.003992672078311443,
- 0.0343167819082737,
- -1.3944966070766895e-8,
- 0.004699453711509705,
- -0.0781489908695221,
- 0.01859952323138714,
- -0.042289406061172485,
- 0.09917722642421722,
- 0.06677164882421494,
- -0.02361801639199257,
- -0.029165534302592278,
- 0.026309575885534286,
- -0.002542407251894474,
- 0.05080896615982056,
- 0.08982027322053909,
- -0.016827980056405067,
- -0.0032525095157325268,
- 0.07669438421726227,
- -0.008861950598657131,
- -0.047727618366479874,
- 0.06935358047485352,
- -0.0017254467820748687,
- 0.012758215889334679,
- -0.05533784255385399,
- -0.08951208740472794,
- 0.02294253744184971,
- -0.015959156677126884,
- -0.051225122064352036,
- -0.05069649592041969,
- -0.01023512240499258,
- 0.13932886719703674,
- 0.003010299988090992,
- -0.06588616967201233,
- 0.032376229763031006,
- 0.057599738240242004,
- 0.03314027562737465,
- -0.02857304736971855,
- 0.038094304502010345,
- -0.0201108418405056,
- -0.015545926988124847,
- 0.04307141900062561,
- 0.06522749364376068,
- -0.014162883162498474,
- -0.08932916074991226,
- -0.034565068781375885,
- 0.09862614423036575,
- 0.010859565809369087,
- 0.03465887904167175,
- 0.051216937601566315,
- 0.06422293186187744,
- -0.05802474915981293,
- -0.0437997430562973,
- 0.019583091139793396,
- 0.016299767419695854,
- -0.026146268472075462,
- 0.015280463732779026,
- 0.07711023092269897,
- -0.018985096365213394,
- -0.09847988188266754,
- 0.029262635856866837,
- -0.041718367487192154,
- 0.018575886264443398,
- 0.033987537026405334,
- 0.08697836846113205,
- 0.0271002184599638,
- -0.016381433233618736,
- 0.10772442072629929
- ]
- },
- {
- "keyword": "photograph",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.05557192862033844,
- 0.18293265998363495,
- 0.005791541188955307,
- 0.01647217385470867,
- 0.03945092111825943,
- -0.019152916967868805,
- 0.1254478245973587,
- 0.039848700165748596,
- 0.04354514554142952,
- -0.021023675799369812,
- 0.0750017762184143,
- -0.04270453006029129,
- 0.07782068848609924,
- 0.023757705464959145,
- -0.047244925051927567,
- -0.0444740355014801,
- -0.03278516232967377,
- 0.001938984147273004,
- -0.11766713857650757,
- 0.0012622762005776167,
- -0.15319061279296875,
- -0.001370753045193851,
- 0.05816845968365669,
- -0.002949373796582222,
- -0.007039494812488556,
- 0.03679899871349335,
- -0.00020151911303400993,
- -0.013908696360886097,
- 0.0342387892305851,
- -0.1094789057970047,
- -0.009977924637496471,
- 0.02731097862124443,
- 0.06183351203799248,
- 0.015663668513298035,
- -0.04149749130010605,
- 0.05168633162975311,
- 0.011997777968645096,
- 0.00283811311237514,
- 0.04257531464099884,
- -0.006805076263844967,
- -0.021941818296909332,
- -0.043757323175668716,
- -0.024302689358592033,
- -0.007383821997791529,
- 0.019869565963745117,
- 0.007991176098585129,
- 0.048291027545928955,
- 0.006437935400754213,
- 0.034550100564956665,
- 0.006517437752336264,
- -0.10733121633529663,
- -0.06166631728410721,
- -0.03839802369475365,
- -0.03564039245247841,
- 0.04329846799373627,
- 0.022952063009142876,
- -0.037534888833761215,
- -0.029983891174197197,
- 0.04121268913149834,
- -0.02505549043416977,
- 0.055239733308553696,
- 0.030898191034793854,
- -0.08141467720270157,
- 0.04262769594788551,
- 0.05087955296039581,
- 0.05269211530685425,
- -0.015173799358308315,
- -0.0990312397480011,
- -0.041835423558950424,
- -0.050611548125743866,
- 0.004887932445853949,
- 0.06346400827169418,
- -0.023123929277062416,
- -0.05304640904068947,
- -0.017826717346906662,
- -0.05124174430966377,
- 0.008883815258741379,
- 0.013455621898174286,
- 0.0771384909749031,
- 0.0004668664769269526,
- 0.06117992103099823,
- -0.04126456379890442,
- -0.025285420939326286,
- 0.022596580907702446,
- 0.045658618211746216,
- -0.007968753576278687,
- -0.014165164902806282,
- -0.005984081421047449,
- -0.07087352871894836,
- -0.027738019824028015,
- -0.09013788402080536,
- -0.08039185404777527,
- -0.046996865421533585,
- -0.03574430197477341,
- -0.04536712169647217,
- -0.0036746826954185963,
- -0.005180810112506151,
- -0.04014734923839569,
- -0.044474393129348755,
- 0.23279280960559845,
- 0.0086749866604805,
- 0.005257048178464174,
- 0.002762992400676012,
- 0.007683205418288708,
- 0.03622211888432503,
- 0.02240931987762451,
- -0.034611985087394714,
- -0.04586181417107582,
- 0.0064902291633188725,
- -0.04283270984888077,
- -0.03356459364295006,
- -0.03414455056190491,
- -0.04935310781002045,
- 0.04574751853942871,
- 0.07027535140514374,
- -0.15400734543800354,
- -0.025273919105529785,
- -0.02197391353547573,
- 0.0030201002955436707,
- -0.12222714722156525,
- 0.021575648337602615,
- -0.05095291882753372,
- -0.0673934742808342,
- 0.020635729655623436,
- -0.04453852400183678,
- -0.1000262126326561,
- 0.05675895884633064,
- -4.806301424898674e-33,
- -0.011169466190040112,
- -0.018621524795889854,
- 0.08306728303432465,
- 0.03336062282323837,
- 0.05330107733607292,
- 0.030962461605668068,
- -0.0391758494079113,
- -0.02193680964410305,
- -0.026937518268823624,
- 0.03296209126710892,
- 0.021867988631129265,
- -0.045012813061475754,
- -0.0037244148552417755,
- 0.03880930691957474,
- 0.1059320792555809,
- 0.049864135682582855,
- 0.008144638501107693,
- 0.03560055419802666,
- -0.04736354947090149,
- 0.021854547783732414,
- -0.039343204349279404,
- -0.015410338528454304,
- 0.01857927441596985,
- 0.09855528920888901,
- -0.038560084998607635,
- -0.040852807462215424,
- 0.07232463359832764,
- -0.07847803086042404,
- 0.012337033636868,
- 0.01642305590212345,
- 0.009582743979990482,
- 0.01467305701225996,
- -0.0027792088221758604,
- -0.023923538625240326,
- 0.024942295625805855,
- -0.009457247331738472,
- 0.07164579629898071,
- -0.05826136842370033,
- 0.034450337290763855,
- 0.005141970235854387,
- 0.03389110416173935,
- 0.09604322910308838,
- -0.0277326051145792,
- 0.03289780393242836,
- 0.02647019922733307,
- 0.05515751242637634,
- -0.018556460738182068,
- 0.09434686601161957,
- -0.09711941331624985,
- 0.0386376716196537,
- 0.02911895141005516,
- -0.05089900642633438,
- -0.041278351098299026,
- -0.03735765814781189,
- -0.04231745004653931,
- -0.006933074444532394,
- -0.02618829905986786,
- -0.045057475566864014,
- 0.0036049403715878725,
- -0.014188840985298157,
- 0.0948667824268341,
- 0.05742578208446503,
- -0.05076322332024574,
- 0.039042096585035324,
- 0.03804987296462059,
- 0.013235071673989296,
- 0.03249916434288025,
- -0.004139510914683342,
- 0.00880381464958191,
- 0.03296170383691788,
- -0.086729995906353,
- 0.006528755184262991,
- 0.014879920519888401,
- -0.05928334221243858,
- 0.006077510304749012,
- 0.019661204889416695,
- 0.01412782073020935,
- 0.009313678368926048,
- -0.014124259352684021,
- 0.0815989077091217,
- -0.10818281024694443,
- 0.04304631054401398,
- 0.03220982849597931,
- -0.015621376223862171,
- -0.009448562748730183,
- -0.00432417169213295,
- -0.004549503326416016,
- -0.05001567676663399,
- -0.008180615492165089,
- 0.03747820481657982,
- -0.05571034923195839,
- 0.05889873206615448,
- 0.039737120270729065,
- 0.028036069124937057,
- -0.036644984036684036,
- 4.905176295508168e-33,
- 0.01073788944631815,
- 0.04606658220291138,
- -0.03683662414550781,
- 0.0507715567946434,
- 0.016882045194506645,
- -0.024693889543414116,
- 0.09624698758125305,
- 0.0186009518802166,
- 0.014998793601989746,
- 0.06086542829871178,
- -0.04776649549603462,
- -0.027709484100341797,
- -0.008850120939314365,
- -0.016174471005797386,
- -0.013286526314914227,
- 0.010079367086291313,
- 0.06436996906995773,
- -0.047574665397405624,
- -0.10769329965114594,
- 0.0032086684368550777,
- -0.05162389203906059,
- 0.012222684919834137,
- 0.059776514768600464,
- -0.004474546294659376,
- -0.05453255772590637,
- 0.1328101009130478,
- 0.09655304998159409,
- -0.015698213130235672,
- -0.005943970289081335,
- -0.024535689502954483,
- 0.05729265883564949,
- -0.05342576280236244,
- 0.03662170097231865,
- -0.01915479451417923,
- 0.004398792050778866,
- 0.12372204661369324,
- 0.061852943152189255,
- -0.006922930013388395,
- 0.009512233547866344,
- 0.08923321217298508,
- 0.04626614227890968,
- -0.0062641603872179985,
- 0.008139132522046566,
- 0.14268560707569122,
- 0.02337811142206192,
- -0.0747251957654953,
- 0.01053664367645979,
- -0.0005745901144109666,
- 0.04026472195982933,
- 0.08522611856460571,
- -0.037057094275951385,
- 0.0005725034861825407,
- -0.025188470259308815,
- 0.04308949038386345,
- -0.012902222573757172,
- -0.03463486582040787,
- -0.05598275735974312,
- 0.03544124588370323,
- 0.02506689354777336,
- 0.017867611721158028,
- 0.0021403043065220118,
- 0.009120927192270756,
- -0.06692109256982803,
- 0.020483005791902542,
- -0.05748629570007324,
- 0.00860931258648634,
- -0.0646791085600853,
- -0.017093844711780548,
- -0.012163767591118813,
- 0.05096539109945297,
- 0.022523175925016403,
- 0.002426655264571309,
- 0.02342604100704193,
- 0.050409551709890366,
- -0.032599445432424545,
- -0.07277486473321915,
- -0.03905025124549866,
- 0.08228589594364166,
- -0.007416042499244213,
- -0.0533662810921669,
- -0.02337929792702198,
- -0.10475602000951767,
- -0.052545882761478424,
- 0.07866447418928146,
- 0.004064676817506552,
- -0.0570068359375,
- 0.06308503448963165,
- -0.042205728590488434,
- -0.004899380728602409,
- -0.07544448226690292,
- -0.013519391417503357,
- 0.012714197859168053,
- 0.001679261913523078,
- -0.03052534908056259,
- 0.0315358005464077,
- -1.3059378467517035e-8,
- -0.03164626657962799,
- -0.06503806263208389,
- 0.037891753017902374,
- -0.03438308462500572,
- 0.08007905632257462,
- -0.019348692148923874,
- 0.0430278405547142,
- 0.004673624876886606,
- -0.0057308366522192955,
- -0.0016766777262091637,
- 0.04651520773768425,
- -0.003475298173725605,
- 0.014297435991466045,
- 0.008753836154937744,
- 0.04528869315981865,
- -0.0152675099670887,
- -0.036423299461603165,
- 0.05718126893043518,
- -0.033200208097696304,
- 0.0027284969110041857,
- -0.0892939418554306,
- -0.07334088534116745,
- 0.0399414598941803,
- 0.019998284056782722,
- -0.04574285075068474,
- -0.07135103642940521,
- -0.03986106440424919,
- 0.05746077001094818,
- 0.037385325878858566,
- 0.0014389281859621406,
- 0.007957742549479008,
- 0.10744286328554153,
- 0.022597039118409157,
- -0.01816854067146778,
- 0.03606577217578888,
- -0.06092764437198639,
- -0.007153913378715515,
- -0.005301933269947767,
- 0.020012404769659042,
- 0.025812268257141113,
- -0.042006321251392365,
- 0.027928335592150688,
- 0.05724657326936722,
- 0.017196884378790855,
- -0.019580284133553505,
- 0.05306926369667053,
- 0.12869860231876373,
- 0.02658771350979805,
- -0.02430054359138012,
- 0.022662894800305367,
- -0.06307502090930939,
- 0.014477559365332127,
- 0.06752093881368637,
- 0.13832080364227295,
- -0.02455328032374382,
- -0.04815356433391571,
- 0.041797757148742676,
- -0.06595595180988312,
- -0.011848906986415386,
- 0.05795229971408844,
- 0.15218572318553925,
- 0.0096258744597435,
- -0.06339505314826965,
- 0.03216367959976196
- ]
- },
- {
- "keyword": "illustration",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.012558450922369957,
- 0.09402380883693695,
- 0.03025033511221409,
- 0.03209611400961876,
- 0.03886234760284424,
- -0.008469197899103165,
- 0.036245644092559814,
- -0.0027264331001788378,
- 0.051044244319200516,
- -0.026664696633815765,
- 0.006612837780267,
- 0.01589754782617092,
- 0.01865307055413723,
- 0.06470651924610138,
- -0.0475965179502964,
- -0.004395396914333105,
- 0.022625237703323364,
- -0.017263568937778473,
- -0.04807991907000542,
- 0.004697955213487148,
- -0.04507245123386383,
- 0.0014252113178372383,
- 0.012299727648496628,
- 0.007842197082936764,
- 0.020292410627007484,
- 0.03838123381137848,
- 0.024524688720703125,
- 0.053670160472393036,
- 0.06914595514535904,
- -0.08622715622186661,
- -0.03337959572672844,
- 0.00511716865003109,
- 0.0009429799392819405,
- 0.002785690128803253,
- 0.020149726420640945,
- 0.009698600508272648,
- 0.0009771918412297964,
- 0.09605052322149277,
- 0.03483276441693306,
- 0.01228293776512146,
- -0.03467463329434395,
- -0.001296519418247044,
- -0.042318135499954224,
- 0.004258072003722191,
- 0.027116945013403893,
- -0.08911503106355667,
- -0.0003588952822610736,
- 0.007132396567612886,
- 0.07694290578365326,
- 0.006487094331532717,
- -0.06127142906188965,
- -0.056870054453611374,
- -0.07858438044786453,
- -0.08871757239103317,
- 0.034969352185726166,
- 0.02084624022245407,
- -0.01683257333934307,
- -0.016116201877593994,
- 0.04332505166530609,
- -0.04054548591375351,
- 0.05097600445151329,
- 0.045400239527225494,
- -0.045325618237257004,
- 0.03599860891699791,
- -0.010973484255373478,
- -0.05446469411253929,
- 0.027154311537742615,
- 0.037691231817007065,
- -0.10247356444597244,
- -0.014498512260615826,
- 0.02427505888044834,
- 0.00518832029774785,
- -0.0944133847951889,
- -0.06606730818748474,
- 0.006220758426934481,
- -0.04970652982592583,
- 0.022063879296183586,
- 0.04357415437698364,
- 0.027850162237882614,
- -0.09466339647769928,
- 0.0008005957351997495,
- 0.06762324273586273,
- -0.018290463835000992,
- 0.005844047758728266,
- -0.02995775081217289,
- 0.05094381049275398,
- -0.0032971997279673815,
- -0.046149857342243195,
- -0.009221257641911507,
- 0.0004561837704386562,
- -0.01865583471953869,
- 0.010182209312915802,
- -0.03381594642996788,
- 0.02060130052268505,
- -0.010616416111588478,
- -0.006886302959173918,
- -0.024314645677804947,
- -0.06440560519695282,
- -0.08297879248857498,
- 0.2609254717826843,
- 0.02100585587322712,
- 0.05563777685165405,
- 0.0717211365699768,
- 0.033544473350048065,
- 0.027231257408857346,
- -0.05530286952853203,
- -0.01705641858279705,
- -0.014747271314263344,
- 0.009370356798171997,
- -0.009986474178731441,
- 0.005824420601129532,
- -0.018598102033138275,
- -0.09401469677686691,
- 0.09499873220920563,
- 0.04241553321480751,
- -0.06911017745733261,
- 0.022208938375115395,
- -0.027016380801796913,
- -0.01052231527864933,
- -0.01693236641585827,
- 0.005226901266723871,
- 0.0047307247295975685,
- -0.022452784702181816,
- 0.047922056168317795,
- -0.0043608276173472404,
- -0.045297771692276,
- -0.08950073271989822,
- -5.324261337411422e-33,
- 0.007876784540712833,
- -0.009003712795674801,
- 0.05321769043803215,
- -0.01515397522598505,
- 0.10232333838939667,
- -0.038078296929597855,
- -0.028461989015340805,
- -0.021581389009952545,
- 0.07616845518350601,
- 0.12257691472768784,
- -0.03933439403772354,
- -0.024052083492279053,
- 0.02071782946586609,
- 0.09845492988824844,
- 0.0150161013007164,
- 0.02975352108478546,
- -0.051670268177986145,
- 0.10044234991073608,
- -0.035061657428741455,
- 0.048195671290159225,
- -0.08463933318853378,
- -0.02343324013054371,
- -0.010879903100430965,
- -0.023686964064836502,
- -0.04229091480374336,
- 0.02539745159447193,
- 0.00777578866109252,
- -0.039692219346761703,
- -0.010759355500340462,
- -0.0030134900007396936,
- 0.04617530107498169,
- 0.10839898884296417,
- 0.04743869975209236,
- -0.07392749935388565,
- -0.016986269503831863,
- -0.05350242182612419,
- 0.010932780802249908,
- -0.0984669104218483,
- 0.02766302414238453,
- 0.04277754947543144,
- -0.011246718466281891,
- -0.022597169503569603,
- -0.030156170949339867,
- 0.01357306819409132,
- 0.05077716335654259,
- 0.12422046810388565,
- 0.009367127902805805,
- 0.01708056963980198,
- -0.053222015500068665,
- 0.04346829280257225,
- 0.046512387692928314,
- 0.011055384762585163,
- -0.058157362043857574,
- -0.024595513939857483,
- 0.0035229320637881756,
- -0.01878099888563156,
- -0.07938775420188904,
- -0.07380986958742142,
- 0.002457371214404702,
- -0.010461016558110714,
- 0.020936084911227226,
- 0.07672140002250671,
- -0.05213169753551483,
- 0.10606098920106888,
- -0.016238553449511528,
- 0.011168481782078743,
- -0.009278048761188984,
- -0.04708429425954819,
- 0.05793701484799385,
- 0.05812827870249748,
- -0.09292842447757721,
- 0.041244033724069595,
- 0.10361675173044205,
- -0.06571414321660995,
- -0.02056637592613697,
- -0.0453900471329689,
- -0.016265301033854485,
- 0.030829066410660744,
- -0.004000355023890734,
- 0.050758231431245804,
- -0.0275905579328537,
- -0.06431958079338074,
- 0.03987419232726097,
- -0.030271539464592934,
- -0.029071634635329247,
- 0.022224312648177147,
- 0.06094938516616821,
- -0.09615740180015564,
- -0.024653621017932892,
- -0.0023468711879104376,
- -0.07484260946512222,
- 0.033841244876384735,
- 0.04653576761484146,
- -0.002847331576049328,
- -0.04356047138571739,
- 5.7462582992268536e-33,
- -0.05228529870510101,
- 0.01562923938035965,
- -0.031238608062267303,
- -0.010600981302559376,
- -0.01789151132106781,
- 0.0381680428981781,
- 0.054202694445848465,
- 0.03034720942378044,
- 0.030256083235144615,
- -0.001900742994621396,
- -0.05133449286222458,
- -0.02197161316871643,
- 0.0310553889721632,
- 0.022690799087285995,
- 0.04435514658689499,
- -0.0897076204419136,
- 0.0882960855960846,
- -0.10133272409439087,
- -0.0669889971613884,
- -0.05903109908103943,
- 0.0048606679774820805,
- -0.032059744000434875,
- 0.03970756381750107,
- -0.06201496720314026,
- -0.05788983032107353,
- 0.15275518596172333,
- 0.045268986374139786,
- -0.019460994750261307,
- -0.013774195685982704,
- 0.018174948170781136,
- 0.009422877803444862,
- -0.0950595885515213,
- 0.07097136229276657,
- -0.013667497783899307,
- -0.044907327741384506,
- 0.061866212636232376,
- 0.005320191383361816,
- -0.014979293569922447,
- -0.01572292298078537,
- -0.009448014199733734,
- 0.04151833429932594,
- -0.027727151289582253,
- 0.060471128672361374,
- 0.11492884904146194,
- -0.04085063189268112,
- -0.004612913355231285,
- 0.060652270913124084,
- -0.006911034695804119,
- 0.09583058208227158,
- 0.019934074953198433,
- -0.09633953124284744,
- 0.023572027683258057,
- -0.03404141962528229,
- -0.0022448382806032896,
- -0.0326509065926075,
- -0.08576256036758423,
- 0.014398193918168545,
- 0.02033666893839836,
- 0.061076752841472626,
- -0.0021612481214106083,
- -0.023920699954032898,
- 0.007530958857387304,
- -0.07910066097974777,
- -0.014741617254912853,
- -0.0244340430945158,
- -0.059417665004730225,
- -0.04239613190293312,
- -0.036662757396698,
- 0.006923093926161528,
- 0.013009598478674889,
- 0.052571412175893784,
- 0.03672882542014122,
- -0.037470921874046326,
- 0.029380924999713898,
- -0.023267464712262154,
- -0.04711143672466278,
- 0.0018544745398685336,
- 0.018459796905517578,
- 0.01649254374206066,
- -0.05985872447490692,
- -0.043355487287044525,
- -0.07013959437608719,
- -0.014600489288568497,
- 0.08749934285879135,
- 0.04368714988231659,
- -0.007538467645645142,
- -0.11100857704877853,
- -0.042878784239292145,
- 0.004968057852238417,
- 0.014078829437494278,
- -0.02457507699728012,
- 0.04088304564356804,
- 0.029159175232052803,
- 0.0767853632569313,
- 0.042812854051589966,
- -1.4147968130373556e-8,
- -0.004318759776651859,
- -0.014131715521216393,
- 0.09721437841653824,
- -0.08049388229846954,
- 0.06353314965963364,
- 0.05079155042767525,
- 0.08721427619457245,
- -0.007923214696347713,
- -0.08295250684022903,
- -0.016922902315855026,
- 0.04664907231926918,
- 0.0022975043393671513,
- -0.030294163152575493,
- 0.005248105153441429,
- 0.06678690016269684,
- 0.013450178317725658,
- -0.031451430171728134,
- 0.016482332721352577,
- -0.03007996641099453,
- 0.04576956480741501,
- -0.10594282299280167,
- 0.0320938304066658,
- 0.022347666323184967,
- -0.08224020898342133,
- -0.07164105027914047,
- 0.01871735043823719,
- 0.0009050054359249771,
- 0.1014249175786972,
- 0.00393934641033411,
- 0.04426153749227524,
- 0.0019420807948336005,
- 0.11961080878973007,
- 0.009548288770020008,
- -0.020084822550415993,
- 0.07771344482898712,
- -0.03412103280425072,
- -0.01355062611401081,
- 0.012011884711682796,
- -0.015993086621165276,
- 0.058820951730012894,
- -0.05789138004183769,
- 0.03486304357647896,
- 0.10078850388526917,
- -0.0655103251338005,
- 0.06579696387052536,
- 0.0410248264670372,
- 0.06565692275762558,
- 0.031338997185230255,
- -0.02281670644879341,
- 0.06706064194440842,
- -0.07634136080741882,
- -0.04336853697896004,
- 0.001409530290402472,
- 0.06459087133407593,
- 0.04166731610894203,
- -0.07377155125141144,
- 0.0344049409031868,
- -0.006821604445576668,
- -0.03553638234734535,
- 0.1439429670572281,
- 0.12102961540222168,
- -0.004110047593712807,
- 0.026218745857477188,
- 0.028378788381814957
- ]
- },
- {
- "keyword": "graphic",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.009440850466489792,
- 0.04318259283900261,
- -0.05759458988904953,
- -0.015555585734546185,
- -0.018574481830000877,
- -0.0645330548286438,
- 0.09082698076963425,
- 0.0354156494140625,
- 0.06944403052330017,
- -0.040001384913921356,
- 0.04800254479050636,
- -0.03604903444647789,
- -0.0085520651191473,
- -0.0029748755041509867,
- -0.06519567966461182,
- 0.026337340474128723,
- -0.006964297033846378,
- -0.06770261377096176,
- -0.06990648806095123,
- -0.030063873156905174,
- -0.03349657729268074,
- 0.006169850472360849,
- -0.038632702082395554,
- -0.0066528357565402985,
- -0.03756910189986229,
- 0.056907769292593,
- 0.027225462719798088,
- 0.041947804391384125,
- 0.049834493547677994,
- -0.09332826733589172,
- -0.03332475945353508,
- -0.010777993127703667,
- 0.07899950444698334,
- 0.016680749133229256,
- -0.07060514390468597,
- 0.07487881928682327,
- 0.001386570860631764,
- 0.03710916265845299,
- 0.052162084728479385,
- -0.009272746741771698,
- -0.031024480238556862,
- -0.05988245829939842,
- 0.004743129480630159,
- -0.03536846488714218,
- 0.01223759725689888,
- -0.01684577576816082,
- -0.02084982767701149,
- -0.008623147383332253,
- 0.017698708921670914,
- 0.06690920144319534,
- -0.07307220995426178,
- -0.028580721467733383,
- -0.038281846791505814,
- -0.020464429631829262,
- 0.05839356780052185,
- 0.027453863993287086,
- -0.005026503931730986,
- -0.013899747282266617,
- -0.012956509366631508,
- -0.011098401620984077,
- 0.10028599202632904,
- 0.04952530935406685,
- -0.07038035243749619,
- 0.10544098913669586,
- 0.05800355225801468,
- -0.04603232443332672,
- 0.011335366405546665,
- -0.04656334966421127,
- -0.024002062156796455,
- -0.037123631685972214,
- 0.013484340161085129,
- -0.026727572083473206,
- -0.06575731188058853,
- -0.04005082696676254,
- -0.016322439536452293,
- -0.0050381761975586414,
- 0.017630120739340782,
- 0.006067298818379641,
- 0.11092827469110489,
- -0.05252241715788841,
- 0.06124933809041977,
- 0.049786265939474106,
- -0.028390152379870415,
- 0.013083797879517078,
- -0.008568237535655499,
- 0.05384885147213936,
- 0.024215981364250183,
- -0.022527290508151054,
- 0.020530235022306442,
- 0.0764738991856575,
- -0.05345100909471512,
- 0.010428527370095253,
- 0.0368351936340332,
- 0.03307382017374039,
- -0.06571447849273682,
- 0.011849631555378437,
- -0.010324982926249504,
- -0.11092845350503922,
- -0.06110476329922676,
- 0.22447869181632996,
- 0.017248569056391716,
- -0.018103567883372307,
- 0.10086500644683838,
- 0.003841800382360816,
- 0.018961049616336823,
- 0.004164179787039757,
- -0.026463491842150688,
- 0.01781678944826126,
- -0.028793636709451675,
- 0.010985522530972958,
- -0.06300576776266098,
- 0.006689669564366341,
- -0.07243800908327103,
- 0.027567295357584953,
- 0.024328306317329407,
- -0.025736039504408836,
- -0.08125565946102142,
- -0.02459670603275299,
- 0.040574345737695694,
- -0.011293871328234673,
- -0.01574992761015892,
- -0.022691654041409492,
- -0.022565312683582306,
- 0.030888404697179794,
- -0.02160012349486351,
- -0.06726688891649246,
- -0.040252406150102615,
- -2.7895551746898085e-33,
- 0.032345376908779144,
- -0.0749138668179512,
- 0.03182347118854523,
- 0.020731164142489433,
- -0.0023146094754338264,
- 0.03767857328057289,
- -0.056869372725486755,
- -0.09714031219482422,
- 0.030851036310195923,
- 0.12559160590171814,
- -0.03476816788315773,
- 0.07901667803525925,
- -0.06091586872935295,
- 0.11288446187973022,
- 0.07004191726446152,
- -0.03326934576034546,
- 0.06510008871555328,
- 0.09185536205768585,
- -0.0794740542769432,
- -0.006941148079931736,
- -0.03340917453169823,
- 0.06065455824136734,
- 0.013490223325788975,
- 0.04949282854795456,
- -0.036529432982206345,
- 0.04203961044549942,
- -0.016312096267938614,
- -0.05563880130648613,
- -0.004386098124086857,
- 0.004777457099407911,
- 0.01682707481086254,
- 0.046316903084516525,
- 0.012060548178851604,
- -0.03634708374738693,
- -0.03177972510457039,
- -0.08045105636119843,
- 0.02972705289721489,
- -0.037691354751586914,
- 0.022713886573910713,
- 0.07785055786371231,
- 0.0033453807700425386,
- -0.029529692605137825,
- -0.07174466550350189,
- 0.04235190153121948,
- -0.013904428109526634,
- 0.044020239263772964,
- 0.063971146941185,
- -0.03418881818652153,
- -0.10125497728586197,
- 0.07949469238519669,
- -0.008165795356035233,
- -0.03399096801877022,
- -0.039520811289548874,
- 0.009547430090606213,
- -0.034372955560684204,
- -0.008306680247187614,
- 0.019049659371376038,
- -0.02386550046503544,
- -0.07273472100496292,
- -0.053183663636446,
- 0.015908122062683105,
- 0.09921038895845413,
- -0.012172059156000614,
- 0.03013603948056698,
- 0.006599009037017822,
- -0.04181937128305435,
- 0.014323374256491661,
- -0.006528631318360567,
- 0.04739289730787277,
- 0.02841077372431755,
- -0.11053413897752762,
- 0.013382391072809696,
- 0.1070517897605896,
- -0.07751879096031189,
- -0.005112883634865284,
- -0.04594619199633598,
- -0.04811327904462814,
- 0.06622269749641418,
- -0.03263584524393082,
- 0.013602320104837418,
- -0.08299747109413147,
- -0.1001826822757721,
- 0.011310877278447151,
- -0.08236882835626602,
- 0.01496587973088026,
- -0.03550625219941139,
- 0.0011939986143261194,
- -0.04309297353029251,
- 0.039326466619968414,
- -0.00851481780409813,
- -0.10189871490001678,
- 0.004560144618153572,
- 0.04670848697423935,
- 0.030743347480893135,
- 0.04262213036417961,
- 3.5299276182567565e-33,
- -0.01106454711407423,
- 0.052831754088401794,
- 0.05131303519010544,
- 0.08360665291547775,
- 0.016075918450951576,
- 0.0035260936710983515,
- 0.06969823688268661,
- 0.05329035967588425,
- -0.0343511700630188,
- 0.006763155572116375,
- -0.004351610317826271,
- 0.0148752611130476,
- -0.03592357411980629,
- 0.0147175882011652,
- 0.009983263909816742,
- -0.02896360494196415,
- 0.05890098959207535,
- -0.08327283710241318,
- -0.10627903789281845,
- 0.013719677925109863,
- -0.015110276639461517,
- -0.0044661895371973515,
- -0.016545651480555534,
- -0.057591069489717484,
- -0.03937511146068573,
- 0.12035921961069107,
- 0.09510768949985504,
- -0.0978052169084549,
- -0.03697220981121063,
- 0.0038519264198839664,
- 0.07719208300113678,
- -0.030704515054821968,
- 0.06529983133077621,
- -0.027695687487721443,
- 0.05895921587944031,
- 0.0637335330247879,
- 0.15237580239772797,
- -0.04259754344820976,
- -0.025437327101826668,
- 0.010759956203401089,
- 0.03670316934585571,
- -0.023569399490952492,
- -0.01114206574857235,
- 0.17605634033679962,
- -0.05513825640082359,
- 0.020834844559431076,
- -0.010712061077356339,
- -0.01398474257439375,
- 0.04196411371231079,
- 0.04440665990114212,
- -0.03752732276916504,
- -0.017389805987477303,
- 0.03525897115468979,
- -0.04943543300032616,
- -0.02255377732217312,
- -0.08730071038007736,
- -0.060322001576423645,
- 0.04075050354003906,
- 0.05537058413028717,
- 0.0362682119011879,
- -0.0052949502132833,
- -0.024420488625764847,
- -0.01564088650047779,
- -0.052232977002859116,
- -0.03828059509396553,
- 0.03306947275996208,
- -0.06263551115989685,
- -0.08963058888912201,
- -0.014185263775289059,
- 0.049174144864082336,
- 0.06858368217945099,
- 0.007817426696419716,
- -0.02549179643392563,
- 0.04403934255242348,
- -0.037705596536397934,
- -0.04019058123230934,
- -0.03142384812235832,
- 0.06540238112211227,
- -0.00766331609338522,
- 0.012640735134482384,
- 0.016556192189455032,
- -0.10941023379564285,
- -0.041990019381046295,
- 0.07034754753112793,
- 0.014960738830268383,
- -0.0028213881887495518,
- -0.031578727066516876,
- -0.028365392237901688,
- 0.029269177466630936,
- -0.0014694161945953965,
- -0.0572529062628746,
- 0.07616773992776871,
- 0.00684445071965456,
- 0.07083301246166229,
- 0.02656041458249092,
- -1.3387674080433953e-8,
- -0.002315456746146083,
- -0.030325789004564285,
- 0.10567932575941086,
- -0.057146571576595306,
- 0.081024169921875,
- 0.07233287394046783,
- 0.0059050582349300385,
- -0.03648453205823898,
- -0.007519496604800224,
- 0.05019143596291542,
- 0.061945803463459015,
- 0.06445062160491943,
- 0.04183449223637581,
- 0.04699856415390968,
- 0.036315687000751495,
- -0.06040416657924652,
- 0.01425592228770256,
- 0.049800314009189606,
- -0.0007168176234699786,
- 0.025131192058324814,
- -0.03526227921247482,
- -0.03698299080133438,
- 0.016958141699433327,
- -0.049907390028238297,
- -0.08099912852048874,
- -0.05174601078033447,
- -0.0034385111648589373,
- 0.1124141663312912,
- -0.03990631178021431,
- 0.06172479689121246,
- 0.04061482101678848,
- 0.07159234583377838,
- 0.032527387142181396,
- 0.02358640357851982,
- 0.00961903017014265,
- -0.0052018193528056145,
- -0.016298910602927208,
- 0.020740216597914696,
- 0.043608684092760086,
- 0.007551523856818676,
- 0.03233704715967178,
- -0.008272800594568253,
- 0.09990251809358597,
- -0.01890188455581665,
- -0.03155053034424782,
- 0.06266634166240692,
- 0.04333093762397766,
- -0.029474107548594475,
- -0.04586610570549965,
- 0.04438893869519234,
- -0.04593079164624214,
- -0.016104403883218765,
- 0.007253106217831373,
- 0.03682626038789749,
- 0.033212266862392426,
- -0.04775737598538399,
- 0.05662002041935921,
- 0.043099310249090195,
- -0.06663184612989426,
- 0.11047016084194183,
- 0.06317023187875748,
- -0.01609708182513714,
- -0.0024617817252874374,
- -0.052397698163986206
- ]
- },
- {
- "keyword": "icon",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07258827984333038,
- 0.08216329663991928,
- -0.04980044811964035,
- 0.007418598979711533,
- 0.011251063086092472,
- -0.03509551286697388,
- 0.1602906435728073,
- -0.03842812404036522,
- 0.03415587544441223,
- -0.03837073966860771,
- 0.029407847672700882,
- -0.02397213876247406,
- 0.011143148876726627,
- -0.025190599262714386,
- 0.02138499915599823,
- 0.03168950602412224,
- -0.04034578055143356,
- -0.0059954016469419,
- -0.07108886539936066,
- -0.04183455929160118,
- 0.02107580378651619,
- 0.004819807596504688,
- -0.012316182255744934,
- -0.00015689349675085396,
- -0.03144834190607071,
- 0.07553401589393616,
- -0.01488762442022562,
- -0.01755250245332718,
- 0.03090980276465416,
- -0.055589709430933,
- -0.02504417672753334,
- -0.048183780163526535,
- 0.0356818288564682,
- 0.042965780943632126,
- -0.07177138328552246,
- 0.05457065999507904,
- 0.09334076941013336,
- 0.009501445107161999,
- 0.023805035278201103,
- 0.007441157475113869,
- -0.013800431974232197,
- -0.056921541690826416,
- 0.021344434469938278,
- -0.026181237772107124,
- 0.02166425809264183,
- 0.0019997251220047474,
- 0.009105663746595383,
- -0.06351540237665176,
- 0.020996879786252975,
- 0.07836519181728363,
- -0.019018907099962234,
- -0.10571631044149399,
- -0.07613759487867355,
- -0.09056531637907028,
- 0.02581540308892727,
- -0.01905614137649536,
- 0.0282908882945776,
- -0.009838961064815521,
- -0.00985258910804987,
- -0.015375141054391861,
- 0.05440787225961685,
- 0.013053578324615955,
- 0.019250143319368362,
- 0.09152915328741074,
- 0.03920886293053627,
- -0.062248751521110535,
- -0.026716606691479683,
- -0.06583616882562637,
- -0.010190751403570175,
- -0.02214542031288147,
- 0.008740712888538837,
- -0.03602949529886246,
- -0.016007130965590477,
- 0.004836339969187975,
- -0.0576227568089962,
- -0.06859049946069717,
- 0.059071291238069534,
- 0.01868106983602047,
- 0.07884634286165237,
- 0.01582459732890129,
- 0.01332428865134716,
- -0.007650717627257109,
- -0.032685406506061554,
- 0.026978127658367157,
- 0.1450105607509613,
- 0.07434891909360886,
- -0.017637604847550392,
- -0.08805080503225327,
- -0.030223406851291656,
- -0.017590142786502838,
- -0.025044789537787437,
- 0.001357827801257372,
- 0.03233997896313667,
- -0.007582058664411306,
- -0.042449045926332474,
- -0.0033286474645137787,
- 0.007138689048588276,
- -0.11655788123607635,
- -0.11993177235126495,
- 0.28707313537597656,
- 0.0034624531399458647,
- 0.013425890356302261,
- 0.04011531546711922,
- -0.013159473426640034,
- 0.03591366484761238,
- 0.011261487379670143,
- 0.009886842221021652,
- -0.07230381667613983,
- 0.04607265442609787,
- 0.04036905989050865,
- -0.003549682442098856,
- -0.06621205061674118,
- -0.04126153141260147,
- -0.03977731987833977,
- -0.040504369884729385,
- -0.0024255227763205767,
- -0.09412939101457596,
- 0.012567815370857716,
- 0.07403488457202911,
- -0.026227790862321854,
- 0.04131356254220009,
- -0.06205573305487633,
- -0.0338553860783577,
- -0.0280984565615654,
- -0.05793450027704239,
- 0.005645622033625841,
- -0.1032458022236824,
- -5.8449961512760794e-33,
- -0.00936961267143488,
- -0.030916957184672356,
- 0.031261708587408066,
- -0.005209763068705797,
- -0.005185555666685104,
- -0.05236167833209038,
- -0.03436877205967903,
- -0.04613998159766197,
- -0.033142704516649246,
- 0.03396351635456085,
- 0.05114071071147919,
- 0.0195245910435915,
- -0.03976915776729584,
- 0.038558539003133774,
- 0.060854729264974594,
- -0.03569670021533966,
- 0.08121268451213837,
- 0.00462494557723403,
- -0.034353505820035934,
- -0.13348500430583954,
- -0.011718571186065674,
- 0.003147592069581151,
- -0.061860937625169754,
- 0.03574509918689728,
- -0.014318488538265228,
- -0.022461913526058197,
- 0.06286591291427612,
- -0.024758972227573395,
- 0.043734293431043625,
- 0.024069679901003838,
- 0.034005749970674515,
- 0.004708016756922007,
- 0.02521313913166523,
- 0.007522272411733866,
- -0.06295797228813171,
- -0.026937799528241158,
- -0.04882155358791351,
- -0.060691699385643005,
- 0.01598474569618702,
- -0.006091860122978687,
- 0.043852128088474274,
- -0.09011499583721161,
- -0.04302603378891945,
- 0.016886377707123756,
- 0.026465289294719696,
- 0.026921657845377922,
- 0.06253724545240402,
- -0.011111445724964142,
- 0.009189640171825886,
- -0.028186118230223656,
- 0.004464147612452507,
- -0.050854288041591644,
- -0.02412024326622486,
- 0.010086167603731155,
- -0.011361952871084213,
- 0.021674426272511482,
- 0.00995621271431446,
- 0.03931071609258652,
- -0.03188411891460419,
- -0.1001509428024292,
- 0.01744324155151844,
- -0.01997043751180172,
- 0.04054698348045349,
- 0.02461402676999569,
- -0.026270324364304543,
- 0.03581974282860756,
- 0.020568445324897766,
- 0.0212709940969944,
- 0.101282998919487,
- 0.024333754554390907,
- -0.027078775689005852,
- -0.010499067604541779,
- 0.11612048745155334,
- -0.025489533320069313,
- -0.0637904703617096,
- -0.045022208243608475,
- -0.015855493023991585,
- -0.014188528060913086,
- -0.07542704790830612,
- 0.02582589164376259,
- -0.0550917349755764,
- -0.03188882768154144,
- -0.01667744107544422,
- -0.01806986890733242,
- 0.04765229672193527,
- 0.002786632627248764,
- 0.03220643475651741,
- -0.10410422086715698,
- -0.013430601917207241,
- -0.03347354754805565,
- -0.04677977412939072,
- 0.00042273846338503063,
- -0.010563612915575504,
- 0.04067289084196091,
- -0.08652874827384949,
- 4.608161199150023e-33,
- 0.01729729399085045,
- -0.0176126416772604,
- 0.030177107080817223,
- 0.06410783529281616,
- 0.03350646048784256,
- -0.0824420228600502,
- 0.053447872400283813,
- 0.03814203664660454,
- -0.09792459011077881,
- 0.10134664177894592,
- -0.004603077657520771,
- 0.02944161370396614,
- -0.006079181097447872,
- -0.047980938106775284,
- 0.07095690816640854,
- 0.08143385499715805,
- 0.043951813131570816,
- 0.03471782058477402,
- -0.025458382442593575,
- 0.006605394184589386,
- -0.002171955304220319,
- -0.047243066132068634,
- 0.06126004830002785,
- -0.014948245137929916,
- -0.11141667515039444,
- 0.0676737129688263,
- 0.06647315621376038,
- -0.10141950100660324,
- 0.010943482629954815,
- -0.07949596643447876,
- -0.017826775088906288,
- -0.034340228885412216,
- -0.017014984041452408,
- 0.015394178219139576,
- 0.05976609140634537,
- 0.09526192396879196,
- 0.060731638222932816,
- -0.06730131804943085,
- -0.05409101024270058,
- 0.043028898537158966,
- 0.007476726081222296,
- 0.002668981207534671,
- 0.024666957557201385,
- 0.14551453292369843,
- 0.044097233563661575,
- -0.04082784801721573,
- 0.027071315795183182,
- 0.03618832305073738,
- 0.022685198113322258,
- 0.054901108145713806,
- 0.03438771143555641,
- -0.017033228650689125,
- 0.026505768299102783,
- 0.02062067948281765,
- 0.010313078761100769,
- 0.06259025633335114,
- -0.0345638170838356,
- 0.0716077908873558,
- -0.041825320571660995,
- 0.05017953738570213,
- -0.0013720536371693015,
- -0.11602538079023361,
- -0.03911474347114563,
- 0.06814701855182648,
- -0.024930328130722046,
- 0.0007695688400417566,
- -0.029657848179340363,
- 0.028136031702160835,
- -0.03212586045265198,
- 0.09727247059345245,
- 0.061644572764635086,
- 0.06221809983253479,
- -0.04828021302819252,
- -0.012378758750855923,
- 0.008484883233904839,
- -0.017918884754180908,
- -0.00824827142059803,
- -0.013777535408735275,
- -0.07086272537708282,
- -0.014492331072688103,
- -0.09153924137353897,
- -0.07020851224660873,
- -0.033453717827796936,
- 0.031405314803123474,
- 0.014551321975886822,
- -0.09497687965631485,
- 0.03600585460662842,
- 0.033320751041173935,
- -0.009592313319444656,
- 0.0067167021334171295,
- 0.008948295377194881,
- 0.08171288669109344,
- 0.017504224553704262,
- 0.031992364674806595,
- 0.032078925520181656,
- -1.300614194121863e-8,
- -0.03161559998989105,
- -0.0047485483810305595,
- 0.05331401526927948,
- -0.041639283299446106,
- 0.14631716907024384,
- -0.009470067918300629,
- -0.0941910445690155,
- -0.038316190242767334,
- 0.0006455818074755371,
- -0.001568537438288331,
- -0.0028934937436133623,
- 0.009093500673770905,
- -0.10472637414932251,
- 0.008738466538488865,
- 0.03351757675409317,
- -0.0010078179184347391,
- -0.07045388966798782,
- 0.10157643258571625,
- 0.019413750618696213,
- -0.0027522642631083727,
- 0.00711519131436944,
- 0.05216681584715843,
- -0.008737809024751186,
- -0.0583723708987236,
- -0.0331503190100193,
- -0.011590973474085331,
- -0.018060075119137764,
- 0.08575047552585602,
- 0.011813845485448837,
- 0.0122787831351161,
- -0.01410237792879343,
- 0.03627011924982071,
- 0.028615552932024002,
- -0.07852038741111755,
- 0.01079065352678299,
- 0.03896385058760643,
- 0.019968168810009956,
- 0.030014101415872574,
- -0.012913765385746956,
- -0.013810413889586926,
- 0.07536730170249939,
- -0.06502196937799454,
- 0.03294830024242401,
- -0.006373824086040258,
- -0.04897960275411606,
- 0.10044984519481659,
- 0.014688918367028236,
- 0.004208278842270374,
- -0.04350816458463669,
- 0.02987738698720932,
- -0.00900947954505682,
- -0.00045262204366736114,
- 0.015482407063245773,
- 0.016026433557271957,
- -0.015308365225791931,
- -0.003057419788092375,
- 0.022494712844491005,
- 0.07000251859426498,
- 0.007438566070050001,
- 0.11067105084657669,
- 0.14691223204135895,
- 0.06771740317344666,
- -0.009636323899030685,
- -0.01490053441375494
- ]
- },
- {
- "keyword": "logo",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.009954900480806828,
- 0.11702531576156616,
- -0.02046865224838257,
- -0.030499881133437157,
- 0.030787339434027672,
- -0.015953460708260536,
- 0.14841191470623016,
- 0.023503778502345085,
- 0.11269369721412659,
- -0.014053983613848686,
- 0.03594943881034851,
- 0.013867350295186043,
- 0.00976476725190878,
- -0.05961834639310837,
- -0.03791695460677147,
- -0.047995828092098236,
- -0.05172279104590416,
- -0.02991054765880108,
- 0.017867786809802055,
- -0.0763920247554779,
- 0.01891753450036049,
- -0.013052557595074177,
- -0.04675377160310745,
- 0.0020415231119841337,
- -0.019520973786711693,
- 0.08758217096328735,
- 0.007155336439609528,
- 0.0013758577406406403,
- 0.02089565247297287,
- -0.11524264514446259,
- -0.013248229399323463,
- 0.00411786837503314,
- 0.042843181639909744,
- -0.004060755018144846,
- -0.05263072997331619,
- -0.003669670084491372,
- 0.08157665282487869,
- -0.031174078583717346,
- 0.06076980382204056,
- -0.027123043313622475,
- -0.02633078023791313,
- -0.08821986615657806,
- 0.042412225157022476,
- 0.009845493361353874,
- 0.02579667419195175,
- 0.06171508505940437,
- 0.026306716725230217,
- 0.025255270302295685,
- 0.0495050884783268,
- 0.033824171870946884,
- 0.041870322078466415,
- -0.107564777135849,
- -0.06271106749773026,
- -0.06833238899707794,
- 0.03257397562265396,
- 0.01630452089011669,
- 0.0114270756021142,
- 0.0033932712394744158,
- -0.008110248483717442,
- -0.04823799803853035,
- 0.07075922936201096,
- -0.015569076873362064,
- -0.06956213712692261,
- 0.09049537032842636,
- 0.12530387938022614,
- -0.05059608072042465,
- -0.003920503426343203,
- 0.006582395173609257,
- -0.04176725074648857,
- -0.03776945918798447,
- 0.030878372490406036,
- 0.030013903975486755,
- -0.008288349956274033,
- 0.009301901794970036,
- -0.008882883936166763,
- -0.00015778846864122897,
- 0.07746360450983047,
- -0.004506825469434261,
- 0.07620058953762054,
- -0.06877733767032623,
- 0.00012643133231904358,
- 0.04954608902335167,
- -0.04384578764438629,
- 0.04755507409572601,
- 0.06545519828796387,
- 0.0635121613740921,
- -0.03766609728336334,
- 0.02174326591193676,
- -0.009220466017723083,
- 0.009164934977889061,
- -0.0819987803697586,
- 0.020558560267090797,
- 0.05659029260277748,
- -0.021224867552518845,
- -0.11589395999908447,
- 0.04279032722115517,
- -0.03584038466215134,
- -0.09474483877420425,
- -0.0679742693901062,
- 0.22190359234809875,
- 0.0068618119694292545,
- 0.06606969982385635,
- 0.09530112147331238,
- -0.060066159814596176,
- 0.017056437209248543,
- 0.03400297835469246,
- 0.027673443779349327,
- 0.03627736121416092,
- 0.05025128647685051,
- 0.058262065052986145,
- -0.025073036551475525,
- 0.03933137282729149,
- -0.09123346954584122,
- 0.057377103716135025,
- -0.029802003875374794,
- -0.07361413538455963,
- -0.01007635798305273,
- -0.03724281117320061,
- 0.07515872269868851,
- -0.03523476421833038,
- -0.033571384847164154,
- -0.013440055772662163,
- -0.06206338852643967,
- -0.04788777977228165,
- -0.09160001575946808,
- -0.07947728037834167,
- -0.07957857847213745,
- -5.294545942248588e-33,
- -0.017094982787966728,
- 0.007549425587058067,
- 0.028310038149356842,
- 0.01297700870782137,
- 0.01720777340233326,
- 0.03547774627804756,
- 0.022629275918006897,
- -0.09372957795858383,
- -0.059087298810482025,
- 0.0849713683128357,
- 0.013804834336042404,
- 0.006915195379406214,
- -0.009586432948708534,
- 0.0605500265955925,
- 0.11490142345428467,
- -0.05466736853122711,
- 0.004350872244685888,
- -0.029650086537003517,
- -0.06272907555103302,
- -0.07668672502040863,
- -0.029102105647325516,
- 0.035595089197158813,
- -0.03289514034986496,
- 0.0341135635972023,
- -0.03259556367993355,
- -0.058745238929986954,
- 0.02490629255771637,
- -0.014252740889787674,
- -0.024389363825321198,
- -0.004894901532679796,
- 0.05198490247130394,
- 0.004137941636145115,
- -0.004944194108247757,
- -0.029366828501224518,
- -0.03896103799343109,
- -0.03902581334114075,
- 0.031117064878344536,
- -0.08320800960063934,
- 0.00212159869261086,
- 0.041080135852098465,
- 0.011706397868692875,
- -0.03558488190174103,
- -0.039780162274837494,
- 0.06210571154952049,
- 0.009703708812594414,
- 0.05312240868806839,
- 0.04709979146718979,
- -0.058977436274290085,
- 0.013451888225972652,
- -0.029428115114569664,
- -0.0010101640364155173,
- -0.055911995470523834,
- -0.028358042240142822,
- -0.04625066742300987,
- -0.0023100257385522127,
- -0.043860387057065964,
- 0.008234702982008457,
- 0.021659977734088898,
- -0.05330255627632141,
- -0.036277055740356445,
- 0.02205883339047432,
- 0.02950027771294117,
- 0.03925113007426262,
- 0.05562259629368782,
- 0.021630166098475456,
- 0.06267321109771729,
- 0.03422391042113304,
- 0.02942502126097679,
- 0.034782662987709045,
- -0.044152356684207916,
- -0.0230027437210083,
- -0.05158400908112526,
- 0.10555075854063034,
- 0.003953027538955212,
- -0.04099234566092491,
- 0.021672602742910385,
- 0.007621255703270435,
- 0.04884372651576996,
- -0.024761417880654335,
- 0.10367339104413986,
- -0.05717599391937256,
- -0.05699409171938896,
- -0.03689439222216606,
- -0.03554156795144081,
- 0.06282105296850204,
- 0.055115245282649994,
- -0.00788977649062872,
- -0.04816717281937599,
- -0.06263311952352524,
- -0.012769458815455437,
- -0.051600709557533264,
- -0.011873973533511162,
- 0.06190915033221245,
- 0.05697465315461159,
- -0.07600375264883041,
- 3.536035413435232e-33,
- -0.0008496541995555162,
- -0.03476528823375702,
- 0.09662548452615738,
- 0.027997426688671112,
- 0.005305868107825518,
- -0.03372086212038994,
- 0.05595773085951805,
- 0.07253022491931915,
- -0.10721128433942795,
- -0.008515723049640656,
- 0.06225665286183357,
- 0.017794843763113022,
- -0.05731234699487686,
- 0.007453303784132004,
- -0.039523154497146606,
- 0.019796976819634438,
- 0.10654344409704208,
- 0.007848752662539482,
- -0.05848890542984009,
- -0.011801986955106258,
- -0.027230916544795036,
- -0.014727131463587284,
- -0.016000110656023026,
- -0.007598645519465208,
- -0.04546958953142166,
- 0.08011641353368759,
- 0.03427521884441376,
- -0.007070501334965229,
- -0.09067033231258392,
- 0.006741985213011503,
- 0.015269612893462181,
- 0.0020589185878634453,
- 0.023237287998199463,
- 0.0655917301774025,
- 0.02951645851135254,
- 0.038011882454156876,
- 0.0620601512491703,
- -0.06385940313339233,
- -0.0490812212228775,
- 0.022482192143797874,
- 0.017350811511278152,
- -0.016252605244517326,
- 0.021767668426036835,
- 0.14902563393115997,
- 0.0032150179613381624,
- -0.04078824445605278,
- -0.05771341174840927,
- -0.06047894060611725,
- 0.010148890316486359,
- 0.08949711918830872,
- -0.017768755555152893,
- -0.05118703469634056,
- 0.05720594525337219,
- 0.0034176057670265436,
- -0.021396556869149208,
- -0.004207322373986244,
- -0.06054634600877762,
- 0.07637054473161697,
- 0.030426766723394394,
- 0.060874566435813904,
- 0.04342439025640488,
- -0.02293454483151436,
- -0.047261741012334824,
- -0.0012256832560524344,
- -0.0192971583455801,
- -0.012822460383176804,
- -0.015600372105836868,
- -0.01905452460050583,
- -0.08088669925928116,
- 0.05728711187839508,
- -0.016331057995557785,
- 0.013935855589807034,
- -0.049503449350595474,
- 0.0504470095038414,
- -0.059011977165937424,
- -0.029905343428254128,
- 0.007225025910884142,
- 0.04124334082007408,
- -0.07757241278886795,
- 0.05032825469970703,
- -0.08862965553998947,
- -0.0308485459536314,
- -0.12271545827388763,
- 0.11038227379322052,
- 0.054018449038267136,
- -0.028706833720207214,
- 0.009702256880700588,
- -0.01961962692439556,
- 0.01556385774165392,
- -0.022623427212238312,
- 0.005012029781937599,
- 0.075811006128788,
- 0.03474000468850136,
- 0.038098208606243134,
- 0.0017398783238604665,
- -1.19379572893763e-8,
- -0.03745707869529724,
- -0.005365480203181505,
- 0.10083848983049393,
- -0.07429004460573196,
- 0.09110020846128464,
- 0.05028197914361954,
- -0.0309015940874815,
- -0.12180408090353012,
- 0.0051878951489925385,
- -0.008442917838692665,
- -0.01966043747961521,
- 0.00574933085590601,
- -0.09913460165262222,
- 0.026645071804523468,
- 0.00601479085162282,
- -0.006127320230007172,
- -0.09539217501878738,
- 0.056863442063331604,
- 0.0076126414351165295,
- 0.031184494495391846,
- -0.03672654554247856,
- 0.019914671778678894,
- 0.041995786130428314,
- -0.061773695051670074,
- -0.011769533157348633,
- -0.010886331088840961,
- 0.05005842074751854,
- 0.021248897537589073,
- 0.004130212124437094,
- -0.009187545627355576,
- -0.02845304273068905,
- 0.12823189795017242,
- 0.017521478235721588,
- -0.01044590212404728,
- -0.027947725728154182,
- -0.032398246228694916,
- 0.03549665957689285,
- 0.009464222006499767,
- -0.02848503179848194,
- -0.05480204150080681,
- 0.04221104457974434,
- 0.026124287396669388,
- 0.026917003095149994,
- -0.03875579312443733,
- -0.022860124707221985,
- 0.021360969170928,
- 0.02968662977218628,
- 0.07570425420999527,
- -0.04881224408745766,
- -0.036791834980249405,
- 0.027075286954641342,
- 0.015110956504940987,
- 0.012215468101203442,
- 0.06031518429517746,
- -0.02510441280901432,
- -0.08785264194011688,
- 0.015006188303232193,
- 0.038873154670000076,
- 0.02623927593231201,
- 0.03549690172076225,
- 0.13425575196743011,
- -0.03062235563993454,
- 0.020915543660521507,
- -0.05995943769812584
- ]
- },
- {
- "keyword": "banner",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.061121176928281784,
- 0.13476772606372833,
- -0.042900100350379944,
- -0.046158723533153534,
- 0.028357820585370064,
- -0.017687978222966194,
- 0.11650409549474716,
- 0.01923716627061367,
- 0.024123724550008774,
- -0.018628988415002823,
- 0.028276745229959488,
- -0.04389933496713638,
- -0.009861272759735584,
- 0.007840952835977077,
- 0.07545652240514755,
- 0.05054729804396629,
- -0.021017171442508698,
- 0.012861236929893494,
- -0.011234015226364136,
- -0.025802133604884148,
- -0.04504714906215668,
- -0.01543442253023386,
- -0.03734443709254265,
- 0.053384725004434586,
- -0.03355662152171135,
- 0.02713622897863388,
- -0.005673236679285765,
- 0.033269111067056656,
- 0.08054013550281525,
- -0.11311129480600357,
- -0.016804616898298264,
- -0.06484705209732056,
- 0.03041018359363079,
- 0.0149797098711133,
- -0.028055069968104362,
- 0.051569048315286636,
- -0.04360849782824516,
- -0.023212704807519913,
- 0.030710943043231964,
- -0.026400603353977203,
- 0.032247815281152725,
- -0.05755045637488365,
- -0.08085490763187408,
- 0.018022611737251282,
- 0.015545952133834362,
- 0.012454407289624214,
- -0.05102306604385376,
- 0.05329412966966629,
- 0.050705477595329285,
- 0.018780093640089035,
- 0.06932727247476578,
- -0.1166689544916153,
- -0.02063138224184513,
- 0.006161724682897329,
- 0.05419405177235603,
- 0.04850998520851135,
- -0.0034079875331372023,
- -0.00008845133561408147,
- 0.018358562141656876,
- 0.020650945603847504,
- 0.020978113636374474,
- 0.03611474856734276,
- -0.07930390536785126,
- 0.018807586282491684,
- 0.0022153917234390974,
- -0.03361375257372856,
- -0.032957080751657486,
- 0.07889082282781601,
- -0.026422834023833275,
- 0.006444635801017284,
- 0.04287664219737053,
- -0.02264685370028019,
- 0.04325583577156067,
- -0.0683935135602951,
- 0.04660557210445404,
- -0.07774668186903,
- -0.015475877560675144,
- -0.012866627424955368,
- -0.01597348041832447,
- -0.09142238646745682,
- 0.0016769239446148276,
- -0.03357024863362312,
- -0.11888662725687027,
- -0.01249677687883377,
- 0.05237560719251633,
- -0.009743769653141499,
- 0.020981688052415848,
- 0.05954793468117714,
- 0.02318035438656807,
- 0.057679105550050735,
- -0.020778805017471313,
- 0.06077202036976814,
- 0.04711208865046501,
- -0.005961061455309391,
- -0.07974366843700409,
- 0.012702524662017822,
- -0.00799505040049553,
- -0.07655233889818192,
- -0.0623786523938179,
- 0.2520710825920105,
- 0.005336753558367491,
- 0.013612659648060799,
- 0.04125303402543068,
- 0.04270322248339653,
- -0.03816096857190132,
- -0.0414535216987133,
- -0.06025884672999382,
- 0.07751084119081497,
- 0.0053659663535654545,
- -0.00018211723363492638,
- -0.027839893475174904,
- -0.01166281383484602,
- 0.008492073975503445,
- 0.030042143538594246,
- 0.009820950217545033,
- -0.09169503301382065,
- -0.09845200181007385,
- -0.02400076761841774,
- 0.061114609241485596,
- -0.06930293887853622,
- 0.13334119319915771,
- -0.05576779693365097,
- -0.033290598541498184,
- -0.05854197219014168,
- -0.03771837055683136,
- 0.013078770600259304,
- -0.08737556636333466,
- -4.886575199432359e-33,
- 0.06205436959862709,
- 0.0726272389292717,
- -0.005228342488408089,
- 0.06936671584844589,
- 0.08028920739889145,
- 0.046375636011362076,
- 0.00555225508287549,
- -0.04482188820838928,
- -0.053275465965270996,
- 0.04430084303021431,
- 0.003007059684023261,
- -0.04341002553701401,
- 0.06681276112794876,
- 0.0752611756324768,
- 0.006960964296013117,
- -0.017958039417862892,
- 0.04756224900484085,
- 0.056408125907182693,
- 0.006181956734508276,
- 0.03760569170117378,
- -0.04834798350930214,
- -0.007187760900706053,
- -0.022419245913624763,
- 0.0016938799526542425,
- -0.047049473971128464,
- 0.04785377159714699,
- 0.02048608474433422,
- -0.04170187562704086,
- -0.05036482959985733,
- 0.024263205006718636,
- 0.023836735635995865,
- -0.03792860358953476,
- 0.050137877464294434,
- -0.016646264120936394,
- 0.043954525142908096,
- 0.010295014828443527,
- -0.0720418319106102,
- -0.1447596549987793,
- -0.017481425777077675,
- -0.010273046791553497,
- 0.010768269188702106,
- 0.008856267668306828,
- -0.046477120369672775,
- 0.03585745766758919,
- -0.04135885089635849,
- 0.0353466160595417,
- 0.08507651835680008,
- 0.007394697051495314,
- 0.03029448539018631,
- -0.012969334609806538,
- 0.0045943595468997955,
- 0.006986531894654036,
- -0.06079358607530594,
- -0.03686796501278877,
- -0.05416831746697426,
- 0.009088138118386269,
- -0.0031385389156639576,
- -0.044795673340559006,
- -0.0482507087290287,
- -0.08744534105062485,
- 0.013068684376776218,
- -0.03117973916232586,
- 0.005338732153177261,
- -0.014386679977178574,
- 0.016535382717847824,
- 0.012464865110814571,
- -0.031045978888869286,
- 0.014958684332668781,
- 0.01933647133409977,
- -0.05148739740252495,
- -0.0425259955227375,
- 0.025317588821053505,
- 0.06023702770471573,
- 0.006201783195137978,
- -0.01549459807574749,
- 0.009928369894623756,
- 0.08325641602277756,
- 0.1048349067568779,
- 0.028648126870393753,
- 0.014880741946399212,
- -0.1002143993973732,
- -0.09104067087173462,
- -0.027198348194360733,
- -0.04791145771741867,
- 0.030375435948371887,
- 0.042903464287519455,
- 0.03488052636384964,
- -0.062357015907764435,
- -0.07627707719802856,
- -0.0013291611103340983,
- -0.0716753751039505,
- 0.07735316455364227,
- 0.0494428388774395,
- -0.047434478998184204,
- -0.05730154737830162,
- 3.93498497179287e-33,
- -0.012417363934218884,
- 0.016200978308916092,
- -0.03462618961930275,
- -0.0636318027973175,
- 0.07806239277124405,
- 0.05538717284798622,
- 0.032101813703775406,
- 0.038981616497039795,
- -0.09179909527301788,
- 0.03545621782541275,
- 0.06116792559623718,
- 0.043098703026771545,
- -0.05913367122411728,
- 0.04904164373874664,
- -0.027389541268348694,
- 0.07339372485876083,
- 0.1082523986697197,
- 0.018621018156409264,
- -0.04575519263744354,
- -0.012927758507430553,
- 0.012364188209176064,
- 0.044865433126688004,
- 0.00590075459331274,
- -0.021475892513990402,
- -0.0008356869220733643,
- 0.013658732175827026,
- 0.03041980043053627,
- -0.02385760471224785,
- 0.04850274696946144,
- 0.000685054634232074,
- 0.05442909151315689,
- -0.013072137720882893,
- -0.06460167467594147,
- 0.011255163699388504,
- 0.044547535479068756,
- 0.050703611224889755,
- 0.16055302321910858,
- 0.026828013360500336,
- -0.07540184259414673,
- 0.053147297352552414,
- 0.03633318841457367,
- 0.03327019140124321,
- 0.05064495652914047,
- 0.09454148262739182,
- -0.020402561873197556,
- 0.01607452519237995,
- -0.02917691133916378,
- 0.10217206925153732,
- -0.052222106605768204,
- 0.05197663977742195,
- -0.002764360513538122,
- -0.0717766061425209,
- 0.08269258588552475,
- -0.007943750359117985,
- -0.03152697533369064,
- -0.035218872129917145,
- -0.05914953351020813,
- 0.047147754579782486,
- -0.030599340796470642,
- -0.014171835966408253,
- -0.026433225721120834,
- 0.02511540614068508,
- -0.0019103980157524347,
- -0.0064774854108691216,
- -0.007542108651250601,
- 0.016632214188575745,
- -0.003915693145245314,
- -0.02464383654296398,
- -0.11568232625722885,
- 0.010798539966344833,
- -0.05501585081219673,
- -0.008765279315412045,
- -0.06455276161432266,
- -0.02445235848426819,
- -0.05427888408303261,
- -0.03858475014567375,
- 0.0009855543030425906,
- 0.03096907027065754,
- -0.0104676503688097,
- -0.021662794053554535,
- -0.02964804135262966,
- -0.03239239752292633,
- -0.09902089089155197,
- -0.07180708646774292,
- -0.025794828310608864,
- -0.04874073341488838,
- 0.03078271634876728,
- 0.012378904968500137,
- 0.009346695616841316,
- -0.0009061997407115996,
- -0.03812668099999428,
- 0.12356685847043991,
- 0.050884466618299484,
- 0.0462755486369133,
- 0.014929813332855701,
- -1.1608642047633566e-8,
- -0.02819579280912876,
- 0.021485546603798866,
- 0.021677305921912193,
- -0.11282369494438171,
- 0.021784072741866112,
- 0.058006417006254196,
- -0.031326860189437866,
- -0.05650830641388893,
- -0.011922796256840229,
- -0.007553908973932266,
- 0.054714642465114594,
- -0.030342167243361473,
- 0.010726668871939182,
- -0.02288094349205494,
- -0.031123926863074303,
- -0.03008766658604145,
- -0.08816976100206375,
- 0.05329357087612152,
- -0.032033804804086685,
- -0.08049695938825607,
- -0.05395768582820892,
- -0.005952824838459492,
- 0.05271710455417633,
- -0.07087220996618271,
- -0.01934432052075863,
- 0.0011139108100906014,
- 0.017189672216773033,
- 0.037571560591459274,
- -0.02463945373892784,
- -0.04238666966557503,
- 0.01991184614598751,
- 0.13301800191402435,
- 0.048668745905160904,
- -0.04806288704276085,
- 0.0753229558467865,
- 0.046507034450769424,
- -0.04590723663568497,
- -0.008593041449785233,
- -0.0076168738305568695,
- 0.06339936703443527,
- 0.037761613726615906,
- 0.06460903584957123,
- 0.03363480418920517,
- 0.024185560643672943,
- -0.006129486486315727,
- -0.015200836583971977,
- 0.018598811700940132,
- 0.06959807127714157,
- -0.011287501081824303,
- -0.0555422343313694,
- 0.03063560277223587,
- -0.05393353849649429,
- -0.03878038376569748,
- 0.05252135545015335,
- 0.02687719278037548,
- 0.0015996037982404232,
- 0.08554180711507797,
- 0.0074116867035627365,
- 0.03635568171739578,
- 0.06996195018291473,
- 0.17526309192180634,
- -0.0004140468663536012,
- 0.008997992612421513,
- 0.02375989593565464
- ]
- },
- {
- "keyword": "thumbnail",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04987886920571327,
- 0.05305008217692375,
- -0.048721883445978165,
- -0.00263995467685163,
- 0.06325528025627136,
- -0.0627562552690506,
- 0.06959768384695053,
- 0.04182875528931618,
- 0.022629205137491226,
- -0.02264510467648506,
- 0.05807369947433472,
- 0.01965404860675335,
- -0.008354281075298786,
- 0.037648070603609085,
- -0.04180300608277321,
- 0.0050881244242191315,
- -0.04173415154218674,
- 0.0005840567173436284,
- -0.0868498682975769,
- 0.022553130984306335,
- -0.04512236267328262,
- -0.036911673843860626,
- -0.029988614842295647,
- -0.10244295746088028,
- 0.042134109884500504,
- 0.06356383115053177,
- -0.023403320461511612,
- -0.04867607727646828,
- 0.01511614490300417,
- -0.12503212690353394,
- 0.0347411148250103,
- 0.043171051889657974,
- 0.0822867751121521,
- 0.046304091811180115,
- -0.0035814561415463686,
- 0.02619463950395584,
- -0.003055062610656023,
- 0.023526852950453758,
- 0.0013890445698052645,
- 0.038235850632190704,
- -0.03227236866950989,
- -0.06548666208982468,
- 0.00048002999392338097,
- -0.00305165839381516,
- 0.018321504816412926,
- -0.0008254808490164578,
- 0.021616889163851738,
- 0.010253917425870895,
- 0.02493644319474697,
- 0.025771696120500565,
- -0.1040804460644722,
- -0.06392046064138412,
- -0.03906714543700218,
- -0.0482504665851593,
- 0.10119271278381348,
- 0.025536878034472466,
- 0.03212212771177292,
- -0.01268552616238594,
- -0.046853866428136826,
- 0.05131126195192337,
- 0.12727348506450653,
- 0.01852908544242382,
- -0.09352865070104599,
- 0.03098776564002037,
- 0.08953004330396652,
- -0.03447135537862778,
- -0.001967857824638486,
- -0.08520085364580154,
- 0.020729785785079002,
- -0.10498151928186417,
- 0.018079597502946854,
- 0.024999169632792473,
- -0.03836142271757126,
- 0.05852572247385979,
- 0.01297589298337698,
- -0.058169543743133545,
- 0.05498494952917099,
- -0.002890939824283123,
- 0.12033335119485855,
- -0.04856915399432182,
- 0.010164977051317692,
- 0.0024131981190294027,
- 0.019943900406360626,
- -0.04191633686423302,
- 0.1110629066824913,
- 0.005050303414463997,
- -0.0016296126414090395,
- 0.005863474681973457,
- -0.07899114489555359,
- -0.0347137488424778,
- -0.10874945670366287,
- -0.021221350878477097,
- -0.0020540328696370125,
- 0.01981903240084648,
- -0.020460054278373718,
- 0.017925051972270012,
- -0.0041629960760474205,
- -0.12344245612621307,
- -0.12016882002353668,
- 0.21460308134555817,
- 0.08304530382156372,
- -0.0035298988223075867,
- -0.0070527102798223495,
- -0.041159018874168396,
- 0.04060858488082886,
- 0.025037122890353203,
- -0.011901969090104103,
- 0.010605846531689167,
- -0.040875762701034546,
- -0.024911776185035706,
- -0.015163845382630825,
- -0.010027018375694752,
- -0.13423682749271393,
- -0.04975046589970589,
- -0.034988172352313995,
- -0.15349401533603668,
- -0.00398883456364274,
- 0.005363245960325003,
- 0.057995982468128204,
- -0.03194688260555267,
- 0.003506576642394066,
- 0.05672132968902588,
- -0.08532645553350449,
- -0.01676371321082115,
- -0.03115272708237171,
- -0.050202202051877975,
- -0.007084987126290798,
- -2.0192803588898493e-33,
- 0.014487795531749725,
- -0.07168027758598328,
- 0.009070826694369316,
- -0.13695760071277618,
- 0.061895839869976044,
- -0.0036998149007558823,
- 0.020572686567902565,
- -0.046465128660202026,
- -0.04501581937074661,
- -0.02449997141957283,
- 0.04331716150045395,
- 0.0040391795337200165,
- -0.0439852736890316,
- 0.05390648916363716,
- 0.06573300063610077,
- 0.007964330725371838,
- -0.04191213846206665,
- 0.09921010583639145,
- 0.004502798896282911,
- -0.03232172131538391,
- -0.02682596445083618,
- 0.04165233299136162,
- -0.020113162696361542,
- 0.0521271675825119,
- -0.06611514836549759,
- 0.021262481808662415,
- 0.029278257861733437,
- -0.08342409133911133,
- 0.023932352662086487,
- 0.056456875056028366,
- -0.011866829358041286,
- 0.03953104838728905,
- 0.07441244274377823,
- -0.04906752333045006,
- -0.04236331582069397,
- 0.02371891215443611,
- 0.022263335064053535,
- -0.01851256750524044,
- 0.01360460463911295,
- 0.012022940441966057,
- 0.03544069454073906,
- 0.017950301989912987,
- 0.022973520681262016,
- 0.01820703223347664,
- 0.009064223617315292,
- 0.06738030165433884,
- 0.024073246866464615,
- 0.03993888199329376,
- -0.07477010041475296,
- -0.008431504480540752,
- 0.055248938500881195,
- -0.04967566952109337,
- 0.003946986980736256,
- -0.0004285142640583217,
- -0.03298172727227211,
- -0.001898079295642674,
- 0.04435581713914871,
- 0.026613561436533928,
- -0.007658486254513264,
- -0.016403699293732643,
- 0.016474977135658264,
- 0.09045245498418808,
- 0.014581014402210712,
- -0.027254676446318626,
- 0.009168769232928753,
- -0.02600627951323986,
- 0.059339020401239395,
- -0.012155581265687943,
- 0.026082675904035568,
- 0.04483939707279205,
- -0.05736260116100311,
- 0.004850153345614672,
- 0.03883387893438339,
- -0.02908274345099926,
- -0.04716193303465843,
- -0.04472170025110245,
- 0.02406895160675049,
- 0.009349879808723927,
- -0.054300788789987564,
- 0.040960799902677536,
- -0.04992014169692993,
- 0.008412722498178482,
- 0.0007820589235052466,
- -0.0893109142780304,
- -0.08455003052949905,
- -0.004703517537564039,
- 0.03167131170630455,
- -0.0514579601585865,
- -0.005520157516002655,
- 0.020630717277526855,
- -0.019702088087797165,
- 0.053407348692417145,
- 0.012905810959637165,
- -0.00033905691816471517,
- 0.006178589537739754,
- 2.074052701837406e-33,
- 0.058423686772584915,
- 0.008127727545797825,
- -0.03448713570833206,
- 0.09395841509103775,
- 0.03154077008366585,
- 0.014976021833717823,
- 0.008081463165581226,
- 0.010295973159372807,
- -0.11194367706775665,
- 0.03647368401288986,
- -0.009267809800803661,
- -0.02377946674823761,
- -0.02823934145271778,
- -0.054884131997823715,
- 0.039302367717027664,
- 0.00047580283717252314,
- 0.05483345314860344,
- -0.022564014419913292,
- -0.05285101756453514,
- 0.004539782181382179,
- -0.06791321188211441,
- -0.04444490745663643,
- 0.06513901054859161,
- 0.07383213192224503,
- -0.06330398470163345,
- 0.015644365921616554,
- 0.15390199422836304,
- -0.09499246627092361,
- -0.0699947401881218,
- -0.02307693473994732,
- 0.04429901763796806,
- -0.04980022832751274,
- -0.03366480767726898,
- -0.01867848075926304,
- 0.06502269208431244,
- 0.04488689452409744,
- -0.009678186848759651,
- -0.047005489468574524,
- 0.0022126531694084406,
- 0.010685168206691742,
- 0.052749134600162506,
- 0.002343142870813608,
- 0.03152589499950409,
- 0.11428404599428177,
- -0.010663713328540325,
- -0.034840673208236694,
- 0.01742408610880375,
- 0.06075463071465492,
- 0.046030040830373764,
- 0.12038029730319977,
- -0.04749105125665665,
- -0.05109897255897522,
- 0.0279193427413702,
- -0.02879946306347847,
- -0.033053964376449585,
- 0.009114891290664673,
- -0.07029325515031815,
- 0.03372648358345032,
- 0.09197941422462463,
- -0.015396686270833015,
- -0.02831190451979637,
- -0.08258461952209473,
- -0.09263508021831512,
- 0.007084763143211603,
- 0.03246305137872696,
- -0.026615319773554802,
- -0.04471967741847038,
- 0.03867185860872269,
- -0.06915459036827087,
- 0.07142341881990433,
- 0.041754063218832016,
- 0.06832411885261536,
- 0.10087539255619049,
- 0.026705242693424225,
- 0.007483586203306913,
- 0.010915043763816357,
- 0.009091909974813461,
- 0.08306760340929031,
- -0.0022433234844356775,
- -0.08168711513280869,
- -0.01965070515871048,
- -0.06277496367692947,
- -0.04062855243682861,
- 0.04322745278477669,
- 0.03034881316125393,
- 0.029915807768702507,
- 0.03575948253273964,
- -0.009914213791489601,
- 0.010534340515732765,
- -0.058596156537532806,
- -0.027543334290385246,
- 0.09086321294307709,
- -0.02285873517394066,
- 0.02771417610347271,
- 0.02590889297425747,
- -1.445095154650744e-8,
- 0.02750878408551216,
- 0.010302333161234856,
- 0.018836112692952156,
- -0.06544975191354752,
- 0.03259364515542984,
- 0.010926781222224236,
- 0.0038908435963094234,
- 0.02020176500082016,
- 0.04127397760748863,
- 0.028299659490585327,
- 0.06863147020339966,
- 0.018983833491802216,
- -0.04298154637217522,
- 0.029519231989979744,
- 0.045937806367874146,
- -0.007580207195132971,
- 0.024555008858442307,
- 0.009082731790840626,
- 0.02301998808979988,
- -0.00999462977051735,
- -0.08368179947137833,
- 0.005758955609053373,
- 0.004803881514817476,
- -0.07147394865751266,
- -0.045585259795188904,
- -0.005441236309707165,
- 0.01057125348597765,
- 0.12714307010173798,
- -0.0036567894276231527,
- 0.03137165307998657,
- 0.05580482631921768,
- 0.05920323356986046,
- -0.037184182554483414,
- -0.03667189180850983,
- 0.08035670220851898,
- 0.015887107700109482,
- 0.050482504069805145,
- -0.019983772188425064,
- 0.003951366990804672,
- -0.06125422194600105,
- -0.017442284151911736,
- -0.007837995886802673,
- 0.037520769983530045,
- -0.04477152228355408,
- -0.09897375851869583,
- -0.014620679430663586,
- 0.1312912255525589,
- 0.019718296825885773,
- -0.033575624227523804,
- -0.010134797543287277,
- -0.08334624767303467,
- -0.03978004306554794,
- -0.018658680841326714,
- 0.07161200046539307,
- 0.028807751834392548,
- -0.017178675159811974,
- 0.026698525995016098,
- -0.012629182077944279,
- 0.026990152895450592,
- 0.10391541570425034,
- 0.05970590189099312,
- 0.06558053940534592,
- -0.05231856554746628,
- 0.0822935625910759
- ]
- },
- {
- "keyword": "video",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.015425596386194229,
- -0.01669446751475334,
- -0.03695456683635712,
- -0.04663827270269394,
- 0.058386996388435364,
- -0.0011718369787558913,
- 0.04146827012300491,
- 0.03831314668059349,
- 0.0653812512755394,
- -0.018368598073720932,
- 0.04733546823263168,
- -0.02809889055788517,
- -0.03579343110322952,
- 0.030876874923706055,
- -0.12347648292779922,
- -0.010053127072751522,
- 0.013985134661197662,
- -0.011238791048526764,
- -0.17082519829273224,
- -0.0015126366633921862,
- -0.0043824282474815845,
- -0.030710143968462944,
- 0.009680110961198807,
- 0.047754328697919846,
- 0.006359644699841738,
- 0.0518563948571682,
- 0.007595854811370373,
- 0.06858115643262863,
- 0.0742873027920723,
- -0.0588483102619648,
- 0.00024569121887907386,
- -0.025885242968797684,
- 0.09068064391613007,
- 0.015768995508551598,
- -0.05602635070681572,
- -0.02196255512535572,
- 0.050163064152002335,
- 0.029458845034241676,
- -0.03219358250498772,
- -0.05751650407910347,
- 0.0066643329337239265,
- -0.040099941194057465,
- 0.04403147101402283,
- -0.064817413687706,
- -0.0496797114610672,
- 0.07047679275274277,
- 0.07390546053647995,
- -0.05882611125707626,
- -0.012129135429859161,
- 0.06375228613615036,
- -0.10542893409729004,
- 0.023343829438090324,
- 0.013694530352950096,
- -0.04468363896012306,
- -0.0347043015062809,
- 0.02541135996580124,
- 0.03214353695511818,
- -0.01631089486181736,
- -0.014498572796583176,
- -0.019212301820516586,
- 0.14718250930309296,
- -0.017030935734510422,
- -0.06498827785253525,
- 0.027566907927393913,
- 0.011007116176187992,
- 0.02024860493838787,
- 0.03562376648187637,
- -0.028598107397556305,
- -0.026853634044528008,
- -0.033298589289188385,
- -0.06068388745188713,
- 0.026970239356160164,
- -0.010863631963729858,
- 0.004552985075861216,
- -0.031676433980464935,
- -0.0216988492757082,
- 0.024881798774003983,
- -0.02051772177219391,
- 0.018913201987743378,
- 0.0036576567217707634,
- 0.07603401690721512,
- -0.03040626272559166,
- -0.04050877317786217,
- 0.029830068349838257,
- -0.00004531456215772778,
- -0.010885056108236313,
- 0.06798121333122253,
- -0.020403465256094933,
- -0.05536678060889244,
- 0.0496416799724102,
- -0.11211172491312027,
- 0.07608631998300552,
- 0.009717839770019054,
- -0.01130637712776661,
- -0.0843810886144638,
- -0.036204490810632706,
- 0.001684380928054452,
- -0.07915225625038147,
- -0.012642606161534786,
- 0.1965389847755432,
- -0.000004616356363840168,
- 0.02923780307173729,
- 0.05883702263236046,
- -0.035959433764219284,
- -0.032374169677495956,
- 0.025345271453261375,
- -0.07906437665224075,
- 0.10907837003469467,
- -0.01320982538163662,
- -0.009808528237044811,
- -0.09230200201272964,
- -0.029387546703219414,
- -0.008728771470487118,
- -0.013424851931631565,
- 0.02836913987994194,
- 0.012477647513151169,
- -0.07387261092662811,
- -0.01316892635077238,
- -0.03370947018265724,
- -0.02351265773177147,
- 0.0671657845377922,
- -0.0826103687286377,
- -0.020149655640125275,
- -0.018186965957283974,
- -0.019463328644633293,
- -0.09124544262886047,
- 0.08008437603712082,
- -5.999200163446336e-34,
- 0.05796850472688675,
- -0.09567081928253174,
- -0.02417329140007496,
- 0.03526104986667633,
- -0.02499329298734665,
- 0.026254616677761078,
- 0.026740791276097298,
- -0.021029110997915268,
- 0.01964253932237625,
- 0.09203604608774185,
- -0.005977039225399494,
- -0.07315252721309662,
- -0.03238287568092346,
- -0.025927120819687843,
- 0.04684372618794441,
- 0.007270676549524069,
- 0.009116319939494133,
- 0.074186310172081,
- -0.04920285940170288,
- -0.000008907876690500416,
- 0.027884824201464653,
- 0.053224433213472366,
- 0.015941482037305832,
- 0.06612709909677505,
- -0.02042757160961628,
- -0.007639341056346893,
- 0.05178982764482498,
- -0.08525398373603821,
- 0.05005870759487152,
- -0.00032998513779602945,
- -0.016011681407690048,
- 0.022474074736237526,
- 0.03794350475072861,
- -0.018686268478631973,
- 0.04567759111523628,
- -0.02063772641122341,
- 0.02032805047929287,
- -0.03199882060289383,
- -0.019462039694190025,
- -0.05504639819264412,
- 0.05278843268752098,
- 0.036282412707805634,
- -0.061079420149326324,
- 0.0014984725276008248,
- -0.011753479018807411,
- -0.0020092667546123266,
- 0.0779181644320488,
- 0.05981437861919403,
- -0.10558244585990906,
- -0.019272595643997192,
- 0.0870918408036232,
- 0.021373748779296875,
- -0.046445246785879135,
- -0.0323348306119442,
- -0.03546502813696861,
- 0.08312582969665527,
- 0.02968134917318821,
- 0.0018754388438537717,
- -0.026138998568058014,
- -0.016197415068745613,
- 0.035747453570365906,
- 0.08955944329500198,
- -0.03852357715368271,
- -0.03926052153110504,
- -0.03661622107028961,
- -0.03858701512217522,
- 0.014564982615411282,
- -0.01780841127038002,
- 0.07822898775339127,
- 0.02947702817618847,
- -0.03091682493686676,
- 0.029084837064146996,
- 0.09044250100851059,
- -0.07231081277132034,
- -0.020890405401587486,
- 0.030530618503689766,
- -0.048464637249708176,
- 0.04574691504240036,
- -0.04600406438112259,
- -0.00031904675415717065,
- -0.03170529007911682,
- -0.09425141662359238,
- 0.07844530791044235,
- 0.028268570080399513,
- 0.02696903795003891,
- -0.029702970758080482,
- 0.02040986903011799,
- -0.041998907923698425,
- 0.058724407106637955,
- -0.010546301491558552,
- -0.03183088079094887,
- 0.016911135986447334,
- 0.04058493301272392,
- -0.0031344634480774403,
- 0.01630101166665554,
- 2.1288446975811407e-33,
- -0.015346224419772625,
- 0.04638559743762016,
- 0.050020039081573486,
- 0.0867115706205368,
- 0.09653152525424957,
- 0.016006512567400932,
- 0.10600600391626358,
- 0.019472576677799225,
- 0.07371635735034943,
- -0.017698265612125397,
- -0.10040812939405441,
- -0.08169680088758469,
- -0.09626471251249313,
- 0.02735959179699421,
- -0.04314989969134331,
- 0.021975666284561157,
- 0.0663229376077652,
- -0.05949888750910759,
- -0.017209423705935478,
- 0.021448558196425438,
- -0.051094137132167816,
- -0.0076252492144703865,
- 0.10126392543315887,
- -0.1012936532497406,
- -0.008964220993220806,
- 0.030117571353912354,
- 0.13352401554584503,
- 0.03043188899755478,
- 0.06752531230449677,
- 0.02662227861583233,
- 0.12954844534397125,
- -0.0019926722161471844,
- -0.07871869206428528,
- 0.059397656470537186,
- -0.008948380127549171,
- 0.10033517330884933,
- 0.15357139706611633,
- -0.006645744200795889,
- -0.05487440153956413,
- -0.02133547142148018,
- 0.0361226387321949,
- 0.06340454518795013,
- -0.02656247839331627,
- 0.048995621502399445,
- -0.012141509912908077,
- -0.0004214466316625476,
- -0.0278826542198658,
- 0.040792591869831085,
- -0.03206990659236908,
- 0.01264819223433733,
- -0.036786798387765884,
- 0.05045923963189125,
- -0.01657417230308056,
- -0.019988572224974632,
- -0.037264056503772736,
- -0.027161749079823494,
- 0.003045594785362482,
- 0.0681985467672348,
- 0.07521548122167587,
- 0.007983564399182796,
- 0.01764192059636116,
- 0.040107470005750656,
- -0.019437046721577644,
- 0.014067689888179302,
- 0.01755564473569393,
- 0.06674190610647202,
- -0.038167037069797516,
- 0.020452890545129776,
- -0.008720790036022663,
- 0.007633693516254425,
- 0.01967708207666874,
- 0.05264715105295181,
- -0.0313245952129364,
- -0.0024501080624759197,
- 0.028334537521004677,
- -0.031225940212607384,
- -0.07930612564086914,
- -0.004358032718300819,
- -0.035881590098142624,
- -0.06936497241258621,
- -0.0016867765225470066,
- -0.10056529194116592,
- -0.05992980673909187,
- -0.0034450264647603035,
- 0.043195996433496475,
- 0.014458016492426395,
- 0.09970898926258087,
- -0.0018622142961248755,
- 0.007743175141513348,
- 0.005608228966593742,
- -0.04691155627369881,
- 0.038064345717430115,
- -0.02517666108906269,
- 0.04394226893782616,
- 0.02992086112499237,
- -1.2332136201109734e-8,
- -0.04180971160531044,
- -0.03823382034897804,
- 0.018070105463266373,
- -0.0446697436273098,
- 0.019151804968714714,
- 0.10283005982637405,
- 0.05314037203788757,
- -0.03126370161771774,
- 0.04132457077503204,
- -0.07824739813804626,
- -0.02113141305744648,
- 0.04069942235946655,
- 0.05887376144528389,
- 0.10555839538574219,
- 0.004643809981644154,
- -0.06039365381002426,
- -0.030823839828372,
- 0.07140078395605087,
- -0.023847633972764015,
- 0.05048659071326256,
- -0.03750025853514671,
- -0.036161769181489944,
- 0.051150597631931305,
- -0.036873746663331985,
- -0.02463057078421116,
- -0.007420884445309639,
- -0.030986549332737923,
- 0.13665275275707245,
- -0.0008737515308894217,
- -0.025541530922055244,
- -0.011504733003675938,
- 0.06710753589868546,
- 0.004853823687881231,
- -0.10332074016332626,
- 0.06693264842033386,
- -0.028480898588895798,
- -0.023660778999328613,
- 0.022284945473074913,
- 0.07326476275920868,
- 0.0347200445830822,
- -0.00700877932831645,
- -0.03606032952666283,
- 0.12487678974866867,
- -0.02653331495821476,
- -0.01618293672800064,
- 0.07433366030454636,
- -0.03784717246890068,
- -0.06377269327640533,
- 0.0012594192521646619,
- -0.01545084547251463,
- -0.02453780360519886,
- -0.01672711968421936,
- -0.0029134019277989864,
- 0.00710055697709322,
- 0.053938545286655426,
- -0.009627752006053925,
- 0.04648829624056816,
- 0.006697467062622309,
- -0.08208315074443817,
- 0.04430726170539856,
- 0.08825735002756119,
- 0.06632072478532791,
- -0.007845968008041382,
- 0.01637260615825653
- ]
- },
- {
- "keyword": "movie",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.12154903262853622,
- 0.02156057581305504,
- -0.07355909049510956,
- 0.04547964408993721,
- -0.042408183217048645,
- -0.030229689553380013,
- 0.12851746380329132,
- 0.01386809442192316,
- 0.11874847114086151,
- -0.03528382256627083,
- 0.01845594309270382,
- -0.042426399886608124,
- 0.0431411974132061,
- 0.020281188189983368,
- -0.06410574913024902,
- 0.028395850211381912,
- 0.05133260414004326,
- -0.010900991968810558,
- -0.09052707999944687,
- -0.040011290460824966,
- -0.05337667837738991,
- -0.01689273677766323,
- -0.0038660273421555758,
- 0.06717552244663239,
- -0.048635534942150116,
- 0.02864455059170723,
- 0.0004938498022966087,
- 0.023179076611995697,
- -0.09227516502141953,
- -0.0782071202993393,
- 0.030068019405007362,
- 0.07779909670352936,
- -0.04024339094758034,
- 0.02084837108850479,
- -0.03496966511011124,
- 0.012830790132284164,
- -0.005582715850323439,
- -0.017207585275173187,
- -0.035387393087148666,
- 0.009820234030485153,
- -0.04260155186057091,
- -0.11700597405433655,
- 0.034426335245370865,
- -0.04260488972067833,
- 0.0684594064950943,
- -0.015784861519932747,
- 0.028778469190001488,
- 0.0009396553505212069,
- 0.0448911115527153,
- 0.03436121344566345,
- -0.08827809989452362,
- 0.05202817916870117,
- -0.008341556414961815,
- -0.015890980139374733,
- 0.011788099072873592,
- -0.04063619673252106,
- -0.03706707805395126,
- -0.053181808441877365,
- 0.02582034468650818,
- -0.036913082003593445,
- 0.07464488595724106,
- -0.025025542825460434,
- -0.015198263339698315,
- -0.0022576400078833103,
- 0.07398433983325958,
- 0.04878604784607887,
- 0.017505893483757973,
- -0.0006889841752126813,
- -0.008922767825424671,
- -0.027498386800289154,
- -0.00966032687574625,
- -0.005065717734396458,
- -0.0073618111200630665,
- 0.0008620096486993134,
- 0.016691135242581367,
- -0.029887963086366653,
- -0.013532270677387714,
- -0.014895213767886162,
- 0.013820286840200424,
- -0.019670136272907257,
- 0.042035721242427826,
- -0.10904837399721146,
- -0.06457255035638809,
- 0.048904821276664734,
- -0.013161678798496723,
- -0.00027642984059639275,
- 0.07731766253709793,
- 0.0026165915187448263,
- -0.043838318437337875,
- 0.07144859433174133,
- -0.0995851531624794,
- -0.06729694455862045,
- 0.01635717786848545,
- 0.08047010749578476,
- -0.09277272969484329,
- 0.00719876354560256,
- -0.03754572197794914,
- -0.0058569167740643024,
- 0.03997770696878433,
- 0.2400505393743515,
- 0.02587500773370266,
- -0.0001423619978595525,
- -0.0046823699958622456,
- -0.0241116713732481,
- 0.07137522101402283,
- -0.056962184607982635,
- -0.02362797036767006,
- 0.040005892515182495,
- -0.01254785805940628,
- -0.01582956686615944,
- -0.02129971981048584,
- 0.005899224895983934,
- 0.04864408075809479,
- 0.03946268558502197,
- 0.055132266134023666,
- 0.022185342386364937,
- 0.047793347388505936,
- -0.0400199219584465,
- -0.014361396431922913,
- -0.008753051050007343,
- 0.0968436524271965,
- 0.0129129309207201,
- -0.03817448019981384,
- -0.04091661050915718,
- -0.0848577469587326,
- -0.057831596583127975,
- 0.0522078312933445,
- -3.251411864244678e-33,
- 0.023538032546639442,
- -0.08285290747880936,
- 0.01365408394485712,
- 0.025084499269723892,
- -0.034831684082746506,
- 0.022338487207889557,
- 0.008902388624846935,
- 0.023466303944587708,
- -0.03448403999209404,
- 0.06574439257383347,
- -0.049879804253578186,
- -0.05579500272870064,
- -0.0570012666285038,
- -0.018157532438635826,
- 0.10876429826021194,
- 0.1000911146402359,
- -0.0003594225854612887,
- 0.019957920536398888,
- -0.052607957273721695,
- -0.04243985190987587,
- -0.054428622126579285,
- 0.05302262306213379,
- -0.02945694513618946,
- 0.08427979797124863,
- -0.02761693298816681,
- -0.02436741255223751,
- -0.0029275454580783844,
- -0.004623765591531992,
- 0.058278296142816544,
- 0.05800857022404671,
- 0.029157159850001335,
- 0.07065017521381378,
- 0.017336959019303322,
- -0.013023784384131432,
- 0.05432702973484993,
- -0.106500044465065,
- -0.02447819709777832,
- -0.04449917748570442,
- -0.008578315377235413,
- -0.02681443840265274,
- -0.017309119924902916,
- 0.03466987609863281,
- -0.07157423347234726,
- -0.017778828740119934,
- -0.010755769908428192,
- 0.020210199058055878,
- 0.09798071533441544,
- 0.0578746423125267,
- -0.058141063898801804,
- 0.0784570500254631,
- 0.038576800376176834,
- -0.004075792618095875,
- -0.025895746424794197,
- -0.03293388709425926,
- -0.05667535215616226,
- 0.0008746113744564354,
- 0.02281472459435463,
- -0.05205686762928963,
- 0.033840447664260864,
- -0.050478968769311905,
- 0.04774096980690956,
- 0.10081587731838226,
- -0.06020950898528099,
- -0.020775094628334045,
- 0.02041742578148842,
- 0.01608109287917614,
- 0.034694746136665344,
- -0.043823059648275375,
- 0.049224283546209335,
- -0.01827484555542469,
- -0.041873324662446976,
- 0.016558608040213585,
- 0.03916829079389572,
- -0.014454800635576248,
- 0.011510309763252735,
- 0.017950590699911118,
- 0.07852480560541153,
- 0.05234942212700844,
- -0.11731620877981186,
- -0.026629937812685966,
- -0.019501062110066414,
- -0.0018697844352573156,
- -0.0010047490941360593,
- 0.04279414191842079,
- -0.0033179207239300013,
- -0.016951190307736397,
- -0.06486567109823227,
- -0.09686379879713058,
- 0.07191404700279236,
- 0.048720624297857285,
- -0.004114996176213026,
- -0.013071171939373016,
- 0.02418094128370285,
- 0.04925300553441048,
- 0.0397784560918808,
- 2.988779793977093e-33,
- 0.009272566996514797,
- -0.02548183873295784,
- -0.024562213569879532,
- 0.009044008329510689,
- 0.09176622331142426,
- -0.03802959993481636,
- -0.004822195041924715,
- 0.02977973408997059,
- 0.06619808822870255,
- 0.03701194003224373,
- -0.13258366286754608,
- -0.051076214760541916,
- 0.11207065731287003,
- 0.0378681942820549,
- 0.054004669189453125,
- -0.011874392628669739,
- 0.05040273442864418,
- -0.04364147409796715,
- 0.024075588211417198,
- 0.04272434115409851,
- -0.03938308730721474,
- -0.060454100370407104,
- 0.0158967524766922,
- -0.10519161820411682,
- -0.019876062870025635,
- 0.04001593962311745,
- 0.033255238085985184,
- -0.0015985246282070875,
- 0.0040420424193143845,
- -0.020630069077014923,
- 0.02814447320997715,
- -0.018413621932268143,
- -0.03922872990369797,
- 0.040670763701200485,
- -0.038038257509469986,
- 0.1373516023159027,
- 0.12861524522304535,
- -0.06716868281364441,
- -0.010779494419693947,
- -0.08726010471582413,
- 0.015644947066903114,
- -0.026388701051473618,
- -0.07491592317819595,
- 0.14402782917022705,
- 0.00017902643594425172,
- -0.013102739118039608,
- 0.047503456473350525,
- 0.09654731303453445,
- 0.003311380511149764,
- 0.01033999677747488,
- -0.1048494428396225,
- 0.03295529633760452,
- 0.02338617667555809,
- -0.036632638424634933,
- -0.029969729483127594,
- -0.013999775983393192,
- -0.0208211038261652,
- 0.035208769142627716,
- -0.011698395013809204,
- 0.015121341682970524,
- -0.04639536887407303,
- 0.011138956993818283,
- -0.04404979944229126,
- -0.045275911688804626,
- -0.11465010792016983,
- 0.05699941888451576,
- -0.06666513532400131,
- 0.02432885952293873,
- 0.016321226954460144,
- 0.0007785186753608286,
- -0.013259433209896088,
- 0.06916428357362747,
- -0.0953003540635109,
- 0.026313049718737602,
- -0.03438183665275574,
- -0.03172313794493675,
- -0.08932773023843765,
- 0.03564419969916344,
- -0.016223520040512085,
- -0.03453424200415611,
- 0.030964288860559464,
- -0.06143875792622566,
- -0.03463662415742874,
- -0.0021950018126517534,
- -0.0211990624666214,
- 0.014524443075060844,
- 0.09292246401309967,
- 0.03749554976820946,
- 0.009673635475337505,
- 0.015616361983120441,
- -0.024720052257180214,
- -0.012590681202709675,
- 0.01855633221566677,
- -0.0484575591981411,
- -0.0024735326878726482,
- -1.2442583852134703e-8,
- 0.011039326898753643,
- 0.00008057517698034644,
- -0.03599187731742859,
- -0.07941310852766037,
- 0.0430997870862484,
- 0.03802019730210304,
- 0.012878642417490482,
- 0.10796501487493515,
- 0.028076976537704468,
- 0.04783234745264053,
- -0.038939476013183594,
- 0.0363120399415493,
- 0.040477171540260315,
- 0.05181417241692543,
- -0.034122731536626816,
- 0.01593027077615261,
- 0.05581025406718254,
- 0.027832232415676117,
- -0.03508637472987175,
- 0.06962917745113373,
- -0.01827617548406124,
- -0.04006723314523697,
- 0.07743897289037704,
- 0.05316644906997681,
- -0.0010386341018602252,
- -0.03859914094209671,
- -0.018543319776654243,
- 0.06541937589645386,
- 0.028779286891222,
- 0.03196612745523453,
- -0.021877113729715347,
- 0.1027795672416687,
- -0.039611488580703735,
- -0.03403393551707268,
- 0.0004734392277896404,
- -0.06542526930570602,
- 0.0366840735077858,
- -0.01045088842511177,
- 0.03795533999800682,
- -0.06250456720590591,
- -0.001818591495975852,
- 0.08213011175394058,
- 0.060853417962789536,
- -0.027437569573521614,
- 0.037056148052215576,
- 0.033086784183979034,
- 0.08452621102333069,
- -0.08792732656002045,
- -0.0033911492209881544,
- -0.0019013333367183805,
- -0.038436759263277054,
- 0.025265073403716087,
- -0.0037416224367916584,
- 0.050604838877916336,
- 0.05737631395459175,
- -0.009393289685249329,
- 0.00023619842249900103,
- 0.051739320158958435,
- -0.05838032066822052,
- 0.02307008020579815,
- 0.1440378576517105,
- -0.01804099790751934,
- 0.05236612260341644,
- 0.0312587134540081
- ]
- },
- {
- "keyword": "film",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0999644547700882,
- 0.03309350088238716,
- -0.03203331679105759,
- 0.02720028907060623,
- -0.008290654048323631,
- 0.027321945875883102,
- 0.13415318727493286,
- 0.02284375950694084,
- 0.05203333869576454,
- -0.051514994353055954,
- 0.01655448041856289,
- -0.05768856406211853,
- 0.03768925368785858,
- 0.03546399623155594,
- -0.07301490008831024,
- 0.035681676119565964,
- 0.07368431240320206,
- -0.022050920873880386,
- -0.049667228013277054,
- -0.02023978717625141,
- -0.01363291684538126,
- -0.0005953724030405283,
- 0.020360369235277176,
- 0.04514346271753311,
- -0.048457931727170944,
- 0.025810707360506058,
- 0.01283701229840517,
- 0.035887207835912704,
- -0.055951960384845734,
- -0.05667802318930626,
- 0.02029656432569027,
- 0.10803944617509842,
- -0.0029962463304400444,
- 0.006695179734379053,
- -0.017725786194205284,
- -0.00713738426566124,
- -0.0042726038955152035,
- -0.027660582214593887,
- -0.04068697616457939,
- -0.03590738773345947,
- -0.03322073072195053,
- -0.08638167381286621,
- -0.009638271294534206,
- -0.06110517308115959,
- 0.012551052495837212,
- -0.0018095525447279215,
- 0.03705503046512604,
- 0.01815333589911461,
- 0.020553745329380035,
- 0.0310482457280159,
- -0.08069664239883423,
- 0.04771003872156143,
- -0.022793952375650406,
- 0.005078943911939859,
- -0.007937155663967133,
- -0.0881349965929985,
- 0.0068699950352311134,
- -0.04457397013902664,
- 0.0331464484333992,
- -0.05944608524441719,
- 0.05944959819316864,
- 0.003285693936049938,
- -0.044986825436353683,
- 0.026293622329831123,
- 0.1192321851849556,
- 0.0311532374471426,
- 0.00998656451702118,
- 0.024255070835351944,
- -0.021612398326396942,
- -0.07383066415786743,
- -0.01357417181134224,
- -0.00860952865332365,
- -0.017905887216329575,
- -0.017842233180999756,
- -0.015339380130171776,
- -0.06637274473905563,
- -0.03476175293326378,
- -0.031147439032793045,
- 0.005120603833347559,
- -0.0690942108631134,
- 0.07971899211406708,
- -0.1186167299747467,
- -0.049449339509010315,
- 0.04394390434026718,
- -0.011321871541440487,
- 0.023632114753127098,
- 0.04789886996150017,
- 0.011857409030199051,
- -0.043008603155612946,
- 0.09744613617658615,
- -0.09339333325624466,
- -0.014025036245584488,
- -0.03981368616223335,
- 0.017901752144098282,
- -0.06686651706695557,
- -0.01715056598186493,
- -0.0812874585390091,
- -0.012120986357331276,
- 0.06654179096221924,
- 0.26245278120040894,
- -0.013408275321125984,
- -0.021398358047008514,
- -0.04531916230916977,
- -0.03460364416241646,
- 0.051394667476415634,
- -0.06489057838916779,
- -0.005132355727255344,
- -0.0014972796197980642,
- -0.009474877268075943,
- 0.005199024453759193,
- -0.02779163047671318,
- -0.0019264796283096075,
- -0.002980415476486087,
- 0.037984780967235565,
- 0.1143174022436142,
- 0.044824134558439255,
- 0.03934678062796593,
- -0.019074246287345886,
- -0.02189583331346512,
- 0.021562401205301285,
- 0.04813656583428383,
- 0.012321563437581062,
- -0.045472580939531326,
- -0.01760598085820675,
- -0.10389880836009979,
- -0.09081532061100006,
- 0.03871726244688034,
- -5.006905780680236e-33,
- 0.05441570654511452,
- -0.06448761373758316,
- 0.04570632055401802,
- 0.019868439063429832,
- -0.050623469054698944,
- 0.01611834205687046,
- -0.002055773511528969,
- 0.021087391301989555,
- -0.06519078463315964,
- 0.02672148495912552,
- 0.003227519104257226,
- -0.03429413586854935,
- -0.032449886202812195,
- -0.013596597127616405,
- 0.11508122831583023,
- 0.09027636051177979,
- -0.004468756262212992,
- 0.0033893065992742777,
- -0.01539603527635336,
- 0.004670397378504276,
- -0.07236289232969284,
- 0.0874616950750351,
- -0.030854636803269386,
- 0.03277304023504257,
- -0.037482257932424545,
- -0.02343369647860527,
- -0.0033914640080183744,
- -0.009076148271560669,
- 0.054472845047712326,
- 0.035568322986364365,
- 0.02535370923578739,
- 0.10913492739200592,
- 0.04758504405617714,
- -0.039798326790332794,
- 0.05814117565751076,
- -0.05182483792304993,
- -0.02765965834259987,
- -0.08124743402004242,
- 0.03098968416452408,
- -0.009750762023031712,
- -0.052902042865753174,
- 0.02236291579902172,
- -0.05807575583457947,
- 0.01851879432797432,
- -0.030173243954777718,
- 0.03756578639149666,
- 0.06607388705015182,
- 0.06750945001840591,
- -0.10932755470275879,
- 0.07461567223072052,
- 0.03569331765174866,
- 0.010979583486914635,
- -0.029009148478507996,
- -0.048091623932123184,
- -0.03854995593428612,
- 0.0048384596593678,
- 0.022684618830680847,
- -0.051073625683784485,
- 0.036050088703632355,
- -0.018669500946998596,
- 0.015948789194226265,
- 0.13410088419914246,
- -0.10508162528276443,
- 0.015339032746851444,
- 0.008471239358186722,
- 0.02193264476954937,
- 0.07267353683710098,
- -0.027596022933721542,
- 0.06294304877519608,
- -0.03255591541528702,
- -0.11423945426940918,
- -0.0034910014364868402,
- 0.04400583729147911,
- 0.0011720772599801421,
- 0.04476824030280113,
- 0.015172156505286694,
- 0.027200426906347275,
- 0.029662342742085457,
- -0.09780559688806534,
- -0.005179476458579302,
- -0.06887593865394592,
- 0.013339822180569172,
- 0.002763851545751095,
- 0.03466837480664253,
- -0.00575843034312129,
- 0.014750244095921516,
- -0.08479882776737213,
- -0.03970945626497269,
- 0.0802297443151474,
- 0.049152519553899765,
- -0.06004497781395912,
- -0.03327754884958267,
- 0.03354697674512863,
- 0.08065208047628403,
- 0.024402379989624023,
- 4.0747306789545004e-33,
- 0.005971147678792477,
- -0.03743698075413704,
- -0.03015878237783909,
- 0.03554807975888252,
- 0.06259196251630783,
- -0.027190789580345154,
- -0.011054703034460545,
- 0.04012268781661987,
- 0.09882915765047073,
- 0.030068054795265198,
- -0.12201996147632599,
- -0.05553402751684189,
- 0.05550514534115791,
- 0.056309595704078674,
- -0.007297249045222998,
- -0.022634485736489296,
- 0.07265949249267578,
- -0.05523703992366791,
- -0.009712303057312965,
- 0.035095274448394775,
- 0.004053778946399689,
- -0.057923220098018646,
- 0.02225346304476261,
- -0.06837015599012375,
- -0.040575552731752396,
- 0.05670458823442459,
- 0.006194198504090309,
- 0.022884555160999298,
- 0.03090820088982582,
- -0.017559634521603584,
- 0.031131910160183907,
- -0.05169735476374626,
- 0.006314526777714491,
- 0.032591450959444046,
- -0.05490635335445404,
- 0.1077193021774292,
- 0.15953418612480164,
- -0.04054301604628563,
- -0.04142431914806366,
- -0.042313069105148315,
- 0.00228626630268991,
- 0.02380499057471752,
- -0.03283703327178955,
- 0.13308851420879364,
- -0.009884479455649853,
- -0.001264973427169025,
- 0.01542175654321909,
- 0.05789053067564964,
- -0.03203769400715828,
- -0.006073985248804092,
- -0.10197294503450394,
- 0.06125405803322792,
- 0.038682788610458374,
- -0.053564269095659256,
- -0.005059732589870691,
- -0.03428086265921593,
- -0.04179045930504799,
- 0.015329939313232899,
- 0.011083222925662994,
- 0.01142281387001276,
- -0.00840616412460804,
- 0.02264108881354332,
- -0.06630879640579224,
- -0.09146223217248917,
- -0.07709957659244537,
- 0.07599666714668274,
- -0.045592937618494034,
- 0.040074728429317474,
- 0.01205761544406414,
- -0.013216116465628147,
- 0.06675481796264648,
- 0.04152476787567139,
- -0.06154024600982666,
- 0.009107155725359917,
- -0.07099636644124985,
- -0.02456147037446499,
- -0.07859361916780472,
- -0.0019221395486965775,
- 0.023038307204842567,
- -0.06323469430208206,
- 0.005862446501851082,
- -0.10348737984895706,
- 0.0390016995370388,
- 0.043348073959350586,
- 0.012143237516283989,
- 0.027406243607401848,
- 0.0641971305012703,
- 0.021713020280003548,
- 0.02286434732377529,
- 0.00635777460411191,
- 0.006777201779186726,
- 0.005865010432898998,
- 0.0649493858218193,
- -0.029862379655241966,
- -0.016934802755713463,
- -1.2842191310369344e-8,
- -0.022402262315154076,
- -0.006102852523326874,
- 0.005865942686796188,
- -0.07559414207935333,
- 0.028027040883898735,
- -0.014054259285330772,
- 0.015981417149305344,
- 0.1045917198061943,
- 0.05863921716809273,
- -0.021392809227108955,
- -0.06567738205194473,
- 0.011604906059801579,
- 0.06767520308494568,
- 0.041396792978048325,
- -0.03937005624175072,
- 0.008978161960840225,
- 0.04075660929083824,
- -0.002434916328638792,
- -0.015448384918272495,
- 0.04936738684773445,
- -0.010982552543282509,
- -0.04475755617022514,
- 0.06252207607030869,
- 0.02876606211066246,
- -0.044709157198667526,
- -0.031736526638269424,
- 0.03573993220925331,
- 0.0011307902168482542,
- 0.04284340515732765,
- 0.05079272761940956,
- -0.01780082657933235,
- 0.06936083734035492,
- -0.019405359402298927,
- -0.011744581162929535,
- 0.020738879218697548,
- -0.05498054623603821,
- 0.05584172159433365,
- -0.03107168897986412,
- 0.002216711873188615,
- -0.07723654806613922,
- -0.04843162000179291,
- 0.0726880207657814,
- 0.02889089100062847,
- -0.006491923704743385,
- 0.10112321376800537,
- 0.007144586648792028,
- 0.079538993537426,
- -0.0898667499423027,
- -0.021564021706581116,
- -0.03398510441184044,
- -0.04312668740749359,
- 0.028286147862672806,
- -0.006634335964918137,
- 0.0840955302119255,
- 0.07080204039812088,
- 0.0034124860540032387,
- 0.01535839308053255,
- 0.0392843633890152,
- -0.07049331068992615,
- 0.04483255743980408,
- 0.08523957431316376,
- -0.013044662773609161,
- 0.07111243158578873,
- 0.019051574170589447
- ]
- },
- {
- "keyword": "clip",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03969212621450424,
- 0.06431837379932404,
- 0.0043251654133200645,
- -0.051443617790937424,
- 0.09855828434228897,
- 0.034413307905197144,
- 0.07950473576784134,
- 0.004619277082383633,
- 0.12094752490520477,
- -0.03134570270776749,
- 0.06173260137438774,
- -0.060815777629613876,
- -0.08679801225662231,
- -0.015042344108223915,
- -0.04747000336647034,
- 0.008486478589475155,
- -0.04877566918730736,
- 0.09610754996538162,
- -0.05627170205116272,
- -0.022746846079826355,
- 0.019001612439751625,
- -0.00681403698399663,
- -0.03675340116024017,
- 0.005738299805670977,
- 0.05515674501657486,
- 0.011334864422678947,
- -0.060781821608543396,
- -0.00008418584184255451,
- 0.003612966975197196,
- -0.020300129428505898,
- 0.04130362719297409,
- -0.0730120837688446,
- 0.144120454788208,
- 0.031088268384337425,
- -0.06518997251987457,
- -0.022725405171513557,
- -0.0030480409041047096,
- 0.029017245396971703,
- 0.042641814798116684,
- -0.03821151331067085,
- -0.013974768109619617,
- -0.08869994431734085,
- -0.022831832990050316,
- -0.036707572638988495,
- -0.05958613008260727,
- 0.031146187335252762,
- -0.017359629273414612,
- 0.01183269452303648,
- 0.09992086887359619,
- 0.09238848835229874,
- -0.07097935676574707,
- -0.026721380650997162,
- -0.026658501476049423,
- -0.023928530514240265,
- 0.034653156995773315,
- 0.026675762608647346,
- 0.07774752378463745,
- 0.020955465734004974,
- 0.04403223097324371,
- -0.01657523773610592,
- 0.06697260588407516,
- -0.032818786799907684,
- -0.08680184930562973,
- 0.06372743844985962,
- 0.023464849218726158,
- -0.03870278224349022,
- -0.0012982303742319345,
- -0.03367302939295769,
- -0.06744291633367538,
- -0.029086368158459663,
- -0.03735281527042389,
- 0.014512000605463982,
- -0.048640478402376175,
- 0.015780923888087273,
- -0.02360294759273529,
- -0.04215851053595543,
- 0.03161732107400894,
- -0.054862815886735916,
- -0.01605411246418953,
- 0.05450025200843811,
- 0.007257131859660149,
- -0.09469204396009445,
- 0.051842838525772095,
- 0.1064596101641655,
- 0.018100952729582787,
- 0.04736558720469475,
- 0.039208199828863144,
- 0.005782563704997301,
- -0.027888020500540733,
- 0.014009219594299793,
- -0.08965852111577988,
- 0.024593066424131393,
- 0.034862421452999115,
- 0.021006498485803604,
- -0.005833325441926718,
- -0.03976592421531677,
- -0.08072623610496521,
- -0.043255776166915894,
- 0.04195846617221832,
- 0.299113005399704,
- 0.04352552816271782,
- 0.0647239163517952,
- 0.031095415353775024,
- -0.01012103259563446,
- -0.03608803451061249,
- 0.011770977638661861,
- -0.026683390140533447,
- -0.013957123272120953,
- 0.003840408753603697,
- -0.01851542666554451,
- 0.015711473301053047,
- 0.006451030261814594,
- 0.03481468930840492,
- -0.005755264777690172,
- 0.03828229382634163,
- -0.04311728850007057,
- -0.02365700714290142,
- -0.034740157425403595,
- -0.00012773506750818342,
- -0.026119818910956383,
- 0.052386410534381866,
- 0.029570048674941063,
- -0.13096384704113007,
- 0.0599113330245018,
- 0.03962977975606918,
- -0.033720988780260086,
- 0.024602392688393593,
- -5.592596943003395e-33,
- 0.036866169422864914,
- -0.04074741527438164,
- -0.014858800917863846,
- -0.008152173832058907,
- 0.010139070451259613,
- 0.0011306734522804618,
- -0.0015339077217504382,
- -0.07048950344324112,
- -0.06731588393449783,
- -0.022279566153883934,
- 0.037582818418741226,
- -0.03322894126176834,
- -0.01731785759329796,
- -0.07784528285264969,
- 0.013670215383172035,
- -0.03045050799846649,
- 0.01608623005449772,
- 0.09117201715707779,
- -0.019096042960882187,
- 0.050018373876810074,
- -0.02063467726111412,
- 0.02423296496272087,
- -0.009539550170302391,
- 0.09330764412879944,
- 0.02740149013698101,
- -0.01153750903904438,
- 0.01012667641043663,
- -0.017287669703364372,
- 0.05310633033514023,
- 0.042466070502996445,
- -0.039352525025606155,
- -0.04143238067626953,
- 0.0017480467213317752,
- -0.04604840651154518,
- -0.01488921046257019,
- 0.027824971824884415,
- 0.03838913515210152,
- 0.0036227006930857897,
- -0.004149002954363823,
- -0.024559512734413147,
- 0.043882548809051514,
- 0.025885706767439842,
- -0.02544691413640976,
- 0.00868629477918148,
- -0.07224544882774353,
- -0.0794236809015274,
- 0.039191897958517075,
- 0.14236555993556976,
- -0.0740828886628151,
- 0.048015765845775604,
- 0.07224573194980621,
- -0.013022691011428833,
- -0.0398622490465641,
- -0.04883229732513428,
- -0.06357982009649277,
- -0.0019648070447146893,
- -0.008099743165075779,
- -0.03841063007712364,
- 0.016261417418718338,
- 0.068162702023983,
- 0.013275905512273312,
- 0.11972571909427643,
- -0.04646111652255058,
- -0.002786235651001334,
- 0.0046805934980511665,
- -0.01726973056793213,
- 0.026683438569307327,
- 0.03923962265253067,
- 0.005734284874051809,
- 0.007105056196451187,
- -0.10246285051107407,
- -0.010507066734135151,
- -0.02013188786804676,
- -0.021400075405836105,
- -0.06118586286902428,
- -0.01843922771513462,
- -0.029697440564632416,
- -0.019659657031297684,
- -0.011937643401324749,
- -0.020195044577121735,
- -0.061114948242902756,
- -0.04707277938723564,
- 0.04542098566889763,
- -0.05260496214032173,
- 0.02207016944885254,
- -0.011375351808965206,
- 0.00753311300650239,
- -0.08906909823417664,
- 0.011462303809821606,
- -0.04586946964263916,
- -0.10043507814407349,
- -0.031024519354104996,
- -0.026828423142433167,
- -0.0020890962332487106,
- 0.042999740689992905,
- 5.141304457913564e-33,
- 0.01488755363970995,
- 0.03165233135223389,
- 0.005033239256590605,
- 0.1261746883392334,
- 0.047508690506219864,
- 0.03955024853348732,
- 0.023501604795455933,
- 0.04971778020262718,
- -0.09100168943405151,
- -0.025688864290714264,
- -0.048708103597164154,
- -0.03734999895095825,
- -0.018972650170326233,
- 0.032914720475673676,
- 0.0074655706994235516,
- -0.00600634329020977,
- 0.025781754404306412,
- 0.04665454104542732,
- -0.06682347506284714,
- -0.0037677884101867676,
- 0.005215235520154238,
- -0.14855335652828217,
- 0.10335232317447662,
- 0.027658887207508087,
- -0.08771044760942459,
- 0.02958681434392929,
- 0.06906645745038986,
- -0.015570923686027527,
- 0.03255686163902283,
- -0.0148716289550066,
- 0.025610050186514854,
- -0.0011771281715482473,
- -0.05921461060643196,
- 0.042920563369989395,
- -0.014216396026313305,
- 0.14004771411418915,
- 0.05438704416155815,
- 0.06409648060798645,
- 0.03575272485613823,
- -0.04670730233192444,
- 0.03392257168889046,
- 0.03218334913253784,
- -0.006380818318575621,
- 0.0817776471376419,
- -0.03990517556667328,
- 0.007931160740554333,
- 0.04480278491973877,
- 0.12506000697612762,
- -0.04655161499977112,
- 0.06575340777635574,
- -0.0753997191786766,
- -0.012898634187877178,
- -0.03356071189045906,
- 0.03116401471197605,
- -0.024515850469470024,
- 0.031004315242171288,
- -0.03728287294507027,
- 0.00406842865049839,
- -0.004570924676954746,
- -0.011893807910382748,
- -0.023101916536688805,
- 0.08971845358610153,
- -0.1190168485045433,
- -0.020234955474734306,
- 0.07806573063135147,
- -0.006334047764539719,
- 0.0092353206127882,
- 0.02199682593345642,
- -0.024449359625577927,
- -0.001506507396697998,
- -0.0337761752307415,
- 0.08300362527370453,
- 0.06426762789487839,
- -0.06554334610700607,
- -0.0006657876074314117,
- 0.05155051127076149,
- -0.11236483603715897,
- 0.03804642707109451,
- -0.05673139914870262,
- 0.046301376074552536,
- -0.0045287045650184155,
- -0.07415314763784409,
- 0.017618542537093163,
- 0.0012780784163624048,
- 0.05096488818526268,
- 0.0614662803709507,
- 0.04856827110052109,
- 0.05508384481072426,
- -0.03344622626900673,
- -0.03616652265191078,
- 0.0008170144283212721,
- 0.051326505839824677,
- 0.03997098654508591,
- 0.01874540187418461,
- 0.006244491785764694,
- -1.3512728713749311e-8,
- -0.01649921014904976,
- 0.03878450766205788,
- 0.0027007712051272392,
- -0.013233316130936146,
- 0.023221664130687714,
- 0.08644407242536545,
- -0.013072931207716465,
- -0.09410008788108826,
- 0.044377945363521576,
- -0.053582269698381424,
- 0.0253595057874918,
- -0.046931155025959015,
- 0.025970986112952232,
- 0.04306342452764511,
- 0.008990089409053326,
- -0.0477634035050869,
- -0.05064384639263153,
- 0.032924145460128784,
- -0.02559678629040718,
- 0.05071491748094559,
- -0.04544835537672043,
- -0.07820089906454086,
- 0.05910041928291321,
- -0.019468335434794426,
- -0.025778753682971,
- -0.03105146437883377,
- -0.06436371803283691,
- 0.08209404349327087,
- 0.04213124141097069,
- 0.007995330728590488,
- 0.021009651944041252,
- 0.05817670375108719,
- -0.08120974898338318,
- -0.06233673170208931,
- 0.005415629129856825,
- -0.00021758781804237515,
- -0.01335564162582159,
- 0.011418021284043789,
- 0.06573211401700974,
- 0.023694833740592003,
- 0.019732890650629997,
- -0.0028243856504559517,
- 0.05902447924017906,
- 0.008039383217692375,
- -0.04157084599137306,
- -0.023446371778845787,
- 0.12367580085992813,
- -0.05943470448255539,
- -0.006344528403133154,
- 0.0055586532689630985,
- -0.037089794874191284,
- -0.07470568269491196,
- 0.03360137715935707,
- 0.07584886252880096,
- 0.06062310189008713,
- -0.04775764048099518,
- 0.02803366631269455,
- -0.02620372362434864,
- -0.018847204744815826,
- 0.05500670522451401,
- 0.0642925575375557,
- 0.012542614713311195,
- -0.019691186025738716,
- 0.00969462189823389
- ]
- },
- {
- "keyword": "recording",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.033585045486688614,
- 0.028849683701992035,
- -0.04078435152769089,
- -0.03446001559495926,
- 0.012694803066551685,
- 0.015521205961704254,
- 0.06563492864370346,
- -0.004577368963509798,
- 0.00047270997310988605,
- -0.043312445282936096,
- 0.02978701703250408,
- -0.05590145289897919,
- -0.036272384226322174,
- 0.009732209146022797,
- -0.03231583163142204,
- -0.05650830641388893,
- 0.005439926404505968,
- 0.04480241239070892,
- -0.0484841950237751,
- -0.0034096776507794857,
- -0.03917577117681503,
- -0.011364927515387535,
- 0.04040684923529625,
- 0.061772413551807404,
- -0.009913341142237186,
- 0.035048894584178925,
- -0.04688442870974541,
- 0.0060808248817920685,
- 0.05458404868841171,
- -0.06941497325897217,
- -0.04068920016288757,
- -0.001754355151206255,
- 0.06587117165327072,
- 0.025358114391565323,
- -0.018801609054207802,
- -0.032490409910678864,
- 0.017789114266633987,
- -0.023581022396683693,
- -0.019857941195368767,
- -0.054696522653102875,
- -0.00002310219861101359,
- -0.017795955762267113,
- 0.02300565131008625,
- -0.01975436322391033,
- -0.08363526314496994,
- 0.050042081624269485,
- 0.024420831352472305,
- 0.007019614800810814,
- 0.005540618672966957,
- 0.0494903028011322,
- -0.0761834979057312,
- 0.010916262865066528,
- 0.007167044561356306,
- 0.025924595072865486,
- -0.07046669721603394,
- -0.005643078591674566,
- 0.007227317430078983,
- 0.013935779221355915,
- -0.015289605595171452,
- 0.015301207080483437,
- -0.012191963382065296,
- 0.018350597470998764,
- -0.06125199422240257,
- 0.005715555977076292,
- -0.039742361754179,
- 0.01944541558623314,
- -0.005186964757740498,
- 0.08977863192558289,
- 0.04647639021277428,
- 0.011196166276931763,
- -0.09456198662519455,
- 0.05431618168950081,
- -0.049865081906318665,
- 0.02260570041835308,
- 0.0423012301325798,
- -0.09255019575357437,
- -0.008362331427633762,
- 0.0005777159240096807,
- 0.040337078273296356,
- -0.02516491897404194,
- 0.07383841276168823,
- -0.06625259667634964,
- -0.047401126474142075,
- -0.004607353825122118,
- 0.04749025031924248,
- -0.013698752969503403,
- 0.06118457019329071,
- -0.004938888363540173,
- -0.05290556326508522,
- -0.015985606238245964,
- -0.1453768014907837,
- -0.018725799396634102,
- -0.01734454371035099,
- -0.04977648705244064,
- -0.09587910026311874,
- 0.01150980219244957,
- 0.01961280032992363,
- 0.03290712833404541,
- 0.05368300899863243,
- 0.19487488269805908,
- 0.061002444475889206,
- 0.036527473479509354,
- -0.006416201591491699,
- 0.01269852090626955,
- -0.0035520712845027447,
- -0.10185312479734421,
- -0.028331585228443146,
- 0.00207919511012733,
- 0.019019028171896935,
- -0.019429747015237808,
- -0.010114670731127262,
- 0.09185898303985596,
- -0.040002260357141495,
- -0.010017071850597858,
- 0.1847994178533554,
- 0.05900140851736069,
- -0.10862105339765549,
- 0.047551706433296204,
- -0.05079242214560509,
- -0.03325910493731499,
- 0.016040774062275887,
- -0.060290612280368805,
- -0.09690632671117783,
- 0.04359195753931999,
- -0.0020115969236940145,
- -0.07873497158288956,
- 0.07315779477357864,
- -4.325854843198527e-33,
- 0.10886116325855255,
- 0.0059429313987493515,
- -0.00017083858256228268,
- 0.004067722242325544,
- 0.024388719350099564,
- 0.0664447471499443,
- -0.08193941414356232,
- 0.021163305267691612,
- 0.003023657249286771,
- 0.08365675806999207,
- 0.010823497548699379,
- -0.021808849647641182,
- -0.01037011481821537,
- 0.02099834941327572,
- 0.0942593440413475,
- 0.05748604238033295,
- -0.10751455277204514,
- 0.057930152863264084,
- -0.041257694363594055,
- -0.015057049691677094,
- -0.03396174684166908,
- -0.02881486341357231,
- 0.055528610944747925,
- 0.10031234472990036,
- 0.05663226172327995,
- 0.025741709396243095,
- 0.027845997363328934,
- -0.035649463534355164,
- 0.09223941713571548,
- -0.016324011608958244,
- -0.016447249799966812,
- -0.04784661531448364,
- 0.009107078425586224,
- -0.09869368374347687,
- 0.062353670597076416,
- 0.02778962440788746,
- 0.005816658493131399,
- -0.05368456989526749,
- -0.00003991611083620228,
- -0.019191617146134377,
- 0.017467299476265907,
- 0.055286433547735214,
- -0.049471378326416016,
- -0.11799473315477371,
- 0.02373519353568554,
- 0.013409851118922234,
- 0.015833256766200066,
- 0.09617549926042557,
- -0.046984195709228516,
- 0.06566044688224792,
- 0.011992409825325012,
- -0.0013654800131917,
- -0.06235558167099953,
- -0.028111593797802925,
- -0.06189800798892975,
- 0.07034488767385483,
- 0.05252276360988617,
- -0.05320010706782341,
- 0.025564728304743767,
- 0.028432264924049377,
- 0.05788816884160042,
- 0.03362381085753441,
- 0.005039398558437824,
- -0.021361129358410835,
- -0.04556259512901306,
- 0.006814565975219011,
- 0.048426058143377304,
- -0.025366121903061867,
- 0.08681228011846542,
- -0.05365051329135895,
- -0.09660503268241882,
- -0.04957342520356178,
- -0.021509353071451187,
- -0.05533554404973984,
- 0.02428574301302433,
- 0.05010004714131355,
- -0.05122801288962364,
- -0.010485022328794003,
- -0.058085132390260696,
- 0.07779743522405624,
- -0.03820737078785896,
- 0.03891311213374138,
- -0.029648078605532646,
- 0.03363507613539696,
- 0.017636386677622795,
- 0.03281980752944946,
- -0.020251113921403885,
- -0.05111382529139519,
- -0.04354235157370567,
- 0.07907950133085251,
- -0.0719892829656601,
- 0.09139682352542877,
- 0.03748542442917824,
- 0.008798743598163128,
- -0.05622285231947899,
- 3.3648371508654434e-33,
- 0.009297172538936138,
- 0.09267766773700714,
- 0.01258891448378563,
- 0.034728243947029114,
- 0.0015198163455352187,
- -0.027461854740977287,
- 0.11921461671590805,
- 0.01868058368563652,
- -0.03300981968641281,
- 0.02016887068748474,
- -0.05702326446771622,
- -0.06803448498249054,
- 0.031093575060367584,
- 0.021947626024484634,
- -0.017918305471539497,
- -0.04674815759062767,
- 0.011233530007302761,
- 0.002725828904658556,
- -0.021178308874368668,
- 0.04866711050271988,
- 0.029288802295923233,
- -0.0019167966675013304,
- 0.10972192138433456,
- 0.029398154467344284,
- -0.015278809703886509,
- 0.025552701205015182,
- 0.01948143169283867,
- 0.0879693478345871,
- 0.04359981790184975,
- -0.07599875330924988,
- 0.05304650589823723,
- -0.04861730709671974,
- -0.002321218140423298,
- -0.06057499721646309,
- 0.013042435050010681,
- 0.005812163930386305,
- 0.13466531038284302,
- 0.02932448498904705,
- -0.03538145869970322,
- -0.021273694932460785,
- 0.01495700515806675,
- 0.044403739273548126,
- 0.01396953035145998,
- 0.06159856542944908,
- 0.00328176561743021,
- -0.060544054955244064,
- -0.08246913552284241,
- 0.10314320027828217,
- -0.030440017580986023,
- 0.031211310997605324,
- -0.052773598581552505,
- -0.011624788865447044,
- -0.0042685032822191715,
- -0.052971355617046356,
- 0.01656806655228138,
- 0.006039183586835861,
- -0.009339497424662113,
- -0.05172012373805046,
- 0.01687433384358883,
- 0.05950700864195824,
- -0.0336381271481514,
- 0.03922324255108833,
- -0.04201117530465126,
- -0.06950639188289642,
- 0.01220590341836214,
- 0.05235477536916733,
- 0.042297422885894775,
- 0.01280389167368412,
- -0.004068772774189711,
- 0.08803512901067734,
- 0.022233789786696434,
- 0.0702517181634903,
- 0.024730755016207695,
- 0.01876523159444332,
- -0.0389847494661808,
- -0.00848960131406784,
- -0.19180993735790253,
- -0.0505119152367115,
- -0.02624865062534809,
- -0.07548831403255463,
- -0.07484941929578781,
- -0.1130392774939537,
- 0.01691316068172455,
- 0.01903020404279232,
- -0.006157440133392811,
- 0.005958341062068939,
- 0.0966070294380188,
- -0.035670582205057144,
- -0.020904872566461563,
- -0.029113996773958206,
- 0.007693432737141848,
- 0.036959581077098846,
- -0.012920119799673557,
- -0.023339347913861275,
- -0.019456392154097557,
- -1.1065484528671732e-8,
- -0.10065821558237076,
- -0.0007224472938105464,
- 0.046767979860305786,
- -0.033477783203125,
- 0.006016016472131014,
- -0.05986570566892624,
- 0.08771544694900513,
- 0.017067881301045418,
- 0.07872655242681503,
- -0.04605245217680931,
- 0.05124453455209732,
- -0.07829830795526505,
- -0.0007461979403160512,
- 0.07527541369199753,
- 0.05651925131678581,
- -0.054654575884342194,
- 0.0420960895717144,
- 0.02044028230011463,
- -0.06325147300958633,
- -0.018318437039852142,
- 0.029871100559830666,
- -0.021228691563010216,
- 0.009514079429209232,
- 0.010062740184366703,
- 0.05143754556775093,
- -0.11748563498258591,
- 0.07288731634616852,
- 0.11238443851470947,
- 0.009607157669961452,
- -0.023361913859844208,
- -0.02143452875316143,
- 0.04297503083944321,
- 0.057695236057043076,
- -0.018273279070854187,
- 0.012293726205825806,
- -0.07968232780694962,
- -0.002644793363288045,
- 0.025087179616093636,
- 0.004847394768148661,
- -0.032077375799417496,
- -0.08137887716293335,
- 0.051741499453783035,
- 0.012733247131109238,
- -0.0005806083790957928,
- -0.006960419937968254,
- -0.002196407411247492,
- 0.06772707402706146,
- -0.027798810973763466,
- -0.022888556122779846,
- -0.0019641700200736523,
- -0.07669616490602493,
- 0.007874065078794956,
- 0.07772193104028702,
- 0.06893317401409149,
- 0.05708011984825134,
- 0.04427988454699516,
- 0.021084584295749664,
- -0.03030947782099247,
- -0.04021651670336723,
- 0.030176838859915733,
- 0.04980592057108879,
- 0.01843738928437233,
- -0.05120084062218666,
- 0.021728098392486572
- ]
- },
- {
- "keyword": "animation",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05749145522713661,
- 0.021321633830666542,
- -0.0037969080731272697,
- -0.047736432403326035,
- -0.026445740833878517,
- 0.00781641248613596,
- 0.0868273600935936,
- -0.015355001203715801,
- 0.07434818893671036,
- -0.05825642868876457,
- 0.05244750902056694,
- -0.02131018228828907,
- -0.03205752745270729,
- 0.023623540997505188,
- -0.06832060217857361,
- -0.013806099072098732,
- 0.00574261462315917,
- 0.08148500323295593,
- -0.03053618036210537,
- -0.0483739897608757,
- 0.040339983999729156,
- -0.04992556944489479,
- -0.010472632944583893,
- -0.02007906325161457,
- 0.029311228543519974,
- 0.059693120419979095,
- -0.05064404383301735,
- -0.016987908631563187,
- 0.07075061649084091,
- -0.08961550891399384,
- -0.004013356752693653,
- -0.03221932426095009,
- 0.06420288980007172,
- -0.021207749843597412,
- -0.09715621173381805,
- 0.027370549738407135,
- 0.023572305217385292,
- 0.03213335946202278,
- -0.08883938193321228,
- -0.002042028121650219,
- -0.0780278742313385,
- 0.031176678836345673,
- 0.03534352779388428,
- -0.060535646975040436,
- 0.04304054379463196,
- 0.05755217745900154,
- 0.01691921055316925,
- -0.042552314698696136,
- -0.02195044420659542,
- 0.017037929967045784,
- -0.11090300232172012,
- -0.08117810636758804,
- -0.02039266563951969,
- -0.01992843858897686,
- 0.0028969815466552973,
- 0.0013769586803391576,
- 0.07159103453159332,
- -0.02936979942023754,
- 0.027173025533556938,
- -0.09348519891500473,
- 0.024315325543284416,
- 0.04434620216488838,
- 0.02968594990670681,
- 0.09355489909648895,
- 0.04217763990163803,
- -0.05836282670497894,
- 0.04629736393690109,
- -0.05876697227358818,
- -0.01654847152531147,
- -0.04142891988158226,
- -0.07642883062362671,
- -0.10132481157779694,
- 0.017184734344482422,
- -0.08145054429769516,
- -0.052568044513463974,
- -0.03070889040827751,
- 0.04598715901374817,
- 0.008778009563684464,
- 0.008517889305949211,
- -0.01206099335104227,
- 0.07976680994033813,
- -0.09305987507104874,
- -0.06813029944896698,
- -0.041778307408094406,
- -0.031855858862400055,
- 0.09106536209583282,
- 0.012296889908611774,
- 0.02301430143415928,
- -0.027603689581155777,
- 0.10582102835178375,
- -0.0338040329515934,
- 0.1024312973022461,
- 0.054455678910017014,
- -0.01575123704969883,
- -0.013531964272260666,
- -0.01723289117217064,
- -0.03456342965364456,
- -0.12151788175106049,
- 0.05848711356520653,
- 0.1944092959165573,
- -0.027448361739516258,
- -0.06810833513736725,
- 0.08128850907087326,
- -0.01802244782447815,
- 0.015686526894569397,
- -0.006570261437445879,
- 0.013104625977575779,
- -0.03602633252739906,
- 0.02365965023636818,
- 0.05738444626331329,
- -0.02272781915962696,
- -0.048501159995794296,
- -0.0028871556278318167,
- 0.03377068042755127,
- 0.08192535489797592,
- 0.03416043892502785,
- -0.06592757254838943,
- -0.027421651408076286,
- 0.036635760217905045,
- -0.006510274484753609,
- 0.11996539682149887,
- -0.019329819828271866,
- -0.01178241241723299,
- 0.011937732808291912,
- 0.0031276766676455736,
- -0.0784207433462143,
- -0.0021606411319226027,
- -4.0492676346057665e-33,
- 0.029646992683410645,
- -0.002984386868774891,
- -0.018529703840613365,
- 0.022703232243657112,
- 0.024890540167689323,
- -0.021782711148262024,
- -0.03190401569008827,
- -0.06212141364812851,
- -0.029300300404429436,
- 0.04355715215206146,
- -0.052470359951257706,
- 0.03035762906074524,
- -0.010232828557491302,
- 0.04299037903547287,
- 0.08012612909078598,
- -0.04782596230506897,
- 0.05033307522535324,
- 0.028801754117012024,
- 0.004757625516504049,
- 0.023550186306238174,
- -0.026318680495023727,
- 0.007943589240312576,
- -0.020326638594269753,
- 0.005801346153020859,
- -0.027124537155032158,
- 0.0633520856499672,
- -0.009115912951529026,
- -0.02675684355199337,
- 0.005357180722057819,
- -0.02164231799542904,
- -0.022337444126605988,
- 0.03155214712023735,
- -0.10124043375253677,
- -0.07895641028881073,
- 0.04592268168926239,
- -0.05406024307012558,
- 0.016907531768083572,
- -0.06590486317873001,
- 0.015782296657562256,
- 0.053757622838020325,
- -0.014730160124599934,
- -0.07007880508899689,
- -0.05711949244141579,
- 0.031538669019937515,
- 0.04296735301613808,
- 0.027312349528074265,
- 0.11475426703691483,
- 0.12988832592964172,
- -0.07265052199363708,
- 0.09860386699438095,
- 0.04074824973940849,
- 0.0060179103165864944,
- -0.00022096268367022276,
- -0.03285657986998558,
- 0.042992252856492996,
- 0.03377845510840416,
- 0.056728534400463104,
- -0.027054304257035255,
- -0.018504522740840912,
- 0.034164149314165115,
- 0.002455590758472681,
- 0.03515464812517166,
- 0.011684633791446686,
- -0.05204056203365326,
- -0.01104691717773676,
- -0.018973300233483315,
- 0.02241518907248974,
- -0.014767955057322979,
- 0.04124154523015022,
- 0.020571958273649216,
- -0.020657997578382492,
- -0.07295282185077667,
- 0.10028380900621414,
- -0.018027519807219505,
- -0.03251177445054054,
- 0.007617797702550888,
- -0.05671214684844017,
- -0.0032781483605504036,
- -0.07248058915138245,
- -0.03594665974378586,
- -0.08363746851682663,
- -0.05784476548433304,
- -0.018295755609869957,
- -0.008051445707678795,
- 0.043036796152591705,
- -0.0172528438270092,
- 0.0037810534704476595,
- 0.011716359294950962,
- 0.0019546926487237215,
- 0.016367293894290924,
- -0.1093614473938942,
- -0.010220063850283623,
- 0.06748924404382706,
- 0.056413013488054276,
- 0.021789226680994034,
- 4.095794435695282e-33,
- 0.020506124943494797,
- -0.012708373367786407,
- -0.07922714203596115,
- 0.08066191524267197,
- 0.009638982824981213,
- 0.058781132102012634,
- 0.019822215661406517,
- 0.0529860258102417,
- -0.06355533003807068,
- 0.008015366271138191,
- -0.02145596221089363,
- 0.004735040478408337,
- 0.04622788727283478,
- -0.00200290628708899,
- 0.015329325571656227,
- -0.003230236703529954,
- 0.11234001815319061,
- -0.03127298504114151,
- -0.021636392921209335,
- 0.06180201470851898,
- -0.012155302800238132,
- -0.04507911950349808,
- -0.06392478942871094,
- -0.025622157379984856,
- -0.027414225041866302,
- 0.13308359682559967,
- 0.04168771579861641,
- 0.03735718876123428,
- -0.05899396166205406,
- 0.04440036043524742,
- -0.01960286870598793,
- -0.08850599080324173,
- 0.05716604366898537,
- 0.035323671996593475,
- -0.05251522362232208,
- 0.03760363534092903,
- 0.04084977135062218,
- -0.06044723838567734,
- -0.01433567050844431,
- -0.09057754278182983,
- -0.002400605473667383,
- 0.007767116650938988,
- 0.01536084059625864,
- 0.08777669072151184,
- -0.01707419566810131,
- 0.03210623189806938,
- -0.01806255243718624,
- 0.08245594054460526,
- -0.0025489043910056353,
- 0.011884810402989388,
- -0.07682068645954132,
- 0.030236540362238884,
- 0.036356303840875626,
- -0.13816873729228973,
- 0.0535292886197567,
- -0.021127015352249146,
- 0.035029515624046326,
- -0.02726053074002266,
- 0.029354671016335487,
- 0.015512275509536266,
- -0.00896844919770956,
- -0.019053282216191292,
- 0.017779188230633736,
- -0.04232911393046379,
- -0.05484355241060257,
- 0.03608468547463417,
- -0.037661902606487274,
- -0.0905446708202362,
- -0.050224728882312775,
- -0.001245116232894361,
- 0.09784574806690216,
- 0.07070999592542648,
- 0.012469451874494553,
- -0.03379356861114502,
- -0.06831399351358414,
- -0.035048726946115494,
- 0.008508014492690563,
- 0.015945667400956154,
- 0.02311481535434723,
- -0.07031621783971786,
- -0.0017653207760304213,
- -0.041155170649290085,
- 0.027032842859625816,
- 0.03873157128691673,
- -0.06726501882076263,
- 0.06518857926130295,
- -0.0724133849143982,
- 0.013888899236917496,
- 0.009802271611988544,
- 0.0608392171561718,
- -0.025151612237095833,
- 0.09486939758062363,
- 0.06528011709451675,
- 0.024214278906583786,
- 0.040256112813949585,
- -1.1403768596096597e-8,
- -0.04661066085100174,
- -0.0060082911513745785,
- 0.09293089807033539,
- -0.09343016892671585,
- 0.014201823621988297,
- 0.06995245069265366,
- 0.0843900814652443,
- -0.0011123879812657833,
- -0.019664272665977478,
- -0.10397587716579437,
- 0.046091191470623016,
- 0.012811662629246712,
- 0.10608724504709244,
- 0.11313502490520477,
- 0.034211572259664536,
- 0.0603184811770916,
- 0.013299035839736462,
- -0.00996272824704647,
- -0.028694091364741325,
- 0.007921005599200726,
- 0.0004551211604848504,
- -0.013336355797946453,
- -0.04521546885371208,
- -0.003442326793447137,
- -0.0851031094789505,
- 0.010328716598451138,
- 0.00262926472350955,
- 0.02566426992416382,
- 0.007520244922488928,
- 0.02928978018462658,
- -0.01408451423048973,
- 0.040101729333400726,
- 0.05723169445991516,
- -0.039130136370658875,
- -0.009090008214116096,
- -0.04145020246505737,
- -0.03205499053001404,
- -0.012185023166239262,
- -0.013086273334920406,
- -0.005114909261465073,
- -0.007098768372088671,
- 0.05928909033536911,
- 0.0909828469157219,
- -0.011448628269135952,
- -0.011246198788285255,
- 0.018279114738106728,
- 0.0022199763916432858,
- -0.15486566722393036,
- -0.011053199879825115,
- 0.08349128067493439,
- 0.0012715630000457168,
- -0.05449840426445007,
- -0.027602531015872955,
- 0.054381780326366425,
- 0.10108114778995514,
- 0.020946888253092766,
- 0.04973985627293587,
- 0.024599434807896614,
- -0.03623923286795616,
- 0.1056530773639679,
- 0.032884322106838226,
- -0.020208122208714485,
- 0.04286864772439003,
- -0.022610558196902275
- ]
- },
- {
- "keyword": "gif",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.002649954752996564,
- -0.03938478231430054,
- -0.009192709811031818,
- -0.03208407014608383,
- 0.0006128930253908038,
- -0.07973986864089966,
- 0.08576630800962448,
- 0.009492016397416592,
- 0.14779813587665558,
- 0.015730077400803566,
- 0.053394071757793427,
- 0.00061579211615026,
- 0.021051578223705292,
- 0.02651834860444069,
- -0.10331358760595322,
- -0.04797716438770294,
- -0.047109536826610565,
- 0.03929214924573898,
- -0.117873914539814,
- 0.018573790788650513,
- -0.07698405534029007,
- 0.027501074597239494,
- -0.05126873403787613,
- 0.0019503715448081493,
- 0.009066254831850529,
- 0.06411691755056381,
- -0.04437263309955597,
- 0.0038187801837921143,
- -0.024469587951898575,
- -0.060978516936302185,
- -0.054694268852472305,
- 0.02393517829477787,
- 0.08726537227630615,
- 0.06110677868127823,
- -0.010417786426842213,
- 0.08535602688789368,
- -0.07242953032255173,
- 0.006902278866618872,
- -0.030262773856520653,
- 0.04810011386871338,
- -0.01592286489903927,
- -0.04124777019023895,
- 0.06158164143562317,
- -0.014422853477299213,
- 0.04780508577823639,
- 0.04165158048272133,
- 0.048776961863040924,
- -0.031127268448472023,
- 0.007064864970743656,
- 0.03499593585729599,
- -0.06186113879084587,
- 0.00012649009295273572,
- -0.016791680827736855,
- -0.017536304891109467,
- 0.03621387109160423,
- -0.015551536343991756,
- 0.11239121109247208,
- -0.07068643718957901,
- -0.014900410547852516,
- 0.01205820869654417,
- 0.03703327849507332,
- 0.06626623123884201,
- -0.04798746109008789,
- 0.007928187027573586,
- 0.08242977410554886,
- -0.04056413844227791,
- 0.00006321793625829741,
- 0.02438856102526188,
- -0.0296353567391634,
- -0.04280771687626839,
- -0.0008573532104492188,
- -0.06859488785266876,
- -0.045097287744283676,
- -0.009405780583620071,
- -0.005083542782813311,
- 0.023641925305128098,
- 0.02348705381155014,
- -0.008616393432021141,
- 0.021318607032299042,
- -0.01027639303356409,
- 0.029323769733309746,
- -0.04418030381202698,
- 0.04747756943106651,
- 0.018055962398648262,
- 0.019627785310149193,
- 0.07089386880397797,
- 0.04790091514587402,
- 0.0036786342971026897,
- -0.07764869183301926,
- 0.01997612603008747,
- -0.10430996865034103,
- 0.016016598790884018,
- 0.04072616249322891,
- 0.05005461722612381,
- -0.10494937747716904,
- -0.036898575723171234,
- -0.03109603375196457,
- -0.04169834777712822,
- -0.07614770531654358,
- 0.23565460741519928,
- 0.04093145206570625,
- -0.06877493858337402,
- 0.12341416627168655,
- -0.07552836090326309,
- 0.039305705577135086,
- 0.07251722365617752,
- -0.023736536502838135,
- 0.08016622811555862,
- 0.022966129705309868,
- 0.014350720681250095,
- -0.08804062753915787,
- -0.04183404892683029,
- 0.0053983088582754135,
- 0.005132527556270361,
- -0.029384585097432137,
- 0.005097825080156326,
- -0.019069423899054527,
- -0.010479467920958996,
- -0.022746136412024498,
- -0.10331926494836807,
- 0.11170203983783722,
- -0.03077573888003826,
- -0.03766002878546715,
- 0.0001233087677974254,
- -0.07659390568733215,
- -0.09138847887516022,
- 0.027485379949212074,
- 2.615714621224562e-33,
- 0.020732929930090904,
- -0.09265583008527756,
- 0.07460867613554001,
- 0.021909063681960106,
- -0.009007429704070091,
- -0.01075853779911995,
- -0.07301655411720276,
- -0.10529802739620209,
- 0.008522656746208668,
- 0.04696395993232727,
- -0.04209132492542267,
- 0.010124551132321358,
- -0.0241120345890522,
- -0.06350739300251007,
- -0.0002392247406532988,
- -0.03971950337290764,
- -0.01704465225338936,
- 0.026804711669683456,
- 0.05260450392961502,
- -0.001945223892107606,
- -0.03208940476179123,
- -0.0013968825805932283,
- 0.012146389111876488,
- 0.03341294825077057,
- 0.023352375254034996,
- -0.0065193562768399715,
- 0.02848929725587368,
- -0.07822410762310028,
- -0.023887818679213524,
- -0.03406790643930435,
- -0.026548001915216446,
- -0.027149440720677376,
- -0.013726350851356983,
- -0.032301679253578186,
- -0.005961605813354254,
- -0.09455011039972305,
- 0.015190141275525093,
- 0.0032501539681106806,
- 0.013843742199242115,
- 0.02943122200667858,
- 0.03046359121799469,
- -0.04429483786225319,
- -0.019737934693694115,
- 0.009551857598125935,
- 0.07115613669157028,
- 0.0035990781616419554,
- 0.07918805629014969,
- 0.0013740563299506903,
- -0.06166193261742592,
- 0.07125191390514374,
- 0.058591749519109726,
- -0.03265589103102684,
- -0.07286546379327774,
- -0.013027284294366837,
- -0.034606169909238815,
- -0.01422366127371788,
- 0.0659627765417099,
- 0.012842651456594467,
- -0.028456328436732292,
- 0.02179686352610588,
- 0.001217242213897407,
- 0.03418797254562378,
- -0.023896528407931328,
- -0.05470721423625946,
- 0.023743152618408203,
- -0.041325993835926056,
- -0.009300018660724163,
- -0.020324600860476494,
- 0.029443610459566116,
- -0.008129891939461231,
- -0.044964056462049484,
- -0.02186513878405094,
- 0.02913510985672474,
- -0.031459178775548935,
- -0.07740254700183868,
- -0.048666324466466904,
- 0.036581091582775116,
- 0.07379446178674698,
- -0.011154575273394585,
- -0.0019976336043328047,
- -0.1150740310549736,
- -0.13937285542488098,
- 0.04060303419828415,
- -0.0035680243745446205,
- -0.0494510643184185,
- 0.004918093327432871,
- 0.0021518610883504152,
- -0.05061198025941849,
- -0.055925365537405014,
- 0.03409029170870781,
- -0.0031862608157098293,
- 0.07352444529533386,
- 0.033781975507736206,
- 0.023934563621878624,
- 0.007548361551016569,
- -1.6848377060725155e-33,
- 0.03722278028726578,
- -0.008345196023583412,
- 0.009881977923214436,
- 0.04900252819061279,
- 0.07224227488040924,
- -0.02035016007721424,
- 0.09407425671815872,
- -0.04395082965493202,
- 0.07044593244791031,
- 0.043897081166505814,
- 0.0010291313519701362,
- 0.03474397957324982,
- -0.04229174181818962,
- 0.0002406197745585814,
- 0.06696385145187378,
- 0.007153711747378111,
- 0.07357944548130035,
- -0.029586071148514748,
- -0.017269808799028397,
- 0.08764589577913284,
- 0.0017746860394254327,
- -0.005470592994242907,
- 0.12468590587377548,
- 0.01617850922048092,
- -0.031329572200775146,
- 0.0944662094116211,
- 0.027162080630660057,
- -0.013117297552525997,
- -0.07591447234153748,
- -0.029066892340779305,
- 0.04875243827700615,
- 0.006726659368723631,
- 0.006347214803099632,
- 0.003002879908308387,
- 0.049957919865846634,
- 0.04979333281517029,
- 0.028476987034082413,
- -0.04312074929475784,
- -0.025737857446074486,
- 0.05724688991904259,
- 0.04505407065153122,
- 0.040564458817243576,
- 0.04422600567340851,
- 0.09057129919528961,
- -0.022601556032896042,
- -0.003203252563253045,
- 0.024013232439756393,
- 0.013038980774581432,
- 0.03207806870341301,
- 0.10841614753007889,
- -0.09467282146215439,
- -0.022555910050868988,
- -0.01765584945678711,
- -0.06748411059379578,
- -0.013645933009684086,
- -0.05518527328968048,
- 0.008784453384578228,
- 0.06503678858280182,
- 0.0020889814477413893,
- -0.0006899142172187567,
- -0.038802649825811386,
- 0.006458870135247707,
- 0.03522958233952522,
- -0.005661139264702797,
- 0.006132085341960192,
- -0.011170824989676476,
- -0.10102928429841995,
- -0.01550613809376955,
- -0.05800354853272438,
- 0.008024850860238075,
- 0.009891411289572716,
- 0.02127981185913086,
- -0.09732113778591156,
- 0.0005611198721453547,
- -0.07840687036514282,
- -0.021095866337418556,
- -0.0014202421298250556,
- 0.09466411173343658,
- -0.012662452645599842,
- -0.002012731274589896,
- 0.0629081055521965,
- 0.0016700770938768983,
- -0.06906799972057343,
- -0.03159920871257782,
- -0.014766726642847061,
- -0.014868303202092648,
- 0.02186780422925949,
- -0.056317754089832306,
- 0.03562145680189133,
- -0.07502375543117523,
- -0.019303157925605774,
- 0.01210852898657322,
- 0.03898607939481735,
- 0.0664629340171814,
- 0.050786446779966354,
- -1.7695915843773946e-8,
- -0.03993803635239601,
- 0.024197716265916824,
- -0.028124501928687096,
- -0.09905266761779785,
- 0.04597390815615654,
- 0.11039935797452927,
- 0.031651925295591354,
- -0.04883969947695732,
- 0.0202937088906765,
- -0.07421451807022095,
- 0.11354093998670578,
- 0.09178955107927322,
- 0.066129170358181,
- 0.06860760599374771,
- 0.043467387557029724,
- 0.013337484560906887,
- -0.03835572302341461,
- -0.007899903692305088,
- 0.0004926298861391842,
- 0.05807311460375786,
- -0.03619340434670448,
- -0.046346716582775116,
- -0.01919604279100895,
- 0.03409074619412422,
- -0.07365474104881287,
- 0.011129431426525116,
- 0.003952600061893463,
- 0.14672315120697021,
- -0.08920058608055115,
- 0.04515983164310455,
- 0.08871666342020035,
- -0.006199453491717577,
- -0.035214025527238846,
- -0.057534899562597275,
- 0.008292398415505886,
- -0.020852426066994667,
- 0.013874164782464504,
- 0.03287215903401375,
- 0.09960983693599701,
- 0.010773103684186935,
- -0.038468725979328156,
- 0.04666924476623535,
- 0.0992075577378273,
- -0.0030582547187805176,
- -0.09228403121232986,
- -0.0019373844843357801,
- 0.08152169734239578,
- -0.051821038126945496,
- 0.011611009016633034,
- 0.02088800258934498,
- 0.014021935872733593,
- -0.04491685330867767,
- 0.016416847705841064,
- 0.02210744470357895,
- 0.05454817786812782,
- -0.03159172460436821,
- 0.026984436437487602,
- 0.03935965895652771,
- -0.022812914103269577,
- 0.09732876718044281,
- 0.026451541110873222,
- 0.030978653579950333,
- 0.046112652868032455,
- 0.014778420329093933
- ]
- },
- {
- "keyword": "stream",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04531658813357353,
- -0.03569622337818146,
- -0.04908506199717522,
- -0.07406314462423325,
- 0.06186111271381378,
- 0.021806063130497932,
- 0.01803457923233509,
- 0.009908623062074184,
- 0.042894523590803146,
- -0.012299527414143085,
- -0.06394495069980621,
- -0.04404827207326889,
- -0.08191106468439102,
- 0.02703605405986309,
- -0.04931192472577095,
- -0.06537266820669174,
- -0.0296697448939085,
- 0.023696020245552063,
- -0.04780639335513115,
- -0.05464345961809158,
- -0.01295848935842514,
- -0.011778200045228004,
- -0.05047659948468208,
- -0.00632300553843379,
- 0.059044476598501205,
- 0.0399833619594574,
- 0.027120670303702354,
- 0.06040726974606514,
- 0.067361980676651,
- -0.09780797362327576,
- 0.016671065241098404,
- -0.03638977184891701,
- -0.001847812905907631,
- -0.016258321702480316,
- -0.0875466912984848,
- -0.0423821359872818,
- -0.001563970698043704,
- -0.00667135464027524,
- -0.08115941286087036,
- 0.023197321221232414,
- 0.05728666111826897,
- -0.07272828370332718,
- -0.009405610151588917,
- -0.005329705774784088,
- -0.05317046493291855,
- 0.08058048039674759,
- -0.014844555407762527,
- 0.01465159934014082,
- 0.056489795446395874,
- 0.08427412807941437,
- -0.08702568709850311,
- 0.0014195195399224758,
- -0.014260455034673214,
- 0.09649287164211273,
- -0.008441445417702198,
- 0.01539781503379345,
- -0.018066752701997757,
- 0.037185993045568466,
- 0.0060012368485331535,
- -0.011323937214910984,
- 0.041073963046073914,
- -0.030071884393692017,
- -0.07899847626686096,
- 0.02551020123064518,
- -0.020294517278671265,
- -0.01655561663210392,
- -0.02522716298699379,
- 0.15923331677913666,
- 0.05128497630357742,
- -0.10947597026824951,
- -0.06912458688020706,
- 0.04441012814640999,
- -0.00717958202585578,
- -0.005949437152594328,
- -0.0010307239135727286,
- -0.056593433022499084,
- 0.058186691254377365,
- -0.03520882502198219,
- 0.00004631580304703675,
- 0.028504081070423126,
- 0.018724313005805016,
- -0.03318760171532631,
- -0.03226418048143387,
- -0.004704930819571018,
- 0.03716207295656204,
- 0.009806808084249496,
- 0.03846220672130585,
- 0.006068955175578594,
- -0.02480052039027214,
- 0.03948238492012024,
- -0.1276600956916809,
- 0.09111540764570236,
- 0.09657534956932068,
- -0.0030298384372144938,
- -0.051272086799144745,
- 0.09228380024433136,
- 0.01985432766377926,
- -0.06838229298591614,
- 0.00912175327539444,
- 0.2317115068435669,
- 0.016674118116497993,
- 0.045161426067352295,
- 0.020476430654525757,
- -0.0036506701726466417,
- 0.04058763384819031,
- -0.07900281250476837,
- -0.0003479827137198299,
- 0.13785061240196228,
- 0.05340820550918579,
- -0.023226479068398476,
- 0.002218996873125434,
- 0.010732647031545639,
- 0.01972527801990509,
- -0.056009575724601746,
- 0.030057057738304138,
- 0.09052751213312149,
- -0.05111776292324066,
- 0.0352618508040905,
- 0.005020949058234692,
- 0.03188345953822136,
- 0.01946175843477249,
- -0.04835793375968933,
- -0.07751123607158661,
- 0.007214978337287903,
- 0.07561051100492477,
- -0.01584535464644432,
- 0.03626828268170357,
- -4.7748294003653306e-33,
- 0.026622779667377472,
- -0.0557611919939518,
- 0.0034796828404068947,
- 0.03658996894955635,
- -0.013197439722716808,
- 0.03772875294089317,
- 0.017915144562721252,
- -0.005650975275784731,
- -0.02740670181810856,
- -0.06933405995368958,
- -0.06749803572893143,
- 0.002986549399793148,
- -0.06437989324331284,
- 0.015122233889997005,
- 0.020117435604333878,
- -0.05869803577661514,
- 0.0034028126392513514,
- 0.043930813670158386,
- -0.005841100122779608,
- 0.0255125779658556,
- -0.03226328268647194,
- -0.02313566394150257,
- -0.009075106121599674,
- -0.015173140913248062,
- -0.022838344797492027,
- -0.02867598459124565,
- -0.014505259692668915,
- -0.1069149598479271,
- 0.019203223288059235,
- 0.031190048903226852,
- 0.015556923113763332,
- -0.017161715775728226,
- -0.053589265793561935,
- -0.023367028683423996,
- 0.04488777369260788,
- -0.11375349014997482,
- -0.052755359560251236,
- -0.04736398160457611,
- -0.013896972872316837,
- -0.0660732239484787,
- 0.014906646683812141,
- 0.020622897893190384,
- -0.0621209554374218,
- -0.060716524720191956,
- -0.03857250511646271,
- -0.042025770992040634,
- -0.024645814672112465,
- 0.018641434609889984,
- -0.08090907335281372,
- -0.0032326148357242346,
- 0.09392449259757996,
- 0.030470600351691246,
- 0.0065275030210614204,
- 0.05711263418197632,
- 0.0026426713448017836,
- 0.01836104691028595,
- -0.012672435492277145,
- 0.016731349751353264,
- 0.027595387771725655,
- 0.031230906024575233,
- 0.026109972968697548,
- 0.11744134873151779,
- -0.01581641472876072,
- -0.03144354000687599,
- 0.032613545656204224,
- -0.01886540651321411,
- 0.09134981781244278,
- 0.013557876460254192,
- 0.046446505934000015,
- -0.04525803029537201,
- -0.08230139315128326,
- -0.0036261221393942833,
- 0.07106604427099228,
- 0.01893550343811512,
- -0.014405833557248116,
- 0.051172446459531784,
- 0.01496334932744503,
- 0.009749036282300949,
- -0.02149352617561817,
- 0.03234626725316048,
- -0.0728544145822525,
- -0.009018618613481522,
- 0.04426489397883415,
- 0.044966623187065125,
- 0.03254653513431549,
- 0.08150927722454071,
- -0.02191442809998989,
- -0.09746357798576355,
- -0.006801501847803593,
- 0.023524342104792595,
- -0.13846328854560852,
- 0.017592186108231544,
- 0.0854291319847107,
- -0.02400216832756996,
- 0.015194948762655258,
- 4.713556757328719e-33,
- -0.05200464650988579,
- -0.03832869604229927,
- -0.0759134516119957,
- 0.03461037948727608,
- 0.05246395617723465,
- -0.023579295724630356,
- 0.04940075799822807,
- 0.05805588513612747,
- 0.05940922722220421,
- 0.06076923385262489,
- -0.032787106931209564,
- -0.0564955435693264,
- -0.0580018050968647,
- 0.024817077443003654,
- 0.0033027068711817265,
- -0.07221103459596634,
- 0.07252736389636993,
- -0.050751108676195145,
- -0.010118252597749233,
- 0.011777653358876705,
- -0.013035728596150875,
- -0.09530409425497055,
- 0.03965746983885765,
- -0.03240817412734032,
- 0.024763768538832664,
- 0.02180376462638378,
- 0.0829455703496933,
- 0.06574860960245132,
- -0.06251804530620575,
- 0.02221018821001053,
- 0.08770520240068436,
- -0.010934920981526375,
- -0.00012718676589429379,
- 0.009847075678408146,
- -0.0030838814564049244,
- 0.07283533364534378,
- 0.11418472975492477,
- 0.10415676236152649,
- 0.012209239415824413,
- 0.03973688557744026,
- 0.06869339197874069,
- 0.03336406126618385,
- 0.010703966952860355,
- 0.03698258474469185,
- 0.055448178201913834,
- 0.02461426705121994,
- -0.07660789042711258,
- 0.052116759121418,
- -0.08462069928646088,
- 0.03778728470206261,
- 0.01240407396107912,
- 0.059715427458286285,
- -0.012234674766659737,
- 0.004180137533694506,
- 0.024867283180356026,
- -0.051204293966293335,
- 0.06000795587897301,
- 0.038271546363830566,
- -0.0036158147267997265,
- -0.012874145060777664,
- 0.00703746173530817,
- -0.0014664868358522654,
- -0.10596736520528793,
- -0.022571057081222534,
- 0.08065638691186905,
- 0.07734867930412292,
- 0.053324583917856216,
- -0.03161303326487541,
- -0.03169747069478035,
- -0.008457135409116745,
- -0.01937626488506794,
- -0.04223141074180603,
- -0.012535636313259602,
- -0.01009106170386076,
- 0.01650385931134224,
- 0.038390979170799255,
- -0.058991678059101105,
- 0.07059092819690704,
- -0.0273175910115242,
- 0.017614709213376045,
- -0.04978521540760994,
- 0.049243997782468796,
- -0.05831105634570122,
- 0.04412800073623657,
- 0.11085761338472366,
- 0.014166180044412613,
- 0.10129821300506592,
- -0.03356415778398514,
- -0.01603190414607525,
- -0.05047076568007469,
- 0.03177478909492493,
- 0.04615093022584915,
- -0.09160145372152328,
- -0.023236850276589394,
- 0.010606829077005386,
- -1.092663914903369e-8,
- -0.06766173243522644,
- 0.0013502874644473195,
- -0.030551783740520477,
- 0.0014634141698479652,
- 0.036806534975767136,
- 0.04577884078025818,
- -0.043032217770814896,
- -0.04983154684305191,
- 0.08476344496011734,
- -0.02729715034365654,
- -0.013891533948481083,
- -0.06120695173740387,
- 0.03494419902563095,
- 0.014836299233138561,
- 0.07959026098251343,
- -0.07684638351202011,
- -0.028729280456900597,
- -0.053283195942640305,
- -0.05290002003312111,
- -0.004281521774828434,
- 0.033947091549634933,
- 0.0246281698346138,
- -0.037755049765110016,
- 0.04884052276611328,
- -0.01941601186990738,
- -0.010561751201748848,
- 0.10197519510984421,
- 0.03145020455121994,
- 0.007745987270027399,
- -0.08979284763336182,
- 0.03421524539589882,
- 0.1033693253993988,
- 0.04291941970586777,
- -0.055002130568027496,
- 0.04978035390377045,
- 0.01334839966148138,
- -0.060400184243917465,
- -0.0035521104000508785,
- 0.0001752708776621148,
- 0.06677190959453583,
- 0.013141341507434845,
- -0.006538635119795799,
- 0.06337239593267441,
- -0.050469592213630676,
- -0.008263726718723774,
- -0.024230122566223145,
- 0.03486735746264458,
- -0.022846095263957977,
- -0.0011220526648685336,
- -0.03873664513230324,
- -0.036496713757514954,
- -0.01058482751250267,
- 0.04422074183821678,
- 0.021811706945300102,
- 0.07686417549848557,
- -0.051583293825387955,
- 0.00021806207951158285,
- -0.11550115793943405,
- -0.04584475979208946,
- 0.04568273946642876,
- 0.12310449779033661,
- 0.06413881480693817,
- -0.011874919757246971,
- 0.029599156230688095
- ]
- },
- {
- "keyword": "broadcast",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.019489016383886337,
- 0.008363079279661179,
- -0.028447449207305908,
- -0.03393953666090965,
- 0.05595141649246216,
- 0.04721638187766075,
- 0.09022928774356842,
- -0.03653332218527794,
- 0.0078000836074352264,
- 0.062028177082538605,
- -0.021855542436242104,
- 0.044273849576711655,
- 0.01294485293328762,
- 0.027539879083633423,
- -0.007814181968569756,
- -0.08780684322118759,
- 0.11212693154811859,
- -0.07250375300645828,
- -0.009724585339426994,
- -0.04876961559057236,
- 0.03642897307872772,
- 0.043911997228860855,
- -0.0587349459528923,
- 0.04229336231946945,
- 0.07537392526865005,
- -0.05491025745868683,
- 0.028172733262181282,
- 0.04847140982747078,
- -0.015281222760677338,
- -0.07612437754869461,
- -0.002402381505817175,
- -0.019729191437363625,
- 0.12733997404575348,
- 0.04478185251355171,
- -0.050231534987688065,
- 0.02679486572742462,
- -0.036357853561639786,
- -0.013098648749291897,
- -0.060750529170036316,
- 0.0630340650677681,
- 0.04796132445335388,
- -0.10251863300800323,
- -0.023241842165589333,
- -0.05696888267993927,
- -0.042748838663101196,
- -0.036913421005010605,
- 0.004971271846443415,
- 0.06773637235164642,
- 0.005562671460211277,
- 0.02797624096274376,
- -0.00225724745541811,
- -0.027987368404865265,
- -0.006442697253078222,
- 0.08695300668478012,
- 0.08345493674278259,
- -0.028087174519896507,
- -0.03757138550281525,
- 0.07534879446029663,
- 0.0010875173611566424,
- 0.04491550102829933,
- 0.040972307324409485,
- -0.004608702380210161,
- -0.10659914463758469,
- 0.036561302840709686,
- 0.02570478431880474,
- -0.03125965967774391,
- 0.010124227963387966,
- 0.04893892630934715,
- 0.006849940400570631,
- -0.06777011603116989,
- -0.014261150732636452,
- 0.040561921894550323,
- 0.007072074804455042,
- -0.03072093240916729,
- 0.012023625895380974,
- -0.010024789720773697,
- 0.03674466535449028,
- -0.07590401917695999,
- 0.004351251292973757,
- -0.0017216107808053493,
- -0.006698057055473328,
- -0.07659553736448288,
- -0.03643311932682991,
- -0.010819162242114544,
- 0.030834577977657318,
- -0.05078518018126488,
- -0.002119711134582758,
- -0.006956447381526232,
- 0.006370140239596367,
- 0.06255535036325455,
- -0.14267942309379578,
- 0.04280102998018265,
- 0.03234904259443283,
- 0.014703118242323399,
- -0.08845794200897217,
- 0.03130897134542465,
- -0.02408689633011818,
- -0.06780874729156494,
- -0.011522872373461723,
- 0.29242730140686035,
- 0.05506471171975136,
- 0.04333949834108353,
- -0.022011375054717064,
- -0.05875556543469429,
- -0.022198373451828957,
- -0.07112514227628708,
- -0.047352083027362823,
- 0.03760462999343872,
- 0.013835104182362556,
- 0.03684930503368378,
- -0.0267492663115263,
- 0.06337179243564606,
- 0.004069013986736536,
- -0.040447063744068146,
- -0.00888900551944971,
- 0.06872650980949402,
- 0.0272345170378685,
- 0.10702362656593323,
- -0.020340414717793465,
- -0.055536139756441116,
- 0.013573192059993744,
- -0.024458758533000946,
- 0.027692921459674835,
- 0.06252806633710861,
- -0.01404410507529974,
- -0.07254339009523392,
- 0.012366343289613724,
- -4.851768811704511e-33,
- -0.01090687233954668,
- -0.02455906756222248,
- 0.003371652914211154,
- 0.06194832921028137,
- 0.015354381874203682,
- 0.09834558516740799,
- -0.010958175174891949,
- -0.008621913380920887,
- 0.023404119536280632,
- -0.07650844752788544,
- 0.0033668866381049156,
- 0.07593772560358047,
- 0.027495907619595528,
- -0.013579193502664566,
- 0.1305604875087738,
- -0.010270644910633564,
- 0.02912493608891964,
- 0.0589156411588192,
- -0.044323232024908066,
- -0.00943753682076931,
- -0.010947579517960548,
- -0.014602797105908394,
- -0.05993698537349701,
- 0.002978589851409197,
- 0.04347417876124382,
- 0.006021550390869379,
- 0.007780009880661964,
- -0.1153087243437767,
- -0.006387554109096527,
- 0.036221157759428024,
- -0.011159847490489483,
- 0.04487570747733116,
- 0.03807403892278671,
- -0.0021113755647093058,
- -0.024024970829486847,
- -0.05592760071158409,
- -0.04188603162765503,
- -0.06316065788269043,
- -0.0009833662770688534,
- -0.03715808317065239,
- 0.05846012756228447,
- 0.002142000710591674,
- -0.07060705125331879,
- -0.03672073408961296,
- 0.022212762385606766,
- 0.06798387318849564,
- -0.010329587385058403,
- 0.05741014704108238,
- 0.005641336552798748,
- 0.03039768896996975,
- 0.07645009458065033,
- -0.024262716993689537,
- -0.004572195466607809,
- -0.05341745540499687,
- 0.04687876999378204,
- 0.05360397696495056,
- -0.00836438313126564,
- -0.014962230809032917,
- 0.05307081714272499,
- 0.03182270750403404,
- 0.04136459156870842,
- 0.08374211192131042,
- -0.009200005792081356,
- -0.0025310807395726442,
- -0.03348997235298157,
- -0.02460494637489319,
- 0.01788303256034851,
- -0.05225444212555885,
- 0.06652487069368362,
- -0.01741153933107853,
- -0.07129503786563873,
- 0.021830087527632713,
- -0.0016092662699520588,
- 0.011108962818980217,
- 0.0010395809076726437,
- 0.04436507821083069,
- -0.004969012923538685,
- -0.027438169345259666,
- -0.03800753876566887,
- 0.04533853381872177,
- -0.03936252370476723,
- -0.03479890152812004,
- -0.023426733911037445,
- -0.046767883002758026,
- 0.033287934958934784,
- 0.04114903137087822,
- -0.03902094438672066,
- 0.021086709573864937,
- -0.06055107340216637,
- 0.0688527449965477,
- -0.08232883363962173,
- 0.027000902220606804,
- -0.01856737583875656,
- 0.09925302118062973,
- -0.010395721532404423,
- 4.00363053580303e-33,
- -0.0655665397644043,
- 0.01850031316280365,
- -0.07509062439203262,
- -0.024612020701169968,
- -0.02900751493871212,
- -0.07560869306325912,
- -0.018791448324918747,
- -0.008557789959013462,
- -0.03493016958236694,
- 0.051868192851543427,
- -0.07971472293138504,
- -0.11663597822189331,
- -0.020183421671390533,
- 0.06259708106517792,
- -0.03702117130160332,
- -0.04548901692032814,
- 0.0876445397734642,
- 0.00537768192589283,
- -0.055749017745256424,
- 0.019330624490976334,
- -0.021683327853679657,
- 0.045239806175231934,
- -0.01274371612817049,
- -0.04188511148095131,
- 0.01625409722328186,
- 0.002408730098977685,
- 0.08625435084104538,
- 0.12992936372756958,
- -0.06019259989261627,
- 0.031301550567150116,
- 0.019050613045692444,
- -0.05019647628068924,
- -0.04700756072998047,
- 0.0068483431823551655,
- -0.0064893970265984535,
- 0.23758108913898468,
- 0.09530261904001236,
- 0.028407473117113113,
- -0.025596654042601585,
- -0.03260400891304016,
- 0.03667754307389259,
- -0.002317468635737896,
- 0.007029446307569742,
- 0.13567063212394714,
- -0.04220407083630562,
- -0.04183558002114296,
- 0.002158879302442074,
- 0.039504386484622955,
- -0.06287506222724915,
- 0.017593445256352425,
- -0.03812780603766441,
- -0.05760475993156433,
- -0.030763374641537666,
- 0.03493031859397888,
- -0.03514418005943298,
- 0.012741549871861935,
- -0.040922071784734726,
- 0.01771005243062973,
- -0.02196500264108181,
- -0.019881729036569595,
- 0.06259785592556,
- -0.037505537271499634,
- -0.04461792856454849,
- 0.008885247632861137,
- 0.021190786734223366,
- -0.008698984049260616,
- 0.04628906026482582,
- -0.014826133847236633,
- 0.0004482719814404845,
- 0.07026316970586777,
- 0.028719965368509293,
- 0.0016013981075957417,
- -0.0586174838244915,
- -0.013712071813642979,
- -0.02970852144062519,
- 0.08908475190401077,
- -0.052929215133190155,
- 0.08374091982841492,
- -0.04218541830778122,
- -0.02182341367006302,
- -0.0956449955701828,
- 0.005814320407807827,
- -0.02809719927608967,
- -0.002898960607126355,
- 0.06394287198781967,
- 0.01837894134223461,
- 0.1439836472272873,
- 0.0009248611750081182,
- -0.0068047852255403996,
- -0.022958766669034958,
- 0.02456432208418846,
- 0.035680413246154785,
- -0.03305209055542946,
- -0.06024586781859398,
- 0.010962489061057568,
- -1.212209266299169e-8,
- -0.06507473438978195,
- -0.025380974635481834,
- -0.02968665584921837,
- -0.061941031366586685,
- 0.02263285219669342,
- -0.006247994489967823,
- 0.02990587055683136,
- -0.1003088504076004,
- 0.06830649822950363,
- -0.04171589016914368,
- -0.036182817071676254,
- -0.03772030398249626,
- 0.010856328532099724,
- 0.05647185817360878,
- 0.12068092823028564,
- -0.012093289755284786,
- -0.05255105346441269,
- -0.016768185421824455,
- -0.07840777933597565,
- -0.011209751479327679,
- -0.012433106079697609,
- 0.008777112700045109,
- 0.006930386647582054,
- 0.07214734703302383,
- 0.07010999321937561,
- -0.030657120048999786,
- 0.05379876494407654,
- -0.0032146614976227283,
- 0.05503420531749725,
- 0.016872882843017578,
- -0.047182872891426086,
- 0.022088073194026947,
- -0.06846574693918228,
- 0.0006830372149124742,
- -0.004905962850898504,
- 0.014450432732701302,
- -0.026085665449500084,
- 0.0032889998983591795,
- 0.057488180696964264,
- -0.0032872487790882587,
- -0.05422963201999664,
- -0.05597159266471863,
- 0.03831307590007782,
- 0.005145383533090353,
- 0.000030241146305343136,
- 0.03923847898840904,
- -0.007781214080750942,
- -0.02053239569067955,
- -0.0255321953445673,
- -0.07011444121599197,
- -0.028574872761964798,
- 0.002914529060944915,
- -0.004581051878631115,
- -0.026806674897670746,
- 0.037505004554986954,
- 0.014085737057030201,
- 0.019181057810783386,
- -0.09077160060405731,
- 0.0011701056500896811,
- 0.02414528839290142,
- 0.020956220105290413,
- 0.09651284664869308,
- -0.061850860714912415,
- 0.03272591158747673
- ]
- },
- {
- "keyword": "audio",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0052321720868349075,
- -0.03854724392294884,
- -0.06988533586263657,
- -0.0640341266989708,
- -0.01646796613931656,
- 0.018855104222893715,
- 0.08719375729560852,
- -0.045394424349069595,
- 0.04562310501933098,
- -0.02675827033817768,
- 0.010301281698048115,
- -0.026790354400873184,
- -0.055239271372556686,
- -0.020783497020602226,
- -0.05151752382516861,
- -0.012765178456902504,
- 0.06617361307144165,
- 0.026088548824191093,
- -0.022907597944140434,
- -0.03838507831096649,
- -0.0006497773574665189,
- 0.04832843318581581,
- 0.0022033846471458673,
- 0.06038496270775795,
- 0.04310255125164986,
- 0.05665510520339012,
- -0.012016985565423965,
- 0.06205590069293976,
- 0.015576914884150028,
- -0.10204129666090012,
- 0.01633225567638874,
- 0.026871586218476295,
- 0.18273518979549408,
- 0.024795571342110634,
- -0.14924025535583496,
- -0.0923437625169754,
- 0.031117985025048256,
- -0.05402480810880661,
- -0.01852288469672203,
- -0.025892289355397224,
- -0.011371798813343048,
- -0.02855764701962471,
- 0.02683495171368122,
- -0.08403880894184113,
- -0.07961253821849823,
- -0.06536415964365005,
- -0.028073573485016823,
- -0.002325930865481496,
- -0.01410679891705513,
- 0.08130335807800293,
- -0.03572235256433487,
- -0.03799343481659889,
- -0.03971251845359802,
- 0.0689980536699295,
- -0.006225979886949062,
- 0.03374738618731499,
- 0.0832882970571518,
- 0.06850484013557434,
- 0.009517593309283257,
- 0.015417600981891155,
- 0.013674023561179638,
- -0.03237561136484146,
- -0.027264295145869255,
- 0.028596794232726097,
- 0.010634283535182476,
- -0.00965164229273796,
- 0.0108738262206316,
- 0.030603429302573204,
- 0.01973876915872097,
- -0.006173980422317982,
- -0.1078290194272995,
- 0.024488918483257294,
- 0.040915392339229584,
- 0.0029062596149742603,
- 0.06871320307254791,
- -0.023975711315870285,
- 0.05225449427962303,
- -0.03289201855659485,
- 0.021643541753292084,
- -0.013041730038821697,
- 0.028073254972696304,
- -0.06095926836133003,
- -0.054271262139081955,
- -0.01542973518371582,
- 0.011743366718292236,
- 0.002938659396022558,
- 0.026950953528285027,
- -0.040565259754657745,
- -0.04436486214399338,
- -0.03360627591609955,
- -0.13792762160301208,
- -0.02257363498210907,
- 0.03625058755278587,
- 0.01898878626525402,
- -0.023296048864722252,
- 0.045983947813510895,
- -0.025831008329987526,
- -0.06527294963598251,
- 0.03616810217499733,
- 0.21486066281795502,
- 0.04106740653514862,
- 0.029341483488678932,
- -0.026727711781859398,
- -0.03681216761469841,
- -0.05766154080629349,
- -0.09941105544567108,
- -0.030474375933408737,
- 0.09097118675708771,
- -0.000982508179731667,
- -0.0010929247364401817,
- -0.048147041350603104,
- -0.03405922278761864,
- -0.06562419980764389,
- -0.05065545812249184,
- 0.09130477160215378,
- 0.043919309973716736,
- -0.010478072799742222,
- 0.016123197972774506,
- 0.024576272815465927,
- -0.021723639219999313,
- -0.02650521509349346,
- -0.02682247944176197,
- -0.07325872778892517,
- 0.023549681529402733,
- 0.005345921963453293,
- -0.07743803411722183,
- 0.0014272670960053802,
- -3.3978079306960855e-33,
- 0.0346437506377697,
- -0.01635093428194523,
- 0.023025430738925934,
- -0.007146429270505905,
- 0.013027632609009743,
- -0.0064904168248176575,
- -0.05983119457960129,
- -0.02675195224583149,
- 0.008828680962324142,
- 0.0748085305094719,
- -0.011091873981058598,
- 0.05866997316479683,
- -0.06021682918071747,
- -0.04134393483400345,
- 0.04746503010392189,
- -0.025508204475045204,
- -0.12151951342821121,
- 0.13313187658786774,
- -0.07593030482530594,
- -0.025761621072888374,
- -0.03247399255633354,
- 0.04348316043615341,
- 0.03431149572134018,
- 0.0865447074174881,
- 0.08617394417524338,
- 0.007109819445759058,
- 0.049529898911714554,
- -0.09957242012023926,
- 0.04836617037653923,
- 0.016923489049077034,
- -0.026030464097857475,
- 0.0006165711092762649,
- 0.024942846968770027,
- -0.0925595685839653,
- 0.014538059942424297,
- -0.013198208063840866,
- 0.02485312893986702,
- 0.02517888695001602,
- 0.02156730368733406,
- -0.036874834448099136,
- -0.04200693592429161,
- -0.03151712194085121,
- -0.03128756955265999,
- -0.0345211923122406,
- -0.011228279210627079,
- -0.011207564733922482,
- 0.03400905057787895,
- 0.0741780698299408,
- -0.06844250112771988,
- 0.0354306697845459,
- 0.0002838120562955737,
- 0.02203129418194294,
- -0.020448697730898857,
- 0.04669381305575371,
- -0.010827919468283653,
- -0.01680825836956501,
- 0.08513110131025314,
- 0.04014067351818085,
- 0.06341655552387238,
- 0.004760264419019222,
- 0.06353691220283508,
- 0.10185778141021729,
- 0.04570461064577103,
- -0.0807284489274025,
- 0.004864105489104986,
- 0.0015420003328472376,
- 0.06499645113945007,
- -0.0013058992335572839,
- 0.098658487200737,
- -0.06841211766004562,
- -0.08523023873567581,
- -0.0061056059785187244,
- 0.04184087738394737,
- -0.020528703927993774,
- -0.07147826254367828,
- 0.053726304322481155,
- -0.013302982784807682,
- -0.02315351739525795,
- -0.0431823693215847,
- 0.031670987606048584,
- -0.0802609920501709,
- 0.029401689767837524,
- -0.01608087122440338,
- -0.01600882038474083,
- -0.03650971129536629,
- 0.050470031797885895,
- -0.026155758649110794,
- -0.15460766851902008,
- -0.0239137914031744,
- 0.01758408732712269,
- -0.1016194075345993,
- 0.03244604542851448,
- 0.004686826840043068,
- -0.01753060519695282,
- -0.02331252582371235,
- 3.0739127682834893e-33,
- -0.032586999237537384,
- 0.059684161096811295,
- -0.006654480937868357,
- 0.056428439915180206,
- 0.03483312204480171,
- 0.01806466281414032,
- 0.10657978802919388,
- 0.031890641897916794,
- 0.013232522644102573,
- 0.007772924844175577,
- 0.021733928471803665,
- -0.042417850345373154,
- 0.060840509831905365,
- 0.03660121560096741,
- -0.02277599647641182,
- -0.04152066260576248,
- 0.024706529453396797,
- -0.048048634082078934,
- 0.04347683861851692,
- 0.06199346482753754,
- -0.021165519952774048,
- -0.0030576514545828104,
- 0.029101718217134476,
- -0.02670106291770935,
- -0.07502877712249756,
- 0.027858220040798187,
- -0.0017475734930485487,
- 0.033948007971048355,
- -0.020037168636918068,
- -0.007094713393598795,
- 0.06434345990419388,
- -0.04307423159480095,
- -0.026649169623851776,
- -0.03239276632666588,
- 0.05461074411869049,
- 0.04304925724864006,
- 0.13874351978302002,
- 0.08023496717214584,
- -0.038182880729436874,
- -0.06486377120018005,
- 0.019176583737134933,
- 0.07424820959568024,
- 0.060706447809934616,
- 0.0548844188451767,
- 0.007612050045281649,
- -0.014454311691224575,
- -0.06083656847476959,
- 0.04193257540464401,
- -0.033369239419698715,
- 0.016277944669127464,
- 0.06465674191713333,
- 0.000029095332138240337,
- 0.1051522046327591,
- -0.09576182067394257,
- -0.04102247953414917,
- 0.013133150525391102,
- -0.057559724897146225,
- -0.0038756541907787323,
- 0.03965717926621437,
- 0.03269379585981369,
- -0.007954065687954426,
- 0.012544795870780945,
- -0.07403074204921722,
- -0.07609571516513824,
- -0.030619047582149506,
- 0.07900106906890869,
- 0.020967578515410423,
- -0.037700455635786057,
- 0.013189875520765781,
- 0.01838839426636696,
- 0.059383589774370193,
- 0.05488840118050575,
- 0.0013641914119943976,
- 0.04654277116060257,
- -0.04179828241467476,
- 0.00966519583016634,
- -0.14170153439044952,
- -0.05904762074351311,
- -0.08172807842493057,
- -0.028452645987272263,
- -0.027896376326680183,
- -0.016173768788576126,
- 0.03906101733446121,
- 0.019054220989346504,
- 0.042478498071432114,
- 0.017704183235764503,
- 0.06295433640480042,
- -0.04007505625486374,
- -0.013993932865560055,
- -0.004647148307412863,
- -0.02196265012025833,
- 0.08169277012348175,
- -0.03443259373307228,
- 0.001449829200282693,
- -0.009390348568558693,
- -1.1217944795305357e-8,
- -0.02420087531208992,
- 0.02220841869711876,
- 0.046321187168359756,
- -0.08352917432785034,
- 0.011220098473131657,
- -0.025569818913936615,
- 0.023405881598591805,
- -0.03987058997154236,
- 0.030026748776435852,
- -0.007513786666095257,
- 0.010044844821095467,
- -0.0003527390363160521,
- 0.03624223917722702,
- 0.09591319411993027,
- 0.0408342108130455,
- -0.022437168285250664,
- -0.0408029742538929,
- 0.04941311851143837,
- -0.02908136509358883,
- -0.08320096135139465,
- 0.08230102062225342,
- 0.0702018141746521,
- 0.007476916536688805,
- -0.0007882780628278852,
- 0.05471629276871681,
- -0.03380539268255234,
- 0.09749583154916763,
- 0.07405873388051987,
- 0.016315948218107224,
- 0.017894744873046875,
- -0.020534435287117958,
- 0.11217955499887466,
- -0.050204142928123474,
- -0.06903742253780365,
- 0.02168477699160576,
- -0.031970102339982986,
- -0.0027041032444685698,
- -0.011254921555519104,
- -0.02329559251666069,
- 0.009766047820448875,
- -0.03693438321352005,
- -0.011167306452989578,
- -0.0162615105509758,
- -0.06126425415277481,
- -0.01948995143175125,
- -0.013901624828577042,
- 0.038465213030576706,
- -0.049031469970941544,
- -0.027678128331899643,
- 0.04734828323125839,
- -0.0791117325425148,
- 0.07330197840929031,
- 0.020152993500232697,
- 0.01224488765001297,
- 0.11643273383378983,
- -0.0015303738182410598,
- 0.0027580491732805967,
- 0.0021693981252610683,
- -0.08543140441179276,
- 0.03238946944475174,
- 0.05431816354393959,
- 0.06533028185367584,
- 0.03520655632019043,
- 0.059336453676223755
- ]
- },
- {
- "keyword": "sound",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0245889350771904,
- -0.0536513514816761,
- -0.052184417843818665,
- -0.008113639429211617,
- -0.09540621936321259,
- 0.04872693121433258,
- 0.12780414521694183,
- -0.07726437598466873,
- 0.020599929615855217,
- -0.0020864515099674463,
- -0.006176948547363281,
- -0.06416124850511551,
- -0.03128424286842346,
- -0.04692506045103073,
- -0.009666272439062595,
- 0.019449932500720024,
- 0.08690766990184784,
- -0.014463969506323338,
- -0.08665666729211807,
- -0.025307031348347664,
- -0.03531401604413986,
- 0.04418632388114929,
- -0.0055235945619642735,
- 0.0358380489051342,
- -0.020645631477236748,
- 0.048466481268405914,
- -0.018622227013111115,
- 0.07885169982910156,
- -0.0036202785558998585,
- -0.10080555826425552,
- 0.04445798322558403,
- 0.030412770807743073,
- 0.1121501699090004,
- -0.016766468062996864,
- -0.07352059334516525,
- -0.04426388069987297,
- 0.025205254554748535,
- -0.07237084209918976,
- 0.01587914675474167,
- -0.07510137557983398,
- 0.026752356439828873,
- -0.06874747574329376,
- 0.04295344278216362,
- -0.037489183247089386,
- -0.0416141077876091,
- -0.039657630026340485,
- 0.005711809266358614,
- -0.018941396847367287,
- -0.03849015012383461,
- 0.035089507699012756,
- 0.01141239982098341,
- -0.017396435141563416,
- -0.03028096817433834,
- 0.03652007877826691,
- 0.02462739497423172,
- -0.003289157757535577,
- 0.013790293596684933,
- 0.057282429188489914,
- 0.022036610171198845,
- -0.010387294925749302,
- 0.018717274069786072,
- 0.00553809804841876,
- -0.025769464671611786,
- 0.033603183925151825,
- 0.039223600178956985,
- -0.040786709636449814,
- -0.04645708575844765,
- -0.02517089806497097,
- -0.01605866849422455,
- 0.013408600352704525,
- -0.003784275846555829,
- 0.03962898626923561,
- 0.000017918855519383214,
- 0.04738891124725342,
- 0.032917268574237823,
- -0.026567712426185608,
- 0.04890889301896095,
- -0.04455147311091423,
- 0.03629397228360176,
- 0.06614859402179718,
- 0.004864611197263002,
- -0.05575761944055557,
- -0.0920833945274353,
- 0.01619655452668667,
- 0.002673419890925288,
- 0.008679528720676899,
- 0.04210050404071808,
- -0.041727397590875626,
- -0.08531356602907181,
- 0.024123020470142365,
- -0.05377739295363426,
- -0.009855479933321476,
- 0.0066081262193620205,
- 0.07462941855192184,
- -0.019425490871071815,
- 0.03179338574409485,
- -0.03350871801376343,
- -0.06981366127729416,
- -0.01946442574262619,
- 0.24492047727108002,
- 0.008705154061317444,
- 0.07168278098106384,
- 0.049303241074085236,
- -0.0390743762254715,
- -0.032027263194322586,
- -0.04817791283130646,
- -0.06448035687208176,
- 0.10645166784524918,
- -0.01251964271068573,
- 0.016408391296863556,
- -0.017693519592285156,
- -0.039213526993989944,
- -0.03482651710510254,
- -0.02148387022316456,
- 0.05507339537143707,
- 0.05493856966495514,
- -0.04902525618672371,
- -0.019429614767432213,
- -0.017926499247550964,
- -0.05842246487736702,
- 0.010897289961576462,
- -0.006506012286990881,
- -0.09463649988174438,
- 0.037950266152620316,
- -0.021467112004756927,
- -0.07415363937616348,
- -0.02095543034374714,
- -3.531745961080685e-33,
- 0.06346157938241959,
- -0.008922050707042217,
- 0.007618183735758066,
- 0.0030338994693011045,
- 0.02491014264523983,
- -0.009290243498980999,
- -0.08366469293832779,
- -0.05215926840901375,
- -0.04248849302530289,
- 0.07079703360795975,
- -0.06493628025054932,
- 0.042874377220869064,
- -0.023472985252738,
- -0.0071838595904409885,
- 0.09554381668567657,
- -0.012923555448651314,
- -0.07694107294082642,
- 0.11694978177547455,
- -0.06491827964782715,
- 0.009894643910229206,
- -0.027218174189329147,
- 0.07053233683109283,
- 0.03235873207449913,
- 0.09536290168762207,
- 0.03702334687113762,
- -0.004200989380478859,
- 0.045498013496398926,
- -0.08579113334417343,
- 0.008381608873605728,
- -0.0004939958453178406,
- -0.04839248210191727,
- 0.010346900671720505,
- 0.03545006737112999,
- -0.07036656141281128,
- 0.0016115176258608699,
- -0.05722065269947052,
- 0.059847746044397354,
- -0.026453718543052673,
- 0.02436200901865959,
- -0.05605485662817955,
- -0.042493611574172974,
- -0.007044423837214708,
- -0.0664789229631424,
- 0.041590336710214615,
- 0.01487796101719141,
- -0.0012858175905421376,
- 0.04904396831989288,
- 0.05068879574537277,
- -0.052719615399837494,
- 0.04246693104505539,
- 0.0007391046383418143,
- -0.006213031243532896,
- -0.014624623581767082,
- 0.08410150557756424,
- -0.035408865660429,
- 0.006395005155354738,
- 0.023065749555826187,
- -0.000008896076906239614,
- 0.05261284485459328,
- -0.02111806906759739,
- 0.15399996936321259,
- 0.0893196240067482,
- 0.058478944003582,
- -0.11952844262123108,
- 0.0000732688422431238,
- -0.06287706643342972,
- -0.015037630684673786,
- -0.005847787018865347,
- 0.10129887610673904,
- -0.024996303021907806,
- -0.033522073179483414,
- 0.023626454174518585,
- 0.03322065994143486,
- -0.0350218340754509,
- -0.042697422206401825,
- 0.006192927714437246,
- -0.03130723163485527,
- -0.030900968238711357,
- -0.011439207941293716,
- -0.0021367627196013927,
- -0.047112077474594116,
- 0.014195555821061134,
- -0.055265095084905624,
- 0.05918533354997635,
- -0.0019651923794299364,
- 0.08175717294216156,
- -0.04075155779719353,
- -0.10362230986356735,
- -0.01595480926334858,
- -0.0025939419865608215,
- -0.12066100537776947,
- -0.05434698238968849,
- 0.04869341477751732,
- -0.07692798227071762,
- -0.017565585672855377,
- 2.874984777648795e-33,
- -0.06437760591506958,
- 0.10749272257089615,
- -0.013800467364490032,
- 0.1055181547999382,
- -0.008664777502417564,
- 0.07731623947620392,
- 0.021680494770407677,
- 0.0042846049182116985,
- -0.048259079456329346,
- 0.04470609873533249,
- -0.045513253659009933,
- -0.021014265716075897,
- 0.049728114157915115,
- 0.00839085504412651,
- -0.02855597250163555,
- 0.001750324503518641,
- 0.03468009829521179,
- -0.03604681044816971,
- 0.06808692216873169,
- 0.053016334772109985,
- -0.048948533833026886,
- -0.01573989912867546,
- 0.02429419755935669,
- -0.010083663277328014,
- -0.09416743367910385,
- 0.05094864219427109,
- -0.015369275584816933,
- -0.0264155063778162,
- -0.013087507337331772,
- 0.0019258431857451797,
- 0.060316599905490875,
- -0.021553635597229004,
- -0.008371304720640182,
- -0.0031305563170462847,
- 0.07307816296815872,
- 0.08403779566287994,
- 0.12304256111383438,
- 0.02583550475537777,
- -0.022781452164053917,
- -0.037200018763542175,
- -0.015065379440784454,
- 0.016069786623120308,
- 0.04250459745526314,
- 0.16539353132247925,
- -0.006468403153121471,
- 0.05220315605401993,
- 0.000048334630264434963,
- 0.07333897799253464,
- -0.01198673713952303,
- 0.005070433486253023,
- 0.03910808265209198,
- 0.020168570801615715,
- 0.11098851263523102,
- -0.03684500604867935,
- -0.03791823238134384,
- 0.031163623556494713,
- -0.04489501565694809,
- -0.05810042843222618,
- -0.010513114742934704,
- 0.010935744270682335,
- -0.011690923944115639,
- 0.017606057226657867,
- -0.033999256789684296,
- -0.05548997223377228,
- -0.02788132056593895,
- 0.05981944501399994,
- -0.003143256064504385,
- -0.055705536156892776,
- 0.01683991402387619,
- -0.01060857716947794,
- 0.049023136496543884,
- 0.029306543990969658,
- -0.014139492064714432,
- 0.004094162955880165,
- -0.009605336003005505,
- -0.06796909868717194,
- -0.1476782113313675,
- -0.04495057091116905,
- -0.017044559121131897,
- 0.015977535396814346,
- -0.04254155978560448,
- -0.04270365089178085,
- -0.0017932795453816652,
- -0.016786983236670494,
- -0.03530355170369148,
- -0.039324719458818436,
- 0.05120216682553291,
- -0.016578109934926033,
- -0.040263574570417404,
- 0.014662530273199081,
- 0.02701018750667572,
- 0.10209645330905914,
- 0.029182789847254753,
- -0.008867181837558746,
- -0.013506942428648472,
- -1.2593880605038521e-8,
- -0.01610563136637211,
- 0.028845563530921936,
- 0.026674214750528336,
- -0.08591050654649734,
- 0.018866488710045815,
- 0.0071631185710430145,
- 0.01665174961090088,
- -0.0672413557767868,
- 0.02397061325609684,
- 0.04910595715045929,
- 0.06301972270011902,
- -0.006920145824551582,
- -0.004585939459502697,
- 0.10461723804473877,
- 0.015823611989617348,
- -0.0031739752739667892,
- -0.0637289434671402,
- 0.06938133388757706,
- -0.06233183667063713,
- -0.0851159617304802,
- 0.05003191530704498,
- 0.05620979517698288,
- -0.0791938453912735,
- 0.014465645886957645,
- -0.01390752848237753,
- -0.024959897622466087,
- 0.05121687427163124,
- 0.059847451746463776,
- 0.011873305775225163,
- 0.1023697629570961,
- -0.022977318614721298,
- 0.08678238093852997,
- -0.022609282284975052,
- -0.020818857476115227,
- -0.03587315231561661,
- -0.03285684064030647,
- -0.035555846989154816,
- -0.032489899545907974,
- 0.05127102881669998,
- 0.10121719539165497,
- -0.023456091061234474,
- 0.024798931553959846,
- -0.025383608415722847,
- -0.026983628049492836,
- -0.06510984897613525,
- -0.010895050130784512,
- 0.031624335795640945,
- -0.026291098445653915,
- -0.03567568585276604,
- 0.05022617429494858,
- -0.055670686066150665,
- 0.08065060526132584,
- 0.009032425470650196,
- 0.03793855756521225,
- 0.08586074411869049,
- 0.03143853694200516,
- -0.018421964719891548,
- 0.0416211374104023,
- -0.08927761763334274,
- 0.04760883003473282,
- 0.10499616712331772,
- 0.026210317388176918,
- 0.016744591295719147,
- 0.06672871857881546
- ]
- },
- {
- "keyword": "music",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.022044198587536812,
- -0.016871245577931404,
- 0.004007252864539623,
- -0.0031940422486513853,
- -0.10576504468917847,
- 0.09079932421445847,
- 0.11766403168439865,
- -0.04416549578309059,
- 0.055618152022361755,
- 0.011226560920476913,
- -0.0022533624432981014,
- -0.010646538808941841,
- 0.039362832903862,
- -0.05661178007721901,
- -0.034962404519319534,
- 0.02289481647312641,
- 0.013812677934765816,
- 0.009705930016934872,
- -0.058037515729665756,
- -0.06245988979935646,
- -0.10852378606796265,
- 0.05667155981063843,
- -0.045502979308366776,
- 0.048254963010549545,
- 0.008781982585787773,
- 0.12805889546871185,
- -0.02654411271214485,
- 0.06633147597312927,
- -0.009328401647508144,
- -0.1008109301328659,
- 0.00024773809127509594,
- 0.08975793421268463,
- 0.0752372294664383,
- -0.045296575874090195,
- -0.13513092696666718,
- -0.005413672886788845,
- -0.0023036340717226267,
- -0.03353049233555794,
- 0.0039036949165165424,
- 0.00039586517959833145,
- -0.0004323413595557213,
- 0.013570306822657585,
- 0.035870686173439026,
- -0.041040822863578796,
- -0.03638676181435585,
- -0.02779863215982914,
- -0.02074073627591133,
- -0.018871814012527466,
- 0.003555586561560631,
- 0.08148181438446045,
- -0.006339016370475292,
- 0.04394504055380821,
- -0.04479851573705673,
- 0.049543529748916626,
- -0.002168662380427122,
- -0.04690858721733093,
- 0.018046380952000618,
- 0.08653574436903,
- 0.04368645325303078,
- 0.014103212393820286,
- 0.0222924891859293,
- -0.04567303508520126,
- -0.03104584664106369,
- -0.009858406148850918,
- 0.07400445640087128,
- -0.01858253963291645,
- 0.00874282419681549,
- 0.06769262999296188,
- -0.016733935102820396,
- -0.004274251405149698,
- 0.027640188112854958,
- -0.006863973569124937,
- 0.04266224056482315,
- 0.018828416243195534,
- 0.06169942393898964,
- -0.007891216315329075,
- -0.015064639039337635,
- -0.06596250832080841,
- -0.004117622505873442,
- -0.04472140222787857,
- 0.08025474101305008,
- -0.06253594160079956,
- -0.0951818972826004,
- -0.09217635542154312,
- -0.0029190366622060537,
- -0.03126271069049835,
- -0.007849730551242828,
- 0.02210199646651745,
- -0.07425957918167114,
- -0.015397479757666588,
- -0.07224483042955399,
- -0.02039150893688202,
- -0.02731415256857872,
- 0.026257168501615524,
- -0.027129381895065308,
- 0.07898712903261185,
- -0.01370449922978878,
- -0.07483126223087311,
- -0.023086393252015114,
- 0.2260410338640213,
- 0.04181569069623947,
- 0.06426079571247101,
- 0.04315881431102753,
- 0.04274540767073631,
- -0.025291962549090385,
- -0.08300009369850159,
- -0.035091008991003036,
- 0.11312044411897659,
- 0.0039990185759961605,
- -0.0365975946187973,
- 0.001991791883483529,
- 0.000058947935031028464,
- -0.045779332518577576,
- 0.0056142439134418964,
- 0.05063202604651451,
- 0.03500092029571533,
- 0.0464070625603199,
- 0.055384084582328796,
- 0.03186532482504845,
- -0.004400968551635742,
- -0.012812613509595394,
- -0.029958780854940414,
- -0.026773646473884583,
- 0.007675416301935911,
- -0.06457971036434174,
- -0.03685975447297096,
- -0.058148592710494995,
- -2.9723814641121297e-33,
- 0.04949885979294777,
- -0.11946819722652435,
- 0.06954578310251236,
- 0.03808113932609558,
- 0.06263008713722229,
- -0.02119222842156887,
- -0.059818487614393234,
- -0.02555806003510952,
- 0.028417686000466347,
- 0.08171515166759491,
- 0.04333573952317238,
- 0.036562953144311905,
- -0.04422982037067413,
- 0.009960954077541828,
- 0.11195593327283859,
- -0.04410552233457565,
- -0.06993885338306427,
- 0.0605170838534832,
- -0.015305716544389725,
- 0.010207309387624264,
- -0.03142060711979866,
- 0.010952601209282875,
- 0.03311122953891754,
- 0.08435690402984619,
- 0.012686836533248425,
- -0.032124876976013184,
- 0.03238902613520622,
- -0.12140084058046341,
- 0.04121393710374832,
- -0.016329677775502205,
- -0.005335986614227295,
- 0.029066866263747215,
- 0.03357604146003723,
- -0.02833845280110836,
- -0.024804536253213882,
- -0.008564798161387444,
- -0.023557061329483986,
- -0.03142319992184639,
- 0.05717222020030022,
- -0.06354956328868866,
- -0.012162500992417336,
- 0.010795451700687408,
- -0.06533235311508179,
- -0.018649592995643616,
- 0.006266786251217127,
- 0.03564782813191414,
- 0.054820600897073746,
- 0.058484308421611786,
- -0.05311412364244461,
- 0.04485911503434181,
- 0.0054444014094769955,
- 0.010126745328307152,
- 0.0005311021814122796,
- 0.035128019750118256,
- 0.05076807737350464,
- 0.01581408828496933,
- 0.03737685829401016,
- 0.0111875394359231,
- 0.03177124634385109,
- -0.010630560107529163,
- 0.10542243719100952,
- 0.11564695090055466,
- 0.02005619928240776,
- -0.09242136776447296,
- 0.0028457094449549913,
- 0.025357477366924286,
- 0.03129986673593521,
- -0.04418719932436943,
- 0.09418641775846481,
- -0.05229359120130539,
- -0.0858251079916954,
- -0.02446052059531212,
- 0.018723633140325546,
- -0.02045281045138836,
- -0.0010279855923727155,
- 0.013923346996307373,
- -0.005168592091649771,
- -0.08093225955963135,
- -0.01215673703700304,
- 0.020338408648967743,
- -0.04490591958165169,
- 0.00819645170122385,
- -0.00810304656624794,
- 0.024552272632718086,
- -0.01148216798901558,
- 0.05442101135849953,
- -0.03192814812064171,
- -0.13429643213748932,
- -0.02049156278371811,
- 0.02093627117574215,
- -0.14726905524730682,
- -0.0051511237397789955,
- 0.030616821721196175,
- 0.03233269974589348,
- -0.00554993050172925,
- 2.3010573750414906e-33,
- -0.012004031799733639,
- 0.018873313441872597,
- 0.056014709174633026,
- 0.03968966007232666,
- 0.04616847634315491,
- 0.02746487595140934,
- -0.014585728757083416,
- -0.009203119203448296,
- 0.02470487728714943,
- 0.08845696598291397,
- -0.04515841603279114,
- -0.03455066680908203,
- 0.06857789307832718,
- 0.010210055857896805,
- -0.05599706619977951,
- -0.02354808710515499,
- 0.037906713783741,
- 0.03733762726187706,
- 0.046490587294101715,
- 0.01834450662136078,
- -0.08577719330787659,
- -0.023132162168622017,
- 0.032684992998838425,
- -0.06127600371837616,
- -0.07701137661933899,
- 0.01185368187725544,
- -0.003880101954564452,
- 0.0071358103305101395,
- -0.031169753521680832,
- 0.01704266667366028,
- 0.07509259134531021,
- -0.014407938346266747,
- -0.01111285388469696,
- -0.11524508148431778,
- -0.0028717543464154005,
- 0.08397975564002991,
- 0.09067292511463165,
- 0.03147827833890915,
- -0.04672631248831749,
- -0.017714641988277435,
- -0.013646661303937435,
- 0.03032265231013298,
- 0.08566685020923615,
- 0.13422757387161255,
- -0.016377732157707214,
- 0.007840030826628208,
- -0.031226644292473793,
- 0.15514129400253296,
- -0.039737120270729065,
- -0.01968107372522354,
- 0.018949216231703758,
- -0.03736063465476036,
- 0.026977963745594025,
- -0.10157120227813721,
- -0.03634405881166458,
- 0.024300141260027885,
- -0.056433629244565964,
- -0.05515347421169281,
- -0.018569298088550568,
- 0.03479759767651558,
- 0.01054810918867588,
- 0.04257376864552498,
- -0.08622829616069794,
- -0.018496301025152206,
- -0.05019332468509674,
- 0.09535135328769684,
- 0.025107255205512047,
- -0.003912332933396101,
- -0.025052176788449287,
- 0.0373760461807251,
- 0.05715532600879669,
- 0.055821217596530914,
- -0.0171507615596056,
- 0.021601645275950432,
- -0.10636328905820847,
- -0.004218146204948425,
- -0.0891522690653801,
- -0.0012801414122805,
- 0.025214066728949547,
- -0.0660645142197609,
- 0.040624283254146576,
- -0.005474936682730913,
- -0.05766681954264641,
- -0.016485702246427536,
- -0.049299903213977814,
- 0.029817571863532066,
- 0.08855125308036804,
- -0.0007377567235380411,
- -0.019100209698081017,
- -0.03536932170391083,
- 0.04677153378725052,
- 0.01031526643782854,
- -0.0601060651242733,
- -0.004644067492336035,
- -0.05726669728755951,
- -1.2073515520683031e-8,
- -0.017759473994374275,
- -0.015522362664341927,
- -0.039064764976501465,
- -0.06690825521945953,
- 0.021251732483506203,
- 0.07711562514305115,
- 0.09800951182842255,
- -0.02429082803428173,
- 0.022606130689382553,
- 0.031762152910232544,
- 0.01737361215054989,
- -0.016086407005786896,
- 0.02197999507188797,
- 0.04388635605573654,
- 0.052749667316675186,
- -0.0393434576690197,
- -0.00524527532979846,
- 0.04281371086835861,
- -0.05061274766921997,
- 0.008601145818829536,
- 0.03807045891880989,
- 0.012510492466390133,
- 0.04102011397480965,
- -0.03272542729973793,
- -0.03420547395944595,
- -0.0022392042446881533,
- 0.10836351662874222,
- 0.05268309265375137,
- 0.03468871861696243,
- 0.05292079970240593,
- -0.026190072298049927,
- 0.02829512022435665,
- -0.012009517289698124,
- -0.060845259577035904,
- 0.013406862504780293,
- -0.0719313770532608,
- 0.020292723551392555,
- -0.1043439731001854,
- -0.04631764814257622,
- -0.009457366541028023,
- -0.010450429283082485,
- 0.07564876228570938,
- 0.04839291796088219,
- -0.05283333733677864,
- -0.07506543397903442,
- -0.02964583970606327,
- 0.08590403944253922,
- -0.012605887837707996,
- -0.02185002714395523,
- 0.012033989652991295,
- -0.08215046674013138,
- -0.01476878672838211,
- 0.00048808386782184243,
- 0.030507735908031464,
- 0.03982476145029068,
- 0.026926008984446526,
- -0.05563357472419739,
- 0.08225830644369125,
- -0.06731691211462021,
- 0.029335951432585716,
- 0.029454655945301056,
- -0.01938234642148018,
- 0.060082919895648956,
- 0.021809443831443787
- ]
- },
- {
- "keyword": "song",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06243866682052612,
- 0.03275587782263756,
- -0.015961727127432823,
- 0.010562535375356674,
- -0.025158893316984177,
- -0.008139453828334808,
- 0.1825375258922577,
- 0.01924275979399681,
- 0.016316700726747513,
- -0.006043355446308851,
- 0.006176498252898455,
- -0.02341720648109913,
- 0.03094526194036007,
- -0.07720986753702164,
- -0.04590313509106636,
- -0.003055753419175744,
- 0.0007530028815381229,
- 0.03568864241242409,
- -0.13046132028102875,
- 0.015770496800541878,
- -0.08918747305870056,
- 0.088657446205616,
- -0.020691603422164917,
- 0.07211410254240036,
- -0.03088279813528061,
- 0.04652483016252518,
- 0.01267177052795887,
- 0.04434612765908241,
- -0.018438702449202538,
- -0.11133188754320145,
- 0.050752222537994385,
- 0.05231060832738876,
- 0.09285429865121841,
- -0.0334308035671711,
- -0.06169992685317993,
- -0.013646766543388367,
- -0.03529108315706253,
- 0.028144067153334618,
- -0.009680623188614845,
- 0.0009231061558239162,
- 0.02027847059071064,
- -0.02670149691402912,
- -0.044437628239393234,
- -0.06388471275568008,
- 0.005876251496374607,
- 0.03368792682886124,
- -0.008567835204303265,
- 0.0001408606331096962,
- 0.03788800165057182,
- 0.08130801469087601,
- -0.05826176702976227,
- 0.016705960035324097,
- -0.02231680229306221,
- 0.006700983736664057,
- -0.012544520199298859,
- 0.05051472783088684,
- 0.05836953595280647,
- 0.06846262514591217,
- 0.036709848791360855,
- 0.0022971373982727528,
- 0.07371004670858383,
- -0.043436288833618164,
- -0.06455320864915848,
- -0.0567200668156147,
- 0.08010319620370865,
- -0.01896572671830654,
- 0.0021238201297819614,
- 0.04963061586022377,
- -0.03772373124957085,
- 0.0008588451310060918,
- -0.02051873691380024,
- 0.030947094783186913,
- 0.006018581334501505,
- 0.047237828373909,
- -0.05009889230132103,
- 0.008791604079306126,
- -0.01516321673989296,
- -0.05259459838271141,
- -0.005709068384021521,
- 0.022121233865618706,
- 0.07315905392169952,
- -0.05175098031759262,
- -0.05404028296470642,
- -0.04147767275571823,
- -0.06369256973266602,
- -0.018778664991259575,
- 0.01251239888370037,
- -0.02106703445315361,
- -0.05382447689771652,
- 0.05083685740828514,
- -0.055976852774620056,
- -0.032799143344163895,
- 0.0004417619202286005,
- 0.0458594374358654,
- -0.07386408001184464,
- 0.005296644754707813,
- 0.004763755947351456,
- -0.05663282051682472,
- -0.03538862615823746,
- 0.22793740034103394,
- 0.02022060565650463,
- 0.0421316996216774,
- -0.002030131174251437,
- 0.06504671275615692,
- 0.0012487818021327257,
- -0.05494825914502144,
- -0.031567346304655075,
- 0.0990542471408844,
- 0.0008204243495129049,
- -0.07059919834136963,
- -0.011156276799738407,
- 0.002578944666311145,
- 0.03028235211968422,
- -0.02356923557817936,
- 0.003102133981883526,
- -0.004509774502366781,
- 0.02053874358534813,
- -0.03423905372619629,
- -0.009737894870340824,
- -0.0131203792989254,
- 0.05868958309292793,
- -0.027343427762389183,
- -0.04751536250114441,
- -0.049217768013477325,
- -0.09627789258956909,
- -0.037693046033382416,
- -0.03601890802383423,
- -5.136788631060987e-34,
- 0.030598418787121773,
- -0.07765896618366241,
- 0.007350973319262266,
- 0.08472630381584167,
- 0.06548143178224564,
- -0.05124212056398392,
- 0.046146292239427567,
- -0.030153091996908188,
- -0.015698574483394623,
- 0.1354047656059265,
- -0.003805703017860651,
- -0.038337986916303635,
- -0.050572507083415985,
- -0.041893091052770615,
- 0.10770203173160553,
- -0.04648878425359726,
- -0.009534165263175964,
- 0.039047472178936005,
- -0.03869311884045601,
- 0.010128632187843323,
- -0.038030799478292465,
- 0.05863846838474274,
- 0.04374021664261818,
- 0.06116890534758568,
- 0.03664771839976311,
- -0.0449800007045269,
- 0.020823901519179344,
- -0.021469226107001305,
- 0.026026526466012,
- 0.00481374841183424,
- -0.01652277447283268,
- 0.050601135939359665,
- 0.05245773121714592,
- -0.007822875864803791,
- -0.04563267529010773,
- -0.0076082670129835606,
- 0.01940017193555832,
- -0.025170985609292984,
- -0.011495187878608704,
- -0.028346935287117958,
- -0.013965162448585033,
- 0.012277320958673954,
- -0.028305761516094208,
- -0.07643342763185501,
- 0.005419236607849598,
- 0.039949413388967514,
- 0.027392853051424026,
- 0.09028283506631851,
- -0.012066683731973171,
- 0.0766591727733612,
- 0.05481358990073204,
- -0.03150593116879463,
- -0.053574491292238235,
- 0.0328243114054203,
- -0.026036083698272705,
- 0.003972761798650026,
- 0.019002355635166168,
- 0.033015165477991104,
- 0.061972763389348984,
- -0.03365467116236687,
- 0.0557650662958622,
- 0.04738147556781769,
- 0.011841190047562122,
- -0.12080355733633041,
- 0.028774959966540337,
- 0.009629865176975727,
- -0.009863611310720444,
- -0.002495542401447892,
- 0.03005189634859562,
- -0.015047303400933743,
- -0.042944587767124176,
- -0.020135242491960526,
- 0.0008765156962908804,
- -0.008724280633032322,
- 0.008374057710170746,
- 0.0032825160305947065,
- 0.039168450981378555,
- 0.009925362654030323,
- -0.013528144918382168,
- -0.0438089556992054,
- -0.035777486860752106,
- -0.027542132884263992,
- -0.00005216847057454288,
- 0.05985772982239723,
- 0.017723603174090385,
- -0.045472461730241776,
- -0.003372371196746826,
- -0.06281741708517075,
- 0.017357759177684784,
- 0.003920672927051783,
- -0.050823360681533813,
- -0.026507917791604996,
- 0.009974867105484009,
- -0.021458949893712997,
- -0.05483556538820267,
- 9.401580859002616e-34,
- 0.005979422479867935,
- 0.045424629002809525,
- 0.06738879531621933,
- 0.05518051236867905,
- 0.0699598491191864,
- 0.06064343452453613,
- 0.04385153204202652,
- 0.02460538223385811,
- 0.012657863087952137,
- 0.06166738644242287,
- -0.13977700471878052,
- -0.0412965826690197,
- -0.0034671963658183813,
- 0.021472888067364693,
- 0.024500688537955284,
- 0.004906957503408194,
- 0.06587415933609009,
- -0.03448936715722084,
- 0.032494258135557175,
- 0.04336356371641159,
- -0.12011027336120605,
- -0.07306692004203796,
- 0.06381555646657944,
- -0.03392115607857704,
- -0.02734091877937317,
- 0.015942158177495003,
- 0.09069252014160156,
- 0.010674568824470043,
- -0.021263519302010536,
- -0.03426932170987129,
- 0.04659618064761162,
- -0.0189789067953825,
- -0.1466268002986908,
- 0.027662400156259537,
- -0.018608469516038895,
- 0.09115882217884064,
- 0.07009724527597427,
- 0.024562809616327286,
- -0.053876571357250214,
- 0.03458056226372719,
- -0.05181953310966492,
- 0.000029261689633131027,
- -0.0551154725253582,
- 0.15381291508674622,
- 0.003226179862394929,
- 0.015419207513332367,
- -0.023409759625792503,
- 0.17211760580539703,
- -0.016839148476719856,
- 0.09110818058252335,
- 0.059521403163671494,
- -0.014319105073809624,
- 0.02887093462049961,
- 0.001228206790983677,
- -0.06345166265964508,
- -0.0200978871434927,
- 0.020317930728197098,
- 0.013192133978009224,
- 0.0026087963487952948,
- 0.009840834885835648,
- 0.04345138370990753,
- -0.008478043600916862,
- 0.007531024981290102,
- -0.021382110193371773,
- -0.04183794930577278,
- 0.04742743447422981,
- 0.019189197570085526,
- -0.0732184648513794,
- 0.02328413352370262,
- 0.0266695749014616,
- -0.10884477198123932,
- 0.04459141939878464,
- -0.07688326388597488,
- 0.03505389764904976,
- -0.011456635780632496,
- -0.012255017645657063,
- -0.18045322597026825,
- 0.008205295540392399,
- -0.021334048360586166,
- -0.07758200913667679,
- 0.04106782749295235,
- -0.019032461568713188,
- -0.07268572598695755,
- 0.006739393342286348,
- 0.045075200498104095,
- 0.003404785180464387,
- 0.09858875721693039,
- 0.035299915820360184,
- -0.005843805149197578,
- -0.03882241249084473,
- -0.001595330541022122,
- 0.026801202446222305,
- -0.09345287829637527,
- -0.04240382835268974,
- -0.02858544886112213,
- -1.3391725062206206e-8,
- -0.031855929642915726,
- 0.02483920380473137,
- -0.004948047921061516,
- -0.06910710781812668,
- 0.09990117698907852,
- 0.12655657529830933,
- 0.02815939486026764,
- -0.10587046295404434,
- 0.021919256076216698,
- 0.02865452505648136,
- 0.04554557055234909,
- 0.012128331698477268,
- 0.016819946467876434,
- 0.05751735344529152,
- 0.02917267568409443,
- -0.024597397074103355,
- 0.011026562191545963,
- 0.029077785089612007,
- -0.051959745585918427,
- 0.03324785828590393,
- -0.010924545116722584,
- -0.020139111205935478,
- 0.038967203348875046,
- -0.06415717303752899,
- 0.019065752625465393,
- 0.0064805643633008,
- 0.012664527632296085,
- 0.10204051434993744,
- -0.0036535714752972126,
- -0.014667367562651634,
- 0.019405461847782135,
- 0.08467839658260345,
- 0.01721656322479248,
- -0.021694889292120934,
- 0.13046129047870636,
- -0.04506533965468407,
- -0.044875964522361755,
- -0.030475584790110588,
- 0.0300773773342371,
- -0.024626825004816055,
- 0.014918047934770584,
- 0.07859473675489426,
- 0.09750407934188843,
- -0.03564191237092018,
- -0.07048775255680084,
- -0.045005861669778824,
- 0.0498410239815712,
- 0.056937094777822495,
- 0.003792503383010626,
- -0.017466675490140915,
- -0.02550610341131687,
- -0.03245001658797264,
- -0.03461539000272751,
- -0.02805837243795395,
- 0.017400484532117844,
- 0.03733008727431297,
- -0.0018263371894136071,
- 0.06732457131147385,
- -0.04202454909682274,
- -0.05069554224610329,
- 0.08878903090953827,
- 0.07180289924144745,
- 0.008907136507332325,
- -0.0191391259431839
- ]
- },
- {
- "keyword": "track",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.007518194615840912,
- 0.019005293026566505,
- -0.016867056488990784,
- 0.02579733356833458,
- 0.020940637215971947,
- 0.04911600798368454,
- 0.0714220181107521,
- -0.017460087314248085,
- 0.0004548582073766738,
- -0.06748896092176437,
- -0.0016230447217822075,
- -0.031956423074007034,
- -0.013757999986410141,
- -0.022116458043456078,
- -0.032347746193408966,
- 0.010680465027689934,
- 0.014670995064079762,
- 0.05237375572323799,
- -0.062313228845596313,
- -0.03147846460342407,
- -0.03710112348198891,
- -0.01795158162713051,
- 0.022779587656259537,
- 0.06700470298528671,
- -0.07765474915504456,
- 0.10074868053197861,
- -0.054827023297548294,
- -0.0054906378500163555,
- -0.0745759978890419,
- -0.11144652962684631,
- -0.06693705916404724,
- -0.006821678020060062,
- 0.039945028722286224,
- 0.007350765634328127,
- -0.0490247868001461,
- -0.04795074462890625,
- 0.0033940193243324757,
- 0.010827446356415749,
- 0.021514765918254852,
- -0.009811817668378353,
- -0.04162577912211418,
- -0.06887125968933105,
- 0.050275497138500214,
- 0.03484383597970009,
- 0.053025804460048676,
- 0.038238730281591415,
- 0.024358214810490608,
- -0.0206874068826437,
- -0.01825493387877941,
- 0.03744877874851227,
- 0.009762948378920555,
- -0.05586933344602585,
- 0.025995910167694092,
- 0.0061125122010707855,
- 0.0011936769587919116,
- 0.0803813561797142,
- 0.051926061511039734,
- 0.002271643839776516,
- 0.033659450709819794,
- -0.02462874911725521,
- 0.06627164036035538,
- -0.05383863300085068,
- -0.08387976139783859,
- -0.023698365315794945,
- -0.007948312908411026,
- -0.06843525171279907,
- -0.041827067732810974,
- 0.0692296251654625,
- 0.01887703128159046,
- 0.02504139393568039,
- 0.06983707845211029,
- 0.03421327471733093,
- 0.0342756062746048,
- 0.003918140195310116,
- 0.05165030062198639,
- -0.001795520423911512,
- -0.0124714570119977,
- 0.01578330248594284,
- 0.009862913750112057,
- -0.040331292897462845,
- 0.016306156292557716,
- -0.09234192222356796,
- -0.010467656888067722,
- -0.03052029386162758,
- 0.07988112419843674,
- 0.002570788376033306,
- 0.040156926959753036,
- 0.04768243804574013,
- 0.006004574708640575,
- 0.02497871033847332,
- -0.0644027590751648,
- 0.050171881914138794,
- 0.0016514175804331899,
- -0.04816392436623573,
- -0.04281265661120415,
- 0.03333652764558792,
- -0.0007696974789723754,
- 0.03221516311168671,
- 0.024418478831648827,
- 0.2041013091802597,
- 0.08098844438791275,
- 0.05568958818912506,
- 0.002480026800185442,
- 0.11298193782567978,
- -0.028838029131293297,
- -0.02697189524769783,
- -0.025495506823062897,
- 0.0824783518910408,
- 0.04337191581726074,
- -0.01331610232591629,
- 0.06517113745212555,
- -0.06682707369327545,
- -0.03002598136663437,
- 0.03695211187005043,
- 0.04302248731255531,
- 0.023410169407725334,
- -0.06353344023227692,
- 0.06824416667222977,
- -0.013037403114140034,
- 0.015103703364729881,
- -0.06911171972751617,
- -0.030361657962203026,
- -0.018819153308868408,
- -0.02135358192026615,
- -0.052549783140420914,
- -0.05543384328484535,
- 0.08698619902133942,
- -4.546917943472182e-33,
- -0.021403219550848007,
- -0.08027445524930954,
- 0.00688417162746191,
- -0.11762218922376633,
- 0.013077419251203537,
- 0.0018142972839996219,
- -0.09054279327392578,
- -0.024097101762890816,
- -0.02596762217581272,
- 0.07077913731336594,
- -0.011250206269323826,
- 0.0007543386891484261,
- -0.04945759475231171,
- 0.01929052174091339,
- 0.14388000965118408,
- -0.07073663920164108,
- -0.07324780523777008,
- 0.07461832463741302,
- -0.07403236627578735,
- 0.0524965301156044,
- -0.029411183670163155,
- -0.008968142792582512,
- -0.0007148229633457959,
- -0.037057630717754364,
- 0.07511874288320541,
- -0.0008830256992951035,
- -0.012035485357046127,
- -0.049524303525686264,
- 0.01481921412050724,
- 0.015112889930605888,
- -0.017917875200510025,
- 0.032091181725263596,
- -0.005081154406070709,
- 0.00819685310125351,
- -0.0016217664815485477,
- -0.023032700642943382,
- -0.01941862888634205,
- -0.05767454206943512,
- 0.04201993718743324,
- -0.0673658549785614,
- 0.06708801537752151,
- -0.013714826665818691,
- -0.008317346684634686,
- -0.03840714693069458,
- -0.05041341856122017,
- 0.0438917838037014,
- 0.04773784428834915,
- 0.09182105958461761,
- -0.03016512095928192,
- 0.034724969416856766,
- -0.009267697110772133,
- -0.03211132436990738,
- -0.08617096394300461,
- -0.08233281224966049,
- 0.028485219925642014,
- -0.02972410060465336,
- 0.03102516010403633,
- 0.01209698710590601,
- 0.008757079020142555,
- -0.023399796336889267,
- 0.09743685275316238,
- 0.05836163088679314,
- -0.036173414438962936,
- -0.03845353052020073,
- -0.015593080781400204,
- 0.0031718453392386436,
- 0.017471281811594963,
- -0.015215335413813591,
- 0.07459773123264313,
- 0.02481778711080551,
- -0.09238552302122116,
- -0.01580994203686714,
- 0.012575961649417877,
- 0.019253861159086227,
- 0.08829187601804733,
- -0.0008644240442663431,
- -0.012528494000434875,
- 0.053794391453266144,
- -0.08611313998699188,
- -0.04166597127914429,
- -0.1339656114578247,
- -0.038535263389348984,
- -0.005049897823482752,
- 0.011767229996621609,
- 0.0352296382188797,
- 0.07199029624462128,
- -0.038365136831998825,
- -0.03618958592414856,
- -0.015819033607840538,
- 0.013972624205052853,
- -0.05388578400015831,
- 0.02894136868417263,
- -0.05822473764419556,
- 0.08659138530492783,
- -0.03250221535563469,
- 3.901898479237069e-33,
- 0.021461354568600655,
- 0.07128366082906723,
- 0.13322506844997406,
- 0.05998289957642555,
- 0.04679429903626442,
- 0.054780520498752594,
- 0.02444511651992798,
- -0.018781697377562523,
- 0.05346792936325073,
- 0.08444798737764359,
- -0.08119934797286987,
- -0.045004308223724365,
- -0.029969196766614914,
- 0.05729176104068756,
- -0.022050902247428894,
- -0.020223762840032578,
- 0.052498508244752884,
- -0.01064757164567709,
- 0.008364096283912659,
- -0.0552297942340374,
- -0.01771271601319313,
- -0.07872433215379715,
- 0.016782600432634354,
- -0.02754797600209713,
- -0.015652533620595932,
- 0.0312601663172245,
- 0.07954631000757217,
- -0.018886025995016098,
- -0.0189164150506258,
- -0.0395214706659317,
- 0.010362010449171066,
- 0.0022467405069619417,
- 0.01761513203382492,
- -0.04348864406347275,
- -0.03459081053733826,
- 0.06238246336579323,
- 0.05341508984565735,
- 0.07070551067590714,
- -0.04792524501681328,
- -0.0009986467193812132,
- 0.05544080212712288,
- 0.05120224878191948,
- 0.04261377826333046,
- 0.12207108736038208,
- -0.02725912258028984,
- -0.02678709663450718,
- -0.027895646169781685,
- 0.18094086647033691,
- -0.050058990716934204,
- 0.013732791878283024,
- -0.03946403041481972,
- -0.02618878334760666,
- -0.002237236825749278,
- -0.03733374923467636,
- -0.013089438900351524,
- 0.05945875868201256,
- -0.0355435386300087,
- -0.04910154640674591,
- -0.057496339082717896,
- -0.010038240812718868,
- -0.02921351231634617,
- 0.081967294216156,
- -0.05492287874221802,
- 0.06693696975708008,
- 0.010869495570659637,
- 0.047333404421806335,
- -0.04806889593601227,
- -0.04294085130095482,
- -0.060179855674505234,
- 0.08781534433364868,
- -0.04835333675146103,
- 0.04832179844379425,
- -0.028743145987391472,
- 0.003995181992650032,
- -0.08377543836832047,
- -0.03451346233487129,
- -0.08762886375188828,
- 0.028240377083420753,
- 0.003937870729714632,
- -0.0053217592649161816,
- -0.052756812423467636,
- -0.03191899508237839,
- 0.04586094617843628,
- 0.009950864128768444,
- 0.007686627097427845,
- 0.06374508142471313,
- -0.020426250994205475,
- -0.0026681891176849604,
- 0.006302756257355213,
- -0.023581620305776596,
- 0.0937424972653389,
- 0.05140833929181099,
- -0.004425202030688524,
- 0.001859581214375794,
- -0.11050237715244293,
- -1.1286685364098048e-8,
- -0.07280898094177246,
- 0.07691770046949387,
- -0.0020037819631397724,
- -0.022521790117025375,
- 0.06896470487117767,
- 0.059342093765735626,
- 0.08025822788476944,
- 0.03524833545088768,
- 0.027820738032460213,
- -0.009559601545333862,
- 0.007161109708249569,
- -0.05623361095786095,
- -0.05132177472114563,
- 0.10334499180316925,
- 0.017474189400672913,
- -0.061920687556266785,
- -0.052434276789426804,
- 0.07963074743747711,
- -0.05703737959265709,
- 0.061945591121912,
- -0.010312207043170929,
- -0.022814102470874786,
- 0.015259991399943829,
- 0.061602942645549774,
- -0.005403696093708277,
- -0.07922174781560898,
- 0.009239614009857178,
- 0.13882403075695038,
- 0.06383340060710907,
- -0.026813168078660965,
- 0.04425254091620445,
- 0.07274273037910461,
- 0.04289347678422928,
- -0.03587610274553299,
- 0.01152193546295166,
- -0.040058694779872894,
- -0.0255434550344944,
- 0.04641224443912506,
- 0.005996410269290209,
- -0.036448169499635696,
- -0.0576997734606266,
- 0.012713120318949223,
- 0.017407385632395744,
- -0.02271845005452633,
- 0.020738406106829643,
- -0.05457427352666855,
- -0.013081418350338936,
- -0.0765785276889801,
- -0.020372964441776276,
- -0.06999803334474564,
- -0.050660472363233566,
- -0.05398965999484062,
- 0.026447774842381477,
- 0.059075597673654556,
- 0.07889353483915329,
- 0.08430375158786774,
- -0.018998485058546066,
- -0.056834861636161804,
- -0.07464390993118286,
- 0.039649371057748795,
- 0.01335393637418747,
- -0.10053008794784546,
- 0.06744910776615143,
- 0.06727028638124466
- ]
- },
- {
- "keyword": "album",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0766255110502243,
- 0.059147752821445465,
- -0.019938647747039795,
- 0.04500981792807579,
- -0.034427493810653687,
- -0.012758891098201275,
- 0.11356797069311142,
- 0.023975495249032974,
- 0.0535607784986496,
- 0.0008958318503573537,
- 0.048848602920770645,
- -0.07353581488132477,
- 0.04061577096581459,
- -0.07066266983747482,
- -0.005731495097279549,
- 0.022219263017177582,
- -0.03333601355552673,
- 0.03184952586889267,
- -0.08456577360630035,
- -0.010014708153903484,
- -0.142278790473938,
- 0.046317849308252335,
- 0.028023410588502884,
- 0.08369621634483337,
- -0.03376961499452591,
- 0.04913409799337387,
- -0.037343401461839676,
- 0.007671056315302849,
- 0.014878134243190289,
- -0.09616825729608536,
- 0.040722865611314774,
- 0.03154557943344116,
- 0.036795277148485184,
- -0.01299961842596531,
- -0.0009770599426701665,
- -0.05537800490856171,
- 0.010624759830534458,
- -0.0020285670179873705,
- -0.009064571931958199,
- 0.03370502218604088,
- 0.009809644892811775,
- -0.003336232388392091,
- -0.03747858479619026,
- -0.037014272063970566,
- -0.011258103884756565,
- 0.039378371089696884,
- 0.020895354449748993,
- 0.026465395465493202,
- 0.016920585185289383,
- 0.07164285331964493,
- -0.03501088544726372,
- -0.007975217886269093,
- -0.05635359510779381,
- -0.0018531755777075887,
- 0.014665437862277031,
- 0.03526873514056206,
- -0.0409478023648262,
- 0.08988358825445175,
- -0.011472812853753567,
- -0.004835974890738726,
- 0.08902792632579803,
- -0.05204254388809204,
- -0.08921542018651962,
- 0.011866368353366852,
- 0.09698504209518433,
- 0.07148544490337372,
- -0.007683874573558569,
- 0.06406174600124359,
- -0.042407382279634476,
- -0.01229736115783453,
- 0.0406515933573246,
- 0.04843291640281677,
- 0.012430614791810513,
- 0.005163040943443775,
- -0.0018285117112100124,
- -0.0026278006844222546,
- 0.002580630127340555,
- -0.023532846942543983,
- 0.008771716617047787,
- -0.01756886951625347,
- 0.08295360207557678,
- -0.033544354140758514,
- -0.021378617733716965,
- -0.05901098996400833,
- -0.04091155156493187,
- -0.014186004176735878,
- 0.010161242447793484,
- -0.00583058362826705,
- -0.10745716094970703,
- 0.018633875995874405,
- -0.023281531408429146,
- -0.0038823687937110662,
- 0.05698114633560181,
- -0.005669867619872093,
- -0.07646085321903229,
- 0.013607842847704887,
- 0.048542510718107224,
- -0.09423022717237473,
- -0.07840098440647125,
- 0.24382366240024567,
- 0.04880768060684204,
- 0.061319079250097275,
- -0.00313737615942955,
- -0.013788684271275997,
- -0.005695133004337549,
- -0.0584481917321682,
- 0.00048056826926767826,
- 0.029290514066815376,
- 0.001622886280529201,
- -0.03995189443230629,
- -0.005291937384754419,
- 0.027874983847141266,
- -0.05277366191148758,
- -0.017919305711984634,
- 0.046317845582962036,
- -0.07523182034492493,
- 0.033493366092443466,
- 0.05078201740980148,
- 0.027124078944325447,
- -0.09387962520122528,
- 0.044349513947963715,
- -0.03385436534881592,
- -0.013188363052904606,
- -0.011895491741597652,
- -0.1384599506855011,
- -0.06567864120006561,
- -0.015354716219007969,
- -3.4421361900075785e-33,
- 0.07018305361270905,
- -0.11307583004236221,
- -0.013962856493890285,
- 0.049219828099012375,
- 0.07095414400100708,
- -0.063534677028656,
- 0.017836404964327812,
- -0.017744166776537895,
- -0.026675373315811157,
- 0.1611427515745163,
- 0.007720085326582193,
- 0.00829395093023777,
- 0.0014594764215871692,
- -0.053997952491045,
- 0.11044337600469589,
- -0.002897232538089156,
- -0.03730259835720062,
- 0.04981705918908119,
- -0.0010806077625602484,
- -0.062202006578445435,
- -0.06072456017136574,
- 0.034378644078969955,
- 0.015156758949160576,
- 0.06675653904676437,
- 0.04350721463561058,
- -0.022793227806687355,
- -0.006937891244888306,
- -0.06229352205991745,
- 0.035291917622089386,
- 0.010368051938712597,
- -0.026329921558499336,
- 0.038077112287282944,
- 0.04648781567811966,
- -0.015646690502762794,
- 0.009888138622045517,
- 0.05468752980232239,
- -0.014784512110054493,
- -0.036725908517837524,
- 0.00791862141340971,
- -0.026860730722546577,
- 0.04728224128484726,
- 0.025974836200475693,
- -0.027022093534469604,
- -0.00779782934114337,
- -0.007454442325979471,
- 0.117762990295887,
- -0.013589993119239807,
- 0.05807892978191376,
- 0.07731600105762482,
- 0.03502761572599411,
- 0.02569447085261345,
- -0.031155738979578018,
- -0.11094839125871658,
- -0.015354521572589874,
- -0.028375225141644478,
- -0.007860829122364521,
- -0.021727852523326874,
- 0.017015501856803894,
- 0.058948855847120285,
- 0.020123589783906937,
- 0.10628402978181839,
- 0.08561773598194122,
- -0.025625240057706833,
- -0.01648758165538311,
- -0.035340677946805954,
- 0.0623515285551548,
- 0.013253704644739628,
- -0.022851327434182167,
- 0.05036180466413498,
- -0.04860730096697807,
- -0.1263016164302826,
- -0.03790203481912613,
- 0.0670819953083992,
- -0.026781095191836357,
- 0.06549426168203354,
- -0.024138053879141808,
- -0.011305469088256359,
- -0.03125905245542526,
- -0.07355500012636185,
- 0.007844768464565277,
- -0.04928108677268028,
- -0.012769898399710655,
- -0.02214074693620205,
- 0.06335093080997467,
- 0.021726293489336967,
- 0.006741924211382866,
- -0.032936204224824905,
- -0.04255189374089241,
- 0.013232363387942314,
- 0.023570116609334946,
- -0.013432689942419529,
- 0.044252876192331314,
- 0.008899839594960213,
- 0.04217083007097244,
- -0.0044500879012048244,
- 3.0645440783074357e-33,
- 0.0359036959707737,
- -0.012337887659668922,
- 0.00021131735411472619,
- 0.04147326573729515,
- 0.06809999793767929,
- -0.009135887026786804,
- 0.04172864183783531,
- 0.08320227265357971,
- -0.04174795001745224,
- 0.01697533018887043,
- -0.040162596851587296,
- -0.03908706083893776,
- 0.015535164624452591,
- 0.02342255413532257,
- -0.009531962685286999,
- -0.005491745658218861,
- 0.08298904448747635,
- -0.028496230021119118,
- -0.003926482982933521,
- 0.011252077296376228,
- -0.09169260412454605,
- 0.0042777587659657,
- 0.04231609031558037,
- -0.016629984602332115,
- -0.023081352934241295,
- 0.038708243519067764,
- 0.10864394903182983,
- 0.00024766181013546884,
- 0.023434199392795563,
- -0.009236619807779789,
- 0.08970409631729126,
- 0.014574111439287663,
- -0.05296938121318817,
- -0.006256754044443369,
- -0.0035324993077665567,
- 0.1037055030465126,
- 0.05069473758339882,
- 0.010291495360434055,
- -0.061326611787080765,
- -0.02131469175219536,
- -0.030032064765691757,
- -0.01464723888784647,
- -0.05439361557364464,
- 0.1323111206293106,
- 0.025947678834199905,
- -0.028956612572073936,
- 0.024178441613912582,
- 0.12891799211502075,
- -0.028565537184476852,
- 0.0787016749382019,
- -0.005382956936955452,
- -0.057915475219488144,
- 0.029782775789499283,
- -0.0051324930973351,
- -0.035798754543066025,
- 0.012638390064239502,
- -0.0847325250506401,
- -0.0030450972262769938,
- 0.02897595427930355,
- 0.026120314374566078,
- -0.015087251551449299,
- 0.03874988481402397,
- -0.038234516978263855,
- -0.019581831991672516,
- -0.10352469235658646,
- 0.009682359173893929,
- -0.006924208253622055,
- -0.03360794484615326,
- 0.005035627633333206,
- 0.04729592427611351,
- -0.06433527916669846,
- 0.022669583559036255,
- -0.045207783579826355,
- 0.08025842159986496,
- -0.024741895496845245,
- -0.047796253114938736,
- -0.04715109243988991,
- -0.009288289584219456,
- -0.011113894172012806,
- -0.07120814919471741,
- -0.09721189737319946,
- -0.00898645631968975,
- -0.042915765196084976,
- 0.04755502566695213,
- 0.02391704171895981,
- -0.05426013842225075,
- 0.11698076874017715,
- -0.05582233518362045,
- 0.013815721496939659,
- -0.015129185281693935,
- 0.04124940559267998,
- -0.0028548859991133213,
- -0.07467785477638245,
- -0.021201303228735924,
- 0.016351936385035515,
- -1.212333522460085e-8,
- 0.006309490650892258,
- 0.06958617269992828,
- 0.05270449072122574,
- -0.11118844896554947,
- 0.12545907497406006,
- 0.06778433173894882,
- 0.04705481603741646,
- 0.015520494431257248,
- 0.019107025116682053,
- 0.023004576563835144,
- 0.04373864084482193,
- 0.016893984749913216,
- -0.04009980708360672,
- 0.03169161453843117,
- -0.02064754068851471,
- -0.023078639060258865,
- -0.042582299560308456,
- 0.0867987722158432,
- -0.07787282019853592,
- 0.009925477206707,
- -0.023727890104055405,
- -0.024868523702025414,
- 0.12702429294586182,
- -0.14789345860481262,
- 0.023132534697651863,
- -0.03664817288517952,
- -0.005871315952390432,
- 0.02648761495947838,
- -0.03949892520904541,
- -0.024682125076651573,
- -0.004991656634956598,
- 0.08751124143600464,
- 0.014966221526265144,
- 0.020744729787111282,
- 0.08956605195999146,
- -0.06628497689962387,
- -0.0058954195119440556,
- -0.003676058491691947,
- -0.059371888637542725,
- -0.0032718603033572435,
- -0.02643638290464878,
- -0.011194690130650997,
- 0.06247631087899208,
- -0.0067398264072835445,
- -0.04614413529634476,
- -0.05726470798254013,
- 0.05767510086297989,
- 0.07733055204153061,
- -0.03142181411385536,
- -0.04089312627911568,
- -0.025474097579717636,
- -0.04635845124721527,
- -0.008928431198000908,
- 0.05182027071714401,
- 0.001191113842651248,
- -0.02203366905450821,
- -0.00014189367357175797,
- 0.048958148807287216,
- -0.05194741114974022,
- -0.015857478603720665,
- 0.1137223169207573,
- 0.003643590258434415,
- -0.020886268466711044,
- -0.006530599668622017
- ]
- },
- {
- "keyword": "podcast",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.021076107397675514,
- -0.05673406273126602,
- -0.03660555183887482,
- -0.023118358105421066,
- 0.052615098655223846,
- 0.05030864104628563,
- 0.053442005068063736,
- 0.004485697485506535,
- 0.03241899237036705,
- 0.009691408835351467,
- -0.09596145898103714,
- 0.03251389414072037,
- -0.04758896306157112,
- 0.01897587440907955,
- -0.036150287836790085,
- -0.08590757846832275,
- 0.011980405077338219,
- -0.024693934246897697,
- 0.03383367508649826,
- -0.028202258050441742,
- -0.09169065207242966,
- 0.09274937957525253,
- 0.029354508966207504,
- 0.05607661232352257,
- 0.04141385480761528,
- 0.0018370336620137095,
- -0.034850992262363434,
- -0.05558300390839577,
- -0.005856197327375412,
- -0.09665635973215103,
- 0.020841820165514946,
- 0.006784379016608,
- 0.12459404021501541,
- 0.0050262208096683025,
- -0.04725155234336853,
- -0.016260575503110886,
- 0.015262497588992119,
- 0.005724623799324036,
- -0.01288409624248743,
- 0.04962821304798126,
- 0.017807457596063614,
- 0.017929822206497192,
- -0.014093027450144291,
- -0.0960564985871315,
- -0.028053494170308113,
- -0.057906705886125565,
- -0.014442489482462406,
- -0.01903889700770378,
- 0.09869448840618134,
- 0.12925375998020172,
- -0.05682174488902092,
- -0.013767451047897339,
- 0.005136891268193722,
- 0.043099671602249146,
- 0.01958690956234932,
- 0.0006733096670359373,
- 0.010221878066658974,
- 0.09332133829593658,
- 0.025226784870028496,
- -0.03731156513094902,
- 0.013927941210567951,
- -0.09562031924724579,
- -0.07658311724662781,
- 0.054633431136608124,
- 0.05526164919137955,
- 0.01357218623161316,
- 0.026279278099536896,
- 0.12615960836410522,
- 0.03406594693660736,
- -0.035703931003808975,
- -0.14839187264442444,
- 0.0433182492852211,
- 0.00048263202188536525,
- 0.024120427668094635,
- 0.008066793903708458,
- -0.00018374081992078573,
- 0.08486398309469223,
- -0.042909279465675354,
- 0.013264266774058342,
- -0.0012667245464399457,
- -0.04140429571270943,
- -0.06140115112066269,
- 0.009959623217582703,
- -0.09433898329734802,
- 0.0238809734582901,
- -0.014481325633823872,
- 0.03812430799007416,
- 0.0027211904525756836,
- -0.026450173929333687,
- -0.02677164226770401,
- -0.11049682646989822,
- 0.07546485960483551,
- 0.04317697510123253,
- 0.022637570276856422,
- -0.04002485051751137,
- 0.0914916843175888,
- 0.000555017264559865,
- -0.02817852608859539,
- -0.018536433577537537,
- 0.23072229325771332,
- 0.05553600564599037,
- 0.026989037171006203,
- -0.03750738501548767,
- -0.07021249830722809,
- 0.0045524719171226025,
- -0.08538911491632462,
- -0.05761022865772247,
- -0.028530411422252655,
- 0.040387142449617386,
- 0.022675132378935814,
- -0.018152687698602676,
- 0.03849593549966812,
- 0.022238390520215034,
- -0.056098226457834244,
- 0.10736400634050369,
- 0.07642966508865356,
- 0.09392747282981873,
- 0.03245232626795769,
- -0.06248302385210991,
- 0.03835422173142433,
- 0.0274681244045496,
- 0.003457640763372183,
- -0.020242534577846527,
- -0.009721571579575539,
- -0.014618764631450176,
- -0.008519335649907589,
- -0.007744002155959606,
- -4.602513316136307e-33,
- 0.037639304995536804,
- -0.0690293237566948,
- 0.011224095709621906,
- 0.004180003888905048,
- 0.11986131221055984,
- 0.01821538619697094,
- -0.014772781170904636,
- 0.008103189058601856,
- -0.04184351861476898,
- -0.009492973797023296,
- 0.02109488472342491,
- 0.05491868034005165,
- -0.043250616639852524,
- -0.04542664438486099,
- 0.011530798859894276,
- -0.005261867772787809,
- -0.101883165538311,
- 0.07712845504283905,
- -0.04449097439646721,
- -0.055327292531728745,
- 0.002169164828956127,
- -0.006971169728785753,
- -0.015366639941930771,
- 0.07741168141365051,
- 0.06496576219797134,
- -0.04224212467670441,
- 0.09139900654554367,
- -0.135740265250206,
- 0.12058882415294647,
- 0.03711651265621185,
- -0.04838385060429573,
- -0.06773354858160019,
- -0.07585347443819046,
- -0.05698684602975845,
- 0.02431241236627102,
- 0.0006358806858770549,
- -0.0737716481089592,
- -0.01159142330288887,
- 0.034898966550827026,
- -0.033961791545152664,
- 0.04772430658340454,
- -0.09914255142211914,
- -0.013089866377413273,
- -0.02824651636183262,
- 0.03706606104969978,
- -0.020604267716407776,
- 0.053415559232234955,
- 0.043344926089048386,
- -0.05397655442357063,
- -0.025485996156930923,
- 0.03458993509411812,
- -0.03275066986680031,
- -0.05164964497089386,
- -0.04649363458156586,
- 0.02317870780825615,
- -0.012871954590082169,
- 0.0424182191491127,
- -0.0298696868121624,
- 0.037122249603271484,
- 0.04272767901420593,
- 0.04996560513973236,
- 0.07543738931417465,
- 0.04540213942527771,
- -0.018271429464221,
- -0.01638096757233143,
- 0.012946751900017262,
- 0.024538064375519753,
- -0.00916345790028572,
- 0.07679034024477005,
- 0.026490382850170135,
- -0.05141081288456917,
- 0.008643478155136108,
- 0.04434848576784134,
- -0.04430019482970238,
- -0.011007011868059635,
- 0.020949481055140495,
- -0.00994906760752201,
- -0.08122232556343079,
- -0.07629433274269104,
- 0.07006789743900299,
- -0.012993699871003628,
- -0.007363150827586651,
- -0.04996524006128311,
- 0.01940767467021942,
- 0.003046663012355566,
- -0.00510402163490653,
- -0.013215852901339531,
- -0.01702556014060974,
- -0.021856136620044708,
- 0.004403750877827406,
- -0.1036374568939209,
- 0.023755589500069618,
- 0.05642532929778099,
- 0.014403825625777245,
- 0.0314510241150856,
- 4.1775166396743704e-33,
- -0.012429052963852882,
- 0.02863771840929985,
- -0.03696734085679054,
- 0.03199458494782448,
- -0.008164877071976662,
- -0.009859960526227951,
- 0.007641440723091364,
- 0.06767573207616806,
- -0.059941768646240234,
- -0.005513302981853485,
- -0.0561380535364151,
- -0.10868912190198898,
- 0.03774762898683548,
- 0.04958698898553848,
- -0.025143861770629883,
- -0.052479926496744156,
- 0.0015482523012906313,
- -0.04349268972873688,
- -0.030076082795858383,
- -0.014490648172795773,
- 0.02133440412580967,
- -0.028308384120464325,
- 0.007684303913265467,
- 0.06959414482116699,
- 0.05381634086370468,
- -0.009422785602509975,
- 0.047044865787029266,
- 0.0855337455868721,
- -0.009399838745594025,
- 0.004173964262008667,
- -0.009078582748770714,
- -0.044994011521339417,
- -0.07564202696084976,
- -0.05254022404551506,
- -0.0016387907089665532,
- 0.13079071044921875,
- 0.03195758908987045,
- 0.03015732206404209,
- 0.016949769109487534,
- -0.06757771223783493,
- 0.004936701152473688,
- -0.03168361634016037,
- -0.0022562327794730663,
- 0.05683593451976776,
- 0.003354423213750124,
- -0.08459654450416565,
- -0.05782574787735939,
- 0.11017592251300812,
- -0.033423714339733124,
- -0.007513156160712242,
- -0.031119171530008316,
- -0.05089650675654411,
- 0.048295870423316956,
- -0.005033961031585932,
- -0.004771373234689236,
- 0.00992247648537159,
- -0.028272826224565506,
- 0.004606066271662712,
- 0.0008129971101880074,
- 0.0011981934076175094,
- -0.04691135883331299,
- -0.03149096667766571,
- -0.0178249292075634,
- -0.05331026017665863,
- -0.016383884474635124,
- -0.011776831932365894,
- 0.07388003915548325,
- -0.01677180640399456,
- -0.03978501632809639,
- 0.039350394159555435,
- 0.04424159973859787,
- 0.05765457823872566,
- 0.023524073883891106,
- 0.025708403438329697,
- 0.04303241893649101,
- 0.10576926171779633,
- -0.03685213252902031,
- 0.0007940488285385072,
- -0.04460984095931053,
- -0.046795252710580826,
- -0.027051564306020737,
- 0.014132509008049965,
- -0.008855639956891537,
- 0.030450409278273582,
- 0.02937130443751812,
- 0.056465860456228256,
- 0.13792824745178223,
- 0.07338930666446686,
- -0.005372161976993084,
- 0.016359858214855194,
- 0.05327589064836502,
- 0.00490611232817173,
- -0.043581824749708176,
- -0.019116079434752464,
- 0.007942802272737026,
- -1.0580586184971708e-8,
- -0.040888138115406036,
- 0.013133079744875431,
- 0.04389388859272003,
- -0.03570139408111572,
- 0.0005352969164960086,
- 0.005322868004441261,
- 0.03170172870159149,
- -0.01632881350815296,
- 0.013919270597398281,
- 0.0007997766369953752,
- -0.010936655104160309,
- -0.03910403698682785,
- -0.02009083330631256,
- 0.08538664132356644,
- 0.08536422252655029,
- 0.012917578220367432,
- 0.00859726034104824,
- 0.022602329030632973,
- -0.0700213611125946,
- -0.06488090753555298,
- 0.05326896905899048,
- 0.017163602635264397,
- 0.09982851147651672,
- 0.0229029543697834,
- 0.004435330629348755,
- -0.05831826850771904,
- 0.08344724029302597,
- 0.011664941906929016,
- 0.031015971675515175,
- -0.022989775985479355,
- -0.05022288113832474,
- 0.06374214589595795,
- -0.08196534961462021,
- -0.06569363176822662,
- -0.05172395333647728,
- -0.032620903104543686,
- 0.047405093908309937,
- 0.012890635058283806,
- -0.012318198569118977,
- 0.03472733870148659,
- -0.023975690826773643,
- -0.01546911895275116,
- 0.1251702755689621,
- -0.07658351957798004,
- -0.15403230488300323,
- -0.02709992043673992,
- 0.0470663458108902,
- -0.03232080861926079,
- 0.04798273742198944,
- -0.00897899828851223,
- -0.032789114862680435,
- -0.019365841522812843,
- 0.09675313532352448,
- -0.01670086942613125,
- 0.030309822410345078,
- 0.06575624644756317,
- -0.03486737981438637,
- -0.04334147647023201,
- -0.042372867465019226,
- 0.016132347285747528,
- 0.07622141391038895,
- 0.08228684216737747,
- -0.01622474007308483,
- 0.0366213358938694
- ]
- },
- {
- "keyword": "episode",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.11851434409618378,
- 0.028096066787838936,
- -0.039857782423496246,
- 0.04894419386982918,
- -0.007647157646715641,
- -0.03307921066880226,
- 0.09921342879533768,
- 0.05514015257358551,
- -0.005552224349230528,
- -0.03692588582634926,
- 0.04526873677968979,
- 0.01001203153282404,
- -0.01959889754652977,
- -0.024498550221323967,
- -0.029059629887342453,
- -0.05190432444214821,
- 0.05336885154247284,
- -0.020470088347792625,
- -0.07474622130393982,
- 0.04459391161799431,
- 0.03698093444108963,
- 0.03510213643312454,
- 0.030851034447550774,
- 0.042691901326179504,
- 0.04193691164255142,
- 0.04340241849422455,
- -0.011510543525218964,
- -0.06545571982860565,
- 0.02688303403556347,
- -0.06404313445091248,
- -0.017945315688848495,
- 0.030886704102158546,
- 0.08431226760149002,
- 0.06318548321723938,
- 0.011606596410274506,
- -0.011116039007902145,
- 0.015749327838420868,
- 0.055298689752817154,
- -0.050420112907886505,
- 0.03415616974234581,
- -0.023529602214694023,
- -0.06579474359750748,
- -0.028505433350801468,
- -0.06379031389951706,
- -0.04155619069933891,
- -0.00865782331675291,
- 0.050904352217912674,
- 0.010558362118899822,
- 0.11765382438898087,
- 0.040194086730480194,
- -0.03654346987605095,
- 0.022930799052119255,
- -0.06566410511732101,
- -0.01207968220114708,
- -0.018749970942735672,
- -0.020353073254227638,
- 0.05926929786801338,
- 0.022787755355238914,
- 0.012832077220082283,
- 0.010262005031108856,
- 0.08621527254581451,
- -0.017569370567798615,
- -0.07723493874073029,
- 0.047889381647109985,
- 0.05977152660489082,
- -0.02769051492214203,
- 0.05849246308207512,
- 0.02550666220486164,
- -0.01183439139276743,
- -0.04623623192310333,
- -0.049262214452028275,
- 0.04331544414162636,
- -0.030904660001397133,
- -0.01847250573337078,
- -0.033227697014808655,
- 0.045546986162662506,
- 0.07743129134178162,
- -0.026527157053351402,
- 0.03237638249993324,
- 0.022482408210635185,
- -0.06808130443096161,
- -0.03884282335639,
- -0.030341673642396927,
- 0.03456421568989754,
- 0.002051070099696517,
- -0.013848408125340939,
- 0.018638739362359047,
- -0.06901075690984726,
- -0.02257942408323288,
- 0.023620091378688812,
- -0.06914808601140976,
- -0.007882827892899513,
- 0.04361635819077492,
- 0.006123162806034088,
- -0.06199030205607414,
- -0.003942930605262518,
- -0.009859331883490086,
- -0.06983844190835953,
- 0.011555206030607224,
- 0.2577943503856659,
- 0.021259984001517296,
- -0.0007686950266361237,
- 0.01616603508591652,
- -0.0701281949877739,
- 0.04318755865097046,
- 0.006389068905264139,
- -0.003410579403862357,
- -0.0015449353959411383,
- 0.03981701284646988,
- -0.040245916694402695,
- 0.0010644742287695408,
- -0.004968883935362101,
- 0.06995544582605362,
- -0.0013499697670340538,
- 0.01729593239724636,
- -0.02324611507356167,
- 0.0589427649974823,
- 0.015524816699326038,
- -0.037035949528217316,
- 0.007681169547140598,
- 0.11232995986938477,
- -0.06263331323862076,
- 0.0007907531689852476,
- -0.014616167172789574,
- -0.11734052747488022,
- -0.010652683675289154,
- 0.04319225996732712,
- -3.4394634097273964e-33,
- -0.02382589690387249,
- -0.05306451767683029,
- -0.03626222163438797,
- -0.03489939495921135,
- 0.05750606954097748,
- 0.010211246088147163,
- -0.0041895899921655655,
- -0.014104001224040985,
- 0.03550594672560692,
- 0.03226713091135025,
- -0.05880926921963692,
- -0.057945605367422104,
- -0.01591041311621666,
- -0.11347556114196777,
- 0.035214077681303024,
- -0.03358820825815201,
- 0.019313983619213104,
- 0.00665851216763258,
- -0.05729461833834648,
- -0.000041932853491744027,
- -0.0076435636729002,
- 0.025665761902928352,
- -0.000631439033895731,
- -0.010088756680488586,
- 0.008386951871216297,
- -0.11640807241201401,
- 0.032743990421295166,
- -0.042556192725896835,
- 0.04299410432577133,
- 0.004811590537428856,
- -0.03065314330160618,
- 0.07424727827310562,
- 0.003523322055116296,
- 0.010133414529263973,
- 0.019279222935438156,
- 0.024683739989995956,
- 0.04031705483794212,
- 0.018390433862805367,
- 0.032573897391557693,
- -0.0031050981488078833,
- -0.0012754780473187566,
- -0.010982662439346313,
- 0.04216175153851509,
- -0.007008629851043224,
- 0.009906427934765816,
- 0.04078406095504761,
- 0.049505092203617096,
- 0.06546872854232788,
- -0.026192709803581238,
- -0.004577211569994688,
- 0.08042547851800919,
- -0.0641254112124443,
- 0.030864926055073738,
- 0.040690187364816666,
- 0.023387977853417397,
- 0.042598165571689606,
- 0.022987904027104378,
- -0.052822794765233994,
- -0.004810024984180927,
- -0.007806376554071903,
- 0.05710268393158913,
- 0.05025958642363548,
- 0.06439711898565292,
- 0.021416133269667625,
- -0.043721478432416916,
- -0.06840988248586655,
- 0.06792701780796051,
- -0.03864981606602669,
- -0.00030208344105631113,
- 0.03335704654455185,
- -0.06173843890428543,
- -0.0017940439283847809,
- 0.02746415138244629,
- -0.029582420364022255,
- 0.03686751797795296,
- -0.022379467263817787,
- 0.04340256750583649,
- 0.07382601499557495,
- -0.10079334676265717,
- 0.06440915912389755,
- -0.0928552895784378,
- -0.05646807327866554,
- -0.0023833047598600388,
- -0.016536373645067215,
- 0.017028238624334335,
- -0.020095523446798325,
- -0.009430567733943462,
- 0.015904389321804047,
- -0.007640289142727852,
- -0.08292149752378464,
- 0.030491264536976814,
- -0.06305910646915436,
- 0.07516723871231079,
- 0.020824287086725235,
- 0.04763619974255562,
- 4.3564221044237224e-33,
- -0.07012051343917847,
- -0.02367742359638214,
- -0.03280459716916084,
- 0.017543738707900047,
- 0.10108587145805359,
- -0.02193693071603775,
- 0.006898319348692894,
- 0.011912702582776546,
- -0.09377557039260864,
- -0.0022049432154744864,
- -0.08515110611915588,
- -0.07868653535842896,
- 0.019888795912265778,
- 0.06671223044395447,
- 0.023975059390068054,
- 0.003905537072569132,
- 0.12396178394556046,
- -0.030937163159251213,
- -0.0060531035996973515,
- 0.0028353335801512003,
- 0.006144135724753141,
- 0.014626765623688698,
- -0.0074554551392793655,
- -0.001830323482863605,
- -0.03664754703640938,
- 0.019577281549572945,
- 0.11869419366121292,
- 0.06036702170968056,
- -0.07946185022592545,
- -0.04959341138601303,
- -0.011026314459741116,
- -0.012926171533763409,
- -0.09243591129779816,
- 0.08686850965023041,
- -0.03415907919406891,
- 0.1463489830493927,
- 0.04074527695775032,
- -0.021658174693584442,
- -0.02751663513481617,
- 0.00402283389121294,
- 0.08952508121728897,
- -0.03337617963552475,
- -0.05585923790931702,
- 0.1482846885919571,
- -0.031024588271975517,
- -0.028391985222697258,
- 0.002085387706756592,
- 0.0076522426679730415,
- 0.026081638410687447,
- 0.033570922911167145,
- -0.057823218405246735,
- 0.009525660425424576,
- -0.03728950768709183,
- 0.0043341973796486855,
- -0.053431421518325806,
- -0.053690120577812195,
- -0.003150432137772441,
- 0.10224421322345734,
- -0.012465300969779491,
- -0.05675102770328522,
- 0.015772582963109016,
- -0.00763686140999198,
- 0.013559065759181976,
- -0.028849922120571136,
- -0.00847855769097805,
- -0.0009456227417103946,
- 0.05812704563140869,
- -0.06729446351528168,
- 0.04803217947483063,
- -0.0242316834628582,
- -0.05248039960861206,
- 0.02891264110803604,
- -0.08525534719228745,
- 0.018665455281734467,
- 0.07323232293128967,
- 0.03623796999454498,
- -0.10808134824037552,
- -0.029530208557844162,
- -0.08120875060558319,
- -0.0692778006196022,
- -0.035981666296720505,
- -0.07469823211431503,
- -0.08260297775268555,
- 0.06864117830991745,
- 0.04726952314376831,
- -0.006962756626307964,
- 0.054671432822942734,
- 0.1356537789106369,
- 0.0635608434677124,
- 0.016402384266257286,
- 0.04053952172398567,
- -0.051659900695085526,
- -0.013934887945652008,
- -0.07275628298521042,
- 0.029703514650464058,
- -1.256701853691311e-8,
- 0.004716757219284773,
- 0.0866067036986351,
- 0.0696093887090683,
- -0.10834960639476776,
- 0.0018052307423204184,
- 0.08807645738124847,
- -0.07563904672861099,
- 0.012724614702165127,
- -0.03626331314444542,
- 0.024739887565374374,
- -0.0127050019800663,
- 0.04372268542647362,
- 0.05271483585238457,
- 0.03438814356923103,
- 0.05312345549464226,
- -0.0003421875007916242,
- -0.007576411589980125,
- 0.05192222818732262,
- -0.057245608419179916,
- -0.02975117787718773,
- 0.026488125324249268,
- -0.03767935186624527,
- 0.07572495937347412,
- -0.03008720837533474,
- 0.009226725436747074,
- -0.016515377908945084,
- -0.056739430874586105,
- 0.14723637700080872,
- -0.01186247169971466,
- -0.02366909570991993,
- -0.02627483196556568,
- 0.05284631624817848,
- -0.10911186039447784,
- -0.04517927020788193,
- 0.08478731662034988,
- 0.029775647446513176,
- 0.06353763490915298,
- 0.01697905734181404,
- 0.0617617592215538,
- -0.021437201648950577,
- -0.02204587310552597,
- -0.05531908944249153,
- 0.1228179782629013,
- -0.021854808554053307,
- -0.052619438618421555,
- 0.027072759345173836,
- -0.01641305349767208,
- 0.011022555641829967,
- 0.07145822793245316,
- -0.01872289925813675,
- 0.034461360424757004,
- -0.033334389328956604,
- -0.007174035534262657,
- 0.003011902328580618,
- 0.04519086331129074,
- 0.006848564837127924,
- 0.007773628458380699,
- -0.0003552296257112175,
- -0.039357393980026245,
- -0.006427902728319168,
- 0.10252741724252701,
- 0.12081786245107651,
- -0.008354759775102139,
- -0.025587430223822594
- ]
- },
- {
- "keyword": "audiobook",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.020516086369752884,
- -0.03794024884700775,
- -0.06641746312379837,
- -0.03977731987833977,
- -0.06383918225765228,
- 0.04737704619765282,
- -0.007088202517479658,
- -0.003268627682700753,
- 0.06323274970054626,
- 0.004735393449664116,
- 0.010010704398155212,
- 0.029759744182229042,
- -0.04269145056605339,
- -0.08981037884950638,
- -0.043688759207725525,
- -0.025857780128717422,
- 0.017522722482681274,
- -0.028718825429677963,
- 0.00127144786529243,
- -0.05037197098135948,
- 0.005546117667108774,
- 0.06849783658981323,
- 0.029703684151172638,
- 0.04227635636925697,
- 0.008979568257927895,
- 0.03585259988903999,
- 0.03423534706234932,
- 0.057274091988801956,
- -0.015434252098202705,
- -0.07395078241825104,
- 0.058437954634428024,
- 0.03668559342622757,
- 0.12976163625717163,
- -0.0018913644598796964,
- -0.1108228787779808,
- -0.08628109097480774,
- 0.027363592758774757,
- -0.0428280383348465,
- 0.05144476890563965,
- 0.009810719639062881,
- -0.011743661016225815,
- -0.03755910322070122,
- 0.005341554060578346,
- -0.04934093728661537,
- -0.08314242959022522,
- -0.04777088016271591,
- -0.04214707762002945,
- -0.005384717136621475,
- 0.0507224015891552,
- 0.07516593486070633,
- -0.04390212520956993,
- -0.08112432062625885,
- -0.04845448583364487,
- 0.018649950623512268,
- 0.00792816374450922,
- 0.04325815662741661,
- 0.0147872818633914,
- 0.03358941897749901,
- 0.03571788966655731,
- -0.001491412054747343,
- 0.018136078491806984,
- -0.06629205495119095,
- -0.045711949467659,
- 0.0498197041451931,
- 0.017133649438619614,
- 0.04799417778849602,
- -0.04475456103682518,
- 0.05553442984819412,
- -0.020170366391539574,
- 0.010738732293248177,
- -0.09304498881101608,
- 0.015700317919254303,
- 0.0515337772667408,
- 0.010600557550787926,
- 0.04140925779938698,
- -0.042601801455020905,
- 0.027309443801641464,
- -0.0543648898601532,
- 0.03398088365793228,
- -0.009964811615645885,
- -0.0595829039812088,
- -0.028247997164726257,
- 0.04828895628452301,
- -0.05434034764766693,
- -0.026770183816552162,
- -0.013552171178162098,
- 0.0038407184183597565,
- -0.02132241427898407,
- -0.0466928668320179,
- -0.05299130827188492,
- -0.03650180995464325,
- -0.014270836487412453,
- 0.0956069752573967,
- 0.031824566423892975,
- -0.05737679824233055,
- 0.01917886547744274,
- -0.0006571181584149599,
- -0.05971315875649452,
- 0.04876188561320305,
- 0.14027555286884308,
- 0.02434542588889599,
- 0.0807688981294632,
- 0.05530920997262001,
- -0.024583766236901283,
- -0.045774951577186584,
- -0.11523329466581345,
- 0.01989736035466194,
- 0.041607558727264404,
- -0.008460171520709991,
- -0.04632114619016647,
- -0.03429662808775902,
- -0.025195125490427017,
- -0.09876805543899536,
- -0.04140019789338112,
- 0.08016029745340347,
- 0.009132705628871918,
- 0.06725812703371048,
- 0.008528126403689384,
- 0.047467779368162155,
- 0.021095922216773033,
- -0.014279275201261044,
- 0.049541790038347244,
- -0.06377623230218887,
- 0.01672590710222721,
- -0.06433124095201492,
- -0.05776321887969971,
- -0.011102980002760887,
- -2.5738269820589637e-33,
- 0.02804369293153286,
- 0.013091947883367538,
- -0.006215623114258051,
- -0.006423498038202524,
- 0.055070195347070694,
- -0.0603322796523571,
- -0.03242071717977524,
- -0.024709083139896393,
- 0.007154550403356552,
- 0.07476068288087845,
- -0.03207605704665184,
- 0.09207203984260559,
- -0.07707423716783524,
- 0.019512778148055077,
- 0.0011378488270565867,
- 0.02598646841943264,
- -0.149949848651886,
- 0.07284393906593323,
- -0.0664910227060318,
- -0.014931893907487392,
- 0.022725479677319527,
- -0.019254526123404503,
- 0.025963163003325462,
- 0.03239112347364426,
- 0.10778630524873734,
- 0.053735073655843735,
- 0.07466354966163635,
- -0.08162324875593185,
- 0.06928835809230804,
- 0.04271897301077843,
- -0.019170552492141724,
- -0.04654300957918167,
- -0.06233763322234154,
- -0.17052404582500458,
- -0.009667271748185158,
- 0.02531600184738636,
- 0.009682975709438324,
- 0.03515208512544632,
- 0.04781985655426979,
- -0.03019283153116703,
- -0.0740387812256813,
- 0.0008289858233183622,
- -0.02731509692966938,
- -0.055525753647089005,
- 0.022723594680428505,
- 0.053036246448755264,
- 0.040017083287239075,
- 0.08956725895404816,
- 0.06203874200582504,
- 0.02552654780447483,
- -0.036211512982845306,
- -0.05376904830336571,
- -0.050213463604450226,
- -0.040524229407310486,
- -0.03364662453532219,
- -0.030198637396097183,
- 0.02288668043911457,
- 0.08406674861907959,
- 0.08027856796979904,
- 0.02031484618782997,
- 0.06924913078546524,
- 0.0970744714140892,
- 0.08147008717060089,
- -0.03549739718437195,
- 0.0038728974759578705,
- 0.05146108195185661,
- 0.02175975777208805,
- -0.021529676392674446,
- 0.042647745460271835,
- -0.06975746899843216,
- -0.13620175421237946,
- -0.00749232666566968,
- 0.0898493155837059,
- -0.06869856268167496,
- -0.0629124790430069,
- 0.01685706526041031,
- -0.004368117079138756,
- -0.06230363994836807,
- -0.1058586910367012,
- -0.0569426454603672,
- -0.0314779058098793,
- -0.012041820213198662,
- 0.020801864564418793,
- -0.02600470371544361,
- -0.06051334738731384,
- 0.039022091776132584,
- -0.006594565697014332,
- -0.11836475878953934,
- -0.07481466233730316,
- 0.022064611315727234,
- -0.04941278323531151,
- 0.06003711372613907,
- -0.034349631518125534,
- 0.031760528683662415,
- -0.001950309844687581,
- 1.7316457074512667e-33,
- 0.013309856876730919,
- 0.016626715660095215,
- -0.02430284023284912,
- 0.03910425305366516,
- 0.11562923341989517,
- 0.06628252565860748,
- 0.09107931703329086,
- 0.07816069573163986,
- -0.0414416529238224,
- -0.037157829850912094,
- -0.00633621821179986,
- -0.00034378323471173644,
- 0.045849427580833435,
- 0.010443487204611301,
- -0.01777815632522106,
- -0.033452704548835754,
- 0.020736778154969215,
- -0.03253331407904625,
- -0.025432661175727844,
- -0.048177119344472885,
- -0.052281539887189865,
- 0.019343137741088867,
- 0.04636431857943535,
- -0.031802382320165634,
- -0.004896553233265877,
- -0.002767683006823063,
- -0.032884351909160614,
- 0.00604016100987792,
- -0.03855064883828163,
- 0.05293580889701843,
- 0.0462520495057106,
- -0.047964729368686676,
- -0.0009223195374943316,
- 0.0026445090770721436,
- -0.020464103668928146,
- 0.027354992926120758,
- 0.08762878179550171,
- 0.05922403931617737,
- -0.022263040766119957,
- -0.04657876491546631,
- 0.05187523737549782,
- 0.02152394875884056,
- 0.02398197539150715,
- -0.0024926599580794573,
- 0.0153679009526968,
- -0.026806456968188286,
- -0.024682138115167618,
- 0.02487507276237011,
- -0.0345611646771431,
- -0.0163501538336277,
- 0.011631309986114502,
- -0.004043057560920715,
- 0.094756118953228,
- -0.08639814704656601,
- -0.03437592089176178,
- 0.03988280147314072,
- -0.007243260275572538,
- -0.043332766741514206,
- 0.08831053972244263,
- 0.028183935210108757,
- -0.08773376792669296,
- 0.021779080852866173,
- -0.005103236995637417,
- -0.03595934808254242,
- -0.03781833127140999,
- 0.0019486485980451107,
- 0.019921571016311646,
- -0.00842014979571104,
- 0.04960910603404045,
- 0.05500349774956703,
- 0.00207888544537127,
- 0.035774461925029755,
- -0.01838168129324913,
- 0.030667619779706,
- -0.04093537479639053,
- 0.1023751050233841,
- -0.125765860080719,
- -0.06449677795171738,
- -0.12132339179515839,
- 0.0028903326019644737,
- 0.008366788737475872,
- -0.03982384130358696,
- 0.024685103446245193,
- 0.06054319068789482,
- 0.07388223707675934,
- 0.04337942600250244,
- 0.08322861790657043,
- -0.035950466990470886,
- -0.034661915153265,
- 0.019402524456381798,
- -0.012882567010819912,
- 0.0677962601184845,
- -0.009043342433869839,
- 0.021992646157741547,
- -0.010763086378574371,
- -1.1353166406991022e-8,
- -0.04168175160884857,
- 0.046105433255434036,
- 0.03002583421766758,
- -0.0680757537484169,
- -0.020789548754692078,
- -0.013752251863479614,
- 0.06852220743894577,
- -0.007422285620123148,
- 0.011519785039126873,
- 0.03483794629573822,
- 0.03618904948234558,
- -0.042193230241537094,
- 0.06337734311819077,
- 0.08545087277889252,
- -0.01494146604090929,
- 0.014081021770834923,
- 0.06495732069015503,
- 0.05886637419462204,
- -0.0321781150996685,
- -0.06637097150087357,
- 0.07675208896398544,
- 0.0506163127720356,
- 0.08235292881727219,
- -0.007005190011113882,
- 0.07861444354057312,
- -0.006493018474429846,
- 0.04627745598554611,
- 0.09230941534042358,
- 0.022080300375819206,
- 0.027243001386523247,
- -0.053219106048345566,
- 0.16854923963546753,
- -0.02867167629301548,
- -0.024685721844434738,
- 0.039351705461740494,
- -0.02403312176465988,
- -0.011314664967358112,
- 0.019620973616838455,
- -0.0619354285299778,
- 0.01965801976621151,
- -0.04546377435326576,
- -0.006564018316566944,
- -0.0354214645922184,
- -0.057535186409950256,
- -0.00476276408880949,
- -0.014772688038647175,
- 0.09010990709066391,
- -0.03396594151854515,
- 0.017816388979554176,
- 0.05629033222794533,
- -0.03658965975046158,
- 0.06741763651371002,
- 0.0270245298743248,
- 0.021571094170212746,
- 0.045312218368053436,
- 0.0459761805832386,
- -0.028840884566307068,
- 0.04367755725979805,
- -0.08941635489463806,
- -0.03589034825563431,
- 0.06772603839635849,
- -0.008069906383752823,
- -0.05307203158736229,
- 0.045558106154203415
- ]
- },
- {
- "keyword": "screenshot",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.01178290881216526,
- 0.0510893240571022,
- -0.03894061967730522,
- -0.04451507702469826,
- 0.0718221366405487,
- -0.06731090694665909,
- 0.0498448871076107,
- 0.0608404241502285,
- 0.03406707942485809,
- -0.008270051330327988,
- 0.10594668239355087,
- -0.08095890283584595,
- 0.0946296751499176,
- -0.010521910153329372,
- -0.0903196632862091,
- -0.06170668080449104,
- 0.0009474331745877862,
- -0.09503642469644547,
- -0.11497273296117783,
- -0.06443896889686584,
- -0.05634312331676483,
- -0.007203690242022276,
- 0.009892846457660198,
- 0.0011859554797410965,
- 0.029166070744395256,
- 0.03981062024831772,
- -0.053629253059625626,
- 0.06599313765764236,
- 0.02164212241768837,
- -0.04362970590591431,
- -0.05897527188062668,
- -0.008079297840595245,
- 0.08347518742084503,
- 0.01963743381202221,
- 0.02592962607741356,
- 0.0195469930768013,
- 0.009912445209920406,
- 0.023129738867282867,
- 0.034345462918281555,
- -0.059119176119565964,
- -0.02733837068080902,
- -0.08377841860055923,
- 0.07635393738746643,
- 0.005256090313196182,
- -0.05649952590465546,
- 0.023648759350180626,
- -0.0578339546918869,
- 0.0021040469873696566,
- 0.10311567038297653,
- 0.01191859133541584,
- -0.07528285682201385,
- -0.049792978912591934,
- -0.009832367300987244,
- -0.017234835773706436,
- -0.006517760455608368,
- 0.029925229027867317,
- 0.002436417620629072,
- -0.015800705179572105,
- 0.043003082275390625,
- -0.0022048575337976217,
- 0.07678472995758057,
- 0.08342151343822479,
- -0.0921553298830986,
- 0.040163394063711166,
- 0.06930964440107346,
- 0.04772643744945526,
- 0.004224470350891352,
- -0.07441974431276321,
- -0.08568446338176727,
- -0.030720215290784836,
- -0.02544494904577732,
- 0.02681153640151024,
- -0.043336041271686554,
- -0.07135888189077377,
- -0.08989719301462173,
- -0.014217063784599304,
- 0.03428379073739052,
- -0.011057788506150246,
- 0.010034089908003807,
- 0.00605316087603569,
- -0.056587912142276764,
- -0.0217564906924963,
- -0.02448943257331848,
- 0.07431215047836304,
- 0.018985241651535034,
- 0.009525432251393795,
- -0.04220530763268471,
- -0.02261817641556263,
- -0.07105815410614014,
- 0.044142015278339386,
- -0.08196152001619339,
- 0.0643559992313385,
- -0.07336840033531189,
- -0.04665748029947281,
- -0.041925039142370224,
- 0.02556528151035309,
- 0.0011857590870931745,
- 0.023577624931931496,
- -0.033055536448955536,
- 0.19889573752880096,
- -0.01617484539747238,
- 0.004094420932233334,
- 0.0529392845928669,
- -0.011392289772629738,
- 0.005269454792141914,
- -0.010666899383068085,
- -0.017350919544696808,
- -0.030396273359656334,
- -0.006368542555719614,
- -0.004021774511784315,
- -0.06527331471443176,
- 0.024476423859596252,
- -0.05653471127152443,
- -0.017776671797037125,
- 0.05205387994647026,
- -0.027062272652983665,
- -0.06523662805557251,
- -0.052787285298109055,
- 0.004146299324929714,
- -0.08223909884691238,
- 0.040661148726940155,
- -0.004560364410281181,
- -0.07515596598386765,
- 0.03911684453487396,
- -0.03315587714314461,
- -0.05718773230910301,
- 0.08160702139139175,
- 6.44934975578648e-35,
- 0.0845327153801918,
- -0.014387888833880424,
- 0.028336908668279648,
- 0.08992749452590942,
- 0.05899622663855553,
- 0.03233714401721954,
- 0.005699677858501673,
- -0.011048642918467522,
- 0.05472070723772049,
- -0.011455032974481583,
- -0.05398745462298393,
- -0.035466283559799194,
- -0.012638299725949764,
- -0.009775967337191105,
- 0.060089111328125,
- 0.02641846239566803,
- -0.007390012964606285,
- 0.08045245707035065,
- -0.013702926225960255,
- 0.036190129816532135,
- -0.03162705898284912,
- -0.04458068311214447,
- -0.01872318424284458,
- 0.00848488137125969,
- -0.013797100633382797,
- 0.059749703854322433,
- -0.02185940369963646,
- 0.03046610578894615,
- -0.022646639496088028,
- 0.023734373971819878,
- -0.06306546926498413,
- -0.006301159039139748,
- 0.01601698249578476,
- -0.02334313839673996,
- 0.010672884993255138,
- -0.058753084391355515,
- 0.07994470000267029,
- 0.003032602835446596,
- 0.040208201855421066,
- 0.05751519277691841,
- -0.06248705834150314,
- 0.033945634961128235,
- -0.04694213345646858,
- 0.022073250263929367,
- -0.03737153857946396,
- -0.05807630345225334,
- -0.05997404456138611,
- 0.03299324959516525,
- 0.00905943289399147,
- 0.013608016073703766,
- 0.047333408147096634,
- -0.004740554839372635,
- -0.03258455917239189,
- -0.06872300803661346,
- -0.06412730365991592,
- 0.010966512374579906,
- -0.0013785059563815594,
- -0.0326048843562603,
- -0.05649450421333313,
- 0.012967031449079514,
- -0.02850561961531639,
- 0.0657135397195816,
- -0.03906518593430519,
- 0.04566564783453941,
- -0.0580572783946991,
- 0.018409304320812225,
- -0.008107386529445648,
- 0.022608881816267967,
- 0.008555400185286999,
- -0.05376236513257027,
- -0.04780092462897301,
- -0.059465594589710236,
- 0.04754432290792465,
- 0.016535155475139618,
- 0.0489145927131176,
- -0.030747953802347183,
- 0.05548084154725075,
- 0.04901352897286415,
- -0.012252788990736008,
- 0.025059783831238747,
- -0.051195450127124786,
- -0.0602443590760231,
- 0.02539241686463356,
- -0.06438732892274857,
- 0.03197602182626724,
- 0.0001909208804136142,
- -0.05488250032067299,
- -0.1574498564004898,
- 0.00636111106723547,
- 0.05103383585810661,
- -0.12011051923036575,
- 0.004424661863595247,
- 0.028506258502602577,
- -0.018014460802078247,
- -0.09012711048126221,
- -1.4235271485946442e-33,
- -0.015276840887963772,
- 0.03718826547265053,
- -0.07291582226753235,
- 0.0025615484919399023,
- 0.044350139796733856,
- 0.01338979136198759,
- 0.11297272890806198,
- 0.017592674121260643,
- 0.0714268907904625,
- 0.028045130893588066,
- -0.026020940393209457,
- 0.0984296128153801,
- 0.0004927443224005401,
- -0.05686924234032631,
- 0.03234957531094551,
- -0.042416997253894806,
- 0.08242914825677872,
- 0.011460061185061932,
- -0.11434150487184525,
- -0.03130258247256279,
- -0.03723900020122528,
- 0.026135358959436417,
- 0.05147189274430275,
- 0.048524871468544006,
- 0.04265182465314865,
- 0.02138788439333439,
- 0.056244075298309326,
- -0.06988076120615005,
- 0.006495708599686623,
- -0.010598381981253624,
- 0.07861290872097015,
- 0.0014809637796133757,
- 0.023490460589528084,
- 0.0659647136926651,
- 0.1200893297791481,
- 0.0736813172698021,
- 0.006634134333580732,
- -0.032185398042201996,
- 0.03991213068366051,
- 0.09256408363580704,
- 0.12344849109649658,
- 0.019896822050213814,
- -0.05177908390760422,
- 0.15442411601543427,
- 0.03187830373644829,
- 0.048845112323760986,
- 0.04149148240685463,
- -0.0474148653447628,
- 0.11050751060247421,
- 0.10228411108255386,
- 0.05364052206277847,
- -0.009652901440858841,
- 0.03558984398841858,
- -0.03338925912976265,
- 0.020771870389580727,
- -0.08828165382146835,
- 0.023882606998085976,
- 0.05588586628437042,
- 0.022022539749741554,
- -0.048177845776081085,
- -0.026709575206041336,
- 0.0051781414076685905,
- -0.06865159422159195,
- -0.043509263545274734,
- -0.03322085365653038,
- 0.0009417387773282826,
- -0.06562448292970657,
- 0.0737435445189476,
- -0.013061411678791046,
- 0.00706722866743803,
- -0.021011807024478912,
- -0.0812392383813858,
- -0.04008350893855095,
- -0.009426863864064217,
- -0.030684929341077805,
- -0.044830381870269775,
- -0.025339828804135323,
- 0.12415618449449539,
- -0.06273537129163742,
- 0.03212470933794975,
- 0.10565385967493057,
- -0.04937111958861351,
- 0.024921605363488197,
- -0.08301422744989395,
- 0.036695197224617004,
- -0.005484386347234249,
- -0.025296932086348534,
- 0.0739457830786705,
- 0.02956691011786461,
- -0.10268570482730865,
- -0.06657379120588303,
- 0.037379421293735504,
- 0.028644777834415436,
- 0.06149718165397644,
- 0.04431488737463951,
- -1.663432946941157e-8,
- -0.008751255460083485,
- 0.06235908716917038,
- 0.020226510241627693,
- 0.016318053007125854,
- 0.004099509213119745,
- 0.022775644436478615,
- 0.05595749244093895,
- -0.005197392776608467,
- 0.028600122779607773,
- -0.0925578698515892,
- 0.02085789106786251,
- 0.029893018305301666,
- 0.008910846896469593,
- -0.026260489597916603,
- 0.05864310637116432,
- -0.03468472138047218,
- -0.047234803438186646,
- 0.003271503373980522,
- 0.008565977215766907,
- -0.06630992144346237,
- -0.032382186502218246,
- -0.03702574968338013,
- 0.04582861810922623,
- -0.007641128730028868,
- -0.05090577155351639,
- -0.038818422704935074,
- -0.04464542865753174,
- 0.08055482059717178,
- 0.035393595695495605,
- -0.022446533665060997,
- 0.024354182183742523,
- 0.049849625676870346,
- -0.031461574137210846,
- -0.013090439140796661,
- 0.05454208701848984,
- 0.00912874098867178,
- -0.015759963542222977,
- 0.0597899965941906,
- 0.11235956847667694,
- 0.04624910652637482,
- -0.07816648483276367,
- -0.03252222388982773,
- 0.014477531425654888,
- -0.014882167801260948,
- -0.031850725412368774,
- 0.09502150118350983,
- 0.026902658864855766,
- 0.032510120421648026,
- -0.022193484008312225,
- -0.03285907208919525,
- -0.03676338121294975,
- -0.0023869273718446493,
- 0.04032381251454353,
- 0.019139841198921204,
- 0.013100807555019855,
- -0.028322840109467506,
- 0.025278471410274506,
- -0.07740803807973862,
- -0.007069659419357777,
- -0.019632158800959587,
- 0.08210357278585434,
- 0.009524254128336906,
- -0.0016028847312554717,
- 0.03643519803881645
- ]
- },
- {
- "keyword": "asset",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.02725600264966488,
- 0.10207489132881165,
- -0.03848206251859665,
- -0.024087756872177124,
- 0.03195854276418686,
- -0.04631974175572395,
- 0.2005111128091812,
- 0.020710619166493416,
- 0.03748975694179535,
- -0.021896464750170708,
- 0.014261886477470398,
- -0.040687695145606995,
- 0.0015350965550169349,
- 0.016639022156596184,
- 0.020282795652747154,
- -0.02704789489507675,
- -0.001692173769697547,
- 0.030392400920391083,
- -0.09729009866714478,
- 0.08572052419185638,
- -0.0929357036948204,
- -0.004709284286946058,
- 0.0072832913137972355,
- -0.01033488567918539,
- 0.03229120373725891,
- -0.002066378016024828,
- 0.025560876354575157,
- 0.023908643051981926,
- 0.03809624910354614,
- -0.13614660501480103,
- 0.07225493341684341,
- 0.026299038901925087,
- 0.004618484526872635,
- -0.006325074937194586,
- 0.05523575842380524,
- 0.08737775683403015,
- -0.005337256006896496,
- -0.001049392274580896,
- -0.04544719308614731,
- 0.015772620216012,
- 0.021033165976405144,
- -0.05166725069284439,
- -0.002181827323511243,
- -0.03659467026591301,
- 0.043311722576618195,
- -0.01671537570655346,
- 0.037652388215065,
- -0.0027133445255458355,
- 0.05312131345272064,
- 0.020278241485357285,
- -0.08455339074134827,
- -0.0521061010658741,
- -0.07512416690587997,
- -0.006642995402216911,
- -0.002848619595170021,
- 0.06965610384941101,
- -0.01805562898516655,
- 0.047145865857601166,
- -0.01962856389582157,
- -0.009790318086743355,
- 0.06851623952388763,
- 0.0028553868178278208,
- -0.00936161633580923,
- 0.03164546936750412,
- 0.11814527958631516,
- 0.00838398840278387,
- 0.017263425514101982,
- 0.015764880925416946,
- -0.11488904803991318,
- -0.06063247472047806,
- 0.1025514006614685,
- -0.05764634534716606,
- -0.03316756710410118,
- -0.0679873675107956,
- 0.040666837245225906,
- -0.00797053799033165,
- 0.052481379359960556,
- -0.012912905775010586,
- 0.059959299862384796,
- -0.06671465188264847,
- -0.002822884824126959,
- -0.0644523873925209,
- -0.02190171554684639,
- 0.04982419312000275,
- 0.027067657560110092,
- 0.05808466672897339,
- -0.011709041893482208,
- 0.017539892345666885,
- 0.014759720303118229,
- 0.025744061917066574,
- -0.059115443378686905,
- -0.04848075658082962,
- 0.12201178818941116,
- 0.04944127798080444,
- -0.002345686312764883,
- 0.04773285239934921,
- -0.010709713213145733,
- -0.04912012070417404,
- -0.0659298300743103,
- 0.26587462425231934,
- -0.013574033044278622,
- 0.04315704107284546,
- 0.05854880437254906,
- 0.03150786831974983,
- -0.09847436845302582,
- -0.003637663321569562,
- -0.012754302471876144,
- 0.044931236654520035,
- 0.016391927376389503,
- 0.005119469482451677,
- -0.05392847955226898,
- 0.010170254856348038,
- -0.07289472967386246,
- -0.012594303116202354,
- 0.04317183047533035,
- -0.011663813143968582,
- -0.05600916966795921,
- -0.01841229572892189,
- 0.042837273329496384,
- -0.06350051611661911,
- 0.08163603395223618,
- 0.057641178369522095,
- -0.007032041437923908,
- 0.051591821014881134,
- -0.08258990943431854,
- -0.07837451249361038,
- 0.006214080844074488,
- -5.9182547959292475e-33,
- -0.030685769394040108,
- -0.0188680998980999,
- 0.04914679378271103,
- 0.02791445329785347,
- -0.08444397896528244,
- -0.015943944454193115,
- -0.013769115321338177,
- -0.014748080633580685,
- -0.06866175681352615,
- 0.044063419103622437,
- 0.01618359051644802,
- 0.08429957181215286,
- -0.03244342282414436,
- 0.039738863706588745,
- 0.08006763458251953,
- 0.03218882903456688,
- -0.056103918701410294,
- 0.10174507647752762,
- 0.12628242373466492,
- -0.006429259665310383,
- -0.032730162143707275,
- 0.05924990028142929,
- -0.023850906640291214,
- 0.026971373707056046,
- -0.0010535635519772768,
- -0.03188929706811905,
- 0.013544132933020592,
- -0.060057319700717926,
- -0.04177410155534744,
- 0.04477263242006302,
- -0.0011673147091642022,
- 0.018224339932203293,
- 0.02309807948768139,
- -0.059351883828639984,
- -0.03978686407208443,
- -0.03245983272790909,
- -0.07161542028188705,
- -0.03561553731560707,
- -0.020205320790410042,
- 0.03292441368103027,
- 0.011718591675162315,
- -0.024453330785036087,
- -0.04639521613717079,
- 0.021384602412581444,
- -0.003758259117603302,
- 0.0003018054994754493,
- 0.08729366958141327,
- 0.02733563631772995,
- -0.03685780242085457,
- 0.0013810102827847004,
- -0.0082704434171319,
- -0.01637274958193302,
- -0.022052722051739693,
- 0.010405058041214943,
- -0.04070882126688957,
- -0.021364836022257805,
- -0.03138844296336174,
- 0.007558078039437532,
- -0.060227345675230026,
- -0.06991039216518402,
- 0.11046866327524185,
- 0.05413900315761566,
- -0.03276015818119049,
- 0.0013525368412956595,
- -0.0790790542960167,
- 0.0418088324368,
- 0.049100857228040695,
- 0.04595039039850235,
- 0.026436515152454376,
- 0.0004102619714103639,
- -0.10847145318984985,
- -0.010768421925604343,
- 0.12502628564834595,
- 0.022356370463967323,
- 0.03531938046216965,
- -0.027017200365662575,
- -0.04285386577248573,
- 0.05113690719008446,
- -0.06083432957530022,
- 0.07291992753744125,
- -0.05686579644680023,
- 0.027876529842615128,
- -0.0037215235643088818,
- 0.05158625543117523,
- -0.02855154126882553,
- 0.03652331233024597,
- 0.047259826213121414,
- -0.11108651012182236,
- 0.017219047993421555,
- 0.025237122550606728,
- -0.04813592880964279,
- -0.006609985139220953,
- -0.025338230654597282,
- 0.0492531880736351,
- -0.02488490752875805,
- 4.948314366789453e-33,
- -0.01964302733540535,
- -0.03651416674256325,
- -0.049002744257450104,
- 0.09101501107215881,
- 0.03504137322306633,
- -0.08345886319875717,
- 0.057056449353694916,
- 0.002754814922809601,
- -0.05164412409067154,
- 0.04757310450077057,
- -0.004355311393737793,
- -0.06825029104948044,
- -0.02744808793067932,
- -0.058677684515714645,
- 0.012413722462952137,
- 0.02467263489961624,
- 0.0778987929224968,
- -0.0857560932636261,
- -0.0124097540974617,
- 0.004262148402631283,
- -0.04938315972685814,
- 0.014876187779009342,
- 0.12116561084985733,
- 0.010921663604676723,
- -0.033616263419389725,
- 0.10271359980106354,
- 0.01012901309877634,
- -0.04170161858201027,
- 0.00979637261480093,
- 0.01127572450786829,
- -0.0005177301936782897,
- 0.03490449860692024,
- 0.013310074806213379,
- -0.01397637091577053,
- -0.045164551585912704,
- 0.048233769834041595,
- 0.010652309283614159,
- -0.022478563711047173,
- -0.015862811356782913,
- 0.01961180754005909,
- 0.04022768884897232,
- -0.03417081758379936,
- 0.05979786068201065,
- 0.10052694380283356,
- 0.028720099478960037,
- -0.01841549389064312,
- 0.07925719767808914,
- 0.007557516451925039,
- 0.10501349717378616,
- 0.020241647958755493,
- 0.03136032074689865,
- 0.022524911910295486,
- 0.0058132498525083065,
- -0.057732801884412766,
- -0.025176847353577614,
- 0.03300466760993004,
- 0.05124945193529129,
- -0.0009754605707712471,
- -0.017797624692320824,
- 0.024870555847883224,
- 0.01982227899134159,
- 0.05399492010474205,
- -0.047651536762714386,
- 0.07489795982837677,
- -0.0648413598537445,
- -0.00954985897988081,
- -0.07016153633594513,
- -0.047074344009160995,
- -0.04681849852204323,
- -0.03413624316453934,
- 0.041380953043699265,
- -0.012484272941946983,
- 0.0037091057747602463,
- 0.04245597869157791,
- -0.05267118662595749,
- -0.04459884390234947,
- -0.03323940187692642,
- -0.030179345980286598,
- 0.037737954407930374,
- -0.05573296919465065,
- -0.09976402670145035,
- -0.05659312382340431,
- -0.09445507079362869,
- 0.05309797078371048,
- 0.0006926209898665547,
- 0.015959883108735085,
- -0.09744612127542496,
- -0.0252362247556448,
- 0.008552287705242634,
- -0.05120581388473511,
- -0.07436733692884445,
- 0.05052626132965088,
- -0.02284764125943184,
- 0.09113717079162598,
- -0.03162895515561104,
- -1.2518808212291788e-8,
- -0.014370548538863659,
- 0.03687562048435211,
- 0.024359818547964096,
- -0.026163527742028236,
- 0.006354996468871832,
- -0.011745584197342396,
- -0.04238312318921089,
- 0.00996982492506504,
- 0.041130512952804565,
- 0.09857301414012909,
- 0.04941094294190407,
- -0.04409134387969971,
- -0.008998922072350979,
- 0.0490715466439724,
- -0.020501932129263878,
- -0.05143886059522629,
- -0.03355420380830765,
- 0.001941030379384756,
- -0.04041444882750511,
- -0.10577541589736938,
- 0.0828668549656868,
- -0.021244868636131287,
- 0.005211769137531519,
- -0.0930253192782402,
- -0.03534191474318504,
- -0.03475359454751015,
- -0.052338920533657074,
- 0.05369703471660614,
- -0.003578633302822709,
- -0.008265813812613487,
- -0.01747428998351097,
- 0.035555679351091385,
- 0.0062244003638625145,
- -0.023362012580037117,
- 0.024476798251271248,
- 0.01349989790469408,
- 0.030431218445301056,
- 0.03399240970611572,
- -0.021229146048426628,
- 0.08651892840862274,
- -0.052446361631155014,
- -0.06815542280673981,
- 0.05682048201560974,
- -0.015937162563204765,
- -0.01303561870008707,
- 0.02347487211227417,
- -0.04529405012726784,
- 0.014508058317005634,
- 0.022790398448705673,
- -0.03004232794046402,
- -0.012691352516412735,
- -0.05641931667923927,
- -0.016451187431812286,
- 0.05807795748114586,
- 0.023554274812340736,
- -0.0424981489777565,
- 0.04405020922422409,
- -0.01007874682545662,
- -0.055920276790857315,
- 0.015388778410851955,
- 0.12010158598423004,
- -0.06429112702608109,
- -0.05112463980913162,
- 0.020716989412903786
- ]
- },
- {
- "keyword": "resource",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.007864885032176971,
- 0.06370580196380615,
- -0.08581309020519257,
- 0.028404247015714645,
- 0.021454984322190285,
- -0.020150134339928627,
- 0.11830941587686539,
- 0.00891924649477005,
- -0.00782422162592411,
- -0.01066000945866108,
- -0.006539950612932444,
- 0.022357363253831863,
- 0.035081833600997925,
- 0.019291285425424576,
- -0.0528562068939209,
- -0.00111188436858356,
- 0.046746768057346344,
- 0.0228820089250803,
- -0.09350951761007309,
- -0.018768442794680595,
- 0.04570816084742546,
- 0.006651037838310003,
- 0.04695464298129082,
- -0.0272442065179348,
- -0.0074370671063661575,
- 0.019327763468027115,
- -0.010888079181313515,
- 0.020299898460507393,
- 0.10720962285995483,
- -0.11262521892786026,
- -0.011316356249153614,
- 0.0010481226490810513,
- 0.04049108549952507,
- -0.006345213390886784,
- 0.011288686655461788,
- 0.0403624065220356,
- 0.013921316713094711,
- -0.019553611055016518,
- 0.030292708426713943,
- 0.022429080680012703,
- 0.013084444217383862,
- 0.0034931041300296783,
- 0.008459486067295074,
- -0.00219992664642632,
- -0.014815385453402996,
- 0.07313881814479828,
- 0.01356789842247963,
- -0.06047036871314049,
- -0.026166629046201706,
- 0.019873270764946938,
- -0.09430667757987976,
- 0.0140861039981246,
- -0.02349928580224514,
- -0.03942848742008209,
- 0.0642148107290268,
- -0.03526243939995766,
- 0.02223188988864422,
- 0.05108790844678879,
- -0.013043462298810482,
- 0.010661465115845203,
- 0.12881891429424286,
- -0.011038782075047493,
- -0.11970596760511398,
- 0.026627808809280396,
- 0.07477188110351562,
- -0.03897270932793617,
- 0.025027258321642876,
- 0.10711420327425003,
- -0.05083632096648216,
- -0.18905802071094513,
- -0.011769210919737816,
- 0.018390584737062454,
- -0.01721838302910328,
- 0.0858241394162178,
- 0.07569267600774765,
- 0.014038318768143654,
- 0.04511498659849167,
- 0.025718793272972107,
- 0.05625453218817711,
- -0.15232595801353455,
- -0.053688738495111465,
- 0.013034236617386341,
- 0.007132618688046932,
- 0.024665556848049164,
- 0.08345052599906921,
- 0.045395564287900925,
- 0.013860829174518585,
- 0.013153462670743465,
- 0.01661130040884018,
- 0.04506773501634598,
- -0.010981276631355286,
- 0.021062340587377548,
- 0.06298845261335373,
- 0.0034486448857933283,
- 0.00998376589268446,
- 0.08736851066350937,
- 0.027269653975963593,
- -0.10575801879167557,
- -0.040977593511343,
- 0.22821733355522156,
- 0.001833006739616394,
- 0.024767016991972923,
- 0.030298637226223946,
- -0.0009029049542732537,
- -0.09297885745763779,
- -0.041448984295129776,
- -0.07700390368700027,
- 0.13200803101062775,
- -0.06432731449604034,
- -0.04011387377977371,
- -0.07230845838785172,
- 0.007534392643719912,
- -0.12852339446544647,
- -0.019949886947870255,
- 0.03919839486479759,
- 0.010376201011240482,
- 0.020368436351418495,
- 0.007215334102511406,
- 0.03302868828177452,
- -0.027453197166323662,
- 0.023067118600010872,
- -0.03567768260836601,
- -0.009628350846469402,
- 0.01960304006934166,
- -0.05202913284301758,
- -0.12938186526298523,
- -0.06503685563802719,
- -4.592510961236763e-33,
- 0.09255381673574448,
- -0.0009504705085419118,
- 0.012411150150001049,
- 0.041754964739084244,
- 0.020931337028741837,
- -0.047038622200489044,
- -0.012981127947568893,
- 0.008752787485718727,
- -0.04849553108215332,
- -0.004270252771675587,
- -0.021864552050828934,
- 0.0778895914554596,
- -0.08705765008926392,
- -0.0004752395034302026,
- -0.0022057872265577316,
- -0.02054295502603054,
- 0.027027592062950134,
- 0.1644427329301834,
- 0.027729466557502747,
- 0.0038757387083023787,
- -0.01778070442378521,
- 0.057737383991479874,
- 0.027429286390542984,
- 0.0198146291077137,
- 0.017725175246596336,
- 0.0033115255646407604,
- -0.010053528472781181,
- -0.07157919555902481,
- -0.0005785360117442906,
- 0.022903161123394966,
- 0.017416933551430702,
- 0.012816726230084896,
- 0.006368208210915327,
- -0.04091953858733177,
- 0.022637248039245605,
- -0.03965698927640915,
- -0.008743887767195702,
- -0.022727161645889282,
- 0.0014792871661484241,
- 0.03239920735359192,
- -0.014843638986349106,
- -0.009751642122864723,
- -0.03743583336472511,
- -0.032889485359191895,
- 0.011469634249806404,
- -0.03384220972657204,
- 0.017164675518870354,
- -0.042529813945293427,
- -0.01106642372906208,
- -0.013009629212319851,
- 0.054603539407253265,
- 0.03157353773713112,
- -0.023546850308775902,
- -0.021571071818470955,
- -0.03223961219191551,
- -0.015890860930085182,
- -0.01433165930211544,
- 0.0462704561650753,
- 0.004941968712955713,
- 0.0035204761661589146,
- 0.02848627232015133,
- 0.10037641227245331,
- -0.04580650478601456,
- -0.014652734622359276,
- -0.05596660077571869,
- -0.01677655428647995,
- -0.04042263329029083,
- -0.04272980988025665,
- 0.017938705161213875,
- -0.02859211340546608,
- -0.056238554418087006,
- -0.031193235889077187,
- 0.1327841728925705,
- -0.005995321553200483,
- -0.024488529190421104,
- -0.036014385521411896,
- -0.017086615785956383,
- 0.024396896362304688,
- -0.11084812879562378,
- -0.0010792844695970416,
- -0.0531940720975399,
- -0.03381924703717232,
- 0.008291443809866905,
- 0.035501595586538315,
- -0.06771516799926758,
- -0.014650792814791203,
- 0.03889213502407074,
- -0.07175399363040924,
- 0.036232415586709976,
- -0.018485603854060173,
- -0.04818671569228172,
- 0.01498409640043974,
- -0.060693513602018356,
- 0.005071669351309538,
- -0.007125192321836948,
- 4.072561157193264e-33,
- 0.017466846853494644,
- -0.007253192365169525,
- -0.024413522332906723,
- 0.07836353778839111,
- 0.0204179510474205,
- 0.0006560629699379206,
- -0.0027970264200121164,
- 0.014106093905866146,
- -0.011526882648468018,
- 0.0067540500313043594,
- -0.03885791078209877,
- -0.023551277816295624,
- 0.03663891553878784,
- 0.027583209797739983,
- -0.04254988953471184,
- -0.04343816637992859,
- 0.02824787050485611,
- -0.05986052006483078,
- -0.08949629962444305,
- 0.05071088671684265,
- -0.10921044647693634,
- 0.0792471319437027,
- -0.02956370823085308,
- -0.031774166971445084,
- -0.017345402389764786,
- 0.03468497097492218,
- 0.03929606080055237,
- -0.04036884754896164,
- -0.050246693193912506,
- 0.010446572676301003,
- 0.026591965928673744,
- -0.05540724843740463,
- -0.08965956419706345,
- -0.03274114802479744,
- -0.10054212063550949,
- 0.028299011290073395,
- 0.05005320906639099,
- 0.03574258089065552,
- -0.03602522611618042,
- 0.022048575803637505,
- 0.10637027025222778,
- 0.00013779313303530216,
- 0.03312494978308678,
- 0.04839198663830757,
- 0.004959930665791035,
- -0.04169588163495064,
- 0.006733509711921215,
- -0.021849986165761948,
- 0.00907706469297409,
- -0.007806070614606142,
- 0.07820641994476318,
- 0.0046151177957654,
- 0.0490107499063015,
- -0.10288961231708527,
- 0.018923448398709297,
- -0.0026877340860664845,
- 0.031054310500621796,
- 0.017505716532468796,
- 0.017607007175683975,
- -0.030065272003412247,
- -0.03715931251645088,
- 0.04095559939742088,
- -0.14764630794525146,
- 0.05853317305445671,
- -0.011849792674183846,
- -0.01679248921573162,
- -0.037882234901189804,
- -0.0417359285056591,
- -0.0021936059929430485,
- -0.016596466302871704,
- 0.030617730692029,
- 0.06150860711932182,
- 0.03129018470644951,
- 0.04431729391217232,
- 0.0004702908336184919,
- 0.0006912412936799228,
- -0.06618127971887589,
- 0.03457916900515556,
- -0.005015634000301361,
- -0.01884370669722557,
- -0.0747743770480156,
- -0.06837807595729828,
- -0.0623302087187767,
- 0.06371055543422699,
- 0.024063946679234505,
- 0.11690935492515564,
- 0.011074177920818329,
- -0.012331238947808743,
- -0.04464877396821976,
- -0.04308633133769035,
- -0.12242285907268524,
- -0.03014816902577877,
- -0.04032587260007858,
- 0.14479516446590424,
- -0.0259071197360754,
- -1.3754516636765857e-8,
- -0.03356796130537987,
- 0.06542547047138214,
- 0.08596327900886536,
- 0.03254466503858566,
- 0.027438215911388397,
- 0.03223397582769394,
- 0.01908603124320507,
- 0.06294470280408859,
- 0.04527272656559944,
- 0.1619247943162918,
- -0.020124223083257675,
- -0.011646660044789314,
- 0.08397560566663742,
- 0.044350214302539825,
- 0.033899690955877304,
- -0.03708849102258682,
- -0.004722149111330509,
- -0.0018525858176872134,
- -0.025811199098825455,
- -0.035837262868881226,
- -0.0041326191276311874,
- 0.031933750957250595,
- 0.005671890452504158,
- 0.017329728230834007,
- 0.072441466152668,
- 0.020368458703160286,
- -0.013603362254798412,
- 0.11533290892839432,
- -0.06155393272638321,
- -0.030187873169779778,
- 0.0069976551458239555,
- 0.029587823897600174,
- 0.057878341525793076,
- -0.03582074120640755,
- 0.05680140107870102,
- 0.053492221981287,
- -0.07473034411668777,
- -0.025222908705472946,
- 0.005502458196133375,
- 0.023296840488910675,
- 0.017387378960847855,
- -0.015282849781215191,
- 0.05657088756561279,
- 0.02391870878636837,
- 0.0428064726293087,
- 0.026090050116181374,
- -0.05136112496256828,
- 0.011788479052484035,
- -0.05947641283273697,
- -0.03723320737481117,
- -0.013415023684501648,
- -0.04204150289297104,
- 0.0027096611447632313,
- 0.02263614907860756,
- 0.018627680838108063,
- 0.040518611669540405,
- 0.050993870943784714,
- 0.0148987527936697,
- -0.000352603878127411,
- 0.05896013230085373,
- 0.11812436580657959,
- 0.05518282204866409,
- -0.01152558159083128,
- 0.018031436949968338
- ]
- },
- {
- "keyword": "attachment",
- "type": "media",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.00035571627086028457,
- 0.05017848312854767,
- 0.004191072657704353,
- 0.03635136038064957,
- 0.017623042687773705,
- -0.0388580821454525,
- 0.06273487955331802,
- 0.057190995663404465,
- 0.028810149058699608,
- 0.048122093081474304,
- 0.08793753385543823,
- 0.039872586727142334,
- -0.04348653554916382,
- 0.10356214642524719,
- -0.0676579475402832,
- 0.007751093246042728,
- -0.03860543668270111,
- 0.03859778493642807,
- -0.08858572691679001,
- 0.059266068041324615,
- -0.0679592490196228,
- 0.06689902395009995,
- 0.048221003264188766,
- -0.06724833697080612,
- 0.03712034597992897,
- -0.04261752590537071,
- -0.06932579725980759,
- -0.01245146431028843,
- 0.05648108199238777,
- -0.11236909031867981,
- 0.06459208577871323,
- -0.07366646826267242,
- -0.016930347308516502,
- -0.04570167139172554,
- 0.007466043345630169,
- 0.06863713264465332,
- -0.03144070506095886,
- -0.006265556905418634,
- -0.01687607727944851,
- -0.0023554740473628044,
- 0.025175180286169052,
- -0.04787397384643555,
- 0.012317218817770481,
- -0.02578737586736679,
- 0.0053634196519851685,
- 0.003942424431443214,
- 0.017763523384928703,
- -0.008761805482208729,
- 0.027629949152469635,
- 0.019122855737805367,
- -0.043889839202165604,
- -0.08921387791633606,
- -0.016797104850411415,
- 0.019273346289992332,
- -0.03877343609929085,
- 0.0026772564742714167,
- -0.006178502459079027,
- -0.012091265991330147,
- -0.05228200554847717,
- 0.06252706050872803,
- -0.010607701726257801,
- 0.029647616669535637,
- -0.0388326570391655,
- 0.04755231365561485,
- 0.08759193122386932,
- 0.011347808875143528,
- 0.024527117609977722,
- 0.047885626554489136,
- -0.08429394662380219,
- -0.09910693764686584,
- -0.03320807218551636,
- -0.04141570255160332,
- -0.10560163110494614,
- 0.06924166530370712,
- 0.03332552686333656,
- -0.052529241889715195,
- 0.04221673682332039,
- 0.06191404163837433,
- 0.020517146214842796,
- -0.014053978957235813,
- 0.06050534546375275,
- -0.055898137390613556,
- 0.029881808906793594,
- 0.036473073065280914,
- 0.01005056407302618,
- 0.09050654619932175,
- 0.021603494882583618,
- 0.00038064568070694804,
- -0.07704056054353714,
- -0.026622308418154716,
- 0.014460751786828041,
- 0.012294167652726173,
- 0.05053667351603508,
- 0.000336503580911085,
- -0.022054307162761688,
- -0.03921414166688919,
- -0.06021315976977348,
- 0.029737193137407303,
- -0.06950995326042175,
- 0.19625414907932281,
- -0.012563906610012054,
- 0.04362788796424866,
- -0.013815188780426979,
- -0.014555242843925953,
- -0.06918489187955856,
- -0.03556857258081436,
- -0.09818300604820251,
- -0.08058124780654907,
- 0.004264640621840954,
- -0.04517778009176254,
- -0.051089391112327576,
- -0.05366545543074608,
- -0.07122573256492615,
- -0.10954735428094864,
- 0.020089348778128624,
- -0.06346116214990616,
- -0.034783799201250076,
- -0.00021863037545699626,
- 0.024390680715441704,
- -0.07493972778320312,
- 0.08437581360340118,
- 0.041731055825948715,
- -0.011438987217843533,
- 0.025417929515242577,
- -0.03326481580734253,
- -0.11006864905357361,
- 0.042686425149440765,
- -3.5704810713341715e-33,
- 0.029566502198576927,
- -0.03179896995425224,
- 0.038302838802337646,
- 0.07634826749563217,
- -0.07703311741352081,
- -0.040491584688425064,
- -0.00974656455218792,
- 0.028076985850930214,
- -0.059869930148124695,
- -0.015268699266016483,
- -0.00016631859762128443,
- 0.07404208928346634,
- -0.03553273528814316,
- 0.05893688648939133,
- 0.04506191238760948,
- -0.008713155053555965,
- 0.0163338091224432,
- 0.052456084638834,
- 0.05534280464053154,
- 0.05112750083208084,
- -0.09324850887060165,
- 0.06163916364312172,
- -0.08078307658433914,
- 0.03425084054470062,
- 0.04928316920995712,
- 0.05675991624593735,
- 0.004687925335019827,
- -0.0018006495665758848,
- -0.03717924654483795,
- 0.026605505496263504,
- -0.020088935270905495,
- 0.02062755823135376,
- 0.0011666958453133702,
- -0.05397734045982361,
- -0.012287228368222713,
- -0.03418145701289177,
- -0.07136805355548859,
- -0.05654061585664749,
- 0.023728106170892715,
- -0.00415837811306119,
- 0.0636974349617958,
- 0.0008503166609443724,
- -0.03551701828837395,
- 0.0195009782910347,
- 0.00011880555393872783,
- -0.03148692473769188,
- 0.07676415145397186,
- 0.01411811076104641,
- -0.03817763552069664,
- 0.0734856054186821,
- 0.12011374533176422,
- -0.04457579925656319,
- 0.036214690655469894,
- 0.018544374033808708,
- -0.03810659050941467,
- -0.0008434432093054056,
- -0.008720461279153824,
- 0.0192660354077816,
- 0.005949362646788359,
- 0.03163832798600197,
- 0.04693428426980972,
- 0.04491308331489563,
- -0.055327191948890686,
- -0.014449350535869598,
- 0.0014303915668278933,
- -0.007018072530627251,
- 0.05337890237569809,
- 0.014366954565048218,
- 0.037775248289108276,
- 0.024899795651435852,
- -0.14231684803962708,
- 0.03861379623413086,
- 0.011051236651837826,
- -0.06202257052063942,
- -0.0076208701357245445,
- -0.03735460713505745,
- -0.05518420413136482,
- -0.013730873353779316,
- -0.009578123688697815,
- 0.0011932533234357834,
- -0.04514350742101669,
- -0.03660723194479942,
- -0.01841123215854168,
- -0.05216948315501213,
- -0.08240021765232086,
- -0.03159996494650841,
- 0.046232618391513824,
- -0.03384431079030037,
- 0.010745852254331112,
- -0.021622197702527046,
- 0.017732905223965645,
- 0.10274078696966171,
- -0.014231420122087002,
- 0.06245527043938637,
- 0.0990917831659317,
- 3.560992260529143e-33,
- 0.09250587970018387,
- -0.011305306106805801,
- -0.0447695292532444,
- 0.06242351606488228,
- 0.035275768488645554,
- 0.05620686709880829,
- 0.07757064700126648,
- -0.023540997877717018,
- -0.07424168288707733,
- 0.051052894443273544,
- -0.04584738239645958,
- 0.005531700793653727,
- 0.018392369151115417,
- -0.03033209964632988,
- 0.02695937640964985,
- 0.024073008447885513,
- -0.013097146525979042,
- -0.014354591257870197,
- -0.07207127660512924,
- 0.005570115987211466,
- -0.01805260218679905,
- 0.10166537016630173,
- 0.23346605896949768,
- -0.05471840873360634,
- 0.006024036090821028,
- 0.026203306391835213,
- -0.0024548990186303854,
- -0.014026434160768986,
- 0.03163012117147446,
- -0.0220356248319149,
- -0.03201257809996605,
- -0.06651471555233002,
- 0.014364711008965969,
- 0.010482611134648323,
- -0.03775891661643982,
- 0.04977400228381157,
- 0.07844917476177216,
- 0.03925683721899986,
- 0.05804099142551422,
- -0.05786249041557312,
- 0.03403362259268761,
- -0.00000938805806072196,
- 0.008589220233261585,
- 0.11038631200790405,
- -0.005605888552963734,
- 0.01173787284642458,
- -0.06754136830568314,
- -0.004646521061658859,
- 0.035601526498794556,
- 0.03828069195151329,
- -0.07908560335636139,
- 0.01110764779150486,
- -0.0011825927067548037,
- -0.04019409045577049,
- 0.03942137211561203,
- 0.015384877100586891,
- 0.044823057949543,
- -0.11935340613126755,
- -0.010618753731250763,
- 0.008037623949348927,
- -0.002766889985650778,
- -0.02341584302484989,
- -0.057399485260248184,
- -0.02198549173772335,
- 0.017436984926462173,
- 0.011751077137887478,
- 0.01973148249089718,
- -0.03466808795928955,
- -0.10387120395898819,
- 0.07127052545547485,
- -0.024715645238757133,
- 0.06315301358699799,
- 0.04422503337264061,
- -0.06529223918914795,
- 0.025141652673482895,
- 0.02037919871509075,
- -0.00045710420818068087,
- -0.03404990956187248,
- -0.07396448403596878,
- -0.024534692987799644,
- -0.0667916089296341,
- 0.001741010113619268,
- -0.00011751555575756356,
- 0.023150015622377396,
- 0.022594427689909935,
- -0.05925839766860008,
- 0.00064400106202811,
- -0.0075660934671759605,
- -0.05458502471446991,
- -0.08293480426073074,
- -0.04008236899971962,
- 0.07390812784433365,
- 0.07969361543655396,
- 0.07597698271274567,
- -0.04634682834148407,
- -1.027104001849466e-8,
- -0.00915022473782301,
- -0.012857882305979729,
- 0.034481532871723175,
- -0.03125372901558876,
- 0.03933362290263176,
- 0.049925390630960464,
- -0.07784724235534668,
- 0.07448256760835648,
- 0.03454713523387909,
- 0.034741539508104324,
- 0.08171405643224716,
- -0.008742215111851692,
- -0.028321975842118263,
- 0.08617493510246277,
- 0.044488001614809036,
- -0.05818251520395279,
- -0.0030663360375910997,
- -0.026766575872898102,
- -0.043099503964185715,
- -0.06148381903767586,
- 0.052967194467782974,
- 0.02159491553902626,
- 0.05622101202607155,
- 0.002671020571142435,
- -0.013813171535730362,
- -0.06294191628694534,
- -0.07057129591703415,
- 0.09727102518081665,
- -0.01575172320008278,
- 0.005512000061571598,
- 0.045787420123815536,
- 0.005378034431487322,
- 0.01825316809117794,
- 0.038094643503427505,
- -0.09584403038024902,
- -0.008841371163725853,
- -0.03875373676419258,
- 0.01475484762340784,
- -0.05002916604280472,
- 0.06100742146372795,
- 0.09133058786392212,
- 0.019570279866456985,
- 0.020292654633522034,
- 0.01961263082921505,
- 0.06586333364248276,
- 0.05428793281316757,
- 0.03694964945316315,
- -0.10177882760763168,
- -0.032878976315259933,
- 0.05385531857609749,
- -0.029728222638368607,
- -0.07099755853414536,
- 0.011573444120585918,
- 0.08924490213394165,
- -0.044446881860494614,
- -0.04051578417420387,
- 0.06972017884254456,
- 0.011024623177945614,
- 0.02368084155023098,
- 0.06695163995027542,
- 0.013441660441458225,
- 0.04976307973265648,
- 0.01921708509325981,
- 0.03763671964406967
- ]
- },
- {
- "keyword": "concept",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.025578701868653297,
- 0.009237313643097878,
- -0.11373308300971985,
- 0.00754113495349884,
- -0.03398072347044945,
- -0.053032126277685165,
- 0.21051125228405,
- -0.017407899722456932,
- -0.03710870072245598,
- 0.06411836296319962,
- -0.01283341459929943,
- 0.000919851940125227,
- 0.028159640729427338,
- -0.04111591726541519,
- 0.0610564760863781,
- -0.023242928087711334,
- 0.07741004973649979,
- 0.01245742104947567,
- -0.08854642510414124,
- 0.04619889706373215,
- 0.023501276969909668,
- -0.027903659269213676,
- -0.026270540431141853,
- 0.045063309371471405,
- -0.05556003004312515,
- 0.07888590544462204,
- 0.007500377018004656,
- 0.06864866614341736,
- 0.11301211267709732,
- -0.08699128031730652,
- -0.047394998371601105,
- 0.08223450928926468,
- 0.08686773478984833,
- 0.03975071758031845,
- -0.02921854518353939,
- 0.029839996248483658,
- -0.027163969352841377,
- 0.016014115884900093,
- -0.018577026203274727,
- -0.013268010690808296,
- -0.05389057844877243,
- -0.015730995684862137,
- -0.05053064972162247,
- -0.027998989447951317,
- 0.008454985916614532,
- 0.04330510273575783,
- 0.002953941933810711,
- -0.01102466881275177,
- -0.0029137753881514072,
- -0.020367741584777832,
- -0.09175203740596771,
- -0.037229835987091064,
- -0.1037072092294693,
- 0.0486861988902092,
- 0.0011274684220552444,
- -0.014724496752023697,
- 0.00941496528685093,
- -0.03965765982866287,
- -0.021803459152579308,
- -0.05778435245156288,
- 0.07538919150829315,
- -0.022719450294971466,
- -0.013851512223482132,
- 0.06294620782136917,
- 0.10032860934734344,
- -0.04060356318950653,
- -0.0038203736767172813,
- 0.03841894492506981,
- 0.058499448001384735,
- -0.047795217484235764,
- 0.061102937906980515,
- 0.04470851644873619,
- 0.030952390283346176,
- 0.04222390428185463,
- 0.09442798793315887,
- -0.05145622789859772,
- -0.037083640694618225,
- 0.041342686861753464,
- -0.0016796753043308854,
- 0.04448805749416351,
- 0.002276501851156354,
- 0.04107646271586418,
- 0.011690867133438587,
- 0.024193838238716125,
- 0.024372713640332222,
- 0.07931961119174957,
- 0.013012432493269444,
- 0.006412237882614136,
- -0.00011706784425769001,
- -0.029035091400146484,
- -0.05534845218062401,
- -0.055065058171749115,
- 0.006606768816709518,
- -0.04675200209021568,
- 0.02442660927772522,
- -0.03368452191352844,
- 0.03843803331255913,
- -0.05253969505429268,
- 0.02221515402197838,
- 0.21360266208648682,
- -0.00846405141055584,
- 0.07919299602508545,
- -0.05057854205369949,
- -0.08607625216245651,
- 0.04820471256971359,
- -0.0799788385629654,
- -0.02746644988656044,
- -0.01965065859258175,
- 0.053863171488046646,
- 0.000004111716407351196,
- -0.07793192565441132,
- -0.051407668739557266,
- -0.0762643963098526,
- -0.025615470483899117,
- 0.01758839376270771,
- -0.0663638561964035,
- 0.04627183824777603,
- -0.04318614304065704,
- -0.004871367011219263,
- -0.013936231844127178,
- 0.039418164640665054,
- 0.06991458684206009,
- 0.004245198331773281,
- -0.01506379246711731,
- -0.0016315709799528122,
- -0.0868300199508667,
- -0.019137930124998093,
- -6.294877308460954e-33,
- -0.051122844219207764,
- -0.014459474943578243,
- 0.00769270583987236,
- 0.04639444127678871,
- 0.029720664024353027,
- 0.0023794060107320547,
- -0.011580346152186394,
- 0.0052040391601622105,
- 0.007881284691393375,
- 0.04174072667956352,
- -0.03657180070877075,
- 0.0312778502702713,
- 0.0157256368547678,
- -0.007852209731936455,
- 0.06399829685688019,
- -0.03435637801885605,
- -0.07523374259471893,
- -0.004386227112263441,
- 0.019943464547395706,
- -0.007295794785022736,
- -0.010752440430223942,
- 0.08408696949481964,
- 0.0016998691717162728,
- -0.05122831463813782,
- -0.012547663412988186,
- 0.0892515555024147,
- 0.010262422263622284,
- 0.004450518637895584,
- 0.000603280495852232,
- 0.02269229292869568,
- -0.012700478546321392,
- 0.12152909487485886,
- -0.0766768530011177,
- -0.02174750156700611,
- -0.004137227777391672,
- 0.00988830253481865,
- 0.040662795305252075,
- -0.05213627964258194,
- 0.008711988106369972,
- -0.033585671335458755,
- -0.07990484684705734,
- -0.013227425515651703,
- -0.03540299832820892,
- -0.05241522938013077,
- 0.011355573311448097,
- 0.036882173269987106,
- 0.07165081053972244,
- 0.0016341336304321885,
- -0.04834441840648651,
- 0.043750591576099396,
- -0.03491336852312088,
- -0.021213771775364876,
- -0.023797376081347466,
- -0.04916658252477646,
- -0.007689491845667362,
- 0.03637666627764702,
- -0.06736051291227341,
- 0.04420999065041542,
- -0.061995115131139755,
- -0.04016188532114029,
- 0.020341385155916214,
- -0.007739588152617216,
- -0.029233276844024658,
- 0.006888862233608961,
- 0.0016235889634117484,
- -0.0434286892414093,
- 0.009855923242866993,
- -0.03656177967786789,
- 0.06512254476547241,
- -0.04771111533045769,
- 0.017087366431951523,
- 0.003694001352414489,
- -0.08314735442399979,
- -0.029739106073975563,
- -0.026342665776610374,
- -0.01993725448846817,
- 0.04853569716215134,
- -0.01870102621614933,
- -0.07366406917572021,
- 0.012154149822890759,
- -0.054502326995134354,
- -0.04003715515136719,
- 0.057152412831783295,
- 0.015048803761601448,
- -0.018220454454421997,
- 0.015465501695871353,
- 0.07381302118301392,
- -0.04277871921658516,
- -0.056307610124349594,
- 0.04101381078362465,
- -0.06279594451189041,
- 0.025752142071723938,
- -0.0022852106485515833,
- 0.031327035278081894,
- -0.007786727976053953,
- 4.3808936927559346e-33,
- 0.034703273326158524,
- 0.026895754039287567,
- -0.10476124286651611,
- 0.07032500952482224,
- 0.13082993030548096,
- 0.006968935020267963,
- -0.05341610684990883,
- 0.027131661772727966,
- -0.10926055163145065,
- 0.04973989352583885,
- -0.055203311145305634,
- -0.05374106392264366,
- 0.01648210734128952,
- 0.026379693299531937,
- -0.05955033004283905,
- -0.05678105726838112,
- 0.014501779340207577,
- -0.06846792250871658,
- 0.03355306386947632,
- 0.023147573694586754,
- 0.009304109960794449,
- -0.010040859691798687,
- -0.06345164030790329,
- -0.08319354057312012,
- -0.04958396404981613,
- 0.024583805352449417,
- 0.016936199739575386,
- -0.0003764226275961846,
- -0.024165792390704155,
- 0.03378260135650635,
- 0.019111158326268196,
- -0.06935697048902512,
- -0.03738047182559967,
- 0.05339125171303749,
- -0.07738708704710007,
- 0.09405238181352615,
- 0.057576365768909454,
- 0.026891585439443588,
- -0.012507900595664978,
- -0.005521341692656279,
- -0.030229410156607628,
- -0.00294180097989738,
- -0.07744559645652771,
- -0.024414638057351112,
- -0.005778895225375891,
- -0.0890413448214531,
- 0.06046696752309799,
- 0.11324624717235565,
- 0.06425256282091141,
- 0.005813921336084604,
- -0.05823364481329918,
- -0.010429189540445805,
- -0.07121723145246506,
- -0.06749299168586731,
- -0.02998260408639908,
- 0.03787531331181526,
- 0.0244282353669405,
- -0.06713267415761948,
- 0.008285108022391796,
- 0.061257049441337585,
- 0.03727191686630249,
- -0.0030426117591559887,
- -0.024628808721899986,
- 0.03293691948056221,
- 0.007337621878832579,
- 0.04751482978463173,
- -0.05318634584546089,
- 0.04573587700724602,
- 0.0024654963053762913,
- 0.020001398399472237,
- -0.00704991165548563,
- -0.003199818078428507,
- -0.0930575281381607,
- -0.015326191671192646,
- -0.012884973548352718,
- -0.026619592681527138,
- -0.06476835161447525,
- -0.013651875779032707,
- -0.018655093386769295,
- -0.04282546043395996,
- -0.030839411541819572,
- -0.09219928830862045,
- -0.014993490651249886,
- 0.036095716059207916,
- 0.06387941539287567,
- -0.012722478248178959,
- -0.0353696271777153,
- 0.060766980051994324,
- 0.03204896301031113,
- 0.02610016241669655,
- 0.020442424342036247,
- 0.02890988439321518,
- -0.09679938852787018,
- 0.07293853908777237,
- -0.0734090730547905,
- -1.2922988901209465e-8,
- -0.02863314561545849,
- -0.03660236671566963,
- 0.047636114060878754,
- 0.03334454819560051,
- 0.04938429594039917,
- 0.03612622246146202,
- 0.010638710111379623,
- -0.04372610151767731,
- -0.07967375963926315,
- 0.0425783172249794,
- -0.00957446452230215,
- 0.08723808825016022,
- 0.007037733681499958,
- 0.13440191745758057,
- 0.03395302593708038,
- -0.01355805341154337,
- 0.0007526363478973508,
- -0.03336057811975479,
- -0.04334229230880737,
- 0.09058387577533722,
- 0.08356298506259918,
- -0.023367462679743767,
- -0.013702811673283577,
- 0.016693666577339172,
- 0.00824807956814766,
- -0.05459892004728317,
- 0.02927125245332718,
- 0.11828507483005524,
- -0.024002118036150932,
- 0.004534294828772545,
- -0.0029392647556960583,
- 0.1594880223274231,
- -0.05843343585729599,
- 0.01129260752350092,
- 0.03355898708105087,
- 0.0469750352203846,
- 0.02041974477469921,
- 0.06489060074090958,
- 0.03279148042201996,
- -0.046996116638183594,
- 0.014619646593928337,
- 0.025262506678700447,
- -0.012148200534284115,
- 0.03639180213212967,
- 0.09360171854496002,
- 0.06253552436828613,
- -0.061247918754816055,
- -0.025224199518561363,
- 0.013503952883183956,
- 0.040149588137865067,
- -0.03206390514969826,
- 0.15320926904678345,
- -0.02632315084338188,
- 0.06365086138248444,
- 0.09808562695980072,
- -0.013954445719718933,
- 0.02719954401254654,
- 0.028967808932065964,
- -0.07731261849403381,
- 0.057574622333049774,
- 0.10660287737846375,
- 0.01490721944719553,
- 0.025197189301252365,
- 0.009805315174162388
- ]
- },
- {
- "keyword": "idea",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.05300423130393028,
- 0.01585591584444046,
- -0.014358596876263618,
- -0.016767757013440132,
- -0.045114174485206604,
- -0.05534103512763977,
- 0.12672530114650726,
- 0.061665549874305725,
- -0.015098661184310913,
- -0.030054481700062752,
- -0.025853494182229042,
- -0.017764341086149216,
- -0.010578677989542484,
- 0.04122244939208031,
- -0.009295712225139141,
- 0.001907216850668192,
- 0.006222913507372141,
- 0.03964626044034958,
- -0.11751261353492737,
- -0.041827596724033356,
- -0.0792582556605339,
- -0.011428593657910824,
- 0.01582878828048706,
- 0.026305632665753365,
- -0.14037691056728363,
- 0.07196695357561111,
- 0.004624173045158386,
- 0.02040175162255764,
- -0.006165331695228815,
- -0.04340308904647827,
- 0.040647778660058975,
- 0.09347877651453018,
- 0.04925530403852463,
- 0.013476324267685413,
- -0.009545204229652882,
- 0.02175549790263176,
- -0.049189720302820206,
- 0.0721224844455719,
- -0.05587812140583992,
- -0.06384345889091492,
- -0.03472539782524109,
- -0.060555100440979004,
- -0.0013165862765163183,
- 0.02072623185813427,
- -0.04221251606941223,
- -0.054187361150979996,
- 0.018102016299962997,
- 0.006942396983504295,
- 0.1042129397392273,
- 0.01800333708524704,
- 0.03330095484852791,
- -0.010914769023656845,
- 0.026195872575044632,
- -0.08961591869592667,
- -0.0357288122177124,
- -0.02877369336783886,
- -0.06956948339939117,
- -0.0499705895781517,
- 0.02932947874069214,
- -0.046492528170347214,
- 0.10510732978582382,
- 0.060942161828279495,
- -0.0018564374186098576,
- -0.009303539991378784,
- -0.0003133743884973228,
- 0.004437032155692577,
- 0.06634663790464401,
- 0.09762096405029297,
- 0.014056692831218243,
- -0.029574142768979073,
- 0.07516590505838394,
- 0.06044489145278931,
- -0.06482010334730148,
- -0.014799908734858036,
- 0.04621826112270355,
- 0.027950981631875038,
- 0.009800397790968418,
- -0.02391279675066471,
- 0.0469859316945076,
- -0.029225001111626625,
- -0.09127401560544968,
- 0.0463578961789608,
- -0.03559628129005432,
- 0.054767150431871414,
- 0.050125204026699066,
- 0.06652943789958954,
- -0.01326139084994793,
- -0.012445682659745216,
- -0.08131454139947891,
- -0.03831300884485245,
- -0.05484607443213463,
- 0.0005257510929368436,
- 0.08170810341835022,
- -0.02620498277246952,
- 0.030133606866002083,
- 0.08002786338329315,
- -0.015146130695939064,
- 0.015419155359268188,
- -0.026992972940206528,
- 0.2687371075153351,
- -0.004154653754085302,
- 0.012955122627317905,
- 0.027136726304888725,
- -0.08038527518510818,
- 0.044001609086990356,
- -0.05077413469552994,
- -0.017580151557922363,
- -0.027846651151776314,
- -0.002903371350839734,
- -0.045146625488996506,
- -0.04658258333802223,
- -0.0017406332772225142,
- -0.004227852448821068,
- 0.05967797711491585,
- 0.033305682241916656,
- 0.03147103264927864,
- 0.04805969074368477,
- 0.04045712947845459,
- -0.006622105371206999,
- -0.043619684875011444,
- -0.01564756967127323,
- 0.026410246267914772,
- -0.0055835130624473095,
- -0.028098655864596367,
- -0.0032678432762622833,
- 0.03522177413105965,
- -0.019611017778515816,
- -3.781044068319106e-33,
- 0.04695311188697815,
- 0.04429358243942261,
- 0.0072403959929943085,
- 0.05514838546514511,
- 0.08922335505485535,
- -0.008697529323399067,
- 0.0195488128811121,
- -0.007853426039218903,
- 0.016687452793121338,
- -0.03385324031114578,
- -0.02409464120864868,
- -0.028418073430657387,
- -0.03910942003130913,
- 0.04489839822053909,
- 0.09859225153923035,
- -0.06402000039815903,
- -0.007941746152937412,
- 0.005036481656134129,
- -0.028992371633648872,
- -0.04436840862035751,
- -0.024674709886312485,
- -0.02708081342279911,
- 0.025110838934779167,
- 0.03144151344895363,
- -0.024772142991423607,
- -0.02041083388030529,
- -0.009821162559092045,
- -0.061273057013750076,
- 0.007855240255594254,
- 0.0212271586060524,
- 0.011618274264037609,
- 0.10736209154129028,
- -0.07808221131563187,
- 0.026642119511961937,
- -0.03445694223046303,
- -0.01044495403766632,
- 0.022933844476938248,
- -0.09840201586484909,
- 0.06359177827835083,
- -0.02725594863295555,
- -0.046330709010362625,
- 0.04116257652640343,
- -0.09366542845964432,
- -0.011933686211705208,
- 0.06062466651201248,
- 0.05165357142686844,
- 0.026648251339793205,
- -0.0018750083399936557,
- 0.015377759002149105,
- 0.047651536762714386,
- 0.04202152416110039,
- -0.07861925661563873,
- -0.04694150760769844,
- -0.023661715909838676,
- -0.08188082277774811,
- -0.016778454184532166,
- -0.012258423492312431,
- -0.024069683626294136,
- 0.0341583713889122,
- -0.021285636350512505,
- 0.053503718227148056,
- 0.016737036406993866,
- 0.011377415619790554,
- 0.050310589373111725,
- -0.08840641379356384,
- -0.00354179204441607,
- 0.03851635754108429,
- -0.0572022870182991,
- 0.00098222098313272,
- -0.07174760848283768,
- 0.031180894002318382,
- 0.022428743541240692,
- -0.00810869038105011,
- -0.0349448062479496,
- -0.0903385728597641,
- 0.004425888415426016,
- -0.04894929379224777,
- -0.023375585675239563,
- 0.032482169568538666,
- 0.0068056839518249035,
- 0.03288761526346207,
- -0.058380018919706345,
- 0.010333724319934845,
- 0.03586781024932861,
- 0.04808693751692772,
- 0.0023091647308319807,
- 0.038166020065546036,
- 0.05007714405655861,
- -0.11601949483156204,
- -0.02100079506635666,
- -0.09887084364891052,
- 0.013582593761384487,
- 0.025351688265800476,
- 0.011484489776194096,
- -0.020695386454463005,
- 4.345396334754994e-33,
- -0.03860647603869438,
- -0.030687831342220306,
- -0.08896695822477341,
- -0.03850920870900154,
- 0.15724898874759674,
- -0.007838187739253044,
- 0.029361333698034286,
- 0.012448977679014206,
- -0.033280134201049805,
- 0.09652544558048248,
- -0.03589772805571556,
- -0.07143442332744598,
- 0.06858934462070465,
- -0.026769764721393585,
- 0.03194701299071312,
- -0.009452009573578835,
- 0.04507450386881828,
- -0.019304020330309868,
- 0.03891459107398987,
- 0.03154245764017105,
- -0.06434671580791473,
- -0.039685238152742386,
- -0.07280971854925156,
- 0.030907394364476204,
- -0.01092490367591381,
- 0.012928487733006477,
- 0.0011652018874883652,
- -0.014255196787416935,
- -0.06901809573173523,
- 0.02287847362458706,
- 0.030350882560014725,
- -0.08460872620344162,
- -0.04370776563882828,
- -0.01986410841345787,
- -0.01792311668395996,
- 0.1287601739168167,
- 0.040199920535087585,
- 0.011197158135473728,
- -0.03492360934615135,
- 0.05322238430380821,
- 0.013234203681349754,
- -0.03704928234219551,
- -0.027956431731581688,
- 0.03781357780098915,
- -0.07430671900510788,
- -0.005723749287426472,
- -0.009918675757944584,
- 0.09136945009231567,
- 0.07989949733018875,
- 0.0727226734161377,
- -0.06396221369504929,
- 0.08810549974441528,
- -0.025957917794585228,
- -0.07349007576704025,
- -0.012369032949209213,
- 0.024384042248129845,
- 0.07170447707176208,
- -0.06040642783045769,
- 0.023011697456240654,
- 0.042324408888816833,
- 0.030593594536185265,
- 0.009429315105080605,
- 0.026427244767546654,
- -0.005757961887866259,
- 0.010621447116136551,
- 0.004748222883790731,
- -0.006684403866529465,
- 0.01818760111927986,
- 0.015461927279829979,
- 0.040849972516298294,
- 0.06121157854795456,
- 0.032870613038539886,
- -0.02440202794969082,
- 0.022128114476799965,
- -0.05403652787208557,
- -0.05077274516224861,
- -0.0003146553644910455,
- -0.0053296322003006935,
- -0.04036359116435051,
- -0.006443982012569904,
- -0.08198954164981842,
- -0.12033498287200928,
- -0.03287019208073616,
- 0.042868006974458694,
- 0.033128853887319565,
- -0.07432147860527039,
- -0.02004770189523697,
- 0.08894044905900955,
- 0.011621523648500443,
- 0.01582369953393936,
- -0.09224487841129303,
- 0.047756168991327286,
- 0.00620522303506732,
- 0.05186004191637039,
- -0.04032334312796593,
- -1.4009987836516302e-8,
- -0.019641246646642685,
- 0.005177549552172422,
- 0.06190239638090134,
- 0.07574152201414108,
- -0.009716865606606007,
- -0.0041572400368750095,
- -0.025107763707637787,
- 0.017842350527644157,
- -0.0023471813183277845,
- 0.009692738763988018,
- 0.062187399715185165,
- -0.02647477760910988,
- 0.04619786888360977,
- 0.12004457414150238,
- -0.0017209048382937908,
- -0.08698340505361557,
- -0.0020206859335303307,
- 0.04021323099732399,
- -0.032273486256599426,
- 0.06197934225201607,
- -0.04774473235011101,
- 0.025118449702858925,
- 0.016545919701457024,
- 0.009451785124838352,
- -0.03687693923711777,
- -0.02388823963701725,
- 0.00525308633223176,
- 0.12333279103040695,
- 0.03963209316134453,
- 0.011801168322563171,
- -0.026076456531882286,
- 0.048986371606588364,
- -0.05077013373374939,
- 0.00043142776121385396,
- 0.018600618466734886,
- 0.07364226132631302,
- -0.059157051146030426,
- 0.03257933631539345,
- -0.05315929651260376,
- -0.006593114696443081,
- -0.011868755333125591,
- -0.04466363042593002,
- 0.09843379259109497,
- -0.011906743980944157,
- 0.02548244781792164,
- 0.03932241350412369,
- -0.044709209352731705,
- -0.09179703891277313,
- 0.006435834802687168,
- 0.04305209219455719,
- -0.0852496400475502,
- 0.05161770433187485,
- 0.0019542952068150043,
- 0.007526747416704893,
- 0.1442667692899704,
- 0.030763287097215652,
- 0.020545849576592445,
- 0.024226173758506775,
- -0.10167534649372101,
- 0.05747915804386139,
- 0.16088198125362396,
- -0.015437734313309193,
- -0.028017403557896614,
- 0.06876254081726074
- ]
- },
- {
- "keyword": "notion",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.01161283627152443,
- -0.00588873540982604,
- -0.07366293668746948,
- 0.006861597765237093,
- -0.022944901138544083,
- -0.02127131074666977,
- 0.15587110817432404,
- -0.0035773213021457195,
- 0.022624658420681953,
- 0.03886803239583969,
- -0.00742921931669116,
- -0.036221858114004135,
- 0.011428349651396275,
- -0.020445125177502632,
- 0.036146026104688644,
- 0.0011187174823135138,
- 0.024356722831726074,
- -0.02855389378964901,
- -0.03707744553685188,
- 0.07430420815944672,
- 0.00513839814811945,
- -0.004149134270846844,
- -0.016903121024370193,
- 0.05694292485713959,
- -0.05023937299847603,
- 0.03633840009570122,
- 0.003154876409098506,
- 0.0032770978286862373,
- 0.045780520886182785,
- -0.08142745494842529,
- -0.10265249758958817,
- 0.09108736366033554,
- 0.04898343235254288,
- 0.077089324593544,
- 0.006251527462154627,
- 0.045829128473997116,
- 0.010658367536962032,
- 0.03995981067419052,
- -0.019577298313379288,
- -0.0171937495470047,
- -0.013342149555683136,
- -0.02327350527048111,
- 0.004166517872363329,
- -0.030733393505215645,
- -0.030456317588686943,
- 0.03894796594977379,
- 0.04096508026123047,
- 0.01238859910517931,
- -0.009921692311763763,
- -0.04308612644672394,
- -0.07175449281930923,
- -0.05586972460150719,
- -0.07250583916902542,
- 0.036502689123153687,
- 0.01685638166964054,
- -0.04739794135093689,
- 0.057524412870407104,
- -0.037480369210243225,
- -0.010715239681303501,
- -0.10317239910364151,
- 0.04682031646370888,
- -0.039442818611860275,
- -0.009473804384469986,
- 0.04295996576547623,
- 0.06513447314500809,
- 0.005001581273972988,
- 0.03294578194618225,
- 0.031707461923360825,
- -0.04353315383195877,
- -0.047383859753608704,
- 0.05265439301729202,
- 0.037471674382686615,
- -0.0307256281375885,
- 0.036932554095983505,
- 0.09559155255556107,
- -0.07424698770046234,
- 0.023626146838068962,
- -0.0019682797137647867,
- 0.021296542137861252,
- 0.024734076112508774,
- -0.008628655225038528,
- 0.10314589738845825,
- 0.054780710488557816,
- 0.009465239010751247,
- 0.008706103079020977,
- 0.030789129436016083,
- 0.020975450053811073,
- -0.037760164588689804,
- -0.007396467961370945,
- -0.01701384410262108,
- -0.08823231607675552,
- -0.10734423995018005,
- 0.03612396866083145,
- 0.003028019331395626,
- 0.07770020514726639,
- -0.030229201540350914,
- 0.03352750465273857,
- -0.07143226265907288,
- 0.03135384991765022,
- 0.2408507764339447,
- 0.004754890222102404,
- 0.07087862491607666,
- -0.05856015160679817,
- -0.06648015975952148,
- 0.021202489733695984,
- -0.07981742173433304,
- -0.035771336406469345,
- -0.046284064650535583,
- 0.046202510595321655,
- -0.02698790282011032,
- -0.0008493250934407115,
- -0.0375053845345974,
- -0.07815194875001907,
- -0.009118306450545788,
- -0.014987685717642307,
- -0.040721919387578964,
- 0.01216216292232275,
- 0.018516629934310913,
- 0.047750476747751236,
- -0.08118655532598495,
- 0.02182248793542385,
- 0.03817971423268318,
- 0.050684548914432526,
- -0.02137351781129837,
- 0.02367476373910904,
- 0.0017753855790942907,
- -0.022795286029577255,
- -5.09769067876218e-33,
- -0.0383155457675457,
- 0.02729177102446556,
- -0.022809375077486038,
- -0.018805161118507385,
- 0.028516242280602455,
- 0.030508873984217644,
- -0.0453362874686718,
- 0.013095248490571976,
- 0.025363605469465256,
- -0.005174918100237846,
- -0.006896827835589647,
- 0.07183748483657837,
- 0.037863340228796005,
- -0.0698462650179863,
- 0.11222849786281586,
- -0.03456350043416023,
- -0.009661250747740269,
- 0.029624488204717636,
- 0.07123974710702896,
- 0.04048019275069237,
- -0.011078184470534325,
- 0.12844917178153992,
- -0.06759904325008392,
- -0.05632960423827171,
- -0.024241916835308075,
- -0.03155234456062317,
- -0.003937180619686842,
- 0.051196977496147156,
- 0.0344398133456707,
- -0.002181808464229107,
- -0.012870199047029018,
- 0.06960024684667587,
- -0.019617147743701935,
- 0.01677175611257553,
- -0.01029345765709877,
- -0.016798537224531174,
- 0.007097840774804354,
- -0.05994764342904091,
- 0.025674832984805107,
- -0.04452234506607056,
- -0.056744471192359924,
- 0.029185282066464424,
- 0.004281260073184967,
- -0.061485130339860916,
- 0.013747042044997215,
- 0.007935140281915665,
- 0.05524726212024689,
- 0.015090669505298138,
- -0.04536109045147896,
- 0.05120163410902023,
- 0.0037795109674334526,
- -0.060667913407087326,
- 0.03736276179552078,
- -0.020790856331586838,
- -0.013583128340542316,
- -0.03266886994242668,
- -0.07423046976327896,
- 0.0430758036673069,
- -0.007346849422901869,
- -0.06265921145677567,
- 0.009957720525562763,
- -0.03190463408827782,
- 0.009420324116945267,
- -0.003471013391390443,
- -0.04861988499760628,
- -0.05092732235789299,
- -0.045322783291339874,
- -0.05926664546132088,
- 0.04743214324116707,
- 0.004716387949883938,
- -0.024843629449605942,
- -0.0194869302213192,
- -0.03792761266231537,
- 0.026120880618691444,
- 0.02933911420404911,
- -0.02188541181385517,
- 0.056093838065862656,
- -0.02117876149713993,
- -0.07649990916252136,
- 0.015277489088475704,
- -0.0587674044072628,
- -0.0069326055236160755,
- 0.03065205179154873,
- 0.0018859324045479298,
- 0.033182527869939804,
- 0.04389023408293724,
- 0.058904487639665604,
- -0.03685436770319939,
- 0.049725241959095,
- -0.033411603420972824,
- -0.11948627978563309,
- 0.04587149620056152,
- 0.021822776645421982,
- -0.0334974005818367,
- -0.061656177043914795,
- 2.567764002602613e-33,
- 0.032600633800029755,
- 0.020490610972046852,
- -0.05735941231250763,
- 0.08990010619163513,
- 0.12301576882600784,
- -0.012627209536731243,
- -0.041400644928216934,
- 0.01304628700017929,
- -0.11749771982431412,
- -0.06858906149864197,
- -0.052552174776792526,
- -0.045722365379333496,
- -0.023911193013191223,
- 0.02411459945142269,
- -0.0008521705167368054,
- -0.0854712724685669,
- -0.011499838903546333,
- -0.09485660493373871,
- -0.010037249885499477,
- 0.016273772343993187,
- 0.0034372801892459393,
- -0.11264800280332565,
- -0.02580382488667965,
- -0.051045797765254974,
- 0.01235426589846611,
- 0.05993359163403511,
- -0.01571531966328621,
- 0.04049317538738251,
- -0.042825549840927124,
- 0.013294053263962269,
- -0.01637166552245617,
- -0.07998541742563248,
- -0.09728698432445526,
- -0.009045111015439034,
- -0.023991035297513008,
- 0.10758253931999207,
- 0.07021018862724304,
- 0.025721818208694458,
- -0.02049950696527958,
- -0.022161828354001045,
- -0.055293675512075424,
- -0.014837752096354961,
- -0.06839939206838608,
- 0.05456477403640747,
- -0.008012446574866772,
- -0.031215794384479523,
- 0.03247072175145149,
- 0.1020936369895935,
- 0.048511821776628494,
- -0.03841099888086319,
- -0.11472154408693314,
- 0.032902225852012634,
- -0.028390804305672646,
- -0.07668714225292206,
- -0.02803109958767891,
- 0.000013278014193929266,
- 0.0715862289071083,
- -0.08691570162773132,
- -0.06210089474916458,
- 0.013319440186023712,
- 0.062081560492515564,
- -0.01866120472550392,
- -0.03515845909714699,
- 0.0937442034482956,
- 0.010272620245814323,
- 0.04972431808710098,
- -0.04688214510679245,
- -0.02836565673351288,
- 0.005705676507204771,
- 0.003919285722076893,
- -0.021237097680568695,
- -0.011825998313724995,
- -0.1293996423482895,
- -0.03005078434944153,
- -0.003240656340494752,
- -0.033759478479623795,
- 0.017086178064346313,
- -0.025007836520671844,
- 0.028593003749847412,
- 0.0087325694039464,
- 0.040017351508140564,
- -0.0636659786105156,
- 0.023815244436264038,
- -0.009258994832634926,
- 0.045541975647211075,
- 0.004739591386169195,
- 0.003028361825272441,
- 0.07280571758747101,
- -0.0024163825437426567,
- 0.035200562328100204,
- 0.01811801642179489,
- 0.0036857586819678545,
- -0.09560932964086533,
- 0.05098216235637665,
- -0.10778047889471054,
- -1.216512934831826e-8,
- -0.0017085946165025234,
- -0.010346497409045696,
- 0.10699093341827393,
- -0.020454715937376022,
- 0.014521388337016106,
- -0.018542978912591934,
- 0.022770101204514503,
- -0.08050450682640076,
- -0.05771775171160698,
- 0.04419879987835884,
- 0.008368829265236855,
- 0.09332995116710663,
- -0.028504367917776108,
- 0.094996877014637,
- 0.05509248003363609,
- 0.0011533061042428017,
- -0.04012781009078026,
- -0.015444339253008366,
- -0.06835301965475082,
- 0.08931654691696167,
- 0.048158761113882065,
- 0.006744720507413149,
- -0.06397692859172821,
- -0.04413580521941185,
- 0.039303138852119446,
- -0.020044853910803795,
- 0.04056140407919884,
- 0.09030366688966751,
- -0.001993680140003562,
- 0.030578522011637688,
- 0.013982200995087624,
- 0.13357755541801453,
- -0.04044601693749428,
- 0.00826847180724144,
- -0.013043065555393696,
- -0.011229644529521465,
- 0.007044927217066288,
- 0.07931290566921234,
- 0.08322218060493469,
- -0.08497338742017746,
- 0.039610277861356735,
- 0.01887817308306694,
- -0.015373260714113712,
- 0.029536714777350426,
- 0.04569810628890991,
- -0.0007664529839530587,
- 0.03712143748998642,
- 0.0348096527159214,
- -0.003075741231441498,
- 0.05662151798605919,
- -0.053436025977134705,
- 0.16780416667461395,
- 0.018589969724416733,
- 0.08042578399181366,
- 0.061774153262376785,
- -0.006327001843601465,
- -0.006405462510883808,
- -0.01416800357401371,
- -0.09284762293100357,
- 0.014534584246575832,
- 0.09659358859062195,
- -0.08598759770393372,
- 0.0862755998969078,
- -0.025639954954385757
- ]
- },
- {
- "keyword": "theory",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03215190768241882,
- 0.06567870080471039,
- -0.03227657824754715,
- 0.06143234297633171,
- -0.020189661532640457,
- 0.025882136076688766,
- 0.14206945896148682,
- 0.02155268006026745,
- 0.04113242030143738,
- 0.07349362224340439,
- 0.021400341764092445,
- 0.05934444069862366,
- 0.013348071835935116,
- 0.07778741419315338,
- 0.030252015218138695,
- -0.06647655367851257,
- 0.024508904665708542,
- -0.042694732546806335,
- -0.1359620988368988,
- -0.04668055847287178,
- -0.04673445224761963,
- -0.09129054099321365,
- -0.02651233784854412,
- 0.035147055983543396,
- -0.03007259964942932,
- 0.090999074280262,
- -0.012361184693872929,
- 0.03366261348128319,
- 0.03861922398209572,
- -0.10041680932044983,
- -0.0896415114402771,
- 0.033449504524469376,
- -0.013368855230510235,
- 0.003984067589044571,
- -0.021032582968473434,
- 0.0021715189795941114,
- 0.042480889707803726,
- 0.038325898349285126,
- 0.05834025889635086,
- 0.04133247956633568,
- -0.05695675313472748,
- -0.02996770665049553,
- 0.037177812308073044,
- -0.01832207664847374,
- 0.03877659887075424,
- 0.026194246485829353,
- 0.03862011805176735,
- -0.019165480509400368,
- -0.04392782226204872,
- -0.050377435982227325,
- -0.02533605508506298,
- -0.006860304158180952,
- -0.06628851592540741,
- 0.019036361947655678,
- 0.022828852757811546,
- -0.014061054214835167,
- -0.06193394586443901,
- -0.042826518416404724,
- -0.00915194395929575,
- -0.03566669672727585,
- 0.04473351687192917,
- -0.015543834306299686,
- -0.06022891029715538,
- 0.03363687917590141,
- 0.1988004893064499,
- 0.026978174224495888,
- 0.05061250925064087,
- 0.034016452729701996,
- -0.06855546683073044,
- -0.05229692533612251,
- 0.012925232760608196,
- 0.0847415030002594,
- -0.08209958672523499,
- 0.05133729800581932,
- 0.13078056275844574,
- -0.015217281877994537,
- 0.06717398762702942,
- 0.07049094140529633,
- 0.024510499089956284,
- 0.05538363754749298,
- 0.01873336173593998,
- -0.003213783958926797,
- -0.02154243178665638,
- 0.04305066540837288,
- -0.020653288811445236,
- -0.0020877066999673843,
- -0.03758348152041435,
- -0.1042751744389534,
- -0.08451898396015167,
- -0.023768547922372818,
- -0.012657076120376587,
- -0.05274749547243118,
- -0.01898953504860401,
- 0.017906559631228447,
- -0.026511121541261673,
- 0.03861507773399353,
- -0.013633441179990768,
- -0.05910602957010269,
- 0.020178992301225662,
- 0.23449687659740448,
- -0.0019630317110568285,
- 0.014003201387822628,
- -0.02127472311258316,
- -0.01844857633113861,
- 0.07616793364286423,
- -0.04115254431962967,
- 0.03083317168056965,
- -0.0812498927116394,
- 0.06730014085769653,
- 0.04644109308719635,
- -0.04063217714428902,
- -0.048755306750535965,
- 0.03271815553307533,
- 0.03294484317302704,
- -0.023446323350071907,
- -0.045644719153642654,
- 0.021392859518527985,
- 0.026461642235517502,
- -0.03306656330823898,
- -0.041990965604782104,
- 0.042883481830358505,
- 0.006524909287691116,
- -0.05891336873173714,
- 0.03917888551950455,
- -0.02960287593305111,
- -0.01914924755692482,
- -0.0759061649441719,
- -4.83182728472678e-33,
- -0.02327517420053482,
- -0.01842990703880787,
- 0.057424359023571014,
- 0.027943935245275497,
- 0.07238026708364487,
- -0.020634982734918594,
- -0.07721496373414993,
- -0.024711741134524345,
- 0.04000835493206978,
- 0.02741316333413124,
- -0.0823744535446167,
- 0.01288661640137434,
- 0.018692605197429657,
- -0.03679864853620529,
- 0.0211280919611454,
- 0.0036633058916777372,
- 0.030110685154795647,
- 0.009403210133314133,
- 0.0004137821670155972,
- -0.0460209958255291,
- -0.04383831471204758,
- 0.038321301341056824,
- -0.023898929357528687,
- -0.017506340518593788,
- -0.00697372667491436,
- 0.03174324333667755,
- 0.008945794776082039,
- -0.03943687677383423,
- -0.060385651886463165,
- 0.023584410548210144,
- -0.01617094874382019,
- 0.10544978827238083,
- -0.11604589968919754,
- 0.034904953092336655,
- -0.007258431054651737,
- -0.005778093356639147,
- 0.056502021849155426,
- -0.08492883294820786,
- 0.025556005537509918,
- -0.06779000163078308,
- -0.06952600181102753,
- 0.026017820462584496,
- -0.027380172163248062,
- -0.09810352325439453,
- 0.08670082688331604,
- 0.04698209464550018,
- 0.11550947278738022,
- -0.056346140801906586,
- -0.03149263560771942,
- 0.02987077459692955,
- 0.002031756564974785,
- -0.019429946318268776,
- -0.0960562452673912,
- 0.007781803607940674,
- 0.04213305935263634,
- 0.075290746986866,
- -0.0043334574438631535,
- -0.005994576960802078,
- -0.051239509135484695,
- 0.007243407890200615,
- 0.021355850622057915,
- -0.00929065141826868,
- -0.021362196654081345,
- -0.039098843932151794,
- -0.05950912833213806,
- 0.03630061075091362,
- -0.013543987646698952,
- -0.1279350072145462,
- 0.03131750971078873,
- -0.07557471096515656,
- -0.010779969394207,
- 0.019683700054883957,
- -0.045977603644132614,
- -0.009250898845493793,
- -0.00044727232307195663,
- -0.02797771245241165,
- -0.011892247945070267,
- 0.010696711018681526,
- -0.03286577761173248,
- 0.04629606381058693,
- -0.1269543468952179,
- -0.04584226384758949,
- 0.02422969788312912,
- -0.024215448647737503,
- -0.011027094908058643,
- -0.02453453280031681,
- 0.003816073527559638,
- -0.008711162954568863,
- 0.027240188792347908,
- 0.01619289070367813,
- -0.11307621002197266,
- -0.006620754022151232,
- 0.07914243638515472,
- 0.030544854700565338,
- 0.011834091506898403,
- 2.64170774005712e-33,
- -0.06890727579593658,
- -0.06165911257266998,
- -0.07456985116004944,
- 0.013601472601294518,
- 0.0842057317495346,
- -0.018125995993614197,
- -0.047248419374227524,
- -0.00891696847975254,
- -0.060900770127773285,
- -0.012563727796077728,
- 0.05039060488343239,
- -0.019856318831443787,
- 0.018688764423131943,
- 0.009766611270606518,
- -0.009123940020799637,
- -0.01912844367325306,
- 0.09477025270462036,
- -0.007286159787327051,
- 0.030376730486750603,
- 0.03781919553875923,
- -0.03550553321838379,
- -0.053704652935266495,
- -0.02685506083071232,
- -0.0632743164896965,
- -0.020040009170770645,
- 0.013106080703437328,
- -0.021206092089414597,
- 0.03885427862405777,
- -0.02167424000799656,
- 0.07275162637233734,
- -0.00890657864511013,
- -0.05180596932768822,
- -0.01927759312093258,
- 0.03470407798886299,
- -0.10311181098222733,
- 0.0813925638794899,
- -0.029590463265776634,
- 0.05394718050956726,
- 0.02535267546772957,
- 0.017446912825107574,
- 0.06436190754175186,
- 0.05068187788128853,
- 0.03238070011138916,
- -0.007489476818591356,
- 0.003136193845421076,
- -0.04049016535282135,
- 0.06852858513593674,
- 0.09058020263910294,
- 0.02528003230690956,
- 0.05304339528083801,
- -0.04582969471812248,
- -0.02819984033703804,
- 0.025054417550563812,
- -0.05285792425274849,
- -0.03461476415395737,
- 0.11105310916900635,
- 0.023291680961847305,
- 0.026835640892386436,
- 0.0057404497638344765,
- 0.02773408591747284,
- 0.019126273691654205,
- -0.002509793033823371,
- -0.05063024163246155,
- 0.0778379887342453,
- -0.05746438354253769,
- -0.013093509711325169,
- -0.09248455613851547,
- 0.004340790212154388,
- 0.07406315952539444,
- 0.0032180408015847206,
- -0.0019102373626083136,
- 0.005695089232176542,
- -0.05982580780982971,
- 0.08324768394231796,
- -0.01959902234375477,
- -0.010224398225545883,
- -0.10091743618249893,
- -0.03569629788398743,
- -0.045732952654361725,
- -0.005214239936321974,
- -0.07819274067878723,
- -0.0422438383102417,
- 0.05170606076717377,
- -0.012041819281876087,
- -0.003507661633193493,
- -0.00749167799949646,
- 0.012266192585229874,
- 0.017344633117318153,
- 0.034972045570611954,
- -0.048802345991134644,
- -0.0067777857184410095,
- -0.013774612918496132,
- 0.026609471067786217,
- -0.010159516707062721,
- -0.009687644429504871,
- -1.2378828628811789e-8,
- 0.01200710516422987,
- -0.01804746687412262,
- 0.06361282616853714,
- 0.03661917895078659,
- 0.03033287078142166,
- 0.061742350459098816,
- 0.023956723511219025,
- -0.030053552240133286,
- -0.07121515274047852,
- 0.08933500200510025,
- -0.005757570266723633,
- 0.10146419703960419,
- -0.04952528700232506,
- 0.11128625273704529,
- 0.049153171479701996,
- 0.0006623509107157588,
- -0.00323453894816339,
- -0.010387357324361801,
- -0.07312409579753876,
- 0.044050365686416626,
- 0.07159982621669769,
- 0.018814682960510254,
- 0.04776729270815849,
- -0.022884797304868698,
- 0.035050515085458755,
- 0.07421018928289413,
- -0.04310094192624092,
- 0.03843085840344429,
- 0.005905285011976957,
- 0.0508028008043766,
- -0.007292946334928274,
- 0.0731288269162178,
- -0.018533218652009964,
- -0.02920491434633732,
- 0.027149178087711334,
- -0.042851969599723816,
- 0.007632243447005749,
- -0.024695586413145065,
- 0.007497550919651985,
- -0.06957730650901794,
- -0.014800045639276505,
- 0.013818889856338501,
- -0.054848745465278625,
- -0.0014086844166740775,
- 0.02615230344235897,
- 0.031925637274980545,
- -0.047964081168174744,
- -0.0405815951526165,
- -0.031948018819093704,
- 0.10242439061403275,
- 0.045632947236299515,
- 0.07035460323095322,
- 0.01451402623206377,
- 0.036121759563684464,
- 0.057466957718133926,
- -0.030777430161833763,
- 0.025666698813438416,
- 0.05222358554601669,
- -0.0841609314084053,
- 0.06627285480499268,
- 0.13291949033737183,
- -0.0037429314106702805,
- 0.08946723490953445,
- 0.01719081588089466
- ]
- },
- {
- "keyword": "principle",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.023242289200425148,
- 0.07593011856079102,
- 0.04067447409033775,
- 0.01897619664669037,
- 0.031602904200553894,
- 0.031163528561592102,
- 0.0743536725640297,
- -0.011843591928482056,
- -0.01115236897021532,
- 0.053479038178920746,
- 0.06438861042261124,
- 0.03847745433449745,
- 0.014125403948128223,
- 0.02252168208360672,
- 0.04492554813623428,
- -0.06539236009120941,
- 0.04379894211888313,
- 0.021837733685970306,
- -0.1657177209854126,
- 0.03663266822695732,
- -0.016639085486531258,
- -0.025103889405727386,
- 0.008259608410298824,
- 0.015369648113846779,
- -0.10175074636936188,
- 0.05130346491932869,
- -0.01932319439947605,
- 0.08759815245866776,
- 0.12568554282188416,
- -0.10486355423927307,
- -0.00805206410586834,
- 0.06846305727958679,
- -0.019948257133364677,
- -0.02991930954158306,
- -0.054674264043569565,
- 0.0447615347802639,
- 0.038448359817266464,
- -0.03005993366241455,
- 0.013836659491062164,
- 0.028185520321130753,
- -0.012538940645754337,
- -0.02609116956591606,
- 0.028405051678419113,
- 0.004925701767206192,
- 0.08491399884223938,
- 0.06938750296831131,
- 0.06179460510611534,
- 0.04391596093773842,
- 0.05708865821361542,
- -0.07319198548793793,
- -0.024816157296299934,
- -0.019548779353499413,
- -0.03263479843735695,
- 0.05323260277509689,
- 0.03279051557183266,
- 0.014822126366198063,
- 0.042025379836559296,
- -0.010973768308758736,
- -0.02371472492814064,
- -0.0637965202331543,
- 0.07447991520166397,
- -0.06337454169988632,
- -0.1059168353676796,
- 0.034502990543842316,
- 0.14122316241264343,
- -0.008215950801968575,
- 0.025474337860941887,
- -0.032665103673934937,
- -0.09637342393398285,
- 0.07040222734212875,
- 0.04605039209127426,
- -0.0006929408409632742,
- 0.03308625891804695,
- 0.12201531231403351,
- 0.07590361684560776,
- 0.005233025178313255,
- -0.043516650795936584,
- 0.013883976265788078,
- 0.10137754678726196,
- 0.007603222504258156,
- -0.02011743001639843,
- -0.053313106298446655,
- 0.010499494150280952,
- 0.07616262137889862,
- -0.059130579233169556,
- -0.027580447494983673,
- 0.016195645555853844,
- -0.07656941562891006,
- -0.042295489460229874,
- 0.046274881809949875,
- -0.04982151836156845,
- -0.018996838480234146,
- 0.027147604152560234,
- -0.04682978242635727,
- -0.009009924717247486,
- -0.011696189641952515,
- -0.09312092512845993,
- -0.10926157236099243,
- -0.06757909059524536,
- 0.2335888296365738,
- -0.0009293945622630417,
- 0.06675394624471664,
- -0.07611552625894547,
- 0.017131807282567024,
- 0.0639948919415474,
- -0.0095531539991498,
- -0.026710085570812225,
- -0.0035033549647778273,
- 0.0815269872546196,
- 0.04809499904513359,
- 0.03387290611863136,
- -0.039838287979364395,
- 0.08986831456422806,
- 0.0214688777923584,
- 0.05758113041520119,
- -0.09720033407211304,
- 0.0019722147844731808,
- -0.02507197856903076,
- -0.0606137290596962,
- -0.12344176322221756,
- 0.01807384006679058,
- 0.0006638749619014561,
- 0.005827042274177074,
- -0.008616778999567032,
- -0.033520203083753586,
- -0.059694383293390274,
- 0.05801130831241608,
- -5.6837532238318016e-33,
- -0.045713216066360474,
- -0.04543795809149742,
- 0.05319717153906822,
- -0.02842598222196102,
- 0.028438838198781013,
- -0.058110594749450684,
- -0.04344411566853523,
- -0.016128534451127052,
- -0.004728332627564669,
- 0.07371781021356583,
- -0.04534675180912018,
- -0.03406839072704315,
- -0.003722742199897766,
- -0.037058115005493164,
- 0.07030422240495682,
- 0.008772920817136765,
- 0.04323741793632507,
- 0.010313807986676693,
- 0.04918846860527992,
- 0.024882016703486443,
- 0.02983035519719124,
- 0.07068437337875366,
- -0.01719049923121929,
- -0.10661251097917557,
- 0.04795902594923973,
- -0.0035481490194797516,
- -0.015857260674238205,
- 0.023653561249375343,
- -0.07235975563526154,
- -0.019745957106351852,
- 0.0031868102960288525,
- 0.05785204470157623,
- -0.09192874282598495,
- 0.0029144282452762127,
- -0.021880147978663445,
- -0.03239651024341583,
- -0.03125974163413048,
- -0.06637849658727646,
- 0.010212414897978306,
- -0.028443459421396255,
- -0.017720576375722885,
- -0.007961236871778965,
- -0.07465135306119919,
- 0.012465735897421837,
- 0.09224525839090347,
- 0.04554448276758194,
- 0.022711792960762978,
- -0.008036687970161438,
- -0.010765988379716873,
- 0.0295250341296196,
- 0.048668861389160156,
- 0.05923602357506752,
- -0.0017846043920144439,
- -0.09492730349302292,
- 0.029424428939819336,
- 0.034847330302000046,
- -0.05918930843472481,
- 0.0719621330499649,
- -0.021529346704483032,
- -0.009517805650830269,
- 0.01869630254805088,
- -0.030866114422678947,
- -0.03550093621015549,
- 0.06956932693719864,
- -0.03201281279325485,
- 0.07040189206600189,
- -0.03497444838285446,
- -0.05754632130265236,
- 0.0013912838185206056,
- -0.12423358112573624,
- -0.025391090661287308,
- 0.02566978521645069,
- -0.044467270374298096,
- -0.03412826731801033,
- -0.01272527128458023,
- 0.00005360617797123268,
- 0.006385417655110359,
- 0.013543084263801575,
- 0.01425670925527811,
- 0.00628028204664588,
- -0.10567200928926468,
- -0.015578079968690872,
- 0.03958145156502724,
- -0.045393507927656174,
- -0.025320569053292274,
- -0.00953743141144514,
- 0.053976234048604965,
- -0.033527906984090805,
- 0.011650105006992817,
- 0.004905042704194784,
- -0.07312919199466705,
- -0.011388913728296757,
- 0.04078015312552452,
- 0.04263240844011307,
- 0.04077422246336937,
- 4.745833995492376e-33,
- -0.02133343555033207,
- -0.0816921666264534,
- -0.036858707666397095,
- 0.08297313004732132,
- 0.03854736313223839,
- 0.031977638602256775,
- -0.06034066528081894,
- -0.09458810091018677,
- -0.09765549749135971,
- -0.009098447859287262,
- 0.016642093658447266,
- -0.020377332344651222,
- -0.0036504557356238365,
- -0.027641206979751587,
- -0.024762393906712532,
- 0.034758470952510834,
- 0.011585553176701069,
- -0.05963382497429848,
- -0.02271159365773201,
- 0.04208767041563988,
- -0.051133979111909866,
- -0.0781184732913971,
- 0.0653281882405281,
- 0.06950453668832779,
- 0.009084089659154415,
- -0.03253074735403061,
- -0.010213752277195454,
- -0.043060917407274246,
- -0.010998917743563652,
- -0.00530968327075243,
- 0.01916317827999592,
- -0.05923403427004814,
- -0.052912816405296326,
- 0.038079969584941864,
- -0.060090597718954086,
- 0.0364522747695446,
- -0.03622851520776749,
- 0.0013215449871495366,
- -0.04628809541463852,
- 0.03931202366948128,
- -0.0006643236265517771,
- 0.023128218948841095,
- 0.050111476331949234,
- -0.008572865277528763,
- -0.008534790948033333,
- 0.010816740803420544,
- 0.07165757566690445,
- 0.026208020746707916,
- -0.06905334442853928,
- 0.036844704300165176,
- -0.0014861429808661342,
- -0.04152323678135872,
- 0.04162820428609848,
- -0.05863942578434944,
- -0.007710644043982029,
- 0.035817284137010574,
- 0.05689449608325958,
- 0.004988170228898525,
- 0.03091278485953808,
- 0.03874044865369797,
- 0.0462002158164978,
- 0.015393118374049664,
- -0.10408639907836914,
- 0.06977587938308716,
- -0.01852617785334587,
- 0.04829440638422966,
- -0.03328005224466324,
- 0.08184481412172318,
- 0.09015762060880661,
- -0.06654414534568787,
- 0.030347131192684174,
- 0.04806988686323166,
- -0.015784895047545433,
- -0.013879429548978806,
- -0.023629743605852127,
- 0.021541275084018707,
- 0.042526088654994965,
- -0.018050208687782288,
- -0.05963130295276642,
- -0.05914883688092232,
- -0.020862581208348274,
- -0.013461712747812271,
- 0.008432007394731045,
- 0.016407564282417297,
- 0.02461850829422474,
- -0.014115097001194954,
- 0.01613777130842209,
- -0.03999433293938637,
- -0.00021336150530260056,
- 0.05261221155524254,
- -0.04411919787526131,
- 0.09915409982204437,
- 0.0027337181381881237,
- -0.06296096742153168,
- -0.050421785563230515,
- -1.2347524780409458e-8,
- -0.04845255985856056,
- -0.015442132949829102,
- 0.09778406471014023,
- 0.010012864135205746,
- 0.027298344299197197,
- 0.0021408533211797476,
- 0.010865154676139355,
- -0.04042544588446617,
- -0.04808645322918892,
- 0.06624715775251389,
- -0.038187481462955475,
- 0.12176200747489929,
- 0.008411258459091187,
- 0.06719554960727692,
- 0.05533812195062637,
- -0.07592266798019409,
- 0.024892928078770638,
- -0.03870302811264992,
- -0.07000131160020828,
- 0.0070487502962350845,
- -0.010427280329167843,
- 0.008720631711184978,
- 0.06396861374378204,
- -0.023289911448955536,
- 0.05895787477493286,
- 0.04972691088914871,
- -0.010810586623847485,
- 0.052386730909347534,
- 0.01986752450466156,
- 0.08703260868787766,
- 0.03266559913754463,
- 0.014343948103487492,
- -0.051647212356328964,
- -0.013980823568999767,
- 0.06901456415653229,
- -0.04784446582198143,
- 0.029675643891096115,
- 0.04379700496792793,
- 0.03390752896666527,
- -0.10457369685173035,
- -0.027781976386904716,
- 0.01110899355262518,
- -0.005407031625509262,
- 0.010954459197819233,
- -0.014268358238041401,
- 0.03497368097305298,
- -0.04482146352529526,
- -0.025222426280379295,
- 0.0014370238641276956,
- 0.04591333866119385,
- 0.01248791255056858,
- 0.04729905351996422,
- 0.03298206627368927,
- 0.05882073566317558,
- 0.11847516894340515,
- -0.03681076318025589,
- 0.022652292624115944,
- -0.020411672070622444,
- -0.05383946746587753,
- 0.028030099347233772,
- 0.10366924852132797,
- 0.07939963787794113,
- 0.04673916473984718,
- -0.052516162395477295
- ]
- },
- {
- "keyword": "philosophy",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.020235396921634674,
- 0.05102075636386871,
- -0.15732139348983765,
- 0.010397760197520256,
- -0.033469058573246,
- 0.012991649098694324,
- 0.08763668686151505,
- -0.027641696855425835,
- 0.07041938602924347,
- 0.012161863967776299,
- 0.012898867949843407,
- 0.054225340485572815,
- -0.028099434450268745,
- -0.01004814449697733,
- -0.015319237485527992,
- 0.01782558299601078,
- -0.02143547311425209,
- -0.04146057739853859,
- -0.05170504003763199,
- -0.039686981588602066,
- -0.11944599449634552,
- 0.04740709066390991,
- -0.002458887407556176,
- 0.03329648822546005,
- -0.07005354017019272,
- 0.04476034641265869,
- 0.036587126553058624,
- -0.05870825797319412,
- 0.01920139230787754,
- -0.1208411231637001,
- -0.013843781314790249,
- 0.0835140123963356,
- 0.010319331660866737,
- -0.06866338849067688,
- -0.03701820224523544,
- 0.03721526265144348,
- 0.045310407876968384,
- 0.05116088315844536,
- 0.06048642843961716,
- 0.005409374833106995,
- 0.004508179146796465,
- -0.04842223972082138,
- -0.04059711471199989,
- -0.019291166216135025,
- -0.009633975103497505,
- -0.002573729958385229,
- 0.0014138645492494106,
- 0.013945640996098518,
- 0.01976381242275238,
- -0.03434531018137932,
- -0.04735179990530014,
- 0.00021379051031544805,
- -0.12819701433181763,
- 0.049267929047346115,
- 0.03520766645669937,
- 0.05088892579078674,
- -0.04088158905506134,
- 0.04163062199950218,
- -0.05372030660510063,
- -0.07402411103248596,
- 0.033556267619132996,
- -0.025195742025971413,
- -0.06926067918539047,
- 0.12713995575904846,
- 0.08400577306747437,
- 0.03058852069079876,
- -0.017714347690343857,
- 0.035572201013565063,
- -0.09405277669429779,
- 0.004997574258595705,
- 0.019903849810361862,
- 0.0017466910649091005,
- 0.02077949047088623,
- -0.008410463109612465,
- 0.017494099214673042,
- -0.059557247906923294,
- 0.024861974641680717,
- -0.054901983588933945,
- 0.04000326618552208,
- -0.00660208472982049,
- 0.0055082254111766815,
- -0.010459310375154018,
- -0.0411406084895134,
- -0.011082706041634083,
- 0.029153093695640564,
- -0.0011542824795469642,
- 0.011058330535888672,
- 0.0010561177041381598,
- 0.04788615554571152,
- 0.010838417336344719,
- 0.02367263287305832,
- 0.0358332134783268,
- -0.008178798481822014,
- 0.04552266001701355,
- -0.04968319833278656,
- 0.07523726671934128,
- -0.03022407554090023,
- -0.04539937898516655,
- -0.049441393464803696,
- 0.21924430131912231,
- 0.06716819107532501,
- 0.04040268436074257,
- -0.02955153025686741,
- 0.0432184673845768,
- 0.07317538559436798,
- -0.039753083139657974,
- -0.012177514843642712,
- -0.032617196440696716,
- 0.0750783383846283,
- 0.003797654528170824,
- -0.031181443482637405,
- 0.023342691361904144,
- -0.0041227699257433414,
- -0.03778966888785362,
- 0.0906110405921936,
- 0.01539673749357462,
- 0.09504150599241257,
- 0.03751150518655777,
- -0.023912902921438217,
- -0.12842093408107758,
- -0.044981203973293304,
- 0.00946373213082552,
- -0.00601450027897954,
- -0.048347413539886475,
- -0.04670053347945213,
- -0.06798099726438522,
- -0.05683748424053192,
- -4.7468970831959006e-33,
- 0.005554724484682083,
- -0.03569081053137779,
- 0.01923678256571293,
- -0.009413203224539757,
- -0.06222483888268471,
- 0.07628776133060455,
- 0.006346741691231728,
- -0.03503638133406639,
- 0.02275545708835125,
- 0.032915424555540085,
- 0.0037560048513114452,
- 0.029523510485887527,
- 0.04559548571705818,
- 0.01520028617233038,
- 0.07073774933815002,
- 0.013026396743953228,
- -0.01086761336773634,
- -0.003040256444364786,
- -0.016287703067064285,
- -0.008882958441972733,
- -0.010870014317333698,
- 0.04710284247994423,
- -0.047490280121564865,
- -0.0171891488134861,
- 0.04891448840498924,
- 0.027359601110219955,
- 0.06560195237398148,
- -0.04348067566752434,
- 0.009749519638717175,
- 0.027028901502490044,
- 0.005911217536777258,
- 0.10713264346122742,
- -0.0732119157910347,
- 0.07801749557256699,
- -0.03012147918343544,
- 0.024127215147018433,
- -0.0200367271900177,
- -0.026128055527806282,
- 0.0709003210067749,
- -0.09780274331569672,
- -0.021944763138890266,
- -0.011016621254384518,
- 0.050613872706890106,
- -0.0748499259352684,
- 0.07165923714637756,
- 0.08114378899335861,
- 0.07033544033765793,
- -0.029011216014623642,
- -0.06660950183868408,
- 0.01968608796596527,
- 0.007523786276578903,
- -0.0511072613298893,
- 0.09185920655727386,
- 0.03398120030760765,
- -0.0008539031841792166,
- -0.021511605009436607,
- 0.013936455361545086,
- 0.051607340574264526,
- 0.00810263678431511,
- -0.09164100885391235,
- -0.02298746630549431,
- 0.026247471570968628,
- -0.030915163457393646,
- 0.003845717292279005,
- 0.013373865745961666,
- 0.02707931213080883,
- -0.13212601840496063,
- -0.08193705230951309,
- 0.025360211730003357,
- -0.01742933690547943,
- 0.021011540666222572,
- 0.014283380471169949,
- -0.0076308343559503555,
- 0.0021031792275607586,
- -0.028192009776830673,
- -0.0038624308072030544,
- -0.04753502830862999,
- -0.04827544838190079,
- -0.0856797844171524,
- 0.1072177141904831,
- -0.032379984855651855,
- -0.049241434782743454,
- -0.0034701311960816383,
- -0.020136412233114243,
- 0.0974450409412384,
- 0.09318279474973679,
- 0.0460822731256485,
- -0.038138143718242645,
- 0.08811306208372116,
- -0.06833911687135696,
- -0.04400079697370529,
- 0.013984166085720062,
- 0.09217735379934311,
- -0.0433264784514904,
- -0.023432070389389992,
- 3.62123193790497e-33,
- 0.045800238847732544,
- -0.06704167276620865,
- 0.009985886514186859,
- 0.07301116734743118,
- 0.09494170546531677,
- 0.00042167294304817915,
- -0.09088345617055893,
- 0.03221718594431877,
- -0.09940541535615921,
- -0.046511877328157425,
- -0.01119742076843977,
- -0.025504648685455322,
- 0.01633739471435547,
- 0.025977175682783127,
- -0.01502598449587822,
- 0.003943466581404209,
- 0.02646574005484581,
- -0.08980891108512878,
- -0.027325347065925598,
- 0.007371502462774515,
- -0.03834492713212967,
- 0.016137363389134407,
- -0.16085712611675262,
- -0.08826016634702682,
- 0.0431659035384655,
- 0.04103846102952957,
- 0.0777735486626625,
- -0.03495663031935692,
- 0.04309636354446411,
- -0.013969375751912594,
- -0.02127494290471077,
- 0.008951053023338318,
- -0.021629806607961655,
- -0.002013775985687971,
- -0.004579531494528055,
- 0.15423841774463654,
- 0.03459358587861061,
- 0.05305028706789017,
- -0.023990798741579056,
- -0.031778059899806976,
- -0.04799826815724373,
- 0.016407210379838943,
- -0.010915856808423996,
- 0.04902014136314392,
- -0.017128875479102135,
- -0.06611964106559753,
- -0.04182206466794014,
- 0.06992319971323013,
- -0.040830131620168686,
- 0.014548586681485176,
- -0.005389308091253042,
- -0.022837981581687927,
- 0.01852945052087307,
- -0.03444616124033928,
- 0.05084950104355812,
- -0.00747132720425725,
- 0.018368292599916458,
- -0.005225352477282286,
- 0.016918854787945747,
- -0.0205068401992321,
- 0.07985667139291763,
- 0.06206459179520607,
- -0.058824583888053894,
- 0.04601552337408066,
- -0.04435906931757927,
- 0.019491394981741905,
- -0.05358776077628136,
- 0.08381742238998413,
- -0.04884662106633186,
- 0.001767874462530017,
- 0.007994203828275204,
- 0.02658134326338768,
- -0.061734940856695175,
- 0.017745159566402435,
- 0.047297388315200806,
- 0.04581621661782265,
- -0.031220724806189537,
- 0.0025648397859185934,
- -0.005700988695025444,
- 0.009768306277692318,
- 0.011132512241601944,
- -0.12352437525987625,
- 0.056057292968034744,
- 0.07563579827547073,
- -0.020097987726330757,
- -0.054622262716293335,
- -0.02813813090324402,
- 0.004695906303822994,
- 0.0011658868752419949,
- -0.0600164458155632,
- -0.005209267605096102,
- 0.023855013772845268,
- -0.028532296419143677,
- 0.03531487658619881,
- -0.07103549689054489,
- -1.1551538392495786e-8,
- 0.039619795978069305,
- -0.02297729067504406,
- 0.02842821553349495,
- -0.0013799931621178985,
- 0.05159078538417816,
- 0.034418415278196335,
- 0.06984688341617584,
- -0.08030959218740463,
- -0.049120787531137466,
- 0.06942128390073776,
- -0.0662200078368187,
- 0.049314096570014954,
- -0.05357692763209343,
- 0.13281601667404175,
- -0.010250701569020748,
- -0.04824119806289673,
- 0.02889966405928135,
- -0.021359693259000778,
- -0.010469438508152962,
- -0.01397891528904438,
- 0.11221307516098022,
- 0.07207956165075302,
- -0.010608958080410957,
- -0.046477094292640686,
- -0.0017890349263325334,
- 0.024465322494506836,
- 0.014298561960458755,
- -0.009642589837312698,
- -0.002059167716652155,
- 0.018526703119277954,
- 0.039636917412281036,
- 0.060194842517375946,
- -0.018909184262156487,
- -0.044709380716085434,
- 0.013480806723237038,
- -0.0064899250864982605,
- 0.00353313353843987,
- 0.012342995963990688,
- 0.03261370211839676,
- -0.020906778052449226,
- -0.0014458699151873589,
- 0.0023996264208108187,
- 0.02317020297050476,
- 0.004294082056730986,
- -0.020598486065864563,
- -0.08309794217348099,
- 0.024840086698532104,
- 0.022574130445718765,
- -0.0392821729183197,
- 0.020860880613327026,
- -0.0031397840939462185,
- 0.02542431466281414,
- 0.06952796131372452,
- -0.06550110131502151,
- 0.012697146274149418,
- -0.011573662050068378,
- 0.0017236815765500069,
- 0.06478589028120041,
- -0.16037441790103912,
- 0.02161346562206745,
- 0.12177751213312149,
- 0.030926983803510666,
- 0.06290268898010254,
- -0.06413552165031433
- ]
- },
- {
- "keyword": "ideology",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.01154216006398201,
- 0.04119417443871498,
- -0.09661933779716492,
- -0.020862657576799393,
- 0.014415114186704159,
- 0.01681828685104847,
- 0.09408614784479141,
- -0.058677975088357925,
- 0.03147689625620842,
- 0.014459057711064816,
- 0.059506066143512726,
- 0.09151259809732437,
- 0.039906639605760574,
- -0.05797106772661209,
- 0.04152831435203552,
- 0.05140974372625351,
- -0.0822426974773407,
- -0.049853984266519547,
- -0.07317782193422318,
- 0.006485210731625557,
- -0.15267470479011536,
- -0.01784985326230526,
- -0.05359015241265297,
- 0.039850249886512756,
- 0.0013789000222459435,
- 0.09494292736053467,
- 0.06509029120206833,
- -0.03734863921999931,
- 0.01145278848707676,
- -0.04042881354689598,
- 0.0036025899462401867,
- 0.0119328573346138,
- 0.005444299895316362,
- 0.007805893663316965,
- -0.0023316070437431335,
- 0.07217809557914734,
- 0.06168998032808304,
- -0.021277539432048798,
- 0.02268335036933422,
- -0.018859103322029114,
- -0.03507031872868538,
- -0.0797375813126564,
- -0.03473290428519249,
- 0.0006232173182070255,
- 0.002428944455459714,
- 0.050818201154470444,
- -0.00560854934155941,
- -0.008410213515162468,
- -0.0259272288531065,
- -0.05715324729681015,
- -0.035429924726486206,
- 0.035718049854040146,
- -0.021189695224165916,
- 0.007645896170288324,
- 0.0006273690378293395,
- -0.08387341350317001,
- 0.02228594571352005,
- 0.03435809537768364,
- -0.03755340725183487,
- -0.04649989679455757,
- 0.11037606000900269,
- -0.029481496661901474,
- -0.06222042068839073,
- 0.057206157594919205,
- 0.10807355493307114,
- 0.01966961845755577,
- -0.004344144370406866,
- 0.05807428061962128,
- -0.06581549346446991,
- -0.03466301038861275,
- 0.018628651276230812,
- 0.015057849697768688,
- 0.028375200927257538,
- 0.03228436037898064,
- -0.001417299616150558,
- -0.14522288739681244,
- 0.04882192611694336,
- -0.024508755654096603,
- 0.03492145612835884,
- 0.003360096598044038,
- 0.03962653502821922,
- 0.10377366840839386,
- 0.024770746007561684,
- 0.02921057865023613,
- 0.0479552298784256,
- -0.008450060151517391,
- -0.031117688864469528,
- 0.015416547656059265,
- 0.011580956168472767,
- 0.057431239634752274,
- -0.05936654284596443,
- -0.012961132451891899,
- 0.06540066748857498,
- -0.022387349978089333,
- 0.020631274208426476,
- 0.046102654188871384,
- 0.009660528041422367,
- -0.09324333816766739,
- -0.034898705780506134,
- 0.23069894313812256,
- -0.014825456775724888,
- 0.04630923643708229,
- -0.07097252458333969,
- 0.03679913654923439,
- 0.019324371591210365,
- -0.10321181267499924,
- -0.03635064512491226,
- 0.018089206889271736,
- -0.07089459896087646,
- 0.02667868882417679,
- -0.06586558371782303,
- 0.015473500825464725,
- -0.03207001835107803,
- 0.003999429289251566,
- 0.05961180105805397,
- 0.026728332042694092,
- 0.010188670828938484,
- 0.06848946213722229,
- -0.005859334021806717,
- -0.04508074373006821,
- -0.032632920891046524,
- -0.05231580510735512,
- 0.0019957488402724266,
- 0.1232575923204422,
- 0.011030381545424461,
- -0.028193039819598198,
- -0.10012245923280716,
- -4.346092080473887e-33,
- -0.019096672534942627,
- -0.006534381303936243,
- -0.05501047521829605,
- 0.03519461676478386,
- -0.08736518770456314,
- 0.022235414013266563,
- 0.0034843673929572105,
- -0.041754357516765594,
- -0.03440170735120773,
- 0.08479849249124527,
- -0.02284989506006241,
- 0.07426995784044266,
- 0.005257018376141787,
- 0.006037825718522072,
- 0.11045528203248978,
- -0.034608520567417145,
- -0.09206681698560715,
- 0.09786108881235123,
- -0.020663542672991753,
- 0.03413219004869461,
- -0.02429347112774849,
- 0.11610197275876999,
- -0.05497220531105995,
- -0.03418252617120743,
- 0.022959990426898003,
- -0.017313113436102867,
- 0.028494713827967644,
- -0.018643934279680252,
- -0.10656370967626572,
- 0.025452816858887672,
- 0.018233684822916985,
- 0.046593401581048965,
- -0.048504192382097244,
- 0.03568752110004425,
- 0.010804255492985249,
- -0.04694000259041786,
- 0.007311651483178139,
- -0.07649686187505722,
- 0.014378069899976254,
- -0.016731958836317062,
- -0.01669403351843357,
- 0.007984922267496586,
- 0.02296191267669201,
- 0.0009254040196537971,
- 0.07059533149003983,
- 0.01876051351428032,
- 0.0268393661826849,
- -0.050515931099653244,
- -0.0675697848200798,
- 0.012516750954091549,
- -0.006678454112261534,
- 0.019110068678855896,
- 0.06501813977956772,
- -0.056884393095970154,
- 0.03837849572300911,
- -0.053884051740169525,
- -0.06561112403869629,
- 0.08737669140100479,
- 0.002997427945956588,
- -0.1175878643989563,
- 0.03818526864051819,
- 0.0088508864864707,
- -0.037052951753139496,
- -0.04914477467536926,
- -0.05519202724099159,
- -0.004583592060953379,
- -0.07705388218164444,
- -0.03777429461479187,
- 0.09643873572349548,
- 0.04119791463017464,
- 0.0359133817255497,
- 0.0230880044400692,
- 0.06532809138298035,
- 0.04373372346162796,
- -0.025575434789061546,
- 0.037971146404743195,
- 0.019293053075671196,
- -0.03678058087825775,
- -0.07953734695911407,
- 0.014634116552770138,
- -0.005326705053448677,
- -0.012579983100295067,
- 0.038441047072410583,
- 0.002658515004441142,
- 0.07547734677791595,
- 0.03642046079039574,
- 0.04279951751232147,
- -0.029666829854249954,
- 0.09350676834583282,
- 0.004378679674118757,
- -0.10931713879108429,
- -0.012677119113504887,
- -0.027155574411153793,
- -0.07175952941179276,
- -0.04370531812310219,
- 3.6074882048919495e-33,
- 0.042856816202402115,
- -0.04992782324552536,
- -0.04671015590429306,
- -0.0033871163614094257,
- 0.05885172635316849,
- 0.039816904813051224,
- 0.012057562358677387,
- 0.009846661239862442,
- -0.04505016282200813,
- 0.02467435970902443,
- 0.008685932494699955,
- -0.0567169114947319,
- 0.001381194801069796,
- 0.05380529165267944,
- -0.022460786625742912,
- -0.06916018575429916,
- -0.021842243149876595,
- -0.02626577392220497,
- -0.002978607313707471,
- -0.043970368802547455,
- -0.021250395104289055,
- -0.014938781037926674,
- -0.05180047079920769,
- -0.0006812865030951798,
- 0.0019267856841906905,
- 0.062489110976457596,
- -0.015780052170157433,
- -0.025160837918519974,
- 0.009561260230839252,
- -0.06469357758760452,
- 0.007537210825830698,
- -0.011389047838747501,
- -0.0058867125771939754,
- -0.017195075750350952,
- 0.06009500101208687,
- 0.09454815834760666,
- -0.055214572697877884,
- 0.08730756491422653,
- -0.022571034729480743,
- -0.025841793045401573,
- -0.0511099137365818,
- -0.06554258614778519,
- -0.07355884462594986,
- 0.06480326503515244,
- -0.04354756325483322,
- -0.00718660606071353,
- -0.010740813799202442,
- 0.05973542854189873,
- 0.11952130496501923,
- 0.0006013508536852896,
- -0.11377505958080292,
- 0.026062417775392532,
- 0.05659659206867218,
- -0.04717199504375458,
- 0.03058207966387272,
- -0.04272660240530968,
- 0.024871716275811195,
- 0.008571919985115528,
- -0.06703530251979828,
- 0.05656030401587486,
- 0.0875488892197609,
- 0.01324190478771925,
- 0.0019004428759217262,
- 0.05258959159255028,
- -0.02287052944302559,
- -0.004544837400317192,
- -0.04183237627148628,
- 0.03391630947589874,
- 0.05431213229894638,
- 0.05478028953075409,
- 0.016260085627436638,
- -0.016918614506721497,
- -0.06132418289780617,
- 0.06523358076810837,
- -0.006313296500593424,
- -0.03354868292808533,
- -0.03459838777780533,
- 0.058301664888858795,
- 0.018888721242547035,
- 0.01710744947195053,
- 0.005770365707576275,
- -0.09063872694969177,
- 0.013004987500607967,
- 0.00758273433893919,
- -0.03945435583591461,
- -0.021023817360401154,
- -0.03260817006230354,
- 0.039642464369535446,
- 0.042876604944467545,
- -0.034268997609615326,
- 0.023313116282224655,
- -0.04208016395568848,
- -0.08225218206644058,
- 0.0656309425830841,
- -0.017363186925649643,
- -1.1878648287222404e-8,
- 0.05233054980635643,
- -0.03809700906276703,
- 0.08431897312402725,
- 0.0061357151716947556,
- 0.02864895388484001,
- 0.09264601022005081,
- 0.027245471253991127,
- -0.11875899136066437,
- -0.050416260957717896,
- 0.02875286340713501,
- -0.05139092355966568,
- 0.0194204393774271,
- -0.0645706057548523,
- 0.07352777570486069,
- -0.0038312284741550684,
- -0.07648435235023499,
- -0.00840085744857788,
- -0.039727505296468735,
- -0.031613223254680634,
- 0.04653029516339302,
- 0.0784490555524826,
- 0.011793732643127441,
- 0.003222968429327011,
- -0.05594451725482941,
- -0.026356248185038567,
- 0.0024133739061653614,
- -0.04444791004061699,
- 0.02993790991604328,
- 0.02094006910920143,
- 0.04940046742558479,
- 0.034295618534088135,
- 0.024797579273581505,
- -0.08849094808101654,
- -0.0005716769373975694,
- -0.06268946826457977,
- 0.012157207354903221,
- -0.001723098917864263,
- 0.0343240424990654,
- 0.07395840436220169,
- -0.0347277894616127,
- 0.01507531013339758,
- 0.01559841725975275,
- 0.06436999887228012,
- -0.03823091462254524,
- 0.02743525244295597,
- 0.03152995929121971,
- -0.023927271366119385,
- 0.056394413113594055,
- -0.007303175050765276,
- 0.04149932414293289,
- -0.03557709977030754,
- 0.07069718837738037,
- -0.0012748859589919448,
- 0.036959387362003326,
- 0.025016192346811295,
- -0.010760697536170483,
- 0.00034293479984626174,
- 0.04506078362464905,
- -0.06786780804395676,
- 0.02717767097055912,
- 0.11353536695241928,
- 0.050181858241558075,
- 0.123984694480896,
- -0.10444939881563187
- ]
- },
- {
- "keyword": "belief",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.004710462875664234,
- 0.024777540937066078,
- -0.032277390360832214,
- 0.05258536711335182,
- -0.004821922164410353,
- 0.045008689165115356,
- 0.10792597383260727,
- 0.0003754971257876605,
- 0.10792534798383713,
- 0.021328210830688477,
- 0.04842458665370941,
- 0.02174365147948265,
- 0.05504366010427475,
- -0.0032051177695393562,
- -0.02074274607002735,
- 0.010336670093238354,
- -0.06223370507359505,
- 0.000940427475143224,
- -0.12191449105739594,
- -0.05286264047026634,
- -0.13254575431346893,
- -0.07437649369239807,
- -0.06868427246809006,
- 0.033275965601205826,
- -0.022702135145664215,
- 0.11623924225568771,
- 0.020126648247241974,
- -0.027472566813230515,
- 0.07209976762533188,
- -0.07297469675540924,
- -0.004407703410834074,
- -0.006661628372967243,
- 0.05796564370393753,
- -0.04452674835920334,
- -0.020685680210590363,
- 0.017580382525920868,
- 0.01679321378469467,
- 0.011061382479965687,
- -0.03306359425187111,
- -0.005583698395639658,
- -0.004740238189697266,
- -0.0734170600771904,
- 0.02820422314107418,
- -0.06641746312379837,
- 0.006675735116004944,
- 0.039118897169828415,
- 0.05768027529120445,
- 0.040726978331804276,
- -0.00243200920522213,
- -0.00783501286059618,
- -0.07538145035505295,
- 0.02145538292825222,
- -0.02156410738825798,
- -0.049776840955019,
- -0.04884785786271095,
- -0.08691094070672989,
- -0.032407231628894806,
- 0.008414865471422672,
- 0.053926099091768265,
- -0.04903506860136986,
- 0.13520410656929016,
- -0.02158457785844803,
- -0.08132368326187134,
- 0.04799804463982582,
- 0.057349491864442825,
- 0.007052509114146233,
- -0.012607435695827007,
- 0.032081056386232376,
- -0.04173627495765686,
- -0.047301631420850754,
- 0.027080010622739792,
- 0.07602541893720627,
- -0.02309470996260643,
- 0.032674018293619156,
- 0.04371550306677818,
- -0.08658584952354431,
- 0.0011894282652065158,
- -0.11453299969434738,
- 0.04942005127668381,
- 0.0028415462002158165,
- 0.041099097579717636,
- 0.037070974707603455,
- 0.009757151827216148,
- 0.02455432526767254,
- -0.006935092154890299,
- 0.00928471889346838,
- 0.026780202984809875,
- 0.02861770987510681,
- -0.06541190296411514,
- 0.043918099254369736,
- -0.024891169741749763,
- -0.058096323162317276,
- -0.07941310852766037,
- 0.02140742726624012,
- -0.0831136703491211,
- 0.06532935053110123,
- -0.04031098261475563,
- -0.08369199186563492,
- -0.03935612738132477,
- 0.24228039383888245,
- -0.038880303502082825,
- 0.04434668645262718,
- -0.04739423096179962,
- 0.03352676331996918,
- 0.06723743677139282,
- -0.039696577936410904,
- -0.09292872995138168,
- -0.03342217579483986,
- 0.00032939616357907653,
- 0.049731094390153885,
- -0.08880637586116791,
- -0.014715798199176788,
- -0.12423403561115265,
- 0.0616198368370533,
- 0.0015405917074531317,
- 0.07432755827903748,
- 0.03566073253750801,
- 0.02615703083574772,
- -0.07937914878129959,
- -0.07947205752134323,
- -0.004414269234985113,
- 0.03156645968556404,
- 0.09981343150138855,
- 0.0592455230653286,
- 0.03267752751708031,
- -0.10516642779111862,
- -0.03742389753460884,
- -4.920470946380304e-33,
- 0.009832294657826424,
- -0.045104581862688065,
- 0.028709180653095245,
- -0.062023889273405075,
- 0.01884477771818638,
- 0.07487368583679199,
- -0.030896998941898346,
- -0.028129100799560547,
- -0.008012909442186356,
- 0.007491039577871561,
- -0.007175568491220474,
- 0.026756886392831802,
- 0.00874276552349329,
- -0.03712960705161095,
- 0.09225326776504517,
- 0.0018008153419941664,
- -0.08637358248233795,
- 0.011695087887346745,
- -0.01679082214832306,
- -0.0046217977069318295,
- -0.05970684066414833,
- 0.05083240196108818,
- -0.02347811870276928,
- -0.013589167967438698,
- -0.007114446721971035,
- -0.03104277141392231,
- 0.08523144572973251,
- 0.030547715723514557,
- -0.02420109137892723,
- 0.02711610123515129,
- -0.004427898675203323,
- 0.04060550034046173,
- -0.07036516070365906,
- -0.018017709255218506,
- -0.03851949796080589,
- -0.06480714678764343,
- 0.03293965756893158,
- -0.07857782393693924,
- 0.06870032846927643,
- -0.0919446125626564,
- 0.019067935645580292,
- -0.011362574994564056,
- -0.03345143422484398,
- -0.01790052279829979,
- 0.047468189150094986,
- 0.03628046065568924,
- 0.04141874983906746,
- -0.06604556739330292,
- -0.10922005027532578,
- 0.03934226557612419,
- 0.02428540401160717,
- -0.009176564402878284,
- 0.03590448200702667,
- -0.10009052604436874,
- -0.04149097576737404,
- -0.013565761037170887,
- -0.0017172149382531643,
- 0.08942091464996338,
- 0.029766036197543144,
- -0.04975608363747597,
- 0.028394466266036034,
- -0.007710315752774477,
- 0.008473316207528114,
- -0.009073912166059017,
- -0.0683952122926712,
- 0.010079890489578247,
- -0.025536248460412025,
- -0.08431916683912277,
- 0.01503351517021656,
- 0.005636635236442089,
- -0.01106121577322483,
- -0.005679020658135414,
- -0.021419161930680275,
- 0.011407685466110706,
- -0.0031623593531548977,
- -0.034800369292497635,
- -0.007704723160713911,
- 0.033673301339149475,
- -0.007329553831368685,
- 0.01965581811964512,
- -0.041744865477085114,
- -0.030768878757953644,
- -0.019005153328180313,
- 0.07218661904335022,
- 0.0235288105905056,
- 0.01658233255147934,
- -0.020930582657456398,
- -0.052846625447273254,
- 0.016698863357305527,
- -0.039843130856752396,
- -0.005536951590329409,
- 0.024624476209282875,
- 0.07751970738172531,
- -0.037167903035879135,
- -0.02559821866452694,
- 4.224933877734634e-33,
- -0.024435417726635933,
- -0.0068398090079426765,
- 0.056400686502456665,
- 0.08062559366226196,
- 0.008356139063835144,
- -0.014058509841561317,
- -0.02086743898689747,
- -0.008796918205916882,
- 0.034526415169239044,
- 0.038612451404333115,
- 0.028465647250413895,
- -0.030310451984405518,
- 0.03210033103823662,
- 0.04849455878138542,
- -0.0838189646601677,
- -0.05073804035782814,
- 0.011328868567943573,
- 0.030631864443421364,
- 0.004831423982977867,
- -0.022598424926400185,
- 0.017111435532569885,
- -0.03993585705757141,
- -0.06984509527683258,
- -0.012239660136401653,
- 0.005844836588948965,
- 0.05971597135066986,
- 0.057780660688877106,
- 0.001703927991911769,
- 0.01667420007288456,
- -0.031028199940919876,
- 0.01782674342393875,
- -0.004450556356459856,
- -0.04795181751251221,
- -0.006385349202901125,
- -0.04340949282050133,
- 0.05112878978252411,
- 0.05799107626080513,
- 0.10709307342767715,
- 0.012374898418784142,
- -0.04118737950921059,
- 0.02354832924902439,
- -0.033266425132751465,
- -0.073897585272789,
- 0.029565757140517235,
- 0.021672414615750313,
- 0.017967436462640762,
- 0.11561735719442368,
- 0.11847107112407684,
- 0.09367278218269348,
- -0.007430534344166517,
- -0.08010933548212051,
- 0.01339180488139391,
- -0.007862896658480167,
- 0.029528599232435226,
- 0.01474902406334877,
- -0.0035571125335991383,
- -0.05045859143137932,
- -0.02913067117333412,
- -0.03069656528532505,
- -0.009800911881029606,
- 0.06863023340702057,
- 0.0764923021197319,
- 0.02494773268699646,
- 0.10090077668428421,
- 0.0007258447003550828,
- 0.03351495414972305,
- -0.03211945667862892,
- 0.04545190930366516,
- 0.029643181711435318,
- 0.025618502870202065,
- 0.029433686286211014,
- 0.0005682796472683549,
- -0.04495513439178467,
- 0.017340531572699547,
- 0.04632897302508354,
- -0.01373426616191864,
- -0.09028639644384384,
- -0.012499975040555,
- 0.04482939466834068,
- 0.004607153125107288,
- -0.0671594887971878,
- -0.0664757490158081,
- 0.09496992826461792,
- 0.019082076847553253,
- 0.01580127887427807,
- -0.05829242616891861,
- 0.0010731042129918933,
- -0.040849752724170685,
- 0.09153719246387482,
- 0.004162621218711138,
- -0.026165252551436424,
- 0.027762116864323616,
- -0.03566575422883034,
- 0.014508888125419617,
- -0.06190755218267441,
- -1.2066474042171649e-8,
- 0.07262924313545227,
- -0.08772153407335281,
- 0.06664669513702393,
- -0.03589445725083351,
- 0.10377167165279388,
- 0.07627956569194794,
- 0.025167172774672508,
- -0.055636707693338394,
- -0.057205408811569214,
- 0.06970736384391785,
- 0.025774087756872177,
- 0.0222330242395401,
- -0.08738090842962265,
- 0.02740391157567501,
- 0.05723191425204277,
- -0.011954215355217457,
- -0.019713174551725388,
- -0.05881333351135254,
- -0.012841682881116867,
- 0.026067592203617096,
- 0.09267641603946686,
- 0.02448372356593609,
- 0.021749034523963928,
- -0.003758576698601246,
- 0.022623494267463684,
- -0.013828585855662823,
- -0.09560038149356842,
- 0.08837015181779861,
- -0.00795375183224678,
- 0.019888989627361298,
- 0.06035991013050079,
- 0.015315748751163483,
- -0.04627656191587448,
- -0.005689163692295551,
- 0.024028563871979713,
- -0.05747496709227562,
- 0.0018007229082286358,
- 0.012970555573701859,
- 0.06701604276895523,
- -0.07694149017333984,
- 0.0678488090634346,
- 0.07719332724809647,
- -0.004243155941367149,
- 0.02010587975382805,
- -0.04132882133126259,
- 0.02920648269355297,
- 0.027886319905519485,
- -0.02852512337267399,
- -0.021123459562659264,
- 0.022330256178975105,
- -0.006463367957621813,
- 0.06022070720791817,
- 0.012512854300439358,
- 0.07579854130744934,
- -0.008015208877623081,
- 0.08448728919029236,
- -0.033923596143722534,
- 0.04292379319667816,
- -0.08199328929185867,
- -0.04916132614016533,
- 0.14385126531124115,
- 0.032037559896707535,
- 0.025136224925518036,
- 0.04061240330338478
- ]
- },
- {
- "keyword": "doctrine",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.02684982307255268,
- 0.09387394040822983,
- -0.05019953101873398,
- -0.006365261040627956,
- 0.021903691813349724,
- 0.04603089019656181,
- 0.02512289397418499,
- -0.0503939725458622,
- 0.05992427095770836,
- 0.03782648965716362,
- 0.03797393664717674,
- 0.015863562002778053,
- 0.001034627784974873,
- -0.08310432732105255,
- 0.04342805966734886,
- 0.08675599098205566,
- -0.07932048290967941,
- 0.026613591238856316,
- -0.01708294078707695,
- -0.01881610043346882,
- -0.09652481973171234,
- 0.05840465426445007,
- -0.03676215186715126,
- 0.031904030591249466,
- -0.0786651149392128,
- 0.07203736156225204,
- 0.03384687379002571,
- -0.042718760669231415,
- 0.04316430911421776,
- -0.06581956893205643,
- -0.026122288778424263,
- 0.12081509083509445,
- -0.06137625873088837,
- 0.007033758331090212,
- -0.05801044777035713,
- 0.06245234236121178,
- 0.043273359537124634,
- -0.023744313046336174,
- 0.002616461832076311,
- 0.05437328293919563,
- -0.04065704718232155,
- -0.091040700674057,
- -0.026600664481520653,
- -0.025284569710493088,
- -0.06800242513418198,
- -0.0290776826441288,
- -0.04517286643385887,
- 0.06481760740280151,
- 0.027943134307861328,
- -0.07619331777095795,
- -0.017803780734539032,
- -0.006157771218568087,
- -0.00046826049219816923,
- 0.04959319159388542,
- -0.004757320042699575,
- 0.043365273624658585,
- 0.02131938561797142,
- 0.051844142377376556,
- -0.0437433123588562,
- -0.018079115077853203,
- 0.01689196191728115,
- 0.0491560623049736,
- -0.07915375381708145,
- 0.060876429080963135,
- 0.06927631050348282,
- 0.004928675480186939,
- 0.06652764976024628,
- 0.012165934778749943,
- -0.07381081581115723,
- -0.03756672143936157,
- -0.015383119694888592,
- -0.004847852513194084,
- 0.004869357217103243,
- -0.026848625391721725,
- -0.06538792699575424,
- -0.02731526643037796,
- 0.021154996007680893,
- -0.03189864009618759,
- 0.022566869854927063,
- -0.05902552977204323,
- 0.022725027054548264,
- 0.15516507625579834,
- 0.03916381299495697,
- -0.080586738884449,
- -0.0032371527049690485,
- 0.0639762356877327,
- -0.0048715961165726185,
- -0.011074752546846867,
- 0.018780604004859924,
- 0.03439962863922119,
- 0.004543466493487358,
- -0.08113603293895721,
- 0.05757018178701401,
- 0.032779887318611145,
- -0.011354115791618824,
- 0.050061218440532684,
- 0.028170829638838768,
- -0.11975526064634323,
- -0.023146072402596474,
- 0.23085305094718933,
- 0.005109264515340328,
- 0.07350046932697296,
- -0.10140091180801392,
- 0.015973469242453575,
- -0.004734840709716082,
- -0.03336598724126816,
- -0.08899011462926865,
- -0.02066868357360363,
- -0.034361086785793304,
- 0.022112451493740082,
- -0.033648379147052765,
- 0.001440587337128818,
- -0.07969862967729568,
- -0.07047678530216217,
- 0.024416543543338776,
- -0.01850259304046631,
- 0.030054111033678055,
- 0.03030850738286972,
- -0.04651423916220665,
- -0.06173741817474365,
- 0.01604599505662918,
- 0.008204224519431591,
- -0.07139589637517929,
- 0.05718863755464554,
- 0.0002984799211844802,
- -0.024325404316186905,
- -0.004321619868278503,
- -3.9066783331411e-33,
- 0.07059528678655624,
- -0.004015000537037849,
- 0.043300360441207886,
- -0.002464733552187681,
- -0.08574340492486954,
- 0.09764529764652252,
- 0.010793971829116344,
- 0.06871138513088226,
- -0.039943333715200424,
- 0.020828085020184517,
- -0.06764902174472809,
- -0.031265757977962494,
- -0.036946579813957214,
- -0.036501694470644,
- 0.07034798711538315,
- -0.0381852351129055,
- -0.05011410266160965,
- 0.03774907439947128,
- 0.07713602483272552,
- -0.00334747857414186,
- -0.06075688451528549,
- 0.08155408501625061,
- -0.059766143560409546,
- -0.007800454273819923,
- 0.03300369158387184,
- 0.03919712081551552,
- 0.008401285856962204,
- 0.005989137105643749,
- -0.019116083160042763,
- -0.005587361752986908,
- 0.020341794937849045,
- -0.010243703611195087,
- -0.005334889516234398,
- 0.04085167497396469,
- 0.0026570388581603765,
- 0.010789960622787476,
- -0.05018286406993866,
- -0.027982128784060478,
- -0.014984438195824623,
- 0.0003992075507994741,
- -0.06869642436504364,
- 0.0411045178771019,
- 0.08283299952745438,
- -0.050310585647821426,
- 0.03503678739070892,
- 0.026359451934695244,
- -0.0005892391782253981,
- -0.10411236435174942,
- -0.016546878963708878,
- 0.014608084224164486,
- -0.003986241761595011,
- 0.03406224772334099,
- 0.08461090177297592,
- -0.04040364921092987,
- 0.014540296979248524,
- -0.03597192093729973,
- -0.03106740117073059,
- 0.07431229203939438,
- -0.010821123607456684,
- -0.028027577325701714,
- 0.008815099485218525,
- -0.03303253650665283,
- 0.0017839139327406883,
- -0.03120245225727558,
- -0.04722399264574051,
- 0.01641659066081047,
- -0.1144661009311676,
- -0.05339054763317108,
- 0.0853627398610115,
- -0.02635851316154003,
- -0.0497245192527771,
- 0.051542531698942184,
- 0.07280416041612625,
- 0.04404132068157196,
- 0.06976812332868576,
- -0.04793762043118477,
- 0.08541030436754227,
- -0.05655895173549652,
- -0.05003412812948227,
- -0.06706279516220093,
- -0.05945094674825668,
- -0.04654255509376526,
- 0.019690848886966705,
- 0.07107461243867874,
- 0.08041318506002426,
- 0.06456992030143738,
- -0.025839881971478462,
- -0.06319967657327652,
- -0.019179053604602814,
- 0.032617006450891495,
- -0.030757201835513115,
- 0.03612213581800461,
- 0.018250228837132454,
- 0.005369226913899183,
- 0.020931830629706383,
- 2.0990574870603116e-33,
- 0.02948557771742344,
- -0.05698670819401741,
- -0.0099862702190876,
- -0.022866813465952873,
- 0.028464630246162415,
- -0.00574113754555583,
- -0.056740276515483856,
- 0.05737454444169998,
- -0.13840323686599731,
- -0.05606508627533913,
- -0.056417763233184814,
- 0.012253565713763237,
- 0.008906298317015171,
- 0.01940458081662655,
- -0.032463207840919495,
- 0.012084278278052807,
- 0.00038229976780712605,
- -0.0276039931923151,
- 0.013807597570121288,
- 0.06732076406478882,
- -0.02595420926809311,
- 0.001932894461788237,
- -0.013719693757593632,
- -0.02208787016570568,
- 0.031809285283088684,
- -0.015617544762790203,
- 0.10221005976200104,
- -0.027728253975510597,
- -0.0026643474120646715,
- -0.03468460962176323,
- 0.08379286527633667,
- -0.0910617932677269,
- -0.14485017955303192,
- 0.017986776307225227,
- -0.003846096573397517,
- -0.005674011539667845,
- 0.014465365558862686,
- -0.0057182698510587215,
- -0.07324179261922836,
- -0.010202934965491295,
- -0.004674417898058891,
- 0.008591367863118649,
- -0.0216132253408432,
- 0.03685562685132027,
- -0.06934144347906113,
- -0.002024515997618437,
- 0.0042916289530694485,
- 0.044776223599910736,
- 0.04293682053685188,
- -0.000254737475188449,
- -0.11172523349523544,
- 0.0098481560125947,
- 0.022228671237826347,
- 0.01413595862686634,
- 0.025346726179122925,
- -0.055712729692459106,
- -0.032177966088056564,
- -0.05539169907569885,
- -0.020664721727371216,
- 0.018432900309562683,
- 0.04868300259113312,
- 0.09290845692157745,
- -0.10382266342639923,
- 0.06320313364267349,
- 0.022109730169177055,
- 0.046510450541973114,
- -0.03573089838027954,
- 0.11773794889450073,
- 0.023080721497535706,
- 0.024869946762919426,
- -0.024999147281050682,
- -0.06608683615922928,
- -0.08090541511774063,
- 0.07064580172300339,
- 0.0799563080072403,
- -0.041845932602882385,
- 0.009481383487582207,
- -0.10982658714056015,
- -0.045856162905693054,
- 0.017468655481934547,
- 0.03665662556886673,
- -0.13407999277114868,
- -0.04547172412276268,
- 0.057204797863960266,
- 0.011638971976935863,
- 0.0013754396932199597,
- 0.074808768928051,
- -0.025202348828315735,
- -0.031323593109846115,
- 0.04471356421709061,
- 0.013906752690672874,
- 0.08655983954668045,
- -0.03515547141432762,
- 0.06634122133255005,
- 0.019756050780415535,
- -1.067316723890599e-8,
- 0.040346693247556686,
- -0.038662537932395935,
- 0.053680773824453354,
- -0.05414767935872078,
- 0.04012665897607803,
- -0.042725637555122375,
- 0.08226276934146881,
- -0.02105540595948696,
- -0.053326524794101715,
- 0.031538791954517365,
- -0.062124788761138916,
- 0.060440145432949066,
- -0.01763889193534851,
- 0.06495772302150726,
- 0.03239012137055397,
- -0.04542465880513191,
- 0.0021466980688273907,
- -0.026997679844498634,
- -0.04834411293268204,
- -0.0031315332744270563,
- -0.012631791643798351,
- 0.023005906492471695,
- 0.004479530267417431,
- -0.10416286438703537,
- 0.011670579202473164,
- 0.022606175392866135,
- 0.03532801568508148,
- 0.06465252488851547,
- 0.05919095128774643,
- 0.09011025726795197,
- 0.05260232463479042,
- 0.041958749294281006,
- -0.07846938073635101,
- 0.04396863654255867,
- -0.0022609925363212824,
- 0.023590439930558205,
- 0.0033042444847524166,
- 0.017119789496064186,
- 0.02579500898718834,
- -0.09008211642503738,
- 0.021227996796369553,
- 0.026669327169656754,
- 0.044453829526901245,
- 0.036238718777894974,
- 0.036902591586112976,
- -0.04378903657197952,
- 0.07494204491376877,
- 0.02685602754354477,
- 0.04361599683761597,
- -0.0259279515594244,
- 0.01902967318892479,
- 0.05081282556056976,
- 0.04063965380191803,
- 0.027212340384721756,
- 0.04983945190906525,
- -0.023955630138516426,
- 0.03490471467375755,
- 0.07177913933992386,
- -0.043978214263916016,
- -0.02349633164703846,
- 0.0620240643620491,
- -0.031618934124708176,
- 0.061271194368600845,
- -0.025049474090337753
- ]
- },
- {
- "keyword": "topic",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.002582661109045148,
- 0.03998703882098198,
- -0.07767090946435928,
- 0.029294012114405632,
- 0.0245208777487278,
- 0.027760589495301247,
- 0.1669462025165558,
- 0.03358937427401543,
- -0.04726187512278557,
- 0.008799135684967041,
- -0.004961908329278231,
- 0.06727579981088638,
- -0.024041850119829178,
- 0.029810234904289246,
- 0.045418791472911835,
- 0.00967247411608696,
- 0.036747273057699203,
- -0.03751860186457634,
- -0.10887251049280167,
- 0.02837640978395939,
- 0.0250720027834177,
- 0.011190468445420265,
- 0.03876896947622299,
- 0.02766033262014389,
- -0.03659489378333092,
- 0.048486847430467606,
- 0.0007384976488538086,
- 0.033737342804670334,
- -0.022893181070685387,
- -0.01619895175099373,
- -0.06681416183710098,
- 0.054231058806180954,
- 0.04403340071439743,
- 0.01848090998828411,
- -0.0374608039855957,
- -0.009192255325615406,
- -0.007567667402327061,
- 0.014359947293996811,
- 0.04340821132063866,
- 0.015524743124842644,
- 0.02005113661289215,
- -0.032666802406311035,
- -0.019259776920080185,
- -0.05261630937457085,
- 0.010176053270697594,
- -0.025837605819106102,
- 0.01228452567011118,
- -0.03271389380097389,
- -0.009338806383311749,
- 0.022373301908373833,
- -0.014446529559791088,
- -0.06591199338436127,
- -0.03724270686507225,
- 0.0021355501376092434,
- -0.06442173570394516,
- 0.0009316844516433775,
- 0.014378170482814312,
- 0.017064426094293594,
- 0.04403967782855034,
- 0.0014137817779555917,
- 0.02609378844499588,
- 0.016060711815953255,
- -0.08099638670682907,
- 0.007366255857050419,
- 0.0528581328690052,
- 0.010235453024506569,
- -0.01446672435849905,
- 0.06409098953008652,
- -0.08491075783967972,
- -0.025747336447238922,
- -0.011000219732522964,
- 0.018976090475916862,
- -0.010549737140536308,
- 0.05423910543322563,
- 0.011546334251761436,
- -0.06895903497934341,
- -0.04551255330443382,
- -0.04232849180698395,
- 0.04610241577029228,
- -0.07298742234706879,
- -0.031338710337877274,
- -0.043670155107975006,
- -0.005668285768479109,
- 0.030465861782431602,
- 0.014668535441160202,
- -0.028028611093759537,
- -0.039876632392406464,
- -0.0717088133096695,
- -0.11195188760757446,
- 0.004918447695672512,
- 0.004560573026537895,
- -0.0064726886339485645,
- 0.08699127286672592,
- -0.012210370041429996,
- -0.0038189126644283533,
- 0.03968193009495735,
- 0.03575539216399193,
- -0.019612867385149002,
- 0.017079105600714684,
- 0.22506210207939148,
- 0.016803359612822533,
- -0.01664307899773121,
- -0.03793318197131157,
- 0.016718603670597076,
- -0.009540725499391556,
- -0.05581073835492134,
- -0.037655409425497055,
- 0.019873421639204025,
- -0.005399688612669706,
- -0.06330060213804245,
- -0.027549806982278824,
- -0.007937213405966759,
- -0.01059416402131319,
- 0.04329567030072212,
- 0.09380966424942017,
- -0.0510067343711853,
- 0.11481993645429611,
- 0.019346142187714577,
- 0.01319216750562191,
- -0.011810509487986565,
- 0.0080105597153306,
- -0.039772551506757736,
- -0.023230893537402153,
- -0.0381474569439888,
- -0.04233026131987572,
- -0.06435388326644897,
- -0.06276267021894455,
- -5.897257895429669e-33,
- 0.006346086505800486,
- -0.11256609112024307,
- 0.02790146693587303,
- 0.11285129934549332,
- 0.018716273829340935,
- -0.0029171358328312635,
- -0.005619239527732134,
- 0.0013618184020742774,
- 0.03226419910788536,
- -0.013254760764539242,
- -0.017581366002559662,
- -0.051944538950920105,
- -0.08005311340093613,
- -0.07467351853847504,
- 0.0880090668797493,
- -0.08938642591238022,
- -0.09510566294193268,
- 0.02094331569969654,
- -0.08763650804758072,
- -0.024178821593523026,
- -0.03446928784251213,
- 0.05904347822070122,
- -0.00621243380010128,
- 0.01426857803016901,
- -0.0178060345351696,
- 0.0016940234927460551,
- -0.005456588696688414,
- -0.06557193398475647,
- 0.04174250736832619,
- 0.029190560802817345,
- 0.0010319399880245328,
- 0.06711655110120773,
- -0.011915448121726513,
- -0.093419648706913,
- 0.026913825422525406,
- 0.060072772204875946,
- 0.05466843023896217,
- -0.046408168971538544,
- -0.023727713152766228,
- -0.059932149946689606,
- -0.07663008570671082,
- 0.013906396925449371,
- 0.01657991297543049,
- -0.06890410929918289,
- 0.04647153243422508,
- 0.039719872176647186,
- 0.08815080672502518,
- 0.01690179854631424,
- 0.02633916586637497,
- 0.027434147894382477,
- 0.008894049562513828,
- -0.024404797703027725,
- -0.047865938395261765,
- -0.021613791584968567,
- 0.0025495763402432203,
- 0.026768002659082413,
- -0.01802661269903183,
- -0.051636017858982086,
- -0.01168267522007227,
- 0.05179736390709877,
- 0.027446823194622993,
- 0.08300717175006866,
- 0.012417522259056568,
- -0.08300437033176422,
- -0.03781580552458763,
- 0.0008021692628972232,
- -0.002025968860834837,
- -0.025911914184689522,
- 0.03053942695260048,
- -0.08510102331638336,
- -0.021562816575169563,
- 0.024634454399347305,
- 0.052243612706661224,
- -0.07551068067550659,
- -0.03193036839365959,
- 0.06423871964216232,
- 0.0178964976221323,
- 0.06529611349105835,
- -0.06303485482931137,
- 0.021379737183451653,
- -0.05882960557937622,
- -0.029909327626228333,
- 0.008980082347989082,
- -0.05751403048634529,
- -0.04402080550789833,
- -0.020883215591311455,
- 0.06441409885883331,
- -0.05458546057343483,
- 0.026242082938551903,
- -0.031463366001844406,
- -0.00482972664758563,
- -0.014623604714870453,
- 0.046201322227716446,
- 0.002843177644535899,
- 0.05158473923802376,
- 3.3094805504913295e-33,
- -0.06303882598876953,
- -0.08084394037723541,
- -0.06552569568157196,
- 0.04905885085463524,
- 0.1888594627380371,
- -0.040768470615148544,
- -0.04503139853477478,
- 0.009922455996274948,
- 0.0038955900818109512,
- 0.06355537474155426,
- -0.08001861721277237,
- -0.04379766806960106,
- 0.042009200900793076,
- 0.059064388275146484,
- -0.00789759960025549,
- -0.01229340210556984,
- 0.017299145460128784,
- -0.03949183598160744,
- -0.01027759350836277,
- 0.03276053071022034,
- -0.10833515971899033,
- 0.015062997117638588,
- -0.074995256960392,
- -0.07997153699398041,
- -0.05880217254161835,
- 0.05108681693673134,
- 0.04591858386993408,
- -0.031307417899370193,
- -0.010907278396189213,
- -0.0013715969398617744,
- -0.0002397180360276252,
- -0.018106656149029732,
- -0.07151379436254501,
- 0.033300548791885376,
- -0.02754429541528225,
- 0.0993645191192627,
- 0.008134404197335243,
- 0.002598194871097803,
- 0.03966899588704109,
- 0.0704922005534172,
- 0.11736839264631271,
- -0.04061365872621536,
- -0.021995382383465767,
- 0.03559650108218193,
- -0.057767920196056366,
- -0.029979195445775986,
- -0.015969116240739822,
- 0.060896821320056915,
- 0.057883765548467636,
- 0.05712071433663368,
- -0.02038549818098545,
- 0.030163399875164032,
- 0.04662583768367767,
- -0.03321820870041847,
- -0.04304051399230957,
- 0.08198009431362152,
- 0.020318610593676567,
- -0.019881902262568474,
- 0.08010239899158478,
- 0.04532463103532791,
- -0.013279617764055729,
- 0.06088123098015785,
- -0.02139458619058132,
- -0.009267313405871391,
- 0.07498577237129211,
- -0.03958774730563164,
- -0.04663841053843498,
- -0.03045053221285343,
- 0.07347727566957474,
- -0.0792790949344635,
- 0.010155058465898037,
- 0.04975096508860588,
- -0.0037952272687107325,
- 0.06363479793071747,
- -0.061241596937179565,
- -0.0033855107612907887,
- 0.008264209143817425,
- -0.017915481701493263,
- -0.024624060839414597,
- -0.014326697215437889,
- -0.005600733682513237,
- -0.05146928131580353,
- -0.08614649623632431,
- 0.05649522691965103,
- 0.011320367455482483,
- 0.0591941736638546,
- 0.04049266502261162,
- 0.050518862903118134,
- 0.02677539549767971,
- -0.06050334498286247,
- -0.09834208339452744,
- -0.05001625418663025,
- -0.03241569921374321,
- -0.07889089733362198,
- -0.024704545736312866,
- -1.3956855227093001e-8,
- -0.02149832807481289,
- 0.0440717488527298,
- 0.03865755349397659,
- 0.025751521810889244,
- 0.023081384599208832,
- 0.09788244217634201,
- -0.01710314117372036,
- 0.018700499087572098,
- -0.01736561581492424,
- 0.09092715382575989,
- -0.046641044318675995,
- 0.04100298881530762,
- 0.0038587269373238087,
- 0.07440207898616791,
- 0.028763296082615852,
- -0.0863528847694397,
- 0.055282436311244965,
- -0.0026644004974514246,
- -0.02113747037947178,
- 0.016742512583732605,
- 0.059127457439899445,
- 0.03621859848499298,
- -0.038843631744384766,
- 0.03557199612259865,
- -0.020865894854068756,
- -0.011926033534109592,
- 0.04701246693730354,
- 0.11048124730587006,
- -0.07626722007989883,
- -0.03425447642803192,
- 0.013781347312033176,
- 0.05354877933859825,
- -0.06277404725551605,
- 0.02927047573029995,
- 0.049120426177978516,
- 0.05564699321985245,
- 0.06926581263542175,
- -0.053809113800525665,
- -0.013820929452776909,
- -0.11606752127408981,
- -0.08059850335121155,
- -0.027249202132225037,
- 0.06999087333679199,
- 0.01496146246790886,
- 0.05294688418507576,
- 0.0369008369743824,
- -0.0837775468826294,
- 0.006369146518409252,
- 0.004037442617118359,
- 0.08777538686990738,
- -0.1717083901166916,
- -0.016711490228772163,
- 0.002857472049072385,
- 0.00029305112548172474,
- 0.059043534100055695,
- 0.03960421681404114,
- 0.030383674427866936,
- 0.019284777343273163,
- -0.04433499649167061,
- 0.028696049004793167,
- 0.17324630916118622,
- 0.07389809936285019,
- -0.020401202142238617,
- 0.03378935530781746
- ]
- },
- {
- "keyword": "subject",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.0070564704947173595,
- 0.040363993495702744,
- -0.04192488268017769,
- 0.022540230304002762,
- 0.04562220349907875,
- -0.042645227164030075,
- 0.103408582508564,
- -0.0019294359954074025,
- -0.01187711488455534,
- 0.021718855947256088,
- -0.05982832610607147,
- -0.0446179173886776,
- -0.045282162725925446,
- 0.03415800258517265,
- 0.04433905705809593,
- -0.018721602857112885,
- 0.015121566131711006,
- -0.0464373417198658,
- -0.060469500720500946,
- 0.02432776615023613,
- -0.04199895262718201,
- 0.04077545925974846,
- 0.03817875683307648,
- -0.04892655834555626,
- -0.053049828857183456,
- 0.05786991864442825,
- 0.024414774030447006,
- 0.0053273760713636875,
- 0.019156236201524734,
- -0.08854532241821289,
- -0.013612406328320503,
- 0.10155254602432251,
- 0.03588617220520973,
- 0.06790272146463394,
- -0.09132225811481476,
- 0.03096175752580166,
- 0.030390514060854912,
- -0.04695361480116844,
- 0.041018933057785034,
- 0.009334483183920383,
- 0.026014406234025955,
- -0.042168837040662766,
- -0.014192475937306881,
- -0.02692209929227829,
- 0.06982188671827316,
- 0.010184869170188904,
- 0.03954966738820076,
- -0.021959861740469933,
- 0.021788936108350754,
- -0.00988554023206234,
- 0.005763963796198368,
- -0.04751855134963989,
- -0.029290057718753815,
- 0.06372658163309097,
- -0.02492298185825348,
- 0.036542586982250214,
- 0.010450843721628189,
- 0.03198227658867836,
- 0.04070689529180527,
- 0.0171243604272604,
- -0.009355044923722744,
- 0.010359019972383976,
- -0.10470138490200043,
- 0.0735665112733841,
- 0.054269466549158096,
- -0.055190496146678925,
- -0.026480961591005325,
- 0.028067946434020996,
- -0.0528804212808609,
- 0.04327058419585228,
- 0.030792977660894394,
- 0.007321029901504517,
- -0.01576300710439682,
- 0.03624839335680008,
- 0.05177293345332146,
- -0.0376988984644413,
- 0.035651326179504395,
- -0.03422226756811142,
- 0.07273752242326736,
- 0.0021000299602746964,
- -0.05253991112112999,
- -0.10283778607845306,
- -0.07399480044841766,
- 0.01753804460167885,
- -0.02377413399517536,
- -0.04743754118680954,
- -0.041610125452280045,
- -0.0008360375068150461,
- -0.09761489927768707,
- 0.03222393989562988,
- 0.01219581812620163,
- -0.06668011099100113,
- 0.061165399849414825,
- -0.005109180696308613,
- 0.031820911914110184,
- 0.02595391310751438,
- 0.005816833581775427,
- -0.02583865262567997,
- -0.04167091101408005,
- 0.22957217693328857,
- -0.018504125997424126,
- 0.019665462896227837,
- -0.03919963166117668,
- 0.057554278522729874,
- -0.05005908012390137,
- -0.058993518352508545,
- -0.027696290984749794,
- 0.03434797376394272,
- 0.012912435457110405,
- -0.05445866659283638,
- -0.05279764533042908,
- 0.029604768380522728,
- 0.011390367522835732,
- 0.03470153734087944,
- 0.053753651678562164,
- 0.023741411045193672,
- 0.1508864015340805,
- 0.06579771637916565,
- 0.043338678777217865,
- -0.042468324303627014,
- -0.0040968842804431915,
- -0.005542466416954994,
- -0.021721169352531433,
- 0.01847480982542038,
- -0.0314321331679821,
- -0.11477986723184586,
- -0.029222413897514343,
- -5.675413826096687e-33,
- 0.029976410791277885,
- -0.10282190144062042,
- 0.006472283508628607,
- 0.03878968954086304,
- -0.04007154330611229,
- 0.04882831498980522,
- 0.02081112749874592,
- -0.04776229336857796,
- 0.0014307457022368908,
- 0.07050088793039322,
- -0.03712569549679756,
- 0.077081598341465,
- -0.06437480449676514,
- 0.006860572379082441,
- 0.07957000285387039,
- -0.067633718252182,
- -0.10607214272022247,
- 0.016011349856853485,
- -0.04418517276644707,
- -0.000872501521371305,
- -0.027709122747182846,
- 0.09226905554533005,
- -0.02133467048406601,
- 0.0075614191591739655,
- -0.05899973586201668,
- 0.0006881781155243516,
- 0.034416645765304565,
- -0.07019336521625519,
- 0.018102888017892838,
- 0.023721417412161827,
- 0.014578714035451412,
- 0.09064344316720963,
- -0.06680081784725189,
- -0.022341934964060783,
- -0.04180563986301422,
- 0.021211538463830948,
- -0.013822823762893677,
- -0.040021881461143494,
- 0.017912615090608597,
- -0.0378631167113781,
- 0.0096222423017025,
- 0.02037787437438965,
- 0.039895519614219666,
- -0.03607284650206566,
- -0.016776591539382935,
- 0.007374317850917578,
- 0.06310000270605087,
- 0.04328594729304314,
- 0.005342072807252407,
- 0.07909085601568222,
- 0.0010599067900329828,
- -0.10336702316999435,
- -0.0037547152023762465,
- -0.02424485795199871,
- 0.015649983659386635,
- 0.05160491541028023,
- 0.003701568115502596,
- 0.01694030500948429,
- 0.00899286288768053,
- 0.03284367918968201,
- 0.1322428435087204,
- 0.10318692773580551,
- -0.05576436221599579,
- -0.015819882974028587,
- 0.06833599507808685,
- -0.0012194793671369553,
- 0.006113944575190544,
- 0.0031432972755283117,
- 0.05633598193526268,
- -0.08335460722446442,
- -0.08250122517347336,
- 0.0469246506690979,
- 0.0362408310174942,
- 0.005630597937852144,
- -0.006384094711393118,
- 0.04512667655944824,
- 0.021709099411964417,
- 0.06093885004520416,
- -0.038761187344789505,
- 0.013263369910418987,
- -0.010529720224440098,
- 0.013342100195586681,
- 0.01628888212144375,
- 0.003156944876536727,
- -0.0008278978639282286,
- 0.04612196609377861,
- 0.035576481372117996,
- -0.08618706464767456,
- -0.019358333200216293,
- -0.052399642765522,
- -0.02824556827545166,
- -0.02912726253271103,
- 0.021250728517770767,
- 0.06900220364332199,
- -0.0020440046209841967,
- 3.566794427176405e-33,
- -0.10562312602996826,
- -0.04768622666597366,
- -0.12762942910194397,
- 0.10713917016983032,
- 0.06337916851043701,
- -0.04927470535039902,
- 0.016306573525071144,
- 0.01545825693756342,
- 0.008658493869006634,
- 0.06898310035467148,
- -0.08925146609544754,
- -0.03248916193842888,
- 0.0190229881554842,
- 0.048973627388477325,
- 0.043076712638139725,
- -0.018356909975409508,
- -0.0593891404569149,
- -0.06860490888357162,
- -0.0804450511932373,
- -0.059672582894563675,
- -0.14403997361660004,
- 0.12458392232656479,
- -0.04979434236884117,
- -0.05084365978837013,
- -0.027049096301198006,
- 0.039877988398075104,
- 0.10061241686344147,
- -0.015165938064455986,
- -0.014334508217871189,
- -0.001757945865392685,
- 0.0016285766614601016,
- -0.07561060786247253,
- -0.08160721510648727,
- 0.001214448013342917,
- -0.009020037017762661,
- 0.06276353448629379,
- 0.03164748102426529,
- 0.04641059786081314,
- 0.05463686212897301,
- 0.026463402435183525,
- 0.04845951497554779,
- -0.04642486944794655,
- -0.01306377537548542,
- 0.12943227589130402,
- -0.07471290975809097,
- 0.03168347477912903,
- 0.024005381390452385,
- 0.02191803604364395,
- 0.055680498480796814,
- 0.041386693716049194,
- -0.040517229586839676,
- 0.06259861588478088,
- -0.016697663813829422,
- -0.08767696470022202,
- 0.030543861910700798,
- 0.0005558491102419794,
- -0.04927263781428337,
- -0.0248880572617054,
- 0.02647089958190918,
- -0.004119001794606447,
- 0.029745500534772873,
- 0.06530044227838516,
- 0.01680781878530979,
- -0.008884762413799763,
- 0.009496054612100124,
- 0.044219646602869034,
- -0.01980498805642128,
- -0.07071016728878021,
- 0.01467679813504219,
- -0.08215881884098053,
- 0.044704996049404144,
- -0.014569811522960663,
- -0.05111464112997055,
- 0.00692507391795516,
- -0.0404026061296463,
- -0.02991281822323799,
- -0.027957743033766747,
- -0.007478877902030945,
- 0.0069860233925282955,
- -0.0033811749890446663,
- -0.022583195939660072,
- -0.005652302410453558,
- -0.10551261901855469,
- 0.05745261535048485,
- -0.00003833828668575734,
- -0.003040253184735775,
- 0.007095562294125557,
- -0.031002068892121315,
- -0.004837402608245611,
- -0.05826559662818909,
- -0.09964097291231155,
- -0.010163210332393646,
- 0.010790998116135597,
- -0.049865104258060455,
- -0.04648212343454361,
- -1.3895175676736926e-8,
- -0.00015121925389394164,
- 0.003995260689407587,
- -0.0325038880109787,
- 0.01966949552297592,
- -0.003477133112028241,
- 0.10399866104125977,
- -0.019816353917121887,
- -0.030866917222738266,
- -0.027449026703834534,
- 0.05321938544511795,
- -0.07670913636684418,
- 0.00728852953761816,
- 0.02468063496053219,
- 0.028085678815841675,
- 0.048054564744234085,
- -0.07186473160982132,
- 0.015803473070263863,
- 0.017015045508742332,
- -0.04058772325515747,
- -0.022926397621631622,
- 0.07817569375038147,
- 0.025395622476935387,
- -0.07635296881198883,
- -0.062064237892627716,
- 0.010250251740217209,
- 0.015214062295854092,
- 0.09179920703172684,
- 0.11542559415102005,
- 0.014858448877930641,
- 0.036497000604867935,
- -0.013610166497528553,
- 0.07644128054380417,
- -0.09975932538509369,
- -0.0033822376281023026,
- -0.0338931567966938,
- 0.039533235132694244,
- 0.010317056439816952,
- -0.011514104902744293,
- 0.005872311070561409,
- -0.019047442823648453,
- -0.04426461458206177,
- -0.00810377299785614,
- 0.05686251446604729,
- 0.028776347637176514,
- 0.025663267821073532,
- 0.030639057978987694,
- -0.04947105795145035,
- 0.002140767639502883,
- 0.014970574527978897,
- 0.03886116296052933,
- -0.13984490931034088,
- -0.06712441146373749,
- 0.06167096644639969,
- 0.0782216340303421,
- 0.04911250248551369,
- 0.01250523328781128,
- -0.033364854753017426,
- -0.026369288563728333,
- -0.07330814749002457,
- 0.017164988443255424,
- 0.14036677777767181,
- 0.05388229712843895,
- 0.04327196255326271,
- 0.05882612615823746
- ]
- },
- {
- "keyword": "theme",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03426085785031319,
- 0.09344713389873505,
- -0.031114155426621437,
- -0.028106821700930595,
- 0.059046730399131775,
- 0.025193678215146065,
- 0.11113081872463226,
- -0.06402486562728882,
- 0.02620898373425007,
- 0.0009709870209917426,
- -0.041733305901288986,
- 0.064643993973732,
- -0.030865751206874847,
- -0.04715501144528389,
- -0.006635276600718498,
- -0.03012247383594513,
- 0.01711965911090374,
- -0.00997180212289095,
- 0.0052854688838124275,
- 0.029170319437980652,
- -0.07044869661331177,
- 0.03384333476424217,
- -0.02757962979376316,
- -0.0019971332512795925,
- -0.07843863219022751,
- 0.11471682786941528,
- -0.014255166053771973,
- 0.03894481807947159,
- 0.018310295417904854,
- -0.14928388595581055,
- 0.0293260607868433,
- 0.09373375028371811,
- 0.07501270622015,
- -0.00039747118717059493,
- -0.09659920632839203,
- -0.04132150113582611,
- 0.030812518671154976,
- 0.005414203740656376,
- -0.01971154473721981,
- 0.027589233592152596,
- -0.029120204970240593,
- -0.028259748592972755,
- -0.02828453853726387,
- -0.021085554733872414,
- 0.01192751619964838,
- 0.0041142413392663,
- -0.002316582715138793,
- -0.005242086946964264,
- 0.06375133246183395,
- 0.021881302818655968,
- 0.006728817708790302,
- -0.06540728360414505,
- -0.014576212503015995,
- -0.026162223890423775,
- 0.033430516719818115,
- 0.11924813687801361,
- 0.07061585038900375,
- 0.06309789419174194,
- 0.04687388986349106,
- -0.003868125146254897,
- 0.08328250050544739,
- 0.055650729686021805,
- -0.09784579277038574,
- 0.06779255717992783,
- 0.10897310823202133,
- 0.008027496747672558,
- 0.0013963727978989482,
- 0.07921984791755676,
- -0.014416673220694065,
- -0.04191475734114647,
- 0.04214485362172127,
- -0.007480498868972063,
- 0.04170261323451996,
- 0.01461715530604124,
- 0.027412068098783493,
- -0.01030556857585907,
- -0.015805425122380257,
- -0.028796818107366562,
- -0.017859339714050293,
- -0.07905825227499008,
- 0.03421232849359512,
- -0.057357970625162125,
- -0.0982981026172638,
- -0.019236905500292778,
- 0.05800102651119232,
- 0.07308872044086456,
- -0.03467217832803726,
- 0.037963759154081345,
- -0.012335271574556828,
- 0.004265634808689356,
- -0.052857331931591034,
- -0.01884874515235424,
- 0.0293223038315773,
- 0.0053657544776797295,
- -0.11993658542633057,
- 0.07990118861198425,
- -0.014327512122690678,
- -0.12505993247032166,
- -0.03477148339152336,
- 0.2411375790834427,
- -0.015568776987493038,
- -0.07096338272094727,
- 0.07276272028684616,
- 0.04691169038414955,
- 0.041643738746643066,
- -0.018865199759602547,
- -0.011564007960259914,
- 0.0212862566113472,
- 0.023875322192907333,
- -0.028305182233452797,
- 0.03387641906738281,
- -0.04242967441678047,
- -0.05082245171070099,
- 0.0014079512329772115,
- 0.03402251377701759,
- -0.08873457461595535,
- -0.0009081173338927329,
- -0.013324297033250332,
- 0.04934881255030632,
- 0.05670532211661339,
- 0.08650121092796326,
- -0.04813364893198013,
- -0.06457860767841339,
- -0.016951996833086014,
- -0.08440360426902771,
- -0.03864379972219467,
- -0.04851376637816429,
- -4.795218349880343e-33,
- 0.04319296404719353,
- -0.003980102948844433,
- 0.02318137139081955,
- 0.058355752378702164,
- 0.08665017038583755,
- 0.005004000850021839,
- 0.02102503925561905,
- -0.06951385736465454,
- -0.0460130050778389,
- 0.10176623612642288,
- -0.018225157633423805,
- 0.011870372109115124,
- -0.03754812851548195,
- 0.03294924646615982,
- 0.02485053241252899,
- -0.030550897121429443,
- -0.01881432719528675,
- 0.01401424314826727,
- -0.03437155485153198,
- -0.01116154994815588,
- -0.05277639999985695,
- 0.06070825457572937,
- 0.00323116616345942,
- 0.022872690111398697,
- -0.031060269102454185,
- -0.012792489491403103,
- 0.03551790863275528,
- -0.038988370448350906,
- 0.0030529864598065615,
- 0.015954822301864624,
- 0.04234146699309349,
- 0.050944652408361435,
- 0.08386844396591187,
- -0.0019236542284488678,
- -0.08122913539409637,
- -0.021862635388970375,
- -0.03923887386918068,
- -0.05496443063020706,
- 0.057090844959020615,
- -0.013592427596449852,
- -0.08464179188013077,
- -0.0046108923852443695,
- -0.02554379217326641,
- 0.04060608521103859,
- 0.04647200554609299,
- 0.04981432482600212,
- 0.16082461178302765,
- -0.003665664466097951,
- 0.01571660302579403,
- 0.05024794116616249,
- 0.009174009785056114,
- -0.01745055615901947,
- 0.00920381024479866,
- 0.005549123510718346,
- -0.027943676337599754,
- -0.03670348972082138,
- 0.002452570479363203,
- 0.04557359218597412,
- 0.06838998943567276,
- -0.024026978760957718,
- 0.03379177674651146,
- -0.014074490405619144,
- -0.011028002947568893,
- -0.09397348016500473,
- 0.03962130472064018,
- 0.007316373288631439,
- 0.0264873206615448,
- -0.01786447875201702,
- -0.012266019359230995,
- -0.09844999015331268,
- -0.07379953563213348,
- -0.01750793494284153,
- 0.06468553841114044,
- 0.04608014225959778,
- -0.02989285998046398,
- 0.02335299924015999,
- 0.03975241631269455,
- 0.032150182873010635,
- -0.09376907348632812,
- 0.008788137696683407,
- -0.11819430440664291,
- 0.011652964167296886,
- -0.038456663489341736,
- -0.007221638225018978,
- 0.0272359736263752,
- 0.03521735221147537,
- 0.032055582851171494,
- -0.038559410721063614,
- 0.00038737381692044437,
- 0.014652748592197895,
- -0.04656461253762245,
- 0.0009702915558591485,
- 0.044087063521146774,
- -0.038255758583545685,
- -0.024883201345801353,
- 4.652815290801885e-33,
- -0.024407999590039253,
- -0.02965879812836647,
- -0.10314720124006271,
- 0.06091207265853882,
- 0.04906813055276871,
- 0.03010684810578823,
- -0.013803903944790363,
- 0.03169089928269386,
- -0.04217931628227234,
- -0.007207696326076984,
- 0.034139592200517654,
- 0.04408662021160126,
- 0.050006210803985596,
- 0.004586586728692055,
- -0.011171575635671616,
- 0.05183427408337593,
- 0.087705098092556,
- 0.051332589238882065,
- -0.04835249483585358,
- -0.002329302253201604,
- -0.09766703844070435,
- -0.11165755242109299,
- -0.09782544523477554,
- -0.07961077243089676,
- -0.03856629505753517,
- 0.05701441690325737,
- 0.05944664776325226,
- -0.01835586130619049,
- -0.0067086489871144295,
- -0.02133500762283802,
- 0.07345625013113022,
- -0.03496130183339119,
- -0.09097862988710403,
- 0.061561234295368195,
- 0.036065638065338135,
- 0.08619257062673569,
- -0.01737903244793415,
- -0.021540749818086624,
- -0.08709055185317993,
- -0.0014939053216949105,
- 0.0003360472619533539,
- -0.02086261846125126,
- 0.08170120418071747,
- 0.08467678725719452,
- -0.043450094759464264,
- 0.04129316285252571,
- -0.0013587684370577335,
- 0.01737080328166485,
- 0.041214507073163986,
- 0.032450396567583084,
- 0.024047525599598885,
- -0.05005580559372902,
- 0.0393233522772789,
- -0.10798825323581696,
- 0.0008446216234005988,
- -0.020436687394976616,
- -0.008817358873784542,
- 0.05037477985024452,
- 0.004451439715921879,
- 0.05265641212463379,
- 0.04883833974599838,
- 0.05191005766391754,
- -0.0642123743891716,
- -0.07829751074314117,
- -0.0361776240170002,
- 0.025728968903422356,
- 0.027124803513288498,
- -0.035744957625865936,
- -0.03773342818021774,
- 0.08552233874797821,
- 0.03765266761183739,
- 0.008603984490036964,
- -0.07145093381404877,
- 0.008756659924983978,
- -0.044794514775276184,
- -0.0357167087495327,
- 0.017009492963552475,
- 0.03459256514906883,
- -0.08017709106206894,
- -0.030544448643922806,
- -0.017983518540859222,
- -0.030460815876722336,
- -0.09040125459432602,
- 0.011346273124217987,
- -0.01273885928094387,
- -0.03258510306477547,
- 0.02248642034828663,
- 0.08783124387264252,
- 0.044079121202230453,
- -0.03758828714489937,
- -0.049387238919734955,
- 0.07753489166498184,
- 0.08043676614761353,
- 0.03249455243349075,
- 0.012346581555902958,
- -1.1895044949028488e-8,
- -0.012213898822665215,
- -0.030533218756318092,
- 0.04313557967543602,
- -0.0867709293961525,
- 0.015574384480714798,
- 0.051860518753528595,
- 0.0640203058719635,
- -0.050498951226472855,
- -0.009423715062439442,
- 0.013940519653260708,
- -0.009972146712243557,
- -0.0158417746424675,
- 0.019177084788680077,
- 0.07834812998771667,
- 0.06128688156604767,
- -0.009292145259678364,
- -0.09632178395986557,
- 0.0468190535902977,
- -0.06554896384477615,
- -0.05234077200293541,
- 0.015741506591439247,
- 0.05564515292644501,
- -0.00978869665414095,
- -0.10410643368959427,
- 0.010760411620140076,
- 0.043029457330703735,
- 0.029399843886494637,
- 0.05837186425924301,
- 0.008247725665569305,
- 0.0640345960855484,
- -0.008269493468105793,
- 0.04541414976119995,
- -0.040873993188142776,
- -0.07196440547704697,
- 0.02271222323179245,
- 0.04583216458559036,
- -0.02387818694114685,
- 0.01110159419476986,
- 0.001030548708513379,
- -0.1083078682422638,
- 0.04263351485133171,
- 0.038483403623104095,
- 0.05189884454011917,
- 0.0015301622916013002,
- -0.05839042365550995,
- -0.04991566017270088,
- 0.06526116281747818,
- 0.008576340042054653,
- -0.030600452795624733,
- -0.033091068267822266,
- -0.021327432245016098,
- -0.0346141941845417,
- -0.013086240738630295,
- 0.0592724084854126,
- 0.030878080055117607,
- 0.025416839867830276,
- 0.0037149579729884863,
- 0.038406118750572205,
- 0.0016192439943552017,
- -0.01502348855137825,
- 0.042236845940351486,
- 0.08324380964040756,
- -0.03870329633355141,
- 0.015439905226230621
- ]
- },
- {
- "keyword": "matter",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.013171649537980556,
- -0.030544845387339592,
- -0.033593833446502686,
- 0.09017278999090195,
- 0.036353662610054016,
- -0.015507249161601067,
- 0.14842252433300018,
- -0.056749530136585236,
- 0.023075634613633156,
- 0.03421409800648689,
- 0.016336681321263313,
- -0.0313374288380146,
- -0.038779761642217636,
- 0.014916024170815945,
- -0.016213029623031616,
- 0.009996548295021057,
- 0.0013908430701121688,
- -0.08149649947881699,
- -0.13296464085578918,
- -0.009259345941245556,
- 0.005437389947474003,
- -0.005986349191516638,
- -0.004046628717333078,
- 0.0039193155243992805,
- -0.05280427634716034,
- 0.09966273605823517,
- -0.04495641216635704,
- 0.014764780178666115,
- 0.07779711484909058,
- -0.1484823226928711,
- 0.04572610184550285,
- 0.1269061267375946,
- 0.021131062880158424,
- -0.0429527647793293,
- -0.018485020846128464,
- 0.06353054940700531,
- 0.07147900015115738,
- -0.01823858730494976,
- 0.03180583938956261,
- -0.05807413533329964,
- -0.01606426201760769,
- -0.10116501897573471,
- 0.03665120154619217,
- -0.016312135383486748,
- 0.05742096155881882,
- 0.0570622943341732,
- 0.07659369707107544,
- -0.03347844257950783,
- 0.005351149011403322,
- -0.03606430068612099,
- 0.0006421330035664141,
- -0.050978224724531174,
- -0.06117783114314079,
- 0.048820722848176956,
- 0.008670929819345474,
- 0.0390334278345108,
- 0.010288551449775696,
- 0.043136365711688995,
- 0.008790814317762852,
- -0.02786463126540184,
- 0.020037254318594933,
- 0.02383091114461422,
- -0.07964543253183365,
- 0.039178796112537384,
- 0.09698855131864548,
- -0.0024303423706442118,
- -0.0535927452147007,
- 0.06630739569664001,
- -0.00988277979195118,
- 0.0643521398305893,
- 0.07269705832004547,
- 0.06847396492958069,
- 0.04167860001325607,
- 0.04253261536359787,
- 0.11659938842058182,
- 0.011623830534517765,
- -0.006958518177270889,
- -0.0637364387512207,
- 0.11632513254880905,
- 0.06923539936542511,
- 0.021181832998991013,
- 0.0062803104519844055,
- -0.06265955418348312,
- 0.02949114516377449,
- 0.002389925066381693,
- -0.06772337853908539,
- 0.02179509587585926,
- 0.0077639189548790455,
- -0.1677011102437973,
- 0.026317324489355087,
- -0.022950416430830956,
- 0.05952819436788559,
- 0.04173892363905907,
- -0.02235763892531395,
- -0.04988578334450722,
- 0.050095368176698685,
- -0.0372733548283577,
- 0.005280027631670237,
- -0.02540394850075245,
- 0.19792979955673218,
- 0.013077259995043278,
- 0.07859832793474197,
- 0.017284588888287544,
- 0.07283330708742142,
- 0.008366505615413189,
- -0.03180057927966118,
- -0.030802730470895767,
- 0.0000055856630751804914,
- 0.028132442384958267,
- 0.07263675332069397,
- -0.042864829301834106,
- -0.010651734657585621,
- -0.008942147716879845,
- -0.022689644247293472,
- -0.013091842643916607,
- 0.004813235253095627,
- 0.07144303619861603,
- 0.02338387630879879,
- -0.06887932866811752,
- -0.03320613130927086,
- -0.07183630019426346,
- -0.025670619681477547,
- -0.035260796546936035,
- 0.013859761878848076,
- -0.0071977488696575165,
- -0.047668199986219406,
- 0.012325235642492771,
- -5.014909795183382e-33,
- 0.02409585937857628,
- -0.11959073692560196,
- 0.023730766028165817,
- 0.026799479499459267,
- -0.019526269286870956,
- 0.004879426676779985,
- 0.03643045574426651,
- -0.027696987614035606,
- 0.03373648226261139,
- 0.09761294722557068,
- -0.021137861534953117,
- 0.04786885529756546,
- -0.016410905867815018,
- 0.00149978743866086,
- 0.08909516036510468,
- -0.030664455145597458,
- -0.05510667338967323,
- 0.02333696186542511,
- -0.09386464953422546,
- -0.031673185527324677,
- -0.0030257445760071278,
- 0.097627192735672,
- -0.03908013552427292,
- 0.0035519495140761137,
- -0.01100238412618637,
- 0.03601916506886482,
- -0.0072349742986261845,
- -0.06239832937717438,
- -0.016922250390052795,
- -0.009989491663873196,
- -0.015877429395914078,
- 0.07433602958917618,
- -0.0003006850020028651,
- 0.05443166196346283,
- -0.059345681220293045,
- -0.02796364203095436,
- -0.01850571297109127,
- -0.0538279190659523,
- -0.026575176045298576,
- -0.12879492342472076,
- 0.031494978815317154,
- 0.04074298217892647,
- -0.045935727655887604,
- 0.0018387985182926059,
- -0.04886389523744583,
- 0.03447113558650017,
- 0.05927055701613426,
- -0.027280302718281746,
- -0.05193108320236206,
- 0.02177928388118744,
- 0.016427084803581238,
- -0.057110074907541275,
- -0.02058739960193634,
- 0.0441359244287014,
- 0.013929657638072968,
- -0.002279959386214614,
- 0.0024928278289735317,
- 0.014709877781569958,
- -0.025912458077073097,
- 0.001499444362707436,
- 0.008074820972979069,
- 0.056253716349601746,
- 0.039764322340488434,
- 0.05132415518164635,
- 0.013808638788759708,
- -0.09638255089521408,
- -0.004173086024820805,
- -0.026062795892357826,
- -0.0008402232779189944,
- 0.010564406402409077,
- -0.07272882014513016,
- -0.016739072278141975,
- 0.04509229585528374,
- -0.030859028920531273,
- 0.04351493716239929,
- 0.029754266142845154,
- 0.045190781354904175,
- -0.006685504224151373,
- -0.07182805240154266,
- -0.012933187186717987,
- -0.02878374420106411,
- -0.06934815645217896,
- -0.00894168857485056,
- -0.06767299771308899,
- -0.06787277013063431,
- -0.00016823368787299842,
- -0.011070371605455875,
- -0.03200671821832657,
- 0.047165174037218094,
- -0.06097865477204323,
- -0.05849830061197281,
- -0.048774559050798416,
- 0.077715203166008,
- -0.04451306536793709,
- -0.11048711836338043,
- 4.1181945825761544e-33,
- -0.12456197291612625,
- -0.02635284885764122,
- -0.006966243498027325,
- 0.1815752238035202,
- 0.05779661610722542,
- -0.01761859655380249,
- -0.036528728902339935,
- -0.06447950750589371,
- 0.04652818292379379,
- 0.009946858510375023,
- -0.034949589520692825,
- -0.03402829170227051,
- 0.06849433481693268,
- -0.02346067689359188,
- 0.0576019249856472,
- 0.013913258910179138,
- 0.015634849667549133,
- 0.0111681018024683,
- 0.05173748731613159,
- 0.029430292546749115,
- -0.038450200110673904,
- -0.06598269939422607,
- -0.005685258191078901,
- -0.061960890889167786,
- 0.0014107364695519209,
- 0.0891457051038742,
- 0.10708834230899811,
- -0.15094886720180511,
- 0.0573483444750309,
- 0.058114517480134964,
- 0.028069665655493736,
- -0.052808862179517746,
- -0.014436459168791771,
- 0.03802226483821869,
- -0.03839695081114769,
- 0.03942837938666344,
- 0.09195304661989212,
- 0.020318128168582916,
- -0.01336843241006136,
- -0.05673666670918465,
- 0.02164909616112709,
- -0.01595461554825306,
- 0.03426731005311012,
- 0.1882193684577942,
- -0.027900781482458115,
- 0.032894328236579895,
- 0.029315568506717682,
- 0.07466166466474533,
- 0.03153832629323006,
- 0.024739759042859077,
- -0.004441743716597557,
- 0.016311055049300194,
- -0.04813041910529137,
- -0.09056169539690018,
- -0.02350245788693428,
- 0.029197847470641136,
- -0.07785391807556152,
- -0.006187509745359421,
- -0.00024439056869596243,
- 0.05275756120681763,
- 0.06268128752708435,
- -0.045792192220687866,
- -0.02582370489835739,
- -0.01310646254569292,
- -0.01573469489812851,
- 0.029519734904170036,
- -0.029406260699033737,
- -0.012099623680114746,
- -0.016948822885751724,
- 0.004325163085013628,
- 0.08085212856531143,
- -0.009539026767015457,
- -0.04185733199119568,
- -0.0019645674619823694,
- -0.0411282479763031,
- 0.04165734350681305,
- 0.08271964639425278,
- 0.008838611654937267,
- 0.040071867406368256,
- 0.015570156276226044,
- -0.01878986321389675,
- 0.027155086398124695,
- -0.0012196426978334785,
- -0.03509043902158737,
- 0.040687091648578644,
- -0.04721827805042267,
- -0.01823202148079872,
- 0.02347629889845848,
- -0.024936774745583534,
- -0.03156823664903641,
- -0.05065922066569328,
- 0.017615390941500664,
- 0.02685091644525528,
- -0.008794572204351425,
- -0.03336082398891449,
- -1.1887741457883294e-8,
- 0.01596042700111866,
- -0.02697274088859558,
- -0.009592985734343529,
- -0.007845360785722733,
- 0.058283258229494095,
- 0.042674992233514786,
- -0.0016599337104707956,
- 0.064286008477211,
- -0.009910487569868565,
- 0.11338809877634048,
- -0.0003148292889818549,
- 0.028457269072532654,
- -0.030267272144556046,
- 0.06788450479507446,
- 0.029569635167717934,
- -0.049571506679058075,
- -0.05814693868160248,
- -0.03150058910250664,
- -0.09053845703601837,
- -0.006604399066418409,
- -0.019110988825559616,
- 0.011118236929178238,
- -0.05947745963931084,
- -0.036682020872831345,
- 0.015454350039362907,
- -0.04967912659049034,
- 0.0613076351583004,
- 0.055532172322273254,
- 0.0034148951526731253,
- 0.015766488388180733,
- 0.010268975049257278,
- 0.04550079628825188,
- -0.04937322065234184,
- 0.007298612035810947,
- 0.02435741201043129,
- -0.021650712937116623,
- 0.018465103581547737,
- -0.023949917405843735,
- 0.024323826655745506,
- -0.08324310928583145,
- -0.0064054131507873535,
- 0.011891976930201054,
- 0.021470310166478157,
- 0.0025622581597417593,
- -0.04348793253302574,
- 0.01029518898576498,
- -0.05071656033396721,
- -0.03600580617785454,
- -0.060841094702482224,
- 0.043967071920633316,
- -0.02984258532524109,
- 0.006569620221853256,
- -0.011416171677410603,
- -0.01330407615751028,
- 0.029223695397377014,
- 0.04338040202856064,
- -0.017329975962638855,
- 0.056162964552640915,
- -0.022369664162397385,
- 0.03923823684453964,
- 0.13606590032577515,
- -0.018754562363028526,
- 0.07635405659675598,
- -0.000670280889607966
- ]
- },
- {
- "keyword": "issue",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04339371994137764,
- 0.03271777927875519,
- -0.012246157974004745,
- -0.0011468695010989904,
- -0.05218828096985817,
- -0.015780098736286163,
- 0.08013103157281876,
- 0.018355082720518112,
- -0.07352877408266068,
- 0.0029844571836292744,
- 0.0039049729239195585,
- 0.053804539144039154,
- -0.025940800085663795,
- 0.047032058238983154,
- 0.050642676651477814,
- 0.034155167639255524,
- 0.022815072908997536,
- -0.06164059415459633,
- -0.10951318591833115,
- 0.07054489105939865,
- -0.13512423634529114,
- -0.028841082006692886,
- -0.021278634667396545,
- 0.0635422095656395,
- -0.049245525151491165,
- -0.09687284380197525,
- -0.054651763290166855,
- -0.0020163608714938164,
- 0.10891236364841461,
- -0.07368220388889313,
- 0.01790381222963333,
- 0.05564101040363312,
- 0.0006597652682103217,
- -0.041083045303821564,
- -0.03458055108785629,
- 0.048229753971099854,
- 0.0028471823316067457,
- 0.035441454499959946,
- 0.023973025381565094,
- -0.05760892108082771,
- 0.02520282007753849,
- -0.07636924088001251,
- 0.0011483700945973396,
- -0.03897442668676376,
- -0.01738586835563183,
- -0.02886343188583851,
- 0.07834664732217789,
- 0.030410900712013245,
- 0.05787064880132675,
- 0.027234835550189018,
- -0.025102872401475906,
- -0.028118086978793144,
- 0.0908607468008995,
- -0.027990290895104408,
- 0.00045487910392694175,
- -0.048845790326595306,
- -0.0430879183113575,
- 0.049349717795848846,
- 0.03680546581745148,
- -0.007678491063416004,
- 0.0992666706442833,
- 0.01967131532728672,
- -0.0962880551815033,
- 0.05429327115416527,
- -0.007493313867598772,
- 0.02474978379905224,
- -0.007655400317162275,
- -0.032011955976486206,
- -0.08105364441871643,
- -0.02761087380349636,
- 0.032605137676000595,
- 0.06884009391069412,
- -0.07939273118972778,
- 0.018896624445915222,
- 0.05224150791764259,
- 0.022536497563123703,
- -0.027997322380542755,
- -0.02454313263297081,
- 0.11082188040018082,
- 0.015164708718657494,
- 0.016720136627554893,
- -0.024682091549038887,
- -0.05556963384151459,
- 0.049017902463674545,
- 0.06950805336236954,
- -0.010015253908932209,
- 0.011876001954078674,
- -0.0193179938942194,
- -0.06951124966144562,
- 0.027208784595131874,
- 0.006304965354502201,
- -0.005718275438994169,
- 0.11947190761566162,
- 0.02162761799991131,
- -0.00875316746532917,
- -0.018474020063877106,
- 0.06984302401542664,
- -0.0017533337231725454,
- -0.08900430798530579,
- 0.27149778604507446,
- -0.04308149963617325,
- 0.04941616579890251,
- 0.003688381751999259,
- 0.04737542197108269,
- -0.03309668228030205,
- -0.002619495615363121,
- -0.012050830759108067,
- -0.023988846689462662,
- -0.01693832315504551,
- -0.017209311947226524,
- 0.00858111958950758,
- -0.02994140051305294,
- -0.06241203844547272,
- 0.04435238987207413,
- 0.06610727310180664,
- -0.07315851002931595,
- -0.01289143692702055,
- 0.018948465585708618,
- 0.013565219938755035,
- -0.011809785850346088,
- -0.04487909376621246,
- -0.0410461351275444,
- -0.04428160935640335,
- -0.029884081333875656,
- -0.031089074909687042,
- -0.10783368349075317,
- 0.10771399736404419,
- -4.178849356394615e-33,
- -0.02055228501558304,
- -0.07040809094905853,
- -0.04180245101451874,
- -0.01349832396954298,
- 0.03394019231200218,
- 0.008258231915533543,
- -0.014797821640968323,
- 0.006920177489519119,
- -0.0870981514453888,
- 0.04323474317789078,
- -0.022200604900717735,
- -0.041979722678661346,
- -0.015619944781064987,
- -0.06873558461666107,
- 0.09825941175222397,
- -0.03000221773982048,
- 0.06843540817499161,
- 0.08112832903862,
- -0.08503600209951401,
- 0.018835028633475304,
- -0.02573743276298046,
- 0.005464503541588783,
- -0.010275033302605152,
- 0.09924577176570892,
- -0.035784054547548294,
- 0.06606405228376389,
- 0.031646981835365295,
- -0.007650723215192556,
- -0.024443022906780243,
- 0.012189512141048908,
- -0.020006731152534485,
- 0.007936837151646614,
- 0.041169725358486176,
- -0.014680137857794762,
- -0.004740532487630844,
- 0.05429321900010109,
- 0.13496902585029602,
- -0.015606043860316277,
- -0.009387093596160412,
- -0.029277855530381203,
- -0.0782364159822464,
- 0.01463296264410019,
- -0.04940629377961159,
- 0.03542178124189377,
- 0.04044845327734947,
- 0.08117149025201797,
- 0.0467303991317749,
- 0.0251499954611063,
- -0.0013215577928349376,
- 0.1353314071893692,
- -0.06958132982254028,
- 0.032651592046022415,
- -0.0371653251349926,
- -0.012849617749452591,
- -0.011422872543334961,
- -0.013239036314189434,
- -0.017603561282157898,
- -0.04045746102929115,
- 0.03600118309259415,
- -0.0031404506880789995,
- 0.13961195945739746,
- 0.05030536651611328,
- -0.005181906744837761,
- -0.10686761885881424,
- -0.001509172492660582,
- -0.01890759915113449,
- 0.04698805883526802,
- -0.009334174916148186,
- 0.01848628558218479,
- -0.03109804540872574,
- -0.0367649607360363,
- -0.017545504495501518,
- 0.12207777798175812,
- -0.04560619592666626,
- -0.0385613739490509,
- -0.030736373737454414,
- -0.008989343419671059,
- 0.038009222596883774,
- -0.0233005303889513,
- 0.020470520481467247,
- 0.00039422206464223564,
- -0.023953596130013466,
- 0.02437441051006317,
- -0.002071336144581437,
- -0.01950157806277275,
- 0.05406529828906059,
- 0.06063732132315636,
- 0.01690935157239437,
- 0.0460057407617569,
- 0.06215817853808403,
- -0.003568041604012251,
- 0.03800411522388458,
- 0.036716144531965256,
- 0.05187394842505455,
- -0.033569734543561935,
- 4.485255183247891e-33,
- -0.1683834046125412,
- -0.03498972952365875,
- -0.023509355261921883,
- 0.015269451774656773,
- 0.047686997801065445,
- -0.03282913193106651,
- 0.06575635820627213,
- 0.0793774425983429,
- 0.01991487853229046,
- 0.021501509472727776,
- -0.08718840777873993,
- -0.003785745706409216,
- 0.025784648954868317,
- 0.025613149628043175,
- -0.01068884041160345,
- 0.006288532633334398,
- 0.03388567268848419,
- -0.016960812732577324,
- -0.014167006127536297,
- 0.02442317269742489,
- -0.06625017523765564,
- -0.04335634782910347,
- -0.0024381782859563828,
- 0.00063866819255054,
- -0.07076761871576309,
- 0.08216693252325058,
- 0.05548332631587982,
- -0.018330460414290428,
- 0.03440079465508461,
- -0.039041075855493546,
- 0.13489319384098053,
- -0.041076913475990295,
- -0.05715671926736832,
- 0.05622480437159538,
- 0.013127312995493412,
- 0.08216194063425064,
- -0.041200920939445496,
- -0.04349707067012787,
- 0.033269356936216354,
- -0.005565511528402567,
- 0.10760585963726044,
- 0.01172859501093626,
- -0.05019615218043327,
- 0.13675987720489502,
- 0.03456465154886246,
- 0.02691265195608139,
- -0.0009914186084643006,
- 0.00985762383788824,
- 0.05243614315986633,
- 0.057091549038887024,
- -0.043444763869047165,
- -0.025321511551737785,
- 0.036667317152023315,
- -0.0947067141532898,
- -0.011226917617022991,
- 0.08095651865005493,
- 0.04984835907816887,
- 0.06458207219839096,
- 0.04201379418373108,
- 0.005006861872971058,
- 0.01671898551285267,
- 0.054366882890462875,
- -0.02719021961092949,
- -0.0631028488278389,
- 0.05758430063724518,
- 0.004928655922412872,
- -0.004405560903251171,
- 0.015623560175299644,
- 0.03394012153148651,
- 0.010812261141836643,
- -0.07094651460647583,
- -0.05309206619858742,
- -0.039960961788892746,
- -0.07104913145303726,
- -0.015909584239125252,
- -0.012237777933478355,
- -0.07449577748775482,
- 0.04410189390182495,
- -0.025948328897356987,
- 0.06167787313461304,
- -0.020563019439578056,
- -0.011847596615552902,
- 0.013996431604027748,
- 0.011001684702932835,
- -0.03390898182988167,
- -0.03450612723827362,
- 0.07542072981595993,
- 0.0040238699875772,
- 0.0036674123257398605,
- -0.09410728514194489,
- 0.009460036642849445,
- -0.03139731287956238,
- -0.06571360677480698,
- 0.03128358721733093,
- 0.010220280848443508,
- -1.4051078522925309e-8,
- -0.02265053242444992,
- -0.03283213824033737,
- -0.020756451413035393,
- -0.005038623232394457,
- 0.06924088299274445,
- 0.008454471826553345,
- -0.022546106949448586,
- 0.01749766245484352,
- -0.029411572962999344,
- 0.0504516065120697,
- -0.013861064799129963,
- 0.0033821386750787497,
- 0.013520805165171623,
- 0.03545007109642029,
- 0.008587967604398727,
- -0.11507043987512589,
- -0.10326890647411346,
- 0.004822331480681896,
- -0.09352445602416992,
- -0.000390680885175243,
- -0.055080194026231766,
- -0.006914730649441481,
- 0.05070844292640686,
- -0.05927392467856407,
- -0.01675734855234623,
- -0.03019271418452263,
- -0.005938285496085882,
- 0.07927737385034561,
- 0.03976140171289444,
- -0.042324233800172806,
- 0.01058377604931593,
- 0.04495619609951973,
- 0.04357030987739563,
- -0.006874044891446829,
- 0.024718936532735825,
- -0.033750686794519424,
- -0.03081659972667694,
- 0.0064528994262218475,
- 0.016142310574650764,
- -0.057775214314460754,
- -0.029243698343634605,
- -0.044627461582422256,
- -0.0203203447163105,
- -0.020344430580735207,
- -0.05790645256638527,
- 0.030725136399269104,
- -0.02744794450700283,
- 0.028059232980012894,
- 0.04659981653094292,
- 0.010265287943184376,
- -0.05968174338340759,
- -0.010486249811947346,
- 0.005187865346670151,
- 0.021390317007899284,
- 0.09602523595094681,
- 0.03950278088450432,
- 0.015754543244838715,
- -0.040847525000572205,
- 0.023564886301755905,
- 0.03790424391627312,
- 0.12832829356193542,
- -0.005911184474825859,
- 0.016365624964237213,
- 0.011309034191071987
- ]
- },
- {
- "keyword": "category",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.01623666100203991,
- 0.007283750921487808,
- -0.07120589166879654,
- 0.025360340252518654,
- -0.062447335571050644,
- -0.04399607703089714,
- 0.03321421518921852,
- 0.012530075386166573,
- 0.015133349224925041,
- -0.013782859779894352,
- -0.0023129263427108526,
- -0.13211633265018463,
- -0.03753264248371124,
- -0.03258032724261284,
- 0.02274218574166298,
- 0.003274938790127635,
- 0.019803160801529884,
- 0.031023981049656868,
- -0.06385264545679092,
- -0.035859908908605576,
- -0.032863982021808624,
- 0.0458739697933197,
- 0.020332295447587967,
- -0.006512165535241365,
- -0.004738945979624987,
- 0.022227846086025238,
- -0.03211208060383797,
- 0.019710591062903404,
- 0.01669912599027157,
- -0.11058402061462402,
- -0.06814642250537872,
- 0.0347953662276268,
- 0.030012156814336777,
- 0.06191123649477959,
- -0.031387098133563995,
- 0.0016714108642190695,
- 0.0037142399232834578,
- -0.005313189700245857,
- -0.006305234041064978,
- -0.01892569102346897,
- -0.09125570952892303,
- 0.012412677519023418,
- -0.012794236652553082,
- -0.00492062559351325,
- -0.006778789218515158,
- 0.018322329968214035,
- -0.014750901609659195,
- -0.04603825882077217,
- 0.01120109111070633,
- -0.004728490021079779,
- -0.020478691905736923,
- -0.005907323211431503,
- -0.04989037290215492,
- 0.02393128164112568,
- -0.025933878496289253,
- 0.03337400034070015,
- -0.021331515163183212,
- -0.04392004758119583,
- -0.0037100522313266993,
- 0.03201590105891228,
- 0.01203847210854292,
- 0.06576530635356903,
- -0.007253169547766447,
- 0.10113552212715149,
- -0.025272924453020096,
- -0.007107015699148178,
- -0.02374020777642727,
- 0.024348318576812744,
- 0.032448530197143555,
- -0.022622622549533844,
- 0.05093640089035034,
- 0.005773155950009823,
- -0.019308283925056458,
- 0.053646016865968704,
- 0.0721454918384552,
- -0.05510078743100166,
- 0.09803671389818192,
- -0.015948420390486717,
- 0.057920560240745544,
- 0.00594588927924633,
- -0.018673118203878403,
- 0.043930817395448685,
- -0.01344121154397726,
- -0.04929491877555847,
- 0.06277989596128464,
- 0.008819393813610077,
- 0.0016081618377938867,
- 0.030399248003959656,
- -0.15235747396945953,
- 0.008267123252153397,
- 0.011698628775775433,
- -0.03985610231757164,
- 0.113255575299263,
- -0.01815333403646946,
- -0.046690672636032104,
- 0.023034043610095978,
- 0.06522836536169052,
- -0.06773699074983597,
- 0.03102254681289196,
- 0.262985497713089,
- 0.017728682607412338,
- 0.000057495199143886566,
- -0.07371462136507034,
- 0.00532123725861311,
- -0.03319631516933441,
- -0.02974635735154152,
- -0.012117442674934864,
- 0.04205033928155899,
- 0.025810105726122856,
- -0.03477971628308296,
- -0.05005807429552078,
- -0.020674753934144974,
- -0.07541941851377487,
- -0.05286405608057976,
- -0.09897959977388382,
- 0.015897007659077644,
- -0.011275272816419601,
- 0.05351157858967781,
- 0.11218680441379547,
- -0.004358896519988775,
- 0.03561034053564072,
- 0.008472206071019173,
- -0.016984038054943085,
- -0.02327166497707367,
- -0.023608723655343056,
- -0.05132727324962616,
- -0.03929624706506729,
- -5.11931977481731e-33,
- 0.05230369791388512,
- -0.11159275472164154,
- 0.014631194062530994,
- -0.006566530093550682,
- -0.015617242082953453,
- 0.053692083805799484,
- -0.00425398163497448,
- 0.01684366725385189,
- -0.041177939623594284,
- 0.035594552755355835,
- -0.006845484487712383,
- 0.04685444012284279,
- -0.12859345972537994,
- 0.040581878274679184,
- 0.1339864730834961,
- -0.03737163916230202,
- 0.020222961902618408,
- 0.03847353160381317,
- -0.10267408192157745,
- 0.007174752186983824,
- -0.05868472158908844,
- 0.0366189181804657,
- 0.00838832650333643,
- 0.02974921464920044,
- -0.027990402653813362,
- 0.016314920037984848,
- -0.023400716483592987,
- -0.05289515107870102,
- -0.008954158052802086,
- 0.06572329998016357,
- 0.014625155366957188,
- 0.01311094593256712,
- -0.021658530458807945,
- -0.04559881240129471,
- 0.03966600075364113,
- 0.007900897413492203,
- 0.0208184365183115,
- -0.006464781239628792,
- 0.02902383916079998,
- -0.017885638400912285,
- -0.019714297726750374,
- 0.005277913995087147,
- -0.0806141346693039,
- 0.0018110583769157529,
- 0.020118162035942078,
- 0.06838034093379974,
- 0.1033523753285408,
- 0.022967729717493057,
- 0.04960539564490318,
- 0.05500469729304314,
- -0.04588687792420387,
- -0.031639136373996735,
- -0.004465488251298666,
- -0.012615330517292023,
- -0.03378837928175926,
- -0.0200108140707016,
- 0.01555695105344057,
- -0.06277456134557724,
- -0.03285966441035271,
- 0.055445313453674316,
- -0.008478526957333088,
- 0.1317075788974762,
- 0.05489567294716835,
- -0.023758048191666603,
- -0.032691590487957,
- -0.03516878932714462,
- 0.04521362483501434,
- -0.02445811592042446,
- 0.025284865871071815,
- 0.03915181756019592,
- -0.046413980424404144,
- 0.009181235916912556,
- 0.02797352708876133,
- 0.048048969358205795,
- -0.003730166470631957,
- 0.005411983001977205,
- -0.015118779614567757,
- 0.03373923897743225,
- -0.1478959172964096,
- 0.06205037236213684,
- -0.026746569201350212,
- -0.05577898398041725,
- -0.031225625425577164,
- 0.009355561807751656,
- -0.021541619673371315,
- -0.0018828132888302207,
- 0.011225845664739609,
- -0.04912837594747543,
- 0.04105190932750702,
- 0.04046354442834854,
- -0.16726963222026825,
- 0.029568808153271675,
- 0.0266557689756155,
- 0.048053693026304245,
- 0.03331472724676132,
- 2.936388929115905e-33,
- -0.03570064157247543,
- -0.03612266853451729,
- -0.04146657511591911,
- 0.018154531717300415,
- -0.01025127898901701,
- 0.00422313017770648,
- -0.03824103996157646,
- -0.014039554633200169,
- -0.07688165456056595,
- 0.1382163017988205,
- -0.03346579149365425,
- 0.020040081813931465,
- 0.05327465012669563,
- 0.011773617938160896,
- 0.05655298009514809,
- -0.02145492099225521,
- -0.024397924542427063,
- -0.016690826043486595,
- -0.09258554130792618,
- 0.09643542021512985,
- 0.024060804396867752,
- 0.051931232213974,
- -0.10688170045614243,
- 0.0040184990502893925,
- -0.011747102253139019,
- 0.002494404325261712,
- 0.02478102408349514,
- -0.010148582980036736,
- -0.030288517475128174,
- -0.09008724987506866,
- 0.0033545212354511023,
- -0.07451605051755905,
- -0.031634874641895294,
- -0.02824280597269535,
- -0.013081925921142101,
- 0.04248807206749916,
- 0.03345027565956116,
- -0.02429065853357315,
- -0.05302724987268448,
- 0.05136033892631531,
- 0.04511778801679611,
- -0.022007472813129425,
- -0.11154922097921371,
- 0.1024298220872879,
- -0.03246200084686279,
- -0.05649108812212944,
- 0.02044736035168171,
- 0.05622892081737518,
- 0.1331869512796402,
- 0.008406468667089939,
- -0.09433742612600327,
- -0.012398800812661648,
- 0.04307999089360237,
- -0.026561161503195763,
- 0.10058079659938812,
- 0.02960353158414364,
- -0.009848484769463539,
- -0.07715931534767151,
- 0.006142283324152231,
- 0.044577375054359436,
- -0.026848474517464638,
- 0.07002314180135727,
- -0.006434280890971422,
- 0.03425013646483421,
- -0.0018339173402637243,
- -0.06150278076529503,
- 0.006440373603254557,
- -0.053387757390737534,
- -0.0008411011658608913,
- -0.02697201445698738,
- 0.05353078246116638,
- 0.07281991839408875,
- -0.0565091110765934,
- 0.024358950555324554,
- -0.04742300137877464,
- -0.02879742532968521,
- -0.06135006248950958,
- -0.007436248939484358,
- 0.027949193492531776,
- 0.0009479025029577315,
- 0.012700879015028477,
- -0.09425526857376099,
- -0.007017866242676973,
- 0.07984202355146408,
- 0.007129148114472628,
- -0.04472103342413902,
- 0.07804114371538162,
- 0.056851670145988464,
- -0.00174503936432302,
- 0.07377345860004425,
- -0.00825826358050108,
- -0.027140287682414055,
- 0.014855519868433475,
- 0.0458141528069973,
- -0.05695096403360367,
- -1.3992634606552201e-8,
- -0.02686615288257599,
- 0.05922980606555939,
- 0.014882026240229607,
- 0.013507479801774025,
- 0.036397747695446014,
- 0.0659952387213707,
- 0.012454702518880367,
- 0.055318158119916916,
- -0.07976329326629639,
- 0.09591904282569885,
- -0.06844004988670349,
- 0.06167953461408615,
- -0.03970203176140785,
- 0.0837659165263176,
- 0.09219519793987274,
- -0.04155789688229561,
- 0.02302640862762928,
- 0.024631544947624207,
- 0.011953873559832573,
- 0.09068179130554199,
- 0.03617359697818756,
- -0.03298843279480934,
- -0.002172671025618911,
- -0.012295492924749851,
- -0.03667519986629486,
- -0.04094021022319794,
- 0.06005897372961044,
- 0.10598881542682648,
- 0.0334857702255249,
- 0.0010367189534008503,
- -0.03591055050492287,
- 0.04581845551729202,
- -0.09101031720638275,
- -0.02437630668282509,
- 0.04287000745534897,
- 0.026967734098434448,
- -0.06727110594511032,
- -0.03921399638056755,
- 0.007067147642374039,
- -0.01564634218811989,
- 0.053399186581373215,
- -0.06857866793870926,
- 0.061320193111896515,
- 0.013072689063847065,
- -0.0550086684525013,
- -0.0027963167522102594,
- 0.03431190550327301,
- -0.06656535714864731,
- -0.027639688923954964,
- 0.029267556965351105,
- -0.08691028505563736,
- -0.024368245154619217,
- -0.030958721414208412,
- 0.05148407444357872,
- 0.038586199283599854,
- -0.007308251224458218,
- 0.009037468582391739,
- -0.009938318282365799,
- -0.06310787051916122,
- 0.03596903756260872,
- 0.18260294198989868,
- 0.00809328630566597,
- 0.006234913598746061,
- 0.019578972831368446
- ]
- },
- {
- "keyword": "classification",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.0606561079621315,
- 0.004323613364249468,
- -0.0296586025506258,
- -0.000059686542954295874,
- 0.03612402826547623,
- 0.0556853748857975,
- 0.10037332028150558,
- -0.04610073193907738,
- -0.04582717642188072,
- -0.02014007419347763,
- -0.015367076732218266,
- -0.04909924417734146,
- 0.004312198143452406,
- -0.04270085319876671,
- -0.0819673016667366,
- -0.02520924061536789,
- 0.02787383645772934,
- 0.0053029446862638,
- -0.08360569924116135,
- -0.019355181604623795,
- 0.020128905773162842,
- 0.05433572828769684,
- -0.05590961501002312,
- 0.05272228270769119,
- -0.00789156835526228,
- 0.030371667817234993,
- 0.04696011543273926,
- 0.08124548196792603,
- 0.03161468729376793,
- -0.1250154823064804,
- -0.05599603429436684,
- 0.04862026497721672,
- 0.05488642305135727,
- 0.008202094584703445,
- -0.0813368484377861,
- 0.036680079996585846,
- -0.017946762964129448,
- 0.0655207484960556,
- -0.020449323579669,
- 0.03404080495238304,
- -0.050172753632068634,
- -0.06023342162370682,
- -0.026654178276658058,
- 0.0034355218522250652,
- 0.057390134781599045,
- 0.06792876124382019,
- 0.005332245025783777,
- -0.002460514660924673,
- -0.05589047819375992,
- 0.004757819231599569,
- -0.038696251809597015,
- 0.01795244961977005,
- -0.12869255244731903,
- 0.07029073685407639,
- -0.053052566945552826,
- -0.018464988097548485,
- 0.023457365110516548,
- -0.04650403559207916,
- 0.010749499313533306,
- -0.015234265476465225,
- 0.05303380265831947,
- -0.04136744886636734,
- -0.001914238790050149,
- 0.04763900488615036,
- 0.07503868639469147,
- 0.01787600852549076,
- 0.0035440358333289623,
- -0.013899094425141811,
- 0.037495147436857224,
- -0.04187889024615288,
- 0.05774516239762306,
- 0.026042992249131203,
- 0.02333211340010166,
- 0.06998918950557709,
- 0.041826825588941574,
- -0.051593758165836334,
- 0.03818592429161072,
- 0.050648823380470276,
- 0.06627646088600159,
- -0.050702888518571854,
- -0.02960306778550148,
- 0.011955641210079193,
- -0.033037543296813965,
- 0.021437253803014755,
- 0.08684241771697998,
- 0.03512760251760483,
- -0.058594875037670135,
- 0.025172699242830276,
- -0.07563848048448563,
- -0.013707602396607399,
- -0.005435468629002571,
- -0.005921832751482725,
- 0.03932978957891464,
- -0.0569562129676342,
- -0.10295619070529938,
- 0.015607657842338085,
- 0.05726682022213936,
- -0.09136562049388885,
- 0.04670943319797516,
- 0.24156421422958374,
- -0.017188148573040962,
- -0.004780997522175312,
- -0.03164149075746536,
- -0.011864266358315945,
- 0.017393436282873154,
- -0.06564176082611084,
- 0.015798019245266914,
- -0.03814566507935524,
- 0.07529053837060928,
- -0.09231031686067581,
- -0.046888504177331924,
- -0.03755172714591026,
- -0.13367868959903717,
- -0.07079269737005234,
- -0.00720548490062356,
- -0.016544755548238754,
- 0.0050425357185304165,
- 0.041087452322244644,
- 0.012597785331308842,
- 0.03748505935072899,
- -0.018745971843600273,
- 0.021392425522208214,
- 0.02963917888700962,
- -0.009877961128950119,
- 0.06165556609630585,
- -0.01242152787744999,
- -0.12201312929391861,
- -4.6351659778082575e-33,
- 0.02993728406727314,
- -0.11421886086463928,
- -0.03324710577726364,
- 0.011729133315384388,
- -0.00841115228831768,
- -0.005400591064244509,
- -0.031400326639413834,
- -0.07008051127195358,
- 0.023327169939875603,
- 0.043855369091033936,
- -0.02250583842396736,
- 0.03985059633851051,
- 0.03857046365737915,
- 0.060299068689346313,
- 0.12075679004192352,
- 0.01771780103445053,
- -0.032833993434906006,
- 0.07421233505010605,
- -0.05646730586886406,
- -0.05558580905199051,
- -0.03977103531360626,
- 0.04704875499010086,
- 0.07989133149385452,
- -0.058824822306632996,
- -0.03638891503214836,
- 0.046563923358917236,
- -0.04085851088166237,
- -0.058885395526885986,
- -0.016220631077885628,
- 0.02724282816052437,
- 0.07329168915748596,
- 0.019549844786524773,
- 0.015935532748699188,
- -0.04920739680528641,
- 0.055733706802129745,
- 0.02633505128324032,
- 0.0033802036195993423,
- 0.03253208100795746,
- 0.06507949531078339,
- -0.05616909638047218,
- -0.07811035960912704,
- -0.06174622103571892,
- 0.007429297547787428,
- 0.021721400320529938,
- -0.0009970060782507062,
- 0.05442381277680397,
- 0.025928881019353867,
- 0.017363324761390686,
- -0.0045897141098976135,
- 0.007268177345395088,
- -0.020794950425624847,
- -0.07424024492502213,
- 0.002280289540067315,
- -0.022484388202428818,
- -0.019209209829568863,
- 0.010858207009732723,
- 0.011022549122571945,
- 0.03364281728863716,
- -0.083530955016613,
- -0.006641078740358353,
- 0.03931283950805664,
- 0.06499508768320084,
- -0.03349008038640022,
- -0.01653118059039116,
- -0.0039324210956692696,
- -0.03895455598831177,
- -0.02490353025496006,
- -0.02151285670697689,
- 0.08574987947940826,
- -0.023551860824227333,
- 0.007897739298641682,
- 0.02511279657483101,
- 0.012879244983196259,
- 0.03902347758412361,
- 0.03206707164645195,
- 0.023702768608927727,
- 0.024248814210295677,
- 0.030931413173675537,
- -0.09758185595273972,
- -0.01675688847899437,
- -0.0975213423371315,
- -0.03533796966075897,
- -0.007901887409389019,
- -0.028017010539770126,
- -0.09458703547716141,
- -0.0001752665702952072,
- 0.027978576719760895,
- -0.05874510854482651,
- -0.0009017526172101498,
- 0.028723876923322678,
- -0.17013169825077057,
- 0.08208902180194855,
- 0.025072654709219933,
- 0.045225005596876144,
- -0.013707066886126995,
- 2.408611618392876e-33,
- -0.05885015055537224,
- 0.06622502952814102,
- -0.03711211308836937,
- 0.04724959284067154,
- -0.013580656610429287,
- 0.06171880289912224,
- -0.08564586192369461,
- 0.02127084881067276,
- -0.07178264111280441,
- 0.07834470272064209,
- 0.006920839659869671,
- 0.06274420022964478,
- 0.023169655352830887,
- -0.03848814219236374,
- -0.07635991275310516,
- -0.012407045811414719,
- -0.02179889567196369,
- 0.0006658806814812124,
- -0.022072764113545418,
- 0.08613353967666626,
- 0.008268207311630249,
- 0.06211821362376213,
- -0.07983706146478653,
- -0.039525702595710754,
- -0.0623040497303009,
- 0.06791751086711884,
- 0.017718762159347534,
- 0.01874530129134655,
- -0.01053436566144228,
- -0.03162868693470955,
- -0.012875408865511417,
- -0.07923574000597,
- -0.037930190563201904,
- 0.009921983815729618,
- -0.07133130729198456,
- 0.041905537247657776,
- 0.05484580248594284,
- -0.035577189177274704,
- -0.01783430390059948,
- 0.09367374330759048,
- 0.012188822962343693,
- 0.04210967943072319,
- -0.09650694578886032,
- 0.06074771657586098,
- -0.025690613314509392,
- -0.14135359227657318,
- 0.0125522306188941,
- 0.0802769586443901,
- 0.040482137352228165,
- 0.020014174282550812,
- -0.021591216325759888,
- 0.030333684757351875,
- -0.03907915949821472,
- 0.021185601130127907,
- 0.04701077938079834,
- 0.04259645938873291,
- -0.06195848435163498,
- -0.0400799922645092,
- -0.00508028082549572,
- 0.07296054810285568,
- -0.04603448882699013,
- 0.04099705070257187,
- -0.00799854937940836,
- 0.08896920830011368,
- 0.016645675525069237,
- -0.08043916523456573,
- -0.03650052472949028,
- 0.03122321143746376,
- 0.006851067300885916,
- -0.0031123931985348463,
- 0.07449092715978622,
- 0.04193676635622978,
- -0.04076913371682167,
- -0.004926917143166065,
- -0.025186385959386826,
- -0.0403275303542614,
- -0.06229660287499428,
- 0.013045374304056168,
- -0.027756424620747566,
- -0.002086293650791049,
- -0.04941999912261963,
- -0.07663212716579437,
- 0.022115522995591164,
- 0.1357659101486206,
- -0.002484759083017707,
- 0.0876670852303505,
- 0.10785827785730362,
- -0.004322766326367855,
- 0.0898161455988884,
- -0.06966762989759445,
- 0.04188311845064163,
- 0.029522744938731194,
- 0.012848361395299435,
- 0.07438850402832031,
- -0.03482178598642349,
- -1.2436289331674288e-8,
- -0.03900570794939995,
- -0.01028081402182579,
- 0.023239949718117714,
- -0.011696885339915752,
- 0.0178045816719532,
- 0.030103076249361038,
- -0.06435693055391312,
- 0.0736568421125412,
- -0.04230104014277458,
- 0.04623858630657196,
- 0.026956215500831604,
- 0.03700055927038193,
- -0.054909829050302505,
- 0.05052810534834862,
- 0.04878232255578041,
- -0.030566096305847168,
- -0.0078111374750733376,
- 0.05669775605201721,
- -0.03673234209418297,
- 0.054566580802202225,
- 0.03301876410841942,
- -0.056313369423151016,
- 0.028385546058416367,
- 0.020506830886006355,
- 0.0553646944463253,
- -0.08456693589687347,
- 0.010289757512509823,
- 0.018249649554491043,
- -0.009313833899796009,
- 0.05826856940984726,
- -0.03452365845441818,
- 0.1012376993894577,
- -0.038757842034101486,
- -0.01666729897260666,
- 0.06145353987812996,
- 0.06005037575960159,
- -0.03600190579891205,
- -0.015416978858411312,
- -0.08437468111515045,
- 0.019529536366462708,
- -0.011506670154631138,
- -0.010965670458972454,
- -0.03298482671380043,
- -0.0038966175634413958,
- 0.056443795561790466,
- -0.004153002519160509,
- 0.043071817606687546,
- -0.10750091820955276,
- 0.03301702067255974,
- 0.022937417030334473,
- -0.04507732018828392,
- 0.022419176995754242,
- 0.04293091967701912,
- 0.035153429955244064,
- 0.007020383607596159,
- 0.012726117856800556,
- -0.024966588243842125,
- -0.04329485073685646,
- -0.011679925955832005,
- 0.03208202123641968,
- 0.09194717556238174,
- 0.04486983269453049,
- 0.009596375748515129,
- -0.001754526630975306
- ]
- },
- {
- "keyword": "taxonomy",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.041492510586977005,
- -0.015616795979440212,
- -0.05708792433142662,
- 0.032778866589069366,
- -0.02776728756725788,
- 0.00259185116738081,
- 0.07575224339962006,
- -0.020348357036709785,
- 0.021003827452659607,
- 0.044901471585035324,
- 0.048665694892406464,
- -0.12941335141658783,
- 0.011034923605620861,
- 0.00855434499680996,
- -0.0566055066883564,
- 0.020802179351449013,
- -0.06083976477384567,
- -0.018099110573530197,
- 0.006092118099331856,
- -0.05069151520729065,
- 0.054902683943510056,
- 0.05604885518550873,
- -0.01603035070002079,
- 0.04675668105483055,
- -0.09411223977804184,
- 0.013124885968863964,
- -0.04786168411374092,
- 0.05904841795563698,
- 0.01735907979309559,
- -0.12439203262329102,
- -0.08610951900482178,
- 0.11156001687049866,
- 0.06026632338762283,
- 0.032167453318834305,
- -0.06354406476020813,
- -0.025850044563412666,
- -0.02121429704129696,
- 0.061401668936014175,
- 0.042209919542074203,
- 0.05473007634282112,
- -0.06729355454444885,
- -0.0467631034553051,
- 0.002341414336115122,
- 0.004015323240309954,
- -0.05175279825925827,
- 0.03276593238115311,
- -0.005357822868973017,
- 0.041488561779260635,
- 0.021932506933808327,
- 0.025180311873555183,
- -0.05276373401284218,
- -0.029166042804718018,
- -0.1543683409690857,
- 0.05767766013741493,
- 0.06867101788520813,
- 0.03642318397760391,
- -0.07803088426589966,
- -0.0448124036192894,
- -0.05564626678824425,
- -0.03267933800816536,
- 0.012175183743238449,
- -0.000609201961196959,
- -0.06187732517719269,
- 0.0382404625415802,
- 0.04959646984934807,
- 0.0463716983795166,
- -0.008239870890974998,
- -0.001467398600652814,
- 0.034952763468027115,
- -0.019075749441981316,
- 0.003326697973534465,
- 0.04376446455717087,
- 0.013904724270105362,
- 0.03053751401603222,
- 0.07462804764509201,
- -0.0656362771987915,
- 0.042537298053503036,
- -0.022906508296728134,
- -0.01048340369015932,
- -0.024126093834638596,
- 0.006654913071542978,
- 0.11897870898246765,
- -0.058232780545949936,
- -0.021939510479569435,
- 0.023806720972061157,
- 0.02135772816836834,
- -0.017352603375911713,
- 0.004350802395492792,
- -0.06847074627876282,
- 0.0032032195013016462,
- -0.03799031302332878,
- -0.044557444751262665,
- 0.146616593003273,
- -0.01818046346306801,
- -0.0409863218665123,
- 0.005656640976667404,
- 0.11603036522865295,
- -0.09061162173748016,
- 0.06738385558128357,
- 0.20684830844402313,
- 0.035917192697525024,
- -0.06330572068691254,
- -0.05768036097288132,
- -0.045831404626369476,
- -0.06931149959564209,
- -0.021969633176922798,
- -0.04744003713130951,
- -0.05493830516934395,
- 0.08488448709249496,
- 0.006780790165066719,
- -0.10483424365520477,
- 0.020309995859861374,
- -0.0958734080195427,
- -0.028472639620304108,
- -0.11707323044538498,
- -0.06494209170341492,
- 0.002011932199820876,
- 0.02581830509006977,
- 0.03889326751232147,
- -0.01312904804944992,
- 0.013672723434865475,
- 0.022371826693415642,
- -0.001125027658417821,
- -0.04784006252884865,
- 0.04497065767645836,
- 0.01966884173452854,
- -0.05033613368868828,
- -5.0882081127708905e-33,
- 0.003948156721889973,
- -0.07650469243526459,
- 0.03560008481144905,
- 0.054614193737506866,
- 0.009951014071702957,
- 0.010367101989686489,
- -0.03880378603935242,
- 0.021462438628077507,
- -0.04914448410272598,
- 0.0126355504617095,
- -0.02962004952132702,
- 0.13391949236392975,
- -0.025118717923760414,
- 0.044579729437828064,
- 0.12193416059017181,
- -0.00001910921128001064,
- 0.03249454125761986,
- 0.10791007429361343,
- -0.05191555619239807,
- 0.02682286873459816,
- -0.0419360026717186,
- 0.05002482607960701,
- 0.014636368490755558,
- -0.0042502726428210735,
- -0.026327690109610558,
- -0.012911579571664333,
- 0.01274655107408762,
- -0.08953582495450974,
- 0.036578550934791565,
- 0.023279471322894096,
- 0.044876933097839355,
- -0.03901735693216324,
- 0.035248804837465286,
- -0.05694925785064697,
- 0.02055206336081028,
- 0.032804589718580246,
- 0.06272915750741959,
- -0.028708046302199364,
- 0.07291562110185623,
- -0.03032396174967289,
- -0.07462939620018005,
- -0.014138344675302505,
- 0.0029137576930224895,
- -0.0034824011381715536,
- -0.006854141131043434,
- 0.013709324412047863,
- 0.09966735541820526,
- -0.015751566737890244,
- 0.011913742870092392,
- 0.08722171187400818,
- 0.03017999231815338,
- -0.08471520990133286,
- 0.013090495951473713,
- 0.02090815082192421,
- -0.03630779683589935,
- 0.02189088985323906,
- -0.009975703433156013,
- 0.0026326009538024664,
- -0.09012924134731293,
- 0.09967677295207977,
- -0.0032297854777425528,
- 0.04102466627955437,
- 0.045316122472286224,
- -0.02966301701962948,
- 0.03515680879354477,
- -0.0025689001195132732,
- -0.017553245648741722,
- -0.03085060603916645,
- 0.1010718122124672,
- -0.033132731914520264,
- -0.047134265303611755,
- -0.04131637513637543,
- 0.034134022891521454,
- 0.06708357483148575,
- 0.06219204142689705,
- 0.03134937956929207,
- 0.015350907109677792,
- 0.02384725585579872,
- -0.12257730960845947,
- -0.02565443143248558,
- -0.1213374212384224,
- -0.03566456213593483,
- -0.042784564197063446,
- -0.012665579095482826,
- -0.07621141523122787,
- 0.036600179970264435,
- 0.009104927070438862,
- -0.04801987484097481,
- 0.010639256797730923,
- -0.000012686831723840442,
- -0.11043181270360947,
- -0.003001648699864745,
- 0.032506100833415985,
- 0.04436209052801132,
- -0.025331484153866768,
- 1.425762608242122e-33,
- -0.04260506480932236,
- -0.0393354631960392,
- -0.038410164415836334,
- 0.0174137931317091,
- 0.07522819936275482,
- 0.02745259366929531,
- -0.011394054628908634,
- 0.007920402102172375,
- -0.049027297645807266,
- 0.05573700740933418,
- -0.005985531490296125,
- 0.01391266006976366,
- -0.04342127591371536,
- 0.03092753328382969,
- 0.024395491927862167,
- -0.034404732286930084,
- -0.011475064791738987,
- -0.02234850637614727,
- -0.04837210103869438,
- 0.09111610800027847,
- -0.04125083610415459,
- 0.015765085816383362,
- -0.07726065814495087,
- -0.032070331275463104,
- -0.04296674206852913,
- 0.060006026178598404,
- -0.0031945928931236267,
- -0.005226336419582367,
- 0.014245085418224335,
- 0.02546478435397148,
- -0.039182696491479874,
- -0.11793699860572815,
- 0.01848648115992546,
- -0.04327709600329399,
- 0.015076695010066032,
- 0.03753974288702011,
- 0.07152338325977325,
- -0.08821969479322433,
- -0.06245948746800423,
- 0.04827101528644562,
- 0.03931496664881706,
- 0.03440531715750694,
- 0.014610765501856804,
- 0.0804925486445427,
- 0.0007603871636092663,
- -0.09938182681798935,
- -0.0714956745505333,
- 0.06998340040445328,
- 0.06853317469358444,
- 0.007404941599816084,
- -0.046265020966529846,
- -0.0009789594914764166,
- 0.012184984050691128,
- -0.0573386624455452,
- 0.006885881070047617,
- 0.06647586077451706,
- -0.02044619619846344,
- -0.054145995527505875,
- 0.0018349995370954275,
- 0.051373835653066635,
- -0.02320363186299801,
- 0.012544873170554638,
- -0.02795908972620964,
- 0.09403438866138458,
- 0.04126128926873207,
- -0.03973783552646637,
- -0.07277195155620575,
- -0.06024898588657379,
- -0.02955501526594162,
- -0.0436788834631443,
- -0.018180765211582184,
- 0.09889224171638489,
- -0.07275015860795975,
- -0.04191219061613083,
- -0.0016835159622132778,
- -0.062438853085041046,
- -0.07536877691745758,
- -0.00564112002030015,
- 0.014156722463667393,
- 0.0016923218499869108,
- -0.021569203585386276,
- -0.06428439170122147,
- 0.028534088283777237,
- 0.05768807977437973,
- -0.031003635376691818,
- 0.012625337578356266,
- 0.1298629641532898,
- 0.07478538155555725,
- 0.00398815656080842,
- -0.0019331767689436674,
- 0.07210584729909897,
- -0.016990194097161293,
- 0.001699388143606484,
- 0.03146262839436531,
- -0.008562680333852768,
- -1.2539873139871816e-8,
- -0.04927583411335945,
- 0.03088994510471821,
- 0.009757948108017445,
- 0.016761332750320435,
- 0.01582094095647335,
- 0.020253276452422142,
- -0.004229974001646042,
- 0.029666239395737648,
- -0.006134912837296724,
- 0.07110167294740677,
- 0.03793596103787422,
- 0.04876737669110298,
- -0.01844950206577778,
- 0.10070368647575378,
- 0.0563126765191555,
- -0.02668003737926483,
- -0.02741996943950653,
- 0.04163236916065216,
- -0.041161876171827316,
- 0.042363353073596954,
- -0.007036782335489988,
- -0.018930451944470406,
- -0.06119578704237938,
- 0.04071742296218872,
- 0.0171740110963583,
- -0.054690197110176086,
- 0.06981997936964035,
- 0.021903308108448982,
- 0.009866775013506413,
- 0.045882463455200195,
- 0.0031521429773420095,
- 0.03974737972021103,
- -0.07257439941167831,
- 0.004686530213803053,
- 0.000054849344451213256,
- -0.002471009036526084,
- -0.04384293034672737,
- -0.030008938163518906,
- 0.0035464540123939514,
- -0.0010989942820742726,
- 0.0005544121377170086,
- -0.05141628533601761,
- -0.025721659883856773,
- -0.0009753906633704901,
- 0.02271178364753723,
- -0.05793185159564018,
- -0.018007710576057434,
- -0.009787138551473618,
- 0.03762929141521454,
- -0.0473492257297039,
- -0.06431929767131805,
- 0.05113760009407997,
- 0.014485413208603859,
- -0.01367771066725254,
- -0.0028880906756967306,
- -0.026772845536470413,
- -0.011577301658689976,
- -0.007492786273360252,
- -0.009464997798204422,
- 0.003345136996358633,
- 0.14047716557979584,
- -0.025785520672798157,
- 0.08730302006006241,
- 0.0595090314745903
- ]
- },
- {
- "keyword": "domain",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.028464220464229584,
- -0.03479720652103424,
- -0.038837384432554245,
- -0.08725553750991821,
- -0.07428441196680069,
- -0.09970572590827942,
- 0.023893237113952637,
- -0.05107928812503815,
- 0.05731844902038574,
- -0.024851087480783463,
- -0.043416786938905716,
- -0.024605292826890945,
- 0.04993825405836105,
- 0.0165687445551157,
- 0.027262646704912186,
- -0.024136794731020927,
- -0.02772441878914833,
- -0.005116329528391361,
- -0.03924817219376564,
- -0.05350366607308388,
- 0.041256651282310486,
- 0.07018957287073135,
- 0.0026986426673829556,
- 0.012673471122980118,
- -0.03239543363451958,
- 0.004545952659100294,
- 0.02487792633473873,
- 0.053464729338884354,
- 0.021615177392959595,
- -0.06335365772247314,
- -0.012314986437559128,
- -0.015206130221486092,
- -0.04693886265158653,
- -0.010317336767911911,
- 0.014246649108827114,
- 0.029969682916998863,
- -0.016265058889985085,
- 0.028299856930971146,
- -0.005568820051848888,
- -0.03819064423441887,
- -0.004960761405527592,
- -0.10502270609140396,
- 0.03486524149775505,
- -0.01759687252342701,
- -0.047812748700380325,
- 0.12477494776248932,
- 0.00029764577629975975,
- 0.015213724225759506,
- 0.08274518698453903,
- 0.016227498650550842,
- 0.040597591549158096,
- -0.0013463335344567895,
- 0.012654964812099934,
- 0.015322134830057621,
- -0.022370995953679085,
- 0.07544606924057007,
- 0.012997720390558243,
- 0.045393746346235275,
- 0.011961808428168297,
- -0.06720355153083801,
- -0.0033214795403182507,
- -0.0014695259742438793,
- -0.024302130565047264,
- 0.017544079571962357,
- 0.03973667323589325,
- -0.06548304855823517,
- -0.024231020361185074,
- 0.041991546750068665,
- -0.03501548245549202,
- -0.05341083183884621,
- 0.01099991425871849,
- 0.017582835629582405,
- -0.04837685078382492,
- 0.08783284574747086,
- 0.07874734699726105,
- 0.017980514094233513,
- 0.015073688700795174,
- 0.035966403782367706,
- 0.09988918155431747,
- -0.06159089505672455,
- 0.10235043615102768,
- 0.0010591414757072926,
- 0.03647821024060249,
- 0.03835350275039673,
- -0.04307841882109642,
- 0.015265910886228085,
- 0.014889299869537354,
- -0.025960871949791908,
- 0.0033692731522023678,
- 0.005016610026359558,
- -0.0001947567507158965,
- -0.06047530472278595,
- 0.1083737462759018,
- 0.023797523230314255,
- -0.10447946190834045,
- -0.03899138420820236,
- 0.03926822915673256,
- -0.03183218091726303,
- -0.06843055039644241,
- 0.21507173776626587,
- -0.019575001671910286,
- 0.06294449418783188,
- -0.022982658818364143,
- -0.06066519767045975,
- -0.007585350889712572,
- -0.00035632800427265465,
- 0.00821112934499979,
- 0.12840600311756134,
- 0.05215291678905487,
- -0.05031599476933479,
- -0.06463232636451721,
- -0.009696295484900475,
- 0.039520200341939926,
- -0.011199310421943665,
- 0.030620794743299484,
- -0.09328047931194305,
- -0.05127299204468727,
- -0.00014080884284339845,
- 0.04484562203288078,
- -0.11407145857810974,
- -0.006599809508770704,
- 0.006722168065607548,
- -0.07224853336811066,
- -0.06737027317285538,
- 0.021484805271029472,
- -0.10352125018835068,
- 0.032360512763261795,
- -4.092639335389278e-33,
- 0.04443284496665001,
- 0.07358579337596893,
- -0.007643289864063263,
- -0.01711258664727211,
- -0.01725449599325657,
- 0.008181769400835037,
- -0.004481613636016846,
- 0.00229395879432559,
- -0.06668553501367569,
- 0.07863511890172958,
- -0.011270632967352867,
- 0.05580710247159004,
- 0.005367973819375038,
- -0.04222951456904411,
- 0.13487713038921356,
- 0.0381421260535717,
- 0.09252429753541946,
- 0.01493828371167183,
- 0.0839625746011734,
- 0.022028520703315735,
- -0.084217369556427,
- 0.06324466317892075,
- -0.01160811074078083,
- 0.1353646218776703,
- 0.018887987360358238,
- -0.03353208303451538,
- -0.014105075038969517,
- -0.02505476400256157,
- 0.009056834504008293,
- 0.030979111790657043,
- 0.009105785749852657,
- 0.014501117169857025,
- -0.05237111821770668,
- -0.016452444717288017,
- 0.1118490919470787,
- 0.07618559896945953,
- 0.11350373923778534,
- -0.03371250629425049,
- -0.005244170315563679,
- -0.03198626637458801,
- -0.04996691644191742,
- -0.054632145911455154,
- -0.07660411298274994,
- 0.05921958014369011,
- -0.005070192739367485,
- 0.037254754453897476,
- 0.07457476854324341,
- 0.0076585737988352776,
- 0.05289483442902565,
- 0.11344350874423981,
- 0.06952660530805588,
- -0.06294585764408112,
- -0.045349765568971634,
- 0.03286396712064743,
- -0.04609217494726181,
- 0.026086725294589996,
- -0.04865482449531555,
- -0.004852041602134705,
- -0.023741019889712334,
- -0.035624563694000244,
- 0.023015066981315613,
- 0.017677785828709602,
- -0.08069965988397598,
- 0.045481421053409576,
- -0.08057457208633423,
- -0.04635777696967125,
- -0.0018849853659048676,
- -0.08896148949861526,
- 0.023241745308041573,
- -0.01613149791955948,
- -0.0035905702970921993,
- 0.072844497859478,
- 0.015690645202994347,
- 0.05843121558427811,
- -0.049308668822050095,
- 0.03859567269682884,
- -0.03692302852869034,
- -0.0038061607629060745,
- -0.04186562821269035,
- 0.06770435720682144,
- -0.016335373744368553,
- -0.04299938678741455,
- -0.03838121518492699,
- 0.02084527723491192,
- 0.049387410283088684,
- 0.03225353732705116,
- 0.03715325519442558,
- -0.06652358919382095,
- -0.012058570049703121,
- -0.023398512974381447,
- -0.09574770927429199,
- 0.021686553955078125,
- 0.06606028974056244,
- 0.1056360974907875,
- -0.002153834095224738,
- 3.328745800875353e-33,
- -0.07000921666622162,
- -0.05550973117351532,
- -0.08052697777748108,
- 0.12333644926548004,
- 0.020376453176140785,
- 0.01905054971575737,
- 0.06341030448675156,
- -0.004559972323477268,
- -0.04820409044623375,
- -0.028032107278704643,
- 0.009935496374964714,
- -0.018570883199572563,
- -0.018913177773356438,
- 0.03721587732434273,
- 0.04144464433193207,
- 0.022954104468226433,
- 0.05187037214636803,
- -0.047781795263290405,
- -0.046168334782123566,
- 0.00378559366799891,
- -0.0847274586558342,
- -0.02068372443318367,
- -0.10740687698125839,
- 0.05599663406610489,
- -0.010125442408025265,
- 0.07666333019733429,
- -0.014989753253757954,
- 0.011653624475002289,
- -0.028962837532162666,
- -0.015531959943473339,
- 0.044519077986478806,
- -0.010527842678129673,
- -0.043216295540332794,
- 0.019162476062774658,
- -0.04413502290844917,
- 0.03169960156083107,
- 0.0906037911772728,
- -0.009890427812933922,
- -0.0018982362234964967,
- -0.04172048717737198,
- 0.03834264352917671,
- 0.018587175756692886,
- -0.05116325616836548,
- 0.1245984435081482,
- -0.007604838814586401,
- -0.0017933296039700508,
- -0.05403226241469383,
- 0.06185105815529823,
- 0.09615305811166763,
- 0.03236212953925133,
- -0.07728466391563416,
- -0.03532160818576813,
- 0.0979047417640686,
- -0.11193186789751053,
- 0.004309534095227718,
- -0.014852052554488182,
- 0.025815078988671303,
- 0.006344545166939497,
- 0.0609009675681591,
- 0.03418317437171936,
- 0.006593515630811453,
- 0.07637569308280945,
- -0.04308745265007019,
- 0.12352318316698074,
- -0.03368038311600685,
- 0.012527289800345898,
- 0.031125718727707863,
- 0.05855109915137291,
- -0.030434686690568924,
- -0.00062218913808465,
- 0.03288043290376663,
- 0.015452947467565536,
- -0.06296345591545105,
- -0.07386366277933121,
- -0.04625646024942398,
- -0.05096627399325371,
- 0.019266240298748016,
- 0.03129849582910538,
- -0.01148546114563942,
- 0.08152177929878235,
- 0.0721193477511406,
- -0.013788347132503986,
- 0.02092084102332592,
- -0.01906908117234707,
- -0.037270598113536835,
- 0.0009609982371330261,
- 0.06201224401593208,
- -0.011874121613800526,
- -0.03676726296544075,
- -0.05158372223377228,
- 0.02130112238228321,
- 0.028519190847873688,
- -0.0517379492521286,
- -0.07950588315725327,
- -0.040063247084617615,
- -1.1858665160957571e-8,
- 0.0013231782941147685,
- 0.016239602118730545,
- 0.02021821215748787,
- -0.0027033176738768816,
- 0.0028921226039528847,
- 0.009264438413083553,
- 0.026331273838877678,
- 0.019429944455623627,
- 0.005323738791048527,
- 0.060777682811021805,
- -0.013820025138556957,
- 0.0130746029317379,
- -0.08093388378620148,
- 0.06778605282306671,
- 0.01466098427772522,
- -0.07153618335723877,
- 0.005024599842727184,
- 0.07248994708061218,
- -0.04782666265964508,
- -0.035709042102098465,
- -0.033246081322431564,
- 0.0204437468200922,
- 0.03014172986149788,
- -0.12744057178497314,
- -0.021145446226000786,
- -0.03243981674313545,
- 0.034796539694070816,
- -0.05972623825073242,
- 0.011984226293861866,
- -0.014126819558441639,
- 0.020718920975923538,
- 0.0904616117477417,
- -0.06281764805316925,
- -0.020060375332832336,
- 0.0007746529299765825,
- -0.060903195291757584,
- 0.0013741508591920137,
- -0.02697617933154106,
- -0.0022558579221367836,
- -0.0730467140674591,
- -0.036240167915821075,
- 0.025838280096650124,
- 0.03229367360472679,
- -0.0515470914542675,
- -0.02095896005630493,
- -0.0286432933062315,
- 0.1261516660451889,
- -0.016980541869997978,
- 0.014801457524299622,
- -0.06941672414541245,
- -0.0845181941986084,
- 0.034682754427194595,
- 0.03171899914741516,
- 0.03867155313491821,
- 0.011187752708792686,
- -0.011719719506800175,
- -0.032779794186353683,
- -0.010815642774105072,
- -0.07611293345689774,
- 0.038795553147792816,
- 0.03714175522327423,
- 0.0009023908642120659,
- -0.004317187238484621,
- 0.00426163524389267
- ]
- },
- {
- "keyword": "field",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.015471154823899269,
- 0.11958155035972595,
- -0.030353045091032982,
- -0.02568620629608631,
- -0.04517098516225815,
- 0.011122084222733974,
- 0.1259111911058426,
- 0.016516130417585373,
- 0.06220853701233864,
- -0.03122122213244438,
- -0.02837870642542839,
- -0.04679561033844948,
- -0.0691177174448967,
- 0.004475986119359732,
- -0.023356318473815918,
- 0.02170410379767418,
- -0.06962455809116364,
- -0.011517194099724293,
- -0.09193863719701767,
- -0.00376113411039114,
- -0.10812865197658539,
- 0.02872811257839203,
- -0.048851870000362396,
- 0.014213270507752895,
- -0.020108450204133987,
- 0.05709192901849747,
- -0.043194591999053955,
- 0.0794987604022026,
- -0.056993432343006134,
- -0.14701449871063232,
- -0.08038117736577988,
- 0.0410868301987648,
- 0.047469448298215866,
- 0.026115383952856064,
- -0.033847350627183914,
- 0.023399734869599342,
- -0.009280276484787464,
- 0.07273850589990616,
- 0.038445960730314255,
- 0.051812298595905304,
- -0.09153635799884796,
- -0.14370211958885193,
- 0.02438936196267605,
- 0.028449218720197678,
- 0.023054515942931175,
- -0.005553469993174076,
- 0.0446077361702919,
- -0.027515895664691925,
- 0.08286359161138535,
- -0.025589564815163612,
- -0.07017046213150024,
- 0.03746920824050903,
- -0.06791409105062485,
- 0.09815963357686996,
- 0.03598073497414589,
- 0.114767886698246,
- -0.041578225791454315,
- 0.01886012963950634,
- -0.05061378329992294,
- -0.022688915953040123,
- -0.001557706855237484,
- 0.02448253706097603,
- -0.01911739446222782,
- 0.052277784794569016,
- 0.007800735533237457,
- -0.041287198662757874,
- -0.056015897542238235,
- 0.017743488773703575,
- -0.013006283901631832,
- -0.08351236581802368,
- 0.08017759025096893,
- 0.013958439230918884,
- -0.06194642558693886,
- -0.03523275628685951,
- -0.0035957193467766047,
- 0.07050614804029465,
- -0.020031459629535675,
- 0.0006401120335794985,
- 0.12879087030887604,
- -0.01956920698285103,
- 0.0423438660800457,
- -0.07843834161758423,
- -0.09601300209760666,
- -0.0011028408771380782,
- -0.009627839550375938,
- -0.0312212947756052,
- -0.011442651972174644,
- 0.060037657618522644,
- -0.03957345336675644,
- 0.03158719465136528,
- -0.024639936164021492,
- -0.07314088940620422,
- -0.017413565889000893,
- 0.028921162709593773,
- -0.04111270606517792,
- 0.0562642365694046,
- 0.005813212133944035,
- -0.08923154324293137,
- -0.04980679601430893,
- 0.19911791384220123,
- 0.05996442586183548,
- 0.007149132434278727,
- 0.008090085349977016,
- 0.04812941327691078,
- -0.0014294234570115805,
- -0.06783701479434967,
- -0.007628623861819506,
- 0.0652923583984375,
- -0.01611928828060627,
- 0.017969276756048203,
- -0.021107211709022522,
- -0.0116190817207098,
- -0.08355223387479782,
- 0.01337850745767355,
- -0.01085156761109829,
- 0.10194672644138336,
- -0.025151878595352173,
- -0.005363929085433483,
- -0.017796767875552177,
- -0.0032286669593304396,
- 0.04568927735090256,
- 0.02223167195916176,
- -0.0679105594754219,
- 0.056256841868162155,
- -0.06644899398088455,
- -0.042483970522880554,
- 0.06178944185376167,
- -3.838623455042228e-33,
- 0.021841660141944885,
- 0.03660312294960022,
- 0.05700129643082619,
- 0.016142088919878006,
- -0.03626243770122528,
- 0.024206575006246567,
- -0.0343555212020874,
- 0.09889672696590424,
- -0.05906831845641136,
- -0.0014710695249959826,
- -0.04432201385498047,
- 0.06252337992191315,
- 0.011116856709122658,
- -0.0904025062918663,
- 0.1383807212114334,
- -0.07304821908473969,
- -0.04610871523618698,
- -0.003937029279768467,
- -0.040112853050231934,
- 0.02622058056294918,
- 0.026471303775906563,
- 0.039050500839948654,
- -0.03946869820356369,
- 0.04152141883969307,
- 0.035872455686330795,
- -0.008785407990217209,
- -0.04564301669597626,
- -0.04961453005671501,
- -0.0776413306593895,
- 0.027287904173135757,
- 0.008896177634596825,
- 0.005607686936855316,
- 0.003515052841976285,
- -0.01216806285083294,
- 0.03493017330765724,
- -0.019564080983400345,
- 0.018419554457068443,
- -0.046813204884529114,
- 0.005502915475517511,
- -0.10425589978694916,
- 0.02064456231892109,
- -0.012003718875348568,
- 0.009426132775843143,
- -0.05428127944469452,
- 0.030845491215586662,
- 0.04611128941178322,
- 0.11546103656291962,
- 0.0539594404399395,
- -0.025898560881614685,
- 0.02296355739235878,
- 0.07576450705528259,
- -0.007652428932487965,
- -0.033788587898015976,
- -0.013272272422909737,
- 0.10653385519981384,
- 0.04658069834113121,
- -0.07121183723211288,
- 0.017799952998757362,
- -0.024490974843502045,
- -0.0032189590856432915,
- 0.09513679146766663,
- 0.026612067595124245,
- -0.08710161596536636,
- 0.014154682867228985,
- -0.09560710936784744,
- 0.011792754754424095,
- -0.0020356345921754837,
- -0.03968660160899162,
- 0.053953610360622406,
- 0.05633701756596565,
- -0.04278748854994774,
- 0.017637502402067184,
- -0.04556414112448692,
- 0.029598254710435867,
- -0.030120721086859703,
- 0.02543034218251705,
- 0.003668940393254161,
- -0.020712384954094887,
- -0.05540600046515465,
- 0.0347907654941082,
- -0.13523957133293152,
- 0.0332561694085598,
- -0.08628910779953003,
- 0.04751266539096832,
- -0.00915455911308527,
- 0.03914613649249077,
- 0.04051264375448227,
- 0.005774961784482002,
- -0.029863031581044197,
- -0.07061751186847687,
- -0.0219667237251997,
- 0.019420059397816658,
- 0.0018369511235505342,
- -0.008687134832143784,
- -0.041461456567049026,
- 2.2330504350716133e-33,
- -0.012038874439895153,
- -0.063532255589962,
- -0.030611621215939522,
- 0.0754752829670906,
- 0.05841904878616333,
- 0.019744686782360077,
- 0.05703343451023102,
- 0.024006731808185577,
- 0.06235092505812645,
- 0.13041993975639343,
- -0.06941463053226471,
- -0.013272367417812347,
- -0.012650837190449238,
- -0.04545537754893303,
- 0.01302889920771122,
- -0.0008094428339973092,
- -0.020169822499155998,
- -0.07699757814407349,
- -0.04004615545272827,
- 0.06341588497161865,
- -0.03060970827937126,
- 0.058639682829380035,
- 0.017587419599294662,
- -0.009162540547549725,
- -0.09254815429449081,
- 0.040035881102085114,
- -0.01833414100110531,
- -0.07345152646303177,
- -0.055296577513217926,
- -0.0001733106910251081,
- 0.02128448337316513,
- -0.0728425458073616,
- -0.03098730742931366,
- 0.037326402962207794,
- -0.0806887224316597,
- 0.08762860298156738,
- 0.07371629029512405,
- -0.02577422931790352,
- 0.010052808560431004,
- 0.03223000839352608,
- 0.06916601955890656,
- 0.013770592398941517,
- -0.013055818155407906,
- 0.15071597695350647,
- 0.041400305926799774,
- -0.03102334588766098,
- 0.036727990955114365,
- 0.07968713343143463,
- 0.054884761571884155,
- 0.02715197205543518,
- -0.14081308245658875,
- -0.030382808297872543,
- -0.07006916403770447,
- -0.01641310565173626,
- -0.0558798648416996,
- 0.028647098690271378,
- 0.008898315951228142,
- -0.09735608100891113,
- -0.0406159907579422,
- -0.025377431884407997,
- 0.042099181562662125,
- 0.040043458342552185,
- -0.022008897736668587,
- 0.07401422411203384,
- 0.030237676575779915,
- 0.04768327996134758,
- -0.04495534673333168,
- 0.03947365656495094,
- -0.08100997656583786,
- 0.007892992347478867,
- 0.05703848972916603,
- 0.03219626471400261,
- -0.02101041004061699,
- 0.0672055259346962,
- -0.0374298132956028,
- 0.008740090765058994,
- -0.018458181992173195,
- 0.0571569986641407,
- 0.06226020306348801,
- 0.020728744566440582,
- 0.0820608139038086,
- -0.04850580543279648,
- -0.008709363639354706,
- 0.05406489595770836,
- -0.0011260733008384705,
- -0.020707212388515472,
- 0.024177012965083122,
- 0.007504151668399572,
- -0.01879945769906044,
- -0.02758033387362957,
- -0.012171003967523575,
- 0.056014493107795715,
- -0.058296602219343185,
- 0.00501391664147377,
- -0.015458228997886181,
- -1.1675268751787371e-8,
- -0.0359281450510025,
- 0.04349636659026146,
- -0.010581525973975658,
- 0.006823461502790451,
- 0.08458184450864792,
- -0.039067063480615616,
- 0.005080415401607752,
- 0.032058000564575195,
- 0.0965794175863266,
- -0.007842696271836758,
- -0.036728762090206146,
- 0.0062892260029911995,
- -0.059633124619722366,
- 0.01366700604557991,
- 0.07297755777835846,
- 0.018081707879900932,
- -0.036501191556453705,
- -0.012552226893603802,
- -0.02101833000779152,
- 0.014226986095309258,
- 0.06621561199426651,
- -0.020685913041234016,
- -0.03782600164413452,
- -0.011253799311816692,
- 0.012067880481481552,
- -0.03234295919537544,
- -0.05479850247502327,
- -0.03588428720831871,
- 0.1169288158416748,
- 0.014141974039375782,
- 0.0633372887969017,
- 0.03076402097940445,
- 0.055977556854486465,
- -0.02000109665095806,
- -0.017714472487568855,
- 0.02113214135169983,
- -0.02210916392505169,
- -0.04067172482609749,
- -0.006126065738499165,
- 0.04904688894748688,
- -0.0006580104236491024,
- -0.01932579092681408,
- -0.023192383348941803,
- -0.0693315863609314,
- 0.016346873715519905,
- -0.019439110532402992,
- 0.015892086550593376,
- -0.02656700275838375,
- -0.018414808437228203,
- -0.020440634340047836,
- -0.02999747544527054,
- -0.003621783573180437,
- 0.04261943697929382,
- 0.024017738178372383,
- -0.013637685216963291,
- 0.046246226876974106,
- 0.010096217505633831,
- -0.001963959774002433,
- -0.06710848212242126,
- -0.00857748556882143,
- 0.010533633641898632,
- 0.02974640391767025,
- 0.020312253385782242,
- 0.046571891754865646
- ]
- },
- {
- "keyword": "discipline",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.027144908905029297,
- 0.07798393815755844,
- -0.03331519663333893,
- 0.05383352190256119,
- -0.0031253534834831953,
- 0.03469984233379364,
- 0.06705454736948013,
- -0.023072874173521996,
- -0.017359651625156403,
- 0.05178629606962204,
- 0.0804344192147255,
- -0.036796536296606064,
- 0.022721854969859123,
- 0.05682152137160301,
- -0.0022843717597424984,
- -0.021993843838572502,
- -0.03656638041138649,
- -0.0013504534726962447,
- -0.07853078842163086,
- 0.003167735179886222,
- -0.028719883412122726,
- 0.09026263654232025,
- 0.06954941898584366,
- 0.019573524594306946,
- -0.10854046791791916,
- 0.10223998129367828,
- -0.07103356719017029,
- -0.05003576725721359,
- -0.01604211889207363,
- -0.11514097452163696,
- 0.031606003642082214,
- 0.012332606129348278,
- 0.06258946657180786,
- 0.019331373274326324,
- -0.05023636668920517,
- 0.0470033697783947,
- 0.050577133893966675,
- 0.018171632662415504,
- -0.011059734039008617,
- 0.003169131465256214,
- -0.06870988011360168,
- -0.025421632453799248,
- 0.00477232551202178,
- -0.017450420185923576,
- 0.029048709198832512,
- -0.023537497967481613,
- -0.01123505923897028,
- -0.045523032546043396,
- -0.002379470504820347,
- -0.059391703456640244,
- -0.01587275229394436,
- -0.02320929802954197,
- 0.029548494145274162,
- 0.06970130652189255,
- 0.08453644067049026,
- 0.06361538171768188,
- 0.058101836591959,
- 0.0492258220911026,
- 0.00233980524353683,
- 0.021455518901348114,
- -0.017044037580490112,
- 0.013044310733675957,
- -0.06513243168592453,
- 0.03647409379482269,
- 0.05222040042281151,
- -0.030150651931762695,
- -0.03200915455818176,
- 0.07676570862531662,
- -0.029070325195789337,
- 0.05398945510387421,
- -0.024886589497327805,
- -0.05269121378660202,
- 0.04062594100832939,
- 0.0108778215944767,
- 0.08615126460790634,
- -0.015145231038331985,
- -0.09353660047054291,
- 0.004577411338686943,
- 0.13050509989261627,
- -0.08963179588317871,
- -0.03639650717377663,
- -0.037015512585639954,
- -0.01539122685790062,
- 0.0634690672159195,
- 0.021588820964097977,
- -0.013662271201610565,
- 0.03740217536687851,
- -0.0007287919288501143,
- 0.030488256365060806,
- 0.016966933384537697,
- 0.03543328121304512,
- 0.03976378217339516,
- 0.013997000642120838,
- -0.001822704914957285,
- -0.20855803787708282,
- 0.02127201296389103,
- -0.04993186146020889,
- -0.07767106592655182,
- -0.08057913184165955,
- 0.20365530252456665,
- 0.019276851788163185,
- 0.05684642493724823,
- -0.020551418885588646,
- 0.04011854529380798,
- -0.001065140706487,
- -0.04248209297657013,
- 0.02546931616961956,
- -0.026198463514447212,
- -0.029698926955461502,
- 0.010370337404310703,
- -0.05590379610657692,
- 0.0517779178917408,
- -0.10145688056945801,
- 0.006736436393111944,
- 0.09507706761360168,
- 0.1007007285952568,
- 0.012429452501237392,
- -0.006767279468476772,
- 0.035954106599092484,
- -0.07029672712087631,
- 0.023096131160855293,
- -0.060507018119096756,
- 0.01682649739086628,
- -0.01968420296907425,
- -0.06405769288539886,
- -0.042955607175827026,
- -0.02564377151429653,
- -5.113647279890623e-33,
- 0.0638047456741333,
- -0.106391042470932,
- -0.006430641748011112,
- 0.04060497134923935,
- -0.013622336089611053,
- -0.0016412698896601796,
- -0.046573273837566376,
- -0.012415392324328423,
- 0.0661642849445343,
- 0.05059722438454628,
- 0.0389547236263752,
- 0.021986452862620354,
- -0.0018020335119217634,
- 0.0242862980812788,
- 0.13200649619102478,
- -0.011946499347686768,
- -0.08655288815498352,
- 0.058439671993255615,
- 0.020716022700071335,
- 0.03909223526716232,
- -0.01493789255619049,
- 0.06943947821855545,
- -0.012140714563429356,
- 0.006010076962411404,
- 0.04106055572628975,
- -0.009046758525073528,
- 0.05614878982305527,
- -0.04745016247034073,
- -0.006688297726213932,
- 0.026112206280231476,
- -0.010444787330925465,
- 0.03966422751545906,
- -0.01740756630897522,
- -0.010616377927362919,
- -0.016191892325878143,
- 0.0128696970641613,
- 0.02834026701748371,
- -0.01593404822051525,
- 0.014923600479960442,
- -0.04852471128106117,
- -0.009664715267717838,
- 0.006638860329985619,
- 0.04301460459828377,
- -0.018153933808207512,
- 0.013176478445529938,
- 0.07362383604049683,
- 0.0955313891172409,
- -0.09202198684215546,
- -0.08809440582990646,
- 0.05943787842988968,
- 0.014991344884037971,
- 0.0014220111770555377,
- 0.16851891577243805,
- -0.04604604095220566,
- -0.02192511223256588,
- -0.012137633748352528,
- 0.010212705470621586,
- 0.011421638540923595,
- -0.0005909474566578865,
- -0.052287857979536057,
- 0.11746583878993988,
- 0.03856579586863518,
- -0.09006989002227783,
- 0.0799141377210617,
- -0.01903987117111683,
- -0.06058620661497116,
- -0.06015998125076294,
- 0.025331659242510796,
- 0.09687717258930206,
- -0.025126276537775993,
- -0.07679484784603119,
- -0.004750581458210945,
- -0.03820772096514702,
- -0.021960346028208733,
- 0.0061790053732693195,
- -0.03755650296807289,
- -0.018397849053144455,
- -0.05636431649327278,
- -0.09052099287509918,
- -0.03287078067660332,
- -0.02166893519461155,
- 0.0010788439540192485,
- -0.009577133692800999,
- -0.024363577365875244,
- 0.04473406448960304,
- -0.031910356134176254,
- 0.059242259711027145,
- 0.03243311494588852,
- 0.033610980957746506,
- 0.07398107647895813,
- -0.06950639933347702,
- -0.022818638011813164,
- 0.08111657202243805,
- 0.09072014689445496,
- 0.020462095737457275,
- 3.6405078412065476e-33,
- 0.03196049481630325,
- -0.0048514739610254765,
- -0.035438135266304016,
- 0.0875019058585167,
- 0.03873724862933159,
- 0.026750348508358,
- -0.07346075773239136,
- 0.018960466608405113,
- -0.025480324402451515,
- -0.06904798001050949,
- -0.06778600811958313,
- -0.029321355745196342,
- 0.013645629398524761,
- 0.05294353887438774,
- 0.08781947195529938,
- -0.08759649842977524,
- -0.036471493542194366,
- 0.02405737340450287,
- -0.05012225732207298,
- 0.009176845662295818,
- 0.0516936220228672,
- -0.017953915521502495,
- -0.029330193996429443,
- -0.05266790837049484,
- -0.038962870836257935,
- 0.018564758822321892,
- -0.01620665192604065,
- -0.013625040650367737,
- -0.07147806137800217,
- 0.0033914230298250914,
- 0.04281332343816757,
- 0.010478147305548191,
- -0.010769668035209179,
- -0.008638428524136543,
- -0.030408963561058044,
- -0.01452825777232647,
- 0.03975088521838188,
- 0.07765616476535797,
- -0.10529167950153351,
- -0.0017089939210563898,
- 0.015386457554996014,
- 0.0012045613257214427,
- -0.02914990298449993,
- 0.030643615871667862,
- 0.021199552342295647,
- -0.013502050191164017,
- -0.0563204251229763,
- -0.008500602096319199,
- -0.04995245113968849,
- 0.036238882690668106,
- -0.03725414723157883,
- -0.019080007448792458,
- -0.020547259598970413,
- -0.04874030873179436,
- 0.037386804819107056,
- -0.06148867309093475,
- 0.0034002885222434998,
- -0.019805684685707092,
- -0.06249239295721054,
- 0.03873801231384277,
- -0.017136909067630768,
- 0.02879483252763748,
- -0.04950360208749771,
- 0.04656332731246948,
- 0.04221656918525696,
- 0.019628698006272316,
- 0.014552759937942028,
- 0.029159022495150566,
- -0.02096683345735073,
- 0.04719965159893036,
- -0.02813553810119629,
- 0.076024629175663,
- -0.010634507983922958,
- 0.0809088796377182,
- -0.03024103306233883,
- -0.002409690758213401,
- -0.015835661441087723,
- -0.09019778668880463,
- -0.018723731860518456,
- 0.0022216038778424263,
- 0.0007561451639048755,
- -0.05331728607416153,
- 0.00010089363786391914,
- -0.030111968517303467,
- -0.14709818363189697,
- 0.00963249895721674,
- 0.05729622021317482,
- 0.004266281612217426,
- 0.011738121509552002,
- -0.02672037109732628,
- 0.014048675075173378,
- -0.04386112466454506,
- -0.10114486515522003,
- 0.007066045887768269,
- -0.04023200646042824,
- -1.1547103717646223e-8,
- -0.03189890831708908,
- -0.03946325182914734,
- 0.05091162770986557,
- -0.00003654500324046239,
- 0.04746391624212265,
- 0.0533432811498642,
- 0.0049594067968428135,
- -0.006637561600655317,
- -0.011037149466574192,
- -0.01018226146697998,
- 0.07593709230422974,
- 0.04278946295380592,
- 0.01373220980167389,
- 0.022242190316319466,
- 0.04297834634780884,
- -0.05811821296811104,
- 0.010223361663520336,
- 0.051651451736688614,
- -0.0690583661198616,
- 0.03038724884390831,
- 0.03959976136684418,
- -0.031600456684827805,
- 0.01528213731944561,
- 0.02589203417301178,
- -0.03182309493422508,
- -0.03884713724255562,
- 0.01015257928520441,
- 0.05535876378417015,
- 0.01715617999434471,
- 0.02552700974047184,
- 0.09514603018760681,
- 0.02229364775121212,
- 0.024570364505052567,
- -0.04842730239033699,
- -0.06942285597324371,
- -0.026386266574263573,
- -0.00321878120303154,
- -0.054007258266210556,
- 0.026132861152291298,
- 0.0463077612221241,
- -0.06502789258956909,
- -0.02247203327715397,
- 0.08216043561697006,
- 0.018502673134207726,
- 0.007152647711336613,
- -0.0560930036008358,
- -0.049434613436460495,
- 0.10623899847269058,
- 0.05384095758199692,
- -0.07007349282503128,
- -0.02342640608549118,
- 0.035140879452228546,
- -0.003929514903575182,
- 0.015808630734682083,
- -0.0007242843275889754,
- 0.02970568835735321,
- 0.04249024763703346,
- 0.026543375104665756,
- -0.15457786619663239,
- -0.03018738329410553,
- 0.15788781642913818,
- -0.05833141878247261,
- 0.018595870584249496,
- -0.006378787104040384
- ]
- },
- {
- "keyword": "specialty",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.020679207518696785,
- 0.02816082537174225,
- 0.008180087432265282,
- 0.03660266846418381,
- -0.11187621206045151,
- -0.04761382192373276,
- 0.07369092106819153,
- 0.03284148871898651,
- -0.07673671096563339,
- -0.024749645963311195,
- -0.06067155301570892,
- 0.03130628541111946,
- -0.03857162222266197,
- 0.06427396833896637,
- -0.016800617799162865,
- -0.027879754081368446,
- 0.08540395647287369,
- 0.021121934056282043,
- -0.016360057517886162,
- -0.049554139375686646,
- -0.12422335892915726,
- 0.026796087622642517,
- 0.06804237514734268,
- 0.0026354831643402576,
- -0.06983377784490585,
- -0.017018109560012817,
- -0.04321039095520973,
- 0.012943166308104992,
- -0.044798579066991806,
- -0.08205990493297577,
- 0.002701763529330492,
- 0.08371736109256744,
- 0.023454928770661354,
- 0.006802880670875311,
- 0.0064977495931088924,
- 0.08919461816549301,
- -0.02764097787439823,
- 0.034831251949071884,
- 0.06055629253387451,
- 0.04525616019964218,
- -0.023595305159687996,
- -0.034352026879787445,
- 0.003060674061998725,
- -0.030380401760339737,
- -0.0021792438346892595,
- 0.013894377276301384,
- 0.04394811764359474,
- -0.05360422655940056,
- 0.07236382365226746,
- 0.03498651459813118,
- -0.023897411301732063,
- -0.06204776093363762,
- -0.013375247828662395,
- 0.047053396701812744,
- 0.011681435629725456,
- -0.0031166807748377323,
- -0.0024493567179888487,
- -0.08229430019855499,
- -0.01906796731054783,
- -0.017059609293937683,
- -0.023866254836320877,
- 0.02361784689128399,
- -0.0531342513859272,
- -0.003156473860144615,
- 0.017469629645347595,
- -0.04011322930455208,
- -0.0374329574406147,
- 0.04525066539645195,
- 0.02634144015610218,
- -0.1299431174993515,
- 0.03027256205677986,
- -0.02279255911707878,
- -0.0022664733696728945,
- 0.1350821852684021,
- 0.0649244412779808,
- -0.031650904566049576,
- 0.0786566361784935,
- -0.0028840419836342335,
- 0.07163925468921661,
- -0.01900826208293438,
- 0.013507233001291752,
- -0.013383427634835243,
- 0.04505704343318939,
- 0.0007102455710992217,
- 0.00597572885453701,
- -0.016308188438415527,
- -0.028276724740862846,
- -0.006459394469857216,
- -0.012087802402675152,
- -0.012613684870302677,
- 0.02084210515022278,
- -0.0851813405752182,
- 0.0024954096879810095,
- -0.05504102632403374,
- -0.03745588660240173,
- 0.0581035278737545,
- -0.014010230079293251,
- -0.07690779119729996,
- -0.027751749381422997,
- 0.23842087388038635,
- 0.038727935403585434,
- -0.027451157569885254,
- 0.001728532137349248,
- 0.0069493576884269714,
- -0.06325110793113708,
- 0.019938576966524124,
- -0.042512521147727966,
- 0.07882564514875412,
- -0.02163328416645527,
- -0.014551477506756783,
- -0.00861824955791235,
- 0.052801668643951416,
- -0.05241410806775093,
- -0.035898514091968536,
- -0.07916906476020813,
- 0.057467278093099594,
- -0.025937920436263084,
- 0.024861643090844154,
- 0.09289467334747314,
- 0.02863730862736702,
- -0.007605377119034529,
- 0.05911397933959961,
- -0.03998250141739845,
- -0.04323722422122955,
- 0.001938533503562212,
- 0.010674480348825455,
- -0.027460070326924324,
- -5.553926484939203e-33,
- 0.00732574425637722,
- -0.02532532997429371,
- -0.026111209765076637,
- 0.05145768076181412,
- 0.028468027710914612,
- 0.06215348839759827,
- 0.022457430139183998,
- -0.05206380411982536,
- -0.008604559116065502,
- -0.016562653705477715,
- -0.006679303012788296,
- 0.09423743933439255,
- -0.05777014046907425,
- -0.016967417672276497,
- 0.03169561177492142,
- 0.020975694060325623,
- -0.04933391883969307,
- 0.05277783423662186,
- -0.013107739388942719,
- -0.06569984555244446,
- -0.0822833776473999,
- 0.08799782395362854,
- -0.016577482223510742,
- 0.08984314650297165,
- 0.03139294311404228,
- 0.024469425901770592,
- 0.02408614009618759,
- -0.0037653634790331125,
- 0.03794214129447937,
- 0.01984473131597042,
- 0.0011338184121996164,
- 0.01748719811439514,
- -0.007065850310027599,
- -0.057444315403699875,
- 0.037676453590393066,
- 0.051464322954416275,
- -0.07292985171079636,
- -0.09816520661115646,
- 0.05834086984395981,
- 0.006779694929718971,
- -0.015432464890182018,
- -0.01621592976152897,
- -0.03343980386853218,
- 0.05974309518933296,
- -0.0001943489332916215,
- 0.07109902054071426,
- 0.005788559094071388,
- 0.06580585241317749,
- -0.032620444893836975,
- -0.03851401433348656,
- -0.015353396534919739,
- -0.021563228219747543,
- -0.07583692669868469,
- -0.03259333223104477,
- 0.051647987216711044,
- 0.0301804356276989,
- 0.03623891621828079,
- 0.013482269831001759,
- 0.05062787979841232,
- 0.02068214677274227,
- 0.015244032256305218,
- 0.10343324393033981,
- -0.06207338348031044,
- 0.04262251779437065,
- -0.017391910776495934,
- -0.03008350543677807,
- 0.05451757088303566,
- 0.00003415832907194272,
- 0.038151297718286514,
- 0.006068764254450798,
- -0.05177914351224899,
- 0.06350868940353394,
- 0.10566436499357224,
- 0.022373003885149956,
- -0.05844505876302719,
- -0.00546060549095273,
- 0.03286447748541832,
- 0.008306210860610008,
- -0.01529859472066164,
- 0.023152902722358704,
- -0.08011701703071594,
- 0.054445911198854446,
- -0.025850482285022736,
- 0.12361171096563339,
- 0.02321050874888897,
- -0.00705599645152688,
- 0.024456705898046494,
- -0.025036463513970375,
- 0.020131127908825874,
- 0.007545650936663151,
- -0.1506931483745575,
- -0.0002380610239924863,
- -0.017592724412679672,
- 0.047193653881549835,
- -0.03567181155085564,
- 3.67703155271255e-33,
- 0.005389925092458725,
- -0.008076606318354607,
- -0.01129614096134901,
- 0.09175991266965866,
- 0.05256396532058716,
- -0.03346651419997215,
- 0.001828660722821951,
- -0.049503568559885025,
- -0.06980647146701813,
- 0.08216250687837601,
- -0.005504235625267029,
- -0.008347416296601295,
- -0.002552266465499997,
- 0.002381365979090333,
- -0.017674710601568222,
- 0.027636395767331123,
- -0.04836786165833473,
- 0.024346278980374336,
- -0.04646319895982742,
- 0.01978030987083912,
- 0.06626428663730621,
- 0.020645933225750923,
- -0.04438938573002815,
- 0.056309036910533905,
- -0.024406829848885536,
- 0.04745279997587204,
- -0.11808940768241882,
- 0.020544108003377914,
- -0.06366857141256332,
- 0.0026740944012999535,
- -0.013334925286471844,
- -0.05741799995303154,
- -0.018456734716892242,
- 0.037734273821115494,
- -0.047572799026966095,
- 0.07627766579389572,
- 0.005121477879583836,
- -0.0036904930602759123,
- -0.03183818981051445,
- 0.016621483489871025,
- 0.043054237961769104,
- -0.07480516284704208,
- 0.01925831101834774,
- 0.11877363175153732,
- -0.0020668981596827507,
- -0.04547601565718651,
- -0.02626337856054306,
- 0.005682544317096472,
- 0.11156579107046127,
- -0.06306594610214233,
- -0.11041652411222458,
- -0.030523518100380898,
- 0.012951606884598732,
- -0.06553041934967041,
- -0.00893425289541483,
- -0.006410387810319662,
- -0.02709103189408779,
- -0.04705415666103363,
- -0.10863541066646576,
- 0.0041761742904782295,
- 0.10453179478645325,
- 0.01839280128479004,
- -0.0067882053554058075,
- 0.07630299031734467,
- 0.009026634506881237,
- 0.026153357699513435,
- 0.009860810823738575,
- -0.051935985684394836,
- -0.09145870059728622,
- 0.023712879046797752,
- 0.10298310220241547,
- 0.017543669790029526,
- -0.017358027398586273,
- -0.04028726741671562,
- -0.07613547146320343,
- 0.02645411714911461,
- 0.02322137914597988,
- -0.037226270884275436,
- -0.009008107706904411,
- 0.15379634499549866,
- -0.03500520810484886,
- -0.0890418216586113,
- -0.01656278595328331,
- 0.08951333910226822,
- 0.02958000637590885,
- 0.061446718871593475,
- 0.013797005638480186,
- 0.012023872695863247,
- -0.02374686300754547,
- -0.051236771047115326,
- 0.022404413670301437,
- 0.018061745911836624,
- -0.13126100599765778,
- -0.06629935652017593,
- 0.05900188162922859,
- -1.3020066802482688e-8,
- -0.06944490224123001,
- 0.011738245375454426,
- -0.029105370864272118,
- -0.04147883504629135,
- -0.019048472866415977,
- -0.06421523541212082,
- -0.08193714916706085,
- -0.048183683305978775,
- -0.012622102163732052,
- 0.039969634264707565,
- -0.040908996015787125,
- -0.01913389563560486,
- -0.015032611787319183,
- -0.021746573969721794,
- 0.1171894371509552,
- -0.07796868681907654,
- -0.01638917624950409,
- 0.11789324134588242,
- -0.06334778666496277,
- -0.005871335044503212,
- 0.02284109964966774,
- 0.011494082398712635,
- 0.03618020564317703,
- -0.07061923295259476,
- -0.06740591675043106,
- 0.026104101911187172,
- 0.034558795392513275,
- 0.01128615252673626,
- 0.02760194055736065,
- 0.09805606305599213,
- 0.005877772346138954,
- 0.02425827644765377,
- 0.06420252472162247,
- -0.0664692297577858,
- 0.03859914839267731,
- -0.049958713352680206,
- 0.05985819175839424,
- -0.03798796981573105,
- 0.022360965609550476,
- -0.05914267152547836,
- -0.0177296195179224,
- -0.007707717828452587,
- 0.04574831947684288,
- 0.06576582044363022,
- -0.044752124696969986,
- 0.05512161925435066,
- 0.050899896770715714,
- 0.035194482654333115,
- 0.01364146452397108,
- 0.0426316000521183,
- 0.04960821568965912,
- -0.0362665168941021,
- 0.03612588718533516,
- -0.004759719595313072,
- -0.06825335323810577,
- 0.0651119127869606,
- 0.02654642052948475,
- -0.09709598869085312,
- -0.045040734112262726,
- -0.00737987644970417,
- 0.02970024198293686,
- -0.05873572453856468,
- 0.04797127842903137,
- 0.03506212309002876
- ]
- },
- {
- "keyword": "technology",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.05168354883790016,
- 0.07856634259223938,
- -0.02426094375550747,
- -0.02953873760998249,
- -0.040776241570711136,
- -0.027009189128875732,
- 0.12729588150978088,
- 0.10969381779432297,
- 0.00035409879637882113,
- 0.012899505905807018,
- 0.0528048574924469,
- 0.01187769416719675,
- 0.036112356930971146,
- 0.021446261554956436,
- -0.06667198240756989,
- -0.043419551104307175,
- -0.03504394739866257,
- -0.10404174774885178,
- -0.06759018450975418,
- -0.09439969062805176,
- -0.0042667267844080925,
- 0.004757754039019346,
- 0.029305314645171165,
- -0.00361218792386353,
- -0.02436228096485138,
- 0.061299458146095276,
- -0.0481591671705246,
- -0.08716797083616257,
- 0.02968544512987137,
- -0.036045439541339874,
- -0.05316190421581268,
- 0.12557585537433624,
- 0.009900038130581379,
- -0.013951802626252174,
- -0.08975434303283691,
- 0.0041747200302779675,
- 0.044673170894384384,
- -0.008279792033135891,
- 0.04477497562766075,
- -0.05497526749968529,
- -0.03473757207393646,
- -0.11734496057033539,
- -0.0002094484807457775,
- -0.0352688767015934,
- 0.019780801609158516,
- 0.026256823912262917,
- -0.008358431048691273,
- -0.024801654741168022,
- -0.0687132254242897,
- 0.02603691816329956,
- -0.09962384402751923,
- -0.0332394503057003,
- 0.037232398986816406,
- -0.011208754032850266,
- -0.036277011036872864,
- -0.06114064157009125,
- 0.04311491549015045,
- 0.00648540398105979,
- 0.027773931622505188,
- -0.028990907594561577,
- 0.09317270666360855,
- -0.015689421445131302,
- -0.09565160423517227,
- 0.009436097927391529,
- 0.11534737050533295,
- 0.017425742000341415,
- -0.0411219522356987,
- 0.035384707152843475,
- -0.04018804803490639,
- -0.03257162868976593,
- 0.0001847294479375705,
- 0.01748427003622055,
- -0.03035913035273552,
- 0.03534381836652756,
- 0.05610246956348419,
- -0.06306522339582443,
- 0.018696270883083344,
- 0.05457622930407524,
- 0.05938734486699104,
- -0.014613660983741283,
- 0.06699954718351364,
- 0.0029414575546979904,
- -0.03907301276922226,
- 0.012498067691922188,
- -0.025081997737288475,
- -0.008760509081184864,
- -0.028801681473851204,
- 0.024050397798419,
- 0.005376487970352173,
- -0.027383260428905487,
- -0.029689591377973557,
- -0.00996683444827795,
- -0.009558728896081448,
- 0.010809446685016155,
- -0.042779404670000076,
- -0.03052358143031597,
- -0.02529720589518547,
- -0.07039336115121841,
- -0.011354592628777027,
- 0.2141324281692505,
- -0.012350748293101788,
- 0.02547222562134266,
- -0.04023899510502815,
- 0.018128052353858948,
- -0.049082208424806595,
- -0.06670454144477844,
- -0.032649051398038864,
- 0.03810517117381096,
- 0.061850063502788544,
- -0.04557442292571068,
- -0.07875809818506241,
- -0.008082140237092972,
- -0.06353158503770828,
- 0.005480480846017599,
- -0.008788035251200199,
- 0.030875159427523613,
- 0.0074960896745324135,
- 0.037133969366550446,
- 0.056434355676174164,
- -0.021709920838475227,
- -0.03327653929591179,
- 0.0007767679635435343,
- -0.03790361434221268,
- -0.027981210500001907,
- -0.021559450775384903,
- -0.12558230757713318,
- -0.028988245874643326,
- -5.9578829145473746e-33,
- -0.007864023558795452,
- 0.002603479428216815,
- 0.0028265160508453846,
- 0.08460899442434311,
- -0.02569306455552578,
- 0.035734016448259354,
- -0.03588961809873581,
- -0.03138086944818497,
- -0.01678171195089817,
- -0.014678040519356728,
- 0.020123597234487534,
- 0.036101214587688446,
- -0.026715900748968124,
- 0.025374237447977066,
- 0.19804982841014862,
- -0.04244999960064888,
- -0.018936019390821457,
- 0.05473865941166878,
- 0.04276486113667488,
- 0.02752317301928997,
- -0.040787223726511,
- -0.0007329731597565114,
- 0.0335969477891922,
- 0.024203183129429817,
- 0.03106044977903366,
- -0.03294094279408455,
- -0.029744699597358704,
- -0.003072761232033372,
- 0.0456484779715538,
- 0.028363047167658806,
- -0.0011023764964193106,
- 0.0663505271077156,
- -0.006032594479620457,
- -0.09865085035562515,
- 0.021563127636909485,
- -0.019691184163093567,
- 0.03414840251207352,
- -0.13811449706554413,
- 0.08243894577026367,
- 0.009277992881834507,
- -0.02745104394853115,
- 0.026615994051098824,
- -0.013000352308154106,
- 0.02952674776315689,
- 0.027763625606894493,
- 0.012331794016063213,
- 0.10335143655538559,
- 0.02796161361038685,
- -0.08215116709470749,
- 0.03098202683031559,
- -0.011941943317651749,
- 0.07391681522130966,
- -0.012801742181181908,
- -0.08417629450559616,
- 0.10225275158882141,
- 0.006494427099823952,
- 0.029909780248999596,
- 0.010064096190035343,
- 0.03964356333017349,
- 0.014171924442052841,
- 0.043393757194280624,
- 0.03662385046482086,
- -0.029406290501356125,
- 0.012167672626674175,
- -0.00468018651008606,
- 0.04777669906616211,
- 0.046507637947797775,
- 0.01809808984398842,
- 0.049037907272577286,
- 0.0068489667028188705,
- -0.05519048124551773,
- -0.050386447459459305,
- 0.04928344488143921,
- 0.006146097090095282,
- -0.028386889025568962,
- 0.04343022033572197,
- 0.04229957237839699,
- 0.018780797719955444,
- -0.0404210202395916,
- 0.0008482818375341594,
- -0.10704830288887024,
- -0.02662811614573002,
- 0.0358440987765789,
- 0.01250586099922657,
- 0.004088010638952255,
- -0.013539958745241165,
- -0.019070927053689957,
- -0.08090025931596756,
- 0.03979208692908287,
- 0.04992849379777908,
- -0.03971432149410248,
- 0.0077288406901061535,
- -0.0031197385396808386,
- 0.09582546353340149,
- 0.0031089542899280787,
- 3.809726865163139e-33,
- -0.046259284019470215,
- 0.023571783676743507,
- -0.07043887674808502,
- 0.07500298321247101,
- 0.04894449561834335,
- -0.0662502571940422,
- 0.03241109475493431,
- -0.024910004809498787,
- 0.028048258274793625,
- 0.09572703391313553,
- -0.026008697226643562,
- -0.010877257212996483,
- 0.0047549959272146225,
- 0.011592754162847996,
- -0.0012383045395836234,
- -0.03679725527763367,
- 0.061475638300180435,
- -0.08847669512033463,
- -0.02440936118364334,
- 0.0069966125302016735,
- -0.005325941368937492,
- -0.014535423368215561,
- -0.04983318969607353,
- -0.008837161585688591,
- -0.06428640335798264,
- 0.05684781074523926,
- -0.1149454340338707,
- -0.0671038031578064,
- -0.0005323095829226077,
- -0.002644763793796301,
- -0.014352147467434406,
- -0.08622492104768753,
- 0.021367525681853294,
- 0.05986550450325012,
- 0.009650099091231823,
- 0.07021287828683853,
- 0.0783659964799881,
- -0.005423704627901316,
- -0.015915624797344208,
- -0.0818660631775856,
- 0.08138338476419449,
- 0.023501155897974968,
- -0.07535609602928162,
- 0.08535701781511307,
- -0.05011048913002014,
- -0.009890480898320675,
- -0.05405721440911293,
- 0.03940385580062866,
- 0.026847029104828835,
- -0.01697174273431301,
- 0.1223832294344902,
- -0.01015961728990078,
- 0.07071719318628311,
- -0.14009137451648712,
- -0.04725494980812073,
- 0.05463636666536331,
- 0.04420384392142296,
- 0.01363938394933939,
- -0.0659184604883194,
- 0.028139229863882065,
- 0.005527890753000975,
- -0.038289036601781845,
- 0.01225563045591116,
- 0.06689511239528656,
- -0.06576558947563171,
- 0.03514871746301651,
- 0.05316512659192085,
- 0.07230034470558167,
- 0.026811804622411728,
- 0.009660494513809681,
- 0.11660037189722061,
- 0.04365454986691475,
- -0.033120445907115936,
- -0.00412309356033802,
- -0.025026127696037292,
- -0.008280002512037754,
- -0.07681465893983841,
- 0.01781257800757885,
- -0.04872562363743782,
- 0.005820522550493479,
- 0.00962783582508564,
- -0.014163777232170105,
- 0.013917746022343636,
- -0.007189806550741196,
- -0.023065967485308647,
- 0.073067806661129,
- 0.008991600014269352,
- -0.06866705417633057,
- -0.06929723918437958,
- -0.09302181750535965,
- -0.09461444616317749,
- -0.06314913928508759,
- -0.017858337610960007,
- 0.06533770263195038,
- -0.03735478222370148,
- -1.2952965811052763e-8,
- 0.01529348362237215,
- -0.09701254963874817,
- 0.034663889557123184,
- -0.047864608466625214,
- -0.022502364590764046,
- 0.015400883741676807,
- 0.01634903997182846,
- 0.044670961797237396,
- -0.059788111597299576,
- 0.03017721138894558,
- -0.08218234777450562,
- 0.007600884418934584,
- 0.06666738539934158,
- 0.10907470434904099,
- 0.09800581634044647,
- 0.013416006229817867,
- -0.03657274320721626,
- -0.004353314638137817,
- -0.06562118232250214,
- -0.002974899485707283,
- 0.057739175856113434,
- -0.0005356129258871078,
- 0.03973428159952164,
- 0.03649134933948517,
- 0.02122313156723976,
- -0.020116150379180908,
- 0.04963468015193939,
- 0.06238369643688202,
- 0.04157299920916557,
- 0.054357051849365234,
- -0.02547832764685154,
- -0.011391609907150269,
- 0.008064071647822857,
- 0.050275448709726334,
- -0.01766173727810383,
- -0.038534119725227356,
- 0.030203519389033318,
- -0.04236545041203499,
- 0.07476063072681427,
- -0.022671444341540337,
- -0.031944096088409424,
- 0.055668123066425323,
- -0.028921443969011307,
- 0.06806416064500809,
- 0.008902880363166332,
- -0.05988279730081558,
- -0.010291802696883678,
- 0.00682472251355648,
- -0.04204592853784561,
- -0.02503831312060356,
- -0.020567569881677628,
- 0.061969030648469925,
- 0.019900986924767494,
- 0.0073220375925302505,
- 0.04119069501757622,
- 0.004268820397555828,
- 0.07476602494716644,
- 0.001599019393324852,
- -0.024090083315968513,
- 0.061161160469055176,
- 0.13766492903232574,
- -0.01969803310930729,
- 0.10866720974445343,
- 0.008649508468806744
- ]
- },
- {
- "keyword": "tech",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0538344569504261,
- 0.02307952009141445,
- 0.03597896918654442,
- -0.004808241035789251,
- -0.05057293549180031,
- -0.06398110091686249,
- 0.18680641055107117,
- 0.08389943093061447,
- 0.0011873694602400064,
- 0.009668691083788872,
- 0.011159349232912064,
- -0.0232906024903059,
- 0.09404309093952179,
- 0.008886189199984074,
- -0.08916404098272324,
- -0.030627461150288582,
- -0.03783297538757324,
- -0.09658114612102509,
- 0.026045240461826324,
- -0.12795840203762054,
- -0.05570570006966591,
- 0.02160230278968811,
- 0.03359820321202278,
- 0.022585831582546234,
- 0.011946504935622215,
- 0.024257643148303032,
- -0.014179777354001999,
- -0.01889827474951744,
- -0.022743036970496178,
- -0.0954766571521759,
- -0.11641569435596466,
- 0.08456989377737045,
- -0.04405908286571503,
- 0.023382721468806267,
- -0.06158258393406868,
- -0.021746762096881866,
- -0.013997101224958897,
- 0.042465079575777054,
- 0.05158961936831474,
- -0.024101294577121735,
- -0.027583271265029907,
- -0.10501211136579514,
- 0.029773958027362823,
- 0.004742476157844067,
- 0.05210746452212334,
- 0.019637463614344597,
- 0.029075119644403458,
- -0.09086354821920395,
- 0.022869708016514778,
- 0.04023822769522667,
- -0.054911963641643524,
- -0.03382809832692146,
- -0.029337512329220772,
- 0.04475663974881172,
- 0.0465480200946331,
- -0.020198345184326172,
- 0.09798622876405716,
- 0.007936639711260796,
- 0.01241376530379057,
- 0.009550852701067924,
- 0.08137495815753937,
- -0.06548848748207092,
- -0.09542334824800491,
- -0.013004574924707413,
- 0.11948485672473907,
- 0.02358279749751091,
- -0.07371866703033447,
- 0.08385156840085983,
- 0.005453192628920078,
- -0.0624626949429512,
- 0.013600016012787819,
- -0.008131707087159157,
- 0.006217137910425663,
- 0.07925940304994583,
- 0.13400763273239136,
- -0.04744361713528633,
- 0.06574375182390213,
- 0.0049103619530797005,
- 0.08875736594200134,
- 0.017105871811509132,
- 0.043475911021232605,
- -0.0398334302008152,
- -0.08150792866945267,
- 0.0016327761113643646,
- -0.0016881085466593504,
- -0.02731497772037983,
- -0.03119478188455105,
- 0.0386979803442955,
- 0.004009142983704805,
- 0.009038502350449562,
- -0.015581839717924595,
- -0.00011865976557601243,
- 0.03791295737028122,
- 0.0008571003563702106,
- -0.007499047555029392,
- -0.03253250569105148,
- -0.0429401770234108,
- -0.10564031451940536,
- -0.011878978461027145,
- 0.1885928511619568,
- 0.019436804577708244,
- 0.03439655900001526,
- -0.013705103658139706,
- 0.006560074165463448,
- -0.05857042595744133,
- -0.030230458825826645,
- -0.027079489082098007,
- 0.05486990883946419,
- 0.06697960197925568,
- 0.017113929614424706,
- -0.029017971828579903,
- 0.02320750430226326,
- -0.06299280375242233,
- 0.014387482777237892,
- -0.06097820773720741,
- 0.0983126312494278,
- -0.03817800432443619,
- 0.08149722218513489,
- 0.03668911010026932,
- -0.00778414448723197,
- 0.004996863193809986,
- 0.032456982880830765,
- -0.0867723599076271,
- 0.02562974952161312,
- 0.017934922128915787,
- -0.05102452263236046,
- -0.011797093786299229,
- -5.347512248328702e-33,
- 0.014954827725887299,
- 0.07882959395647049,
- 0.003031937638297677,
- 0.08105577528476715,
- 0.028484096750617027,
- 0.005944260396063328,
- -0.052914757281541824,
- 0.014059183187782764,
- -0.0555914081633091,
- 0.00020825827959924936,
- -0.037856508046388626,
- 0.0912579745054245,
- -0.06371188163757324,
- 0.004620085936039686,
- 0.11911463737487793,
- -0.06530340015888214,
- -0.05579204857349396,
- 0.04743083566427231,
- -0.03736253082752228,
- 0.005094248801469803,
- -0.02437196858227253,
- 0.03276343271136284,
- -0.004982669372111559,
- 0.021626193076372147,
- 0.014085480011999607,
- -0.03560621663928032,
- -0.05342879518866539,
- 0.002448767889291048,
- 0.05555746331810951,
- 0.023025935515761375,
- -0.07475794106721878,
- 0.060204144567251205,
- -0.004494005814194679,
- -0.048278048634529114,
- 0.050921157002449036,
- -0.07141152769327164,
- 0.004790625534951687,
- -0.1182016059756279,
- 0.08152912557125092,
- 0.0034576200414448977,
- -0.011648344807326794,
- 0.05877712741494179,
- 0.006154736969619989,
- 0.03563574701547623,
- 0.04102204367518425,
- -0.01595519855618477,
- 0.048873450607061386,
- 0.04632379859685898,
- -0.02079804614186287,
- 0.036843884736299515,
- -0.06496547907590866,
- 0.02095220424234867,
- 0.010744033381342888,
- -0.076816126704216,
- 0.04024884104728699,
- 0.01454940252006054,
- 0.06418265402317047,
- -0.010915194638073444,
- 0.013337286189198494,
- 0.019227398559451103,
- 0.05480048432946205,
- 0.10112284123897552,
- 0.009725509211421013,
- 0.0011246512876823545,
- -0.027315916493535042,
- 0.023275552317500114,
- 0.051557037979364395,
- 0.05803832784295082,
- 0.08406029641628265,
- 0.019079677760601044,
- -0.07544774562120438,
- 0.014956201426684856,
- 0.019782779738307,
- 0.02059854008257389,
- -0.015897944569587708,
- 0.05392153933644295,
- -0.027652660384774208,
- 0.04400794953107834,
- -0.06500507146120071,
- -0.022911999374628067,
- -0.07423319667577744,
- -0.02009539306163788,
- -0.0052453093230724335,
- 0.009149164892733097,
- 0.05589687451720238,
- 0.006178208626806736,
- -0.03123663179576397,
- -0.02793966419994831,
- 0.05021253973245621,
- -0.014185072854161263,
- -0.08340585231781006,
- -0.000936922908294946,
- 0.010309791192412376,
- 0.12879148125648499,
- -0.04320847615599632,
- 4.1728433149458826e-33,
- -0.08287818729877472,
- -0.026379743590950966,
- -0.05986528843641281,
- 0.12089264392852783,
- 0.04315301403403282,
- -0.08028082549571991,
- 0.04439765214920044,
- 0.008293116465210915,
- 0.014798476360738277,
- 0.10977824032306671,
- 0.05518276244401932,
- -0.010986777022480965,
- -0.03345610201358795,
- -0.04435551166534424,
- 0.019117698073387146,
- -0.023826835677027702,
- -0.016700992360711098,
- -0.0727565661072731,
- -0.029805833473801613,
- 0.02731006219983101,
- 0.013758243061602116,
- -0.05838505178689957,
- -0.027445383369922638,
- 0.03601234778761864,
- 0.005600016564130783,
- 0.0683109313249588,
- -0.09833630919456482,
- 0.010716740973293781,
- 0.007940609008073807,
- 0.03566005825996399,
- 0.019086958840489388,
- -0.057044535875320435,
- 0.03430131450295448,
- 0.07635487616062164,
- 0.01843358762562275,
- 0.05287894979119301,
- 0.08899018168449402,
- 0.004171955399215221,
- 0.02235337160527706,
- -0.022935669869184494,
- 0.08238276839256287,
- -0.01201582420617342,
- -0.02571895346045494,
- 0.08195548504590988,
- -0.03678538650274277,
- -0.02770102024078369,
- 0.0037684983108192682,
- 0.0015054576797410846,
- 0.0025201125536113977,
- -0.016938185319304466,
- 0.07465341687202454,
- -0.022666601464152336,
- 0.0822962075471878,
- -0.08412383496761322,
- 0.008286591619253159,
- 0.015806086361408234,
- -0.008601672947406769,
- 0.012366747483611107,
- -0.0847131535410881,
- -0.014549068175256252,
- 0.04184962809085846,
- -0.04258573055267334,
- 0.029614388942718506,
- 0.024088213220238686,
- -0.09753865003585815,
- 0.016682127490639687,
- 0.022985655814409256,
- 0.11239957809448242,
- -0.06359366327524185,
- -0.004485803656280041,
- 0.061994850635528564,
- 0.08032117038965225,
- -0.03178331255912781,
- -0.07674054056406021,
- -0.06470219045877457,
- -0.033919643610715866,
- -0.03965162858366966,
- -0.01612243615090847,
- -0.036929331719875336,
- 0.013574790209531784,
- -0.027203494682908058,
- 0.012186254374682903,
- 0.019553232938051224,
- 0.027459068223834038,
- -0.06615403294563293,
- 0.12087474018335342,
- 0.0017762610223144293,
- 0.00464999582618475,
- -0.021966230124235153,
- -0.11735741794109344,
- -0.04283697530627251,
- -0.013332664966583252,
- -0.0020599043928086758,
- -0.06132233887910843,
- -0.043053410947322845,
- -1.1279003508946062e-8,
- 0.00013933709124103189,
- -0.0024246894754469395,
- -0.05076466128230095,
- -0.07615479826927185,
- 0.0012216067407280207,
- -0.027501586824655533,
- -0.042800694704055786,
- 0.0082832807675004,
- -0.02080688811838627,
- -0.007334674242883921,
- -0.07120275497436523,
- -0.026862874627113342,
- 0.02328304387629032,
- 0.07059422135353088,
- 0.09370014816522598,
- -0.011372856795787811,
- -0.053158387541770935,
- 0.04709918797016144,
- -0.05051306262612343,
- -0.023641977459192276,
- 0.0408451072871685,
- 0.0185556560754776,
- 0.03192475810647011,
- 0.04141815006732941,
- -0.003821255639195442,
- 0.00639442540705204,
- 0.001127901254221797,
- 0.02837822027504444,
- 0.061976123601198196,
- 0.09615485370159149,
- -0.026522308588027954,
- -0.026465078815817833,
- -0.08497825264930725,
- -0.018131358548998833,
- 0.00023153878282755613,
- -0.026088165119290352,
- 0.06691524386405945,
- -0.05125842243432999,
- 0.040569402277469635,
- 0.004550971556454897,
- -0.0274034533649683,
- -0.024664554744958878,
- -0.04147718846797943,
- 0.051707081496715546,
- 0.010141545906662941,
- -0.06185024604201317,
- -0.004745109938085079,
- -0.055161893367767334,
- -0.04865109547972679,
- -0.04437674209475517,
- 0.04153726249933243,
- 0.03865187242627144,
- -0.021016526967287064,
- 0.023889221251010895,
- 0.01631762646138668,
- 0.005131426267325878,
- 0.013111424632370472,
- -0.026353735476732254,
- -0.07731916010379791,
- 0.04670585319399834,
- 0.05421573296189308,
- -0.008373232558369637,
- 0.08108627796173096,
- -0.005816623568534851
- ]
- },
- {
- "keyword": "innovation",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.058352239429950714,
- 0.029668306931853294,
- -0.04659619927406311,
- -0.038487523794174194,
- 0.007960978895425797,
- -0.005867181345820427,
- 0.037701889872550964,
- 0.04935138300061226,
- -0.008955845609307289,
- 0.01332259364426136,
- 0.06384629756212234,
- 0.04974321275949478,
- -0.008260668255388737,
- -0.04977110028266907,
- 0.0023009893484413624,
- -0.019809288904070854,
- -0.04393259808421135,
- -0.035632260143756866,
- -0.09483164548873901,
- -0.1016279086470604,
- -0.030532240867614746,
- -0.02382517047226429,
- 0.05314187332987785,
- 0.013428145088255405,
- -0.03935883194208145,
- 0.0937727689743042,
- -0.019529080018401146,
- -0.02916778065264225,
- 0.06995531916618347,
- -0.08850354701280594,
- 0.009825428947806358,
- 0.08744769543409348,
- 0.037466417998075485,
- -0.08596088737249374,
- 0.012809674255549908,
- 0.02490195818245411,
- 0.07872363924980164,
- 0.053950175642967224,
- 0.03614567592740059,
- -0.05742578208446503,
- -0.05998529866337776,
- -0.1361188143491745,
- -0.011616519652307034,
- -0.011784114874899387,
- 0.011738445609807968,
- 0.00347918807528913,
- 0.0358571857213974,
- 0.019319122657179832,
- -0.010649868287146091,
- 0.032030485570430756,
- -0.03911810740828514,
- -0.06206269934773445,
- -0.05276641994714737,
- -0.10407736152410507,
- 0.043311625719070435,
- -0.02967650070786476,
- -0.01487224455922842,
- -0.025025807321071625,
- -0.011922217905521393,
- -0.03029024787247181,
- 0.13108164072036743,
- 0.0021007806062698364,
- 0.005725478287786245,
- 0.035141196101903915,
- 0.040991198271512985,
- -0.03325000777840614,
- -0.042712971568107605,
- 0.054067037999629974,
- -0.03429552912712097,
- -0.023385189473628998,
- 0.0699499100446701,
- -0.018124107271432877,
- 0.00321078859269619,
- -0.009420248679816723,
- 0.02357087843120098,
- -0.04793400689959526,
- 0.024687625467777252,
- 0.06386342644691467,
- 0.08673965185880661,
- 0.034011997282505035,
- 0.03184337913990021,
- -0.02921808324754238,
- -0.0454103909432888,
- 0.04980338737368584,
- -0.022129088640213013,
- -0.002993286121636629,
- -0.013280319049954414,
- -0.0435502827167511,
- 0.038576770573854446,
- -0.03957563266158104,
- -0.047599807381629944,
- 0.021041469648480415,
- -0.09810589998960495,
- -0.01673494093120098,
- -0.05641491711139679,
- 0.031765472143888474,
- -0.04482816904783249,
- -0.05893643945455551,
- 0.0019249645993113518,
- 0.2385876476764679,
- -0.004702095873653889,
- 0.06382259726524353,
- -0.01244408544152975,
- -0.03804318234324455,
- -0.016041886061429977,
- -0.04430511221289635,
- -0.04759420454502106,
- 0.0625477135181427,
- 0.06249958276748657,
- 0.021627120673656464,
- -0.03508223593235016,
- 0.014967620372772217,
- 0.029260670766234398,
- 0.054826803505420685,
- 0.03687514737248421,
- 0.03586127236485481,
- 0.016490859910845757,
- 0.006563791539520025,
- 0.009175494313240051,
- 0.01575648784637451,
- 0.06040471792221069,
- 0.020244454964995384,
- -0.04296575114130974,
- -0.0016727483598515391,
- -0.07978765666484833,
- -0.043414242565631866,
- -0.08648420125246048,
- -6.185374866894073e-33,
- -0.048974793404340744,
- 0.09655330330133438,
- 0.05147184431552887,
- 0.11170117557048798,
- -0.031514722853899,
- -0.007143192924559116,
- 0.007647161837667227,
- -0.03203335776925087,
- -0.05138171836733818,
- -0.03524516895413399,
- -0.029673544690012932,
- 0.0031817678827792406,
- 0.00748970964923501,
- 0.0511605404317379,
- 0.14627483487129211,
- -0.06888727843761444,
- -0.07999812066555023,
- -0.03200538828969002,
- 0.07238103449344635,
- -0.037390872836112976,
- -0.018920155242085457,
- -0.019966742023825645,
- 0.058599527925252914,
- -0.005958866328001022,
- 0.028222357854247093,
- -0.04188764840364456,
- 0.047717511653900146,
- -0.03259040042757988,
- 0.04521910846233368,
- 0.038605187088251114,
- 0.029955873265862465,
- 0.07927312701940536,
- -0.025093315169215202,
- -0.009992169216275215,
- -0.10348925739526749,
- -0.04635648801922798,
- 0.01411447674036026,
- -0.15666015446186066,
- 0.05365777015686035,
- 0.01055967528373003,
- -0.03444486856460571,
- -0.025610139593482018,
- -0.04111624136567116,
- 0.02596079558134079,
- 0.037369463592767715,
- 0.05937572941184044,
- 0.04559526965022087,
- 0.014660054817795753,
- 0.017877183854579926,
- -0.017253762111067772,
- -0.051368169486522675,
- 0.04343465343117714,
- -0.047523654997348785,
- -0.06483901292085648,
- 0.08340878039598465,
- -0.045940838754177094,
- -0.047054409980773926,
- 0.009124631993472576,
- 0.07430746406316757,
- 0.009526325389742851,
- 0.01209457591176033,
- 0.06447238475084305,
- -0.058049675077199936,
- 0.102298803627491,
- -0.011678087525069714,
- 0.08514700084924698,
- 0.11335355043411255,
- -0.029602402821183205,
- 0.04722295328974724,
- 0.010650879703462124,
- -0.011410004459321499,
- -0.05242516100406647,
- -0.04721018671989441,
- 0.021104326471686363,
- -0.04770665615797043,
- -0.030172016471624374,
- -0.06320010870695114,
- 0.031140869483351707,
- 0.03142339736223221,
- 0.02033187262713909,
- -0.03407074138522148,
- 0.011362157762050629,
- -0.006793125066906214,
- 0.05343249440193176,
- 0.0004550411249510944,
- 0.012626421637833118,
- 0.013842075131833553,
- 0.009090423583984375,
- 0.0054820929653942585,
- 0.02969752624630928,
- -0.031123891472816467,
- 0.01102791354060173,
- 0.002768995938822627,
- 0.01857505552470684,
- 0.0008600066066719592,
- 4.279295716014364e-33,
- -0.006714936811476946,
- -0.008839773945510387,
- -0.019579123705625534,
- 0.08078212291002274,
- 0.03786469250917435,
- -0.04117191582918167,
- -0.028952626511454582,
- -0.057790521532297134,
- -0.01888599433004856,
- 0.0312933623790741,
- 0.032166432589292526,
- -0.04336126521229744,
- -0.023132609203457832,
- 0.05740603804588318,
- -0.013836411759257317,
- 0.008032990619540215,
- 0.04888958856463432,
- -0.06617963314056396,
- -0.0031525478698313236,
- 0.01140647754073143,
- 0.08636732399463654,
- -0.026074668392539024,
- -0.028050478547811508,
- 0.020282112061977386,
- 0.009181385859847069,
- 0.03526420518755913,
- -0.09788810461759567,
- -0.03411583602428436,
- -0.021249646320939064,
- -0.008561239577829838,
- 0.03135206177830696,
- -0.05516950413584709,
- -0.03402312099933624,
- 0.08003450185060501,
- 0.05508023127913475,
- 0.12115805596113205,
- 0.06996851414442062,
- -0.037621475756168365,
- 0.008865822106599808,
- -0.03237282112240791,
- -0.002580531407147646,
- -0.04086693376302719,
- -0.004488729871809483,
- 0.08793708682060242,
- 0.031732723116874695,
- -0.01867618039250374,
- 0.00013940324424766004,
- 0.007274844218045473,
- 0.007121332921087742,
- -0.01932353712618351,
- 0.07709775865077972,
- 0.006242967676371336,
- -0.012323484756052494,
- -0.14785169064998627,
- -0.029435642063617706,
- 0.06701400130987167,
- 0.06762024760246277,
- -0.0009769947500899434,
- 0.0010248773032799363,
- 0.02321656420826912,
- 0.03537562116980553,
- 0.012477315030992031,
- -0.03978709131479263,
- 0.016542945057153702,
- -0.028747709468007088,
- 0.03535264730453491,
- 0.01183719839900732,
- 0.048023615032434464,
- 0.015944041311740875,
- -0.07530596852302551,
- 0.06677558273077011,
- -0.017254745587706566,
- -0.130610391497612,
- -0.02861366607248783,
- -0.09471214562654495,
- 0.01932384818792343,
- -0.01380010787397623,
- -0.041300173848867416,
- -0.08526819944381714,
- -0.014025356620550156,
- -0.08533476293087006,
- -0.04167483374476433,
- 0.06861240416765213,
- -0.01927303522825241,
- -0.04344303533434868,
- 0.07488253712654114,
- -0.025867529213428497,
- -0.012839059345424175,
- -0.046072449535131454,
- -0.033290814608335495,
- -0.07713769376277924,
- 0.03790080547332764,
- -0.1329481154680252,
- 0.04185876250267029,
- 0.02655472420156002,
- -1.2993774056724305e-8,
- -0.013803726993501186,
- -0.022398725152015686,
- 0.0612306110560894,
- 0.0018210804555565119,
- 0.0033158492296934128,
- 0.007539097685366869,
- -0.03487180545926094,
- 0.03225606679916382,
- -0.005361051298677921,
- -0.0008606293704360723,
- -0.06239817664027214,
- 0.0541885606944561,
- 0.03349018469452858,
- 0.13252902030944824,
- 0.05864492058753967,
- 0.03441157937049866,
- -0.03433036059141159,
- 0.014227617532014847,
- -0.05145164206624031,
- -0.007184094283729792,
- 0.0757235586643219,
- 0.10531914979219437,
- 0.0030457526445388794,
- -0.052184805274009705,
- -0.025317292660474777,
- -0.0008833498577587306,
- 0.06316237896680832,
- -0.03690122440457344,
- -0.022738482803106308,
- 0.04027841240167618,
- 0.0374869778752327,
- -0.00829314161092043,
- 0.004377701785415411,
- 0.02568897046148777,
- -0.03119862638413906,
- -0.04882058873772621,
- 0.0076082791201770306,
- -0.06689497083425522,
- 0.0022566209081560373,
- -0.0845307931303978,
- -0.011921396479010582,
- 0.04567874222993851,
- 0.008359094150364399,
- 0.0420471727848053,
- -0.10192549228668213,
- -0.0477960929274559,
- -0.016547484323382378,
- -0.030968785285949707,
- -0.026973577216267586,
- -0.04590381309390068,
- 0.0378088653087616,
- 0.035886090248823166,
- 0.0212516151368618,
- -0.02623208612203598,
- 0.057861700654029846,
- -0.014081113040447235,
- 0.028461065143346786,
- -0.002381683327257633,
- -0.04649277776479721,
- 0.04909532144665718,
- 0.16506542265415192,
- -0.027084846049547195,
- 0.14581084251403809,
- 0.018400931730866432
- ]
- },
- {
- "keyword": "invention",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.1291578710079193,
- 0.10004259645938873,
- 0.027962613850831985,
- -0.028295161202549934,
- -0.0538790337741375,
- 0.01921117678284645,
- 0.0934663861989975,
- 0.07565626502037048,
- -0.04737146943807602,
- 0.04987684637308121,
- 0.07604500651359558,
- 0.05660857632756233,
- 0.025477467104792595,
- -0.06095533072948456,
- -0.05743371695280075,
- -0.015928542241454124,
- -0.01095766481012106,
- -0.0012988813687115908,
- -0.1135634258389473,
- -0.061019834131002426,
- -0.041284844279289246,
- 0.012003263458609581,
- 0.07025225460529327,
- 0.047783877700567245,
- -0.06263864040374756,
- 0.08354085683822632,
- -0.03737020120024681,
- -0.05751872435212135,
- 0.08846058696508408,
- -0.0781797543168068,
- 0.015517708845436573,
- 0.006270413752645254,
- 0.006812982726842165,
- -0.03490285575389862,
- 9.472068427385238e-7,
- -0.042900100350379944,
- 0.08341766893863678,
- 0.05428444221615791,
- 0.024809077382087708,
- -0.014937062747776508,
- -0.021024473011493683,
- -0.15661926567554474,
- -0.0024172705598175526,
- -0.017599957063794136,
- 0.02155417576432228,
- 0.04132732376456261,
- 0.0529010146856308,
- 0.04980086535215378,
- 0.02399423159658909,
- 0.03910359367728233,
- -0.05126510187983513,
- -0.00490115350112319,
- -0.026982400566339493,
- -0.08077327907085419,
- 0.04892967641353607,
- -0.10618337243795395,
- -0.02337331511080265,
- 0.038045741617679596,
- 0.024879034608602524,
- -0.027667369693517685,
- 0.05602427199482918,
- 0.022107485681772232,
- -0.039178408682346344,
- 0.02545042149722576,
- 0.04958706721663475,
- 0.0015303728869184852,
- -0.025880256667733192,
- -0.0029642153531312943,
- 0.010157480835914612,
- 0.09624733030796051,
- 0.09220351278781891,
- -0.002460422459989786,
- -0.054445039480924606,
- 0.03646229952573776,
- 0.0018560491735115647,
- -0.06145090237259865,
- 0.003430950455367565,
- 0.017651883885264397,
- 0.03699232637882233,
- 0.048160575330257416,
- -0.005693539045751095,
- -0.024803966283798218,
- -0.07190055400133133,
- 0.040390174835920334,
- 0.04341421648859978,
- 0.010334674268960953,
- 0.013119867071509361,
- 0.010449160821735859,
- -0.049033623188734055,
- -0.0554337315261364,
- -0.0435718335211277,
- -0.04232746735215187,
- -0.04020613431930542,
- -0.039192456752061844,
- -0.003462193999439478,
- 0.013104542158544064,
- -0.027824459597468376,
- -0.053971897810697556,
- -0.02673349902033806,
- 0.24314479529857635,
- 0.03327013552188873,
- 0.007519703358411789,
- -0.021844379603862762,
- 0.0192548930644989,
- -0.0036670046392828226,
- -0.039809636771678925,
- -0.05221257731318474,
- -0.0499408133327961,
- 0.06449330598115921,
- 0.004334811121225357,
- -0.029327409341931343,
- -0.021657543256878853,
- -0.030312376096844673,
- 0.012749058194458485,
- -0.005533847026526928,
- -0.0022014689166098833,
- -0.0028403345495462418,
- 0.047543447464704514,
- -0.00012038756540277973,
- -0.029546063393354416,
- 0.025018345564603806,
- 0.0048956130631268024,
- -0.03705316409468651,
- 0.001586077967658639,
- -0.07589547336101532,
- -0.025045327842235565,
- -0.0016971841687336564,
- -6.050051957227412e-33,
- -0.031516142189502716,
- 0.07344071567058563,
- 0.022768737748265266,
- 0.12243523448705673,
- -0.0025909345131367445,
- -0.017285849899053574,
- -0.01379094086587429,
- -0.017063086852431297,
- 0.002198595553636551,
- -0.0038655558601021767,
- 0.03117360547184944,
- 0.0039006932638585567,
- -0.03734170272946358,
- 0.01207674853503704,
- 0.16284185647964478,
- -0.034338194876909256,
- 0.002389744156971574,
- -0.05652385205030441,
- 0.037936288863420486,
- -0.08028412610292435,
- -0.029838666319847107,
- -0.05756824091076851,
- 0.0746767669916153,
- -0.00581442192196846,
- 0.03849293291568756,
- -0.05190832167863846,
- 0.033931147307157516,
- -0.06795448064804077,
- 0.025820421054959297,
- 0.041563794016838074,
- 0.03159978240728378,
- 0.07548429816961288,
- -0.051542092114686966,
- 0.00006417162512661889,
- -0.05102263763546944,
- -0.059435926377773285,
- -0.03983930125832558,
- -0.1546204835176468,
- 0.04448288679122925,
- 0.03909281641244888,
- -0.006144621875137091,
- -0.004593393765389919,
- -0.01871543377637863,
- -0.0510190948843956,
- 0.05997079238295555,
- 0.02265249192714691,
- -0.017321553081274033,
- 0.061383191496133804,
- 0.0368732251226902,
- 0.002761431271210313,
- -0.019211793318390846,
- 0.04851800948381424,
- -0.04284578934311867,
- -0.10093890875577927,
- 0.04133659601211548,
- -0.021468155086040497,
- -0.05087140575051308,
- 0.005131206475198269,
- 0.04934429004788399,
- 0.04457523673772812,
- -0.02154316008090973,
- 0.09853657335042953,
- -0.005483992397785187,
- 0.09054223448038101,
- -0.06354040652513504,
- 0.01862441562116146,
- 0.09533149749040604,
- -0.03221355006098747,
- -0.03943667188286781,
- -0.011295808479189873,
- -0.01659785583615303,
- -0.020592527464032173,
- -0.06901483237743378,
- -0.08186311274766922,
- -0.03186360374093056,
- 0.0299926046282053,
- -0.019323784857988358,
- -0.056210361421108246,
- -0.03565994277596474,
- -0.05663277581334114,
- -0.08609489351511002,
- -0.04120645299553871,
- 0.003186795162037015,
- 0.031661588698625565,
- -0.01758437417447567,
- 0.012466007843613625,
- -0.03923702985048294,
- -0.03426888585090637,
- -0.02228141948580742,
- 0.002457280643284321,
- -0.007211961317807436,
- -0.004533662926405668,
- -0.025064771994948387,
- -0.04522094875574112,
- -0.016035523265600204,
- 3.107397643221624e-33,
- -0.045794688165187836,
- -0.03473745658993721,
- 0.02755812741816044,
- 0.054526615887880325,
- 0.09275174885988235,
- -0.05940515175461769,
- -0.03270666301250458,
- -0.0629391148686409,
- -0.07264413684606552,
- 0.0565895214676857,
- 0.013027395121753216,
- -0.04053923115134239,
- 0.016475504264235497,
- -0.005088312551379204,
- 0.030551891773939133,
- 0.05647553130984306,
- 0.042690031230449677,
- -0.0066140033304691315,
- 0.038006991147994995,
- -0.005858344491571188,
- 0.038316819816827774,
- -0.005109741818159819,
- -0.0031963323708623648,
- -0.03927988559007645,
- -0.059508368372917175,
- 0.025631938129663467,
- -0.06412393599748611,
- -0.0025865649804472923,
- -0.021882733330130577,
- 0.022242099046707153,
- -0.01578349806368351,
- -0.01343028899282217,
- -0.04099412262439728,
- 0.012560421600937843,
- -0.020328983664512634,
- 0.12882250547409058,
- 0.10480109602212906,
- -0.021497441455721855,
- -0.028603820130228996,
- -0.11790844053030014,
- 0.03525518253445625,
- 0.005851214751601219,
- 0.02649049274623394,
- 0.11924955248832703,
- 0.022667255252599716,
- -0.04629478603601456,
- -0.010433223098516464,
- 0.08139465004205704,
- 0.04234131798148155,
- 0.03599393740296364,
- 0.07164901494979858,
- 0.009135608561336994,
- 0.056808922439813614,
- -0.07245612889528275,
- -0.03261065110564232,
- 0.029557842761278152,
- 0.08310949057340622,
- -0.057401154190301895,
- 0.022872906178236008,
- 0.05079445242881775,
- 0.03032604046165943,
- 0.003226759610697627,
- -0.039756640791893005,
- 0.04340159520506859,
- -0.015621645376086235,
- -0.01770981401205063,
- 0.020143410190939903,
- 0.10083384811878204,
- -0.016377165913581848,
- -0.05782555788755417,
- 0.09312861412763596,
- 0.0859246551990509,
- -0.027215950191020966,
- -0.0488082580268383,
- -0.05973167344927788,
- 0.09965835511684418,
- -0.009072265587747097,
- 0.00427209073677659,
- -0.07948783785104752,
- 0.004802223294973373,
- 0.009411238133907318,
- -0.05554951727390289,
- 0.04034201800823212,
- -0.057819630950689316,
- -0.02291075326502323,
- -0.030876919627189636,
- 0.006406998261809349,
- -0.019452838227152824,
- -0.015308137983083725,
- 0.03240346163511276,
- -0.028546318411827087,
- 0.03616061061620712,
- -0.08749515563249588,
- 0.09505217522382736,
- 0.011987529695034027,
- -1.1959275347805942e-8,
- -0.031747087836265564,
- 0.028332265093922615,
- 0.059209879487752914,
- -0.02849704772233963,
- -0.0049998159520328045,
- -0.03317099064588547,
- 0.02997978962957859,
- 0.04443607106804848,
- -0.029577745124697685,
- -0.07595179229974747,
- -0.07381068915128708,
- 0.04304754361510277,
- 0.022888556122779846,
- 0.14954861998558044,
- 0.06902897357940674,
- -0.015269591473042965,
- -0.03427116945385933,
- 0.024639960378408432,
- -0.07397452741861343,
- -0.036444757133722305,
- 0.051041439175605774,
- 0.010501262731850147,
- 0.044582124799489975,
- -0.012996791861951351,
- -0.03947850689291954,
- -0.002302949083968997,
- 0.04270549491047859,
- -0.020371465012431145,
- 0.044398315250873566,
- 0.07646462321281433,
- 0.011674871668219566,
- -0.00518793286755681,
- 0.0022567075211554766,
- 0.004852645564824343,
- -0.015392026863992214,
- -0.022960620000958443,
- -0.05530563369393349,
- -0.05874907225370407,
- -0.031675320118665695,
- -0.10069510340690613,
- 0.010375295765697956,
- 0.04260638356208801,
- -0.06338606029748917,
- 0.015413050539791584,
- 0.01564786583185196,
- -0.04946894198656082,
- -0.03700316697359085,
- -0.093853659927845,
- -0.03793838992714882,
- 0.09537176787853241,
- 0.02406768687069416,
- 0.04611297696828842,
- 0.07556454092264175,
- 0.006631425581872463,
- 0.04775875806808472,
- 0.04857531562447548,
- 0.03479721024632454,
- -0.018587637692689896,
- -0.03989284113049507,
- -0.0066534304060041904,
- 0.10827455669641495,
- -0.004421154502779245,
- 0.0764273926615715,
- 0.05882512778043747
- ]
- },
- {
- "keyword": "science",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.007228148635476828,
- 0.07330462336540222,
- -0.012386195361614227,
- 0.052596647292375565,
- 0.002585318638011813,
- -0.038077063858509064,
- 0.036874257028102875,
- 0.0318567156791687,
- 0.04673437029123306,
- 0.049121078103780746,
- 0.037522878497838974,
- -0.05869321897625923,
- -0.05458932742476463,
- 0.024156786501407623,
- -0.1284978836774826,
- -0.025833746418356895,
- -0.08325712382793427,
- -0.0045270719565451145,
- -0.11409027129411697,
- -0.05149406939744949,
- -0.05247480422258377,
- 0.004463825840502977,
- -0.011763110756874084,
- 0.02330697700381279,
- -0.013433301821351051,
- 0.0923134908080101,
- -0.053729306906461716,
- -0.012066097930073738,
- -0.02193322405219078,
- -0.09889767318964005,
- -0.010249942541122437,
- 0.09464007616043091,
- 0.03765784576535225,
- -0.008986469358205795,
- -0.040442537516355515,
- 0.05139169469475746,
- 0.04024313762784004,
- -0.011038005352020264,
- 0.055067285895347595,
- 0.004679280798882246,
- 0.007879574783146381,
- -0.04769343510270119,
- 0.03329942747950554,
- -0.02455649897456169,
- 0.02579909935593605,
- 0.02454397641122341,
- 0.003701679175719619,
- -0.06651389598846436,
- 0.00016064585361164063,
- 0.046136524528265,
- -0.06273627281188965,
- -0.01520512718707323,
- -0.05143803358078003,
- -0.010639484971761703,
- -0.010377679020166397,
- 0.0009340615943074226,
- 0.003984514158219099,
- -0.010259516537189484,
- 0.04294529929757118,
- -0.03884909674525261,
- 0.11448642611503601,
- -0.004495639819651842,
- -0.11350325495004654,
- 0.012674515135586262,
- 0.14042235910892487,
- -0.03177983686327934,
- -0.01020933035761118,
- 0.03334368020296097,
- -0.0068820626474916935,
- 0.010914553888142109,
- 0.061917249113321304,
- 0.06535807251930237,
- 0.029386131092905998,
- 0.06749109923839569,
- 0.11663892865180969,
- -0.024250932037830353,
- 0.031442124396562576,
- -0.011711329221725464,
- 0.1325528472661972,
- -0.03199705481529236,
- 0.018123915418982506,
- -0.07423834502696991,
- -0.10322330892086029,
- 0.008790741674602032,
- 0.007342309225350618,
- 0.009176788851618767,
- 0.03391515463590622,
- -0.021526996046304703,
- -0.08409793674945831,
- 0.014411861076951027,
- -0.0005911489715799689,
- -0.042123690247535706,
- -0.03425082191824913,
- -0.007448659278452396,
- -0.09658143669366837,
- 0.06458822637796402,
- -0.00541057251393795,
- -0.12355190515518188,
- 0.047239240258932114,
- 0.21135467290878296,
- -0.039309095591306686,
- 0.05597741901874542,
- -0.07281194627285004,
- 0.10848530381917953,
- 0.011567065492272377,
- -0.08664397150278091,
- -0.02935255505144596,
- 0.005875720176845789,
- 0.051876187324523926,
- 0.0422586165368557,
- -0.023924125358462334,
- -0.0037109109107404947,
- 0.0030387225560843945,
- 0.07075335085391998,
- 0.008240985684096813,
- 0.06044314429163933,
- 0.0363321490585804,
- 0.006091895047575235,
- 0.009982913732528687,
- -0.03683893382549286,
- -0.0019060461781919003,
- 0.0011649435618892312,
- -0.01927943527698517,
- 0.0028463108465075493,
- -0.025686897337436676,
- -0.11453325301408768,
- 0.003924360498785973,
- -4.592635490169553e-33,
- 0.01639612950384617,
- -0.11172705888748169,
- 0.044612083584070206,
- 0.0714539960026741,
- 0.00027303749811835587,
- 0.015906447544693947,
- -0.01005306001752615,
- -0.07212284952402115,
- 0.0436348021030426,
- 0.011668695136904716,
- 0.013493457809090614,
- 0.09851988404989243,
- -0.008199487812817097,
- 0.015371190384030342,
- 0.08939095586538315,
- 0.03733837231993675,
- -0.02360072173178196,
- 0.050023943185806274,
- -0.03522595018148422,
- -0.022578725591301918,
- -0.05137103050947189,
- -0.01338885072618723,
- 0.018440669402480125,
- -0.027170544490218163,
- -0.011278588324785233,
- -0.020696628838777542,
- -0.04034406691789627,
- -0.07315105199813843,
- 0.021031655371189117,
- -0.0083949975669384,
- 0.020435405895113945,
- 0.10153120756149292,
- -0.03656688332557678,
- -0.026911338791251183,
- 0.0019438277231529355,
- -0.03287794440984726,
- -0.014594770036637783,
- -0.05191576108336449,
- -0.024078045040369034,
- -0.022241562604904175,
- 0.01664806716144085,
- 0.010529404506087303,
- -0.008495691232383251,
- 0.02171914465725422,
- 0.06398046761751175,
- 0.018026066944003105,
- 0.06792175024747849,
- 0.055242959409952164,
- -0.032353177666664124,
- 0.0011844426626339555,
- -0.0020233136601746082,
- -0.01932213455438614,
- 0.023755589500069618,
- -0.04908446967601776,
- 0.059586960822343826,
- 0.051448218524456024,
- 0.02474173903465271,
- -0.04357073828577995,
- -0.059583086520433426,
- -0.010493580251932144,
- 0.038792990148067474,
- 0.12166755646467209,
- 0.024862680584192276,
- -0.01626642607152462,
- 0.0007654186338186264,
- 0.007321004290133715,
- -0.06604498624801636,
- -0.009405169636011124,
- 0.09520875662565231,
- -0.060607343912124634,
- -0.09577438980340958,
- -0.02332153357565403,
- -0.03769947215914726,
- -0.014711679890751839,
- -0.02403048612177372,
- -0.00902014970779419,
- 0.018879447132349014,
- -0.019948355853557587,
- -0.01714901253581047,
- 0.007419665344059467,
- -0.0015271526062861085,
- -0.033951688557863235,
- -0.018440118059515953,
- -0.026392320170998573,
- -0.015964336693286896,
- 0.007653138134628534,
- -0.062165118753910065,
- -0.04681602492928505,
- -0.012938524596393108,
- 0.00029695304692722857,
- -0.05571096017956734,
- -0.015189291909337044,
- 0.0860082358121872,
- -0.04317960888147354,
- -0.03602581098675728,
- 2.3436067807924034e-33,
- -0.07824549823999405,
- -0.05026775225996971,
- -0.05930496007204056,
- 0.13764196634292603,
- 0.07583089917898178,
- -0.03578658401966095,
- -0.017668765038251877,
- -0.04849417880177498,
- -0.012066827155649662,
- 0.10040682554244995,
- -0.04129089415073395,
- 0.019693130627274513,
- 0.009360014460980892,
- -0.029339555650949478,
- -0.030459575355052948,
- -0.03461628034710884,
- -0.01623998023569584,
- -0.006257372908294201,
- -0.024114089086651802,
- 0.03211398422718048,
- -0.06407448649406433,
- 0.04120398312807083,
- -0.01584046334028244,
- -0.03311606124043465,
- -0.03549087792634964,
- 0.04846588149666786,
- 0.009212843142449856,
- -0.08055705577135086,
- -0.02909354865550995,
- 0.018775641918182373,
- 0.01925019919872284,
- -0.0030775691848248243,
- -0.016801225021481514,
- -0.02124023251235485,
- -0.00013425872020889074,
- 0.1509970873594284,
- 0.11520302295684814,
- -0.004155340138822794,
- 0.027282295748591423,
- -0.009607412852346897,
- 0.03430541232228279,
- 0.07043816894292831,
- 0.02682456374168396,
- 0.11970416456460953,
- -0.009311255067586899,
- -0.015386189334094524,
- 0.011314395815134048,
- 0.06090088188648224,
- -0.010817263275384903,
- 0.027486637234687805,
- 0.009803817607462406,
- -0.013689296320080757,
- -0.05749322846531868,
- -0.04544889181852341,
- 0.0751696527004242,
- -0.0000330762195517309,
- -0.043003860861063004,
- 0.00491074426099658,
- 0.009472151286900043,
- 0.06851495057344437,
- 0.05773693695664406,
- 0.02193688414990902,
- -0.00996522419154644,
- 0.09075598418712616,
- -0.1006578579545021,
- 0.02078552357852459,
- -0.004346590954810381,
- 0.1336529403924942,
- -0.013414831832051277,
- -0.0010330094955861568,
- 0.11155644059181213,
- 0.09678271412849426,
- -0.014444880187511444,
- 0.007659751921892166,
- -0.04249069467186928,
- 0.03377996385097504,
- -0.0442444309592247,
- 0.038917094469070435,
- -0.016684094443917274,
- 0.02496035397052765,
- -0.04216445982456207,
- -0.03589814901351929,
- -0.01396123692393303,
- 0.06067686900496483,
- -0.014644265174865723,
- -0.0016922338400036097,
- 0.028868207708001137,
- -0.05074692144989967,
- -0.01806376874446869,
- -0.10321097820997238,
- -0.05195475369691849,
- -0.04529279097914696,
- -0.06755979359149933,
- 0.021924560889601707,
- 0.013913816772401333,
- -1.366046831208223e-8,
- 0.05172322317957878,
- -0.09822394698858261,
- 0.0782560482621193,
- -0.09341635555028915,
- 0.06273826956748962,
- 0.10450439900159836,
- 0.01378200389444828,
- 0.038959141820669174,
- -0.029681306332349777,
- 0.01794877089560032,
- -0.02213461697101593,
- 0.07590265572071075,
- 0.010131939314305782,
- 0.06555721908807755,
- 0.05268979072570801,
- -0.05348716303706169,
- 0.01725093275308609,
- -0.04232168570160866,
- -0.06241723522543907,
- -0.007843270897865295,
- -0.047574397176504135,
- 0.02340603619813919,
- 0.023503974080085754,
- 0.011231047101318836,
- 0.0115636782720685,
- -0.04362242668867111,
- 0.08650871366262436,
- 0.07245015352964401,
- -0.015689874067902565,
- -0.006741833407431841,
- 0.0014412320451810956,
- -0.01927885413169861,
- -0.007703742012381554,
- -0.013277551159262657,
- 0.011579815298318863,
- -0.03383418917655945,
- -0.02328641712665558,
- -0.06887468695640564,
- 0.00867665559053421,
- -0.027435624971985817,
- -0.04256577417254448,
- 0.05397007614374161,
- 0.027413884177803993,
- 0.016917286440730095,
- -0.07532501965761185,
- -0.008892504498362541,
- 0.011496053077280521,
- -0.01188440341502428,
- -0.023487554863095284,
- 0.05113094300031662,
- 0.014323065988719463,
- -0.02512620948255062,
- -0.0037216271739453077,
- -0.03266020119190216,
- -0.01387188583612442,
- 0.016683043912053108,
- -0.039619170129299164,
- 0.03627588599920273,
- -0.08458945900201797,
- 0.07588686048984528,
- 0.17678089439868927,
- 0.005747347604483366,
- 0.07252903282642365,
- 0.02731550857424736
- ]
- },
- {
- "keyword": "scientific",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.00365641713142395,
- 0.051196370273828506,
- -0.02488810382783413,
- 0.09419365227222443,
- -0.021600089967250824,
- 0.010107583366334438,
- 0.02067454531788826,
- 0.05176590010523796,
- 0.039051175117492676,
- 0.05910525843501091,
- 0.009316520765423775,
- -0.08671779930591583,
- -0.02653038315474987,
- 0.04791780561208725,
- -0.11722739785909653,
- -0.034404534846544266,
- -0.08437145501375198,
- -0.08026532828807831,
- -0.09466011077165604,
- -0.061561230570077896,
- -0.07264064252376556,
- 0.026552429422736168,
- 0.05129086598753929,
- 0.002789121586829424,
- -0.030984869226813316,
- 0.058941684663295746,
- -0.06249082088470459,
- 0.008574296720325947,
- -0.006373558659106493,
- -0.044292204082012177,
- 0.011651221662759781,
- 0.12566344439983368,
- 0.047393932938575745,
- -0.028457697480916977,
- -0.046050190925598145,
- 0.06007194146513939,
- 0.020413292571902275,
- 0.038868557661771774,
- 0.06049751117825508,
- 0.01784961298108101,
- 0.006342862267047167,
- -0.08363223075866699,
- 0.0667538046836853,
- -0.005945158656686544,
- 0.012138621881604195,
- -0.001322152093052864,
- -0.03136212378740311,
- -0.05710386857390404,
- -0.04369080439209938,
- 0.07899240404367447,
- -0.12152625620365143,
- -0.027972983196377754,
- -0.03392418473958969,
- -0.009868585504591465,
- 0.01441546157002449,
- -0.013017757795751095,
- 0.052547305822372437,
- -0.07324465364217758,
- 0.012337544932961464,
- -0.015284322202205658,
- 0.11248304694890976,
- -0.00647627143189311,
- -0.13030436635017395,
- 0.009173472411930561,
- 0.13564538955688477,
- -0.002371288137510419,
- -0.014310144819319248,
- -0.06531154364347458,
- -0.013586987741291523,
- 0.030822644010186195,
- 0.06464465707540512,
- 0.055206090211868286,
- 0.010049990378320217,
- 0.08270357549190521,
- 0.09412416815757751,
- -0.004230018239468336,
- 0.0239168182015419,
- 0.020991584286093712,
- 0.12523490190505981,
- 0.016435667872428894,
- 0.07465571910142899,
- -0.04964817315340042,
- -0.07487072050571442,
- 0.024293487891554832,
- 0.015507705509662628,
- -0.05247902870178223,
- 0.04396848380565643,
- -0.016507474705576897,
- -0.09484461694955826,
- 0.03777752444148064,
- 0.013006615452468395,
- -0.0382625050842762,
- -0.03122340701520443,
- -0.016290320083498955,
- -0.08581376820802689,
- 0.08282049000263214,
- -0.004666877444833517,
- -0.10593628883361816,
- 0.03329317271709442,
- 0.1965138167142868,
- -0.01776808314025402,
- 0.05765329301357269,
- -0.03002059832215309,
- 0.08729662746191025,
- -0.0060779377818107605,
- -0.08790314197540283,
- 0.005147674586623907,
- -0.005516376346349716,
- 0.041296932846307755,
- 0.006774276029318571,
- -0.01817065104842186,
- 0.042744871228933334,
- -0.05934794619679451,
- 0.04752727225422859,
- -0.01708013378083706,
- 0.04077569767832756,
- 0.01407946553081274,
- 0.032730452716350555,
- 0.03326258435845375,
- -0.026812873780727386,
- -0.019694460555911064,
- 0.021381650120019913,
- -0.011181417852640152,
- -0.014326434582471848,
- -0.008256549015641212,
- -0.08331315219402313,
- -0.004615744575858116,
- -5.393081021522297e-33,
- -0.025985293090343475,
- -0.057829275727272034,
- 0.04233849048614502,
- 0.05670425668358803,
- -0.021366514265537262,
- 0.01797338016331196,
- -0.049399908632040024,
- -0.09558148682117462,
- 0.0082251513376832,
- -0.007136157248169184,
- 0.0023189769126474857,
- 0.09558559209108353,
- -0.0013403198681771755,
- 0.024236397817730904,
- 0.08790092170238495,
- -0.0044609797187149525,
- -0.011498586274683475,
- 0.04175197333097458,
- -0.07990994304418564,
- -0.02408311329782009,
- 0.018758779391646385,
- 0.02497238479554653,
- 0.029010441154241562,
- -0.0324021577835083,
- -0.037394288927316666,
- -0.07952684909105301,
- -0.05239612236618996,
- -0.07221116870641708,
- 0.027443520724773407,
- 0.004727207124233246,
- 0.015305677428841591,
- 0.028323711827397346,
- -0.0012463737512007356,
- -0.033041223883628845,
- 0.02210480347275734,
- -0.06602410227060318,
- 0.03112092614173889,
- -0.057849086821079254,
- -0.011189823038876057,
- 0.0032874401658773422,
- 0.007743545342236757,
- 0.02180606871843338,
- -0.0077710459008812904,
- 0.01687960885465145,
- 0.062150683254003525,
- 0.0508849062025547,
- 0.0381951779127121,
- 0.004802216775715351,
- -0.07962305843830109,
- -0.008845807984471321,
- 0.017574185505509377,
- 0.002438341034576297,
- 0.023774048313498497,
- -0.013896425254642963,
- 0.055562421679496765,
- 0.0525653101503849,
- -0.018063291907310486,
- -0.025058377534151077,
- -0.09028692543506622,
- 0.013792788609862328,
- 0.06768011301755905,
- 0.12580493092536926,
- -0.014916626736521721,
- -0.01590726338326931,
- 0.020355399698019028,
- 0.0038815324660390615,
- 0.013689834624528885,
- 0.01070000696927309,
- 0.0811695083975792,
- -0.035011984407901764,
- -0.07171230018138885,
- -0.03208380937576294,
- -0.008649668656289577,
- 0.02039511688053608,
- -0.05953564867377281,
- -0.021191291511058807,
- 0.013698513619601727,
- -0.013355371542274952,
- 0.012801270000636578,
- 0.009118517860770226,
- -0.031069079414010048,
- -0.003748224349692464,
- -0.023061413317918777,
- -0.021075615659356117,
- 0.0074178003706038,
- 0.017717793583869934,
- -0.042981624603271484,
- 0.003771002171561122,
- 0.04290314391255379,
- -0.003361473325639963,
- -0.02192949876189232,
- -0.03329581022262573,
- 0.07189632952213287,
- -0.03747754916548729,
- -0.04751367121934891,
- 3.4470967761680486e-33,
- -0.12427087873220444,
- -0.07567872107028961,
- -0.04557937756180763,
- 0.16633044183254242,
- 0.04304687678813934,
- -0.026998920366168022,
- -0.03885062411427498,
- -0.044909875839948654,
- -0.0016353371320292354,
- 0.060381341725587845,
- -0.016889184713363647,
- 0.0014999390114098787,
- 0.019822968170046806,
- -0.01864492893218994,
- -0.026583613827824593,
- -0.016321642324328423,
- -0.039965223520994186,
- 0.025148073211312294,
- -0.05386105924844742,
- 0.04661830887198448,
- -0.048166338354349136,
- 0.01340887788683176,
- -0.012757960706949234,
- -0.0320197157561779,
- -0.0418226458132267,
- 0.05734450742602348,
- 0.02484051138162613,
- -0.029524685814976692,
- -0.03882337361574173,
- 0.007384395692497492,
- 0.0055915676057338715,
- -0.023703137412667274,
- -0.028142960742115974,
- -0.007316236384212971,
- 0.0016276597743853927,
- 0.141713485121727,
- 0.1182413324713707,
- 0.012461235746741295,
- 0.010954338125884533,
- -0.006221630144864321,
- 0.02930586226284504,
- 0.09678348898887634,
- -0.05819708853960037,
- 0.06572256237268448,
- 0.020101718604564667,
- 0.016766170039772987,
- 0.005982599686831236,
- 0.0531667023897171,
- -0.00345409638248384,
- 0.01599595695734024,
- -0.005290312692523003,
- 0.0036986409686505795,
- -0.08631794899702072,
- -0.11379382759332657,
- 0.00888107344508171,
- -0.06775543838739395,
- -0.046814702451229095,
- 0.0024536082055419683,
- -0.037046585232019424,
- 0.0638561025261879,
- 0.05350537598133087,
- 0.018099231645464897,
- -0.0010814283741638064,
- 0.10944145172834396,
- -0.09029729664325714,
- 0.0029239142313599586,
- 0.01071005966514349,
- 0.11289523541927338,
- -0.048321500420570374,
- -0.03375362604856491,
- 0.08648799359798431,
- 0.04198766127228737,
- -0.03401441127061844,
- 0.004511354025453329,
- 0.017140230163931847,
- 0.03195439651608467,
- -0.04839533567428589,
- 0.00995719712227583,
- -0.025971850380301476,
- 0.038086820393800735,
- -0.054964497685432434,
- -0.04748005419969559,
- -0.011893678456544876,
- -0.02291676215827465,
- -0.02313849702477455,
- -0.01671607419848442,
- 0.018140999600291252,
- -0.04238021373748779,
- -0.06673771142959595,
- -0.09479420632123947,
- -0.03338779881596565,
- -0.06252802908420563,
- -0.10545622557401657,
- -0.010569836013019085,
- 0.0157018955796957,
- -1.3092133599457156e-8,
- 0.08946754783391953,
- -0.05620235949754715,
- 0.07014163583517075,
- -0.04302181303501129,
- 0.06603384017944336,
- 0.059482142329216,
- -0.026066744700074196,
- 0.008533877320587635,
- -0.025310520082712173,
- 0.050697192549705505,
- 0.0331808477640152,
- 0.032069433480501175,
- 0.0005087523604743183,
- 0.10505130887031555,
- 0.039348240941762924,
- -0.0593067966401577,
- 0.001593960914760828,
- 0.010904322378337383,
- -0.06448383629322052,
- 0.05664889141917229,
- -0.014791306108236313,
- 0.04599454998970032,
- 0.023935513570904732,
- 0.03291751444339752,
- 0.013882920145988464,
- -0.04054931178689003,
- 0.056102268397808075,
- 0.06374787539243698,
- -0.020964501425623894,
- 0.03627995029091835,
- 0.013168775476515293,
- 0.026923974975943565,
- -0.044122468680143356,
- -0.013528569601476192,
- 0.04361104592680931,
- -0.06946250796318054,
- 0.03553707152605057,
- -0.048225320875644684,
- 0.0068780360743403435,
- 0.015351064503192902,
- -0.022571315988898277,
- 0.022940736263990402,
- 0.01953963376581669,
- 0.029681358486413956,
- -0.017430724576115608,
- 0.017596442252397537,
- 0.028940027579665184,
- 0.03387580066919327,
- -0.012362820096313953,
- 0.03869011253118515,
- -0.005272382404655218,
- -0.033705346286296844,
- 0.027808211743831635,
- -0.014328209683299065,
- -0.03926416486501694,
- 0.023090124130249023,
- -0.058533813804388046,
- 0.021584926173090935,
- -0.11405299603939056,
- 0.05363155156373978,
- 0.1860339343547821,
- 0.005341610871255398,
- 0.09773717075586319,
- 0.023958994075655937
- ]
- },
- {
- "keyword": "research",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.006806263234466314,
- 0.08299048244953156,
- -0.04965953528881073,
- 0.06493063271045685,
- 0.008715648204088211,
- 0.0006816184031777084,
- 0.029886184260249138,
- 0.0853307768702507,
- 0.03767406567931175,
- 0.049060557037591934,
- -0.004675914067775011,
- 0.031139155849814415,
- 0.005775340832769871,
- 0.040955524891614914,
- -0.010571756400167942,
- -0.0032963419798761606,
- 0.03718575835227966,
- -0.05497545376420021,
- -0.09662792831659317,
- -0.08175791054964066,
- -0.06418360024690628,
- -0.0691761001944542,
- 0.08797550201416016,
- 0.03183647245168686,
- -0.04186294972896576,
- 0.03586588054895401,
- -0.059095945209264755,
- -0.021677618846297264,
- 0.05144493654370308,
- -0.009794102981686592,
- 0.02379736676812172,
- 0.09920132905244827,
- 0.0518064945936203,
- 0.0073980060406029224,
- -0.0038244607858359814,
- 0.05867346003651619,
- 0.045869626104831696,
- 0.1291080117225647,
- 0.0420418456196785,
- 0.00790221244096756,
- -0.06448306143283844,
- -0.04255099594593048,
- 0.052014343440532684,
- -0.010020441375672817,
- -0.0053148409351706505,
- -0.020564110949635506,
- -0.006571362726390362,
- 0.018893824890255928,
- -0.07097253203392029,
- 0.07026423513889313,
- -0.1152685135602951,
- -0.03086230158805847,
- 0.028764711692929268,
- -0.0590682215988636,
- -0.005898209288716316,
- 0.005017752759158611,
- -0.030138587579131126,
- -0.059535715728998184,
- 0.028331568464636803,
- -0.008457425981760025,
- 0.12005334347486496,
- -0.0034236283972859383,
- -0.11989173293113708,
- 0.0010008631506934762,
- 0.053124990314245224,
- 0.00046130907139740884,
- 0.00018861499847844243,
- -0.02845664881169796,
- -0.0539083294570446,
- -0.05406390130519867,
- 0.0004969000001437962,
- 0.017497846856713295,
- -0.030718130990862846,
- 0.07708536833524704,
- 0.10036137700080872,
- 0.01592767797410488,
- -0.031091233715415,
- 0.012876416556537151,
- 0.10886746644973755,
- -0.07109181582927704,
- 0.08797410875558853,
- -0.009815060533583164,
- -0.0004611352924257517,
- 0.07730624079704285,
- -0.07593058794736862,
- -0.04352721944451332,
- 0.03247660771012306,
- -0.0042291684076189995,
- -0.026124607771635056,
- 0.02603936567902565,
- 0.04071098193526268,
- -0.0028025403153151274,
- -0.004575352184474468,
- -0.01935223862528801,
- -0.04886993393301964,
- 0.0006260949885472655,
- 0.014434508047997952,
- -0.08118546009063721,
- 0.04388034716248512,
- 0.2459045648574829,
- 0.038779303431510925,
- 0.016441596671938896,
- 0.02074074186384678,
- -0.003041723743081093,
- -0.06189455837011337,
- -0.028270162642002106,
- -0.055816926062107086,
- -0.013620641082525253,
- 0.05463679879903793,
- 0.03839825466275215,
- -0.07566320151090622,
- -0.014804213307797909,
- -0.060089509934186935,
- 0.03652296960353851,
- 0.047735556960105896,
- -0.040590621531009674,
- -0.04551541060209274,
- 0.02074243687093258,
- 0.020659448578953743,
- 0.022680776193737984,
- -0.016419606283307076,
- -0.03358012065291405,
- 0.012025804258883,
- -0.037613995373249054,
- -0.018858395516872406,
- -0.0713101401925087,
- -0.0722314864397049,
- -5.650830933143131e-33,
- -0.04749109223484993,
- -0.05089901387691498,
- 0.008914493955671787,
- 0.1111815869808197,
- -0.027746722102165222,
- -0.020455893129110336,
- -0.04287233576178551,
- -0.04857105016708374,
- -0.010488646104931831,
- -0.03575273975729942,
- 0.027485886588692665,
- 0.000019454795619822107,
- -0.0096812155097723,
- 0.03288610652089119,
- 0.08415114879608154,
- -0.005275116302073002,
- -0.06274574249982834,
- 0.04516899213194847,
- -0.0993599221110344,
- -0.0090235136449337,
- 0.005068145226687193,
- -0.0330384187400341,
- 0.06642486155033112,
- 0.03151201084256172,
- 0.0016949144192039967,
- -0.0527813546359539,
- -0.05275692418217659,
- -0.0893830880522728,
- 0.016062356531620026,
- 0.03124072775244713,
- 0.03676740080118179,
- 0.023429399356245995,
- -0.06770481169223785,
- -0.0660126730799675,
- -0.009487270377576351,
- 0.08107072860002518,
- 0.025167420506477356,
- -0.047011155635118484,
- 0.028489278629422188,
- -0.0036414340138435364,
- -0.01313861459493637,
- -0.012581847608089447,
- 0.017043771222233772,
- 0.026574429124593735,
- 0.022887161001563072,
- 0.04883163049817085,
- 0.00116260745562613,
- 0.01709701493382454,
- -0.029055722057819366,
- -0.04681520536541939,
- 0.025942016392946243,
- 0.06115405634045601,
- -0.09213023632764816,
- -0.07036980986595154,
- 0.07343144714832306,
- 0.09620324522256851,
- 0.0016874170396476984,
- 0.0009887132328003645,
- 0.0011611400404945016,
- 0.005589034873992205,
- 0.060065362602472305,
- 0.036684758961200714,
- -0.08271224796772003,
- -0.021686343476176262,
- 0.013736841268837452,
- 0.062396857887506485,
- 0.006198647897690535,
- -0.027922961860895157,
- 0.04507780447602272,
- -0.0013044115621596575,
- -0.030010001733899117,
- -0.02784365974366665,
- 0.01909133791923523,
- 0.0009990435792133212,
- -0.05012783780694008,
- -0.051502302289009094,
- 0.013482455164194107,
- 0.07628406584262848,
- -0.030007094144821167,
- -0.0003992259444203228,
- -0.0188613198697567,
- -0.019507765769958496,
- 0.01527502853423357,
- -0.008594208396971226,
- -0.038541048765182495,
- -0.009843351319432259,
- 0.003027087077498436,
- -0.02244553342461586,
- 0.014174767769873142,
- 0.042109809815883636,
- 0.023273158818483353,
- 0.021861867979168892,
- -0.0019310717470943928,
- 0.02770928293466568,
- -0.017708590254187584,
- 4.594237835906518e-33,
- -0.08279260993003845,
- -0.03383658081293106,
- 0.018294857814908028,
- 0.1501028835773468,
- 0.06363041698932648,
- 0.004236187785863876,
- 0.004471796564757824,
- -0.09320668131113052,
- 0.04847448319196701,
- 0.09341758489608765,
- -0.01446456927806139,
- -0.056234896183013916,
- 0.04776734486222267,
- 0.05706620216369629,
- -0.07510290294885635,
- -0.003177954815328121,
- 0.053494006395339966,
- -0.07993069291114807,
- -0.08226033300161362,
- 0.06011263653635979,
- -0.03692715987563133,
- -0.00991405826061964,
- -0.05978293716907501,
- -0.0678778886795044,
- -0.05119607225060463,
- 0.0555233471095562,
- 0.020374661311507225,
- -0.05758201330900192,
- -0.024629436433315277,
- -0.03160250931978226,
- 0.034489333629608154,
- -0.04809914156794548,
- -0.08799152821302414,
- 0.022334685549139977,
- -0.03979526460170746,
- 0.10301700234413147,
- 0.07055684924125671,
- 0.03422905504703522,
- 0.0025846329517662525,
- -0.030154429376125336,
- 0.06563844531774521,
- 0.03710343688726425,
- -0.03077678382396698,
- -0.022850191220641136,
- -0.005219346843659878,
- -0.001556440838612616,
- -0.05758107826113701,
- 0.054613981395959854,
- 0.050900012254714966,
- -0.022894196212291718,
- 0.008020691573619843,
- 0.025580300018191338,
- 0.005163207184523344,
- -0.10230554640293121,
- 0.006987114902585745,
- -0.02900654450058937,
- 0.055547479540109634,
- 0.019145021215081215,
- -0.053967177867889404,
- 0.06227762624621391,
- 0.003403004491701722,
- 0.017317892983555794,
- -0.11061981320381165,
- 0.11113132536411285,
- -0.036962199956178665,
- 0.009165727533400059,
- 0.0005770826828666031,
- 0.005754198879003525,
- 0.03623878210783005,
- -0.0157282967120409,
- 0.09234881401062012,
- 0.031498298048973083,
- -0.0160159133374691,
- 0.027387499809265137,
- 0.017149323597550392,
- 0.011832830496132374,
- -0.06275998800992966,
- -0.008579060435295105,
- -0.049537207931280136,
- -0.001902036601677537,
- -0.1154857650399208,
- -0.07454335689544678,
- -0.00263971951790154,
- 0.04476472735404968,
- -0.009090053848922253,
- 0.04284333065152168,
- -0.0024295891635119915,
- 0.012826119549572468,
- -0.11149395257234573,
- -0.07421927899122238,
- -0.03262394666671753,
- -0.07710675895214081,
- -0.09672437608242035,
- -0.024674275889992714,
- 0.02562197670340538,
- -1.3902431206247456e-8,
- 0.016936099156737328,
- -0.07309149205684662,
- 0.09430663287639618,
- 0.01256217435002327,
- 0.008017697371542454,
- 0.023074572905898094,
- -0.018625399097800255,
- 0.023383865132927895,
- -0.029182516038417816,
- 0.04869433119893074,
- -0.03721014782786369,
- 0.009579463861882687,
- -0.020492326468229294,
- 0.11849595606327057,
- 0.023934274911880493,
- -0.06069443002343178,
- 0.020846962928771973,
- 0.008300374262034893,
- -0.02224959246814251,
- 0.018760912120342255,
- -0.010818855836987495,
- 0.04363512992858887,
- 0.016714762896299362,
- 0.01109328679740429,
- 0.07333298772573471,
- 0.02693534828722477,
- 0.04590309411287308,
- 0.073684923350811,
- -0.03152195364236832,
- 0.036148801445961,
- -0.01476809848099947,
- 0.05084773898124695,
- -0.042737334966659546,
- -0.09050890803337097,
- 0.08208796381950378,
- -0.03675542026758194,
- 0.03581085801124573,
- -0.03887182101607323,
- 0.001144752255640924,
- -0.03921962529420853,
- 0.005955062806606293,
- 0.06846803426742554,
- 0.0024078995920717716,
- 0.0045994059182703495,
- -0.027302799746394157,
- 0.0654342770576477,
- -0.021893860772252083,
- 0.0585906021296978,
- 0.00989246740937233,
- 0.0014507616870105267,
- -0.019343489781022072,
- -0.02580813691020012,
- 0.04058009386062622,
- 0.07092468440532684,
- -0.008274771273136139,
- 0.04122645780444145,
- 0.03610410541296005,
- 0.012278683483600616,
- -0.02701754681766033,
- 0.019919810816645622,
- 0.240453839302063,
- -0.00014074450882617384,
- 0.03472447022795677,
- 0.0030050547793507576
- ]
- },
- {
- "keyword": "mathematics",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.011493398807942867,
- 0.02992793172597885,
- -0.024982567876577377,
- 0.02637241594493389,
- -0.1328786164522171,
- -0.021635480225086212,
- 0.05868573859333992,
- 0.03711777552962303,
- 0.062342893332242966,
- 0.028503887355327606,
- 0.0004410358960740268,
- 0.016293836757540703,
- -0.004446935839951038,
- 0.08393475413322449,
- -0.03831496089696884,
- -0.011162906885147095,
- -0.06805447489023209,
- 0.023939767852425575,
- -0.08095108717679977,
- -0.1128370612859726,
- -0.028606796637177467,
- -0.04606937989592552,
- -0.05914435163140297,
- 0.025361504405736923,
- 0.05878196284174919,
- 0.016093768179416656,
- 0.0026740694884210825,
- -0.032201800495386124,
- 0.052544768899679184,
- -0.05570496246218681,
- -0.11533483117818832,
- 0.042160820215940475,
- 0.04049929603934288,
- -0.008746693842113018,
- -0.07910799980163574,
- 0.0010676468955352902,
- 0.012568815611302853,
- 0.07575425505638123,
- 0.020886916667222977,
- 0.09558805823326111,
- -0.059216391295194626,
- -0.05957194045186043,
- 0.08230450004339218,
- 0.01129570510238409,
- 0.0037704722490161657,
- 0.030922170728445053,
- -0.018065720796585083,
- 0.02037954144179821,
- -0.023694710806012154,
- -0.020688369870185852,
- -0.0713145062327385,
- 0.03076656349003315,
- -0.1745794415473938,
- -0.00012211035937070847,
- 0.09026207774877548,
- -0.018570536747574806,
- -0.007505930028855801,
- 0.02060454897582531,
- 0.01829969510436058,
- -0.047310683876276016,
- 0.02907971292734146,
- -0.006340490188449621,
- 0.021964535117149353,
- -0.019096843898296356,
- 0.0763724148273468,
- -0.007461078464984894,
- -0.023900840431451797,
- 0.0342242531478405,
- -0.08619126677513123,
- 0.10762649774551392,
- -0.005341704934835434,
- 0.03231903538107872,
- 0.008556840941309929,
- 0.04653974249958992,
- 0.1377386450767517,
- -0.023070884868502617,
- 0.020345540717244148,
- 0.04288007691502571,
- 0.04447050765156746,
- -0.000779865134973079,
- 0.011583852581679821,
- -0.09836753457784653,
- -0.07360420376062393,
- 0.03545184060931206,
- 0.0022731339558959007,
- -0.04595211520791054,
- -0.016569970175623894,
- 0.019553977996110916,
- 0.006665367633104324,
- -0.08089275658130646,
- 0.032726407051086426,
- -0.050503380596637726,
- -0.010850192047655582,
- 0.055948007851839066,
- -0.05411893501877785,
- 0.011993181891739368,
- 0.006553520914167166,
- -0.02681436948478222,
- 0.01650981418788433,
- 0.25303420424461365,
- 0.033441487699747086,
- 0.00603012228384614,
- -0.02606109343469143,
- 0.037921082228422165,
- 0.013170207850635052,
- -0.022387834265828133,
- 0.06847692281007767,
- -0.007158758118748665,
- 0.04763105511665344,
- -0.022928830236196518,
- 0.01063913106918335,
- -0.030635228380560875,
- 0.004126348067075014,
- 0.05835261940956116,
- 0.010651405900716782,
- -0.036407534033060074,
- 0.06533333659172058,
- 0.010583539493381977,
- 0.04057979956269264,
- 0.04515726864337921,
- 0.0033729851711541414,
- 0.03842370957136154,
- 0.03328153118491173,
- -0.005348616745322943,
- 0.002295032376423478,
- 0.013331994414329529,
- -0.023218747228384018,
- -5.680627510884568e-33,
- -0.09894794970750809,
- -0.06864219158887863,
- 0.023240337148308754,
- 0.045479800552129745,
- 0.0029571298509836197,
- -0.031613465398550034,
- -0.023007972165942192,
- -0.012383160181343555,
- 0.11581353098154068,
- 0.07764915376901627,
- -0.022673718631267548,
- 0.0862865149974823,
- 0.034215621650218964,
- 0.04528841748833656,
- 0.118360236287117,
- 0.012685773894190788,
- 0.06513746082782745,
- 0.01153365708887577,
- 0.002745758043602109,
- -0.011574232019484043,
- -0.0378028079867363,
- -0.034337881952524185,
- -0.030508609488606453,
- -0.0021357068326324224,
- 0.008359074592590332,
- 0.07510212808847427,
- 0.024234876036643982,
- -0.051323890686035156,
- 0.025695959106087685,
- 0.0016895559383556247,
- 0.03422827646136284,
- 0.0749700516462326,
- -0.07863345742225647,
- -0.014061100780963898,
- -0.012971061281859875,
- -0.048250794410705566,
- 0.0017473178450018167,
- -0.018686622381210327,
- 0.08147721737623215,
- -0.048710986971855164,
- -0.032124850898981094,
- -0.009464036673307419,
- 0.01311816181987524,
- -0.02869916334748268,
- 0.049552422016859055,
- 0.04032330587506294,
- 0.1135205402970314,
- 0.06678599119186401,
- 0.02266857586801052,
- -0.009789496660232544,
- -0.09518413990736008,
- -0.033651117235422134,
- -0.011624560691416264,
- -0.043922968208789825,
- 0.08833087235689163,
- 0.012030428275465965,
- -0.007241593673825264,
- 0.021697310730814934,
- -0.026196826249361038,
- 0.046226609498262405,
- 0.0009259178768843412,
- 0.0897199735045433,
- 0.01130285020917654,
- -0.06411761790513992,
- -0.11277955025434494,
- 0.025453874841332436,
- -0.08114726841449738,
- -0.03723617643117905,
- 0.0957949161529541,
- -0.005624659825116396,
- -0.07344146817922592,
- 0.035070210695266724,
- -0.022969458252191544,
- -0.014613978564739227,
- 0.01893218792974949,
- -0.0615951269865036,
- 0.06145354360342026,
- -0.010854214429855347,
- -0.06051228940486908,
- 0.07864303141832352,
- -0.009458353742957115,
- -0.025396183133125305,
- 0.041130442172288895,
- -0.06831368058919907,
- -0.0019163956167176366,
- 0.008257526904344559,
- 0.020464332774281502,
- -0.09287624061107635,
- 0.028808211907744408,
- -0.05152245610952377,
- -0.09461398422718048,
- -0.02532738260924816,
- 0.034557219594717026,
- 0.03354183956980705,
- -0.020573629066348076,
- 2.6829934893808987e-33,
- -0.13748571276664734,
- 0.019725419580936432,
- -0.08491237461566925,
- 0.06772781163454056,
- 0.029252849519252777,
- 0.028018608689308167,
- -0.020125167444348335,
- -0.04414058104157448,
- 0.05968468263745308,
- 0.009734014980494976,
- -0.00612166291102767,
- 0.03126806020736694,
- 0.03607941046357155,
- 0.03610982745885849,
- -0.07786563783884048,
- -0.014315582811832428,
- -0.04485964775085449,
- -0.06766936182975769,
- -0.04975666105747223,
- -0.015831220895051956,
- -0.05257590860128403,
- 0.05226000398397446,
- -0.018937349319458008,
- -0.0768352821469307,
- 0.02404654771089554,
- 0.019581157714128494,
- 0.022558609023690224,
- -0.03883128985762596,
- -0.06475216150283813,
- 0.08609464019536972,
- 0.021789949387311935,
- -0.12417145818471909,
- 0.02332044206559658,
- -0.046369850635528564,
- -0.0811794325709343,
- 0.0012192745925858617,
- 0.05644463747739792,
- 0.007962445728480816,
- -0.053359195590019226,
- -0.018377747386693954,
- 0.03348229452967644,
- -0.08039943873882294,
- 0.10280358046293259,
- 0.04280858859419823,
- 0.016850145533680916,
- -0.011197562329471111,
- 0.048180222511291504,
- 0.056344907730817795,
- 0.02694367617368698,
- 0.06091563403606415,
- -0.046594440937042236,
- -0.008606214076280594,
- 0.04235022887587547,
- -0.05379081517457962,
- 0.023167554289102554,
- 0.029042212292551994,
- -0.06695444136857986,
- -0.012047125026583672,
- -0.021596264094114304,
- 0.08093695342540741,
- -0.029374247416853905,
- 0.009543602354824543,
- -0.014033067040145397,
- 0.10132545977830887,
- -0.08244059234857559,
- -0.012325973249971867,
- -0.03418353199958801,
- -0.0006599152693524957,
- -0.017929529771208763,
- -0.01179529633373022,
- 0.011469295248389244,
- 0.08340024948120117,
- -0.050828028470277786,
- 0.014079571701586246,
- -0.07604189217090607,
- 0.0018392895581200719,
- -0.0608748197555542,
- 0.0751313716173172,
- 0.002755101304501295,
- -0.032694216817617416,
- 0.03429426625370979,
- -0.023610297590494156,
- -0.01024577021598816,
- 0.04041431099176407,
- -0.09014218300580978,
- -0.01973077282309532,
- 0.12956053018569946,
- 0.0009993314743041992,
- 0.028378505259752274,
- -0.09631138294935226,
- -0.03906932845711708,
- 0.015711413696408272,
- -0.049041472375392914,
- -0.06747395545244217,
- -0.012212918139994144,
- -1.261035098565344e-8,
- -0.011135319247841835,
- 0.00875264685600996,
- 0.00426477799192071,
- -0.07147694379091263,
- 0.02068510092794895,
- 0.05962374433875084,
- 0.007404845207929611,
- 0.012089121155440807,
- -0.08155406266450882,
- 0.026957141235470772,
- 0.013903948478400707,
- 0.0744023472070694,
- -0.07286856323480606,
- 0.08450866490602493,
- 0.003252968192100525,
- -0.0070578306913375854,
- 0.057937707751989365,
- -0.04505322501063347,
- -0.017273249104619026,
- -0.03351862356066704,
- 0.02014286257326603,
- 0.01686064526438713,
- 0.04405170679092407,
- 0.017909467220306396,
- -0.002916056662797928,
- 0.04215579852461815,
- 0.03905636817216873,
- 0.0000777212917455472,
- -0.005299791693687439,
- 0.016585413366556168,
- -0.0004815664142370224,
- 0.011093148030340672,
- -0.0026643816381692886,
- -0.037886835634708405,
- -0.06021156534552574,
- 0.0066040982492268085,
- -0.0012967746006324887,
- 0.03130243718624115,
- 0.006621338427066803,
- -0.04911559075117111,
- -0.04670488461852074,
- -0.005994707811623812,
- 0.019632045179605484,
- -0.025821246206760406,
- 0.0922619104385376,
- 0.01070359442383051,
- 0.06820936501026154,
- -0.014299052767455578,
- -0.04556780308485031,
- -0.025883657857775688,
- -0.03345613554120064,
- 0.06609249114990234,
- -0.009638178162276745,
- -0.010613990016281605,
- 0.04002808779478073,
- -0.04828674718737602,
- -0.05018125846982002,
- -0.0432160384953022,
- -0.09958351403474808,
- 0.08255907148122787,
- 0.09117240458726883,
- 0.019137565046548843,
- 0.01675262674689293,
- 0.008634114637970924
- ]
- },
- {
- "keyword": "math",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.04840541258454323,
- 0.0739196389913559,
- -0.048812251538038254,
- 0.04469491168856621,
- -0.11767946183681488,
- -0.040027014911174774,
- 0.07153510302305222,
- 0.08003659546375275,
- 0.05768612399697304,
- 0.038799166679382324,
- 0.02273174561560154,
- -0.025370582938194275,
- -0.020697353407740593,
- 0.07904501259326935,
- -0.02758481353521347,
- -0.03740497678518295,
- -0.06073072552680969,
- -0.009587043896317482,
- -0.13863921165466309,
- -0.11836737394332886,
- -0.05860588699579239,
- -0.040331121534109116,
- -0.03877755254507065,
- 0.05186042562127113,
- 0.06174587085843086,
- 0.028973329812288284,
- -0.013837385922670364,
- -0.02984149381518364,
- 0.03880788013339043,
- -0.07504501193761826,
- -0.100619375705719,
- 0.05213893577456474,
- 0.08176322281360626,
- -0.02614634856581688,
- -0.0538838692009449,
- -0.026893893256783485,
- 0.0059022498317062855,
- 0.031184516847133636,
- 0.027889829128980637,
- 0.04404864087700844,
- -0.023174632340669632,
- -0.0841873288154602,
- 0.059946849942207336,
- 0.004186178091913462,
- -0.0036525086034089327,
- 0.04300057515501976,
- -0.007176252547651529,
- 0.018002081662416458,
- 0.023709336295723915,
- 0.04876949265599251,
- -0.07579220831394196,
- 0.05863283947110176,
- -0.15676887333393097,
- -0.0035277639981359243,
- 0.0835345983505249,
- 0.009296972304582596,
- -0.029461678117513657,
- 0.016933465376496315,
- 0.04740344360470772,
- -0.019453685730695724,
- 0.017319481819868088,
- 0.003971096593886614,
- -0.008922708220779896,
- -0.005201417021453381,
- 0.10300488024950027,
- -0.03835412114858627,
- -0.022648543119430542,
- 0.013783285394310951,
- -0.09025968611240387,
- 0.08146940916776657,
- -0.011104632169008255,
- 0.041309092193841934,
- 0.02209548093378544,
- 0.04565301537513733,
- 0.11785286664962769,
- -0.018043575808405876,
- 0.017891734838485718,
- 0.03214237466454506,
- 0.070573590695858,
- -0.005341637879610062,
- -0.0018443448934704065,
- -0.062463052570819855,
- -0.07837381213903427,
- 0.02662641368806362,
- 0.0358622744679451,
- -0.04383840039372444,
- 0.051732949912548065,
- 0.018936067819595337,
- 0.0291269700974226,
- -0.033719755709171295,
- 0.03165328875184059,
- -0.055055659264326096,
- 0.004513086285442114,
- 0.032576002180576324,
- -0.028390366584062576,
- 0.04277066886425018,
- -0.0036025631707161665,
- -0.029759561643004417,
- 0.0019247025484219193,
- 0.23704861104488373,
- 0.016748221591114998,
- 0.03319400176405907,
- -0.021602101624011993,
- -0.014844142831861973,
- -0.001452352968044579,
- -0.04179289937019348,
- 0.06201040744781494,
- 0.0211603082716465,
- 0.05131551995873451,
- -0.02521471306681633,
- -0.0029568923637270927,
- -0.05199778825044632,
- 0.013689668849110603,
- 0.03445569798350334,
- 0.009737953543663025,
- 0.01354893110692501,
- 0.04707992076873779,
- -0.007966890931129456,
- 0.035234786570072174,
- 0.022203220054507256,
- 0.011400389485061169,
- 0.05915863439440727,
- 0.04642951488494873,
- -0.015007483772933483,
- -0.03309332951903343,
- -0.04903487488627434,
- -0.011338937096297741,
- -3.98890820374295e-33,
- -0.08097322285175323,
- -0.08449511975049973,
- 0.008483070880174637,
- 0.040645089000463486,
- -0.025401748716831207,
- -0.021863188594579697,
- -0.04660062864422798,
- 0.005040325690060854,
- 0.07800231873989105,
- 0.08792629092931747,
- -0.02265802025794983,
- 0.09607494622468948,
- 0.0364689938724041,
- 0.019754378125071526,
- 0.16284966468811035,
- 0.029324060305953026,
- 0.020884208381175995,
- 0.05882235988974571,
- -0.03330982103943825,
- 0.006399482488632202,
- -0.02888171747326851,
- -0.010225197300314903,
- -0.03513910621404648,
- 0.012310856953263283,
- -0.017932353541254997,
- 0.017369741573929787,
- -0.0032837861217558384,
- -0.01323726586997509,
- 0.03325129300355911,
- 0.010807335376739502,
- 0.030110394582152367,
- 0.06715582311153412,
- -0.06275642663240433,
- -0.029945675283670425,
- -0.007628886494785547,
- -0.07744041830301285,
- 0.004206748213618994,
- -0.03446907922625542,
- 0.07353294640779495,
- -0.030581815168261528,
- -0.04171816632151604,
- -0.013943550176918507,
- -0.00022845229250378907,
- -0.023759575560688972,
- 0.037316206842660904,
- 0.038941532373428345,
- 0.08018600940704346,
- 0.040792401880025864,
- 0.007340400945395231,
- -0.003883936209604144,
- -0.09314360469579697,
- -0.028234923258423805,
- 0.013753063045442104,
- -0.028209911659359932,
- 0.04608231410384178,
- 0.01900211162865162,
- 0.019760210067033768,
- -0.002646730514243245,
- -0.03570133447647095,
- 0.025701330974698067,
- 0.022728603333234787,
- 0.08757874369621277,
- 0.03304142504930496,
- -0.05664435774087906,
- -0.12044317275285721,
- 0.004034313838928938,
- -0.07546170055866241,
- -0.034046974033117294,
- 0.07959772646427155,
- 0.011988567188382149,
- -0.058095645159482956,
- -0.009388887323439121,
- -0.016231877729296684,
- 0.024743400514125824,
- -0.0069405133835971355,
- -0.06424003839492798,
- 0.09216392040252686,
- 0.017723651602864265,
- -0.01723899319767952,
- 0.0633602887392044,
- 0.00015287533460650593,
- -0.012531274929642677,
- 0.055452123284339905,
- -0.02243649587035179,
- 0.012514806352555752,
- 0.026599043980240822,
- 0.003832793328911066,
- -0.08685585856437683,
- 0.04319627583026886,
- -0.0337771438062191,
- -0.04849286749958992,
- -0.030191531404852867,
- -0.000947453489061445,
- 0.037759970873594284,
- -0.030844612047076225,
- 1.7297024683525636e-33,
- -0.13667583465576172,
- 0.02079235576093197,
- -0.09577373415231705,
- 0.06217553839087486,
- 0.01367464940994978,
- 0.008822161704301834,
- 0.01824128068983555,
- -0.04779025912284851,
- 0.07137200981378555,
- 0.0363694429397583,
- -0.033935777842998505,
- 0.012472376227378845,
- 0.02736067771911621,
- 0.04258878156542778,
- -0.08032902330160141,
- 0.0014210412045940757,
- -0.04199133813381195,
- -0.09784436970949173,
- -0.059788450598716736,
- -0.00848545040935278,
- -0.07511043548583984,
- 0.018347609788179398,
- -0.009127113968133926,
- -0.049221452325582504,
- -0.008546623401343822,
- 0.018531037494540215,
- 0.014403398148715496,
- -0.03438582643866539,
- -0.04285949841141701,
- 0.012103312648832798,
- 0.01822192408144474,
- -0.10469736158847809,
- 0.018170615658164024,
- -0.05247074365615845,
- -0.09169680625200272,
- 0.035231780260801315,
- 0.05353618413209915,
- 0.004454148001968861,
- -0.0706687644124031,
- -0.022902289405465126,
- 0.07466639578342438,
- -0.06719586998224258,
- 0.07472879439592361,
- 0.09983459115028381,
- -0.007296345662325621,
- 0.01185514871031046,
- 0.09231515973806381,
- 0.04129022732377052,
- 0.03819343075156212,
- 0.043602149933576584,
- -0.061485663056373596,
- -0.012670452706515789,
- 0.0002546390169300139,
- -0.03842860460281372,
- 0.0037125430535525084,
- 0.008866936899721622,
- -0.05293288826942444,
- 0.004444892518222332,
- -0.011187752708792686,
- 0.03793151676654816,
- 0.005570891313254833,
- 0.030430855229496956,
- -0.0069607337936758995,
- 0.04940183460712433,
- -0.09832165390253067,
- -0.01073169894516468,
- -0.013700651936233044,
- 0.012790844775736332,
- -0.03436572477221489,
- 0.00465823570266366,
- 0.07638652622699738,
- 0.11295753717422485,
- -0.04643847793340683,
- 0.035193394869565964,
- -0.08394336700439453,
- -0.008526748977601528,
- -0.07301872223615646,
- 0.10577112436294556,
- 0.013350729830563068,
- -0.02642282284796238,
- 0.01673392951488495,
- -0.01395236887037754,
- -0.027432696893811226,
- 0.005401674658060074,
- -0.10949328541755676,
- 0.009870031848549843,
- 0.09398044645786285,
- -0.00784654263406992,
- 0.017617452889680862,
- -0.07184156775474548,
- -0.053621139377355576,
- 0.016992859542369843,
- -0.054150525480508804,
- -0.056493453681468964,
- -0.009532488882541656,
- -1.3179754176917413e-8,
- 0.015082188881933689,
- -0.020057253539562225,
- -0.004909905605018139,
- -0.07940255850553513,
- 0.02434246428310871,
- 0.10089148581027985,
- 0.020049458369612694,
- 0.04744061082601547,
- -0.06191867217421532,
- 0.04691752791404724,
- 0.04650463908910751,
- 0.04689318314194679,
- -0.04787754639983177,
- 0.07068917155265808,
- 0.028278358280658722,
- -0.041040271520614624,
- 0.07204977422952652,
- -0.028606140986084938,
- -0.0388663113117218,
- -0.04782131686806679,
- -0.0024596883449703455,
- 0.0009928613435477018,
- 0.05795843526721001,
- 0.038229964673519135,
- -0.030072253197431564,
- 0.03473980352282524,
- 0.047689709812402725,
- 0.08840494602918625,
- -0.0017319668550044298,
- 0.009092024527490139,
- 0.010899054817855358,
- 0.0066473218612372875,
- -0.0330987274646759,
- -0.07341013103723526,
- -0.05856473371386528,
- 0.03863845020532608,
- -0.019097311422228813,
- -0.004250064492225647,
- 0.05996398255228996,
- -0.030692359432578087,
- -0.0502353198826313,
- -0.05921362712979317,
- 0.04328431561589241,
- -0.026283273473381996,
- 0.05150219425559044,
- 0.006578678730875254,
- 0.029429364949464798,
- -0.022536251693964005,
- -0.04033656418323517,
- -0.024629246443510056,
- -0.008986135013401508,
- 0.05000577121973038,
- -0.015134942717850208,
- 0.011787286959588528,
- 0.06581851840019226,
- -0.06482836604118347,
- -0.02663308009505272,
- 0.005037168972194195,
- -0.1222139224410057,
- 0.08789560943841934,
- 0.134599968791008,
- -0.059706903994083405,
- 0.03474420681595802,
- 0.0023134821094572544
- ]
- },
- {
- "keyword": "statistics",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.04823838919401169,
- -0.01877332478761673,
- -0.03643199801445007,
- 0.07693201303482056,
- -0.028780462220311165,
- 0.031318023800849915,
- 0.06728702038526535,
- 0.05097293108701706,
- 0.03861963376402855,
- 0.06856124848127365,
- 0.0529557466506958,
- -0.02248876728117466,
- 0.009525652043521404,
- -0.012676440179347992,
- -0.05007220432162285,
- -0.029863523319363594,
- 0.02686235122382641,
- -0.013509664684534073,
- -0.11219967901706696,
- -0.08544442802667618,
- -0.08036219328641891,
- -0.043597377836704254,
- 0.029410814866423607,
- -0.04753389582037926,
- 0.057035528123378754,
- 0.017659464851021767,
- -0.054566144943237305,
- -0.013586715795099735,
- 0.010309931822121143,
- -0.06058336794376373,
- -0.038042157888412476,
- 0.04804493486881256,
- 0.1391884833574295,
- -0.024169716984033585,
- -0.04922142252326012,
- -0.13321608304977417,
- 0.009229609742760658,
- 0.039929818361997604,
- -0.01737912930548191,
- 0.04762189835309982,
- -0.040129948407411575,
- -0.026813967153429985,
- 0.05508041009306908,
- -0.014448889531195164,
- -0.050128642469644547,
- 0.04815850406885147,
- -0.05038297921419144,
- -0.020905671641230583,
- -0.03212426230311394,
- 0.12717290222644806,
- -0.07412880659103394,
- 0.03463239222764969,
- -0.05991356074810028,
- 0.005754138343036175,
- 0.08135020732879639,
- -0.03631632402539253,
- -0.06230790540575981,
- -0.057258352637290955,
- -0.014137250371277332,
- -0.018697373569011688,
- 0.0744495615363121,
- -0.0462539866566658,
- -0.048939548432826996,
- 0.05353531986474991,
- 0.09030554443597794,
- -0.005628578830510378,
- -0.035666584968566895,
- 0.035854946821928024,
- -0.05976249277591705,
- -0.009528201073408127,
- -0.05428602918982506,
- -0.008570768870413303,
- -0.0889253318309784,
- 0.053300660103559494,
- 0.11241728812456131,
- -0.0751739963889122,
- -0.05627186968922615,
- 0.007219275925308466,
- 0.06362557411193848,
- -0.07651808112859726,
- 0.027668584138154984,
- -0.06905180215835571,
- -0.022738594561815262,
- 0.08402074873447418,
- 0.09671495109796524,
- 0.011411594226956367,
- 0.06877712905406952,
- 0.10251007229089737,
- -0.05455863103270531,
- -0.03417938947677612,
- -0.012367119081318378,
- -0.0003267694264650345,
- 0.012521767988801003,
- 0.036490049213171005,
- -0.08795991539955139,
- 0.07215909659862518,
- -0.06484928727149963,
- -0.08201774954795837,
- 0.05714264139533043,
- 0.22746066749095917,
- -0.028415190055966377,
- -0.021960506215691566,
- -0.016229266300797462,
- -0.015095464885234833,
- -0.061251189559698105,
- -0.06474814563989639,
- 0.010783539153635502,
- 0.0108876284211874,
- -0.028276149183511734,
- 0.026376698166131973,
- -0.009321068413555622,
- -0.027085276320576668,
- -0.0811760202050209,
- 0.04581809788942337,
- 0.005845544394105673,
- -0.09573669731616974,
- -0.020398417487740517,
- 0.08494584262371063,
- -0.028158562257885933,
- 0.013277886435389519,
- 0.02305881306529045,
- 0.0246973168104887,
- 0.001983119174838066,
- 0.02792372927069664,
- -0.014785734005272388,
- -0.01807558164000511,
- -0.033972613513469696,
- -5.343311325392451e-33,
- -0.013655676506459713,
- -0.11834437400102615,
- -0.002655110554769635,
- 0.07291436940431595,
- -0.00615329435095191,
- 0.01316626463085413,
- -0.05588191747665405,
- -0.030730566009879112,
- 0.05757949501276016,
- 0.07065144181251526,
- -0.02620885893702507,
- 0.01573202759027481,
- -0.02339332178235054,
- 0.007346545346081257,
- 0.11697637289762497,
- 0.020051727071404457,
- 0.007402283605188131,
- 0.06101420894265175,
- -0.04772188887000084,
- -0.03089303709566593,
- 0.014068406075239182,
- 0.011895163916051388,
- 0.028072861954569817,
- 0.043138109147548676,
- 0.05481277406215668,
- -0.00570110697299242,
- -0.02075362205505371,
- -0.02363748662173748,
- 0.010813316330313683,
- 0.000883541360963136,
- 0.07894377410411835,
- 0.021482180804014206,
- -0.055345967411994934,
- -0.07057299464941025,
- 0.0012965452624484897,
- -0.07924354076385498,
- 0.018375098705291748,
- 0.025694621726870537,
- -0.017395373433828354,
- 0.008762792684137821,
- -0.08355715125799179,
- 0.006447188090533018,
- -0.023575186729431152,
- 0.006694343406707048,
- -0.046473536640405655,
- 0.013386892154812813,
- 0.0534542053937912,
- -0.014419023878872395,
- 0.06122506409883499,
- 0.004068182315677404,
- -0.08878577500581741,
- -0.0029877005144953728,
- 0.011202538385987282,
- 0.014304514043033123,
- 0.0038681793957948685,
- 0.06947244703769684,
- -0.02974134124815464,
- 0.020755412057042122,
- -0.06360248476266861,
- 0.028305454179644585,
- 0.0012702083913609385,
- 0.06257202476263046,
- -0.0012118067825213075,
- -0.06545648723840714,
- 0.023060668259859085,
- 0.08849899470806122,
- -0.027169400826096535,
- -0.012401541694998741,
- 0.038906678557395935,
- 0.023775624111294746,
- 0.03252735733985901,
- 0.006409415043890476,
- -0.05504050478339195,
- 0.0035762281622737646,
- -0.034871600568294525,
- 0.0684623196721077,
- 0.05967666581273079,
- 0.05967378616333008,
- -0.025616556406021118,
- -0.03089579939842224,
- -0.03168467432260513,
- -0.08497193455696106,
- -0.039261773228645325,
- -0.06126607954502106,
- 0.015941457822918892,
- 0.10584334284067154,
- 0.05995664745569229,
- -0.03604867681860924,
- 0.03911206126213074,
- 0.03519368916749954,
- -0.00006823642615927383,
- -0.03873053565621376,
- -0.06272642314434052,
- 0.0005395705811679363,
- -0.04680545628070831,
- 2.511075052850239e-33,
- -0.17050421237945557,
- 0.09526552259922028,
- 0.011886727064847946,
- 0.09077206254005432,
- 0.03838188201189041,
- 0.017350560054183006,
- -0.0001238820841535926,
- -0.05663641169667244,
- 0.10009580850601196,
- 0.03326994925737381,
- -0.029205968603491783,
- 0.013295955955982208,
- 0.04318071901798248,
- 0.019878126680850983,
- -0.055025093257427216,
- -0.021909665316343307,
- 0.03524521738290787,
- -0.02070445939898491,
- -0.0814412459731102,
- -0.012623002752661705,
- -0.030117487534880638,
- -0.013536019250750542,
- 0.01865357533097267,
- -0.09819494187831879,
- -0.049594003707170486,
- 0.03945904225111008,
- -0.04534599184989929,
- -0.05227971822023392,
- -0.03839933127164841,
- -0.06085124984383583,
- -0.001324385404586792,
- -0.06687845289707184,
- -0.02262589894235134,
- 0.06489107757806778,
- -0.05394161865115166,
- -0.040409818291664124,
- 0.054590824991464615,
- 0.0568762868642807,
- -0.03704870864748955,
- 0.00578593835234642,
- 0.10341209918260574,
- -0.003441179869696498,
- 0.01039381604641676,
- -0.008083260618150234,
- 0.0005683974595740438,
- 0.08871176838874817,
- 0.007098197005689144,
- 0.06752761453390121,
- 0.05852976068854332,
- -0.0569523423910141,
- -0.029672475531697273,
- 0.08198826760053635,
- -0.027567604556679726,
- 0.029332606121897697,
- -0.015016802586615086,
- 0.013267331756651402,
- -0.018481366336345673,
- -0.038971591740846634,
- -0.04993772506713867,
- 0.07235929369926453,
- 0.021577104926109314,
- -0.003907808568328619,
- -0.09307222068309784,
- 0.07318992912769318,
- -0.04143523797392845,
- -0.006159404292702675,
- -0.04736112803220749,
- -0.11071760207414627,
- -0.029837073758244514,
- 0.013535738922655582,
- 0.0646246150135994,
- 0.036051005125045776,
- -0.013191434554755688,
- -0.05417603254318237,
- -0.05064886063337326,
- -0.007474592886865139,
- -0.07117325812578201,
- 0.0070158615708351135,
- -0.027644706889986992,
- -0.00598224438726902,
- -0.039855439215898514,
- -0.10744800418615341,
- -0.011291487142443657,
- -0.03366859257221222,
- -0.017505478113889694,
- 0.010622368194162846,
- 0.11995422095060349,
- -0.06508458405733109,
- 0.016881750896573067,
- -0.016206014901399612,
- -0.059033721685409546,
- 0.035306163132190704,
- -0.028998855501413345,
- -0.06679996103048325,
- 0.0008655395358800888,
- -1.3538120846590118e-8,
- 0.04504367336630821,
- -0.03051607310771942,
- 0.02143537998199463,
- 0.010302498005330563,
- 0.07045738399028778,
- 0.07057052105665207,
- -0.03010360710322857,
- 0.05419394373893738,
- 0.0032371508423238993,
- 0.019288044422864914,
- 0.015452730469405651,
- 0.001635290333069861,
- -0.07219997048377991,
- 0.008077417500317097,
- -0.028155578300356865,
- 0.0009064232581295073,
- -0.03580388054251671,
- 0.05938718467950821,
- 0.04051635414361954,
- -0.025969762355089188,
- 0.049401260912418365,
- 0.013812829740345478,
- 0.02060684747993946,
- 0.05482402443885803,
- -0.006752259097993374,
- 0.05884765833616257,
- 0.027459777891635895,
- 0.005926015321165323,
- 0.050397247076034546,
- 0.04437561333179474,
- 0.03538975864648819,
- -0.008027018047869205,
- 0.03886017948389053,
- -0.07126988470554352,
- 0.019077284261584282,
- -0.010354413650929928,
- 0.018830085173249245,
- -0.024644093587994576,
- 0.04361296817660332,
- -0.06308156996965408,
- -0.010219525545835495,
- 0.005610787309706211,
- 0.0003540729230735451,
- 0.06973811239004135,
- 0.07858949154615402,
- 0.014965460635721684,
- 0.01810692623257637,
- -0.004288198426365852,
- 0.0364438071846962,
- -0.0395725853741169,
- 0.059155698865652084,
- -0.04300450161099434,
- 0.032433491200208664,
- 0.008884851820766926,
- 0.012715396471321583,
- 0.07006850838661194,
- 0.07226867228746414,
- -0.004321786109358072,
- -0.07434640824794769,
- -0.007764107547700405,
- 0.13754147291183472,
- -0.0204864963889122,
- 0.011248060502111912,
- -0.0022980286739766598
- ]
- },
- {
- "keyword": "algebra",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.026059044525027275,
- 0.11316682398319244,
- -0.04722073674201965,
- 0.09741543978452682,
- -0.12478195130825043,
- -0.06573844701051712,
- 0.06779120862483978,
- -0.008477317169308662,
- -0.013079595752060413,
- -0.005414330866187811,
- 0.00580213638022542,
- -0.054583676159381866,
- -0.010125190950930119,
- 0.06549623608589172,
- 0.006088345777243376,
- 0.020650247111916542,
- -0.07769057899713516,
- 0.028079768642783165,
- -0.12431975454092026,
- -0.07521570473909378,
- -0.09731375426054001,
- -0.06719208508729935,
- -0.0795656219124794,
- 0.04644619673490524,
- 0.11603986471891403,
- 0.056024398654699326,
- 0.02993052825331688,
- -0.05762346461415291,
- 0.06735511124134064,
- -0.062095560133457184,
- -0.05808175727725029,
- 0.03274422883987427,
- 0.07726076245307922,
- -0.04141315445303917,
- -0.03165626525878906,
- -0.023405607789754868,
- 0.0014093441423028708,
- 0.037937361747026443,
- 0.00826173834502697,
- -0.00020155066158622503,
- -0.0440923310816288,
- -0.06946583092212677,
- -0.007096071261912584,
- 0.05888395383954048,
- -0.04936854913830757,
- 0.0078371437266469,
- 0.06176726892590523,
- 0.04465121030807495,
- 0.04112454131245613,
- -0.00041579594835639,
- -0.08384481817483902,
- 0.02504388801753521,
- -0.19862346351146698,
- -0.006374743767082691,
- 0.05690507963299751,
- 0.011959446594119072,
- -0.02116077020764351,
- 0.03952232003211975,
- -0.002723485929891467,
- -0.06230296194553375,
- -0.0218658484518528,
- -0.014261727221310139,
- 0.011623459868133068,
- 0.0317571759223938,
- 0.026338746771216393,
- 0.012379102408885956,
- 0.03925982490181923,
- 0.01239047758281231,
- -0.06851482391357422,
- 0.00477497186511755,
- -0.025316786020994186,
- 0.015938637778162956,
- 0.018689598888158798,
- -0.014463338069617748,
- 0.11473842710256577,
- -0.028547020629048347,
- -0.01695799082517624,
- -0.039654288440942764,
- 0.09260377287864685,
- 0.03062077797949314,
- -0.04320065677165985,
- -0.043448690325021744,
- -0.053605981171131134,
- 0.007226912770420313,
- -0.002455374225974083,
- -0.03642887994647026,
- 0.030767856165766716,
- 0.048540499061346054,
- 0.049350786954164505,
- -0.02349575236439705,
- 0.041918616741895676,
- -0.032941095530986786,
- 0.0473761260509491,
- 0.012818479910492897,
- 0.01089466828852892,
- 0.03728361055254936,
- -0.002884841291233897,
- -0.019265348091721535,
- -0.011920953169465065,
- 0.25570136308670044,
- 0.031496912240982056,
- 0.02625410072505474,
- 0.002996737603098154,
- -0.021974125877022743,
- -0.06128306686878204,
- -0.006101107224822044,
- 0.03897819668054581,
- 0.01658441685140133,
- 0.03593666851520538,
- 0.05295336991548538,
- -0.05329521745443344,
- -0.04895781725645065,
- 0.030362002551555634,
- 0.03308996558189392,
- 0.032005682587623596,
- 0.07628392428159714,
- 0.0668792799115181,
- 0.0025017119478434324,
- 0.006569654680788517,
- 0.0263204388320446,
- 0.04509115591645241,
- 0.0329568050801754,
- 0.027412766590714455,
- 0.004323640838265419,
- -0.03579789400100708,
- -0.026465002447366714,
- -0.014470864087343216,
- -4.2349920686158416e-33,
- -0.02870110608637333,
- -0.041237566620111465,
- -0.026127412915229797,
- -0.020581288263201714,
- -0.035742245614528656,
- -0.051167525351047516,
- 0.011239227838814259,
- 0.009786674752831459,
- 0.024079665541648865,
- 0.0843043327331543,
- -0.027887672185897827,
- 0.08353147655725479,
- 0.03839283809065819,
- -0.01673521101474762,
- 0.07559863477945328,
- 0.07320283353328705,
- 0.04554324969649315,
- 0.00801504123955965,
- -0.017128877341747284,
- 0.017536228522658348,
- -0.026529351249337196,
- 0.0010126092238351703,
- -0.058647677302360535,
- 0.061393141746520996,
- 0.0008868224103935063,
- -0.030671801418066025,
- 0.034865643829107285,
- -0.04186904430389404,
- 0.0216811653226614,
- 0.015107675455510616,
- 0.01665264181792736,
- 0.025653406977653503,
- -0.05909323692321777,
- -0.03092033602297306,
- -0.009931230917572975,
- 0.0008980571292340755,
- 0.030343104153871536,
- -0.018222302198410034,
- 0.11119402945041656,
- -0.039032548666000366,
- 0.01196334883570671,
- -0.0810658186674118,
- 0.04969774931669235,
- -0.018805375322699547,
- 0.0290194321423769,
- 0.028785087168216705,
- 0.0494358129799366,
- 0.04129362478852272,
- 0.00009347235754830763,
- 0.08949586749076843,
- -0.044647447764873505,
- -0.019098946824669838,
- -0.008294951170682907,
- 0.0011611502850428224,
- -0.004532996099442244,
- 0.04180683195590973,
- -0.014933702535927296,
- 0.10776686668395996,
- -0.03584793210029602,
- 0.03443014621734619,
- -0.025947052985429764,
- 0.03467677906155586,
- 0.014354710467159748,
- 0.002723697340115905,
- -0.13379162549972534,
- -0.03042592667043209,
- -0.12013395130634308,
- -0.05524253472685814,
- 0.014106765389442444,
- 0.03191084414720535,
- -0.11048781126737595,
- -0.010977832600474358,
- 0.030412772670388222,
- 0.03461150825023651,
- 0.03251273185014725,
- -0.08069687336683273,
- 0.07803252339363098,
- -0.07520950585603714,
- -0.08850699663162231,
- -0.03128715604543686,
- -0.04092099890112877,
- 0.032810743898153305,
- -0.0007811507675796747,
- -0.021799452602863312,
- -0.0008644664194434881,
- 0.017115697264671326,
- 0.00490051694214344,
- -0.07536909729242325,
- 0.07032252848148346,
- 0.01048235036432743,
- -0.049574997276067734,
- -0.02600601688027382,
- -0.026173973456025124,
- 0.03149839863181114,
- 0.05751565471291542,
- 2.4269689830618814e-33,
- -0.055607497692108154,
- -0.07152271270751953,
- -0.14723262190818787,
- 0.000036070647183805704,
- 0.026836568489670753,
- 0.0009224076638929546,
- 0.03618377819657326,
- -0.08059464395046234,
- 0.017412548884749413,
- 0.0009083447512239218,
- -0.004448081366717815,
- 0.006631816271692514,
- -0.032577939331531525,
- 0.012602419592440128,
- 0.05427266284823418,
- -0.02525940351188183,
- 0.04946916550397873,
- -0.04533824324607849,
- -0.0316961295902729,
- -0.016601091250777245,
- -0.056850284337997437,
- 0.07144113630056381,
- 0.04167400300502777,
- -0.05952233448624611,
- -0.048646386712789536,
- 0.030322963371872902,
- 0.028872301802039146,
- -0.015358783304691315,
- 0.07625312358140945,
- 0.018484223634004593,
- -0.025840863585472107,
- -0.06617023795843124,
- 0.051683880388736725,
- -0.03747349977493286,
- -0.06054504215717316,
- -0.02403981052339077,
- 0.0848461166024208,
- -0.028335295617580414,
- 0.010387874208390713,
- -0.029329149052500725,
- 0.03430572897195816,
- -0.05019945278763771,
- 0.10791728645563126,
- 0.1350518763065338,
- 0.07945118844509125,
- -0.011404559016227722,
- 0.08201407641172409,
- 0.037681397050619125,
- 0.02407434955239296,
- 0.025208428502082825,
- -0.10336662083864212,
- -0.07671354711055756,
- 0.04326525330543518,
- -0.07524608820676804,
- 0.006082035601139069,
- 0.03481873869895935,
- 0.047620177268981934,
- -0.031367506831884384,
- -0.05268632993102074,
- 0.03461461514234543,
- 0.013794937171041965,
- 0.014153358526527882,
- 0.048568323254585266,
- 0.019941061735153198,
- -0.08042748272418976,
- -0.02522951364517212,
- 0.01966910995543003,
- 0.006422703620046377,
- 0.007866029627621174,
- 0.013060173951089382,
- 0.038689568638801575,
- 0.05469023063778877,
- -0.05109848082065582,
- 0.03155510500073433,
- -0.08020573854446411,
- -0.004929796326905489,
- -0.05666409060359001,
- 0.07483658939599991,
- 0.0818011686205864,
- -0.08299896121025085,
- 0.0021280855871737003,
- 0.01860075443983078,
- -0.014521772973239422,
- -0.030251726508140564,
- -0.07116390764713287,
- -0.047105927020311356,
- 0.06752969324588776,
- 0.030204804614186287,
- 0.06845395267009735,
- -0.059437595307826996,
- 0.004929815419018269,
- 0.03638609126210213,
- -0.05010421201586723,
- -0.07113973796367645,
- 0.0439554825425148,
- -1.1936467814166463e-8,
- -0.024170706048607826,
- 0.01525041088461876,
- -0.049482982605695724,
- 0.0022192210890352726,
- 0.05563557147979736,
- 0.02183441072702408,
- 0.013585204258561134,
- 0.03322364017367363,
- -0.046855438500642776,
- 0.052757397294044495,
- 0.06099650636315346,
- 0.0536220483481884,
- -0.06055038422346115,
- 0.06572800129652023,
- 0.033932384103536606,
- -0.0018573739798739552,
- 0.04893941804766655,
- -0.07245562970638275,
- -0.054396774619817734,
- -0.07311869412660599,
- -0.023586051538586617,
- -0.05188613757491112,
- 0.003105960786342621,
- 0.030418379232287407,
- -0.05254199728369713,
- 0.07370852679014206,
- -0.012861386872828007,
- 0.02416064403951168,
- 0.05814865231513977,
- 0.03977223485708237,
- 0.03118576481938362,
- -0.0014056278159841895,
- 0.00257336744107306,
- -0.08015091717243195,
- -0.03506645932793617,
- -0.04379352182149887,
- 0.0019006803631782532,
- 0.04500492662191391,
- -0.007468665950000286,
- 0.017985383048653603,
- -0.03330141305923462,
- -0.0997832790017128,
- 0.08538857847452164,
- -0.04044177010655403,
- 0.01838734559714794,
- -0.044478222727775574,
- 0.04032102972269058,
- -0.03072090819478035,
- -0.025062724947929382,
- -0.05588209256529808,
- -0.02431960590183735,
- 0.04089559242129326,
- -0.018645692616701126,
- 0.001407075789757073,
- -0.014014153741300106,
- -0.033716678619384766,
- 0.03871766850352287,
- -0.007826974615454674,
- -0.08831291645765305,
- 0.07830749452114105,
- 0.024877596646547318,
- 0.07307355105876923,
- 0.04131728783249855,
- 0.040373317897319794
- ]
- },
- {
- "keyword": "calculus",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.023115085437893867,
- 0.054051343351602554,
- -0.03291981294751167,
- 0.023571603000164032,
- -0.07881930470466614,
- -0.04282572120428085,
- -0.014239630661904812,
- 0.07857556641101837,
- -0.012734731659293175,
- -0.009057031944394112,
- 0.03362076357007027,
- -0.030587192624807358,
- -0.029134292155504227,
- 0.12825682759284973,
- -0.049351323395967484,
- -0.020691653713583946,
- -0.059008657932281494,
- 0.03524220734834671,
- -0.10090239346027374,
- -0.031110815703868866,
- -0.021865012124180794,
- 0.012201279401779175,
- -0.00638402858749032,
- 0.0852576494216919,
- 0.06358593702316284,
- -0.013619422912597656,
- 0.00824719574302435,
- 0.028300318866968155,
- 0.0394429974257946,
- -0.07977712154388428,
- -0.0630083680152893,
- 0.00989831518381834,
- -0.019107671454548836,
- -0.02034170739352703,
- -0.04119513928890228,
- -0.04141663759946823,
- -0.007632751949131489,
- 0.023340698331594467,
- 0.04189049080014229,
- -0.04279450327157974,
- -0.046580299735069275,
- -0.06653546541929245,
- 0.007717990316450596,
- 0.06350018084049225,
- 0.020949862897396088,
- -0.0020436220802366734,
- 0.003773714415729046,
- 0.06192478537559509,
- 0.06017317622900009,
- -0.038058165460824966,
- 0.026397349312901497,
- -0.02286379039287567,
- -0.08008591830730438,
- 0.015443024225533009,
- 0.035852909088134766,
- 0.016733627766370773,
- 0.0014269731473177671,
- 0.059021204710006714,
- -0.005513554438948631,
- -0.040788158774375916,
- -0.0051726666279137135,
- -0.01590169034898281,
- 0.02181418053805828,
- -0.023877130821347237,
- 0.02049725502729416,
- -0.04162232205271721,
- 0.03411833941936493,
- -0.025761479511857033,
- 0.017419740557670593,
- 0.07124139368534088,
- -0.06528076529502869,
- 0.025684207677841187,
- 0.0543779693543911,
- -0.06481640040874481,
- 0.07170552015304565,
- -0.1495654135942459,
- 0.05458986386656761,
- 0.10602074861526489,
- 0.04610227048397064,
- -0.011330901645123959,
- 0.0008423091494478285,
- -0.024553950875997543,
- -0.07232958823442459,
- -0.012755900621414185,
- -0.06328066438436508,
- 0.03956613689661026,
- 0.026873162016272545,
- 0.10197746753692627,
- -0.0010499985655769706,
- 0.03303173929452896,
- 0.030734354630112648,
- -0.010237093083560467,
- -0.02677858993411064,
- -0.0741209015250206,
- 0.0034466555807739496,
- -0.004488571546971798,
- -0.01745539903640747,
- -0.10480496287345886,
- 0.019641341641545296,
- 0.17174695432186127,
- -0.05523448437452316,
- -0.009171677753329277,
- -0.06300220638513565,
- 0.012918239459395409,
- -0.01669582910835743,
- 0.0054296269081532955,
- 0.009681823663413525,
- 0.09003004431724548,
- 0.049114350229501724,
- 0.09740211069583893,
- -0.03595806658267975,
- 0.013004017062485218,
- 0.051373712718486786,
- 0.05596768483519554,
- -0.001673844293691218,
- -0.0031913388520479202,
- -0.005530717317014933,
- -0.1295945793390274,
- -0.01321518886834383,
- 0.037085868418216705,
- 0.02037222497165203,
- -0.010128592140972614,
- -0.07895005494356155,
- 0.014310471713542938,
- -0.07551746070384979,
- -0.009512439370155334,
- 0.04089711979031563,
- -3.6159073158377295e-33,
- -0.08594626188278198,
- -0.10024739056825638,
- 0.02956419251859188,
- 0.021414201706647873,
- 0.009407006204128265,
- -0.03989739343523979,
- -0.011385999619960785,
- -0.006158433388918638,
- -0.004353429190814495,
- 0.03414972126483917,
- -0.02681075595319271,
- 0.08354756236076355,
- -0.008336533792316914,
- 0.014229129068553448,
- 0.07525401562452316,
- 0.0010224690195173025,
- 0.0784311518073082,
- 0.033453699201345444,
- -0.030259188264608383,
- -0.0066347126848995686,
- -0.0015925373882055283,
- -0.08324224501848221,
- 0.0054579018615186214,
- 0.07776305079460144,
- -0.0640953779220581,
- 0.015379565767943859,
- 0.036543458700180054,
- 0.03563176095485687,
- 0.0216053556650877,
- -0.028001124039292336,
- -0.029102135449647903,
- -0.048403531312942505,
- -0.014479261822998524,
- 0.04419886693358421,
- 0.02786029875278473,
- 0.01722807064652443,
- 0.013820653781294823,
- -0.029535286128520966,
- 0.13458004593849182,
- 0.004058808088302612,
- -0.06669267266988754,
- -0.059289123862981796,
- 0.04798777401447296,
- -0.03279843553900719,
- 0.04242175817489624,
- 0.06499168276786804,
- 0.026860227808356285,
- 0.03581511601805687,
- 0.008982019498944283,
- -0.0075168428011238575,
- -0.05719689652323723,
- 0.023509398102760315,
- -0.01786387339234352,
- -0.04303627833724022,
- 0.03197312355041504,
- 0.009352770633995533,
- -0.04204241558909416,
- 0.04322284832596779,
- -0.07330678403377533,
- 0.03986162692308426,
- -0.003997402731329203,
- 0.017810625955462456,
- 0.045918744057416916,
- -0.07394080609083176,
- -0.0671643391251564,
- -0.028795858845114708,
- -0.10581585764884949,
- -0.018876977264881134,
- -0.012293034233152866,
- -0.07036321610212326,
- -0.06449776142835617,
- 0.018069135025143623,
- 0.09686822444200516,
- -0.018227027729153633,
- 0.028436891734600067,
- -0.00577697716653347,
- -0.006749995052814484,
- 0.0670817494392395,
- 0.05304144695401192,
- -0.0197347030043602,
- -0.04869715869426727,
- -0.02208760380744934,
- -0.011129956692457199,
- -0.0297150369733572,
- 0.02748103067278862,
- -0.010990889742970467,
- 0.009572889655828476,
- 0.01306254230439663,
- 0.04000832512974739,
- -0.011974933557212353,
- -0.16093739867210388,
- -0.022602198645472527,
- -0.021631062030792236,
- 0.0045149498619139194,
- 0.037115152925252914,
- 1.46500180353402e-33,
- -0.053354691714048386,
- 0.07719212025403976,
- -0.07460283488035202,
- 0.007689249701797962,
- -0.023698875680565834,
- 0.07478673756122589,
- 0.0057232072576880455,
- -0.07610869407653809,
- 0.05737287551164627,
- 0.02720094472169876,
- 0.02200337126851082,
- 0.020777657628059387,
- -0.004468981176614761,
- -0.011420434340834618,
- -0.003975934814661741,
- 0.007144793402403593,
- -0.04990284889936447,
- -0.15106721222400665,
- -0.07779992371797562,
- 0.03767607733607292,
- -0.09658615291118622,
- 0.06347736716270447,
- -0.014062043279409409,
- -0.0017063358100131154,
- 0.0035003104712814093,
- 0.0002682059130165726,
- 0.021767042577266693,
- -0.03569303825497627,
- -0.031617503613233566,
- 0.006156670395284891,
- -0.010203751735389233,
- 0.026462171226739883,
- 0.03126152232289314,
- -0.013772578909993172,
- -0.02607300877571106,
- -0.008142813108861446,
- 0.12437615543603897,
- 0.02406470850110054,
- -0.0010203701676800847,
- 0.02358713001012802,
- 0.057155657559633255,
- -0.02828887663781643,
- 0.11625947803258896,
- -0.06397997587919235,
- 0.002074986696243286,
- 0.006442910060286522,
- -0.04287682846188545,
- 0.05179152637720108,
- -0.04180717095732689,
- 0.10530175268650055,
- -0.04157952219247818,
- -0.0925779864192009,
- 0.02946901135146618,
- -0.0887303426861763,
- -0.05066215619444847,
- 0.005636013578623533,
- -0.031400177627801895,
- 0.00705395033583045,
- -0.022480089217424393,
- 0.08413621038198471,
- 0.019214533269405365,
- 0.04028015956282616,
- 0.008799704723060131,
- 0.01636938378214836,
- -0.09759238362312317,
- -0.0012705285334959626,
- -0.005726284813135862,
- -0.0017602068837732077,
- -0.0021684879902750254,
- 0.013949105516076088,
- 0.08633550256490707,
- 0.14484655857086182,
- -0.019105318933725357,
- -0.004592519253492355,
- -0.004626548383384943,
- -0.024612989276647568,
- -0.04469051957130432,
- 0.015250179916620255,
- 0.045312944799661636,
- 0.003712608478963375,
- 0.06196962669491768,
- 0.03302533179521561,
- 0.0377807542681694,
- 0.006892284844070673,
- -0.09324689209461212,
- -0.035546720027923584,
- 0.005801904946565628,
- 0.07508949935436249,
- -0.007458316162228584,
- -0.09458979964256287,
- -0.0632309690117836,
- 0.003535978961735964,
- -0.04601743444800377,
- -0.09239179641008377,
- -0.003934356849640608,
- -1.1407299105314905e-8,
- -0.09879767149686813,
- 0.0005553911905735731,
- -0.1113249808549881,
- 0.009540518745779991,
- -0.03571944311261177,
- 0.08832475543022156,
- 0.0031894962303340435,
- 0.06880438327789307,
- 0.0050985743291676044,
- 0.026359958574175835,
- 0.02525298483669758,
- -0.004095897544175386,
- 0.02823616936802864,
- 0.07139259576797485,
- 0.03508370369672775,
- 0.017345640808343887,
- 0.04552512243390083,
- 0.004529181402176619,
- -0.04898218438029289,
- -0.09695667028427124,
- 0.02505972795188427,
- 0.029578108340501785,
- 0.06268342584371567,
- -0.03133684769272804,
- 0.07822412252426147,
- 0.020648514851927757,
- -0.028475774452090263,
- 0.028910774737596512,
- -0.03282135725021362,
- -0.006181215867400169,
- 0.026177100837230682,
- 0.006538847927004099,
- -0.02462800219655037,
- -0.057452037930488586,
- 0.027018751949071884,
- 0.012437927536666393,
- 0.06164433807134628,
- 0.0593852736055851,
- -0.0026091625913977623,
- 0.10217899829149246,
- -0.011565192602574825,
- -0.0762871727347374,
- 0.04547174647450447,
- 0.005863659083843231,
- 0.04348597675561905,
- -0.04974430054426193,
- 0.04156918451189995,
- 0.018978873267769814,
- -0.0007709248457103968,
- -0.03090197779238224,
- 0.03981485217809677,
- 0.13440760970115662,
- -0.03269874304533005,
- 0.00983515102416277,
- 0.05229262635111809,
- -0.01690872758626938,
- 0.03373893350362778,
- -0.028851639479398727,
- -0.13392242789268494,
- 0.10386264324188232,
- 0.012219765223562717,
- 0.12132131308317184,
- 0.07647943496704102,
- -0.049927160143852234
- ]
- },
- {
- "keyword": "physics",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.010449867695569992,
- 0.023654066026210785,
- 0.00961664505302906,
- 0.10942646861076355,
- -0.016733236610889435,
- -0.05485730990767479,
- 0.030326807871460915,
- 0.051587846130132675,
- 0.006479100789874792,
- 0.06020712852478027,
- 0.08512630313634872,
- -0.09450003504753113,
- -0.07228579372167587,
- 0.03447738289833069,
- -0.08008065819740295,
- -0.039970193058252335,
- 0.036330752074718475,
- 0.02861037477850914,
- -0.19449414312839508,
- -0.024872606620192528,
- -0.0722280964255333,
- -0.027237070724368095,
- 0.02355712465941906,
- 0.04668201878666878,
- -0.017465336248278618,
- 0.06404965370893478,
- -0.050119828432798386,
- 0.05776146426796913,
- -0.019097190350294113,
- -0.10853032022714615,
- -0.034066665917634964,
- 0.03128090873360634,
- -0.067801833152771,
- 0.025943709537386894,
- -0.08660884946584702,
- -0.005807151552289724,
- -0.0017905962886288762,
- 0.0035899998620152473,
- -0.012728439643979073,
- -0.006924453191459179,
- -0.05144484341144562,
- -0.04473545774817467,
- 0.07672049105167389,
- 0.03263815492391586,
- 0.08547645807266235,
- 0.06636679917573929,
- 0.08572172373533249,
- -0.016792738810181618,
- -0.0008296669111587107,
- 0.027415532618761063,
- -0.05540110543370247,
- -0.07996397465467453,
- -0.032028064131736755,
- 0.04034210368990898,
- 0.07778573781251907,
- 0.025680232793092728,
- 0.04228239133954048,
- -0.011496949009597301,
- -0.016133029013872147,
- -0.04642945155501366,
- 0.09525489062070847,
- 0.013772465288639069,
- -0.09075799584388733,
- 0.02874399721622467,
- 0.1036393865942955,
- -0.05042394995689392,
- 0.015848377719521523,
- 0.022938435897231102,
- -0.03689448535442352,
- 0.030684195458889008,
- 0.07814054191112518,
- 0.030010495334863663,
- -0.02726401761174202,
- -0.007166941650211811,
- 0.09301532804965973,
- -0.1288066804409027,
- -0.005633553955703974,
- 0.08640296757221222,
- 0.1206134483218193,
- 0.07864871621131897,
- 0.014731887727975845,
- -0.13151443004608154,
- -0.14163924753665924,
- -0.025199975818395615,
- -0.021634016185998917,
- 0.0016760306898504496,
- 0.09128042310476303,
- 0.06609958410263062,
- -0.08097601681947708,
- -0.01768900267779827,
- -0.015103272162377834,
- -0.021024296060204506,
- -0.01824372634291649,
- -0.020738650113344193,
- -0.04120885953307152,
- 0.00915597565472126,
- -0.06532595306634903,
- -0.1068316325545311,
- -0.023280460387468338,
- 0.16893385350704193,
- 0.007308219093829393,
- 0.06820772588253021,
- -0.06553627550601959,
- 0.17555101215839386,
- -0.003976679407060146,
- 0.06405147910118103,
- 0.022648213431239128,
- -0.01282983087003231,
- 0.04171375185251236,
- 0.07762275636196136,
- 0.004560078494250774,
- 0.00427378062158823,
- -0.024819601327180862,
- 0.045356180518865585,
- -0.0315413661301136,
- 0.0044396198354661465,
- 0.0010362340835854411,
- 0.07779113948345184,
- -0.029104286804795265,
- -0.02406047098338604,
- 0.012136170640587807,
- -0.032888952642679214,
- -0.01923215761780739,
- 0.0015651670983061194,
- -0.029278282076120377,
- -0.075725257396698,
- 0.02309589460492134,
- -5.221046688595486e-33,
- -0.04839476943016052,
- -0.06813320517539978,
- 0.04384060576558113,
- 0.019726179540157318,
- 0.012058054096996784,
- -0.09077753871679306,
- -0.030849596485495567,
- 0.013948273845016956,
- 0.07459315657615662,
- 0.05110226199030876,
- -0.019929416477680206,
- 0.08531897515058517,
- 0.02413567155599594,
- 0.05137550085783005,
- 0.018592437729239464,
- 0.0025151704903692007,
- 0.03918434679508209,
- 0.02445513755083084,
- -0.04735077917575836,
- -0.00026754874852485955,
- -0.012003712356090546,
- 0.011524561792612076,
- -0.022596418857574463,
- -0.0101315351203084,
- -0.041633881628513336,
- 0.0210233386605978,
- -0.023650119081139565,
- -0.007452349178493023,
- -0.019477123394608498,
- -0.011587266810238361,
- 0.015165862627327442,
- 0.08376551419496536,
- -0.05237046256661415,
- -0.051290757954120636,
- -0.04733966663479805,
- -0.020106827840209007,
- 0.02153080515563488,
- -0.03393588960170746,
- 0.025535058230161667,
- -0.04995260015130043,
- -0.03513186052441597,
- -0.0007153737242333591,
- -0.029200660064816475,
- 0.012648867443203926,
- 0.03611970320343971,
- -0.0005002653342671692,
- 0.09005507826805115,
- 0.027413198724389076,
- -0.05460584536194801,
- 0.04022888466715813,
- -0.016860734671354294,
- -0.036752358078956604,
- 0.0017591480864211917,
- 0.018977049738168716,
- 0.1045115664601326,
- 0.04409529268741608,
- 0.05861223489046097,
- 0.024382812902331352,
- -0.08661768585443497,
- 0.03193943575024605,
- 0.043078579008579254,
- 0.06295958161354065,
- 0.05827411636710167,
- -0.032240405678749084,
- -0.040824200958013535,
- -0.027984868735074997,
- -0.06943868100643158,
- -0.03764866292476654,
- 0.04508201405405998,
- -0.0257389098405838,
- -0.06401389837265015,
- -0.010737585835158825,
- -0.017888203263282776,
- -0.023573799058794975,
- 0.040497247129678726,
- 0.03143719583749771,
- -0.013250524178147316,
- -0.028642194345593452,
- 0.012511287815868855,
- -0.013888847082853317,
- -0.07350549101829529,
- -0.021498072892427444,
- -0.007202431559562683,
- -0.078007772564888,
- -0.07169613242149353,
- 0.019795268774032593,
- -0.02544143982231617,
- -0.05918220058083534,
- 0.013366743922233582,
- -0.004714272916316986,
- -0.10183935612440109,
- -0.03492124006152153,
- 0.047333963215351105,
- 0.004013621713966131,
- 0.03506932780146599,
- 3.0177303831279227e-33,
- -0.08764542639255524,
- 0.010334131307899952,
- -0.05932800471782684,
- 0.12118741124868393,
- 0.11268671602010727,
- 0.02581668272614479,
- -0.0006210749852471054,
- -0.0654810443520546,
- -0.04173361510038376,
- 0.0506882444024086,
- 0.002947906032204628,
- -0.055754855275154114,
- -0.025583844631910324,
- 0.010448426939547062,
- 0.005155383609235287,
- 0.021708454936742783,
- 0.017891639843583107,
- -0.08616362512111664,
- -0.023552972823381424,
- 0.02934493124485016,
- -0.037920042872428894,
- 0.0001695388345979154,
- 0.03474931791424751,
- -0.055875398218631744,
- 0.01710495539009571,
- 0.03540288656949997,
- 0.05799499899148941,
- -0.1270802915096283,
- -0.03689330443739891,
- -0.03547517582774162,
- -0.03588635474443436,
- -0.014446604065597057,
- 0.03607453778386116,
- 0.031298018991947174,
- 0.0043127830140292645,
- 0.0675935298204422,
- 0.11603783071041107,
- 0.010607069358229637,
- -0.01646258495748043,
- -0.077307790517807,
- 0.035028666257858276,
- 0.08447632193565369,
- 0.08091085404157639,
- 0.04940243437886238,
- -0.014902394264936447,
- -0.009629853069782257,
- 0.04954599216580391,
- 0.08741379529237747,
- -0.03147211670875549,
- 0.014835451729595661,
- -0.029091190546751022,
- -0.04284237325191498,
- 0.020352769643068314,
- -0.03415311127901077,
- 0.03133128583431244,
- 0.057472266256809235,
- -0.028909100219607353,
- -0.013740487396717072,
- 0.02386418543756008,
- -0.004313318524509668,
- 0.04530605673789978,
- -0.021303370594978333,
- 0.007056272588670254,
- 0.09204789996147156,
- -0.07457372546195984,
- 0.0457877516746521,
- -0.04948372393846512,
- 0.051601625978946686,
- 0.02812141738831997,
- -0.062317363917827606,
- 0.049421194940805435,
- 0.048810917884111404,
- 0.019544050097465515,
- -0.002437784569337964,
- 0.0011047880398109555,
- -0.053128670901060104,
- 0.030103202909231186,
- -0.03177383169531822,
- -0.0367671474814415,
- -0.03914545103907585,
- -0.052600182592868805,
- 0.029211420565843582,
- -0.004879707936197519,
- 0.013169544748961926,
- -0.06603767722845078,
- -0.055723246186971664,
- -0.0065455189906060696,
- -0.025079695507884026,
- -0.00025585066759958863,
- -0.05820760875940323,
- 0.018682515248656273,
- 0.03549708425998688,
- 0.04052774980664253,
- -0.019194986671209335,
- -0.04222692549228668,
- -1.2706673047091499e-8,
- -0.02244466543197632,
- -0.05522681772708893,
- -0.004495679400861263,
- -0.09296362102031708,
- 0.007206713315099478,
- 0.09031379222869873,
- 0.014294822700321674,
- 0.030554989352822304,
- -0.05165145918726921,
- 0.01938345842063427,
- -0.03105849400162697,
- 0.005385133903473616,
- 0.02136010304093361,
- 0.1334502100944519,
- 0.056004174053668976,
- 0.003309807274490595,
- -0.028377627953886986,
- 0.011506505310535431,
- -0.04939073696732521,
- 0.017559699714183807,
- 0.04143116995692253,
- 0.022738981992006302,
- 0.11458604037761688,
- 0.05074596777558327,
- 0.018314678221940994,
- 0.029528481885790825,
- -0.034055568277835846,
- 0.013216317631304264,
- 0.04161727428436279,
- 0.014067347161471844,
- 0.009914343245327473,
- -0.00841350294649601,
- -0.02024681493639946,
- -0.044004395604133606,
- -0.00031980531639419496,
- -0.0062544140964746475,
- -0.028396444395184517,
- 0.0147399278357625,
- -0.03665441647171974,
- 0.00294984201900661,
- -0.0016023744828999043,
- 0.015953928232192993,
- -0.005495657213032246,
- 0.03419755399227142,
- 0.017021816223859787,
- -0.005785871297121048,
- -0.05547410249710083,
- -0.05564047023653984,
- 0.003489392576739192,
- 0.07844769209623337,
- 0.03874349221587181,
- 0.042203377932310104,
- -0.00503953592851758,
- 0.04168366640806198,
- 0.006317831110209227,
- 0.06263154745101929,
- -0.03594694286584854,
- -0.009110696613788605,
- -0.09714736044406891,
- 0.041489798575639725,
- 0.12830469012260437,
- -0.008227313868701458,
- 0.016786564141511917,
- 0.01183280162513256
- ]
- },
- {
- "keyword": "quantum",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05641036853194237,
- 0.0004130025627091527,
- -0.036325473338365555,
- 0.07563313841819763,
- -0.1570882499217987,
- 0.0205893125385046,
- 0.06412182748317719,
- -0.044729091227054596,
- 0.010601409710943699,
- -0.020358804613351822,
- 0.053194280713796616,
- -0.06950408965349197,
- -0.049063097685575485,
- 0.025967959314584732,
- -0.00418074568733573,
- 0.030487876385450363,
- 0.0004973495379090309,
- -0.04356018453836441,
- -0.07089976221323013,
- -0.01848914660513401,
- -0.019161805510520935,
- -0.017849938943982124,
- -0.03309163451194763,
- 0.008704432286322117,
- 0.06083102151751518,
- 0.023420462384819984,
- 0.056519847363233566,
- -0.017253272235393524,
- 0.09866058081388474,
- -0.06539139896631241,
- 0.005522922612726688,
- 0.07503723353147507,
- -0.022638767957687378,
- -0.019717160612344742,
- -0.009984227828681469,
- -0.020200230181217194,
- 0.03691263496875763,
- -0.020743371918797493,
- 0.0532384067773819,
- -0.04361754283308983,
- -0.016744762659072876,
- -0.011818462051451206,
- -0.03640235587954521,
- 0.017704756930470467,
- 0.041943274438381195,
- 0.05688081309199333,
- 0.08504625409841537,
- -0.014485117979347706,
- -0.026669947430491447,
- -0.1051919087767601,
- -0.04674362763762474,
- 0.04107975959777832,
- -0.02785797044634819,
- 0.06665307283401489,
- 0.10211438685655594,
- 0.04971964284777641,
- 0.05531081557273865,
- 0.007212802302092314,
- -0.063996322453022,
- -0.07917986810207367,
- -0.047547657042741776,
- -0.0005997781408950686,
- -0.05662063509225845,
- 0.03416002169251442,
- 0.16636435687541962,
- 0.012231278233230114,
- -0.01641703024506569,
- -0.014413844794034958,
- -0.00539829907938838,
- 0.016291916370391846,
- -0.027058666571974754,
- -0.028895026072859764,
- -0.01654575578868389,
- 0.0346064455807209,
- 0.08037412911653519,
- -0.0757184773683548,
- 0.0287944208830595,
- 0.040654219686985016,
- 0.10356675088405609,
- 0.08325310796499252,
- 0.0006046171765774488,
- -0.10956712067127228,
- -0.04825468733906746,
- 0.049991536885499954,
- 0.009190152399241924,
- 0.06418199837207794,
- -0.042224910110235214,
- -0.028450295329093933,
- -0.09794925153255463,
- -0.06803043186664581,
- -0.08551350980997086,
- -0.05069958046078682,
- 0.023288089781999588,
- -0.0065816352143883705,
- 0.010820379480719566,
- 0.048498477786779404,
- 0.03263381868600845,
- -0.020340025424957275,
- 0.03216026350855827,
- 0.13220933079719543,
- 0.10963952541351318,
- 0.04434814676642418,
- -0.04564341902732849,
- 0.020837731659412384,
- -0.02511564828455448,
- 0.0009114380809478462,
- 0.01535680890083313,
- -0.009550997987389565,
- 0.020737025886774063,
- 0.038855694234371185,
- 0.012988883070647717,
- -0.06170927733182907,
- 0.04160032048821449,
- -0.03338979184627533,
- -0.010762136429548264,
- 0.02277936413884163,
- 0.02514902502298355,
- 0.15120181441307068,
- -0.013230870477855206,
- -0.013087590225040913,
- -0.016590310260653496,
- 0.020383421331644058,
- -0.028519166633486748,
- 0.06646861135959625,
- -0.038581233471632004,
- -0.04490353912115097,
- -0.04125611484050751,
- -4.694194161318768e-33,
- 0.029763218015432358,
- -0.034993529319763184,
- 0.05169190466403961,
- 0.0004223224532324821,
- 0.03756149485707283,
- -0.004698116797953844,
- 0.040256816893815994,
- -0.09736201912164688,
- -0.04213208332657814,
- -0.03282444551587105,
- 0.04002824053168297,
- 0.0047256299294531345,
- 0.005015713162720203,
- -0.01913042739033699,
- 0.05674697086215019,
- 0.027998073026537895,
- -0.07429822534322739,
- -0.044058240950107574,
- 0.017996544018387794,
- -0.021759629249572754,
- -0.00698290066793561,
- 0.036435190588235855,
- -0.09296868741512299,
- 0.04201271012425423,
- -0.026066847145557404,
- -0.05314549803733826,
- 0.1081666648387909,
- -0.033404745161533356,
- -0.07155638933181763,
- -0.013801760040223598,
- 0.003081704955548048,
- 0.09687969088554382,
- -0.0812627524137497,
- -0.0043472847901284695,
- 0.006084667518734932,
- 0.011178198270499706,
- -0.012429897673428059,
- 0.036817263811826706,
- -0.009362520650029182,
- -0.07974591851234436,
- -0.07196465134620667,
- -0.04807712882757187,
- 0.03039572201669216,
- -0.010607577860355377,
- 0.06106980890035629,
- -0.019099527969956398,
- 0.01903138868510723,
- -0.037733208388090134,
- -0.0032876087352633476,
- 0.015674924477934837,
- 0.042852893471717834,
- -0.07128213346004486,
- -0.04909520596265793,
- 0.008274305611848831,
- 0.06218491494655609,
- -0.021963883191347122,
- 0.09853314608335495,
- 0.06115904077887535,
- -0.06056859344244003,
- 0.012825348414480686,
- -0.014941368252038956,
- -0.00006645765097346157,
- -0.00205006985925138,
- 0.044467583298683167,
- -0.03046269156038761,
- 0.001494592404924333,
- -0.06702841073274612,
- -0.09385310113430023,
- -0.0071333362720906734,
- 0.08584968745708466,
- -0.0693279579281807,
- 0.03658105432987213,
- 0.07299639284610748,
- -0.03449295461177826,
- 0.06786176562309265,
- -0.06942825019359589,
- -0.028758876025676727,
- -0.0413847491145134,
- -0.013755466789007187,
- 0.022663116455078125,
- -0.0318535752594471,
- -0.0485488660633564,
- -0.03643162176012993,
- 0.03142036497592926,
- -0.05450977757573128,
- -0.04736682027578354,
- -0.06970386207103729,
- -0.08952510356903076,
- 0.04097414016723633,
- 0.03530017286539078,
- -0.07595300674438477,
- -0.07746266573667526,
- 0.0795099288225174,
- 0.03103831224143505,
- -0.09584901481866837,
- 2.2855998079991698e-33,
- -0.07860470563173294,
- -0.000534023973159492,
- -0.014826439321041107,
- 0.06705600023269653,
- 0.02752479538321495,
- 0.0055121807381510735,
- -0.00637776916846633,
- -0.053903352469205856,
- -0.0019904726650565863,
- 0.03329049423336983,
- 0.07009786367416382,
- 0.06118540093302727,
- 0.06723985821008682,
- 0.02692660503089428,
- -0.0447305403649807,
- 0.042026229202747345,
- 0.05380324274301529,
- -0.02978481352329254,
- 0.02632307820022106,
- 0.012860582210123539,
- 0.004334833938628435,
- -0.04390421137213707,
- 0.025184370577335358,
- -0.04279696196317673,
- 0.029721537604928017,
- 0.11614137142896652,
- 0.09230408817529678,
- -0.013909685425460339,
- 0.04641574248671532,
- -0.03683933988213539,
- 0.008689792826771736,
- -0.12891621887683868,
- -0.04305419325828552,
- 0.018703259527683258,
- -0.07458721101284027,
- 0.025356128811836243,
- 0.0916445255279541,
- 0.038337960839271545,
- -0.05006628483533859,
- -0.07000874727964401,
- -0.05923182889819145,
- -0.007048900704830885,
- 0.008564924821257591,
- 0.08515450358390808,
- 0.026987755671143532,
- -0.011075332760810852,
- -0.0002520656562410295,
- 0.02474842220544815,
- -0.1273457556962967,
- 0.03060205467045307,
- -0.03674136474728584,
- 0.061522699892520905,
- 0.040145810693502426,
- 0.009277080185711384,
- -0.05113816261291504,
- 0.0731162279844284,
- -0.022761141881346703,
- 0.0631970688700676,
- 0.08699222654104233,
- 0.04328317195177078,
- -0.029949070885777473,
- -0.0001924522512126714,
- 0.028797049075365067,
- 0.08459781110286713,
- -0.06049672141671181,
- -0.03602910414338112,
- -0.07982899993658066,
- 0.061515361070632935,
- 0.030584638938307762,
- -0.08594295382499695,
- 0.02705693058669567,
- 0.03355502337217331,
- -0.0351385623216629,
- -0.0055386824533343315,
- 0.015301170758903027,
- 0.02127883955836296,
- 0.005410602316260338,
- -0.028052011504769325,
- 0.016627032309770584,
- 0.03502427414059639,
- 0.01589474268257618,
- 0.026325592771172523,
- -0.03691082447767258,
- 0.021101823076605797,
- -0.016457362100481987,
- 0.01721094734966755,
- 0.005988067947328091,
- 0.021495824679732323,
- 0.01692931540310383,
- -0.056143030524253845,
- 0.011859855614602566,
- 0.06855318695306778,
- -0.024866508319973946,
- -0.066585473716259,
- 0.03886883333325386,
- -1.1070381944477958e-8,
- 0.04780587553977966,
- -0.038028471171855927,
- -0.05445731431245804,
- -0.017842702567577362,
- 0.10942531377077103,
- 0.003282991936430335,
- 0.06162580847740173,
- 0.02564695104956627,
- -0.05570455268025398,
- -0.004590594209730625,
- -0.0026792685966938734,
- -0.016578475013375282,
- -0.094105564057827,
- 0.0553726851940155,
- 0.0832524448633194,
- 0.005017195828258991,
- -0.04715505614876747,
- -0.07925013452768326,
- -0.006140802521258593,
- 0.011196394450962543,
- 0.05021495372056961,
- 0.008570593781769276,
- 0.03010041080415249,
- 0.046962738037109375,
- -0.07310701906681061,
- 0.008645662106573582,
- 0.014931331388652325,
- -0.031204164028167725,
- 0.004628809634596109,
- 0.07025114446878433,
- -0.01217228826135397,
- 0.05433783307671547,
- 0.030096981674432755,
- 0.04193497821688652,
- -0.12827494740486145,
- -0.07834795862436295,
- -0.035043273121118546,
- -0.031492095440626144,
- -0.01303827203810215,
- 0.05632099509239197,
- -0.015460369177162647,
- 0.013597596436738968,
- -0.011946426704525948,
- 0.03844650089740753,
- 0.036179643124341965,
- 0.001783131854608655,
- 0.014536379836499691,
- -0.05268260836601257,
- 0.06899981200695038,
- 0.06684988737106323,
- -0.05617979168891907,
- 0.03694092482328415,
- 0.040039192885160446,
- -0.05341188982129097,
- -0.0763154998421669,
- 0.06723212450742722,
- -0.06701121479272842,
- -0.026598790660500526,
- -0.08966250717639923,
- 0.054921746253967285,
- 0.10121511667966843,
- 0.014240240678191185,
- 0.0026784439105540514,
- 0.0330677330493927
- ]
- },
- {
- "keyword": "mechanics",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0577407032251358,
- 0.031782981008291245,
- 0.012067492119967937,
- 0.020611319690942764,
- -0.04088197648525238,
- 0.011507654562592506,
- 0.07422085851430893,
- 0.049267251044511795,
- -0.009463954716920853,
- 0.04553653299808502,
- 0.06730903685092926,
- -0.003023809054866433,
- 0.0009896266274154186,
- 0.01604444533586502,
- -0.07947705686092377,
- -0.008035778999328613,
- 0.016709381714463234,
- 0.05900697410106659,
- -0.11788558959960938,
- -0.04398389160633087,
- -0.011659512296319008,
- 0.06316640228033066,
- 0.04693587124347687,
- 0.04453936219215393,
- -0.0509122870862484,
- 0.07809450477361679,
- -0.053381145000457764,
- 0.08025363087654114,
- 0.020155001431703568,
- -0.14307855069637299,
- -0.01632842794060707,
- 0.05183608829975128,
- -0.006773366592824459,
- -0.015269041061401367,
- -0.07440438121557236,
- 0.025461940094828606,
- -0.007092793006449938,
- 0.007634885609149933,
- -0.006428773980587721,
- -0.039599716663360596,
- -0.05526181682944298,
- -0.06528367847204208,
- 0.012748499400913715,
- -0.027826834470033646,
- 0.0563514269888401,
- 0.08275560289621353,
- 0.0720025822520256,
- -0.031213920563459396,
- 0.048962995409965515,
- 0.04424233362078667,
- -0.13276594877243042,
- -0.046610135585069656,
- -0.02122902125120163,
- 0.0031456819269806147,
- 0.10638483613729477,
- 0.005381657276302576,
- 0.0348472073674202,
- 0.0014157325495034456,
- -0.010189192369580269,
- -0.06152370572090149,
- 0.17773868143558502,
- -0.029282674193382263,
- -0.08766333013772964,
- 0.08295169472694397,
- 0.09826215356588364,
- -0.015791378915309906,
- 0.022631676867604256,
- -0.01967976801097393,
- -0.051991164684295654,
- -0.026892146095633507,
- 0.029471641406416893,
- -0.027167242020368576,
- -0.005164072383195162,
- 0.046507734805345535,
- 0.07877033948898315,
- -0.09120441973209381,
- 0.007843620143830776,
- 0.03929244354367256,
- 0.06265079230070114,
- 0.06754842400550842,
- 0.008212513290345669,
- -0.051402341574430466,
- -0.09654653817415237,
- 0.010254278779029846,
- -0.04162796214222908,
- -0.021010708063840866,
- 0.05833806097507477,
- 0.0771259143948555,
- 0.06524787098169327,
- 0.031206592917442322,
- -0.060077592730522156,
- -0.0038033826276659966,
- 0.027848148718476295,
- 0.003746144473552704,
- 0.026353884488344193,
- 0.04290810599923134,
- -0.06484892219305038,
- -0.06828001141548157,
- -0.0185318011790514,
- 0.20045216381549835,
- 0.03836912661790848,
- 0.05237424001097679,
- -0.0012317853979766369,
- 0.10165853798389435,
- -0.007061666809022427,
- 0.03805132582783699,
- -0.030592670664191246,
- 0.014715679921209812,
- 0.043781645596027374,
- 0.0951649472117424,
- 0.01291011180728674,
- 0.013472023420035839,
- -0.030356861650943756,
- 0.031009165570139885,
- -0.028686856850981712,
- 0.015762748196721077,
- -0.007306584622710943,
- 0.005095360800623894,
- 0.001388043281622231,
- -0.00104238442145288,
- 0.04439698904752731,
- -0.04790518060326576,
- -0.02005472220480442,
- -0.0262893196195364,
- -0.07257784903049469,
- -0.03398960083723068,
- 0.0007579870871268213,
- -6.51068484696048e-33,
- -0.04617469757795334,
- -0.06672552227973938,
- 0.09024397283792496,
- 0.022802850231528282,
- -0.0004681760328821838,
- -0.09421001374721527,
- -0.048520635813474655,
- -0.006238817702978849,
- 0.07474509626626968,
- 0.023227708414196968,
- -0.0563727430999279,
- 0.07014942914247513,
- -0.04291118308901787,
- 0.03964317962527275,
- 0.05662384256720543,
- -0.059867553412914276,
- -0.041227634996175766,
- 0.02364463172852993,
- -0.052428457885980606,
- 0.01971270516514778,
- 0.014891269616782665,
- 0.005929045379161835,
- -0.014318697154521942,
- 0.02318098023533821,
- -0.029622748494148254,
- 0.030279474332928658,
- 0.017461806535720825,
- -0.0572127066552639,
- -0.017348065972328186,
- 0.0006814618827775121,
- -0.028597554191946983,
- 0.03335313871502876,
- -0.04602157697081566,
- -0.005543589126318693,
- 0.01716945692896843,
- 0.015504719689488411,
- -0.02579960785806179,
- -0.06492774188518524,
- -0.007437576074153185,
- -0.049296196550130844,
- -0.044458068907260895,
- -0.0055357241071760654,
- -0.09103260189294815,
- -0.017059840261936188,
- -0.003914020489901304,
- 0.030765369534492493,
- 0.07266121357679367,
- 0.013281573541462421,
- -0.07583042979240417,
- -0.004906650632619858,
- -0.04262448474764824,
- 0.047797754406929016,
- 0.0529000461101532,
- -0.025529034435749054,
- 0.03620254993438721,
- -0.004376338794827461,
- 0.07462333142757416,
- -0.04015928506851196,
- -0.0946408063173294,
- 0.04642629250884056,
- 0.02101820334792137,
- 0.06184643507003784,
- 0.1055225059390068,
- 0.010751541703939438,
- 0.004896464757621288,
- -0.002195164794102311,
- -0.04287276789546013,
- 0.04428061842918396,
- 0.07027899473905563,
- -0.021947838366031647,
- -0.09709741920232773,
- -0.051571913063526154,
- -0.006021074950695038,
- 0.01268081832677126,
- -0.004894759505987167,
- 0.06363746523857117,
- -0.006165021099150181,
- -0.03769737482070923,
- -0.04859945923089981,
- -0.01082692202180624,
- -0.04136399179697037,
- 0.0408201739192009,
- 0.0023724224884063005,
- -0.013896866701543331,
- 0.015176310203969479,
- 0.021562613546848297,
- -0.022883044555783272,
- -0.08747952431440353,
- 0.04055095463991165,
- 0.04108116403222084,
- -0.1420670449733734,
- -0.04265404865145683,
- 0.007853549905121326,
- 0.0713382288813591,
- 0.0710311233997345,
- 3.9808086803237996e-33,
- -0.07862299680709839,
- -0.007383250165730715,
- -0.03171399235725403,
- 0.10384631901979446,
- 0.04741433262825012,
- -0.017104167491197586,
- -0.046806883066892624,
- -0.016820581629872322,
- -0.033487025648355484,
- 0.02474445104598999,
- -0.08514679223299026,
- -0.05088507756590843,
- -0.04359015077352524,
- 0.04693266749382019,
- 0.07213061302900314,
- 0.02513258531689644,
- 0.01745399832725525,
- -0.09093562513589859,
- -0.026277074590325356,
- 0.03379387408494949,
- 0.019485877826809883,
- 0.0499274767935276,
- -0.061195988208055496,
- -0.043050095438957214,
- 0.033130720257759094,
- 0.04650021716952324,
- -0.0018824292346835136,
- -0.017631027847528458,
- -0.033341486006975174,
- -0.01612093485891819,
- -0.00006191141437739134,
- -0.08447068929672241,
- 0.03214511647820473,
- 0.09208201617002487,
- -0.039358995854854584,
- 0.10575081408023834,
- 0.033342234790325165,
- 0.07111349701881409,
- -0.009954837150871754,
- -0.05055565759539604,
- 0.07425472885370255,
- -0.01903960481286049,
- 0.06504745781421661,
- 0.07067134976387024,
- -0.013373862020671368,
- -0.06972614675760269,
- 0.0849585011601448,
- -0.03846004232764244,
- -0.020861338824033737,
- 0.026390520855784416,
- 0.013613147661089897,
- 0.021029619500041008,
- 0.04181034490466118,
- -0.09578432887792587,
- 0.02148754708468914,
- 0.0047266483306884766,
- 0.015464779920876026,
- -0.050338853150606155,
- 0.03292301297187805,
- -0.06472190469503403,
- 0.013652668334543705,
- 0.02804863452911377,
- -0.030893944203853607,
- 0.07457451522350311,
- -0.08528414368629456,
- 0.027481716126203537,
- -0.006013310514390469,
- -0.0387040339410305,
- -0.04087638854980469,
- -0.06320792436599731,
- 0.02759752795100212,
- 0.08795764297246933,
- -0.023697832599282265,
- 0.007581643294543028,
- 0.018552547320723534,
- -0.0017788928234949708,
- -0.04735596105456352,
- -0.03985191509127617,
- -0.07443221658468246,
- -0.03796681389212608,
- -0.04690292850136757,
- -0.031292881816625595,
- 0.036801572889089584,
- 0.07800036668777466,
- -0.1299811601638794,
- 0.009029747918248177,
- -0.0072835893370211124,
- 0.022332806140184402,
- 0.0021765667479485273,
- -0.016931232064962387,
- 0.0539059191942215,
- 0.05003172904253006,
- -0.01206183061003685,
- -0.008343739435076714,
- -0.07410893589258194,
- -1.2762101597729725e-8,
- -0.032521046698093414,
- -0.020127257332205772,
- -0.00605465192347765,
- -0.09217263758182526,
- -0.027403702959418297,
- 0.10248275101184845,
- 0.012217552401125431,
- 0.035306185483932495,
- -0.04953993856906891,
- 0.04404400661587715,
- 0.028543801978230476,
- -0.013689342886209488,
- 0.08573660999536514,
- 0.09490551799535751,
- 0.05905752256512642,
- -0.00017479596135672182,
- -0.0634123906493187,
- 0.07318419963121414,
- -0.09352520108222961,
- -0.05732236057519913,
- 0.05242733284831047,
- 0.00905807875096798,
- 0.07449164986610413,
- 0.027097152546048164,
- -0.0057325176894664764,
- -0.04532444849610329,
- -0.07113185524940491,
- 0.0020608084741979837,
- 0.06471079587936401,
- 0.05969987064599991,
- 0.026169966906309128,
- 0.047315895557403564,
- 0.0053569842129945755,
- -0.07123420387506485,
- -0.05924205854535103,
- -0.016866637393832207,
- 0.02653980441391468,
- -0.0268555860966444,
- -0.049239497631788254,
- -0.02831224352121353,
- -0.014531482942402363,
- 0.07485904544591904,
- 0.0038097614888101816,
- 0.01868017204105854,
- -0.005878628697246313,
- 0.0058020637370646,
- -0.07465390861034393,
- -0.033959802240133286,
- -0.04450662434101105,
- 0.014423002488911152,
- 0.02311982773244381,
- 0.01008340809494257,
- 0.037246573716402054,
- 0.08595343679189682,
- 0.031883470714092255,
- 0.036073245108127594,
- 0.018937602639198303,
- -0.05032220110297203,
- -0.0547499917447567,
- -0.009359413757920265,
- 0.06712298840284348,
- 0.01632498763501644,
- 0.0725855901837349,
- -0.02253665216267109
- ]
- },
- {
- "keyword": "thermodynamics",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07601064443588257,
- 0.02889188751578331,
- -0.03161218389868736,
- 0.07809899747371674,
- 0.004000359680503607,
- -0.02113601751625538,
- 0.024238957092165947,
- 0.015533765777945518,
- 0.06580430269241333,
- 0.009518778882920742,
- -0.005779599770903587,
- -0.06779131293296814,
- 0.015953943133354187,
- -0.022232333198189735,
- -0.06138460338115692,
- -0.0760461762547493,
- -0.026976121589541435,
- 0.028487781062722206,
- -0.0953540951013565,
- -0.036812759935855865,
- 0.019654154777526855,
- -0.009907861240208149,
- -0.07891493290662766,
- 0.03638489171862602,
- -0.010063703171908855,
- 0.07956518232822418,
- -0.03183000534772873,
- 0.1019938513636589,
- 0.017549773678183556,
- -0.045176874846220016,
- -0.02801133692264557,
- 0.014156331308186054,
- -0.024770323187112808,
- 0.05106566101312637,
- 0.025312980636954308,
- 0.03997126966714859,
- -0.007510029710829258,
- 0.013866490684449673,
- -0.05661998316645622,
- 0.04744128882884979,
- -0.036254189908504486,
- -0.06658616662025452,
- -0.0181290153414011,
- 0.09545419365167618,
- 0.015101013705134392,
- 0.0016410219250246882,
- 0.024980302900075912,
- 0.0002621754538267851,
- 0.02276737429201603,
- -0.010633934289216995,
- -0.05317435786128044,
- -0.022194543853402138,
- -0.07203410565853119,
- 0.09267716109752655,
- 0.06812760978937149,
- 0.06176164373755455,
- 0.03868834674358368,
- -0.024244118481874466,
- -0.04539302736520767,
- -0.06601452827453613,
- 0.03528554365038872,
- 0.030652496963739395,
- -0.10645601898431778,
- 0.0576804094016552,
- 0.15441226959228516,
- -0.0754491537809372,
- 0.06487129628658295,
- 0.05873063579201698,
- 0.0073337373323738575,
- 0.020933818072080612,
- 0.000026550755137577653,
- 0.018608389422297478,
- -0.006158299744129181,
- -0.06987489759922028,
- 0.06897024065256119,
- -0.12680558860301971,
- -0.002105897758156061,
- -0.02227121591567993,
- 0.04195313900709152,
- 0.01985497586429119,
- 0.01497800275683403,
- -0.0960676521062851,
- -0.03630303591489792,
- -0.05173743888735771,
- -0.0636882558465004,
- 0.0252357367426157,
- 0.04458959028124809,
- -0.02536056563258171,
- 0.03212758153676987,
- 0.009989798069000244,
- -0.01294458657503128,
- -0.021548056975007057,
- -0.04741017520427704,
- -0.030603652819991112,
- 0.06655555218458176,
- 0.059062886983156204,
- 0.007811441086232662,
- -0.06996095180511475,
- 0.07288335263729095,
- 0.06261317431926727,
- -0.016070904210209846,
- -0.025268299505114555,
- -0.08390669524669647,
- 0.03713025525212288,
- 0.036595866084098816,
- 0.022375857457518578,
- 0.05513041466474533,
- 0.026442527770996094,
- 0.034102290868759155,
- 0.0515742264688015,
- 0.014363881200551987,
- 0.0059219179674983025,
- 0.03503291308879852,
- 0.0413217656314373,
- -0.03922811150550842,
- -0.0569290965795517,
- 0.012392477132380009,
- -0.0036537712439894676,
- -0.09115245938301086,
- -0.007285534869879484,
- 0.001613436616025865,
- 0.01402934081852436,
- -0.02826034091413021,
- 0.04359961301088333,
- -0.14459963142871857,
- -0.0230390764772892,
- 0.03553468734025955,
- -2.00056740717972e-33,
- -0.0320916622877121,
- -0.12893617153167725,
- 0.05264928936958313,
- 0.05108034238219261,
- 0.01577458344399929,
- 0.013689872808754444,
- -0.08168597519397736,
- -0.022382959723472595,
- 0.04216425493359566,
- 0.006526198238134384,
- 0.009194192476570606,
- 0.08587705343961716,
- -0.048500627279281616,
- 0.03536779806017876,
- -0.0025431886315345764,
- -0.005049323663115501,
- 0.011703704483807087,
- 0.051177434623241425,
- 0.027525320649147034,
- -0.016987280920147896,
- -0.05363744869828224,
- 0.05942194163799286,
- 0.04940763860940933,
- 0.028376664966344833,
- -0.008291198872029781,
- 0.03988862410187721,
- -0.03979019075632095,
- -0.017336878925561905,
- -0.01454797014594078,
- 0.04029378294944763,
- -0.008057608269155025,
- 0.003457761835306883,
- -0.11578478664159775,
- -0.015024199150502682,
- -0.04160746559500694,
- -0.014228463172912598,
- -0.05992008000612259,
- 0.028191229328513145,
- -0.002712045330554247,
- -0.04317499324679375,
- -0.07349757850170135,
- -0.013059241697192192,
- 0.010843108408153057,
- 0.008819494396448135,
- -0.029030459001660347,
- 0.07736842334270477,
- 0.1002964973449707,
- 0.04632730782032013,
- -0.05938966944813728,
- -0.027321329340338707,
- -0.010674724355340004,
- 0.0031415049452334642,
- 0.0052201715297997,
- 0.033083558082580566,
- 0.003916345536708832,
- 0.03592668101191521,
- 0.0352204330265522,
- 0.004768353886902332,
- -0.09573644399642944,
- -0.029656188562512398,
- 0.003406440606340766,
- 0.05863350257277489,
- 0.1070980355143547,
- -0.014784805476665497,
- 0.010360078886151314,
- 0.024029100313782692,
- -0.05214841663837433,
- -0.019495517015457153,
- 0.06879164278507233,
- -0.06236419826745987,
- -0.13884498178958893,
- -0.027223559096455574,
- 0.07869874686002731,
- 0.032433100044727325,
- 0.06496278941631317,
- 0.00464214850217104,
- -0.009654894471168518,
- -0.0820682942867279,
- -0.08072177320718765,
- 0.001280632452107966,
- -0.12365255504846573,
- -0.04971642047166824,
- 0.03940490633249283,
- -0.016641145572066307,
- -0.04542975872755051,
- -0.023396337404847145,
- -0.0823705643415451,
- 0.01741916872560978,
- -0.008654593490064144,
- 0.08699288219213486,
- -0.09999141842126846,
- -0.07970664650201797,
- 0.12956982851028442,
- 0.010878012515604496,
- 0.010083355009555817,
- -2.450278301354718e-33,
- -0.018327180296182632,
- -0.004961726721376181,
- -0.044903818517923355,
- 0.03422890231013298,
- 0.049493804574012756,
- 0.01662641204893589,
- -0.043166764080524445,
- -0.08041074126958847,
- -0.10568122565746307,
- 0.0278769601136446,
- 0.051112037152051926,
- -0.025319823995232582,
- 0.012353487312793732,
- -0.06343787908554077,
- -0.024148007854819298,
- 0.07138925045728683,
- 0.05901476740837097,
- 0.012237265706062317,
- 0.0205155648291111,
- 0.0013383951736614108,
- -0.05145685002207756,
- 0.09422139823436737,
- 0.0038890966679900885,
- -0.018226245418190956,
- -0.05371023342013359,
- 0.007670233026146889,
- -0.003523436840623617,
- -0.0787191241979599,
- -0.022175826132297516,
- -0.00826200470328331,
- 0.026772724464535713,
- -0.0478459931910038,
- -0.08022866398096085,
- 0.030601181089878082,
- -0.08348754793405533,
- 0.029853086918592453,
- 0.03856590390205383,
- 0.03629418835043907,
- -0.012544753029942513,
- 0.012058273889124393,
- 0.12260235846042633,
- 0.0024972062092274427,
- 0.026330232620239258,
- -0.01634189859032631,
- 0.019267017021775246,
- -0.05845730006694794,
- 0.008279000408947468,
- -0.03584962710738182,
- 0.09754887968301773,
- 0.010682237334549427,
- 0.09043191373348236,
- -0.05011875554919243,
- 0.008339658379554749,
- -0.008959207683801651,
- -0.04023462533950806,
- 0.039180390536785126,
- -0.01612616330385208,
- 0.038119759410619736,
- 0.07122796028852463,
- 0.02837696112692356,
- 0.011959838680922985,
- -0.09281618893146515,
- 0.06726857274770737,
- 0.1017342358827591,
- -0.10430902242660522,
- -0.004184370394796133,
- -0.06196741759777069,
- -0.015493450686335564,
- 0.0854029655456543,
- -0.06790783256292343,
- 0.05654742941260338,
- 0.08779627829790115,
- -0.06163433566689491,
- -0.04450111463665962,
- 0.08899436891078949,
- 0.042849455028772354,
- 0.043551575392484665,
- -0.0412067249417305,
- -0.003861670382320881,
- -0.12067218869924545,
- -0.0983409434556961,
- 0.054456520825624466,
- 0.01796068623661995,
- 0.008367212489247322,
- -0.05435915291309357,
- -0.07158569246530533,
- 0.07414332032203674,
- -0.0677831619977951,
- -0.0027302857488393784,
- -0.025029050186276436,
- 0.0028828568756580353,
- 0.03900113329291344,
- 0.0567542128264904,
- 0.0014959878753870726,
- -0.06811559945344925,
- -1.9202937906470652e-8,
- 0.029017340391874313,
- -0.01538812555372715,
- 0.11644012480974197,
- -0.0565907284617424,
- 0.023044517263770103,
- 0.02546423114836216,
- 0.019185494631528854,
- 0.04639611393213272,
- 0.000555623322725296,
- 0.06186726689338684,
- 0.008530150167644024,
- 0.04323529452085495,
- 0.065462127327919,
- 0.057053342461586,
- -0.02303639054298401,
- -0.01688145473599434,
- -0.07148047536611557,
- 0.027440747246146202,
- -0.03699076920747757,
- -0.1195981502532959,
- 0.07894036918878555,
- -0.030936961993575096,
- 0.03335459530353546,
- 0.02442118339240551,
- 0.0631614401936531,
- 0.026465291157364845,
- -0.03436918556690216,
- -0.030489498749375343,
- -0.0075895050540566444,
- 0.0523783415555954,
- -0.048248715698719025,
- 0.0021841477137058973,
- -0.03169603645801544,
- -0.04573451355099678,
- -0.004095305223017931,
- -0.0000755856599425897,
- 0.019818266853690147,
- 0.010926255024969578,
- -0.008875858038663864,
- -0.049315884709358215,
- 0.004594918806105852,
- -0.016987832263112068,
- -0.018597032874822617,
- 0.05693674460053444,
- -0.03610457852482796,
- -0.03392072767019272,
- -0.07448431849479675,
- -0.001432805904187262,
- 0.018289219588041306,
- 0.07987198978662491,
- 0.057775579392910004,
- 0.021290456876158714,
- 0.02518347091972828,
- 0.04283321276307106,
- 0.017135633155703545,
- -0.07259788364171982,
- -0.04567313194274902,
- 0.06712274998426437,
- -0.017575042322278023,
- 0.014511901885271072,
- -0.003882906399667263,
- 0.03207218647003174,
- -0.03364908695220947,
- -0.038149673491716385
- ]
- },
- {
- "keyword": "chemistry",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03365504741668701,
- 0.012986047193408012,
- -0.03494521602988243,
- 0.09137148410081863,
- 0.03952421620488167,
- 0.00026119229733012617,
- 0.12036032974720001,
- 0.0575244314968586,
- 0.045471251010894775,
- -0.004850574303418398,
- -0.038474757224321365,
- -0.0835912749171257,
- -0.016060853376984596,
- 0.03855154290795326,
- -0.08056530356407166,
- -0.03756285086274147,
- -0.00017297500744462013,
- -0.019384782761335373,
- -0.06657136231660843,
- -0.031841497868299484,
- -0.06990557909011841,
- 0.018299439921975136,
- 0.01909373141825199,
- 0.027370940893888474,
- -0.05512366443872452,
- 0.14748398959636688,
- -0.002307986607775092,
- 0.0027869802433997393,
- -0.0007404214120469987,
- -0.08412794768810272,
- 0.02664763294160366,
- 0.11032325029373169,
- 0.08054904639720917,
- -0.02919531799852848,
- -0.007264113985002041,
- 0.0006404988234862685,
- -0.04109436273574829,
- -0.016422441229224205,
- 0.0022455574944615364,
- 0.03250987082719803,
- -0.06156992167234421,
- -0.047615017741918564,
- 0.034672390669584274,
- 0.007027129177004099,
- 0.04575783386826515,
- -0.05947713926434517,
- 0.07017185539007187,
- -0.06505425274372101,
- -0.01645663194358349,
- 0.014380893670022488,
- 0.0140477130189538,
- 0.01695171557366848,
- -0.13695292174816132,
- 0.03650159016251564,
- 0.021585684269666672,
- -0.004989102948457003,
- 0.00939185731112957,
- 0.006670426111668348,
- -0.05108671262860298,
- -0.01657664030790329,
- 0.04227275028824806,
- -0.006717684678733349,
- -0.051951829344034195,
- 0.024359701201319695,
- 0.13726921379566193,
- -0.034542083740234375,
- 0.06841238588094711,
- 0.01779468171298504,
- 0.028624393045902252,
- -0.000486901932163164,
- 0.0047802249900996685,
- -0.023149149492383003,
- 0.04095054417848587,
- 0.01744590699672699,
- 0.10968249291181564,
- 0.01895885169506073,
- 0.04015255719423294,
- -0.047636643052101135,
- 0.09397314488887787,
- -0.04086408019065857,
- 0.0028567640110850334,
- -0.02727489359676838,
- -0.06882214546203613,
- 0.025700895115733147,
- 0.03049834445118904,
- 0.016018347814679146,
- 0.015786822885274887,
- -0.040373243391513824,
- -0.01363306399434805,
- -0.04845366254448891,
- -0.028739308938384056,
- 0.00229995627887547,
- 0.012687627226114273,
- -0.01948036253452301,
- -0.1124953180551529,
- 0.09465943276882172,
- -0.01723473146557808,
- -0.03379877284169197,
- 0.01617126166820526,
- 0.1927061676979065,
- 0.04215579852461815,
- 0.09386476129293442,
- -0.16492170095443726,
- -0.009432844817638397,
- -0.00036140752490609884,
- -0.042666852474212646,
- 0.0196367334574461,
- 0.07453689724206924,
- 0.013266082853078842,
- 0.061013493686914444,
- -0.0037238970398902893,
- -0.002252405509352684,
- -0.0037022109609097242,
- 0.051920440047979355,
- 0.006098316982388496,
- 0.06097813695669174,
- 0.062937892973423,
- -0.025131717324256897,
- -0.028175272047519684,
- -0.007318572141230106,
- -0.0014254996785894036,
- -0.03087756223976612,
- -0.05712228640913963,
- 0.01777542009949684,
- -0.033560607582330704,
- -0.06724647432565689,
- 0.0050682686269283295,
- -5.735338691391684e-33,
- -0.04384741187095642,
- -0.056672655045986176,
- 0.06344544142484665,
- 0.043463461101055145,
- -0.07186379283666611,
- -0.000525833573192358,
- -0.05913669615983963,
- -0.08539208024740219,
- -0.03339814767241478,
- 0.04681521654129028,
- 0.030094271525740623,
- 0.06895919144153595,
- -0.018042536452412605,
- -0.007865930907428265,
- 0.015454697422683239,
- 0.05048181489109993,
- -0.026819370687007904,
- 0.07017197459936142,
- 0.05946948006749153,
- -0.021618720144033432,
- -0.08943348377943039,
- 0.059806324541568756,
- 0.007423105649650097,
- 0.04660098999738693,
- -0.03360787779092789,
- 0.09493991732597351,
- -0.03703365474939346,
- -0.049353618174791336,
- 0.02880856953561306,
- -0.007987000048160553,
- 0.07733497768640518,
- 0.06120501831173897,
- -0.10002679377794266,
- -0.014240581542253494,
- -0.038845404982566833,
- -0.03718305006623268,
- -0.10178481042385101,
- 0.004236261826008558,
- 0.053396277129650116,
- -0.07208151370286942,
- -0.0201552901417017,
- 0.026498600840568542,
- 0.015417828224599361,
- 0.01756381057202816,
- 0.03957398235797882,
- 0.04935842752456665,
- -0.0007457614992745221,
- 0.057445842772722244,
- -0.014320239424705505,
- -0.014839064329862595,
- -0.05612146109342575,
- -0.024288399145007133,
- 0.05787474662065506,
- -0.016204899176955223,
- 0.03652197867631912,
- 0.04539810121059418,
- 0.05867757275700569,
- 0.011899638921022415,
- -0.0036602099426090717,
- 0.043404750525951385,
- 0.03171806037425995,
- 0.16597522795200348,
- -0.061261262744665146,
- 0.030587555840611458,
- -0.0055524492636322975,
- -0.029400618746876717,
- -0.05062061920762062,
- -0.01575625315308571,
- 0.09459485858678818,
- -0.05812619626522064,
- -0.12087215483188629,
- 0.009436533786356449,
- 0.0632454976439476,
- 0.02504667267203331,
- 0.01993263140320778,
- 0.0033623212948441505,
- 0.020697716623544693,
- -0.09921474009752274,
- 0.02234468050301075,
- 0.0417272113263607,
- -0.07527219504117966,
- -0.04687073826789856,
- 0.011041474528610706,
- -0.05499539524316788,
- -0.12017384171485901,
- -0.020357361063361168,
- -0.0401202030479908,
- -0.04163375869393349,
- 0.03415599837899208,
- 0.09208343923091888,
- -0.07799597084522247,
- -0.09922034293413162,
- 0.058666858822107315,
- -0.029713403433561325,
- -0.00433352030813694,
- 3.00197765680095e-33,
- 0.005697294604033232,
- -0.059343371540308,
- -0.04481447860598564,
- 0.09900911897420883,
- 0.04339815303683281,
- -0.04003801941871643,
- -0.05858003348112106,
- -0.08277594298124313,
- 0.06251295655965805,
- 0.055256616324186325,
- 0.04443911835551262,
- -0.02322700060904026,
- 0.060680169612169266,
- -0.038951899856328964,
- -0.08157707750797272,
- -0.0031626366544514894,
- 0.005482842214405537,
- 0.02542748861014843,
- 0.03448157012462616,
- 0.02633933536708355,
- -0.0532505139708519,
- 0.05915767699480057,
- -0.05914001166820526,
- -0.045083269476890564,
- -0.01964917778968811,
- 0.062256280332803726,
- 0.026836438104510307,
- -0.1130078062415123,
- 0.021976832300424576,
- 0.03334995359182358,
- 0.03526690974831581,
- -0.017276110127568245,
- 0.00328687927685678,
- -0.031235622242093086,
- 0.025098951533436775,
- 0.0193464495241642,
- 0.07256361842155457,
- -0.0004374298150651157,
- -0.060288552194833755,
- 0.009285504929721355,
- 0.02336915396153927,
- -0.024359501898288727,
- 0.060453739017248154,
- 0.06072147190570831,
- 0.02670958638191223,
- 0.03908034786581993,
- -0.01177298929542303,
- 0.005721068475395441,
- 0.006735491566359997,
- -0.029952475801110268,
- 0.07039431482553482,
- 0.011814347468316555,
- -0.03792952001094818,
- -0.07261301577091217,
- 0.06739174574613571,
- 0.06335784494876862,
- -0.04881822690367699,
- -0.02787713147699833,
- 0.02277791127562523,
- 0.01929396763443947,
- 0.04330547899007797,
- -0.02018318884074688,
- -0.021024759858846664,
- 0.019516289234161377,
- -0.113986536860466,
- 0.036930739879608154,
- -0.05980844423174858,
- 0.045963797718286514,
- 0.041905682533979416,
- -0.04341302067041397,
- 0.09389178454875946,
- 0.07607945799827576,
- 0.04144320636987686,
- 0.014589523896574974,
- -0.02709738351404667,
- -0.05973358452320099,
- -0.026547947898507118,
- -0.044016364961862564,
- -0.03739575669169426,
- -0.07896564155817032,
- -0.07601694017648697,
- -0.0027048359625041485,
- -0.046482283622026443,
- 0.02610008977353573,
- -0.02406887151300907,
- -0.013654791750013828,
- 0.022575175389647484,
- 0.02949003502726555,
- -0.00908388290554285,
- -0.11745647341012955,
- -0.046326976269483566,
- -0.005142075475305319,
- 0.00733279250562191,
- -0.012892264872789383,
- -0.015354620292782784,
- -1.2753010203425674e-8,
- 0.013729429803788662,
- -0.049149785190820694,
- 0.04256049916148186,
- -0.07912808656692505,
- 0.010683503933250904,
- 0.055595360696315765,
- 0.05456443130970001,
- 0.026852374896407127,
- -0.03518552705645561,
- 0.07229132205247879,
- -0.04832738637924194,
- 0.06651552766561508,
- -0.002032421762123704,
- 0.013524476438760757,
- 0.051538508385419846,
- -0.0037973374128341675,
- -0.013678339309990406,
- -0.04585651308298111,
- -0.06699170917272568,
- -0.031202571466565132,
- -0.009678424336016178,
- 0.029553066939115524,
- 0.0038303155452013016,
- -0.0046509429812431335,
- -0.010976754128932953,
- -0.03188721835613251,
- 0.07002194970846176,
- -0.007767119444906712,
- -0.002858878346160054,
- -0.03130405768752098,
- 0.0049903676845133305,
- -0.01094104629009962,
- 0.007518016267567873,
- 0.008836295455694199,
- 0.07228946685791016,
- -0.05249576270580292,
- 0.03396211937069893,
- -0.07109824568033218,
- 0.0023511038161814213,
- -0.023870188742876053,
- -0.08704753965139389,
- 0.009023807942867279,
- -0.030389156192541122,
- 0.02650623954832554,
- 0.04036436975002289,
- -0.01185857504606247,
- -0.0002525865565985441,
- 0.06546702235937119,
- 0.01129305362701416,
- 0.0005785163375549018,
- -0.023689905181527138,
- -0.03652435168623924,
- -0.022443803027272224,
- -0.01795116625726223,
- -0.003689454635605216,
- 0.02724713832139969,
- -0.006188686937093735,
- 0.0034143372904509306,
- -0.044022366404533386,
- 0.015406733378767967,
- 0.17457878589630127,
- 0.00537224393337965,
- 0.10014407336711884,
- -0.025255581364035606
- ]
- },
- {
- "keyword": "biology",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04437147453427315,
- 0.03634687885642052,
- -0.0362338051199913,
- 0.041107311844825745,
- -0.01206678245216608,
- -0.018976861611008644,
- 0.06578150391578674,
- 0.048350948840379715,
- 0.03128864988684654,
- 0.05658932775259018,
- -0.00008037589577725157,
- -0.03952407464385033,
- -0.08067403733730316,
- 0.052237220108509064,
- -0.12048261612653732,
- -0.0018190699629485607,
- -0.10643934458494186,
- 0.020795661956071854,
- -0.09155121445655823,
- 0.0007615467766299844,
- -0.03011004999279976,
- 0.07174631953239441,
- 0.012906067073345184,
- -0.003630715887993574,
- -0.07210182398557663,
- 0.005429945420473814,
- -0.02408076822757721,
- -0.017842061817646027,
- -0.026019757613539696,
- -0.09656789153814316,
- -0.0021601940970867872,
- 0.07215645164251328,
- 0.04824702441692352,
- -0.015719406306743622,
- -0.030849110335111618,
- 0.03434758633375168,
- 0.0011696538422256708,
- -0.03003564476966858,
- 0.06733638048171997,
- 0.036976780742406845,
- -0.01859048195183277,
- -0.04272523522377014,
- 0.006611545570194721,
- 0.016155051067471504,
- 0.006777685135602951,
- 0.046431995928287506,
- 0.007902441546320915,
- -0.01447633933275938,
- 0.014884465374052525,
- -0.06122661754488945,
- -0.03552033007144928,
- -0.032563790678977966,
- -0.12292510271072388,
- 0.03584769740700722,
- 0.049280837178230286,
- 0.014119542203843594,
- -0.059666916728019714,
- -0.024244172498583794,
- -0.0247969888150692,
- -0.0651344358921051,
- 0.062445465475320816,
- -0.011597310192883015,
- -0.022099725902080536,
- 0.06277205795049667,
- 0.09747003018856049,
- -0.0633305087685585,
- 0.003039875766262412,
- 0.04430096969008446,
- 0.0038178095128387213,
- 0.007132123690098524,
- 0.03121771663427353,
- -0.01251146849244833,
- -0.002548763295635581,
- 0.09891107678413391,
- 0.08069134503602982,
- -0.004700840916484594,
- -0.025338713079690933,
- 0.028231080621480942,
- 0.08456051349639893,
- -0.026931654661893845,
- 0.03855373337864876,
- -0.06066868081688881,
- -0.02003435231745243,
- 0.0299046840518713,
- 0.022224562242627144,
- -0.019691457971930504,
- 0.06934155523777008,
- 0.06396801024675369,
- -0.09891742467880249,
- 0.06120400130748749,
- -0.02936425805091858,
- -0.06229405105113983,
- 0.030253393575549126,
- 0.0016497272299602628,
- -0.12000367045402527,
- 0.054265737533569336,
- 0.008464743383228779,
- -0.11609391123056412,
- 0.04969880357384682,
- 0.21037141978740692,
- -0.04333201423287392,
- 0.028601108118891716,
- -0.03214598819613457,
- 0.10298404842615128,
- 0.030636267736554146,
- -0.10204601287841797,
- -0.03917255997657776,
- 0.0037301438860595226,
- 0.05881442129611969,
- 0.0366741381585598,
- -0.006334347650408745,
- 0.04256501793861389,
- -0.003334758570417762,
- 0.10297830402851105,
- 0.005201008636504412,
- 0.05276980623602867,
- 0.09983687102794647,
- -0.02341499552130699,
- 0.06774813681840897,
- -0.0008514714427292347,
- -0.02122371457517147,
- -0.04735269397497177,
- -0.04462261125445366,
- -0.024861475452780724,
- -0.04789344593882561,
- -0.03159834444522858,
- -0.05059618130326271,
- -7.357704199176772e-33,
- 0.005188034847378731,
- -0.10986348986625671,
- 0.055237311869859695,
- 0.025471379980444908,
- -0.04108801111578941,
- 0.028046345338225365,
- -0.016151512041687965,
- -0.0958540216088295,
- 0.014260844327509403,
- 0.0120164193212986,
- -0.05815412849187851,
- -0.011787515133619308,
- 0.006221877411007881,
- 0.035806804895401,
- 0.02772056683897972,
- 0.034945812076330185,
- -0.09706318378448486,
- 0.10221248865127563,
- -0.007416161708533764,
- 0.01894032023847103,
- -0.05976985767483711,
- 0.03286914527416229,
- -0.02027297206223011,
- -0.04648032411932945,
- 0.003131041070446372,
- -0.026700960472226143,
- -0.07072396576404572,
- -0.07248402386903763,
- 0.052775003015995026,
- -0.007860974408686161,
- 0.02787638269364834,
- -0.01621410995721817,
- -0.06765040010213852,
- -0.006784639786928892,
- 0.015414483845233917,
- -0.07075408846139908,
- 0.04276851937174797,
- -0.05551569163799286,
- -0.016827629879117012,
- -0.019646376371383667,
- -0.0016349400393664837,
- -0.03587726131081581,
- 0.036452531814575195,
- -0.04056448116898537,
- 0.0921143889427185,
- 0.029785899445414543,
- 0.0005787623813375831,
- 0.001857530907727778,
- -0.07816002517938614,
- 0.023662526160478592,
- -0.024066535755991936,
- -0.01819603517651558,
- 0.09439440071582794,
- -0.09702379256486893,
- 0.019570011645555496,
- 0.0446074977517128,
- -0.02827908843755722,
- -0.012195094488561153,
- -0.09845814853906631,
- 0.017909614369273186,
- 0.07369565218687057,
- 0.11902237683534622,
- -0.06272142380475998,
- 0.035703014582395554,
- 0.069329634308815,
- -0.041538678109645844,
- -0.08463575690984726,
- -0.1068311333656311,
- 0.01604424975812435,
- 0.030326776206493378,
- -0.06178572028875351,
- -0.053595494478940964,
- -0.021839510649442673,
- -0.09511546045541763,
- 0.002986325416713953,
- 0.005993920844048262,
- 0.0009393876534886658,
- 0.016618138179183006,
- -0.0942888855934143,
- 0.004227093420922756,
- 0.01276180986315012,
- -0.024163639172911644,
- -0.033989500254392624,
- -0.029704272747039795,
- -0.04661933332681656,
- 0.0869842916727066,
- 0.01860169880092144,
- -0.07489088177680969,
- 0.0015769762685522437,
- 0.019573740661144257,
- -0.06200341880321503,
- -0.043106213212013245,
- -0.0193544402718544,
- -0.0021973298862576485,
- -0.0008054387290030718,
- 3.475088235397004e-33,
- 0.0012242209631949663,
- -0.07921617478132248,
- -0.03956092521548271,
- 0.051149170845746994,
- 0.04418650642037392,
- 0.05274984985589981,
- -0.012494413182139397,
- -0.02458321675658226,
- 0.009995500557124615,
- 0.014424259774386883,
- 0.004201456904411316,
- 0.044268593192100525,
- 0.06438379734754562,
- -0.010134270414710045,
- -0.0275648832321167,
- -0.0290678720921278,
- -0.022679945454001427,
- -0.013505176641047001,
- -0.010298244655132294,
- -0.003881830722093582,
- -0.10246289521455765,
- 0.07102499157190323,
- -0.005586571525782347,
- -0.0637231096625328,
- -0.017189139500260353,
- 0.07248518615961075,
- -0.02069707214832306,
- 0.051069360226392746,
- -0.029435940086841583,
- 0.01963193528354168,
- -0.012890875339508057,
- 0.02893921174108982,
- -0.018349695950746536,
- -0.016954733058810234,
- 0.02376674860715866,
- 0.09171827882528305,
- 0.06611253321170807,
- 0.008118797093629837,
- 0.041794635355472565,
- -0.0478755459189415,
- 0.06402261555194855,
- 0.039191149175167084,
- 0.011781977489590645,
- 0.06042018532752991,
- 0.05541913956403732,
- 0.04847574606537819,
- 0.018037065863609314,
- 0.09280618280172348,
- 0.01750459522008896,
- 0.04119155928492546,
- -0.004632530268281698,
- 0.03264061361551285,
- -0.013138731010258198,
- -0.04241066053509712,
- 0.049087055027484894,
- 0.0020530163310468197,
- -0.014377202838659286,
- -0.05745465308427811,
- 0.03303650766611099,
- 0.02922591008245945,
- -0.023754382506012917,
- -0.008225036785006523,
- -0.031293194741010666,
- 0.11669118702411652,
- -0.11355596780776978,
- 0.06860117614269257,
- -0.033604830503463745,
- 0.03903285041451454,
- -0.0037544744554907084,
- 0.004372535739094019,
- 0.05526069179177284,
- 0.07546854764223099,
- -0.04933256655931473,
- 0.0008807259146124125,
- -0.01837797835469246,
- 0.04034923017024994,
- -0.1102331206202507,
- -0.002498163841664791,
- -0.022257989272475243,
- 0.008298072963953018,
- -0.04160412400960922,
- -0.05161621794104576,
- -0.0036809539888054132,
- 0.005071253981441259,
- 0.010769056156277657,
- -0.07625720649957657,
- 0.023964468389749527,
- 0.0316794253885746,
- 0.024009419605135918,
- -0.06766964495182037,
- -0.04150506481528282,
- -0.04265417158603668,
- -0.09823939949274063,
- -0.03812221810221672,
- -0.015165592543780804,
- -1.5861537860928365e-8,
- 0.09051942080259323,
- -0.04849487543106079,
- 0.04778645560145378,
- -0.08271096646785736,
- 0.029418885707855225,
- 0.05656867474317551,
- -0.006307537667453289,
- 0.09096810221672058,
- 0.02586224302649498,
- 0.0754154771566391,
- -0.056680742651224136,
- 0.08578355610370636,
- 0.037442099303007126,
- 0.08189992606639862,
- 0.07699128240346909,
- 0.005973173305392265,
- -0.016472144052386284,
- -0.05009089410305023,
- -0.03585253655910492,
- -0.029216168448328972,
- -0.02761254273355007,
- -0.008284891955554485,
- -0.024171382188796997,
- 0.09704767912626266,
- 0.03950970992445946,
- -0.07076223194599152,
- 0.06100686639547348,
- -0.023340661078691483,
- 0.018734058365225792,
- -0.06217449903488159,
- 0.05573113262653351,
- 0.0711951032280922,
- 0.022049393504858017,
- 0.024193599820137024,
- -0.045719046145677567,
- -0.031474485993385315,
- 0.02557974122464657,
- -0.06426847726106644,
- 0.01777038723230362,
- -0.0073790173046290874,
- -0.028028937056660652,
- 0.005249293986707926,
- -0.00394011614844203,
- 0.005230068229138851,
- 0.012379275634884834,
- 0.006201518699526787,
- 0.07195797562599182,
- 0.02013450860977173,
- -0.005493542179465294,
- -0.042663995176553726,
- -0.01544809341430664,
- -0.026835396885871887,
- 0.014502162113785744,
- -0.0425584614276886,
- -0.08464036881923676,
- 0.04778127372264862,
- -0.013453270308673382,
- -0.01003352738916874,
- -0.04135294631123543,
- 0.023275217041373253,
- 0.10864261537790298,
- 0.09127268940210342,
- 0.12068423628807068,
- -0.03200675547122955
- ]
- },
- {
- "keyword": "genetics",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.02237665466964245,
- 0.042547404766082764,
- -0.052664585411548615,
- 0.09390383213758469,
- 0.028658485040068626,
- -0.023392876610159874,
- 0.06554167717695236,
- 0.049189187586307526,
- -0.030582338571548462,
- 0.03367753326892853,
- 0.0366678349673748,
- -0.04445529356598854,
- -0.053854748606681824,
- -0.04243380203843117,
- -0.09508480131626129,
- 0.00647415267303586,
- -0.10234186798334122,
- -0.029400276020169258,
- -0.18324430286884308,
- -0.06672600656747818,
- -0.07822194695472717,
- 0.03604116663336754,
- 0.07388170808553696,
- 0.030974669381976128,
- -0.053112681955099106,
- -0.0002803035022225231,
- 0.010608848184347153,
- -0.02472284808754921,
- 0.030364682897925377,
- -0.07738066464662552,
- -0.026460109278559685,
- 0.041744694113731384,
- 0.04686904698610306,
- -0.01339993067085743,
- -0.04220380634069443,
- 0.01863591931760311,
- -0.04298582300543785,
- 0.024395065382122993,
- 0.009780056774616241,
- 0.005226729903370142,
- -0.010562852025032043,
- -0.04843123257160187,
- 0.014476574957370758,
- 0.055336326360702515,
- -0.025454914197325706,
- 0.01818247325718403,
- -0.008079379796981812,
- 0.08026161789894104,
- -0.013495274819433689,
- 0.07396552711725235,
- -0.061207473278045654,
- -0.0490264855325222,
- -0.06839569658041,
- -0.01738285832107067,
- 0.06500791758298874,
- 0.011707930825650692,
- -0.0810331255197525,
- -0.026708688586950302,
- -0.005100220441818237,
- 0.010634439066052437,
- 0.008552738465368748,
- -0.015624603256583214,
- -0.05772221460938454,
- -0.022199634462594986,
- 0.11721732467412949,
- 0.017211593687534332,
- 0.10306107997894287,
- -0.022712746635079384,
- -0.011957291513681412,
- -0.03227614238858223,
- 0.0741155743598938,
- -0.03776216506958008,
- -0.04347354546189308,
- 0.14844995737075806,
- 0.044302161782979965,
- 0.046663541346788406,
- -0.012055973522365093,
- -0.009427053853869438,
- -0.01701235957443714,
- 0.004856500308960676,
- 0.024614909663796425,
- -0.037054676562547684,
- 0.011956063099205494,
- 0.0503905825316906,
- 0.028261160477995872,
- -0.033227045089006424,
- 0.03920825943350792,
- -0.03897424787282944,
- -0.060888636857271194,
- 0.07504340261220932,
- -0.049778055399656296,
- -0.048347197473049164,
- 0.030912362039089203,
- 0.015888428315520287,
- -0.08428866416215897,
- 0.07973846048116684,
- 0.028273513540625572,
- -0.11837075650691986,
- -0.013473819941282272,
- 0.16753752529621124,
- -0.016978450119495392,
- -0.029745984822511673,
- 0.024058569222688675,
- 0.1101975366473198,
- -0.013118072412908077,
- -0.07638203352689743,
- 0.017067300155758858,
- -0.004678195342421532,
- 0.005482400301843882,
- -0.0265720933675766,
- -0.015400039032101631,
- -0.0072642238810658455,
- 0.0020893278997391462,
- 0.06704147160053253,
- -0.05512461066246033,
- -0.020663006231188774,
- 0.06361107528209686,
- 0.02476365491747856,
- -0.028614923357963562,
- 0.017397290095686913,
- -0.008701249957084656,
- 0.011390941217541695,
- 0.02270698919892311,
- 0.00814851000905037,
- -0.026412565261125565,
- -0.06234922632575035,
- -0.1197579875588417,
- -5.124625662443334e-33,
- -0.03196253627538681,
- -0.08004991710186005,
- 0.008909623138606548,
- 0.09620791673660278,
- -0.02545762248337269,
- 0.024252666160464287,
- 0.0017853353638201952,
- -0.05430527776479721,
- -0.034022584557533264,
- -0.05057603120803833,
- -0.06609205901622772,
- -0.062211208045482635,
- -0.005028391256928444,
- 0.01918037422001362,
- -0.000764025142416358,
- 0.07037962228059769,
- -0.0425739623606205,
- -0.023075714707374573,
- -0.016946112737059593,
- 0.05204654112458229,
- -0.009145728312432766,
- 0.06572508066892624,
- -0.02881608158349991,
- -0.0030476923566311598,
- -0.044981230050325394,
- -0.027080809697508812,
- -0.030781380832195282,
- -0.04096369817852974,
- 0.0059205275028944016,
- 0.013937929645180702,
- -0.012481754645705223,
- -0.006796540692448616,
- -0.02384360507130623,
- -0.06871293485164642,
- -0.02785070613026619,
- -0.029115844517946243,
- 0.07812128216028214,
- -0.0866537019610405,
- 0.05466471239924431,
- 0.07242865860462189,
- -0.04373769462108612,
- -0.047012630850076675,
- -0.026327185332775116,
- -0.04799189418554306,
- 0.03885899856686592,
- 0.04379779472947121,
- 0.033088743686676025,
- -0.058801501989364624,
- -0.1457119584083557,
- 0.01958574540913105,
- -0.040627848356962204,
- 0.00499728973954916,
- 0.041139476001262665,
- -0.027009006589651108,
- 0.04017851874232292,
- -0.0203386303037405,
- 0.008585555478930473,
- 0.04320841655135155,
- -0.08665285259485245,
- 0.0016840617172420025,
- 0.03504271060228348,
- 0.1327696442604065,
- -0.02359900437295437,
- 0.05538536235690117,
- -0.03816518932580948,
- -0.0691940113902092,
- -0.011451030150055885,
- 0.006511043291538954,
- 0.07671058923006058,
- 0.03528944402933121,
- 0.08606429398059845,
- -0.07843560725450516,
- -0.01943322829902172,
- -0.017467763274908066,
- -0.023416325449943542,
- 0.0014972974313423038,
- 0.03558807820081711,
- 0.09265623986721039,
- -0.020685380324721336,
- 0.020616116002202034,
- -0.022494470700621605,
- 0.033507272601127625,
- -0.016588447615504265,
- -0.04546494781970978,
- -0.028988583013415337,
- 0.01177106611430645,
- 0.009926054626703262,
- -0.021309414878487587,
- 0.011856558732688427,
- -0.020308921113610268,
- 0.034242402762174606,
- -0.05636776238679886,
- 0.031248971819877625,
- -0.029473697766661644,
- -0.025582650676369667,
- 1.8575189282342635e-33,
- -0.07337149232625961,
- -0.04948853701353073,
- -0.01527370885014534,
- -0.008670960552990437,
- -0.04587605595588684,
- 0.02384173683822155,
- 0.0034165496472269297,
- -0.027148593217134476,
- -0.027743279933929443,
- 0.010024183429777622,
- 0.058383580297231674,
- 0.004765297751873732,
- 0.02418231964111328,
- -0.03580354526638985,
- -0.033423036336898804,
- -0.011264429427683353,
- 0.024425027891993523,
- 0.06742223352193832,
- -0.0205170139670372,
- -0.04139261692762375,
- 0.05553220584988594,
- 0.037271518260240555,
- 0.02220718003809452,
- -0.019214795902371407,
- -0.05619513615965843,
- 0.04615674912929535,
- -0.032658450305461884,
- 0.07986309379339218,
- -0.06887692958116531,
- 0.03286856785416603,
- -0.06840136647224426,
- 0.04469604790210724,
- -0.0028114053420722485,
- -0.014126746915280819,
- 0.07356741279363632,
- 0.06443147361278534,
- 0.04813305661082268,
- 0.06309811025857925,
- -0.0567459911108017,
- -0.033362265676259995,
- 0.012124378234148026,
- 0.07622170448303223,
- 0.06922539323568344,
- 0.02430296503007412,
- 0.041916027665138245,
- 0.07141885161399841,
- 0.06929491460323334,
- -0.004882656969130039,
- 0.09705504775047302,
- 0.01048088539391756,
- 0.01922723650932312,
- 0.026303524151444435,
- 0.07571037858724594,
- 0.030238334089517593,
- -0.010018203407526016,
- -0.05023079365491867,
- 0.09006243944168091,
- 0.016294721513986588,
- 0.0033315743785351515,
- 0.1270270049571991,
- -0.009249163791537285,
- -0.03900899365544319,
- -0.040182843804359436,
- 0.07222691178321838,
- -0.08699546754360199,
- -0.007892880588769913,
- -0.046558722853660583,
- -0.0063690789975225925,
- 0.07680699974298477,
- 0.0011932450579479337,
- 0.009476701728999615,
- 0.00687424186617136,
- 0.014017165638506413,
- 0.01187293790280819,
- -0.08104497194290161,
- 0.03130509704351425,
- -0.09399529546499252,
- 0.10736416280269623,
- -0.012357879430055618,
- -0.04126758128404617,
- -0.08964765071868896,
- -0.0510837696492672,
- 0.023636408150196075,
- -0.00992058776319027,
- 0.0017303219065070152,
- -0.05337076634168625,
- 0.042815856635570526,
- 0.01990489475429058,
- 0.05693010613322258,
- -0.057831838726997375,
- -0.04789357632398605,
- -0.008025062270462513,
- -0.1258474737405777,
- -0.02527322806417942,
- -0.0049893176183104515,
- -1.3408607557607866e-8,
- 0.0770154818892479,
- -0.09755849838256836,
- -0.003584903432056308,
- -0.015699928626418114,
- 0.024091949686408043,
- 0.10088495165109634,
- -0.07099424302577972,
- 0.07119795680046082,
- -0.0012910591904073954,
- 0.07694440335035324,
- -0.047800350934267044,
- 0.11506108939647675,
- -0.03615755960345268,
- 0.10549847781658173,
- 0.027908796444535255,
- -0.031026378273963928,
- -0.0303769800812006,
- -0.0041235447861254215,
- 0.03742329776287079,
- 0.02541298046708107,
- 0.051746267825365067,
- -0.06988243013620377,
- 0.03930921107530594,
- 0.09545685350894928,
- -0.023634692654013634,
- -0.0427662618458271,
- 0.037901412695646286,
- 0.012227385304868221,
- 0.008934524841606617,
- -0.04928760603070259,
- 0.03556669503450394,
- -0.03113987296819687,
- -0.05821089819073677,
- 0.0029156713280826807,
- -0.005248527508229017,
- -0.011895479634404182,
- 0.051741648465394974,
- -0.05063410848379135,
- 0.02012140490114689,
- -0.010194662027060986,
- 0.01505573932081461,
- -0.0696784034371376,
- -0.011865454725921154,
- 0.0175126101821661,
- -0.002029526513069868,
- -0.06555002182722092,
- 0.09262511879205704,
- -0.0031070609111338854,
- 0.03947283700108528,
- 0.011441404931247234,
- -0.0058051482774317265,
- -0.059569597244262695,
- -0.0011610588990151882,
- -0.03423977270722389,
- -0.06130917742848396,
- 0.020454861223697662,
- 0.027915745973587036,
- 0.017082281410694122,
- -0.026626702398061752,
- 0.0268869549036026,
- 0.1210305392742157,
- 0.11141528934240341,
- 0.09074246138334274,
- -0.048502400517463684
- ]
- },
- {
- "keyword": "neuroscience",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.009157371707260609,
- -0.05253157392144203,
- 0.006204365286976099,
- -0.0231238454580307,
- -0.05464882031083107,
- 0.00982565525919199,
- 0.05996972322463989,
- 0.04668720066547394,
- 0.05828079208731651,
- 0.048785250633955,
- -0.011970583349466324,
- 0.01658702827990055,
- -0.06520471721887589,
- 0.041942182928323746,
- -0.07938862591981888,
- -0.012901829555630684,
- -0.05021427944302559,
- -0.017874570563435555,
- -0.04017738252878189,
- 0.017222236841917038,
- -0.03578130528330803,
- 0.019976256415247917,
- 0.009850936010479927,
- -0.01736396737396717,
- -0.0009950363310053945,
- 0.07616651803255081,
- 0.014461471699178219,
- -0.03825670853257179,
- 0.01737428829073906,
- -0.02982247807085514,
- 0.10831580311059952,
- 0.022752774879336357,
- 0.0021858790423721075,
- 0.01638287864625454,
- -0.027354123070836067,
- 0.043975137174129486,
- -0.06727238744497299,
- -0.06897149235010147,
- 0.050883181393146515,
- -0.0169359240680933,
- -0.0399538055062294,
- -0.03133372217416763,
- 0.012599335983395576,
- -0.03593791648745537,
- -0.024345707148313522,
- 0.042397815734148026,
- 0.043222226202487946,
- -0.074983611702919,
- -0.06718664616346359,
- -0.08803775161504745,
- -0.0015113155823200941,
- -0.02748088352382183,
- -0.05095391348004341,
- 0.05367487296462059,
- -0.015481860376894474,
- 0.06963058561086655,
- -0.060162100940942764,
- 0.044072408229112625,
- -0.06951295584440231,
- 0.029554395005106926,
- -0.009221522137522697,
- -0.009019892662763596,
- -0.024570193141698837,
- 0.02728351391851902,
- 0.0992577001452446,
- 0.027769070118665695,
- -0.029695451259613037,
- -0.065092533826828,
- -0.01987845078110695,
- -0.003440774278715253,
- 0.07360554486513138,
- -0.021488476544618607,
- 0.04088427126407623,
- 0.014939036220312119,
- 0.05976887792348862,
- 0.005043950397521257,
- 0.021425677463412285,
- -0.012781321071088314,
- 0.09226342290639877,
- -0.15473610162734985,
- 0.0779561847448349,
- 0.01352309063076973,
- -0.06590218096971512,
- 0.0428127758204937,
- 0.06584057956933975,
- 0.027380013838410378,
- -0.016673684120178223,
- 0.06892208009958267,
- -0.07160214334726334,
- 0.05231887474656105,
- -0.015427655540406704,
- -0.047757457941770554,
- -0.06846931576728821,
- -0.037641741335392,
- -0.15650402009487152,
- -0.013528603129088879,
- -0.02805395796895027,
- -0.00962827168405056,
- -0.0047432780265808105,
- 0.17036260664463043,
- -0.029228027909994125,
- 0.0634947270154953,
- -0.0064229220151901245,
- 0.051437173038721085,
- 0.00680248998105526,
- -0.011906473897397518,
- 0.05324799194931984,
- -0.03963427245616913,
- -0.011674807406961918,
- -0.018579378724098206,
- -0.07213889062404633,
- 0.043814271688461304,
- -0.024367935955524445,
- 0.08763816207647324,
- 0.02145969308912754,
- 0.0024756607599556446,
- 0.02811439521610737,
- 0.06891351193189621,
- 0.11635348200798035,
- -0.025556843727827072,
- 0.0056790802627801895,
- -0.03776906803250313,
- -0.08195586502552032,
- -0.03332919999957085,
- -0.06718089431524277,
- -0.06373178958892822,
- -0.07814764231443405,
- -5.3181520728650076e-33,
- -0.008326745592057705,
- -0.05959407612681389,
- 0.008850185200572014,
- -0.06572644412517548,
- -0.013635695911943913,
- 0.06994975358247757,
- 0.016129521653056145,
- -0.09653438627719879,
- 0.06558838486671448,
- 0.03000299073755741,
- -0.07819599658250809,
- 0.002059642691165209,
- 0.031155075877904892,
- 0.08484230190515518,
- 0.06003423407673836,
- -0.011258838698267937,
- -0.09445759654045105,
- 0.057026732712984085,
- 0.00566320912912488,
- -0.05157685652375221,
- 0.010675746947526932,
- 0.07552254945039749,
- -0.028577273711562157,
- 0.011001796461641788,
- -0.00659882090985775,
- -0.06995361298322678,
- -0.06679665297269821,
- -0.023438971489667892,
- 0.07419387251138687,
- 0.0026547089219093323,
- -0.07310132682323456,
- 0.05296829715371132,
- -0.08342891186475754,
- -0.0423453152179718,
- 0.03211517259478569,
- -0.03446395695209503,
- 0.09588073939085007,
- -0.024660538882017136,
- 0.004809143487364054,
- 0.026523584499955177,
- -0.007418511435389519,
- 0.05111650004982948,
- -0.019684230908751488,
- -0.02103741280734539,
- 0.04728131368756294,
- 0.0774613693356514,
- 0.03400465101003647,
- -0.007250786293298006,
- -0.055287204682826996,
- -0.0798732340335846,
- -0.0598825067281723,
- -0.03947843983769417,
- 0.11764679104089737,
- -0.08401694148778915,
- 0.023309683427214622,
- 0.02531593106687069,
- 0.008958722464740276,
- -0.016761457547545433,
- 0.026183946058154106,
- 0.026164185255765915,
- 0.08189007639884949,
- 0.06604530662298203,
- -0.017051754519343376,
- 0.03208519518375397,
- 0.095540352165699,
- 0.026701413094997406,
- -0.010821127332746983,
- -0.08165289461612701,
- 0.052526481449604034,
- 0.015681510791182518,
- -0.056815098971128464,
- 0.02110375091433525,
- -0.025568734854459763,
- -0.05425266921520233,
- -0.046915844082832336,
- -0.018236713483929634,
- 0.034219350665807724,
- 0.0048306770622730255,
- -0.07937964797019958,
- -0.04490862414240837,
- -0.020020365715026855,
- -0.09462478011846542,
- -0.05632321909070015,
- -0.01876099966466427,
- 0.09888988733291626,
- 0.08353839069604874,
- 0.03466068208217621,
- -0.047371525317430496,
- -0.033675577491521835,
- -0.0019063301151618361,
- -0.045219842344522476,
- -0.05685911327600479,
- 0.04385692998766899,
- -0.04231308400630951,
- -0.048128653317689896,
- 3.7440424448910976e-33,
- -0.08075831830501556,
- 0.0012816345551982522,
- -0.030235985293984413,
- 0.026062514632940292,
- 0.045761123299598694,
- 0.06277591735124588,
- -0.03572087734937668,
- -0.011789177544414997,
- -0.00451321667060256,
- 0.016248460859060287,
- -0.004680149722844362,
- -0.016905885189771652,
- 0.0582289844751358,
- 0.03515339642763138,
- 0.011620713397860527,
- -0.08167274296283722,
- -0.06153605133295059,
- 0.0233480092138052,
- 0.028181791305541992,
- -0.01612909883260727,
- -0.008647816255688667,
- 0.12148948758840561,
- -0.0831882581114769,
- -0.0006656938348896801,
- 0.01763596571981907,
- 0.07009375840425491,
- -0.04087230563163757,
- 0.05296299606561661,
- -0.0616002082824707,
- 0.04039120301604271,
- -0.026524050161242485,
- 0.01745520904660225,
- -0.004588795360177755,
- -0.034001484513282776,
- 0.047292787581682205,
- 0.09823175519704819,
- 0.04786258563399315,
- 0.006684121210128069,
- -0.043557070195674896,
- -0.07803215831518173,
- 0.061927638947963715,
- 0.02306981012225151,
- 0.015490084886550903,
- 0.14003662765026093,
- 0.05279570445418358,
- -0.06606369465589523,
- -0.081462562084198,
- 0.08169402182102203,
- -0.09270408749580383,
- 0.034299157559871674,
- -0.053612858057022095,
- 0.02011074870824814,
- -0.027417555451393127,
- -0.1120106503367424,
- 0.00688956631347537,
- -0.04690840467810631,
- -0.007502336986362934,
- -0.07904790341854095,
- 0.020407123491168022,
- -0.01758086308836937,
- 0.004515442531555891,
- -0.03806266188621521,
- -0.05097811669111252,
- 0.044538531452417374,
- 0.011717615649104118,
- 0.07016617059707642,
- -0.01164704468101263,
- 0.033123958855867386,
- 0.05821394920349121,
- -0.0008091225754469633,
- 0.08293335139751434,
- 0.0687231719493866,
- 0.00023665023036301136,
- 0.03752832114696503,
- -0.010943664237856865,
- 0.0755356028676033,
- -0.08243872225284576,
- 0.043040208518505096,
- 0.026497960090637207,
- 0.05323932319879532,
- -0.021262405440211296,
- -0.0611206516623497,
- 0.01955600641667843,
- 0.04455152899026871,
- 0.002367811044678092,
- 0.03511720150709152,
- -0.005611835513263941,
- 0.027142416685819626,
- -0.02427642047405243,
- -0.10144566744565964,
- -0.03408978506922722,
- -0.025332750752568245,
- -0.009816523641347885,
- -0.00904818158596754,
- -0.060434259474277496,
- -1.1718415571237983e-8,
- 0.02618960291147232,
- -0.036875948309898376,
- 0.048578254878520966,
- -0.006116968113929033,
- 0.046282511204481125,
- 0.02526295743882656,
- 0.052788592875003815,
- -0.009856163524091244,
- -0.05846218392252922,
- 0.04840543493628502,
- 0.00725184241309762,
- 0.02013767510652542,
- 0.051073770970106125,
- 0.03832722827792168,
- 0.04620504006743431,
- 0.05533585697412491,
- -0.012796329334378242,
- 0.05918923020362854,
- -0.029313476756215096,
- -0.0013940942008048296,
- 0.06519370526075363,
- 0.00454555731266737,
- 0.012824052944779396,
- 0.04365076497197151,
- 0.04551051929593086,
- -0.0204832311719656,
- -0.003002955811098218,
- 0.03331594169139862,
- -0.0644044503569603,
- -0.03563101217150688,
- 0.07374894618988037,
- -0.0009684325195848942,
- 0.07868564873933792,
- -0.0027552186511456966,
- 0.031466517597436905,
- -0.058177649974823,
- 0.057454194873571396,
- -0.01978493295609951,
- 0.010957688093185425,
- -0.054058726876974106,
- -0.04203305020928383,
- -0.02996247634291649,
- 0.0531160794198513,
- 0.03213029354810715,
- 0.004170913714915514,
- -0.01287307683378458,
- 0.10095933824777603,
- -0.014758342877030373,
- 0.03837699070572853,
- -0.04196963086724281,
- -0.04750518873333931,
- 0.03596342355012894,
- 0.026170995086431503,
- -0.0435696542263031,
- -0.02640092559158802,
- 0.024300599470734596,
- -0.05588706210255623,
- 0.05940351262688637,
- -0.0851043313741684,
- -0.017727911472320557,
- 0.10957561433315277,
- 0.11802037805318832,
- 0.07237754762172699,
- -0.029095329344272614
- ]
- },
- {
- "keyword": "engineering",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08113786578178406,
- 0.030468560755252838,
- 0.020941680297255516,
- 0.012714373879134655,
- -0.019940020516514778,
- -0.10510029643774033,
- 0.07491875439882278,
- 0.027164585888385773,
- -0.07892517000436783,
- -0.0452093705534935,
- -0.023922372609376907,
- -0.06872403621673584,
- 0.03010910004377365,
- 0.016933545470237732,
- -0.11987984925508499,
- -0.024408863857388496,
- -0.04357709363102913,
- -0.04690193757414818,
- -0.04351585730910301,
- -0.10722729563713074,
- 0.030382264405488968,
- 0.04855524003505707,
- -0.002890859730541706,
- -0.023350870236754417,
- 0.021238666027784348,
- 0.06272631883621216,
- 0.02709219604730606,
- -0.004030788317322731,
- 0.05547643452882767,
- -0.13015541434288025,
- -0.05035176873207092,
- 0.05743471905589104,
- 0.008226911537349224,
- 0.021851010620594025,
- 0.00032071417081169784,
- 0.03796306252479553,
- 0.041718125343322754,
- -0.06684073805809021,
- 0.08474862575531006,
- 0.0018909138161689043,
- -0.0687468871474266,
- -0.0733896866440773,
- 0.05300327390432358,
- -0.026388773694634438,
- 0.0011792220175266266,
- 0.023817425593733788,
- 0.0845317542552948,
- -0.12265795469284058,
- 0.024863777682185173,
- -0.03278035670518875,
- 0.009588075801730156,
- -0.012599823996424675,
- -0.06915803253650665,
- -0.02042366936802864,
- 0.004984934348613024,
- 0.05020013451576233,
- 0.04206884652376175,
- 0.013668983243405819,
- -0.06337685883045197,
- 0.01347561739385128,
- 0.041326120495796204,
- 0.006369525566697121,
- -0.0326610691845417,
- 0.04745006933808327,
- 0.042032837867736816,
- -0.04255496338009834,
- -0.018969399854540825,
- 0.052048586308956146,
- 0.006608919240534306,
- -0.04471595212817192,
- 0.079580157995224,
- -0.05160443112254143,
- -0.016221800819039345,
- 0.012253538705408573,
- 0.12147887051105499,
- -0.05740111693739891,
- 0.03757775202393532,
- 0.0454171746969223,
- 0.10728896409273148,
- -0.05374529957771301,
- -0.007569740992039442,
- -0.06125110760331154,
- -0.13368725776672363,
- 0.01689055562019348,
- 0.014841947704553604,
- -0.007419273257255554,
- 0.000581835163757205,
- 0.030924025923013687,
- 0.025084957480430603,
- 0.0063521722331643105,
- -0.01222323440015316,
- -0.04352604225277901,
- -0.008474254049360752,
- 0.06744462251663208,
- -0.013772307895123959,
- 0.04540856182575226,
- -0.002593522658571601,
- -0.07957835495471954,
- -0.048995278775691986,
- 0.1996985524892807,
- -0.0055969576351344585,
- 0.08205052465200424,
- 0.0009080326417461038,
- 0.02572842501103878,
- -0.06679369509220123,
- -0.03131235018372536,
- 0.009553490206599236,
- 0.08480412513017654,
- 0.048353731632232666,
- -0.017139939591288567,
- -0.017227940261363983,
- 0.04181148111820221,
- -0.005237836856395006,
- 0.041048720479011536,
- -0.028697745874524117,
- -0.017933618277311325,
- 0.028924766927957535,
- 0.011127522215247154,
- 0.058379944413900375,
- 0.005007116589695215,
- 0.009352958761155605,
- 0.004618015605956316,
- -0.04355045408010483,
- -0.003961134701967239,
- -0.0858531966805458,
- -0.07735613733530045,
- -0.029428279027342796,
- -5.7766789910001805e-33,
- -0.07239022105932236,
- -0.05193829536437988,
- -0.01922640949487686,
- 0.05750995874404907,
- -0.033729277551174164,
- -0.029774252325296402,
- -0.02574687823653221,
- 0.03903663903474808,
- 0.01700539141893387,
- 0.0209856778383255,
- 0.02124020643532276,
- 0.04502735286951065,
- -0.04144689068198204,
- 0.07682494074106216,
- 0.1703101098537445,
- -0.03142109140753746,
- -0.06894835084676743,
- 0.0906592532992363,
- -0.009103001095354557,
- 0.06764181703329086,
- -0.029407447203993797,
- -0.05688571557402611,
- 0.054977234452962875,
- 0.013106943108141422,
- 0.07421877980232239,
- -0.03313574567437172,
- 0.0280462559312582,
- -0.03664635494351387,
- -0.035514023154973984,
- 0.02486722730100155,
- -0.035426534712314606,
- 0.11457592248916626,
- -0.00032956936047412455,
- -0.021565653383731842,
- -0.04665441811084747,
- 0.034651320427656174,
- -0.02174866944551468,
- -0.09807194769382477,
- 0.03945404663681984,
- 0.009254402481019497,
- -0.03599604591727257,
- -0.0011434699408710003,
- 0.0023525201249867678,
- 0.00038192886859178543,
- 0.05802327021956444,
- 0.06116372346878052,
- 0.05590192601084709,
- 0.009421809576451778,
- 0.0022459726314991713,
- -0.04801468551158905,
- -0.06907253712415695,
- -0.01423510629683733,
- 0.0911162719130516,
- -0.053040508180856705,
- 0.12308422476053238,
- -0.011022815480828285,
- 0.06915532052516937,
- 0.012360000051558018,
- -0.01317888218909502,
- 0.06121301278471947,
- -0.07035544514656067,
- 0.13268719613552094,
- -0.02367374487221241,
- 0.0022484264336526394,
- 0.03931356593966484,
- 0.03180079162120819,
- 0.018558256328105927,
- 0.024242429062724113,
- 0.05661221593618393,
- -0.07020056992769241,
- -0.13031749427318573,
- -0.0040638623759150505,
- 0.03217560425400734,
- -0.08333159238100052,
- -0.020647291094064713,
- 0.02005469985306263,
- -0.05016070231795311,
- 0.05074290186166763,
- 0.03173553943634033,
- 0.03620605543255806,
- -0.047996439039707184,
- 0.05327168479561806,
- -0.003131876466795802,
- -0.06841783225536346,
- 0.11462754756212234,
- 0.05527687445282936,
- -0.005754854995757341,
- -0.05350639298558235,
- 0.005421142093837261,
- 0.028706511482596397,
- -0.08187036961317062,
- -0.05191950127482414,
- 0.007908612489700317,
- 0.10932210832834244,
- 0.03008073754608631,
- 2.38191283560784e-33,
- -0.052341487258672714,
- 0.03646805137395859,
- -0.0556388795375824,
- 0.04384968429803848,
- 0.03221537545323372,
- -0.03308388590812683,
- 0.014856836758553982,
- -0.02013295330107212,
- 0.013333945535123348,
- 0.07784971594810486,
- -0.023787084966897964,
- -0.03203943371772766,
- 0.02608262374997139,
- 0.038182977586984634,
- -0.0339769572019577,
- -0.030335448682308197,
- 0.02300363779067993,
- -0.11517494916915894,
- -0.07454247772693634,
- 0.041945863515138626,
- 0.011739467270672321,
- 0.08027757704257965,
- -0.06309468299150467,
- -0.029479045420885086,
- 0.017918942496180534,
- 0.021401621401309967,
- -0.05682354420423508,
- 0.01367329340428114,
- -0.0084884874522686,
- -0.0028147574048489332,
- 0.017894603312015533,
- 0.0036598769947886467,
- -0.03526442125439644,
- 0.049656566232442856,
- -0.0016840012976899743,
- -0.0008745022932998836,
- 0.07334985584020615,
- 0.036817558109760284,
- 0.02089507505297661,
- -0.05762380734086037,
- 0.061877429485321045,
- -0.03711923584342003,
- 0.04717796668410301,
- 0.07665271311998367,
- -0.0406678169965744,
- -0.0405534952878952,
- -0.00026736524887382984,
- 0.022267263382673264,
- -0.0032338036689907312,
- -0.021385306492447853,
- 0.016806654632091522,
- 0.0014786281390115619,
- 0.07157270610332489,
- -0.08297905325889587,
- 0.019514212384819984,
- -0.03287119045853615,
- -0.040769387036561966,
- -0.03305642306804657,
- 0.00043825333705171943,
- -0.007797600235790014,
- 0.03657621890306473,
- 0.009575140662491322,
- 0.02215764671564102,
- 0.0773557648062706,
- -0.1214856281876564,
- -0.011013870127499104,
- 0.007745301350951195,
- 0.0360281802713871,
- -0.07370396703481674,
- -0.008284678682684898,
- 0.06670676171779633,
- 0.06169283017516136,
- -0.0340508371591568,
- 0.0374542698264122,
- -0.016765069216489792,
- -0.07839296013116837,
- 0.0014876575442031026,
- -0.004350531846284866,
- -0.049220550805330276,
- -0.01932726986706257,
- 0.004780491814017296,
- -0.017946293577551842,
- -0.02735806256532669,
- 0.08008342981338501,
- -0.025469934567809105,
- -0.02334641106426716,
- 0.011187991127371788,
- -0.0042206584475934505,
- 0.07361739873886108,
- -0.11305582523345947,
- -0.05166902765631676,
- -0.0012262571835890412,
- -0.06352908909320831,
- -0.028262877836823463,
- -0.03435007482767105,
- -1.245008718342433e-8,
- -0.053703516721725464,
- -0.04287118837237358,
- 0.023701464757323265,
- -0.1092628613114357,
- -0.040281154215335846,
- 0.0332111194729805,
- -0.036634039133787155,
- 0.001991980941966176,
- 0.006596888415515423,
- -0.05797242745757103,
- -0.03211294487118721,
- 0.0236330796033144,
- 0.0388370081782341,
- 0.10567896068096161,
- 0.059333935379981995,
- -0.011200446635484695,
- -0.030092233791947365,
- 0.08011864870786667,
- -0.029150793328881264,
- -0.09912748634815216,
- 0.028950102627277374,
- 0.006960628554224968,
- 0.0862201526761055,
- 0.06832511723041534,
- -0.029202817007899284,
- -0.05667397752404213,
- 0.03757212311029434,
- -0.0870446041226387,
- 0.02978607453405857,
- 0.014586779288947582,
- -0.044600460678339005,
- 0.02801605314016342,
- 0.04012644290924072,
- 0.020702417939901352,
- 0.04262339323759079,
- -0.006607011426240206,
- 0.07373081147670746,
- -0.03025590255856514,
- 0.013769402168691158,
- -0.00823731068521738,
- -0.03680870309472084,
- 0.00844620168209076,
- 0.044710032641887665,
- 0.00010139363439520821,
- 0.05483950302004814,
- -0.002432239009067416,
- -0.07267776131629944,
- -0.036119841039180756,
- 0.001208584289997816,
- 0.018589382991194725,
- 0.0036333701573312283,
- -0.017485594376921654,
- -0.014269637875258923,
- -0.0013270844938233495,
- 0.00022859555610921234,
- 0.03296457231044769,
- -0.0383518747985363,
- -0.07401255518198013,
- -0.06673445552587509,
- 0.010820924304425716,
- 0.05860326439142227,
- -0.014519734308123589,
- 0.1112796887755394,
- 0.02989729680120945
- ]
- },
- {
- "keyword": "architecture",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.020201772451400757,
- 0.06542617082595825,
- -0.04180729016661644,
- -0.051878079771995544,
- -0.04751366749405861,
- -0.04204580932855606,
- 0.011646196246147156,
- 0.0107248080894351,
- -0.006942357402294874,
- -0.020433181896805763,
- -0.011432833969593048,
- -0.025786444544792175,
- 0.015286460518836975,
- -0.021693186834454536,
- -0.022668983787298203,
- -0.03470342233777046,
- 0.03398513421416283,
- 0.018061570823192596,
- -0.040460068732500076,
- -0.01624803990125656,
- -0.014256526716053486,
- 0.02990543283522129,
- -0.04519319161772728,
- -0.04092691093683243,
- -0.028416046872735023,
- 0.10748329013586044,
- 0.018704218789935112,
- -0.007638890761882067,
- 0.07509554177522659,
- -0.10396327823400497,
- 0.06230808421969414,
- 0.020799849182367325,
- 0.0595400370657444,
- 0.025233877822756767,
- -0.01419215090572834,
- 0.0585707426071167,
- 0.066809743642807,
- -0.08091585338115692,
- 0.029738031327724457,
- -0.02040087804198265,
- -0.07206131517887115,
- -0.016643987968564034,
- 0.02466720901429653,
- 0.01675453409552574,
- 0.03712986037135124,
- 0.022894902154803276,
- -0.013368843123316765,
- -0.03282606601715088,
- -0.005578625947237015,
- -0.03819461539387703,
- -0.05636119470000267,
- -0.031609922647476196,
- -0.06082283332943916,
- 0.0025376989506185055,
- -0.040836744010448456,
- 0.10228440165519714,
- -0.022258171811699867,
- -0.007094483822584152,
- -0.07520243525505066,
- -0.09368854761123657,
- 0.05209213122725487,
- -0.006138107273727655,
- -0.0372585728764534,
- 0.07202444225549698,
- 0.09289421886205673,
- 0.049412086606025696,
- -0.043949875980615616,
- 0.02384449727833271,
- -0.0022203673142939806,
- -0.10608118027448654,
- 0.0652257576584816,
- -0.08751987665891647,
- 0.03827827051281929,
- -0.0006855124956928194,
- 0.023008743301033974,
- -0.027143800631165504,
- 0.02861184813082218,
- 0.01207002904266119,
- 0.07585660368204117,
- -0.11756976693868637,
- 0.05624815449118614,
- -0.00718780979514122,
- -0.06507155299186707,
- 0.06402576714754105,
- 0.03606609255075455,
- -0.008615240454673767,
- -0.032661326229572296,
- 0.029932776466012,
- 0.024453043937683105,
- -0.03615264967083931,
- 0.07864699512720108,
- -0.022186482325196266,
- 0.030550742521882057,
- 0.01134832389652729,
- 0.0928473174571991,
- 0.020911622792482376,
- -0.04783802106976509,
- -0.11652529984712601,
- -0.06147614121437073,
- 0.20653168857097626,
- -0.03836911916732788,
- 0.003239945275709033,
- 0.0330585353076458,
- 0.04881124943494797,
- -0.045103490352630615,
- -0.03813844919204712,
- -0.025371698662638664,
- 0.033650558441877365,
- -0.06865673512220383,
- -0.06600916385650635,
- -0.05963696911931038,
- 0.024760816246271133,
- 0.000547800911590457,
- -0.010251516476273537,
- 0.0319361686706543,
- -0.07960104942321777,
- 0.027087848633527756,
- -0.0034958773758262396,
- 0.06332601606845856,
- 0.013702322728931904,
- -0.0178430937230587,
- -0.015784399583935738,
- -0.03008403070271015,
- 0.019393878057599068,
- -0.040676265954971313,
- -0.05869276076555252,
- -0.07882750779390335,
- -4.448611350912914e-33,
- -0.04787043482065201,
- 0.006606098264455795,
- 0.02006126195192337,
- 0.06027047336101532,
- 0.04032791778445244,
- -0.05917514115571976,
- 0.011802410706877708,
- -0.004782767500728369,
- 0.01180297788232565,
- 0.06674854457378387,
- 0.0348852314054966,
- -0.019082868471741676,
- 0.012659458443522453,
- 0.09900709241628647,
- 0.18838489055633545,
- -0.029218001291155815,
- -0.01784319058060646,
- 0.10415928810834885,
- 0.03890513256192207,
- 0.013393684290349483,
- -0.04887418821454048,
- 0.02860153652727604,
- 0.04685080796480179,
- -0.007527685724198818,
- 0.08131584525108337,
- 0.026711011305451393,
- 0.018559705466032028,
- -0.03251916170120239,
- -0.12572209537029266,
- 0.009675934910774231,
- -0.0005342487711459398,
- 0.05718785151839256,
- -0.0782821998000145,
- -0.012863618321716785,
- -0.0312754325568676,
- 0.016851700842380524,
- -0.028992967680096626,
- -0.06608187407255173,
- -0.0068061924539506435,
- -0.06102992966771126,
- -0.0526617132127285,
- 0.03112666681408882,
- -0.01852344162762165,
- -0.002026468748226762,
- 0.07230359315872192,
- 0.07174422591924667,
- 0.050349194556474686,
- 0.024352774024009705,
- 0.019408918917179108,
- -0.010353378020226955,
- 0.04098167270421982,
- 0.049172285944223404,
- -0.030542198568582535,
- 0.04125222936272621,
- 0.07352789491415024,
- -0.029216844588518143,
- -0.023411009460687637,
- 0.04865769296884537,
- 0.04157116636633873,
- 0.09967382997274399,
- -0.011177217587828636,
- 0.032845638692379,
- -0.06847428530454636,
- 0.050755683332681656,
- 0.022640667855739594,
- 0.025340812280774117,
- -0.042882293462753296,
- -0.014408823102712631,
- 0.10397517681121826,
- 0.015926310792565346,
- -0.08409874141216278,
- -0.06292881816625595,
- 0.06940029561519623,
- 0.06491982191801071,
- -0.06320478022098541,
- 0.015120373107492924,
- -0.09145322442054749,
- 0.0039123427122831345,
- -0.08474007993936539,
- 0.04216742143034935,
- -0.08805721253156662,
- 0.06219488009810448,
- 0.016033558174967766,
- 0.03290436789393425,
- 0.060913655906915665,
- 0.059430815279483795,
- 0.07601792365312576,
- -0.04688197746872902,
- -0.02075270190834999,
- 0.07945559173822403,
- -0.046449869871139526,
- 0.006161707453429699,
- 0.034537047147750854,
- 0.05078595504164696,
- 0.007224057801067829,
- 3.9093647050747134e-33,
- -0.03734245523810387,
- -0.02023199573159218,
- -0.09233466535806656,
- -0.020036304369568825,
- 0.014800192788243294,
- -0.04143655672669411,
- -0.06337781250476837,
- -0.076999731361866,
- -0.02653791755437851,
- 0.0337127223610878,
- -0.013122756034135818,
- 0.017393218353390694,
- 0.12656474113464355,
- -0.010846143588423729,
- -0.03842756897211075,
- 0.011479553766548634,
- 0.04971497878432274,
- -0.15396885573863983,
- -0.04024025425314903,
- 0.025250500068068504,
- 0.027182601392269135,
- 0.021207768470048904,
- -0.03694115951657295,
- -0.06168465316295624,
- -0.006536311004310846,
- 0.0855635479092598,
- -0.09401203691959381,
- 0.04244482144713402,
- 0.08472233265638351,
- -0.02627004310488701,
- -0.03879442438483238,
- -0.06647995859384537,
- 0.022381849586963654,
- 0.019285649061203003,
- -0.011094920337200165,
- 0.05937624350190163,
- 0.04872498661279678,
- -0.03067847713828087,
- 0.007384611293673515,
- -0.03790569305419922,
- 0.039337385445833206,
- -0.035599105060100555,
- -0.061496585607528687,
- 0.0654788538813591,
- 0.017467308789491653,
- 0.004892497323453426,
- -0.018852902576327324,
- 0.020324645563960075,
- -0.07849360257387161,
- -0.08111855387687683,
- -0.0028897151350975037,
- 0.04282146319746971,
- 0.008861851878464222,
- -0.0896543487906456,
- 0.05552558973431587,
- 0.017446693032979965,
- 0.04044065624475479,
- 0.011151723563671112,
- 0.08471180498600006,
- 0.05783744528889656,
- 0.041374482214450836,
- -0.01111656054854393,
- -0.06092802807688713,
- 0.06518924236297607,
- -0.0382978580892086,
- -0.028376812115311623,
- -0.01704765483736992,
- -0.004939173813909292,
- -0.051497217267751694,
- 0.031627390533685684,
- 0.03927524760365486,
- 0.025979656726121902,
- -0.06655831634998322,
- 0.08876344561576843,
- -0.044139958918094635,
- -0.0500224269926548,
- 0.05384867265820503,
- 0.01595240831375122,
- 0.015191814862191677,
- -0.0253201425075531,
- -0.16171503067016602,
- -0.05880553647875786,
- -0.019370170310139656,
- 0.09241098165512085,
- 0.06856531649827957,
- 0.01579764299094677,
- 0.05011705309152603,
- -0.0849134624004364,
- -0.00590942008420825,
- -0.03453702852129936,
- -0.0013037199387326837,
- 0.023018760606646538,
- 0.007982950657606125,
- 0.017938757315278053,
- -0.022411411628127098,
- -1.1239479569269406e-8,
- 0.0095002306625247,
- -0.045799873769283295,
- 0.027072511613368988,
- 0.00244080345146358,
- -0.015153185464441776,
- -0.029792549088597298,
- 0.04727233946323395,
- 0.0009523234330117702,
- -0.008681599982082844,
- 0.01119813323020935,
- -0.01495556253939867,
- -0.017357509583234787,
- 0.004636566154658794,
- 0.11706448346376419,
- 0.023979462683200836,
- 0.03158997371792793,
- -0.03278277814388275,
- -0.01799899712204933,
- -0.0671292394399643,
- -0.03304546698927879,
- 0.07521036267280579,
- 0.030266936868429184,
- -0.0005893829511478543,
- -0.005452723708003759,
- -0.0068017784506082535,
- -0.016148170456290245,
- 0.033273063600063324,
- -0.02389337681233883,
- 0.006097215693444014,
- 0.0992344319820404,
- -0.0007316525443457067,
- 0.05576780438423157,
- 0.028352128341794014,
- 0.010814129374921322,
- 0.04706277698278427,
- 0.035836782306432724,
- 0.07227323949337006,
- -0.01086896751075983,
- 0.013713928870856762,
- -0.09940295666456223,
- -0.03264688327908516,
- -0.06788825988769531,
- -0.027140850201249123,
- -0.01724804751574993,
- 0.11905091255903244,
- 0.01920202746987343,
- -0.02237595245242119,
- -0.0026959790848195553,
- -0.016740111634135246,
- -0.00821436196565628,
- -0.042451370507478714,
- -0.0019382317550480366,
- -0.006474202033132315,
- 0.0486670546233654,
- 0.06009301543235779,
- -0.01411361899226904,
- 0.044211216270923615,
- -0.07236208021640778,
- 0.015261883847415447,
- 0.02654355950653553,
- 0.08398710191249847,
- 0.040964651852846146,
- -0.014421163126826286,
- -0.034799348562955856
- ]
- },
- {
- "keyword": "design",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05187810957431793,
- 0.14845328032970428,
- -0.014189639128744602,
- -0.014562958851456642,
- -0.048454418778419495,
- -0.021577581763267517,
- 0.0562761090695858,
- 0.03659814968705177,
- 0.008421476930379868,
- 0.04610980674624443,
- -0.03206351026892662,
- 0.017984561622142792,
- 0.028356017544865608,
- -0.03762400895357132,
- -0.07602067291736603,
- -0.05702897906303406,
- 0.043495453894138336,
- -0.05135813727974892,
- -0.01984546333551407,
- -0.018547451123595238,
- -0.04818497225642204,
- -0.025117753073573112,
- -0.0013668937608599663,
- -0.020223084837198257,
- -0.0766645073890686,
- 0.10136337578296661,
- 0.03178033232688904,
- 0.0607941597700119,
- 0.12896676361560822,
- -0.18180231750011444,
- 0.05303964391350746,
- 0.02134416252374649,
- 0.07527881860733032,
- -0.053478438407182693,
- -0.06087964028120041,
- 0.0028037079609930515,
- 0.0625055655837059,
- 0.03738456219434738,
- 0.01954510435461998,
- -0.02819785661995411,
- -0.10255460441112518,
- -0.061432354152202606,
- 0.009685670025646687,
- 0.039037737995386124,
- 0.01878400892019272,
- -0.0029723395127803087,
- -0.055413566529750824,
- 0.02445273846387863,
- -0.012177337892353535,
- 0.04176723584532738,
- -0.023328319191932678,
- -0.07620677351951599,
- -0.020680664107203484,
- -0.043607790023088455,
- -0.0021280215587466955,
- 0.08314806967973709,
- -0.043822821229696274,
- -0.03060148097574711,
- -0.03535344451665878,
- -0.07380423694849014,
- 0.11551528424024582,
- 0.046949420124292374,
- -0.08056124299764633,
- 0.06998807191848755,
- 0.09226695448160172,
- 0.0059274425730109215,
- -0.018516825512051582,
- -0.004094621166586876,
- -0.03316303342580795,
- -0.032802920788526535,
- 0.04477676749229431,
- -0.03823142498731613,
- 0.020778214558959007,
- 0.02880898118019104,
- 0.06429272890090942,
- -0.019875340163707733,
- -0.0056442031636834145,
- -0.020125284790992737,
- 0.03172227367758751,
- -0.04934731498360634,
- 0.02450435608625412,
- 0.013274001888930798,
- -0.04984571039676666,
- 0.0648019090294838,
- 0.04749197140336037,
- -0.03010519966483116,
- 0.01077620591968298,
- -0.023693498224020004,
- 0.027361124753952026,
- -0.023715130984783173,
- 0.044703830033540726,
- 0.02737394906580448,
- 0.003986608702689409,
- -0.012264877557754517,
- -0.05786344036459923,
- 0.04389437288045883,
- 0.012891021557152271,
- -0.07934574037790298,
- 0.00961785577237606,
- 0.2450524866580963,
- -0.016420330852270126,
- 0.03575340285897255,
- 0.05139964818954468,
- 0.01991897076368332,
- -0.016837701201438904,
- -0.05389871075749397,
- -0.06531009078025818,
- 0.026476966217160225,
- -0.014735243283212185,
- -0.016571858897805214,
- -0.022972647100687027,
- -0.03795110806822777,
- -0.07768077403306961,
- 0.04048360884189606,
- 0.027727123349905014,
- -0.05066623538732529,
- -0.03136536478996277,
- 0.04923800379037857,
- 0.10505138337612152,
- -0.0005067940219305456,
- 0.03023054637014866,
- -0.00011711147817550227,
- -0.02236233279109001,
- -0.05051569640636444,
- -0.07400684058666229,
- -0.04828471690416336,
- -0.07559226453304291,
- -4.793854776433389e-33,
- -0.039739351719617844,
- -0.01300358772277832,
- 0.020061086863279343,
- 0.06658372282981873,
- 0.04041241854429245,
- -0.040736980736255646,
- 0.011688974685966969,
- 0.01349246222525835,
- 0.01037969533354044,
- 0.08810113370418549,
- 0.014262170530855656,
- -0.04894508793950081,
- -0.001572347478941083,
- 0.08074207603931427,
- 0.1457594484090805,
- -0.03511480987071991,
- 0.0097957169637084,
- 0.046188291162252426,
- -0.06326587498188019,
- -0.017563089728355408,
- -0.0732920691370964,
- -0.05626322701573372,
- 0.07205674797296524,
- 0.026111973449587822,
- 0.01556756068021059,
- 0.056788668036460876,
- 0.025835372507572174,
- -0.006779539864510298,
- -0.06289514899253845,
- 0.002155562164261937,
- -0.0002140866417903453,
- 0.04620763286948204,
- 0.014321733266115189,
- -0.039690859615802765,
- -0.07272797077894211,
- 0.010933470912277699,
- 0.02963053435087204,
- -0.0959383025765419,
- 0.11290178447961807,
- -0.06604918092489243,
- -0.055460404604673386,
- -0.019866200163960457,
- 0.004170812666416168,
- 0.014694458805024624,
- -0.02244093082845211,
- 0.12603208422660828,
- 0.11698699742555618,
- -0.0013950145803391933,
- -0.041996896266937256,
- 0.06803517043590546,
- 0.0007129238219931722,
- 0.00515557499602437,
- 0.029872696846723557,
- 0.014384311623871326,
- 0.07440623641014099,
- -0.08130047470331192,
- -0.011000088416039944,
- -0.009860794991254807,
- 0.006275502499192953,
- 0.0530950203537941,
- 0.05898299068212509,
- 0.07095512002706528,
- -0.03739018738269806,
- -0.008809574879705906,
- 0.002858668565750122,
- 0.03253945708274841,
- 0.011384490877389908,
- -0.06761997938156128,
- 0.09017859399318695,
- -0.06505613029003143,
- -0.13171246647834778,
- -0.014236467890441418,
- 0.07364194840192795,
- 0.03597435727715492,
- -0.09743233025074005,
- -0.0061110081151127815,
- -0.008783973753452301,
- 0.018611641600728035,
- -0.008426990360021591,
- 0.019361412152647972,
- -0.06141908839344978,
- 0.04828250780701637,
- 0.04418635740876198,
- 0.0291416198015213,
- 0.007266002707183361,
- 0.015514182858169079,
- 0.05288078263401985,
- -0.04359878599643707,
- -0.0529768168926239,
- 0.057597652077674866,
- -0.0662718191742897,
- 0.01167847216129303,
- 0.05674957111477852,
- 0.044997043907642365,
- 0.04686073586344719,
- 4.507817695285971e-33,
- -0.07551213353872299,
- -0.015003196895122528,
- -0.044955406337976456,
- 4.359210095117305e-7,
- 0.042241379618644714,
- -0.01912853680551052,
- -0.025218607857823372,
- -0.042358867824077606,
- 0.008383720181882381,
- 0.08444978296756744,
- 0.03838280215859413,
- -0.007071689702570438,
- 0.029382919892668724,
- 0.03161131218075752,
- -0.03533940389752388,
- 0.04037374258041382,
- 0.0752880871295929,
- -0.09062949568033218,
- -0.06835193932056427,
- 0.014452247880399227,
- 0.04342496022582054,
- 0.07474667578935623,
- -0.1029009073972702,
- -0.045680418610572815,
- -0.046017516404390335,
- 0.06563363969326019,
- -0.06714370101690292,
- -0.0701654776930809,
- 0.012197056785225868,
- 0.006125504616647959,
- -0.001303264289163053,
- -0.11109497398138046,
- 0.01379002258181572,
- 0.05875375494360924,
- 0.023584775626659393,
- 0.007370633073151112,
- 0.01484136376529932,
- 0.047761596739292145,
- 0.004779347218573093,
- -0.03912642225623131,
- 0.04374845698475838,
- -0.010637789033353329,
- 0.0020241544116288424,
- 0.1047036349773407,
- -0.02418929897248745,
- -0.015427879057824612,
- -0.009385296143591404,
- -0.006073315627872944,
- 0.03320059925317764,
- -0.04094402864575386,
- -0.01077823806554079,
- 0.00228077732026577,
- 0.04501403868198395,
- -0.12394768744707108,
- -0.028524985536932945,
- -0.03589337691664696,
- 0.034397371113300323,
- -0.013825306668877602,
- 0.09273634850978851,
- 0.007580042816698551,
- 0.05318676680326462,
- 0.01634841598570347,
- -0.06307268142700195,
- 0.021455705165863037,
- -0.007666992023587227,
- -0.026433855295181274,
- -0.029704540967941284,
- 0.03400488197803497,
- 0.007213291246443987,
- 0.03225816413760185,
- 0.055534373968839645,
- 0.015542382374405861,
- -0.09439095854759216,
- 0.004134759772568941,
- -0.026208162307739258,
- -0.04845831170678139,
- -0.014014548622071743,
- 0.03264068812131882,
- -0.03192201629281044,
- 0.09115591645240784,
- -0.07264801114797592,
- -0.017815599218010902,
- -0.04360697418451309,
- 0.09896279871463776,
- -0.04040607437491417,
- 0.003145133377984166,
- -0.023378785699605942,
- 0.015749946236610413,
- 0.0053681377321481705,
- -0.0349823497235775,
- 0.0036175702698528767,
- 0.05922022834420204,
- 0.00899132527410984,
- 0.08312971144914627,
- -0.025585222989320755,
- -1.2811146810065566e-8,
- -0.008459833450615406,
- -0.06898213922977448,
- 0.07563567161560059,
- -0.023504002019762993,
- -0.024226132780313492,
- 0.022742105647921562,
- 0.0055549973621964455,
- -0.039891280233860016,
- -0.07835730165243149,
- 0.016233662143349648,
- 0.03689473494887352,
- 0.020106978714466095,
- 0.007062475197017193,
- 0.1363258957862854,
- 0.05018825829029083,
- -0.037962883710861206,
- -0.06189415976405144,
- 0.07801640778779984,
- -0.084221251308918,
- -0.012121451087296009,
- -0.003377046436071396,
- 0.04491247236728668,
- -0.007815579883754253,
- -0.0017601187573745847,
- -0.053012166172266006,
- 0.02428562566637993,
- 0.034446459263563156,
- -0.010586433112621307,
- -0.012203007005155087,
- 0.029071543365716934,
- 0.009553085081279278,
- 0.07790617644786835,
- 0.03244849666953087,
- 0.006282346323132515,
- 0.017684346064925194,
- -0.011160135269165039,
- -0.010119035840034485,
- 0.02208530157804489,
- 0.014670338481664658,
- 0.054954979568719864,
- -0.01242068037390709,
- -0.02679162472486496,
- -0.009440764784812927,
- 0.018858764320611954,
- -0.008576306514441967,
- -0.006921850610524416,
- 0.03012791834771633,
- -0.010866176337003708,
- -0.06309312582015991,
- 0.047500915825366974,
- -0.07161742448806763,
- -0.02822389453649521,
- 0.0003881596203427762,
- 0.01730157434940338,
- 0.05257418751716614,
- 0.013749873265624046,
- 0.03992408886551857,
- -0.00370401656255126,
- -0.019081279635429382,
- 0.03621741011738777,
- 0.11421718448400497,
- 0.075731061398983,
- -0.025090163573622704,
- 0.04764769971370697
- ]
- },
- {
- "keyword": "computer science",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06470870226621628,
- -0.0030495196115225554,
- -0.060185302048921585,
- -0.025866175070405006,
- -0.0508759506046772,
- -0.11876427382230759,
- 0.05542009696364403,
- 0.018530363216996193,
- 0.02181025594472885,
- 0.035637449473142624,
- -0.0936446487903595,
- -0.04698282107710838,
- 0.02014375478029251,
- -0.04019978269934654,
- -0.04908568784594536,
- 0.012146328575909138,
- -0.10164821147918701,
- -0.06639346480369568,
- -0.0162702314555645,
- -0.10129781812429428,
- -0.017814436927437782,
- -0.016014790162444115,
- -0.08173829317092896,
- -0.005164430942386389,
- 0.02038470469415188,
- 0.0743834599852562,
- 0.02943156100809574,
- -0.019882848486304283,
- -0.04358293116092682,
- -0.07156699150800705,
- -0.05911790579557419,
- 0.05122992768883705,
- 0.06464385986328125,
- 0.05768023803830147,
- -0.07766517251729965,
- 0.05938788503408432,
- 0.025145547464489937,
- -0.02653462253510952,
- 0.04579069837927818,
- 0.02934056520462036,
- -0.04746263846755028,
- 0.034837283194065094,
- 0.046733543276786804,
- -0.0199381522834301,
- 0.010778617113828659,
- 0.033456962555646896,
- -0.04141662269830704,
- -0.04565518721938133,
- -0.04417124390602112,
- -0.011186226271092892,
- -0.061271097511053085,
- -0.03929135575890541,
- -0.06943023949861526,
- -0.016961822286248207,
- -0.03367108479142189,
- 0.009463824331760406,
- 0.1450767070055008,
- 0.015546374954283237,
- -0.02361542358994484,
- -0.012467131949961185,
- -0.02015317976474762,
- -0.04857362434267998,
- -0.038185957819223404,
- 0.008727245964109898,
- 0.15599960088729858,
- -0.03961743786931038,
- 0.0027521103620529175,
- 0.050373662263154984,
- 0.02536127343773842,
- -0.0005201961030252278,
- -0.04707490652799606,
- 0.02189248986542225,
- -0.05321906879544258,
- 0.1281457245349884,
- 0.1336839348077774,
- -0.03834453597664833,
- 0.039497260004282,
- 0.0006084192427806556,
- 0.08871651440858841,
- -0.04280577972531319,
- 0.04156840220093727,
- -0.027897076681256294,
- -0.10654988884925842,
- 0.0782013013958931,
- 0.0092447679489851,
- 0.004373963922262192,
- -0.08453723788261414,
- 0.012170461006462574,
- -0.014830649830400944,
- -0.03743050619959831,
- 0.0478009469807148,
- -0.026589641347527504,
- 0.04665534570813179,
- 0.04664931818842888,
- -0.10047589242458344,
- 0.022730039432644844,
- 0.01530416775494814,
- -0.0718827173113823,
- 0.021011896431446075,
- 0.18939891457557678,
- -0.0635003000497818,
- 0.01081498060375452,
- 0.018968557938933372,
- 0.0015582129126414657,
- 0.012124046683311462,
- -0.049404390156269073,
- 0.07275940477848053,
- 0.008905703201889992,
- 0.05610844865441322,
- -0.026849811896681786,
- -0.03541021794080734,
- 0.02002614736557007,
- -0.021820614114403725,
- 0.0045098355039954185,
- -0.017968660220503807,
- 0.06184696406126022,
- 0.03136591240763664,
- 0.06313912570476532,
- 0.04905909299850464,
- 0.03804529458284378,
- -0.028420181944966316,
- 0.007995713502168655,
- -0.070940300822258,
- 0.00018812755297403783,
- -0.03342093154788017,
- -0.07901425659656525,
- -0.08555500954389572,
- -1.557622401348666e-33,
- -0.04645321145653725,
- -0.016879692673683167,
- -0.004039302002638578,
- 0.042643651366233826,
- 0.0503946915268898,
- -0.04367149621248245,
- 0.014841141179203987,
- -0.01644141413271427,
- -0.01570058986544609,
- 0.04367830604314804,
- -0.003462424734607339,
- 0.09294385462999344,
- -0.01951625943183899,
- 0.057158343493938446,
- 0.1726193130016327,
- -0.009922889061272144,
- 0.002083736937493086,
- 0.06328969448804855,
- -0.0041422732174396515,
- -0.04646192863583565,
- 0.020889753475785255,
- -0.014349126257002354,
- 0.0025981003418564796,
- -0.017648624256253242,
- 0.01666245609521866,
- 0.014426366426050663,
- -0.030484972521662712,
- -0.01799602061510086,
- 0.0798487663269043,
- 0.008835279382765293,
- 0.05335398018360138,
- 0.09479982405900955,
- -0.08434652537107468,
- -0.056005656719207764,
- 0.0985388308763504,
- -0.03723714128136635,
- 0.0005371322040446103,
- -0.03337975963950157,
- 0.04779574275016785,
- -0.037044428288936615,
- -0.08211611211299896,
- 0.04605932906270027,
- 0.04357355833053589,
- -0.03315870836377144,
- 0.004330577794462442,
- -0.018870418891310692,
- 0.06596441566944122,
- 0.006390923634171486,
- 0.03938932344317436,
- -0.026225488632917404,
- -0.02235887572169304,
- -0.057044949382543564,
- 0.07036744058132172,
- 0.012806201353669167,
- 0.01082004513591528,
- 0.028377370908856392,
- 0.06382853537797928,
- -0.05575210228562355,
- 0.01959100551903248,
- 0.08077447861433029,
- 0.021031280979514122,
- 0.10109183192253113,
- 0.017553819343447685,
- -0.044406138360500336,
- -0.06252087652683258,
- 0.003946205135434866,
- 0.005630006082355976,
- 0.004764934070408344,
- 0.1257074773311615,
- -0.023697979748249054,
- -0.056329309940338135,
- -0.005855103023350239,
- 0.023138632997870445,
- -0.06839673966169357,
- -0.03268120437860489,
- 0.00019756658002734184,
- 0.01529920008033514,
- -0.03954758495092392,
- -0.02257743664085865,
- 0.023290229961276054,
- -0.11465513706207275,
- -0.01333581656217575,
- 0.003286343067884445,
- -0.0300827007740736,
- 0.051861245185136795,
- 0.043582744896411896,
- -0.03365560248494148,
- 0.005665724631398916,
- -0.0239547211676836,
- -0.015096251852810383,
- -0.06358581781387329,
- -0.0052965558134019375,
- 0.02941747009754181,
- 0.04826153814792633,
- -0.019756199792027473,
- 6.241084643627537e-35,
- -0.08170920610427856,
- -0.031826894730329514,
- -0.06199760362505913,
- 0.13350264728069305,
- 0.05857410654425621,
- 0.00759785296395421,
- 0.021566258743405342,
- -0.06662727147340775,
- -0.005972094833850861,
- 0.0548928938806057,
- 0.021682361140847206,
- 0.015930993482470512,
- 0.042598456144332886,
- 0.07739841938018799,
- 0.047082751989364624,
- 0.0005993380327709019,
- -0.04147660732269287,
- -0.04945891350507736,
- -0.09399211406707764,
- 0.03087984025478363,
- -0.009554486721754074,
- 0.020649099722504616,
- -0.05030336230993271,
- -0.07013243436813354,
- 0.06278207153081894,
- -0.025985166430473328,
- 0.015109659172594547,
- -0.08395102620124817,
- -0.0048990268260240555,
- 0.0346795916557312,
- 0.032865047454833984,
- -0.015818221494555473,
- -0.013689274899661541,
- 0.06213007867336273,
- 0.028617018833756447,
- -0.018181847408413887,
- 0.032725509256124496,
- -0.02663605287671089,
- 0.021560193970799446,
- 0.005569166038185358,
- 0.08583895862102509,
- 0.011997716501355171,
- -0.009263088926672935,
- 0.06699652224779129,
- 0.007449657656252384,
- -0.0008085746085271239,
- -0.021667683497071266,
- 0.13774171471595764,
- 0.039369743317365646,
- 0.0007525630644522607,
- 0.007536327000707388,
- 0.0006715208874084055,
- 0.035855501890182495,
- -0.04641275852918625,
- 0.05284415930509567,
- 0.0075827594846487045,
- -0.040050722658634186,
- 0.019581405445933342,
- -0.025119036436080933,
- 0.01966499537229538,
- -0.03513193503022194,
- -0.02070707455277443,
- 0.05580615624785423,
- 0.022708110511302948,
- -0.08330614119768143,
- -0.003468308364972472,
- -0.03492974489927292,
- 0.05162002891302109,
- -0.06084009259939194,
- -0.08070244640111923,
- 0.10190775245428085,
- 0.1164533793926239,
- -0.04428625851869583,
- 0.020801175385713577,
- -0.09008894115686417,
- -0.016025470569729805,
- -0.035244036465883255,
- 0.016822226345539093,
- -0.06321247667074203,
- 0.014347183518111706,
- 0.010934239253401756,
- 0.005660511087626219,
- -0.0693393126130104,
- 0.06389443576335907,
- -0.05804329738020897,
- 0.05551770329475403,
- 0.05510811135172844,
- -0.06949841231107712,
- -0.03275064006447792,
- -0.15061219036579132,
- -0.09067392349243164,
- 0.03603304177522659,
- 0.02340172976255417,
- -0.010050644166767597,
- -0.048891905695199966,
- -1.4567020478750692e-8,
- -0.00933034997433424,
- -0.05338253453373909,
- 0.06226053833961487,
- -0.060357362031936646,
- 0.04107040911912918,
- 0.08469711244106293,
- -0.046023353934288025,
- -0.015646452084183693,
- -0.04848546162247658,
- 0.020733529701828957,
- 0.016583457589149475,
- -0.006792708300054073,
- 0.01685703918337822,
- 0.018718259409070015,
- 0.034584276378154755,
- 0.001628945698030293,
- 0.0731101706624031,
- -0.0726233571767807,
- -0.028560077771544456,
- 0.023996315896511078,
- 0.020100615918636322,
- 0.009329347871243954,
- 0.0013187777949497104,
- 0.07040572911500931,
- -0.0294815544039011,
- -0.060327399522066116,
- 0.05588456243276596,
- 0.011249003000557423,
- -0.02998940832912922,
- 0.035775721073150635,
- -0.018342819064855576,
- 0.010256258770823479,
- -0.025073688477277756,
- -0.014997418038547039,
- 0.050842683762311935,
- 0.040858086198568344,
- 0.03690439462661743,
- -0.03924813121557236,
- 0.04752402380108833,
- -0.05179424211382866,
- -0.07694518566131592,
- 0.026281531900167465,
- 0.03256385400891304,
- 0.025767765939235687,
- 0.043333712965250015,
- 0.01228664256632328,
- 0.004626747220754623,
- -0.043859805911779404,
- -0.001043458585627377,
- 0.02668200433254242,
- -0.016544990241527557,
- 0.01517568901181221,
- -0.02892129495739937,
- 0.0057916054502129555,
- 0.03139099106192589,
- 0.018918128684163094,
- -0.04162703827023506,
- -0.015502624213695526,
- -0.055562421679496765,
- 0.1465977281332016,
- 0.08910422027111053,
- 0.002238527173176408,
- 0.026485295966267586,
- -0.005409056320786476
- ]
- },
- {
- "keyword": "programming",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.023435257375240326,
- 0.03580762445926666,
- -0.057863615453243256,
- 0.0006470593507401645,
- -0.05998507887125015,
- -0.05818482115864754,
- 0.09707540273666382,
- 0.07330964505672455,
- -0.04789601266384125,
- 0.024679647758603096,
- -0.02947773039340973,
- 0.012716852128505707,
- 0.06957992166280746,
- -0.041515011340379715,
- -0.018293146044015884,
- 0.003644051495939493,
- -0.07081733644008636,
- -0.03577441722154617,
- -0.01766197755932808,
- -0.11871925741434097,
- -0.05615057796239853,
- -0.061967141926288605,
- -0.06045857444405556,
- -0.005532662849873304,
- 0.06050949543714523,
- 0.10784117877483368,
- 0.010376534424722195,
- -0.029740389436483383,
- 0.04284272342920303,
- -0.08008536696434021,
- -0.04676608368754387,
- 0.0468556247651577,
- 0.11416331678628922,
- 0.05241258442401886,
- -0.0007920946227386594,
- 0.07544400542974472,
- -0.011156616732478142,
- -0.05611588805913925,
- -0.0058894348330795765,
- -0.00804398488253355,
- -0.16419054567813873,
- -0.0051257493905723095,
- 0.026245098561048508,
- -0.03702352195978165,
- 0.033193133771419525,
- -0.0007798932492733002,
- -0.015145997516810894,
- -0.0193282812833786,
- 0.0006370916380546987,
- -0.010113822296261787,
- -0.10287822782993317,
- -0.04381917417049408,
- -0.02426152303814888,
- -0.08684824407100677,
- -0.011907326988875866,
- 0.01312047429382801,
- 0.07579813152551651,
- 0.013465149328112602,
- -0.0010504999663680792,
- -0.05834935978055,
- -0.05477011203765869,
- -0.015327136032283306,
- -0.07015807926654816,
- 0.05811692401766777,
- 0.07016146928071976,
- -0.047678373754024506,
- -0.01425256859511137,
- 0.050860386341810226,
- 0.046221356838941574,
- -0.045229412615299225,
- -0.08776242285966873,
- -0.016435982659459114,
- -0.04571012407541275,
- 0.087205670773983,
- 0.09715873748064041,
- -0.08558142930269241,
- 0.06161656975746155,
- 0.006268956232815981,
- 0.059719882905483246,
- -0.05053455010056496,
- 0.020169991999864578,
- -0.006486864294856787,
- -0.07774703949689865,
- 0.08205877989530563,
- 0.010845683515071869,
- -0.01204578299075365,
- 0.05962196737527847,
- 0.14732976257801056,
- 0.0802481472492218,
- 0.002476324560120702,
- -0.004033792298287153,
- -0.03328581899404526,
- 0.04786045476794243,
- 0.03828016668558121,
- -0.054857611656188965,
- 0.06361957639455795,
- 0.04229315370321274,
- -0.09180013090372086,
- -0.013413834385573864,
- 0.23005101084709167,
- -0.036158058792352676,
- -0.005506691988557577,
- 0.059765271842479706,
- -0.04697228595614433,
- -0.013081773184239864,
- -0.03822978958487511,
- 0.07613557577133179,
- 0.04507588595151901,
- 0.015778765082359314,
- -0.06283460557460785,
- -0.022229470312595367,
- 0.002756423782557249,
- -0.031939003616571426,
- -0.03217720240354538,
- 0.02798183262348175,
- 0.037856392562389374,
- 0.03166128695011139,
- 0.05250116437673569,
- 0.015721239149570465,
- 0.052722349762916565,
- 0.010274041444063187,
- 0.03136472776532173,
- -0.046134982258081436,
- 0.018570899963378906,
- -0.05663643777370453,
- -0.04489495977759361,
- -0.04000558331608772,
- -6.911260260942098e-33,
- -0.009531565941870213,
- -0.049487244337797165,
- -0.051241010427474976,
- 0.03971404954791069,
- 0.05241522192955017,
- -0.024878157302737236,
- 0.06476884335279465,
- 0.05846140906214714,
- -0.05145110934972763,
- 0.04115743935108185,
- 0.045086607336997986,
- -0.005953837186098099,
- -0.014718418009579182,
- 0.09020544588565826,
- 0.11906861513853073,
- -0.061182133853435516,
- 0.011299511417746544,
- 0.04792020469903946,
- -0.05058928579092026,
- -0.03198656439781189,
- 0.0017836146289482713,
- -0.013419982977211475,
- 0.04058359935879707,
- 0.04335879534482956,
- 0.059359144419431686,
- 0.016908589750528336,
- 0.016290385276079178,
- -0.0693618506193161,
- 0.06741378456354141,
- -0.010098346509039402,
- 0.009280603379011154,
- 0.03249653801321983,
- -0.06399388611316681,
- 0.0004111361049581319,
- 0.04973270744085312,
- -0.0016531437868252397,
- 0.02213519811630249,
- -0.05358026921749115,
- 0.09159582853317261,
- -0.010986405424773693,
- -0.02523287758231163,
- 0.0021106477361172438,
- 0.07159546762704849,
- -0.03246563300490379,
- 0.06914220750331879,
- 0.03232643008232117,
- 0.06303409487009048,
- 0.0326068252325058,
- -0.11757701635360718,
- 0.027923045679926872,
- -0.05459427833557129,
- 0.04190743342041969,
- 0.06700484454631805,
- 0.0016541059594601393,
- 0.0005882594268769026,
- 0.006317035760730505,
- 0.015102223493158817,
- -0.0514214001595974,
- 0.009062189608812332,
- 0.06656263023614883,
- 0.03389913588762283,
- 0.11639821529388428,
- 0.04005413502454758,
- -0.03203758969902992,
- -0.011056710034608841,
- 0.030705442652106285,
- -0.008063526824116707,
- 0.035046860575675964,
- 0.12075790017843246,
- 0.03199651092290878,
- -0.0944490060210228,
- 0.002211730694398284,
- 0.0475461483001709,
- -0.016371315345168114,
- -0.029017671942710876,
- 0.02694409340620041,
- 0.00019225610594730824,
- -0.05405239388346672,
- -0.06645514070987701,
- 0.019686363637447357,
- -0.03098890371620655,
- 0.0017300277249887586,
- -0.01806127093732357,
- -0.0446261428296566,
- 0.0513228103518486,
- 0.01968138851225376,
- 0.024088066071271896,
- -0.04718231037259102,
- -0.005143102258443832,
- 0.03404097631573677,
- -0.04533590376377106,
- -0.03375682979822159,
- 0.01609906554222107,
- 0.030796781182289124,
- 0.011269472539424896,
- 4.6654937320594725e-33,
- -0.02915186807513237,
- 0.03793656826019287,
- -0.06389416754245758,
- 0.023756643757224083,
- -0.0360218845307827,
- 0.0021791495382785797,
- 0.04091533645987511,
- -0.07775603979825974,
- -0.0408736914396286,
- 0.04038713872432709,
- -0.028308140113949776,
- -0.03789810091257095,
- 0.03358932211995125,
- 0.02892465889453888,
- 0.013431564904749393,
- 0.0036875256337225437,
- -0.029458092525601387,
- 0.043185193091630936,
- -0.04042564705014229,
- 0.02127017267048359,
- -0.07159542292356491,
- 0.03923435136675835,
- -0.10304850339889526,
- -0.02739747054874897,
- 0.04302810877561569,
- 0.018336212262511253,
- -0.01484127901494503,
- 0.012851975858211517,
- -0.006463692989200354,
- 0.07727587223052979,
- 0.0003709491284098476,
- -0.03863784670829773,
- -0.03115779720246792,
- 0.03637707233428955,
- 0.04070322960615158,
- -0.023291608318686485,
- 0.054646916687488556,
- 0.004798417445272207,
- -0.020642533898353577,
- -0.007788452785462141,
- 0.10939723253250122,
- -0.07677234709262848,
- 0.00209149275906384,
- 0.08913709968328476,
- -0.019366208463907242,
- -0.007095538545399904,
- -0.08288824558258057,
- 0.04493706673383713,
- -0.009054860100150108,
- -0.04153364151716232,
- -0.04008062928915024,
- -0.038486577570438385,
- 0.049127139151096344,
- -0.09428705275058746,
- 0.0075350659899413586,
- -0.025799857452511787,
- 0.03342236578464508,
- -0.021245433017611504,
- -0.009602409787476063,
- -0.005889090709388256,
- -0.05386345088481903,
- -0.05271836370229721,
- 0.07800421118736267,
- -0.005051391199231148,
- -0.08683101087808609,
- -0.016557667404413223,
- -0.02509542927145958,
- -0.010381537489593029,
- -0.022842004895210266,
- -0.06497883051633835,
- 0.05645514652132988,
- 0.07291212677955627,
- -0.022699875757098198,
- 0.01068640686571598,
- -0.062192898243665695,
- 0.030860185623168945,
- -0.07075155526399612,
- -0.007074036169797182,
- -0.08778367936611176,
- 0.039320509880781174,
- 0.06280430406332016,
- -0.015384826809167862,
- 0.019023330882191658,
- 0.0641208067536354,
- -0.09244855493307114,
- 0.06112673878669739,
- 0.042722705751657486,
- 0.044613130390644073,
- -0.030779698863625526,
- -0.06298772245645523,
- -0.04661732539534569,
- 0.07814203947782516,
- 0.05351295322179794,
- 0.003648051992058754,
- -0.07877146452665329,
- -1.2254861125882144e-8,
- 0.017258787527680397,
- -0.08446967601776123,
- 0.03903183341026306,
- -0.0368468351662159,
- 0.011719581671059132,
- 0.08502393960952759,
- -0.04486936703324318,
- -0.06449781358242035,
- -0.04646448791027069,
- 0.031081726774573326,
- 0.042022038251161575,
- -0.008440532721579075,
- -0.010630655102431774,
- 0.03758688271045685,
- 0.05677284300327301,
- 0.017284272238612175,
- 0.05084118992090225,
- -0.025649629533290863,
- -0.02984413132071495,
- 0.000808758893981576,
- 0.07694585621356964,
- -0.004709003027528524,
- -0.019069461151957512,
- 0.13132382929325104,
- -0.04077247157692909,
- -0.06610176712274551,
- 0.052637770771980286,
- 0.08945557475090027,
- 0.030863381922245026,
- -0.031795796006917953,
- 0.037868186831474304,
- 0.008991513401269913,
- 0.03188750147819519,
- -0.014613471925258636,
- 0.0011137006804347038,
- -0.08683820068836212,
- 0.05772563815116882,
- -0.029506510123610497,
- 0.0038970676250755787,
- -0.05327755585312843,
- -0.021288592368364334,
- 0.04536331072449684,
- 0.019649779424071312,
- -0.019017785787582397,
- 0.013191917911171913,
- 0.000817766587715596,
- -0.0009591735433787107,
- -0.08112888038158417,
- -0.026861663907766342,
- -0.03989091143012047,
- -0.05535738170146942,
- 0.04461115226149559,
- -0.015025492757558823,
- 0.01220637932419777,
- 0.07459217309951782,
- 0.058433279395103455,
- -0.07447057217359543,
- -0.04260028526186943,
- -0.05878839269280434,
- 0.10702542960643768,
- -0.02151966467499733,
- 0.05281102657318115,
- 0.02580065093934536,
- -0.01798492670059204
- ]
- },
- {
- "keyword": "algorithm",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.018823539838194847,
- 0.10436639934778214,
- -0.017324453219771385,
- -0.05351472273468971,
- -0.06364718824625015,
- -0.08095725625753403,
- 0.03575127199292183,
- -0.035103313624858856,
- -0.0416647344827652,
- -0.05132673680782318,
- -0.05839714780449867,
- 0.023894377052783966,
- 0.11783469468355179,
- -0.023181861266493797,
- -0.09905514866113663,
- 0.022680100053548813,
- -0.04695390164852142,
- 0.0422588549554348,
- 0.010840581730008125,
- -0.15269885957241058,
- 0.001338945352472365,
- -0.006941190455108881,
- -0.07070595026016235,
- -0.014423929154872894,
- 0.04575357958674431,
- 0.08699502795934677,
- 0.023558543995022774,
- -0.023435959592461586,
- 0.10116130113601685,
- -0.05928504094481468,
- 0.03945109248161316,
- -0.003754125442355871,
- 0.1184615045785904,
- 0.021543506532907486,
- -0.09665262699127197,
- -0.017124325037002563,
- -0.11172021180391312,
- -0.02676844596862793,
- 0.011260986328125,
- 0.0814603865146637,
- -0.08238734304904938,
- -0.04431062564253807,
- -0.005932890810072422,
- -0.02725140191614628,
- 0.011799545958638191,
- 0.07921016961336136,
- -0.11587727069854736,
- 0.05843980610370636,
- 0.022828424349427223,
- 0.026946837082505226,
- -0.1015082597732544,
- -0.013285637833178043,
- -0.08850317448377609,
- 0.019502539187669754,
- -0.013636057265102863,
- -0.028830360621213913,
- -0.010824101977050304,
- -0.05750506743788719,
- 0.024008208885788918,
- -0.041735436767339706,
- 0.06983698159456253,
- -0.016350263729691505,
- -0.021787235513329506,
- 0.009550178423523903,
- 0.10566830635070801,
- -0.015567953698337078,
- 0.028925184160470963,
- -0.07477065175771713,
- -0.01795455627143383,
- -0.008138062432408333,
- 0.01591929979622364,
- 0.10439158231019974,
- 0.06753505021333694,
- 0.06802894920110703,
- 0.010301832109689713,
- 0.011187604628503323,
- 0.05635042116045952,
- 0.01092628575861454,
- 0.0029817132744938135,
- 0.001984576927497983,
- -0.036426790058612823,
- -0.009878233075141907,
- 0.016271699219942093,
- 0.05331478640437126,
- 0.019132517278194427,
- -0.02655428647994995,
- -0.023428581655025482,
- 0.019869422540068626,
- 0.05790754407644272,
- 0.02985030971467495,
- -0.023411599919199944,
- 0.026451298967003822,
- -0.03267567604780197,
- -0.039666686207056046,
- -0.015579290688037872,
- 0.0687178447842598,
- -0.007315673399716616,
- 0.011730118654668331,
- 0.01407444104552269,
- 0.28718751668930054,
- -0.02669619210064411,
- -0.020393135026097298,
- -0.02150612510740757,
- -0.07322412729263306,
- 0.03739463537931442,
- 0.011787394993007183,
- 0.01028127409517765,
- -0.022235799580812454,
- 0.05315404385328293,
- -0.07084380090236664,
- 0.01818881183862686,
- 0.008183585479855537,
- 0.00027478087577037513,
- 0.004926119465380907,
- 0.008900242857635021,
- -0.011073313653469086,
- -0.0060629877261817455,
- 0.04270255193114281,
- -0.038250893354415894,
- 0.019351473078131676,
- -0.000048796737246448174,
- 0.008956165052950382,
- 0.023539749905467033,
- 0.003106344724074006,
- -0.00821114331483841,
- -0.005234707612544298,
- 0.02851618453860283,
- -5.189194097766064e-33,
- -0.08341950178146362,
- -0.019137967377901077,
- 0.06219884008169174,
- -0.06143598258495331,
- -0.043729886412620544,
- -0.027610518038272858,
- -0.03577397018671036,
- -0.07733654975891113,
- -0.01614968851208687,
- 0.010105484165251255,
- 0.019458414986729622,
- 0.020399466156959534,
- 0.0409199595451355,
- -0.00987648218870163,
- 0.15747836232185364,
- -0.10088817030191422,
- 0.13540759682655334,
- 0.013409197330474854,
- -0.06630326062440872,
- -0.06057887151837349,
- -0.011633923277258873,
- -0.030123205855488777,
- 0.04226609319448471,
- -0.020838219672441483,
- -0.013673181645572186,
- 0.04957390949130058,
- 0.009059407748281956,
- -0.09733075648546219,
- 0.04790142551064491,
- 0.029716135933995247,
- 0.02901674620807171,
- 0.06185922026634216,
- -0.0569763109087944,
- -0.008018436841666698,
- 0.05605478957295418,
- -0.017203858122229576,
- 0.05570496991276741,
- -0.014459836296737194,
- 0.06583546847105026,
- 0.022321492433547974,
- 0.01822969876229763,
- -0.014983882196247578,
- 0.06934365630149841,
- -0.0533456914126873,
- -0.0010916312457993627,
- 0.05851828306913376,
- -0.005370573606342077,
- 0.027952605858445168,
- 0.06045861542224884,
- 0.11262553930282593,
- -0.040444355458021164,
- -0.04360703378915787,
- -0.03035539761185646,
- 0.050440214574337006,
- -0.0060722543857991695,
- 0.01382900308817625,
- -0.015465427190065384,
- 0.0136738121509552,
- 0.018935073167085648,
- 0.06385378539562225,
- 0.08704111725091934,
- -0.023714914917945862,
- 0.029858198016881943,
- 0.019024021923542023,
- -0.016182510182261467,
- -0.025790652260184288,
- -0.001590798026882112,
- -0.07899302244186401,
- 0.04942973330616951,
- 0.09773989766836166,
- -0.04811020568013191,
- -0.029536863788962364,
- 0.050282351672649384,
- 0.03899908438324928,
- -0.05254439264535904,
- -0.050355616956949234,
- 0.07090548425912857,
- 0.00011223740875720978,
- -0.024476924911141396,
- -0.07254717499017715,
- -0.10467708110809326,
- 0.06307891011238098,
- 0.034892696887254715,
- -0.06890853494405746,
- 0.060121916234493256,
- -0.041066356003284454,
- -0.0564568005502224,
- -0.0035152798518538475,
- -0.039431482553482056,
- -0.01388482004404068,
- -0.11392306536436081,
- 0.04231439158320427,
- 0.04243140667676926,
- 0.08100660145282745,
- 0.011634647846221924,
- 3.216224175536782e-33,
- -0.06080150604248047,
- 0.02408725768327713,
- 0.06640397012233734,
- 0.05280943587422371,
- 0.020277012139558792,
- -0.0808071717619896,
- -0.058264605700969696,
- -0.04738238453865051,
- 0.039426933974027634,
- 0.07924963533878326,
- -0.04673711583018303,
- 0.03893725201487541,
- 0.06942950189113617,
- 0.00739437947049737,
- 0.02985864318907261,
- 0.018140343949198723,
- 0.018985511735081673,
- -0.03927642107009888,
- -0.021154675632715225,
- 0.04115041717886925,
- -0.03718775138258934,
- 0.008389853872358799,
- -0.07178711891174316,
- -0.08728732168674469,
- -0.001066321972757578,
- 0.04142032191157341,
- 0.050816480070352554,
- 0.01780177652835846,
- 0.015488896518945694,
- -0.004212123341858387,
- -0.058867309242486954,
- -0.0769137591123581,
- -0.07264415919780731,
- 0.012404331006109715,
- -0.042922478169202805,
- 0.057090140879154205,
- -0.007363236043602228,
- -0.01832173950970173,
- 0.0028152482118457556,
- -0.0007818391313776374,
- 0.028783803805708885,
- 0.036698948591947556,
- -0.013661892153322697,
- 0.005558334290981293,
- 0.00204147188924253,
- 0.021051213145256042,
- -0.021270666271448135,
- 0.07946614176034927,
- 0.0226847305893898,
- -0.02784256637096405,
- -0.04838348180055618,
- 0.009453422389924526,
- -0.01892874948680401,
- -0.013080799952149391,
- 0.044476065784692764,
- 0.06165987625718117,
- -0.080812968313694,
- 0.08261347562074661,
- 0.04825931414961815,
- 0.006957374978810549,
- -0.052780602127313614,
- 0.005250274669378996,
- -0.00365547277033329,
- 0.04495825618505478,
- -0.07292026281356812,
- -0.03098795749247074,
- -0.007568569388240576,
- -0.012288326397538185,
- -0.05573032423853874,
- 0.05455140396952629,
- 0.06737305968999863,
- 0.11285348236560822,
- -0.02697901241481304,
- 0.018136262893676758,
- -0.07555513083934784,
- -0.016252752393484116,
- -0.05319572985172272,
- 0.021443746984004974,
- 0.011450976133346558,
- -0.03739992156624794,
- -0.04079414904117584,
- 0.02141030877828598,
- -0.02843852899968624,
- 0.03760283812880516,
- -0.009622194804251194,
- -0.00397580536082387,
- 0.11412321031093597,
- -0.026147443801164627,
- -0.005701703019440174,
- 0.02598099410533905,
- -0.012759520672261715,
- 0.05162229388952255,
- 0.03514528274536133,
- -0.07620412111282349,
- -0.06845641136169434,
- -1.3038563118072943e-8,
- -0.05059988051652908,
- -0.11618578433990479,
- 0.012187579646706581,
- 0.00692307623103261,
- 0.11735185235738754,
- 0.018951479345560074,
- 0.05220466107130051,
- 0.006942865904420614,
- -0.05207408219575882,
- -0.12207728624343872,
- 0.056097302585840225,
- -0.016525601968169212,
- -0.018711386248469353,
- 0.0824960321187973,
- 0.022105272859334946,
- -0.019021380692720413,
- 0.003912494517862797,
- -0.03405247628688812,
- -0.0430569052696228,
- -0.017621668055653572,
- -0.020518220961093903,
- 0.0020512850023806095,
- 0.05076666921377182,
- 0.03599293529987335,
- 0.003315734677016735,
- -0.0191971343010664,
- 0.011488934978842735,
- -0.01663891412317753,
- 0.031510841101408005,
- 0.045968662947416306,
- 0.010920736007392406,
- 0.033534422516822815,
- -0.005082752089947462,
- -0.015066305175423622,
- 0.007050317246466875,
- 0.038180697709321976,
- -0.03749464824795723,
- 0.025268733501434326,
- -0.03601847216486931,
- -0.07600069791078568,
- -0.023180853575468063,
- 0.020724324509501457,
- 0.004224688280373812,
- -0.07684145867824554,
- 0.07890918850898743,
- 0.04083488509058952,
- 0.021282417699694633,
- -0.06200627237558365,
- -0.05661878362298012,
- -0.015358418226242065,
- -0.06057468801736832,
- -0.027987221255898476,
- 0.02922980859875679,
- -0.04501748085021973,
- 0.030108114704489708,
- -0.06230836361646652,
- 0.009688067249953747,
- -0.03670942410826683,
- 0.033960334956645966,
- -0.004046336282044649,
- 0.0126041816547513,
- 0.022027621045708656,
- 0.052457544952631,
- -0.04516280069947243
- ]
- },
- {
- "keyword": "artificial intelligence",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.025053149089217186,
- 0.021776972338557243,
- 0.03168828785419464,
- -0.0070106713101267815,
- -0.027751950547099113,
- -0.008826129138469696,
- 0.07963792979717255,
- 0.031216321513056755,
- -0.006335513200610876,
- 0.019781803712248802,
- -0.0019630698952823877,
- 0.009452627040445805,
- 0.054764386266469955,
- 0.006559701636433601,
- -0.08776344358921051,
- 0.014123418368399143,
- -0.03876395523548126,
- -0.029965585097670555,
- -0.18126685917377472,
- -0.13424301147460938,
- -0.016118036583065987,
- 0.013287835754454136,
- -0.023901818320155144,
- -0.03791821002960205,
- 0.004069189541041851,
- 0.08607164025306702,
- 0.002363372128456831,
- -0.019522476941347122,
- -0.009785688482224941,
- -0.11208485811948776,
- 0.05461951717734337,
- -0.008434801362454891,
- 0.09456421434879303,
- -0.006259480491280556,
- -0.09693397581577301,
- 0.061375271528959274,
- -0.07060427218675613,
- 0.010279412381350994,
- 0.044291120022535324,
- -0.0018582767806947231,
- -0.048367634415626526,
- -0.08016807585954666,
- 0.031244484707713127,
- 0.015065902844071388,
- 0.04949723184108734,
- 0.10893983393907547,
- -0.060961466282606125,
- 0.031625896692276,
- -0.036349449306726456,
- 0.03071592189371586,
- -0.12795600295066833,
- 0.005425916984677315,
- -0.04073243588209152,
- 0.0002873056218959391,
- -0.017158864066004753,
- 0.039769724011421204,
- 0.021639462560415268,
- 0.013127489946782589,
- 0.020155884325504303,
- -0.060518983751535416,
- 0.01677115447819233,
- -0.053528789430856705,
- 0.016505910083651543,
- 0.0028740111738443375,
- 0.09486934542655945,
- 0.02297178842127323,
- -0.054319221526384354,
- 0.019787918776273727,
- 0.0033178390003740788,
- -0.05767008289694786,
- 0.037183988839387894,
- 0.07586227357387543,
- 0.049085501581430435,
- 0.025958789512515068,
- 0.05652419850230217,
- -0.04449000582098961,
- 0.035092543810606,
- -0.009555031545460224,
- 0.08811403810977936,
- -0.049903400242328644,
- -0.025708600878715515,
- -0.04776099696755409,
- -0.06065399944782257,
- 0.10984295606613159,
- 0.014903081580996513,
- -0.04682556167244911,
- -0.022374995052814484,
- 0.022381290793418884,
- 0.013920399360358715,
- -0.015844620764255524,
- -0.008398709818720818,
- -0.09432671219110489,
- 0.021575354039669037,
- -0.04109363257884979,
- -0.01869894750416279,
- 0.05821636691689491,
- -0.009254424832761288,
- -0.14683784544467926,
- -0.002665541600435972,
- 0.20510965585708618,
- -0.02956119179725647,
- 0.021876946091651917,
- -0.009245228953659534,
- -0.0036507309414446354,
- 0.010595990344882011,
- -0.02201317809522152,
- 0.023311369121074677,
- -0.010068214498460293,
- 0.07277342677116394,
- -0.12725281715393066,
- -0.10977064818143845,
- -0.020202726125717163,
- 0.06683595478534698,
- -0.042844247072935104,
- -0.004710192326456308,
- 0.01479629147797823,
- 0.05701756477355957,
- 0.10001156479120255,
- 0.010299066081643105,
- 0.013469403609633446,
- 0.005086609162390232,
- -0.02248244546353817,
- -0.020458634942770004,
- 0.0777762308716774,
- -0.0033662535715848207,
- -0.04669349268078804,
- -0.04506631940603256,
- -1.1269219140558529e-33,
- -0.10934926569461823,
- -0.05098086968064308,
- 0.035575028508901596,
- 0.0619485005736351,
- -0.0023549071047455072,
- -0.03954171761870384,
- 0.0017951312474906445,
- -0.045469895005226135,
- -0.01082423236221075,
- 0.011368158273398876,
- -0.056771229952573776,
- 0.010388456284999847,
- -0.03447826951742172,
- 0.04119028523564339,
- 0.13144364953041077,
- 0.00635906308889389,
- -0.019831907004117966,
- 0.06431158632040024,
- -0.029833294451236725,
- -0.04134972020983696,
- 0.06576959043741226,
- 0.021069230511784554,
- -0.013923845253884792,
- -0.028628963977098465,
- -0.0045372433960437775,
- 0.005041439551860094,
- 0.009632186032831669,
- -0.08495352417230606,
- 0.03792015463113785,
- -0.007884444668889046,
- 0.041950322687625885,
- 0.07762439548969269,
- -0.028333116322755814,
- 0.017371991649270058,
- 0.031559742987155914,
- -0.02170259691774845,
- -0.007675679866224527,
- 0.011608083732426167,
- 0.05965792387723923,
- 0.01593380980193615,
- -0.0022562057711184025,
- -0.0041110278107225895,
- 0.03325548768043518,
- 0.041065555065870285,
- 0.006563137285411358,
- 0.015922043472528458,
- 0.08642686158418655,
- -0.012350417673587799,
- -0.02281379885971546,
- 0.020114514976739883,
- -0.0006261069211177528,
- 0.01742571033537388,
- 0.03130018338561058,
- -0.0072440714575350285,
- 0.09957803040742874,
- 0.05159617215394974,
- -0.03729761019349098,
- 0.002919228747487068,
- -0.027069073170423508,
- -0.027031540870666504,
- 0.07331975549459457,
- 0.025636248290538788,
- -0.028244273737072945,
- 0.06037628650665283,
- 0.021745305508375168,
- 0.018649492412805557,
- 0.008250441402196884,
- 0.019394494593143463,
- 0.11606056243181229,
- 0.028866248205304146,
- -0.018186597153544426,
- 0.0035620462149381638,
- 0.03455778956413269,
- -0.030557405203580856,
- -0.05320850759744644,
- 0.018146751448512077,
- 0.04688376933336258,
- -0.015008403919637203,
- -0.006990592461079359,
- -0.03642095625400543,
- -0.13068458437919617,
- -0.03332013636827469,
- -0.03717276453971863,
- -0.025292295962572098,
- 0.04753916710615158,
- 0.000947401684243232,
- 0.014098935760557652,
- -0.041825007647275925,
- 0.031455446034669876,
- 0.016905611380934715,
- -0.05731373280286789,
- -0.005901611875742674,
- 0.04043731838464737,
- 0.025426728650927544,
- -0.06700480729341507,
- 9.130901244206706e-34,
- -0.10366178303956985,
- 0.003975692670792341,
- -0.029349325224757195,
- 0.09515132755041122,
- 0.03420078009366989,
- -0.02179904468357563,
- -0.03848644718527794,
- -0.06278718262910843,
- 0.017900915816426277,
- 0.08302575349807739,
- -0.044997990131378174,
- -0.007393152453005314,
- 0.0526081845164299,
- 0.038858748972415924,
- -0.03557853400707245,
- 0.0042756227776408195,
- 0.03396744281053543,
- -0.05877132713794708,
- 0.004073651973158121,
- 0.06376970559358597,
- -0.033626530319452286,
- 0.04094642400741577,
- -0.09095626324415207,
- -0.07155603915452957,
- -0.005277394782751799,
- 0.08925826102495193,
- 0.005214708857238293,
- -0.01191779039800167,
- -0.04498356953263283,
- 0.04614219442009926,
- 0.003248426131904125,
- -0.0408085435628891,
- -0.027662284672260284,
- 0.0849781334400177,
- -0.021526480093598366,
- 0.037775199860334396,
- -0.011556087993085384,
- -0.0002505123266018927,
- -0.04877018555998802,
- 0.022290190681815147,
- 0.027654753997921944,
- 0.02690933272242546,
- -0.09297673404216766,
- 0.04041659086942673,
- 0.007655168883502483,
- -0.04233995079994202,
- -0.04330633580684662,
- 0.0787748396396637,
- -0.02227075584232807,
- -0.04033927991986275,
- -0.07563149929046631,
- -0.024698350578546524,
- -0.049282874912023544,
- -0.10395752638578415,
- -0.051469579339027405,
- 0.06515084207057953,
- -0.004814067855477333,
- 0.022896775975823402,
- -0.012206703424453735,
- 0.0694233775138855,
- 0.00014993309741839767,
- -0.0812532976269722,
- 0.06097822263836861,
- 0.05198152735829353,
- -0.05242326855659485,
- 0.03853747621178627,
- -0.03772636875510216,
- 0.0840548723936081,
- -0.037292953580617905,
- -0.05029142647981644,
- 0.10446485131978989,
- 0.03911421820521355,
- -0.002743571763858199,
- 0.009835474193096161,
- 0.026938902214169502,
- 0.0008228258229792118,
- -0.1240214928984642,
- -0.004272197838872671,
- -0.03532053157687187,
- -0.04129903018474579,
- 0.013692178763449192,
- -0.047030944377183914,
- 0.008707106113433838,
- 0.11222246289253235,
- -0.0450235940515995,
- 0.07093551009893417,
- 0.01711207628250122,
- -0.020322570577263832,
- 0.023524440824985504,
- -0.0567849799990654,
- -0.05116701126098633,
- 0.055382177233695984,
- 0.0077904327772557735,
- -0.0025265472941100597,
- -0.09870867431163788,
- -1.4212545806913113e-8,
- -0.0026252169627696276,
- -0.061424896121025085,
- 0.0756649300456047,
- -0.0258121769875288,
- 0.07658856362104416,
- 0.04513388127088547,
- -0.0536816380918026,
- -0.015842372551560402,
- -0.0387750007212162,
- 0.020901590585708618,
- 0.02716347575187683,
- -0.023869458585977554,
- 0.02943616360425949,
- 0.025867247954010963,
- 0.03141777217388153,
- 0.050881389528512955,
- 0.01651754043996334,
- 0.0005665839416906238,
- -0.0043055047281086445,
- 0.010392459109425545,
- 0.12629593908786774,
- 0.0424235463142395,
- -0.023898566141724586,
- 0.03409453108906746,
- -0.0012580342590808868,
- -0.020763788372278214,
- 0.011676974594593048,
- 0.022420678287744522,
- -0.053989630192518234,
- 0.08150048553943634,
- -0.0378185510635376,
- 0.028471002355217934,
- -0.009690011851489544,
- 0.008355970494449139,
- 0.1047673225402832,
- 0.08296172320842743,
- 0.009555261582136154,
- -0.07555778324604034,
- -0.04135942459106445,
- -0.009603233076632023,
- -0.009932165034115314,
- 0.06613440066576004,
- -0.021939482539892197,
- -0.02631860412657261,
- 0.09240416437387466,
- -0.0033321005757898092,
- -0.010142195969820023,
- -0.12525521218776703,
- 0.07090714573860168,
- -0.002621500752866268,
- -0.010842704214155674,
- 0.028756001964211464,
- 0.006472406908869743,
- 0.054779261350631714,
- 0.060559336096048355,
- 0.0040452913381159306,
- 0.042247697710990906,
- 0.02431090734899044,
- -0.0714736133813858,
- 0.0932057574391365,
- 0.05093693360686302,
- 0.056093230843544006,
- 0.06008417159318924,
- -0.07432553917169571
- ]
- },
- {
- "keyword": "machine learning",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.025453874841332436,
- 0.0067002358846366405,
- 0.05334024503827095,
- -0.008234824985265732,
- 0.010083573870360851,
- -0.0052466848865151405,
- 0.03537201136350632,
- -0.02605423517525196,
- -0.046931251883506775,
- -0.04630447179079056,
- -0.024147192016243935,
- 0.022640148177742958,
- 0.041348282247781754,
- -0.02038339339196682,
- -0.06759251654148102,
- 0.01700204238295555,
- -0.0032532629556953907,
- -0.005628089886158705,
- -0.10514780133962631,
- -0.126299649477005,
- -0.02378813736140728,
- -0.012475166469812393,
- -0.09748973697423935,
- 0.032751813530921936,
- 0.02384970709681511,
- 0.039090417325496674,
- 0.05819253623485565,
- 0.05211006477475166,
- 0.018253253772854805,
- -0.11285961419343948,
- 0.01264266949146986,
- -0.026102935895323753,
- 0.05249986797571182,
- 0.014837898313999176,
- -0.12184155732393265,
- 0.017229581251740456,
- -0.06393379718065262,
- 0.03270913287997246,
- 0.01472869049757719,
- 0.031453847885131836,
- -0.019216259941458702,
- -0.07844166457653046,
- 0.01060569379478693,
- 0.008193864487111568,
- 0.06609934568405151,
- 0.08141545951366425,
- -0.004518857225775719,
- -0.014697113074362278,
- -0.03778017312288284,
- 0.039992012083530426,
- -0.09648097306489944,
- -0.012153630144894123,
- -0.037409693002700806,
- -0.0008959773113019764,
- -0.07348582148551941,
- 0.03296012431383133,
- 0.03114429861307144,
- -0.02148621901869774,
- 0.05014795809984207,
- -0.016500143334269524,
- 0.05902492254972458,
- -0.07325135171413422,
- -0.08938394486904144,
- 0.010555613785982132,
- 0.14162328839302063,
- -0.0011160450521856546,
- -0.0031785189639776945,
- 0.06288314610719681,
- -0.04731344059109688,
- -0.055187296122312546,
- -0.021569078788161278,
- 0.03665312007069588,
- -0.024454886093735695,
- 0.04983435943722725,
- 0.06592170894145966,
- -0.005843378137797117,
- 0.04259568080306053,
- 0.032110024243593216,
- 0.09234649688005447,
- -0.034506622701883316,
- -0.036895785480737686,
- -0.0006197268958203495,
- -0.040872443467378616,
- 0.059244126081466675,
- 0.04634172469377518,
- -0.01693735085427761,
- -0.04986250773072243,
- 0.029399357736110687,
- -0.005583946127444506,
- -0.004348723217844963,
- -0.01527480036020279,
- -0.016728485003113747,
- 0.046384867280721664,
- -0.05897016078233719,
- -0.0804683119058609,
- 0.0729861930012703,
- 0.008260849863290787,
- -0.14416465163230896,
- 0.014611847698688507,
- 0.23420396447181702,
- -0.04983935505151749,
- 0.01821112260222435,
- 0.013304045423865318,
- -0.003446323098614812,
- 0.02077636867761612,
- -0.06168639287352562,
- 0.015858925879001617,
- -0.017591889947652817,
- 0.10135293751955032,
- -0.10551228374242783,
- -0.06598634272813797,
- -0.020307442173361778,
- 0.004666767083108425,
- -0.04839421063661575,
- 0.03763129189610481,
- -0.028721412643790245,
- 0.023959537968039513,
- -0.009705087170004845,
- -0.02458096295595169,
- 0.034292250871658325,
- -0.04308316856622696,
- -0.03684135153889656,
- -0.005999346263706684,
- 0.06720452010631561,
- -0.028946034610271454,
- -0.056578975170850754,
- -0.06082606315612793,
- -1.1476641776834593e-34,
- -0.013797838240861893,
- -0.09046252071857452,
- -0.012891401536762714,
- 0.024788659065961838,
- 0.009535707533359528,
- -0.0981900617480278,
- -0.010610507801175117,
- -0.06770104169845581,
- 0.034795619547367096,
- 0.041386254131793976,
- -0.05206754058599472,
- 0.0077551743015646935,
- 0.022822951897978783,
- -0.012621928937733173,
- 0.12967631220817566,
- -0.00838974118232727,
- 0.041035301983356476,
- 0.11093475669622421,
- -0.037894416600465775,
- -0.031328458338975906,
- -0.02722930908203125,
- -0.015874285250902176,
- 0.05678583309054375,
- 0.006403801497071981,
- -0.03338152915239334,
- 0.021942684426903725,
- 0.027384134009480476,
- 0.01938123069703579,
- -0.038696713745594025,
- 0.030866457149386406,
- 0.05946855992078781,
- 0.023161884397268295,
- -0.030021807178854942,
- 0.011546104215085506,
- 0.06189044564962387,
- -0.022101324051618576,
- 0.011892620474100113,
- 0.02458251640200615,
- 0.06477978080511093,
- -0.019619179889559746,
- -0.07047458738088608,
- -0.07114341855049133,
- 0.07500024884939194,
- 0.000548365234863013,
- -0.011472904123365879,
- 0.05052579939365387,
- 0.03982003405690193,
- -0.05829444155097008,
- -0.04198053479194641,
- 0.007380976341664791,
- 0.0016321446746587753,
- -0.023492593318223953,
- -0.048934947699308395,
- 0.01122627779841423,
- 0.030651437118649483,
- 0.10178088396787643,
- -0.012784147635102272,
- -0.005957385990768671,
- -0.016164006665349007,
- -0.032064519822597504,
- 0.09150878340005875,
- 0.03935348242521286,
- -0.002544643823057413,
- 0.028369519859552383,
- -0.030419956892728806,
- 0.008805489167571068,
- 0.03650563582777977,
- -0.009334705770015717,
- 0.040805213153362274,
- 0.025196518748998642,
- -0.018416019156575203,
- -0.009748316369950771,
- 0.06307966262102127,
- -0.04502761736512184,
- 0.02867193892598152,
- 0.029185594990849495,
- 0.02641727216541767,
- 0.04562722146511078,
- -0.05477416142821312,
- 0.002406949643045664,
- -0.1364297717809677,
- -0.027854498475790024,
- 0.0024415780790150166,
- -0.03963053971529007,
- 0.010022776201367378,
- -0.05937645211815834,
- 0.018011033535003662,
- -0.05235913395881653,
- -0.01463397778570652,
- 0.03722970187664032,
- -0.11667922139167786,
- 0.06935099512338638,
- 0.05044359341263771,
- 0.049235500395298004,
- -0.06946492940187454,
- -7.5551914745477395e-34,
- -0.1310093253850937,
- 0.03646330162882805,
- 0.05760105699300766,
- 0.11020699143409729,
- 0.01671670563519001,
- 0.011912182904779911,
- -0.04389918968081474,
- -0.03493987023830414,
- 0.008965512737631798,
- 0.10240963846445084,
- -0.016371583566069603,
- 0.032761674374341965,
- 0.06243221089243889,
- -0.006186886690557003,
- -0.07483194768428802,
- 0.061619825661182404,
- 0.00833570584654808,
- -0.04058948904275894,
- -0.011863010935485363,
- 0.06308993697166443,
- -0.034521959722042084,
- 0.04089418053627014,
- -0.029358526691794395,
- -0.019054243341088295,
- -0.0060467710718512535,
- 0.01180978026241064,
- -0.010609096847474575,
- 0.007152631878852844,
- -0.04632506147027016,
- -0.044510118663311005,
- -0.021358134225010872,
- -0.037747349590063095,
- -0.04340711236000061,
- 0.05617336556315422,
- -0.06108985096216202,
- 0.045596081763505936,
- 0.004758250433951616,
- 0.01390781719237566,
- -0.001795498887076974,
- 0.10234078019857407,
- 0.03457380458712578,
- 0.05095985159277916,
- -0.09715831279754639,
- 0.043950553983449936,
- -0.03274424374103546,
- -0.09881483018398285,
- -0.057881757616996765,
- 0.020980115979909897,
- 0.061944957822561264,
- -0.03578273579478264,
- -0.03758317604660988,
- 0.04661969095468521,
- -0.019346799701452255,
- -0.06338794529438019,
- -0.01962721161544323,
- 0.023981386795639992,
- -0.030720479786396027,
- -0.024212798103690147,
- 0.026460884138941765,
- 0.050456468015909195,
- -0.12860776484012604,
- -0.05653063952922821,
- 0.019794726744294167,
- 0.06029484048485756,
- -0.001522872131317854,
- -0.011636588722467422,
- -0.021495385095477104,
- 0.046113643795251846,
- -0.02990347519516945,
- 0.014668414369225502,
- 0.08129154145717621,
- 0.07586582750082016,
- -0.023586953058838844,
- 0.015893209725618362,
- -0.02760249935090542,
- -0.04929635301232338,
- -0.0834989994764328,
- -0.04033568874001503,
- -0.03783364221453667,
- -0.03967505693435669,
- 0.026985811069607735,
- -0.060945648699998856,
- 0.02927073836326599,
- 0.09950502961874008,
- 0.012055286206305027,
- 0.06266207993030548,
- 0.07977268099784851,
- -0.016487395390868187,
- 0.030648263171315193,
- -0.047602325677871704,
- -0.02369382604956627,
- 0.04058259725570679,
- 0.005514360964298248,
- 0.007026270031929016,
- -0.05603165924549103,
- -1.47782346360259e-8,
- -0.025298703461885452,
- -0.08065435290336609,
- 0.09036064893007278,
- -0.020947301760315895,
- 0.04790239781141281,
- 0.04658721387386322,
- -0.06276840716600418,
- 0.08308348059654236,
- -0.03216187655925751,
- 0.0027721328660845757,
- 0.03844640403985977,
- 0.008868785575032234,
- -0.03579724580049515,
- 0.06836014240980148,
- -0.0017171815270558,
- 0.003483428154140711,
- -0.011015801690518856,
- 0.06206977367401123,
- -0.030099421739578247,
- 0.007913041859865189,
- 0.07748707383871078,
- 0.06792186200618744,
- 0.06002609059214592,
- 0.009678577072918415,
- 0.09659038484096527,
- -0.04665815457701683,
- 0.027535272762179375,
- 0.06852877885103226,
- 0.008158769458532333,
- 0.06139751896262169,
- -0.022287655621767044,
- 0.09998957067728043,
- 0.025921722874045372,
- -0.01766555942595005,
- 0.0922519639134407,
- 0.08891646564006805,
- -0.01308861281722784,
- -0.05759866535663605,
- -0.01957854814827442,
- 0.049714308232069016,
- -0.0406092032790184,
- 0.03680259734392166,
- -0.08559416234493256,
- -0.02682618424296379,
- 0.024158144369721413,
- 0.0281609445810318,
- 0.04387003183364868,
- -0.1295430064201355,
- 0.015373770147562027,
- -0.002030216623097658,
- 0.04450887814164162,
- 0.028119290247559547,
- 0.0612659715116024,
- 0.03504820540547371,
- 0.008880333974957466,
- 0.062375541776418686,
- 0.05080431327223778,
- -0.03279569745063782,
- -0.004072187002748251,
- 0.03332674503326416,
- 0.051948972046375275,
- 0.031120026484131813,
- -0.019618486985564232,
- -0.056071605533361435
- ]
- },
- {
- "keyword": "deep learning",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.09692119807004929,
- -0.03915804252028465,
- 0.062507763504982,
- 0.002115180715918541,
- -0.043315187096595764,
- 0.021162206307053566,
- 0.013233178295195103,
- -0.018360037356615067,
- -0.026833264157176018,
- -0.11854983121156693,
- -0.03781505674123764,
- 0.03209638595581055,
- -0.0001351985556539148,
- 0.026656677946448326,
- -0.10399174690246582,
- 0.028288045898079872,
- 0.04164886847138405,
- 0.0450390949845314,
- -0.1807016283273697,
- -0.06555303931236267,
- -0.02393152564764023,
- 0.0028147967532277107,
- -0.0601322166621685,
- -0.014291643165051937,
- 0.0669175535440445,
- 0.050090137869119644,
- 0.020732663571834564,
- -0.005213211290538311,
- 0.055775705724954605,
- -0.11681637167930603,
- 0.084687240421772,
- -0.029627468436956406,
- 0.025421271100640297,
- 0.04360072314739227,
- -0.08554011583328247,
- 0.0485825352370739,
- -0.06646507233381271,
- 0.03126299008727074,
- 0.027568375691771507,
- -0.002276564482599497,
- -0.031157484278082848,
- -0.041074905544519424,
- -0.013436995446681976,
- 0.04411553591489792,
- 0.06896555423736572,
- 0.015229325741529465,
- 0.04755432531237602,
- 0.007505799178034067,
- 0.02508573606610298,
- 0.09297947585582733,
- -0.04718474671244621,
- 0.003722741501405835,
- -0.057218581438064575,
- 0.043999746441841125,
- -0.03568855673074722,
- 0.01534143928438425,
- 0.028852153569459915,
- 0.004759625531733036,
- -0.05429741367697716,
- 0.05142134055495262,
- 0.0736214816570282,
- -0.020542088896036148,
- -0.036738548427820206,
- 0.004255546722561121,
- 0.05338141694664955,
- 0.003180932020768523,
- 0.021780207753181458,
- 0.0488385334610939,
- 0.025999577715992928,
- -0.05751539766788483,
- -0.008612214587628841,
- 0.06483856588602066,
- -0.004581529647111893,
- 0.0025174692273139954,
- 0.04917601868510246,
- -0.009931306354701519,
- 0.06449917703866959,
- 0.014375768601894379,
- 0.11526922881603241,
- -0.0647619217634201,
- 0.042965974658727646,
- -0.0007003109785728157,
- -0.01986398734152317,
- 0.03159813582897186,
- 0.11846400797367096,
- -0.048880260437726974,
- -0.003637341083958745,
- 0.03460833057761192,
- -0.06487265974283218,
- -0.0745529904961586,
- -0.015167439356446266,
- -0.06926530599594116,
- -0.04013815149664879,
- -0.04189998283982277,
- -0.052376218140125275,
- 0.014431462623178959,
- 0.04864627495408058,
- -0.14739058911800385,
- -0.03682531416416168,
- 0.21201898157596588,
- -0.02276269905269146,
- -0.008903575129806995,
- 0.03056524135172367,
- 0.020987605676054955,
- 0.01665683276951313,
- -0.0004852779093198478,
- 0.033031802624464035,
- 0.024685269221663475,
- 0.06734246015548706,
- -0.09470098465681076,
- -0.011768191121518612,
- -0.0025864120107144117,
- 0.050586313009262085,
- -0.047450073063373566,
- 0.06922733038663864,
- -0.09068475663661957,
- 0.06327413022518158,
- -0.023493567481637,
- -0.027110565453767776,
- 0.0307761263102293,
- -0.09787526726722717,
- -0.03550051152706146,
- -0.0365360826253891,
- 0.07409822940826416,
- -0.034832894802093506,
- 0.0053741526789963245,
- -0.03444503992795944,
- 9.327322676809264e-34,
- -0.015894759446382523,
- -0.038610443472862244,
- -0.04318289831280708,
- 0.01376768946647644,
- 0.02798190340399742,
- -0.050643883645534515,
- -0.00867069885134697,
- -0.019149305298924446,
- -0.034205131232738495,
- 0.042287833988666534,
- -0.07690179347991943,
- -0.009173891507089138,
- -0.004470575600862503,
- 0.04710979759693146,
- 0.08620741218328476,
- 0.006554568186402321,
- -0.017961354926228523,
- 0.07529259473085403,
- 0.048083268105983734,
- -0.10096216946840286,
- -0.04075563699007034,
- -0.0321686826646328,
- -0.01403506938368082,
- 0.019758721813559532,
- -0.019242877140641212,
- -0.011873112991452217,
- 0.07736437022686005,
- -0.015363450162112713,
- -0.029887564480304718,
- -0.0003520987229421735,
- -0.026755694299936295,
- -0.014999856241047382,
- -0.005456377752125263,
- 0.009333346039056778,
- 0.041022442281246185,
- -0.012617118656635284,
- 0.019263528287410736,
- 0.03740980103611946,
- 0.08582562208175659,
- -0.077407605946064,
- 0.008806203491985798,
- 0.03529581427574158,
- 0.016262687742710114,
- -0.0303745586425066,
- -0.019205816090106964,
- 0.014237610623240471,
- 0.06283476203680038,
- -0.024097053334116936,
- -0.10310874134302139,
- -0.03612460941076279,
- 0.03780622035264969,
- -0.04271704703569412,
- -0.06123964115977287,
- -0.0010538458591327071,
- 0.053461458534002304,
- 0.02755790762603283,
- 0.029018038883805275,
- 0.04892159625887871,
- 0.04389176890254021,
- -0.01180089358240366,
- 0.12569557130336761,
- 0.05061997100710869,
- -0.02842148207128048,
- 0.04748762026429176,
- -0.02644803561270237,
- 0.03027764894068241,
- 0.03967996686697006,
- 0.032969750463962555,
- 0.051696132868528366,
- -0.010130633600056171,
- -0.03923846036195755,
- 0.013003668747842312,
- 0.07507683336734772,
- -0.08744604885578156,
- 0.033804427832365036,
- 0.006761673837900162,
- 0.03648025169968605,
- 0.011616596952080727,
- -0.08302803337574005,
- 0.07294401526451111,
- -0.11593685299158096,
- 0.08495382219552994,
- -0.04233274236321449,
- 0.034523334354162216,
- -0.037944044917821884,
- 0.00995592400431633,
- 0.022850776091217995,
- -0.04287808761000633,
- 0.0561714842915535,
- 0.04409489780664444,
- -0.049994759261608124,
- 0.0453411303460598,
- 0.023711951449513435,
- 0.00838921032845974,
- -0.0644875094294548,
- 1.3648598785840347e-33,
- -0.09138298034667969,
- 0.10355504602193832,
- -0.008097058162093163,
- 0.09887199103832245,
- 0.03159501403570175,
- -0.00948390644043684,
- -0.046522319316864014,
- -0.018780134618282318,
- -0.01728418841958046,
- 0.048767298460006714,
- 0.0070043266750872135,
- 0.005744465161114931,
- 0.05120774358510971,
- -0.021262358874082565,
- -0.007644006051123142,
- 0.016492199152708054,
- 0.02481202781200409,
- -0.04667021706700325,
- -0.008752663619816303,
- 0.04438864812254906,
- 0.006014946848154068,
- 0.04808230698108673,
- -0.07219401001930237,
- 0.005039107520133257,
- -0.05273774638772011,
- 0.006490551866590977,
- -0.010620852001011372,
- 0.03950919955968857,
- -0.043457359075546265,
- -0.0612020306289196,
- 0.021218780428171158,
- -0.07454466819763184,
- -0.066103495657444,
- 0.04989232122898102,
- -0.008948794566094875,
- 0.026108162477612495,
- 0.03714187815785408,
- 0.012815556488931179,
- -0.019284842535853386,
- -0.018366599455475807,
- 0.024360157549381256,
- -0.003597959177568555,
- -0.0365266315639019,
- 0.05745336040854454,
- -0.03729761391878128,
- -0.12081076204776764,
- -0.021683672443032265,
- 0.028600294142961502,
- 0.04769071564078331,
- 0.029603268951177597,
- -0.032491300255060196,
- -0.05473488196730614,
- -0.05268232524394989,
- -0.061963941901922226,
- -0.053351178765296936,
- 0.002305490430444479,
- 0.01029343530535698,
- -0.012608299031853676,
- 0.03791363909840584,
- 0.0682213231921196,
- -0.08057935535907745,
- -0.07831443846225739,
- 0.0018050121143460274,
- 0.000086195781477727,
- -0.02231610007584095,
- 0.006497679743915796,
- -0.06642580032348633,
- 0.07444853335618973,
- 0.0019791151862591505,
- 0.03819812089204788,
- 0.0779261365532875,
- -0.003851028624922037,
- 0.02346918173134327,
- 0.060527998954057693,
- -0.048928119242191315,
- -0.06562292575836182,
- -0.038772668689489365,
- -0.039175745099782944,
- -0.02878374047577381,
- -0.0574614591896534,
- 0.046126652508974075,
- -0.016956979408860207,
- -0.014717723242938519,
- 0.12203169614076614,
- 0.058216892182826996,
- 0.09071759134531021,
- 0.02996537648141384,
- 0.006214149296283722,
- 0.016720086336135864,
- -0.05501486361026764,
- -0.007271610200405121,
- 0.04534625634551048,
- -0.02820589207112789,
- -0.029385177418589592,
- -0.010440961457788944,
- -1.3088412131878613e-8,
- -0.048924293369054794,
- 0.010270350612699986,
- 0.11620014160871506,
- -0.0842791199684143,
- 0.012233897112309933,
- -0.05589761584997177,
- -0.00662756385281682,
- 0.0725170224905014,
- 0.021580668166279793,
- 0.04628956317901611,
- 0.06593681871891022,
- -0.0037888442166149616,
- -0.07271326333284378,
- 0.0569155290722847,
- -0.026589825749397278,
- 0.05068591982126236,
- 0.029434235766530037,
- 0.013111934065818787,
- 0.007181460037827492,
- -0.004824479576200247,
- 0.10674115270376205,
- 0.114744633436203,
- 0.03270329162478447,
- 0.021148458123207092,
- 0.08763759583234787,
- -0.015491790138185024,
- 0.020060021430253983,
- 0.08218838274478912,
- -0.0026207384653389454,
- 0.01937778852880001,
- -0.03382357582449913,
- 0.11020318418741226,
- 0.019826674833893776,
- -0.019989509135484695,
- 0.06483796238899231,
- 0.09751514345407486,
- 0.02121756598353386,
- 0.007326338905841112,
- -0.02139674499630928,
- 0.011486375704407692,
- -0.021058058366179466,
- 0.0649411529302597,
- -0.06213998794555664,
- -0.05664113536477089,
- -0.028469832614064217,
- -0.019989844411611557,
- 0.001966686686500907,
- -0.09193456918001175,
- 0.05555802583694458,
- -0.021071255207061768,
- -0.003175833262503147,
- 0.0510890856385231,
- 0.07000105828046799,
- 0.08141044527292252,
- 0.03620148450136185,
- 0.04611240327358246,
- 0.024224361404776573,
- -0.047702398151159286,
- -0.02823782153427601,
- 0.08124623447656631,
- -0.019053971394896507,
- 0.05752747505903244,
- -0.05563226714730263,
- -0.028476256877183914
- ]
- },
- {
- "keyword": "ai",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04613069072365761,
- -0.006090688984841108,
- 0.01629413664340973,
- 0.007450823672115803,
- 0.0016294271918013692,
- -0.021168561652302742,
- 0.09362143278121948,
- 0.020084863528609276,
- 0.026380300521850586,
- 0.01558938343077898,
- -0.019737431779503822,
- -0.040661994367837906,
- 0.024082044139504433,
- -0.036387741565704346,
- -0.05846237763762474,
- 0.05400771647691727,
- -0.01991884596645832,
- -0.016049791127443314,
- -0.12740458548069,
- -0.10103441029787064,
- -0.03438873216509819,
- 0.009892244823276997,
- -0.0233283881098032,
- -0.007016664370894432,
- -0.0403597392141819,
- 0.11962780356407166,
- 0.007297698874026537,
- -0.033183738589286804,
- 0.017666930332779884,
- -0.09415335953235626,
- -0.0014325975207611918,
- 0.0017492782790213823,
- 0.09664424508810043,
- -0.03150468319654465,
- -0.07146485149860382,
- 0.022293895483016968,
- -0.07149019837379456,
- -0.04577435553073883,
- 0.061687152832746506,
- -0.007530091796070337,
- -0.023142946884036064,
- -0.08676373958587646,
- 0.009507895447313786,
- -0.08199165761470795,
- 0.07124794274568558,
- 0.08009631931781769,
- -0.017127450555562973,
- 0.012660953216254711,
- 0.009185854345560074,
- 0.04294376075267792,
- -0.11935842782258987,
- 0.023578554391860962,
- -0.04313844069838524,
- 0.004243910312652588,
- 0.006895225029438734,
- 0.024401837959885597,
- 0.02825649455189705,
- 0.00427793525159359,
- 0.006707489490509033,
- -0.007916810922324657,
- 0.07812616974115372,
- -0.04964355006814003,
- 0.0218055322766304,
- 0.03248223289847374,
- 0.09270090609788895,
- 0.028767921030521393,
- -0.011370386928319931,
- -0.0016238996759057045,
- -0.03083719313144684,
- -0.037559814751148224,
- 0.05372465029358864,
- 0.07111333310604095,
- -0.03214949369430542,
- 0.021264825016260147,
- 0.05747653916478157,
- -0.02352055534720421,
- 0.02971768192946911,
- -0.0498846210539341,
- 0.13033953309059143,
- -0.034929800778627396,
- -0.004721350502222776,
- -0.008728605695068836,
- -0.04804674908518791,
- 0.05199432745575905,
- -0.0036447951570153236,
- 0.013737110421061516,
- 0.02072078362107277,
- -0.0030426925513893366,
- 0.06182466819882393,
- 0.04737823083996773,
- -0.04548163712024689,
- -0.0451386533677578,
- 0.08445898443460464,
- 0.006690718233585358,
- 0.040718525648117065,
- 0.07335690408945084,
- -0.011550110764801502,
- -0.10794335603713989,
- -0.07855544239282608,
- 0.2041883021593094,
- -0.028887184336781502,
- 0.029530268162488937,
- -0.06581426411867142,
- -0.00892973318696022,
- -0.028710082173347473,
- 0.021148914471268654,
- 0.028732892125844955,
- -0.022879747673869133,
- 0.051149144768714905,
- -0.009298375807702541,
- -0.036822348833084106,
- -0.0333755798637867,
- 0.02048652432858944,
- -0.00945521891117096,
- 0.04108777269721031,
- 0.027187401428818703,
- 0.0395735502243042,
- 0.10133226215839386,
- 0.04411673918366432,
- 0.011472546495497227,
- -0.0218046922236681,
- -0.008684484288096428,
- -0.012267876416444778,
- 0.10368666797876358,
- 0.05581685155630112,
- -0.03854763135313988,
- -0.03089066594839096,
- -5.0056270632317324e-33,
- -0.04501400142908096,
- -0.035949237644672394,
- 0.06861205399036407,
- 0.0026276397984474897,
- 0.01764693856239319,
- -0.025009477511048317,
- -0.0205678753554821,
- -0.015854598954319954,
- -0.045593664050102234,
- -0.015720967203378677,
- -0.10825888812541962,
- 0.01377056073397398,
- -0.08534528315067291,
- 0.03636911138892174,
- 0.13284170627593994,
- 0.023721231147646904,
- 0.020037317648530006,
- 0.020822813734412193,
- -0.07048224657773972,
- 0.0002926810411736369,
- 0.029486751183867455,
- -0.02191391959786415,
- -0.0033032181672751904,
- 0.009241611696779728,
- -0.014496596530079842,
- 0.020956115797162056,
- 0.018172327429056168,
- -0.04543787240982056,
- 0.039248548448085785,
- 0.008229372091591358,
- 0.0005707452073693275,
- 0.07112050801515579,
- -0.0508013479411602,
- 0.019296014681458473,
- -0.018514612689614296,
- -0.011198553256690502,
- -0.028095971792936325,
- -0.0212252214550972,
- 0.0017517133383080363,
- 0.07446634769439697,
- -0.023757239803671837,
- 0.025528473779559135,
- 0.00035779346944764256,
- 0.007904646918177605,
- -0.02571343258023262,
- -0.017186641693115234,
- 0.042769718915224075,
- -0.002543836133554578,
- 0.005433774087578058,
- -0.006877949461340904,
- -0.04431599751114845,
- 0.03290306776762009,
- 0.0017655749106779695,
- -0.047104787081480026,
- 0.05635598301887512,
- -0.016879525035619736,
- -0.02069525606930256,
- 0.03343493118882179,
- -0.025601621717214584,
- -0.0226137638092041,
- 0.033781152218580246,
- 0.07906073331832886,
- -0.022797536104917526,
- 0.1136300191283226,
- -0.018531301990151405,
- 0.03578135743737221,
- 0.027697529643774033,
- 0.02616789937019348,
- 0.11681657284498215,
- 0.012843810021877289,
- -0.05034788325428963,
- -0.033496662974357605,
- 0.041096147149801254,
- 0.025154326111078262,
- -0.058134663850069046,
- 0.0017737335292622447,
- -0.013613337650895119,
- -0.06945543736219406,
- -0.02427338995039463,
- -0.06555589288473129,
- -0.12441988289356232,
- -0.012146664783358574,
- -0.04450035095214844,
- -0.0025066982489079237,
- 0.040841180831193924,
- -0.0378575474023819,
- -0.0336955301463604,
- -0.040090858936309814,
- 0.018221206963062286,
- 0.008326562121510506,
- -0.07351656258106232,
- 0.021421654149889946,
- -0.023259975016117096,
- 0.0617414154112339,
- -0.08666324615478516,
- 4.3567064271198275e-33,
- -0.06118420511484146,
- -0.04015987738966942,
- -0.056702036410570145,
- 0.0916689932346344,
- 0.004454773850739002,
- -0.022092925384640694,
- -0.013298354111611843,
- -0.028229117393493652,
- 0.013605300337076187,
- 0.06074627861380577,
- -0.0547073595225811,
- -0.053967513144016266,
- 0.008635136298835278,
- 0.03895824775099754,
- 0.019680766388773918,
- -0.0017576705431565642,
- 0.011518026702105999,
- -0.055353134870529175,
- -0.020655857399106026,
- 0.03776082769036293,
- -0.03716977313160896,
- 0.017350105568766594,
- -0.036843445152044296,
- -0.08373541384935379,
- -0.022266659885644913,
- 0.0951533392071724,
- -0.01048966683447361,
- 0.07051945477724075,
- -0.015563691034913063,
- 0.019996920600533485,
- 0.0419573076069355,
- -0.05523277819156647,
- -0.04577881097793579,
- 0.03953155502676964,
- 0.0018833819776773453,
- 0.09967976808547974,
- 0.05409036576747894,
- -0.048651400953531265,
- -0.04397791251540184,
- 0.00511451018974185,
- 0.05524776875972748,
- -0.017390945926308632,
- -0.05664726719260216,
- 0.09582813084125519,
- -0.027630487456917763,
- 0.000801313144620508,
- -0.039004404097795486,
- 0.08500009775161743,
- 0.006112048868089914,
- -0.03150659799575806,
- -0.04720503091812134,
- 0.005704326555132866,
- -0.050876542925834656,
- -0.07944625616073608,
- -0.09649782627820969,
- 0.0007499553612433374,
- -0.017116446048021317,
- 0.01296685915440321,
- -0.012550747953355312,
- 0.04614149034023285,
- -0.017592240124940872,
- -0.010429083369672298,
- -0.015919245779514313,
- 0.03904381021857262,
- -0.08659634739160538,
- 0.05531353875994682,
- 0.02431494928896427,
- 0.029039354994893074,
- -0.0026445842813700438,
- -0.03955093398690224,
- 0.14240913093090057,
- 0.004936664365231991,
- -0.038035646080970764,
- 0.0859706923365593,
- -0.041190240532159805,
- -0.0003745044523384422,
- -0.1037425771355629,
- 0.02005278319120407,
- 0.0005910124746151268,
- -0.06346666812896729,
- -0.05313088744878769,
- -0.08967374265193939,
- -0.010729621164500713,
- 0.07811862230300903,
- -0.020479844883084297,
- 0.09177590161561966,
- 0.009882328100502491,
- -0.03714558109641075,
- -0.03486216068267822,
- 0.034572772681713104,
- 0.00687484722584486,
- 0.04972878843545914,
- -0.006327678449451923,
- 0.0011450647143647075,
- -0.1327773928642273,
- -1.2018166017924159e-8,
- -0.009034674614667892,
- -0.018630649894475937,
- 0.10053259879350662,
- 0.004349325783550739,
- 0.06287881731987,
- 0.02839607186615467,
- -0.05303334444761276,
- -0.00610991008579731,
- -0.006266640033572912,
- -0.01854071021080017,
- -0.006563429720699787,
- -0.02647293359041214,
- 0.08764994144439697,
- 0.027094509452581406,
- 0.08008279651403427,
- -0.013379828073084354,
- -0.03782989829778671,
- 0.03560561686754227,
- -0.015084387734532356,
- -0.018614698201417923,
- 0.10710325837135315,
- -0.01315619982779026,
- -0.04217592254281044,
- -0.004189137369394302,
- 0.010341913439333439,
- -0.061789851635694504,
- -0.01563650742173195,
- 0.03256654739379883,
- -0.05779057368636131,
- 0.10479456186294556,
- -0.010779853910207748,
- 0.10265092551708221,
- 0.04497067630290985,
- -0.012651952914893627,
- 0.0660339817404747,
- 0.05844451114535332,
- 0.018155783414840698,
- -0.045828379690647125,
- -0.04124293103814125,
- -0.01545826718211174,
- -0.0070280646905303,
- 0.09991560876369476,
- 0.009042415767908096,
- -0.08110470324754715,
- 0.10865921527147293,
- -0.000011540593732206617,
- 0.005040944088250399,
- -0.12895120680332184,
- 0.07566327601671219,
- -0.047844476997852325,
- -0.02000698819756508,
- -0.00834444910287857,
- 0.042051587253808975,
- 0.14007359743118286,
- 0.1075429767370224,
- -0.01852709986269474,
- 0.007108047138899565,
- -0.031980570405721664,
- -0.0316350981593132,
- 0.08785472065210342,
- 0.11937384307384491,
- 0.03955056145787239,
- 0.046943776309490204,
- -0.05588851869106293
- ]
- },
- {
- "keyword": "ml",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.026699403300881386,
- -0.023151850327849388,
- 0.00022410608653444797,
- 0.02713557705283165,
- -0.04861973598599434,
- -0.06901904940605164,
- 0.054037511348724365,
- 0.04610911011695862,
- 0.02244795486330986,
- -0.08354601263999939,
- 0.04570038616657257,
- -0.03592955693602562,
- 0.006157245486974716,
- -0.0686744749546051,
- -0.11877702921628952,
- 0.02731209620833397,
- 0.030868951231241226,
- 0.028939737007021904,
- -0.15472431480884552,
- -0.021998396143317223,
- -0.06309644877910614,
- -0.024859847500920296,
- -0.04457003250718117,
- 0.09253191947937012,
- 0.020483046770095825,
- 0.05276508629322052,
- 0.0170030165463686,
- -0.01007133536040783,
- 0.05958008021116257,
- -0.08617033809423447,
- 0.016177376732230186,
- -0.058871351182460785,
- 0.11586894094944,
- 0.0076528917998075485,
- -0.002438758034259081,
- -0.010117936879396439,
- -0.0131765715777874,
- -0.044522978365421295,
- -0.00946681760251522,
- 0.036019887775182724,
- -0.005762756336480379,
- -0.1031981110572815,
- 0.012689814902842045,
- -0.04618311673402786,
- -0.0018773009069263935,
- 0.030879000201821327,
- 0.0034093784634023905,
- 0.023065906018018723,
- 0.0183322262018919,
- 0.10796615481376648,
- -0.045358866453170776,
- -0.015513363294303417,
- -0.12939396500587463,
- 0.013085849583148956,
- 0.005827067419886589,
- -0.08405496925115585,
- -0.02322968654334545,
- 0.0318053774535656,
- -0.002984660444781184,
- 0.02956448867917061,
- -0.060207873582839966,
- 0.01701437681913376,
- -0.10003860294818878,
- 0.04982427507638931,
- 0.03400520980358124,
- -0.032943323254585266,
- -0.0350784994661808,
- -0.05508359149098396,
- -0.004985098727047443,
- 0.0319983996450901,
- 0.02757617086172104,
- 0.03486195579171181,
- -0.011538469232618809,
- 0.03847876563668251,
- 0.005831661634147167,
- -0.0006521283066831529,
- 0.027297401800751686,
- -0.07647520303726196,
- 0.06776811182498932,
- 0.03753412887454033,
- -0.019001055508852005,
- 0.0677977129817009,
- -0.03588631749153137,
- 0.022746000438928604,
- 0.017264297232031822,
- -0.06976795941591263,
- 0.021098971366882324,
- 0.13051973283290863,
- 0.08301790058612823,
- -0.03568396344780922,
- 0.0033070866484194994,
- 0.004507201258093119,
- -0.09844653308391571,
- 0.04303126409649849,
- -0.06338390707969666,
- 0.07094793766736984,
- 0.022555746138095856,
- -0.045430514961481094,
- -0.00033415519283153117,
- 0.24321970343589783,
- -0.06036593019962311,
- 0.10412244498729706,
- -0.05835102126002312,
- -0.020133769139647484,
- -0.022911768406629562,
- -0.03266003727912903,
- 0.031069977208971977,
- 0.06793248653411865,
- 0.04137935861945152,
- 0.0036916269455105066,
- 0.042351722717285156,
- -0.08712169528007507,
- -0.001564508187584579,
- 0.0050194719806313515,
- 0.021738480776548386,
- -0.08211475610733032,
- 0.04520536586642265,
- -0.08082395792007446,
- 0.00968505721539259,
- 0.01826593279838562,
- 0.013459423556923866,
- 0.016207655891776085,
- 0.0005776353646069765,
- -0.0652565285563469,
- -0.11155202984809875,
- -0.025707000866532326,
- -0.018498772755265236,
- -3.8433621666439805e-33,
- -0.05596596375107765,
- -0.01589822582900524,
- 0.05694487318396568,
- 0.052246108651161194,
- -0.018047669902443886,
- 0.04882920905947685,
- 0.022069331258535385,
- -0.04314623400568962,
- 0.03891048952937126,
- 0.03881374001502991,
- -0.06539881229400635,
- 0.0055993907153606415,
- -0.02693859674036503,
- -0.01551916915923357,
- 0.020504748448729515,
- -0.00748973386362195,
- 0.09081559628248215,
- 0.005425377748906612,
- -0.030410252511501312,
- -0.03801076486706734,
- -0.03685987368226051,
- 0.017236605286598206,
- 0.044751640409231186,
- 0.0033168301451951265,
- -0.01953878626227379,
- 0.01894966885447502,
- -0.01725134626030922,
- -0.020727915689349174,
- 0.06264019012451172,
- 0.025932341814041138,
- 0.00545539753511548,
- -0.013851987197995186,
- -0.03229527175426483,
- -0.06498555094003677,
- -0.012011590413749218,
- 0.02557481825351715,
- 0.013342669233679771,
- -0.06688950955867767,
- 0.05900781601667404,
- 0.014814579859375954,
- -0.04891975596547127,
- 0.03264612331986427,
- 0.0927477777004242,
- 0.004172372166067362,
- -0.06337539851665497,
- 0.08034341782331467,
- -0.003915486857295036,
- -0.06258275359869003,
- 0.0637533962726593,
- -0.06518898904323578,
- -0.05748637765645981,
- -0.04800618812441826,
- -0.05613252893090248,
- -0.021058320999145508,
- 0.013320927508175373,
- 0.005566691048443317,
- -0.02967662550508976,
- 0.08359486609697342,
- -0.0013959391508251429,
- -0.004380885045975447,
- -0.01225785817950964,
- 0.037754084914922714,
- 0.09385151416063309,
- 0.09375520050525665,
- 0.02860214002430439,
- -0.0465126670897007,
- 0.0017499165842309594,
- 0.03449053689837456,
- 0.029122717678546906,
- -0.02978520095348358,
- -0.034086909145116806,
- 0.04146460443735123,
- 0.041664764285087585,
- -0.040391113609075546,
- -0.02918587066233158,
- -0.03854063153266907,
- 0.03741047531366348,
- 0.004419531207531691,
- 0.03691438212990761,
- 0.02769581414759159,
- -0.027776775881648064,
- 0.017355799674987793,
- -0.03594353422522545,
- -0.011733917519450188,
- 0.01456802524626255,
- 0.0007331130909733474,
- -0.011993135325610638,
- -0.023791009560227394,
- -0.0055137514136731625,
- -0.03104480542242527,
- -0.09798117727041245,
- 0.013178613968193531,
- -0.03823738917708397,
- -0.01481802761554718,
- -0.07952197641134262,
- 2.4985413443345964e-33,
- -0.07380696386098862,
- 0.031316544860601425,
- 0.012087619863450527,
- 0.13245750963687897,
- 0.012699958868324757,
- 0.02824382483959198,
- 0.031237738206982613,
- 0.08938174694776535,
- -0.032235514372587204,
- 0.10826292634010315,
- 0.01265265978872776,
- -0.038578640669584274,
- -0.02332071028649807,
- 0.021978477016091347,
- -0.011537120677530766,
- 0.025854086503386497,
- 0.03174813464283943,
- -0.023800615221261978,
- -0.0031218677759170532,
- -0.03600296005606651,
- -0.060699671506881714,
- 0.03874354809522629,
- 0.0075828698463737965,
- 0.03881440684199333,
- 0.01912858709692955,
- 0.046698614954948425,
- -0.03726807236671448,
- 0.039845533668994904,
- -0.05703973397612572,
- -0.0004363108309917152,
- 0.031571630388498306,
- -0.04342155158519745,
- 0.0624883733689785,
- 0.022190259769558907,
- -0.01685812510550022,
- 0.06666810065507889,
- 0.13940352201461792,
- 0.023731835186481476,
- -0.004423239268362522,
- 0.05793270096182823,
- 0.0737546905875206,
- -0.04556747153401375,
- 0.05868355929851532,
- 0.033598512411117554,
- 0.020629441365599632,
- -0.01025797612965107,
- 0.0411643385887146,
- -0.10023915767669678,
- 0.11027999222278595,
- -0.02206946164369583,
- -0.03829753398895264,
- -0.02123943716287613,
- -0.05318587273359299,
- 0.05383983254432678,
- -0.046296097338199615,
- -0.02519124373793602,
- -0.0450463630259037,
- 0.05130448192358017,
- 0.0002604768087621778,
- 0.008858159184455872,
- -0.02088388055562973,
- -0.02663770318031311,
- -0.015423002652823925,
- 0.03538672253489494,
- -0.07958324253559113,
- 0.06409042328596115,
- 0.0015602255007252097,
- 0.03353141248226166,
- -0.06977076828479767,
- 0.057741668075323105,
- 0.06587156653404236,
- 0.015045207925140858,
- 0.0766606554389,
- 0.006604955997318029,
- -0.09515032172203064,
- -0.053878236562013626,
- 0.017722351476550102,
- -0.01862143725156784,
- -0.008944003842771053,
- -0.044111013412475586,
- 0.01853276416659355,
- -0.09711067378520966,
- -0.000018657627151696943,
- 0.04509856551885605,
- 0.05471425876021385,
- -0.09982594102621078,
- 0.13199613988399506,
- 0.024543022736907005,
- -0.09941624850034714,
- -0.01084341574460268,
- -0.040039241313934326,
- 0.01490489486604929,
- -0.00405947444960475,
- -0.05425066500902176,
- 0.0013721813447773457,
- -1.2123591019985724e-8,
- -0.021033305674791336,
- -0.013711193576455116,
- 0.03455713018774986,
- 0.021865161135792732,
- 0.09012497961521149,
- 0.05216948688030243,
- -0.11147240549325943,
- -0.012183218263089657,
- -0.0012872612569481134,
- 0.06721233576536179,
- 0.07654814422130585,
- -0.08829444646835327,
- -0.0810370221734047,
- 0.01757105253636837,
- 0.0014825802063569427,
- 0.0011074061039835215,
- -0.04620721563696861,
- 0.00155795703176409,
- -0.004281680565327406,
- -0.019371941685676575,
- 0.012165438383817673,
- 0.03652355819940567,
- 0.02364257164299488,
- -0.05833007022738457,
- 0.028943385928869247,
- -0.027585182338953018,
- -0.006628787145018578,
- 0.12182009220123291,
- -0.027171360328793526,
- -0.04919680580496788,
- -0.019229965284466743,
- 0.06439681351184845,
- -0.02519962005317211,
- -0.001549019361846149,
- -0.05836338922381401,
- 0.015298130922019482,
- -0.05381698161363602,
- 0.010350056923925877,
- 0.010598941706120968,
- 0.022277912124991417,
- -0.04079509899020195,
- -0.060939714312553406,
- -0.011551999486982822,
- -0.0652230754494667,
- 0.0231428574770689,
- 0.06211364269256592,
- -0.03340849652886391,
- -0.006229621823877096,
- -0.06191851198673248,
- -0.0091554569080472,
- 0.002526867436245084,
- 0.03144550323486328,
- 0.13612109422683716,
- 0.05958425626158714,
- 0.05032588914036751,
- -0.049380771815776825,
- 0.012777396477758884,
- 0.05111349746584892,
- -0.08323395252227783,
- 0.014810717664659023,
- 0.09112429618835449,
- -0.03188164532184601,
- 0.028754550963640213,
- -0.055278532207012177
- ]
- },
- {
- "keyword": "data science",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03870508074760437,
- -0.025513213127851486,
- -0.02688162960112095,
- 0.009014851413667202,
- -0.03872174769639969,
- -0.09400100260972977,
- 0.02783249318599701,
- -0.014906386844813824,
- -0.043085597455501556,
- 0.038566458970308304,
- -0.026163825765252113,
- 0.002318346407264471,
- 0.03682103380560875,
- -0.04746662452816963,
- -0.048898208886384964,
- 0.05337775498628616,
- -0.03415843844413757,
- -0.030460547655820847,
- -0.06960760056972504,
- -0.1163971945643425,
- -0.03469720482826233,
- 0.0009996711742132902,
- -0.08682418614625931,
- 0.02303842268884182,
- 0.04562169685959816,
- 0.08572109788656235,
- 0.05596848204731941,
- 0.04684646800160408,
- -0.015445206314325333,
- -0.07238776981830597,
- -0.030251000076532364,
- 0.060663193464279175,
- 0.04764750599861145,
- 0.03085711970925331,
- -0.08566752076148987,
- 0.02188057266175747,
- 0.03246303275227547,
- 0.04031708836555481,
- 0.04486537724733353,
- 0.03292142227292061,
- -0.05660798400640488,
- -0.015848034992814064,
- 0.004689090885221958,
- -0.00922446046024561,
- -0.02948329970240593,
- 0.03858714923262596,
- -0.03920013830065727,
- -0.06129735708236694,
- -0.03289443626999855,
- 0.048413198441267014,
- -0.05499853566288948,
- 0.024275032803416252,
- -0.06275226920843124,
- 0.014697697944939137,
- -0.012437688186764717,
- 0.006841816008090973,
- 0.04945167526602745,
- -0.00605779979377985,
- -0.023128695785999298,
- 0.04697937145829201,
- 0.008786560036242008,
- -0.02137439325451851,
- -0.046157289296388626,
- 0.02731834538280964,
- 0.138257697224617,
- -0.017138425260782242,
- 0.0003596452879719436,
- 0.07716993987560272,
- -0.005534205120056868,
- -0.08395596593618393,
- -0.010454815812408924,
- 0.05717139318585396,
- -0.09555629640817642,
- 0.10777734220027924,
- 0.06864217668771744,
- -0.018933910876512527,
- 0.016667524352669716,
- 0.022355323657393456,
- 0.13430443406105042,
- -0.0653914138674736,
- -0.004343298263847828,
- -0.013558050617575645,
- -0.043533727526664734,
- 0.05950320139527321,
- 0.02642643079161644,
- 0.002590036718174815,
- -0.0008170695509761572,
- -0.0358557254076004,
- -0.06629517674446106,
- -0.010283369570970535,
- 0.07230132073163986,
- 0.038148749619722366,
- 0.05588890612125397,
- 0.0402337871491909,
- -0.08092427998781204,
- 0.0169637743383646,
- -0.010629450902342796,
- -0.06426946073770523,
- 0.07699209451675415,
- 0.16505496203899384,
- -0.07547660917043686,
- 0.00859538558870554,
- -0.0227435864508152,
- 0.04879430681467056,
- -0.006933255586773157,
- -0.08328033983707428,
- 0.0842021033167839,
- -0.05266110599040985,
- 0.03770129755139351,
- 0.010387426242232323,
- -0.03600620478391647,
- 0.024689091369509697,
- -0.04640340059995651,
- -0.010705705732107162,
- -0.035127878189086914,
- -0.03576323762536049,
- -0.04181855544447899,
- 0.017093366011977196,
- -0.013513659127056599,
- -0.011426876299083233,
- -0.05527006462216377,
- -0.007991400547325611,
- -0.05780655890703201,
- -0.030895188450813293,
- -0.026435749605298042,
- -0.06332393735647202,
- -0.10895759612321854,
- -1.255452303084685e-33,
- -0.050198934972286224,
- -0.04293020814657211,
- 0.028794577345252037,
- 0.0068152910098433495,
- 0.01960458792746067,
- -0.08119995892047882,
- -0.054346963763237,
- -0.07754460722208023,
- 0.001577896997332573,
- 0.07621324807405472,
- -0.004422655329108238,
- 0.09794916957616806,
- -0.029972253367304802,
- 0.001188304740935564,
- 0.1202077642083168,
- -0.0036354928743094206,
- 0.008278559893369675,
- 0.10154744237661362,
- -0.010091951116919518,
- -0.0200179573148489,
- 0.0018387488089501858,
- -0.0496203750371933,
- 0.0565234012901783,
- 0.008901131339371204,
- 0.057394154369831085,
- 0.006218750961124897,
- -0.028832411393523216,
- -0.00696588633581996,
- 0.09743843972682953,
- 0.009428841061890125,
- 0.0019804490730166435,
- -0.0003466122434474528,
- 0.0002707727253437042,
- -0.034558989107608795,
- 0.07233642041683197,
- -0.008282589726150036,
- -0.0027635875158011913,
- -0.03830036520957947,
- 0.034286681562662125,
- -0.019225414842367172,
- -0.04740002378821373,
- 0.030891841277480125,
- 0.00958671048283577,
- -0.01043557096272707,
- 0.0066948868334293365,
- 0.026358429342508316,
- 0.05709401145577431,
- -0.052200961858034134,
- 0.07095829397439957,
- -0.03347562626004219,
- 0.0018456149846315384,
- -0.0752539113163948,
- 0.030695265159010887,
- 0.04701117426156998,
- 0.026806674897670746,
- 0.06845898926258087,
- 0.026590177789330482,
- -0.08308582752943039,
- 0.00719886040315032,
- 0.03654363751411438,
- -0.05322315916419029,
- 0.05807247385382652,
- 0.04936721548438072,
- -0.018424224108457565,
- -0.04954947531223297,
- 0.006258390378206968,
- -0.041009511798620224,
- -0.00975731573998928,
- 0.17483624815940857,
- -0.045437198132276535,
- -0.04607142508029938,
- 0.014959849417209625,
- 0.011078921146690845,
- -0.04895536229014397,
- -0.002122441539540887,
- -0.03130978345870972,
- 0.0020387477707117796,
- -0.0419156588613987,
- -0.02576669119298458,
- 0.013282466679811478,
- -0.09738759696483612,
- -0.07125937938690186,
- 0.020472418516874313,
- -0.0434081107378006,
- 0.00737893907353282,
- 0.025738785043358803,
- 0.012813137844204903,
- -0.04979380965232849,
- -0.08123458921909332,
- 0.0038247713819146156,
- -0.04443905130028725,
- 0.029243482276797295,
- -0.02277221903204918,
- 0.02049039863049984,
- 0.02120332419872284,
- 6.916933628305999e-35,
- -0.05208750069141388,
- 0.020708439871668816,
- -0.004795385990291834,
- 0.10766814649105072,
- 0.06502039730548859,
- 0.03474489226937294,
- 0.007603115402162075,
- -0.06629634648561478,
- 0.053976722061634064,
- 0.07365983724594116,
- -0.01444482896476984,
- -0.02269124984741211,
- 0.04679108038544655,
- 0.011668462306261063,
- -0.003847589949145913,
- 0.013199069537222385,
- 0.012407045811414719,
- -0.09927152842283249,
- -0.08312239497900009,
- 0.07817771285772324,
- 0.015446516685187817,
- 0.06350543349981308,
- -0.07901814579963684,
- -0.0915868803858757,
- 0.025449350476264954,
- -0.01759086549282074,
- 0.010155956260859966,
- -0.045400142669677734,
- 0.0009097627480514348,
- -0.013869076035916805,
- 0.00711563415825367,
- -0.04988756403326988,
- 0.02198169194161892,
- -0.03014683537185192,
- -0.022046728059649467,
- -0.02780388481914997,
- 0.08473984152078629,
- -0.005117105320096016,
- 0.008624725043773651,
- 0.05566054582595825,
- 0.051181718707084656,
- 0.07228539884090424,
- -0.025829164311289787,
- 0.053307827562093735,
- 0.022098828107118607,
- -0.06382743269205093,
- -0.017535293474793434,
- 0.14006707072257996,
- 0.0447765477001667,
- -0.050522368401288986,
- -0.0010324694449082017,
- 0.024309687316417694,
- 0.02776336669921875,
- -0.006156142335385084,
- 0.07600010931491852,
- 0.014737578108906746,
- 0.022211959585547447,
- -0.016984745860099792,
- -0.059150829911231995,
- 0.07746496796607971,
- -0.06124340742826462,
- -0.021543893963098526,
- 0.057927995920181274,
- 0.07164932787418365,
- -0.057850562036037445,
- -0.03522627055644989,
- -0.03598898649215698,
- -0.012580566108226776,
- -0.021059783175587654,
- -0.05277331918478012,
- 0.11565907299518585,
- 0.08080413192510605,
- -0.011268414556980133,
- 0.007302653044462204,
- -0.02159419097006321,
- -0.023134859278798103,
- -0.0891505628824234,
- 0.019433096051216125,
- -0.038155749440193176,
- 0.0622333399951458,
- 0.017144162207841873,
- -0.042109113186597824,
- -0.008137650787830353,
- 0.09131887555122375,
- -0.004544172435998917,
- 0.1219702735543251,
- 0.11027224361896515,
- -0.04595670849084854,
- -0.03672773763537407,
- -0.10587751120328903,
- -0.13186639547348022,
- -0.04565023258328438,
- -0.08727294206619263,
- 0.03349728509783745,
- -0.00019486533710733056,
- -1.4309361695552525e-8,
- 0.005670327227562666,
- -0.11308323591947556,
- 0.08169437199831009,
- -0.040025096386671066,
- 0.0448482483625412,
- 0.041991882026195526,
- -0.06484998017549515,
- 0.057427778840065,
- -0.03276288881897926,
- 0.05475281924009323,
- 0.07655006647109985,
- 0.04634476453065872,
- -0.07537146657705307,
- 0.005435161758214235,
- 0.04972412809729576,
- -0.011507843621075153,
- 0.06161829084157944,
- -0.058992817997932434,
- -0.019463179633021355,
- 0.05959247052669525,
- 0.001779056154191494,
- 0.06550312787294388,
- -0.06957734376192093,
- 0.04463747888803482,
- 0.06117510423064232,
- -0.037207867950201035,
- 0.03262213245034218,
- 0.0699334591627121,
- -0.025452226400375366,
- 0.01759667508304119,
- 0.01778990775346756,
- -0.05709153413772583,
- 0.05594684183597565,
- -0.02600441686809063,
- 0.08265950530767441,
- 0.006479365285485983,
- 0.042687322944402695,
- -0.00000949674540606793,
- -0.04798302426934242,
- -0.026855647563934326,
- -0.03274635225534439,
- 0.08947349339723587,
- -0.0665581077337265,
- 0.015630699694156647,
- 0.012468094937503338,
- 0.0529940091073513,
- -0.002841732930392027,
- 0.01674642041325569,
- 0.03288581967353821,
- 0.020907865837216377,
- -0.03582708165049553,
- -0.025898274034261703,
- -0.023455016314983368,
- 0.02081272192299366,
- 0.04721897467970848,
- 0.0641712099313736,
- -0.03429453819990158,
- 0.020716790109872818,
- -0.03599413111805916,
- 0.07050900906324387,
- 0.07861492782831192,
- 0.013725636526942253,
- -0.014522573910653591,
- -0.001867951825261116
- ]
- },
- {
- "keyword": "analytics",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.020344136282801628,
- 0.0072191013023257256,
- -0.10664315521717072,
- 0.06252224743366241,
- 0.02746264636516571,
- 0.017971374094486237,
- 0.1084902435541153,
- 0.0006623805966228247,
- 0.032906271517276764,
- 0.02211390994489193,
- 0.010127952322363853,
- -0.005136088468134403,
- 0.052857037633657455,
- 0.024699309840798378,
- -0.08267182856798172,
- 0.027463210746645927,
- 0.01824237033724785,
- -0.012203085236251354,
- -0.09148675203323364,
- -0.13076971471309662,
- -0.09302730113267899,
- -0.031093841418623924,
- 0.007649969309568405,
- -0.0019398574950173497,
- 0.040151141583919525,
- 0.03696931526064873,
- -0.05244515836238861,
- 0.018276337534189224,
- -0.005501005332916975,
- -0.09750615060329437,
- -0.029150208458304405,
- 0.04534808546304703,
- 0.04690520092844963,
- 0.027912287041544914,
- -0.10685014724731445,
- -0.05230407044291496,
- 0.004731837660074234,
- 0.03160878270864487,
- 0.05239849537611008,
- -0.026347460225224495,
- -0.06763332337141037,
- -0.04250147566199303,
- 0.04034644365310669,
- 0.046773772686719894,
- 0.004535267595201731,
- 0.002285583643242717,
- -0.06040164828300476,
- -0.000460567360278219,
- -0.03219348564743996,
- 0.09840702265501022,
- -0.09149876981973648,
- 0.004350713919848204,
- -0.04069982469081879,
- -0.013267130590975285,
- 0.07316552102565765,
- 0.04028002545237541,
- -0.06930875033140182,
- -0.07221182435750961,
- -0.006655772216618061,
- 0.028967291116714478,
- 0.02949429489672184,
- -0.04022187367081642,
- -0.04989631474018097,
- 0.04672637954354286,
- 0.023245852440595627,
- 0.009190862067043781,
- -0.004883366636931896,
- 0.08700740337371826,
- -0.06635753065347672,
- -0.016770849004387856,
- -0.03780624642968178,
- -0.021741874516010284,
- -0.044583868235349655,
- -0.014447319321334362,
- 0.06500156223773956,
- -0.03365885838866234,
- -0.015721315518021584,
- 0.03618885204195976,
- 0.12070704251527786,
- -0.08539756387472153,
- 0.024816684424877167,
- 0.00032517575891688466,
- -0.04486788064241409,
- 0.09225795418024063,
- 0.11305128782987595,
- -0.0448283925652504,
- 0.05529935285449028,
- 0.026019146665930748,
- -0.0414917953312397,
- -0.032919783145189285,
- -0.02232397347688675,
- 0.048503730446100235,
- 0.046674177050590515,
- 0.017481954768300056,
- -0.061203181743621826,
- 0.02159479260444641,
- -0.05367160588502884,
- -0.11142756789922714,
- 0.0918472558259964,
- 0.21080179512500763,
- 0.000782992981839925,
- 0.055225539952516556,
- -0.016993632540106773,
- 0.005284944549202919,
- -0.0733102336525917,
- -0.05798320472240448,
- 0.00802068505436182,
- 0.09711677581071854,
- -0.05057539418339729,
- 0.06755944341421127,
- -0.01727447099983692,
- -0.013794501312077045,
- -0.006581015419214964,
- -0.003708574688062072,
- 0.0715055912733078,
- -0.021635660901665688,
- -0.022901618853211403,
- 0.06387557089328766,
- 0.008109728805720806,
- 0.08294004201889038,
- 0.012209831736981869,
- 0.03455794230103493,
- 0.02266640216112137,
- 0.020889753475785255,
- 0.032529253512620926,
- 0.04761805757880211,
- -0.025673162192106247,
- -4.712104287121484e-33,
- 0.016598660498857498,
- -0.06629134714603424,
- -0.011634430848062038,
- 0.03292537480592728,
- -0.04334540292620659,
- 0.026911847293376923,
- -0.09886006265878677,
- -0.023599864915013313,
- -0.030116954818367958,
- 0.05226679518818855,
- 0.00020113145001232624,
- 0.11726461350917816,
- -0.034323904663324356,
- 0.044281475245952606,
- 0.14167539775371552,
- 0.021324539557099342,
- 0.01733195222914219,
- 0.15002936124801636,
- -0.04423542693257332,
- -0.033722713589668274,
- -0.0015445542521774769,
- -0.05176399275660515,
- 0.03797949478030205,
- 0.054938238114118576,
- 0.08341055363416672,
- 0.008656873367726803,
- -0.0064371987245976925,
- 0.00781926978379488,
- -0.0289536714553833,
- 0.016307814046740532,
- 0.08862244337797165,
- 0.011789582669734955,
- -0.06399498879909515,
- -0.022047873586416245,
- -0.005155669059604406,
- -0.06781826168298721,
- 0.015378257259726524,
- -0.016396639868617058,
- 0.023394428193569183,
- 0.017197558656334877,
- -0.0639856606721878,
- -0.011617181822657585,
- -0.03595847263932228,
- -0.025357561185956,
- -0.1162729412317276,
- 0.047558147460222244,
- 0.009080976247787476,
- -0.019559361040592194,
- 0.03181281313300133,
- 0.016988566145300865,
- -0.03914142772555351,
- -0.04056522995233536,
- 0.0628301277756691,
- 0.026633763685822487,
- 0.008045525290071964,
- 0.08492057025432587,
- 0.0016148232389241457,
- -0.05662787705659866,
- -0.007049919106066227,
- -0.01305372454226017,
- -0.023337624967098236,
- 0.057370323687791824,
- -0.04570235311985016,
- -0.07618936896324158,
- 0.03147784620523453,
- 0.028706811368465424,
- 0.014935462735593319,
- 0.041552767157554626,
- 0.04713040962815285,
- 0.06106603518128395,
- -0.015368528664112091,
- -0.04243380203843117,
- 0.057872310280799866,
- 0.02340538427233696,
- 0.0013367352075874805,
- -0.005264533683657646,
- 0.017785949632525444,
- 0.07916480302810669,
- -0.04955194517970085,
- -0.01613427884876728,
- -0.07576680183410645,
- -0.0997905358672142,
- 0.0014527305029332638,
- -0.07733572274446487,
- -0.00665658712387085,
- 0.010518043301999569,
- 0.036064304411411285,
- -0.00043681252282112837,
- -0.02507106401026249,
- 0.03646945580840111,
- -0.09212572872638702,
- 0.03213680908083916,
- -0.056702710688114166,
- 0.029916567727923393,
- -0.06802009791135788,
- 2.778198613563919e-33,
- -0.1290992647409439,
- 0.0502224825322628,
- 0.02566663920879364,
- 0.062377072870731354,
- 0.022521942853927612,
- -0.019692888483405113,
- 0.011094233952462673,
- -0.052195582538843155,
- 0.08257874846458435,
- 0.013160452246665955,
- -0.027356524020433426,
- -0.023411830887198448,
- -0.033020440489053726,
- 0.023100432008504868,
- -0.0170449186116457,
- 0.000907497014850378,
- 0.044928260147571564,
- -0.10029871761798859,
- -0.06707728654146194,
- 0.041456904262304306,
- -0.08744366466999054,
- -0.03639651834964752,
- -0.05705367028713226,
- -0.10692927986383438,
- -0.032548341900110245,
- 0.06867094337940216,
- -0.008601858280599117,
- -0.08424510806798935,
- -0.01912582665681839,
- -0.025665009394288063,
- -0.004416046664118767,
- -0.09468232840299606,
- -0.014744850806891918,
- 0.027949243783950806,
- -0.039397742599248886,
- 0.01171492412686348,
- 0.082085981965065,
- 0.023619946092367172,
- -0.0351884700357914,
- 0.032673075795173645,
- 0.03800666332244873,
- 0.027399858459830284,
- -0.005405097268521786,
- 0.0487012155354023,
- -0.005506294779479504,
- 0.11247982084751129,
- -0.0058873179368674755,
- 0.11939896643161774,
- -0.016116956248879433,
- -0.02867627702653408,
- -0.08112984895706177,
- 0.10202203691005707,
- 0.01885921135544777,
- -0.028514495119452477,
- -0.03940674290060997,
- -0.002111822599545121,
- 0.06358099728822708,
- -0.05386263132095337,
- -0.07260255515575409,
- 0.07278404384851456,
- 0.02514316886663437,
- -0.05023061856627464,
- -0.0775284543633461,
- 0.04996000602841377,
- -0.016703274101018906,
- -0.01073696743696928,
- 0.003035886911675334,
- -0.08913867175579071,
- -0.029696663841605186,
- -0.017206136137247086,
- 0.0727231502532959,
- 0.009698092937469482,
- -0.017868656665086746,
- -0.051478806883096695,
- -0.022695986554026604,
- 0.009990248829126358,
- -0.09364611655473709,
- 0.003743358887732029,
- -0.03100554831326008,
- -0.017712125554680824,
- -0.003115033032372594,
- -0.02370092272758484,
- 0.019169677048921585,
- -0.04646321386098862,
- 0.004677724093198776,
- -0.008534181863069534,
- 0.027235135436058044,
- 0.0026720641180872917,
- -0.006529828999191523,
- -0.030901895835995674,
- -0.0969962328672409,
- 0.013868872076272964,
- -0.08836033940315247,
- -0.04608132690191269,
- -0.003693739417940378,
- -1.2546452765604954e-8,
- -0.0183184202760458,
- -0.01609584502875805,
- 0.06829933822154999,
- 0.038912419229745865,
- 0.09191963821649551,
- -0.0021721997763961554,
- -0.010738135315477848,
- 0.10923364758491516,
- 0.010366600006818771,
- 0.06750059127807617,
- 0.03563492372632027,
- 0.004162230994552374,
- -0.08350308984518051,
- 0.025844234973192215,
- -0.018520884215831757,
- -0.03455821052193642,
- -0.029479941353201866,
- -0.0033002865966409445,
- -0.003302018390968442,
- -0.0034148264676332474,
- 0.01819010078907013,
- 0.04807303473353386,
- -0.02903386391699314,
- 0.02135591022670269,
- 0.04941127821803093,
- -0.02814302034676075,
- 0.0100968973711133,
- 0.04381519928574562,
- 0.043918315321207047,
- -0.0079287588596344,
- 0.026643475517630577,
- 0.03212776407599449,
- 0.0711270421743393,
- -0.06377378106117249,
- 0.012147566303610802,
- -0.011607559397816658,
- -0.006212491542100906,
- 0.01601329818367958,
- -0.02355342172086239,
- -0.047195617109537125,
- -0.013020039536058903,
- 0.046998340636491776,
- -0.007123699877411127,
- 0.06139497458934784,
- -0.013328754343092442,
- 0.023990903049707413,
- -0.019151978194713593,
- -0.05188353732228279,
- 0.052472759038209915,
- -0.06262334436178207,
- 0.05603349581360817,
- -0.09155762195587158,
- 0.05141987279057503,
- 0.0703747496008873,
- 0.016020098701119423,
- 0.044589798897504807,
- 0.02866164594888687,
- -0.01701129972934723,
- 0.0055622230283916,
- 0.05402979254722595,
- 0.10191916674375534,
- -0.017117571085691452,
- -0.015547641552984715,
- -0.035122621804475784
- ]
- },
- {
- "keyword": "big data",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.040423683822155,
- 0.08263363689184189,
- -0.003361339448019862,
- -0.017089519649744034,
- -0.020701058208942413,
- 0.000023302860427065752,
- 0.011547147296369076,
- 0.01935380883514881,
- -0.033949028700590134,
- 0.06748872995376587,
- 0.005577269941568375,
- 0.0470062792301178,
- -0.022254211828112602,
- -0.06247725710272789,
- -0.09401732683181763,
- 0.06210250407457352,
- 0.016460606828331947,
- -0.0593559630215168,
- -0.12531745433807373,
- -0.14795278012752533,
- -0.020310694351792336,
- -0.018857860937714577,
- -0.056314289569854736,
- 0.007476344704627991,
- -0.03413594514131546,
- 0.052693139761686325,
- 0.021050050854682922,
- -0.007480950094759464,
- 0.052858006209135056,
- -0.09537475556135178,
- -0.0489763543009758,
- 0.030016465112566948,
- 0.0921269953250885,
- -0.0010228267638012767,
- -0.0528656542301178,
- 0.022872338071465492,
- -0.005889682564884424,
- 0.057912830263376236,
- -0.014977415092289448,
- -0.01588154025375843,
- 0.055087506771087646,
- -0.03464992344379425,
- 0.013825369998812675,
- -0.014036905020475388,
- 0.004764662589877844,
- 0.034833844751119614,
- 0.0074311899952590466,
- 0.00036797107895836234,
- -0.01329443696886301,
- 0.08190891146659851,
- -0.1509128361940384,
- -0.023249177262187004,
- -0.06593430042266846,
- 0.05883287638425827,
- 0.07557834684848785,
- -0.04550808668136597,
- -0.05292057245969772,
- -0.006629870738834143,
- -0.01856403239071369,
- 0.02735746279358864,
- -0.0051954565569758415,
- -0.015263047069311142,
- 0.002059380756691098,
- 0.04705643281340599,
- 0.08137663453817368,
- 0.050882671028375626,
- 0.03372307866811752,
- 0.07531450688838959,
- 0.018164334818720818,
- -0.1277502179145813,
- 0.02006143145263195,
- 0.01358641404658556,
- -0.03221012279391289,
- 0.04874052479863167,
- 0.05959521234035492,
- -0.04479433223605156,
- -0.01903621479868889,
- 0.00948975421488285,
- 0.12986186146736145,
- -0.016535332426428795,
- -0.0361337885260582,
- -0.007292269263416529,
- -0.03921152651309967,
- 0.056785497814416885,
- 0.04696893319487572,
- -0.04901620000600815,
- 0.002167257247492671,
- 0.029111864045262337,
- -0.07537912577390671,
- -0.07634333521127701,
- -0.011349966749548912,
- -0.00427667610347271,
- 0.03820721432566643,
- 0.03237723186612129,
- -0.08304757624864578,
- 0.053070228546857834,
- -0.041079211980104446,
- -0.10031210631132126,
- 0.10499072074890137,
- 0.11183487623929977,
- -0.0044935476034879684,
- 0.014236794784665108,
- -0.02081606723368168,
- 0.08106836676597595,
- -0.048043813556432724,
- -0.09740662574768066,
- 0.029500853270292282,
- 0.04451943188905716,
- 0.03472978249192238,
- -0.05236911401152611,
- -0.053451843559741974,
- 0.037967514246702194,
- -0.02508772537112236,
- 0.005488323047757149,
- 0.012483974918723106,
- -0.1209995448589325,
- -0.007443205453455448,
- 0.036472003906965256,
- -0.10410544276237488,
- -0.029911963269114494,
- -0.019287802278995514,
- -0.022148145362734795,
- 0.014397683553397655,
- -0.02434385195374489,
- -0.024417510256171227,
- -0.015760738402605057,
- -0.050325918942689896,
- -9.409746871320985e-34,
- -0.0069498843513429165,
- -0.05411824584007263,
- 0.05956302583217621,
- -0.028691979125142097,
- -0.05877873674035072,
- -0.036518506705760956,
- -0.004072430543601513,
- -0.030162787064909935,
- -0.03161018341779709,
- 0.1267259567975998,
- -0.024870755150914192,
- 0.059905409812927246,
- 0.026888001710176468,
- 0.014169113710522652,
- 0.1596052497625351,
- -0.0005755945458076894,
- 0.01895778439939022,
- 0.04601510986685753,
- 0.05016721040010452,
- -0.06856987625360489,
- 0.06288384646177292,
- -0.02498854510486126,
- -0.0023305690847337246,
- 0.03053208626806736,
- 0.030196787789463997,
- -0.02389313280582428,
- 0.04457442834973335,
- 0.007271904498338699,
- 0.0541866160929203,
- 0.0248374305665493,
- -0.04989384859800339,
- -0.0008348477422259748,
- -0.04977511987090111,
- -0.004997091367840767,
- 0.06743655353784561,
- -0.07224111258983612,
- -0.047246359288692474,
- -0.03705054521560669,
- 0.021566879004240036,
- -0.027342291548848152,
- -0.00844514649361372,
- 0.009086874313652515,
- -0.03623452037572861,
- -0.0462670624256134,
- -0.030658477917313576,
- 0.03638077899813652,
- 0.041976287961006165,
- -0.011788377538323402,
- 0.021459894254803658,
- -0.037963785231113434,
- 0.02965591475367546,
- -0.0500858873128891,
- -0.02172601781785488,
- 0.07678905874490738,
- 0.01493604201823473,
- 0.06933552026748657,
- 0.03881891071796417,
- -0.019227849319577217,
- 0.0005579199059866369,
- 0.03666633740067482,
- -0.02210276573896408,
- -0.01459410134702921,
- 0.059004656970500946,
- 0.044389426708221436,
- -0.003741631982848048,
- 0.03093125857412815,
- 0.02081417664885521,
- 0.0037236339412629604,
- 0.03522942587733269,
- 0.01355238351970911,
- 0.021085260435938835,
- -0.019304852932691574,
- 0.09394645690917969,
- -0.07501816004514694,
- -0.024427611380815506,
- -0.016410503536462784,
- -0.005922097712755203,
- 0.0807705894112587,
- -0.09941554814577103,
- 0.010596086271107197,
- -0.07076632231473923,
- -0.07497897744178772,
- 0.045614343136548996,
- -0.04319467768073082,
- 0.005028763320297003,
- 0.017121583223342896,
- 0.024769917130470276,
- -0.06110891327261925,
- -0.01935812272131443,
- 0.03179389238357544,
- -0.09751581400632858,
- 0.057216402143239975,
- 0.013389910571277142,
- -0.03411603346467018,
- -0.07887863367795944,
- 1.8418945879309198e-33,
- -0.101359523832798,
- 0.03169447183609009,
- 0.02607223019003868,
- 0.05999193713068962,
- 0.062157463282346725,
- -0.030373776331543922,
- 0.013952883891761303,
- -0.01345277950167656,
- 0.01735837385058403,
- 0.08369922637939453,
- 0.039948828518390656,
- -0.025380361825227737,
- 0.09370598196983337,
- -0.03673837333917618,
- -0.021689001470804214,
- 0.028401600196957588,
- 0.07842674106359482,
- -0.015621024183928967,
- -0.0659804567694664,
- 0.0034605180844664574,
- -0.06936554610729218,
- -0.03558380529284477,
- -0.039777543395757675,
- -0.014049621298909187,
- -0.032866787165403366,
- 0.03123812936246395,
- -0.03206385672092438,
- -0.004998273216187954,
- 0.0019469117978587747,
- 0.02545718476176262,
- 0.01354129333049059,
- -0.11097268760204315,
- -0.058586180210113525,
- -0.000718244060408324,
- -0.04201631620526314,
- -0.04047134518623352,
- 0.0625695064663887,
- 0.0022301217541098595,
- -0.04584341496229172,
- 0.03569570928812027,
- 0.058832164853811264,
- 0.026687471196055412,
- -0.05169149488210678,
- 0.011417999863624573,
- 0.02002260647714138,
- -0.0015270347939804196,
- -0.059457141906023026,
- 0.14407816529273987,
- 0.0759740024805069,
- 0.009852761402726173,
- 0.003844801103696227,
- 0.0789492055773735,
- 0.02995738387107849,
- -0.04486579820513725,
- 0.0684647485613823,
- -0.008937759324908257,
- 0.006916501093655825,
- 0.009760929271578789,
- -0.06733191758394241,
- -0.015415013767778873,
- -0.06705589592456818,
- -0.07138397544622421,
- 0.028299503028392792,
- 0.13319478929042816,
- -0.02122534066438675,
- -0.008840473368763924,
- -0.014971512369811535,
- -0.08681666105985641,
- -0.07347635179758072,
- 0.026677418500185013,
- 0.036854591220617294,
- -0.0242894496768713,
- -0.03661411628127098,
- 0.0487467385828495,
- -0.04976248741149902,
- 0.03374934941530228,
- -0.10889415442943573,
- 0.022665152326226234,
- 0.053730569779872894,
- 0.07301586866378784,
- 0.09435196220874786,
- -0.022595016285777092,
- 0.04247017577290535,
- 0.08822990953922272,
- 0.03239479660987854,
- 0.014742936007678509,
- 0.06733152270317078,
- -0.03324330225586891,
- -0.01289899367839098,
- -0.059777192771434784,
- -0.08561746031045914,
- 0.010104981251060963,
- -0.04863607883453369,
- -0.014482686296105385,
- 0.007067176979035139,
- -1.2412081140666942e-8,
- -0.012655244208872318,
- -0.06376544386148453,
- 0.05654081329703331,
- 0.032960426062345505,
- 0.05086904019117355,
- -0.05353037267923355,
- -0.02520488016307354,
- 0.16028468310832977,
- 0.020649127662181854,
- 0.08887007087469101,
- 0.033796604722738266,
- -0.013843416236341,
- -0.061267025768756866,
- -0.014043884351849556,
- 0.060510680079460144,
- -0.007941772229969501,
- 0.0010211138287559152,
- -0.11822538077831268,
- 0.005167857278138399,
- 0.057227056473493576,
- 0.035398680716753006,
- 0.05626950412988663,
- -0.05381081625819206,
- 0.01930900476872921,
- 0.10723403841257095,
- -0.019553614780306816,
- 0.016602177172899246,
- 0.11167500913143158,
- -0.05111043527722359,
- 0.006755642127245665,
- 0.00585752772167325,
- -0.03281674534082413,
- 0.017416050657629967,
- -0.018956074491143227,
- 0.0934101864695549,
- 0.020241601392626762,
- 0.03034566342830658,
- 0.024595797061920166,
- 0.03986877575516701,
- -0.058339450508356094,
- 0.03365221619606018,
- 0.015340210869908333,
- -0.033288560807704926,
- -0.0024652022402733564,
- -0.006614424753934145,
- 0.00930792186409235,
- 0.010737200267612934,
- -0.007871497422456741,
- 0.026964133605360985,
- 0.06593956798315048,
- -0.06529289484024048,
- 0.00046934548299759626,
- 0.048183128237724304,
- 0.008249039761722088,
- 0.07090524584054947,
- 0.025124814361333847,
- 0.03419915586709976,
- -0.015218373388051987,
- 0.025691159069538116,
- -0.01207786612212658,
- 0.08027444034814835,
- -0.03379060700535774,
- -0.047122638672590256,
- 0.023305336013436317
- ]
- },
- {
- "keyword": "natural language processing",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.006318590138107538,
- 0.008095729164779186,
- 0.037231653928756714,
- -0.03375934436917305,
- 0.027314413338899612,
- -0.02549334615468979,
- 0.07978029549121857,
- 0.004114012699574232,
- -0.0005842316895723343,
- -0.0031669912859797478,
- 0.017230451107025146,
- -0.008237295784056187,
- 0.05444720387458801,
- -0.004380121827125549,
- 0.014936196617782116,
- 0.07704290747642517,
- -0.0005498060490936041,
- -0.0068251946941018105,
- -0.09733077138662338,
- -0.04019404575228691,
- 0.008283575065433979,
- 0.075759157538414,
- -0.08703237026929855,
- -0.022727880626916885,
- 0.007935495115816593,
- 0.07511299103498459,
- 0.002052722033113241,
- -0.04962259158492088,
- 0.08915816247463226,
- -0.037556812167167664,
- 0.04470980912446976,
- -0.010103817097842693,
- 0.07875896990299225,
- 0.10277718305587769,
- -0.012673478573560715,
- -0.009298204444348812,
- -0.05357959493994713,
- 0.06426569074392319,
- -0.03861594200134277,
- 0.014805019833147526,
- -0.07509062439203262,
- -0.10290192812681198,
- 0.0024017971009016037,
- 0.039637718349695206,
- 0.13327354192733765,
- 0.04311211779713631,
- -0.06129806861281395,
- 0.05916307866573334,
- -0.023717062547802925,
- 0.029775002971291542,
- -0.12388517707586288,
- 0.030782165005803108,
- 0.0014241269091144204,
- 0.08718227595090866,
- -0.053957194089889526,
- 0.0802595466375351,
- -0.04683428257703781,
- -0.07850643992424011,
- -0.025795795023441315,
- -0.07295405864715576,
- 0.03951288387179375,
- -0.06009957939386368,
- -0.11143471300601959,
- 0.013022363185882568,
- 0.03821676969528198,
- -0.005058116279542446,
- -0.05523945391178131,
- -0.01668875478208065,
- -0.001925300108268857,
- -0.014830630272626877,
- -0.04141608253121376,
- 0.10192766040563583,
- -0.01859206333756447,
- 0.09406077116727829,
- -0.031880464404821396,
- 0.03849762678146362,
- -0.01635127328336239,
- -0.014344321563839912,
- 0.06960517913103104,
- -0.055029988288879395,
- 0.034293271601200104,
- -0.02284604124724865,
- 0.06037852540612221,
- 0.03955967724323273,
- 0.11650535464286804,
- -0.012846819125115871,
- -0.00041669709025882185,
- 0.021830933168530464,
- -0.08385364711284637,
- 0.04916152358055115,
- -0.016114860773086548,
- -0.10082179307937622,
- 0.14594832062721252,
- 0.01599937491118908,
- -0.009512304328382015,
- 0.025522422045469284,
- -0.020011691376566887,
- -0.1300123929977417,
- 0.050269659608602524,
- 0.17074552178382874,
- 0.019883260130882263,
- 0.045068785548210144,
- 0.009741270914673805,
- -0.08408526331186295,
- -0.09804033488035202,
- -0.01220399048179388,
- -0.07026702165603638,
- 0.0209348201751709,
- -0.00046124530490487814,
- -0.058506377041339874,
- -0.03340575098991394,
- 0.015275739133358002,
- -0.03126133978366852,
- 0.005160132423043251,
- 0.06029633805155754,
- -0.041222795844078064,
- 0.05114290490746498,
- 0.011592849157750607,
- 0.061979178339242935,
- 0.004586157388985157,
- -0.05062384530901909,
- 0.05307872220873833,
- -0.0530807189643383,
- 0.050881266593933105,
- 0.013128495775163174,
- -0.03190160542726517,
- 0.08563273400068283,
- -1.823140677589504e-33,
- 0.022947167977690697,
- -0.0360695980489254,
- -0.10086974501609802,
- -0.005813304800540209,
- 0.0036857323721051216,
- 0.040428951382637024,
- -0.0410577729344368,
- -0.02501489780843258,
- 0.02854570932686329,
- -0.005018096882849932,
- 0.028510095551609993,
- -0.03633996099233627,
- -0.0071997311897575855,
- -0.04764227941632271,
- 0.07901021093130112,
- -0.025205129757523537,
- -0.013750243000686169,
- 0.09016415476799011,
- -0.013932150788605213,
- -0.019266610965132713,
- -0.06183091551065445,
- 0.07660233229398727,
- -0.0003860081487800926,
- 0.030587097629904747,
- -0.0001404961512889713,
- 0.006764915306121111,
- 0.0194698553532362,
- -0.07952678203582764,
- 0.011915810406208038,
- 0.010141514241695404,
- 0.026914559304714203,
- -0.03391740098595619,
- -0.012316685169935226,
- -0.019529111683368683,
- 0.027572041377425194,
- -0.07192690670490265,
- 0.01302630826830864,
- 0.0035880524665117264,
- 0.026236549019813538,
- -0.08655792474746704,
- -0.12538455426692963,
- -0.018946165218949318,
- 0.02604357711970806,
- 0.0633121058344841,
- -0.0004871938726864755,
- 0.0364241749048233,
- -0.03827902302145958,
- 0.022149555385112762,
- 0.015778008848428726,
- 0.021175222471356392,
- 0.08098405599594116,
- -0.03257732465863228,
- 0.027758067473769188,
- 0.024602681398391724,
- 0.1085059642791748,
- 0.03763018175959587,
- 0.038685038685798645,
- 0.03138883411884308,
- 0.008977549150586128,
- -0.014246475882828236,
- 0.08210468292236328,
- 0.04252713918685913,
- 0.0478769987821579,
- -0.01895773410797119,
- -0.00775857362896204,
- 0.01625380851328373,
- -0.016008393839001656,
- -0.009727958589792252,
- 0.02231607958674431,
- 0.008826829493045807,
- -0.1017606258392334,
- 0.07474562525749207,
- 0.025108620524406433,
- -0.02240878716111183,
- 0.054128240793943405,
- 0.06421377509832382,
- 0.022914724424481392,
- -0.025347258895635605,
- -0.08578815311193466,
- 0.06872447580099106,
- -0.08338689059019089,
- -0.07957012206315994,
- 0.043492671102285385,
- 0.032604388892650604,
- -0.02584812231361866,
- -0.05509698763489723,
- 0.04112064465880394,
- 0.025668391957879066,
- 0.04515574127435684,
- -0.02149261347949505,
- -0.025928501039743423,
- 0.02686796523630619,
- -0.047540564090013504,
- 0.024219581857323647,
- -0.023778842762112617,
- 2.8983596664858887e-33,
- -0.0838879868388176,
- -0.03424299135804176,
- -0.007785932160913944,
- 0.05497053265571594,
- -0.016973484307527542,
- -0.08455187827348709,
- -0.0331011638045311,
- -0.027380337938666344,
- 0.0423252172768116,
- 0.008519403636455536,
- -0.054589785635471344,
- -0.021361391991376877,
- 0.057487811893224716,
- -0.004586752504110336,
- 0.010257342830300331,
- -0.013668535277247429,
- 0.04032628610730171,
- 0.013367477804422379,
- -0.002769519342109561,
- 0.13290271162986755,
- -0.04234099015593529,
- 0.10317858308553696,
- -0.06701592355966568,
- -0.0062644872814416885,
- 0.043615348637104034,
- 0.058735672384500504,
- -0.0018056503031402826,
- -0.04523672163486481,
- -0.06288442760705948,
- -0.009221108630299568,
- -0.00937003642320633,
- -0.017599163576960564,
- 0.0071755326353013515,
- -0.02122211456298828,
- -0.01080339029431343,
- -0.04005581885576248,
- -0.023733552545309067,
- 0.017782263457775116,
- -0.017915593460202217,
- -0.01790895313024521,
- 0.08685451000928879,
- 0.08935701847076416,
- -0.08007802814245224,
- -0.00048673420678824186,
- -0.02038232423365116,
- -0.06725634634494781,
- -0.040013086050748825,
- 0.02720104344189167,
- -0.06639871746301651,
- 0.037642426788806915,
- -0.04320560768246651,
- -0.02845056913793087,
- -0.028275908902287483,
- 0.021439984440803528,
- 0.053794968873262405,
- -0.035606835037469864,
- 0.054645225405693054,
- -0.11425957083702087,
- -0.05974475294351578,
- -0.018165908753871918,
- -0.05407059192657471,
- 0.05526105314493179,
- 0.08056432753801346,
- -0.043114978820085526,
- 0.025945929810404778,
- -0.1283755749464035,
- -0.04726910963654518,
- 0.05413457751274109,
- 0.013131312094628811,
- -0.04501396417617798,
- 0.06393017619848251,
- 0.0565057173371315,
- -0.04415600374341011,
- 0.002599052619189024,
- -0.003464182373136282,
- -0.0001826288498705253,
- 0.01738017052412033,
- -0.0348934680223465,
- -0.021916797384619713,
- -0.01592841185629368,
- 0.007346034049987793,
- 0.03609549254179001,
- 0.09704995155334473,
- 0.06625133752822876,
- 0.00476455083116889,
- 0.04414283484220505,
- 0.0505954883992672,
- 0.009081045165657997,
- 0.03663214296102524,
- -0.0010754724498838186,
- -0.009439724497497082,
- -0.0019105691462755203,
- 0.009587785229086876,
- 0.10181332379579544,
- -0.0645110011100769,
- -1.3402450704802504e-8,
- -0.04331033304333687,
- -0.0465465784072876,
- -0.07273094356060028,
- 0.003494971664622426,
- 0.033602092415094376,
- 0.022615762427449226,
- -0.0335969515144825,
- 0.040994878858327866,
- -0.037405528128147125,
- -0.08960499614477158,
- -0.007788415532559156,
- 0.04549397900700569,
- -0.06959809362888336,
- -0.0348379909992218,
- 0.01449124701321125,
- 0.041101861745119095,
- -0.03008721023797989,
- 0.0020828815177083015,
- -0.035137929022312164,
- 0.014521033503115177,
- 0.14160464704036713,
- 0.05349776893854141,
- -0.0033487004693597555,
- 0.10737274587154388,
- 0.006375750992447138,
- -0.012566356919705868,
- -0.0066125886514782906,
- 0.01906801573932171,
- 0.02567528933286667,
- -0.019690848886966705,
- 0.05265452340245247,
- 0.0752810463309288,
- -0.014112438075244427,
- -0.0008465662249363959,
- 0.13114652037620544,
- 0.04781567305326462,
- 0.018833089619874954,
- -0.023814445361495018,
- -0.042515698820352554,
- 0.004502727650105953,
- 0.04115673154592514,
- 0.03834252431988716,
- -0.0841866135597229,
- 0.004051853436976671,
- 0.04264945164322853,
- -0.08311598002910614,
- -0.024155741557478905,
- -0.12099462747573853,
- 0.05981997773051262,
- -0.021041303873062134,
- -0.02336961030960083,
- -0.023316266015172005,
- 0.013657227158546448,
- 0.02787480317056179,
- -0.013775954954326153,
- 0.019151179119944572,
- 0.02427012287080288,
- -0.0029496513307094574,
- -0.029215510934591293,
- -0.03628017380833626,
- -0.04565809294581413,
- 0.06673748791217804,
- 0.04028807953000069,
- 0.03538709506392479
- ]
- },
- {
- "keyword": "computer vision",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.026965834200382233,
- -0.015820825472474098,
- -0.013124325312674046,
- -0.11651017516851425,
- 0.013574041426181793,
- 0.0006493963301181793,
- 0.10432691872119904,
- 0.00871560350060463,
- 0.04101957753300667,
- -0.06506679952144623,
- -0.004539452958852053,
- -0.016691161319613457,
- 0.007688158191740513,
- -0.0024021395947784185,
- -0.09188033640384674,
- -0.03912387043237686,
- -0.01522236317396164,
- 0.013993781059980392,
- -0.101338230073452,
- -0.017154496163129807,
- 0.008944298140704632,
- -0.07353102415800095,
- -0.06930758059024811,
- -0.04557612165808678,
- 0.03605186566710472,
- 0.11771991848945618,
- 0.053041934967041016,
- -0.016300568357110023,
- -0.027383603155612946,
- -0.09796985983848572,
- -0.022232647985219955,
- 0.02336742728948593,
- 0.058173421770334244,
- 0.031514789909124374,
- -0.06977961212396622,
- -0.015414567664265633,
- 0.004145766608417034,
- 0.014661261811852455,
- -0.05513232201337814,
- -0.027001075446605682,
- -0.08078320324420929,
- 0.07150567322969437,
- 0.028892721980810165,
- -0.003387936856597662,
- 0.0905318632721901,
- 0.09136538952589035,
- 0.061241377145051956,
- -0.015536301769316196,
- -0.016045240685343742,
- -0.017261222004890442,
- -0.10067324340343475,
- -0.020960429683327675,
- -0.03213491290807724,
- -0.03487415611743927,
- -0.08781814575195312,
- 0.05891841650009155,
- 0.035551343113183975,
- -0.061935268342494965,
- 0.0659259632229805,
- -0.026663849130272865,
- 0.06957412511110306,
- 0.0058107683435082436,
- -0.0018120892345905304,
- 0.03449384495615959,
- 0.03293093666434288,
- -0.04376577213406563,
- -0.011721585877239704,
- -0.03711739555001259,
- 0.029455386102199554,
- -0.048661358654499054,
- -0.05013694986701012,
- 0.0770820677280426,
- 0.0016188864829018712,
- 0.00018979888409376144,
- 0.0021701634395867586,
- -0.02246742509305477,
- 0.06837554275989532,
- -0.06191139295697212,
- 0.09107786417007446,
- -0.08292551338672638,
- 0.008391542360186577,
- -0.018540026620030403,
- -0.0288041103631258,
- 0.020936034619808197,
- 0.059138230979442596,
- 0.08420807123184204,
- -0.10736170411109924,
- 0.012752306647598743,
- 0.004157361574470997,
- -0.002389265689998865,
- -0.02978118695318699,
- -0.09040864557027817,
- -0.07413127273321152,
- -0.06995181739330292,
- -0.06403108686208725,
- -0.054437097162008286,
- 0.07771234959363937,
- -0.16935716569423676,
- 0.04509628191590309,
- 0.15572373569011688,
- 0.004248871002346277,
- -0.06467124074697495,
- 0.09022574126720428,
- -0.01718531921505928,
- 0.011990989558398724,
- 0.004278769250959158,
- 0.030276885256171227,
- 0.01959453895688057,
- 0.08965550363063812,
- -0.0360599085688591,
- -0.019237704575061798,
- -0.039983801543712616,
- -0.04773663729429245,
- -0.03959498554468155,
- -0.007701757829636335,
- 0.026431217789649963,
- 0.005012986715883017,
- 0.053765397518873215,
- 0.07425449043512344,
- -0.03298089653253555,
- -0.009232515469193459,
- -0.082109235227108,
- -0.04000077396631241,
- 0.02318074367940426,
- 0.020207565277814865,
- -0.049692753702402115,
- -0.036577239632606506,
- -1.835475837762453e-33,
- -0.052994947880506516,
- -0.052536677569150925,
- -0.008879906497895718,
- 0.013051988556981087,
- 0.03605451434850693,
- -0.023978285491466522,
- 0.021963700652122498,
- -0.00181189039722085,
- 0.050555676221847534,
- 0.04791621118783951,
- -0.05640110373497009,
- -0.02594880945980549,
- 0.011247288435697556,
- 0.06731346249580383,
- 0.1215052381157875,
- -0.034079063683748245,
- 0.016570663079619408,
- 0.06171571835875511,
- -0.04562759026885033,
- 0.03309977054595947,
- 0.019464261829853058,
- -0.01191150676459074,
- 0.04172535240650177,
- -0.007472263183444738,
- -0.023128483444452286,
- -0.012442187406122684,
- -0.0030365432612597942,
- 0.005960558541119099,
- 0.06734954565763474,
- -0.002658227225765586,
- 0.07301323115825653,
- 0.0843842625617981,
- -0.03492003306746483,
- -0.004886848386377096,
- 0.034224070608615875,
- -0.034677255898714066,
- 0.014383578673005104,
- 0.025531848892569542,
- 0.08076401799917221,
- -0.0405285507440567,
- -0.04333670437335968,
- 0.08014146238565445,
- 0.07131221890449524,
- -0.08689906448125839,
- 0.016407359391450882,
- 0.043060775846242905,
- 0.02361736074090004,
- 0.1129961609840393,
- -0.12126017361879349,
- 0.0403202623128891,
- 0.0328131839632988,
- -0.02961389161646366,
- -0.05501505360007286,
- -0.06493687629699707,
- -0.020320886746048927,
- 0.05644965171813965,
- 0.02236844226717949,
- 0.0027005504816770554,
- -0.018981605768203735,
- -0.03879247233271599,
- 0.07833626121282578,
- 0.05875421315431595,
- 0.000867007183842361,
- 0.013659298419952393,
- -0.029791327193379402,
- -0.013129073195159435,
- 0.06199215352535248,
- 0.05683928355574608,
- 0.020356955006718636,
- 0.027266640216112137,
- -0.04784485325217247,
- -0.03457476943731308,
- 0.02747192233800888,
- -0.09585243463516235,
- -0.008964926935732365,
- 0.019888361915946007,
- -0.04005527123808861,
- 0.07461636513471603,
- -0.03901239112019539,
- 0.04290412738919258,
- -0.15995919704437256,
- -0.03587102144956589,
- 0.018915478140115738,
- -0.011354653164744377,
- 0.005621844902634621,
- 0.04324210062623024,
- -0.02506871335208416,
- -0.03690459951758385,
- -0.002844653557986021,
- -0.02468915469944477,
- -0.022361675277352333,
- 0.03254283592104912,
- -0.00878182053565979,
- 0.006685156375169754,
- -0.09756147116422653,
- 6.742933143324193e-34,
- -0.02345018833875656,
- 0.03183240070939064,
- 0.05032973363995552,
- 0.08859626948833466,
- 0.01637861132621765,
- -0.019874362275004387,
- 0.10475900024175644,
- -0.007551694754511118,
- 0.019103730097413063,
- 0.01931535266339779,
- 0.0022606095299124718,
- 0.0429048016667366,
- -0.02306528016924858,
- 0.05530301481485367,
- -0.017316490411758423,
- -0.00982383731752634,
- 0.01470343116670847,
- -0.01989690773189068,
- -0.06883841007947922,
- 0.020473001524806023,
- -0.04594790190458298,
- 0.03530131280422211,
- -0.0067989034578204155,
- -0.0744972676038742,
- -0.04295521602034569,
- 0.06949775665998459,
- -0.022437574341893196,
- -0.0548461377620697,
- -0.09208245575428009,
- -0.018313460052013397,
- 0.018730560317635536,
- -0.03969692811369896,
- -0.03427708521485329,
- 0.027559982612729073,
- 0.028953103348612785,
- 0.009711001068353653,
- -0.032127801328897476,
- -0.02430344745516777,
- -0.0021444433368742466,
- 0.04486433044075966,
- 0.07087822258472443,
- 0.06840553134679794,
- 0.02401209995150566,
- 0.07993867248296738,
- -0.021266762167215347,
- -0.03974638879299164,
- -0.004284664988517761,
- 0.07350334525108337,
- 0.013452509418129921,
- 0.044892773032188416,
- -0.09866791218519211,
- 0.05839559808373451,
- -0.00841865036636591,
- -0.04280286282300949,
- 0.009428292512893677,
- 0.038284316658973694,
- -0.040554966777563095,
- 0.013241436332464218,
- 0.06765217334032059,
- 0.018092630431056023,
- -0.035525258630514145,
- -0.03542465344071388,
- -0.048805419355630875,
- 0.03705625981092453,
- 0.014982016757130623,
- 0.07685115188360214,
- -0.049220822751522064,
- 0.0019198503578081727,
- 0.0075921607203781605,
- 0.030888577923178673,
- 0.11119912564754486,
- 0.026205003261566162,
- -0.013646941632032394,
- 0.011070774868130684,
- -0.060569483786821365,
- -0.039827700704336166,
- -0.027324451133608818,
- 0.03348749130964279,
- 0.03511747345328331,
- -0.0013154161861166358,
- 0.030596429482102394,
- -0.08215078711509705,
- 0.024605797603726387,
- 0.1414736807346344,
- 0.024469180032610893,
- 0.055202268064022064,
- -0.016198601573705673,
- -0.12595537304878235,
- 0.08381985127925873,
- -0.03809197247028351,
- -0.08121761679649353,
- 0.04028887674212456,
- 0.041039105504751205,
- 0.003122077090665698,
- -0.03426206856966019,
- -1.2823271333672892e-8,
- -0.0913516953587532,
- 0.016571396961808205,
- 0.02863043174147606,
- -0.11675522476434708,
- -0.00814863108098507,
- -0.05079406127333641,
- -0.0013002980267629027,
- 0.04401765763759613,
- -0.017114493995904922,
- -0.03940067067742348,
- -0.004307315684854984,
- -0.03485972806811333,
- -0.02037416584789753,
- 0.03462787717580795,
- 0.04858086258172989,
- -0.01242020446807146,
- 0.04458831995725632,
- 0.02096530608832836,
- -0.0036918201949447393,
- 0.03723665326833725,
- 0.019881198182702065,
- -0.003904191544279456,
- 0.013493341393768787,
- 0.0798875018954277,
- 0.008537939749658108,
- 0.0021552126854658127,
- -0.013647598214447498,
- 0.05416248366236687,
- 0.005111798644065857,
- 0.0530739389359951,
- 0.02360890991985798,
- 0.12370456755161285,
- 0.016936402767896652,
- -0.05261450260877609,
- 0.08501458913087845,
- 0.015993110835552216,
- -0.06318292766809464,
- 0.014904147945344448,
- 0.018995221704244614,
- -0.03607776015996933,
- -0.0699876919388771,
- -0.0024006301537156105,
- 0.018217921257019043,
- -0.012558993883430958,
- 0.04097142815589905,
- 0.030218996107578278,
- 0.0747465044260025,
- -0.11259068548679352,
- -0.013556956313550472,
- -0.006016639061272144,
- -0.028345199301838875,
- 0.07527025789022446,
- 0.041698992252349854,
- 0.054959286004304886,
- -0.041275255382061005,
- 0.001003054901957512,
- 0.10017812252044678,
- -0.08798276633024216,
- -0.03694165498018265,
- 0.08734215050935745,
- -0.004115368239581585,
- 0.02108205109834671,
- -0.015683557838201523,
- -0.05512399226427078
- ]
- },
- {
- "keyword": "history",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.028537074103951454,
- 0.10129259526729584,
- -0.02060696855187416,
- 0.056500814855098724,
- -0.057150572538375854,
- 0.044765423983335495,
- 0.04541082680225372,
- -0.039794519543647766,
- -0.06047902628779411,
- 0.02425517328083515,
- 0.009313208051025867,
- -0.006006285082548857,
- 0.036266639828681946,
- -0.009708376601338387,
- -0.1315472573041916,
- -0.013142246752977371,
- -0.06305322051048279,
- -0.048476506024599075,
- -0.057406675070524216,
- -0.09462551027536392,
- -0.05363256484270096,
- 0.01924016699194908,
- 0.03584755212068558,
- 0.009944218210875988,
- 0.019226426258683205,
- 0.12969468533992767,
- 0.01893005706369877,
- -0.009443465620279312,
- 0.02389584109187126,
- -0.09589459002017975,
- -0.06444539874792099,
- -0.023860394954681396,
- 0.07551561295986176,
- -0.027118844911456108,
- -0.07218605279922485,
- -0.004253142047673464,
- 0.016622139140963554,
- 0.008265440352261066,
- 0.04148153215646744,
- -0.018483441323041916,
- -0.025403384119272232,
- 0.009557805024087429,
- 0.025226213037967682,
- -0.0494222417473793,
- -0.021488940343260765,
- 0.08468150347471237,
- 0.0699024572968483,
- -0.028228428214788437,
- -0.02350103110074997,
- 0.08717303723096848,
- 0.04261108487844467,
- 0.037409696727991104,
- -0.025321315973997116,
- -0.023055488243699074,
- 0.07448215782642365,
- -0.029450232163071632,
- -0.04278091341257095,
- 0.029397035017609596,
- -0.04099898412823677,
- 0.019499551504850388,
- 0.06284072250127792,
- -0.017551884055137634,
- -0.07605163007974625,
- 0.00026145344600081444,
- 0.019035357981920242,
- -0.012794708833098412,
- 0.021266410127282143,
- 0.08179303258657455,
- -0.012606330215930939,
- -0.0355968214571476,
- -0.008428086526691914,
- -0.01046561636030674,
- -0.031064819544553757,
- 0.03423159196972847,
- 0.07873345166444778,
- -0.048282697796821594,
- 0.008387342095375061,
- 0.0330047532916069,
- -0.035861361771821976,
- -0.06098887324333191,
- 0.05447717010974884,
- -0.019032593816518784,
- -0.044463735073804855,
- 0.056112322956323624,
- -0.0010432722046971321,
- -0.045625679194927216,
- -0.02184750698506832,
- -0.07188966870307922,
- -0.0009442057926207781,
- -0.014802444726228714,
- -0.0011769803240895271,
- -0.07071442157030106,
- 0.11893680691719055,
- 0.011823314242064953,
- -0.04701022803783417,
- 0.008539153262972832,
- 0.017809515818953514,
- -0.03755677491426468,
- 0.015970012173056602,
- 0.264611154794693,
- 0.016417864710092545,
- 0.005162699148058891,
- -0.0006405796739272773,
- 0.05338471010327339,
- 0.02767002210021019,
- -0.02885933592915535,
- -0.04777104780077934,
- 0.033053867518901825,
- -0.05092816427350044,
- 0.00893568154424429,
- -0.0368829146027565,
- 0.010236659087240696,
- -0.021821143105626106,
- 0.02475358359515667,
- 0.009085111320018768,
- -0.008460423909127712,
- 0.029972365126013756,
- 0.008705584332346916,
- 0.021195536479353905,
- -0.0162454005330801,
- 0.020726162940263748,
- 0.04618369787931442,
- -0.06587406247854233,
- 0.009172411635518074,
- -0.10191795229911804,
- -0.09693004935979843,
- 0.021432561799883842,
- -5.196462326273992e-33,
- 0.04048905149102211,
- -0.10779032111167908,
- -0.03508675843477249,
- 0.10431911051273346,
- -0.004023647867143154,
- 0.0680636316537857,
- -0.0033115099649876356,
- -0.01587073877453804,
- -0.04368537664413452,
- 0.045689769089221954,
- 0.06511770188808441,
- 0.04644026979804039,
- -0.11928434669971466,
- -0.02449962869286537,
- 0.06833602488040924,
- 0.0395958386361599,
- -0.05093824490904808,
- 0.03165387362241745,
- 0.06875190883874893,
- -0.010754392482340336,
- -0.07154351472854614,
- 0.03781750798225403,
- 0.05064605548977852,
- 0.01789197325706482,
- 0.02771179750561714,
- -0.041130803525447845,
- -0.02135602943599224,
- -0.004566684365272522,
- 0.013870988972485065,
- -0.0005352416774258018,
- 0.05169377103447914,
- -0.03338402882218361,
- -0.06419847905635834,
- -0.028623992577195168,
- 0.07177519053220749,
- 0.0312334056943655,
- 0.017650242894887924,
- -0.13370928168296814,
- 0.056066807359457016,
- -0.042478371411561966,
- 0.029843004420399666,
- -0.007853061892092228,
- -0.0446331761777401,
- -0.03000044822692871,
- 0.05843250826001167,
- 0.008073767647147179,
- 0.009619754739105701,
- 0.03035907633602619,
- 0.011825315654277802,
- 0.029684748500585556,
- -0.010152643546462059,
- -0.02383633889257908,
- -0.06393730640411377,
- -0.033091239631175995,
- -0.02731199376285076,
- 0.012317805550992489,
- 0.005502493120729923,
- 0.04275297746062279,
- -0.024784913286566734,
- 0.06179030239582062,
- 0.05592866986989975,
- 0.09052028506994247,
- 0.0005464968853630126,
- -0.010054980404675007,
- -0.03651183098554611,
- -0.0034966571256518364,
- -0.04733911156654358,
- -0.027722572907805443,
- 0.004739235620945692,
- -0.06700737774372101,
- -0.039157986640930176,
- 0.026811767369508743,
- 0.018407847732305527,
- -0.013061229139566422,
- 0.033462900668382645,
- 0.04793273285031319,
- 0.017170218750834465,
- 0.05425858870148659,
- -0.03585269674658775,
- -0.027242468670010567,
- -0.040904972702264786,
- -0.04805367439985275,
- -0.014075739309191704,
- 0.011476011946797371,
- 0.09474708884954453,
- 0.030572349205613136,
- 0.04817969724535942,
- -0.03530474379658699,
- 0.04063388332724571,
- -0.007334988098591566,
- -0.16525696218013763,
- 0.015747856348752975,
- 0.055009350180625916,
- 0.0017373696900904179,
- -0.08651544898748398,
- 2.9287076245462584e-33,
- -0.0746661126613617,
- -0.0014322473434731364,
- -0.033892158418893814,
- 0.03596919775009155,
- 0.043635044246912,
- -0.05709498003125191,
- -0.019950369372963905,
- -0.015134654007852077,
- -0.016234584152698517,
- 0.016324223950505257,
- -0.0055461847223341465,
- -0.04177526384592056,
- 0.1037469431757927,
- 0.026330070570111275,
- -0.016826998442411423,
- -0.035678647458553314,
- 0.05508938059210777,
- -0.01343177817761898,
- -0.06996797770261765,
- 0.025017986074090004,
- -0.05627832189202309,
- -0.05571182817220688,
- -0.0740366280078888,
- -0.07191649824380875,
- -0.06257439404726028,
- 0.05678362026810646,
- 0.06060175225138664,
- -0.03428978472948074,
- -0.02156725712120533,
- -0.023904476314783096,
- 0.029753919690847397,
- 0.009718089364469051,
- -0.03154495358467102,
- 0.050343338400125504,
- -0.06656570732593536,
- 0.02311018481850624,
- 0.045114632695913315,
- 0.03676842153072357,
- 0.018094085156917572,
- -0.02746659517288208,
- 0.04454834386706352,
- 0.0064371381886303425,
- 0.0017834552563726902,
- 0.10903437435626984,
- -0.03559603542089462,
- 0.020687423646450043,
- -0.07151255756616592,
- 0.11900117248296738,
- 0.03098313882946968,
- -0.00966328103095293,
- -0.05221932381391525,
- 0.05579262599349022,
- 0.08257927000522614,
- -0.014014855027198792,
- -0.019929593428969383,
- 0.0023086199071258307,
- -0.0036622812040150166,
- 0.039931654930114746,
- -0.04300255328416824,
- 0.018693702295422554,
- -0.04854673892259598,
- 0.05793936550617218,
- -0.08937149494886398,
- 0.08440778404474258,
- -0.04564988985657692,
- 0.007481877692043781,
- -0.030824927613139153,
- 0.024296512827277184,
- -0.002203378826379776,
- -0.052783649414777756,
- 0.09247030317783356,
- -0.011631486006081104,
- -0.08833528310060501,
- 0.07387443631887436,
- -0.023254232481122017,
- 0.02530033513903618,
- -0.10214786231517792,
- 0.03235873579978943,
- -0.00401657447218895,
- -0.07804924994707108,
- -0.05658012256026268,
- -0.038036707788705826,
- -0.01441637147217989,
- 0.011038552038371563,
- -0.010719720274209976,
- 0.1388540267944336,
- 0.03798695281147957,
- 0.015250284224748611,
- 0.04540492221713066,
- -0.09941191226243973,
- 0.0020121769048273563,
- -0.08607280999422073,
- 0.014730230905115604,
- -0.04848600551486015,
- 0.0024505681358277798,
- -1.4296005268477074e-8,
- -0.0018282480305060744,
- 0.06658577173948288,
- 0.00711676524952054,
- 0.03208985552191734,
- 0.019693775102496147,
- 0.005746638868004084,
- 0.011144974268972874,
- 0.03674614056944847,
- -0.0067252242006361485,
- 0.04619774967432022,
- -0.08431440591812134,
- 0.08001057803630829,
- -0.03184056282043457,
- 0.026146946474909782,
- 0.05318563058972359,
- -0.04444573074579239,
- 0.021663304418325424,
- 0.012701475992798805,
- -0.009133909828960896,
- -0.014018434099853039,
- -0.014533143490552902,
- -0.027046779170632362,
- 0.05797218158841133,
- -0.020814649760723114,
- -0.011052150279283524,
- 0.04666493460536003,
- 0.0036144715268164873,
- 0.09280183911323547,
- 0.034643299877643585,
- 0.02998827025294304,
- 0.04722759872674942,
- 0.07596045732498169,
- -0.04466323181986809,
- -0.10610085725784302,
- -0.0261335801333189,
- -0.01894204504787922,
- -0.0011032713809981942,
- -0.10007135570049286,
- 0.05894191935658455,
- -0.1222747415304184,
- -0.05218733474612236,
- 0.07632074505090714,
- 0.040982164442539215,
- 0.014545257203280926,
- -0.011489814147353172,
- -0.006926367525011301,
- -0.014774154871702194,
- -0.00265223509632051,
- 0.0063090333715081215,
- -0.04608168825507164,
- 0.012209305539727211,
- 0.06526681035757065,
- 0.04549898952245712,
- 0.08518272638320923,
- 0.06798917055130005,
- -0.033319324254989624,
- 0.02634713426232338,
- 0.0132486242800951,
- -0.028660699725151062,
- 0.031958483159542084,
- 0.17181341350078583,
- 0.009961082600057125,
- 0.05513683333992958,
- 0.06547576189041138
- ]
- },
- {
- "keyword": "literature",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.05093764886260033,
- 0.015331681817770004,
- 0.017961224541068077,
- 0.024169450625777245,
- -0.03659028559923172,
- 0.08845178782939911,
- 0.049953389912843704,
- -0.012576731853187084,
- 0.06914278864860535,
- 0.0933706983923912,
- -0.013985667377710342,
- 0.05561922863125801,
- 0.02361277863383293,
- -0.002619023434817791,
- -0.031128598377108574,
- 0.029818717390298843,
- 0.01574115827679634,
- -0.08135470002889633,
- 0.013058814220130444,
- -0.03995314612984657,
- -0.021705418825149536,
- 0.05865512043237686,
- 0.030306223779916763,
- -0.01725544035434723,
- -0.0035081931855529547,
- 0.021003922447562218,
- -0.015375830233097076,
- 0.010767514817416668,
- -0.051589660346508026,
- -0.10942533612251282,
- -0.032064177095890045,
- 0.09203171730041504,
- -0.04270848259329796,
- -0.036407288163900375,
- -0.06570225208997726,
- 0.05611817538738251,
- 0.03991404175758362,
- 0.03361218795180321,
- 0.07394867390394211,
- 0.00027877106913365424,
- -0.014346498064696789,
- -0.0617007315158844,
- -0.005162422079592943,
- 0.0016641756519675255,
- 0.06781518459320068,
- -0.01684284210205078,
- -0.07249560952186584,
- 0.03592528775334358,
- -0.00865263119339943,
- 0.04127069562673569,
- -0.05217951163649559,
- 0.02030123397707939,
- -0.057319894433021545,
- 0.024322422221302986,
- 0.037550728768110275,
- 0.00773840956389904,
- 0.014697084203362465,
- 0.03504709154367447,
- 0.00945752952247858,
- -0.08541876822710037,
- 0.05271059647202492,
- -0.05477612465620041,
- -0.051834430545568466,
- 0.008317559957504272,
- 0.04932970926165581,
- -0.010080591775476933,
- -0.04476024955511093,
- 0.05913548916578293,
- -0.06567701697349548,
- 0.007024465594440699,
- 0.013256761245429516,
- 0.006503549870103598,
- 0.043421730399131775,
- 0.03465130552649498,
- 0.03011859394609928,
- -0.031093832105398178,
- -0.04859018325805664,
- -0.10051531344652176,
- 0.021446507424116135,
- -0.11045905947685242,
- -0.018695347011089325,
- 0.026355186477303505,
- 0.0008433401817455888,
- 0.024432072415947914,
- -0.08080848306417465,
- -0.04047044739127159,
- 0.002973227296024561,
- -0.047938451170921326,
- 0.01240802463144064,
- 0.03752884268760681,
- 0.009986184537410736,
- -0.09420596063137054,
- 0.016496023163199425,
- 0.07378893345594406,
- -0.07501131296157837,
- 0.045032598078250885,
- -0.007799152750521898,
- -0.08640212565660477,
- 0.016558615490794182,
- 0.25786975026130676,
- 0.06530901044607162,
- 0.07419366389513016,
- 0.023196905851364136,
- 0.05140289291739464,
- -0.012028500437736511,
- -0.10101877897977829,
- -0.017404329031705856,
- -0.010162371210753918,
- -0.07008952647447586,
- -0.048502493649721146,
- -0.02570458874106407,
- 0.03169488534331322,
- -0.04813982546329498,
- 0.03798621520400047,
- 0.028299199417233467,
- 0.006088150665163994,
- 0.09179263561964035,
- -0.025185802951455116,
- 0.03676927462220192,
- 0.05153070017695427,
- -0.04616878926753998,
- 0.029351036995649338,
- -0.036015585064888,
- 0.016827978193759918,
- -0.07124600559473038,
- -0.05556925758719444,
- -0.04014509543776512,
- -4.935334337762483e-33,
- 0.00955392885953188,
- -0.029893377795815468,
- 0.008985794149339199,
- 0.08276024460792542,
- 0.010603074915707111,
- -0.03588831052184105,
- 0.047277867794036865,
- -0.008171312510967255,
- 0.008144534192979336,
- -0.05878207087516785,
- -0.03075573779642582,
- 0.017418639734387398,
- -0.04532461613416672,
- 0.007964812219142914,
- 0.03735347092151642,
- 0.023144979029893875,
- -0.02505318820476532,
- 0.043434642255306244,
- 0.009218228980898857,
- -0.016980702057480812,
- -0.04961695894598961,
- 0.04527704417705536,
- 0.030093247070908546,
- -0.0017958295065909624,
- -0.033006101846694946,
- 0.004934037569910288,
- -0.05461820587515831,
- -0.08891694247722626,
- -0.011341207660734653,
- 0.038756679743528366,
- 0.04133015498518944,
- 0.10980091243982315,
- 0.009400312788784504,
- -0.05724978819489479,
- -0.03416774421930313,
- -0.003679019631817937,
- -0.05720263719558716,
- -0.05746084824204445,
- 0.08877845108509064,
- 0.03830482065677643,
- -0.0664505586028099,
- 0.026509379968047142,
- -0.033021848648786545,
- -0.009749576449394226,
- 0.012335187755525112,
- 0.08896952867507935,
- -0.01122478861361742,
- 0.0023801412899047136,
- 0.0012918955180794,
- 0.08298254758119583,
- -0.01550848875194788,
- 0.008458279073238373,
- -0.024718135595321655,
- 0.002364437561482191,
- 0.07993273437023163,
- -0.0066506024450063705,
- -0.03607352077960968,
- 0.030635129660367966,
- 0.05480125918984413,
- -0.055491432547569275,
- 0.09889260679483414,
- 0.10955929756164551,
- 0.0083965715020895,
- 0.04541478678584099,
- 0.07625696808099747,
- 0.01415300089865923,
- -0.016934961080551147,
- -0.05805710330605507,
- 0.003063762094825506,
- -0.08861273527145386,
- -0.12406937777996063,
- -0.0007167902076616883,
- 0.0590878501534462,
- 0.0346074178814888,
- -0.024813007563352585,
- 0.0002615170378703624,
- 0.033453140407800674,
- -0.036573752760887146,
- -0.07747757434844971,
- 0.014422057196497917,
- -0.023010436445474625,
- -0.021814126521348953,
- -0.042756639420986176,
- -0.033761393278837204,
- -0.05463428050279617,
- 0.013432218693196774,
- -0.007029190193861723,
- -0.1294022500514984,
- 0.023828139528632164,
- 0.0004200908588245511,
- -0.05676816403865814,
- -0.031498122960329056,
- -0.013700628653168678,
- -0.03166814148426056,
- -0.05078330636024475,
- 4.368115701820512e-33,
- -0.011046655476093292,
- -0.06634632498025894,
- -0.05994635820388794,
- 0.06850362569093704,
- 0.021881643682718277,
- 0.005647142417728901,
- -0.07724251598119736,
- 0.00014663870388176292,
- 0.033173818141222,
- 0.06599913537502289,
- -0.10210523009300232,
- -0.030107153579592705,
- 0.09200814366340637,
- 0.012467903085052967,
- -0.019840465858578682,
- -0.08260665833950043,
- 0.07506314665079117,
- -0.06632441282272339,
- -0.03308762609958649,
- 0.07460169494152069,
- -0.07022345066070557,
- 0.002286332193762064,
- -0.009945478290319443,
- -0.12131417542695999,
- 0.05495717003941536,
- 0.07367530465126038,
- 0.01577431708574295,
- -0.03444351255893707,
- -0.11691655963659286,
- 0.005610112566500902,
- 0.07091967761516571,
- 0.008551129139959812,
- -0.006951095070689917,
- -0.0032448444981127977,
- -0.06392334401607513,
- 0.0033972684759646654,
- 0.10600707679986954,
- 0.007334845140576363,
- -0.021994777023792267,
- 0.030097978189587593,
- 0.07306551933288574,
- -0.007865882478654385,
- 0.03905300423502922,
- -0.003103728638961911,
- -0.05118820071220398,
- -0.0011186172487214208,
- 0.011190277524292469,
- 0.02970050275325775,
- 0.027281716465950012,
- -0.01001252606511116,
- -0.002693853573873639,
- 0.00993975531309843,
- 0.0549834743142128,
- -0.058919720351696014,
- 0.050760798156261444,
- -0.04520965367555618,
- 0.01713794283568859,
- -0.02845337614417076,
- -0.03152550756931305,
- 0.038092516362667084,
- 0.00009198796033160761,
- 0.08005741238594055,
- -0.08654654026031494,
- 0.074129119515419,
- -0.020196398720145226,
- -0.033158645033836365,
- -0.06340470165014267,
- -0.014049374498426914,
- -0.004405573476105928,
- 0.014297093264758587,
- -0.019376926124095917,
- -0.017784718424081802,
- -0.018584076315164566,
- 0.03580239787697792,
- 0.013440027832984924,
- 0.0991363599896431,
- -0.057010017335414886,
- -0.022295381873846054,
- -0.050149302929639816,
- -0.0667518749833107,
- 0.00009351306653115898,
- -0.02733013965189457,
- 0.008604492992162704,
- 0.07323561608791351,
- 0.03727968782186508,
- 0.07489018887281418,
- -0.053673628717660904,
- -0.011132175102829933,
- -0.013709891587495804,
- -0.016200363636016846,
- 0.030873192474246025,
- -0.05333848297595978,
- 0.006763599347323179,
- 0.031119143590331078,
- 0.026173029094934464,
- -1.251906844856876e-8,
- -0.008636755868792534,
- -0.025643998757004738,
- -0.016993235796689987,
- 0.00234418292529881,
- 0.006390969268977642,
- 0.04928329959511757,
- 0.04393864795565605,
- -0.024252332746982574,
- -0.01200343668460846,
- 0.10315710306167603,
- -0.04984551668167114,
- 0.012983094900846481,
- 0.07260933518409729,
- 0.006644327659159899,
- 0.0034300433471798897,
- -0.04052089899778366,
- 0.09937680512666702,
- -0.032580554485321045,
- -0.04138064756989479,
- 0.042691752314567566,
- 0.10791410505771637,
- 0.07247269153594971,
- -0.0014281582552939653,
- -0.13007448613643646,
- 0.021878113970160484,
- 0.05850103124976158,
- 0.01020768191665411,
- -0.062151022255420685,
- -0.03717337176203728,
- 0.0011527329916134477,
- -0.0013649346074089408,
- 0.12268926948308945,
- -0.02677956596016884,
- -0.040982648730278015,
- 0.02282891795039177,
- 0.010462578386068344,
- 0.057250432670116425,
- 0.00766405276954174,
- -0.040717147290706635,
- -0.0007489306153729558,
- 0.050866562873125076,
- 0.07440359145402908,
- -0.002406105399131775,
- -0.035865772515535355,
- 0.0763983204960823,
- 0.004961472004652023,
- 0.02510238066315651,
- 0.0042570182122290134,
- 0.041095342487096786,
- 0.029784822836518288,
- -0.05476836487650871,
- 0.008480041287839413,
- 0.12876513600349426,
- 0.020907284691929817,
- -0.014803444035351276,
- -0.01057165116071701,
- 0.00007788987568346784,
- 0.06987188011407852,
- -0.11004901677370071,
- -0.00563433300703764,
- 0.16900740563869476,
- 0.003867225954309106,
- 0.07906870543956757,
- -0.039528001099824905
- ]
- },
- {
- "keyword": "poetry",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.015573326498270035,
- 0.007246620953083038,
- 0.03771591931581497,
- 0.02359677478671074,
- -0.016549019142985344,
- 0.08645638823509216,
- 0.16525867581367493,
- -0.06532473117113113,
- 0.04506084695458412,
- -0.0035830021370202303,
- 0.030340515077114105,
- 0.035592008382081985,
- 0.005489089991897345,
- -0.05739235505461693,
- -0.004791191779077053,
- 0.07853374630212784,
- -0.012316826730966568,
- -0.04280530661344528,
- -0.052022531628608704,
- -0.021214911714196205,
- -0.05020952597260475,
- 0.07884719222784042,
- 0.022406945005059242,
- 0.018076743930578232,
- -0.0008695569122210145,
- 0.0812259390950203,
- -0.03533734008669853,
- 0.016040317714214325,
- -0.008874555118381977,
- -0.028088316321372986,
- -0.025553258135914803,
- 0.0205865316092968,
- 0.0026928484439849854,
- 0.010582517832517624,
- -0.021178731694817543,
- 0.04510410875082016,
- 0.012347003445029259,
- 0.042552996426820755,
- 0.04295269399881363,
- 0.03221108391880989,
- -0.013343289494514465,
- -0.004078056663274765,
- -0.05378778651356697,
- -0.014973631128668785,
- 0.03435511142015457,
- -0.024867787957191467,
- -0.029238244518637657,
- 0.05131170153617859,
- 0.03669607639312744,
- 0.08785444498062134,
- -0.009671172127127647,
- -0.02449207939207554,
- -0.07618393003940582,
- 0.013983039185404778,
- 0.02975471131503582,
- 0.0421065129339695,
- 0.05465478450059891,
- 0.07446230947971344,
- 0.017386455088853836,
- -0.04460201412439346,
- 0.016878589987754822,
- -0.06393352150917053,
- -0.04239223152399063,
- 0.029770975932478905,
- 0.05855037271976471,
- -0.054920319467782974,
- -0.01951872929930687,
- 0.11819072812795639,
- -0.011426366865634918,
- 0.024674931541085243,
- 0.006608570925891399,
- 0.036054253578186035,
- 0.01733018457889557,
- 0.06386592984199524,
- -0.008110950700938702,
- -0.007183535490185022,
- -0.016882868483662605,
- -0.07830650359392166,
- -0.018453795462846756,
- -0.07462822645902634,
- -0.012316431850194931,
- 0.005241940263658762,
- 0.038883522152900696,
- 0.00994501356035471,
- -0.0287972092628479,
- -0.024576103314757347,
- 0.04425235837697983,
- -0.017139287665486336,
- -0.0005629234947264194,
- 0.007100115064531565,
- 0.0019420008175075054,
- -0.09094344079494476,
- -0.037804096937179565,
- 0.05978153273463249,
- -0.04840382933616638,
- 0.041267029941082,
- 0.009857815690338612,
- -0.10604965686798096,
- 0.005405631382018328,
- 0.20746606588363647,
- 0.07672840356826782,
- 0.05104419216513634,
- 0.0005344155943021178,
- 0.06054893136024475,
- 0.058088187128305435,
- -0.021705759689211845,
- -0.011516150087118149,
- -0.04009092226624489,
- -0.07091983407735825,
- -0.05156382545828819,
- -0.0035598690155893564,
- -0.00907493568956852,
- 0.02073691599071026,
- -0.00993269681930542,
- 0.0571475513279438,
- -0.00660826126113534,
- 0.03594746068120003,
- -0.06078719347715378,
- -0.019946251064538956,
- 0.04359105974435806,
- -0.004887094721198082,
- -0.04136734828352928,
- -0.022069834172725677,
- -0.00926192943006754,
- -0.10309059172868729,
- -0.05192653834819794,
- -0.060180071741342545,
- -3.6301425524261874e-33,
- 0.053820785135030746,
- -0.0362822525203228,
- 0.0649898499250412,
- 0.050633739680051804,
- 0.058301761746406555,
- 0.010168997570872307,
- -0.041426755487918854,
- -0.08216626197099686,
- -0.04905639961361885,
- -0.06803625077009201,
- -0.03688402473926544,
- -0.05327373743057251,
- 0.008658102713525295,
- 0.017764020711183548,
- 0.05466067045927048,
- -0.02413640357553959,
- -0.017596585676074028,
- 0.012495752424001694,
- 0.058746542781591415,
- 0.022142095491290092,
- -0.02650221809744835,
- 0.11495598405599594,
- 0.058242883533239365,
- -0.020722847431898117,
- -0.050905920565128326,
- -0.02993237040936947,
- -0.03728298470377922,
- -0.0793391689658165,
- 0.013274425640702248,
- 0.012327312491834164,
- 0.014439190737903118,
- 0.10764539986848831,
- 0.07787258177995682,
- -0.03370442986488342,
- -0.0644180029630661,
- -0.044257186353206635,
- -0.07756687700748444,
- -0.025093140080571175,
- 0.047623779624700546,
- 0.022074857726693153,
- -0.055303819477558136,
- 0.001961854984983802,
- -0.006551765371114016,
- -0.06262145191431046,
- 0.026296893134713173,
- 0.09272889792919159,
- -0.06173698604106903,
- 0.04685655236244202,
- -0.028003714978694916,
- 0.037905916571617126,
- 0.03588010370731354,
- -0.00371533096767962,
- 0.015703460201621056,
- -0.01866975799202919,
- 0.04630967602133751,
- -0.04742809757590294,
- 0.04464372247457504,
- -0.06933360546827316,
- 0.04445042461156845,
- -0.0720161572098732,
- -0.012503473088145256,
- 0.044635381549596786,
- 0.06449855864048004,
- -0.056882210075855255,
- 0.007300697732716799,
- -0.011960034258663654,
- -0.02919004298746586,
- -0.10771729797124863,
- 0.05946904048323631,
- -0.06342906504869461,
- -0.12183479964733124,
- 0.0192335844039917,
- 0.020168200135231018,
- -0.014100154861807823,
- -0.014113351702690125,
- 0.010688082315027714,
- -0.006565053015947342,
- -0.04933441802859306,
- -0.034237101674079895,
- 0.059014685451984406,
- -0.10007596015930176,
- -0.07243185490369797,
- -0.009030872955918312,
- 0.026622291654348373,
- 0.030291657894849777,
- -0.03364337235689163,
- -0.03533155098557472,
- -0.09999195486307144,
- -0.014667638577520847,
- 0.09141620993614197,
- -0.09059232473373413,
- 0.03443455323576927,
- 0.08762163668870926,
- -0.12475738674402237,
- -0.08164536952972412,
- 3.5002805487030645e-33,
- 0.005678723566234112,
- -0.002066577086225152,
- -0.017974624410271645,
- 0.15112075209617615,
- 0.03403353691101074,
- -0.0021476333495229483,
- -0.015332275070250034,
- 0.03726546838879585,
- 0.0016592936590313911,
- 0.07710534334182739,
- -0.07293988019227982,
- 0.03387199342250824,
- 0.03850932791829109,
- -0.01490471325814724,
- 0.001112458878196776,
- -0.015879115089774132,
- 0.05476268008351326,
- 0.06010270491242409,
- 0.03372479975223541,
- 0.008589616045355797,
- -0.014049296267330647,
- 0.010776975192129612,
- -0.034437865018844604,
- -0.0947771966457367,
- -0.0027644624933600426,
- 0.0681060329079628,
- 0.032944079488515854,
- -0.047354646027088165,
- -0.050697363913059235,
- -0.04834015294909477,
- 0.06863430887460709,
- -0.03617371618747711,
- -0.02248065546154976,
- -0.031340133398771286,
- -0.013019945472478867,
- 0.04562728479504585,
- 0.07636453956365585,
- -0.0003958819143008441,
- -0.022260015830397606,
- 0.049760136753320694,
- 0.04537739232182503,
- 0.009182451292872429,
- 0.028992723673582077,
- 0.03330795466899872,
- 0.001998640364035964,
- -0.0610082745552063,
- -0.05415986850857735,
- 0.06603756546974182,
- -0.03216266259551048,
- 0.0026802781503647566,
- -0.02002410963177681,
- -0.048512015491724014,
- 0.022085629403591156,
- 0.049164749681949615,
- 0.04622882232069969,
- -0.10422638803720474,
- 0.025465546175837517,
- 0.0010258862748742104,
- -0.06647078692913055,
- 0.052939143031835556,
- 0.0035436858888715506,
- 0.046680185943841934,
- -0.03597250208258629,
- 0.027165181934833527,
- -0.018530430272221565,
- 0.012060168199241161,
- -0.012900290079414845,
- 0.023753607645630836,
- -0.11676350235939026,
- -0.00020136666717007756,
- 0.01683003082871437,
- -0.009526703506708145,
- -0.020446041598916054,
- 0.0758993849158287,
- 0.016577651724219322,
- 0.05590932443737984,
- -0.056341368705034256,
- 0.04439282417297363,
- -0.0814405009150505,
- -0.07982508093118668,
- -0.016026455909013748,
- -0.06455813348293304,
- -0.03074359893798828,
- 0.046450912952423096,
- -0.006877277046442032,
- -0.014363005757331848,
- 0.042354121804237366,
- -0.033560361713171005,
- 0.00512838875874877,
- -0.0048622977919876575,
- 0.026501145213842392,
- -0.0026265771593898535,
- 0.024362850934267044,
- -0.0262735728174448,
- 0.06046462804079056,
- -1.187735954033542e-8,
- -0.05348508432507515,
- -0.04201478138566017,
- -0.01604648306965828,
- -0.06150149926543236,
- 0.09796031564474106,
- 0.004559899680316448,
- 0.1555628776550293,
- -0.01155528798699379,
- -0.005944745149463415,
- 0.08795615285634995,
- 0.07223828136920929,
- 0.009891479276120663,
- 0.0692819207906723,
- -0.028157882392406464,
- 0.022047454491257668,
- -0.08281947672367096,
- 0.08722355216741562,
- -0.05722152441740036,
- -0.03846249729394913,
- -0.023463355377316475,
- 0.024271881207823753,
- 0.09421080350875854,
- -0.04259826987981796,
- -0.05742746964097023,
- -0.04625549912452698,
- -0.01140153594315052,
- 0.000568062998354435,
- -0.01323346234858036,
- -0.05169427767395973,
- -0.01333706732839346,
- 0.029743356630206108,
- 0.08973661810159683,
- 0.03357692435383797,
- -0.02988460473716259,
- -0.012795493938028812,
- -0.023975666612386703,
- 0.04626315087080002,
- -0.03711840882897377,
- -0.022834625095129013,
- -0.02801721729338169,
- -0.014553570188581944,
- 0.09252394735813141,
- 0.062460798770189285,
- -0.0835055410861969,
- 0.06411752849817276,
- -0.0916331335902214,
- 0.06840091943740845,
- 0.0039099883288145065,
- -0.017899390310049057,
- 0.06876110285520554,
- -0.002127319108694792,
- 0.0687939003109932,
- 0.08878567814826965,
- 0.03910569101572037,
- 0.03034982457756996,
- -0.0396813228726387,
- -0.05797490477561951,
- 0.07804053276777267,
- -0.09836766868829727,
- 0.00022406048083212227,
- 0.10788874328136444,
- 0.010477584786713123,
- 0.07099931687116623,
- -0.06746219843626022
- ]
- },
- {
- "keyword": "fiction",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.044362448155879974,
- -0.0011460683308541775,
- 0.013720229268074036,
- 0.039016254246234894,
- -0.07574838399887085,
- -0.02926989085972309,
- 0.0049506076611578465,
- -0.0022093954030424356,
- 0.06795811653137207,
- 0.05902684107422829,
- -0.0044160871766507626,
- 0.02249435894191265,
- -0.003146017901599407,
- 0.009564857929944992,
- -0.04950094223022461,
- -0.020306289196014404,
- -0.018822133541107178,
- -0.021757619455456734,
- -0.04684683308005333,
- -0.018247544765472412,
- 0.024837452918291092,
- -0.018862409517169,
- -0.0005846840795129538,
- 0.009951915591955185,
- 0.03992109373211861,
- 0.07902698218822479,
- 0.019427157938480377,
- 0.014747335575520992,
- -0.14445307850837708,
- -0.057620685547590256,
- -0.06383439898490906,
- 0.08086319267749786,
- -0.1087517961859703,
- -0.05919528380036354,
- -0.0020077091176062822,
- 0.031068194657564163,
- 0.037906043231487274,
- 0.03335345908999443,
- 0.057942699640989304,
- -0.04440740495920181,
- 0.0032581728883087635,
- -0.11104853451251984,
- 0.07698184251785278,
- 0.0052023655734956264,
- 0.03817431628704071,
- 0.042068418115377426,
- -0.048736076802015305,
- 0.021754998713731766,
- -0.028940945863723755,
- 0.01975085958838463,
- -0.06030048057436943,
- 0.08213391900062561,
- 0.0433235727250576,
- 0.0016837334260344505,
- 0.0075413077138364315,
- -0.011396456509828568,
- -0.01570572890341282,
- 0.01979200914502144,
- 0.028143085539340973,
- -0.08992055803537369,
- 0.03774852678179741,
- -0.016468320041894913,
- -0.06761877983808517,
- 0.055443935096263885,
- 0.075240857899189,
- 0.01118816714733839,
- -0.011762469075620174,
- 0.06367176026105881,
- -0.026834839954972267,
- -0.04979126527905464,
- 0.04483838379383087,
- 0.011938990093767643,
- 0.07872404903173447,
- 0.07689182460308075,
- 0.0636206865310669,
- -0.059655994176864624,
- -0.008750718086957932,
- -0.04068904370069504,
- 0.05237997695803642,
- -0.07767912745475769,
- -0.028040319681167603,
- -0.010084446519613266,
- -0.006503846496343613,
- 0.0791398361325264,
- -0.03872708976268768,
- -0.0010761419543996453,
- 0.04388910531997681,
- -0.01145550049841404,
- -0.061960313469171524,
- 0.08267658948898315,
- -0.040098436176776886,
- -0.09113622456789017,
- 0.01293661817908287,
- 0.05319925397634506,
- -0.08434492349624634,
- 0.02383562922477722,
- -0.06239667907357216,
- -0.018840478733181953,
- -0.04946731775999069,
- 0.21096958220005035,
- 0.01585116796195507,
- 0.029896194115281105,
- -0.05788206309080124,
- 0.004862362053245306,
- 0.0651623010635376,
- -0.07397666573524475,
- -0.011464427225291729,
- -0.031135322526097298,
- -0.045864287763834,
- -0.04245973378419876,
- -0.031469691544771194,
- 0.03714489936828613,
- -0.01814563386142254,
- -0.004605727735906839,
- 0.06565985828638077,
- 0.08100997656583786,
- 0.0713573694229126,
- 0.04637366905808449,
- 0.011133573949337006,
- -0.017859695479273796,
- -0.05201297253370285,
- 0.004832572769373655,
- -0.08631860464811325,
- 0.061129290610551834,
- -0.050802260637283325,
- -0.07980279624462128,
- 0.01709037832915783,
- -6.0070303333552545e-33,
- 0.019775908440351486,
- -0.07814587652683258,
- -0.0032375154551118612,
- 0.06096687540411949,
- -0.007115826476365328,
- -0.039149269461631775,
- 0.022032810375094414,
- -0.012341398745775223,
- -0.010467227548360825,
- 0.004263525363057852,
- -0.04716135188937187,
- 0.0491967499256134,
- -0.06815842539072037,
- 0.06969834119081497,
- 0.08607227355241776,
- 0.0697910264134407,
- -0.03441476449370384,
- 0.004963698796927929,
- 0.009626256301999092,
- -0.07048498839139938,
- -0.043049030005931854,
- 0.06514878571033478,
- -0.007007303647696972,
- 0.04263157770037651,
- -0.016029570251703262,
- -0.015858620405197144,
- -0.014445475302636623,
- 0.015702737495303154,
- 0.02404884435236454,
- 0.04893676936626434,
- -0.026984475553035736,
- 0.08726387470960617,
- 0.0646766722202301,
- -0.07913852483034134,
- 0.01110772229731083,
- -0.021865401417016983,
- -0.022348036989569664,
- -0.03740059956908226,
- 0.029659206047654152,
- 0.12679778039455414,
- 0.003907274454832077,
- -0.014441554434597492,
- -0.08805399388074875,
- -0.04474334046244621,
- 0.015048570930957794,
- 0.04641898721456528,
- 0.09137409180402756,
- 0.0020547339227050543,
- -0.08578857034444809,
- 0.10194939374923706,
- 0.0037454264238476753,
- -0.006952209863811731,
- -0.05243385583162308,
- 0.0030118271242827177,
- -0.003609789302572608,
- 0.01626005955040455,
- 0.02197013609111309,
- -0.02880074642598629,
- 0.040210992097854614,
- 0.020501520484685898,
- 0.02728971093893051,
- 0.1019628494977951,
- -0.012805151753127575,
- -0.013744737021625042,
- 0.05758216977119446,
- 0.003040056675672531,
- -0.02282697521150112,
- -0.045847613364458084,
- -0.02667117491364479,
- -0.05301506817340851,
- -0.10483317077159882,
- 0.045791879296302795,
- -0.011180589906871319,
- 0.047535866498947144,
- 0.008791433647274971,
- -0.014477853663265705,
- 0.08979099243879318,
- 0.02198931761085987,
- -0.10498767346143723,
- -0.017021406441926956,
- 0.002741893520578742,
- 0.0045166946947574615,
- -0.017351368442177773,
- 0.022054973989725113,
- 0.020493995398283005,
- 0.022791575640439987,
- -0.04460523650050163,
- -0.08126980066299438,
- -0.032960500568151474,
- 0.003434455255046487,
- -0.03001047857105732,
- -0.07064007967710495,
- 0.03015386313199997,
- -0.020482685416936874,
- -0.07247857004404068,
- 4.5111072427583504e-33,
- -0.07855052500963211,
- -0.045242272317409515,
- -0.05893008038401604,
- 0.09046362340450287,
- -0.0024649796541780233,
- -0.09233862161636353,
- -0.0917762964963913,
- 0.007412267383188009,
- 0.03278006240725517,
- 0.03345669433474541,
- -0.11366899311542511,
- -0.02739679254591465,
- 0.07091264426708221,
- 0.06741699576377869,
- 0.04434832185506821,
- -0.045719318091869354,
- 0.01870146207511425,
- -0.0345764085650444,
- -0.018948117271065712,
- 0.008560780435800552,
- -0.037050485610961914,
- -0.003362768329679966,
- 0.012793153524398804,
- -0.0632135197520256,
- 0.030807746574282646,
- 0.09533435851335526,
- 0.04620848596096039,
- 0.04447406902909279,
- -0.13772007822990417,
- 0.006934673059731722,
- 0.060339778661727905,
- 0.012158823199570179,
- -0.03626570850610733,
- -0.00702288281172514,
- -0.008792638778686523,
- 0.1427897959947586,
- 0.07643494009971619,
- -0.002211756771430373,
- 0.02667202614247799,
- -0.05407330021262169,
- 0.02701839804649353,
- -0.0488056056201458,
- -0.035263799130916595,
- 0.027871601283550262,
- -0.08281810581684113,
- 0.002511275466531515,
- 0.062071360647678375,
- 0.08039171993732452,
- 0.10444554686546326,
- 0.04808913171291351,
- -0.08919300138950348,
- 0.05364763364195824,
- 0.00994853489100933,
- -0.040627531707286835,
- -0.011095168069005013,
- -0.05413801595568657,
- -0.0975092425942421,
- -0.022882753983139992,
- 0.03345333784818649,
- 0.05035676434636116,
- 0.008907776325941086,
- 0.03888102248311043,
- 0.02796490490436554,
- 0.023197248578071594,
- -0.05841963365674019,
- -0.01654682867228985,
- -0.03617362678050995,
- 0.07294401526451111,
- -0.017670558765530586,
- 0.00577068654820323,
- 0.008518721908330917,
- -0.0013883017236366868,
- -0.06042436137795448,
- 0.042200710624456406,
- -0.049655068665742874,
- -0.004268923308700323,
- -0.07977133989334106,
- -0.009780444204807281,
- -0.026655593886971474,
- 0.06955268234014511,
- -0.008732515387237072,
- -0.06426781415939331,
- 0.022220168262720108,
- 0.08296321332454681,
- -0.028230784460902214,
- 0.07336229085922241,
- -0.03502340614795685,
- -0.015279886312782764,
- 0.0233621783554554,
- -0.004117975942790508,
- 0.025170600041747093,
- -0.033919818699359894,
- 0.02968093566596508,
- 0.03384285047650337,
- -0.0667220950126648,
- -1.3359068518070671e-8,
- 0.07164373993873596,
- -0.01328619010746479,
- 0.04109590873122215,
- 0.020191799849271774,
- 0.004861148074269295,
- 0.08362773805856705,
- 0.060833804309368134,
- 0.019933393225073814,
- -0.009947027079761028,
- 0.03740942105650902,
- -0.07104585319757462,
- 0.04992736503481865,
- 0.021621504798531532,
- 0.052531465888023376,
- 0.028845887631177902,
- -0.06585580855607986,
- 0.0522942915558815,
- -0.006007923278957605,
- -0.06606779247522354,
- 0.05785800889134407,
- 0.06896799057722092,
- 0.016633417457342148,
- 0.0018337472574785352,
- -0.029693039134144783,
- 0.0022866474464535713,
- 0.020261671394109726,
- 0.0594199039041996,
- -0.07267400622367859,
- 0.04061206057667732,
- 0.10056234896183014,
- -0.008971595205366611,
- 0.028152545914053917,
- -0.036978188902139664,
- 0.010636772960424423,
- -0.049924250692129135,
- -0.0466044582426548,
- 0.07297733426094055,
- -0.025759922340512276,
- -0.046307314187288284,
- -0.07865840196609497,
- 0.06115754321217537,
- 0.01919592171907425,
- -0.009927991777658463,
- 0.020421842113137245,
- 0.050528377294540405,
- -0.07966846972703934,
- 0.11730486899614334,
- -0.049286503344774246,
- 0.0394953154027462,
- -0.01887490600347519,
- 0.006965189706534147,
- 0.05033660680055618,
- 0.07295170426368713,
- 0.0630650520324707,
- 0.024734126403927803,
- -0.0012499287258833647,
- -0.030787743628025055,
- 0.06738471239805222,
- -0.07607594132423401,
- 0.011269809678196907,
- 0.056166715919971466,
- -0.016562670469284058,
- 0.05142249912023544,
- -0.03359405696392059
- ]
- },
- {
- "keyword": "art",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.02290620468556881,
- 0.09761888533830643,
- 0.017420852556824684,
- -0.04893958196043968,
- -0.056706931442022324,
- 0.014739591628313065,
- 0.12159015238285065,
- -0.03760943189263344,
- 0.01574304699897766,
- -0.03863042965531349,
- -0.02258635312318802,
- 0.020423397421836853,
- 0.005663336720317602,
- 0.010478153824806213,
- -0.09331701695919037,
- 0.00680159218609333,
- 0.02617933787405491,
- 0.02234557457268238,
- -0.036604274064302444,
- -0.03266838565468788,
- -0.04851425439119339,
- 0.05717324838042259,
- -0.01849026419222355,
- -0.0021560369059443474,
- 0.02152811735868454,
- 0.10224268585443497,
- 0.04161848500370979,
- -0.026866843923926353,
- 0.07856826484203339,
- -0.08593156933784485,
- -0.04180547595024109,
- 0.04380248859524727,
- 0.009939148090779781,
- -0.035750046372413635,
- -0.018855474889278412,
- 0.05890744924545288,
- 0.01758078671991825,
- 0.036633219569921494,
- 0.045394167304039,
- -0.0014655019622296095,
- -0.04018773138523102,
- 0.002715311711654067,
- -0.07725278288125992,
- -0.055979568511247635,
- 0.04949194937944412,
- -0.011764287948608398,
- -0.035966869443655014,
- 0.03176690265536308,
- -0.008869322016835213,
- 0.048442985862493515,
- -0.02516673319041729,
- -0.01831219345331192,
- -0.10938021540641785,
- -0.056361161172389984,
- 0.035156141966581345,
- -0.01483192853629589,
- -0.010643490590155125,
- -0.02256687358021736,
- 0.02596486359834671,
- -0.04525524750351906,
- 0.11364059150218964,
- 0.021190406754612923,
- -0.013826060108840466,
- 0.06089300289750099,
- 0.022207655012607574,
- -0.00025529612321406603,
- -0.0009320257231593132,
- 0.06404323875904083,
- -0.037211086601018906,
- -0.11495357006788254,
- 0.09104622155427933,
- -0.014749106019735336,
- -0.02474084682762623,
- 0.02953939326107502,
- 0.04717569053173065,
- -0.0038217767141759396,
- -0.022334853187203407,
- -0.06874088943004608,
- -0.020359814167022705,
- -0.08658171445131302,
- 0.04981928691267967,
- -0.009459752589464188,
- -0.05489327758550644,
- 0.021878482773900032,
- -0.02467084303498268,
- -0.005579136777669191,
- -0.018320998176932335,
- -0.04132712259888649,
- 0.03598056361079216,
- 0.03415144234895706,
- -0.00345817138440907,
- -0.009611792862415314,
- -0.03460396081209183,
- 0.019161280244588852,
- 0.012289756909012794,
- 0.004725200589746237,
- -0.012277676723897457,
- -0.0728532075881958,
- -0.058840468525886536,
- 0.23971781134605408,
- 0.01591949164867401,
- -0.001948960474692285,
- 0.018786998465657234,
- 0.023153403773903847,
- 0.02850150130689144,
- -0.03822273388504982,
- -0.08490757644176483,
- 0.004553580656647682,
- -0.0588257797062397,
- 0.033175934106111526,
- -0.0674053356051445,
- 0.015439414419233799,
- 0.00883723795413971,
- 0.043764378875494,
- 0.03207211196422577,
- 0.036221858114004135,
- 0.01818229816854,
- -0.05114661529660225,
- 0.05113435164093971,
- -0.06508876383304596,
- -0.0031472304835915565,
- 0.002746280748397112,
- 0.019262569025158882,
- -0.0472739115357399,
- -0.039069950580596924,
- -0.13124047219753265,
- -0.09848088026046753,
- -4.4064077976405324e-33,
- 0.06661278009414673,
- -0.053342148661613464,
- 0.055324967950582504,
- 0.03731795772910118,
- 0.029942041262984276,
- 0.01617482863366604,
- 0.01054201927036047,
- -0.024404825642704964,
- 0.027550827711820602,
- 0.0507395975291729,
- 0.0030540218576788902,
- 0.01876540668308735,
- -0.022725507616996765,
- 0.07293548434972763,
- 0.11971636116504669,
- 0.04851720482110977,
- -0.011586619541049004,
- 0.04976968839764595,
- -0.013465920463204384,
- 0.019734587520360947,
- -0.047197721898555756,
- -0.011019032448530197,
- 0.01601497083902359,
- 0.04549957439303398,
- -0.07244417071342468,
- 0.0322239026427269,
- -0.012864968739449978,
- -0.07130122929811478,
- 0.01596517488360405,
- 0.03099193051457405,
- -0.03971003741025925,
- 0.09777393937110901,
- 0.09994266927242279,
- -0.030488749966025352,
- -0.11772870272397995,
- -0.0825045183300972,
- 0.005640777759253979,
- -0.09588608145713806,
- 0.08312974125146866,
- 0.033075086772441864,
- 0.01187301054596901,
- -0.0011637291172519326,
- -0.07321270555257797,
- 0.0020866678096354008,
- 0.0271600391715765,
- 0.08555326610803604,
- 0.09446157515048981,
- 0.015870705246925354,
- -0.0616033673286438,
- 0.0803503692150116,
- 0.0736272856593132,
- 0.031059453263878822,
- -0.040478531271219254,
- 0.02221493609249592,
- 0.006485833786427975,
- 0.007189959287643433,
- -0.03182075545191765,
- -0.05949088931083679,
- -0.041649091988801956,
- -0.03300447762012482,
- 0.060886748135089874,
- 0.08371394127607346,
- -0.018665768206119537,
- 0.04026409611105919,
- -0.008150427602231503,
- 0.025067023932933807,
- -0.034657325595617294,
- -0.032625798135995865,
- 0.06512004882097244,
- -0.01802649348974228,
- -0.14247365295886993,
- -0.01519335899502039,
- 0.07634420692920685,
- -0.04380244016647339,
- -0.018255090340971947,
- -0.009940861724317074,
- 0.04650328680872917,
- -0.015263623557984829,
- -0.02535812370479107,
- 0.07208321243524551,
- -0.11298463493585587,
- -0.012450090609490871,
- 0.01831519603729248,
- -0.024201154708862305,
- 0.01873789168894291,
- 0.026534441858530045,
- 0.006253857631236315,
- -0.05735171586275101,
- -0.00260779052041471,
- 0.05945345759391785,
- -0.040622130036354065,
- 0.01075572706758976,
- 0.03194260224699974,
- 0.027382012456655502,
- 0.005176258739084005,
- 4.1470889684033355e-33,
- -0.020864510908722878,
- -0.0055794320069253445,
- 0.0075864666141569614,
- 0.05947810783982277,
- 0.03847217187285423,
- -0.03351663053035736,
- -0.0016918302280828357,
- 0.04466202110052109,
- 0.053462643176317215,
- 0.10003483295440674,
- -0.051635824143886566,
- -0.04431140795350075,
- -0.01471148245036602,
- 0.026022175326943398,
- -0.01130145788192749,
- -0.07151748239994049,
- 0.0933491587638855,
- -0.04967699199914932,
- -0.049581073224544525,
- 0.04325069114565849,
- -0.020869184285402298,
- 0.03154120221734047,
- 0.04566711187362671,
- -0.11621899902820587,
- -0.04317549988627434,
- 0.13081775605678558,
- -0.018006084486842155,
- -0.057994544506073,
- -0.02175164222717285,
- 0.0411313995718956,
- 0.06688676029443741,
- -0.04048076272010803,
- 0.0036935308016836643,
- -0.020205967128276825,
- -0.030816318467259407,
- 0.07522222399711609,
- 0.07111897319555283,
- -0.0017477864166721702,
- 0.0016243382124230266,
- 0.027995625510811806,
- 0.05360722169280052,
- -0.02906963787972927,
- -0.00517694279551506,
- 0.15132968127727509,
- -0.058086760342121124,
- -0.03454858437180519,
- -0.03653321415185928,
- 0.05962769687175751,
- 0.03150201216340065,
- -0.02181115560233593,
- -0.0183239933103323,
- -0.015582682564854622,
- 0.027613388374447823,
- -0.055387482047080994,
- 0.00890734139829874,
- -0.021694347262382507,
- -0.01759978011250496,
- 0.011198380030691624,
- -0.02023986540734768,
- 0.05665263161063194,
- 0.006734388414770365,
- 0.0500582680106163,
- -0.07935464382171631,
- -0.004473796114325523,
- -0.008206834085285664,
- 0.012874912470579147,
- -0.013859066180884838,
- -0.0004957884666509926,
- -0.049357783049345016,
- 0.02286243997514248,
- 0.09888176620006561,
- 0.08675892651081085,
- -0.029254263266921043,
- 0.09074568748474121,
- -0.0701156035065651,
- -0.01695304363965988,
- -0.011126238852739334,
- 0.09399054944515228,
- 0.057317301630973816,
- -0.09754613041877747,
- -0.10837197303771973,
- -0.08333811163902283,
- -0.06193847581744194,
- 0.055375076830387115,
- -0.013467825949192047,
- 0.02168000489473343,
- -0.0752960741519928,
- -0.03835147246718407,
- 0.01054389588534832,
- -0.021491622552275658,
- 0.03148995339870453,
- 0.014672464691102505,
- -0.013378934934735298,
- 0.007869092747569084,
- -0.019437404349446297,
- -1.3074035187798927e-8,
- 0.010709919035434723,
- -0.02659193053841591,
- 0.05263302102684975,
- -0.11742781847715378,
- 0.06256610155105591,
- 0.06489741057157516,
- 0.04668847844004631,
- -0.007341924589127302,
- -0.048896756023168564,
- 0.05153009295463562,
- 0.05239923298358917,
- 0.006539082154631615,
- 0.04369823634624481,
- 0.04544884338974953,
- 0.05019712820649147,
- -0.08918055891990662,
- 0.018254460766911507,
- -0.002920035272836685,
- -0.014336638152599335,
- -0.065656378865242,
- -0.027597740292549133,
- -0.019009720534086227,
- -0.02148803137242794,
- -0.042941976338624954,
- -0.12293405830860138,
- 0.024497125297784805,
- 0.034903526306152344,
- -0.010993128642439842,
- -0.030633511021733284,
- 0.03631624951958656,
- -0.031837958842515945,
- 0.1020696833729744,
- 0.01684606820344925,
- -0.0011327341198921204,
- 0.021114395931363106,
- -0.0455564484000206,
- 0.020120933651924133,
- -0.08787359297275543,
- -0.037654709070920944,
- 0.0012940067099407315,
- 0.00039958898560144007,
- 0.052725981920957565,
- 0.11312638968229294,
- -0.08669871091842651,
- 0.018109451979398727,
- 0.029034866020083427,
- 0.06232612952589989,
- 0.030100535601377487,
- -0.013042286969721317,
- 0.010814936831593513,
- -0.046028222888708115,
- 0.005564663093537092,
- 0.03186634182929993,
- 0.031112918630242348,
- 0.024414224550127983,
- -0.03996048495173454,
- -0.013864660635590553,
- 0.03918107971549034,
- -0.0029467095155268908,
- 0.06334919482469559,
- 0.10054459422826767,
- -0.00008597245323471725,
- 0.00789115484803915,
- 0.010737636126577854
- ]
- },
- {
- "keyword": "music",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.022044198587536812,
- -0.016871245577931404,
- 0.004007252864539623,
- -0.0031940422486513853,
- -0.10576504468917847,
- 0.09079932421445847,
- 0.11766403168439865,
- -0.04416549578309059,
- 0.055618152022361755,
- 0.011226560920476913,
- -0.0022533624432981014,
- -0.010646538808941841,
- 0.039362832903862,
- -0.05661178007721901,
- -0.034962404519319534,
- 0.02289481647312641,
- 0.013812677934765816,
- 0.009705930016934872,
- -0.058037515729665756,
- -0.06245988979935646,
- -0.10852378606796265,
- 0.05667155981063843,
- -0.045502979308366776,
- 0.048254963010549545,
- 0.008781982585787773,
- 0.12805889546871185,
- -0.02654411271214485,
- 0.06633147597312927,
- -0.009328401647508144,
- -0.1008109301328659,
- 0.00024773809127509594,
- 0.08975793421268463,
- 0.0752372294664383,
- -0.045296575874090195,
- -0.13513092696666718,
- -0.005413672886788845,
- -0.0023036340717226267,
- -0.03353049233555794,
- 0.0039036949165165424,
- 0.00039586517959833145,
- -0.0004323413595557213,
- 0.013570306822657585,
- 0.035870686173439026,
- -0.041040822863578796,
- -0.03638676181435585,
- -0.02779863215982914,
- -0.02074073627591133,
- -0.018871814012527466,
- 0.003555586561560631,
- 0.08148181438446045,
- -0.006339016370475292,
- 0.04394504055380821,
- -0.04479851573705673,
- 0.049543529748916626,
- -0.002168662380427122,
- -0.04690858721733093,
- 0.018046380952000618,
- 0.08653574436903,
- 0.04368645325303078,
- 0.014103212393820286,
- 0.0222924891859293,
- -0.04567303508520126,
- -0.03104584664106369,
- -0.009858406148850918,
- 0.07400445640087128,
- -0.01858253963291645,
- 0.00874282419681549,
- 0.06769262999296188,
- -0.016733935102820396,
- -0.004274251405149698,
- 0.027640188112854958,
- -0.006863973569124937,
- 0.04266224056482315,
- 0.018828416243195534,
- 0.06169942393898964,
- -0.007891216315329075,
- -0.015064639039337635,
- -0.06596250832080841,
- -0.004117622505873442,
- -0.04472140222787857,
- 0.08025474101305008,
- -0.06253594160079956,
- -0.0951818972826004,
- -0.09217635542154312,
- -0.0029190366622060537,
- -0.03126271069049835,
- -0.007849730551242828,
- 0.02210199646651745,
- -0.07425957918167114,
- -0.015397479757666588,
- -0.07224483042955399,
- -0.02039150893688202,
- -0.02731415256857872,
- 0.026257168501615524,
- -0.027129381895065308,
- 0.07898712903261185,
- -0.01370449922978878,
- -0.07483126223087311,
- -0.023086393252015114,
- 0.2260410338640213,
- 0.04181569069623947,
- 0.06426079571247101,
- 0.04315881431102753,
- 0.04274540767073631,
- -0.025291962549090385,
- -0.08300009369850159,
- -0.035091008991003036,
- 0.11312044411897659,
- 0.0039990185759961605,
- -0.0365975946187973,
- 0.001991791883483529,
- 0.000058947935031028464,
- -0.045779332518577576,
- 0.0056142439134418964,
- 0.05063202604651451,
- 0.03500092029571533,
- 0.0464070625603199,
- 0.055384084582328796,
- 0.03186532482504845,
- -0.004400968551635742,
- -0.012812613509595394,
- -0.029958780854940414,
- -0.026773646473884583,
- 0.007675416301935911,
- -0.06457971036434174,
- -0.03685975447297096,
- -0.058148592710494995,
- -2.9723814641121297e-33,
- 0.04949885979294777,
- -0.11946819722652435,
- 0.06954578310251236,
- 0.03808113932609558,
- 0.06263008713722229,
- -0.02119222842156887,
- -0.059818487614393234,
- -0.02555806003510952,
- 0.028417686000466347,
- 0.08171515166759491,
- 0.04333573952317238,
- 0.036562953144311905,
- -0.04422982037067413,
- 0.009960954077541828,
- 0.11195593327283859,
- -0.04410552233457565,
- -0.06993885338306427,
- 0.0605170838534832,
- -0.015305716544389725,
- 0.010207309387624264,
- -0.03142060711979866,
- 0.010952601209282875,
- 0.03311122953891754,
- 0.08435690402984619,
- 0.012686836533248425,
- -0.032124876976013184,
- 0.03238902613520622,
- -0.12140084058046341,
- 0.04121393710374832,
- -0.016329677775502205,
- -0.005335986614227295,
- 0.029066866263747215,
- 0.03357604146003723,
- -0.02833845280110836,
- -0.024804536253213882,
- -0.008564798161387444,
- -0.023557061329483986,
- -0.03142319992184639,
- 0.05717222020030022,
- -0.06354956328868866,
- -0.012162500992417336,
- 0.010795451700687408,
- -0.06533235311508179,
- -0.018649592995643616,
- 0.006266786251217127,
- 0.03564782813191414,
- 0.054820600897073746,
- 0.058484308421611786,
- -0.05311412364244461,
- 0.04485911503434181,
- 0.0054444014094769955,
- 0.010126745328307152,
- 0.0005311021814122796,
- 0.035128019750118256,
- 0.05076807737350464,
- 0.01581408828496933,
- 0.03737685829401016,
- 0.0111875394359231,
- 0.03177124634385109,
- -0.010630560107529163,
- 0.10542243719100952,
- 0.11564695090055466,
- 0.02005619928240776,
- -0.09242136776447296,
- 0.0028457094449549913,
- 0.025357477366924286,
- 0.03129986673593521,
- -0.04418719932436943,
- 0.09418641775846481,
- -0.05229359120130539,
- -0.0858251079916954,
- -0.02446052059531212,
- 0.018723633140325546,
- -0.02045281045138836,
- -0.0010279855923727155,
- 0.013923346996307373,
- -0.005168592091649771,
- -0.08093225955963135,
- -0.01215673703700304,
- 0.020338408648967743,
- -0.04490591958165169,
- 0.00819645170122385,
- -0.00810304656624794,
- 0.024552272632718086,
- -0.01148216798901558,
- 0.05442101135849953,
- -0.03192814812064171,
- -0.13429643213748932,
- -0.02049156278371811,
- 0.02093627117574215,
- -0.14726905524730682,
- -0.0051511237397789955,
- 0.030616821721196175,
- 0.03233269974589348,
- -0.00554993050172925,
- 2.3010573750414906e-33,
- -0.012004031799733639,
- 0.018873313441872597,
- 0.056014709174633026,
- 0.03968966007232666,
- 0.04616847634315491,
- 0.02746487595140934,
- -0.014585728757083416,
- -0.009203119203448296,
- 0.02470487728714943,
- 0.08845696598291397,
- -0.04515841603279114,
- -0.03455066680908203,
- 0.06857789307832718,
- 0.010210055857896805,
- -0.05599706619977951,
- -0.02354808710515499,
- 0.037906713783741,
- 0.03733762726187706,
- 0.046490587294101715,
- 0.01834450662136078,
- -0.08577719330787659,
- -0.023132162168622017,
- 0.032684992998838425,
- -0.06127600371837616,
- -0.07701137661933899,
- 0.01185368187725544,
- -0.003880101954564452,
- 0.0071358103305101395,
- -0.031169753521680832,
- 0.01704266667366028,
- 0.07509259134531021,
- -0.014407938346266747,
- -0.01111285388469696,
- -0.11524508148431778,
- -0.0028717543464154005,
- 0.08397975564002991,
- 0.09067292511463165,
- 0.03147827833890915,
- -0.04672631248831749,
- -0.017714641988277435,
- -0.013646661303937435,
- 0.03032265231013298,
- 0.08566685020923615,
- 0.13422757387161255,
- -0.016377732157707214,
- 0.007840030826628208,
- -0.031226644292473793,
- 0.15514129400253296,
- -0.039737120270729065,
- -0.01968107372522354,
- 0.018949216231703758,
- -0.03736063465476036,
- 0.026977963745594025,
- -0.10157120227813721,
- -0.03634405881166458,
- 0.024300141260027885,
- -0.056433629244565964,
- -0.05515347421169281,
- -0.018569298088550568,
- 0.03479759767651558,
- 0.01054810918867588,
- 0.04257376864552498,
- -0.08622829616069794,
- -0.018496301025152206,
- -0.05019332468509674,
- 0.09535135328769684,
- 0.025107255205512047,
- -0.003912332933396101,
- -0.025052176788449287,
- 0.0373760461807251,
- 0.05715532600879669,
- 0.055821217596530914,
- -0.0171507615596056,
- 0.021601645275950432,
- -0.10636328905820847,
- -0.004218146204948425,
- -0.0891522690653801,
- -0.0012801414122805,
- 0.025214066728949547,
- -0.0660645142197609,
- 0.040624283254146576,
- -0.005474936682730913,
- -0.05766681954264641,
- -0.016485702246427536,
- -0.049299903213977814,
- 0.029817571863532066,
- 0.08855125308036804,
- -0.0007377567235380411,
- -0.019100209698081017,
- -0.03536932170391083,
- 0.04677153378725052,
- 0.01031526643782854,
- -0.0601060651242733,
- -0.004644067492336035,
- -0.05726669728755951,
- -1.2073515520683031e-8,
- -0.017759473994374275,
- -0.015522362664341927,
- -0.039064764976501465,
- -0.06690825521945953,
- 0.021251732483506203,
- 0.07711562514305115,
- 0.09800951182842255,
- -0.02429082803428173,
- 0.022606130689382553,
- 0.031762152910232544,
- 0.01737361215054989,
- -0.016086407005786896,
- 0.02197999507188797,
- 0.04388635605573654,
- 0.052749667316675186,
- -0.0393434576690197,
- -0.00524527532979846,
- 0.04281371086835861,
- -0.05061274766921997,
- 0.008601145818829536,
- 0.03807045891880989,
- 0.012510492466390133,
- 0.04102011397480965,
- -0.03272542729973793,
- -0.03420547395944595,
- -0.0022392042446881533,
- 0.10836351662874222,
- 0.05268309265375137,
- 0.03468871861696243,
- 0.05292079970240593,
- -0.026190072298049927,
- 0.02829512022435665,
- -0.012009517289698124,
- -0.060845259577035904,
- 0.013406862504780293,
- -0.0719313770532608,
- 0.020292723551392555,
- -0.1043439731001854,
- -0.04631764814257622,
- -0.009457366541028023,
- -0.010450429283082485,
- 0.07564876228570938,
- 0.04839291796088219,
- -0.05283333733677864,
- -0.07506543397903442,
- -0.02964583970606327,
- 0.08590403944253922,
- -0.012605887837707996,
- -0.02185002714395523,
- 0.012033989652991295,
- -0.08215046674013138,
- -0.01476878672838211,
- 0.00048808386782184243,
- 0.030507735908031464,
- 0.03982476145029068,
- 0.026926008984446526,
- -0.05563357472419739,
- 0.08225830644369125,
- -0.06731691211462021,
- 0.029335951432585716,
- 0.029454655945301056,
- -0.01938234642148018,
- 0.060082919895648956,
- 0.021809443831443787
- ]
- },
- {
- "keyword": "sports",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0018835491500794888,
- 0.0690678134560585,
- -0.012528348714113235,
- -0.02781071700155735,
- 0.019025886431336403,
- 0.03886730223894119,
- 0.11255097389221191,
- 0.005821441300213337,
- 0.04664868861436844,
- 0.09355411678552628,
- -0.04921158775687218,
- -0.051541879773139954,
- -0.034192923456430435,
- 0.040606576949357986,
- 0.016122912988066673,
- -0.026100946590304375,
- -0.03228648006916046,
- 0.0008981829159893095,
- -0.0678204670548439,
- -0.07773672789335251,
- -0.039737507700920105,
- 0.04417476803064346,
- -0.003888072445988655,
- 0.028335604816675186,
- -0.01070233341306448,
- 0.06353013962507248,
- -0.05301835015416145,
- 0.044223394244909286,
- -0.10371815413236618,
- -0.07726938277482986,
- -0.053633302450180054,
- -0.01164308376610279,
- 0.062240201979875565,
- 0.07045885175466537,
- -0.08593826740980148,
- 0.016949517652392387,
- 0.009057375602424145,
- 0.03880828246474266,
- 0.021406110376119614,
- 0.0335916131734848,
- -0.006568460259586573,
- -0.10545475035905838,
- 0.027021465823054314,
- 0.021168628707528114,
- 0.025392908602952957,
- 0.07896431535482407,
- 0.03489547222852707,
- 0.0014890027232468128,
- 0.0033544222824275494,
- 0.04567134380340576,
- 0.03330304101109505,
- 0.04184533655643463,
- -0.009494022466242313,
- 0.02948722243309021,
- 0.12999090552330017,
- 0.004285123664885759,
- -0.06686720997095108,
- 0.04161674901843071,
- 0.015549415722489357,
- -0.016741639003157616,
- 0.10750190168619156,
- -0.01138839591294527,
- -0.08164378255605698,
- 0.06079690158367157,
- -0.042759381234645844,
- -0.01727377437055111,
- -0.055999234318733215,
- 0.06811440736055374,
- -0.02082636207342148,
- -0.04049684852361679,
- 0.053460218012332916,
- -0.03677889704704285,
- 0.025656549260020256,
- 0.01331871934235096,
- 0.10843895375728607,
- 0.018772993236780167,
- 0.0009594917646609247,
- -0.012736622244119644,
- 0.04087965562939644,
- -0.025547925382852554,
- 0.007271099369972944,
- -0.11994508653879166,
- -0.07586163282394409,
- 0.03333429992198944,
- 0.02712072990834713,
- -0.04258732497692108,
- -0.0027490523643791676,
- -0.023599103093147278,
- -0.01032495591789484,
- 0.07816718518733978,
- -0.0971585214138031,
- -0.045950815081596375,
- 0.0796939954161644,
- 0.017169898375868797,
- -0.09440932422876358,
- 0.07323846966028214,
- -0.022114567458629608,
- -0.09234003722667694,
- -0.032877594232559204,
- 0.2367924600839615,
- 0.060716282576322556,
- 0.03149821236729622,
- 0.031157881021499634,
- 0.0899849683046341,
- -0.01438093651086092,
- 0.015644339844584465,
- -0.0559256412088871,
- 0.07026496529579163,
- 0.012722320854663849,
- 0.06716527044773102,
- -0.0032866226974874735,
- 0.041613154113292694,
- -0.04591524973511696,
- 0.025345277041196823,
- -0.08739587664604187,
- 0.11434577405452728,
- 0.0192379392683506,
- 0.008398648351430893,
- -0.022206496447324753,
- 0.04061170294880867,
- -0.017970863729715347,
- 0.024440104141831398,
- 0.0030115048866719007,
- 0.02894175425171852,
- -0.018088573589920998,
- -0.04427052661776543,
- 0.0012826574966311455,
- -6.373564900304998e-33,
- -0.02962602488696575,
- -0.13034483790397644,
- 0.019475523382425308,
- 0.047332242131233215,
- -0.07722465693950653,
- 0.04808458313345909,
- 0.0506192110478878,
- -0.06492453068494797,
- 0.01460213866084814,
- -0.03260551765561104,
- 0.0011706469813361764,
- 0.12221407145261765,
- -0.006960519123822451,
- 0.01794266514480114,
- 0.15569305419921875,
- -0.0014388717245310545,
- -0.06389518082141876,
- 0.024222495034337044,
- -0.01743702031672001,
- 0.045550428330898285,
- 0.045944731682538986,
- -0.007967201061546803,
- -0.0012967509683221579,
- 0.05221707746386528,
- -0.04962301254272461,
- 0.002154711401090026,
- -0.005361337214708328,
- -0.10944349318742752,
- 0.014319435693323612,
- 0.027471249923110008,
- 0.007033070083707571,
- 0.026332907378673553,
- -0.029327837750315666,
- -0.0576910674571991,
- 0.039372000843286514,
- -0.07196629047393799,
- 0.016705675050616264,
- -0.059769049286842346,
- 0.010246017016470432,
- -0.022372474893927574,
- 0.01530422642827034,
- -0.038172103464603424,
- -0.10225889086723328,
- -0.059818703681230545,
- 0.01357300579547882,
- 0.024287819862365723,
- 0.039124589413404465,
- -0.0014393015298992395,
- -0.10318757593631744,
- -0.03255661204457283,
- 0.011642029508948326,
- -0.03328695893287659,
- 0.05801927670836449,
- -0.08564918488264084,
- 0.05291866138577461,
- -0.045004624873399734,
- 0.0362490750849247,
- -0.03229567036032677,
- -0.06907080858945847,
- -0.03258952870965004,
- 0.022740432992577553,
- 0.10799144208431244,
- -0.0036998954601585865,
- -0.05769394338130951,
- -0.07528913766145706,
- 0.004467763472348452,
- 0.041688356548547745,
- 0.00942982267588377,
- 0.015963535755872726,
- -0.057725030928850174,
- 0.015807434916496277,
- 0.09168128669261932,
- -0.043660588562488556,
- -0.0009429058409295976,
- 0.008437367156147957,
- 0.08464045822620392,
- 0.06754282861948013,
- -0.005079746711999178,
- -0.05263802409172058,
- 0.01775187999010086,
- 0.007292989641427994,
- 0.009205142967402935,
- -0.013838478364050388,
- -0.018800850957632065,
- 0.019098825752735138,
- 0.009303806349635124,
- -0.05632418766617775,
- -0.09497638791799545,
- -0.015142420306801796,
- -0.006605358328670263,
- -0.18578755855560303,
- -0.028059037402272224,
- -0.01979929953813553,
- 0.04175981879234314,
- -0.010685763321816921,
- 3.4381846922788925e-33,
- -0.05897060036659241,
- -0.07455181330442429,
- -0.0032764042261987925,
- 0.07106887549161911,
- 0.05080200731754303,
- -0.05080461874604225,
- 0.04082661494612694,
- 0.005826620850712061,
- 0.049065060913562775,
- 0.07287052273750305,
- -0.04877260699868202,
- -0.0752376914024353,
- -0.0068462989293038845,
- 0.05475851893424988,
- -0.0076409922912716866,
- -0.05434435233473778,
- -0.009646717458963394,
- 0.00526564521715045,
- -0.06028154864907265,
- 0.044956862926483154,
- 0.015101106837391853,
- 0.03069380857050419,
- 0.014245144091546535,
- -0.03602992370724678,
- -0.05567177012562752,
- 0.013280751183629036,
- -0.029877660796046257,
- -0.008244545198976994,
- -0.0366072803735733,
- 0.04681291803717613,
- 0.025550037622451782,
- 0.054499175399541855,
- 0.0412430614233017,
- 0.01927812211215496,
- -0.017558453604578972,
- 0.13154800236225128,
- 0.053880490362644196,
- 0.007201353553682566,
- -0.007558028679341078,
- -0.08028824627399445,
- 0.11480049043893814,
- -0.026202118024230003,
- 0.0056316726841032505,
- 0.0840001255273819,
- 0.02313085086643696,
- -0.003820036770775914,
- 0.01656634546816349,
- 0.055795855820178986,
- -0.016357460990548134,
- 0.01918715052306652,
- -0.022704625502228737,
- 0.0027513322420418262,
- -0.026497457176446915,
- -0.005440358072519302,
- 0.017636004835367203,
- 0.002557723317295313,
- -0.09767254441976547,
- -0.036055900156497955,
- -0.06111195310950279,
- -0.05292346701025963,
- -0.015812784433364868,
- 0.07420354336500168,
- -0.11097808927297592,
- 0.12024877965450287,
- -0.019813841208815575,
- 0.05480220168828964,
- -0.04397864639759064,
- -0.02018151991069317,
- -0.08334849774837494,
- -0.04971402883529663,
- -0.0029158799443393946,
- 0.051100097596645355,
- -0.04108492657542229,
- -0.003567212028428912,
- -0.03347872942686081,
- 0.022112367674708366,
- -0.051198527216911316,
- 0.09276997298002243,
- 0.06404995173215866,
- 0.05444052442908287,
- -0.018611334264278412,
- -0.01068217121064663,
- -0.025446364656090736,
- 0.026744915172457695,
- -0.028611768037080765,
- 0.046527884900569916,
- 0.051977578550577164,
- 0.03721891716122627,
- -0.028938667848706245,
- -0.028547337278723717,
- 0.03988959267735481,
- 0.06155093014240265,
- -0.011342602781951427,
- -0.007769160438328981,
- -0.005858707707375288,
- -1.2746302680000099e-8,
- -0.006937142927199602,
- 0.021187154576182365,
- -0.007641009986400604,
- -0.01559192594140768,
- -0.002595124999061227,
- 0.044516727328300476,
- 0.014376234263181686,
- -0.005877590272575617,
- 0.06894400715827942,
- -0.020896879956126213,
- -0.04496855288743973,
- 0.0008153379312716424,
- 0.03506842628121376,
- 0.022374501451849937,
- 0.04962429031729698,
- -0.03322143480181694,
- -0.04092060402035713,
- 0.02608051337301731,
- -0.043545424938201904,
- 0.0330844521522522,
- 0.012407313100993633,
- -0.04531702771782875,
- -0.019307119771838188,
- 0.06776173412799835,
- -0.034817881882190704,
- -0.06673829257488251,
- -0.028803471475839615,
- -0.046920936554670334,
- 0.04226859286427498,
- -0.04053228348493576,
- 0.027524985373020172,
- 0.017111215740442276,
- 0.016589704900979996,
- -0.053855568170547485,
- 0.012684996239840984,
- -0.022060906514525414,
- 0.04587917402386665,
- -0.06227600947022438,
- -0.023915249854326248,
- -0.0399128757417202,
- -0.05655485391616821,
- 0.00940534844994545,
- 0.026507137343287468,
- -0.0077911862172186375,
- -0.0067370194010436535,
- -0.044338859617710114,
- 0.015252182260155678,
- -0.056242685765028,
- -0.08306870609521866,
- -0.05977562442421913,
- -0.02793562039732933,
- 0.04361908510327339,
- 0.03714066743850708,
- -0.037001289427280426,
- -0.02612583339214325,
- 0.0654841959476471,
- -0.019816290587186813,
- -0.014023063704371452,
- -0.041740138083696365,
- -0.03043961711227894,
- 0.09174980223178864,
- -0.025041835382580757,
- 0.03678607568144798,
- 0.06740868091583252
- ]
- },
- {
- "keyword": "politics",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.017574016004800797,
- 0.014710335992276669,
- -0.030971862375736237,
- 0.01850123703479767,
- 0.03026464395225048,
- 0.029000353068113327,
- 0.09261008352041245,
- -0.004878060892224312,
- -0.018423844128847122,
- 0.02242293767631054,
- -0.012782747857272625,
- 0.001167949172668159,
- -0.01747007668018341,
- -0.008125962689518929,
- -0.029042493551969528,
- 0.004333785735070705,
- -0.08171738684177399,
- -0.05394478514790535,
- -0.11461497843265533,
- 0.003978862427175045,
- -0.06180315464735031,
- 0.007340461481362581,
- -0.04010961577296257,
- 0.04586300626397133,
- 0.014487664215266705,
- 0.07054182887077332,
- -0.06401512771844864,
- 0.00804281234741211,
- -0.021164413541555405,
- -0.09460271894931793,
- -0.003968403674662113,
- 0.018440531566739082,
- 0.022886918857693672,
- 0.012430797331035137,
- -0.01595298759639263,
- 0.03084571659564972,
- 0.026695750653743744,
- -0.010393021628260612,
- 0.046287745237350464,
- -0.04027098789811134,
- 0.010439140722155571,
- -0.05261858180165291,
- -0.046474408358335495,
- -0.04758390039205551,
- -0.030702074989676476,
- 0.03944527730345726,
- 0.04781961813569069,
- 0.015087412670254707,
- -0.028440508991479874,
- -0.04070698469877243,
- 0.011903741396963596,
- 0.034777574241161346,
- -0.017162814736366272,
- 0.01563156768679619,
- 0.04705998674035072,
- -0.11854646354913712,
- -0.0463578887283802,
- 0.06364995241165161,
- 0.0015898431884124875,
- -0.023240894079208374,
- 0.06629831343889236,
- -0.030186617746949196,
- -0.07713882625102997,
- 0.0387006439268589,
- 0.04387112706899643,
- 0.02598366141319275,
- -0.044381413608789444,
- 0.042255472391843796,
- -0.05396755039691925,
- -0.05466194823384285,
- 0.014104150235652924,
- -0.03442841395735741,
- 0.03809928894042969,
- -0.007312153931707144,
- 0.03685435652732849,
- -0.06354918330907822,
- 0.04046892002224922,
- 0.08443573117256165,
- 0.11644724756479263,
- -0.05214868113398552,
- 0.08017776906490326,
- -0.016039421781897545,
- -0.0666874498128891,
- 0.06326595693826675,
- 0.028697792440652847,
- -0.04024359583854675,
- -0.024840477854013443,
- -0.019452568143606186,
- -0.014348889701068401,
- -0.005655283108353615,
- -0.04872920364141464,
- -0.01336749643087387,
- 0.08870619535446167,
- 0.027424508705735207,
- -0.06659416109323502,
- 0.01753769814968109,
- 0.04941966384649277,
- -0.003134904196485877,
- -0.020472455769777298,
- 0.28166642785072327,
- -0.05435891076922417,
- 0.011799064464867115,
- -0.06943567097187042,
- 0.045302651822566986,
- 0.03544522449374199,
- -0.03500423952937126,
- -0.09068172425031662,
- 0.01684614084661007,
- -0.030628148466348648,
- 0.010864983312785625,
- -0.046207625418901443,
- 0.05524641275405884,
- 0.03729533404111862,
- 0.018551578745245934,
- 0.030866378918290138,
- 0.02253119833767414,
- 0.0588357038795948,
- -0.010960252955555916,
- -0.010975120589137077,
- 0.012069531716406345,
- -0.08035913109779358,
- -0.020170727744698524,
- -0.05990339815616608,
- 0.013273793272674084,
- 0.006884274072945118,
- -0.0702185183763504,
- -0.03179588541388512,
- -4.955522718553886e-33,
- -0.020764684304594994,
- -0.14605793356895447,
- 0.008688993752002716,
- 0.09653888642787933,
- -0.017067773267626762,
- 0.05660582706332207,
- -0.019493937492370605,
- -0.048451364040374756,
- 0.008302675560116768,
- 0.039305347949266434,
- 0.07334884256124496,
- 0.12208954244852066,
- 0.024600142613053322,
- -0.025848448276519775,
- 0.15024717152118683,
- 0.020814895629882812,
- -0.11889635026454926,
- 0.06234664097428322,
- -0.02000986970961094,
- 0.030836841091513634,
- -0.03157922625541687,
- 0.05463280901312828,
- 0.028926901519298553,
- 0.05576741695404053,
- 0.05700946971774101,
- 0.013856439851224422,
- 0.023042045533657074,
- -0.04892527684569359,
- 0.04223097115755081,
- 0.040074534714221954,
- -0.003717141691595316,
- 0.044918544590473175,
- -0.010445598512887955,
- -0.02094210870563984,
- -0.013472622260451317,
- 0.018962770700454712,
- 0.00023641466395929456,
- -0.03431389108300209,
- 0.02573244832456112,
- -0.062195856124162674,
- -0.04109415039420128,
- 0.010031547397375107,
- -0.018225103616714478,
- 0.006882867310196161,
- 0.053900498896837234,
- 0.006599943619221449,
- 0.07516403496265411,
- 0.0024965449701994658,
- -0.08005057275295258,
- 0.04461345821619034,
- 0.004576401319354773,
- -0.0221329927444458,
- 0.08165490627288818,
- -0.02185223437845707,
- 0.030722998082637787,
- -0.038335658609867096,
- -0.02850169874727726,
- -0.014315971173346043,
- -0.04252167418599129,
- -0.0517580509185791,
- 0.046115390956401825,
- 0.0406668484210968,
- -0.003075037384405732,
- -0.01203173864632845,
- -0.02561401203274727,
- -0.03597578406333923,
- -0.07749462872743607,
- -0.015978651121258736,
- 0.07337359338998795,
- -0.05641502887010574,
- 0.0213127750903368,
- -0.004541669972240925,
- -0.01978847198188305,
- 0.038731180131435394,
- -0.024178240448236465,
- 0.04859807342290878,
- 0.05213609337806702,
- -0.010370271280407906,
- -0.07107309997081757,
- 0.04642069712281227,
- -0.03887295350432396,
- -0.012559249997138977,
- 0.07337631285190582,
- -0.02215319499373436,
- 0.0552995540201664,
- 0.024184033274650574,
- -0.028753552585840225,
- -0.06226523220539093,
- 0.0754873976111412,
- 0.02251248061656952,
- -0.1747114211320877,
- -0.022795284166932106,
- 0.040906090289354324,
- 0.044801581650972366,
- -0.06448841094970703,
- 3.075134364053383e-33,
- -0.05142388492822647,
- -0.051008883863687515,
- -0.0413927361369133,
- 0.06130218878388405,
- 0.055909544229507446,
- 0.018861450254917145,
- 0.02559412084519863,
- -0.09231262654066086,
- 0.07158903032541275,
- 0.06800627708435059,
- -0.10751952230930328,
- -0.06551957130432129,
- 0.06635689735412598,
- 0.052727192640304565,
- 0.034053876996040344,
- -0.09411139786243439,
- 0.05486154183745384,
- 0.0030998303554952145,
- -0.03269664943218231,
- 0.0021448477637022734,
- -0.028302151709794998,
- 0.045221827924251556,
- -0.10537255555391312,
- -0.0017804693197831511,
- -0.05861624330282211,
- 0.0436556413769722,
- 0.021262668073177338,
- -0.11377011239528656,
- 0.019533876329660416,
- -0.024634255096316338,
- 0.002692257519811392,
- 0.02045269124209881,
- -0.08123678714036942,
- -0.012972799129784107,
- -0.003506473731249571,
- 0.08963830769062042,
- -0.023757191374897957,
- -0.055753979831933975,
- 0.058234211057424545,
- -0.0332183800637722,
- 0.03222258761525154,
- -0.06848125904798508,
- 0.02371792495250702,
- 0.07653320580720901,
- -0.1115420013666153,
- -0.009640158154070377,
- 0.011069824919104576,
- 0.07656198740005493,
- -0.03249630704522133,
- 0.0048744152300059795,
- -0.050098128616809845,
- 0.04196104034781456,
- 0.038866762071847916,
- 0.02605900913476944,
- 0.0022672698833048344,
- -0.0011493288911879063,
- -0.09261590242385864,
- 0.06709280610084534,
- 0.012621663510799408,
- 0.09553635120391846,
- 0.024778777733445168,
- 0.01925782673060894,
- -0.04109850525856018,
- -0.007463655434548855,
- -0.1371711641550064,
- 0.051028572022914886,
- -0.03904808685183525,
- -0.06999033689498901,
- 0.08220213651657104,
- 0.013255922123789787,
- 0.04833882302045822,
- 0.03472686558961868,
- -0.15381976962089539,
- 0.08731479942798615,
- -0.011717052198946476,
- 0.046363845467567444,
- -0.06029285863041878,
- 0.07816249132156372,
- 0.0025743572041392326,
- -0.01225846353918314,
- 0.024444639682769775,
- -0.041114047169685364,
- -0.03137284144759178,
- -0.028463436290621758,
- -0.06976397335529327,
- 0.04568108916282654,
- 0.07475866377353668,
- 0.01689450815320015,
- 0.01563827507197857,
- -0.08283791691064835,
- 0.006017559207975864,
- -0.0659402534365654,
- -0.0042419531382620335,
- 0.0003967332886531949,
- 0.004892503842711449,
- -1.3988949554288865e-8,
- 0.0629734918475151,
- -0.03196805343031883,
- 0.03542446345090866,
- -0.04020678624510765,
- -0.05062238499522209,
- 0.019451221451163292,
- 0.016065770760178566,
- -0.0036481849383562803,
- 0.008259431459009647,
- 0.05146941542625427,
- 0.044247664511203766,
- 0.041529297828674316,
- -0.003016372909769416,
- -0.03109430894255638,
- 0.046462368220090866,
- -0.026939349249005318,
- 0.011958843097090721,
- 0.04086966812610626,
- -0.031044339761137962,
- -0.00012315342610236257,
- -0.004065678920596838,
- -0.04012373834848404,
- 0.007188032381236553,
- 0.0626097321510315,
- 0.0328407846391201,
- -0.00282425619661808,
- 0.012280280701816082,
- 0.029363958165049553,
- -0.013778677210211754,
- -0.041470203548669815,
- 0.0234738327562809,
- 0.04890187084674835,
- -0.033407699316740036,
- 0.009794856421649456,
- -0.03777438402175903,
- -0.01258582528680563,
- -0.04678216576576233,
- -0.0400850810110569,
- 0.06025714427232742,
- -0.04081243276596069,
- -0.010513188317418098,
- 0.07155735045671463,
- 0.08529873192310333,
- -0.013589823618531227,
- -0.08063457161188126,
- -0.010066228918731213,
- 0.009580133482813835,
- 0.05389462783932686,
- 0.0026851752772927284,
- -0.043871596455574036,
- -0.05284707620739937,
- 0.020884258672595024,
- 0.03703520819544792,
- 0.006788070313632488,
- 0.0254206582903862,
- -0.014351584948599339,
- 0.02686188369989395,
- 0.04661806300282478,
- -0.019757183268666267,
- 0.04020010679960251,
- 0.10800080746412277,
- 0.02647552825510502,
- 0.0713125541806221,
- 0.03318610042333603
- ]
- },
- {
- "keyword": "economics",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.01001668255776167,
- 0.02713957615196705,
- -0.0425826832652092,
- 0.02394646592438221,
- 0.06718961894512177,
- 0.03258782625198364,
- 0.07261314243078232,
- 0.006840978283435106,
- 0.007981312461197376,
- 0.0341978445649147,
- 0.025979826226830482,
- 0.009162822738289833,
- -0.04504844546318054,
- -0.0147154051810503,
- -0.030880820006132126,
- -0.025974547490477562,
- -0.04561410844326019,
- -0.011392210610210896,
- -0.1254541128873825,
- -0.09126947820186615,
- -0.053646206855773926,
- -0.045908667147159576,
- 0.01934189349412918,
- 0.00024431003839708865,
- -0.004023224115371704,
- 0.026099741458892822,
- 0.003326652804389596,
- 0.02706144005060196,
- 0.001200394588522613,
- -0.06076626479625702,
- -0.039069339632987976,
- 0.04471439868211746,
- 0.08167783170938492,
- -0.014143535867333412,
- -0.033422693610191345,
- 0.028466973453760147,
- 0.00441925972700119,
- 0.024048417806625366,
- 0.005805983208119869,
- 0.0024790128227323294,
- -0.007863597944378853,
- -0.06301362812519073,
- -0.06906555593013763,
- -0.021541863679885864,
- -0.017680272459983826,
- -0.02517043426632881,
- 0.04098864272236824,
- 0.00004115917545277625,
- -0.030363738536834717,
- 0.004075916018337011,
- -0.020108573138713837,
- -0.006604793947190046,
- -0.061150968074798584,
- -0.026723291724920273,
- 0.038324978202581406,
- -0.0025966924149543047,
- 0.025591833516955376,
- -0.027406103909015656,
- 0.013742395676672459,
- -0.021427400410175323,
- 0.05112249404191971,
- -0.03340516984462738,
- -0.07343348860740662,
- 0.025259338319301605,
- 0.16684386134147644,
- -0.027047866955399513,
- -0.00897692795842886,
- 0.0809948518872261,
- -0.16009539365768433,
- 0.028891494497656822,
- 0.07004211843013763,
- -0.09127189218997955,
- -0.04147831350564957,
- -0.0470343641936779,
- 0.0389435738325119,
- -0.09000815451145172,
- 0.06250011920928955,
- 0.07413648813962936,
- 0.07940751314163208,
- 0.0017334348522126675,
- 0.03361164778470993,
- -0.09925749152898788,
- -0.08968520164489746,
- -0.00649826368317008,
- 0.016195157542824745,
- -0.03749419376254082,
- 0.024371417239308357,
- -0.058670882135629654,
- 0.11486677080392838,
- -0.006405895110219717,
- 0.006372483447194099,
- -0.01697515696287155,
- 0.004455140326172113,
- 0.00969602633267641,
- 0.027045680209994316,
- 0.042876411229372025,
- -0.008618971332907677,
- -0.051578640937805176,
- 0.009624297730624676,
- 0.2738775312900543,
- 0.012569567188620567,
- -0.0036846736911684275,
- -0.015594294294714928,
- 0.04044322296977043,
- 0.014713668264448643,
- -0.09662523120641708,
- -0.02203863114118576,
- 0.061982423067092896,
- 0.031853869557380676,
- 0.00695064477622509,
- -0.04998798295855522,
- -0.005647751037031412,
- 0.02216658554971218,
- 0.03991149365901947,
- -0.03273024037480354,
- -0.01953696273267269,
- 0.062470268458127975,
- -0.019534608349204063,
- 0.03966398164629936,
- 0.021119045093655586,
- -0.01765773631632328,
- -0.02226448431611061,
- -0.031661130487918854,
- 0.006739174947142601,
- -0.0303622055798769,
- -0.06947535276412964,
- -0.05552564188838005,
- -6.1324596213498235e-33,
- -0.06687961518764496,
- -0.11440843343734741,
- 0.0035716909915208817,
- -0.08273284882307053,
- -0.08306527882814407,
- 0.021375205367803574,
- -0.07947246730327606,
- -0.021945614367723465,
- 0.004730100743472576,
- 0.014100950211286545,
- -0.03364644944667816,
- 0.0898994579911232,
- 0.035562291741371155,
- 0.07801447808742523,
- 0.09978216886520386,
- -0.013630462810397148,
- -0.04571922495961189,
- 0.07377330213785172,
- 0.0933627262711525,
- 0.039178553968667984,
- -0.008349682204425335,
- 0.00769451167434454,
- 0.0491047278046608,
- -0.011123854666948318,
- -0.03966931998729706,
- -0.03543996438384056,
- -0.03713589161634445,
- -0.038977645337581635,
- 0.12168782204389572,
- 0.029000326991081238,
- 0.06904993206262589,
- 0.06960377097129822,
- -0.04640834778547287,
- -0.06056651845574379,
- -0.054707348346710205,
- -0.008464395068585873,
- -0.026642095297574997,
- 0.00500591192394495,
- 0.01217907015234232,
- -0.034792058169841766,
- -0.05489735305309296,
- 0.009658750146627426,
- -0.031589679419994354,
- 0.03257282078266144,
- 0.03774406015872955,
- 0.04615628719329834,
- 0.11769003421068192,
- 0.006802658550441265,
- -0.00653237197548151,
- -0.011397111229598522,
- -0.04287443310022354,
- -0.009528065100312233,
- 0.00439731078222394,
- -0.10381340980529785,
- 0.027868051081895828,
- -0.03480737283825874,
- -0.03775523230433464,
- -0.008109401911497116,
- -0.05342401564121246,
- -0.06145353987812996,
- 0.004095959477126598,
- 0.04923093691468239,
- -0.020920008420944214,
- -0.017532020807266235,
- -0.07404368370771408,
- 0.06851667910814285,
- 0.005152901168912649,
- -0.020164931192994118,
- 0.0326535701751709,
- -0.019849754869937897,
- -0.02401610091328621,
- 0.039222653955221176,
- 0.028896067291498184,
- 0.045285213738679886,
- 0.01143477763980627,
- 0.07006938010454178,
- 0.001189513481222093,
- 0.019274692982435226,
- -0.006972193252295256,
- -0.006179994437843561,
- -0.054724641144275665,
- -0.017641570419073105,
- 0.03628818690776825,
- -0.02785344235599041,
- 0.02468871884047985,
- 0.02151370421051979,
- -0.00911228358745575,
- -0.01395831722766161,
- 0.09479138255119324,
- -0.004073157906532288,
- -0.1110667809844017,
- 0.010298684239387512,
- -0.020472802221775055,
- 0.05966107174754143,
- 0.04227060452103615,
- 3.1552285083565826e-33,
- -0.05885303020477295,
- -0.004023540765047073,
- -0.042734455317258835,
- 0.08922947943210602,
- 0.029976438730955124,
- -0.004640904720872641,
- -0.019231783226132393,
- -0.1058591902256012,
- 0.04972848668694496,
- 0.04676530882716179,
- -0.104165218770504,
- 0.008640654385089874,
- 0.058061402291059494,
- 0.08215095847845078,
- -0.022526873275637627,
- -0.06359081715345383,
- 0.03570285812020302,
- -0.03549601137638092,
- -0.01741785742342472,
- -0.02360549196600914,
- -0.05475375056266785,
- 0.021353518590331078,
- 0.011591439135372639,
- -0.008578901179134846,
- -0.029400279745459557,
- 0.06689394265413284,
- -0.034033406525850296,
- -0.04232456535100937,
- -0.02910112775862217,
- -0.023667840287089348,
- -0.0069659119471907616,
- -0.0323590487241745,
- -0.015379341319203377,
- 0.022925015538930893,
- -0.04162457212805748,
- 0.1081942692399025,
- -0.01118613313883543,
- -0.024343589320778847,
- -0.039825331419706345,
- 0.008462945930659771,
- 0.03790128976106644,
- -0.05050962418317795,
- 0.013612611219286919,
- 0.043131761252880096,
- 0.012443081475794315,
- -0.03562295064330101,
- 0.017585434019565582,
- 0.03392913565039635,
- 0.06399430334568024,
- -0.015568932518362999,
- 0.054740287363529205,
- 0.10764064639806747,
- 0.04021014645695686,
- -0.00788974855095148,
- -0.06318317353725433,
- 0.025899866595864296,
- 0.016247835010290146,
- 0.0055312211625278,
- -0.020810512825846672,
- 0.06379184126853943,
- -0.028918791562318802,
- 0.07032806426286697,
- -0.017508478835225105,
- 0.12863032519817352,
- -0.09050223231315613,
- 0.015525350347161293,
- 0.010641622357070446,
- -0.08813761919736862,
- 0.07807647436857224,
- -0.0871143490076065,
- 0.07281198352575302,
- 0.04549165442585945,
- -0.10670262575149536,
- 0.002861838089302182,
- -0.022049976512789726,
- 0.1235172376036644,
- -0.04436042532324791,
- -0.0050472537986934185,
- -0.007571349386125803,
- -0.006878448184579611,
- -0.04313204064965248,
- -0.033808305859565735,
- 0.023622138425707817,
- -0.028555842116475105,
- -0.09853335469961166,
- -0.03732834756374359,
- 0.02098928391933441,
- -0.03339362144470215,
- -0.041251230984926224,
- -0.06288687884807587,
- -0.06913366913795471,
- -0.04690324887633324,
- 0.028216172009706497,
- 0.01114060077816248,
- -0.04187029227614403,
- -1.4314524676706242e-8,
- 0.0058212378062307835,
- -0.0773412436246872,
- 0.11609680950641632,
- 0.07543497532606125,
- -0.04448770731687546,
- -0.008660752326250076,
- 0.050698280334472656,
- 0.014923837035894394,
- 0.006279835943132639,
- 0.10145562887191772,
- -0.02042386680841446,
- 0.06889244168996811,
- -0.04415254294872284,
- 0.11939045786857605,
- -0.011510457843542099,
- 0.03294045478105545,
- -0.03282291814684868,
- 0.013360092416405678,
- -0.024241238832473755,
- -0.002128884196281433,
- 0.06528672575950623,
- 0.06873662769794464,
- 0.013987467624247074,
- -0.007281646132469177,
- -0.0029425667598843575,
- 0.03184225410223007,
- 0.06451781839132309,
- 0.021753394976258278,
- -0.005176901817321777,
- 0.022197267040610313,
- -0.01784512586891651,
- 0.03356483206152916,
- 0.01829908788204193,
- -0.03782373294234276,
- 0.015646670013666153,
- -0.009081491269171238,
- -0.010024655610322952,
- 0.007433013990521431,
- 0.038711197674274445,
- -0.03845607489347458,
- -0.01969604380428791,
- 0.005518844351172447,
- 0.0038597341626882553,
- -0.028144709765911102,
- 0.09488976746797562,
- -0.039535269141197205,
- -0.039824191480875015,
- 0.01846412755548954,
- 0.03093533031642437,
- -0.030722692608833313,
- 0.009056443348526955,
- -0.0007911158027127385,
- 0.02220458909869194,
- -0.04155169427394867,
- 0.052318472415208817,
- -0.0638689175248146,
- 0.01816609501838684,
- -0.011301832273602486,
- -0.12481127679347992,
- 0.04571845382452011,
- 0.11106142401695251,
- -0.05137576535344124,
- 0.07625050842761993,
- -0.03707311674952507
- ]
- },
- {
- "keyword": "psychology",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.02633155696094036,
- 0.054343193769454956,
- -0.02675863727927208,
- 0.1017313152551651,
- 0.01994755119085312,
- 0.05443968623876572,
- 0.07168431580066681,
- 0.044196825474500656,
- 0.010189966298639774,
- 0.034860141575336456,
- -0.003027292899787426,
- -0.013763322494924068,
- -0.05345156043767929,
- 0.009475203230977058,
- 0.011136071756482124,
- -0.002031830372288823,
- 0.03893444314599037,
- -0.05271034315228462,
- -0.056771110743284225,
- -0.02076953835785389,
- -0.07919774204492569,
- -0.017550084739923477,
- 0.06517479568719864,
- 0.0036835381761193275,
- -0.045706138014793396,
- 0.07514350116252899,
- -0.023746300488710403,
- -0.0229977797716856,
- 0.012811076827347279,
- -0.028726765885949135,
- 0.02279781363904476,
- 0.04847222566604614,
- 0.07676956802606583,
- 0.02674224227666855,
- -0.01062728650867939,
- -0.004013035912066698,
- -0.039660144597291946,
- 0.0803835317492485,
- 0.045205142349004745,
- 0.03954369202256203,
- -0.060842353850603104,
- -0.018342118710279465,
- 0.009383190423250198,
- -0.02293887920677662,
- -0.07362440973520279,
- -0.02352716028690338,
- -0.01062104944139719,
- -0.029758969321846962,
- -0.10220012068748474,
- -0.053775474429130554,
- -0.047197822481393814,
- 0.036704909056425095,
- -0.021834678947925568,
- 0.01573273167014122,
- 0.017659388482570648,
- 0.0324343703687191,
- 0.00822041928768158,
- 0.04561373591423035,
- -0.05454934015870094,
- 0.026740774512290955,
- 0.08412250131368637,
- -0.06005118787288666,
- -0.08020059764385223,
- 0.052292145788669586,
- 0.14123083651065826,
- 0.03314465656876564,
- -0.03420023247599602,
- -0.007769871037453413,
- -0.015965329483151436,
- -0.061011988669633865,
- 0.011219537816941738,
- -0.05537816137075424,
- 0.002079509664326906,
- 0.05415019020438194,
- 0.1282707005739212,
- -0.021643774583935738,
- -0.043707504868507385,
- -0.010705278255045414,
- 0.05074378848075867,
- -0.03755060210824013,
- 0.050857216119766235,
- -0.04856123402714729,
- -0.055984362959861755,
- 0.03597685322165489,
- 0.05092901363968849,
- -0.01105868723243475,
- -0.004962898325175047,
- 0.022618191316723824,
- -0.04554278776049614,
- 0.054013632237911224,
- -0.0743560716509819,
- -0.07339014112949371,
- -0.03067287802696228,
- 0.03761008381843567,
- -0.08329731971025467,
- 0.033079393208026886,
- -0.07595627754926682,
- -0.06404272466897964,
- -0.011496971361339092,
- 0.21222826838493347,
- 0.021033875644207,
- 0.09150657057762146,
- -0.06187766045331955,
- 0.09557446092367172,
- -0.002034361008554697,
- -0.03290233388543129,
- -0.0310493316501379,
- -0.018568996340036392,
- -0.025027917698025703,
- 0.009726811200380325,
- -0.06745382398366928,
- -0.009441119618713856,
- 0.012895881198346615,
- 0.04758470878005028,
- 0.05780857056379318,
- 0.011577910743653774,
- -0.025182146579027176,
- 0.04835837334394455,
- 0.0370454378426075,
- 0.009261182509362698,
- 0.07714072614908218,
- 0.00897024106234312,
- -0.010017697699368,
- 0.00831905659288168,
- -0.03622979298233986,
- -0.08378461748361588,
- -0.051050566136837006,
- -4.436880651975677e-33,
- 0.017197109758853912,
- -0.09173961728811264,
- -0.011364679783582687,
- -0.01729006879031658,
- 0.005526900757104158,
- 0.06140735745429993,
- -0.00594507297500968,
- -0.08034145832061768,
- 0.055497754365205765,
- 0.07352345436811447,
- -0.023543264716863632,
- 0.076028972864151,
- 0.0378003753721714,
- 0.09513591974973679,
- 0.000914165168069303,
- 0.0437936894595623,
- -0.04172373563051224,
- 0.1019158735871315,
- -0.0043954248540103436,
- -0.007353301625698805,
- -0.007853581570088863,
- 0.11137224733829498,
- 0.022009603679180145,
- 0.02435973659157753,
- -0.04416336119174957,
- 0.002626042813062668,
- -0.02286607399582863,
- -0.026022931560873985,
- 0.03535178303718567,
- 0.02315388433635235,
- -0.019168956205248833,
- 0.05695974454283714,
- -0.042384058237075806,
- -0.06875795125961304,
- 0.008813640102744102,
- -0.04434463009238243,
- 0.03308378905057907,
- -0.030765438452363014,
- 0.03835779428482056,
- -0.03617406636476517,
- -0.04162342846393585,
- 0.04501159116625786,
- -0.012468540109694004,
- 0.026567690074443817,
- 0.043778251856565475,
- 0.05718391388654709,
- -0.012737167067825794,
- -0.05192910134792328,
- -0.10763947665691376,
- 0.07839461416006088,
- -0.08741310983896255,
- -0.006122834049165249,
- 0.07129226624965668,
- -0.06176915392279625,
- -0.010865215212106705,
- 0.04430173337459564,
- 0.047312185168266296,
- -0.01345422025769949,
- -0.02174590528011322,
- -0.0545126236975193,
- 0.08290858566761017,
- 0.07755541801452637,
- -0.05584270507097244,
- -0.06640700250864029,
- 0.06978221237659454,
- -0.02261730097234249,
- -0.018054472282528877,
- -0.08840248733758926,
- 0.07654847204685211,
- -0.03448735550045967,
- -0.049089230597019196,
- 0.11115937680006027,
- -0.0005863781552761793,
- -0.0039858208037912846,
- -0.0031616908963769674,
- -0.07464087009429932,
- 0.037728093564510345,
- -0.016100062057375908,
- -0.06270141899585724,
- 0.0025429832749068737,
- -0.024047400802373886,
- -0.06774895638227463,
- -0.05914437398314476,
- -0.014528129249811172,
- 0.05116017907857895,
- 0.07996991276741028,
- -0.030632654204964638,
- -0.08032262325286865,
- -0.027791688218712807,
- 0.04037492349743843,
- 0.0026126301381736994,
- -0.047240592539310455,
- 0.0682968720793724,
- 0.08486844599246979,
- -0.008530737832188606,
- 3.564554008412135e-33,
- -0.04771069064736366,
- 0.013305720873177052,
- -0.02233058027923107,
- 0.01777557097375393,
- 0.06378959119319916,
- 0.021454377099871635,
- -0.004625704605132341,
- -0.06756377220153809,
- -0.04195933789014816,
- 0.04648952558636665,
- -0.012713619507849216,
- -0.04885367304086685,
- 0.06509120017290115,
- 0.0822494626045227,
- -0.017801674082875252,
- -0.05491954833269119,
- -0.01586851105093956,
- -0.029308633878827095,
- -0.042811937630176544,
- -0.04210628569126129,
- -0.00794232077896595,
- 0.09826676547527313,
- -0.09973723441362381,
- 0.00028865900821983814,
- 0.000865513808093965,
- 0.03348160162568092,
- -0.0009538679732941091,
- -0.09089907258749008,
- -0.07427269220352173,
- -0.025800855830311775,
- -0.0034104075748473406,
- 0.0015027971239760518,
- -0.0030765095725655556,
- -0.020505301654338837,
- 0.0416276715695858,
- 0.05215170606970787,
- 0.021955212578177452,
- 0.009513773024082184,
- -0.035196948796510696,
- -0.02979222498834133,
- -0.0008362668449990451,
- 0.007873155176639557,
- -0.024155927821993828,
- -0.047170307487249374,
- -0.021961137652397156,
- 0.010188635438680649,
- 0.02867908589541912,
- 0.05128629878163338,
- 0.006843319162726402,
- 0.0195106640458107,
- -0.07140173763036728,
- -0.001925201271660626,
- -0.021581105887889862,
- -0.021747082471847534,
- 0.01274082064628601,
- -0.07319387048482895,
- -0.026434166356921196,
- -0.03147255629301071,
- -0.026547608897089958,
- 0.06617137044668198,
- 0.035245608538389206,
- 0.03506281599402428,
- -0.03014797903597355,
- 0.08088956773281097,
- -0.0939047783613205,
- 0.032102011144161224,
- -0.054658111184835434,
- 0.055851295590400696,
- 0.019679581746459007,
- -0.001495869131758809,
- 0.1012718454003334,
- 0.06752914935350418,
- -0.0037842500023543835,
- 0.04541022330522537,
- 0.033486176282167435,
- 0.00985159631818533,
- -0.12381493300199509,
- 0.034477051347494125,
- -0.07383368164300919,
- 0.009086156263947487,
- -0.07540852576494217,
- -0.09759840369224548,
- -0.0029417083133012056,
- 0.06038135290145874,
- -0.035790324211120605,
- -0.0007351316162385046,
- 0.02277992106974125,
- 0.05896309018135071,
- -0.01848062127828598,
- -0.116766557097435,
- -0.036320652812719345,
- 0.008315049111843109,
- -0.04886618256568909,
- 0.03238701820373535,
- -0.017240017652511597,
- -1.3573609791706076e-8,
- 0.004499392583966255,
- -0.10526183992624283,
- 0.021711936220526695,
- -0.006726159248501062,
- 0.023767078295350075,
- 0.09088796377182007,
- 0.022757356986403465,
- 0.02006857842206955,
- -0.08382100611925125,
- 0.0407860241830349,
- 0.0034941716585308313,
- 0.08650004118680954,
- -0.031183483079075813,
- 0.060601964592933655,
- 0.0023375616874545813,
- -0.0438513308763504,
- 0.12836645543575287,
- -0.0016653254861012101,
- 0.014657946303486824,
- -0.033789996057748795,
- 0.08234516531229019,
- 0.001456907019019127,
- -0.005957998801022768,
- 0.03919339179992676,
- -0.01239203941076994,
- -0.014780083671212196,
- -0.06317797303199768,
- 0.01581813022494316,
- -0.05242229625582695,
- -0.0011990261264145374,
- 0.0796157643198967,
- 0.0406387560069561,
- 0.03059563785791397,
- -0.04168631508946419,
- 0.04687649756669998,
- -0.046709537506103516,
- 0.03540489077568054,
- -0.06650644540786743,
- 0.011117558926343918,
- -0.018793201074004173,
- 0.0034987786784768105,
- 0.009191621094942093,
- 0.05054733157157898,
- 0.06948286294937134,
- 0.01745995506644249,
- -0.030133089050650597,
- 0.03552206978201866,
- -0.01433665119111538,
- 0.008727195672690868,
- 0.03784922882914543,
- 0.0003804810403380543,
- 0.025892963632941246,
- -0.033257171511650085,
- 0.02330983616411686,
- 0.02276472933590412,
- 0.00971941277384758,
- 0.001643841969780624,
- 0.03866761177778244,
- -0.15503624081611633,
- 0.03328411653637886,
- 0.17109188437461853,
- 0.11127039790153503,
- 0.002020404441282153,
- -0.042897310107946396
- ]
- },
- {
- "keyword": "sociology",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.00657567847520113,
- 0.022838322445750237,
- -0.07132604718208313,
- 0.031882625073194504,
- -0.006419108249247074,
- 0.02743556722998619,
- -0.03333541750907898,
- -0.025843413546681404,
- -0.009482488967478275,
- 0.01706833764910698,
- 0.1110997125506401,
- 0.01700606197118759,
- 0.0028770449571311474,
- 0.0009620668133720756,
- -0.011781146749854088,
- 0.013326889835298061,
- -0.0700107142329216,
- -0.013552023097872734,
- -0.01756824553012848,
- -0.04883740469813347,
- -0.1142054870724678,
- -0.06597315520048141,
- 0.02552126906812191,
- -0.025306882336735725,
- 0.008061034604907036,
- 0.0346175879240036,
- -0.01772204414010048,
- -0.04541635140776634,
- -0.010907141491770744,
- 0.023457715287804604,
- -0.008211319334805012,
- 0.09422969818115234,
- 0.09283872693777084,
- -0.005897833034396172,
- -0.040909457951784134,
- 0.06590257585048676,
- 0.07060308754444122,
- 0.10297518968582153,
- 0.06294069439172745,
- 0.05621175095438957,
- -0.0940399020910263,
- -0.044170308858156204,
- 0.024333473294973373,
- -0.028541479259729385,
- -0.005992963444441557,
- 0.02778501808643341,
- 0.005138881970196962,
- 0.002967132953926921,
- -0.05905017629265785,
- -0.051504749804735184,
- -0.031631819903850555,
- -0.043924082070589066,
- -0.001403183676302433,
- 0.07760320603847504,
- 0.05900358408689499,
- -0.03656519949436188,
- 0.04568835720419884,
- 0.031139329075813293,
- -0.07866533100605011,
- -0.05340583622455597,
- 0.05907034873962402,
- -0.05898379161953926,
- -0.06899360567331314,
- 0.035058557987213135,
- 0.14406393468379974,
- 0.03173621743917465,
- -0.045356761664152145,
- 0.12546956539154053,
- -0.02214093878865242,
- 0.013176096603274345,
- 0.031052451580762863,
- -0.060044366866350174,
- 0.013366417959332466,
- 0.04698290675878525,
- 0.08032400161027908,
- -0.0856882631778717,
- -0.01708744652569294,
- -0.011257195845246315,
- 0.0161416195333004,
- -0.07362651079893112,
- 0.04747101664543152,
- -0.025281641632318497,
- -0.03489869087934494,
- 0.028366276994347572,
- -0.034249451011419296,
- 0.018649335950613022,
- 0.023547522723674774,
- -0.0537123866379261,
- 0.0015476444968953729,
- 0.01580449752509594,
- -0.14907269179821014,
- 0.01945979706943035,
- 0.048998113721609116,
- -0.024944670498371124,
- -0.06359991431236267,
- -0.000452882784884423,
- -0.046624425798654556,
- -0.057134345173835754,
- 0.043840695172548294,
- 0.24952000379562378,
- -0.01116296835243702,
- -0.018662365153431892,
- -0.029605917632579803,
- 0.03808092325925827,
- 0.02613809145987034,
- -0.06803208589553833,
- -0.017478810623288155,
- 0.025587400421500206,
- -0.0069746654480695724,
- 0.03383119776844978,
- -0.026545746251940727,
- 0.02099154144525528,
- -0.07065855711698532,
- 0.014792680740356445,
- 0.0157749205827713,
- -0.06510213762521744,
- 0.08741004019975662,
- 0.06756092607975006,
- 0.07815419137477875,
- -0.01741047203540802,
- 0.011495618149638176,
- -0.008053996600210667,
- -0.09308023005723953,
- -0.04134579375386238,
- 0.001552700181491673,
- 0.010275694541633129,
- -0.055962301790714264,
- -6.547572594373252e-33,
- -0.009492437355220318,
- -0.05897512286901474,
- -0.025069596245884895,
- 0.01095705758780241,
- -0.009472522884607315,
- 0.010009326972067356,
- -0.10472781211137772,
- 0.014681910164654255,
- -0.013209995813667774,
- 0.023226967081427574,
- -0.006332008168101311,
- 0.04824651777744293,
- 0.04795878753066063,
- 0.018484920263290405,
- 0.04809717833995819,
- 0.006677929777652025,
- -0.0627819374203682,
- 0.01828654855489731,
- 0.009256863966584206,
- 0.041863176971673965,
- 0.01620016060769558,
- 0.0647287666797638,
- -0.027949484065175056,
- -0.05728023126721382,
- -0.03968534246087074,
- -0.04197855293750763,
- -0.0008911144686862826,
- -0.09353725612163544,
- 0.06009392812848091,
- 0.005944930016994476,
- 0.08351292461156845,
- 0.061675816774368286,
- -0.017522234469652176,
- -0.09485416114330292,
- 0.058966245502233505,
- 0.030514849349856377,
- 0.06806708127260208,
- -0.006277203094214201,
- 0.04007861018180847,
- -0.06640135496854782,
- -0.050258710980415344,
- -0.05528005212545395,
- 0.02480132132768631,
- -0.032738663256168365,
- 0.044630538672208786,
- 0.11440426856279373,
- 0.08855795860290527,
- -0.04500018432736397,
- -0.043364621698856354,
- 0.029049715027213097,
- -0.005358665715903044,
- -0.03198780491948128,
- 0.02284410409629345,
- -0.009479613974690437,
- 0.0041267722845077515,
- -0.008273489773273468,
- -0.027166903018951416,
- -0.011435164138674736,
- -0.03461817651987076,
- -0.019925639033317566,
- 0.10053115338087082,
- 0.016017306596040726,
- 0.050432153046131134,
- -0.04738960787653923,
- 0.019743384793400764,
- 0.009122627787292004,
- -0.03917202353477478,
- 0.01254472229629755,
- 0.08330820500850677,
- -0.021136563271284103,
- -0.022922320291399956,
- 0.0781574547290802,
- -0.07568256556987762,
- 0.026707729324698448,
- 0.029881035909056664,
- 0.06347888708114624,
- -0.03581099584698677,
- 0.025176282972097397,
- -0.05425212159752846,
- 0.02521633915603161,
- -0.060288939625024796,
- -0.01923341490328312,
- 0.012586531229317188,
- -0.060479793697595596,
- 0.07587963342666626,
- 0.0596039816737175,
- 0.008818023838102818,
- 0.03634965419769287,
- 0.09823977947235107,
- 0.04785114526748657,
- -0.1281094253063202,
- -0.05765407904982567,
- 0.012190469540655613,
- 0.1064617708325386,
- 0.015184745192527771,
- 3.464351931212166e-33,
- -0.08193285018205643,
- -0.036188140511512756,
- -0.05956139788031578,
- -0.012222074903547764,
- 0.07443927228450775,
- -0.005291862413287163,
- -0.01354075875133276,
- -0.05105157941579819,
- 0.03503059968352318,
- 0.10657380521297455,
- -0.000993882305920124,
- -0.06724879890680313,
- 0.05050449073314667,
- 0.07858705520629883,
- -0.025203494355082512,
- -0.05308181047439575,
- -0.026340188458561897,
- -0.015490079298615456,
- -0.05147320404648781,
- 0.025003813207149506,
- 0.011913147754967213,
- -0.006259951740503311,
- 0.009631670080125332,
- 0.028617700561881065,
- 0.02702220343053341,
- 0.05184388533234596,
- -0.006001124624162912,
- -0.004607133101671934,
- -0.018061641603708267,
- 0.02242843247950077,
- -0.02904195711016655,
- -0.015750788152217865,
- -0.003601704491302371,
- -0.0276491716504097,
- -0.003609367646276951,
- 0.06746275722980499,
- -0.027661029249429703,
- -0.045405663549900055,
- 0.004591094795614481,
- -0.11207474768161774,
- 0.001974978018552065,
- 0.013589728623628616,
- -0.09137522429227829,
- 0.02750183455646038,
- -0.0015492076054215431,
- 0.021167049184441566,
- -0.04760361462831497,
- 0.017002075910568237,
- -0.011519008316099644,
- -0.007948573678731918,
- -0.04742732644081116,
- 0.014926950447261333,
- 0.055008772760629654,
- -0.01527329906821251,
- 0.041790593415498734,
- 0.0004922892549075186,
- -0.033978309482336044,
- -0.015567248687148094,
- -0.13681456446647644,
- 0.08249824494123459,
- -0.027461890131235123,
- 0.014701864682137966,
- -0.0682356059551239,
- 0.12428190559148788,
- -0.036143455654382706,
- -0.08504515886306763,
- -0.036761440336704254,
- -0.028652628883719444,
- -0.0026047974824905396,
- 0.02949538081884384,
- 0.03118916042149067,
- 0.02383740246295929,
- -0.09679137915372849,
- -0.006155031267553568,
- -0.008562058210372925,
- 0.029101822525262833,
- 0.0038483203388750553,
- 0.007300721015781164,
- 0.006502688862383366,
- 0.01264894101768732,
- 0.0011012664763256907,
- -0.09290462732315063,
- 0.03637603297829628,
- -0.021009517833590508,
- -0.019898559898138046,
- -0.003250181907787919,
- 0.019206378608942032,
- 0.0766758844256401,
- 0.022906018421053886,
- -0.05988442897796631,
- 0.004400898236781359,
- -0.1122361347079277,
- -0.06454138457775116,
- -0.008570129051804543,
- -0.011858035810291767,
- -1.276581951259459e-8,
- 0.04005825147032738,
- -0.03574983403086662,
- 0.028034605085849762,
- 0.009017577394843102,
- -0.013540749438107014,
- 0.09658654779195786,
- 0.007516099605709314,
- -0.002036026678979397,
- -0.061088841408491135,
- 0.09684370458126068,
- -0.07659018039703369,
- 0.04265773296356201,
- -0.06126304343342781,
- 0.0659874826669693,
- -0.01565382443368435,
- -0.05810553580522537,
- 0.04985083267092705,
- -0.03877180814743042,
- -0.010959262028336525,
- 0.017006071284413338,
- 0.05123622715473175,
- -0.007280535064637661,
- -0.04584471508860588,
- 0.07584723830223083,
- 0.032034579664468765,
- 0.015069626271724701,
- 0.03460315242409706,
- -0.04471982643008232,
- -0.003307010279968381,
- -0.002001900924369693,
- 0.004111060872673988,
- 0.04520579054951668,
- -0.07701830565929413,
- -0.027081292122602463,
- -0.09233144670724869,
- -0.01927686668932438,
- 0.034888848662376404,
- 0.03996513783931732,
- 0.09542369842529297,
- -0.04835839197039604,
- 0.02570086531341076,
- -0.03297802060842514,
- 0.06631007790565491,
- -0.0006054841796867549,
- 0.03098113276064396,
- 0.013180883601307869,
- 0.018023157492280006,
- 0.08486850559711456,
- -0.017881985753774643,
- -0.0408601313829422,
- -0.018245460465550423,
- -0.0038215925451368093,
- -0.033853691071271896,
- 0.0027256475295871496,
- 0.013731539249420166,
- -0.07968971133232117,
- 0.018259888514876366,
- 0.04866575077176094,
- -0.067927785217762,
- -0.0013868928654119372,
- 0.1499626338481903,
- -0.017803506925702095,
- 0.08838339149951935,
- -0.055942196398973465
- ]
- },
- {
- "keyword": "religion",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.004796511959284544,
- 0.06597132980823517,
- -0.05466754361987114,
- 0.07821230590343475,
- -0.039161745458841324,
- 0.03343842178583145,
- 0.05743518844246864,
- -0.05619266256690025,
- 0.1699737012386322,
- -0.01873529516160488,
- 0.03531305491924286,
- 0.006273303180932999,
- 0.006489101331681013,
- -0.04377351701259613,
- -0.016155509278178215,
- -0.02760494127869606,
- -0.12164219468832016,
- -0.007649263832718134,
- -0.09998947381973267,
- -0.1144803836941719,
- -0.14328373968601227,
- 0.006569961551576853,
- -0.032058387994766235,
- 0.03485116735100746,
- 0.01455268356949091,
- 0.08834417909383774,
- 0.02178220823407173,
- -0.030295763164758682,
- 0.007517555262893438,
- -0.05553184822201729,
- 0.01630457118153572,
- -0.014836415648460388,
- 0.005214234348386526,
- -0.019958175718784332,
- -0.1094600185751915,
- 0.0051405285485088825,
- 0.05855591222643852,
- 0.017822492867708206,
- 0.01624898985028267,
- 0.006077548023313284,
- 0.0028644066769629717,
- -0.023594282567501068,
- 0.022430356591939926,
- -0.056538667529821396,
- 0.005394527222961187,
- 0.04215960204601288,
- 0.018323687836527824,
- 0.020128289237618446,
- 0.021430399268865585,
- -0.02391638606786728,
- -0.004405180923640728,
- 0.06687027961015701,
- -0.048912208527326584,
- 0.04011362046003342,
- 0.007415024098008871,
- -0.07130542397499084,
- -0.051890067756175995,
- 0.04347487539052963,
- -0.0022607212886214256,
- -0.05405252426862717,
- 0.08942440897226334,
- -0.026010137051343918,
- -0.011618165299296379,
- 0.06961149722337723,
- 0.06750034540891647,
- -0.008115659467875957,
- -0.017741527408361435,
- 0.06350671499967575,
- -0.07712904363870621,
- -0.061043329536914825,
- -0.046558793634176254,
- -0.00627492880448699,
- 0.0016147388378158212,
- 0.025031013414263725,
- -0.015318204648792744,
- -0.06045747920870781,
- -0.05063240975141525,
- -0.05185514688491821,
- 0.025686999782919884,
- -0.014540527947247028,
- 0.07666411995887756,
- -0.036881837993860245,
- -0.02473505213856697,
- 0.03046749345958233,
- 0.040004972368478775,
- -0.006483119446784258,
- 0.034891996532678604,
- 0.08039388060569763,
- -0.024171771481633186,
- 0.0645633116364479,
- -0.027933785691857338,
- 0.00355910393409431,
- 0.002491054590791464,
- 0.008299760520458221,
- -0.08545467257499695,
- 0.09199874848127365,
- -0.030360568314790726,
- -0.08012668043375015,
- -0.037942271679639816,
- 0.2972555160522461,
- -0.03050883114337921,
- 0.06630118191242218,
- -0.011109755374491215,
- 0.03490396961569786,
- 0.07971711456775665,
- -0.004803622607141733,
- -0.09778252989053726,
- 0.016557488590478897,
- -0.0061091468669474125,
- 0.05009016767144203,
- -0.05912253260612488,
- 0.05868981406092644,
- -0.11086496710777283,
- 0.0023683093022555113,
- 0.01276684645563364,
- 0.07434230297803879,
- 0.095478355884552,
- 0.0071424939669668674,
- -0.05384345352649689,
- -0.032883189618587494,
- -0.0672750324010849,
- -0.037512414157390594,
- 0.03082875907421112,
- 0.10766204446554184,
- 0.018687007948756218,
- -0.09462851285934448,
- -0.06170563027262688,
- -3.926387699984543e-33,
- 0.03556479141116142,
- -0.0857342854142189,
- 0.039839256554841995,
- 0.02957015298306942,
- 0.0014534404035657644,
- 0.07223432511091232,
- 0.021696662530303,
- -0.06752998381853104,
- -0.014414931647479534,
- 0.016013052314519882,
- 0.024075567722320557,
- 0.04861483722925186,
- -0.006682627834379673,
- -0.02678610384464264,
- 0.10341804474592209,
- 0.013144666329026222,
- -0.03142920508980751,
- 0.026759164407849312,
- 0.008385512977838516,
- -0.034143850207328796,
- -0.018364662304520607,
- 0.01184904482215643,
- -0.0207765381783247,
- 0.0505533367395401,
- 0.02171548828482628,
- -0.051199771463871,
- 0.07467008382081985,
- -0.018459917977452278,
- 0.013895201496779919,
- 0.040058549493551254,
- -0.01741737313568592,
- 0.052780743688344955,
- 0.010895986109972,
- -0.039595212787389755,
- -0.012548282742500305,
- -0.061868712306022644,
- 0.009828806854784489,
- -0.06619071215391159,
- 0.050503600388765335,
- -0.09968642890453339,
- 0.004888762719929218,
- -0.01362681481987238,
- 0.0019127007108181715,
- -0.007581703830510378,
- 0.02246384508907795,
- 0.05447733774781227,
- 0.0652412474155426,
- -0.049284014850854874,
- -0.10033974051475525,
- 0.07766042649745941,
- -0.021870844066143036,
- 0.00895377155393362,
- 0.03267589956521988,
- -0.06860000640153885,
- -0.03373992070555687,
- -0.028747858479619026,
- -0.0014781723730266094,
- 0.06943302601575851,
- -0.019974946975708008,
- -0.02080552652478218,
- -0.03692072629928589,
- 0.024882029742002487,
- -0.04242872819304466,
- -0.015323523432016373,
- -0.016588367521762848,
- -0.021450979635119438,
- -0.007242150604724884,
- -0.048320092260837555,
- 0.014240962453186512,
- -0.023898279294371605,
- 0.015651889145374298,
- -0.008834276348352432,
- 0.012579228729009628,
- 0.07377132028341293,
- 0.020010529085993767,
- 0.004415670409798622,
- 0.05532008782029152,
- -0.04693581536412239,
- -0.030618639662861824,
- 0.010497435927391052,
- 0.018518097698688507,
- 0.03644457086920738,
- -0.03739915415644646,
- 0.02551455982029438,
- 0.0706983134150505,
- 0.028457455337047577,
- -0.014399867504835129,
- -0.04072042554616928,
- 0.006899020168930292,
- -0.06553668528795242,
- -0.0036941105499863625,
- 0.00629847589880228,
- 0.12136761844158173,
- -0.02902999147772789,
- -0.013124378398060799,
- 3.524376346184998e-33,
- -0.015380456112325191,
- -0.07759206742048264,
- -0.032632678747177124,
- 0.044010721147060394,
- 0.016494426876306534,
- -0.012007433921098709,
- -0.05361063405871391,
- 0.012414651922881603,
- -0.013055341318249702,
- 0.052531588822603226,
- 0.05002035200595856,
- -0.060026347637176514,
- 0.06457477807998657,
- 0.06416461616754532,
- -0.07033047080039978,
- -0.06667383760213852,
- -0.004477541893720627,
- 0.003607181366533041,
- -0.02278781309723854,
- -0.02117183245718479,
- 0.031110795214772224,
- -0.0030778744257986546,
- -0.03522605448961258,
- -0.04961724206805229,
- -0.03358161821961403,
- 0.08836335688829422,
- -0.05219993367791176,
- -0.016857150942087173,
- 0.01039556972682476,
- -0.01798247918486595,
- -0.00024609206593595445,
- 0.04469006136059761,
- -0.03836974501609802,
- -0.03330423682928085,
- -0.010362343862652779,
- 0.0630110427737236,
- 0.03297315910458565,
- 0.09720024466514587,
- 0.02576599270105362,
- -0.054635148495435715,
- 0.032146748155355453,
- 0.0028677168302237988,
- -0.011444315314292908,
- 0.0668705627322197,
- -0.0429488867521286,
- 0.03164548799395561,
- 0.04237965866923332,
- 0.10836900025606155,
- 0.055578362196683884,
- 0.015855582430958748,
- -0.09863517433404922,
- -0.05834614858031273,
- 0.021401865407824516,
- -0.04636300727725029,
- 0.04523801803588867,
- 0.015138395130634308,
- -0.11603761464357376,
- -0.0597686767578125,
- -0.04352739825844765,
- 0.041592877358198166,
- 0.10927659273147583,
- 0.051229242235422134,
- 0.011607198044657707,
- 0.09451202303171158,
- -0.0699496790766716,
- 0.03181415796279907,
- 0.015332783572375774,
- 0.067522794008255,
- 0.0035952997859567404,
- 0.018257947638630867,
- -0.018095824867486954,
- 0.02878558821976185,
- -0.04492373391985893,
- 0.03876286372542381,
- -0.015682874247431755,
- 0.026879236102104187,
- -0.027678776532411575,
- 0.007444852497428656,
- 0.020081548020243645,
- 0.013030854985117912,
- 0.008107362315058708,
- -0.033811990171670914,
- -0.03796003386378288,
- 0.03320486843585968,
- -0.03207071125507355,
- -0.12933547794818878,
- 0.018574262037873268,
- 0.03672795370221138,
- 0.04063175991177559,
- -0.054918110370635986,
- -0.061213418841362,
- -0.017792917788028717,
- -0.012757220305502415,
- 0.01113475114107132,
- -0.05908936262130737,
- -1.2965399420750146e-8,
- 0.06012982502579689,
- -0.048451978713274,
- 0.042589519172906876,
- -0.03248867765069008,
- 0.07490019500255585,
- 0.07525988668203354,
- 0.07488864660263062,
- -0.04562298208475113,
- -0.052867088466882706,
- 0.028987476602196693,
- -0.03277405723929405,
- 0.06123458966612816,
- -0.04463863745331764,
- 0.07295942306518555,
- -0.021204493939876556,
- -0.026464110240340233,
- -0.012225944548845291,
- -0.05196743085980415,
- 0.046274106949567795,
- 0.024930628016591072,
- 0.04318202659487724,
- -0.0002779259521048516,
- 0.10176185518503189,
- -0.027691904455423355,
- 0.00932551920413971,
- -0.035172395408153534,
- -0.02498282492160797,
- 0.09606938064098358,
- -0.01556233037263155,
- 0.0014925387222319841,
- 0.04251755401492119,
- 0.02649221569299698,
- -0.08086083084344864,
- 0.04261986166238785,
- -0.03921709954738617,
- -0.04633966460824013,
- -0.06637072563171387,
- -0.027857711538672447,
- 0.039458390325307846,
- -0.05693604797124863,
- 0.06193694472312927,
- 0.0584833025932312,
- 0.06152630224823952,
- -0.005913007538765669,
- -0.03233639523386955,
- -0.01798555813729763,
- 0.044810619205236435,
- 0.0190780907869339,
- -0.06723780930042267,
- -0.030682336539030075,
- -0.01708228513598442,
- 0.0047651189379394054,
- 0.06874663382768631,
- -0.011493876576423645,
- -0.03391771763563156,
- 0.02474910020828247,
- -0.021729784086346626,
- 0.0804734006524086,
- -0.016376594081521034,
- -0.040931880474090576,
- 0.10557619482278824,
- 0.024133114144206047,
- 0.08318226784467697,
- 0.007004648447036743
- ]
- },
- {
- "keyword": "spiritual",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.0030467414762824774,
- 0.026998812332749367,
- -0.0019222215050831437,
- 0.045694176107645035,
- -0.07301175594329834,
- 0.020060257986187935,
- 0.11010660976171494,
- -0.039953313767910004,
- 0.15359356999397278,
- 0.016288956627249718,
- 0.05735247954726219,
- -0.023361297324299812,
- -0.04001804068684578,
- -0.029646698385477066,
- 0.04380263760685921,
- 0.05013931170105934,
- -0.028674403205513954,
- 0.07257189601659775,
- -0.07104857265949249,
- -0.033261507749557495,
- -0.0880436822772026,
- 0.04402725771069527,
- -0.02480282634496689,
- 0.06554882228374481,
- 0.036399006843566895,
- 0.044729083776474,
- -0.033181123435497284,
- 0.0013560199877247214,
- 0.09452182799577713,
- -0.09866608679294586,
- 0.032701700925827026,
- -0.022544261068105698,
- -0.03904806077480316,
- 0.02470828779041767,
- -0.008700291626155376,
- 0.08301422744989395,
- 0.014031529426574707,
- -0.008348804898560047,
- 0.04132099822163582,
- -0.06473644822835922,
- -0.021776504814624786,
- -0.05270269140601158,
- 0.005190052092075348,
- -0.036626800894737244,
- 0.010790773667395115,
- -0.026900727301836014,
- 0.0328952856361866,
- -0.03810432553291321,
- 0.013657096773386002,
- -0.047126900404691696,
- -0.11612525582313538,
- -0.017003415152430534,
- -0.0808333232998848,
- 0.08882708847522736,
- 0.016541102901101112,
- -0.028968580067157745,
- 0.00037177951890043914,
- 0.014040163718163967,
- -0.012702840380370617,
- -0.03548836708068848,
- 0.028711654245853424,
- -0.02784326672554016,
- 0.04653579741716385,
- 0.06435081362724304,
- 0.05404555797576904,
- 0.006934901233762503,
- -0.022182339802384377,
- -0.0006635916652157903,
- -0.013023179955780506,
- -0.10888737440109253,
- 0.037142716348171234,
- -0.016856076195836067,
- 0.031823258846998215,
- -0.016657233238220215,
- 0.028874782845377922,
- -0.010448635555803776,
- 0.0028325889725238085,
- -0.11145644634962082,
- 0.023494573310017586,
- 0.051862090826034546,
- 0.08431503176689148,
- 0.05378752201795578,
- 0.018003512173891068,
- 0.01909187063574791,
- -0.01456322893500328,
- 0.019046368077397346,
- 0.09784144163131714,
- 0.007599346339702606,
- -0.05637521296739578,
- 0.06586591899394989,
- -0.021458564326167107,
- -0.03247448429465294,
- -0.02628990449011326,
- 0.048079513013362885,
- -0.04054605960845947,
- 0.025769950821995735,
- -0.008563820272684097,
- -0.049790047109127045,
- -0.052092473953962326,
- 0.253446102142334,
- 0.02319137379527092,
- 0.06553858518600464,
- -0.004759256262332201,
- 0.015349961817264557,
- 0.04430874437093735,
- -0.029737213626503944,
- -0.01114677544683218,
- -0.04173973575234413,
- 0.00877966545522213,
- -0.01776711270213127,
- -0.01979597471654415,
- 0.003028259612619877,
- -0.11001724749803543,
- 0.04333510994911194,
- 0.0009071503300219774,
- 0.09341985732316971,
- 0.08787772059440613,
- 0.03796854615211487,
- -0.0023981849662959576,
- -0.07207519561052322,
- -0.01816096343100071,
- 0.012981245294213295,
- 0.07735419273376465,
- 0.06450837850570679,
- -0.011198113672435284,
- -0.054083582013845444,
- 0.03116069734096527,
- -3.974944432881135e-33,
- 0.04667918384075165,
- -0.05817953124642372,
- 0.10887198150157928,
- 0.02871178835630417,
- 0.04776960238814354,
- 0.039404913783073425,
- -0.016796795651316643,
- -0.04984626546502113,
- -0.013961287215352058,
- -0.024588219821453094,
- -0.017525941133499146,
- 0.10290452092885971,
- 0.02989758737385273,
- 0.03249381482601166,
- 0.03776639699935913,
- -0.051140349358320236,
- -0.08613412082195282,
- -0.08355638384819031,
- 0.04713383689522743,
- -0.03741583228111267,
- -0.04757378250360489,
- 0.017872385680675507,
- -0.039452120661735535,
- 0.0348532497882843,
- 0.026814986020326614,
- -0.006182330194860697,
- 0.04273342713713646,
- 0.005070243030786514,
- -0.04592597112059593,
- 0.018632104620337486,
- -0.07387582957744598,
- 0.05077424272894859,
- 0.057298995554447174,
- 0.016299104318022728,
- -0.0031396131962537766,
- -0.004266667179763317,
- 0.0210989098995924,
- -0.040726855397224426,
- 0.06466381251811981,
- -0.08710392564535141,
- -0.018910514190793037,
- -0.0023754588328301907,
- -0.026746299117803574,
- 0.017826804891228676,
- -0.008756112307310104,
- 0.00818193145096302,
- -0.029377160593867302,
- -0.028792325407266617,
- -0.10146567970514297,
- 0.0512508898973465,
- -0.05192076042294502,
- -0.0026001499500125647,
- 0.042250510305166245,
- -0.017830902710556984,
- -0.030460501089692116,
- -0.053430020809173584,
- 0.008442755788564682,
- 0.09624584019184113,
- -0.028535323217511177,
- -0.047062426805496216,
- 0.012670072726905346,
- -0.0009843576699495316,
- -0.02441282384097576,
- -0.06767357885837555,
- 0.007496604695916176,
- -0.037736158818006516,
- 0.003465882735326886,
- -0.01333251129835844,
- 0.060169730335474014,
- -0.043770987540483475,
- -0.07063832879066467,
- 0.03222706913948059,
- 0.029292168095707893,
- 0.0672401487827301,
- -0.04601283371448517,
- -0.04154092073440552,
- -0.0014871133025735617,
- -0.045187778770923615,
- -0.08369477838277817,
- 0.04466129094362259,
- -0.03444615751504898,
- 0.009869931265711784,
- -0.0426272451877594,
- 0.09228800982236862,
- 0.07230692356824875,
- -0.06701952964067459,
- -0.028905458748340607,
- -0.027432382106781006,
- -0.0034315993543714285,
- -0.013878481462597847,
- -0.027965839952230453,
- 0.08792686462402344,
- 0.15132485330104828,
- -0.042802684009075165,
- -0.11339278519153595,
- 3.660993034321534e-33,
- 0.028328808024525642,
- -0.07173115760087967,
- 0.015430319122970104,
- 0.14679627120494843,
- 0.0466303713619709,
- -0.1195240318775177,
- -0.056622155010700226,
- -0.010700501501560211,
- -0.02568340115249157,
- 0.09983799606561661,
- -0.009719138965010643,
- -0.022867877036333084,
- 0.05801936984062195,
- 0.03490922600030899,
- -0.036080215126276016,
- -0.01089904922991991,
- -0.010571802034974098,
- 0.010002244263887405,
- -0.01710977964103222,
- 0.03466058894991875,
- 0.016096025705337524,
- 0.07564748078584671,
- -0.06933403015136719,
- -0.026758726686239243,
- -0.041502323001623154,
- 0.09079425781965256,
- 0.0055512115359306335,
- 0.016978872939944267,
- -0.06674530357122421,
- -0.03723461925983429,
- 0.020489050075411797,
- 0.04336243495345116,
- -0.017738565802574158,
- -0.0378805436193943,
- -0.013864184729754925,
- 0.07171286642551422,
- 0.057654667645692825,
- 0.028761066496372223,
- -0.025205017998814583,
- -0.00120933772996068,
- 0.005617819726467133,
- 0.01914144866168499,
- 0.021759923547506332,
- 0.05877567082643509,
- -0.025223692879080772,
- 0.004367712419480085,
- 0.018954962491989136,
- 0.06689823418855667,
- -0.03346026688814163,
- 0.01752277836203575,
- -0.0698598325252533,
- 0.0011251134565100074,
- -0.0377877876162529,
- -0.01870313286781311,
- 0.05979471281170845,
- -0.007072146516293287,
- -0.0927584320306778,
- -0.0033959730062633753,
- -0.007453953847289085,
- -0.0008533647051081061,
- 0.07157723605632782,
- 0.052432622760534286,
- 0.01149915810674429,
- 0.04232101887464523,
- -0.037002112716436386,
- 0.04065603017807007,
- -0.014152521267533302,
- 0.050962258130311966,
- -0.11767711490392685,
- -0.004242458380758762,
- -0.013745985925197601,
- 0.055125463753938675,
- -0.05549975857138634,
- 0.008228342048823833,
- -0.02489743009209633,
- 0.005109716672450304,
- -0.07443520426750183,
- -0.026165207847952843,
- 0.04119344428181648,
- -0.06033322587609291,
- -0.0050379750318825245,
- -0.034671884030103683,
- -0.002661248203366995,
- -0.07033060491085052,
- 0.004277391824871302,
- -0.025388257578015327,
- -0.006497719790786505,
- -0.013786454685032368,
- -0.030772805213928223,
- -0.07134877145290375,
- -0.011746848002076149,
- -0.0019697670359164476,
- -0.11059127002954483,
- 0.04790739342570305,
- -0.03847460076212883,
- -1.2055122233789461e-8,
- 0.0713685005903244,
- -0.008033661171793938,
- -0.013769562356173992,
- -0.016546299681067467,
- 0.11420581489801407,
- 0.054852791130542755,
- 0.07689838856458664,
- -0.034265171736478806,
- -0.09658820927143097,
- 0.07937505841255188,
- 0.030681457370519638,
- -0.012901267036795616,
- -0.029250681400299072,
- 0.07977565377950668,
- 0.020337605848908424,
- -0.08485482633113861,
- -0.03813536465167999,
- -0.0060584330931305885,
- -0.008230192586779594,
- -0.005045777186751366,
- 0.023187952116131783,
- 0.019560931250452995,
- 0.008351486176252365,
- 0.012988756410777569,
- 0.0338994562625885,
- -0.039266183972358704,
- -0.019282648339867592,
- 0.04529426246881485,
- -0.022128120064735413,
- 0.03929970785975456,
- 0.08247041702270508,
- 0.10024318099021912,
- -0.025466574355959892,
- 0.026744335889816284,
- -0.0452164001762867,
- -0.04682325944304466,
- -0.08409861475229263,
- -0.049468591809272766,
- -0.003864346770569682,
- 0.029517464339733124,
- 0.02143562212586403,
- 0.020524905994534492,
- 0.0318206287920475,
- -0.019742421805858612,
- -0.03414306789636612,
- -0.06857766211032867,
- 0.0631331205368042,
- 0.02570895478129387,
- -0.014258237555623055,
- 0.012076325714588165,
- 0.035996753722429276,
- -0.043540552258491516,
- 0.01678798347711563,
- 0.0749933198094368,
- 0.03546455129981041,
- -0.00716130156069994,
- -0.013791478238999844,
- 0.06970509886741638,
- -0.1096697449684143,
- -0.06630189716815948,
- 0.13492700457572937,
- -0.002599407220259309,
- 0.031969401985406876,
- -0.013327836990356445
- ]
- },
- {
- "keyword": "philosophy",
- "type": "concept",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.020235396921634674,
- 0.05102075636386871,
- -0.15732139348983765,
- 0.010397760197520256,
- -0.033469058573246,
- 0.012991649098694324,
- 0.08763668686151505,
- -0.027641696855425835,
- 0.07041938602924347,
- 0.012161863967776299,
- 0.012898867949843407,
- 0.054225340485572815,
- -0.028099434450268745,
- -0.01004814449697733,
- -0.015319237485527992,
- 0.01782558299601078,
- -0.02143547311425209,
- -0.04146057739853859,
- -0.05170504003763199,
- -0.039686981588602066,
- -0.11944599449634552,
- 0.04740709066390991,
- -0.002458887407556176,
- 0.03329648822546005,
- -0.07005354017019272,
- 0.04476034641265869,
- 0.036587126553058624,
- -0.05870825797319412,
- 0.01920139230787754,
- -0.1208411231637001,
- -0.013843781314790249,
- 0.0835140123963356,
- 0.010319331660866737,
- -0.06866338849067688,
- -0.03701820224523544,
- 0.03721526265144348,
- 0.045310407876968384,
- 0.05116088315844536,
- 0.06048642843961716,
- 0.005409374833106995,
- 0.004508179146796465,
- -0.04842223972082138,
- -0.04059711471199989,
- -0.019291166216135025,
- -0.009633975103497505,
- -0.002573729958385229,
- 0.0014138645492494106,
- 0.013945640996098518,
- 0.01976381242275238,
- -0.03434531018137932,
- -0.04735179990530014,
- 0.00021379051031544805,
- -0.12819701433181763,
- 0.049267929047346115,
- 0.03520766645669937,
- 0.05088892579078674,
- -0.04088158905506134,
- 0.04163062199950218,
- -0.05372030660510063,
- -0.07402411103248596,
- 0.033556267619132996,
- -0.025195742025971413,
- -0.06926067918539047,
- 0.12713995575904846,
- 0.08400577306747437,
- 0.03058852069079876,
- -0.017714347690343857,
- 0.035572201013565063,
- -0.09405277669429779,
- 0.004997574258595705,
- 0.019903849810361862,
- 0.0017466910649091005,
- 0.02077949047088623,
- -0.008410463109612465,
- 0.017494099214673042,
- -0.059557247906923294,
- 0.024861974641680717,
- -0.054901983588933945,
- 0.04000326618552208,
- -0.00660208472982049,
- 0.0055082254111766815,
- -0.010459310375154018,
- -0.0411406084895134,
- -0.011082706041634083,
- 0.029153093695640564,
- -0.0011542824795469642,
- 0.011058330535888672,
- 0.0010561177041381598,
- 0.04788615554571152,
- 0.010838417336344719,
- 0.02367263287305832,
- 0.0358332134783268,
- -0.008178798481822014,
- 0.04552266001701355,
- -0.04968319833278656,
- 0.07523726671934128,
- -0.03022407554090023,
- -0.04539937898516655,
- -0.049441393464803696,
- 0.21924430131912231,
- 0.06716819107532501,
- 0.04040268436074257,
- -0.02955153025686741,
- 0.0432184673845768,
- 0.07317538559436798,
- -0.039753083139657974,
- -0.012177514843642712,
- -0.032617196440696716,
- 0.0750783383846283,
- 0.003797654528170824,
- -0.031181443482637405,
- 0.023342691361904144,
- -0.0041227699257433414,
- -0.03778966888785362,
- 0.0906110405921936,
- 0.01539673749357462,
- 0.09504150599241257,
- 0.03751150518655777,
- -0.023912902921438217,
- -0.12842093408107758,
- -0.044981203973293304,
- 0.00946373213082552,
- -0.00601450027897954,
- -0.048347413539886475,
- -0.04670053347945213,
- -0.06798099726438522,
- -0.05683748424053192,
- -4.7468970831959006e-33,
- 0.005554724484682083,
- -0.03569081053137779,
- 0.01923678256571293,
- -0.009413203224539757,
- -0.06222483888268471,
- 0.07628776133060455,
- 0.006346741691231728,
- -0.03503638133406639,
- 0.02275545708835125,
- 0.032915424555540085,
- 0.0037560048513114452,
- 0.029523510485887527,
- 0.04559548571705818,
- 0.01520028617233038,
- 0.07073774933815002,
- 0.013026396743953228,
- -0.01086761336773634,
- -0.003040256444364786,
- -0.016287703067064285,
- -0.008882958441972733,
- -0.010870014317333698,
- 0.04710284247994423,
- -0.047490280121564865,
- -0.0171891488134861,
- 0.04891448840498924,
- 0.027359601110219955,
- 0.06560195237398148,
- -0.04348067566752434,
- 0.009749519638717175,
- 0.027028901502490044,
- 0.005911217536777258,
- 0.10713264346122742,
- -0.0732119157910347,
- 0.07801749557256699,
- -0.03012147918343544,
- 0.024127215147018433,
- -0.0200367271900177,
- -0.026128055527806282,
- 0.0709003210067749,
- -0.09780274331569672,
- -0.021944763138890266,
- -0.011016621254384518,
- 0.050613872706890106,
- -0.0748499259352684,
- 0.07165923714637756,
- 0.08114378899335861,
- 0.07033544033765793,
- -0.029011216014623642,
- -0.06660950183868408,
- 0.01968608796596527,
- 0.007523786276578903,
- -0.0511072613298893,
- 0.09185920655727386,
- 0.03398120030760765,
- -0.0008539031841792166,
- -0.021511605009436607,
- 0.013936455361545086,
- 0.051607340574264526,
- 0.00810263678431511,
- -0.09164100885391235,
- -0.02298746630549431,
- 0.026247471570968628,
- -0.030915163457393646,
- 0.003845717292279005,
- 0.013373865745961666,
- 0.02707931213080883,
- -0.13212601840496063,
- -0.08193705230951309,
- 0.025360211730003357,
- -0.01742933690547943,
- 0.021011540666222572,
- 0.014283380471169949,
- -0.0076308343559503555,
- 0.0021031792275607586,
- -0.028192009776830673,
- -0.0038624308072030544,
- -0.04753502830862999,
- -0.04827544838190079,
- -0.0856797844171524,
- 0.1072177141904831,
- -0.032379984855651855,
- -0.049241434782743454,
- -0.0034701311960816383,
- -0.020136412233114243,
- 0.0974450409412384,
- 0.09318279474973679,
- 0.0460822731256485,
- -0.038138143718242645,
- 0.08811306208372116,
- -0.06833911687135696,
- -0.04400079697370529,
- 0.013984166085720062,
- 0.09217735379934311,
- -0.0433264784514904,
- -0.023432070389389992,
- 3.62123193790497e-33,
- 0.045800238847732544,
- -0.06704167276620865,
- 0.009985886514186859,
- 0.07301116734743118,
- 0.09494170546531677,
- 0.00042167294304817915,
- -0.09088345617055893,
- 0.03221718594431877,
- -0.09940541535615921,
- -0.046511877328157425,
- -0.01119742076843977,
- -0.025504648685455322,
- 0.01633739471435547,
- 0.025977175682783127,
- -0.01502598449587822,
- 0.003943466581404209,
- 0.02646574005484581,
- -0.08980891108512878,
- -0.027325347065925598,
- 0.007371502462774515,
- -0.03834492713212967,
- 0.016137363389134407,
- -0.16085712611675262,
- -0.08826016634702682,
- 0.0431659035384655,
- 0.04103846102952957,
- 0.0777735486626625,
- -0.03495663031935692,
- 0.04309636354446411,
- -0.013969375751912594,
- -0.02127494290471077,
- 0.008951053023338318,
- -0.021629806607961655,
- -0.002013775985687971,
- -0.004579531494528055,
- 0.15423841774463654,
- 0.03459358587861061,
- 0.05305028706789017,
- -0.023990798741579056,
- -0.031778059899806976,
- -0.04799826815724373,
- 0.016407210379838943,
- -0.010915856808423996,
- 0.04902014136314392,
- -0.017128875479102135,
- -0.06611964106559753,
- -0.04182206466794014,
- 0.06992319971323013,
- -0.040830131620168686,
- 0.014548586681485176,
- -0.005389308091253042,
- -0.022837981581687927,
- 0.01852945052087307,
- -0.03444616124033928,
- 0.05084950104355812,
- -0.00747132720425725,
- 0.018368292599916458,
- -0.005225352477282286,
- 0.016918854787945747,
- -0.0205068401992321,
- 0.07985667139291763,
- 0.06206459179520607,
- -0.058824583888053894,
- 0.04601552337408066,
- -0.04435906931757927,
- 0.019491394981741905,
- -0.05358776077628136,
- 0.08381742238998413,
- -0.04884662106633186,
- 0.001767874462530017,
- 0.007994203828275204,
- 0.02658134326338768,
- -0.061734940856695175,
- 0.017745159566402435,
- 0.047297388315200806,
- 0.04581621661782265,
- -0.031220724806189537,
- 0.0025648397859185934,
- -0.005700988695025444,
- 0.009768306277692318,
- 0.011132512241601944,
- -0.12352437525987625,
- 0.056057292968034744,
- 0.07563579827547073,
- -0.020097987726330757,
- -0.054622262716293335,
- -0.02813813090324402,
- 0.004695906303822994,
- 0.0011658868752419949,
- -0.0600164458155632,
- -0.005209267605096102,
- 0.023855013772845268,
- -0.028532296419143677,
- 0.03531487658619881,
- -0.07103549689054489,
- -1.1551538392495786e-8,
- 0.039619795978069305,
- -0.02297729067504406,
- 0.02842821553349495,
- -0.0013799931621178985,
- 0.05159078538417816,
- 0.034418415278196335,
- 0.06984688341617584,
- -0.08030959218740463,
- -0.049120787531137466,
- 0.06942128390073776,
- -0.0662200078368187,
- 0.049314096570014954,
- -0.05357692763209343,
- 0.13281601667404175,
- -0.010250701569020748,
- -0.04824119806289673,
- 0.02889966405928135,
- -0.021359693259000778,
- -0.010469438508152962,
- -0.01397891528904438,
- 0.11221307516098022,
- 0.07207956165075302,
- -0.010608958080410957,
- -0.046477094292640686,
- -0.0017890349263325334,
- 0.024465322494506836,
- 0.014298561960458755,
- -0.009642589837312698,
- -0.002059167716652155,
- 0.018526703119277954,
- 0.039636917412281036,
- 0.060194842517375946,
- -0.018909184262156487,
- -0.044709380716085434,
- 0.013480806723237038,
- -0.0064899250864982605,
- 0.00353313353843987,
- 0.012342995963990688,
- 0.03261370211839676,
- -0.020906778052449226,
- -0.0014458699151873589,
- 0.0023996264208108187,
- 0.02317020297050476,
- 0.004294082056730986,
- -0.020598486065864563,
- -0.08309794217348099,
- 0.024840086698532104,
- 0.022574130445718765,
- -0.0392821729183197,
- 0.020860880613327026,
- -0.0031397840939462185,
- 0.02542431466281414,
- 0.06952796131372452,
- -0.06550110131502151,
- 0.012697146274149418,
- -0.011573662050068378,
- 0.0017236815765500069,
- 0.06478589028120041,
- -0.16037441790103912,
- 0.02161346562206745,
- 0.12177751213312149,
- 0.030926983803510666,
- 0.06290268898010254,
- -0.06413552165031433
- ]
- },
- {
- "keyword": "event",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.0013204941060394049,
- 0.06407709419727325,
- 0.0239033754914999,
- 0.03320382535457611,
- 0.047049086540937424,
- 0.02101844549179077,
- 0.1333269327878952,
- -0.009314245544373989,
- 0.09574571996927261,
- 0.004331535659730434,
- 0.017537256702780724,
- -0.0708547830581665,
- -0.04497306048870087,
- 0.01435651071369648,
- -0.006434876471757889,
- 0.013688881881535053,
- 0.029013382270932198,
- 0.0038304065819829702,
- -0.15674549341201782,
- 0.0028726740274578333,
- -0.07669331133365631,
- -0.10627549141645432,
- -0.06746853142976761,
- 0.016035621985793114,
- -0.061005599796772,
- 0.029235802590847015,
- -0.004957095719873905,
- 0.012526527047157288,
- 0.06390610337257385,
- -0.07279857993125916,
- 0.014864900149405003,
- -0.08965262770652771,
- 0.015605317428708076,
- -0.051798418164253235,
- 0.0006492368411272764,
- -0.009653560817241669,
- -0.041703686118125916,
- -0.010562577284872532,
- 0.02336256578564644,
- 0.022227469831705093,
- 0.01593444123864174,
- -0.11550428718328476,
- 0.019714511930942535,
- 0.00713390065357089,
- 0.011898064985871315,
- -0.02713734470307827,
- -0.00012160074402345344,
- 0.03095579519867897,
- -0.04995907098054886,
- 0.08744403719902039,
- 0.03590982407331467,
- -0.009176499210298061,
- 0.020864631980657578,
- -0.04447498172521591,
- 0.07177938520908356,
- 0.05040929466485977,
- -0.00799561757594347,
- -0.07367486506700516,
- 0.019687486812472343,
- -0.08967027068138123,
- 0.02862071804702282,
- 0.03238241747021675,
- -0.13131704926490784,
- 0.058214228600263596,
- -0.0077034467831254005,
- 0.016855373978614807,
- 0.003378078807145357,
- 0.048724446445703506,
- 0.008961732499301434,
- -0.054421134293079376,
- 0.04177817702293396,
- 0.048149388283491135,
- -0.006145840976387262,
- 0.05716955289244652,
- 0.047908633947372437,
- -0.0428573340177536,
- -0.03474188596010208,
- -0.019742976874113083,
- 0.03753833845257759,
- 0.06096205860376358,
- 0.005812763702124357,
- -0.07180210947990417,
- 0.0379660502076149,
- -0.02150489017367363,
- 0.07473009079694748,
- -0.015210241079330444,
- -0.05133669823408127,
- 0.038290832191705704,
- -0.019543837755918503,
- 0.05822722986340523,
- -0.1215551495552063,
- -0.007448228076100349,
- 0.10428252816200256,
- 0.022653628140687943,
- -0.07203241437673569,
- 0.02609703131020069,
- -0.009145447053015232,
- -0.02599123865365982,
- 0.031569626182317734,
- 0.23960357904434204,
- 0.0013946089893579483,
- 0.05579637363553047,
- -0.11348570138216019,
- 0.06023646518588066,
- 0.04399139806628227,
- -0.041323743760585785,
- -0.11316288262605667,
- -0.044846925884485245,
- -0.05721786618232727,
- 0.013325977139174938,
- 0.006499506067484617,
- -0.0786963701248169,
- 0.037603117525577545,
- 0.005957895889878273,
- -0.036226339638233185,
- 0.08653851598501205,
- -0.014964798465371132,
- 0.07118374109268188,
- -0.014858078211545944,
- -0.062418729066848755,
- 0.009946883656084538,
- 0.06852179765701294,
- -0.03767169266939163,
- -0.014032340608537197,
- -0.03352203220129013,
- -0.049856267869472504,
- 0.08316092193126678,
- -5.842159169128767e-33,
- 0.007806743495166302,
- -0.10414193570613861,
- -0.11180809140205383,
- 0.04256672412157059,
- 0.04736527428030968,
- 0.05176759138703346,
- -0.02979075163602829,
- -0.05276469886302948,
- -0.010983778163790703,
- -0.007111088372766972,
- -0.02123120054602623,
- -0.0037203775718808174,
- 0.016578104346990585,
- -0.0958883985877037,
- 0.0839090421795845,
- -0.028195567429065704,
- -0.0013231730554252863,
- 0.06584492325782776,
- -0.04355164244771004,
- -0.037639014422893524,
- -0.11036065220832825,
- 0.05257264897227287,
- 0.005635926499962807,
- 0.08551029115915298,
- 0.040514979511499405,
- 0.06588655710220337,
- -0.011381816118955612,
- -0.0013900852063670754,
- 0.005007721018046141,
- 0.008009737357497215,
- 0.008874373510479927,
- 0.007615346927195787,
- -0.01867651753127575,
- -0.06301747262477875,
- -0.021279681473970413,
- -0.021844733506441116,
- -0.0008073818171396852,
- -0.1084938496351242,
- -0.011302611790597439,
- -0.010675162076950073,
- -0.03885865956544876,
- -0.03575075417757034,
- -0.09624087810516357,
- -0.0706254318356514,
- -0.0322512611746788,
- -0.0019348670030012727,
- 0.05042686313390732,
- -0.007124033756554127,
- 0.027606744319200516,
- -0.023997997865080833,
- 0.010795061476528645,
- -0.026109516620635986,
- 0.024568485096096992,
- -0.019589446485042572,
- 0.028864113613963127,
- 0.05741715431213379,
- 0.025549588724970818,
- -0.04405999556183815,
- 0.032911259680986404,
- 0.04459773376584053,
- 0.04823381453752518,
- 0.0386466309428215,
- 0.037165481597185135,
- 0.04066075012087822,
- -0.04229745641350746,
- -0.04639842361211777,
- 0.029767820611596107,
- -0.11000707000494003,
- 0.042659711092710495,
- -0.006113058887422085,
- 0.01676180772483349,
- 0.003737624501809478,
- 0.06790563464164734,
- -0.07095976918935776,
- 0.023769434541463852,
- 0.04595911502838135,
- 0.02729659713804722,
- 0.04697176441550255,
- -0.040373243391513824,
- 0.05486205220222473,
- -0.08257587999105453,
- -0.07910097390413284,
- 0.03464789688587189,
- 0.05004030093550682,
- 0.02007681503891945,
- 0.04838462546467781,
- -0.022061312571167946,
- -0.05043859779834747,
- -0.048953890800476074,
- 0.006246655713766813,
- -0.02857125923037529,
- -0.027782339602708817,
- 0.0480591282248497,
- 0.009726527146995068,
- -0.031754378229379654,
- 4.187929682912733e-33,
- -0.04791995882987976,
- 0.036786727607250214,
- -0.026510508731007576,
- 0.06104135885834694,
- 0.0802629217505455,
- -0.03593461960554123,
- -0.014026544988155365,
- -0.0644567608833313,
- -0.01719132624566555,
- 0.07599339634180069,
- -0.02424115687608719,
- 0.04264981299638748,
- 0.04154793545603752,
- 0.012740297242999077,
- 0.015016064047813416,
- 0.040207576006650925,
- 0.059726815670728683,
- -0.006716904230415821,
- -0.008965009823441505,
- 0.04958418756723404,
- -0.021000651642680168,
- -0.0218298751860857,
- -0.037267204374074936,
- -0.0889383852481842,
- -0.04771681874990463,
- -0.012056557461619377,
- 0.0941602811217308,
- -0.047907162457704544,
- -0.035705145448446274,
- -0.04254164919257164,
- -0.03429132327437401,
- -0.007050191983580589,
- -0.033608995378017426,
- 0.035920124500989914,
- 0.032979607582092285,
- 0.08915990591049194,
- 0.10666362941265106,
- -0.005239306483417749,
- -0.02246245928108692,
- -0.04371592029929161,
- 0.11313693225383759,
- 0.004274706356227398,
- -0.023720888420939445,
- 0.10107602179050446,
- -0.05620058998465538,
- 0.08389347791671753,
- -0.03379712253808975,
- 0.09315409511327744,
- 0.11001387238502502,
- 0.04894956201314926,
- -0.10750709474086761,
- 0.010162640362977982,
- 0.02597600594162941,
- 0.03953620418906212,
- -0.02495953068137169,
- 0.07295127958059311,
- -0.025599714368581772,
- -0.03609248623251915,
- -0.05093184486031532,
- 0.0726957619190216,
- -0.04236791655421257,
- -0.0007700795540586114,
- -0.005458238534629345,
- 0.08209842443466187,
- 0.04755455628037453,
- 0.01738150604069233,
- -0.0742109939455986,
- 0.006495992187410593,
- 0.0037316379602998495,
- -0.010350700467824936,
- 0.045885294675827026,
- 0.05942310765385628,
- -0.11188023537397385,
- -0.01689065247774124,
- -0.02938126213848591,
- 0.04331233724951744,
- -0.06941205263137817,
- 0.011046605184674263,
- 0.031493429094552994,
- -0.07380985468626022,
- -0.077555350959301,
- -0.023198861628770828,
- -0.026496566832065582,
- 0.005839433521032333,
- 0.02511746436357498,
- 0.08605602383613586,
- 0.047357212752103806,
- 0.0025349713396281004,
- 0.023016901686787605,
- -0.003004342084750533,
- -0.027845319360494614,
- -0.010619915090501308,
- 0.0722050741314888,
- 0.036500558257102966,
- 0.006598209962248802,
- -1.2447379127422664e-8,
- 0.022613799199461937,
- 0.04667852446436882,
- 0.03166602924466133,
- -0.046005137264728546,
- 0.06511920690536499,
- 0.023811884224414825,
- -0.038411326706409454,
- 0.0024554466363042593,
- -0.013082764111459255,
- 0.02716868929564953,
- -0.04634697735309601,
- 0.009819715283811092,
- 0.021213939413428307,
- 0.03155074268579483,
- 0.056785307824611664,
- -0.020697763189673424,
- 0.021692223846912384,
- 0.020150726661086082,
- -0.0632057636976242,
- -0.012956121936440468,
- 0.05050899088382721,
- 0.008750801905989647,
- 0.03567333519458771,
- 0.022370144724845886,
- -0.05099109932780266,
- -0.011264234781265259,
- -0.05835648253560066,
- 0.11891093105077744,
- 0.03848128020763397,
- -0.06095030531287193,
- 0.00016383572074119002,
- 0.014637722633779049,
- -0.019157538190484047,
- -0.01831783354282379,
- 0.03220970556139946,
- 0.0061873989179730415,
- -0.009651062078773975,
- -0.06615070253610611,
- 0.06851502507925034,
- -0.038333624601364136,
- 0.03760770335793495,
- -0.029551072046160698,
- -0.007424618117511272,
- 0.05308923125267029,
- -0.0438334196805954,
- 0.041878409683704376,
- -0.04048670828342438,
- -0.09202464669942856,
- 0.010002057068049908,
- 0.05307263135910034,
- -0.06760149449110031,
- -0.018210336565971375,
- 0.01990346796810627,
- 0.025019707158207893,
- 0.058903563767671585,
- 0.049325551837682724,
- 0.03131096065044403,
- -0.013284564018249512,
- 0.007494739256799221,
- 0.015377867966890335,
- 0.1006939709186554,
- 0.029078751802444458,
- -0.05134166404604912,
- -0.02565144933760166
- ]
- },
- {
- "keyword": "occasion",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.009663122706115246,
- 0.06920962780714035,
- 0.0958246961236,
- 0.007850813679397106,
- -0.0000553357349417638,
- 0.024873383343219757,
- 0.10110367834568024,
- -0.03023356758058071,
- 0.041329097002744675,
- -0.029523156583309174,
- 0.029560817405581474,
- -0.008216165006160736,
- -0.018627410754561424,
- 0.004774788860231638,
- 0.031517960131168365,
- -0.01154143363237381,
- 0.012665321119129658,
- -0.010381435044109821,
- -0.032785892486572266,
- 0.05438532680273056,
- -0.09746456146240234,
- -0.06041966751217842,
- -0.019849935546517372,
- -0.024788662791252136,
- -0.07051300257444382,
- -0.017581768333911896,
- 0.041645441204309464,
- 0.004311529919505119,
- 0.058160021901130676,
- -0.060020048171281815,
- 0.015591202303767204,
- 0.06684109568595886,
- -0.006451127119362354,
- 0.0005441622924990952,
- -0.008726653642952442,
- 0.0476129874587059,
- -0.023086054250597954,
- -0.008976871147751808,
- 0.033614590764045715,
- 0.009204489178955555,
- -0.009654659777879715,
- -0.06042506918311119,
- 0.07232623547315598,
- -0.024422217160463333,
- 0.025953736156225204,
- -0.018873970955610275,
- 0.09504620730876923,
- 0.024469450116157532,
- -0.019257675856351852,
- 0.06747975945472717,
- 0.007692734710872173,
- 0.005671127699315548,
- 0.01571071706712246,
- -0.023521235212683678,
- 0.043195292353630066,
- -0.005876741372048855,
- 0.006045737769454718,
- -0.0500822588801384,
- -0.02990070730447769,
- -0.03200322762131691,
- 0.015282604843378067,
- 0.08084798604249954,
- -0.15878793597221375,
- 0.028568141162395477,
- -0.010871795006096363,
- -0.0264479648321867,
- 0.022716771811246872,
- 0.04370927810668945,
- 0.020758166909217834,
- 0.09416113048791885,
- 0.00031665360438637435,
- 0.03990896791219711,
- 0.000060021320678060874,
- 0.07932312041521072,
- -0.021417846903204918,
- -0.030425146222114563,
- -0.024031324312090874,
- -0.06816786527633667,
- 0.017315147444605827,
- 0.02164291776716709,
- -0.03880080208182335,
- 0.0012289200676605105,
- 0.029035426676273346,
- 0.039407793432474136,
- 0.02936789207160473,
- -0.05587780848145485,
- -0.005963555071502924,
- 0.05810481309890747,
- -0.0339716412127018,
- 0.012349394150078297,
- -0.10224823653697968,
- -0.02761075086891651,
- 0.056671228259801865,
- -0.030167486518621445,
- -0.03152496740221977,
- -0.014412583783268929,
- -0.024716705083847046,
- -0.028341934084892273,
- 0.02140083909034729,
- 0.2878578305244446,
- 0.0003751262556761503,
- 0.05726391822099686,
- -0.08228432387113571,
- 0.0419178307056427,
- 0.0003395710082259029,
- -0.006345645524561405,
- -0.10396841168403625,
- -0.02442106045782566,
- -0.040375515818595886,
- -0.018924767151474953,
- 0.04571286216378212,
- 0.011237305589020252,
- 0.020648105069994926,
- -0.022891240194439888,
- 0.010007958859205246,
- 0.03446516394615173,
- 0.009636254981160164,
- 0.034210897982120514,
- 0.06511185318231583,
- -0.03467040881514549,
- 0.04099252074956894,
- 0.06882824003696442,
- -0.006316153332591057,
- -0.05583735555410385,
- -0.12182141095399857,
- -0.11981936544179916,
- 0.11944291740655899,
- -6.7393427427664e-33,
- 0.03963734209537506,
- -0.0863661840558052,
- -0.0665547177195549,
- 0.022972600534558296,
- 0.09490534663200378,
- 0.08986128866672516,
- -0.06917385011911392,
- -0.1034182757139206,
- 0.015562376007437706,
- -0.02269970439374447,
- 0.07113131880760193,
- -0.01869107224047184,
- 0.031200522556900978,
- -0.09761583060026169,
- 0.08414376527070999,
- 0.02612234838306904,
- -0.0023385798558592796,
- 0.14936991035938263,
- 0.02590847574174404,
- 0.008988133631646633,
- -0.042810603976249695,
- -0.07870850712060928,
- 0.009724876843392849,
- 0.049047183245420456,
- 0.0009923066245391965,
- -0.013938819989562035,
- 0.0450504869222641,
- -0.026521174237132072,
- 0.020607665181159973,
- -0.027736904099583626,
- 0.0594804473221302,
- 0.036769185215234756,
- -0.034842368215322495,
- -0.04005415737628937,
- 0.03774253651499748,
- -0.000043453288526507095,
- 0.0014718661550432444,
- -0.03244171291589737,
- 0.04451862722635269,
- 0.0018921465380117297,
- -0.011224771849811077,
- -0.029001682996749878,
- -0.02483302541077137,
- -0.051773931831121445,
- -0.007531981915235519,
- 0.03426313027739525,
- -0.0014782584039494395,
- 0.03556187078356743,
- 0.029247399419546127,
- 0.011720176786184311,
- -0.01325053907930851,
- -0.028873620554804802,
- 0.07664415240287781,
- -0.03703110292553902,
- 0.0027276831679046154,
- 0.008615992963314056,
- 0.04128028452396393,
- -0.00997667945921421,
- 0.08521151542663574,
- 0.05431118234992027,
- 0.06285800784826279,
- 0.03483428806066513,
- -0.014490761794149876,
- -0.033661138266325,
- -0.04136253148317337,
- -0.03804047778248787,
- -0.0041665565222501755,
- -0.04669075086712837,
- 0.03600970655679703,
- -0.03170730918645859,
- -0.02013932727277279,
- 0.026651617139577866,
- -0.03807069733738899,
- -0.05914803966879845,
- -0.025790272280573845,
- 0.017633071169257164,
- 0.06573502719402313,
- -0.019635461270809174,
- 0.01709625869989395,
- 0.03257427737116814,
- -0.07902228087186813,
- -0.07216448336839676,
- 0.016383010894060135,
- 0.027062222361564636,
- 0.01988120935857296,
- 0.08293632417917252,
- 0.027810944244265556,
- -0.03023139387369156,
- 0.0014253181871026754,
- 0.02905774675309658,
- -0.033703550696372986,
- -0.06539870798587799,
- 0.09716449677944183,
- -0.05212569609284401,
- -0.00490566436201334,
- 4.9424611396063275e-33,
- 0.016438256949186325,
- 0.023213092237710953,
- -0.02305811084806919,
- 0.057874567806720734,
- 0.0793609544634819,
- -0.03175992891192436,
- -0.03834203630685806,
- -0.01982640102505684,
- -0.052579108625650406,
- 0.046772025525569916,
- -0.05510430037975311,
- 0.031875088810920715,
- 0.016224414110183716,
- -0.01765226200222969,
- -0.006838238798081875,
- 0.03207691013813019,
- 0.08632542192935944,
- -0.012509465217590332,
- -0.004494719672948122,
- 0.03775828704237938,
- -0.04594307765364647,
- -0.05014876276254654,
- 0.09127986431121826,
- -0.13433843851089478,
- -0.05021711438894272,
- 0.004635169170796871,
- 0.06145557761192322,
- -0.043339647352695465,
- -0.10899674892425537,
- -0.03527355566620827,
- 0.004076467361301184,
- 0.016796359792351723,
- -0.04336876794695854,
- 0.016802093014121056,
- 0.052195049822330475,
- 0.1480114907026291,
- 0.013133189640939236,
- -0.004678197205066681,
- -0.02948867902159691,
- 0.04782392829656601,
- 0.022001607343554497,
- -0.01718655228614807,
- 0.004605784080922604,
- 0.11493732780218124,
- -0.0413786917924881,
- 0.06264439225196838,
- -0.0810147151350975,
- 0.03287603333592415,
- 0.08855229616165161,
- 0.026526566594839096,
- -0.10175147652626038,
- -0.005888772197067738,
- -0.025847608223557472,
- -0.015084121376276016,
- 0.02108742482960224,
- 0.014578256756067276,
- 0.03905411809682846,
- -0.01628493331372738,
- -0.046052128076553345,
- 0.020277487114071846,
- -0.07069183886051178,
- -0.019088072702288628,
- -0.043078452348709106,
- -0.011928264051675797,
- 0.028540290892124176,
- -0.007504195440560579,
- -0.038346268236637115,
- -0.04679920896887779,
- -0.04643762856721878,
- -0.0003410950885154307,
- -0.04512903839349747,
- 0.032649483531713486,
- -0.12069304287433624,
- -0.02646458148956299,
- -0.0372009314596653,
- 0.0806892067193985,
- -0.028498755767941475,
- -0.02850891277194023,
- -0.010251334868371487,
- -0.08085145056247711,
- -0.08870053291320801,
- -0.04585398733615875,
- -0.014432042837142944,
- 0.07340767234563828,
- -0.07789691537618637,
- 0.043285857886075974,
- 0.07395324110984802,
- -0.015063866972923279,
- 0.02544991672039032,
- 0.007736545987427235,
- 0.01597457006573677,
- 0.018470523878932,
- -0.004121736623346806,
- 0.012481736950576305,
- 0.03537226840853691,
- -1.3285950117847278e-8,
- 0.005699918605387211,
- 0.034808654338121414,
- -0.008632335811853409,
- -0.0654752254486084,
- 0.07974068075418472,
- -0.0387415811419487,
- 0.023970510810613632,
- -0.062060706317424774,
- 0.004164013080298901,
- -0.01288648135960102,
- 0.01284652017056942,
- 0.0294574536383152,
- 0.06136162579059601,
- 0.012113021686673164,
- 0.09592816978693008,
- -0.0088101327419281,
- -0.002328317379578948,
- 0.008588495664298534,
- -0.1290329247713089,
- 0.0036104123573750257,
- 0.019507145509123802,
- 0.0035130642354488373,
- 0.053957499563694,
- 0.008052753284573555,
- -0.0629405602812767,
- 0.034123651683330536,
- 0.00724629545584321,
- 0.04431729018688202,
- 0.058087777346372604,
- -0.017287248745560646,
- 0.025034043937921524,
- 0.03189709410071373,
- -0.06294906139373779,
- -0.053018294274806976,
- -0.00006030949589330703,
- -0.05069316178560257,
- -0.03062615357339382,
- -0.07221925258636475,
- 0.08321841061115265,
- -0.10484188050031662,
- -0.016203731298446655,
- -0.058540359139442444,
- 0.016445592045783997,
- 0.0701017901301384,
- 0.00504461582750082,
- 0.01978529989719391,
- -0.0012576630106195807,
- -0.00047562611871398985,
- -0.05192292481660843,
- 0.02868870086967945,
- -0.1149723082780838,
- -0.009213889949023724,
- 0.03539776802062988,
- 0.07853767275810242,
- 0.06529952585697174,
- 0.06978501379489899,
- -0.014735826291143894,
- -0.04758558049798012,
- -0.016281625255942345,
- -0.013338408432900906,
- 0.08254345506429672,
- 0.09812426567077637,
- -0.014250723645091057,
- -0.0760466456413269
- ]
- },
- {
- "keyword": "happening",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.026379788294434547,
- -0.029378296807408333,
- 0.015329035930335522,
- -0.005761914420872927,
- -0.0047287424094974995,
- -0.0903521329164505,
- 0.05528689920902252,
- 0.026034941896796227,
- 0.010487984865903854,
- 0.000936439260840416,
- -0.02837025187909603,
- -0.03121032752096653,
- 0.01305190846323967,
- 0.02787182480096817,
- -0.004864394664764404,
- 0.02269507385790348,
- -0.06960226595401764,
- -0.04886968806385994,
- -0.13065725564956665,
- 0.06585296243429184,
- -0.07686661928892136,
- 0.023418797180056572,
- -0.08900242298841476,
- 0.028675761073827744,
- -0.005087622441351414,
- -0.029275428503751755,
- 0.0026971229817718267,
- 0.006483735516667366,
- 0.06589148193597794,
- -0.06481686979532242,
- -0.024007583037018776,
- -0.06096009165048599,
- 0.046640727669000626,
- 0.028075028210878372,
- 0.015990830957889557,
- 0.010952490381896496,
- -0.042499613016843796,
- -0.008124379441142082,
- 0.04179676994681358,
- -0.016255587339401245,
- -0.005087555851787329,
- -0.15011835098266602,
- -0.04447000473737717,
- -0.019437868148088455,
- 0.09234986454248428,
- -0.018757039681077003,
- 0.02573583275079727,
- 0.036108776926994324,
- 0.013444074429571629,
- 0.021197738125920296,
- -0.008021953515708447,
- 0.03105485811829567,
- -0.004445536062121391,
- -0.05743902921676636,
- 0.02166055701673031,
- 0.03222275525331497,
- -0.0644378513097763,
- -0.006158563774079084,
- 0.08616531640291214,
- -0.010823626071214676,
- 0.05050632730126381,
- 0.018526315689086914,
- 0.011248590424656868,
- -0.024652820080518723,
- 0.025021808221936226,
- 0.023165486752986908,
- 0.013529134914278984,
- 0.028796162456274033,
- 0.039355795830488205,
- 0.05219998210668564,
- 0.08969824016094208,
- 0.041347913444042206,
- 0.015359733253717422,
- 0.032082512974739075,
- 0.030183587223291397,
- 0.00007518180791521445,
- -0.015871889889240265,
- -0.05110076069831848,
- 0.011552422307431698,
- -0.018071051687002182,
- 0.07447817921638489,
- -0.022900531068444252,
- -0.07141513377428055,
- 0.005631416104733944,
- 0.022480735555291176,
- -0.0693204328417778,
- 0.03271091729402542,
- -0.039488427340984344,
- 0.033666208386421204,
- 0.030886700376868248,
- -0.025162596255540848,
- 0.00562637485563755,
- 0.04416455700993538,
- 0.054985411465168,
- -0.06957460939884186,
- 0.01901070587337017,
- 0.01653134450316429,
- -0.00010305834439350292,
- -0.03539540246129036,
- 0.20789171755313873,
- -0.02226231060922146,
- 0.08146597445011139,
- 0.027760019525885582,
- -0.0017334935255348682,
- 0.03152412921190262,
- -0.00016306983889080584,
- -0.07028485834598541,
- 0.017633045092225075,
- -0.058473967015743256,
- -0.012625818140804768,
- -0.001757218735292554,
- 0.011365148238837719,
- 0.028931861743330956,
- 0.07522924244403839,
- 0.03940930962562561,
- 0.061427582055330276,
- 0.031226761639118195,
- 0.042577434331178665,
- -0.02161211520433426,
- -0.013966070488095284,
- -0.02139647677540779,
- 0.05363673344254494,
- -0.01969592645764351,
- -0.0012172616552561522,
- 0.03641652688384056,
- -0.05496973171830177,
- 0.0342274010181427,
- -2.3807116273180935e-33,
- 0.04028048738837242,
- -0.060341764241456985,
- -0.0747312381863594,
- 0.09895113110542297,
- 0.038843631744384766,
- 0.038513220846652985,
- 0.02014392428100109,
- -0.03408272564411163,
- 0.005402454640716314,
- 0.04314958676695824,
- 0.051619064062833786,
- -0.0501115620136261,
- -0.017762454226613045,
- 0.0014511893969029188,
- 0.007631543558090925,
- -0.06885525584220886,
- -0.0008653150871396065,
- 0.030363408848643303,
- -0.02420823834836483,
- 0.018784070387482643,
- -0.022757409140467644,
- 0.09732317179441452,
- -0.04362674430012703,
- 0.07816664129495621,
- -0.026565970852971077,
- 0.06650979816913605,
- -0.012885244563221931,
- -0.10812163352966309,
- 0.03872395679354668,
- -0.026240995153784752,
- -0.006034272722899914,
- -0.055810604244470596,
- -0.14905770123004913,
- 0.053027454763650894,
- -0.011988776735961437,
- -0.02195817045867443,
- -0.020115148276090622,
- -0.001237816410139203,
- 0.015212752856314182,
- -0.08919723331928253,
- -0.04063202440738678,
- 0.008840003982186317,
- -0.11663952469825745,
- 0.024105701595544815,
- 0.04475001245737076,
- 0.0017467268044129014,
- 0.06517831236124039,
- 0.009854137897491455,
- -0.05929435044527054,
- -0.036444615572690964,
- -0.08682529628276825,
- -0.012394696474075317,
- -0.08011125028133392,
- 0.009266655892133713,
- -0.04606202244758606,
- -0.0021283705718815327,
- 0.0476311631500721,
- -0.12394712120294571,
- 0.06082252413034439,
- 0.022720182314515114,
- 0.060960233211517334,
- 0.030047347769141197,
- -0.08266790211200714,
- -0.0694941058754921,
- -0.056512411683797836,
- -0.03896142169833183,
- 0.0786810964345932,
- -0.08876335620880127,
- -0.01759086176753044,
- 0.07685423642396927,
- 0.013475121930241585,
- 0.05930492654442787,
- -0.022239234298467636,
- 0.04753635451197624,
- 0.016299543902277946,
- -0.022855404764413834,
- -0.0028357531409710646,
- 0.05136644467711449,
- 0.015032216906547546,
- -0.023329759016633034,
- 0.03563610091805458,
- -0.11833595484495163,
- 0.06311842054128647,
- -0.027892231941223145,
- -0.0015857922844588757,
- 0.029091959819197655,
- 0.03741900995373726,
- -0.08934756368398666,
- -0.07591584324836731,
- 0.03192681819200516,
- -0.039775244891643524,
- 0.016110636293888092,
- 0.08908610790967941,
- 0.10979145765304565,
- -0.06153975427150726,
- 2.2085996015615328e-33,
- -0.030870556831359863,
- 0.05817580595612526,
- -0.05728492513298988,
- 0.05904383957386017,
- 0.008037992753088474,
- -0.058151789009571075,
- 0.04764985665678978,
- 0.013678810559213161,
- 0.020026706159114838,
- 0.03191239386796951,
- -0.06433778256177902,
- -0.04990064352750778,
- 0.022123198956251144,
- -0.056573059409856796,
- 0.012572857551276684,
- -0.02356080710887909,
- 0.12484130263328552,
- 0.007193564437329769,
- -0.01409242395311594,
- 0.05013906955718994,
- -0.0893697440624237,
- -0.06030568480491638,
- 0.04253876954317093,
- -0.04813355579972267,
- 0.03240266442298889,
- 0.06317616254091263,
- 0.08847565948963165,
- 0.06525075435638428,
- -0.027321720495820045,
- 0.02614978887140751,
- 0.046684909611940384,
- 0.02549956552684307,
- -0.06722969561815262,
- 0.01796649768948555,
- 0.07524009048938751,
- 0.13167092204093933,
- 0.0430530421435833,
- 0.018810810521245003,
- -0.009741188958287239,
- -0.03593701869249344,
- 0.06957406550645828,
- -0.032719556242227554,
- -0.06321673095226288,
- 0.04743319749832153,
- -0.011005084030330181,
- -0.04822748526930809,
- 0.0571916364133358,
- 0.0505397766828537,
- 0.020447799935936928,
- 0.05741261690855026,
- -0.0750352218747139,
- 0.05875783413648605,
- -0.042087454348802567,
- 0.05953209474682808,
- -0.04685865342617035,
- 0.08229631930589676,
- 0.04806511104106903,
- 0.03679449111223221,
- -0.030322441831231117,
- 0.05452106148004532,
- -0.014488017186522484,
- 0.02161584421992302,
- 0.03084835596382618,
- -0.0341256707906723,
- 0.04909032583236694,
- -0.002895761514082551,
- -0.06563501805067062,
- -0.07977770268917084,
- 0.045325856655836105,
- 0.0005299437907524407,
- 0.0011759132612496614,
- 0.023786766454577446,
- -0.1374950110912323,
- -0.028189511969685555,
- 0.03687423840165138,
- 0.022213025018572807,
- -0.05069228261709213,
- -0.005457932595163584,
- 0.022147025913000107,
- 0.009624379687011242,
- -0.045632775872945786,
- -0.041102539747953415,
- 0.017229918390512466,
- -0.0011537227546796203,
- -0.02144758217036724,
- -0.08997184038162231,
- 0.07534534484148026,
- 0.061338506639003754,
- 0.017586644738912582,
- -0.1214352548122406,
- -0.03360794112086296,
- -0.03157520666718483,
- 0.06241418421268463,
- -0.00920448824763298,
- 0.02103593945503235,
- -1.3270404330967267e-8,
- -0.032867297530174255,
- 0.07180409878492355,
- -0.030299190431833267,
- 0.0010474332375451922,
- 0.14184123277664185,
- 0.07657124102115631,
- -0.010096927173435688,
- 0.0347309447824955,
- 0.026636824011802673,
- 0.03921591863036156,
- -0.0027874617371708155,
- 0.010179784148931503,
- 0.023441027849912643,
- 0.06940638273954391,
- -0.022808313369750977,
- -0.02008708566427231,
- -0.01963997446000576,
- -0.0501069612801075,
- -0.03343052789568901,
- -0.05124884098768234,
- -0.0911187157034874,
- -0.030574770644307137,
- 0.0800405964255333,
- 0.09875866770744324,
- -0.024882763624191284,
- 0.008947105146944523,
- -0.025327470153570175,
- 0.11983425915241241,
- -0.013269688934087753,
- -0.030052796006202698,
- -0.0357394777238369,
- 0.008074760437011719,
- -0.002394814509898424,
- -0.021656211465597153,
- -0.07105627655982971,
- -0.03090663067996502,
- -0.06841479241847992,
- 0.005884818732738495,
- 0.026980210095643997,
- -0.08317112177610397,
- -0.0034747824538499117,
- -0.002520408947020769,
- 0.05354348570108414,
- 0.04343416914343834,
- 0.009456838481128216,
- -0.05548354610800743,
- 0.026849566027522087,
- -0.005905859172344208,
- 0.042464759200811386,
- 0.02324102073907852,
- 0.02649780362844467,
- -0.016277113929390907,
- -0.00545783806592226,
- 0.0007820568862371147,
- 0.10106287896633148,
- 0.07306625694036484,
- -0.026659192517399788,
- 0.012626150622963905,
- -0.04225051775574684,
- 0.05244387313723564,
- 0.1422736793756485,
- -0.03840450569987297,
- 0.02556583844125271,
- 0.003295815084129572
- ]
- },
- {
- "keyword": "occurrence",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.015226664021611214,
- 0.04459081590175629,
- 0.03363296762108803,
- -0.033740781247615814,
- -0.028663285076618195,
- 0.09980426728725433,
- 0.13440869748592377,
- 0.007682143710553646,
- 0.07179202139377594,
- -0.0455533005297184,
- 0.04635951668024063,
- -0.047322310507297516,
- 0.04112650081515312,
- -0.008148076012730598,
- -0.033626358956098557,
- 0.02371787279844284,
- -0.011030073277652264,
- -0.00776278879493475,
- -0.04029766097664833,
- -0.056916020810604095,
- -0.02610836923122406,
- 0.005611452739685774,
- 0.001369806588627398,
- 0.02494499832391739,
- -0.061035122722387314,
- -0.009028661996126175,
- 0.023416681215167046,
- 0.011951441876590252,
- 0.11620418727397919,
- -0.03715239465236664,
- -0.04422328248620033,
- 0.13551081717014313,
- 0.05448291078209877,
- 0.021361060440540314,
- 0.02188333310186863,
- -0.0021444326266646385,
- -0.1056065633893013,
- 0.06746987998485565,
- 0.041059620678424835,
- 0.007435036823153496,
- -0.015593416057527065,
- -0.06699920445680618,
- 0.03401093930006027,
- -0.06478822976350784,
- -0.014630983583629131,
- -0.028968557715415955,
- -0.022921327501535416,
- 0.05678408965468407,
- -0.011913093738257885,
- 0.01492232084274292,
- -0.05819907411932945,
- -0.002562104258686304,
- -0.05155210196971893,
- 0.02736564539372921,
- 0.05610071122646332,
- -0.046931710094213486,
- -0.0016777027631178498,
- -0.02720840647816658,
- 0.006053417455404997,
- -0.057057254016399384,
- 0.07230383902788162,
- 0.012968933209776878,
- -0.1026703491806984,
- -0.02545228973031044,
- 0.08578766137361526,
- 0.017508402466773987,
- 0.03702099993824959,
- -0.04570699483156204,
- 0.040318749845027924,
- 0.06524777412414551,
- -0.0007087929989211261,
- 0.07399430125951767,
- -0.02611452154815197,
- 0.09421508014202118,
- -0.009516868740320206,
- 0.00010414232383482158,
- -0.0010825577192008495,
- -0.061012376099824905,
- 0.04624539241194725,
- -0.009116473607718945,
- -0.0492389015853405,
- -0.026082558557391167,
- 0.0015802982961758971,
- 0.01205568015575409,
- 0.0668027326464653,
- -0.040314968675374985,
- 0.03400129824876785,
- -0.013227992691099644,
- 0.009371890686452389,
- 0.020373694598674774,
- -0.07807374745607376,
- -0.01399086881428957,
- 0.09430323541164398,
- -0.026164431124925613,
- 0.004785339813679457,
- 0.012652971781790257,
- 0.02319839410483837,
- -0.035897597670555115,
- 0.08320365846157074,
- 0.1969367116689682,
- 0.011798938736319542,
- 0.03715534508228302,
- -0.0784270241856575,
- -0.017100166529417038,
- -0.01897745579481125,
- -0.06722164899110794,
- -0.11547841876745224,
- -0.07039796561002731,
- -0.025843696668744087,
- -0.009654955938458443,
- -0.0033528211060911417,
- -0.029648205265402794,
- 0.027062099426984787,
- -0.013521578162908554,
- -0.007270073052495718,
- -0.02666071616113186,
- 0.03474849462509155,
- -0.004249154590070248,
- -0.05689411237835884,
- 0.01613280549645424,
- 0.05777967721223831,
- 0.055078744888305664,
- -0.038759615272283554,
- 0.005833986680954695,
- -0.07236543297767639,
- -0.05960876867175102,
- 0.017807696014642715,
- -6.002609372570209e-33,
- 0.04116671159863472,
- -0.10497648268938065,
- -0.058734528720378876,
- 0.00996324885636568,
- 0.011140949092805386,
- -0.0011244453489780426,
- -0.11808193475008011,
- -0.012926781550049782,
- -0.021236538887023926,
- 0.007915126159787178,
- -0.0139412060379982,
- 0.025062203407287598,
- 0.043647196143865585,
- -0.04215120151638985,
- 0.037968847900629044,
- -0.003197368234395981,
- 0.015775613486766815,
- 0.040443483740091324,
- -0.01926509104669094,
- 0.019888130947947502,
- -0.08141409605741501,
- -0.0013812391553074121,
- -0.004320933483541012,
- 0.015458050183951855,
- -0.04307076334953308,
- 0.008486142382025719,
- 0.021019089967012405,
- -0.05908389762043953,
- 0.0010295943357050419,
- -0.02526792697608471,
- 0.10791167616844177,
- -0.010645379312336445,
- -0.0027711016591638327,
- -0.02219998463988304,
- 0.07115325331687927,
- 0.013852995820343494,
- 0.04292185977101326,
- -0.018976427614688873,
- 0.060068149119615555,
- 0.017810748890042305,
- -0.11609014123678207,
- -0.002130037872120738,
- 0.002004379639402032,
- -0.02971070073544979,
- 0.08257507532835007,
- 0.014672697521746159,
- 0.015759965404868126,
- -0.005548916757106781,
- -0.007110086269676685,
- 0.0000653318566037342,
- -0.005838365294039249,
- 0.018801363185048103,
- 0.03347815200686455,
- 0.01027433667331934,
- 0.01365835964679718,
- 0.026463696733117104,
- -0.0291814673691988,
- 0.03263498470187187,
- 0.07908500730991364,
- 0.12527963519096375,
- 0.037713468074798584,
- 0.06967484205961227,
- 0.0661214143037796,
- 0.02418769896030426,
- 0.0327303372323513,
- -0.020704073831439018,
- -0.009369759820401669,
- 0.010422387160360813,
- -0.018406720831990242,
- 0.01331254467368126,
- 0.027609966695308685,
- -0.030621884390711784,
- -0.005285877268761396,
- -0.05655696988105774,
- -0.005465592257678509,
- -0.020912282168865204,
- 0.08380283415317535,
- 0.008828267455101013,
- -0.06372437626123428,
- -0.03955090790987015,
- -0.11885194480419159,
- -0.04989403486251831,
- 0.05286049097776413,
- 0.019610004499554634,
- -0.02835010550916195,
- 0.1175932064652443,
- 0.044512923806905746,
- -0.10448647290468216,
- 0.013501718640327454,
- 0.006969800218939781,
- 0.08870680630207062,
- -0.017886724323034286,
- -0.014842010103166103,
- -0.038439877331256866,
- 0.01599765196442604,
- 3.7379640370713925e-33,
- -0.04455782100558281,
- 0.04538444057106972,
- 0.030290938913822174,
- -0.020214244723320007,
- 0.08170071244239807,
- -0.06822198629379272,
- -0.06842005997896194,
- -0.005685505457222462,
- -0.005758313927799463,
- 0.043658722192049026,
- -0.044772859662771225,
- -0.005359717644751072,
- 0.027414023876190186,
- -0.011637725867331028,
- -0.06247459724545479,
- 0.06361266225576401,
- -0.0075392029248178005,
- -0.015951797366142273,
- -0.04790996015071869,
- 0.07433746010065079,
- 0.00464186305180192,
- -0.13402234017848969,
- -0.05017276108264923,
- -0.08160016685724258,
- -0.015730174258351326,
- 0.04603259637951851,
- 0.06477005034685135,
- -0.05574589595198631,
- -0.07137500494718552,
- -0.09181660413742065,
- 0.006973369512706995,
- -0.04353087767958641,
- 0.04552742838859558,
- -0.04488316550850868,
- -0.0146065354347229,
- 0.04412977769970894,
- 0.09832131117582321,
- -0.06964646279811859,
- -0.03528977930545807,
- 0.036441169679164886,
- 0.054789092391729355,
- -0.03652217239141464,
- 0.04504237323999405,
- 0.07812993228435516,
- 0.0068685319274663925,
- -0.03367025405168533,
- 0.004004381131380796,
- 0.04792185500264168,
- 0.1099596843123436,
- 0.009379192255437374,
- -0.04727701470255852,
- 0.004202969837933779,
- -0.051459334790706635,
- -0.005279872566461563,
- 0.009460111148655415,
- 0.056306179612874985,
- 0.018700817599892616,
- -0.04087293520569801,
- -0.05806494131684303,
- 0.07438827306032181,
- -0.04699666053056717,
- 0.05693589895963669,
- -0.03893790766596794,
- 0.027855228632688522,
- 0.09448549151420593,
- -0.01916484348475933,
- -0.052822284400463104,
- -0.031719256192445755,
- -0.07243728637695312,
- -0.04189344495534897,
- 0.004870999604463577,
- 0.08257482945919037,
- -0.13912400603294373,
- -0.14917196333408356,
- -0.045996733009815216,
- 0.05558081343770027,
- -0.04130084067583084,
- 0.010214589536190033,
- -0.011363819241523743,
- 0.010172798298299313,
- -0.06333348155021667,
- -0.052985768765211105,
- -0.004207066725939512,
- 0.08505797386169434,
- -0.10060904920101166,
- 0.0632302463054657,
- 0.07210934907197952,
- 0.03383298218250275,
- -0.03646139055490494,
- 0.008220847696065903,
- 0.0008795306202955544,
- 0.019256874918937683,
- -0.08338691294193268,
- -0.0444619283080101,
- 0.02052794210612774,
- -1.3419380273660408e-8,
- -0.029465898871421814,
- -0.020190909504890442,
- -0.030002536252141,
- -0.01609499379992485,
- 0.10161979496479034,
- 0.04444156214594841,
- 0.03477511554956436,
- 0.011601812206208706,
- -0.05053755268454552,
- -0.0002758190967142582,
- -0.01651942916214466,
- 0.01907038688659668,
- -0.03663604333996773,
- 0.028597809374332428,
- 0.060330867767333984,
- -0.008056238293647766,
- -0.009295959956943989,
- -0.008943596854805946,
- -0.09850098192691803,
- -0.005565456580370665,
- 0.0474083237349987,
- 0.037153128534555435,
- 0.06155114248394966,
- 0.013627471402287483,
- -0.08495662361383438,
- 0.004985836334526539,
- -0.013938340358436108,
- 0.0645802840590477,
- 0.0493328832089901,
- 0.006623642053455114,
- 0.05147251859307289,
- 0.02088441699743271,
- -0.023261286318302155,
- -0.08774113655090332,
- -0.025287825614213943,
- -0.007966073229908943,
- -0.02695717290043831,
- -0.04607356712222099,
- 0.034329451620578766,
- -0.08419235795736313,
- 0.026235587894916534,
- -0.046633727848529816,
- 0.013265055604279041,
- 0.05897561460733414,
- 0.010065245442092419,
- -0.00478987954556942,
- -0.052722569555044174,
- -0.06869497895240784,
- -0.01538059487938881,
- 0.00675174267962575,
- -0.0819849893450737,
- -0.02092883177101612,
- 0.04703144729137421,
- 0.08290403336286545,
- 0.08578091114759445,
- 0.047834254801273346,
- 0.04654623195528984,
- -0.04688069224357605,
- 0.022133223712444305,
- -0.033849433064460754,
- 0.17048431932926178,
- 0.031646907329559326,
- 0.04816567525267601,
- -0.003908326383680105
- ]
- },
- {
- "keyword": "meeting",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.005662229843437672,
- 0.032047566026449203,
- -0.00911350641399622,
- 0.07109607011079788,
- -0.058134689927101135,
- -0.01925884187221527,
- 0.08944083005189896,
- -0.051925789564847946,
- 0.06200934201478958,
- -0.05804574862122536,
- -0.04280254617333412,
- -0.06319577246904373,
- -0.03715534508228302,
- 0.003818641882389784,
- 0.05423929542303085,
- 0.0066101811826229095,
- -0.02029523067176342,
- -0.014981001615524292,
- -0.011609561741352081,
- 0.007339020725339651,
- -0.0768565982580185,
- -0.00407620333135128,
- -0.0075232647359371185,
- 0.017026681452989578,
- -0.009869069792330265,
- 0.0022315355017781258,
- -0.005649471189826727,
- 0.019955778494477272,
- 0.056158747524023056,
- -0.05547221750020981,
- 0.00006381380080711097,
- 0.08377435803413391,
- 0.09718578308820724,
- 0.04196974262595177,
- 0.032727330923080444,
- 0.05202767997980118,
- 0.05769434943795204,
- 0.0017128278268501163,
- 0.024247456341981888,
- -0.0205348152667284,
- -0.07875875383615494,
- -0.010694042779505253,
- 0.04481799528002739,
- -0.03780871629714966,
- -0.026750100776553154,
- -0.0139114735648036,
- -0.027362745255231857,
- 0.054493099451065063,
- -0.05329994112253189,
- 0.009894545190036297,
- -0.0863141342997551,
- -0.013991275802254677,
- -0.024813925847411156,
- -0.00974313449114561,
- 0.0784146711230278,
- 0.1393708735704422,
- -0.03126539662480354,
- -0.05661366134881973,
- -0.002085713902488351,
- -0.009729096665978432,
- -0.0032041689846664667,
- -0.04831244423985481,
- -0.09482202678918839,
- 0.04265359416604042,
- -0.0403437614440918,
- 0.0363420732319355,
- 0.003717382438480854,
- 0.025181110948324203,
- 0.025517143309116364,
- 0.033742450177669525,
- 0.010441298596560955,
- 0.04634851589798927,
- -0.04372992739081383,
- -0.009326662868261337,
- 0.01777525804936886,
- -0.019281763583421707,
- -0.010606425814330578,
- -0.0729762613773346,
- 0.10229013115167618,
- 0.004165000282227993,
- -0.009939931333065033,
- 0.06838994473218918,
- 0.006952036637812853,
- -0.008325803093612194,
- 0.06478077918291092,
- -0.05210374295711517,
- 0.02857106178998947,
- 0.025276558473706245,
- -0.03545364737510681,
- 0.0019415155984461308,
- -0.07672036439180374,
- 0.048474907875061035,
- -0.05210477113723755,
- -0.02930714190006256,
- -0.06731421500444412,
- 0.04069710895419121,
- 0.05686210095882416,
- 0.04674382135272026,
- 0.04096313565969467,
- 0.29018354415893555,
- -0.020847510546445847,
- 0.12897153198719025,
- -0.05710430070757866,
- -0.026988429948687553,
- -0.1054830253124237,
- -0.009649130515754223,
- -0.031052008271217346,
- 0.02812797762453556,
- 0.005803104490041733,
- 0.023431170731782913,
- -0.02340315282344818,
- -0.008890935219824314,
- -0.020096370950341225,
- -0.014462304301559925,
- 0.0052552418783307076,
- 0.07447044551372528,
- 0.020730918273329735,
- 0.029253914952278137,
- 0.03999277576804161,
- 0.02031724341213703,
- -0.010767174884676933,
- 0.052019521594047546,
- 0.05758238583803177,
- 0.02341274358332157,
- -0.051579996943473816,
- -0.05310215428471565,
- 0.03132741525769234,
- -6.174026203620853e-33,
- -0.0011474427301436663,
- -0.020693382248282433,
- 0.03733816370368004,
- 0.04430996626615524,
- 0.06343826651573181,
- 0.03684917464852333,
- -0.039877112954854965,
- -0.0626072809100151,
- 0.007581049110740423,
- 0.02571159601211548,
- 0.02088596299290657,
- 0.02626737765967846,
- 0.12719227373600006,
- -0.05198198929429054,
- 0.04264676198363304,
- -0.03863799571990967,
- 0.0418977327644825,
- 0.09004215151071548,
- -0.10016506910324097,
- -0.06459671258926392,
- -0.04515102133154869,
- -0.03902624174952507,
- 0.01833043433725834,
- 0.08274612575769424,
- -0.015008635818958282,
- 0.0001676499523455277,
- 0.002596883336082101,
- -0.05691252276301384,
- 0.05908753722906113,
- 0.0013534119352698326,
- -0.0243097934871912,
- 0.07249034196138382,
- -0.0163198821246624,
- 0.036136385053396225,
- 0.03264782577753067,
- -0.0042304242961108685,
- -0.01235121674835682,
- -0.07023821026086807,
- 0.02383299171924591,
- -0.021563585847616196,
- -0.012697704136371613,
- 0.003993990831077099,
- -0.026751965284347534,
- -0.05919903516769409,
- 0.03348955884575844,
- 0.062372837215662,
- 0.0502331368625164,
- 0.01775948517024517,
- -0.031890057027339935,
- 0.03413045406341553,
- -0.07061554491519928,
- -0.03204699978232384,
- -0.05655556172132492,
- -0.0017282910412177444,
- -0.046751730144023895,
- -0.0369129441678524,
- 0.012001770548522472,
- -0.03788203001022339,
- 0.0555003397166729,
- 0.012593965977430344,
- 0.08267875760793686,
- 0.0933709368109703,
- -0.04999963566660881,
- 0.07272694259881973,
- -0.043920669704675674,
- -0.06719508767127991,
- -0.03774554654955864,
- -0.06734880805015564,
- 0.10480890423059464,
- -0.05730419233441353,
- -0.02447645738720894,
- 0.04568454623222351,
- -0.012367201037704945,
- 0.06673767417669296,
- -0.05062694847583771,
- -0.004932038020342588,
- 0.09382229298353195,
- 0.0463184155523777,
- -0.018022015690803528,
- -0.0006088613299652934,
- -0.0036433483473956585,
- 0.0163542740046978,
- -0.03646329417824745,
- 0.04929480701684952,
- 0.019627541303634644,
- 0.010623760521411896,
- -0.020422689616680145,
- -0.022990858182311058,
- -0.023688295856118202,
- 0.07010155916213989,
- -0.094904325902462,
- -0.029194889590144157,
- 0.09504878520965576,
- 0.02702949196100235,
- -0.012484421022236347,
- 4.8172742973216156e-33,
- 0.10349899530410767,
- 0.005921489093452692,
- 0.007529364433139563,
- -0.059440575540065765,
- 0.07011764496564865,
- -0.03638423979282379,
- 0.03945910558104515,
- -0.0957503616809845,
- 0.01779692806303501,
- 0.016446782276034355,
- -0.05483489856123924,
- 0.009064600802958012,
- 0.08084776252508163,
- 0.009896621108055115,
- 0.06780242174863815,
- 0.0036719078198075294,
- 0.19691810011863708,
- -0.07262655347585678,
- 0.003936415538191795,
- 0.01559370942413807,
- 0.0006378106772899628,
- -0.02038012258708477,
- -0.005348686128854752,
- -0.08194222301244736,
- -0.03486987203359604,
- 0.009550252929329872,
- 0.13293154537677765,
- -0.04585834965109825,
- -0.04959467425942421,
- -0.0018868872430175543,
- 0.005601589567959309,
- -0.019847601652145386,
- -0.03846406191587448,
- 0.0653328001499176,
- -0.04324377328157425,
- 0.06588515639305115,
- 0.04778287187218666,
- -0.032929982990026474,
- -0.07208278775215149,
- -0.056928712874650955,
- 0.048223402351140976,
- 0.007915112189948559,
- -0.040182892233133316,
- 0.08154594153165817,
- 0.058074165135622025,
- 0.0038842412177473307,
- -0.016638003289699554,
- 0.02472834661602974,
- -0.07944365590810776,
- 0.0034022321924567223,
- -0.11008622497320175,
- -0.03247658163309097,
- -0.03555721789598465,
- -0.09659549593925476,
- -0.034545332193374634,
- 0.050286535173654556,
- -0.05180077999830246,
- -0.06994932144880295,
- 0.03130144253373146,
- 0.009669779799878597,
- 0.026323823258280754,
- -0.00563100166618824,
- 0.0062413704581558704,
- 0.08340407907962799,
- 0.0222441628575325,
- -0.038137927651405334,
- -0.06091691553592682,
- 0.02867686189711094,
- 0.017045332118868828,
- 0.07132948189973831,
- -0.018526673316955566,
- -0.04020322859287262,
- -0.05332568287849426,
- 0.016725540161132812,
- -0.019527705386281013,
- -0.016050992533564568,
- -0.10134421288967133,
- -0.014725293964147568,
- -0.02222171239554882,
- -0.05038972198963165,
- -0.040604475885629654,
- 0.04590870812535286,
- -0.028125477954745293,
- 0.007629872299730778,
- -0.011636108160018921,
- -0.026330098509788513,
- 0.0547974556684494,
- 0.06542188674211502,
- 0.012329037301242352,
- -0.01629481092095375,
- -0.015447101555764675,
- -0.07115321606397629,
- 0.0723232626914978,
- 0.012380405329167843,
- -0.0162269975990057,
- -1.278145767003025e-8,
- -0.02691483311355114,
- 0.004740332253277302,
- -0.010509992949664593,
- -0.019894344732165337,
- 0.08613573014736176,
- -0.030520835891366005,
- -0.027054475620388985,
- -0.0015122083714231849,
- 0.02179773524403572,
- 0.10743540525436401,
- 0.0014973216457292438,
- 0.017435221001505852,
- -0.04831211641430855,
- 0.06551306694746017,
- 0.07325511425733566,
- -0.007684868294745684,
- -0.0070659089833498,
- -0.008403469808399677,
- -0.11790552735328674,
- -0.026027653366327286,
- -0.03552382439374924,
- -0.049812186509370804,
- -0.004093195777386427,
- 0.04168291389942169,
- 0.027463840320706367,
- 0.012455889955163002,
- 0.021649086847901344,
- 0.11846347153186798,
- -0.0540277399122715,
- -0.022661328315734863,
- -0.08157848566770554,
- 0.08894761651754379,
- -0.0821068212389946,
- 0.015304388478398323,
- -0.012886297889053822,
- -0.0828055664896965,
- -0.0952400341629982,
- -0.030319783836603165,
- 0.09488271176815033,
- -0.007578515913337469,
- 0.0019676152151077986,
- 0.017389003187417984,
- 0.016116365790367126,
- 0.02755306474864483,
- -0.06662509590387344,
- 0.03560255467891693,
- 0.022620754316449165,
- -0.024916531518101692,
- -0.02787615731358528,
- -0.016999855637550354,
- -0.0511954240500927,
- 0.012787248939275742,
- 0.04501471668481827,
- -0.009092140942811966,
- 0.0002830536977853626,
- 0.07446671277284622,
- 0.030749937519431114,
- 0.018192965537309647,
- -0.020703405141830444,
- -0.017933648079633713,
- 0.058546025305986404,
- 0.030311809852719307,
- -0.05296672508120537,
- -0.011229018680751324
- ]
- },
- {
- "keyword": "conference",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.0020416865590959787,
- 0.05012066289782524,
- -0.04197198525071144,
- 0.06900107860565186,
- -0.005060092080384493,
- 0.06190407648682594,
- 0.07667922973632812,
- -0.006506809964776039,
- 0.07893283665180206,
- 0.02410436049103737,
- -0.048539694398641586,
- -0.07936889678239822,
- -0.005474842619150877,
- 0.008388788439333439,
- 0.01993577741086483,
- -0.013658168725669384,
- 0.00528726214542985,
- -0.042872656136751175,
- -0.04852962866425514,
- -0.07431227713823318,
- -0.10304248332977295,
- 0.013741380535066128,
- -0.03323712944984436,
- 0.03332123905420303,
- 0.0487825870513916,
- 0.018735090270638466,
- -0.06327986717224121,
- -0.006333723198622465,
- 0.034633342176675797,
- -0.07442718744277954,
- -0.008478152565658092,
- 0.0015546075301244855,
- 0.09759311378002167,
- 0.046660587191581726,
- 0.05351462960243225,
- -0.04554169252514839,
- -0.04699491709470749,
- -0.0035704283509403467,
- 0.02215011976659298,
- 0.025586219504475594,
- -0.023264596238732338,
- -0.10719765722751617,
- 0.008382200263440609,
- 0.008595949970185757,
- 0.038038529455661774,
- 0.013356654904782772,
- -0.014369423501193523,
- 0.05159373581409454,
- 0.014753030613064766,
- 0.10925273597240448,
- -0.013472662307322025,
- 0.009334170259535313,
- -0.021736720576882362,
- 0.006405510939657688,
- 0.08417752385139465,
- 0.13390380144119263,
- -0.048245999962091446,
- -0.025940904393792152,
- 0.016081973910331726,
- -0.007439710665494204,
- -0.011985238641500473,
- -0.04437315836548805,
- -0.10626284033060074,
- 0.08451444655656815,
- 0.04019817337393761,
- -0.025976505130529404,
- 0.009613138623535633,
- 0.1321878880262375,
- -0.016956601291894913,
- -0.052636925131082535,
- 0.034196265041828156,
- 0.017797227948904037,
- -0.01197888795286417,
- -0.02307431772351265,
- 0.1281132996082306,
- 0.0028272324707359076,
- -0.0023750110995024443,
- -0.021715940907597542,
- 0.06596875935792923,
- -0.00481901690363884,
- 0.06627478450536728,
- 0.019721288233995438,
- -0.020779011771082878,
- -0.058508001267910004,
- 0.04324774444103241,
- -0.010483106598258018,
- -0.0128338523209095,
- 0.02191169373691082,
- -0.021578343585133553,
- -0.02475970983505249,
- -0.1529642641544342,
- -0.001980807399377227,
- 0.027652433142066002,
- -0.05331376567482948,
- -0.029405804350972176,
- 0.04374784976243973,
- -0.038607995957136154,
- -0.10877130925655365,
- 0.05008561909198761,
- 0.26246321201324463,
- 0.0010231368942186236,
- 0.07950795441865921,
- -0.024746963754296303,
- -0.06148286908864975,
- -0.03955499082803726,
- -0.0035854128655046225,
- -0.04765956476330757,
- 0.04518277943134308,
- 0.04202570021152496,
- 0.026695506647229195,
- -0.03912980481982231,
- 0.012764452956616879,
- -0.04462885484099388,
- -0.03005877323448658,
- -0.05353730544447899,
- 0.06111075356602669,
- 0.020977545529603958,
- 0.03408529981970787,
- 0.022570256143808365,
- -0.03509676456451416,
- -0.06260409206151962,
- 0.030282029882073402,
- -0.026457292959094048,
- 0.061906784772872925,
- -0.08056642860174179,
- -0.07353172451257706,
- 0.026042522862553596,
- -5.0682067090496647e-33,
- 0.04882568493485451,
- -0.10487844794988632,
- 0.028073981404304504,
- 0.06904319673776627,
- 0.01462779100984335,
- 0.027235522866249084,
- 0.002741288859397173,
- -0.08992615342140198,
- -0.09882055968046188,
- -0.05012006685137749,
- -0.030185794457793236,
- 0.02929207682609558,
- 0.06910622119903564,
- -0.059413306415081024,
- 0.052383311092853546,
- -0.0516933798789978,
- 0.0023561553098261356,
- 0.1020112857222557,
- -0.025184739381074905,
- -0.03145696967840195,
- -0.0367758572101593,
- 0.07794171571731567,
- 0.006979906465858221,
- 0.06308890134096146,
- 0.026836564764380455,
- 0.0269307941198349,
- -0.033852141350507736,
- -0.04882248863577843,
- 0.032203543931245804,
- 0.03741231933236122,
- 0.0030512206722050905,
- 0.05655024200677872,
- -0.02085641585290432,
- 0.04130032658576965,
- 0.03662508726119995,
- 0.03978128358721733,
- -0.04261167347431183,
- -0.07303416728973389,
- 0.025723645463585854,
- -0.03799358010292053,
- -0.01823805645108223,
- -0.0066325487568974495,
- -0.04362194240093231,
- -0.011423567309975624,
- 0.008380916900932789,
- 0.017275718972086906,
- 0.014354574494063854,
- -0.004588164854794741,
- 0.029287034645676613,
- -0.009886696934700012,
- 0.04041432589292526,
- 0.00710293697193265,
- -0.03734782710671425,
- -0.04045076295733452,
- 0.0543484129011631,
- -0.046539854258298874,
- 0.01708189770579338,
- -0.038947999477386475,
- 0.03679599240422249,
- 0.014308646321296692,
- 0.00808799173682928,
- 0.10483857244253159,
- -0.117210254073143,
- 0.005177431274205446,
- -0.045282699167728424,
- -0.007303737103939056,
- -0.03145470470190048,
- 0.0021519248839467764,
- 0.08068724721670151,
- -0.054631926119327545,
- -0.012180978432297707,
- 0.009973069652915001,
- -0.04949334263801575,
- -0.013132497668266296,
- 0.08683107048273087,
- 0.017445648089051247,
- 0.02566767856478691,
- 0.04961375892162323,
- -0.07808774709701538,
- 0.051859840750694275,
- -0.08392494171857834,
- -0.04316083714365959,
- -0.01570412516593933,
- 0.03499162197113037,
- -0.0186235923320055,
- 0.021062331274151802,
- -0.028911737725138664,
- 0.07370486110448837,
- -0.0657227635383606,
- -0.015838490799069405,
- -0.06720796972513199,
- -0.002196508226916194,
- 0.09935908019542694,
- 0.07586026191711426,
- 0.02818431705236435,
- 3.359333265909703e-33,
- 0.04470469430088997,
- -0.0046171690337359905,
- -0.04424402117729187,
- 0.06886473298072815,
- 0.045998185873031616,
- -0.0591580905020237,
- 0.01822054013609886,
- -0.003033640095964074,
- -0.06229085847735405,
- -0.018217142671346664,
- 0.032191202044487,
- -0.0038952913600951433,
- 0.035285551100969315,
- -0.0008213424007408321,
- 0.025022920221090317,
- -0.026745861396193504,
- 0.10532480478286743,
- -0.02054864540696144,
- -0.07757903635501862,
- 0.09362062811851501,
- 0.05082780495285988,
- -0.04594625532627106,
- 0.010107222013175488,
- -0.0795167088508606,
- -0.04486321285367012,
- 0.015161258168518543,
- 0.07716576755046844,
- -0.03547235578298569,
- -0.018219105899333954,
- 0.00846580695360899,
- -0.04790038615465164,
- -0.02063964121043682,
- -0.0993153527379036,
- 0.060378048568964005,
- 0.017899850383400917,
- 0.06638681143522263,
- 0.004581673536449671,
- 0.014787404797971249,
- -0.052092719823122025,
- -0.0854899063706398,
- 0.04322563484311104,
- 0.027852525934576988,
- -0.03769005835056305,
- 0.13644351065158844,
- 0.05014166980981827,
- 0.023098601028323174,
- -0.028780637308955193,
- 0.056175410747528076,
- -0.02213176153600216,
- -0.001708216848783195,
- -0.12010432034730911,
- 0.0011081973789259791,
- -0.04086759686470032,
- -0.00672270730137825,
- 0.00039752552402205765,
- 0.04273620620369911,
- -0.05867054685950279,
- -0.003753789933398366,
- 0.009114401414990425,
- -0.031061943620443344,
- 0.01167247910052538,
- 0.045315928757190704,
- -0.04125741869211197,
- 0.069667287170887,
- 0.026075251400470734,
- 0.03248000517487526,
- -0.001361825386993587,
- 0.0726722702383995,
- -0.04436354339122772,
- 0.021377889439463615,
- 0.02761662006378174,
- 0.0782235711812973,
- -0.011888699606060982,
- 0.012001430615782738,
- -0.01645834557712078,
- 0.052958082407712936,
- -0.03298456594347954,
- 0.07053200155496597,
- 0.016329608857631683,
- 0.06617322564125061,
- -0.09605670720338821,
- 0.01771317608654499,
- -0.06122655048966408,
- 0.07308255881071091,
- 0.04511300101876259,
- 0.015471617691218853,
- 0.08258078247308731,
- -0.01884540729224682,
- -0.009931528940796852,
- 0.042194534093141556,
- -0.020022079348564148,
- -0.038256775587797165,
- 0.1187441423535347,
- -0.05909166485071182,
- 0.01771051436662674,
- -1.1207020200743045e-8,
- -0.05360552668571472,
- 0.05883968994021416,
- -0.06149214133620262,
- -0.006669727154076099,
- 0.022018255665898323,
- 0.013809038326144218,
- -0.06193945184350014,
- -0.05156259983778,
- 0.06308882683515549,
- 0.021123312413692474,
- 0.0014808297855779529,
- 0.026936855167150497,
- -0.034459441900253296,
- 0.016600674018263817,
- 0.016892455518245697,
- -0.0015670225257053971,
- -0.07551045715808868,
- -0.042110271751880646,
- -0.02203340455889702,
- -0.0935012549161911,
- -0.03595038875937462,
- -0.038987353444099426,
- 0.04817911982536316,
- 0.04754670709371567,
- -0.011532059870660305,
- 0.005227258894592524,
- -0.019353162497282028,
- 0.09225544333457947,
- -0.015537794679403305,
- -0.05705483630299568,
- 0.0005619361763820052,
- 0.01603352464735508,
- -0.09903896600008011,
- -0.033865511417388916,
- 0.06769996136426926,
- -0.02317875623703003,
- -0.06560220569372177,
- -0.03610914945602417,
- 0.060452643781900406,
- -0.03815697506070137,
- -0.021659795194864273,
- 0.06234094500541687,
- -0.0010652446653693914,
- -0.00462063355371356,
- 0.01722707226872444,
- -0.029050657525658607,
- 0.012763132341206074,
- -0.05817399173974991,
- -0.07198847830295563,
- -0.09066413342952728,
- -0.08454487472772598,
- 0.00979346688836813,
- -0.001833450049161911,
- 0.004752998240292072,
- 0.05577752739191055,
- 0.050759755074977875,
- 0.01720253750681877,
- -0.04241189360618591,
- -0.025287911295890808,
- 0.008820821531116962,
- 0.02828437089920044,
- 0.049275223165750504,
- -0.07035012543201447,
- 0.013371189124882221
- ]
- },
- {
- "keyword": "summit",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04897402971982956,
- 0.044537998735904694,
- -0.014535540714859962,
- 0.06729727238416672,
- 0.028164051473140717,
- 0.00038210939965210855,
- 0.023472672328352928,
- 0.032708216458559036,
- -0.021262353286147118,
- 0.047356683760881424,
- 0.011347073130309582,
- -0.07699283957481384,
- 0.059006720781326294,
- 0.054830506443977356,
- 0.016867322847247124,
- 0.024322638288140297,
- -0.009306966327130795,
- 0.04671938717365265,
- 0.050695523619651794,
- -0.12094450742006302,
- -0.0332903228700161,
- 0.03129599988460541,
- 0.0023521389812231064,
- 0.055809419602155685,
- -0.029353460296988487,
- 0.029432862997055054,
- -0.11209630221128464,
- 0.047618985176086426,
- 0.015129761770367622,
- -0.10506649315357208,
- -0.0011007783468812704,
- -0.07715607434511185,
- 0.026865538209676743,
- 0.022607065737247467,
- 0.06343952566385269,
- 0.07840410619974136,
- -0.06440691649913788,
- -0.05819718539714813,
- -0.04373122379183769,
- -0.028323419392108917,
- -0.046066977083683014,
- -0.027606137096881866,
- 0.01095920242369175,
- -0.05768841505050659,
- 0.058340784162282944,
- 0.032239880412817,
- -0.017985790967941284,
- 0.03970466926693916,
- 0.0027956038247793913,
- 0.03949032723903656,
- 0.041869647800922394,
- -0.026376008987426758,
- -0.04971132054924965,
- -0.09790987521409988,
- 0.050347015261650085,
- 0.0949343591928482,
- -0.06193177029490471,
- -0.08413880318403244,
- 0.044162116944789886,
- 0.03406018763780594,
- 0.0363076850771904,
- -0.066245436668396,
- -0.12644430994987488,
- -0.00026326908846385777,
- 0.11628708243370056,
- -0.02983478643000126,
- -0.035449087619781494,
- 0.024077095091342926,
- -0.0027881707064807415,
- -0.033570799976587296,
- 0.053140997886657715,
- -0.02100713551044464,
- 0.028817560523748398,
- -0.02929406613111496,
- 0.026079759001731873,
- -0.0017908933805301785,
- 0.01897633634507656,
- -0.021653316915035248,
- -0.032730814069509506,
- 0.030988799408078194,
- 0.008178193122148514,
- 0.04606063291430473,
- 0.03511722385883331,
- -0.02530425600707531,
- 0.0034149480052292347,
- -0.038976941257715225,
- -0.025786420330405235,
- -0.028117354959249496,
- -0.0007677620742470026,
- -0.03990361467003822,
- -0.05294793099164963,
- -0.023163367062807083,
- -0.05181105434894562,
- 0.03248877450823784,
- -0.03580031171441078,
- -0.008573180995881557,
- -0.04002620279788971,
- -0.021306313574314117,
- 0.0030191445257514715,
- 0.23104408383369446,
- -0.014000135473906994,
- 0.04087233915925026,
- -0.04877354949712753,
- -0.06398972868919373,
- 0.0013134365435689688,
- -0.0030188001692295074,
- 0.03800329193472862,
- 0.07657112926244736,
- -0.01900564692914486,
- 0.0676075741648674,
- -0.04556698352098465,
- -0.015285862609744072,
- 0.00034661238896660507,
- -0.030220212414860725,
- 0.02442019246518612,
- 0.01903052255511284,
- 0.016152987256646156,
- 0.0409633107483387,
- -0.07220198959112167,
- 0.008022000081837177,
- -0.033779848366975784,
- -0.023922115564346313,
- 0.03180411458015442,
- -0.00007140731031540781,
- -0.06358878314495087,
- -0.04022860527038574,
- 0.05032043904066086,
- -4.718442038382339e-33,
- 0.03609168529510498,
- -0.0428413450717926,
- 0.04920665919780731,
- 0.036324117332696915,
- 0.04688378423452377,
- 0.025714010000228882,
- -0.017427654936909676,
- -0.061987798660993576,
- -0.08459415286779404,
- 0.04825285077095032,
- -0.043345071375370026,
- 0.0127621591091156,
- 0.022292472422122955,
- 0.018220584839582443,
- 0.037973154336214066,
- -0.09547043591737747,
- 0.09218606352806091,
- -0.005614981055259705,
- -0.10449212044477463,
- -0.06204709783196449,
- 0.0068620555102825165,
- 0.02202814631164074,
- 0.024146366864442825,
- 0.06466059386730194,
- 0.039650771766901016,
- 0.038690946996212006,
- -0.016370318830013275,
- -0.007110629230737686,
- 0.03553292527794838,
- 0.04030110687017441,
- 0.007817298173904419,
- 0.019015751779079437,
- -0.026299692690372467,
- -0.05443427711725235,
- 0.0507824681699276,
- 0.012435886077582836,
- 0.016085412353277206,
- -0.09387552738189697,
- -0.036825619637966156,
- -0.008192388340830803,
- 0.011743033304810524,
- -0.013056968338787556,
- -0.024619413539767265,
- -0.0014715883880853653,
- -0.04606179520487785,
- 0.04059349745512009,
- 0.06473473459482193,
- 0.05680493637919426,
- 0.07428338378667831,
- -0.006274494342505932,
- -0.02981327474117279,
- 0.013775995932519436,
- -0.04947227984666824,
- -0.02560736984014511,
- -0.0007699959096498787,
- 0.001654090010561049,
- 0.0064079174771904945,
- -0.01714286021888256,
- 0.05969611927866936,
- 0.03508719056844711,
- 0.014485768973827362,
- 0.027109617367386818,
- -0.115167036652565,
- 0.01346322987228632,
- 0.0011624026810750365,
- -0.044211145490407944,
- 0.028825312852859497,
- -0.024982286617159843,
- 0.05937274172902107,
- -0.017456332221627235,
- 0.008232615888118744,
- 0.03274139389395714,
- 0.036718398332595825,
- 0.05453309416770935,
- -0.029320135712623596,
- -0.01493797730654478,
- -0.0045440057292580605,
- 0.07852370291948318,
- -0.017269020900130272,
- 0.037044379860162735,
- -0.08089574426412582,
- 0.004946663975715637,
- 0.02102300524711609,
- 0.010183978825807571,
- 0.019407637417316437,
- -0.019015010446310043,
- 0.003292133565992117,
- -0.030436893925070763,
- 0.02195478044450283,
- 0.057435210794210434,
- -0.18935942649841309,
- 0.004302161280065775,
- 0.07142437994480133,
- -0.0012075823033228517,
- -0.05101378262042999,
- 3.749266047912564e-33,
- 0.06736190617084503,
- -0.036505330353975296,
- -0.0005802455125376582,
- 0.03204607218503952,
- 0.02120746299624443,
- 0.027597326785326004,
- 0.01936960406601429,
- -0.025812756270170212,
- -0.11326737701892853,
- 0.03450389951467514,
- -0.01619410142302513,
- 0.0066542611457407475,
- 0.10329918563365936,
- -0.003325770841911435,
- 0.09509465843439102,
- 0.0365409292280674,
- -0.019837981089949608,
- -0.03546712547540665,
- -0.03708936274051666,
- 0.05173196643590927,
- -0.005976867862045765,
- -0.001656230422668159,
- -0.07076594233512878,
- -0.1151457130908966,
- 0.010873062536120415,
- 0.044537920504808426,
- -0.044145066291093826,
- 0.037602365016937256,
- 0.01308008749037981,
- 0.012241601012647152,
- -0.05102041736245155,
- 0.04625244066119194,
- -0.0637400820851326,
- 0.05048758536577225,
- -0.015010968782007694,
- 0.13562655448913574,
- -0.008997142314910889,
- -0.020408200100064278,
- -0.045579198747873306,
- -0.006873769219964743,
- 0.07640727609395981,
- 0.03177396208047867,
- 0.05331799387931824,
- 0.07328532636165619,
- 0.08199463784694672,
- -0.05093296989798546,
- 0.010687382891774178,
- 0.05800620838999748,
- -0.09809175878763199,
- -0.010040625929832458,
- -0.10376783460378647,
- -0.00005121736103319563,
- -0.02536294050514698,
- -0.006726654712110758,
- 0.028675083070993423,
- 0.05019668862223625,
- -0.08959675580263138,
- -0.015929197892546654,
- -0.005022243596613407,
- -0.057162679731845856,
- 0.09912944585084915,
- -0.049397196620702744,
- -0.0683196410536766,
- 0.06896652281284332,
- 0.028748417273163795,
- -0.05093267560005188,
- 0.024555325508117676,
- 0.0067303418181836605,
- -0.04431517794728279,
- 0.04949178919196129,
- -0.03211743384599686,
- -0.047529492527246475,
- 0.037007804960012436,
- -0.05345424264669418,
- -0.05098733305931091,
- 0.003623371943831444,
- -0.07561063021421432,
- 0.09386687725782394,
- -0.004721406381577253,
- -0.0823696106672287,
- -0.033618830144405365,
- -0.010924102738499641,
- -0.03798293694853783,
- 0.06700391322374344,
- 0.10084278136491776,
- 0.04464759677648544,
- 0.11619336903095245,
- -0.006369131151586771,
- 0.013336222618818283,
- 0.045080140233039856,
- -0.009735353291034698,
- -0.08118684589862823,
- 0.03818957880139351,
- -0.003634055843576789,
- -0.025845453143119812,
- -1.064195043198879e-8,
- -0.009564746171236038,
- 0.12454094737768173,
- -0.051687393337488174,
- 0.01517092902213335,
- 0.04223157465457916,
- 0.0226507056504488,
- -0.03357447311282158,
- 0.00040778712718747556,
- 0.006645222194492817,
- 0.1501956582069397,
- 0.005704416893422604,
- -0.018643487244844437,
- -0.005291283130645752,
- -0.013277526944875717,
- -0.036545708775520325,
- 0.04410197585821152,
- -0.03762677684426308,
- 0.05713317543268204,
- -0.009342974983155727,
- -0.014463958330452442,
- -0.10562688112258911,
- 0.09540034830570221,
- 0.050755977630615234,
- -0.026139678433537483,
- -0.029102955013513565,
- 0.018371140584349632,
- 0.008908906020224094,
- 0.10098959505558014,
- 0.006299717351794243,
- -0.04567961394786835,
- -0.01290471013635397,
- 0.03758634999394417,
- -0.09774918109178543,
- -0.05605278164148331,
- 0.022035149857401848,
- 0.05605833977460861,
- -0.05777157098054886,
- 0.058649469166994095,
- 0.031506773084402084,
- -0.03348977118730545,
- 0.0033251172862946987,
- 0.06978803873062134,
- 0.05479544401168823,
- 0.05374280363321304,
- -0.04412412270903587,
- 0.069334015250206,
- -0.022765468806028366,
- 0.003236545016989112,
- -0.011664391495287418,
- -0.04760362580418587,
- -0.09363147616386414,
- -0.0014318593312054873,
- -0.028266843408346176,
- 0.062265824526548386,
- 0.04743888974189758,
- 0.08291696757078171,
- 0.02202589623630047,
- -0.04410634562373161,
- -0.045291900634765625,
- 0.006027138326317072,
- 0.07627855241298676,
- -0.04419694468379021,
- -0.11577049642801285,
- -0.06589272618293762
- ]
- },
- {
- "keyword": "convention",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0026511461474001408,
- 0.023796482011675835,
- -0.07562843710184097,
- -0.0077524129301309586,
- -0.07763275504112244,
- -0.009464429691433907,
- 0.06500953435897827,
- -0.05188494175672531,
- 0.047819238156080246,
- -0.019599976018071175,
- 0.020338477566838264,
- 0.07401706278324127,
- 0.04462799057364464,
- -0.03586068004369736,
- 0.00545006338506937,
- -0.009621595032513142,
- 0.004079383332282305,
- -0.009382667019963264,
- -0.05989391729235649,
- 0.07184912264347076,
- 0.01871374063193798,
- 0.011272800154983997,
- -0.0014435332268476486,
- 0.01183560024946928,
- -0.060904886573553085,
- -0.008579994551837444,
- 0.017443884164094925,
- 0.04452693089842796,
- 0.08606527745723724,
- -0.10011474788188934,
- -0.01567075587809086,
- 0.038583047688007355,
- 0.05019140988588333,
- 0.029019974172115326,
- -0.05174538493156433,
- -0.002864039735868573,
- 0.04158104583621025,
- -0.0636904239654541,
- 0.021080320701003075,
- -0.03682900592684746,
- 0.024530114606022835,
- -0.05816538631916046,
- -0.002638787031173706,
- 0.03900689259171486,
- -0.011796083301305771,
- 0.09918403625488281,
- 0.005011777393519878,
- 0.05970814451575279,
- -0.02195204794406891,
- 0.020468695089221,
- 0.10121417045593262,
- -0.011599640361964703,
- -0.0625707134604454,
- 0.023236267268657684,
- 0.04321739822626114,
- 0.032857418060302734,
- -0.03209824115037918,
- -0.03481588140130043,
- -0.0032710705418139696,
- -0.021752018481492996,
- 0.05264873802661896,
- 0.04085097461938858,
- -0.1128249242901802,
- 0.06777243316173553,
- 0.07786979526281357,
- -0.054819975048303604,
- 0.014772520400583744,
- 0.06477367132902145,
- 0.00592438317835331,
- -0.03060019388794899,
- -0.04754399135708809,
- 0.013854418881237507,
- 0.05702320858836174,
- 0.05567237362265587,
- -0.028101753443479538,
- -0.0651157796382904,
- -0.0102291414514184,
- -0.009212213568389416,
- 0.024976659566164017,
- -0.03694315627217293,
- -0.008729346096515656,
- 0.02704615890979767,
- 0.017301099374890327,
- 0.006272246595472097,
- 0.08103072643280029,
- 0.011332535184919834,
- -0.0548265315592289,
- -0.031271930783987045,
- 0.020447561517357826,
- 0.018724428489804268,
- -0.05548181012272835,
- -0.0759531557559967,
- 0.0648130476474762,
- -0.04370373114943504,
- -0.09715239703655243,
- 0.06905072182416916,
- -0.0014471320901066065,
- 0.07386888563632965,
- 0.01162248570472002,
- 0.29336971044540405,
- 0.013549904339015484,
- 0.044368475675582886,
- -0.042530760169029236,
- 0.0009136977605521679,
- 0.031638436019420624,
- -0.07151680439710617,
- -0.08958394825458527,
- -0.026077138260006905,
- 0.04505936801433563,
- -0.052031509578228,
- -0.026545781642198563,
- 0.019142180681228638,
- -0.027020907029509544,
- -0.012972834520041943,
- -0.015192074701189995,
- 0.06327857077121735,
- -0.03711412474513054,
- 0.003853396512567997,
- 0.10466087609529495,
- -0.06546825915575027,
- -0.002486469456925988,
- 0.008907947689294815,
- -0.03752993792295456,
- -0.03462715446949005,
- 0.004879630170762539,
- -0.009007598273456097,
- -0.02306993305683136,
- -5.890004360601126e-33,
- -0.012450023554265499,
- 0.01328810304403305,
- 0.004125640727579594,
- 0.05264262482523918,
- 0.048153772950172424,
- 0.04315248876810074,
- -0.027460191398859024,
- -0.04288376867771149,
- -0.04328097030520439,
- 0.08522350341081619,
- 0.11275554448366165,
- 0.026210766285657883,
- 0.012214981019496918,
- -0.040858421474695206,
- 0.01698385737836361,
- 0.034596171230077744,
- 0.04616812244057655,
- -0.002696160227060318,
- -0.05159711465239525,
- 0.011847427114844322,
- -0.001863280776888132,
- 0.06788204610347748,
- -0.0029861689545214176,
- 0.06109427288174629,
- -0.052641287446022034,
- 0.032921917736530304,
- -0.02585887350142002,
- -0.017888501286506653,
- 0.01686449907720089,
- 0.006825590040534735,
- 0.041637953370809555,
- -0.012391527183353901,
- 0.11738552898168564,
- -0.050735846161842346,
- 0.02479178085923195,
- 0.010911704041063786,
- 0.007392069790512323,
- -0.057469941675662994,
- 0.04768233746290207,
- -0.014037257991731167,
- -0.0568307489156723,
- 0.02377184107899666,
- -0.12628982961177826,
- 0.013945585116744041,
- 0.02162744663655758,
- 0.10705156624317169,
- 0.08958099782466888,
- -0.020475463941693306,
- 0.052516549825668335,
- 0.030019590631127357,
- 0.03896952420473099,
- -0.02277720347046852,
- 0.012527930550277233,
- -0.014171348884701729,
- 0.07365576922893524,
- -0.06522688269615173,
- -0.003104740520939231,
- -0.007492817472666502,
- -0.030388224869966507,
- -0.007940728217363358,
- 0.012273306958377361,
- 0.04264173284173012,
- 0.02135726436972618,
- 0.08765348047018051,
- -0.05014663562178612,
- -0.046843014657497406,
- -0.04861747846007347,
- -0.061943694949150085,
- 0.049830809235572815,
- -0.06434423476457596,
- -0.009340737946331501,
- 0.04267328232526779,
- -0.11349710822105408,
- 0.08305037766695023,
- -0.018818480893969536,
- -0.01589330844581127,
- 0.04352334886789322,
- 0.051968105137348175,
- -0.0016443911008536816,
- -0.06862868368625641,
- -0.08901061117649078,
- 0.09728042781352997,
- -0.009260302409529686,
- 0.08061275631189346,
- -0.020618649199604988,
- -0.045584455132484436,
- 0.07384063303470612,
- -0.03576904907822609,
- -0.0409577339887619,
- 0.0066496883518993855,
- -0.03942734748125076,
- -0.010024458169937134,
- 0.04938921704888344,
- -0.02184409648180008,
- 0.0320533886551857,
- 3.266980919579334e-33,
- -0.01139181386679411,
- -0.026594167575240135,
- -0.050806596875190735,
- 0.03844372555613518,
- 0.02549992874264717,
- -0.05441781133413315,
- -0.03240198269486427,
- -0.08167923241853714,
- 0.02890891395509243,
- 0.016247820109128952,
- 0.014766281470656395,
- -0.0231959018856287,
- -0.04316611588001251,
- 0.014605618081986904,
- 0.09126271307468414,
- -0.06467001140117645,
- 0.03990883752703667,
- -0.05762293562293053,
- -0.038823843002319336,
- -0.027507394552230835,
- -0.024392712861299515,
- -0.012556510977447033,
- -0.03788553550839424,
- -0.027539527043700218,
- -0.0431431382894516,
- -0.024219634011387825,
- -0.010562694631516933,
- -0.03044404275715351,
- -0.0670381635427475,
- -0.06529705971479416,
- -0.09156505018472672,
- -0.058440256863832474,
- 0.013700177893042564,
- 0.04884394258260727,
- -0.015726864337921143,
- 0.010606592521071434,
- -0.02893703430891037,
- -0.013380364514887333,
- 0.011061490513384342,
- 0.021228741854429245,
- -0.019402462989091873,
- 0.009905148297548294,
- -0.021543428301811218,
- 0.1122557744383812,
- -0.04626622423529625,
- -0.04149560630321503,
- -0.03832387551665306,
- -0.03588090464472771,
- 0.06823532283306122,
- 0.009561585262417793,
- -0.10912542045116425,
- -0.034559786319732666,
- 0.0021523451432585716,
- -0.0938524380326271,
- -0.024402549490332603,
- 0.040898531675338745,
- -0.08066035062074661,
- -0.0001328792131971568,
- 0.016930174082517624,
- 0.029139000922441483,
- 0.051808904856443405,
- 0.06986499577760696,
- -0.03482198342680931,
- -0.032442204654216766,
- -0.029889430850744247,
- -0.02100156806409359,
- -0.005391943268477917,
- 0.05749975144863129,
- 0.0012054056860506535,
- 0.030010182410478592,
- -0.03213682770729065,
- -0.018592679873108864,
- -0.18651306629180908,
- 0.06968969106674194,
- -0.07475688308477402,
- 0.007064764853566885,
- 0.0661860853433609,
- 0.039817363023757935,
- -0.023191669955849648,
- -0.00029768593958579004,
- -0.14813748002052307,
- 0.017365114763379097,
- -0.0737990066409111,
- 0.05258191004395485,
- 0.014959602616727352,
- 0.05060367286205292,
- 0.08034651726484299,
- -0.00640999898314476,
- -0.013132073916494846,
- -0.016044115647673607,
- 0.05391056090593338,
- -0.0033222995698451996,
- 0.0625411719083786,
- 0.003108024364337325,
- -0.04087313264608383,
- -1.3639303908519196e-8,
- -0.06195731461048126,
- 0.02315206453204155,
- 0.034853409975767136,
- -0.004467442631721497,
- 0.007595512084662914,
- 0.04452890902757645,
- 0.01502982061356306,
- -0.06703415513038635,
- -0.01290737371891737,
- 0.12832418084144592,
- 0.027097733691334724,
- 0.01693442091345787,
- -0.01308349147439003,
- -0.033657483756542206,
- 0.048087477684020996,
- -0.03484908118844032,
- -0.023051630705595016,
- -0.021273091435432434,
- -0.14509104192256927,
- 0.0606364905834198,
- -0.05373518168926239,
- 0.02110152132809162,
- 0.028859583660960197,
- -0.039874982088804245,
- 0.0214677806943655,
- 0.03201361373066902,
- 0.08995263278484344,
- 0.13987717032432556,
- -0.04184174910187721,
- 0.04945550113916397,
- 0.00524071604013443,
- 0.039398957043886185,
- -0.031629156321287155,
- -0.006907346658408642,
- -0.03283064439892769,
- -0.03728490695357323,
- -0.040670230984687805,
- 0.018117224797606468,
- 0.10556035488843918,
- -0.02760324999690056,
- -0.04208976402878761,
- -0.05839265137910843,
- 0.07398680597543716,
- 0.028453202918171883,
- -0.023495275527238846,
- 0.07772590219974518,
- 0.03174206614494324,
- 0.03695352375507355,
- -0.0034394203685224056,
- -0.04089511185884476,
- -0.057841621339321136,
- -0.029108740389347076,
- 0.04450345039367676,
- 0.04201409965753555,
- 0.044631198048591614,
- 0.015810200944542885,
- 0.024408947676420212,
- 0.01783500425517559,
- -0.02829822339117527,
- -0.04204048961400986,
- 0.01693284697830677,
- 0.067513607442379,
- -0.060163915157318115,
- -0.019685832783579826
- ]
- },
- {
- "keyword": "seminar",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.039425093680620193,
- 0.07022210210561752,
- -0.03960150107741356,
- -0.0054667857475578785,
- -0.06729333102703094,
- 0.0000041896173570421524,
- 0.06511837244033813,
- -0.0038961090613156557,
- 0.0001077292617992498,
- -0.02754102647304535,
- 0.014560026116669178,
- 0.01351317297667265,
- -0.007235806435346603,
- -0.004680122248828411,
- 0.010978152975440025,
- -0.022173408418893814,
- 0.04688253253698349,
- -0.01680433563888073,
- -0.013282946310937405,
- -0.03975518420338631,
- -0.05141795799136162,
- 0.041043970733881,
- 0.03181953728199005,
- 0.06237602233886719,
- -0.010133209638297558,
- 0.0004301085718907416,
- 0.030097657814621925,
- -0.03114272467792034,
- 0.09143462777137756,
- -0.06387793272733688,
- -0.02999473549425602,
- 0.04487495496869087,
- 0.045051209628582,
- 0.01220710203051567,
- 0.027916736900806427,
- 0.08355347812175751,
- 0.002537161111831665,
- 0.019503867253661156,
- -0.006930260453373194,
- 0.06518805027008057,
- -0.02583928406238556,
- -0.07405734807252884,
- 0.016725463792681694,
- -0.020326705649495125,
- 0.001862805220298469,
- -0.054038114845752716,
- -0.013504501432180405,
- 0.008050210773944855,
- 0.00973706878721714,
- -0.016710221767425537,
- -0.12073887139558792,
- -0.03510467708110809,
- 0.00415424769744277,
- -0.005120426416397095,
- 0.05085965245962143,
- 0.011621000245213509,
- 0.015485672280192375,
- -0.00551989022642374,
- -0.027304014191031456,
- -0.017495421692728996,
- 0.036748968064785004,
- -0.02312820963561535,
- -0.13039752840995789,
- 0.014996371231973171,
- 0.026141420006752014,
- 0.012587019242346287,
- 0.02309417724609375,
- 0.1499771922826767,
- 0.058981236070394516,
- -0.03617775812745094,
- -0.04595451429486275,
- -0.0335729755461216,
- -0.0110450629144907,
- 0.010224484838545322,
- -0.002852187491953373,
- -0.009460004046559334,
- 0.00014956327504478395,
- -0.027817605063319206,
- 0.025642333552241325,
- -0.07145855575799942,
- 0.05673958733677864,
- 0.05058351159095764,
- 0.0043264226987957954,
- -0.048159532248973846,
- -0.016409559175372124,
- 0.02040938101708889,
- -0.00896272249519825,
- 0.033194731920957565,
- -0.01494114100933075,
- -0.010845744051039219,
- -0.02701433375477791,
- 0.052418891340494156,
- -0.1230885311961174,
- -0.0523466020822525,
- -0.07029855996370316,
- 0.033079490065574646,
- -0.026738889515399933,
- -0.11675635725259781,
- 0.0028448079247027636,
- 0.2816568613052368,
- 0.027073681354522705,
- 0.048033758997917175,
- -0.0009370746556669474,
- -0.04573247954249382,
- -0.10127653181552887,
- -0.04482525587081909,
- -0.05722462385892868,
- 0.025632059201598167,
- 0.07458488643169403,
- 0.026829306036233902,
- -0.02887711115181446,
- 0.03566093370318413,
- -0.07639845460653305,
- 0.009899420663714409,
- 0.01586890034377575,
- 0.029399259015917778,
- 0.07241185009479523,
- 0.0184720940887928,
- -0.009495462290942669,
- -0.013454905711114407,
- 0.035733938217163086,
- -0.00011991651990683749,
- 0.016367638483643532,
- 0.02148057520389557,
- -0.050951723009347916,
- -0.03294525295495987,
- -0.04321639612317085,
- -6.183823214350988e-33,
- -0.017468934878706932,
- 0.029497306793928146,
- -0.005021452438086271,
- 0.09897185117006302,
- 0.04400552436709404,
- 0.006806024815887213,
- -0.03994230180978775,
- -0.05207262933254242,
- -0.009444543160498142,
- -0.058377716690301895,
- 0.0131152905523777,
- 0.0692351832985878,
- 0.0628260001540184,
- -0.015963826328516006,
- 0.0041687679477036,
- -0.07673186808824539,
- -0.017550569027662277,
- 0.10285952687263489,
- -0.00729539105668664,
- -0.05414477363228798,
- 0.003977332264184952,
- 0.04421103745698929,
- 0.022455593571066856,
- 0.04166417196393013,
- 0.07853516936302185,
- 0.04358203336596489,
- 0.08413607627153397,
- -0.029933370649814606,
- 0.05632884427905083,
- 0.03156425431370735,
- 0.03232034295797348,
- 0.06303416937589645,
- -0.00023159748525358737,
- -0.03192474693059921,
- 0.05575157701969147,
- 0.0804472491145134,
- -0.010498019866645336,
- -0.09877502918243408,
- 0.05038929358124733,
- -0.030983544886112213,
- -0.04061376303434372,
- 0.01871054247021675,
- 0.07606640458106995,
- -0.008823493495583534,
- 0.038906604051589966,
- 0.08780920505523682,
- 0.08245828747749329,
- 0.021530548110604286,
- 0.10133092105388641,
- -0.04068824276328087,
- -0.05092858895659447,
- -0.018191665410995483,
- -0.03523116558790207,
- -0.0770404115319252,
- 0.041114144027233124,
- -0.07160560041666031,
- -0.022298458963632584,
- 0.012304537929594517,
- 0.0077664717100560665,
- 0.032820191234350204,
- -0.0016606710851192474,
- 0.06375528872013092,
- -0.07773621380329132,
- 0.0658676028251648,
- -0.1339329183101654,
- -0.03285170719027519,
- -0.13445454835891724,
- -0.07252547144889832,
- 0.09921480715274811,
- 0.0022625038400292397,
- -0.031218769028782845,
- 0.06754152476787567,
- -0.019607994705438614,
- 0.009422332979738712,
- 0.008920409716665745,
- -0.0285648200660944,
- -0.03970807045698166,
- 0.03365090861916542,
- -0.12070263177156448,
- 0.058416154235601425,
- -0.09607888758182526,
- -0.05806662514805794,
- 0.02296602539718151,
- 0.021526861935853958,
- 0.0075435517355799675,
- 0.04071459919214249,
- 0.05583248659968376,
- 0.08572480827569962,
- 0.045091189444065094,
- 0.0035542019177228212,
- -0.06790613383054733,
- 0.0263985525816679,
- 0.025280915200710297,
- 0.079194076359272,
- 0.06494370847940445,
- 4.1021329216401064e-33,
- 0.04241462051868439,
- 0.07592813670635223,
- -0.03617699444293976,
- 0.11608737707138062,
- 0.09686658531427383,
- 0.03007882460951805,
- 0.0001508393615949899,
- 0.06778470426797867,
- -0.04721607640385628,
- 0.008178153075277805,
- -0.012220264412462711,
- -0.010959476232528687,
- -0.0018817927921190858,
- 0.001908139674924314,
- 0.017335370182991028,
- -0.04136274755001068,
- 0.036533866077661514,
- -0.060095399618148804,
- -0.026770364493131638,
- 0.011334327980875969,
- 0.0012788077583536506,
- 0.021189356222748756,
- -0.08911088109016418,
- -0.03354936093091965,
- -0.00994107872247696,
- -0.012842481955885887,
- 0.008575142361223698,
- 0.03557830676436424,
- -0.027635877951979637,
- -0.024889441207051277,
- 0.003996062558144331,
- -0.04026516154408455,
- -0.0905987098813057,
- 0.05775352567434311,
- -0.01266996655613184,
- 0.13402356207370758,
- 0.1150936409831047,
- 0.0011035817442461848,
- -0.058396972715854645,
- -0.04542158544063568,
- 0.07280539721250534,
- -0.040321897715330124,
- -0.037004318088293076,
- 0.05561871826648712,
- 0.01211419329047203,
- -0.04862194508314133,
- 0.000500011257827282,
- 0.02507951483130455,
- 0.02549285814166069,
- -0.007986076176166534,
- -0.07281887531280518,
- -0.0272381529211998,
- 0.02067892625927925,
- -0.09127206355333328,
- 0.035937413573265076,
- 0.00839026365429163,
- 0.005523033440113068,
- -0.028599023818969727,
- -0.04044150561094284,
- 0.028506586328148842,
- 0.04035068303346634,
- -0.02267967350780964,
- -0.013614729046821594,
- 0.05365634709596634,
- 0.023427052423357964,
- -0.04350494593381882,
- 0.033223263919353485,
- 0.042622532695531845,
- -0.064536914229393,
- 0.056327853351831436,
- 0.037637803703546524,
- 0.07478048652410507,
- -0.0001649715704843402,
- -0.03626637905836105,
- -0.020115718245506287,
- 0.05076049640774727,
- -0.05202622711658478,
- -0.03955908492207527,
- -0.041434161365032196,
- 0.02074795961380005,
- 0.02222541533410549,
- -0.059678174555301666,
- -0.03762777894735336,
- 0.046421218663454056,
- 0.019886812195181847,
- 0.03275686502456665,
- 0.11640997976064682,
- 0.0721445232629776,
- -0.05579173192381859,
- 0.019208891317248344,
- -0.06999116390943527,
- -0.0721118375658989,
- -0.013348792679607868,
- -0.008776534348726273,
- 0.029978131875395775,
- -1.2272304061866635e-8,
- -0.03880010545253754,
- 0.014021637849509716,
- 0.0041724746115505695,
- -0.03138699010014534,
- -0.019093571230769157,
- 0.01965290494263172,
- 0.0008820802322588861,
- 0.026261407881975174,
- 0.029347548261284828,
- 0.058324433863162994,
- -0.0881747156381607,
- 0.028696445748209953,
- -0.056352436542510986,
- 0.05609060451388359,
- 0.014633918181061745,
- -0.048423882573843,
- -0.06988371163606644,
- 0.005060652736574411,
- -0.06945102661848068,
- -0.09304963052272797,
- 0.044056713581085205,
- 0.00291650602594018,
- 0.04776362329721451,
- 0.02685108780860901,
- 0.011182227171957493,
- 0.023514404892921448,
- 0.04137339070439339,
- 0.11621081084012985,
- 0.010078455321490765,
- -0.08698167651891708,
- -0.054467298090457916,
- -0.06871654093265533,
- -0.03759663552045822,
- 0.007668300066143274,
- -0.015580710954964161,
- 0.0073469546623528,
- -0.08246635645627975,
- 0.044761981815099716,
- 0.1024378314614296,
- 0.04779529571533203,
- -0.066813163459301,
- -0.09917131066322327,
- 0.026201773434877396,
- 0.011634056456387043,
- -0.030941829085350037,
- 0.06812836229801178,
- -0.07106830924749374,
- -0.03538040444254875,
- -0.010645542293787003,
- -0.0061715696938335896,
- -0.020231196656823158,
- -0.004990990273654461,
- 0.034041181206703186,
- -0.044281892478466034,
- -0.009688827209174633,
- 0.0560460090637207,
- 0.02794138714671135,
- -0.019140373915433884,
- -0.024753542616963387,
- -0.0053638434037566185,
- -0.00593553064391017,
- -0.0002394473267486319,
- -0.08251257985830307,
- 0.003508361056447029
- ]
- },
- {
- "keyword": "symposium",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.07613009214401245,
- 0.005561219062656164,
- -0.027552781626582146,
- 0.017570478841662407,
- -0.00199436629191041,
- 0.016738593578338623,
- 0.07260636985301971,
- -0.013709023594856262,
- -0.02181694656610489,
- 0.007721875794231892,
- -0.06746253371238708,
- -0.005052011925727129,
- -0.0658341497182846,
- 0.05769438296556473,
- -0.03732018545269966,
- 0.07283749431371689,
- 0.052678272128105164,
- -0.028842052444815636,
- 0.005699015688151121,
- -0.035981763154268265,
- -0.058927539736032486,
- 0.012072684243321419,
- 0.029131274670362473,
- 0.08362504094839096,
- -0.013814626261591911,
- 0.05586117506027222,
- -0.059828951954841614,
- -0.07716851681470871,
- 0.0026240129955112934,
- -0.05684341862797737,
- -0.07631397992372513,
- -0.000045030537876300514,
- -0.03637062385678291,
- -0.019359618425369263,
- -0.015655579045414925,
- -0.00008657110447529703,
- -0.013172661885619164,
- -0.021798500791192055,
- 0.02890131250023842,
- -0.010509208776056767,
- -0.07542454451322556,
- -0.0688207745552063,
- -0.015273000113666058,
- -0.04743475094437599,
- -0.06372425705194473,
- -0.007646915502846241,
- 0.0005339515046216547,
- 0.009499941021203995,
- 0.020790569484233856,
- 0.041763801127672195,
- -0.014566252008080482,
- -0.02308141253888607,
- -0.06670773774385452,
- -0.017807384952902794,
- 0.0757255032658577,
- 0.06724420934915543,
- -0.0298527330160141,
- -0.03473254665732384,
- 0.026495467871427536,
- -0.030441977083683014,
- 0.0458436980843544,
- -0.04422404617071152,
- -0.09562792629003525,
- 0.041318412870168686,
- 0.0661044493317604,
- 0.026577599346637726,
- 0.013875985518097878,
- 0.06184529885649681,
- 0.03638375923037529,
- 0.04798198491334915,
- -0.042641531676054,
- 0.02157902717590332,
- -0.050479721277952194,
- -0.02468232996761799,
- 0.009595048613846302,
- 0.022060593590140343,
- 0.028991714119911194,
- 0.05105411633849144,
- 0.045365769416093826,
- -0.06280238926410675,
- 0.10772333294153214,
- 0.13116227090358734,
- 0.021403731778264046,
- -0.0030430706683546305,
- 0.037302594631910324,
- 0.04542158916592598,
- -0.01947089470922947,
- 0.02278870716691017,
- -0.015464868396520615,
- -0.053217943757772446,
- -0.05974351242184639,
- -0.03338155895471573,
- -0.03924185782670975,
- 0.0021724794059991837,
- -0.06318631768226624,
- 0.017087362706661224,
- -0.00978083536028862,
- -0.05798729136586189,
- 0.08259129524230957,
- 0.29702845215797424,
- 0.061803966760635376,
- 0.04257016256451607,
- -0.0676090344786644,
- -0.019264154136180878,
- -0.0837031826376915,
- -0.03628112003207207,
- -0.07300135493278503,
- 0.009779831394553185,
- 0.029010657221078873,
- 0.0755002349615097,
- -0.032954003661870956,
- 0.02561553381383419,
- 0.040165167301893234,
- 0.030657874420285225,
- 0.026306577026844025,
- 0.04742155969142914,
- 0.05807698518037796,
- -0.013398325070738792,
- -0.045117489993572235,
- 0.07005982846021652,
- 0.03849181905388832,
- -0.05160121992230415,
- -0.016184408217668533,
- 0.07310812175273895,
- 0.018762169405817986,
- 0.036785226315259933,
- -0.05567636713385582,
- -6.070044912082991e-33,
- 0.009450433775782585,
- -0.017995506525039673,
- 0.07464635372161865,
- 0.06523418426513672,
- 0.06056812033057213,
- 0.0263409074395895,
- -0.02363107167184353,
- -0.01182823721319437,
- -0.03266594186425209,
- -0.06077601760625839,
- 0.0008165306062437594,
- 0.011515531688928604,
- 0.07600327581167221,
- -0.0724240392446518,
- 0.012651505880057812,
- -0.039229124784469604,
- -0.03341232240200043,
- 0.08355481177568436,
- -0.048568375408649445,
- -0.07547646015882492,
- -0.013260460458695889,
- 0.03378647193312645,
- -0.03967565298080444,
- 0.0713982805609703,
- 0.021579911932349205,
- -0.0007856714073568583,
- -0.0073972041718661785,
- -0.07099925726652145,
- 0.029351765289902687,
- 0.07235430926084518,
- 0.00943133793771267,
- 0.007565366104245186,
- -0.04879646748304367,
- 0.027786262333393097,
- 0.00744522362947464,
- 0.0190327949821949,
- -0.05489083006978035,
- -0.10207083821296692,
- 0.02883978933095932,
- -0.007850746624171734,
- -0.02055770345032215,
- 0.06424221396446228,
- -0.06429044157266617,
- 0.020474640652537346,
- 0.05362763628363609,
- 0.045524075627326965,
- 0.08342848718166351,
- 0.05232738330960274,
- 0.05009463056921959,
- -0.06031345576047897,
- -0.04991316422820091,
- -0.003906797617673874,
- -0.04813413321971893,
- -0.09484795480966568,
- 0.04176267609000206,
- 0.01844078302383423,
- 0.018245838582515717,
- -0.024001745507121086,
- -0.03842631354928017,
- -0.016026228666305542,
- -0.0035761354956775904,
- 0.0596177838742733,
- -0.10324586927890778,
- -0.006805348210036755,
- -0.10020618140697479,
- -0.001688905991613865,
- -0.05216165632009506,
- -0.006609319243580103,
- 0.07738155871629715,
- -0.0156390480697155,
- -0.014145013876259327,
- -0.007218165323138237,
- 0.017489302903413773,
- 0.0074755041860044,
- -0.011619911529123783,
- -0.012075787410140038,
- 0.07565827667713165,
- 0.018678219988942146,
- -0.05463102087378502,
- -0.010320126079022884,
- -0.11836595833301544,
- -0.019250476732850075,
- 0.013835908845067024,
- -0.04603753611445427,
- 0.009854424744844437,
- -0.05668405070900917,
- 0.03265681862831116,
- 0.04480189085006714,
- -0.017120981588959694,
- 0.008788700215518475,
- -0.024728821590542793,
- 0.036891087889671326,
- 0.00753053929656744,
- 0.05720660835504532,
- -0.06345294415950775,
- 3.0974316551785585e-33,
- -0.034761715680360794,
- 0.002716664457693696,
- -0.05243773013353348,
- -0.0028230412863194942,
- 0.06122428551316261,
- 0.049476996064186096,
- -0.10517618060112,
- 0.008986296132206917,
- -0.057555146515369415,
- -0.04236658662557602,
- 0.021652348339557648,
- 0.00961745623499155,
- 0.01041259616613388,
- 0.057336073368787766,
- -0.003402138128876686,
- -0.01620006375014782,
- -0.001970676938071847,
- 0.009072968736290932,
- -0.05210470035672188,
- 0.04777008667588234,
- 0.06302102655172348,
- 0.028800474479794502,
- 0.018095843493938446,
- -0.05105791613459587,
- -0.0246085487306118,
- -0.006655095610767603,
- 0.08534270524978638,
- -0.016266729682683945,
- 0.008830917067825794,
- 0.0224890299141407,
- -0.03862471878528595,
- -0.040514715015888214,
- -0.13805638253688812,
- -0.03003164939582348,
- 0.0511525496840477,
- 0.04165160283446312,
- 0.09606523811817169,
- -0.056213658303022385,
- -0.05753467604517937,
- -0.054941222071647644,
- 0.0030913036316633224,
- 0.09128750115633011,
- -0.04528385028243065,
- 0.04878464713692665,
- 0.004224369302392006,
- -0.011645031161606312,
- -0.05078361555933952,
- 0.0526924692094326,
- -0.008883538655936718,
- 0.005161470267921686,
- -0.042026154696941376,
- -0.07104630768299103,
- 0.07094457745552063,
- 0.005744211375713348,
- 0.012267300859093666,
- 0.01738382689654827,
- -0.03432464227080345,
- -0.029854796826839447,
- 0.0038450618740171194,
- 0.01463319268077612,
- -0.028923017904162407,
- 0.03384978696703911,
- -0.08329468965530396,
- 0.048368725925683975,
- 0.043055806308984756,
- -0.028498705476522446,
- -0.014032809995114803,
- 0.09112115949392319,
- -0.06720098853111267,
- 0.024070659652352333,
- 0.06732737272977829,
- -0.030861301347613335,
- -0.07413904368877411,
- 0.031047234311699867,
- 0.02796686254441738,
- 0.043216560035943985,
- -0.0017692472320050001,
- -0.034844376146793365,
- -0.06009407341480255,
- -0.009198183193802834,
- -0.09303797781467438,
- -0.01234041340649128,
- 0.005396610591560602,
- 0.029114654287695885,
- 0.06992003321647644,
- -0.004790936596691608,
- 0.07107154279947281,
- 0.0866466611623764,
- -0.017571814358234406,
- 0.0527108870446682,
- -0.006803383119404316,
- -0.05807782709598541,
- 0.017444564029574394,
- -0.005825071129947901,
- 0.08415384590625763,
- -1.2554539630116324e-8,
- 0.047248028218746185,
- 0.04086074233055115,
- -0.03443402796983719,
- 0.004098501522094011,
- 0.0361754447221756,
- 0.021978426724672318,
- 0.015689967200160027,
- 0.06399675458669662,
- -0.043679237365722656,
- 0.11510736495256424,
- -0.05471169203519821,
- 0.097371406853199,
- -0.0013225481379777193,
- 0.09783317893743515,
- 0.025390146300196648,
- -0.002097113523632288,
- -0.031170668080449104,
- -0.010491596534848213,
- -0.08789735287427902,
- -0.10319007188081741,
- 0.059131525456905365,
- 0.03307286277413368,
- 0.1162695586681366,
- -0.05079915001988411,
- 0.006486508063971996,
- 0.00046611440484412014,
- 0.0328160859644413,
- 0.024990076199173927,
- -0.08550891280174255,
- -0.059141822159290314,
- -0.09435223042964935,
- 0.06162719801068306,
- -0.10909120738506317,
- -0.09174372255802155,
- -0.024311400949954987,
- 0.04829730838537216,
- -0.0015687693376094103,
- 0.04482198506593704,
- 0.056037403643131256,
- -0.04138057678937912,
- -0.051527317613363266,
- -0.07376035302877426,
- 0.039447199553251266,
- 0.020978624001145363,
- 0.01815510168671608,
- 0.05733887851238251,
- -0.07873152196407318,
- -0.04338126629590988,
- -0.031229928135871887,
- 0.007448462303727865,
- 0.016741139814257622,
- -0.01583271287381649,
- 0.0912383571267128,
- -0.051183078438043594,
- -0.013589679263532162,
- 0.05748269706964493,
- -0.000888414797373116,
- -0.011873462237417698,
- -0.03218469023704529,
- -0.04712048918008804,
- 0.11253312230110168,
- 0.06819559633731842,
- 0.022030362859368324,
- -0.02861582487821579
- ]
- },
- {
- "keyword": "forum",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.012579768896102905,
- -0.126388818025589,
- -0.11744046956300735,
- -0.016021743416786194,
- 0.047242481261491776,
- 0.018907837569713593,
- 0.11334750056266785,
- 0.017254028469324112,
- 0.03534989058971405,
- -0.028835007920861244,
- 0.016414931043982506,
- -0.05699764937162399,
- 0.023719297721982002,
- 0.015147862024605274,
- -0.03567798063158989,
- 0.04321911558508873,
- -0.006956496275961399,
- -0.06869691610336304,
- -0.03804492577910423,
- -0.033623795956373215,
- -0.11518523842096329,
- 0.05245194584131241,
- 0.03983237221837044,
- 0.021698880940675735,
- -0.055907074362039566,
- 0.012162543833255768,
- 0.0033110117074102163,
- 0.04689257964491844,
- -0.017408734187483788,
- -0.11088661104440689,
- -0.05830312520265579,
- 0.004442613571882248,
- 0.054904162883758545,
- -0.03067064844071865,
- 0.017720364034175873,
- -0.03509099408984184,
- -0.03372196480631828,
- -0.01659953035414219,
- -0.013278256170451641,
- -0.05539507046341896,
- -0.04193839058279991,
- -0.01663014106452465,
- -0.026632018387317657,
- -0.02098882757127285,
- -0.040120501071214676,
- 0.02189735695719719,
- 0.03071264736354351,
- 0.013014333322644234,
- 0.09205213934183121,
- 0.06506015360355377,
- 0.0035946262069046497,
- -0.07192457467317581,
- -0.026104530319571495,
- 0.03179188445210457,
- 0.04883378744125366,
- 0.05963221564888954,
- -0.05063324049115181,
- 0.04398162662982941,
- 0.012469020672142506,
- -0.03806959465146065,
- 0.019274944439530373,
- -0.03146664425730705,
- -0.03059997595846653,
- 0.05462300032377243,
- 0.07473503798246384,
- 0.014383777976036072,
- 0.004223092459142208,
- 0.02945622056722641,
- 0.02107473649084568,
- -0.101118303835392,
- -0.10184628516435623,
- 0.07451938837766647,
- -0.05707773566246033,
- 0.08641927689313889,
- 0.030576247721910477,
- 0.017168836668133736,
- 0.0026417102199047804,
- -0.05063773691654205,
- 0.056654199957847595,
- 0.018584270030260086,
- 0.03147696331143379,
- 0.035340599715709686,
- 0.02241680398583412,
- -0.029070423915982246,
- -0.017912371084094048,
- -0.015474086627364159,
- 0.0373493917286396,
- 0.10541728883981705,
- -0.05728510394692421,
- -0.04035161808133125,
- -0.03791557624936104,
- 0.08165298402309418,
- 0.06118188798427582,
- 0.016190197318792343,
- -0.11974630504846573,
- -0.008922184817492962,
- 0.03376948460936546,
- -0.021854586899280548,
- -0.08207041770219803,
- 0.26402848958969116,
- 0.038256242871284485,
- 0.004478910937905312,
- -0.0510081872344017,
- 0.001542187761515379,
- -0.04833913594484329,
- 0.029383575543761253,
- -0.04338798671960831,
- 0.11014093458652496,
- -0.014212780632078648,
- -0.006876686122268438,
- -0.05401186645030975,
- 0.015850774943828583,
- -0.044167615473270416,
- 0.027263067662715912,
- 0.05749039724469185,
- -0.005791572853922844,
- 0.09080735594034195,
- 0.010819763876497746,
- -0.04774581640958786,
- -0.005857696756720543,
- 0.003709208918735385,
- 0.010072115808725357,
- 0.017726516351103783,
- 0.032461605966091156,
- 0.009547688998281956,
- -0.04576318711042404,
- -0.1082414984703064,
- -4.663395474643255e-33,
- 0.06931892037391663,
- 0.0002485986624378711,
- 0.036966003477573395,
- 0.017588403075933456,
- 0.0222358088940382,
- 0.031735505908727646,
- -0.012957882136106491,
- 0.03292376548051834,
- 0.04788874834775925,
- -0.04252439737319946,
- -0.005262112244963646,
- -0.002796189859509468,
- 0.01537951547652483,
- -0.11026253551244736,
- 0.09672359377145767,
- -0.060727495700120926,
- 0.06862683594226837,
- 0.05250352621078491,
- -0.021946564316749573,
- -0.0718492716550827,
- -0.04819997027516365,
- 0.04526472091674805,
- 0.03731168061494827,
- 0.13373881578445435,
- 0.048026636242866516,
- 0.010541139170527458,
- 0.02527827024459839,
- -0.018650589510798454,
- 0.06642881035804749,
- 0.024541355669498444,
- -0.05093753710389137,
- 0.0037176369223743677,
- -0.072966068983078,
- 0.007919483818113804,
- 0.03401564434170723,
- -0.023422211408615112,
- 0.015302612446248531,
- -0.08972140401601791,
- -0.019477233290672302,
- 0.005759905092418194,
- -0.02393917180597782,
- -0.0057718753814697266,
- -0.011771708726882935,
- 0.005927426740527153,
- 0.03780563175678253,
- 0.05502333864569664,
- 0.019050536677241325,
- -0.005914636421948671,
- 0.04037804901599884,
- -0.0005920615512877703,
- -0.016685698181390762,
- -0.04724999517202377,
- 0.03691405430436134,
- 0.03251642733812332,
- -0.00596168776974082,
- -0.011735684238374233,
- -0.04269196465611458,
- -0.05622133985161781,
- -0.02410976216197014,
- -0.0260170865803957,
- -0.018302228301763535,
- 0.05607738718390465,
- -0.07737003266811371,
- -0.024836895987391472,
- -0.08595924824476242,
- 0.007658308371901512,
- -0.004346109926700592,
- -0.040780458599328995,
- 0.10698029398918152,
- -0.025242429226636887,
- -0.02895258367061615,
- 0.03146084398031235,
- 0.027108637616038322,
- 0.10465303808450699,
- -0.10062867403030396,
- 0.007664357777684927,
- -0.09323086589574814,
- 0.015383792109787464,
- -0.007208384573459625,
- 0.03102315217256546,
- -0.07882987707853317,
- -0.005155612248927355,
- -0.09453773498535156,
- -0.04117894172668457,
- 0.11466976255178452,
- -0.04809939116239548,
- 0.03385777771472931,
- -0.05542757362127304,
- 0.057635948061943054,
- -0.023688219487667084,
- -0.08943337947130203,
- 0.043450821191072464,
- 0.020630845800042152,
- 0.03297777846455574,
- 0.05123136565089226,
- 3.500588748628171e-33,
- -0.02648315392434597,
- -0.06317480653524399,
- -0.09388566762208939,
- 0.07584282755851746,
- 0.06699367612600327,
- 0.004593999590724707,
- -0.009133284911513329,
- 0.0333474799990654,
- -0.02053145505487919,
- -0.00561590725556016,
- -0.008959718979895115,
- 0.040463268756866455,
- 0.013008947484195232,
- 0.029989326372742653,
- 0.023499127477407455,
- -0.0036672852002084255,
- 0.019845593720674515,
- -0.033635690808296204,
- -0.05319483205676079,
- -0.004515809006989002,
- -0.012985404580831528,
- 0.012154484167695045,
- -0.036167535930871964,
- -0.0971025750041008,
- 0.0038422157522290945,
- -0.00001780837010301184,
- 0.0907677412033081,
- 0.010744393803179264,
- -0.02729412354528904,
- 0.03188133239746094,
- -0.019194912165403366,
- 0.01928700879216194,
- 0.054668083786964417,
- -0.015978503972291946,
- 0.04384924843907356,
- 0.05589739605784416,
- 0.006464625708758831,
- -0.0668177604675293,
- 0.033360812813043594,
- -0.02683783508837223,
- 0.041860342025756836,
- 0.030335737392306328,
- -0.050120048224925995,
- 0.03607456386089325,
- -0.0763544961810112,
- -0.02467562071979046,
- 0.02650579623878002,
- -0.021170182153582573,
- 0.05013664811849594,
- 0.01731801964342594,
- -0.02198614925146103,
- -0.09521469473838806,
- 0.1452832967042923,
- -0.07302892208099365,
- 0.036214154213666916,
- 0.011286639608442783,
- -0.0616765171289444,
- 0.04384230077266693,
- 0.036347925662994385,
- 0.00913933478295803,
- -0.003034728579223156,
- 0.03636564686894417,
- -0.09381599724292755,
- 0.012298361398279667,
- 0.07875224947929382,
- -0.018829520791769028,
- -0.00039627510705031455,
- 0.009270508773624897,
- -0.031722962856292725,
- 0.000025864366762107238,
- 0.008439937606453896,
- -0.034561656415462494,
- 0.08876589685678482,
- 0.0818633958697319,
- 0.04233900085091591,
- -0.0013035155134275556,
- -0.03361162915825844,
- 0.050837256014347076,
- -0.01885775290429592,
- -0.061826784163713455,
- 0.00040758520481176674,
- 0.019483346492052078,
- 0.012940199114382267,
- 0.05729695409536362,
- 0.03823428228497505,
- -0.10525640845298767,
- 0.0471242256462574,
- 0.04918671026825905,
- 0.01731550693511963,
- 0.0021681534126400948,
- 0.010594076476991177,
- 0.06794587522745132,
- 0.007933239452540874,
- 0.04425292834639549,
- 0.045758206397295,
- -1.1980243463938223e-8,
- 0.04238912835717201,
- 0.06385619193315506,
- 0.0019163780380040407,
- 0.04622374102473259,
- 0.10382795333862305,
- -0.005587948486208916,
- -0.0020795995369553566,
- -0.016687000170350075,
- 0.004376361146569252,
- 0.1126808226108551,
- -0.022982798516750336,
- 0.0348038412630558,
- 0.04054470360279083,
- 0.07691303640604019,
- -0.015907200053334236,
- -0.06244099140167236,
- -0.05588487535715103,
- -0.012471702881157398,
- -0.07111329585313797,
- -0.09703198820352554,
- 0.022856522351503372,
- 0.012517194263637066,
- 0.04869785159826279,
- 0.0006486960337497294,
- -0.018978139385581017,
- -0.022442016750574112,
- -0.0016598443035036325,
- 0.06865013390779495,
- -0.06688079237937927,
- -0.07458911091089249,
- -0.015359167940914631,
- -0.003287828527390957,
- -0.06334414333105087,
- -0.03223586082458496,
- 0.007180124055594206,
- 0.02970067970454693,
- -0.09067828953266144,
- 0.009228927083313465,
- 0.018758153542876244,
- -0.0010408837115392089,
- -0.01869954913854599,
- -0.042421236634254456,
- 0.08602631837129593,
- -0.0379505418241024,
- 0.009323353879153728,
- 0.0038587625604122877,
- -0.03201320767402649,
- -0.038589585572481155,
- -0.06482388824224472,
- -0.0723266452550888,
- -0.07319790869951248,
- -0.03549746796488762,
- 0.07167577743530273,
- 0.0060639092698693275,
- -0.01003950834274292,
- 0.002315207151696086,
- 0.02841915935277939,
- 0.06581798940896988,
- -0.07392873615026474,
- 0.027272608131170273,
- 0.07337721437215805,
- 0.10153903067111969,
- 0.00208285846747458,
- -0.07811864465475082
- ]
- },
- {
- "keyword": "workshop",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.07667171955108643,
- 0.016728047281503677,
- -0.04710490629076958,
- 0.00954568199813366,
- -0.03699403256177902,
- 0.046763110905885696,
- 0.003821562509983778,
- -0.061107683926820755,
- -0.0610143207013607,
- 0.008043062873184681,
- 0.014563712291419506,
- -0.0597413145005703,
- 0.010714094154536724,
- 0.0159208495169878,
- -0.0421781912446022,
- 0.03092842362821102,
- 0.02722712978720665,
- 0.029279083013534546,
- 0.06799507886171341,
- -0.026103012263774872,
- -0.046612586826086044,
- 0.030607394874095917,
- 0.018085163086652756,
- 0.0075387670658528805,
- 0.005088740959763527,
- 0.06342613697052002,
- -0.01551674772053957,
- -0.0024840249679982662,
- 0.13014376163482666,
- -0.08095919340848923,
- -0.05211953818798065,
- 0.05599208548665047,
- 0.0381125882267952,
- 0.011648368090391159,
- 0.050665147602558136,
- 0.09863605350255966,
- -0.005532581824809313,
- -0.01526956632733345,
- -0.005557440221309662,
- -0.04000190645456314,
- -0.05586749687790871,
- -0.04715987667441368,
- 0.0011947808088734746,
- -0.059644363820552826,
- -0.0028570438735187054,
- -0.041168518364429474,
- 0.008072283118963242,
- -0.03988538682460785,
- -0.014153865166008472,
- 0.0013488989789038897,
- -0.006833419669419527,
- -0.08388517796993256,
- -0.02384134754538536,
- -0.040920667350292206,
- -0.00459316885098815,
- 0.03043641895055771,
- -0.01442156545817852,
- -0.03682530298829079,
- 0.01473027840256691,
- -0.037452805787324905,
- 0.06891980767250061,
- -0.02144979126751423,
- -0.14489763975143433,
- 0.0009766272269189358,
- 0.08676858991384506,
- -0.01577073708176613,
- -0.003872467204928398,
- 0.08657782524824142,
- 0.004337021615356207,
- -0.07278192043304443,
- -0.08327910304069519,
- -0.02937689796090126,
- 0.049811169505119324,
- -0.0018098598811775446,
- 0.0525464303791523,
- -0.035757001489400864,
- 0.01038292981684208,
- -0.0573296993970871,
- 0.07392961531877518,
- -0.10920074582099915,
- 0.02490195445716381,
- 0.09130571037530899,
- 0.0013568340800702572,
- 0.01981142908334732,
- -0.03034001775085926,
- -0.0013541275402531028,
- 0.020801054313778877,
- 0.08404228091239929,
- 0.02497806027531624,
- -0.025405483320355415,
- -0.06642862409353256,
- -0.008852295577526093,
- -0.038889411836862564,
- 0.010132652707397938,
- -0.0661705732345581,
- 0.03766348212957382,
- -0.018000489100813866,
- -0.00577127980068326,
- 0.028972411528229713,
- 0.2681801915168762,
- -0.018395934253931046,
- 0.016652723774313927,
- -0.024814147502183914,
- -0.09397872537374496,
- -0.09886087477207184,
- -0.014326890930533409,
- -0.07925194501876831,
- 0.03490101918578148,
- 0.03329484909772873,
- 0.003459299448877573,
- -0.0475415401160717,
- -0.01657702401280403,
- -0.04730380326509476,
- -0.05220760777592659,
- -0.006260493770241737,
- 0.03918348252773285,
- 0.015181486494839191,
- -0.0064497035928070545,
- -0.029861558228731155,
- 0.045638155192136765,
- 0.0027011334896087646,
- 0.01033099927008152,
- 0.033658187836408615,
- 0.01802215166389942,
- 0.008025904186069965,
- -0.04300149902701378,
- -0.022038331255316734,
- -5.779740419100103e-33,
- 0.07284799218177795,
- -0.017793603241443634,
- 0.03016521967947483,
- 0.1262991577386856,
- 0.13874763250350952,
- -0.0425371378660202,
- 0.053658053278923035,
- -0.007169803604483604,
- -0.06987465918064117,
- -0.00981486402451992,
- 0.05751616135239601,
- 0.01066056452691555,
- -0.03717837855219841,
- 0.024139655753970146,
- 0.030775075778365135,
- -0.048734597861766815,
- 0.005471973214298487,
- 0.01783677749335766,
- -0.044524021446704865,
- -0.02857031486928463,
- -0.05317235738039017,
- 0.007098888047039509,
- 0.02689995802938938,
- 0.06707040220499039,
- 0.03230202943086624,
- 0.03607252985239029,
- 0.0673779770731926,
- -0.00888611190021038,
- 0.037087514996528625,
- 0.05532928928732872,
- 0.042340509593486786,
- 0.03384479135274887,
- 0.016044117510318756,
- 0.04667241871356964,
- 0.016463056206703186,
- 0.027922997251152992,
- -0.013246295973658562,
- -0.07168053835630417,
- 0.05625632032752037,
- 0.022392474114894867,
- -0.0044325594790279865,
- 0.012353242374956608,
- -0.003835133509710431,
- -0.013659457676112652,
- 0.0382225438952446,
- 0.06327031552791595,
- 0.10570115596055984,
- 0.05471101403236389,
- 0.04227865859866142,
- 0.071990005671978,
- -0.002660891506820917,
- 0.06571202725172043,
- -0.048266034573316574,
- -0.019292067736387253,
- -0.005586647428572178,
- -0.059109512716531754,
- -0.027081074193120003,
- 0.004799606744199991,
- 0.052647143602371216,
- 0.05681230500340462,
- 0.0004274348320905119,
- 0.17515042424201965,
- -0.05639608949422836,
- 0.0652347207069397,
- 0.0016301276627928019,
- -0.02847227454185486,
- -0.022320352494716644,
- -0.04899488016963005,
- 0.0892314463853836,
- -0.008906396105885506,
- -0.0774034932255745,
- -0.011877264827489853,
- 0.07180090248584747,
- 0.023142242804169655,
- -0.01163184642791748,
- -0.0222004447132349,
- -0.047133952379226685,
- 0.038895539939403534,
- -0.09210249036550522,
- -0.013807057403028011,
- -0.13513867557048798,
- -0.007149229291826487,
- -0.015745574608445168,
- 0.013974480330944061,
- -0.0764889046549797,
- -0.06503968685865402,
- -0.01444278098642826,
- 0.022119304165244102,
- 0.019054176285862923,
- 0.044921886175870895,
- -0.13464218378067017,
- -0.012654432095587254,
- 0.01385277695953846,
- 0.06962957233190536,
- 0.051346030086278915,
- 4.1496122404957725e-33,
- 0.06196478754281998,
- 0.005159191321581602,
- -0.08783287554979324,
- 0.09633833169937134,
- 0.06844279915094376,
- 0.00855120737105608,
- -0.04036424681544304,
- -0.03738420084118843,
- -0.023091690614819527,
- 0.06732424348592758,
- 0.0063081285916268826,
- 0.031140469014644623,
- 0.05700213089585304,
- 0.0013877067249268293,
- 0.05079972743988037,
- -0.005629753693938255,
- 0.01571400836110115,
- -0.018483882769942284,
- -0.008197212591767311,
- 0.029960494488477707,
- 0.03479718416929245,
- 0.048214636743068695,
- -0.05921793729066849,
- -0.05135657638311386,
- -0.018651871010661125,
- 0.031134843826293945,
- -0.01834145374596119,
- 0.02417917177081108,
- -0.010776645503938198,
- 0.02104489877820015,
- -0.016666628420352936,
- -0.09427367150783539,
- -0.06799621134996414,
- 0.00571585725992918,
- -0.0460442416369915,
- 0.03125625476241112,
- 0.07446981966495514,
- -0.014534521847963333,
- -0.04489092528820038,
- -0.065974660217762,
- 0.06108417361974716,
- 0.012486618012189865,
- -0.14014938473701477,
- 0.08262980729341507,
- -0.016144471243023872,
- -0.05835382267832756,
- -0.05188797414302826,
- -0.01844729483127594,
- 0.0458860844373703,
- -0.01105364691466093,
- -0.02889193780720234,
- 0.024460546672344208,
- 0.006186719983816147,
- -0.14952407777309418,
- 0.03862350061535835,
- 0.0036323321983218193,
- -0.0059007941745221615,
- -0.033849772065877914,
- 0.026373356580734253,
- 0.06793089956045151,
- 0.0033089653588831425,
- -0.03097916580736637,
- -0.0717073455452919,
- 0.05255348980426788,
- 0.050216756761074066,
- -0.0026301704347133636,
- -0.021806461736559868,
- 0.03194170817732811,
- -0.02880614623427391,
- 0.03196307271718979,
- 0.04918619990348816,
- 0.04882771894335747,
- 0.012954259291291237,
- -0.04645029082894325,
- -0.03607119619846344,
- -0.01840370148420334,
- 0.033122800290584564,
- 0.05725744366645813,
- 0.010173884220421314,
- -0.05173216015100479,
- 0.0072038969956338406,
- -0.06247377768158913,
- 0.029279321432113647,
- 0.05398060381412506,
- 0.019358616322278976,
- 0.09439489990472794,
- 0.07087519019842148,
- 0.08169570565223694,
- -0.04152799770236015,
- 0.06551254540681839,
- -0.019154708832502365,
- 0.007317214272916317,
- 0.05877261981368065,
- -0.0340888574719429,
- -0.02821844257414341,
- -1.2230239043731217e-8,
- -0.008015713654458523,
- 0.07450397312641144,
- -0.053195707499980927,
- -0.03936222940683365,
- 0.028153417631983757,
- 0.02190718799829483,
- 0.04290763661265373,
- 0.0911383405327797,
- -0.0009570297552272677,
- 0.12437350302934647,
- 0.0432116873562336,
- 0.009448133409023285,
- 0.030254995450377464,
- 0.07018036395311356,
- 0.03803195804357529,
- -0.04349508881568909,
- -0.0682288110256195,
- 0.04158703237771988,
- -0.1355113685131073,
- -0.08698637038469315,
- 0.06251087784767151,
- -0.0029813782311975956,
- 0.0747038945555687,
- -0.02206951193511486,
- -0.038321949541568756,
- -0.04376691207289696,
- -0.012218278832733631,
- 0.04763904586434364,
- -0.01565653458237648,
- -0.009215178899466991,
- -0.03374123573303223,
- 0.0539487861096859,
- -0.052619948983192444,
- -0.04270778223872185,
- -0.013846713118255138,
- -0.008070067502558231,
- -0.07210879027843475,
- 0.0025382149033248425,
- 0.027678808197379112,
- -0.019371146336197853,
- -0.045879464596509933,
- -0.005517271813005209,
- 0.028719810768961906,
- -0.04170854017138481,
- 0.011730537749826908,
- 0.051796991378068924,
- -0.033609822392463684,
- -0.05369570106267929,
- -0.04674280062317848,
- 0.0026271522510796785,
- -0.0645846575498581,
- -0.02735641412436962,
- 0.02500198595225811,
- 0.02363155409693718,
- 0.05742491036653519,
- 0.07128602266311646,
- 0.004663971718400717,
- -0.0271648857742548,
- 0.017215728759765625,
- -0.013474073261022568,
- -0.0032131175976246595,
- 0.02664504572749138,
- -0.11758415400981903,
- -0.009806698188185692
- ]
- },
- {
- "keyword": "training",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.00044029028504155576,
- 0.03730789199471474,
- -0.013161717914044857,
- 0.0841362476348877,
- -0.035440728068351746,
- 0.030330585315823555,
- 0.06991800665855408,
- -0.05186264216899872,
- -0.06665284186601639,
- -0.05684768781065941,
- -0.01028961781412363,
- -0.02103172242641449,
- 0.0060815163888037205,
- 0.04344357177615166,
- -0.03353988751769066,
- -0.025601133704185486,
- 0.016883429139852524,
- -0.006416505202651024,
- -0.05123094469308853,
- -0.09299100190401077,
- -0.030992574989795685,
- 0.009595368057489395,
- 0.052357252687215805,
- 0.0623987540602684,
- -0.04317387938499451,
- 0.05440419912338257,
- -0.020550094544887543,
- 0.013086603954434395,
- 0.028191037476062775,
- -0.10049065202474594,
- -0.0023982918355613947,
- -0.022270003333687782,
- 0.058327630162239075,
- 0.044019680470228195,
- -0.04069128632545471,
- 0.08853018283843994,
- 0.05504074692726135,
- 0.002423209371045232,
- 0.025308407843112946,
- 0.029701240360736847,
- -0.02499237284064293,
- -0.05766797438263893,
- -0.017422499135136604,
- -0.04163569211959839,
- 0.04492216929793358,
- 0.026311369612812996,
- 0.04941587150096893,
- -0.03608105704188347,
- -0.01878831349313259,
- 0.01557120680809021,
- -0.02858659066259861,
- -0.04290815442800522,
- -0.016340898349881172,
- 0.017591284587979317,
- 0.010496905073523521,
- 0.01935144141316414,
- 0.014273879118263721,
- 0.007410956546664238,
- -0.014943287707865238,
- -0.0030674459412693977,
- 0.016311414539813995,
- -0.023376211524009705,
- -0.11594308167695999,
- 0.00029819176415912807,
- 0.01183136086910963,
- -0.06045287102460861,
- -0.015490289777517319,
- 0.07969427108764648,
- 0.04186461865901947,
- -0.13723605871200562,
- 0.010913848876953125,
- 0.016809992492198944,
- -0.04883791506290436,
- 0.027574066072702408,
- 0.07198338210582733,
- 0.040638942271471024,
- 0.01644560694694519,
- 0.03838471323251724,
- 0.09526943415403366,
- -0.07215989381074905,
- 0.028021998703479767,
- 0.02817872352898121,
- 0.015030317939817905,
- 0.011246919631958008,
- 0.05566992983222008,
- -0.024532541632652283,
- 0.017820492386817932,
- 0.04769672080874443,
- 0.031707681715488434,
- 0.06099822744727135,
- 0.026062285527586937,
- -0.02042744681239128,
- -0.06192950904369354,
- 0.025767330080270767,
- -0.08307360857725143,
- 0.03815486654639244,
- -0.030095594003796577,
- 0.009757195599377155,
- -0.05544266849756241,
- 0.2343512326478958,
- 0.045466624200344086,
- -0.008898544125258923,
- -0.038485441356897354,
- 0.04549599811434746,
- -0.07954351603984833,
- -0.021893704310059547,
- -0.012544278055429459,
- 0.04065153747797012,
- 0.04462124779820442,
- -0.01655871607363224,
- 0.014893640764057636,
- 0.028188634663820267,
- -0.10085737705230713,
- 0.015439067967236042,
- 0.006252645514905453,
- 0.14742211997509003,
- -0.08152411878108978,
- 0.0005035565118305385,
- -0.023792486637830734,
- 0.13986214995384216,
- -0.06770408153533936,
- 0.015984373167157173,
- -0.005205182824283838,
- -0.0017874321201816201,
- -0.004916359204798937,
- -0.11916348338127136,
- -0.052705492824316025,
- -3.89708152379259e-33,
- 0.05876908451318741,
- -0.032282792031764984,
- 0.020233117043972015,
- 0.027700642123818398,
- -0.016584262251853943,
- -0.04643478989601135,
- 0.03365626931190491,
- -0.007799232844263315,
- 0.012489473447203636,
- 0.028202146291732788,
- -0.03372687101364136,
- 0.04458271339535713,
- 0.0011632830137386918,
- 0.017289333045482635,
- 0.11632657051086426,
- -0.027129990980029106,
- -0.0967155173420906,
- 0.06576937437057495,
- -0.007396428845822811,
- 0.03825470060110092,
- -0.004244574811309576,
- 0.00577526306733489,
- -0.04731824994087219,
- 0.0005352263106033206,
- 0.04393835365772247,
- 0.005420675501227379,
- -0.009784159250557423,
- 0.0037656158674508333,
- 0.034777797758579254,
- 0.02444392628967762,
- -0.01703750528395176,
- 0.06372930854558945,
- -0.03644870966672897,
- -0.05749208852648735,
- 0.019836202263832092,
- -0.02438138797879219,
- 0.03317980468273163,
- -0.06581950187683105,
- 0.05564378574490547,
- -0.02550545707345009,
- 0.028881149366497993,
- -0.004754574969410896,
- 0.05617513880133629,
- -0.04488557204604149,
- 0.03001636639237404,
- 0.03787749633193016,
- 0.09516435861587524,
- -0.02523593045771122,
- -0.11623454093933105,
- 0.045605581253767014,
- -0.04628472030162811,
- -0.04641945660114288,
- 0.00387364043854177,
- -0.10123450309038162,
- 0.028147133067250252,
- 0.07448713481426239,
- 0.02239975333213806,
- 0.031234968453645706,
- -0.010150697082281113,
- -0.021323565393686295,
- 0.079988032579422,
- 0.06342820823192596,
- -0.05154280364513397,
- 0.08644034713506699,
- -0.051391664892435074,
- -0.07845211774110794,
- 0.0020701130852103233,
- -0.031412508338689804,
- 0.12060486525297165,
- -0.027450621128082275,
- -0.0999080166220665,
- -0.028041090816259384,
- 0.03344722464680672,
- -0.06255863606929779,
- 0.0716504454612732,
- -0.0878087654709816,
- -0.012239308096468449,
- 0.03860170394182205,
- -0.037301380187273026,
- 0.004104131832718849,
- 0.011344424448907375,
- 0.038795337080955505,
- -0.007186866365373135,
- 0.007591421250253916,
- 0.05008113011717796,
- 0.009909733198583126,
- -0.03625888749957085,
- -0.10244052112102509,
- 0.05233055353164673,
- 0.08339668810367584,
- -0.08152108639478683,
- -0.027537541463971138,
- -0.013817102648317814,
- 0.07198230177164078,
- 0.020601920783519745,
- 3.5114345207244295e-33,
- 0.03232193738222122,
- 0.07211216539144516,
- -0.018695823848247528,
- 0.07133181393146515,
- 0.05277905613183975,
- 0.05821983516216278,
- 0.049162399023771286,
- 0.07773958891630173,
- -0.06455563008785248,
- 0.05499649420380592,
- -0.04761946201324463,
- -0.04218783229589462,
- 0.013976896181702614,
- 0.012804047204554081,
- -0.04112745821475983,
- -0.016800573095679283,
- -0.006920522544533014,
- 0.04407200217247009,
- 0.011014802381396294,
- -0.0023339204490184784,
- 0.0068705035373568535,
- 0.027783265337347984,
- 0.0018389549804851413,
- -0.0034605583641678095,
- -0.010304187424480915,
- 0.016434932127594948,
- 0.0008880096138454974,
- 0.10559246689081192,
- -0.011577608995139599,
- 0.02144404500722885,
- 0.0023333937861025333,
- -0.023296035826206207,
- -0.03366393223404884,
- 0.0032193942461162806,
- -0.08733828365802765,
- 0.06280137598514557,
- 0.07999923080205917,
- 0.02087266370654106,
- -0.03854512423276901,
- 0.10683418065309525,
- 0.0934857502579689,
- -0.04906018078327179,
- -0.019269686192274094,
- 0.12458007037639618,
- -0.035782523453235626,
- -0.06702163070440292,
- -0.00016512729052919894,
- -0.016291216015815735,
- 0.005061473697423935,
- -0.01662023551762104,
- -0.03459959104657173,
- -0.06406015157699585,
- -0.03421347960829735,
- -0.08902379870414734,
- -0.014198013581335545,
- -0.0606071911752224,
- -0.0313144288957119,
- -0.040022823959589005,
- -0.028149543330073357,
- -0.04737192392349243,
- -0.0017274311976507306,
- 0.05012598633766174,
- -0.05242551863193512,
- 0.06707698851823807,
- -0.030963191762566566,
- 0.008313976228237152,
- -0.0482654944062233,
- 0.050642214715480804,
- 0.012049089185893536,
- 0.06905476748943329,
- 0.010784406214952469,
- 0.05651507526636124,
- 0.029812395572662354,
- 0.04045942798256874,
- -0.09498465061187744,
- -0.037448205053806305,
- -0.06273909658193588,
- -0.032367195934057236,
- -0.058874212205410004,
- -0.046925999224185944,
- -0.08062374591827393,
- -0.08823519945144653,
- -0.0475560761988163,
- 0.10539146512746811,
- 0.011372723616659641,
- 0.10563182085752487,
- 0.07156917452812195,
- 0.009279388934373856,
- -0.033168964087963104,
- -0.10163632780313492,
- -0.025303225964307785,
- -0.0007396764121949673,
- -0.02584879659116268,
- -0.005761641543358564,
- -0.03652127459645271,
- -1.2698921025844356e-8,
- -0.032730583101511,
- 0.013485006988048553,
- -0.005351469852030277,
- -0.008830923587083817,
- -0.012021102011203766,
- 0.019737277179956436,
- -0.026395339518785477,
- 0.04909130185842514,
- 0.00856923870742321,
- 0.05613383650779724,
- 0.018133385106921196,
- -0.02677079476416111,
- 0.030173296108841896,
- 0.019539494067430496,
- 0.07426498085260391,
- 0.02026326023042202,
- -0.00817087385803461,
- 0.0839567705988884,
- -0.0550667904317379,
- 0.024677056819200516,
- 0.04504329711198807,
- -0.004996966570615768,
- 0.05963427573442459,
- 0.0729912668466568,
- -0.014587480574846268,
- -0.12226549535989761,
- -0.010262470692396164,
- 0.12856413424015045,
- -0.0019257193198427558,
- 0.04129285365343094,
- -0.024449443444609642,
- 0.025562841445207596,
- 0.055498674511909485,
- -0.04847068712115288,
- -0.007916171103715897,
- 0.000884068722371012,
- 0.030713273212313652,
- -0.08740925788879395,
- 0.010755636729300022,
- -0.03846832737326622,
- -0.08886969089508057,
- 0.026737593114376068,
- 0.08901374042034149,
- -0.03543534129858017,
- 0.0007909080595709383,
- 0.03196629136800766,
- -0.04560484364628792,
- -0.014988845214247704,
- -0.007892105728387833,
- -0.07607102394104004,
- -0.0019308797782287002,
- 0.01559387519955635,
- -0.0024049074854701757,
- 0.04607716202735901,
- 0.044775962829589844,
- 0.046476058661937714,
- -0.030579542741179466,
- -0.05295364186167717,
- -0.10383768379688263,
- 0.09452652186155319,
- -0.035523585975170135,
- -0.03232884407043457,
- 0.022294851019978523,
- -0.013338413089513779
- ]
- },
- {
- "keyword": "bootcamp",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.002396151889115572,
- -0.07266318053007126,
- 0.05044051632285118,
- 0.016670025885105133,
- 0.052830033004283905,
- 0.02634083665907383,
- 0.09999983012676239,
- -0.06337223947048187,
- -0.04285639896988869,
- -0.05255598947405815,
- -0.046337734907865524,
- 0.009991021826863289,
- 0.0168193057179451,
- 0.03537820652127266,
- 0.00013216859952080995,
- 0.001173448166809976,
- 0.04999937862157822,
- -0.03803648054599762,
- 0.006054328288882971,
- -0.053766991943120956,
- -0.0016571563901379704,
- -0.06160268187522888,
- -0.05204933509230614,
- 0.08469868451356888,
- -0.009653100743889809,
- 0.03637820482254028,
- -0.005540570709854364,
- 0.08384687453508377,
- -0.05211075395345688,
- -0.02508397586643696,
- -0.04763314500451088,
- 0.031178751960396767,
- 0.018469208851456642,
- -0.023903863504529,
- 0.05748869106173515,
- 0.011916146613657475,
- -0.0010032489662989974,
- -0.03170163929462433,
- -0.09591111540794373,
- -0.04780934378504753,
- -0.07589197903871536,
- -0.03389428183436394,
- 0.09793411940336227,
- 0.0355595238506794,
- 0.03562140092253685,
- 0.008204985409975052,
- 0.08362570405006409,
- -0.0468265637755394,
- 0.061710163950920105,
- 0.05672699213027954,
- 0.0356694832444191,
- -0.07791540771722794,
- -0.06322634220123291,
- -0.03209960460662842,
- -0.02017877995967865,
- 0.01173744723200798,
- 0.02936464548110962,
- -0.007997660897672176,
- -0.07701851427555084,
- -0.00039709993870928884,
- -0.01540345884859562,
- -0.11508166044950485,
- -0.10320717096328735,
- 0.012651062570512295,
- -0.014646436087787151,
- -0.020671861246228218,
- 0.014928208664059639,
- 0.018835702911019325,
- 0.024606836959719658,
- -0.0706639438867569,
- -0.007141092326492071,
- -0.00632056687027216,
- 0.013873601332306862,
- -0.003374690655618906,
- -0.02645164728164673,
- 0.04333234578371048,
- 0.05249157175421715,
- 0.06069996580481529,
- 0.10119088739156723,
- -0.060342997312545776,
- -0.004491185769438744,
- 0.06080028787255287,
- 0.006141040939837694,
- -0.014033758081495762,
- -0.0320717990398407,
- -0.06364098191261292,
- -0.05586313456296921,
- 0.01411026157438755,
- -0.002067890018224716,
- 0.0793193057179451,
- -0.07300200313329697,
- -0.02104356698691845,
- -0.05716482177376747,
- 0.02480309270322323,
- -0.09448269754648209,
- 0.009608462452888489,
- 0.048585861921310425,
- -0.03775577247142792,
- 0.021451961249113083,
- 0.1381164789199829,
- -0.04748038575053215,
- 0.02917192503809929,
- 0.0008525291923433542,
- -0.04877343773841858,
- 0.018597034737467766,
- -0.02474226988852024,
- 0.07502772659063339,
- 0.02498627081513405,
- 0.018326131626963615,
- -0.00615157512947917,
- 0.0030060717836022377,
- 0.00013355225382838398,
- 0.02133948542177677,
- 0.043765127658843994,
- 0.023039424791932106,
- -0.01408823300153017,
- -0.015526863746345043,
- 0.010347362607717514,
- -0.03091050311923027,
- 0.14242370426654816,
- -0.044360075145959854,
- -0.058357611298561096,
- 0.055916838347911835,
- 0.022229665890336037,
- -0.06761569529771805,
- -0.06468001008033752,
- -0.04391639307141304,
- -1.1414540548033895e-33,
- 0.019483543932437897,
- -0.09103046357631683,
- 0.028540993109345436,
- 0.03590550646185875,
- 0.060633379966020584,
- -0.05677328258752823,
- 0.019391795620322227,
- -0.04651995003223419,
- 0.014509039930999279,
- 0.019024962559342384,
- -0.033981695771217346,
- -0.023124737665057182,
- 0.012426857836544514,
- -0.0047168852761387825,
- 0.14373049139976501,
- -0.0297089833766222,
- -0.10787723958492279,
- 0.03470957651734352,
- -0.0682906061410904,
- 0.007495129480957985,
- 0.044564418494701385,
- -0.02960120514035225,
- -0.023742318153381348,
- -0.0719127431511879,
- 0.06682122498750687,
- -0.03565937653183937,
- -0.011126800440251827,
- 0.04625874012708664,
- 0.12987057864665985,
- 0.04201647639274597,
- -0.06376895308494568,
- -0.03804302215576172,
- -0.03237544745206833,
- -0.10935186594724655,
- 0.07206303626298904,
- 0.029877187684178352,
- -0.03809540346264839,
- 0.012508545070886612,
- 0.013843541033565998,
- -0.013916794210672379,
- -0.07839754223823547,
- -0.0392036996781826,
- 0.06440485268831253,
- -0.02885468117892742,
- 0.07744468003511429,
- 0.026543084532022476,
- 0.074740469455719,
- 0.05150629207491875,
- 0.01984965242445469,
- -0.06387407332658768,
- -0.06031213328242302,
- -0.02082796022295952,
- 0.05227203667163849,
- -0.03709438070654869,
- 0.0064746178686618805,
- -0.008241923525929451,
- 0.10334115475416183,
- 0.040411900728940964,
- -0.029141033068299294,
- 0.05258361995220184,
- -0.049118924885988235,
- 0.07964127510786057,
- 0.015005159191787243,
- 0.01785326935350895,
- -0.025226138532161713,
- -0.04664856567978859,
- 0.008118444122374058,
- 0.0035132078919559717,
- 0.007360940799117088,
- 0.036563850939273834,
- -0.031333744525909424,
- -0.02266455627977848,
- 0.04114852473139763,
- -0.03759748861193657,
- 0.01780756562948227,
- -0.07800968736410141,
- 0.04732118174433708,
- 0.08697496354579926,
- -0.11638803780078888,
- 0.03863222151994705,
- -0.02223196066915989,
- -0.04981948062777519,
- -0.050329677760601044,
- 0.03735785931348801,
- -0.004199644085019827,
- 0.02420368418097496,
- 0.002890879288315773,
- -0.06603781878948212,
- -0.029792742803692818,
- 0.042672645300626755,
- -0.11379356682300568,
- -0.0642205998301506,
- 0.03179008886218071,
- 0.04039761796593666,
- -0.042726412415504456,
- 1.4456353504332305e-33,
- 0.018321674317121506,
- -0.023074205964803696,
- 0.05975589156150818,
- -0.03836429491639137,
- 0.055828023701906204,
- 0.013279974460601807,
- -0.009449565783143044,
- 0.08322343975305557,
- -0.06327902525663376,
- 0.037572041153907776,
- 0.00007126083801267669,
- -0.01878255046904087,
- 0.038751449435949326,
- 0.03292788937687874,
- -0.027219096198678017,
- -0.06374754756689072,
- 0.07373510301113129,
- -0.013202483765780926,
- 0.04831555113196373,
- 0.027592241764068604,
- 0.005774247460067272,
- 0.010993982665240765,
- -0.02611110545694828,
- -0.07112965732812881,
- -0.004363910760730505,
- -0.031969066709280014,
- -0.015644369646906853,
- 0.14015519618988037,
- -0.05354461073875427,
- 0.09115266054868698,
- 0.06564615666866302,
- -0.024461237713694572,
- 0.000730699161067605,
- -0.03613622859120369,
- 0.06638205796480179,
- 0.012548700906336308,
- 0.062108855694532394,
- -0.036808647215366364,
- -0.07225677371025085,
- -0.02786150574684143,
- 0.09211991727352142,
- -0.14387604594230652,
- -0.01829749345779419,
- 0.05506225302815437,
- 0.0460909828543663,
- 0.002738305600360036,
- -0.07920985668897629,
- 0.007437684573233128,
- -0.030751846730709076,
- -0.06777490675449371,
- -0.05558277666568756,
- -0.03479093313217163,
- -0.04539421200752258,
- -0.03813199698925018,
- 0.013140411116182804,
- -0.05782410129904747,
- -0.04595279321074486,
- -0.015460764057934284,
- 0.06122048571705818,
- 0.03790336847305298,
- -0.0235136765986681,
- -0.03296058624982834,
- 0.04737740010023117,
- 0.013351703062653542,
- -0.028880340978503227,
- 0.008728856220841408,
- 0.002407127059996128,
- 0.06958852708339691,
- -0.10699596256017685,
- 0.10647836327552795,
- -0.07100659608840942,
- 0.05256646126508713,
- 0.0026207587216049433,
- 0.04269634559750557,
- -0.01206594705581665,
- -0.06268423795700073,
- 0.03041170910000801,
- 0.03013325110077858,
- -0.0745929628610611,
- -0.03049359656870365,
- 0.03847718983888626,
- -0.050128184258937836,
- -0.08128749579191208,
- 0.09486444294452667,
- 0.019360654056072235,
- 0.07152895629405975,
- 0.053104910999536514,
- 0.11119358986616135,
- -0.012700643390417099,
- -0.03359460458159447,
- 0.03819167613983154,
- -0.0013705382589250803,
- 0.04724601283669472,
- 0.0074245985597372055,
- -0.05402889475226402,
- -1.1902968388710633e-8,
- -0.049186769872903824,
- 0.0995495542883873,
- 0.053141556680202484,
- 0.018704546615481377,
- -0.03795227035880089,
- 0.05109090358018875,
- 0.027394482865929604,
- -0.015998566523194313,
- 0.015081394463777542,
- 0.06684001535177231,
- 0.07384303957223892,
- -0.011814283207058907,
- -0.0021534492261707783,
- -0.02392500452697277,
- -0.05209833011031151,
- 0.0705789253115654,
- -0.08710934966802597,
- 0.06952302157878876,
- 0.011815783567726612,
- -0.03628140687942505,
- 0.04311497136950493,
- 0.0037788853514939547,
- 0.07962756603956223,
- 0.0686379000544548,
- 0.04977690801024437,
- 0.027481745928525925,
- 0.050939518958330154,
- 0.01645449548959732,
- 0.04467048868536949,
- 0.04037532955408096,
- 0.015067806467413902,
- 0.0025936902966350317,
- 0.025284823030233383,
- 0.10031752288341522,
- -0.00977313332259655,
- 0.0018348197918385267,
- -0.010946945287287235,
- 0.0678718239068985,
- -0.021719790995121002,
- -0.006567508447915316,
- -0.06810475885868073,
- 0.029561858624219894,
- 0.06660308688879013,
- -0.028573891147971153,
- -0.0589977391064167,
- 0.03458983078598976,
- -0.007577038370072842,
- 0.03173992782831192,
- -0.02382371388375759,
- -0.07632371783256531,
- -0.040225155651569366,
- 0.02590961940586567,
- -0.0012498603900894523,
- 0.07626932114362717,
- 0.029876796528697014,
- 0.07714644819498062,
- -0.002624635584652424,
- -0.06871361285448074,
- -0.043272607028484344,
- 0.08040422201156616,
- 0.038149647414684296,
- -0.03169157728552818,
- -0.06425832957029343,
- 0.06951194256544113
- ]
- },
- {
- "keyword": "course",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05176033452153206,
- -0.04249080643057823,
- -0.10078300535678864,
- 0.011230682022869587,
- 0.03425196558237076,
- -0.0728650838136673,
- 0.050904735922813416,
- -0.05632544308900833,
- -0.04885702207684517,
- 0.005246392451226711,
- 0.020812077447772026,
- -0.006867400836199522,
- -0.0029338710010051727,
- 0.042071498930454254,
- 0.0365612655878067,
- 0.08657416701316833,
- -0.013729238882660866,
- 0.018045639619231224,
- -0.00800629798322916,
- 0.03832520544528961,
- -0.041100114583969116,
- -0.04532884806394577,
- 0.020406920462846756,
- -0.0032746484503149986,
- 0.049240171909332275,
- 0.044475339353084564,
- 0.04563990607857704,
- 0.15410524606704712,
- -0.02671988494694233,
- -0.099562868475914,
- -0.057855039834976196,
- 0.02065761759877205,
- 0.060295287519693375,
- -0.03347165137529373,
- -0.06677660346031189,
- -0.03501418977975845,
- -0.07359949499368668,
- -0.11608444899320602,
- 0.057130150496959686,
- 0.059794194996356964,
- 0.008078262209892273,
- -0.035880349576473236,
- -0.06458807736635208,
- -0.012686016969382763,
- 0.022202344611287117,
- 0.07632598280906677,
- 0.007493955083191395,
- -0.06163617968559265,
- -0.04512224718928337,
- -0.009265094995498657,
- -0.00644661346450448,
- 0.001987029565498233,
- -0.08861459046602249,
- 0.03733981028199196,
- 0.06693176925182343,
- -0.02480964921414852,
- 0.007686325814574957,
- -0.026050586253404617,
- -0.01210711244493723,
- 0.005311535205692053,
- 0.022743169218301773,
- -0.03792518004775047,
- -0.12606829404830933,
- 0.05494006723165512,
- -0.031702931970357895,
- -0.04962804913520813,
- -0.007706198375672102,
- -0.02009260468184948,
- 0.031303539872169495,
- 0.01988411881029606,
- 0.036680202931165695,
- 0.020693020895123482,
- 0.04483454301953316,
- -0.058032989501953125,
- 0.057344548404216766,
- 0.011514322832226753,
- 0.04483536630868912,
- -0.015885811299085617,
- 0.019782042130827904,
- 0.055147409439086914,
- -0.0947537049651146,
- 0.02668977715075016,
- -0.055748309940099716,
- 0.0006615394377149642,
- -0.0024600597098469734,
- -0.02507980354130268,
- 0.059348106384277344,
- -0.05154600739479065,
- -0.08514516800642014,
- 0.04010027274489403,
- 0.062109701335430145,
- -0.026770975440740585,
- 0.01593950018286705,
- -0.04364093765616417,
- -0.032435424625873566,
- -0.13191522657871246,
- 0.01530629862099886,
- -0.048123799264431,
- -0.08208559453487396,
- 0.19911032915115356,
- 0.0036445539444684982,
- -0.02750828117132187,
- -0.04981899634003639,
- 0.00632389634847641,
- -0.033288564532995224,
- -0.05634576082229614,
- -0.05952257290482521,
- 0.06064000353217125,
- 0.019037624821066856,
- -0.031902991235256195,
- 0.0013150203740224242,
- -0.014551098458468914,
- -0.04032403975725174,
- -0.05751379579305649,
- 0.010476510971784592,
- 0.058242376893758774,
- -0.03346269205212593,
- -0.004139360506087542,
- 0.02616146206855774,
- -0.038651321083307266,
- -0.012427491135895252,
- 0.04228596016764641,
- 0.022115522995591164,
- -0.01414396706968546,
- -0.013976514339447021,
- -0.18846705555915833,
- -0.0016289667692035437,
- -4.4215242876501224e-33,
- 0.029325474053621292,
- -0.0007585952407680452,
- -0.02527729421854019,
- 0.03164052218198776,
- 0.03634941205382347,
- 0.06237947568297386,
- 0.0034070105757564306,
- -0.03426280617713928,
- -0.07049302011728287,
- 0.003629071172326803,
- 0.032686371356248856,
- -0.013941507786512375,
- 0.013836586847901344,
- -0.026035644114017487,
- 0.005731476470828056,
- -0.02477506548166275,
- -0.027548056095838547,
- 0.0156196104362607,
- 0.0433712936937809,
- -0.03490782901644707,
- 0.04070050269365311,
- -0.06927815079689026,
- -0.029598234221339226,
- -0.04678497090935707,
- -0.053519491106271744,
- -0.00920049473643303,
- 0.04497358575463295,
- -0.010171175934374332,
- 0.06993889063596725,
- 0.04848412796854973,
- 0.008906005881726742,
- -0.026373298838734627,
- -0.09875258058309555,
- 0.029205985367298126,
- 0.010079069063067436,
- -0.005858215969055891,
- -0.009197019040584564,
- -0.08393394947052002,
- -0.029391136020421982,
- -0.030207771807909012,
- -0.02805507369339466,
- 0.02506025694310665,
- -0.053362827748060226,
- 0.0018311449093744159,
- -0.015038412064313889,
- 0.07883699238300323,
- 0.07388027012348175,
- 0.029635358601808548,
- -0.040750063955783844,
- 0.03773031383752823,
- -0.03815865516662598,
- -0.07136279344558716,
- -0.058131229132413864,
- -0.018426435068249702,
- -0.040468741208314896,
- 0.037421148270368576,
- -0.03914575278759003,
- -0.036389466375112534,
- -0.0019415173446759582,
- 0.024611501023173332,
- 0.021886423230171204,
- 0.08846612274646759,
- 0.05335342139005661,
- -0.01598367653787136,
- 0.04172922298312187,
- 0.004769706632941961,
- -0.017755582928657532,
- 0.02449427731335163,
- 0.03056039661169052,
- -0.04419020935893059,
- -0.051140621304512024,
- 0.05522557720541954,
- 0.023244287818670273,
- 0.03152904659509659,
- 0.004942566156387329,
- -0.015160970389842987,
- 0.053848493844270706,
- 0.023084839805960655,
- -0.012224557809531689,
- -0.02556823380291462,
- 0.017850710079073906,
- 0.0034402217715978622,
- -0.04245343059301376,
- 0.06310107558965683,
- 0.07398004829883575,
- 0.02893057093024254,
- 0.026750147342681885,
- -0.024063726887106895,
- 0.0037342882715165615,
- -0.014314467087388039,
- -0.13920770585536957,
- -0.0013056484749540687,
- 0.08433264493942261,
- 0.0160857941955328,
- -0.024699479341506958,
- 2.6707424505224304e-33,
- -0.013190953060984612,
- -0.010623334906995296,
- -0.014545929618179798,
- 0.12768790125846863,
- 0.04397610202431679,
- -0.019852910190820694,
- 0.03595627099275589,
- 0.014112012460827827,
- -0.08653087913990021,
- 0.08516648411750793,
- -0.011741874739527702,
- -0.027922358363866806,
- 0.02507154271006584,
- -0.044133879244327545,
- 0.0018569419626146555,
- 0.037912603467702866,
- 0.030120065435767174,
- 0.00232071615755558,
- -0.06520888954401016,
- -0.004994900897145271,
- -0.11115198582410812,
- -0.0060376450419425964,
- -0.008386766538023949,
- -0.04663935676217079,
- -0.08902779221534729,
- 0.10879647731781006,
- 0.08931942284107208,
- 0.0865912064909935,
- 0.005858561024069786,
- 0.037648241966962814,
- 0.060697343200445175,
- -0.06629171967506409,
- -0.028232421725988388,
- -0.011685016565024853,
- 0.08296145498752594,
- 0.14773468673229218,
- 0.036767035722732544,
- 0.028782477602362633,
- 0.04021885618567467,
- 0.02201816625893116,
- 0.05001279339194298,
- -0.01571567915380001,
- 0.008728445507586002,
- 0.150978222489357,
- 0.04303417727351189,
- -0.03441798314452171,
- 0.09658867120742798,
- -0.0027808567974716425,
- 0.08025336265563965,
- 0.016764240339398384,
- -0.10321293026208878,
- 0.016656503081321716,
- -0.05306984856724739,
- -0.009107749909162521,
- -0.0426718071103096,
- 0.020671125501394272,
- -0.040295857936143875,
- 0.021624721586704254,
- -0.006473915185779333,
- -0.07717631757259369,
- -0.07992804795503616,
- 0.0014124579029157758,
- -0.07292714715003967,
- 0.02537844516336918,
- 0.05939851701259613,
- -0.013176605105400085,
- 0.014299191534519196,
- 0.019531067460775375,
- 0.1236521527171135,
- -0.022914579138159752,
- 0.052858732640743256,
- -0.037798333913087845,
- -0.09125583618879318,
- 0.0030010405462235212,
- 0.01025646273046732,
- -0.059628233313560486,
- 0.009919805452227592,
- -0.019735466688871384,
- 0.03357577696442604,
- -0.033271245658397675,
- 0.0523819662630558,
- -0.01380725298076868,
- -0.035083282738924026,
- 0.009126226417720318,
- 0.09545163810253143,
- 0.002314793411642313,
- 0.06949474662542343,
- -0.008273172192275524,
- 0.01803293637931347,
- -0.009245759807527065,
- 0.012847444042563438,
- 0.0797046348452568,
- 0.10064268112182617,
- -0.03354692459106445,
- -0.05628061294555664,
- -1.4754296451258142e-8,
- -0.030884046107530594,
- -0.016806267201900482,
- 0.027320438995957375,
- -0.0111552057787776,
- 0.04004133865237236,
- 0.05841851234436035,
- -0.06624381244182587,
- 0.0014949532924219966,
- -0.014650681987404823,
- 0.1178588718175888,
- 0.06353867799043655,
- -0.0038422169163823128,
- 0.02217431180179119,
- 0.0553041473031044,
- -0.024745652452111244,
- 0.012255982495844364,
- 0.03940112516283989,
- -0.08054952323436737,
- -0.029278649017214775,
- 0.05006830766797066,
- 0.051900748163461685,
- 0.03508331626653671,
- 0.03640787675976753,
- 0.06757432222366333,
- 0.0022809612564742565,
- -0.015650950372219086,
- 0.06210581213235855,
- 0.10789486765861511,
- -0.004553483333438635,
- 0.051568496972322464,
- -0.037981849163770676,
- 0.035240739583969116,
- -0.0068358867429196835,
- 0.010318838991224766,
- 0.1036238968372345,
- -0.05177433416247368,
- 0.06063833832740784,
- -0.07052377611398697,
- 0.02074519731104374,
- 0.018859988078475,
- -0.009550904855132103,
- -0.049843743443489075,
- 0.059259239584207535,
- 0.020978890359401703,
- -0.013093174435198307,
- -0.045895736664533615,
- -0.025254717096686363,
- -0.11507121473550797,
- -0.008567466400563717,
- -0.042410653084516525,
- -0.0681610032916069,
- 0.008219572715461254,
- 0.017650337889790535,
- 0.0826011598110199,
- 0.07195556908845901,
- 0.024168746545910835,
- -0.05673873424530029,
- -0.02722288854420185,
- 0.0047248899936676025,
- 0.028346335515379906,
- 0.08856820315122604,
- -0.04836495965719223,
- 0.04222848638892174,
- -0.028496084734797478
- ]
- },
- {
- "keyword": "webinar",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.02075745165348053,
- -0.09696711599826813,
- -0.03797890245914459,
- -0.049624234437942505,
- -0.017558149993419647,
- -0.02580457180738449,
- 0.021665474399924278,
- -0.018547728657722473,
- -0.03784872591495514,
- -0.027136705815792084,
- 0.10756679624319077,
- -0.04663419350981712,
- -0.08469906449317932,
- 0.023694712668657303,
- 0.005052622407674789,
- -0.000619301397819072,
- -0.022341420873999596,
- -0.04968910291790962,
- -0.027684234082698822,
- -0.019259260967373848,
- -0.058932408690452576,
- -0.001662831287831068,
- -0.00021689235290978104,
- -0.0033133402466773987,
- 0.05993834137916565,
- 0.04683927074074745,
- 0.010407621040940285,
- 0.03457433357834816,
- 0.10909000039100647,
- -0.1001293882727623,
- 0.032046325504779816,
- 0.02656598575413227,
- 0.023814931511878967,
- -0.002648318652063608,
- -0.030952943488955498,
- -0.031159764155745506,
- -0.03700372204184532,
- 0.009488802403211594,
- -0.04019943252205849,
- 0.03931085020303726,
- -0.021194877102971077,
- -0.0801774188876152,
- -0.002636555815115571,
- 0.0012552525149658322,
- 0.0019603280816227198,
- -0.07525797188282013,
- -0.0032873847521841526,
- -0.009322342462837696,
- 0.05538779869675636,
- 0.0312933512032032,
- -0.10123083740472794,
- -0.11126254498958588,
- 0.024582436308264732,
- 0.040790826082229614,
- -0.05803325027227402,
- -0.02366294153034687,
- 0.0659189447760582,
- -0.0056493207812309265,
- 0.04044570028781891,
- -0.047591112554073334,
- 0.01823989674448967,
- -0.012653768062591553,
- 0.04342149570584297,
- 0.014092531986534595,
- 0.051999323070049286,
- 0.04728105291724205,
- 0.041929591447114944,
- 0.02384231798350811,
- -0.0076964120380580425,
- -0.03919670358300209,
- -0.043488625437021255,
- -0.0343095064163208,
- -0.057176701724529266,
- 0.09871448576450348,
- -0.0549885518848896,
- -0.030282793566584587,
- 0.04404463618993759,
- -0.011125431396067142,
- 0.09223410487174988,
- 0.10441963374614716,
- 0.09644874185323715,
- -0.05433985963463783,
- -0.04607458785176277,
- 0.039625510573387146,
- 0.03874591737985611,
- -0.04344969987869263,
- 0.01540851965546608,
- 0.011999228969216347,
- 0.04714971035718918,
- -0.034103892743587494,
- -0.07490692287683487,
- -0.04378189146518707,
- 0.03151480481028557,
- 0.029218167066574097,
- -0.14330649375915527,
- -0.06338135153055191,
- 0.029744084924459457,
- -0.008840734139084816,
- 0.00021990097593516111,
- 0.1322554051876068,
- -0.00029516624636016786,
- -0.039018504321575165,
- 0.042483020573854446,
- -0.061066996306180954,
- -0.05105861276388168,
- -0.01856168359518051,
- 0.05333736911416054,
- 0.1202106699347496,
- 0.08664799481630325,
- 0.0024930154904723167,
- -0.041632235050201416,
- 0.035066258162260056,
- -0.037493590265512466,
- 0.00036834843922406435,
- 0.011898095719516277,
- -0.016877055168151855,
- -0.0030451102647930384,
- 0.07270927727222443,
- 0.14293618500232697,
- 0.018962431699037552,
- 0.03667678311467171,
- 0.053734224289655685,
- 0.051932867616415024,
- 0.01003657653927803,
- 0.07465597242116928,
- -0.13877451419830322,
- -0.022809889167547226,
- -1.547563108441504e-33,
- 0.07792983949184418,
- 0.0449347160756588,
- -0.04339008033275604,
- -0.004225373733788729,
- 0.15039385855197906,
- -0.024201493710279465,
- 0.03769548237323761,
- 0.06447076052427292,
- -0.0962563008069992,
- -0.06068352982401848,
- -0.002061937004327774,
- -0.0016741551226004958,
- -0.04503102973103523,
- 0.019187429919838905,
- 0.0784299373626709,
- 0.013531752862036228,
- -0.0276128388941288,
- -0.0492786206305027,
- 0.05680854618549347,
- -0.015497533604502678,
- 0.05089639872312546,
- 0.005879614036530256,
- 0.004739429336041212,
- 0.07072212547063828,
- -0.011052885092794895,
- -0.02874048240482807,
- -0.01989058218896389,
- 0.09028256684541702,
- 0.0038929840084165335,
- 0.008499314077198505,
- 0.047703515738248825,
- -0.04581604152917862,
- -0.06603346765041351,
- 0.012885846197605133,
- 0.09844759106636047,
- -0.06412772834300995,
- -0.0037430543452501297,
- -0.08907154947519302,
- 0.004030061885714531,
- -0.03337074816226959,
- -0.1270647644996643,
- 0.030384501442313194,
- 0.01845179684460163,
- 0.03712979704141617,
- 0.024436943233013153,
- -0.037573736160993576,
- 0.04878959804773331,
- -0.01363000925630331,
- 0.00020357822359073907,
- -0.005313993897289038,
- -0.11133328080177307,
- -0.00018082706083077937,
- -0.06920946389436722,
- 0.056092165410518646,
- -0.05133523792028427,
- -0.005771091673523188,
- -0.0005039641982875764,
- 0.024183712899684906,
- 0.004881566856056452,
- -0.0073186615481972694,
- -0.01535923220217228,
- 0.05238721892237663,
- -0.053348541259765625,
- -0.06817325949668884,
- -0.05708608776330948,
- -0.04602393880486488,
- 0.04495248571038246,
- -0.05915640667080879,
- 0.048371605575084686,
- -0.006252248305827379,
- -0.06291419267654419,
- -0.013995976187288761,
- 0.11981070786714554,
- 0.01695931702852249,
- -0.016291262581944466,
- 0.01225600391626358,
- -0.06108962744474411,
- -0.024523036554455757,
- -0.03010784648358822,
- -0.03470604866743088,
- -0.014841742813587189,
- 0.004049020819365978,
- 0.04500580206513405,
- 0.1137891635298729,
- -0.03628626838326454,
- 0.025123007595539093,
- 0.01550463680177927,
- -0.04113411158323288,
- 0.011224156245589256,
- 0.02965705282986164,
- -0.01628192886710167,
- -0.0067146774381399155,
- 0.052763015031814575,
- -0.028467264026403427,
- 0.04778715968132019,
- 1.0984963484365583e-33,
- -0.026969226077198982,
- -0.0012558605521917343,
- 0.03520141914486885,
- 0.10864253342151642,
- 0.036853186786174774,
- 0.009364593774080276,
- 0.022403111681342125,
- 0.032506268471479416,
- -0.0013373751426115632,
- -0.03674427792429924,
- 0.1017291396856308,
- 0.01830648072063923,
- -0.01911213994026184,
- 0.007658615708351135,
- 0.03493455424904823,
- 0.0880545899271965,
- 0.061640337109565735,
- -0.08590437471866608,
- -0.05943214148283005,
- -0.09302090108394623,
- 0.08746423572301865,
- 0.006208459381014109,
- -0.038456302136182785,
- -0.042697761207818985,
- 0.06088068336248398,
- 0.006942827254533768,
- 0.09635917097330093,
- 0.01308183278888464,
- -0.05257498100399971,
- -0.009443525224924088,
- 0.022413374856114388,
- -0.04176246374845505,
- -0.004886602982878685,
- -0.044473763555288315,
- -0.02244388498365879,
- 0.047985225915908813,
- 0.0038692548405379057,
- 0.024773620069026947,
- -0.036308009177446365,
- 0.006682171951979399,
- 0.10352088510990143,
- -0.03955882415175438,
- -0.06666219979524612,
- 0.05113327130675316,
- -0.0609525591135025,
- -0.05177387222647667,
- -0.11555567383766174,
- 0.0077325827442109585,
- 0.05338295176625252,
- 0.019730791449546814,
- -0.028604229912161827,
- 0.06597746163606644,
- 0.028776414692401886,
- -0.06986600160598755,
- -0.017185930162668228,
- -0.015896696597337723,
- 0.07161902636289597,
- -0.0607081800699234,
- -0.029073776677250862,
- 0.044841036200523376,
- 0.001524402410723269,
- 0.004638088401407003,
- -0.046036697924137115,
- 0.03360730782151222,
- 0.007580301258713007,
- -0.029072685167193413,
- -0.04744589328765869,
- 0.06504429131746292,
- -0.017271384596824646,
- 0.03760842606425285,
- 0.0169797632843256,
- 0.014672118239104748,
- 0.09595707058906555,
- 0.04502774402499199,
- -0.048657067120075226,
- -0.05976133793592453,
- -0.05694716423749924,
- 0.039905957877635956,
- 0.018000826239585876,
- -0.01672299951314926,
- -0.03015189804136753,
- -0.045891184359788895,
- 0.060425713658332825,
- -0.018673572689294815,
- 0.08957307785749435,
- 0.046640973538160324,
- 0.039285529404878616,
- 0.012867162935435772,
- -0.014235035516321659,
- -0.06083962693810463,
- 0.007966204546391964,
- -0.015923894941806793,
- 0.013754264451563358,
- -0.0031684013083577156,
- -0.044890474528074265,
- -1.2611341304591406e-8,
- -0.04340041056275368,
- -0.0020243863109499216,
- -0.055093783885240555,
- -0.02667233534157276,
- 0.02091657929122448,
- 0.013779069297015667,
- 0.03061280958354473,
- -0.03036988154053688,
- -0.011667008511722088,
- 0.06523311883211136,
- 0.007450314704328775,
- 0.04928981512784958,
- -0.022916028276085854,
- 0.07186557352542877,
- 0.0751921534538269,
- -0.02541906200349331,
- 0.05611272156238556,
- 0.06915776431560516,
- -0.0028962143696844578,
- -0.06617806106805801,
- 0.0707806795835495,
- -0.04852088913321495,
- -0.04324916750192642,
- -0.006507765036076307,
- 0.02710138075053692,
- 0.009577939286828041,
- -0.010080942884087563,
- 0.18014216423034668,
- -0.020687319338321686,
- 0.018154645338654518,
- -0.057695355266332626,
- 0.06966749578714371,
- -0.013933547772467136,
- -0.02699032612144947,
- 0.04786340147256851,
- -0.022468512877821922,
- -0.08905342221260071,
- -0.08841627836227417,
- -0.08271802216768265,
- -0.0018703826935961843,
- -0.020458783954381943,
- 0.04351131245493889,
- -0.006636567413806915,
- 0.02258666791021824,
- 0.04544435068964958,
- 0.04985451325774193,
- 0.025638356804847717,
- -0.0862477719783783,
- 0.0655219703912735,
- -0.04123503714799881,
- 0.046362102031707764,
- -0.06026458367705345,
- 0.04259232059121132,
- 0.06700898706912994,
- 0.022550802677869797,
- 0.0240448210388422,
- 0.04516522213816643,
- 0.0017097197705879807,
- -0.08651553839445114,
- 0.062223151326179504,
- 0.05071369186043739,
- -0.045912109315395355,
- -0.04255356639623642,
- -0.01902562938630581
- ]
- },
- {
- "keyword": "presentation",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03580596670508385,
- 0.10763891786336899,
- -0.023403048515319824,
- -0.011622719466686249,
- 0.006376767065376043,
- 0.06645732372999191,
- 0.009137402288615704,
- 0.0374857634305954,
- 0.0038176709786057472,
- -0.0053966171108186245,
- 0.006486836355179548,
- 0.010897235944867134,
- -0.027471164241433144,
- 0.05335012450814247,
- -0.012203488498926163,
- -0.03336374834179878,
- 0.05343090370297432,
- -0.0023734422866255045,
- 0.01634959690272808,
- 0.03169161453843117,
- 0.07782161235809326,
- 0.014302057214081287,
- -0.011963154189288616,
- 0.0064692250452935696,
- 0.0014523849822580814,
- 0.05269159376621246,
- -0.014930084347724915,
- 0.001678653177805245,
- 0.12737828493118286,
- -0.051114246249198914,
- -0.028535762801766396,
- -0.024533208459615707,
- 0.042190756648778915,
- 0.020037081092596054,
- -0.0059682466089725494,
- 0.027494968846440315,
- -0.025222307071089745,
- 0.044408440589904785,
- -0.02226335182785988,
- 0.0005703670904040337,
- -0.022222278639674187,
- -0.033493004739284515,
- -0.0099327452480793,
- -0.07501401752233505,
- 0.04241524636745453,
- -0.06345731019973755,
- 0.01247221790254116,
- 0.024342535063624382,
- -0.007609186228364706,
- 0.020395072177052498,
- -0.10812672972679138,
- -0.03592532500624657,
- -0.008019044995307922,
- -0.021280424669384956,
- 0.04000290110707283,
- -0.014161095954477787,
- -0.025536976754665375,
- -0.021212872117757797,
- -0.0311460979282856,
- -0.02760537713766098,
- 0.00727182999253273,
- 0.024837760254740715,
- -0.04791415110230446,
- 0.04797089472413063,
- 0.0676896795630455,
- 0.03586675971746445,
- 0.0328642800450325,
- 0.07589911669492722,
- -0.033105358481407166,
- 0.0016688087489455938,
- -0.0007188665331341326,
- -0.04676299914717674,
- 0.05588041990995407,
- -0.016363097354769707,
- -0.0026121579576283693,
- -0.0765463337302208,
- -0.005634986329823732,
- -0.06408340483903885,
- 0.006100296508520842,
- -0.0033416927326470613,
- 0.12471897900104523,
- 0.00688467500731349,
- -0.017805766314268112,
- -0.0460297130048275,
- -0.01081633660942316,
- -0.028541209176182747,
- -0.05158623307943344,
- 0.006422264035791159,
- -0.08303800225257874,
- 0.010679595172405243,
- -0.12030142545700073,
- 0.013410136103630066,
- -0.04909926652908325,
- 0.0039113364182412624,
- -0.010275984182953835,
- -0.06523041427135468,
- -0.041783470660448074,
- -0.06809836626052856,
- 0.04510001838207245,
- 0.2639614939689636,
- 0.019414139911532402,
- 0.06061127036809921,
- 0.03962019830942154,
- -0.07040055841207504,
- -0.14332416653633118,
- -0.1283881515264511,
- -0.08191791921854019,
- 0.032464563846588135,
- -0.03890391066670418,
- 0.01907104067504406,
- 0.009777404367923737,
- 0.04338986799120903,
- -0.11362650245428085,
- -0.001406976254656911,
- 0.03299297019839287,
- -0.011200889013707638,
- -0.026319559663534164,
- 0.004516302607953548,
- 0.006702432408928871,
- -0.05119070038199425,
- 0.0835103914141655,
- 0.018788928166031837,
- 0.03778071328997612,
- 0.08104871958494186,
- -0.0683068111538887,
- -0.0895334854722023,
- 0.0068244184367358685,
- -6.389181342755672e-33,
- 0.009882824495434761,
- 0.007322638761252165,
- 0.005711668636649847,
- 0.11901402473449707,
- 0.02358340658247471,
- 0.05040186271071434,
- -0.04106373339891434,
- -0.03842425346374512,
- 0.0005655706627294421,
- 0.023343978449702263,
- 0.06909184902906418,
- 0.0418962761759758,
- 0.06164926290512085,
- 0.03108985722064972,
- -0.0058913384564220905,
- 0.003308822400867939,
- -0.00794178992509842,
- 0.17047016322612762,
- -0.0497465617954731,
- -0.0442446693778038,
- -0.04483940824866295,
- 0.06197312846779823,
- 0.027269510552287102,
- 0.028384635224938393,
- 0.012221736833453178,
- 0.036332692950963974,
- 0.0384162999689579,
- -0.06500066071748734,
- -0.07210206985473633,
- -0.016446301713585854,
- -0.021878140047192574,
- 0.02777720056474209,
- 0.0614328607916832,
- -0.07029851526021957,
- 0.04701453447341919,
- -0.03534150868654251,
- 0.003227889770641923,
- -0.12682636082172394,
- 0.10078374296426773,
- 0.0313166044652462,
- -0.028204089030623436,
- 0.000985761289484799,
- -0.009517259895801544,
- 0.00884437095373869,
- 0.04692515358328819,
- 0.11992241442203522,
- 0.03841042518615723,
- 0.013813378289341927,
- -0.028209347277879715,
- 0.038520462810993195,
- 0.030677447095513344,
- -0.02597566694021225,
- -0.05446641519665718,
- -0.05117737129330635,
- 0.04839120805263519,
- -0.04707837477326393,
- -0.016554992645978928,
- 0.006348397117108107,
- 0.0394262857735157,
- -0.02003253996372223,
- 0.017377443611621857,
- 0.0857945904135704,
- -0.09068962931632996,
- -0.05117311328649521,
- -0.0671454444527626,
- 0.01879829354584217,
- -0.06036090850830078,
- -0.07219220697879791,
- 0.06604762375354767,
- -0.010971070267260075,
- -0.09650992602109909,
- -0.00022066582459956408,
- 0.01678352616727352,
- -0.022890737280249596,
- 0.0686001256108284,
- 0.00013972083979751915,
- -0.004661009646952152,
- 0.04026395082473755,
- -0.03930091857910156,
- 0.022922266274690628,
- -0.12487755715847015,
- -0.05722976475954056,
- 0.046629056334495544,
- -0.02572876401245594,
- -0.033388324081897736,
- 0.010779079049825668,
- 0.005603361409157515,
- 0.0003092636470682919,
- -0.008924686349928379,
- 0.04031951352953911,
- -0.04030958563089371,
- 0.027095066383481026,
- 0.007401082199066877,
- 0.08659554272890091,
- 0.0598834864795208,
- 4.862440463700054e-33,
- -0.0080269705504179,
- 0.07032258808612823,
- -0.1166180893778801,
- 0.007386630866676569,
- 0.05936349555850029,
- -0.02658982202410698,
- 0.03767022863030434,
- -0.00467517226934433,
- -0.02857140824198723,
- -0.01629597693681717,
- 0.015427369624376297,
- -0.04477337747812271,
- 0.04852467030286789,
- 0.011633580550551414,
- -0.014834937639534473,
- 0.014701250940561295,
- 0.15588384866714478,
- 0.005564396735280752,
- -0.03861240670084953,
- 0.03952755406498909,
- 0.003542904043570161,
- 0.07581184059381485,
- -0.04121115058660507,
- -0.09168419241905212,
- -0.022516988217830658,
- 0.03294411301612854,
- 0.07988147437572479,
- -0.004777609370648861,
- 0.024759044870734215,
- 0.005859905853867531,
- 0.027330484241247177,
- -0.09672105312347412,
- -0.04390102997422218,
- -0.0024269074201583862,
- -0.02446753904223442,
- 0.16121456027030945,
- 0.04553208127617836,
- -0.07597727328538895,
- -0.04143771156668663,
- -0.01749962568283081,
- 0.013294513337314129,
- -0.009657599963247776,
- -0.027128087356686592,
- 0.13047918677330017,
- -0.04601547494530678,
- -0.0030699532944709063,
- -0.006905808579176664,
- 0.02174539864063263,
- 0.07157022505998611,
- 0.020590858533978462,
- -0.07779676467180252,
- 0.016799798235297203,
- 0.01917833834886551,
- -0.16176669299602509,
- -0.007073289714753628,
- -0.0663982480764389,
- -0.04039411619305611,
- -0.046507176011800766,
- 0.00989637803286314,
- -0.0022216644138097763,
- 0.000478603906231001,
- 0.013350601308047771,
- -0.06252229958772659,
- -0.05861368402838707,
- 0.02038588374853134,
- -0.012392371892929077,
- -0.03603728488087654,
- 0.03289124742150307,
- 0.00018575855938252062,
- 0.038980282843112946,
- 0.08670583367347717,
- 0.05752801522612572,
- -0.00708020431920886,
- -0.0373094342648983,
- 0.009961351752281189,
- 0.017916955053806305,
- -0.06497222930192947,
- 0.07596568018198013,
- 0.007064825389534235,
- -0.04027697816491127,
- -0.05010909587144852,
- 0.030742600560188293,
- 0.01130860298871994,
- -0.02258710190653801,
- 0.011230669915676117,
- 0.038620881736278534,
- 0.024882633239030838,
- 0.016802582889795303,
- -0.0323842391371727,
- 0.04050889611244202,
- -0.02650800719857216,
- -0.02154131978750229,
- 0.09590964019298553,
- -0.021918023005127907,
- 0.04488984867930412,
- -1.3061995041141472e-8,
- -0.01977873034775257,
- 0.007407298311591148,
- 0.05338875576853752,
- -0.10662419348955154,
- -0.017821619287133217,
- 0.015000966377556324,
- 0.020034154877066612,
- -0.0241390373557806,
- -0.000999783631414175,
- -0.013270007446408272,
- -0.005842126905918121,
- -0.014398494735360146,
- 0.027543433010578156,
- 0.06087293475866318,
- 0.06702002137899399,
- -0.021934110671281815,
- -0.022382235154509544,
- -0.007964015938341618,
- -0.035993073135614395,
- -0.07026837021112442,
- 0.04025839641690254,
- -0.015942217782139778,
- 0.021887054666876793,
- 0.036000192165374756,
- -0.012399211525917053,
- 0.040700726211071014,
- 0.022784443572163582,
- 0.021719956770539284,
- -0.002612875308841467,
- 0.0008280529291369021,
- -0.029800651594996452,
- 0.025727681815624237,
- -0.05243954062461853,
- 0.01412829477339983,
- 0.046369731426239014,
- 0.008447873406112194,
- -0.062168266624212265,
- 0.030717747285962105,
- 0.08314623683691025,
- 0.02369186095893383,
- -0.024776114150881767,
- -0.05128519982099533,
- 0.06708107143640518,
- 0.06527925282716751,
- -0.04076220095157623,
- 0.0634516254067421,
- -0.013222523964941502,
- -0.042787112295627594,
- -0.06028507649898529,
- -0.02909078262746334,
- -0.05372381582856178,
- -0.06877414137125015,
- -0.02039628103375435,
- 0.010039189830422401,
- 0.050974152982234955,
- 0.045925211161375046,
- 0.05828586220741272,
- 0.01855294406414032,
- -0.010621168650686741,
- 0.03863457217812538,
- 0.05119886249303818,
- 0.108315609395504,
- -0.04517936706542969,
- 0.074897401034832
- ]
- },
- {
- "keyword": "talk",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.034088969230651855,
- 0.00669828662648797,
- 0.02064911462366581,
- 0.012569844722747803,
- -0.041177842766046524,
- -0.0767114907503128,
- 0.1271001249551773,
- -0.01645144261419773,
- 0.05162439122796059,
- -0.11095061153173447,
- -0.0854160338640213,
- -0.028949543833732605,
- -0.0704323947429657,
- -0.005789789371192455,
- 0.06236926093697548,
- 0.013846141286194324,
- -0.012530701234936714,
- 0.03262101113796234,
- -0.0784580186009407,
- 0.00602906197309494,
- -0.017285196110606194,
- 0.04368578642606735,
- 0.02197825349867344,
- 0.026971234008669853,
- -0.046921808272600174,
- 0.06124861165881157,
- -0.04386761784553528,
- 0.016512252390384674,
- 0.03280312940478325,
- 0.0073611377738416195,
- 0.056649915874004364,
- 0.07422170788049698,
- 0.09086063504219055,
- 0.016226790845394135,
- -0.07131178677082062,
- 0.04154030233621597,
- -0.022214915603399277,
- -0.014446151442825794,
- 0.02123909443616867,
- -0.019877955317497253,
- -0.03761747106909752,
- -0.010013400577008724,
- 0.031406376510858536,
- -0.01685212552547455,
- 0.019857224076986313,
- -0.08799631893634796,
- -0.03670773282647133,
- 0.014922073110938072,
- 0.018821589648723602,
- -0.02413010410964489,
- -0.06480365991592407,
- 0.045837707817554474,
- 0.009633060544729233,
- 0.04181326925754547,
- 0.05201156064867973,
- 0.06823820620775223,
- -0.05888957530260086,
- 0.07121142745018005,
- 0.0417872779071331,
- -0.037521690130233765,
- 0.0306655652821064,
- -0.0381428562104702,
- 0.03590260073542595,
- 0.027147483080625534,
- -0.02043665200471878,
- 0.0894932821393013,
- -0.0025157202035188675,
- 0.06289752572774887,
- -0.02961473912000656,
- 0.026532424613833427,
- -0.005088959354907274,
- 0.032484397292137146,
- 0.04550469294190407,
- -0.04185383766889572,
- 0.02484310418367386,
- 0.03818584978580475,
- 0.027245359495282173,
- -0.08322307467460632,
- 0.07408194988965988,
- 0.08841639757156372,
- 0.010317008942365646,
- -0.055992305278778076,
- -0.05341799184679985,
- -0.018233032897114754,
- -0.019993571564555168,
- -0.05760490149259567,
- -0.007753715850412846,
- -0.007374321576207876,
- -0.05826402083039284,
- 0.05933640897274017,
- -0.06381727755069733,
- -0.013528686948120594,
- 0.0029958714731037617,
- 0.027857869863510132,
- -0.02651556394994259,
- -0.018580442294478416,
- -0.0374135822057724,
- 0.026795629411935806,
- -0.05908985435962677,
- 0.2728501558303833,
- 0.017356665804982185,
- 0.03053954802453518,
- 0.02544229105114937,
- -0.07116229087114334,
- -0.04569496586918831,
- -0.006546422839164734,
- -0.030028238892555237,
- 0.06185156852006912,
- -0.07466242462396622,
- 0.0025504387449473143,
- -0.06599542498588562,
- 0.015174022875726223,
- -0.014668747782707214,
- 0.11076998710632324,
- 0.041846320033073425,
- 0.02549661323428154,
- 0.04491893947124481,
- -0.011982591822743416,
- 0.035301558673381805,
- -0.011872557923197746,
- 0.010912470519542694,
- 0.04363713040947914,
- 0.0042363801039755344,
- 0.03342635929584503,
- -0.04021204262971878,
- -0.046232953667640686,
- 0.07065803557634354,
- -5.4524328333212685e-33,
- 0.0998445600271225,
- 0.0006221779040060937,
- 0.026762554422020912,
- 0.17635215818881989,
- -0.04988670349121094,
- 0.06515166163444519,
- 0.03763516992330551,
- -0.028737301006913185,
- -0.0016940187197178602,
- -0.006161450408399105,
- 0.03498097136616707,
- -0.058670222759246826,
- -0.031944770365953445,
- -0.046482834964990616,
- 0.09393047541379929,
- -0.01839711330831051,
- -0.0875483825802803,
- 0.01862175017595291,
- 0.011235191486775875,
- -0.05147683247923851,
- 0.01328316144645214,
- 0.007415642496198416,
- -0.03253169730305672,
- 0.1179816722869873,
- 0.06113715469837189,
- 0.05376255884766579,
- 0.035041481256484985,
- -0.16546928882598877,
- 0.012341439723968506,
- -0.0049888016656041145,
- -0.09240388870239258,
- 0.023957375437021255,
- 0.053062766790390015,
- 0.0022399171721190214,
- -0.022178595885634422,
- -0.08369576930999756,
- 0.02006344683468342,
- 0.001786962617188692,
- -0.015331238508224487,
- -0.06765727698802948,
- 0.058584634214639664,
- -0.04029995575547218,
- -0.08159738034009933,
- -0.082453653216362,
- 0.06676191836595535,
- 0.07334518432617188,
- 0.03561273217201233,
- -0.006240443792194128,
- -0.10899458825588226,
- 0.031233057379722595,
- -0.04771796613931656,
- 0.004359870217740536,
- -0.11125022917985916,
- 0.006204117089509964,
- -0.015431975945830345,
- -0.09230772405862808,
- -0.03140708804130554,
- -0.007936595007777214,
- 0.029345229268074036,
- 0.009865989908576012,
- 0.07011495530605316,
- 0.027785997837781906,
- -0.06998053938150406,
- -0.017849089577794075,
- 0.021043162792921066,
- 0.0010120156221091747,
- -0.059689730405807495,
- 0.031111303716897964,
- 0.031213046982884407,
- -0.03401190787553787,
- -0.030332524329423904,
- 0.0005143769667483866,
- -0.013406033627688885,
- 0.03386233374476433,
- -0.014297555200755596,
- 0.05501335486769676,
- 0.05963212624192238,
- -0.02470974810421467,
- -0.014332277700304985,
- -0.006009556818753481,
- 0.01101045310497284,
- -0.038022398948669434,
- -0.0588083378970623,
- -0.01988651044666767,
- 0.030705226585268974,
- -0.004081716760993004,
- -0.04051504284143448,
- -0.03310098871588707,
- 0.030700920149683952,
- -0.012134297750890255,
- -0.060212571173906326,
- 0.009288192726671696,
- 0.09408190101385117,
- 0.01820426993072033,
- -0.011511892080307007,
- 4.658128892609586e-33,
- 0.04407700151205063,
- 0.12735289335250854,
- -0.00022645480930805206,
- 0.07069573551416397,
- -0.038607239723205566,
- 0.0252136941999197,
- 0.042685654014348984,
- -0.008057675324380398,
- -0.05380089581012726,
- 0.007574999239295721,
- 0.004019653890281916,
- -0.025328950956463814,
- 0.01606985181570053,
- 0.000474028114695102,
- 0.1455596685409546,
- -0.008027319796383381,
- 0.10709696263074875,
- -0.04338298738002777,
- 0.02396390587091446,
- 0.021748743951320648,
- -0.009997558780014515,
- -0.007802032399922609,
- -0.08386950194835663,
- -0.021385489031672478,
- -0.01971510238945484,
- -0.03945218026638031,
- 0.049435317516326904,
- 0.005075661465525627,
- 0.005800181534141302,
- -0.009162352420389652,
- 0.04608553275465965,
- 0.0349915437400341,
- -0.04173411801457405,
- 0.03044569306075573,
- -0.012174740433692932,
- 0.08287552744150162,
- 0.07103049010038376,
- -0.003250580048188567,
- -0.043805450201034546,
- -0.0696716159582138,
- 0.03491746261715889,
- -0.07354845851659775,
- -0.06709551066160202,
- 0.060363441705703735,
- -0.0068553839810192585,
- 0.004495341796427965,
- 0.02167225256562233,
- -0.003328129881992936,
- -0.05136427655816078,
- 0.09166906028985977,
- -0.049864768981933594,
- -0.0016350792720913887,
- 0.05327865108847618,
- -0.023531917482614517,
- -0.042903099209070206,
- -0.04999846592545509,
- 0.011027215048670769,
- 0.03230055421590805,
- -0.028154298663139343,
- 0.0031138728372752666,
- 0.010511787608265877,
- 0.03435344994068146,
- 0.012310493737459183,
- -0.021061958745121956,
- -0.004177617374807596,
- 0.03206977993249893,
- -0.05266422778367996,
- -0.07457676529884338,
- 0.08009336143732071,
- 0.032582227140665054,
- -0.0000622766965534538,
- -0.003806006396189332,
- -0.042838726192712784,
- 0.03390954062342644,
- 0.04765333980321884,
- -0.004321580287069082,
- -0.0830916315317154,
- -0.041968055069446564,
- -0.032276883721351624,
- -0.034739669412374496,
- 0.0015889619244262576,
- 0.04707767814397812,
- 0.03768853098154068,
- 0.05871174857020378,
- 0.06281410157680511,
- 0.014186432585120201,
- -0.04114744812250137,
- -0.01724313013255596,
- -0.0183456689119339,
- -0.0652160719037056,
- -0.09742051362991333,
- -0.0007160353125073016,
- 0.033460259437561035,
- -0.10428549349308014,
- 0.004532047547399998,
- -1.4107360613024866e-8,
- -0.07163636386394501,
- -0.021297764033079147,
- 0.03604988753795624,
- -0.014976222068071365,
- 0.0463784821331501,
- -0.02718387357890606,
- -0.028745828196406364,
- 0.0011793357552960515,
- 0.037343885749578476,
- 0.06487859785556793,
- -0.004559415392577648,
- 0.019877959042787552,
- -0.06406652927398682,
- 0.03587475046515465,
- 0.019355006515979767,
- -0.054032087326049805,
- -0.005078245885670185,
- -0.009476842358708382,
- 0.0017146875616163015,
- 0.002403321210294962,
- -0.01276190672069788,
- -0.08142858743667603,
- -0.034443244338035583,
- 0.15064173936843872,
- -0.01923770271241665,
- -0.044421084225177765,
- 0.04179266095161438,
- 0.09747685492038727,
- 0.025527959689497948,
- 0.06569001078605652,
- -0.031437769532203674,
- 0.03569282963871956,
- -0.03596089407801628,
- 0.0073288558050990105,
- -0.058377888053655624,
- -0.13108794391155243,
- -0.0171870868653059,
- -0.025411972776055336,
- 0.015794720500707626,
- 0.014067045412957668,
- -0.012940122745931149,
- 0.009665588848292828,
- 0.056930314749479294,
- -0.045566581189632416,
- -0.05141304433345795,
- 0.0453835092484951,
- -0.051210224628448486,
- -0.09526974707841873,
- -0.02498598024249077,
- -0.04691241309046745,
- -0.03282491862773895,
- 0.03710951656103134,
- 0.0900166854262352,
- 0.048360880464315414,
- 0.028943397104740143,
- 0.017992546781897545,
- 0.043606556951999664,
- 0.09615328907966614,
- 0.011499782092869282,
- 0.03544136509299278,
- 0.072811558842659,
- 0.008100357837975025,
- -0.06992720812559128,
- 0.005252928007394075
- ]
- },
- {
- "keyword": "lecture",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.00971858948469162,
- 0.03343783691525459,
- -0.04814557731151581,
- -0.007858123630285263,
- -0.03367328271269798,
- 0.0013909429544582963,
- 0.06804665178060532,
- 0.02463057078421116,
- 0.0272185280919075,
- -0.021988043561577797,
- 0.01731531135737896,
- 0.07075762003660202,
- -0.041793592274188995,
- 0.00813301932066679,
- -0.008028284646570683,
- -0.08341607451438904,
- -0.014751656912267208,
- 0.007203617133200169,
- -0.009897243231534958,
- -0.0030611115507781506,
- 0.053604044020175934,
- 0.08354951441287994,
- 0.030292177572846413,
- 0.06343486160039902,
- 0.014830036088824272,
- -0.00365479476749897,
- 0.029663771390914917,
- -0.017622487619519234,
- 0.1034601554274559,
- -0.10525952279567719,
- -0.05211997032165527,
- 0.04939810186624527,
- 0.033348843455314636,
- 0.015983855351805687,
- -0.01737908646464348,
- 0.035776712000370026,
- 0.0019910952541977167,
- 0.013441246934235096,
- -0.0014425680274143815,
- 0.05194081366062164,
- -0.07100984454154968,
- 0.048522885888814926,
- 0.0003781843406613916,
- -0.02079497091472149,
- 0.025820624083280563,
- -0.02606860175728798,
- 0.061174433678388596,
- -0.05078567564487457,
- 0.014140632003545761,
- -0.020865993574261665,
- -0.03345560282468796,
- 0.00003173494042130187,
- -0.08329544961452484,
- 0.010741977021098137,
- -0.028691358864307404,
- 0.0014939710963517427,
- 0.028357576578855515,
- -0.008866599760949612,
- -0.037680745124816895,
- -0.02566804550588131,
- 0.013515411876142025,
- -0.09773872792720795,
- -0.0019835021812468767,
- 0.04426487535238266,
- 0.0051987748593091965,
- -0.0021029410418123007,
- 0.0021953906398266554,
- 0.11681684851646423,
- -0.017150690779089928,
- 0.06403052806854248,
- -0.02773531712591648,
- -0.001989449607208371,
- 0.03011411614716053,
- 0.03431174159049988,
- 0.08876384049654007,
- -0.08470651507377625,
- 0.002118128351867199,
- -0.01563202776014805,
- 0.06341972202062607,
- 0.01094664353877306,
- 0.0498858280479908,
- -0.06651924550533295,
- 0.005596565082669258,
- -0.04642840474843979,
- 0.05768647417426109,
- -0.04866454005241394,
- 0.03506379574537277,
- 0.037332676351070404,
- -0.05288070812821388,
- -0.03243180364370346,
- -0.005297995172441006,
- 0.025416826829314232,
- -0.07827123254537582,
- 0.008385363966226578,
- -0.03498510643839836,
- 0.025963041931390762,
- -0.028296280652284622,
- -0.06866142898797989,
- 0.04103861749172211,
- 0.26359400153160095,
- -0.004915792960673571,
- 0.09559652209281921,
- -0.0028025766368955374,
- -0.053099993616342545,
- -0.04561685770750046,
- -0.030352793633937836,
- -0.0752481147646904,
- 0.011375326663255692,
- 0.06429444253444672,
- -0.034746572375297546,
- -0.0005830953014083207,
- 0.011395500972867012,
- -0.011871871538460255,
- 0.08900658786296844,
- 0.08918681740760803,
- -0.03739999979734421,
- 0.0991578996181488,
- -0.014679793268442154,
- -0.010902759619057178,
- 0.024707552045583725,
- 0.03698166087269783,
- 0.008329097181558609,
- 0.004584108013659716,
- 0.022203532978892326,
- -0.051301758736371994,
- -0.10930708795785904,
- -0.032035209238529205,
- -6.08310098090078e-33,
- 0.06383230537176132,
- -0.0023283136542886496,
- -0.01086849719285965,
- 0.020255552604794502,
- 0.030085818842053413,
- -0.029715409502387047,
- -0.011806325986981392,
- 0.019770760089159012,
- -0.020997628569602966,
- 0.04343482851982117,
- 0.07418238371610641,
- -0.03993549942970276,
- 0.04569545015692711,
- 0.036305978894233704,
- -0.001799712423235178,
- 0.02597411908209324,
- -0.05200177803635597,
- 0.07815482467412949,
- -0.009354057721793652,
- -0.04978180676698685,
- -0.03126053884625435,
- 0.06352504342794418,
- 0.01364350225776434,
- 0.0018242825753986835,
- 0.01675346866250038,
- 0.037125442177057266,
- 0.04248273745179176,
- -0.051131471991539,
- 0.07442806661128998,
- 0.004160963464528322,
- -0.001392937614582479,
- 0.006165210157632828,
- -0.05629315599799156,
- -0.05271133407950401,
- 0.0794643983244896,
- -0.032472994178533554,
- -0.0007148923468776047,
- -0.02123507857322693,
- 0.032856378704309464,
- -0.07994946092367172,
- 0.04044340178370476,
- 0.020988550037145615,
- 0.03780336678028107,
- -0.06269600987434387,
- 0.04588504508137703,
- 0.08173638582229614,
- 0.09069425612688065,
- 0.02942594327032566,
- 0.022762984037399292,
- 0.005929891020059586,
- -0.07973988354206085,
- -0.09365056455135345,
- -0.05587085708975792,
- -0.07176413387060165,
- 0.0031440062448382378,
- -0.03621638938784599,
- 0.007232284173369408,
- 0.05543480068445206,
- -0.046457432210445404,
- 0.007030881009995937,
- -0.0479280948638916,
- 0.0918603166937828,
- -0.021344410255551338,
- 0.026822078973054886,
- -0.06671910732984543,
- -0.03832143545150757,
- -0.09405369311571121,
- -0.016125589609146118,
- 0.06601070612668991,
- -0.08102305978536606,
- -0.056565724313259125,
- -0.005487546324729919,
- -0.019507410004734993,
- 0.0120222894474864,
- 0.05248704552650452,
- -0.029505612328648567,
- -0.0050077857449650764,
- -0.027884935960173607,
- -0.08088450878858566,
- 0.015238172374665737,
- 0.0076485201716423035,
- -0.07381250709295273,
- 0.0282608512789011,
- -0.022656496614217758,
- -0.018135176971554756,
- -0.0004766348865814507,
- 0.05581536144018173,
- -0.04807940125465393,
- 0.10602852702140808,
- 0.06578541547060013,
- -0.04754490777850151,
- 0.023235833272337914,
- 0.017450187355279922,
- 0.10016565024852753,
- 0.05891963839530945,
- 4.7291886281427475e-33,
- 0.04333922639489174,
- 0.09707415103912354,
- -0.07217321544885635,
- 0.11282317340373993,
- 0.05215119943022728,
- 0.032174043357372284,
- 0.00034781862632371485,
- 0.056161824613809586,
- -0.07508605718612671,
- -0.06183472275733948,
- -0.02936612255871296,
- 0.012577679939568043,
- -0.013334449380636215,
- 0.02603437751531601,
- 0.007071278523653746,
- -0.03796926140785217,
- 0.10168231278657913,
- -0.030030779540538788,
- -0.05768423154950142,
- 0.02154080756008625,
- -0.010600934736430645,
- 0.026395967230200768,
- -0.01368260383605957,
- -0.045584626495838165,
- -0.017037851735949516,
- 0.02090025693178177,
- 0.08223700523376465,
- 0.08364082127809525,
- 0.00870557501912117,
- -0.029199421405792236,
- 0.0470057912170887,
- -0.029660098254680634,
- -0.05376218259334564,
- -0.018213581293821335,
- -0.05221134051680565,
- 0.10689055919647217,
- 0.05128289759159088,
- 0.03578625246882439,
- -0.048396263271570206,
- 0.04192795976996422,
- 0.07566456496715546,
- -0.048390019685029984,
- -0.014580744318664074,
- -0.03662747144699097,
- 0.07290550321340561,
- -0.060676462948322296,
- 0.035600125789642334,
- 0.04569552093744278,
- 0.05605059117078781,
- 0.052823301404714584,
- -0.0980110689997673,
- -0.01676776073873043,
- 0.029242342337965965,
- -0.10072685778141022,
- 0.06707414239645004,
- -0.051031049340963364,
- -0.011616667732596397,
- -0.06586214900016785,
- -0.0008157982374541461,
- 0.016558567062020302,
- 0.018216213211417198,
- 0.008177336305379868,
- -0.0015986241633072495,
- 0.019440019503235817,
- -0.04892443120479584,
- 0.025034833699464798,
- -0.045599330216646194,
- 0.05698006972670555,
- 0.026178685948252678,
- 0.05482061579823494,
- 0.03664929047226906,
- 0.0772019624710083,
- -0.060571275651454926,
- -0.021480616182088852,
- -0.000650926900561899,
- 0.015049218200147152,
- -0.08241536468267441,
- -0.055015455931425095,
- -0.06472655385732651,
- -0.05604318156838417,
- -0.029502341523766518,
- -0.06100425869226456,
- -0.02877211384475231,
- 0.08447542041540146,
- -0.02747817151248455,
- 0.03460335358977318,
- 0.08754847943782806,
- 0.08016981184482574,
- 0.01141510158777237,
- -0.07363096624612808,
- -0.0383898988366127,
- 0.03850727900862694,
- 0.025216316804289818,
- -0.06845834106206894,
- -0.0007973090978339314,
- -1.1477794714664924e-8,
- -0.057371944189071655,
- -0.011000157333910465,
- 0.045979440212249756,
- -0.07842858880758286,
- 0.00232060463167727,
- -0.04364120215177536,
- -0.006076241377741098,
- -0.03153407946228981,
- -0.03344840928912163,
- 0.015934454277157784,
- -0.031219802796840668,
- 0.009898140095174313,
- 0.005316981580108404,
- 0.03308610990643501,
- 0.0357445627450943,
- 0.046484269201755524,
- -0.00581783801317215,
- -0.010984176769852638,
- -0.04330076277256012,
- -0.0658690333366394,
- -0.0017106598243117332,
- -0.049709200859069824,
- 0.08998219668865204,
- 0.031824201345443726,
- 0.002855561440810561,
- -0.005334974266588688,
- 0.11387952417135239,
- 0.15180867910385132,
- 0.05371486023068428,
- -0.003272723639383912,
- -0.05881745368242264,
- 0.08936812728643417,
- -0.08000120520591736,
- -0.10551614314317703,
- 0.037548553198575974,
- -0.0677470862865448,
- -0.00011506842565722764,
- -0.019584422931075096,
- 0.07129289954900742,
- 0.055504120886325836,
- -0.03731780871748924,
- -0.10036779195070267,
- 0.07272514700889587,
- 0.029707392677664757,
- 0.015693573281168938,
- 0.04135432094335556,
- -0.05314870923757553,
- -0.06103400141000748,
- -0.010416330769658089,
- -0.02945220097899437,
- -0.000455368630355224,
- 0.02169368788599968,
- -0.01971265859901905,
- 0.05410749837756157,
- 0.020866407081484795,
- 0.02590244449675083,
- -0.014120140112936497,
- -0.04086802527308464,
- -0.1171417310833931,
- 0.009435338899493217,
- 0.032014068216085434,
- 0.020229073241353035,
- -0.12681148946285248,
- -0.006775405257940292
- ]
- },
- {
- "keyword": "session",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.01484631560742855,
- 0.06215931847691536,
- -0.03910922631621361,
- -0.06398634612560272,
- -0.05719992145895958,
- 0.0017715721623972058,
- 0.206035777926445,
- 0.016694683581590652,
- 0.0610346682369709,
- 0.013098382391035557,
- -0.02088950201869011,
- -0.012468135915696621,
- -0.00021963525796309114,
- 0.04665812477469444,
- 0.04104854166507721,
- -0.032690953463315964,
- 0.015025625005364418,
- -0.003253381233662367,
- 0.0051033939234912395,
- 0.025471199303865433,
- -0.009302131831645966,
- 0.0156028987839818,
- -0.058182064443826675,
- 0.00918673351407051,
- -0.021742921322584152,
- 0.025851743295788765,
- -0.01386020053178072,
- -0.007004559971392155,
- 0.06376498192548752,
- -0.08852121233940125,
- -0.04357059672474861,
- 0.05845089629292488,
- -0.03509563207626343,
- -0.06929747015237808,
- 0.012888767756521702,
- 0.0016087511321529746,
- 0.017250293865799904,
- 0.018822861835360527,
- 0.07037676125764847,
- -0.06435885280370712,
- -0.07481488585472107,
- -0.05745891481637955,
- -0.025571094825863838,
- 0.012831456027925014,
- -0.03340165689587593,
- 0.017005817964673042,
- -0.06401481479406357,
- -0.017982685938477516,
- 0.02143751084804535,
- 0.011123942211270332,
- 0.023162823170423508,
- 0.016688305884599686,
- 0.05123214051127434,
- 0.09653991460800171,
- -0.04926997795701027,
- 0.08547360450029373,
- -0.045372653752565384,
- 0.05798676237463951,
- -0.03183354437351227,
- 0.05675177276134491,
- -0.06090395897626877,
- -0.0053364853374660015,
- -0.03769592195749283,
- 0.06013135612010956,
- 0.04485173150897026,
- -0.00873511377722025,
- -0.01013974193483591,
- -0.026575570926070213,
- 0.04788035899400711,
- -0.0518229641020298,
- -0.0778535008430481,
- -0.007104367017745972,
- -0.015065578743815422,
- -0.04802095890045166,
- 0.008946885354816914,
- -0.0975133627653122,
- 0.05079713463783264,
- -0.05554291978478432,
- 0.028553813695907593,
- -0.03900238126516342,
- -0.013371791690587997,
- 0.021362511441111565,
- -0.0029371753334999084,
- -0.032898593693971634,
- -0.03427804633975029,
- -0.03839298337697983,
- -0.019752604886889458,
- 0.05469248816370964,
- -0.011951724998652935,
- 0.018547475337982178,
- -0.09008490294218063,
- 0.06038300320506096,
- 0.0030238875187933445,
- -0.019054176285862923,
- -0.10978057235479355,
- -0.007491068448871374,
- -0.006101806182414293,
- 0.12096257507801056,
- 0.04960663989186287,
- 0.28021037578582764,
- 0.0442594550549984,
- 0.08174379914999008,
- -0.03321724385023117,
- 0.03453554958105087,
- -0.0328354686498642,
- -0.050511449575424194,
- -0.03548164293169975,
- -0.048768285661935806,
- 0.06324457377195358,
- -0.01988726668059826,
- -0.05915652588009834,
- 0.0061644986271858215,
- 0.0020497834775596857,
- 0.016640925779938698,
- 0.04365919902920723,
- 0.015665793791413307,
- -0.011615242809057236,
- 0.010243384167551994,
- 0.018068918958306313,
- 0.040044769644737244,
- 0.03592149168252945,
- -0.033011503517627716,
- -0.007982892915606499,
- 0.0217452235519886,
- -0.024910319596529007,
- -0.05617939308285713,
- 0.11991507560014725,
- -5.472589990043978e-33,
- 0.025141604244709015,
- -0.07935535162687302,
- -0.013325859792530537,
- 0.06310944259166718,
- 0.043857693672180176,
- 0.08988503366708755,
- -0.01693253591656685,
- 0.00678429426625371,
- -0.07640925794839859,
- 0.0085262730717659,
- -0.044527895748615265,
- 0.008248627185821533,
- 0.059871163219213486,
- -0.015319922007620335,
- 0.02184428833425045,
- -0.0035781257320195436,
- -0.05827848240733147,
- 0.06426967680454254,
- 0.007594079710543156,
- -0.03746754676103592,
- -0.004951256327331066,
- -0.0010562461102381349,
- 0.06163061782717705,
- 0.09012964367866516,
- 0.012148262932896614,
- 0.037484705448150635,
- -0.006465146783739328,
- -0.024701038375496864,
- 0.04533309116959572,
- 0.01802809163928032,
- 0.029948953539133072,
- 0.00300357467494905,
- -0.014957434497773647,
- 0.01517022866755724,
- 0.02620738185942173,
- -0.03044774755835533,
- 0.03590286895632744,
- -0.013842994347214699,
- 0.01575193740427494,
- -0.06539353728294373,
- -0.055416129529476166,
- 0.012204386293888092,
- -0.0025898271705955267,
- 0.0053151571191847324,
- -0.06749267876148224,
- -0.06103215739130974,
- -0.0018297431524842978,
- 0.021704524755477905,
- -0.0069737508893013,
- 0.03606516122817993,
- -0.08608455955982208,
- 0.00647050840780139,
- -0.027261177077889442,
- 0.04133978486061096,
- -0.07657446712255478,
- -0.0026748196687549353,
- -0.03554556518793106,
- 0.028973175212740898,
- -0.05109415575861931,
- 0.0444842167198658,
- 0.04477420449256897,
- 0.041410818696022034,
- -0.08043939620256424,
- -0.09177589416503906,
- -0.05975233018398285,
- -0.00595061806961894,
- -0.010719635523855686,
- 0.0045258947648108006,
- 0.0912996381521225,
- -0.08012567460536957,
- -0.10850454121828079,
- -0.001522403210401535,
- 0.04805230721831322,
- 0.014388632960617542,
- -0.0012843231670558453,
- 0.014847402460873127,
- 0.054646044969558716,
- 0.13294820487499237,
- -0.08124131709337234,
- 0.04578205198049545,
- -0.016062170267105103,
- -0.021734975278377533,
- -0.025507573038339615,
- 0.05529836565256119,
- -0.004976199474185705,
- -0.026070456951856613,
- -0.0014728681417182088,
- -0.09863810986280441,
- -0.025588860735297203,
- 0.036464519798755646,
- -0.07277259230613708,
- -0.03418205305933952,
- 0.13070064783096313,
- 0.08027665317058563,
- 0.058995429426431656,
- 3.202552074210765e-33,
- 0.03722776100039482,
- -0.020585382357239723,
- -0.05804992839694023,
- 0.046843525022268295,
- 0.08491287380456924,
- 0.0532076358795166,
- 0.07059134542942047,
- -0.04654856026172638,
- -0.13486111164093018,
- -0.02372141368687153,
- 0.026231231167912483,
- 0.005396051798015833,
- 0.08470158278942108,
- 0.033379461616277695,
- -0.004377677105367184,
- 0.032370854169130325,
- 0.04541192948818207,
- -0.006715977564454079,
- -0.042834680527448654,
- 0.05519085004925728,
- -0.021462591364979744,
- 0.040382467210292816,
- -0.05732842534780502,
- -0.02938898093998432,
- 0.017907965928316116,
- -0.003321389900520444,
- 0.023248083889484406,
- -0.03464192524552345,
- -0.025023628026247025,
- 0.04350335896015167,
- 0.026907512918114662,
- -0.02309400774538517,
- -0.0789688378572464,
- 0.041134051978588104,
- -0.026492781937122345,
- 0.002482625190168619,
- 0.07586631178855896,
- 0.02310248464345932,
- -0.09296967089176178,
- 0.0004493175947573036,
- 0.09683877974748611,
- -0.016421660780906677,
- -0.06957577913999557,
- 0.08480297774076462,
- 0.005533589981496334,
- 0.06628282368183136,
- -0.16980773210525513,
- 0.027483271434903145,
- -0.08145394176244736,
- 0.09782857447862625,
- -0.039242763072252274,
- -0.029474835842847824,
- -0.0344441756606102,
- -0.11844003200531006,
- -0.02284369245171547,
- -0.05913460999727249,
- -0.03349751979112625,
- -0.03491818904876709,
- -0.003125209826976061,
- -0.03527152165770531,
- 0.03269733116030693,
- 0.004505201242864132,
- -0.02868572250008583,
- 0.041282955557107925,
- -0.01502316165715456,
- -0.042085934430360794,
- -0.031786225736141205,
- 0.12310061603784561,
- 0.04853703826665878,
- 0.042081303894519806,
- 0.018157288432121277,
- -0.04795485734939575,
- 0.023650234565138817,
- 0.07182832807302475,
- 0.05175595358014107,
- 0.0058086467906832695,
- -0.028766930103302002,
- -0.13329248130321503,
- -0.026632318273186684,
- -0.002116765594109893,
- -0.05852513760328293,
- -0.01612565666437149,
- -0.03319082036614418,
- 0.0022352300584316254,
- 0.040460020303726196,
- 0.0111358892172575,
- 0.006934370379894972,
- 0.0797312781214714,
- -0.023382816463708878,
- -0.03380901366472244,
- -0.012102876789867878,
- 0.03000653348863125,
- -0.05150650814175606,
- -0.008862077258527279,
- 0.04216812551021576,
- -1.121734083397996e-8,
- 0.015241232700645924,
- -0.024232637137174606,
- 0.06905785948038101,
- 0.04262632876634598,
- 0.030127622187137604,
- -0.004990017507225275,
- -0.02359696477651596,
- 0.020883718505501747,
- -0.005618498660624027,
- 0.043468549847602844,
- -0.009101182222366333,
- -0.00914845708757639,
- 0.04710298031568527,
- -0.018305078148841858,
- 0.008399296551942825,
- 0.0036575431004166603,
- -0.014148985035717487,
- 0.022435959428548813,
- -0.04606743901968002,
- -0.054410871118307114,
- -0.04490390419960022,
- -0.02674960345029831,
- 0.04051556438207626,
- 0.029987210407853127,
- 0.01188068836927414,
- 0.011252579279243946,
- 0.022807924076914787,
- 0.09516015648841858,
- -0.06168598681688309,
- -0.04470398649573326,
- 0.005653935018926859,
- 0.10666168481111526,
- -0.06384742259979248,
- -0.038943931460380554,
- 0.026400644332170486,
- 0.034083809703588486,
- -0.07329598069190979,
- 0.008374931290745735,
- -0.018896780908107758,
- -0.00343372137285769,
- -0.04656108841300011,
- -0.020952638238668442,
- 0.051550835371017456,
- -0.014810731634497643,
- 0.032163720577955246,
- 0.031021036207675934,
- -0.028439389541745186,
- 0.037688665091991425,
- 0.03929317370057106,
- -0.05914612486958504,
- -0.023839227855205536,
- 0.006282447371631861,
- 0.027094591408967972,
- 0.05466948077082634,
- 0.09651730209589005,
- 0.045053914189338684,
- 0.016164157539606094,
- -0.01893424615263939,
- -0.0010222254786640406,
- -0.027542686089873314,
- 0.028912192210555077,
- 0.06794223189353943,
- -0.08350209891796112,
- -0.0992702916264534
- ]
- },
- {
- "keyword": "class",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07876822352409363,
- 0.07158417254686356,
- -0.08352554589509964,
- 0.015680456534028053,
- -0.05320926010608673,
- -0.004929778166115284,
- 0.10808392614126205,
- -0.014325692318379879,
- -0.02108733355998993,
- 0.00401446595788002,
- 0.03008514828979969,
- -0.0007482997025363147,
- -0.0019013227429240942,
- -0.052434276789426804,
- -0.03313329443335533,
- -0.028468057513237,
- -0.02452278509736061,
- -0.036148589104413986,
- -0.12069220840930939,
- 0.055403340607881546,
- 0.03783464431762695,
- 0.023569660261273384,
- -0.051167018711566925,
- 0.07356219738721848,
- -0.07945432513952255,
- 0.019886929541826248,
- 0.03196316957473755,
- 0.004416432231664658,
- 0.009209358133375645,
- -0.12350557744503021,
- -0.09035927057266235,
- 0.015048937872052193,
- -0.019955484196543694,
- 0.034823477268218994,
- -0.04722616821527481,
- 0.04152810201048851,
- 0.06858820468187332,
- 0.059018686413764954,
- 0.007165772840380669,
- 0.004503696691244841,
- -0.07741426676511765,
- -0.05189904943108559,
- -0.017497912049293518,
- 0.016543768346309662,
- 0.046913985162973404,
- -0.006948671769350767,
- 0.016962455585598946,
- -0.08208267390727997,
- 0.029884273186326027,
- -0.08606535941362381,
- -0.025177882984280586,
- -0.004682357423007488,
- -0.08106371760368347,
- -0.0007806898793205619,
- -0.03151850402355194,
- 0.008044091984629631,
- 0.04803735762834549,
- 0.03790025785565376,
- -0.020573461428284645,
- -0.029470983892679214,
- 0.0031051558908075094,
- 0.024736594408750534,
- -0.007701816502958536,
- 0.06174137070775032,
- -0.02324417605996132,
- -0.024474075064063072,
- 0.02342294156551361,
- 0.03416791930794716,
- -0.032046426087617874,
- 0.0035988222807645798,
- 0.01751730591058731,
- -0.0045080906711518764,
- 0.05649811401963234,
- 0.09694697707891464,
- 0.0757707878947258,
- -0.02034793049097061,
- 0.016790807247161865,
- -0.002152650384232402,
- 0.07789094001054764,
- 0.004323135130107403,
- -0.027771495282649994,
- -0.04265332221984863,
- 0.02373659983277321,
- 0.02334597148001194,
- 0.08866804838180542,
- 0.0009242272353731096,
- -0.020335214212536812,
- 0.035390838980674744,
- -0.03557589277625084,
- -0.0007844085339456797,
- -0.07240183651447296,
- 0.012249196879565716,
- 0.0022425928618758917,
- -0.014772013761103153,
- -0.11882412433624268,
- 0.04811600595712662,
- -0.005040385294705629,
- -0.0817890465259552,
- 0.023515472188591957,
- 0.28886115550994873,
- -0.045392923057079315,
- 0.042116373777389526,
- -0.021144703030586243,
- -0.021444840356707573,
- -0.03789117932319641,
- -0.05883719027042389,
- -0.04275370016694069,
- -0.006950858049094677,
- 0.0215035118162632,
- -0.024017754942178726,
- 0.011754250153899193,
- -0.06856890022754669,
- -0.13269542157649994,
- 0.008273094892501831,
- 0.033012088388204575,
- 0.015373669564723969,
- -0.01373099721968174,
- -0.01090197078883648,
- -0.0006213889573700726,
- 0.021770445629954338,
- 0.03369101509451866,
- 0.026219047605991364,
- -0.01443882379680872,
- -0.037229616194963455,
- -0.04905030503869057,
- -0.08836853504180908,
- -0.028145208954811096,
- -4.863578489168444e-33,
- 0.05312206596136093,
- -0.03286535292863846,
- 0.000016644300558255054,
- 0.08725350350141525,
- 0.005174209829419851,
- -0.011181126348674297,
- 0.007874664850533009,
- 0.02458381839096546,
- -0.030786054208874702,
- 0.053399164229631424,
- 0.004578619264066219,
- -0.043306924402713776,
- 0.02300611510872841,
- 0.06082102283835411,
- 0.13803496956825256,
- 0.027425115928053856,
- -0.04769301414489746,
- 0.047128841280937195,
- -0.0625464990735054,
- -0.020403798669576645,
- -0.0454854778945446,
- 0.10861336439847946,
- 0.06942573934793472,
- -0.03799908235669136,
- -0.01818561553955078,
- 0.07527288049459457,
- 0.007820944301784039,
- -0.04969072341918945,
- -0.009063621051609516,
- 0.03575858101248741,
- 0.07813958078622818,
- -0.005057071801275015,
- -0.015583300963044167,
- -0.026764370501041412,
- 0.0266178697347641,
- 0.033500686287879944,
- -0.0012630571145564318,
- 0.03819870203733444,
- 0.005524278152734041,
- -0.12070780247449875,
- 0.01856422610580921,
- -0.004103712737560272,
- 0.007382846903055906,
- 0.01662462018430233,
- 0.011268015950918198,
- 0.02839510701596737,
- 0.09812851250171661,
- 0.03183455765247345,
- -0.013450457714498043,
- 0.015532992780208588,
- -0.04332009330391884,
- -0.05247747153043747,
- -0.046947553753852844,
- -0.030700070783495903,
- -0.01736368238925934,
- -0.04167671501636505,
- 0.08538807183504105,
- 0.06248999759554863,
- -0.057069141417741776,
- -0.005189174320548773,
- 0.01606522873044014,
- 0.06683001667261124,
- -0.009280405938625336,
- 0.033782027661800385,
- -0.08999255299568176,
- -0.024833399802446365,
- -0.026645442470908165,
- -0.06435342133045197,
- 0.06726174801588058,
- -0.06994760781526566,
- 0.023823952302336693,
- 0.005337011069059372,
- -0.08249195665121078,
- 0.03671906515955925,
- 0.05199078842997551,
- -0.004093860741704702,
- 0.009428659453988075,
- 0.01673860475420952,
- -0.10108356177806854,
- 0.0028515809681266546,
- -0.0016533975722268224,
- -0.07289580255746841,
- 0.018569985404610634,
- -0.001945464638993144,
- -0.07709397375583649,
- 0.016584478318691254,
- 0.03488646075129509,
- -0.026675837114453316,
- 0.07370032370090485,
- 0.10176131874322891,
- -0.08444419503211975,
- -0.020244138315320015,
- 0.03434211388230324,
- 0.03884992003440857,
- -0.006149259861558676,
- 2.9464928540741997e-33,
- 0.0506141297519207,
- 0.08635620772838593,
- -0.0806511864066124,
- 0.07406415045261383,
- 0.021509384736418724,
- 0.013891275972127914,
- -0.025871723890304565,
- 0.055201683193445206,
- -0.12109550833702087,
- 0.09445894509553909,
- 0.028858698904514313,
- 0.02408728562295437,
- 0.056730251759290695,
- 0.011955543421208858,
- 0.0178584735840559,
- 0.004491463769227266,
- 0.0180478747934103,
- -0.04520295560359955,
- -0.0486774779856205,
- 0.03483871743083,
- -0.07029086351394653,
- 0.003439517691731453,
- 0.013973535038530827,
- -0.03380110114812851,
- -0.06536345183849335,
- 0.02235822007060051,
- -0.005156992003321648,
- 0.06701017916202545,
- 0.002230965532362461,
- 0.025950636714696884,
- 0.029524629935622215,
- -0.04362569376826286,
- -0.027401229366660118,
- -0.017898449674248695,
- -0.08381082117557526,
- 0.10494698584079742,
- 0.055974896997213364,
- 0.008940801955759525,
- -0.04334321245551109,
- 0.04661114886403084,
- 0.050900090485811234,
- -0.007980321533977985,
- -0.04226253926753998,
- 0.10539508610963821,
- -0.019061433151364326,
- -0.052988260984420776,
- 0.059700530022382736,
- 0.06241070479154587,
- 0.06282158195972443,
- 0.06169344484806061,
- -0.08250021934509277,
- -0.03438623622059822,
- 0.021583637222647667,
- -0.022992325946688652,
- 0.0665903091430664,
- 0.003401524620130658,
- -0.002274041762575507,
- -0.03859839588403702,
- -0.0730779767036438,
- 0.07446660846471786,
- -0.02865520492196083,
- 0.03808461129665375,
- -0.058196526020765305,
- 0.059358399361371994,
- -0.027958529070019722,
- -0.013024397194385529,
- -0.04891301691532135,
- 0.029256433248519897,
- -0.021872123703360558,
- 0.01464099995791912,
- 0.11279089003801346,
- 0.09146568924188614,
- -0.0426379032433033,
- -0.022333024069666862,
- -0.06541594862937927,
- 0.008778499439358711,
- -0.021432852372527122,
- 0.06398287415504456,
- 0.032835301011800766,
- 0.050023701041936874,
- -0.019640304148197174,
- -0.06664824485778809,
- -0.020579824224114418,
- 0.06955398619174957,
- -0.07627483457326889,
- -0.014598147012293339,
- 0.11078032106161118,
- 0.04603610560297966,
- 0.018467294052243233,
- -0.03270740061998367,
- 0.00578673230484128,
- 0.08821909874677658,
- 0.005334845744073391,
- -0.01292850635945797,
- -0.026793835684657097,
- -1.3244112473387304e-8,
- -0.052356842905282974,
- -0.008009209297597408,
- 0.06188385933637619,
- 0.012028366327285767,
- 0.06856438517570496,
- 0.0018569781677797437,
- -0.046107690781354904,
- 0.010820315219461918,
- 0.003913556691259146,
- 0.0865519568324089,
- 0.00822665449231863,
- 0.019824082031846046,
- 0.0684250146150589,
- 0.010469061322510242,
- 0.03518379479646683,
- -0.018873179331421852,
- -0.054989516735076904,
- 0.04560714587569237,
- -0.044261664152145386,
- 0.0462554432451725,
- -0.011025620624423027,
- -0.09246449172496796,
- -0.0024329209700226784,
- 0.02068059891462326,
- -0.007367161102592945,
- -0.059065114706754684,
- 0.025798911228775978,
- 0.04656730964779854,
- 0.006924438290297985,
- 0.04058000072836876,
- -0.044173888862133026,
- 0.11972883343696594,
- -0.06979434192180634,
- -0.0866144672036171,
- 0.02589157223701477,
- 0.05054856464266777,
- -0.033654216676950455,
- 0.006043694913387299,
- 0.01833103969693184,
- 0.045893896371126175,
- -0.02872438356280327,
- -0.1079690232872963,
- -0.010827173478901386,
- -0.017726337537169456,
- 0.027559414505958557,
- -0.008690466172993183,
- -0.05017119273543358,
- -0.10424043238162994,
- 0.002279464388266206,
- -0.001801775419153273,
- -0.08352340012788773,
- 0.05331921577453613,
- 0.010978280566632748,
- 0.031716205179691315,
- 0.004640244413167238,
- -0.004155453760176897,
- -0.01051911897957325,
- -0.04513813555240631,
- -0.08930744975805283,
- 0.018520548939704895,
- 0.03625676780939102,
- 0.04011409729719162,
- -0.024383753538131714,
- 0.018796678632497787
- ]
- },
- {
- "keyword": "party",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08519139885902405,
- 0.02365371398627758,
- -0.019106842577457428,
- 0.03556047007441521,
- -0.0323394238948822,
- 0.050023771822452545,
- 0.1344836801290512,
- -0.02623036690056324,
- 0.0075094313360750675,
- -0.0031108008697628975,
- 0.03192133083939552,
- -0.006358373444527388,
- 0.0005368639249354601,
- -0.028132108971476555,
- 0.020019175484776497,
- 0.003454465651884675,
- -0.012453148141503334,
- -0.029925180599093437,
- -0.039824243634939194,
- 0.05159744247794151,
- -0.16985411942005157,
- -0.07827063649892807,
- -0.029393015429377556,
- 0.05395309627056122,
- 0.06060628220438957,
- 0.07704951614141464,
- -0.011928117834031582,
- 0.020233500748872757,
- -0.0019169291481375694,
- -0.09929389506578445,
- 0.047043491154909134,
- 0.07341299951076508,
- -0.02415980026125908,
- 0.01398936752229929,
- -0.03443174064159393,
- -0.02573375403881073,
- 0.002387106418609619,
- -0.059547509998083115,
- -0.015368502587080002,
- 0.02628941833972931,
- -0.02689911238849163,
- -0.004216369707137346,
- -0.04109038785099983,
- -0.0124096954241395,
- 0.006165484432131052,
- 0.011228106915950775,
- 0.04997801408171654,
- 0.04721567779779434,
- 0.042967941612005234,
- 0.06980651617050171,
- 0.06573329865932465,
- 0.06482768058776855,
- -0.029801135882735252,
- 0.004923237953335047,
- 0.07210584729909897,
- -0.05431077256798744,
- -0.009216411970555782,
- -0.04396854713559151,
- -0.015711642801761627,
- -0.015224532224237919,
- -0.018309323117136955,
- 0.0076745678670704365,
- -0.05391041934490204,
- 0.04388529434800148,
- 0.03192299231886864,
- 0.015540697611868382,
- -0.013831168413162231,
- 0.07390438765287399,
- 0.016727393493056297,
- -0.05013209581375122,
- -0.021453866735100746,
- 0.02281993255019188,
- 0.0680646151304245,
- -0.0013560071820393205,
- 0.07073669880628586,
- -0.07709535211324692,
- 0.029902217909693718,
- -0.024965863674879074,
- 0.06381061673164368,
- 0.08769208192825317,
- -0.0030172693077474833,
- 0.0461912527680397,
- -0.0485021136701107,
- -0.02598297968506813,
- 0.0013230699114501476,
- -0.058484241366386414,
- -0.016790170222520828,
- 0.05483228713274002,
- -0.09460437297821045,
- -0.01924157328903675,
- -0.15520302951335907,
- 0.04388771951198578,
- 0.04791276529431343,
- -0.010659110732376575,
- -0.04265066608786583,
- 0.058195605874061584,
- -0.05512995645403862,
- -0.03851545974612236,
- 0.00020015763584524393,
- 0.2552900016307831,
- -0.03244667127728462,
- 0.07473044097423553,
- 0.014169422909617424,
- -0.022676048800349236,
- 0.023305799812078476,
- -0.05062125250697136,
- -0.021562201902270317,
- 0.07597077637910843,
- 0.05046360567212105,
- 0.011175946332514286,
- -0.005679036024957895,
- -0.05484899878501892,
- 0.08091532438993454,
- 0.00659332238137722,
- 0.04277755320072174,
- -0.017886830493807793,
- -0.016416605561971664,
- 0.0014571619685739279,
- 0.0025568048004060984,
- -0.06182185187935829,
- 0.03978104516863823,
- 0.01180198136717081,
- 0.027496032416820526,
- -0.013882273808121681,
- -0.05571766942739487,
- 0.0027162099722772837,
- 0.005014683585613966,
- -6.167251682740271e-33,
- 0.04418611526489258,
- -0.09771060198545456,
- -0.018617311492562294,
- 0.07564492523670197,
- 0.030903389677405357,
- 0.07905105501413345,
- 0.02474852278828621,
- -0.040177490562200546,
- -0.026623159646987915,
- 0.042278632521629333,
- 0.0015601379564031959,
- -0.07832090556621552,
- -0.006995644420385361,
- 0.02536245808005333,
- 0.09693028777837753,
- -0.024565601721405983,
- -0.042779937386512756,
- 0.08485595136880875,
- -0.03883377090096474,
- -0.025488387793302536,
- -0.06479846686124802,
- 0.07792962342500687,
- 0.035802364349365234,
- 0.10016389936208725,
- 0.016470404341816902,
- -0.008454442024230957,
- 0.027671733871102333,
- -0.027356954291462898,
- 0.017818527296185493,
- -0.0011803475208580494,
- 0.037088535726070404,
- 0.0003327073936816305,
- 0.03200971707701683,
- 0.06654705107212067,
- -0.03501856327056885,
- -0.05245273560285568,
- -0.01245789136737585,
- -0.11224645376205444,
- -0.00629717530682683,
- -0.054379675537347794,
- -0.012387413531541824,
- -0.014609555713832378,
- -0.04215993359684944,
- 0.04302830621600151,
- -0.05278850719332695,
- 0.026620328426361084,
- 0.09554138034582138,
- -0.013423447497189045,
- -0.06676454097032547,
- 0.0486532524228096,
- -0.0007904344820417464,
- -0.007199411280453205,
- 0.04023454338312149,
- -0.002008720999583602,
- -0.005495961755514145,
- -0.03337705880403519,
- -0.006197318900376558,
- -0.06904403120279312,
- -0.026235541328787804,
- -0.06393010169267654,
- 0.11660244315862656,
- 0.041574444621801376,
- -0.08110370486974716,
- -0.0569823794066906,
- 0.012725154869258404,
- -0.03662051633000374,
- -0.03482623025774956,
- -0.060017235577106476,
- 0.11574447900056839,
- -0.019482582807540894,
- 0.03044714592397213,
- 0.007114320993423462,
- 0.006904232781380415,
- -0.0012138497550040483,
- 0.01576593704521656,
- 0.041500527411699295,
- -0.03298665210604668,
- -0.009898846037685871,
- -0.014179542660713196,
- 0.011393292807042599,
- -0.05181149020791054,
- -0.07228262722492218,
- -0.022139109671115875,
- -0.016120485961437225,
- 0.02130189538002014,
- 0.04806875064969063,
- 0.03123745322227478,
- -0.07982047647237778,
- -0.024993671104311943,
- 0.015486964955925941,
- -0.09147185832262039,
- -0.015784794464707375,
- 0.08687784522771835,
- 0.028124837204813957,
- 0.061238035559654236,
- 4.779016364306166e-33,
- 0.011786365881562233,
- -0.034126363694667816,
- -0.06058430299162865,
- 0.019953042268753052,
- 0.09726611524820328,
- -0.022047169506549835,
- -0.0294579416513443,
- -0.07823482900857925,
- 0.0638805702328682,
- 0.026192786172032356,
- -0.04567822813987732,
- 0.002798378001898527,
- 0.1059746965765953,
- 0.008676229976117611,
- 0.10355408489704132,
- -0.01674451306462288,
- 0.06274393200874329,
- 0.050387732684612274,
- 0.030820360407233238,
- 0.04932548105716705,
- -0.03765125572681427,
- -0.006563588045537472,
- 0.011213807389140129,
- 0.015850437805056572,
- -0.019150927662849426,
- -0.0024009032640606165,
- 0.09111810475587845,
- -0.12217828631401062,
- -0.004147471394389868,
- 0.03630157187581062,
- 0.027841966599225998,
- -0.05571639537811279,
- -0.08103879541158676,
- -0.04989926517009735,
- 0.012472853064537048,
- 0.07368148118257523,
- -0.055526141077280045,
- 0.045598529279232025,
- -0.07949844002723694,
- -0.05451970174908638,
- 0.03944571688771248,
- -0.014264014549553394,
- -0.02477632835507393,
- 0.09723089635372162,
- -0.06620743125677109,
- 0.045393720269203186,
- -0.10460987687110901,
- 0.07262307405471802,
- 0.004633452743291855,
- 0.05610623210668564,
- -0.10997319966554642,
- -0.0029410538263618946,
- 0.006600729655474424,
- 0.015526989474892616,
- 0.0005453889025375247,
- -0.023795565590262413,
- -0.03961380943655968,
- 0.0018899375572800636,
- -0.015527349896728992,
- 0.06293965131044388,
- 0.0367385558784008,
- 0.04269559681415558,
- 0.03235518932342529,
- 0.042860258370637894,
- -0.015298241749405861,
- 0.01981690339744091,
- -0.0714573785662651,
- 0.04393095150589943,
- 0.03878473863005638,
- 0.05413214489817619,
- -0.02296578697860241,
- 0.04706281051039696,
- -0.07659304887056351,
- 0.14720849692821503,
- -0.02986202761530876,
- -0.0684056356549263,
- -0.05731908604502678,
- 0.06695105880498886,
- 0.04999224841594696,
- -0.044204261153936386,
- -0.0346619188785553,
- 0.008657394908368587,
- 0.018777702003717422,
- -0.02353580854833126,
- -0.054962869733572006,
- -0.07154616713523865,
- 0.13407884538173676,
- 0.03166571632027626,
- -0.04812902584671974,
- -0.024646930396556854,
- 0.03279029577970505,
- 0.004518565256148577,
- 0.04304368421435356,
- -0.03257187455892563,
- -0.038519397377967834,
- -1.259776283291103e-8,
- 0.03972980007529259,
- 0.013891628943383694,
- -0.03319169953465462,
- -0.06879150122404099,
- 0.027421319857239723,
- -0.004819976165890694,
- -0.0595104917883873,
- 0.02648695930838585,
- 0.03129658102989197,
- 0.0670885518193245,
- 0.07241392135620117,
- -0.02563309296965599,
- 0.05137360841035843,
- -0.00990702211856842,
- 0.054891522973775864,
- -0.032585278153419495,
- -0.04371103271842003,
- 0.01244814321398735,
- -0.07237707823514938,
- -0.006944349035620689,
- -0.029339095577597618,
- -0.010359817184507847,
- 0.0058912597596645355,
- 0.06722527742385864,
- -0.034620482474565506,
- 0.016824334859848022,
- 0.00971396267414093,
- 0.09043173491954803,
- 0.002644547028467059,
- 0.014577475376427174,
- -0.025281669571995735,
- 0.03215793892741203,
- -0.07961732149124146,
- -0.03479105606675148,
- -0.011964133940637112,
- -0.014700772240757942,
- -0.0476292259991169,
- -0.03826993703842163,
- 0.0022514048032462597,
- 0.023431837558746338,
- -0.03541398048400879,
- -0.021178029477596283,
- 0.08250866085290909,
- -0.06584357470273972,
- -0.042994335293769836,
- 0.028442755341529846,
- 0.02079395391047001,
- -0.02283228561282158,
- -0.08030986040830612,
- -0.06704797595739365,
- -0.02907799556851387,
- 0.053102683275938034,
- -0.036874767392873764,
- 0.055885106325149536,
- 0.0013763856841251254,
- -0.038115426898002625,
- -0.008662012405693531,
- 0.05441705510020256,
- 0.01876332238316536,
- 0.024015188217163086,
- 0.07017438113689423,
- 0.1116073727607727,
- 0.023805763572454453,
- -0.02567848563194275
- ]
- },
- {
- "keyword": "celebration",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.011865857988595963,
- 0.12026149034500122,
- -0.005864463746547699,
- -0.04779282212257385,
- -0.007276531774550676,
- 0.01812475547194481,
- 0.10505855083465576,
- -0.055707089602947235,
- 0.03921080380678177,
- 0.009005538187921047,
- 0.04410768672823906,
- -0.0693606436252594,
- -0.014720616862177849,
- 0.01704372838139534,
- 0.004333976656198502,
- -0.020762747153639793,
- -0.03703974187374115,
- 0.021387845277786255,
- -0.05699373781681061,
- -0.055206142365932465,
- -0.04848102480173111,
- -0.04629535600543022,
- -0.0447123758494854,
- 0.04063917323946953,
- 0.05081062763929367,
- 0.03655293211340904,
- -0.013317292556166649,
- -0.009646748192608356,
- 0.06656993180513382,
- -0.017771627753973007,
- 0.03716614842414856,
- -0.07140855491161346,
- 0.003123548813164234,
- -0.004854526836425066,
- -0.04799126461148262,
- 0.010728201828897,
- 0.034702785313129425,
- -0.026309959590435028,
- 0.039849646389484406,
- 0.05086677521467209,
- 0.03722945228219032,
- -0.10384836047887802,
- 0.0042633782140910625,
- 0.0019463850185275078,
- 0.0839988961815834,
- 0.04074365645647049,
- 0.02815566211938858,
- 0.03436372056603432,
- -0.014531075954437256,
- 0.05990195274353027,
- 0.08957713842391968,
- 0.0408230721950531,
- -0.012733829207718372,
- -0.0511200912296772,
- 0.030958060175180435,
- 0.08154645562171936,
- 0.020496612414717674,
- -0.059504345059394836,
- 0.003207583213225007,
- -0.04993723705410957,
- 0.014337871223688126,
- 0.030244164168834686,
- -0.04499886557459831,
- 0.026941576972603798,
- -0.04657119885087013,
- -0.11204018443822861,
- 0.031104303896427155,
- 0.02517155185341835,
- -0.000250122306169942,
- 0.03809046372771263,
- -0.005043102893978357,
- 0.01104237325489521,
- 0.13456027209758759,
- 0.027535362169146538,
- -0.006491546984761953,
- -0.046908993273973465,
- -0.04273014888167381,
- -0.004414384253323078,
- -0.014532187022268772,
- 0.038923200219869614,
- 0.059040699154138565,
- -0.08286841213703156,
- 0.00945121981203556,
- -0.04164900630712509,
- -0.007530953735113144,
- -0.012914366088807583,
- -0.03583304584026337,
- 0.08158038556575775,
- -0.04115431010723114,
- 0.02173807844519615,
- -0.13557471334934235,
- -0.005071307998150587,
- 0.044022880494594574,
- -0.0379476398229599,
- -0.12415085732936859,
- -0.021793708205223083,
- -0.006959851365536451,
- -0.05079081654548645,
- 0.02032376639544964,
- 0.26324263215065,
- -0.0072457753121852875,
- 0.10287974774837494,
- 0.02172037959098816,
- -0.03796674311161041,
- 0.019144661724567413,
- -0.023779988288879395,
- -0.07593207061290741,
- 0.053669948130846024,
- -0.03854942321777344,
- -0.02987121418118477,
- -0.02378198876976967,
- -0.002096155658364296,
- 0.018625542521476746,
- 0.04473152756690979,
- -0.010918806307017803,
- 0.08304543048143387,
- 0.022141439840197563,
- 0.00573083246126771,
- 0.03953016921877861,
- -0.019200019538402557,
- 0.04836215078830719,
- 0.04870017617940903,
- 0.01131044514477253,
- 0.009980974718928337,
- -0.0605432502925396,
- -0.050238292664289474,
- 0.05763160064816475,
- -6.579355757567579e-33,
- -0.00565748754888773,
- -0.08562257140874863,
- -0.042519643902778625,
- 0.05487770959734917,
- 0.06363169848918915,
- 0.07430599629878998,
- 0.010270249098539352,
- -0.12407364696264267,
- -0.026855964213609695,
- -0.06608562171459198,
- 0.05292560160160065,
- -0.03330683708190918,
- 0.02015984058380127,
- -0.07133546471595764,
- 0.07740435004234314,
- -0.03288659080862999,
- -0.014771178364753723,
- 0.03130379319190979,
- -0.006783502642065287,
- -0.017626242712140083,
- -0.07750512659549713,
- 0.029464200139045715,
- 0.0069297379814088345,
- 0.037873778492212296,
- -0.0271757785230875,
- 0.024067437276244164,
- 0.04918494075536728,
- -0.022529372945427895,
- -0.03135869279503822,
- -0.03027726523578167,
- 0.027710089460015297,
- 0.019965175539255142,
- 0.00933874025940895,
- 0.01948535069823265,
- 0.00034340619458816946,
- -0.03596734255552292,
- 0.02562864124774933,
- -0.1199943870306015,
- -0.021383894607424736,
- -0.01770036108791828,
- -0.02566450834274292,
- -0.04826246574521065,
- -0.08532092720270157,
- 0.011240013875067234,
- -0.028424326330423355,
- 0.05930643156170845,
- 0.08752049505710602,
- 0.030548833310604095,
- 0.08428662270307541,
- 0.014606312848627567,
- 0.04402073100209236,
- -0.008602019399404526,
- 0.020247137174010277,
- -0.035219401121139526,
- 0.0322217121720314,
- 0.03790589049458504,
- 0.049267642199993134,
- -0.06069108098745346,
- 0.04060863330960274,
- -0.059244606643915176,
- 0.021690314635634422,
- 0.017130333930253983,
- -0.06983073055744171,
- -0.014580819755792618,
- -0.06493183970451355,
- -0.03369937092065811,
- 0.0007806498324498534,
- -0.055406033992767334,
- 0.035669345408678055,
- -0.012086831033229828,
- 0.047913216054439545,
- 0.038386020809412,
- 0.007031967863440514,
- -0.09285011887550354,
- 0.030934372916817665,
- 0.08111938089132309,
- 0.07068342715501785,
- -0.024740152060985565,
- -0.012903783470392227,
- -0.0066273510456085205,
- -0.018476881086826324,
- -0.03716792166233063,
- 0.012250049971044064,
- -0.06738856434822083,
- 0.06599001586437225,
- 0.04265853390097618,
- -0.02183419279754162,
- 0.0067270793952047825,
- -0.09267944097518921,
- 0.00736694410443306,
- -0.059990961104631424,
- 0.0003843123558908701,
- 0.08679249882698059,
- 0.00824953056871891,
- -0.0028939396142959595,
- 4.8596942150229456e-33,
- 0.027914300560951233,
- 0.018895575776696205,
- -0.06459514051675797,
- 0.08940747380256653,
- 0.05357200279831886,
- -0.040211644023656845,
- -0.06940784305334091,
- 0.0010443964274600148,
- -0.06695301085710526,
- -0.023279547691345215,
- -0.03278731182217598,
- 0.003813177580013871,
- 0.012677906081080437,
- -0.003027112688869238,
- -0.008853303268551826,
- -0.05141209438443184,
- 0.09334902465343475,
- 0.08048074692487717,
- -0.007437593303620815,
- 0.06910455226898193,
- -0.039105478674173355,
- 0.11240238696336746,
- 0.04423662647604942,
- -0.10865858197212219,
- -0.07998577505350113,
- 0.011099165305495262,
- 0.08306196331977844,
- -0.043193940073251724,
- 0.00710377236828208,
- -0.005034341011196375,
- 0.0409419871866703,
- -0.03723974525928497,
- -0.030174024403095245,
- -0.016368087381124496,
- 0.028024954721331596,
- 0.10841876268386841,
- 0.037784792482852936,
- 0.013263269327580929,
- -0.021918566897511482,
- 0.0011501163244247437,
- 0.001280523487366736,
- 0.010128753259778023,
- -0.05814812704920769,
- 0.1457556188106537,
- -0.009219666942954063,
- 0.061090823262929916,
- -0.0639093816280365,
- 0.07286041975021362,
- 0.022995706647634506,
- 0.08688431233167648,
- -0.08356776833534241,
- -0.035900093615055084,
- -0.05151105299592018,
- -0.0016681342385709286,
- 0.05099046975374222,
- 0.03272833302617073,
- -0.04892028123140335,
- -0.02378881350159645,
- -0.07106033712625504,
- -0.0024445862509310246,
- -0.035630036145448685,
- 0.0068963938392698765,
- 0.006117477081716061,
- 0.006124400999397039,
- 0.03462761640548706,
- 0.0072970460169017315,
- -0.0412789061665535,
- 0.03816930577158928,
- 0.02686122991144657,
- 0.0805101990699768,
- -0.00753565551713109,
- 0.061805155128240585,
- -0.14543436467647552,
- 0.02239481545984745,
- -0.04514671117067337,
- 0.01858723722398281,
- -0.05014742910861969,
- 0.053367119282484055,
- 0.07149297744035721,
- -0.03684758022427559,
- -0.13453491032123566,
- 0.0027480449061840773,
- -0.007646998390555382,
- 0.026583397760987282,
- -0.040918685495853424,
- -0.04703332856297493,
- 0.06691402941942215,
- 0.010512879118323326,
- -0.027844062075018883,
- -0.03236512467265129,
- 0.043077025562524796,
- 0.008509106934070587,
- 0.0015266349073499441,
- 0.0065046944655478,
- 0.08881703019142151,
- -1.2706390606354034e-8,
- 0.01671203412115574,
- -0.0013704996090382338,
- -0.12112797051668167,
- -0.04150445759296417,
- 0.0156949982047081,
- 0.04658487066626549,
- -0.002033413155004382,
- -0.10973257571458817,
- 0.055302564054727554,
- 0.002233628649264574,
- -0.010639858432114124,
- -0.02479047328233719,
- 0.06112973392009735,
- 0.010170883499085903,
- 0.03018912672996521,
- -0.006303780246526003,
- -0.018174950033426285,
- 0.013473804108798504,
- -0.05655692145228386,
- -0.003310797270387411,
- 0.009374422021210194,
- -0.029790222644805908,
- 0.022850459441542625,
- 0.012788251973688602,
- -0.05543449893593788,
- -0.0025638751685619354,
- -0.039198581129312515,
- 0.126132071018219,
- -0.014192552305758,
- -0.07443584501743317,
- -0.02121788077056408,
- 0.010788174346089363,
- -0.05514230951666832,
- -0.04853399097919464,
- 0.04054983705282211,
- -0.03908688575029373,
- -0.03947674483060837,
- 0.013630676083266735,
- 0.11321577429771423,
- -0.019350379705429077,
- -0.04107430949807167,
- -0.026775814592838287,
- 0.06574545055627823,
- 0.024985171854496002,
- -0.06341280788183212,
- 0.020886464044451714,
- -0.04836799576878548,
- -0.01653762347996235,
- -0.05572451651096344,
- 0.041150059551000595,
- -0.029220959171652794,
- -0.029353709891438484,
- -0.012631955556571484,
- 0.034391824156045914,
- 0.011507771909236908,
- -0.016364391893148422,
- -0.01930752396583557,
- 0.025408098474144936,
- 0.032856736332178116,
- 0.04031068831682205,
- 0.11403737217187881,
- 0.08119823783636093,
- 0.054741278290748596,
- -0.026448866352438927
- ]
- },
- {
- "keyword": "gathering",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.013784591108560562,
- -0.03056606464087963,
- -0.013257008977234364,
- 0.05067910999059677,
- -0.039518147706985474,
- -0.022490274161100388,
- 0.12302412837743759,
- -0.052160002291202545,
- 0.005743649322539568,
- -0.0004249095800332725,
- 0.003848111955448985,
- -0.09621015191078186,
- -0.005369342397898436,
- -0.004382864572107792,
- 0.026807116344571114,
- 0.009532741270959377,
- 0.0078333280980587,
- -0.02660376951098442,
- 0.022663021460175514,
- -0.032729893922805786,
- -0.09853269904851913,
- -0.03386281430721283,
- 0.010784247890114784,
- 0.03578830137848854,
- 0.04443376883864403,
- 0.018360301852226257,
- -0.030710333958268166,
- -0.0037583489902317524,
- 0.11275465041399002,
- -0.031770408153533936,
- 0.003961952403187752,
- 0.12213094532489777,
- 0.04881623759865761,
- 0.030939683318138123,
- -0.017849095165729523,
- 0.058470286428928375,
- 0.03319183737039566,
- -0.02449469454586506,
- 0.00393711356446147,
- 0.034109100699424744,
- -0.03719005733728409,
- -0.04358581453561783,
- 0.04957374930381775,
- -0.04686475545167923,
- -0.008883495815098286,
- 0.016470598056912422,
- -0.01871873065829277,
- 0.049597445875406265,
- -0.035095542669296265,
- 0.05732382461428642,
- 0.013561202213168144,
- 0.016872843727469444,
- -0.011111784726381302,
- 0.03351081535220146,
- 0.046097151935100555,
- 0.05195371434092522,
- -0.030267832800745964,
- -0.08395424485206604,
- -0.009816575795412064,
- -0.02633846551179886,
- 0.009821216575801373,
- -0.03302180767059326,
- -0.04969394952058792,
- 0.014497000724077225,
- -0.00617127725854516,
- -0.021508287638425827,
- 0.028492873534560204,
- 0.15114326775074005,
- 0.0530509278178215,
- 0.011873231269419193,
- 0.01445732731372118,
- 0.0687139704823494,
- 0.012909479439258575,
- -0.005709038581699133,
- 0.036038413643836975,
- -0.012155295349657536,
- 0.013291532173752785,
- -0.1046726182103157,
- 0.06745002418756485,
- -0.08106904476881027,
- 0.008309894241392612,
- 0.06897267699241638,
- -0.04007529467344284,
- -0.02216811291873455,
- -0.024420132860541344,
- -0.03802752494812012,
- 0.025809932500123978,
- 0.06104795262217522,
- -0.046240393072366714,
- -0.010055886581540108,
- -0.12126132100820541,
- 0.11741486936807632,
- 0.00033089114003814757,
- -0.03003566525876522,
- -0.052117083221673965,
- 0.04272768273949623,
- -0.027457186952233315,
- -0.019189955666661263,
- 0.040619801729917526,
- 0.2284240424633026,
- -0.012991290539503098,
- 0.12041457742452621,
- 0.006770667620003223,
- -0.04781845957040787,
- -0.09058570116758347,
- -0.05343066528439522,
- -0.07028986513614655,
- 0.04219518601894379,
- 0.007524976506829262,
- 0.03325871378183365,
- 0.0004758323775604367,
- -0.013681719079613686,
- -0.004486436024308205,
- 0.038040641695261,
- 0.01998167857527733,
- 0.08515281230211258,
- 0.05785375088453293,
- 0.01885382831096649,
- -0.02485501766204834,
- 0.05499405413866043,
- 0.03710386902093887,
- 0.036167360842227936,
- 0.032996512949466705,
- 0.03478941693902016,
- 0.03552018851041794,
- -0.042037636041641235,
- 0.04555097594857216,
- -6.072467165129654e-33,
- 0.033364951610565186,
- -0.08793070167303085,
- 0.018899617716670036,
- 0.04800088331103325,
- 0.10041922330856323,
- -0.028516370803117752,
- -0.04267411306500435,
- -0.035870347172021866,
- -0.04627301171422005,
- -0.025826217606663704,
- 0.003456488251686096,
- 0.04720740392804146,
- 0.08426059782505035,
- 0.002893139375373721,
- 0.05544641613960266,
- -0.10937195271253586,
- 0.044288475066423416,
- 0.05922553688287735,
- -0.010761763900518417,
- -0.034354276955127716,
- -0.06696172058582306,
- -0.03194527328014374,
- 0.004424390848726034,
- 0.06361585855484009,
- -0.05071837827563286,
- 0.009500134736299515,
- -0.03288840129971504,
- -0.013215272687375546,
- 0.04631120339035988,
- 0.004221595358103514,
- 0.015574892982840538,
- 0.03240688890218735,
- -0.02846524305641651,
- 0.005220774561166763,
- 0.06298970431089401,
- 0.02673480100929737,
- 0.042005036026239395,
- -0.08427662402391434,
- 0.012424297630786896,
- -0.0164477676153183,
- -0.02002842165529728,
- 0.0006933793192729354,
- 0.018517103046178818,
- -0.03116302378475666,
- -0.03834539279341698,
- 0.08105078339576721,
- 0.01854311302304268,
- -0.006032811943441629,
- -0.08777988702058792,
- 0.05961121618747711,
- -0.016418393701314926,
- -0.06128174811601639,
- -0.01608763262629509,
- 0.004814925603568554,
- 0.025704530999064445,
- -0.014314022846519947,
- 0.004837741144001484,
- -0.016953209415078163,
- 0.03800247609615326,
- 0.01878262124955654,
- 0.034876588732004166,
- 0.13114690780639648,
- -0.07858243584632874,
- 0.053401388227939606,
- -0.02274933084845543,
- -0.019237902015447617,
- 0.02989562787115574,
- -0.025860745459794998,
- 0.07658040523529053,
- -0.05683400481939316,
- -0.027923058718442917,
- 0.011182473041117191,
- -0.04419978708028793,
- 0.06923575699329376,
- -0.02685491368174553,
- -0.015812667086720467,
- 0.061501502990722656,
- 0.04825006425380707,
- -0.042647890746593475,
- -0.0009774755453690886,
- -0.0199284665286541,
- -0.0028122197836637497,
- -0.03972533717751503,
- 0.001163902343250811,
- -0.0010603172704577446,
- -0.005959933158010244,
- 0.010006310418248177,
- -0.018453240394592285,
- -0.012420056387782097,
- 0.02409633807837963,
- -0.1300227791070938,
- -0.03262476250529289,
- 0.1327308565378189,
- -0.028902314603328705,
- -0.043566081672906876,
- 4.206987385075439e-33,
- 0.0672517716884613,
- -0.019467445090413094,
- -0.0028426016215234995,
- -0.005003552418202162,
- 0.09137260168790817,
- -0.06481266021728516,
- 0.01987559162080288,
- -0.12334682792425156,
- 0.028757838532328606,
- -0.015097439289093018,
- -0.0989268571138382,
- 0.040257882326841354,
- 0.0617186576128006,
- -0.0014070990728214383,
- 0.03697475045919418,
- -0.054009951651096344,
- 0.10077416151762009,
- 0.016557669267058372,
- 0.05694655701518059,
- 0.03409380465745926,
- -0.019565090537071228,
- -0.0865810364484787,
- 0.050044067203998566,
- -0.08922926336526871,
- -0.02867419645190239,
- 0.026313723996281624,
- 0.008198401890695095,
- -0.06448552757501602,
- -0.009272949770092964,
- -0.0007698966655880213,
- 0.014921088702976704,
- -0.08929740637540817,
- -0.056396786123514175,
- -0.04806672781705856,
- 0.014090693555772305,
- 0.03384297713637352,
- 0.04548123851418495,
- 0.054463859647512436,
- -0.05344738811254501,
- -0.09438761323690414,
- 0.010866740718483925,
- 0.003103922586888075,
- -0.06197454780340195,
- 0.09615308791399002,
- 0.004076015669852495,
- 0.02111860178411007,
- -0.008079661056399345,
- 0.08894888311624527,
- -0.08490250259637833,
- -0.005252563860267401,
- -0.11127776652574539,
- -0.02635888382792473,
- -0.021960411220788956,
- -0.04452493414282799,
- -0.00032029321300797164,
- 0.017687859013676643,
- 0.018520671874284744,
- -0.04413216933608055,
- -0.0038828758988529444,
- -0.005342252552509308,
- -0.0028464000206440687,
- -0.014918465167284012,
- -0.05453421548008919,
- 0.041629888117313385,
- 0.06326901912689209,
- -0.01945042423903942,
- -0.005958510097116232,
- 0.032952774316072464,
- -0.04639502987265587,
- 0.05916757881641388,
- -0.015567919239401817,
- -0.0031402783934026957,
- -0.048858702182769775,
- -0.0006355874938890338,
- -0.01683015748858452,
- -0.02730363793671131,
- -0.10782191902399063,
- 0.04024737700819969,
- 0.0488351508975029,
- 0.01964806206524372,
- -0.07903367280960083,
- 0.027233662083745003,
- -0.019099608063697815,
- 0.007773131597787142,
- -0.0061173452995717525,
- -0.03258877247571945,
- 0.1092357337474823,
- 0.07511401176452637,
- -0.04463428631424904,
- -0.01347401738166809,
- 0.02803848683834076,
- -0.04434537515044212,
- 0.09962143748998642,
- -0.05705191195011139,
- -0.026143835857510567,
- -1.1558409340750586e-8,
- 0.00577897485345602,
- 0.02668282389640808,
- -0.03600829467177391,
- -0.016359666362404823,
- 0.08449580520391464,
- -0.04303937405347824,
- -0.013756717555224895,
- -0.03353535383939743,
- 0.03366013616323471,
- 0.11507584899663925,
- 0.006361129693686962,
- -0.016195278614759445,
- 0.05825745686888695,
- 0.01063661091029644,
- 0.06642432510852814,
- -0.03482978418469429,
- -0.02721787989139557,
- -0.03481348976492882,
- -0.12489983439445496,
- -0.08969880640506744,
- 0.009940123185515404,
- -0.05031273886561394,
- 0.06400132179260254,
- 0.016280781477689743,
- -0.028785530477762222,
- 0.03776806965470314,
- 0.038265034556388855,
- -0.03960564360022545,
- -0.020764723420143127,
- -0.044149000197649,
- -0.022896597161889076,
- 0.025291766971349716,
- -0.07157715409994125,
- 0.015151195228099823,
- 0.10760637372732162,
- -0.025968605652451515,
- -0.12558713555335999,
- -0.0021078279241919518,
- 0.08246700465679169,
- -0.02867618203163147,
- -0.04374261200428009,
- 0.027918240055441856,
- 0.06214574724435806,
- 0.0151857053861022,
- 0.030379407107830048,
- 0.013806202448904514,
- -0.010371471755206585,
- -0.00880336668342352,
- -0.05953432619571686,
- -0.08235568553209305,
- -0.04290999844670296,
- -0.02692262828350067,
- 0.022792654111981392,
- 0.05531923845410347,
- 0.035417716950178146,
- 0.04588596522808075,
- 0.01598844863474369,
- 0.04187183827161789,
- 0.08754853159189224,
- -0.013027488254010677,
- 0.0756930261850357,
- 0.0362107940018177,
- -0.1371397227048874,
- 0.0051833465695381165
- ]
- },
- {
- "keyword": "ceremony",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.012936006300151348,
- 0.14844456315040588,
- -0.0019424203783273697,
- -0.01585966907441616,
- -0.06850304454565048,
- 0.0056086340919137,
- 0.04373994097113609,
- -0.08929075300693512,
- 0.04683488607406616,
- 0.03838208317756653,
- -0.013699785806238651,
- -0.0501788966357708,
- -0.024607840925455093,
- -0.012718506157398224,
- -0.0006181664648465812,
- 0.019746745005249977,
- -0.0027276247274130583,
- 0.018439972773194313,
- -0.03138403594493866,
- -0.010002338327467442,
- 0.027375388890504837,
- 0.020091278478503227,
- -0.04205615445971489,
- 0.04031621292233467,
- 0.010217653587460518,
- 0.032920580357313156,
- -0.03905519098043442,
- -0.00020033048349432647,
- 0.08366130292415619,
- -0.046263620257377625,
- 0.004298412706702948,
- -0.008855168707668781,
- -0.006522715091705322,
- 0.0506969578564167,
- -0.03279701992869377,
- 0.0180356465280056,
- 0.04067809507250786,
- 0.012591477483510971,
- -0.0009586243540979922,
- 0.03728501871228218,
- 0.0011955482186749578,
- -0.08546894043684006,
- 0.03455791622400284,
- -0.023011254146695137,
- 0.04007995128631592,
- 0.047074079513549805,
- 0.004608603194355965,
- 0.026044810190796852,
- -0.030131563544273376,
- 0.03696461394429207,
- -0.01965068280696869,
- 0.03363185375928879,
- 0.031835246831178665,
- 0.003535766387358308,
- 0.05434646084904671,
- 0.04800732433795929,
- 0.02038361318409443,
- -0.10363956540822983,
- -0.002649419941008091,
- 0.013763532973825932,
- 0.02134208008646965,
- 0.06670335680246353,
- -0.09333132207393646,
- 0.055502016097307205,
- 0.042067982256412506,
- -0.0888422429561615,
- 0.07166866213083267,
- -0.007558724842965603,
- 0.03616166487336159,
- -0.04635457322001457,
- -0.025882713496685028,
- -0.03711960092186928,
- 0.047996100038290024,
- -0.0197224672883749,
- -0.08695949614048004,
- -0.0777803510427475,
- -0.024772776290774345,
- -0.039571840316057205,
- -0.03706981614232063,
- -0.04110860452055931,
- -0.015628982335329056,
- -0.04602456092834473,
- 0.04839511215686798,
- 0.01595931686460972,
- -0.011841468513011932,
- -0.026819394901394844,
- -0.09938786178827286,
- 0.030701294541358948,
- -0.03787561133503914,
- 0.057579364627599716,
- -0.08153699338436127,
- -0.02651238441467285,
- 0.042172402143478394,
- -0.039779502898454666,
- -0.08850545436143875,
- 0.04338997229933739,
- 0.009037748910486698,
- -0.032378461211919785,
- 0.03591014817357063,
- 0.25833064317703247,
- -0.005061337724328041,
- 0.08637458086013794,
- -0.0684276893734932,
- -0.018334640190005302,
- -0.0099033173173666,
- 0.0018223603256046772,
- -0.08357826620340347,
- -0.01970144547522068,
- -0.02139217033982277,
- 0.015111079439520836,
- -0.04634618014097214,
- 0.018189245834946632,
- -0.07875843346118927,
- 0.01450062170624733,
- -0.05111242085695267,
- 0.14931701123714447,
- -0.01905212365090847,
- -0.04474816843867302,
- 0.015815412625670433,
- 0.02142874151468277,
- 0.037362243980169296,
- 0.014712722972035408,
- -0.020703941583633423,
- 0.024580156430602074,
- -0.05036841705441475,
- -0.09652817994356155,
- 0.04191955178976059,
- -5.77581610467828e-33,
- 0.019659262150526047,
- -0.05258282274007797,
- 0.02786884643137455,
- 0.07149407267570496,
- 0.019660988822579384,
- 0.06538540124893188,
- -0.013872307725250721,
- -0.07204557955265045,
- -0.08094082772731781,
- -0.04267963767051697,
- 0.03622138872742653,
- 0.03530289977788925,
- 0.0004015796585008502,
- -0.08263656497001648,
- 0.015061784535646439,
- -0.08279820531606674,
- -0.03141597658395767,
- 0.028098007664084435,
- -0.014499776065349579,
- 0.03707036375999451,
- 0.0023886801209300756,
- 0.04623733088374138,
- -0.031195031479001045,
- 0.07337012887001038,
- -0.0037340137641876936,
- 0.023173654451966286,
- 0.02442842349410057,
- 0.037819765508174896,
- -0.048254597932100296,
- 0.018607795238494873,
- 0.046699050813913345,
- -0.009566981345415115,
- 0.06958766281604767,
- -0.02899266965687275,
- 0.029534215107560158,
- -0.027874253690242767,
- 0.014832940883934498,
- -0.09262401610612869,
- 0.0023248714860528708,
- -0.023914575576782227,
- -0.04756806418299675,
- -0.024306682869791985,
- -0.0719766765832901,
- 0.05082663148641586,
- -0.038254499435424805,
- 0.06615204364061356,
- 0.10421085357666016,
- -0.0052485838532447815,
- 0.1702452152967453,
- 0.0038700366858392954,
- 0.06266511231660843,
- -0.01873965933918953,
- -0.0003550593100953847,
- -0.04994780197739601,
- 0.03911612182855606,
- 0.03169523924589157,
- 0.023190762847661972,
- 0.0014267668593674898,
- 0.0013653687201440334,
- -0.03792888671159744,
- 0.012759380042552948,
- 0.018125785514712334,
- -0.06829235702753067,
- 0.04531010612845421,
- -0.000747178215533495,
- -0.051490336656570435,
- 0.0013539576902985573,
- 0.00041558913653716445,
- 0.08560895919799805,
- -0.07508988678455353,
- -0.056804995983839035,
- 0.02604805864393711,
- 0.006531266961246729,
- -0.036801908165216446,
- 0.02124883234500885,
- 0.043748605996370316,
- 0.08012819290161133,
- -0.023398082703351974,
- -0.02548433654010296,
- 0.027088718488812447,
- -0.10865632444620132,
- 0.056975193321704865,
- 0.005171176046133041,
- 0.0003525730862747878,
- 0.115351103246212,
- 0.004525944124907255,
- -0.012980652041733265,
- 0.08128251880407333,
- -0.057147495448589325,
- 0.031794074922800064,
- -0.019772160798311234,
- 0.009385411627590656,
- 0.14981579780578613,
- -0.02567584626376629,
- 0.003634263761341572,
- 3.747567091233641e-33,
- -0.0032463783863931894,
- -0.010126924142241478,
- -0.03413425013422966,
- 0.12698569893836975,
- 0.06218031048774719,
- -0.029477817937731743,
- -0.05292198807001114,
- 0.024312131106853485,
- -0.03036489151418209,
- -0.00425704987719655,
- 0.04241446033120155,
- -0.004666355904191732,
- 0.07416903972625732,
- 0.03692469745874405,
- -0.04788472130894661,
- -0.04546843469142914,
- 0.041352417320013046,
- 0.09415195137262344,
- 0.026110319420695305,
- 0.08738988637924194,
- 0.049696311354637146,
- 0.030896127223968506,
- 0.007074016146361828,
- -0.08987913280725479,
- -0.10234988480806351,
- -0.004517350345849991,
- -0.04180329293012619,
- -0.016959523782134056,
- -0.0416315495967865,
- -0.010832042433321476,
- -0.01347407791763544,
- -0.04397467523813248,
- -0.10117718577384949,
- 0.006172746419906616,
- 0.031232448294758797,
- 0.04137507826089859,
- 0.019971027970314026,
- 0.0565168522298336,
- -0.04083527252078056,
- 0.022890863940119743,
- -0.009932957589626312,
- -0.011386485770344734,
- -0.05575408786535263,
- 0.13456283509731293,
- -0.016728829592466354,
- 0.01639343425631523,
- -0.1254585087299347,
- 0.03726435825228691,
- 0.056148551404476166,
- -0.014733342453837395,
- -0.11073988676071167,
- -0.04153161123394966,
- 0.000248651544097811,
- -0.08580133318901062,
- 0.033119771629571915,
- 0.007770846597850323,
- -0.07890824228525162,
- -0.010874378494918346,
- -0.05499199405312538,
- 0.03475778549909592,
- 0.04134933277964592,
- -0.010194668546319008,
- -0.03532504662871361,
- 0.021907305344939232,
- 0.03716585785150528,
- 0.06118910014629364,
- 0.03777559474110603,
- 0.09335377812385559,
- -0.07186772674322128,
- 0.09828748553991318,
- 0.008289864286780357,
- -0.022192856296896935,
- -0.0767790824174881,
- 0.08600274473428726,
- 0.031534478068351746,
- 0.00210591615177691,
- -0.03469489514827728,
- -0.047496359795331955,
- 0.028888549655675888,
- -0.018209606409072876,
- -0.08427328616380692,
- -0.0006546077784150839,
- -0.10020563006401062,
- 0.016945866867899895,
- 0.0036316511686891317,
- -0.08800802379846573,
- 0.043618228286504745,
- 0.023141393437981606,
- 0.03876737132668495,
- 0.0333421528339386,
- 0.0000797497559688054,
- -0.012009816244244576,
- 0.03490625321865082,
- -0.10344042629003525,
- 0.042358022183179855,
- -1.1727985693710252e-8,
- -0.016618261113762856,
- -0.023408524692058563,
- -0.022020248696208,
- -0.07128894329071045,
- -0.00817889254540205,
- -0.005867172032594681,
- 0.04285315424203873,
- -0.11008528620004654,
- 0.03409162163734436,
- -0.004759132396429777,
- -0.025969864800572395,
- 0.024098895490169525,
- 0.019555456936359406,
- -0.015442909672856331,
- 0.07802552729845047,
- 0.00038775967550463974,
- -0.014010297134518623,
- -0.026254337280988693,
- -0.052430231124162674,
- -0.04456070438027382,
- -0.01971381902694702,
- -0.04261060431599617,
- 0.06665994226932526,
- 0.009222486056387424,
- -0.01440393552184105,
- 0.025895483791828156,
- 0.03785642981529236,
- 0.09172985702753067,
- -0.00665160920470953,
- 0.01767885871231556,
- -0.006201201118528843,
- -0.020783808082342148,
- -0.01438914705067873,
- -0.039926156401634216,
- -0.04851115867495537,
- 0.019411880522966385,
- -0.046296440064907074,
- -0.0491766519844532,
- 0.09800612181425095,
- -0.030431481078267097,
- 0.02143740840256214,
- 0.0438542515039444,
- 0.0003192078147549182,
- 0.05008869245648384,
- 0.037906285375356674,
- 0.037329062819480896,
- -0.022624270990490913,
- 0.04369359835982323,
- -0.04252113774418831,
- -0.07324149459600449,
- -0.008310269564390182,
- -0.04986972734332085,
- 0.009108603931963444,
- -0.007013869471848011,
- -0.02289000153541565,
- 0.05583586171269417,
- 0.05634686350822449,
- 0.057784948498010635,
- 0.0946628600358963,
- -0.022835690528154373,
- 0.03600723296403885,
- 0.05118807405233383,
- 0.055569931864738464,
- -0.06767251342535019
- ]
- },
- {
- "keyword": "festival",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.00874959398061037,
- -0.00024387425219174474,
- 0.00040978979086503386,
- 0.03666217625141144,
- -0.0076563176698982716,
- -0.010165948420763016,
- 0.12044452130794525,
- -0.11990609765052795,
- -0.026210283860564232,
- -0.031294696033000946,
- 0.015595207922160625,
- -0.10525182634592056,
- -0.028550250455737114,
- 0.013936585746705532,
- -0.004893772304058075,
- -0.03303898498415947,
- 0.05838245525956154,
- -0.008294251747429371,
- 0.04157651588320732,
- -0.06455500423908234,
- -0.045700155198574066,
- -0.05318425968289375,
- -0.04351881146430969,
- 0.04922796040773392,
- -0.01616438664495945,
- 0.03168494999408722,
- -0.08128120750188828,
- 0.0598343200981617,
- 0.031918443739414215,
- -0.07579054683446884,
- 0.015300930477678776,
- 0.06391643732786179,
- -0.07807454466819763,
- -0.017259670421481133,
- 0.02359473519027233,
- 0.0760069340467453,
- 0.000739806448109448,
- -0.08626747876405716,
- -0.004668320529162884,
- 0.0756363794207573,
- 0.021507548168301582,
- -0.04924929514527321,
- 0.04720521345734596,
- 0.02488425374031067,
- 0.03906828910112381,
- -0.019284512847661972,
- 0.031875353306531906,
- -0.03325583413243294,
- -0.00012180188059573993,
- 0.06199755519628525,
- 0.10216128826141357,
- -0.017687922343611717,
- 0.01229323074221611,
- -0.04683034121990204,
- -0.0021874490194022655,
- -0.01759391836822033,
- -0.00265402439981699,
- -0.07947298884391785,
- 0.014829469844698906,
- -0.07784998416900635,
- -0.028174640610814095,
- 0.024313220754265785,
- -0.10960598289966583,
- 0.018074341118335724,
- -0.02335439808666706,
- -0.06558037549257278,
- -0.025973686948418617,
- 0.10061994194984436,
- 0.042013559490442276,
- -0.08490107208490372,
- -0.021600453183054924,
- 0.030400842428207397,
- 0.036151133477687836,
- 0.06295298784971237,
- 0.0009853020310401917,
- -0.04460086300969124,
- 0.0007780716405250132,
- -0.02009938843548298,
- -0.028849661350250244,
- 0.033100470900535583,
- 0.024326257407665253,
- -0.01796475611627102,
- 0.05387294664978981,
- -0.021063946187496185,
- -0.006128927227109671,
- -0.003186266403645277,
- -0.004752148874104023,
- 0.0705927163362503,
- -0.011585855856537819,
- 0.025913948193192482,
- -0.05264347791671753,
- 0.0485122911632061,
- 0.0042966618202626705,
- 0.022552046924829483,
- -0.0609772689640522,
- 0.08857819437980652,
- 0.003573161084204912,
- -0.02287917025387287,
- 0.09655391424894333,
- 0.2289915829896927,
- 0.018437694758176804,
- 0.0765969380736351,
- -0.06611165404319763,
- 0.024996094405651093,
- -0.020033104345202446,
- -0.06089472025632858,
- -0.04435977339744568,
- 0.011554183438420296,
- -0.01089346595108509,
- 0.005610709544271231,
- -0.03580918163061142,
- 0.020432712510228157,
- 0.014094776473939419,
- -0.015845857560634613,
- -0.021568169817328453,
- 0.15664665400981903,
- 0.009615413844585419,
- 0.012055076658725739,
- -0.02600797638297081,
- -0.011806775815784931,
- 0.00921065267175436,
- 0.043793294578790665,
- 0.005572033580392599,
- 0.025984417647123337,
- -0.04264603182673454,
- -0.02659291960299015,
- 0.07449042797088623,
- -4.665332468928219e-33,
- 0.0010626219445839524,
- -0.09389804303646088,
- -0.008301448076963425,
- -0.020969197154045105,
- 0.11545640975236893,
- 0.038939133286476135,
- -0.016529396176338196,
- -0.04622736945748329,
- -0.043539661914110184,
- -0.03071834146976471,
- -0.02455989643931389,
- -0.041856344789266586,
- -0.007056506350636482,
- -0.08910369127988815,
- 0.11109881848096848,
- -0.02104111574590206,
- 0.05710023269057274,
- 0.024948561564087868,
- 0.0036454612854868174,
- -0.06912867724895477,
- -0.07184084504842758,
- 0.025293748825788498,
- -0.010211409069597721,
- 0.05171888321638107,
- -0.020607156679034233,
- 0.05113213509321213,
- 0.007910963147878647,
- -0.024182790890336037,
- 0.12370690703392029,
- 0.02447069063782692,
- 0.06467892229557037,
- -0.010428394190967083,
- 0.07093343883752823,
- 0.023961711674928665,
- 0.008680971339344978,
- 0.04394601657986641,
- -0.002689352724701166,
- -0.0831344723701477,
- -0.007417560089379549,
- -0.014431661926209927,
- -0.030868910253047943,
- -0.02438000589609146,
- -0.07018394768238068,
- 0.033104460686445236,
- -0.07097679376602173,
- 0.08313162624835968,
- 0.08434204757213593,
- -0.014965050853788853,
- 0.04934529587626457,
- -0.0031308415345847607,
- -0.02936982549726963,
- -0.006093636620789766,
- 0.0070006526075303555,
- -0.02900400571525097,
- 0.059538278728723526,
- 0.02715306170284748,
- 0.0066777910105884075,
- -0.04864180460572243,
- 0.014641990885138512,
- -0.023326676338911057,
- 0.04812842234969139,
- 0.06271199136972427,
- -0.05890040844678879,
- 0.00853523425757885,
- -0.028342943638563156,
- -0.071410171687603,
- 0.06862276047468185,
- -0.06823106855154037,
- 0.09633764624595642,
- -0.005591359455138445,
- -0.03200792521238327,
- 0.012036057189106941,
- 0.034472521394491196,
- -0.029348595067858696,
- 0.026546472683548927,
- 0.045321274548769,
- 0.06519464403390884,
- 0.029738562181591988,
- -0.003971977159380913,
- 0.048943713307380676,
- -0.09706149250268936,
- -0.021005146205425262,
- 0.004743762779980898,
- -0.011271709576249123,
- 0.015090865083038807,
- -0.01824077218770981,
- -0.038863249123096466,
- 0.03511763736605644,
- -0.0003571962006390095,
- -0.014979541301727295,
- -0.0411636084318161,
- 0.0006514588603749871,
- 0.06472020596265793,
- 0.003461746731773019,
- -0.03501783311367035,
- 4.0270206693324854e-33,
- 0.026556413620710373,
- -0.01986202783882618,
- -0.016518447548151016,
- 0.05614910274744034,
- 0.020297879353165627,
- -0.008765876293182373,
- -0.05418301001191139,
- 0.007170606404542923,
- 0.03626938909292221,
- 0.04282063990831375,
- -0.06972459703683853,
- 0.03992120176553726,
- 0.019962817430496216,
- -0.01697688177227974,
- 0.000019861212422256358,
- -0.030053921043872833,
- 0.033409636467695236,
- 0.1156463623046875,
- -0.007233787328004837,
- 0.028619905933737755,
- -0.08694522827863693,
- 0.12393216043710709,
- -0.03298836201429367,
- -0.13022786378860474,
- -0.06533286720514297,
- 0.018251294270157814,
- 0.025484951213002205,
- -0.02545749954879284,
- -0.05269530788064003,
- 0.024225186556577682,
- -0.005519726313650608,
- -0.05825783684849739,
- -0.04589488357305527,
- 0.022503219544887543,
- -0.008963239379227161,
- 0.1491866260766983,
- 0.08700767904520035,
- 0.010159408673644066,
- -0.025866352021694183,
- 0.002843428635969758,
- -0.011753876693546772,
- 0.03476489707827568,
- -0.04273245483636856,
- 0.13503628969192505,
- -0.001784064108505845,
- 0.06812790781259537,
- -0.14989912509918213,
- 0.09107273072004318,
- 0.08497265726327896,
- 0.03719327971339226,
- -0.13636255264282227,
- -0.028178906068205833,
- -0.018243879079818726,
- -0.025243835523724556,
- 0.061781395226716995,
- 0.0306728295981884,
- -0.09301716834306717,
- -0.01588699035346508,
- -0.10591433942317963,
- 0.006029729265719652,
- 0.020990924909710884,
- -0.002477389993146062,
- -0.01612960360944271,
- 0.044958293437957764,
- 0.02131151780486107,
- 0.018085965886712074,
- 0.02261192724108696,
- 0.05436643958091736,
- -0.012158051133155823,
- 0.029918288812041283,
- 0.015133528038859367,
- 0.07066314667463303,
- -0.1835043728351593,
- 0.029987137764692307,
- -0.06939049065113068,
- -0.0008173400419764221,
- 0.018807705491781235,
- 0.07619854062795639,
- 0.025993233546614647,
- -0.0505257286131382,
- -0.04084647446870804,
- 0.04877862706780434,
- -0.025868982076644897,
- -0.008611789904534817,
- -0.02030114457011223,
- -0.013874045573174953,
- 0.09012453258037567,
- 0.037006083875894547,
- 0.0017028606962412596,
- 0.03087298944592476,
- 0.05663424730300903,
- -0.006242683157324791,
- 0.017346281558275223,
- -0.01695258356630802,
- 0.012260460294783115,
- -1.1165504965049422e-8,
- 0.025297092273831367,
- 0.02351752668619156,
- -0.09054698050022125,
- -0.007179051637649536,
- 0.03562683239579201,
- -0.026805128902196884,
- -0.03088824450969696,
- 0.008531402796506882,
- 0.04794934764504433,
- 0.11750472337007523,
- -0.02840229496359825,
- -0.009063982404768467,
- -0.016462313011288643,
- 0.01657169684767723,
- 0.025952979922294617,
- -0.017723076045513153,
- -0.05918941646814346,
- 0.05540943145751953,
- -0.06976146996021271,
- -0.019905075430870056,
- 0.024201583117246628,
- 0.031145887449383736,
- 0.09078806638717651,
- -0.011780292727053165,
- -0.019698908552527428,
- -0.02347058802843094,
- 0.04160398617386818,
- 0.08408591896295547,
- 0.02013981342315674,
- -0.06981047987937927,
- -0.010461321100592613,
- 0.033231962472200394,
- -0.0633191168308258,
- -0.0501064695417881,
- -0.0783933624625206,
- -0.037275347858667374,
- -0.08197630941867828,
- -0.013535818085074425,
- 0.027810947969555855,
- 0.00039429092430509627,
- 0.021147748455405235,
- -0.03758712857961655,
- 0.06210146099328995,
- 0.010624183341860771,
- -0.0035479539074003696,
- 0.06042962148785591,
- -0.024317115545272827,
- -0.049468398094177246,
- -0.011312805116176605,
- -0.054960254579782486,
- -0.08489374071359634,
- -0.02453714795410633,
- 0.044227760285139084,
- -0.009861379861831665,
- 0.00698090298101306,
- 0.021337825804948807,
- 0.0047945259138941765,
- 0.022619066759943962,
- 0.020225806161761284,
- -0.01079950574785471,
- 0.05207335948944092,
- 0.013535981997847557,
- 0.024106156080961227,
- -0.03603387251496315
- ]
- },
- {
- "keyword": "carnival",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.03486419469118118,
- 0.06281092762947083,
- 0.009300614707171917,
- -0.020447025075554848,
- -0.047099269926548004,
- 0.011593928560614586,
- 0.1401199847459793,
- -0.08802130818367004,
- -0.013332265429198742,
- -0.014532314613461494,
- -0.00520702451467514,
- -0.04399937391281128,
- -0.0005317191826179624,
- -0.055102985352277756,
- 0.016493355855345726,
- -0.05927776172757149,
- 0.09575919061899185,
- 0.0017217528074979782,
- 0.07643545418977737,
- 0.02433544024825096,
- -0.014960839413106441,
- -0.028761956840753555,
- -0.05077714845538139,
- 0.0663568452000618,
- -0.06927144527435303,
- 0.03755507245659828,
- -0.07934510707855225,
- 0.026712466031312943,
- -0.025311140343546867,
- -0.09787403047084808,
- -0.011127674020826817,
- 0.004980649333447218,
- -0.044190745800733566,
- 0.025182122364640236,
- -0.027401389554142952,
- -0.016871793195605278,
- -0.015901990234851837,
- -0.07099298387765884,
- -0.007765654008835554,
- 0.008044172078371048,
- -0.032311100512742996,
- -0.048412565141916275,
- -0.02259232848882675,
- 0.029228195548057556,
- 0.04247961938381195,
- 0.003912631422281265,
- 0.015107188373804092,
- 0.029609832912683487,
- 0.05628950893878937,
- 0.09804394096136093,
- 0.04899570345878601,
- -0.029257869347929955,
- -0.008866948075592518,
- 0.019899258390069008,
- 0.04839497059583664,
- 0.003284523030743003,
- -0.035175424069166183,
- -0.06546271592378616,
- 0.007969413883984089,
- -0.08634597063064575,
- -0.0017870267620310187,
- 0.04179910197854042,
- -0.02867589145898819,
- 0.09085529297590256,
- -0.010892336256802082,
- -0.0770808681845665,
- -0.02963794581592083,
- 0.1372341513633728,
- 0.0017001625383272767,
- -0.024369360879063606,
- -0.04902886599302292,
- -0.03175821155309677,
- 0.06360311806201935,
- 0.07074343413114548,
- 0.027598468586802483,
- -0.007484918925911188,
- 0.018453581258654594,
- -0.11977870017290115,
- -0.027178220450878143,
- 0.00345541350543499,
- -0.030739054083824158,
- -0.03390713781118393,
- 0.028142400085926056,
- -0.024122994393110275,
- -0.043664608150720596,
- -0.07748521864414215,
- -0.008795950561761856,
- 0.0025108875706791878,
- 0.04798541218042374,
- -0.04615272581577301,
- -0.11090385168790817,
- 0.023640286177396774,
- 0.05641873925924301,
- 0.009756636805832386,
- -0.051301270723342896,
- 0.09177994728088379,
- -0.006534655578434467,
- -0.051443446427583694,
- 0.1052149161696434,
- 0.26127052307128906,
- 0.009032593108713627,
- 0.0753050446510315,
- 0.040615420788526535,
- 0.036730971187353134,
- -0.022785751149058342,
- 0.026480920612812042,
- -0.01209104061126709,
- -0.021976497024297714,
- 0.05368988960981369,
- -0.026672186329960823,
- -0.048018794506788254,
- -0.013844274915754795,
- 0.03263705596327782,
- -0.05097375810146332,
- -0.026680778712034225,
- 0.10819589346647263,
- -0.03475344926118851,
- -0.020860804244875908,
- -0.08914028853178024,
- 0.0022130408324301243,
- 0.030179064720869064,
- 0.030020061880350113,
- 0.03303184732794762,
- -0.01583714783191681,
- -0.023272838443517685,
- -0.00009245920955436304,
- 0.0900428295135498,
- -4.913105004904464e-33,
- -0.046383459120988846,
- -0.17054414749145508,
- 0.08270008862018585,
- 0.022004082798957825,
- 0.136515274643898,
- 0.0386955663561821,
- 0.0029072295874357224,
- -0.06581543385982513,
- -0.0653676986694336,
- 0.05657227709889412,
- 0.07333949208259583,
- -0.030790293589234352,
- -0.06978712975978851,
- -0.0170271173119545,
- 0.0999419093132019,
- -0.01757904142141342,
- -0.022837122902274132,
- -0.012506449595093727,
- -0.005206152331084013,
- -0.03942057117819786,
- -0.07739518582820892,
- 0.013188260607421398,
- 0.011725889518857002,
- 0.019436920061707497,
- -0.04708046093583107,
- 0.021187040954828262,
- -0.040208715945482254,
- -0.06250522285699844,
- 0.13861314952373505,
- 0.057970039546489716,
- 0.01996222883462906,
- 0.021130243316292763,
- -0.0015313841868191957,
- -0.007196380291134119,
- -0.029816029593348503,
- 0.031233377754688263,
- -0.03689281642436981,
- -0.0650731772184372,
- 0.0023965889122337103,
- 0.0005328873521648347,
- -0.04602820798754692,
- -0.05190664902329445,
- -0.019040854647755623,
- 0.016015389934182167,
- -0.14718002080917358,
- 0.04224260523915291,
- 0.09726382791996002,
- -0.016264501959085464,
- -0.0013822342734783888,
- 0.0375557467341423,
- 0.02432216703891754,
- -0.08450734615325928,
- -0.04050467163324356,
- -0.03710995241999626,
- 0.00381863908842206,
- -0.016503803431987762,
- 0.0472596250474453,
- 0.029322495684027672,
- -0.059296105057001114,
- -0.04819891229271889,
- 0.05465091019868851,
- 0.037126969546079636,
- 0.01697247475385666,
- 0.009426051750779152,
- 0.034680839627981186,
- 0.003979721572250128,
- 0.07527879625558853,
- -0.03761649504303932,
- 0.08068983256816864,
- -0.03637700527906418,
- 0.012376691214740276,
- 0.006071226205676794,
- -0.05163688585162163,
- -0.019871219992637634,
- 0.08114288747310638,
- -0.011632483452558517,
- 0.04427899420261383,
- 0.021792488172650337,
- -0.04546850547194481,
- 0.033897023648023605,
- -0.03814774751663208,
- -0.010736440308392048,
- -0.05697598680853844,
- 0.036936577409505844,
- -0.04154546558856964,
- 0.04055864363908768,
- -0.029177749529480934,
- -0.00270486855879426,
- 0.03741883859038353,
- -0.0001871893327916041,
- -0.09492227435112,
- 0.001936439541168511,
- 0.11794576048851013,
- 0.07518204301595688,
- -0.05824495106935501,
- 3.3016543295087455e-33,
- -0.027364932000637054,
- -0.025016669183969498,
- -0.030613886192440987,
- 0.07220624387264252,
- 0.09524895250797272,
- -0.03399147093296051,
- -0.02794697694480419,
- -0.038267582654953,
- -0.043888308107852936,
- -0.00592656759545207,
- -0.12558455765247345,
- 0.036580804735422134,
- 0.02374149113893509,
- 0.03767159953713417,
- 0.04061342403292656,
- -0.008280780166387558,
- 0.12049355357885361,
- 0.05255935341119766,
- -0.028543872758746147,
- 0.020302779972553253,
- 0.021340386942029,
- 0.04302505403757095,
- -0.04747069627046585,
- -0.026940668001770973,
- -0.04890776425600052,
- 0.04241460934281349,
- 0.056278251111507416,
- 0.009037991985678673,
- -0.029069799929857254,
- -0.00971534289419651,
- -0.02970876358449459,
- 0.03162212669849396,
- 0.08139173686504364,
- 0.03443712368607521,
- 0.044139619916677475,
- 0.04386979341506958,
- 0.02548203244805336,
- 0.019196100533008575,
- -0.07753878086805344,
- -0.062263600528240204,
- -0.00018919001740869135,
- -0.02316645160317421,
- -0.009043022058904171,
- 0.031036285683512688,
- 0.005687878001481295,
- 0.05780687555670738,
- -0.042396180331707,
- 0.054751548916101456,
- 0.09324778616428375,
- 0.027989521622657776,
- -0.06900060921907425,
- -0.03291141241788864,
- -0.05401232838630676,
- -0.0020181338768452406,
- 0.03838713839650154,
- 0.05550536513328552,
- -0.0827835202217102,
- -0.023176414892077446,
- 0.02823719196021557,
- 0.027146238833665848,
- -0.003769925329834223,
- 0.018986858427524567,
- -0.07981651276350021,
- 0.021672749891877174,
- -0.00316570233553648,
- 0.013518929481506348,
- -0.02422909252345562,
- -0.027887973934412003,
- -0.046846188604831696,
- -0.00875084474682808,
- -0.00016477072495035827,
- 0.052403513342142105,
- -0.10137344151735306,
- 0.02756856381893158,
- -0.07247607409954071,
- 0.023825425654649734,
- 0.027360927313566208,
- 0.020506028085947037,
- 0.019414780661463737,
- -0.07034089416265488,
- -0.07527391612529755,
- 0.0016222797567024827,
- -0.010233346372842789,
- -0.00686505576595664,
- -0.04636455699801445,
- 0.006953846197575331,
- -0.015592450276017189,
- 0.013853355310857296,
- -0.003547397442162037,
- 0.048935096710920334,
- 0.06412988156080246,
- -0.008565541356801987,
- 0.04821677878499031,
- -0.04384508728981018,
- -0.036822620779275894,
- -1.1308562086753682e-8,
- 0.07907700538635254,
- -0.0074877655133605,
- 0.04167790338397026,
- -0.00806871335953474,
- 0.04138542339205742,
- 0.018186423927545547,
- 0.013670622371137142,
- -0.004759663250297308,
- 0.020161736756563187,
- 0.056808292865753174,
- 0.03914223611354828,
- 0.04294043034315109,
- 0.09016966819763184,
- 0.01064634881913662,
- 0.03338583931326866,
- -0.0013034677831456065,
- 0.005318159237504005,
- 0.026097526773810387,
- -0.090786412358284,
- 0.03334977477788925,
- -0.01553910318762064,
- 0.02135586366057396,
- 0.02175908349454403,
- -0.08378423005342484,
- -0.059099793434143066,
- 0.006653871387243271,
- 0.015259971842169762,
- 0.05499455705285072,
- 0.03575294837355614,
- -0.05068853497505188,
- 0.034734372049570084,
- 0.07241389155387878,
- -0.0940733253955841,
- -0.057862378656864166,
- -0.05114332586526871,
- -0.02783569134771824,
- -0.014861884526908398,
- -0.04515892267227173,
- 0.02639913372695446,
- -0.056674059480428696,
- 0.02907809428870678,
- 0.0019636889919638634,
- 0.09879644960165024,
- -0.04282953217625618,
- -0.050427887588739395,
- 0.021022029221057892,
- -0.03684967756271362,
- -0.019183458760380745,
- 0.008101853542029858,
- -0.09271979331970215,
- -0.05897574499249458,
- -0.06462771445512772,
- 0.022325236350297928,
- -0.009749751538038254,
- 0.007947542704641819,
- -0.03246058151125908,
- 0.014478947035968304,
- 0.07153450697660446,
- -0.01992608793079853,
- 0.0015717128990218043,
- 0.09807838499546051,
- -0.005037287250161171,
- 0.024287518113851547,
- 0.009559297002851963
- ]
- },
- {
- "keyword": "fair",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.020138660445809364,
- -0.05179518833756447,
- -0.05524095520377159,
- -0.08090318739414215,
- 0.05726905167102814,
- -0.21230651438236237,
- -0.0021300918888300657,
- 0.014097210019826889,
- 0.07133891433477402,
- 0.03315277770161629,
- -0.000555061677005142,
- -0.05073203146457672,
- -0.03131679445505142,
- -0.010035037063062191,
- 0.00107424461748451,
- -0.024754328653216362,
- 0.04866812005639076,
- -0.05623585730791092,
- -0.10001558810472488,
- 0.03635016456246376,
- -0.04287678375840187,
- 0.04985160753130913,
- 0.016642343252897263,
- 0.03746199607849121,
- 0.055097367614507675,
- -0.11164222657680511,
- 0.03452024236321449,
- 0.06581424176692963,
- 0.012602627277374268,
- 0.0031507709063589573,
- -0.057856276631355286,
- 0.06088868901133537,
- 0.05828544870018959,
- -0.029521608725190163,
- -0.04284678399562836,
- -0.084322988986969,
- -0.0669131949543953,
- 0.013408188708126545,
- -0.08642727881669998,
- 0.028920674696564674,
- 0.028859905898571014,
- -0.048781830817461014,
- -0.022215474396944046,
- 0.029857387766242027,
- 0.07306601107120514,
- 0.019951872527599335,
- 0.07017942517995834,
- -0.08247025310993195,
- -0.011206020601093769,
- -0.01494055986404419,
- -0.006650078110396862,
- 0.023216506466269493,
- -0.11241871863603592,
- -0.016040435060858727,
- 0.05121508240699768,
- 0.05926521122455597,
- -0.07651237398386002,
- 0.04041373357176781,
- 0.07289747148752213,
- -0.04229016602039337,
- 0.002322450978681445,
- -0.05318295955657959,
- -0.07211047410964966,
- 0.02122880145907402,
- -0.0057313451543450356,
- -0.01175518799573183,
- -0.012340781278908253,
- -0.07018332183361053,
- -0.022835610434412956,
- 0.058927007019519806,
- -0.004360205959528685,
- 0.00005079866241430864,
- 0.056509874761104584,
- 0.0009262431995011866,
- 0.020939374342560768,
- 0.005501583218574524,
- 0.007136380299925804,
- -0.029544683173298836,
- -0.006605211645364761,
- 0.04564256593585014,
- -0.0218430757522583,
- -0.030701445415616035,
- -0.01063344907015562,
- -0.050623346120119095,
- -0.019660992547869682,
- -0.021648941561579704,
- 0.06749852001667023,
- 0.028290599584579468,
- -0.0990905836224556,
- 0.01553786639124155,
- 0.003080025315284729,
- -0.014579428359866142,
- 0.06674903631210327,
- -0.02013632282614708,
- -0.05329225957393646,
- 0.024695565924048424,
- -0.008292480371892452,
- 0.08817871659994125,
- -0.1391165405511856,
- 0.21126550436019897,
- 0.007472309749573469,
- 0.04990309476852417,
- -0.09875728189945221,
- -0.02691233903169632,
- 0.012410051189363003,
- 0.02230215072631836,
- -0.068099245429039,
- 0.05049741268157959,
- -0.03417558968067169,
- -0.024648461490869522,
- -0.010671954602003098,
- 0.021688472479581833,
- 0.051700204610824585,
- 0.054964251816272736,
- -0.0009923487668856978,
- 0.05251825600862503,
- -0.029026305302977562,
- 0.05264221876859665,
- 0.0678442120552063,
- -0.061573609709739685,
- -0.000595260295085609,
- 0.0024752523750066757,
- 0.09034167230129242,
- 0.010421390645205975,
- -0.03331398963928223,
- -0.14206446707248688,
- -0.029642418026924133,
- -2.5028803878570692e-33,
- 0.018794503062963486,
- 0.008198989555239677,
- -0.04908358305692673,
- -0.052673324942588806,
- 0.04885612800717354,
- 0.028635436668992043,
- 0.026300711557269096,
- 0.013753869570791721,
- 0.03507934883236885,
- 0.080545574426651,
- 0.10601406544446945,
- 0.03571437671780586,
- -0.06930103152990341,
- -0.01913844794034958,
- 0.04894515499472618,
- 0.081450916826725,
- -0.03467608615756035,
- 0.01818433217704296,
- -0.02340323105454445,
- -0.024749569594860077,
- 0.014171652495861053,
- -0.02273349091410637,
- -0.004120761528611183,
- -0.016217561438679695,
- -0.030962906777858734,
- 0.001448627095669508,
- 0.004965163301676512,
- -0.01782255806028843,
- -0.0024032345972955227,
- 0.01269879937171936,
- -0.0232396200299263,
- -0.019318826496601105,
- -0.010685519315302372,
- 0.04407302290201187,
- -0.02412087470293045,
- -0.00554366409778595,
- 0.06336157023906708,
- -0.05924973264336586,
- -0.02187810093164444,
- -0.013458860106766224,
- -0.009049932472407818,
- -0.022834058851003647,
- 0.02430008538067341,
- 0.023592695593833923,
- 0.02456112951040268,
- -0.010952301323413849,
- 0.05515344440937042,
- -0.011693841777741909,
- -0.07203847914934158,
- -0.0026244106702506542,
- 0.011680365540087223,
- 0.004572994075715542,
- -0.02125152386724949,
- 0.03360594063997269,
- -0.021228263154625893,
- 0.013645442202687263,
- 0.08754798024892807,
- 0.018687104806303978,
- -0.002071145223453641,
- 0.09890472143888474,
- -0.009955503046512604,
- -0.012000123970210552,
- -0.04962404444813728,
- 0.009788528084754944,
- 0.021652765572071075,
- -0.010993675328791142,
- -0.024650000035762787,
- -0.017594238743185997,
- -0.0026701835449784994,
- -0.024794740602374077,
- 0.062343232333660126,
- -0.05747465416789055,
- 0.014506574720144272,
- 0.09829140454530716,
- 0.08975493907928467,
- -0.012420648708939552,
- 0.00949788372963667,
- 0.01986389420926571,
- 0.05244066193699837,
- 0.00809676293283701,
- 0.04874476417899132,
- -0.011673611588776112,
- -0.009636037051677704,
- 0.0918707400560379,
- 0.028866074979305267,
- 0.0424179770052433,
- 0.05655740201473236,
- -0.059753041714429855,
- 0.032402269542217255,
- 0.02392217516899109,
- -0.03438641130924225,
- 0.07966327667236328,
- 0.04479798674583435,
- 0.013678825460374355,
- -0.08369137346744537,
- 9.965917329733165e-34,
- -0.06774014234542847,
- -0.0330621637403965,
- -0.033582884818315506,
- 0.08884311467409134,
- -0.002164618344977498,
- -0.0004611676558852196,
- 0.009933488443493843,
- 0.0008230463718064129,
- 0.07126200944185257,
- 0.1293773055076599,
- -0.0031985074747353792,
- -0.023875797167420387,
- -0.014065766707062721,
- -0.030142685398459435,
- -0.017348604276776314,
- 0.0062030102126300335,
- 0.023866724222898483,
- -0.040672723203897476,
- -0.09385428577661514,
- -0.013149800710380077,
- -0.03505117818713188,
- 0.020407816395163536,
- -0.028835656121373177,
- -0.0037143270019441843,
- 0.02342987433075905,
- 0.03329024463891983,
- -0.05624598264694214,
- 0.00720022339373827,
- -0.005678741727024317,
- 0.032423581928014755,
- 0.07659436762332916,
- -0.01923701912164688,
- -0.1548277735710144,
- -0.038165342062711716,
- 0.025963041931390762,
- 0.0005591044900938869,
- -0.02090609446167946,
- 0.05312246456742287,
- 0.03765192627906799,
- 0.061420831829309464,
- -0.0004287423798814416,
- -0.05081315338611603,
- -0.023208407685160637,
- 0.07031647115945816,
- -0.03466382995247841,
- -0.0476832240819931,
- 0.04353940114378929,
- -0.03161637857556343,
- 0.02340095490217209,
- 0.005880187731236219,
- -0.10761010646820068,
- -0.016418451443314552,
- -0.012720444239675999,
- 0.0043950509279966354,
- -0.05646689981222153,
- 0.03259097784757614,
- 0.04866878315806389,
- 0.021425075829029083,
- 0.00963660515844822,
- -0.021303988993167877,
- -0.07167519629001617,
- -0.04730400815606117,
- -0.09198780357837677,
- 0.0044232881627976894,
- -0.0040240162052214146,
- -0.061431583017110825,
- -0.05586865171790123,
- 0.01311804074794054,
- 0.03596828505396843,
- -0.06718356162309647,
- 0.03065573051571846,
- 0.018788592889904976,
- -0.13038666546344757,
- 0.0023068792652338743,
- 0.01989424042403698,
- 0.00535433366894722,
- -0.05837064981460571,
- 0.11584693938493729,
- -0.018444066867232323,
- -0.03229948505759239,
- -0.009986452758312225,
- -0.011172467842698097,
- -0.010264578275382519,
- 0.041635580360889435,
- -0.03904855623841286,
- -0.013635372743010521,
- 0.025264469906687737,
- -0.04123888537287712,
- -0.009997135028243065,
- 0.011169113218784332,
- 0.01910262741148472,
- -0.041195210069417953,
- 0.18313707411289215,
- -0.03149888664484024,
- -0.017647840082645416,
- -1.6932883539766408e-8,
- 0.011701089330017567,
- 0.03786340355873108,
- 0.06413291394710541,
- 0.054712384939193726,
- 0.025884272530674934,
- 0.06603588908910751,
- -0.06899930536746979,
- -0.013395198620855808,
- 0.018449995666742325,
- 0.04934263974428177,
- 0.0560363233089447,
- -0.0770186185836792,
- 0.026039807125926018,
- 0.0570068433880806,
- 0.05604381114244461,
- 0.04341921582818031,
- 0.021946988999843597,
- -0.05717509239912033,
- -0.008480892516672611,
- 0.0829882100224495,
- -0.024993758648633957,
- 0.0788387730717659,
- -0.01930307224392891,
- -0.08003972470760345,
- -0.010048690252006054,
- 0.05181017890572548,
- 0.05292249470949173,
- 0.09905071556568146,
- 0.04655548185110092,
- -0.06171954423189163,
- 0.02410442940890789,
- 0.0884166955947876,
- -0.03316095843911171,
- -0.06604648381471634,
- -0.057380691170692444,
- 0.02987503632903099,
- -0.016520516946911812,
- -0.03987804427742958,
- -0.020665500313043594,
- 0.07885158061981201,
- -0.0003328456077724695,
- -0.010129022412002087,
- 0.05130705609917641,
- -0.0035669920034706593,
- 0.041472095996141434,
- -0.022702695801854134,
- -0.03378075361251831,
- -0.037295516580343246,
- -0.11502543091773987,
- -0.006918674800544977,
- 0.02108347788453102,
- -0.07949201762676239,
- 0.016872061416506767,
- 0.009741161949932575,
- 0.14914417266845703,
- 0.012785918079316616,
- -0.01150204986333847,
- 0.040715061128139496,
- 0.00883224792778492,
- -0.020652510225772858,
- 0.12597088515758514,
- -0.026643091812729836,
- 0.041182927787303925,
- 0.07347873598337173
- ]
- },
- {
- "keyword": "exhibition",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.048200204968452454,
- 0.06943202763795853,
- -0.04522418603301048,
- 0.025284994393587112,
- 0.058416567742824554,
- 0.08074992895126343,
- 0.08541230857372284,
- -0.024019867181777954,
- -0.0539388433098793,
- -0.0015380268450826406,
- 0.043522223830223083,
- -0.08439923077821732,
- 0.014491644687950611,
- 0.05940195173025131,
- -0.05717312917113304,
- -0.022717934101819992,
- 0.07102791219949722,
- -0.026059310883283615,
- 0.05103596672415733,
- 0.016034865751862526,
- 0.011066628620028496,
- 0.03415292501449585,
- 0.05818970873951912,
- 0.02658194489777088,
- -0.023626556620001793,
- 0.025544678792357445,
- -0.008080114610493183,
- 0.006068215239793062,
- 0.11801154166460037,
- -0.07921820133924484,
- -0.03427395224571228,
- 0.012130139395594597,
- -0.011527016758918762,
- 0.025266563519835472,
- 0.0399787500500679,
- 0.05497056245803833,
- 0.014621510170400143,
- -0.02911996655166149,
- -0.02851281128823757,
- 0.010157235898077488,
- -0.01760357804596424,
- -0.048202093690633774,
- -0.04247739166021347,
- -0.03321882337331772,
- 0.03161980211734772,
- -0.01772250048816204,
- 0.08154439926147461,
- 0.033969584852457047,
- 0.010837582871317863,
- 0.04662572219967842,
- 0.011752321384847164,
- -0.03433562442660332,
- -0.008668027818202972,
- -0.07502999156713486,
- -0.020989561453461647,
- -0.012520917691290379,
- -0.022407738491892815,
- -0.07921756058931351,
- 0.0034269888419657946,
- -0.043999817222356796,
- 0.054884813725948334,
- -0.00621794443577528,
- -0.05894704535603523,
- 0.00542939268052578,
- 0.028316842392086983,
- -0.01566360518336296,
- -0.0003525894717313349,
- 0.14810797572135925,
- 0.06927019357681274,
- -0.08382363617420197,
- 0.06856726855039597,
- 0.00928591936826706,
- -0.04392864555120468,
- -0.022034592926502228,
- 0.014608245342969894,
- -0.030019178986549377,
- -0.03789685666561127,
- -0.0676867663860321,
- -0.023195922374725342,
- -0.024440767243504524,
- 0.037414684891700745,
- -0.08844014257192612,
- -0.01012104470282793,
- -0.01094646006822586,
- 0.007690166588872671,
- -0.030177345499396324,
- -0.05026214197278023,
- -0.0036184738855808973,
- -0.024467848241329193,
- 0.021038221195340157,
- -0.06280837953090668,
- 0.016189109534025192,
- -0.054668668657541275,
- -0.01656508445739746,
- -0.035010673105716705,
- -0.04011937230825424,
- -0.008668146096169949,
- 0.03402918577194214,
- 0.051718905568122864,
- 0.27374067902565,
- 0.032877903431653976,
- 0.03726593032479286,
- 0.0019009832758456469,
- 0.04285771772265434,
- -0.08082114905118942,
- -0.07289958745241165,
- -0.03217032179236412,
- -0.05888072028756142,
- -0.030664628371596336,
- 0.01478162407875061,
- -0.01658030040562153,
- 0.0019754888489842415,
- -0.03589874133467674,
- 0.010714453645050526,
- -0.006569739896804094,
- 0.0922221690416336,
- -0.024913839995861053,
- 0.029883287847042084,
- -0.0322936475276947,
- -0.030382223427295685,
- 0.07842914015054703,
- 0.02566733956336975,
- 0.03911843150854111,
- 0.02904353477060795,
- -0.04210539534687996,
- -0.05485834553837776,
- 0.008881470188498497,
- -6.790063854636443e-33,
- 0.009242868050932884,
- -0.05418817698955536,
- 0.005864299833774567,
- 0.060475707054138184,
- 0.04834233224391937,
- 0.03568071126937866,
- 0.027109233662486076,
- -0.03987416997551918,
- -0.03172687813639641,
- 0.030077533796429634,
- 0.06361429393291473,
- 0.07183313369750977,
- -0.014119204133749008,
- 0.05126367509365082,
- 0.0956774652004242,
- 0.02756093069911003,
- -0.005308020394295454,
- 0.06993675976991653,
- -0.001586862257681787,
- -0.0529213584959507,
- -0.05904095992445946,
- -0.018664082512259483,
- -0.0000507348777318839,
- 0.025900844484567642,
- 0.020648330450057983,
- 0.066838338971138,
- -0.017620183527469635,
- -0.04277326166629791,
- 0.051371943205595016,
- 0.02425583265721798,
- 0.0674298107624054,
- 0.05788508802652359,
- 0.00452760886400938,
- -0.03482839837670326,
- -0.0025552415754646063,
- -0.017511771991848946,
- 0.001327793812379241,
- -0.10140819847583771,
- 0.09295599907636642,
- -0.0064735738560557365,
- 0.03334752470254898,
- -0.02789967879652977,
- -0.01689167134463787,
- -0.02710472233593464,
- -0.028332984074950218,
- 0.12232144922018051,
- 0.07973294705152512,
- 0.00873836874961853,
- 0.020292138680815697,
- 0.05197794735431671,
- 0.03963136300444603,
- -0.03994714096188545,
- -0.0934753566980362,
- -0.05749480053782463,
- 0.02722596749663353,
- -0.02906123362481594,
- -0.06186540424823761,
- -0.0006882065790705383,
- 0.028395960107445717,
- 0.0016682232962921262,
- 0.0020523464772850275,
- 0.15275919437408447,
- 0.001703660236671567,
- 0.07576754689216614,
- -0.058182910084724426,
- -0.05403260514140129,
- -0.011986547149717808,
- -0.06758113205432892,
- 0.09781810641288757,
- -0.004931991919875145,
- -0.10102430731058121,
- 0.03310482203960419,
- 0.053855378180742264,
- -0.07945287972688675,
- 0.07041128724813461,
- -0.03776704519987106,
- -0.022518254816532135,
- 0.04506115987896919,
- -0.04984632879495621,
- -0.0193257387727499,
- -0.09969767928123474,
- -0.03725450858473778,
- 0.048946257680654526,
- 0.014885779470205307,
- -0.00656290864571929,
- -0.0018562546465545893,
- -0.028341108933091164,
- 0.015468619763851166,
- 0.014418180100619793,
- 0.0037377015687525272,
- -0.03914502635598183,
- 0.04686436429619789,
- 0.057102371007204056,
- 0.05488204210996628,
- 0.009073288179934025,
- 4.422967206965757e-33,
- 0.035831231623888016,
- -0.0008523924043402076,
- -0.04428514465689659,
- 0.004681352525949478,
- 0.05348501354455948,
- -0.021027706563472748,
- 0.004156068433076143,
- 0.037481386214494705,
- -0.00755352945998311,
- 0.030534891411662102,
- -0.09525672346353531,
- 0.01600801572203636,
- 0.0021226799581199884,
- 0.006624769419431686,
- -0.0012374584330245852,
- -0.015246552415192127,
- 0.13092094659805298,
- 0.05543975904583931,
- 0.023009194061160088,
- -0.03774181008338928,
- -0.06081802397966385,
- -0.011949176900088787,
- 0.053426068276166916,
- -0.07850031554698944,
- -0.0544402189552784,
- 0.03588214889168739,
- 0.11358124017715454,
- -0.014096273109316826,
- 0.003924003802239895,
- -0.012173361144959927,
- 0.004967178218066692,
- -0.039907731115818024,
- -0.010745706968009472,
- 0.061606019735336304,
- -0.037617478519678116,
- 0.05911866948008537,
- 0.1216445192694664,
- 0.003393764840438962,
- -0.022168107330799103,
- -0.0018355714855715632,
- -0.0010583925759419799,
- -0.002579412655904889,
- -0.024930546060204506,
- 0.1480010449886322,
- 0.0038796134758740664,
- -0.05124408379197121,
- -0.09064788371324539,
- 0.017340775579214096,
- 0.052952542901039124,
- -0.02320491336286068,
- -0.07638140767812729,
- 0.027247000485658646,
- 0.01835428550839424,
- -0.12764810025691986,
- -0.031000524759292603,
- 0.03156875818967819,
- -0.08175244182348251,
- -0.017942029982805252,
- 0.007680132053792477,
- 0.03179536014795303,
- -0.026118356734514236,
- 0.04325559362769127,
- -0.12193337827920914,
- 0.004562313202768564,
- 0.02425382286310196,
- -0.03358679264783859,
- -0.03848661109805107,
- 0.015099898912012577,
- -0.06429070979356766,
- 0.022729070857167244,
- 0.030666228383779526,
- 0.032419364899396896,
- -0.07714761793613434,
- -0.034209318459033966,
- -0.04190714284777641,
- 0.012867819517850876,
- 0.04334326833486557,
- 0.0803157314658165,
- 0.033522482961416245,
- -0.08545182645320892,
- -0.10003169625997543,
- 0.007280869409441948,
- -0.006526552606374025,
- -0.0015034371754154563,
- 0.0335022434592247,
- 0.024597711861133575,
- -0.020918095484375954,
- 0.02343127503991127,
- -0.039262861013412476,
- 0.004059053026139736,
- 0.020707648247480392,
- -0.0037397006526589394,
- 0.0476766899228096,
- -0.07090381532907486,
- 0.058411795645952225,
- -1.2442156638314827e-8,
- 0.018098918721079826,
- 0.04167718067765236,
- 0.030224451795220375,
- -0.09851063042879105,
- 0.05776284262537956,
- -0.0026034850161522627,
- -0.03803357854485512,
- 0.019742215052247047,
- 0.0008036179351620376,
- -0.019062921404838562,
- -0.042784735560417175,
- -0.04289944842457771,
- 0.0015231861034408212,
- 0.026888182386755943,
- 0.053036320954561234,
- -0.06667613238096237,
- -0.07503170520067215,
- 0.018199574202299118,
- -0.09383021295070648,
- -0.02735777758061886,
- 0.020175864920020103,
- -0.01564597338438034,
- 0.09816648811101913,
- -0.0390116423368454,
- -0.07892307639122009,
- -0.008176228031516075,
- 0.04044356197118759,
- -0.02058299444615841,
- 0.02588832378387451,
- 0.009653402492403984,
- -0.06043637543916702,
- 0.09426707774400711,
- 0.005301281809806824,
- 0.014848423190414906,
- 0.08899855613708496,
- -0.057034268975257874,
- -0.03531666472554207,
- -0.0356743298470974,
- 0.008223306387662888,
- -0.08055578172206879,
- -0.04277040436863899,
- -0.06483194231987,
- 0.07103142142295837,
- -0.015247615985572338,
- 0.09374299645423889,
- 0.06797496229410172,
- 0.005859082099050283,
- -0.0991334393620491,
- -0.042036931961774826,
- -0.007922045886516571,
- -0.0770992711186409,
- -0.07326905429363251,
- 0.0065450519323349,
- 0.05859906226396561,
- 0.039399079978466034,
- 0.03344811871647835,
- 0.012423343025147915,
- -0.03022719919681549,
- 0.006237969733774662,
- 0.04257230833172798,
- 0.07352203875780106,
- 0.024882847443223,
- -0.09429921209812164,
- 0.06670527905225754
- ]
- },
- {
- "keyword": "concert",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.01318213902413845,
- 0.02705102227628231,
- 0.0012254085158929229,
- 0.003260405268520117,
- -0.12162227928638458,
- 0.08359581977128983,
- 0.06740566343069077,
- 0.0032142552081495523,
- 0.033750057220458984,
- -0.017865760251879692,
- 0.02029893361032009,
- -0.03773980587720871,
- 0.011178226210176945,
- -0.019175298511981964,
- 0.02523299679160118,
- -0.03990933671593666,
- 0.07601916044950485,
- -0.014652012847363949,
- -0.025882303714752197,
- -0.012669993564486504,
- -0.0704524964094162,
- 0.02693951688706875,
- -0.07014850527048111,
- 0.09924700111150742,
- -0.01513416226953268,
- 0.027301354333758354,
- -0.07204970717430115,
- 0.041497115045785904,
- 0.044490471482276917,
- -0.06743108481168747,
- 0.03421282395720482,
- 0.025954175740480423,
- -0.01854817010462284,
- -0.012205522507429123,
- -0.017365209758281708,
- 0.007293494883924723,
- -0.03365276753902435,
- -0.052996110171079636,
- -0.021157003939151764,
- 0.0408359095454216,
- 0.02982855960726738,
- -0.009448627009987831,
- -0.01717711240053177,
- -0.027200771495699883,
- -0.030619202181696892,
- -0.0227537602186203,
- 0.008719217963516712,
- -0.004765995778143406,
- 0.01180257461965084,
- 0.06844712793827057,
- 0.054128438234329224,
- -0.008386787958443165,
- 0.025578487664461136,
- -0.0550285167992115,
- 0.013687933795154095,
- 0.037227828055620193,
- -0.006013957783579826,
- -0.006218311842530966,
- 0.026974128559231758,
- 0.03236905485391617,
- 0.0022304472513496876,
- -0.02005728892982006,
- -0.08527275919914246,
- -0.022627828642725945,
- -0.07407397776842117,
- 0.002638429868966341,
- -0.001753352233208716,
- 0.06348976492881775,
- 0.04196123778820038,
- -0.012426638975739479,
- 0.031930111348629,
- 0.02244715206325054,
- 0.07312135398387909,
- -0.00423700176179409,
- 0.041344404220581055,
- 0.02060273103415966,
- -0.017255833372473717,
- -0.07423946261405945,
- 0.007275864947587252,
- 0.015151320956647396,
- 0.046322114765644073,
- -0.09876470267772675,
- -0.006314850877970457,
- -0.1269209086894989,
- 0.020206985995173454,
- -0.011588715948164463,
- 0.00022448506206274033,
- 0.0620332807302475,
- -0.08746326714754105,
- -0.003746122820302844,
- -0.08433111011981964,
- 0.0715821385383606,
- -0.0622701495885849,
- 0.0007913851295597851,
- -0.04413595050573349,
- 0.04514424875378609,
- -0.0017815920291468501,
- -0.0330096073448658,
- 0.08473355323076248,
- 0.23858611285686493,
- 0.054892461746931076,
- 0.10584081709384918,
- 0.0715680867433548,
- 0.015651436522603035,
- -0.02428562566637993,
- -0.07317972928285599,
- -0.027263475582003593,
- 0.1296808421611786,
- 0.01360458042472601,
- -0.07345655560493469,
- 0.007658625487238169,
- -0.010017254389822483,
- 0.031472496688365936,
- 0.01734120585024357,
- -0.015928052365779877,
- 0.04837304353713989,
- 0.0029685820918530226,
- 0.06849667429924011,
- 0.04685189947485924,
- -0.07526452839374542,
- -0.0018599273171275854,
- 0.02118954062461853,
- 0.035471394658088684,
- 0.05415792763233185,
- -0.09702969342470169,
- -0.04560165852308273,
- -0.02465636283159256,
- -5.150925144491075e-33,
- -0.003656854387372732,
- -0.1302427351474762,
- -0.026888540014624596,
- -0.03809346631169319,
- 0.056387629359960556,
- -0.00405533704906702,
- -0.09866397827863693,
- -0.024630742147564888,
- -0.0006253859610296786,
- 0.010858583264052868,
- 0.009565717540681362,
- -0.07952742278575897,
- 0.052640363574028015,
- -0.09364022314548492,
- 0.052386507391929626,
- -0.03376515209674835,
- -0.0021275640465319157,
- 0.0596281923353672,
- -0.07284948974847794,
- -0.08332409709692001,
- -0.08311039209365845,
- 0.033807408064603806,
- -0.03170344606041908,
- 0.06336567550897598,
- -0.006125482264906168,
- 0.02780758962035179,
- 0.03698220103979111,
- -0.043701913207769394,
- 0.06554797291755676,
- -0.005098193418234587,
- 0.008169787004590034,
- 0.02407265640795231,
- 0.029748328030109406,
- 0.017805909737944603,
- 0.059095412492752075,
- 0.08049416542053223,
- -0.0468224473297596,
- -0.03575826808810234,
- 0.00715284189209342,
- -0.036742568016052246,
- -0.011587976478040218,
- 0.013171501457691193,
- -0.062447626143693924,
- 0.025193344801664352,
- -0.07000080496072769,
- 0.1133720800280571,
- -0.047957584261894226,
- 0.056535862386226654,
- 0.11419734358787537,
- -0.036447007209062576,
- -0.022378407418727875,
- 0.004305446520447731,
- -0.030240081250667572,
- -0.014477834105491638,
- 0.06562774628400803,
- -0.02782616950571537,
- -0.019284088164567947,
- -0.00706917978823185,
- 0.05487426742911339,
- -0.015199710614979267,
- 0.016816526651382446,
- 0.1199965849518776,
- -0.039153289049863815,
- 0.03225240111351013,
- -0.017670607194304466,
- -0.019990224391222,
- 0.019177883863449097,
- -0.1349467933177948,
- 0.07980796694755554,
- -0.0653374120593071,
- -0.015614623203873634,
- 0.008417736738920212,
- 0.08617649227380753,
- -0.06640240550041199,
- 0.057200245559215546,
- -0.06028883159160614,
- -0.023767229169607162,
- 0.012952910736203194,
- 0.004862869158387184,
- 0.04373646900057793,
- 0.003675220999866724,
- 0.01736023835837841,
- 0.03807929530739784,
- 0.028478916734457016,
- 0.032378386706113815,
- 0.01673967018723488,
- -0.055103600025177,
- -0.035296730697155,
- -0.05011693760752678,
- 0.004182284232228994,
- -0.06792569905519485,
- 0.015481830574572086,
- -0.025665152817964554,
- 0.01148468628525734,
- 0.018874064087867737,
- 4.681384578972667e-33,
- 0.1320759356021881,
- 0.06178006902337074,
- 0.062020134180784225,
- 0.005138194654136896,
- 0.07775519788265228,
- 0.03440398722887039,
- -0.04080144688487053,
- 0.06102994456887245,
- -0.0028524594381451607,
- 0.003510957583785057,
- -0.03999413549900055,
- 0.005129586905241013,
- 0.038319528102874756,
- -0.0691935196518898,
- -0.01404974702745676,
- -0.04453646391630173,
- 0.07779699563980103,
- 0.015619969926774502,
- 0.030585553497076035,
- 0.042827799916267395,
- -0.06484995782375336,
- -0.03721928596496582,
- -0.0507022999227047,
- -0.036775846034288406,
- -0.07705400884151459,
- -0.014319061301648617,
- 0.07235351949930191,
- 0.023405736312270164,
- -0.0662035122513771,
- -0.020439492538571358,
- 0.032702572643756866,
- -0.008013186976313591,
- -0.038357339799404144,
- -0.02808315120637417,
- -0.009967771358788013,
- 0.14470559358596802,
- 0.052814383059740067,
- -0.006341780070215464,
- -0.11310876905918121,
- -0.08438795804977417,
- -0.04949011653661728,
- 0.020344631746411324,
- 0.07041043043136597,
- 0.12385758012533188,
- 0.03892470523715019,
- 0.01703237183392048,
- -0.03195400536060333,
- 0.08637777715921402,
- -0.018536711111664772,
- -0.041253093630075455,
- -0.1270769089460373,
- -0.034499529749155045,
- -0.0015782181872054935,
- -0.06101515516638756,
- 0.03725840523838997,
- 0.0196573156863451,
- -0.0398537777364254,
- -0.0660644918680191,
- -0.023983370512723923,
- 0.030543651431798935,
- 0.014746405184268951,
- 0.0010104875545948744,
- -0.0063313753344118595,
- 0.007369342725723982,
- -0.04768076539039612,
- 0.0680975690484047,
- 0.00011032092879759148,
- 0.03837716951966286,
- -0.0169578455388546,
- 0.06668776273727417,
- -0.015297306701540947,
- 0.019776085391640663,
- -0.03575599193572998,
- 0.01463573332875967,
- -0.08272017538547516,
- -0.039934635162353516,
- -0.044409967958927155,
- 0.038635384291410446,
- 0.024903859943151474,
- -0.031970083713531494,
- 0.04463579133152962,
- 0.04824104905128479,
- -0.03649112582206726,
- -0.03364338353276253,
- 0.0035864331293851137,
- 0.03618166968226433,
- 0.08281450718641281,
- 0.027348097413778305,
- -0.0371660552918911,
- 0.021031100302934647,
- 0.09575540572404861,
- -0.013106504455208778,
- -0.04619166627526283,
- -0.04226313903927803,
- 0.05882740020751953,
- -1.1282500267384421e-8,
- -0.010107822716236115,
- 0.10557772219181061,
- -0.1054936945438385,
- -0.020466744899749756,
- 0.004811201710253954,
- -0.02113834209740162,
- 0.05110030993819237,
- -0.029702212661504745,
- 0.04743772745132446,
- 0.03595556318759918,
- -0.008101551793515682,
- -0.0768471211194992,
- -0.028683634474873543,
- 0.02014612779021263,
- -0.03021116368472576,
- -0.0009806073503568769,
- -0.10417623817920685,
- 0.08534958958625793,
- -0.054646968841552734,
- 0.03193305432796478,
- -0.02520972676575184,
- 0.02744012512266636,
- 0.14988566935062408,
- -0.03618958592414856,
- 0.0835910439491272,
- -0.011870314367115498,
- 0.03018389269709587,
- 0.07482217252254486,
- 0.00015265776892192662,
- -0.03293708711862564,
- -0.011376705020666122,
- 0.04830075800418854,
- -0.0598347932100296,
- -0.003712048754096031,
- 0.06325875967741013,
- -0.07845572382211685,
- -0.048680901527404785,
- -0.002568838419392705,
- 0.0050221774727106094,
- 0.024043701589107513,
- -0.01485399343073368,
- 0.02456071227788925,
- 0.044213078916072845,
- 0.060587719082832336,
- -0.005953425075858831,
- 0.0084479209035635,
- 0.051069337874650955,
- 0.02109871804714203,
- -0.033140312880277634,
- -0.03991084545850754,
- -0.03853785991668701,
- -0.02153683267533779,
- -0.039507534354925156,
- -0.006563013885170221,
- -0.03636850789189339,
- 0.020349884405732155,
- 0.0029538702219724655,
- 0.07673538476228714,
- -0.02479410544037819,
- 0.04755096882581711,
- 0.03079659678041935,
- -0.008451289497315884,
- 0.03715425729751587,
- 0.025457460433244705
- ]
- },
- {
- "keyword": "performance",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.03158195689320564,
- 0.06225515529513359,
- -0.07176229357719421,
- 0.006259087473154068,
- -0.0364709235727787,
- 0.00011602553422562778,
- 0.07782221585512161,
- -0.002539635170251131,
- -0.015489868819713593,
- -0.02962568961083889,
- -0.043563637882471085,
- 0.03539247065782547,
- 0.03957407921552658,
- -0.04134359583258629,
- -0.010585516691207886,
- -0.01212267205119133,
- 0.1811382919549942,
- 0.01687353104352951,
- -0.08485130965709686,
- -0.04363057389855385,
- -0.03716736286878586,
- -0.07372163981199265,
- 0.043980564922094345,
- 0.027989262714982033,
- 0.0007301676087081432,
- 0.06889332085847855,
- -0.11380171775817871,
- 0.040225692093372345,
- 0.06209602952003479,
- -0.10211746394634247,
- -0.024283697828650475,
- -0.06447413563728333,
- 0.029410287737846375,
- 0.008058489300310612,
- -0.09323783963918686,
- 0.022900724783539772,
- 0.060768984258174896,
- -0.019103560596704483,
- 0.04420652985572815,
- -0.009665410034358501,
- -0.01912810653448105,
- -0.06321008503437042,
- 0.03392180800437927,
- -0.01714940555393696,
- 0.024277156218886375,
- 0.0018991047982126474,
- 0.009971844963729382,
- -0.01941978558897972,
- -0.05987026169896126,
- -0.02210717648267746,
- -0.08339447528123856,
- -0.0038985200226306915,
- -0.021024705842137337,
- -0.048192400485277176,
- -0.013382477685809135,
- 0.06301335990428925,
- -0.004001879598945379,
- -0.02479085698723793,
- -0.01775174029171467,
- -0.048778634518384933,
- 0.0381295308470726,
- -0.013598970137536526,
- -0.044190458953380585,
- 0.04665730148553848,
- 0.10944679379463196,
- -0.059001289308071136,
- 0.04358532652258873,
- -0.025336187332868576,
- -0.015560111962258816,
- 0.008548055775463581,
- -0.029304975643754005,
- 0.04291519150137901,
- -0.00007770524098305032,
- 0.019603323191404343,
- 0.03649009019136429,
- -0.0328846275806427,
- -0.0026646412443369627,
- -0.04342532902956009,
- 0.05066824331879616,
- -0.042058639228343964,
- 0.08004304766654968,
- -0.07848846167325974,
- -0.09014029055833817,
- -0.03208606317639351,
- 0.029402008280158043,
- -0.03901958838105202,
- 0.04954491928219795,
- -0.010019858367741108,
- -0.038750290870666504,
- -0.019593333825469017,
- 0.02335992641746998,
- 0.0496131107211113,
- 0.00982716865837574,
- -0.009548161178827286,
- -0.02227139286696911,
- 0.068416066467762,
- 0.014634369872510433,
- -0.08032979816198349,
- 0.0029362402856349945,
- 0.23929011821746826,
- 0.05738823860883713,
- 0.086151622235775,
- -0.03625272214412689,
- -0.00527661107480526,
- -0.035164255648851395,
- -0.03481762483716011,
- 0.05581154301762581,
- 0.11756087094545364,
- -0.03244434669613838,
- 0.016738776117563248,
- 0.03287504240870476,
- -0.023261988535523415,
- -0.09783964604139328,
- 0.03498588502407074,
- 0.025969766080379486,
- 0.027908196672797203,
- -0.08269506692886353,
- 0.06226252019405365,
- 0.06702140718698502,
- 0.06016130372881889,
- 0.01718144305050373,
- -0.03426048532128334,
- 0.01773757115006447,
- -0.04945266246795654,
- -0.030925679951906204,
- -0.010521741583943367,
- -0.007009484805166721,
- -3.291037778810897e-33,
- -0.02711901068687439,
- -0.07503672689199448,
- 0.01957063004374504,
- 0.0013362939935177565,
- -0.044293321669101715,
- -0.006863325834274292,
- -0.08987528085708618,
- -0.03979378566145897,
- -0.015493783168494701,
- 0.006466538645327091,
- -0.05349601060152054,
- -0.015249879099428654,
- -0.010631844401359558,
- 0.05340072512626648,
- 0.16405926644802094,
- -0.025387082248926163,
- 0.03148770332336426,
- 0.07627738267183304,
- -0.028189731761813164,
- 0.05560722574591637,
- 0.03848869353532791,
- 0.019175076857209206,
- -0.04147731885313988,
- 0.05287246033549309,
- 0.06287050247192383,
- 0.06577413529157639,
- 0.003953786101192236,
- -0.025559861212968826,
- -0.06216742843389511,
- 0.028908265754580498,
- 0.0124547453597188,
- -0.024527795612812042,
- -0.10049458593130112,
- -0.0254090316593647,
- 0.045800428837537766,
- -0.010037840344011784,
- -0.004452791064977646,
- -0.01944991946220398,
- 0.08884982019662857,
- 0.02939033880829811,
- -0.08390171080827713,
- 0.03303447365760803,
- -0.008030442520976067,
- -0.046007122844457626,
- -0.08445072174072266,
- 0.05041686072945595,
- -0.011378307826817036,
- 0.043413907289505005,
- -0.04969372600317001,
- 0.06814762204885483,
- -0.012545406818389893,
- 0.02622774802148342,
- -0.05633990839123726,
- 0.029950108379125595,
- 0.08569484949111938,
- 0.027893351390957832,
- 0.06002621725201607,
- 0.017583642154932022,
- -0.000263211753917858,
- 0.07769125699996948,
- -0.0009761875844560564,
- 0.03831174597144127,
- -0.10571973770856857,
- -0.038988858461380005,
- -0.06183963268995285,
- -0.007923244498670101,
- 0.008386269211769104,
- -0.042590875178575516,
- 0.02654961496591568,
- -0.029249293729662895,
- -0.04933010786771774,
- -0.07851136475801468,
- 0.08313731849193573,
- -0.018753239884972572,
- 0.07389026880264282,
- -0.04271245002746582,
- -0.020161861553788185,
- -0.005500223487615585,
- -0.0659065991640091,
- -0.03190460056066513,
- -0.10947678983211517,
- 0.05787840113043785,
- -0.016527151688933372,
- -0.09470486640930176,
- 0.018725020810961723,
- -0.0028504750225692987,
- 0.01327501144260168,
- -0.03799537569284439,
- 0.00532609224319458,
- 0.08970873802900314,
- -0.058207497000694275,
- 0.036907706409692764,
- -0.015632355585694313,
- 0.019983600825071335,
- -0.06861510872840881,
- 3.1211468863644136e-33,
- -0.012183831073343754,
- -0.020795393735170364,
- 0.004134237300604582,
- 0.12943200767040253,
- 0.012190384790301323,
- 0.004945893306285143,
- -0.018902109935879707,
- -0.031106827780604362,
- -0.0573107972741127,
- 0.005806820932775736,
- -0.059363819658756256,
- 0.013731184415519238,
- 0.022746047005057335,
- 0.01633146032691002,
- -0.023433445021510124,
- -0.012359816581010818,
- 0.050823647528886795,
- -0.04330039769411087,
- 0.025641756132245064,
- -0.02229061909019947,
- 0.001997851999476552,
- 0.04281420260667801,
- 0.010270601138472557,
- -0.04690253734588623,
- -0.1014384776353836,
- 0.05119919776916504,
- -0.06275609880685806,
- -0.012015681713819504,
- -0.0391579307615757,
- -0.11890362203121185,
- 0.04034555330872536,
- -0.0399814210832119,
- -0.05305780470371246,
- 0.05530872568488121,
- -0.009471488185226917,
- 0.02781418152153492,
- 0.06492427736520767,
- -0.03909711912274361,
- -0.014744149520993233,
- -0.016973836347460747,
- 0.08318229019641876,
- 0.029226649552583694,
- -0.05666990578174591,
- 0.1019471064209938,
- -0.0004914247547276318,
- 0.046403102576732635,
- -0.058553390204906464,
- -0.04192893207073212,
- 0.018473973497748375,
- 0.07068835943937302,
- 0.011847603134810925,
- -0.003982651047408581,
- -0.041097160428762436,
- -0.004059580620378256,
- -0.037861742079257965,
- -0.04495910555124283,
- -0.024869469925761223,
- -0.06316258758306503,
- -0.034954823553562164,
- 0.04967546463012695,
- 0.009065735153853893,
- 0.015355347655713558,
- -0.05915858969092369,
- 0.06811390817165375,
- 0.03195222467184067,
- 0.026400860399007797,
- -0.01056252047419548,
- -0.04011308401823044,
- 0.0751732885837555,
- 0.09240636229515076,
- -0.021691974252462387,
- -0.005337151698768139,
- -0.06954361498355865,
- 0.056508760899305344,
- -0.09671960026025772,
- 0.01410084031522274,
- -0.031767237931489944,
- 0.0250929594039917,
- -0.023887669667601585,
- 0.04988546669483185,
- -0.09620767831802368,
- 0.01670263335108757,
- -0.04413708299398422,
- -0.039633527398109436,
- -0.1019866019487381,
- 0.05808655545115471,
- 0.03110632486641407,
- -0.007741723675280809,
- -0.02834153175354004,
- -0.03707233816385269,
- 0.09854353964328766,
- 0.06352072954177856,
- -0.07182832062244415,
- 0.002976308111101389,
- -0.005581777077168226,
- -1.1969848223714052e-8,
- -0.002096363343298435,
- -0.016796011477708817,
- 0.06357286870479584,
- 0.02401898242533207,
- -0.0020220200531184673,
- 0.003440192434936762,
- -0.004751438274979591,
- 0.05512043461203575,
- 0.014344550669193268,
- 0.03317754715681076,
- 0.1372702717781067,
- -0.08613276481628418,
- -0.0004844942595809698,
- 0.01385778933763504,
- 0.12492220848798752,
- 0.02807328850030899,
- -0.0294534619897604,
- 0.08981291204690933,
- -0.0893034040927887,
- 0.017799973487854004,
- 0.0338011272251606,
- 0.08850101381540298,
- 0.0016647903248667717,
- -0.03159654140472412,
- -0.02414868026971817,
- 0.02761819027364254,
- 0.030131589621305466,
- 0.0573917031288147,
- -0.045795198529958725,
- 0.0019383288454264402,
- 0.014411534182727337,
- 0.06969178467988968,
- 0.003452372271567583,
- -0.06983618438243866,
- 0.04382087290287018,
- 0.0029270921368151903,
- -0.022711217403411865,
- 0.020514141768217087,
- 0.06920277327299118,
- 0.05750003457069397,
- 0.004196383524686098,
- -0.01810283400118351,
- 0.014930169098079205,
- 0.038859304040670395,
- 0.03353683277964592,
- -0.039598118513822556,
- -0.07089162617921829,
- -0.00042780194780789316,
- -0.024719035252928734,
- -0.03144584968686104,
- -0.005732525605708361,
- 0.002874189056456089,
- -0.032203905284404755,
- 0.04841072857379913,
- 0.04538977891206741,
- 0.03354543447494507,
- 0.025241507217288017,
- -0.01126974169164896,
- -0.028319133445620537,
- 0.05958173796534538,
- 0.10835907608270645,
- -0.04970446601510048,
- 0.002691730158403516,
- 0.05337115749716759
- ]
- },
- {
- "keyword": "show",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.112435482442379,
- 0.05865592509508133,
- 0.05051139369606972,
- 0.0007292026421055198,
- 0.0010339964646846056,
- 0.04420213773846626,
- 0.1075989380478859,
- 0.017365431413054466,
- 0.01545853540301323,
- -0.02348601445555687,
- -0.0612502358853817,
- -0.11867643892765045,
- 0.0550277903676033,
- 0.05008348450064659,
- -0.07563424110412598,
- -0.007641833741217852,
- 0.03656786307692528,
- -0.04157982021570206,
- -0.02772560901939869,
- -0.0007541333907283843,
- 0.011454765684902668,
- 0.045978471636772156,
- -0.041922904551029205,
- 0.052282217890024185,
- -0.019854741171002388,
- 0.033659279346466064,
- -0.040602803230285645,
- 0.07772345095872879,
- 0.029789799824357033,
- -0.07698316127061844,
- -0.007628981024026871,
- 0.03334440290927887,
- 0.09107756614685059,
- 0.028080355376005173,
- 0.01946166530251503,
- 0.05734306946396828,
- 0.058519139885902405,
- -0.0227876715362072,
- -0.03234894573688507,
- -0.029404116794466972,
- 0.04807255417108536,
- -0.08185900002717972,
- -0.019575225189328194,
- -0.06704110652208328,
- 0.005399791058152914,
- -0.03783469647169113,
- 0.056716062128543854,
- 0.03362461179494858,
- 0.029730329290032387,
- 0.034935519099235535,
- -0.044973574578762054,
- 0.002943335799500346,
- -0.018085943534970284,
- -0.07860738039016724,
- -0.02228987030684948,
- -0.02174544334411621,
- -0.018627893179655075,
- 0.03680538758635521,
- -0.039777226746082306,
- -0.005243558436632156,
- 0.06821141391992569,
- 0.012600504793226719,
- 0.032239969819784164,
- 0.06704747676849365,
- -0.04228229075670242,
- 0.03562617674469948,
- 0.06228029727935791,
- -0.000649521651212126,
- -0.01231906283646822,
- 0.00876061525195837,
- 0.01662883348762989,
- 0.050715189427137375,
- 0.011337711475789547,
- -0.018771547824144363,
- 0.011387893930077553,
- -0.015759916976094246,
- -0.02963363565504551,
- -0.08972350507974625,
- 0.005758804269134998,
- 0.026377147063612938,
- 0.015019146725535393,
- -0.038000501692295074,
- -0.03089039772748947,
- 0.0683455690741539,
- -0.015916282311081886,
- -0.058712609112262726,
- -0.02710253745317459,
- -0.07216280698776245,
- -0.04033765569329262,
- 0.01930168829858303,
- -0.04204576462507248,
- 0.04007399082183838,
- 0.002379341283813119,
- -0.03419134020805359,
- -0.10192447155714035,
- -0.03869366645812988,
- 0.004088221583515406,
- 0.025751939043402672,
- 0.019704189151525497,
- 0.31985825300216675,
- -0.00042452779598534107,
- 0.01781325414776802,
- 0.017481612041592598,
- -0.01837642677128315,
- -0.07126416265964508,
- -0.031775739043951035,
- -0.0213613361120224,
- 0.07122519612312317,
- 0.013820147141814232,
- 0.009379473514854908,
- -0.04475266486406326,
- -0.012720701284706593,
- 0.03671814873814583,
- 0.06081407144665718,
- 0.0634547770023346,
- -0.018687952309846878,
- 0.0068170963786542416,
- 0.03584146872162819,
- 0.030302245169878006,
- -0.08194945007562637,
- 0.10458897054195404,
- -0.017509300261735916,
- 0.017543073743581772,
- 0.03282228484749794,
- -0.033080123364925385,
- -0.03926478326320648,
- 0.03144659474492073,
- -3.774551666082721e-33,
- 0.021734565496444702,
- -0.13312628865242004,
- 0.0004442573117557913,
- 0.021395836025476456,
- -0.046588197350502014,
- 0.04965676739811897,
- -0.008800541050732136,
- -0.01807052083313465,
- -0.0017448588041588664,
- 0.08129553496837616,
- 0.10074185580015182,
- 0.06501169502735138,
- -0.0056397276930511,
- 0.0070090764202177525,
- 0.035934146493673325,
- 0.06252552568912506,
- 0.052425969392061234,
- -0.044194430112838745,
- -0.04699057340621948,
- -0.0253163892775774,
- -0.059881459921598434,
- 0.05913528427481651,
- -0.016827741637825966,
- -0.004813651088625193,
- 0.008929941803216934,
- -0.04921580106019974,
- 0.03913912549614906,
- -0.10802964121103287,
- -0.024509411305189133,
- -0.01093978714197874,
- 0.05209307745099068,
- 0.02377021498978138,
- 0.011353778652846813,
- -0.032265059649944305,
- -0.039580583572387695,
- -0.027141084894537926,
- 0.03604049235582352,
- -0.050503600388765335,
- 0.04368709772825241,
- 0.02376391552388668,
- 0.029640410095453262,
- -0.02738720364868641,
- -0.024561511352658272,
- 0.006862884387373924,
- 0.01570817455649376,
- 0.08750011026859283,
- 0.10438554733991623,
- 0.09549432247877121,
- -0.09794174134731293,
- 0.024213047698140144,
- 0.011434697546064854,
- -0.04738066345453262,
- -0.014644871465861797,
- 0.0031861073803156614,
- -0.00030636179144494236,
- -0.023390362039208412,
- -0.03888658061623573,
- 0.022366302087903023,
- -0.0073740119114518166,
- 0.009728072211146355,
- 0.028178885579109192,
- 0.035572510212659836,
- 0.056741416454315186,
- 0.03976385295391083,
- -0.1135808601975441,
- -0.028609896078705788,
- 0.04854154959321022,
- -0.03781184181571007,
- -0.011050487868487835,
- 0.01172481570392847,
- -0.11508189141750336,
- 0.03342829644680023,
- 0.017224742099642754,
- -0.0017075834330171347,
- 0.020457470789551735,
- -0.05549651384353638,
- -0.0019225423457100987,
- -0.03496409207582474,
- 0.009106196463108063,
- 0.05766383931040764,
- 0.0988021045923233,
- -0.039233069866895676,
- -0.0163616593927145,
- -0.028794635087251663,
- 0.046300217509269714,
- -0.025417614728212357,
- -0.03609630838036537,
- -0.05824939161539078,
- 0.007218309678137302,
- 0.046636052429676056,
- -0.05779433995485306,
- -0.03890254348516464,
- 0.12102784961462021,
- 0.06468896567821503,
- -0.03161405771970749,
- 2.760573912483262e-33,
- -0.012410172261297703,
- 0.017229413613677025,
- -0.03627055510878563,
- -0.0004872291465289891,
- 0.014753805473446846,
- -0.06409993022680283,
- 0.036499012261629105,
- 0.02192585915327072,
- -0.08446819335222244,
- 0.10338997840881348,
- 0.0329277329146862,
- -0.01687680557370186,
- -0.03211439028382301,
- 0.027067212387919426,
- -0.021757327020168304,
- 0.034520223736763,
- 0.09044931828975677,
- 0.01874985732138157,
- 0.06279512494802475,
- 0.044782187789678574,
- -0.11264944076538086,
- 0.03696798160672188,
- -0.06752992421388626,
- 0.010081400163471699,
- -0.0666915774345398,
- 0.003943255171179771,
- 0.1617191880941391,
- 0.033817484974861145,
- -0.004296408966183662,
- -0.012875659391283989,
- 0.04466133192181587,
- 0.04025174677371979,
- -0.04905956611037254,
- -0.03367685154080391,
- -0.006618478801101446,
- 0.08663467317819595,
- 0.1126575842499733,
- -0.007605456281453371,
- -0.049006376415491104,
- 0.01716020703315735,
- 0.04166971147060394,
- -0.025265326723456383,
- 0.012777447700500488,
- 0.06781495362520218,
- -0.04150760546326637,
- -0.007292158901691437,
- 0.02976205013692379,
- -0.0021801162511110306,
- 0.0031430211383849382,
- 0.016747428104281425,
- -0.10334138572216034,
- -0.01883898302912712,
- -0.007070607040077448,
- -0.07330898940563202,
- -0.05958317220211029,
- -0.004949709866195917,
- 0.013995970599353313,
- -0.008198804222047329,
- -0.03351407125592232,
- -0.018034523352980614,
- -0.004815584979951382,
- 0.017100540921092033,
- -0.014235888607800007,
- -0.038122594356536865,
- 0.020489003509283066,
- -0.005118768196552992,
- -0.04557636007666588,
- 0.008202498778700829,
- 0.03587311878800392,
- 0.009405521675944328,
- -0.031785108149051666,
- -0.007959271781146526,
- -0.0375969223678112,
- -0.023340124636888504,
- 0.012749520130455494,
- 0.03277077153325081,
- -0.08839786052703857,
- 0.018918143585324287,
- 0.0683734193444252,
- -0.002916436642408371,
- -0.015395891852676868,
- -0.026863301172852516,
- -0.056850630789995193,
- -0.04118696227669716,
- -0.06100274622440338,
- -0.035216640681028366,
- 0.047321170568466187,
- 0.01696869172155857,
- -0.04947028309106827,
- -0.002493998035788536,
- 0.0032737564761191607,
- -0.001766475266776979,
- 0.0340278297662735,
- -0.042700402438640594,
- -0.015960363671183586,
- -1.356930123819211e-8,
- -0.049362652003765106,
- 0.02755817025899887,
- 0.10028105229139328,
- -0.0955958440899849,
- 0.06123822182416916,
- 0.05252080038189888,
- 0.05138171464204788,
- -0.0017059722449630499,
- 0.02286205068230629,
- -0.059839632362127304,
- 0.040259283035993576,
- -0.021750159561634064,
- 0.00765557587146759,
- 0.029536684975028038,
- 0.16376706957817078,
- -0.12192685157060623,
- -0.11139873415231705,
- 0.0012164473300799727,
- -0.05733513459563255,
- 0.04269435256719589,
- -0.051308292895555496,
- -0.012372374534606934,
- -0.008524307981133461,
- -0.01499515026807785,
- -0.04121188446879387,
- -0.049423523247241974,
- -0.054149080067873,
- 0.09636452794075012,
- 0.040696050971746445,
- 0.038840603083372116,
- 0.00585557147860527,
- -0.02249612845480442,
- -0.020280493423342705,
- -0.01597493328154087,
- 0.0423184372484684,
- -0.08124072849750519,
- -0.020391400903463364,
- 0.01776108704507351,
- 0.05014556273818016,
- 0.08024973422288895,
- -0.0566425621509552,
- -0.03431941196322441,
- 0.10114971548318863,
- -0.013448607176542282,
- -0.08012805879116058,
- 0.0029524846468120813,
- 0.03891370818018913,
- -0.06493538618087769,
- -0.039511628448963165,
- -0.04419054090976715,
- -0.07748030871152878,
- -0.016331838443875313,
- 0.03140836954116821,
- 0.019868753850460052,
- 0.043209273368120193,
- 0.03901965543627739,
- 0.03266563639044762,
- 0.038509197533130646,
- -0.08545380085706711,
- 0.03138053044676781,
- 0.07951384782791138,
- 0.04362940415740013,
- 0.006106150336563587,
- 0.05307311192154884
- ]
- },
- {
- "keyword": "game",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03203611075878143,
- 0.046637218445539474,
- -0.07453113794326782,
- -0.03740636631846428,
- -0.028841381892561913,
- -0.05229956656694412,
- 0.13592790067195892,
- 0.026105595752596855,
- -0.0017117309616878629,
- 0.05278352275490761,
- -0.01265969779342413,
- -0.07680261880159378,
- 0.012583490461111069,
- -0.0638117864727974,
- -0.008862989023327827,
- 0.01251989882439375,
- -0.03782961517572403,
- -0.01520991325378418,
- -0.07104415446519852,
- -0.009079767391085625,
- -0.06375036388635635,
- 0.02589498832821846,
- -0.01113249734044075,
- 0.024258041754364967,
- 0.00033997982973232865,
- 0.06257588416337967,
- 0.011508479714393616,
- 0.07139946520328522,
- -0.04006234183907509,
- -0.09263855218887329,
- -0.015383456833660603,
- 0.0022775728721171618,
- 0.09984902292490005,
- -0.017802702262997627,
- -0.11045224964618683,
- -0.004592784680426121,
- -0.07037457823753357,
- -0.05208660289645195,
- 0.0012603446375578642,
- 0.0026855235919356346,
- -0.02823173813521862,
- -0.08644437044858932,
- -0.029978813603520393,
- 0.01811295561492443,
- -0.011525842361152172,
- 0.0582212395966053,
- -0.022009866312146187,
- 0.04423478618264198,
- 0.06765829771757126,
- 0.026653291657567024,
- -0.03363310173153877,
- 0.02394231967628002,
- 0.01256145816296339,
- 0.016341716051101685,
- 0.01257180143147707,
- 0.0573747344315052,
- -0.0031025141943246126,
- 0.05467517301440239,
- 0.005754553712904453,
- 0.002420424949377775,
- 0.08861230313777924,
- -0.0331638865172863,
- -0.05119580030441284,
- 0.049403462558984756,
- 0.03218359500169754,
- -0.01601565070450306,
- 0.05510233715176582,
- 0.016295097768306732,
- -0.03186734765768051,
- -0.07055025547742844,
- 0.050653763115406036,
- 0.001726047950796783,
- 0.034224867820739746,
- -0.060412269085645676,
- 0.03525994345545769,
- 0.058865658938884735,
- -0.0026481146924197674,
- -0.05568565055727959,
- 0.052928000688552856,
- 0.03426631540060043,
- 0.02500462904572487,
- -0.021232876926660538,
- -0.07044015824794769,
- 0.058386918157339096,
- -0.00914674624800682,
- -0.039586182683706284,
- -0.024848895147442818,
- 0.058738600462675095,
- 0.0513470359146595,
- 0.03366999328136444,
- -0.09114076942205429,
- 0.0043786391615867615,
- 0.14610174298286438,
- 0.04706902056932449,
- -0.08831226825714111,
- 0.017861615866422653,
- 0.010816697962582111,
- -0.0930294468998909,
- -0.01697809435427189,
- 0.24362166225910187,
- -0.0033575333654880524,
- 0.0337374284863472,
- 0.012868556194007397,
- 0.008429596200585365,
- 0.04458557069301605,
- 0.060530390590429306,
- -0.13316859304904938,
- 0.06374722719192505,
- -0.02920343540608883,
- -0.01825912483036518,
- -0.05025263503193855,
- -0.03981201350688934,
- 0.015902506187558174,
- 0.018288984894752502,
- 0.009690477512776852,
- 0.06342123448848724,
- -0.04676041379570961,
- 0.02009020932018757,
- -0.0419655479490757,
- -0.011087464168667793,
- 0.09233278036117554,
- -0.02834867499768734,
- 0.02089989371597767,
- -0.015417860820889473,
- -0.05502060055732727,
- 0.014733660034835339,
- 0.023284992203116417,
- -3.241781994117551e-33,
- 0.02258901298046112,
- -0.06656062602996826,
- 0.042444199323654175,
- 0.08750373125076294,
- 0.0036236541345715523,
- 0.0029610195197165012,
- 0.06697139889001846,
- -0.04113316535949707,
- -0.05990741401910782,
- 0.077202707529068,
- -0.07760607451200485,
- 0.016846904531121254,
- -0.02364656701683998,
- 0.006455305963754654,
- 0.14472414553165436,
- 0.02347949519753456,
- -0.022245552390813828,
- 0.048134271055459976,
- -0.003320997580885887,
- 0.018789272755384445,
- -0.024702198803424835,
- 0.014500929974019527,
- -0.012567507103085518,
- 0.03392385318875313,
- -0.020519763231277466,
- 0.028124716132879257,
- -0.04031212255358696,
- -0.08190572261810303,
- 0.0496395081281662,
- -0.011011353693902493,
- 0.0318744033575058,
- -0.00518287206068635,
- -0.04915657266974449,
- 0.013626368716359138,
- 0.004098641220480204,
- -0.06937860697507858,
- -0.015573830343782902,
- -0.04259845241904259,
- -0.05080901458859444,
- -0.009787221439182758,
- -0.005389598198235035,
- 0.038039591163396835,
- -0.037054866552352905,
- 0.03181378170847893,
- -0.010166216641664505,
- -0.042844220995903015,
- 0.057550836354494095,
- -0.048586536198854446,
- -0.12134041637182236,
- 0.03506077080965042,
- -0.014567350968718529,
- -0.02534199319779873,
- -0.053440142422914505,
- 0.005947041790932417,
- -0.04463902860879898,
- -0.047269053757190704,
- 0.0069779641926288605,
- -0.07849179208278656,
- -0.0424778014421463,
- -0.03136718273162842,
- 0.09514660388231277,
- 0.023487377911806107,
- 0.0255318284034729,
- 0.002444201149046421,
- -0.0006360835395753384,
- -0.02006763592362404,
- 0.03901169076561928,
- -0.017074808478355408,
- 0.03912036865949631,
- -0.03576184809207916,
- 0.040835656225681305,
- 0.048243116587400436,
- 0.08950212597846985,
- 0.022077780216932297,
- 0.011155405081808567,
- 0.029966576024889946,
- 0.042376209050416946,
- 0.04374856501817703,
- -0.059808749705553055,
- -0.062132980674505234,
- -0.02756572887301445,
- -0.06027834489941597,
- -0.06880365312099457,
- -0.019158991053700447,
- 0.0005884887650609016,
- 0.032359812408685684,
- -0.011972520500421524,
- -0.06207731366157532,
- 0.0013933646259829402,
- 0.008679640479385853,
- -0.13525976240634918,
- 0.0454631969332695,
- 0.05652906000614166,
- 0.03072446584701538,
- 0.018179768696427345,
- 2.4306886879982646e-33,
- -0.04403785988688469,
- -0.06097469851374626,
- -0.05703166872262955,
- 0.018084336072206497,
- 0.037140216678380966,
- -0.03903084993362427,
- -0.011568635702133179,
- 0.028554825112223625,
- 0.027375368401408195,
- 0.06265527009963989,
- -0.08156641572713852,
- 0.07147930562496185,
- 0.0528569296002388,
- 0.04751564934849739,
- -0.004090895876288414,
- -0.02951928973197937,
- 0.08795688301324844,
- -0.041759565472602844,
- 0.011846574954688549,
- -0.015082108788192272,
- -0.01552217360585928,
- -0.03607259318232536,
- 0.010211704298853874,
- -0.0741182416677475,
- -0.00777099933475256,
- 0.001205011853016913,
- 0.10400895029306412,
- -0.049176834523677826,
- -0.005379935726523399,
- 0.06478738784790039,
- 0.06679541617631912,
- 0.010507293976843357,
- -0.006166549865156412,
- -0.0289821345359087,
- 0.00418104836717248,
- 0.11334278434515,
- 0.1165996566414833,
- 0.006295816041529179,
- -0.048790786415338516,
- -0.031353071331977844,
- 0.03269055113196373,
- -0.004799929913133383,
- -0.08713524043560028,
- 0.1571497619152069,
- -0.06081165373325348,
- 0.09191343188285828,
- 0.010509373620152473,
- 0.01393981371074915,
- 0.06300923228263855,
- 0.02999592013657093,
- -0.018310975283384323,
- 0.01272047869861126,
- -0.0028176046907901764,
- -0.05717427656054497,
- -0.10637056082487106,
- -0.03582577034831047,
- -0.09614420682191849,
- 0.0257523562759161,
- -0.011832940392196178,
- 0.06510761380195618,
- 0.058123644441366196,
- 0.031449854373931885,
- -0.05200358107686043,
- 0.0888558030128479,
- -0.0013991985470056534,
- 0.07523605227470398,
- -0.034365762025117874,
- 0.017174312844872475,
- 0.08561337739229202,
- -0.012834007851779461,
- -0.07463427633047104,
- 0.07261980324983597,
- -0.0538477897644043,
- 0.03506065160036087,
- -0.03979015350341797,
- 0.025937216356396675,
- -0.0913691371679306,
- 0.05685251206159592,
- 0.0254006739705801,
- 0.02032618038356304,
- -0.032125771045684814,
- -0.016873549669981003,
- -0.058479614555835724,
- 0.031292874366045,
- -0.07084828615188599,
- 0.0009590540430508554,
- 0.06289941072463989,
- 0.07443027943372726,
- -0.038133349269628525,
- -0.06484434753656387,
- -0.0011909049935638905,
- 0.0423302948474884,
- 0.010429294779896736,
- 0.004615900106728077,
- -0.016792403534054756,
- -1.2477042510283809e-8,
- -0.001306122518144548,
- 0.019947541877627373,
- 0.015317806042730808,
- -0.06690853834152222,
- 0.05127321556210518,
- 0.09122014045715332,
- -0.07691573351621628,
- 0.02248207852244377,
- 0.012324171140789986,
- 0.033060066401958466,
- 0.01030503399670124,
- 0.051629941910505295,
- 0.04810220003128052,
- 0.04245494678616524,
- 0.0940849781036377,
- -0.024249210953712463,
- -0.01698688603937626,
- -0.030697209760546684,
- -0.05055181682109833,
- 0.04711088910698891,
- -0.008577806875109673,
- -0.015382630750536919,
- 0.02198326587677002,
- -0.029108906164765358,
- -0.05956282839179039,
- -0.00907394289970398,
- -0.02029629983007908,
- 0.07533656805753708,
- 0.02959338203072548,
- -0.02925592102110386,
- 0.07032502442598343,
- 0.08604497462511063,
- 0.016009682789444923,
- -0.003702607238665223,
- 0.03792021796107292,
- 0.01799827814102173,
- 0.013875121250748634,
- 0.047375019639730453,
- 0.030757760629057884,
- 0.007072365377098322,
- -0.04125029966235161,
- -0.039455756545066833,
- 0.010569793172180653,
- -0.07645166665315628,
- -0.049601610749959946,
- 0.039175476878881454,
- 0.0069748894311487675,
- -0.05398722365498543,
- -0.04000409319996834,
- -0.09254410862922668,
- -0.05398063361644745,
- 0.03595569729804993,
- -0.04302443563938141,
- -0.009578321129083633,
- 0.11511248350143433,
- 0.023170823231339455,
- -0.004739193245768547,
- 0.06818292289972305,
- -0.0024292769376188517,
- 0.01903318613767624,
- 0.10602254420518875,
- 0.021396711468696594,
- -0.08348212391138077,
- 0.007460379041731358
- ]
- },
- {
- "keyword": "match",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08211083710193634,
- 0.09230761975049973,
- 0.0009974915301427245,
- -0.014228609390556812,
- 0.04377276450395584,
- 0.046283502131700516,
- 0.11816617846488953,
- 0.017037972807884216,
- 0.12302909046411514,
- 0.013551117852330208,
- -0.06130507215857506,
- -0.13546067476272583,
- -0.0007285646861419082,
- 0.05966995283961296,
- -0.01274238619953394,
- -0.009959446266293526,
- -0.04044363275170326,
- 0.013469408266246319,
- -0.05418400093913078,
- 0.007705604191869497,
- -0.012372074648737907,
- -0.009385661222040653,
- -0.03270551934838295,
- -0.045714911073446274,
- -0.021511239930987358,
- 0.006677540019154549,
- -0.058245543390512466,
- -0.008937000297009945,
- -0.0036518436390906572,
- -0.06304169446229935,
- 0.04640874266624451,
- -0.021552816033363342,
- 0.06848330050706863,
- 0.04865109175443649,
- -0.10262256860733032,
- -0.04778437688946724,
- -0.05918635055422783,
- -0.01829981431365013,
- 0.007899988442659378,
- 0.0030068696942180395,
- -0.03892936557531357,
- -0.10571835935115814,
- -0.005889981985092163,
- -0.013681785203516483,
- 0.06290695816278458,
- 0.05229518935084343,
- 0.01690131239593029,
- 0.05288195237517357,
- -0.007210266776382923,
- 0.003902588738128543,
- -0.029970306903123856,
- 0.051157478243112564,
- -0.030359657481312752,
- 0.015227891504764557,
- 0.08728963881731033,
- 0.13944856822490692,
- 0.03085511177778244,
- -0.040642160922288895,
- 0.015529763884842396,
- 0.005764611065387726,
- 0.05575377866625786,
- -0.055829133838415146,
- -0.08567453920841217,
- 0.01774449832737446,
- -0.011824410408735275,
- -0.03509887680411339,
- 0.010211019776761532,
- 0.0014352843863889575,
- 0.0054372940212488174,
- 0.030638569965958595,
- 0.023343266919255257,
- -0.0137606430798769,
- 0.0814109668135643,
- 0.029171377420425415,
- 0.05514620989561081,
- 0.05032840743660927,
- -0.03969903290271759,
- -0.12846018373966217,
- 0.10727344453334808,
- 0.0469236895442009,
- -0.07428383827209473,
- -0.09422212839126587,
- -0.051051605492830276,
- 0.027093669399619102,
- 0.03275327757000923,
- -0.06710101664066315,
- -0.06191748380661011,
- 0.023281287401914597,
- 0.057482000440359116,
- 0.036356549710035324,
- -0.06666120886802673,
- 0.07721620798110962,
- 0.02927139587700367,
- -0.010977184399962425,
- -0.027725152671337128,
- 0.005516922101378441,
- 0.04874085262417793,
- 0.03513506054878235,
- 0.05494026467204094,
- 0.2498074769973755,
- 0.02157888002693653,
- 0.08256740123033524,
- -0.07555700093507767,
- 0.04834433272480965,
- 0.01658683829009533,
- 0.06079660356044769,
- -0.07957292348146439,
- 0.04516461491584778,
- 0.014944884926080704,
- -0.021363891661167145,
- -0.0396469384431839,
- -0.045895714312791824,
- 0.0272831991314888,
- 0.06263226270675659,
- -0.02113298885524273,
- 0.058057211339473724,
- 0.0211059357970953,
- 0.012133569456636906,
- 0.01560753770172596,
- 0.007633734494447708,
- 0.023937521502375603,
- 0.006840269546955824,
- -0.023751404136419296,
- -0.08784957230091095,
- -0.02207927219569683,
- -0.01941613294184208,
- -0.026112139225006104,
- -3.886679868155751e-33,
- 0.03243015334010124,
- -0.06958053261041641,
- -0.06313908845186234,
- 0.010339014232158661,
- -0.05202147737145424,
- 0.003597720991820097,
- -0.007630705833435059,
- -0.01767466403543949,
- -0.09421446174383163,
- 0.004849644843488932,
- -0.030877409502863884,
- 0.05562210828065872,
- -0.013716143555939198,
- -0.06011713668704033,
- 0.02467246539890766,
- 0.043248873203992844,
- 0.023280659690499306,
- 0.07115040719509125,
- -0.06827785819768906,
- -0.00785043928772211,
- -0.04150556027889252,
- 0.02933085523545742,
- -0.01591145433485508,
- 0.03925385698676109,
- -0.011355963535606861,
- 0.014060109853744507,
- -0.001130291842855513,
- -0.07262708991765976,
- 0.026773599907755852,
- -0.0008866538992151618,
- 0.033493541181087494,
- -0.0547802560031414,
- -0.004633566364645958,
- 0.04079047963023186,
- 0.029272528365254402,
- -0.04163319617509842,
- 0.016402345150709152,
- -0.05818723887205124,
- -0.014448522590100765,
- -0.07455374300479889,
- -0.0774981826543808,
- 0.006355333141982555,
- -0.03611626476049423,
- -0.03204340860247612,
- -0.004863084759563208,
- 0.005203478969633579,
- 0.011223120614886284,
- 0.0427534393966198,
- -0.02809925191104412,
- 0.06825945526361465,
- 0.04863230511546135,
- -0.01990031637251377,
- -0.05793314799666405,
- 0.0023427128326147795,
- -0.03589381277561188,
- 0.027779748663306236,
- 0.03457760810852051,
- -0.02397114969789982,
- 0.027506591752171516,
- 0.03432494029402733,
- -0.004763287026435137,
- 0.0523403137922287,
- -0.026147933676838875,
- 0.0002963944571092725,
- 0.017439017072319984,
- -0.0298596378415823,
- 0.024362610653042793,
- -0.040430132299661636,
- -0.02473270893096924,
- -0.035206474363803864,
- -0.015966685488820076,
- 0.04685866832733154,
- 0.021117910742759705,
- 0.011143805459141731,
- 0.009650567546486855,
- -0.05381571128964424,
- 0.08898814767599106,
- 0.0914052277803421,
- -0.07106484472751617,
- 0.007061310112476349,
- -0.06793855130672455,
- 0.00022521261416841298,
- 0.003462372813373804,
- -0.06122034788131714,
- -0.0160415917634964,
- 0.03530509024858475,
- -0.051535919308662415,
- -0.09073305875062943,
- -0.013278903439640999,
- -0.003324342193081975,
- -0.060427457094192505,
- -0.00006914180994499475,
- -0.004843761678785086,
- 0.012457964941859245,
- 0.05808105692267418,
- 3.782167032766126e-33,
- 0.0016366601921617985,
- 0.01142061036080122,
- -0.04233253374695778,
- 0.09041334688663483,
- 0.06859147548675537,
- -0.018810981884598732,
- 0.0693821981549263,
- -0.017662247642874718,
- 0.0024280871730297804,
- 0.08277642726898193,
- 0.007780543528497219,
- -0.015555333346128464,
- 0.11431519687175751,
- -0.04883311316370964,
- 0.018613455817103386,
- -0.016550062224268913,
- 0.0716155618429184,
- -0.05634770169854164,
- -0.034842535853385925,
- 0.05951429903507233,
- -0.02376917004585266,
- -0.11632172763347626,
- -0.014575879089534283,
- -0.07551360130310059,
- -0.017865721136331558,
- 0.027881557121872902,
- 0.15639038383960724,
- -0.0347132682800293,
- -0.08069247752428055,
- 0.023232029750943184,
- 0.0484626404941082,
- -0.024919413030147552,
- -0.014860568568110466,
- 0.00805513747036457,
- 0.00969664379954338,
- 0.11903129518032074,
- 0.01026770006865263,
- 0.02652060054242611,
- 0.009406565688550472,
- 0.009061015211045742,
- 0.04037458449602127,
- 0.07402508705854416,
- -0.0650581568479538,
- 0.17537921667099,
- 0.00245696771889925,
- -0.0348225012421608,
- 0.02849406562745571,
- 0.011484437622129917,
- 0.015801433473825455,
- -0.02886180393397808,
- 0.029576962813735008,
- 0.04773520305752754,
- -0.012603276409208775,
- -0.03664145618677139,
- -0.014423473738133907,
- -0.018309134989976883,
- -0.008200128562748432,
- 0.05847525596618652,
- -0.044995784759521484,
- 0.04048062115907669,
- -0.0069182380102574825,
- 0.035402365028858185,
- -0.04874318838119507,
- 0.10236182063817978,
- -0.010128535330295563,
- 0.05726303532719612,
- -0.03753814101219177,
- -0.013401728123426437,
- 0.005696193315088749,
- -0.0018254100577905774,
- -0.07247894257307053,
- -0.01777927204966545,
- -0.058099888265132904,
- 0.06906995922327042,
- 0.020804565399885178,
- -0.014680967666208744,
- -0.13230562210083008,
- 0.05078832432627678,
- 0.03294787183403969,
- 0.11527984589338303,
- -0.08087441325187683,
- 0.01099257543683052,
- -0.03973165899515152,
- 0.05195968970656395,
- -0.0016402313485741615,
- 0.0529145821928978,
- -0.012779275886714458,
- 0.05342618376016617,
- -0.030517464503645897,
- -0.040153659880161285,
- 0.011442724615335464,
- 0.043118491768836975,
- 0.004518832545727491,
- -0.09963683784008026,
- -0.003439848544076085,
- -1.1985876291475961e-8,
- -0.03884880244731903,
- 0.0299164317548275,
- -0.015204045921564102,
- -0.014314917847514153,
- 0.002923299092799425,
- 0.11146113276481628,
- -0.01946139894425869,
- -0.08201592415571213,
- 0.0267634354531765,
- 0.04047282040119171,
- 0.05557897314429283,
- 0.030854418873786926,
- -0.00516583351418376,
- 0.0038488784339278936,
- 0.046890754252672195,
- -0.06988603621721268,
- -0.0785301998257637,
- -0.03490280359983444,
- -0.050747327506542206,
- 0.04850620776414871,
- -0.06324999034404755,
- -0.024746311828494072,
- -0.01104632206261158,
- 0.009441881440579891,
- -0.010305098257958889,
- 0.031771522015333176,
- -0.00916185975074768,
- 0.10227535665035248,
- -0.017394065856933594,
- 0.0034195741172879934,
- 0.0258072130382061,
- 0.059786614030599594,
- -0.0013777603162452579,
- -0.09579990804195404,
- 0.037003979086875916,
- 0.0070331767201423645,
- -0.05808970332145691,
- 0.011775560677051544,
- 0.0680990070104599,
- 0.025579500943422318,
- -0.021382488310337067,
- -0.018498623743653297,
- 0.003286277409642935,
- 0.01138092391192913,
- -0.012948649935424328,
- -0.002274772385135293,
- 0.030895264819264412,
- -0.07422801852226257,
- -0.05650113895535469,
- -0.07725352048873901,
- 0.02029012143611908,
- -0.06483441591262817,
- 0.022129613906145096,
- 0.01644890382885933,
- 0.012242592871189117,
- -0.010267128236591816,
- -0.03151160106062889,
- 0.033207111060619354,
- -0.025709854438900948,
- 0.061754632741212845,
- 0.16783514618873596,
- 0.018828345462679863,
- 0.051610883325338364,
- -0.0004924279637634754
- ]
- },
- {
- "keyword": "tournament",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.012180798687040806,
- 0.06001272052526474,
- -0.017615685239434242,
- 0.03636730834841728,
- -0.019945964217185974,
- 0.065202496945858,
- 0.05379359796643257,
- -0.01651090383529663,
- 0.03722068667411804,
- 0.03782552853226662,
- -0.06344625353813171,
- -0.08563654124736786,
- -0.005601703654974699,
- 0.05078788846731186,
- -0.007790472358465195,
- -0.030972018837928772,
- -0.022457599639892578,
- -0.031101230531930923,
- 0.006981125101447105,
- -0.08049190789461136,
- -0.024322202429175377,
- -0.07162933051586151,
- -0.040525685995817184,
- 0.011013270355761051,
- 0.06796401739120483,
- 0.02506404183804989,
- -0.0671425610780716,
- 0.04806942865252495,
- -0.01454548817127943,
- -0.08107994496822357,
- -0.047880977392196655,
- -0.00042503722943365574,
- 0.000837273255456239,
- 0.07586495578289032,
- -0.07133417576551437,
- -0.031837139278650284,
- -0.06591269373893738,
- -0.027873391285538673,
- -0.04958644509315491,
- -0.017435915768146515,
- 0.0003730205644387752,
- -0.07240413874387741,
- -0.003146685194224119,
- 0.03218277543783188,
- 0.055581092834472656,
- 0.04405886307358742,
- 0.001725772861391306,
- 0.07433371990919113,
- -0.024035826325416565,
- 0.06380198150873184,
- -0.09653254598379135,
- 0.0013354405527934432,
- -0.022108471021056175,
- -0.00900136586278677,
- 0.06338803470134735,
- 0.06118975579738617,
- 0.04078688845038414,
- -0.0394803062081337,
- 0.0019872516859322786,
- -0.012441265396773815,
- 0.05924006924033165,
- -0.05061190575361252,
- -0.11101812869310379,
- 0.03633151575922966,
- -0.01777334325015545,
- -0.04433399438858032,
- 0.01413041353225708,
- 0.14152811467647552,
- 0.017186153680086136,
- -0.011017306707799435,
- 0.04646759852766991,
- -0.008821539580821991,
- 0.01939016953110695,
- -0.0030753621831536293,
- 0.09354077279567719,
- 0.06766407936811447,
- -0.036313511431217194,
- -0.021201353520154953,
- 0.11609633266925812,
- 0.011577620171010494,
- 0.004203351680189371,
- -0.019286910071969032,
- -0.009267847053706646,
- -0.0022709977347403765,
- 0.03602776676416397,
- -0.10373999923467636,
- -0.025929750874638557,
- -0.008764558471739292,
- 0.0376899428665638,
- 0.00258987327106297,
- -0.1088450700044632,
- 0.06374242901802063,
- -0.004331297241151333,
- 0.024250449612736702,
- -0.09954296797513962,
- 0.09168688207864761,
- -0.03837374225258827,
- -0.04915418103337288,
- 0.07364286482334137,
- 0.23435181379318237,
- 0.012640605680644512,
- 0.07101444154977798,
- -0.041401684284210205,
- -0.0015997084556147456,
- 0.008808986283838749,
- 0.05396807938814163,
- 0.013823461718857288,
- 0.07354412972927094,
- 0.028942130506038666,
- 0.015066107735037804,
- -0.06017792597413063,
- 0.012106748297810555,
- 0.006472866516560316,
- -0.011534901335835457,
- -0.08804348111152649,
- 0.11412942409515381,
- 0.00616415124386549,
- 0.08921831101179123,
- -0.01743277721107006,
- 0.06912080943584442,
- -0.021918972954154015,
- 0.04786285012960434,
- -0.0036781905218958855,
- -0.018712056800723076,
- 0.007271193899214268,
- -0.008812515996396542,
- -0.017958486452698708,
- -4.5402271765640955e-33,
- 0.04294918477535248,
- -0.1476878821849823,
- -0.06533203274011612,
- 0.08910629898309708,
- -0.0020386597607284784,
- -0.03939312323927879,
- 0.005312843713909388,
- -0.10525009781122208,
- -0.12653984129428864,
- -0.05096197873353958,
- -0.024020126089453697,
- -0.01087179221212864,
- 0.040303025394678116,
- -0.03421998396515846,
- 0.14051735401153564,
- -0.016598040238022804,
- 0.02645268850028515,
- 0.055406104773283005,
- 0.017804063856601715,
- -0.03343312814831734,
- -0.03493622690439224,
- 0.0445614717900753,
- 0.0005607337225228548,
- 0.015419432893395424,
- -0.024433167651295662,
- 0.0781530886888504,
- -0.05079557001590729,
- -0.07603660970926285,
- -0.007127642631530762,
- 0.042073410004377365,
- 0.07483881711959839,
- -0.07081979513168335,
- -0.06003449857234955,
- 0.008426441811025143,
- 0.057437751442193985,
- -0.00592064531520009,
- 0.03761163726449013,
- -0.0971994549036026,
- 0.031690359115600586,
- 0.002759878756478429,
- -0.021458588540554047,
- -0.005490676034241915,
- -0.03786841407418251,
- -0.005589722190052271,
- -0.04340166971087456,
- 0.03237086161971092,
- -0.021985823288559914,
- 0.014411870390176773,
- -0.0034976708702743053,
- 0.03236890956759453,
- -0.013507436960935593,
- -0.03960736468434334,
- 0.04406968504190445,
- -0.046700797975063324,
- 0.03163303807377815,
- -0.018064018338918686,
- -0.004125317092984915,
- -0.03604157269001007,
- -0.017967257648706436,
- -0.02107892371714115,
- 0.01579153537750244,
- 0.083589568734169,
- -0.075678750872612,
- 0.03408566862344742,
- -0.06803245842456818,
- -0.049900393933057785,
- 0.05154344066977501,
- -0.02700888365507126,
- 0.08865414559841156,
- -0.1072581559419632,
- -0.02894524857401848,
- 0.036331940442323685,
- 0.0212461706250906,
- -0.025516049936413765,
- 0.020478544756770134,
- -0.03814883157610893,
- 0.023390237241983414,
- -0.004717725329101086,
- -0.02324662171304226,
- -0.0026933997869491577,
- -0.07112713903188705,
- -0.011602519080042839,
- -0.0415877103805542,
- -0.023354927077889442,
- -0.09726786613464355,
- 0.013814319856464863,
- -0.052847638726234436,
- -0.013520699925720692,
- 0.01381091121584177,
- 0.042659591883420944,
- -0.1609402596950531,
- -0.06734903901815414,
- 0.05454491823911667,
- 0.06425969302654266,
- 0.01616482436656952,
- 3.720408763625831e-33,
- -0.0007669691694900393,
- -0.041061315685510635,
- 0.027027133852243423,
- 0.06138598546385765,
- 0.10127197206020355,
- -0.012565725483000278,
- 0.014952811412513256,
- 0.01913199946284294,
- 0.021655848249793053,
- 0.017107075080275536,
- -0.002941609127447009,
- 0.03061177209019661,
- 0.09247685223817825,
- -0.02792040817439556,
- 0.0224900059401989,
- -0.04788457602262497,
- 0.020023418590426445,
- 0.011636069044470787,
- -0.022308798506855965,
- 0.039972759783267975,
- 0.04519416391849518,
- -0.0532396174967289,
- 0.027398593723773956,
- -0.07816890627145767,
- -0.02152654156088829,
- 0.010893134400248528,
- 0.053999219089746475,
- -0.022138236090540886,
- -0.03260022774338722,
- 0.02766239456832409,
- 0.05852469801902771,
- -0.05115815997123718,
- -0.023151298984885216,
- 0.03418657183647156,
- 0.0071759894490242004,
- 0.09732739627361298,
- 0.046347182244062424,
- 0.029906416311860085,
- -0.02706669270992279,
- -0.03450409322977066,
- 0.04729832708835602,
- -0.006106261629611254,
- -0.09320539981126785,
- 0.11974476277828217,
- 0.07015389204025269,
- 0.05819178745150566,
- 0.03411613032221794,
- 0.047359708696603775,
- 0.05263858288526535,
- -0.020318113267421722,
- -0.06135155260562897,
- 0.0032997983507812023,
- -0.021450702100992203,
- -0.06028643995523453,
- 0.038261208683252335,
- -0.03546523302793503,
- -0.04728603735566139,
- 0.0021543106995522976,
- -0.04715856537222862,
- 0.05325000360608101,
- 0.022345369681715965,
- -0.00020353184663690627,
- -0.05100692808628082,
- 0.11241677403450012,
- 0.004633449949324131,
- 0.09169372916221619,
- -0.050678666681051254,
- 0.047411493957042694,
- 0.025317037478089333,
- -0.00023862978559918702,
- -0.06746688485145569,
- 0.08471846580505371,
- -0.07165921479463577,
- 0.03639155998826027,
- 0.002072240225970745,
- 0.06984369456768036,
- -0.06283245980739594,
- 0.11194320023059845,
- -0.0053806789219379425,
- 0.018542978912591934,
- -0.0865141749382019,
- 0.0346076563000679,
- -0.03710782900452614,
- 0.04012937843799591,
- 0.03796560317277908,
- 0.011689070612192154,
- 0.11333110928535461,
- 0.02814231812953949,
- -0.022829335182905197,
- -0.0023499575909227133,
- 0.05479121580719948,
- -0.019630953669548035,
- 0.09456165134906769,
- -0.0865945965051651,
- 0.01609410159289837,
- -1.079501465994781e-8,
- -0.016840452328324318,
- 0.07149390876293182,
- 0.007596264127641916,
- 0.028894608840346336,
- -0.0405617356300354,
- 0.04592760279774666,
- -0.00041511579183861613,
- -0.03785846754908562,
- 0.028825070708990097,
- 0.09627491235733032,
- 0.0336264930665493,
- -0.03709467872977257,
- 0.006671321578323841,
- -0.055767737329006195,
- 0.037203069776296616,
- -0.013304360210895538,
- -0.09140228480100632,
- 0.06439072638750076,
- -0.054687581956386566,
- 0.02424904704093933,
- 0.002291123615577817,
- -0.02121589332818985,
- 0.04185321927070618,
- 0.03199675679206848,
- -0.033669363707304,
- -0.02410447597503662,
- -0.017096510156989098,
- 0.05475252494215965,
- -0.006491970270872116,
- -0.031230688095092773,
- 0.006076725199818611,
- 0.03768708556890488,
- 0.013969916850328445,
- -0.0011715717846527696,
- 0.029972758144140244,
- -0.002529488643631339,
- -0.056261077523231506,
- 0.004254193976521492,
- 0.01859627477824688,
- -0.030013548210263252,
- -0.08908465504646301,
- -0.03395022079348564,
- 0.024468794465065002,
- -0.020813006907701492,
- 0.033449143171310425,
- -0.004066296387463808,
- 0.0017911494942381978,
- -0.03847552835941315,
- -0.031646836549043655,
- -0.08892957866191864,
- -0.034332066774368286,
- 0.005297386087477207,
- -0.012576979584991932,
- -0.021881572902202606,
- 0.01545393280684948,
- 0.0793931633234024,
- 0.029401343315839767,
- -0.007786285597831011,
- -0.00576461385935545,
- -0.009103131480515003,
- 0.10237429291009903,
- -0.016541268676519394,
- -0.025818947702646255,
- -0.020317839458584785
- ]
- },
- {
- "keyword": "championship",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04456085339188576,
- 0.0671645998954773,
- -0.046555161476135254,
- -0.011022291146218777,
- -0.02560782991349697,
- 0.046699244529008865,
- 0.1121901273727417,
- 0.014949806034564972,
- 0.0689508318901062,
- 0.013545212335884571,
- -0.07419215887784958,
- -0.06633515655994415,
- 0.06621819734573364,
- 0.019452175125479698,
- -0.019710054621100426,
- -0.012690063565969467,
- 0.0015101706376299262,
- -0.03414301574230194,
- -0.06857241690158844,
- -0.07309314608573914,
- -0.02580551989376545,
- 0.015941264107823372,
- -0.07352448254823685,
- 0.04005308821797371,
- 0.0016922751674428582,
- 0.0205854419618845,
- -0.0700966864824295,
- 0.04196140915155411,
- -0.08834663778543472,
- -0.12378866970539093,
- -0.010867881588637829,
- -0.08382285386323929,
- 0.0466979518532753,
- 0.029016632586717606,
- -0.052849140018224716,
- -0.0635339617729187,
- -0.02427338808774948,
- 0.008358237333595753,
- -0.0040195174515247345,
- -0.00958589743822813,
- -0.04703925922513008,
- -0.10954269766807556,
- -0.022482894361019135,
- 0.05966806039214134,
- 0.05753624066710472,
- 0.03590818867087364,
- 0.05337389186024666,
- 0.024880167096853256,
- 0.027440981939435005,
- 0.04688282310962677,
- -0.04659168794751167,
- 0.004567441064864397,
- -0.04865984246134758,
- 0.0389128252863884,
- 0.06442765146493912,
- 0.08528262376785278,
- -0.04876083880662918,
- -0.00015703964163549244,
- -0.034534893929958344,
- -0.028353527188301086,
- 0.06855307519435883,
- 0.009506935253739357,
- -0.08406262844800949,
- 0.025044510141015053,
- 0.007351828273385763,
- -0.05095590278506279,
- 0.020167449489235878,
- 0.11146464198827744,
- 0.009405283257365227,
- 0.0013000027975067496,
- 0.04114243760704994,
- -0.030961818993091583,
- 0.0043890816159546375,
- 0.027227235957980156,
- 0.054318491369485855,
- 0.0765303298830986,
- 0.01126087550073862,
- -0.03606748208403587,
- 0.10054376721382141,
- 0.04877579212188721,
- 0.0065503669902682304,
- -0.055533744394779205,
- -0.03837962448596954,
- 0.00348250032402575,
- -0.038420289754867554,
- -0.0431644506752491,
- -0.040237341076135635,
- -0.03143588453531265,
- -0.006694479379802942,
- 0.01866181567311287,
- -0.059745337814092636,
- -0.08179891854524612,
- 0.027582835406064987,
- 0.020927423611283302,
- -0.1370917111635208,
- 0.059767529368400574,
- -0.03476891666650772,
- -0.11055133491754532,
- 0.0257010105997324,
- 0.24972178041934967,
- 0.018673034384846687,
- 0.07407883554697037,
- -0.020224858075380325,
- -0.03770941495895386,
- 0.03178153187036514,
- 0.061771247535943985,
- 0.014299072325229645,
- 0.09202320873737335,
- 0.00197964976541698,
- -0.02165307104587555,
- -0.016017695888876915,
- -0.013679979369044304,
- -0.07334087044000626,
- 0.03256069868803024,
- -0.06345201283693314,
- 0.07633703947067261,
- 0.028952347114682198,
- 0.025933098047971725,
- 0.057459041476249695,
- -0.0021390807814896107,
- -0.01485130749642849,
- 0.06049254536628723,
- -0.011363566853106022,
- 0.03612036257982254,
- -0.026056701317429543,
- -0.05596030876040459,
- -0.04548802971839905,
- -4.379790564776085e-33,
- 0.024494359269738197,
- -0.10872779041528702,
- 0.014012892730534077,
- 0.08617719262838364,
- -0.046217937022447586,
- 0.02069479040801525,
- 0.030776189640164375,
- -0.03229227289557457,
- -0.11274189502000809,
- 0.004205239471048117,
- 0.019359955564141273,
- 0.02419600449502468,
- 0.010421838611364365,
- -0.12142111361026764,
- 0.12674033641815186,
- 0.011208010837435722,
- -0.0005141256260685623,
- 0.04063019901514053,
- -0.021815432235598564,
- -0.01685413345694542,
- -0.048862017691135406,
- 0.11962509900331497,
- 0.015893876552581787,
- 0.082050621509552,
- 0.01870868168771267,
- 0.019397541880607605,
- -0.049938321113586426,
- -0.1007445827126503,
- -0.010099969804286957,
- 0.01844959706068039,
- 0.03526594117283821,
- -0.01857840083539486,
- -0.01745072565972805,
- -0.004837971646338701,
- 0.0002536729152780026,
- 0.008437435142695904,
- 0.02905885875225067,
- -0.08693277835845947,
- 0.05051083117723465,
- 0.01926322653889656,
- -0.07163305580615997,
- -0.07214441895484924,
- -0.07975955307483673,
- -0.02921462245285511,
- -0.017505832016468048,
- 0.020854968577623367,
- -0.012595667503774166,
- -0.006764577701687813,
- -0.03307338058948517,
- -0.011551521718502045,
- 0.03851902857422829,
- -0.037920575588941574,
- 0.010833118110895157,
- -0.030607594177126884,
- 0.01981600746512413,
- -0.048133477568626404,
- 0.03784524276852608,
- 0.011639275588095188,
- -0.024246148765087128,
- -0.016583329066634178,
- -0.014639223925769329,
- 0.06900714337825775,
- -0.03906138241291046,
- 0.00039877279778011143,
- -0.05360358953475952,
- -0.034335196018218994,
- 0.08223346620798111,
- -0.005427551455795765,
- -0.008748454041779041,
- -0.02356489561498165,
- -0.04637416824698448,
- 0.027175679802894592,
- 0.04153710603713989,
- 0.005342198070138693,
- 0.09424668550491333,
- -0.0013795476406812668,
- 0.018482621759176254,
- 0.019880279898643494,
- -0.026394417509436607,
- 0.005646422039717436,
- -0.05635703727602959,
- -0.018502769991755486,
- -0.0020109075121581554,
- -0.020364882424473763,
- -0.013697424903512001,
- -0.002245701616629958,
- -0.08357100933790207,
- -0.007167458534240723,
- 0.033396583050489426,
- 0.055446065962314606,
- -0.1251196712255478,
- -0.024314146488904953,
- -0.022431140765547752,
- 0.11772118508815765,
- 0.021056514233350754,
- 3.3368199776975635e-33,
- 0.03526826947927475,
- -0.06355296075344086,
- 0.014149312861263752,
- 0.11369717121124268,
- 0.051811739802360535,
- -0.04609763249754906,
- -0.01744106411933899,
- 0.015337386168539524,
- -0.1020427942276001,
- -0.03718644008040428,
- -0.02571207657456398,
- 0.016764096915721893,
- 0.04831003025174141,
- 0.015095209702849388,
- 0.03086901642382145,
- -0.04494888707995415,
- 0.031152572482824326,
- -0.07812459021806717,
- -0.08814845979213715,
- 0.04729330912232399,
- -0.00477225985378027,
- -0.0026920405216515064,
- -0.0065755401737987995,
- -0.04610523208975792,
- -0.019143924117088318,
- 0.013091837987303734,
- 0.0008623066241852939,
- 0.04891122132539749,
- -0.0073563335463404655,
- -0.01157777477055788,
- 0.043904442340135574,
- -0.049458134919404984,
- 0.030790481716394424,
- 0.009180587716400623,
- -0.009972630999982357,
- 0.12137661874294281,
- 0.04654143005609512,
- -0.0635392814874649,
- -0.007465412374585867,
- 0.028291810303926468,
- 0.01628560945391655,
- -0.0276629701256752,
- -0.04085486754775047,
- 0.13425913453102112,
- 0.07590896636247635,
- 0.05544598773121834,
- 0.07548470050096512,
- 0.0012312887702137232,
- 0.08719965070486069,
- 0.0199839286506176,
- -0.015911657363176346,
- 0.009549986571073532,
- -0.0036318812053650618,
- 0.024425173178315163,
- 0.01789688877761364,
- -0.01479736715555191,
- -0.08053968101739883,
- 0.017028244212269783,
- -0.09722508490085602,
- 0.014822693541646004,
- 0.03659689798951149,
- -0.025582069531083107,
- -0.1035480871796608,
- 0.07856445759534836,
- -0.04424405097961426,
- 0.07804837822914124,
- -0.01070058811455965,
- -0.010103752836585045,
- -0.03957981616258621,
- 0.007239859085530043,
- -0.07319009304046631,
- 0.01695147529244423,
- -0.0810711681842804,
- 0.10050130635499954,
- 0.027622954919934273,
- 0.02965991385281086,
- -0.021494556218385696,
- 0.04104043170809746,
- -0.01397455483675003,
- 0.007311611901968718,
- -0.14418308436870575,
- -0.04338262602686882,
- -0.014657165855169296,
- 0.02456345036625862,
- 0.03663104400038719,
- 0.0622895248234272,
- 0.08357439190149307,
- -0.022219059988856316,
- 0.02235318161547184,
- -0.04889175295829773,
- 0.055772148072719574,
- -0.031605154275894165,
- 0.014389505609869957,
- -0.057646457105875015,
- 0.017990197986364365,
- -1.1232480723322169e-8,
- -0.007566705346107483,
- 0.06585615873336792,
- 0.01600983552634716,
- 0.006163245067000389,
- -0.0051415241323411465,
- 0.083281509578228,
- 0.029487427324056625,
- -0.020313141867518425,
- 0.06697457283735275,
- 0.0946616530418396,
- -0.013655944727361202,
- 0.0011679298477247357,
- -0.04669395461678505,
- 0.009253904223442078,
- 0.012078008614480495,
- -0.002305175643414259,
- -0.07679878175258636,
- 0.03255419433116913,
- -0.007283689454197884,
- -0.002912635914981365,
- -0.028000494465231895,
- -0.010253144428133965,
- 0.008054031990468502,
- -0.03906400501728058,
- -0.021455610170960426,
- -0.03034522570669651,
- -0.019783150404691696,
- 0.10863687098026276,
- -0.007302761077880859,
- 0.024806169793009758,
- 0.0788421556353569,
- 0.04642941430211067,
- 0.0005669404636137187,
- -0.012385350652039051,
- 0.05315345525741577,
- -0.04710649326443672,
- 0.04627391695976257,
- 0.013859035447239876,
- 0.05047787353396416,
- -0.036558035761117935,
- -0.049340713769197464,
- 0.05138188600540161,
- 0.00394018366932869,
- 0.00452154828235507,
- -0.004203032236546278,
- 0.009150849655270576,
- 0.02920551411807537,
- -0.00655880942940712,
- -0.03301449492573738,
- -0.08125077188014984,
- 0.015327288769185543,
- 0.018309690058231354,
- 0.013279633596539497,
- 0.01713632233440876,
- 0.006952363066375256,
- 0.0707244724035263,
- 0.031528789550065994,
- 0.03263963386416435,
- -0.09205643087625504,
- 0.006941050756722689,
- 0.1255582571029663,
- 0.002558917971327901,
- 0.043260328471660614,
- -0.02837217226624489
- ]
- },
- {
- "keyword": "race",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0042757391929626465,
- 0.09169338643550873,
- -0.0001381834299536422,
- 0.03672058507800102,
- -0.031914930790662766,
- 0.05331053584814072,
- 0.05434757098555565,
- -0.05347123742103577,
- 0.03465032950043678,
- -0.029826154932379723,
- -0.009658776223659515,
- -0.13708841800689697,
- -0.037011343985795975,
- -0.056048594415187836,
- -0.10354312509298325,
- -0.03622790053486824,
- 0.014919528737664223,
- -0.05526600033044815,
- -0.10999573022127151,
- -0.01770935021340847,
- -0.09376964718103409,
- -0.011149109341204166,
- -0.012255012057721615,
- 0.03714083135128021,
- -0.07855342328548431,
- 0.025560159236192703,
- 0.012875571846961975,
- 0.03604545071721077,
- 0.007176294922828674,
- -0.031214142218232155,
- -0.010670648887753487,
- -0.026203380897641182,
- 0.10157918930053711,
- 0.05320227891206741,
- -0.09248144924640656,
- -0.030974281951785088,
- -0.029876679182052612,
- 0.012250709347426891,
- -0.038727566599845886,
- -0.01793629862368107,
- 0.0077217863872647285,
- -0.10330052673816681,
- -0.017967209219932556,
- 0.041096966713666916,
- 0.07611222565174103,
- 0.029646525159478188,
- 0.024745257571339607,
- 0.03922567516565323,
- -0.04207147657871246,
- -0.004808478057384491,
- 0.006780925206840038,
- 0.006641767453402281,
- 0.01164761371910572,
- -0.003740027779713273,
- 0.006915065459907055,
- 0.032370176166296005,
- -0.014334958977997303,
- 0.0020918133668601513,
- 0.011320379562675953,
- -0.06636352837085724,
- 0.02710838057100773,
- -0.026793701574206352,
- -0.07423155009746552,
- 0.08153576403856277,
- 0.015712477266788483,
- 0.017344333231449127,
- 0.01369517669081688,
- 0.019335249438881874,
- 0.040274977684020996,
- -0.016724420711398125,
- 0.09395315498113632,
- 0.017710179090499878,
- 0.03357106074690819,
- 0.0466926246881485,
- 0.07582491636276245,
- 0.035483621060848236,
- 0.05407894030213356,
- -0.06587821990251541,
- -0.01277462299913168,
- -0.04342459514737129,
- 0.05303417891263962,
- -0.03561773896217346,
- -0.03852486237883568,
- -0.017154859378933907,
- 0.06677199900150299,
- 0.001886620419099927,
- 0.004289703443646431,
- 0.03823671489953995,
- -0.049926456063985825,
- 0.001990317367017269,
- -0.08100636303424835,
- 0.07550200074911118,
- 0.09473393857479095,
- -0.03496699035167694,
- -0.047901567071676254,
- 0.04275985062122345,
- 0.01790223829448223,
- -0.01109449565410614,
- 0.029864929616451263,
- 0.2288312464952469,
- -0.006790450308471918,
- 0.010598812252283096,
- -0.05850252881646156,
- 0.07740075141191483,
- -0.005842174403369427,
- -0.07057137042284012,
- -0.0680040791630745,
- -0.007644134573638439,
- -0.03816010802984238,
- -0.03727318346500397,
- 0.07250000536441803,
- -0.054358869791030884,
- -0.02519761584699154,
- 0.06642565131187439,
- 0.01671738736331463,
- 0.03719129040837288,
- -0.005743255373090506,
- 0.006223858799785376,
- 0.02198132872581482,
- 0.10745475441217422,
- -0.06897896528244019,
- 0.019735189154744148,
- -0.09506522119045258,
- 0.0008504863944835961,
- 0.02069389447569847,
- -0.1257532835006714,
- 0.03874383121728897,
- -6.331609302872243e-33,
- 0.021953610703349113,
- -0.14090920984745026,
- 0.038407936692237854,
- -0.043101966381073,
- 0.008459080941975117,
- 0.016818996518850327,
- -0.022502459585666656,
- -0.018897566944360733,
- -0.10332684963941574,
- -0.018227508291602135,
- -0.03161634877324104,
- -0.006924431771039963,
- -0.0596945621073246,
- 0.06334590911865234,
- 0.12889279425144196,
- 0.03755515441298485,
- -0.0546998456120491,
- -0.013185549527406693,
- -0.053844425827264786,
- 0.023801736533641815,
- 0.04414281249046326,
- 0.06456135958433151,
- -0.021351542323827744,
- 0.09768042713403702,
- -0.0304734967648983,
- -0.04400540143251419,
- -0.016165319830179214,
- -0.053070444613695145,
- 0.04069574922323227,
- 0.03203007951378822,
- -0.05958929285407066,
- 0.024494754150509834,
- -0.02552305907011032,
- 0.022420667111873627,
- 0.000016857002265169285,
- -0.01913679577410221,
- 0.03940531238913536,
- -0.06308279186487198,
- 0.013473032042384148,
- 0.023351259529590607,
- -0.019045084714889526,
- -0.04541388526558876,
- -0.023293929174542427,
- -0.022296570241451263,
- 0.029705584049224854,
- 0.0334966704249382,
- 0.0350835919380188,
- 0.0035516642965376377,
- -0.11187350749969482,
- 0.11138864606618881,
- -0.041857171803712845,
- -0.04052983969449997,
- 0.049659714102745056,
- 0.01229043398052454,
- 0.022175168618559837,
- -0.03427717462182045,
- 0.017159463837742805,
- 0.0015856666723266244,
- -0.056242022663354874,
- 0.03487382084131241,
- 0.015797201544046402,
- 0.12786921858787537,
- -0.040653157979249954,
- -0.030834369361400604,
- 0.002295813523232937,
- -0.07399999350309372,
- 0.006081675179302692,
- -0.020930275321006775,
- 0.01346429344266653,
- -0.04693193361163139,
- 0.03763275966048241,
- -0.058242570608854294,
- -0.024163879454135895,
- 0.05393598973751068,
- 0.031217796728014946,
- 0.009582499042153358,
- 0.12727564573287964,
- 0.027493732050061226,
- 0.010888705961406231,
- -0.09714490920305252,
- -0.0006772964843548834,
- 0.00659004133194685,
- -0.009889182634651661,
- -0.04494465887546539,
- -0.031576722860336304,
- 0.01663696952164173,
- -0.025537999346852303,
- -0.01841287687420845,
- 0.07574842870235443,
- -0.03146765008568764,
- -0.06399794667959213,
- -0.034815989434719086,
- 0.029711240902543068,
- 0.026039842516183853,
- -0.07542132586240768,
- 4.506167962432989e-33,
- -0.03304458409547806,
- -0.03819292038679123,
- -0.002650720300152898,
- 0.11193160712718964,
- -0.004658529534935951,
- 0.009477163664996624,
- 0.04360813647508621,
- -0.04342025890946388,
- -0.021590029820799828,
- 0.0747494101524353,
- -0.001744838897138834,
- -0.04483272507786751,
- 0.1735256463289261,
- 0.07598470151424408,
- -0.034459952265024185,
- -0.02074839174747467,
- 0.06035175174474716,
- 0.09616034477949142,
- -0.01883922703564167,
- 0.06424538046121597,
- 0.007854212075471878,
- -0.028865059837698936,
- -0.012276035733520985,
- -0.032039035111665726,
- -0.058146312832832336,
- 0.022731885313987732,
- 0.06978418678045273,
- -0.013953282497823238,
- -0.08985798805952072,
- -0.008613917045295238,
- 0.004730872344225645,
- -0.005536635871976614,
- -0.03859877958893776,
- -0.06132714822888374,
- 0.014485000632703304,
- 0.16438201069831848,
- 0.06028488650918007,
- 0.014368774369359016,
- -0.01571914367377758,
- 0.0016750117065384984,
- 0.04370717331767082,
- -0.0029639825224876404,
- 0.014120749197900295,
- 0.11855877190828323,
- -0.003826160915195942,
- 0.049734655767679214,
- -0.039253368973731995,
- 0.04168064147233963,
- -0.07167857885360718,
- -0.04726091027259827,
- -0.019050413742661476,
- 0.03416333347558975,
- 0.08306723833084106,
- 0.07244411110877991,
- 0.010840682312846184,
- -0.054686639457941055,
- 0.028968777507543564,
- -0.026608651503920555,
- -0.08180921524763107,
- 0.10558362305164337,
- 0.00445962930098176,
- 0.04617661237716675,
- -0.002853639889508486,
- 0.04891268536448479,
- -0.012197787873446941,
- -0.07078708708286285,
- -0.011559582315385342,
- -0.018377065658569336,
- 0.005023439414799213,
- -0.03513408079743385,
- 0.06569547206163406,
- -0.014228801243007183,
- -0.08448286354541779,
- 0.025674039497971535,
- -0.06012127175927162,
- -0.028249282389879227,
- -0.0864553153514862,
- 0.05504060164093971,
- -0.004878791514784098,
- 0.06859971582889557,
- -0.08079307526350021,
- -0.03598916903138161,
- 0.0873045101761818,
- 0.06875963509082794,
- -0.04873400926589966,
- 0.04451679438352585,
- 0.0015962087782099843,
- 0.007506273686885834,
- 0.014637405052781105,
- -0.04513328894972801,
- 0.04166664555668831,
- 0.04493353143334389,
- -0.036632779985666275,
- 0.012338417582213879,
- -0.0822703167796135,
- -1.2512453295698833e-8,
- 0.054183825850486755,
- 0.04693342372775078,
- 0.02367183193564415,
- 0.0027983488980680704,
- 0.023457691073417664,
- 0.05772431567311287,
- 0.007830574177205563,
- -0.012324322946369648,
- 0.03411150351166725,
- 0.06619728356599808,
- -0.028882572427392006,
- 0.0031077296007424593,
- -0.013877235352993011,
- 0.03632538393139839,
- -0.0069823176600039005,
- 0.011690537445247173,
- -0.006088480819016695,
- -0.06773331761360168,
- 0.011840696446597576,
- 0.05042232945561409,
- -0.023746920749545097,
- -0.0012351872865110636,
- 0.029099594801664352,
- 0.022345611825585365,
- -0.008687598630785942,
- -0.020493855699896812,
- -0.04393917694687843,
- 0.05519277974963188,
- 0.021409712731838226,
- -0.04036909341812134,
- -0.03448636084794998,
- 0.06624773889780045,
- -0.07156146317720413,
- 0.00028242971166037023,
- -0.01642301306128502,
- 0.009313460439443588,
- -0.057307593524456024,
- 0.08867500722408295,
- 0.021656297147274017,
- -0.06024051830172539,
- -0.057777952402830124,
- 0.06408285349607468,
- -0.0028077582828700542,
- -0.01300059910863638,
- 0.003366137156262994,
- -0.05704617500305176,
- -0.034700408577919006,
- 0.030621567741036415,
- -0.025925133377313614,
- -0.05112393945455551,
- 0.003631081897765398,
- -0.05173206329345703,
- -0.01857837475836277,
- 0.04653315618634224,
- 0.057405319064855576,
- -0.03232521563768387,
- -0.010833380743861198,
- 0.020602809265255928,
- -0.009860608726739883,
- 0.03963927552103996,
- 0.1362692266702652,
- -0.014057203195989132,
- 0.004185008816421032,
- 0.022481676191091537
- ]
- },
- {
- "keyword": "launch",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.006611436139792204,
- -0.036819204688072205,
- -0.0058652665466070175,
- -0.055271781980991364,
- 0.0005474534700624645,
- 0.05394242703914642,
- 0.03418644890189171,
- 0.026434918865561485,
- -0.05439268797636032,
- 0.05847286060452461,
- -0.0139226783066988,
- -0.008121384307742119,
- -0.02875109203159809,
- 0.032507237046957016,
- 0.08334337174892426,
- 0.05448079854249954,
- 0.02584703266620636,
- -0.019898531958460808,
- -0.010135749354958534,
- 0.04934621974825859,
- -0.011550999246537685,
- -0.00683529581874609,
- -0.008217335678637028,
- 0.003989472985267639,
- -0.03540916368365288,
- -0.0033592809922993183,
- -0.032904934138059616,
- 0.012297851964831352,
- -0.017143212258815765,
- -0.05807415768504143,
- 0.024694351479411125,
- -0.06291941553354263,
- 0.03272882476449013,
- 0.0038481035735458136,
- 0.02139514498412609,
- 0.04491369053721428,
- 0.016429685056209564,
- -0.0480799563229084,
- -0.026985591277480125,
- -0.027944881469011307,
- 0.024689288809895515,
- -0.11214137077331543,
- -0.04677833616733551,
- 0.08768408745527267,
- 0.00235595996491611,
- 0.02251521497964859,
- -0.0029836066532880068,
- 0.0315481536090374,
- 0.09332386404275894,
- 0.037461332976818085,
- -0.007480965461581945,
- -0.09038826823234558,
- 0.0009879498975351453,
- -0.10994730144739151,
- 0.03880830854177475,
- 0.08260946720838547,
- -0.049622874706983566,
- 0.023483123630285263,
- 0.0372321642935276,
- -0.003764764405786991,
- 0.015643883496522903,
- -0.05558456480503082,
- -0.0759994313120842,
- 0.026797233149409294,
- 0.04042813926935196,
- -0.022697944194078445,
- -0.01722201146185398,
- -0.09234896302223206,
- -0.0011859236983582377,
- -0.026198940351605415,
- 0.01698136329650879,
- 0.035980790853500366,
- -0.008336284197866917,
- -0.022261690348386765,
- -0.08706536144018173,
- 0.00638915691524744,
- 0.047717005014419556,
- -0.022016044706106186,
- -0.000188519261428155,
- -0.04213231801986694,
- 0.030448218807578087,
- -0.0632704347372055,
- -0.08540695160627365,
- 0.028410529717803,
- 0.0036582471802830696,
- 0.05390248820185661,
- 0.03674328327178955,
- -0.014879392459988594,
- 0.01118427887558937,
- 0.05203912407159805,
- -0.10472302883863449,
- -0.012352372519671917,
- 0.0420227125287056,
- 0.057135436683893204,
- -0.06863899528980255,
- 0.017129380255937576,
- 0.02637011744081974,
- -0.07146386802196503,
- 0.018846901133656502,
- 0.23477694392204285,
- -0.0074599869549274445,
- 0.02134401723742485,
- 0.06619831174612045,
- -0.011943330988287926,
- -0.007337241433560848,
- -0.017049694433808327,
- -0.038013190031051636,
- 0.08686906844377518,
- -0.030874043703079224,
- -0.051576677709817886,
- -0.002205835422500968,
- -0.07348796725273132,
- 0.0059918914921581745,
- -0.013294474221765995,
- 0.03971122205257416,
- 0.004011009354144335,
- -0.08984918147325516,
- 0.04181543365120888,
- 0.017718510702252388,
- -0.028148191049695015,
- 0.03672265261411667,
- -0.03643343597650528,
- 0.022714419290423393,
- -0.039740342646837234,
- -0.10180991142988205,
- -0.05541190505027771,
- 0.010272044688463211,
- -4.750509524272771e-33,
- 0.0119022810831666,
- -0.060602378100156784,
- 0.026538291946053505,
- 0.1009565219283104,
- -0.00455236854031682,
- -0.0334397591650486,
- -0.006885563489049673,
- -0.030596332624554634,
- -0.08834864944219589,
- 0.044102661311626434,
- -0.023355090990662575,
- 0.04803156480193138,
- -0.03666655346751213,
- 0.033248476684093475,
- 0.11974644660949707,
- -0.07832679897546768,
- 0.07491182535886765,
- 0.013996701687574387,
- -0.02084117941558361,
- -0.03749648109078407,
- 0.028121506795287132,
- -0.04342661425471306,
- -0.06355872005224228,
- 0.027582606300711632,
- 0.05006022751331329,
- -0.009459969587624073,
- -0.044345300644636154,
- 0.001661686459556222,
- 0.058597382158041,
- 0.037802357226610184,
- 0.0016940690111368895,
- -0.06345276534557343,
- -0.0523022897541523,
- -0.011278089135885239,
- 0.03552326187491417,
- -0.0770968347787857,
- -0.046855926513671875,
- -0.04026640206575394,
- 0.0040166303515434265,
- -0.036466069519519806,
- -0.027098635211586952,
- 0.006266835145652294,
- -0.07059519737958908,
- -0.05104544758796692,
- 0.011816203594207764,
- 0.03091934137046337,
- 0.048459216952323914,
- 0.02426779456436634,
- 0.054958775639534,
- 0.04451662302017212,
- -0.020311111584305763,
- -0.02622804418206215,
- -0.0031951044220477343,
- 0.02409367263317108,
- -0.02137031964957714,
- -0.07110538333654404,
- -0.05351622402667999,
- -0.032662283629179,
- 0.027950800955295563,
- -0.018886126577854156,
- 0.05231864005327225,
- 0.05086422711610794,
- -0.028645996004343033,
- 0.005773490760475397,
- 0.018689855933189392,
- -0.011429954320192337,
- 0.04779810830950737,
- -0.05466357618570328,
- -0.02931498922407627,
- 0.039252519607543945,
- -0.011732038110494614,
- -0.05025084316730499,
- 0.09814195334911346,
- 0.013985509052872658,
- 0.043492816388607025,
- 0.0933215394616127,
- -0.0030348501168191433,
- 0.03440401703119278,
- -0.05276784300804138,
- 0.0076300534419715405,
- 0.04632407799363136,
- -0.02849709242582321,
- 0.002352012787014246,
- -0.019520144909620285,
- 0.0069724563509225845,
- 0.05531910061836243,
- -0.03072597086429596,
- -0.0595618411898613,
- -0.02348005212843418,
- 0.0838843435049057,
- -0.08451583236455917,
- 0.012889512814581394,
- 0.011079065501689911,
- 0.08005297929048538,
- -0.026899779215455055,
- 3.932507617448512e-33,
- 0.04639812186360359,
- -0.004346014466136694,
- -0.0489349327981472,
- 0.017904076725244522,
- -0.011116156354546547,
- 0.001579250325448811,
- 0.038359496742486954,
- -0.013068069703876972,
- -0.09004508703947067,
- 0.04662836715579033,
- -0.05123630538582802,
- -0.0008661407046020031,
- 0.09246401488780975,
- 0.05808267369866371,
- 0.029605064541101456,
- 0.008198455907404423,
- 0.13745327293872833,
- 0.06090378016233444,
- -0.011582797393202782,
- 0.028168324381113052,
- -0.03789939731359482,
- -0.06464403867721558,
- -0.07342614978551865,
- -0.06380490958690643,
- 0.007731638848781586,
- 0.020706774666905403,
- 0.11731861531734467,
- 0.05465647205710411,
- -0.07689088582992554,
- 0.01009055133908987,
- 0.11234751343727112,
- 0.0023539173416793346,
- -0.0043324935249984264,
- 0.027661418542265892,
- -0.04019287973642349,
- 0.13708288967609406,
- 0.047435212880373,
- -0.013589778915047646,
- 0.04140200465917587,
- -0.05518864840269089,
- 0.06575722247362137,
- -0.05192228779196739,
- 0.05860653147101402,
- 0.11598917096853256,
- -0.024574559181928635,
- 0.04224695265293121,
- 0.07100243866443634,
- 0.026460561901330948,
- -0.07860653102397919,
- 0.008359656669199467,
- -0.03783132880926132,
- -0.008248189464211464,
- 0.07101588696241379,
- -0.13634759187698364,
- -0.012741989456117153,
- -0.01766214706003666,
- 0.008893957361578941,
- -0.011423961259424686,
- 0.00934913381934166,
- -0.03157944977283478,
- 0.12195265293121338,
- -0.0037886113859713078,
- -0.05229930579662323,
- -0.04320681095123291,
- -0.053315408527851105,
- -0.06626617908477783,
- -0.012327293865382671,
- 0.07975351810455322,
- -0.04280342534184456,
- -0.016201702877879143,
- -0.018705317750573158,
- -0.03975360468029976,
- -0.02146136574447155,
- -0.017205500975251198,
- -0.15033847093582153,
- -0.046311959624290466,
- -0.0206951554864645,
- -0.07629341632127762,
- -0.026116380468010902,
- 0.00213218224234879,
- 0.015876242890954018,
- -0.03008928894996643,
- -0.018642446026206017,
- -0.08346222341060638,
- -0.025896379724144936,
- -0.009029391221702099,
- 0.01797235943377018,
- 0.07511873543262482,
- -0.01886003650724888,
- -0.005779472179710865,
- -0.01497016940265894,
- 0.033636510372161865,
- 0.0892888605594635,
- 0.0678272619843483,
- -0.017216410487890244,
- -1.1806150723714381e-8,
- -0.044867612421512604,
- 0.06800507009029388,
- 0.10791248083114624,
- -0.014083344489336014,
- 0.0913730338215828,
- 0.02622837945818901,
- -0.00716647133231163,
- 0.029438534751534462,
- 0.08768045902252197,
- -0.0019218274392187595,
- -0.019098972901701927,
- -0.009069624356925488,
- -0.06157814338803291,
- 0.11897025257349014,
- 0.04251103848218918,
- -0.0011382821248844266,
- -0.03549300506711006,
- 0.07465296983718872,
- 0.012385177426040173,
- 0.005354470107704401,
- -0.017794428393244743,
- 0.03858073055744171,
- 0.033174335956573486,
- -0.04418971762061119,
- 0.0030782471876591444,
- -0.01565091498196125,
- 0.06309372931718826,
- 0.06739551573991776,
- 0.06342009454965591,
- 0.027028771117329597,
- 0.020168401300907135,
- 0.05503084138035774,
- -0.018738722428679466,
- -0.03389713913202286,
- -0.06723836064338684,
- 0.06231565400958061,
- -0.047505978494882584,
- 0.09198909252882004,
- -0.020614176988601685,
- -0.0747496709227562,
- 0.07236357778310776,
- 0.013346580788493156,
- 0.06690259277820587,
- -0.008109637536108494,
- -0.15318900346755981,
- 0.05233260244131088,
- -0.059820450842380524,
- -0.026005905121564865,
- -0.005803421605378389,
- -0.050410106778144836,
- -0.06343189626932144,
- -0.01875188574194908,
- -0.024398073554039,
- -0.024855436757206917,
- 0.09655754268169403,
- 0.08071248233318329,
- -0.020420843735337257,
- -0.028519535437226295,
- -0.033004049211740494,
- 0.04395267739892006,
- 0.07740030437707901,
- -0.012936078011989594,
- -0.02227178029716015,
- 0.04187962785363197
- ]
- },
- {
- "keyword": "release",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.01353455800563097,
- 0.04658552259206772,
- 0.032393038272857666,
- 0.01450106967240572,
- 0.010358922183513641,
- 0.020726347342133522,
- 0.07974181324243546,
- -0.018969029188156128,
- -0.016103163361549377,
- 0.07343282550573349,
- 0.08143799751996994,
- 0.0009796393569558859,
- -0.013531546108424664,
- -0.05360611155629158,
- 0.04975510016083717,
- 0.05854686722159386,
- -0.020155135542154312,
- -0.0007529652211815119,
- -0.05586810037493706,
- 0.061777230352163315,
- -0.021080970764160156,
- -0.05023456737399101,
- -0.04947073385119438,
- 0.0273794773966074,
- 0.0021844101138412952,
- 0.00873034168034792,
- -0.06664550304412842,
- 0.006057738326489925,
- 0.013341366313397884,
- -0.08040262758731842,
- 0.027381978929042816,
- 0.026575105264782906,
- -0.0013994674663990736,
- -0.006458828691393137,
- -0.008810548111796379,
- -0.03392982482910156,
- 0.03296630457043648,
- 0.024391576647758484,
- 0.041215475648641586,
- -0.01083302777260542,
- -0.0330158956348896,
- -0.06114813685417175,
- 0.002595520345494151,
- 0.043089091777801514,
- 0.027619341388344765,
- 0.04461652785539627,
- -0.0022524071391671896,
- 0.03238953649997711,
- -0.059440236538648605,
- 0.030723227187991142,
- 0.006657080724835396,
- -0.03268377110362053,
- -0.017969045788049698,
- 0.025209074839949608,
- 0.00865345261991024,
- 0.013067440129816532,
- -0.00942514929920435,
- -0.011792391538619995,
- -0.013190606608986855,
- 0.0031396173872053623,
- 0.029212186112999916,
- -0.054759323596954346,
- -0.12224560976028442,
- 0.019483782351017,
- 0.06261047720909119,
- 0.013232347555458546,
- 0.049302130937576294,
- -0.06516064703464508,
- -0.00826177652925253,
- -0.060576193034648895,
- 0.00826285406947136,
- 0.04797555133700371,
- -0.017087005078792572,
- -0.08961529284715652,
- -0.02497471496462822,
- -0.026501083746552467,
- -0.01174348033964634,
- -0.034747861325740814,
- 0.06019090861082077,
- -0.012640761211514473,
- 0.13845624029636383,
- -0.052606772631406784,
- -0.04656623303890228,
- -0.042799320071935654,
- -0.05895344167947769,
- -0.01894024945795536,
- 0.08819590508937836,
- 0.01307427417486906,
- -0.037307918071746826,
- -0.004149272106587887,
- -0.038650378584861755,
- 0.031763382256031036,
- 0.1245097815990448,
- 0.06365285813808441,
- -0.10578222572803497,
- -0.05274586379528046,
- 0.02281307242810726,
- -0.028258642181754112,
- -0.0849306508898735,
- 0.26894885301589966,
- 0.07268808037042618,
- 0.008200740441679955,
- -0.05807581916451454,
- -0.07457411289215088,
- -0.026210881769657135,
- 0.0040643541142344475,
- 0.000982256606221199,
- 0.05832824110984802,
- 0.023432644084095955,
- 0.01889144815504551,
- 0.010382081381976604,
- 0.023520885035395622,
- -0.09496141225099564,
- -0.023070665076375008,
- 0.03580128028988838,
- 0.039693061262369156,
- -0.06904789805412292,
- 0.0855942815542221,
- 0.039974067360162735,
- -0.007346786558628082,
- 0.04322017356753349,
- -0.004917398560792208,
- 0.0318848080933094,
- -0.05471294745802879,
- -0.15567873418331146,
- -0.052664823830127716,
- -0.020814970135688782,
- -4.912247996054318e-33,
- -0.016692040488123894,
- -0.045613404363393784,
- -0.0732531026005745,
- 0.02754734829068184,
- 0.023492418229579926,
- -0.07347818464040756,
- -0.023539694026112556,
- -0.05157412588596344,
- -0.04858209192752838,
- 0.005210188217461109,
- -0.0372423455119133,
- -0.032499492168426514,
- -0.0418139211833477,
- -0.03562028333544731,
- 0.11694663017988205,
- -0.03054804727435112,
- 0.01374538242816925,
- 0.12604203820228577,
- 0.0331936851143837,
- 0.058316655457019806,
- -0.003894662018865347,
- 0.006762126460671425,
- -0.029541833326220512,
- 0.04151558503508568,
- 0.0026480834931135178,
- -0.045355282723903656,
- -0.08633958548307419,
- -0.021002428606152534,
- 0.0057830410078167915,
- 0.020565079525113106,
- -0.033744268119335175,
- 0.08021881431341171,
- 0.019293861463665962,
- -0.014033722691237926,
- 0.04597548395395279,
- -0.08881679177284241,
- -0.07291022688150406,
- -0.041541047394275665,
- 0.02312072366476059,
- -0.09433230757713318,
- 0.024986721575260162,
- 0.026309873908758163,
- -0.04669337347149849,
- 0.011990438215434551,
- 0.061449743807315826,
- 0.008126364089548588,
- 0.0008362862863577902,
- -0.020587896928191185,
- 0.0033640668261796236,
- -0.03313621133565903,
- -0.04293254017829895,
- -0.010253896936774254,
- -0.04302961379289627,
- -0.008154654875397682,
- -0.013671644032001495,
- -0.049314964562654495,
- 0.02413444221019745,
- -0.06013558432459831,
- 0.0504784919321537,
- 0.06343855708837509,
- 0.09442310780286789,
- 0.08932197839021683,
- -0.03872591629624367,
- -0.07495695352554321,
- 0.01826455630362034,
- -0.012804987840354443,
- 0.05818811431527138,
- -0.03652193397283554,
- -0.018564576283097267,
- -0.011015948839485645,
- -0.09375961124897003,
- 0.0016830357490107417,
- 0.03394298255443573,
- -0.03407576307654381,
- 0.06631440669298172,
- -0.011181682348251343,
- 0.03377674147486687,
- 0.02704334817826748,
- 0.012456657364964485,
- 0.012630216777324677,
- -0.014866954647004604,
- 0.009876766242086887,
- -0.010028792545199394,
- 0.08122535049915314,
- 0.0278801117092371,
- 0.05965156480669975,
- -0.017475739121437073,
- 0.007938970811665058,
- 0.04211803898215294,
- 0.10084502398967743,
- -0.07550794631242752,
- 0.015569567680358887,
- -0.04365359991788864,
- -0.01762913353741169,
- 0.03198777884244919,
- 4.522536721268189e-33,
- -0.046332523226737976,
- -0.015640156343579292,
- -0.12538334727287292,
- 0.01978367194533348,
- 0.03158072382211685,
- -0.0349428616464138,
- -0.040764909237623215,
- 0.075436532497406,
- -0.03271240368485451,
- -0.005865648854523897,
- -0.11217521876096725,
- 0.026841655373573303,
- 0.03353565186262131,
- 0.024071678519248962,
- 0.06297807395458221,
- -0.051512353122234344,
- 0.11504046618938446,
- -0.06694574654102325,
- -0.017334941774606705,
- 0.034090783447027206,
- -0.021845903247594833,
- -0.06318854540586472,
- 0.024340225383639336,
- -0.01615270972251892,
- 0.042992446571588516,
- -0.023937970399856567,
- 0.048709239810705185,
- 0.0301036573946476,
- -0.01577918790280819,
- 0.003661127993836999,
- 0.023169120773673058,
- -0.02842404507100582,
- -0.03440958261489868,
- 0.023234335705637932,
- 0.03079933114349842,
- 0.05917933210730553,
- 0.05091669410467148,
- -0.025338204577565193,
- -0.013713233172893524,
- -0.006423929240554571,
- -0.017713749781250954,
- 0.006180427968502045,
- -0.015386568382382393,
- 0.12954556941986084,
- 0.0046512107364833355,
- 0.05503123626112938,
- 0.059285134077072144,
- 0.02561483345925808,
- 0.0030196423176676035,
- 0.07993729412555695,
- -0.005971688777208328,
- -0.0077039082534611225,
- 0.02266494370996952,
- -0.07886580377817154,
- -0.021401556208729744,
- -0.05244845151901245,
- -0.05206863954663277,
- 0.009479711763560772,
- -0.0008398729260079563,
- 0.015293744392693043,
- 0.009281749837100506,
- 0.06085563078522682,
- -0.048467013984918594,
- -0.05611192807555199,
- 0.009551218710839748,
- 0.0075760348699986935,
- -0.0043582674115896225,
- 0.04085177928209305,
- -0.045121945440769196,
- 0.06709795445203781,
- -0.006908784154802561,
- -0.04043680801987648,
- -0.038858283311128616,
- -0.04699639976024628,
- -0.02799030765891075,
- 0.0016612490871921182,
- -0.12091101706027985,
- -0.0367809496819973,
- -0.02818903513252735,
- -0.036819372326135635,
- -0.06908193230628967,
- -0.007686383090913296,
- -0.018111728131771088,
- 0.02407425455749035,
- -0.00525037432089448,
- -0.08310515433549881,
- 0.12834782898426056,
- 0.009467726573348045,
- 0.03730691596865654,
- -0.03480320796370506,
- 0.018162664026021957,
- 0.020011181011795998,
- 0.009031162597239017,
- 0.04872560501098633,
- -0.014304755255579948,
- -1.2018752215681161e-8,
- 0.022298598662018776,
- 0.013715839944779873,
- 0.060052063316106796,
- -0.03575718775391579,
- 0.09302540868520737,
- 0.09140822291374207,
- -0.05029541254043579,
- 0.017300905659794807,
- 0.06344576179981232,
- 0.04291816055774689,
- -0.002023679204285145,
- 0.021979648619890213,
- -0.02244366705417633,
- 0.09843673557043076,
- 0.0688510462641716,
- 0.004104894120246172,
- -0.05995151400566101,
- 0.05793190747499466,
- -0.05384749546647072,
- -0.06525572389364243,
- -0.05655812472105026,
- -0.011798464693129063,
- 0.1494106650352478,
- -0.06692619621753693,
- -0.007731196004897356,
- -0.1102137640118599,
- 0.07142264395952225,
- 0.06773392856121063,
- 0.02936394512653351,
- 0.009959776885807514,
- 0.03978255018591881,
- 0.031773436814546585,
- 0.024496207013726234,
- 0.0025610143784433603,
- 0.033849939703941345,
- 0.007517003919929266,
- -0.06922789663076401,
- 0.10237972438335419,
- 0.10376886278390884,
- 0.046757109463214874,
- 0.020127948373556137,
- 0.06642184406518936,
- 0.06693205237388611,
- 0.05191399157047272,
- -0.06784140318632126,
- -0.002307326765730977,
- 0.0004651016788557172,
- -0.06754176318645477,
- -0.03899576887488365,
- -0.05724276602268219,
- -0.01391286589205265,
- -0.012982720509171486,
- -0.011626273393630981,
- 0.03267664089798927,
- 0.1032644733786583,
- 0.07423222810029984,
- 0.004289357922971249,
- 0.01689229905605316,
- 0.023045312613248825,
- 0.016401944682002068,
- 0.10078251361846924,
- -0.02842790074646473,
- 0.04147045314311981,
- 0.021493704989552498
- ]
- },
- {
- "keyword": "premiere",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.09287841618061066,
- -0.06484953314065933,
- -0.012987117283046246,
- -0.03556714579463005,
- 0.06952986866235733,
- 0.025123735889792442,
- -0.04159937798976898,
- 0.007347604725509882,
- 0.09176591038703918,
- 0.0061940960586071014,
- 0.030108043923974037,
- -0.009040589444339275,
- -0.05407772585749626,
- -0.016447888687253,
- -0.04023456946015358,
- -0.035884108394384384,
- 0.04953047260642052,
- 0.01177804172039032,
- -0.02001074142754078,
- -0.01542107854038477,
- -0.021357811987400055,
- -0.06121180206537247,
- 0.04536128789186478,
- 0.045376647263765335,
- 0.050315480679273605,
- -0.024705374613404274,
- -0.04792041331529617,
- 0.03648301959037781,
- 0.04750882834196091,
- -0.06545975804328918,
- -0.0038757536094635725,
- -0.023541247472167015,
- 0.09903960675001144,
- 0.039621394127607346,
- -0.05008723959326744,
- -0.04372674226760864,
- 0.012775368988513947,
- 0.01986905001103878,
- -0.03937363997101784,
- -0.007719064597040415,
- -0.01400007400661707,
- -0.04806669428944588,
- 0.016733607277274132,
- -0.019579116255044937,
- -0.01269430760294199,
- -0.01332124788314104,
- 0.04017689824104309,
- -0.023151328787207603,
- 0.09249486774206161,
- 0.026155227795243263,
- -0.049229249358177185,
- -0.021412396803498268,
- -0.0649496465921402,
- -0.01905314438045025,
- -0.011466323398053646,
- 0.00042996558477170765,
- -0.02620977722108364,
- -0.06740393489599228,
- -0.008612244389951229,
- -0.055525925010442734,
- -0.018782509490847588,
- -0.030753297731280327,
- -0.004133056849241257,
- 0.02500452846288681,
- 0.08076400309801102,
- 0.03437061980366707,
- 0.023934615775942802,
- 0.02061287872493267,
- -0.010163598693907261,
- -0.0796935185790062,
- -0.0888989120721817,
- 0.010480642318725586,
- 0.036822620779275894,
- 0.007726243231445551,
- -0.058336131274700165,
- 0.005073055159300566,
- 0.06245746836066246,
- -0.07658210396766663,
- -0.06426027417182922,
- -0.02674618549644947,
- 0.0533539243042469,
- -0.05309166759252548,
- -0.07036391645669937,
- 0.028692087158560753,
- -0.01656499318778515,
- 0.02757338248193264,
- 0.06045648455619812,
- -0.01941153220832348,
- -0.004018187988549471,
- 0.039439406245946884,
- -0.14701569080352783,
- 0.022220568731427193,
- 0.034443337470293045,
- 0.005997160915285349,
- -0.10072579979896545,
- 0.011192255653440952,
- 0.02017807774245739,
- -0.11515307426452637,
- 0.11548932641744614,
- 0.2195134311914444,
- 0.018393702805042267,
- -0.05409851670265198,
- 0.04469655454158783,
- -0.07945049554109573,
- 0.015710381790995598,
- -0.019069110974669456,
- 0.04200080409646034,
- 0.05248288810253143,
- 0.018256107345223427,
- 0.030718930065631866,
- 0.030871059745550156,
- -0.003930713981389999,
- -0.0013817560393363237,
- -0.047980498522520065,
- 0.06389742344617844,
- 0.08948028087615967,
- -0.04508145526051521,
- 0.039085038006305695,
- 0.01749417558312416,
- -0.053175538778305054,
- 0.09752494841814041,
- -0.027617065235972404,
- -0.025821300223469734,
- -0.04626556858420372,
- -0.07056855410337448,
- -0.0309461522847414,
- 0.047657545655965805,
- -4.2075729281989424e-33,
- 0.0239904522895813,
- -0.08556284010410309,
- 0.036041390150785446,
- 0.015671174973249435,
- 0.05375588312745094,
- 0.04483366012573242,
- 0.007366868667304516,
- 0.013126659207046032,
- -0.06629545241594315,
- 0.035745587199926376,
- -0.05187555029988289,
- -0.07160570472478867,
- -0.05105964466929436,
- -0.06658874452114105,
- -0.020394831895828247,
- -0.051542315632104874,
- 0.026551708579063416,
- 0.020567435771226883,
- -0.04744654893875122,
- 0.03943030536174774,
- -0.009450254961848259,
- -0.027105772867798805,
- -0.03314140811562538,
- 0.05088203027844429,
- -0.008618262596428394,
- -0.029668066650629044,
- 0.04313519224524498,
- -0.023554058745503426,
- 0.10596638172864914,
- -0.013467052020132542,
- -0.0642092153429985,
- 0.015441235154867172,
- 0.016794277355074883,
- 0.007401089649647474,
- 0.05438261106610298,
- 0.0025867794174700975,
- -0.09953200817108154,
- -0.03925863653421402,
- 0.016877276822924614,
- -0.002582326764240861,
- 0.009195979684591293,
- 0.008238915354013443,
- -0.07337930053472519,
- -0.03161352127790451,
- 0.00042490698979236186,
- -0.00007404891948681325,
- 0.04326687008142471,
- 0.08388137072324753,
- -0.02910933457314968,
- 0.023690752685070038,
- 0.0460992306470871,
- 0.03256119042634964,
- -0.04295504093170166,
- -0.02716686949133873,
- -0.012949004769325256,
- 0.03475385531783104,
- 0.05955500528216362,
- -0.061955247074365616,
- 0.04531754180788994,
- -0.033035364001989365,
- 0.03842996433377266,
- 0.008070236071944237,
- -0.06567292660474777,
- 0.031824029982089996,
- -0.0016099732602015138,
- -0.044334154576063156,
- 0.09369713813066483,
- 0.01464923843741417,
- 0.016186941415071487,
- 0.030514225363731384,
- -0.09286635369062424,
- -0.030280044302344322,
- 0.08228172361850739,
- -0.02674141153693199,
- 0.016982335597276688,
- 0.03151871636509895,
- -0.02593120187520981,
- 0.044403672218322754,
- -0.04523257166147232,
- 0.026641741394996643,
- -0.09097753465175629,
- 0.010763384401798248,
- -0.009085088036954403,
- 0.04792816936969757,
- 0.0887124165892601,
- 0.013874486088752747,
- -0.02993706986308098,
- 0.05315824970602989,
- 0.053003836423158646,
- -0.04745320975780487,
- -0.08300628513097763,
- -0.012544670142233372,
- 0.09228301048278809,
- -0.009005511179566383,
- -0.04608285427093506,
- 4.327844367387294e-33,
- 0.09216874092817307,
- -0.0028630830347537994,
- -0.07487541437149048,
- 0.003091465448960662,
- 0.02220415323972702,
- -0.04440685361623764,
- -0.023406051099300385,
- 0.0362958200275898,
- -0.03688222914934158,
- -0.014333327300846577,
- -0.01349306758493185,
- -0.05899107828736305,
- 0.015347478911280632,
- 0.03565724566578865,
- 0.010139551013708115,
- -0.02392491139471531,
- 0.1120038703083992,
- 0.01889762468636036,
- -0.019556980580091476,
- 0.015515641309320927,
- 0.02033059298992157,
- -0.11868713796138763,
- 0.04200863465666771,
- -0.05969451367855072,
- -0.0420982800424099,
- -0.007073558866977692,
- 0.08946001529693604,
- 0.15065252780914307,
- -0.09924713522195816,
- 0.0026516856160014868,
- 0.07169797271490097,
- -0.054853249341249466,
- -0.030442845076322556,
- 0.05384442210197449,
- -0.04403005540370941,
- 0.15302546322345734,
- 0.05770695209503174,
- -0.02145145647227764,
- -0.07084975391626358,
- -0.0037717048544436693,
- 0.001813037320971489,
- 0.009897262789309025,
- 0.013500531204044819,
- 0.08197199553251266,
- -0.02400497905910015,
- 0.03429078310728073,
- 0.032432787120342255,
- 0.03682301193475723,
- -0.007375328801572323,
- 0.014431202784180641,
- -0.09313421696424484,
- 0.06919240951538086,
- -0.03166218847036362,
- -0.10879524052143097,
- -0.02215828001499176,
- -0.022868476808071136,
- -0.022286685183644295,
- 0.03851606324315071,
- 0.04601650685071945,
- 0.0007630967884324491,
- -0.0019486461533233523,
- 0.03519664332270622,
- -0.03351471945643425,
- -0.07228320091962814,
- 0.001968646887689829,
- 0.0726606473326683,
- 0.015490084886550903,
- 0.0021682290825992823,
- 0.03996990993618965,
- 0.048579342663288116,
- 0.011939823627471924,
- 0.06731614470481873,
- -0.009090370498597622,
- -0.03488451614975929,
- 0.004048940725624561,
- 0.05691879242658615,
- -0.03405457362532616,
- 0.02358916588127613,
- -0.007145339157432318,
- -0.0668516531586647,
- 0.012541885487735271,
- -0.12465735524892807,
- 0.00314377062022686,
- 0.039859648793935776,
- 0.029276305809617043,
- 0.05804309621453285,
- 0.11246106773614883,
- 0.08922388404607773,
- 0.0562904067337513,
- 0.009569644927978516,
- -0.02957094833254814,
- 0.05128910019993782,
- 0.014051207341253757,
- -0.04580948129296303,
- 0.034808870404958725,
- -1.12348175207444e-8,
- -0.06561288982629776,
- 0.04992076754570007,
- -0.014214434660971165,
- -0.056087836623191833,
- 0.03120836429297924,
- -0.04508862644433975,
- -0.021861258894205093,
- -0.01562061719596386,
- 0.07109483331441879,
- -0.04219979792833328,
- -0.057727664709091187,
- -0.0478409044444561,
- 0.018161915242671967,
- -0.006951914168894291,
- 0.0650717169046402,
- 0.006309939548373222,
- 0.01625901460647583,
- 0.07951255887746811,
- -0.08094125986099243,
- -0.023956555873155594,
- 0.012093515135347843,
- -0.03129230812191963,
- 0.0723189264535904,
- -0.0682673379778862,
- 0.05155440419912338,
- -0.062049493193626404,
- 0.019987687468528748,
- 0.057048480957746506,
- -0.0022762222215533257,
- -0.004692315123975277,
- 0.029307661578059196,
- 0.07661869376897812,
- -0.04798451438546181,
- -0.10016099363565445,
- 0.03713681176304817,
- -0.026217423379421234,
- 0.030203329399228096,
- 0.06324128806591034,
- 0.09296205639839172,
- 0.002828968921676278,
- 0.05025850608944893,
- 0.048761624842882156,
- 0.04720441624522209,
- -0.0329795740544796,
- -0.04218263924121857,
- 0.025549743324518204,
- 0.037773024290800095,
- -0.04190114140510559,
- 0.028247322887182236,
- -0.06396829336881638,
- -0.03324767202138901,
- -0.023265168070793152,
- -0.0008402799139730632,
- 0.016230840235948563,
- 0.122649185359478,
- 0.028224604204297066,
- 0.08152494579553604,
- 0.007688644342124462,
- -0.048676930367946625,
- 0.015006734058260918,
- 0.15670554339885712,
- 0.021449264138936996,
- 0.06689507514238358,
- -0.007940203882753849
- ]
- },
- {
- "keyword": "debut",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04578905552625656,
- 0.032649509608745575,
- -0.00307173328474164,
- -0.013329081237316132,
- -0.004181739874184132,
- 0.08796636760234833,
- 0.047620415687561035,
- 0.0438583679497242,
- 0.03582075610756874,
- 0.005283124279230833,
- 0.021388281136751175,
- -0.01067183818668127,
- 0.006022092420607805,
- 0.007974628359079361,
- 0.019606545567512512,
- -0.02122405730187893,
- 0.04394187778234482,
- -0.07678782939910889,
- 0.05884617939591408,
- -0.04402458295226097,
- -0.0160667784512043,
- -0.00553416833281517,
- -0.061507873237133026,
- 0.0030453752260655165,
- 0.0550793819129467,
- 0.005493558943271637,
- -0.00422067753970623,
- 0.03647898882627487,
- 0.05921511352062225,
- -0.10214874148368835,
- 0.030848955735564232,
- -0.006704268045723438,
- 0.03671298176050186,
- 0.06597491353750229,
- -0.07619480043649673,
- 0.004904136992990971,
- 0.019048616290092468,
- -0.003010607324540615,
- -0.022316262125968933,
- 0.03637750819325447,
- -0.004118702840059996,
- -0.13105951249599457,
- -0.05509602278470993,
- 0.013610651716589928,
- 0.03136761486530304,
- -0.011875532567501068,
- 0.10742302983999252,
- 0.04096391797065735,
- 0.016757506877183914,
- 0.05076884478330612,
- 0.05948649346828461,
- 0.015292536467313766,
- -0.0004656427772715688,
- -0.05841213837265968,
- 0.061015158891677856,
- 0.0004665707820095122,
- -0.05747171863913536,
- -0.046834688633680344,
- 0.0028926299419254065,
- -0.04474753141403198,
- 0.023925799876451492,
- -0.0300083477050066,
- -0.04221492260694504,
- 0.010598019696772099,
- 0.03894445672631264,
- -0.015057551674544811,
- 0.026363955810666084,
- 0.027058137580752373,
- 0.020761651918292046,
- 0.014796825125813484,
- 0.0030283485539257526,
- 0.018685128539800644,
- 0.029156584292650223,
- 0.04337379336357117,
- -0.013405145145952702,
- -0.00028380192816257477,
- 0.04354643076658249,
- 0.015566463582217693,
- 0.060877613723278046,
- -0.06231005862355232,
- 0.06622178107500076,
- -0.06834537535905838,
- -0.041412096470594406,
- 0.0056778136640787125,
- -0.055987775325775146,
- 0.01871388591825962,
- 0.0006212288863025606,
- 0.011200500652194023,
- -0.029496481642127037,
- -0.029773766174912453,
- -0.056247528642416,
- 0.06341197341680527,
- -0.02267424948513508,
- 0.06214555725455284,
- -0.12136942148208618,
- -0.008005047217011452,
- -0.009061613120138645,
- -0.06346920132637024,
- 0.10271191596984863,
- 0.24911287426948547,
- 0.052200932055711746,
- 0.048112861812114716,
- 0.006523380056023598,
- 0.018533745780587196,
- 0.0156989935785532,
- -0.038930125534534454,
- 0.04440369829535484,
- 0.002143207238987088,
- -0.030857166275382042,
- 0.003747934475541115,
- 0.01842433586716652,
- -0.015032324008643627,
- -0.0678737536072731,
- 0.023672210052609444,
- 0.035820573568344116,
- 0.02999742515385151,
- -0.014429193921387196,
- 0.06641346216201782,
- 0.01884232833981514,
- 0.007874866016209126,
- 0.09479164332151413,
- 0.024229031056165695,
- -0.028867632150650024,
- -0.02133144810795784,
- -0.13833850622177124,
- -0.002586939837783575,
- 0.004998702090233564,
- -5.444224576674667e-33,
- 0.021076329052448273,
- -0.10451778769493103,
- 0.027583008632063866,
- 0.10724236816167831,
- -0.0039741275832057,
- 0.014216055162250996,
- 0.019368760287761688,
- -0.05766955018043518,
- -0.06645102798938751,
- 0.013989089988172054,
- -0.004749600775539875,
- -0.046094391494989395,
- -0.011181759648025036,
- -0.15071196854114532,
- 0.07995904237031937,
- 0.008219486102461815,
- 0.02626994252204895,
- -0.011276863515377045,
- 0.0004954660544171929,
- 0.03731420263648033,
- -0.03117898479104042,
- 0.06215440481901169,
- 0.01196666806936264,
- -0.005162226967513561,
- -0.027043646201491356,
- -0.02019420824944973,
- -0.03864168003201485,
- -0.09700515866279602,
- -0.0006357231177389622,
- 0.011318240314722061,
- 0.05885153263807297,
- -0.04941964149475098,
- -0.07329215109348297,
- 0.012432490475475788,
- 0.011094251647591591,
- -0.04355742409825325,
- -0.03193863853812218,
- -0.09919214248657227,
- 0.03422803059220314,
- -0.015995502471923828,
- 0.008772045373916626,
- 0.004318539053201675,
- 0.0006898934952914715,
- -0.08230825513601303,
- -0.055033039301633835,
- 0.03582744300365448,
- -0.09230247884988785,
- 0.052591390907764435,
- 0.13678748905658722,
- -0.010456198826432228,
- -0.04527319222688675,
- -0.00848071463406086,
- -0.015328370034694672,
- 0.0046401373110711575,
- 0.008481076918542385,
- -0.030920719727873802,
- -0.060244154185056686,
- -0.10404116660356522,
- 0.044599708169698715,
- 0.016876187175512314,
- -0.011235943995416164,
- 0.08081047981977463,
- -0.09875757992267609,
- 0.03985012322664261,
- -0.029268912971019745,
- -0.039152804762125015,
- 0.08849343657493591,
- -0.0538460873067379,
- -0.00039896267117001116,
- -0.037383969873189926,
- -0.002329891314730048,
- -0.03556279093027115,
- 0.00039133537211455405,
- -0.0769076868891716,
- 0.08757172524929047,
- -0.0032990314066410065,
- 0.08591283112764359,
- 0.004283382557332516,
- -0.026937587186694145,
- 0.056733980774879456,
- -0.035150423645973206,
- 0.03879109025001526,
- 0.01318585965782404,
- -0.0097916629165411,
- -0.028954213485121727,
- 0.033033523708581924,
- -0.003574846778064966,
- -0.018323741853237152,
- -0.05188276618719101,
- 0.06429877877235413,
- -0.03981912136077881,
- 0.029480572789907455,
- -0.010383586399257183,
- 0.027336807921528816,
- 0.023329174146056175,
- 4.346267669942541e-33,
- 0.08108530938625336,
- 0.03760532662272453,
- 0.01828525774180889,
- 0.02447984367609024,
- 0.06426403671503067,
- -0.004861616995185614,
- -0.008239406161010265,
- 0.14738842844963074,
- -0.024801375344395638,
- 0.039170291274785995,
- 0.0425005704164505,
- -0.029202625155448914,
- 0.05387158319354057,
- -0.017664900049567223,
- -0.013157345354557037,
- 0.02691568061709404,
- 0.08814463019371033,
- -0.01781875640153885,
- 0.03415215387940407,
- 0.0540803000330925,
- 0.037911511957645416,
- -0.06618718057870865,
- -0.025225801393389702,
- -0.10832979530096054,
- -0.0059677595272660255,
- 0.01907229609787464,
- 0.12617173790931702,
- 0.07067275047302246,
- -0.14390578866004944,
- -0.052288640290498734,
- 0.0362389013171196,
- 0.027539793401956558,
- -0.021637283265590668,
- 0.017550703138113022,
- -0.008572057820856571,
- 0.10770495980978012,
- -0.03799441456794739,
- -0.040085241198539734,
- 0.021101204678416252,
- 0.04483705386519432,
- 0.002186087891459465,
- 0.023765690624713898,
- 0.03630894050002098,
- 0.11657156050205231,
- -0.01679188385605812,
- -0.033806346356868744,
- 0.029146745800971985,
- 0.08302304148674011,
- -0.010651485994458199,
- 0.036594364792108536,
- -0.09522119909524918,
- 0.03676276654005051,
- -0.033060379326343536,
- -0.051669634878635406,
- 0.002914632670581341,
- -0.012783991172909737,
- -0.038240041583776474,
- 0.04480314254760742,
- 0.026234405115246773,
- 0.025947192683815956,
- 0.0217442624270916,
- 0.00640498660504818,
- -0.07453735917806625,
- -0.056935347616672516,
- -0.03995244950056076,
- 0.0236688032746315,
- -0.03778911009430885,
- 0.050558432936668396,
- -0.026463264599442482,
- -0.0617898590862751,
- -0.07502175122499466,
- 0.047546666115522385,
- -0.07006508111953735,
- -0.06357885152101517,
- -0.10619623214006424,
- 0.03155115619301796,
- -0.0484461635351181,
- -0.025634756311774254,
- 0.015087224543094635,
- -0.010336335748434067,
- -0.13124161958694458,
- 0.019051577895879745,
- -0.06291040033102036,
- 0.053970467299222946,
- 0.0835559144616127,
- 0.02720191515982151,
- 0.05063352361321449,
- 0.015366344712674618,
- 0.038009222596883774,
- 0.003444153815507889,
- 0.08325156569480896,
- -0.01992179825901985,
- -0.006405937951058149,
- -0.0038923800457268953,
- -0.004861240275204182,
- -1.172126928850048e-8,
- -0.05639924108982086,
- 0.08043652027845383,
- -0.029562054201960564,
- 0.01246057078242302,
- 0.08111249655485153,
- 0.07313381880521774,
- -0.022774843499064445,
- -0.07823272049427032,
- 0.037769071757793427,
- -0.03222930058836937,
- -0.05106888711452484,
- 0.000634641561191529,
- 0.03018835373222828,
- -0.013027800247073174,
- 0.0641101524233818,
- 0.059578247368335724,
- -0.07181547582149506,
- 0.0203645508736372,
- -0.07245447486639023,
- -0.015275532379746437,
- -0.018551724031567574,
- -0.015703069046139717,
- 0.05262863263487816,
- -0.09605897963047028,
- 0.018451573327183723,
- -0.04361417889595032,
- -0.01508441660553217,
- -0.0030495966784656048,
- 0.0019144929246976972,
- -0.0128675177693367,
- 0.02411578595638275,
- 0.0804419070482254,
- -0.05194113403558731,
- -0.044156935065984726,
- 0.009379629045724869,
- 0.018961764872074127,
- -0.009077214635908604,
- 0.0009184712544083595,
- 0.04016244038939476,
- -0.0685458779335022,
- -0.0014106238959357142,
- 0.02556263655424118,
- 0.051090482622385025,
- 0.027110787108540535,
- -0.07811780273914337,
- 0.003533789189532399,
- -0.05830137059092522,
- -0.04082323983311653,
- 0.012114590033888817,
- -0.15183833241462708,
- 0.009219031780958176,
- -0.0328090637922287,
- 0.08522266894578934,
- 0.01706567034125328,
- 0.030074236914515495,
- 0.077500119805336,
- -0.0388292521238327,
- 0.014314170926809311,
- -0.027783503755927086,
- 0.013600647449493408,
- 0.08367130905389786,
- 0.04023446515202522,
- 0.06605882942676544,
- 0.006397178862243891
- ]
- },
- {
- "keyword": "announcement",
- "type": "event",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.030750304460525513,
- 0.0925707295536995,
- 0.03196213021874428,
- 0.07639830559492111,
- 0.03065548650920391,
- -0.013129870407283306,
- 0.16046644747257233,
- 0.02375413104891777,
- -0.025223832577466965,
- 0.035860296338796616,
- -0.011525934562087059,
- -0.04017653688788414,
- -0.016603702679276466,
- -0.03161075711250305,
- 0.0005548826302401721,
- 0.021643348038196564,
- 0.011400677263736725,
- -0.0191798135638237,
- -0.07967730611562729,
- 0.01637141779065132,
- 0.030604971572756767,
- -0.0008016637875698507,
- -0.040404751896858215,
- 0.0551840215921402,
- 0.010224820114672184,
- 0.055288080126047134,
- -0.014446321874856949,
- 0.036155473440885544,
- 0.02759404294192791,
- -0.04395440220832825,
- 0.012288364581763744,
- -0.021894382312893867,
- 0.14013725519180298,
- -0.07955266535282135,
- 0.015705697238445282,
- -0.012068632990121841,
- -0.021427154541015625,
- -0.05285832658410072,
- -0.01630459353327751,
- -0.02817750722169876,
- 0.017105983570218086,
- -0.10614891350269318,
- -0.02109294943511486,
- 0.06083251163363457,
- 0.0027525934856384993,
- 0.009265042841434479,
- 0.020065590739250183,
- 0.05571165680885315,
- -0.03587779775261879,
- 0.034489698708057404,
- 0.009598685428500175,
- -0.04238002374768257,
- 0.001974505139514804,
- -0.0867525041103363,
- 0.059163425117731094,
- 0.011836934834718704,
- -0.02461957186460495,
- -0.05977874994277954,
- -0.002948452951386571,
- -0.010289095342159271,
- 0.052532318979501724,
- -0.003376816399395466,
- 0.027449866756796837,
- 0.08627353608608246,
- 0.02699204348027706,
- 0.018218792974948883,
- 0.034354329109191895,
- -0.04757620021700859,
- -0.055333126336336136,
- -0.06031268090009689,
- 0.03505677729845047,
- 0.048907309770584106,
- 0.04891344532370567,
- 0.006290823686867952,
- 0.016687830910086632,
- -0.027565978467464447,
- 0.06358452886343002,
- 0.014575012028217316,
- 0.09128282219171524,
- -0.0022163495887070894,
- 0.010958576574921608,
- -0.06667549163103104,
- -0.036992184817790985,
- -0.08058633655309677,
- -0.0005533087532967329,
- 0.03048931434750557,
- -0.05256013199687004,
- 0.04997255653142929,
- -0.02876134030520916,
- -0.010130058974027634,
- -0.03186099976301193,
- -0.022968145087361336,
- 0.02835741825401783,
- 0.002283138455823064,
- -0.12959086894989014,
- -0.008983880281448364,
- -0.021909216418862343,
- -0.06339360028505325,
- -0.07651034742593765,
- 0.2671034634113312,
- -0.0022651131730526686,
- 0.04732171446084976,
- -0.029618974775075912,
- -0.03368059918284416,
- -0.04721654951572418,
- -0.04054762050509453,
- -0.057279329746961594,
- 0.018918676301836967,
- -0.03596054017543793,
- -0.014997614547610283,
- -0.028063492849469185,
- -0.012484254315495491,
- -0.01176509540528059,
- -0.036367740482091904,
- -0.005599053110927343,
- 0.007752186618745327,
- 0.02261093072593212,
- 0.09170201420783997,
- 0.05011782422661781,
- -0.01652444340288639,
- 0.029493587091565132,
- -0.009571768343448639,
- -0.048100586980581284,
- -0.06018627807497978,
- -0.05333404242992401,
- 0.017187852412462234,
- 0.0026415707543492317,
- -6.211141703064098e-33,
- -0.004038244020193815,
- 0.03159186616539955,
- 0.03477851301431656,
- 0.09471713751554489,
- 0.01360669732093811,
- -0.02100600302219391,
- -0.006375424563884735,
- -0.10900290310382843,
- -0.029371950775384903,
- -0.004818393383175135,
- -0.03043772466480732,
- -0.005892755929380655,
- 0.03400373458862305,
- -0.025594735518097878,
- -0.023913346230983734,
- -0.06560692936182022,
- 0.012210079468786716,
- 0.08538200706243515,
- -0.0011591080110520124,
- -0.0035961049143224955,
- 0.0405597947537899,
- 0.035299498587846756,
- -0.04878219589591026,
- 0.04477687552571297,
- 0.0447184294462204,
- 0.019829416647553444,
- 0.033695586025714874,
- -0.06439772993326187,
- -0.02083824761211872,
- 0.03203801438212395,
- -0.022101247683167458,
- -0.013072429224848747,
- 0.07069583237171173,
- -0.023083163425326347,
- 0.0013442982453852892,
- -0.05768416076898575,
- -0.10120516270399094,
- -0.09987572580575943,
- 0.01541667990386486,
- -0.055521901696920395,
- 0.026111578568816185,
- -0.006978796329349279,
- -0.1278432160615921,
- -0.04498200863599777,
- 0.038483381271362305,
- 0.045857034623622894,
- 0.04418729990720749,
- 0.03291973099112511,
- 0.1441761702299118,
- 0.012302979826927185,
- -0.044113531708717346,
- -0.006857106927782297,
- -0.11560501903295517,
- 0.004990852437913418,
- 0.017908338457345963,
- 0.024916797876358032,
- -0.047351520508527756,
- -0.05018002539873123,
- 0.07125259935855865,
- -0.014903492294251919,
- 0.0432736761868,
- 0.03856618329882622,
- -0.025577619671821594,
- -0.04796234518289566,
- -0.0710153877735138,
- 0.019227469339966774,
- 0.09022368490695953,
- 0.002685156185179949,
- 0.005133225582540035,
- -0.02227669768035412,
- -0.027675315737724304,
- 0.012052996084094048,
- 0.07029729336500168,
- 0.03451831638813019,
- 0.02074028179049492,
- 0.023357588797807693,
- -0.011468877084553242,
- -0.04659927263855934,
- 0.0669860914349556,
- 0.023034019395709038,
- 0.0025601054076105356,
- 0.019135965034365654,
- -0.016043422743678093,
- 0.040092937648296356,
- 0.04027211293578148,
- 0.08400339633226395,
- 0.024644214659929276,
- -0.008524964563548565,
- -0.06902448832988739,
- 0.0778525322675705,
- -0.09376165270805359,
- 0.08386237919330597,
- 0.030215416103601456,
- 0.04791320860385895,
- -0.027833478525280952,
- 3.8168430140894297e-33,
- -0.006039152387529612,
- 0.042206231504678726,
- -0.11002089828252792,
- -0.04488609731197357,
- 0.035399265587329865,
- -0.01714075356721878,
- -0.010807890444993973,
- 0.10240373015403748,
- -0.03278254345059395,
- 0.01100659929215908,
- -0.015044736675918102,
- 0.05629201605916023,
- 0.00740016158670187,
- 0.020180929452180862,
- 0.04076173156499863,
- 0.0037149228155612946,
- 0.12822628021240234,
- 0.022143810987472534,
- 0.014440886676311493,
- 0.029161853715777397,
- -0.04514613747596741,
- -0.038671914488077164,
- -0.04444551467895508,
- -0.05007503926753998,
- -0.024027103558182716,
- -0.031111041083931923,
- 0.08481697738170624,
- 0.04955475032329559,
- 0.012704212218523026,
- -0.03468942269682884,
- 0.020431624725461006,
- -0.019788168370723724,
- -0.08680343627929688,
- 0.02549031563103199,
- 0.07141026854515076,
- 0.0524221733212471,
- 0.09563447535037994,
- -0.010356253944337368,
- -0.0606284998357296,
- 0.04127461835741997,
- 0.09721478074789047,
- -0.006276257801800966,
- 0.03731656074523926,
- 0.09196307510137558,
- -0.05501613765954971,
- 0.0016429891111329198,
- 0.05872129276394844,
- 0.015207150019705296,
- 0.020805079489946365,
- 0.10767700523138046,
- -0.09946621209383011,
- -0.0008684316999278963,
- -0.0323348268866539,
- -0.00862985011190176,
- -0.01725761592388153,
- 0.011318787932395935,
- -0.10304899513721466,
- -0.015175663866102695,
- -0.00424012029543519,
- 0.023414939641952515,
- -0.02870839647948742,
- 0.09531186521053314,
- -0.028749706223607063,
- 0.001987724332138896,
- 0.02097075991332531,
- -0.012138769030570984,
- -0.004142195452004671,
- -0.005162098910659552,
- 0.042240455746650696,
- -0.008456436917185783,
- 0.025047529488801956,
- -0.030031807720661163,
- -0.11720440536737442,
- 0.000827715324703604,
- -0.01694818213582039,
- -0.05500791221857071,
- -0.07433978468179703,
- -0.061827365309000015,
- -0.007044931408017874,
- -0.022670650854706764,
- -0.06810710579156876,
- 0.03387697786092758,
- 0.023764654994010925,
- 0.01971215195953846,
- 0.0019212709739804268,
- -0.013157060369849205,
- 0.0859210267663002,
- 0.07734609395265579,
- 0.028121622279286385,
- -0.031158750876784325,
- -0.04374856874346733,
- -0.003241828177124262,
- -0.004427287727594376,
- 0.019315985962748528,
- 0.012209764681756496,
- -1.4234959877512665e-8,
- 0.014596317894756794,
- 0.036610912531614304,
- 0.0007373132975772023,
- -0.08205952495336533,
- 0.06663431972265244,
- 0.04251277446746826,
- -0.0004023922374472022,
- -0.018611231818795204,
- 0.004696051590144634,
- -0.006117731332778931,
- -0.011588419787585735,
- 0.042911455035209656,
- -0.049965325742959976,
- 0.0254234466701746,
- 0.09361343830823898,
- 0.02102508954703808,
- -0.0965447649359703,
- 0.03424011170864105,
- -0.030726885423064232,
- -0.12016190588474274,
- -0.07567768543958664,
- -0.033249326050281525,
- 0.06572705507278442,
- -0.061854492872953415,
- 0.028897462412714958,
- -0.0940655767917633,
- -0.02242748811841011,
- 0.040150921791791916,
- -0.0447319857776165,
- 0.001927037606947124,
- -0.04149382561445236,
- 0.014618641696870327,
- -0.04722609743475914,
- 0.009325388818979263,
- 0.04481523111462593,
- -0.004979163408279419,
- -0.01589043065905571,
- 0.00977946538478136,
- 0.13874495029449463,
- 0.02457083761692047,
- -0.044559355825185776,
- -0.0852174311876297,
- 0.07330749183893204,
- 0.015046481043100357,
- -0.04608098790049553,
- 0.019526280462741852,
- -0.0037855012342333794,
- -0.12442536652088165,
- -0.06615965068340302,
- -0.0786040723323822,
- -0.006679881829768419,
- -0.017811862751841545,
- 0.03095998801290989,
- 0.0033645492512732744,
- 0.06668093800544739,
- 0.07044141739606857,
- -0.026221346110105515,
- -0.025039145722985268,
- 0.01153588481247425,
- 0.007461755070835352,
- 0.13285231590270996,
- -0.06637530773878098,
- -0.006003437098115683,
- 0.004097527824342251
- ]
- },
- {
- "keyword": "product",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.07416178286075592,
- 0.04158826544880867,
- 0.002162342192605138,
- -0.0026977350935339928,
- 0.021196046844124794,
- -0.027809632942080498,
- 0.17501631379127502,
- 0.08925289660692215,
- -0.00160219706594944,
- -0.016393443569540977,
- 0.022686611860990524,
- -0.05494392663240433,
- 0.05357380956411362,
- -0.0010129205184057355,
- -0.07077988982200623,
- 0.044567178934812546,
- 0.01053481362760067,
- 0.02757236547768116,
- -0.1482168585062027,
- -0.02291148528456688,
- -0.032001711428165436,
- 0.023050468415021896,
- -0.006498121656477451,
- 0.045379798859357834,
- -0.07281394302845001,
- 0.08733461052179337,
- -0.0006742945988662541,
- 0.01848278008401394,
- 0.06363322585821152,
- -0.0984315350651741,
- 0.044826868921518326,
- -0.01837214268743992,
- 0.04474325105547905,
- -0.019973736256361008,
- 0.040375713258981705,
- 0.021676797419786453,
- 0.0075307972729206085,
- -0.030672535300254822,
- -0.048712994903326035,
- -0.015045755542814732,
- 0.015497814863920212,
- -0.11759047955274582,
- -0.09328475594520569,
- -0.000834705017041415,
- 0.02781255915760994,
- 0.04269488528370857,
- 0.06152733787894249,
- 0.04149850830435753,
- 0.04727289825677872,
- 0.058854736387729645,
- -0.09257837384939194,
- 0.007721705362200737,
- -0.022062873467803,
- -0.0239340141415596,
- -0.02177298255264759,
- -0.006537177599966526,
- -0.029834942892193794,
- 0.029673192650079727,
- -0.01757654920220375,
- -0.019369199872016907,
- 0.0790121778845787,
- -0.031935226172208786,
- -0.0879303514957428,
- 0.03938242793083191,
- 0.037108056247234344,
- -0.006622953340411186,
- 0.0030712587758898735,
- -0.07687371224164963,
- -0.08846437931060791,
- 0.030786411836743355,
- 0.007184385322034359,
- 0.03891373053193092,
- -0.010774975642561913,
- 0.038097262382507324,
- 0.01974470168352127,
- 0.030492203310132027,
- 0.04431777074933052,
- -0.0562778078019619,
- 0.08352787792682648,
- 0.018588637933135033,
- 0.03515360504388809,
- 0.017648590728640556,
- -0.06136295944452286,
- 0.020103424787521362,
- -0.0004399266908876598,
- -0.01977699249982834,
- 0.006570920813828707,
- -0.0036371643655002117,
- -0.020554225891828537,
- 0.04812796413898468,
- -0.04153767600655556,
- 0.014283336699008942,
- 0.012107624672353268,
- -0.017700783908367157,
- -0.07768741995096207,
- -0.009745181538164616,
- 0.019843269139528275,
- -0.06340782344341278,
- 0.009062476456165314,
- 0.2766339182853699,
- -0.0401340089738369,
- 0.01522288378328085,
- -0.017548004165291786,
- -0.12848599255084991,
- -0.049941737204790115,
- -0.008907461538910866,
- -0.0785805881023407,
- 0.03893683850765228,
- 0.05021659657359123,
- 0.03590001165866852,
- -0.0797472819685936,
- -0.04080300033092499,
- -0.06866060942411423,
- 0.060511406511068344,
- -0.015411525033414364,
- -0.010602542199194431,
- -0.04321559891104698,
- 0.023464180529117584,
- 0.0023007455747574568,
- -0.05933834984898567,
- 0.03198421373963356,
- 0.02311326377093792,
- 0.0721377283334732,
- 0.015562981367111206,
- -0.10425066947937012,
- -0.03188229352235794,
- 0.019747989252209663,
- -3.3661136642620395e-33,
- -0.0072815921157598495,
- -0.05516580864787102,
- -0.027084071189165115,
- 0.044833969324827194,
- -0.0722273513674736,
- 0.029291043058037758,
- -0.013272499665617943,
- -0.04695415496826172,
- -0.00997073296457529,
- 0.05975756421685219,
- -0.04535637050867081,
- 0.05919796600937843,
- 0.0174558162689209,
- 0.06116241589188576,
- 0.15600056946277618,
- 0.04436567798256874,
- 0.00413950439542532,
- 0.014435956254601479,
- 0.0041425758972764015,
- -0.025236185640096664,
- -0.07813531160354614,
- 0.0505012646317482,
- -0.026889920234680176,
- 0.09390050172805786,
- -0.04775391146540642,
- -0.08657357096672058,
- 0.025650355964899063,
- -0.03864539414644241,
- 0.02701718732714653,
- 0.017411451786756516,
- 0.04778625816106796,
- 0.031035080552101135,
- 0.06285762041807175,
- -0.10793451219797134,
- -0.05928935110569,
- 0.00238895695656538,
- 0.0036604844499379396,
- -0.1336994171142578,
- 0.022714480757713318,
- 0.0437525250017643,
- -0.022046364843845367,
- 0.002691263100132346,
- 0.007383016869425774,
- 0.05989161506295204,
- -0.0014390129363164306,
- 0.006505049765110016,
- 0.009212048724293709,
- 0.022437047213315964,
- -0.03555276617407799,
- -0.00452395249158144,
- -0.031756117939949036,
- 0.009028393775224686,
- 0.012980992905795574,
- -0.019666479900479317,
- -0.002222752431407571,
- -0.030471941456198692,
- -0.014872439205646515,
- -0.025153428316116333,
- 0.040699053555727005,
- 0.02433369681239128,
- 0.015227171592414379,
- 0.10728837549686432,
- 0.010964058339595795,
- 0.012311655096709728,
- -0.08172617107629776,
- -0.01370345987379551,
- 0.04758383706212044,
- -0.031154142692685127,
- -0.008459094911813736,
- 0.030237466096878052,
- -0.07525911182165146,
- -0.021035300567746162,
- 0.11766087263822556,
- -0.025141600519418716,
- 0.028096802532672882,
- -0.03531429171562195,
- -0.02015591226518154,
- 0.008492568507790565,
- -0.02598123624920845,
- 0.0032555367797613144,
- -0.037431880831718445,
- 0.01986481435596943,
- 0.018213745206594467,
- 0.054656703025102615,
- -0.028678569942712784,
- 0.0007649662438780069,
- -0.05257857218384743,
- -0.10179056227207184,
- 0.046809859573841095,
- 0.033922258764505386,
- -0.009700840339064598,
- 0.019290046766400337,
- 0.00714908167719841,
- 0.05150196701288223,
- -0.06002051755785942,
- 3.049139408510902e-33,
- -0.06737500429153442,
- -0.056740403175354004,
- 0.054789911955595016,
- 0.04070623964071274,
- 0.06271154433488846,
- -0.03621445596218109,
- 0.0048775384202599525,
- -0.04309621453285217,
- -0.03453892096877098,
- 0.07921022176742554,
- -0.0629890114068985,
- -0.0578642338514328,
- 0.07835888862609863,
- 0.029360271990299225,
- -0.0386585108935833,
- 0.13446901738643646,
- 0.11865390837192535,
- -0.03429517522454262,
- 0.0467616468667984,
- -0.06666433066129684,
- -0.029448023065924644,
- 0.001940404181368649,
- -0.03838903084397316,
- -0.03010743297636509,
- -0.05564853176474571,
- -0.008404784835875034,
- 0.07184138894081116,
- -0.019680704921483994,
- 0.040388572961091995,
- 0.018786273896694183,
- 0.08787931501865387,
- -0.04952128976583481,
- -0.08929411321878433,
- 0.009244116954505444,
- -0.005660653579980135,
- 0.08644808083772659,
- 0.10147753357887268,
- -0.02691652998328209,
- 0.00911562517285347,
- -0.07353980094194412,
- 0.0520406998693943,
- -0.031156202778220177,
- 0.013220616616308689,
- 0.09329046308994293,
- -0.0021962898317724466,
- -0.01272919587790966,
- 0.016687989234924316,
- -0.030351614579558372,
- 0.04974658042192459,
- 0.03876815363764763,
- -0.04057954251766205,
- 0.024579698219895363,
- 0.025644542649388313,
- -0.09376021474599838,
- -0.07928662747144699,
- 0.0037199074868112803,
- 0.03303205221891403,
- -0.006125818006694317,
- -0.010391009040176868,
- -0.00978704821318388,
- -0.02677503414452076,
- 0.041668087244033813,
- 0.0024597246665507555,
- 0.010491854511201382,
- 0.01347052026540041,
- 0.02508179098367691,
- 0.02621276304125786,
- -0.008542500436306,
- 0.031061435118317604,
- 0.02044328860938549,
- 0.08440661430358887,
- 0.06939199566841125,
- -0.07468671351671219,
- 0.012801343575119972,
- -0.03138904273509979,
- -0.03842198848724365,
- -0.09958843886852264,
- 0.015765337273478508,
- -0.0008597167325206101,
- -0.03150874376296997,
- -0.016151005402207375,
- -0.0756918415427208,
- -0.02663765661418438,
- 0.02948671579360962,
- -0.02199580706655979,
- -0.02742180973291397,
- 0.01172037422657013,
- 0.01372535154223442,
- -0.015431420877575874,
- 0.012902135029435158,
- -0.04233234003186226,
- 0.02699972689151764,
- -0.123692587018013,
- 0.07862228900194168,
- 0.06460109353065491,
- -1.304956231962251e-8,
- -0.0010330184595659375,
- -0.011842667125165462,
- 0.08277910202741623,
- 0.018903840333223343,
- 0.009866664186120033,
- 0.03208088129758835,
- -0.027808740735054016,
- 0.009627831168472767,
- 0.0036675063893198967,
- 0.0378141887485981,
- 0.03651977702975273,
- 0.061831675469875336,
- -0.021434027701616287,
- 0.11661802977323532,
- 0.07480529695749283,
- -0.01647809147834778,
- -0.08706535398960114,
- 0.013914805836975574,
- -0.04019768908619881,
- -0.02624794840812683,
- -0.0015966157661750913,
- 0.04287362098693848,
- 0.06927964091300964,
- -0.04592049866914749,
- -0.0908237099647522,
- -0.053264230489730835,
- 0.035909075289964676,
- 0.11810983717441559,
- 0.0016488962573930621,
- -0.03857885301113129,
- 0.016749229282140732,
- 0.08090321719646454,
- -0.022520415484905243,
- -0.027105657383799553,
- 0.02623053640127182,
- -0.07781632989645004,
- -0.011186260730028152,
- 0.04485238716006279,
- 0.025941237807273865,
- 0.059995826333761215,
- -0.045759037137031555,
- -0.04778347909450531,
- 0.006887298543006182,
- -0.02616238221526146,
- -0.021378278732299805,
- -0.010005826130509377,
- 0.018705982714891434,
- -0.014393271878361702,
- -0.0430937297642231,
- 0.033705707639455795,
- 0.012242062017321587,
- 0.015162336640059948,
- 0.0382060669362545,
- -0.002247254131361842,
- 0.03552721068263054,
- 0.013055393472313881,
- 0.04882105439901352,
- -0.03851046785712242,
- -0.04056219011545181,
- 0.04137803614139557,
- 0.0833292156457901,
- -0.0167279914021492,
- 0.0600777193903923,
- 0.03731130063533783
- ]
- },
- {
- "keyword": "item",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.07739857584238052,
- 0.04376380145549774,
- -0.03421203792095184,
- 0.02071566693484783,
- 0.012735381722450256,
- -0.025312302634119987,
- 0.19017821550369263,
- 0.03930078074336052,
- -0.015352566726505756,
- 0.005094127729535103,
- 0.02017228491604328,
- -0.0549287311732769,
- 0.007417367771267891,
- -0.03654342144727707,
- 0.01478491723537445,
- 0.027888821437954903,
- 0.04311453551054001,
- 0.0012551515828818083,
- -0.14042255282402039,
- -0.02356388419866562,
- -0.06306565552949905,
- 0.018083196133375168,
- 0.013064192607998848,
- 0.0025936407037079334,
- -0.10381463915109634,
- 0.0709594190120697,
- -0.02417254075407982,
- -0.013517591170966625,
- 0.06265734136104584,
- -0.09247671067714691,
- 0.015521765686571598,
- -0.03451291099190712,
- 0.12954509258270264,
- 0.01759778894484043,
- 0.042721591889858246,
- -0.0004912927397526801,
- -0.031000541523098946,
- 0.0004391497641336173,
- -0.044386569410562515,
- 0.030119014903903008,
- 0.03252195939421654,
- -0.05730390548706055,
- -0.05900050327181816,
- -0.03455865755677223,
- -0.006057008169591427,
- 0.015664931386709213,
- 0.03832659870386124,
- -0.008095606230199337,
- 0.03633827716112137,
- 0.05251847952604294,
- -0.07701119035482407,
- -0.028690656647086143,
- -0.06949960440397263,
- 0.038906559348106384,
- 0.01618201658129692,
- 0.06817606836557388,
- -0.012666087597608566,
- 0.03159533441066742,
- 0.01091447751969099,
- -0.0209026001393795,
- 0.06674181669950485,
- 0.0222431942820549,
- -0.11864794790744781,
- 0.04205787181854248,
- 0.03239871934056282,
- -0.02139934152364731,
- -0.005772465839982033,
- -0.09456973522901535,
- -0.08314411342144012,
- -0.028432544320821762,
- 0.04341232776641846,
- 0.019293982535600662,
- -0.029198823496699333,
- -0.01132577657699585,
- 0.07728484272956848,
- -0.05183732509613037,
- 0.07684921473264694,
- -0.08161702007055283,
- 0.024661939591169357,
- 0.06064240261912346,
- -0.052807193249464035,
- -0.01438004057854414,
- -0.05983936786651611,
- -0.07663936167955399,
- 0.0635107234120369,
- -0.0018901609582826495,
- 0.013842521235346794,
- 0.05622175708413124,
- -0.04779806733131409,
- 0.0564587265253067,
- -0.05790617689490318,
- 0.002648301888257265,
- 0.06436453014612198,
- -0.04357761889696121,
- 0.04715152084827423,
- 0.03231119364500046,
- 0.02684611640870571,
- -0.018082033842802048,
- -0.10672467947006226,
- 0.21373511850833893,
- 0.021632812917232513,
- 0.031106453388929367,
- -0.014963733963668346,
- -0.004877754487097263,
- -0.000027321630113874562,
- -0.03929217904806137,
- -0.06459429115056992,
- -0.037848491221666336,
- 0.02141481079161167,
- 0.013903100974857807,
- -0.046156320720911026,
- -0.01471039466559887,
- -0.09539687633514404,
- -0.03852378576993942,
- -0.04694829881191254,
- -0.07196170091629028,
- -0.0870291218161583,
- 0.028267772868275642,
- 0.06100161373615265,
- -0.06052176281809807,
- 0.033273354172706604,
- -0.032751038670539856,
- -0.016652172431349754,
- -0.03709226846694946,
- -0.10716720670461655,
- -0.033447541296482086,
- 0.051371391862630844,
- -5.112496030110787e-33,
- 0.020028669387102127,
- -0.044909242540597916,
- -0.029143746942281723,
- -0.019012238830327988,
- 0.01445944793522358,
- -0.01462616492062807,
- -0.0056824395433068275,
- 0.007811353541910648,
- -0.0269702710211277,
- 0.06252235919237137,
- -0.024281946942210197,
- 0.06391634792089462,
- -0.009466138668358326,
- 0.036709874868392944,
- 0.07298261672258377,
- -0.02975577861070633,
- 0.02907925471663475,
- 0.07360351085662842,
- 0.027487196028232574,
- -0.02126527577638626,
- -0.06965482234954834,
- 0.009388438425958157,
- -0.008339240215718746,
- 0.04430011659860611,
- -0.04153766110539436,
- -0.011655012145638466,
- 0.03320617228746414,
- -0.05253059044480324,
- -0.02366713061928749,
- 0.03236916661262512,
- 0.028522618114948273,
- 0.008834405802190304,
- 0.030135449022054672,
- -0.019372116774320602,
- -0.013334432616829872,
- 0.021193044260144234,
- 0.015035759657621384,
- -0.08191525936126709,
- 0.002737537259235978,
- -0.02412841096520424,
- 0.010014730505645275,
- 0.011896704323589802,
- -0.07031705230474472,
- 0.08676735311746597,
- -0.023099316284060478,
- -0.016407685354351997,
- 0.0644594058394432,
- 0.021146928891539574,
- 0.04868682473897934,
- 0.011763677932322025,
- -0.04828352481126785,
- 0.008456858806312084,
- -0.11722603440284729,
- -0.021974071860313416,
- -0.07672924548387527,
- -0.010865381918847561,
- -0.01000700518488884,
- 0.00005732094723498449,
- 0.04016627371311188,
- -0.01701033115386963,
- 0.09535464644432068,
- 0.10465340316295624,
- 0.04885171726346016,
- 0.0032806950621306896,
- 0.025849541649222374,
- -0.02156759612262249,
- 0.030778970569372177,
- -0.07685846090316772,
- 0.006610742770135403,
- -0.03834391012787819,
- -0.09015164524316788,
- 0.014464380219578743,
- 0.11571405827999115,
- 0.0055556753650307655,
- 0.020305760204792023,
- -0.0063037690706551075,
- 0.01228975411504507,
- -0.01761023700237274,
- -0.0101830018684268,
- -0.016894562169909477,
- -0.08412692695856094,
- -0.03133562579751015,
- -0.017972910776734352,
- 0.038212209939956665,
- -0.023439137265086174,
- 0.054596178233623505,
- 0.004296471830457449,
- -0.07780589163303375,
- 0.03228118270635605,
- -0.00014754600124433637,
- -0.009498672559857368,
- 0.045538272708654404,
- 0.02275906503200531,
- 0.0021168901585042477,
- 0.006461096927523613,
- 3.904064327578459e-33,
- -0.000965754734352231,
- 0.026068441569805145,
- -0.03929900750517845,
- 0.039632152765989304,
- 0.11494678258895874,
- -0.026528457179665565,
- 0.05376331880688667,
- -0.02153867669403553,
- -0.05964832752943039,
- 0.05448098108172417,
- -0.05764037370681763,
- -0.023873411118984222,
- 0.07938234508037567,
- -0.04616212844848633,
- 0.09054383635520935,
- 0.10901682078838348,
- 0.061067234724760056,
- -0.02540864236652851,
- 0.038423486053943634,
- -0.061806827783584595,
- -0.01742641255259514,
- 0.02831902727484703,
- -0.028185997158288956,
- -0.09847770631313324,
- -0.07654213905334473,
- -0.0024303689133375883,
- 0.058454204350709915,
- -0.07729535549879074,
- 0.056629400700330734,
- 0.015962906181812286,
- 0.08644817769527435,
- 0.011734923347830772,
- 0.031032003462314606,
- 0.038403261452913284,
- -0.011009699665009975,
- 0.08464788645505905,
- 0.09700529277324677,
- -0.006594223901629448,
- -0.021725937724113464,
- 0.034954290837049484,
- 0.07160106301307678,
- 0.008500239811837673,
- 0.02842632494866848,
- 0.14879782497882843,
- -0.018001535907387733,
- -0.04014242812991142,
- -0.06741737574338913,
- 0.03032347932457924,
- 0.08702211827039719,
- 0.05699941888451576,
- -0.0033118834253400564,
- 0.011376368813216686,
- -0.0008743078797124326,
- -0.0057426802814006805,
- -0.03410836309194565,
- 0.06060796603560448,
- -0.02596372365951538,
- -0.011836936697363853,
- 0.01757301390171051,
- -0.003826484316959977,
- -0.05163494125008583,
- 0.027520492672920227,
- 0.0019847778603434563,
- 0.04207410663366318,
- 0.053778134286403656,
- 0.05977139621973038,
- 0.0023105666041374207,
- -0.04481620341539383,
- -0.04000140726566315,
- -0.014514177106320858,
- 0.10245535522699356,
- 0.020503945648670197,
- -0.02651466615498066,
- 0.009472661651670933,
- -0.017681393772363663,
- -0.11938020586967468,
- 0.0011088638566434383,
- 0.043096620589494705,
- 0.04748380184173584,
- 0.0466616228222847,
- 0.021781649440526962,
- -0.020998289808630943,
- -0.018990371376276016,
- 0.031090009957551956,
- -0.01619279943406582,
- -0.11763148754835129,
- 0.06021524965763092,
- 0.07840218394994736,
- -0.017846133559942245,
- 0.014215352013707161,
- -0.05392727255821228,
- -0.026626622304320335,
- 0.03278465196490288,
- 0.05395256727933884,
- 0.003380583832040429,
- -1.298022400675336e-8,
- -0.03256698697805405,
- 0.03908823803067207,
- 0.059098564088344574,
- 0.014489286579191685,
- 0.051419056951999664,
- 0.03722270950675011,
- -0.06682179123163223,
- 0.052249517291784286,
- -0.014031532220542431,
- 0.0012483623577281833,
- 0.05028734728693962,
- 0.016008375212550163,
- -0.02821463905274868,
- 0.05598814785480499,
- 0.10953736305236816,
- -0.042296286672353745,
- -0.07129412144422531,
- 0.020808957517147064,
- -0.0005600190488621593,
- -0.01781386137008667,
- -0.0013358361320570111,
- -0.003211909206584096,
- 0.038617316633462906,
- -0.0819530263543129,
- -0.04296852648258209,
- -0.015422885306179523,
- -0.053019460290670395,
- 0.09264789521694183,
- -0.04311720281839371,
- 0.02709091827273369,
- 0.02076706849038601,
- 0.03522810712456703,
- 0.019000984728336334,
- -0.0022410457022488117,
- 0.0009571160189807415,
- -0.03614259138703346,
- -0.07303917407989502,
- -0.021207883954048157,
- 0.006293144077062607,
- -0.022410575300455093,
- 0.047754812985658646,
- -0.11539646238088608,
- 0.00011173312668688595,
- -0.00461910804733634,
- -0.03541294112801552,
- 0.015937788411974907,
- -0.06718939542770386,
- -0.08717118203639984,
- -0.07098519802093506,
- 0.05765184760093689,
- -0.009571858681738377,
- -0.007712678052484989,
- -0.015110695734620094,
- 0.01424664817750454,
- -0.00019932784198317677,
- 0.014626892283558846,
- 0.10177803784608841,
- -0.03337385505437851,
- -0.010023604147136211,
- 0.01911267824470997,
- 0.15647746622562408,
- 0.017123090103268623,
- -0.09592346847057343,
- 0.02482997626066208
- ]
- },
- {
- "keyword": "goods",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.08539815992116928,
- 0.01656978577375412,
- -0.008532689884305,
- 0.004689444787800312,
- 0.015612978488206863,
- 0.02464747428894043,
- 0.1745767742395401,
- -0.027111491188406944,
- -0.02783295139670372,
- 0.012782557867467403,
- 0.0702739953994751,
- -0.07976582646369934,
- 0.006454751826822758,
- -0.0026295194402337074,
- -0.009288384579122066,
- 0.01171589270234108,
- 0.04201985150575638,
- -0.023085052147507668,
- -0.0978505089879036,
- -0.005949826445430517,
- -0.012411809526383877,
- 0.03153391554951668,
- 0.008805559948086739,
- 0.013193055056035519,
- -0.10135114938020706,
- 0.09405668824911118,
- -0.036078859120607376,
- 0.0021103909239172935,
- 0.01755567267537117,
- -0.12109507620334625,
- 0.03228220343589783,
- 0.008526572957634926,
- -0.0034523799549788237,
- 0.022238191217184067,
- -0.03648397698998451,
- 0.06639891862869263,
- 0.039559267461299896,
- -0.10584831982851028,
- 0.0015343691920861602,
- -0.019363105297088623,
- 0.042897116392850876,
- -0.09520810097455978,
- -0.06203491613268852,
- 0.00397585378959775,
- 0.012691916897892952,
- 0.015490194782614708,
- 0.068215012550354,
- 0.019079845398664474,
- 0.055160000920295715,
- -0.03727957233786583,
- -0.02147175371646881,
- 0.02525210753083229,
- -0.09002362936735153,
- 0.039164330810308456,
- 0.05078306794166565,
- 0.016025686636567116,
- 0.05229337140917778,
- 0.0063546583987772465,
- -0.015042505227029324,
- -0.06381125003099442,
- 0.05561593547463417,
- -0.010658989660441875,
- -0.026884768158197403,
- -0.012276453897356987,
- 0.0773010104894638,
- -0.07502778619527817,
- -0.07927187532186508,
- 0.07721640169620514,
- -0.15987344086170197,
- 0.024366846308112144,
- 0.061845581978559494,
- -0.008808627724647522,
- 0.046499792486429214,
- 0.006227334029972553,
- 0.0752747431397438,
- -0.025310562923550606,
- 0.08382586389780045,
- -0.08289697766304016,
- 0.020018287003040314,
- -0.0017583343433216214,
- -0.07225744426250458,
- 0.0430380143225193,
- -0.08838524669408798,
- 0.037075337022542953,
- -0.005561641417443752,
- -0.01718047447502613,
- -0.00018992862896993756,
- -0.0018754563061520457,
- 0.03642129898071289,
- 0.03612622246146202,
- -0.02537832036614418,
- -0.01421345490962267,
- 0.06689108163118362,
- 0.0072496505454182625,
- -0.04510321095585823,
- -0.011208906769752502,
- 0.008385766297578812,
- -0.060189224779605865,
- -0.02176566608250141,
- 0.24865718185901642,
- 0.030131841078400612,
- 0.06872863322496414,
- 0.07069576531648636,
- -0.01596454530954361,
- -0.03388723358511925,
- -0.035911668092012405,
- -0.07137652486562729,
- 0.04862304776906967,
- -0.006319292355328798,
- 0.03497584909200668,
- -0.04341653734445572,
- 0.02471429854631424,
- -0.07419652491807938,
- 0.032788489013910294,
- -0.012896347790956497,
- 0.04563673213124275,
- -0.02564559504389763,
- -0.01150225754827261,
- 0.006963238585740328,
- -0.12073488533496857,
- -0.0119025819003582,
- -0.017915967851877213,
- 0.012904013507068157,
- -0.01540149375796318,
- -0.07863001525402069,
- -0.06259747594594955,
- 0.039890874177217484,
- -6.598114443354795e-33,
- -0.0051095387898385525,
- -0.057481907308101654,
- 0.004133244510740042,
- -0.030363276600837708,
- -0.034205447882413864,
- 0.017935961484909058,
- 0.023809393867850304,
- 0.016161998733878136,
- -0.03900667279958725,
- 0.06046831235289574,
- -0.07205422222614288,
- 0.12635312974452972,
- -0.059587061405181885,
- 0.09839528053998947,
- 0.13598352670669556,
- -0.013605487532913685,
- -0.06343995779752731,
- 0.004555983003228903,
- 0.06313321739435196,
- -0.005875881295651197,
- -0.0410907007753849,
- -0.051326051354408264,
- 0.034157659858465195,
- 0.04239175468683243,
- -0.005809484049677849,
- -0.06533206254243851,
- 0.028253722935914993,
- -0.03719056025147438,
- 0.10001948475837708,
- 0.012649969197809696,
- 0.048948053270578384,
- 0.0533071868121624,
- 0.0551099069416523,
- -0.04605954885482788,
- -0.08549197763204575,
- 0.020070655271410942,
- -0.07745278626680374,
- -0.05061237886548042,
- -0.0018286042613908648,
- -0.09169026464223862,
- 0.006377058569341898,
- 0.0007036164752207696,
- 0.027579041197896004,
- 0.06261475384235382,
- -0.05602414160966873,
- 0.028955986723303795,
- 0.049590468406677246,
- 0.004116984084248543,
- -0.047075752168893814,
- 0.01510050892829895,
- -0.04570150375366211,
- -0.06172313168644905,
- -0.033330995589494705,
- -0.01903059333562851,
- -0.03984694927930832,
- -0.06388784945011139,
- -0.010125141590833664,
- 0.03906866908073425,
- -0.022884750738739967,
- -0.020149128511548042,
- 0.06098046526312828,
- 0.06436561793088913,
- 0.06259959191083908,
- 0.04117758572101593,
- -0.04013470560312271,
- -0.015267930924892426,
- 0.0009451116202399135,
- -0.07294425368309021,
- 0.06057159602642059,
- -0.04437178000807762,
- -0.050290193408727646,
- 0.025468168780207634,
- 0.03738085925579071,
- -0.031991444528102875,
- 0.029259564355015755,
- 0.033068910241127014,
- -0.02314876578748226,
- 0.011753017082810402,
- -0.01940048113465309,
- -0.014920003712177277,
- -0.024383610114455223,
- -0.019139517098665237,
- 0.04544677212834358,
- 0.032601453363895416,
- -0.03363867849111557,
- 0.0471917949616909,
- 0.0014651294331997633,
- -0.06390300393104553,
- 0.05711293965578079,
- -0.008940690197050571,
- -0.06547149270772934,
- 0.04624617099761963,
- 0.036316875368356705,
- -0.01580963283777237,
- -0.010940159671008587,
- 5.489097236807385e-33,
- 0.01973724365234375,
- 0.058923397213220596,
- -0.03489021211862564,
- 0.17332321405410767,
- -0.017222199589014053,
- 0.0033069257624447346,
- 0.0010054557351395488,
- 0.0034294312354177237,
- 0.004699608311057091,
- 0.06845148652791977,
- -0.12361602485179901,
- -0.051458559930324554,
- 0.029782967641949654,
- 0.03666766360402107,
- 0.059229712933301926,
- 0.01655971258878708,
- 0.09478413313627243,
- -0.016201170161366463,
- 0.03668568283319473,
- -0.022814374417066574,
- -0.02223999798297882,
- 0.02547457441687584,
- -0.04782017692923546,
- -0.04615091159939766,
- -0.0905008614063263,
- 0.041329506784677505,
- -0.010776244103908539,
- -0.016646733507514,
- -0.0469483807682991,
- 0.025620095431804657,
- 0.08246057480573654,
- -0.03614116832613945,
- -0.05249953642487526,
- 0.006207330618053675,
- -0.004512895364314318,
- 0.042843811213970184,
- 0.05923432484269142,
- 0.06545381247997284,
- 0.007388720288872719,
- -0.011584166437387466,
- 0.04927809163928032,
- 0.01648796908557415,
- 0.04458624869585037,
- 0.12385644763708115,
- -0.03301892429590225,
- -0.06070198863744736,
- 0.006386338733136654,
- -0.0169866681098938,
- 0.09140783548355103,
- 0.022127559408545494,
- 0.024384217336773872,
- 0.022819209843873978,
- -0.012579330243170261,
- -0.04041864722967148,
- -0.0830061063170433,
- 0.05835182964801788,
- -0.06887687742710114,
- 0.0446823388338089,
- 0.0016128584975376725,
- -0.03197025880217552,
- -0.009338278323411942,
- 0.06929479539394379,
- -0.05567966401576996,
- 0.051468588411808014,
- -0.03867945447564125,
- -0.0068368082866072655,
- 0.03459932655096054,
- -0.06395858526229858,
- 0.0915568396449089,
- -0.005208252463489771,
- 0.07377388328313828,
- 0.024948574602603912,
- 0.009210349060595036,
- -0.10210460424423218,
- -0.04010821878910065,
- 0.003079724730923772,
- -0.024080049246549606,
- 0.0279915239661932,
- 0.032667700201272964,
- 0.0075857071205973625,
- 0.05318253114819527,
- -0.06242535635828972,
- 0.04975501075387001,
- 0.031150970607995987,
- -0.036973197013139725,
- -0.0023636131081730127,
- 0.025263335555791855,
- 0.014662876725196838,
- -0.014765319414436817,
- -0.007940896786749363,
- -0.06821659207344055,
- 0.013449358753859997,
- -0.017204543575644493,
- 0.06728073954582214,
- 0.027283694595098495,
- -1.3331388437620717e-8,
- 0.0049988869577646255,
- -0.017387453466653824,
- -0.016435520723462105,
- 0.09209627658128738,
- -0.032727405428886414,
- -0.010808822698891163,
- -0.05267615616321564,
- 0.0513722263276577,
- -0.0024990185629576445,
- 0.11471773684024811,
- -0.027808239683508873,
- -0.001686147996224463,
- -0.042862944304943085,
- 0.05126241594552994,
- 0.04582934454083443,
- 0.03673316165804863,
- -0.03727652132511139,
- -0.045372240245342255,
- -0.058169174939394,
- -0.033261507749557495,
- 0.04140392318367958,
- 0.04382821545004845,
- 0.03833456709980965,
- -0.016150187700986862,
- -0.04915232211351395,
- -0.035424113273620605,
- 0.013431789353489876,
- -0.017370032146573067,
- 0.016636183485388756,
- -0.02739228494465351,
- 0.032899994403123856,
- 0.09310555458068848,
- -0.0009143357165157795,
- -0.03930410370230675,
- 0.12921765446662903,
- -0.026308953762054443,
- -0.04213340952992439,
- -0.012119611725211143,
- 0.03486797586083412,
- 0.0007682645227760077,
- -0.02793298102915287,
- -0.03676503151655197,
- 0.01636981964111328,
- -0.05902653932571411,
- 0.021438632160425186,
- -0.019763683900237083,
- -0.08487245440483093,
- 0.003151125507429242,
- -0.025072339922189713,
- -0.007616703864187002,
- 0.0004552774189505726,
- -0.011830837465822697,
- -0.002145275706425309,
- -0.012930748984217644,
- 0.029836328700184822,
- -0.07002206891775131,
- 0.04767512157559395,
- -0.026027942076325417,
- 0.005238671321421862,
- 0.02325720526278019,
- 0.10100667178630829,
- -0.05212432146072388,
- 0.12205515801906586,
- -0.003350023413076997
- ]
- },
- {
- "keyword": "merchandise",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06376376748085022,
- 0.05820193514227867,
- 0.011044557206332684,
- -0.04559646546840668,
- 0.03164415806531906,
- -0.008098572492599487,
- 0.20494146645069122,
- 0.0413818322122097,
- -0.02627415396273136,
- -0.004916863050311804,
- 0.07007762044668198,
- -0.016871338710188866,
- 0.029831111431121826,
- 0.004865563940256834,
- 0.02637300081551075,
- -0.021202312782406807,
- 0.04650451987981796,
- 0.00430754479020834,
- -0.08250056207180023,
- -0.01606028713285923,
- -0.036842066794633865,
- 0.045615777373313904,
- 0.02893836796283722,
- 0.005064196418970823,
- -0.14075800776481628,
- 0.04327638819813728,
- -0.024979954585433006,
- -0.03389734774827957,
- 0.02401275746524334,
- -0.09680074453353882,
- 0.03868042677640915,
- 0.008305994793772697,
- 0.03896775469183922,
- 0.020569264888763428,
- -0.030362917110323906,
- 0.057450070977211,
- 0.0627187192440033,
- -0.05968620628118515,
- 0.022280221804976463,
- -0.025676332414150238,
- 0.023209739476442337,
- -0.088544562458992,
- -0.10057307779788971,
- 0.009905574843287468,
- -0.02371477335691452,
- -0.021822484210133553,
- 0.07415353506803513,
- 0.05374765768647194,
- 0.05262785404920578,
- 0.07201404869556427,
- -0.03154171258211136,
- 0.04177251085639,
- -0.024741673842072487,
- 0.009125004522502422,
- 0.061323683708906174,
- 0.06673353910446167,
- 0.03911401703953743,
- -0.022214271128177643,
- 0.006410117261111736,
- -0.08181104063987732,
- 0.055406272411346436,
- 0.008708465844392776,
- -0.05466387793421745,
- 0.03853593394160271,
- 0.05976403132081032,
- -0.07422377169132233,
- -0.022957976907491684,
- 0.04844769090414047,
- -0.05235220864415169,
- 0.04723193496465683,
- 0.03887877240777016,
- -0.057484712451696396,
- -0.003181718522682786,
- 0.06967282295227051,
- 0.07753793895244598,
- -0.05091644823551178,
- 0.06960856914520264,
- -0.11033275723457336,
- -0.033685456961393356,
- -0.05013236403465271,
- -0.05275571346282959,
- 0.02263822592794895,
- -0.055041760206222534,
- -0.011024435050785542,
- -0.0285277608782053,
- 0.012958104722201824,
- 0.05070137605071068,
- -0.00615337211638689,
- -0.008411780931055546,
- 0.009373793378472328,
- -0.030525870621204376,
- -0.05289510264992714,
- 0.07458308339118958,
- -0.0725417509675026,
- -0.10429823398590088,
- 0.02969617024064064,
- -0.01722572185099125,
- -0.03627929091453552,
- 0.060234010219573975,
- 0.22803886234760284,
- 0.007732851896435022,
- 0.08355730772018433,
- 0.07297071069478989,
- -0.0074962107464671135,
- -0.0648852288722992,
- -0.05123675987124443,
- -0.07462535053491592,
- 0.09296180307865143,
- -0.002523392904549837,
- 0.031752798706293106,
- -0.05732833594083786,
- 0.027633236721158028,
- -0.09795216470956802,
- 0.027097662910819054,
- 0.01252828910946846,
- 0.021952569484710693,
- -0.028738008812069893,
- 0.025446178391575813,
- 0.026192350313067436,
- -0.025651466101408005,
- 0.06452725827693939,
- 0.03866348788142204,
- 0.011138022877275944,
- 0.025716425850987434,
- -0.0795520693063736,
- -0.04104362428188324,
- 0.01458695251494646,
- -6.593539566278189e-33,
- -0.008127575740218163,
- -0.055312011390924454,
- -0.0027283555828034878,
- -0.04590197652578354,
- -0.00011101377458544448,
- 0.03695420175790787,
- 0.030766770243644714,
- 0.008232801221311092,
- -0.025576522573828697,
- 0.13568051159381866,
- -0.010025798343122005,
- 0.1463794857263565,
- -0.0703476220369339,
- 0.09844280779361725,
- 0.0884299948811531,
- 0.001366263022646308,
- -0.09036198258399963,
- 0.030528100207448006,
- 0.012533506378531456,
- -0.01091842632740736,
- -0.0026337923482060432,
- 0.020288702100515366,
- 0.023328816518187523,
- 0.1045648604631424,
- -0.002700268989428878,
- -0.03580129146575928,
- 0.014978437684476376,
- 0.014122430235147476,
- 0.0710127204656601,
- 0.015700185671448708,
- 0.025647377595305443,
- 0.016783911734819412,
- 0.0899333506822586,
- -0.013043494895100594,
- -0.04771032556891441,
- 0.013755541294813156,
- -0.040256138890981674,
- -0.12463779002428055,
- -0.0032526671420782804,
- -0.05615575239062309,
- 0.014544771052896976,
- -0.0033913368824869394,
- 0.009275585412979126,
- 0.03111787512898445,
- -0.10321363806724548,
- 0.030511409044265747,
- 0.04828687384724617,
- 0.017362292855978012,
- -0.03018895909190178,
- 0.06399550288915634,
- -0.0068692476488649845,
- -0.04171527922153473,
- 0.034346289932727814,
- -0.07726221531629562,
- -0.015776701271533966,
- -0.07061289995908737,
- -0.027590598911046982,
- -0.04586826264858246,
- 0.03213651105761528,
- -0.01150816772133112,
- 0.014205542393028736,
- 0.08711910992860794,
- 0.02738548442721367,
- 0.041200846433639526,
- -0.009915895760059357,
- -0.057104747742414474,
- 0.05196914076805115,
- -0.020206036046147346,
- 0.012877184897661209,
- -0.02436685375869274,
- -0.05334467813372612,
- 0.0767129510641098,
- 0.03647640347480774,
- -0.00963922031223774,
- -0.013778378255665302,
- 0.05133481323719025,
- 0.006268863566219807,
- 0.031640395522117615,
- 0.0016949176788330078,
- -0.026104889810085297,
- -0.08789464831352234,
- 0.024489039555191994,
- 0.06108936294913292,
- 0.04233258217573166,
- -0.029880061745643616,
- 0.044495269656181335,
- 0.02354850433766842,
- -0.018391845747828484,
- 0.006602063309401274,
- 0.0004570702731143683,
- -0.044796060770750046,
- 0.004765667952597141,
- -0.011954733170568943,
- 0.0023239590227603912,
- 0.018380895256996155,
- 4.4614249740208464e-33,
- -0.01789950020611286,
- -0.02304643951356411,
- -0.012312830425798893,
- 0.08347059041261673,
- 0.017826929688453674,
- 0.007817898876965046,
- 0.0008039092645049095,
- 0.004288848489522934,
- -0.11917097866535187,
- -0.05194639787077904,
- -0.07337338477373123,
- -0.039571814239025116,
- -0.0373837873339653,
- 0.0031482107006013393,
- 0.044053152203559875,
- 0.03922059386968613,
- 0.1061164140701294,
- 0.0015288206050172448,
- 0.040553610771894455,
- -0.01419104915112257,
- 0.003481971798464656,
- -0.007394623942673206,
- -0.00948311761021614,
- -0.043424539268016815,
- -0.08807586133480072,
- 0.007693722378462553,
- 0.0703972578048706,
- -0.004292712081223726,
- -0.11134593188762665,
- 0.016164442524313927,
- 0.05021218582987785,
- 0.014869124628603458,
- 0.008962338790297508,
- 0.03776135668158531,
- -0.04624931141734123,
- -0.03699510172009468,
- -0.007986744865775108,
- 0.04942546412348747,
- 0.010348884388804436,
- -0.052640315145254135,
- 0.05698520690202713,
- 0.04074427857995033,
- 0.018281245604157448,
- 0.13647139072418213,
- -0.025771450251340866,
- -0.041515059769153595,
- -0.08667059242725372,
- -0.03509034588932991,
- 0.14326319098472595,
- 0.006279512774199247,
- -0.051222968846559525,
- 0.011293134652078152,
- 0.035266242921352386,
- -0.07676370441913605,
- -0.09275203943252563,
- 0.10552377998828888,
- -0.04175858944654465,
- -0.020572803914546967,
- 0.06420426070690155,
- -0.0013195708161219954,
- 0.032504573464393616,
- 0.05671045929193497,
- 0.02021355926990509,
- 0.06735754013061523,
- -0.02751752734184265,
- -0.04497157037258148,
- 0.032765839248895645,
- -0.021716272458434105,
- -0.03751135990023613,
- -0.029531903564929962,
- 0.09402382373809814,
- 0.027348654344677925,
- 0.007966792210936546,
- -0.03970367833971977,
- -0.09135846048593521,
- -0.01838160865008831,
- -0.10511954873800278,
- 0.015207980759441853,
- -0.00913828145712614,
- -0.00419181352481246,
- 0.06085040420293808,
- -0.0708434134721756,
- -0.029516715556383133,
- 0.02020295150578022,
- -0.02335774526000023,
- -0.04850989952683449,
- -0.02864937297999859,
- 0.04864058271050453,
- 0.007581702899187803,
- -0.021887173876166344,
- -0.026019461452960968,
- 0.00363609055057168,
- -0.09194106608629227,
- 0.07827316224575043,
- -0.038619425147771835,
- -1.2425672935023613e-8,
- -0.025906912982463837,
- -0.0004817935114260763,
- 0.0020240379963070154,
- 0.012088757008314133,
- 0.00443969015032053,
- 0.05045875906944275,
- -0.041739631444215775,
- -0.02249234914779663,
- 0.023426922038197517,
- 0.029500313103199005,
- 0.035206474363803864,
- -0.02504490315914154,
- -0.04255153611302376,
- 0.05410774052143097,
- 0.0712692067027092,
- 0.015854597091674805,
- -0.00450557004660368,
- -0.030102912336587906,
- -0.06885029375553131,
- -0.016294283792376518,
- -0.03597431629896164,
- 0.05317653343081474,
- 0.07447383552789688,
- -0.015400877222418785,
- -0.02013031393289566,
- 0.0061226049438118935,
- 0.03778249770402908,
- 0.06294548511505127,
- 0.044174011796712875,
- -0.01712007448077202,
- -0.008242476731538773,
- 0.05428282544016838,
- -0.02325446531176567,
- -0.016816677525639534,
- -0.006490590516477823,
- -0.10217943787574768,
- -0.026624685153365135,
- -0.02932000532746315,
- 0.009823805652558804,
- -0.05289619043469429,
- 0.006201234646141529,
- -0.018399694934487343,
- -0.03246878460049629,
- 0.012629345990717411,
- 0.05741965398192406,
- -0.06855595856904984,
- -0.07408259063959122,
- 0.0000415340400650166,
- -0.03769095614552498,
- 0.004868421703577042,
- -0.04678398370742798,
- -0.018554585054516792,
- -0.012260089628398418,
- -0.0031540042255073786,
- 0.0031169953290373087,
- -0.07673431187868118,
- 0.03540799021720886,
- 0.019155211746692657,
- -0.018780557438731194,
- 0.003544978564605117,
- 0.06640002131462097,
- -0.07501822710037231,
- 0.09533548355102539,
- -0.03051934391260147
- ]
- },
- {
- "keyword": "commodity",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.026636289432644844,
- 0.02808116376399994,
- -0.04443616420030594,
- 0.055893175303936005,
- -0.0020966671872884035,
- -0.0417461097240448,
- 0.08895780891180038,
- -0.002380492864176631,
- -0.025187192484736443,
- -0.024805370718240738,
- 0.029332533478736877,
- -0.05490696802735329,
- -0.019856184720993042,
- 0.04071662947535515,
- -0.0008543544681742787,
- -0.03716175630688667,
- 0.07344942539930344,
- 0.03580320626497269,
- -0.044896770268678665,
- 0.01748303882777691,
- 0.035095639526844025,
- 0.011731579899787903,
- -0.04798371344804764,
- -0.000018294729670742527,
- 0.06753083318471909,
- 0.08228599280118942,
- -0.02782738395035267,
- -0.02464253641664982,
- 0.006873858626931906,
- -0.051348309963941574,
- -0.030082670971751213,
- 0.041455551981925964,
- -0.004435627721250057,
- 0.013061042875051498,
- 0.02223474159836769,
- 0.07314776629209518,
- -0.004325553774833679,
- 0.016315270215272903,
- 0.013778958469629288,
- -0.02119145169854164,
- 0.002028602408245206,
- -0.1331203430891037,
- -0.01918957009911537,
- -0.03494848310947418,
- 0.0032917000353336334,
- -0.06685521453619003,
- 0.09866590052843094,
- -0.049333903938531876,
- 0.027425844222307205,
- 0.03511239215731621,
- -0.008317689411342144,
- 0.035554710775613785,
- -0.07303094863891602,
- 0.025420112535357475,
- 0.029642080888152122,
- -0.07757306098937988,
- -0.0031136544421315193,
- -0.011295630596578121,
- -0.006268693134188652,
- -0.014826427213847637,
- 0.009172135032713413,
- -0.03131432086229324,
- -0.0559917651116848,
- 0.015471664257347584,
- 0.114963099360466,
- 0.019640540704131126,
- -0.026842555031180382,
- 0.02938690409064293,
- -0.14161254465579987,
- -0.024228015914559364,
- 0.07449707388877869,
- -0.03763434663414955,
- -0.03460125997662544,
- 0.008582859300076962,
- 0.03354234993457794,
- -0.004583904519677162,
- 0.09712634235620499,
- -0.04801436513662338,
- 0.023634854704141617,
- -0.03324826434254646,
- 0.022803908213973045,
- 0.04742118716239929,
- -0.05617310106754303,
- -0.04956257343292236,
- -0.0011547546600922942,
- -0.0112967723980546,
- 0.03148509934544563,
- 0.022845176979899406,
- 0.04555850848555565,
- -0.043569933623075485,
- -0.012535101734101772,
- -0.0011375549947842956,
- 0.005583625286817551,
- 0.03525322675704956,
- 0.01312635000795126,
- -0.01324049849063158,
- -0.02962254360318184,
- 0.0038656259421259165,
- -0.0163694079965353,
- 0.198060542345047,
- 0.05536176636815071,
- 0.023249654099345207,
- 0.009373398497700691,
- -0.014573095366358757,
- -0.0249631404876709,
- -0.03185934200882912,
- -0.0929674506187439,
- 0.042193152010440826,
- -0.004148662090301514,
- 0.0449422262609005,
- -0.03743415325880051,
- 0.0173362847417593,
- -0.14956241846084595,
- -0.009048608131706715,
- -0.05501367524266243,
- 0.04754733666777611,
- -0.008722386322915554,
- -0.04839467257261276,
- -0.040209535509347916,
- -0.04755595698952675,
- 0.0312577448785305,
- 0.007684516254812479,
- -0.020998777821660042,
- 0.004576217848807573,
- -0.053114622831344604,
- -0.060262829065322876,
- 0.09318897128105164,
- -5.469127791838822e-33,
- -0.12522479891777039,
- -0.07639699429273605,
- 0.03404674306511879,
- -0.027629492804408073,
- -0.03772096708416939,
- 0.021471379324793816,
- -0.036944273859262466,
- 0.013472634367644787,
- 0.008769284002482891,
- 0.014315526001155376,
- -0.026739196851849556,
- 0.1783793717622757,
- -0.04437030106782913,
- 0.10022051632404327,
- 0.036210399121046066,
- -0.03502892330288887,
- 0.011772003024816513,
- -0.05689192935824394,
- 0.1510322242975235,
- -0.05444585159420967,
- -0.08546698093414307,
- 0.07887855172157288,
- 0.03211633488535881,
- 0.0236678346991539,
- 0.01525020133703947,
- -0.0169833954423666,
- 0.054763540625572205,
- -0.07715623825788498,
- 0.029392346739768982,
- 0.029155317693948746,
- 0.030841615051031113,
- 0.024041270837187767,
- 0.026548966765403748,
- -0.005597945302724838,
- -0.020169980823993683,
- 0.049544259905815125,
- -0.04828229546546936,
- -0.0013364754850044847,
- -0.03863369673490524,
- -0.07491488754749298,
- -0.0331188403069973,
- -0.016156747937202454,
- 0.04634590819478035,
- 0.08488665521144867,
- -0.023349270224571228,
- 0.07187788188457489,
- 0.06591825932264328,
- 0.010168871842324734,
- -0.07478736340999603,
- 0.011883600614964962,
- 0.012478510849177837,
- 0.0753488540649414,
- -0.03369014337658882,
- 0.02060469426214695,
- -0.0053468914702534676,
- -0.10230498015880585,
- 0.015039672143757343,
- -0.013586186803877354,
- -0.05270989239215851,
- -0.05194668844342232,
- 0.02306491695344448,
- 0.08948428183794022,
- 0.04500650241971016,
- 0.03474835306406021,
- -0.08333633095026016,
- 0.03288622945547104,
- -0.013039084151387215,
- 0.03421112522482872,
- -0.004485425539314747,
- 0.03983794152736664,
- 0.009620632976293564,
- 0.02103135921061039,
- 0.03354094922542572,
- 0.03775704279541969,
- -0.024514606222510338,
- 0.03830533102154732,
- 0.06633911281824112,
- 0.027013074606657028,
- -0.04007329046726227,
- -0.022183997556567192,
- -0.0882822647690773,
- -0.04003923013806343,
- 0.013500348664820194,
- 0.0425165556371212,
- -0.09466388821601868,
- 0.03025023266673088,
- -0.02623547986149788,
- -0.06541048735380173,
- 0.1150391697883606,
- -0.03199944272637367,
- -0.08394350856542587,
- 0.06647210568189621,
- -0.03660812973976135,
- 0.01195842307060957,
- 0.043009351938962936,
- 3.777137386312545e-33,
- -0.00008899403474060819,
- 0.011973959393799305,
- 0.00696532242000103,
- 0.20815308392047882,
- 0.034459371119737625,
- -0.08784231543540955,
- 0.028569599613547325,
- -0.043586552143096924,
- 0.0039475345984101295,
- 0.09778027981519699,
- -0.08927100151777267,
- -0.04788350686430931,
- 0.0023724257480353117,
- 0.009603315964341164,
- 0.0755542665719986,
- 0.004095139447599649,
- -0.0539376363158226,
- 0.06876500695943832,
- 0.044661782681941986,
- -0.0043029324151575565,
- -0.11238405853509903,
- 0.09714578092098236,
- -0.017102498561143875,
- 0.007078665774315596,
- -0.045506879687309265,
- 0.06113630160689354,
- -0.05052616074681282,
- -0.10139941424131393,
- -0.0482228584587574,
- -0.03856519237160683,
- 0.01621081680059433,
- -0.053143080323934555,
- 0.022208791226148605,
- -0.035671476274728775,
- -0.07869753986597061,
- 0.0792657807469368,
- 0.05287725478410721,
- 0.024896031245589256,
- -0.05201778560876846,
- -0.015383360907435417,
- 0.042506564408540726,
- -0.006800917908549309,
- -0.02279219776391983,
- 0.08846378326416016,
- -0.044722024351358414,
- -0.06888414919376373,
- 0.013429800979793072,
- -0.0028981887735426426,
- 0.12314644455909729,
- 0.03129061311483383,
- 0.08008433133363724,
- 0.10348159074783325,
- 0.02491522580385208,
- -0.10222341120243073,
- -0.06592054665088654,
- 0.03363891690969467,
- -0.00911465473473072,
- 0.018200570717453957,
- -0.016546329483389854,
- -0.0037444699555635452,
- 0.03659955412149429,
- 0.054481469094753265,
- 0.030023006722331047,
- 0.045408912003040314,
- 0.01373964175581932,
- 0.05366203188896179,
- 0.009476822800934315,
- -0.06517971307039261,
- -0.03160781040787697,
- 0.01628141663968563,
- 0.09157095104455948,
- 0.008755878545343876,
- -0.011997737921774387,
- -0.042240723967552185,
- 0.0456550158560276,
- 0.058263663202524185,
- 0.00012120198516640812,
- 0.02313321828842163,
- 0.01569324918091297,
- -0.005166471004486084,
- 0.025848666206002235,
- -0.046355750411748886,
- 0.02166256494820118,
- 0.07163817435503006,
- -0.0016396597493439913,
- -0.001325030461885035,
- -0.007392937783151865,
- -0.008859940804541111,
- 0.012603998184204102,
- 0.0034383290912956,
- -0.07118894159793854,
- -0.04810367524623871,
- -0.052419353276491165,
- 0.030193449929356575,
- -0.039066679775714874,
- -1.160164231350791e-8,
- -0.03712385892868042,
- 0.0070221927016973495,
- -0.022790145128965378,
- 0.05059519037604332,
- -0.00573007483035326,
- 0.019086148589849472,
- 0.061557091772556305,
- 0.020477650687098503,
- -0.010863762348890305,
- 0.11428412795066833,
- -0.056743770837783813,
- -0.012834198772907257,
- -0.06655122339725494,
- 0.03666574880480766,
- -0.024435536935925484,
- -0.009418110363185406,
- -0.013938885182142258,
- -0.02998165786266327,
- -0.043852899223566055,
- -0.000952377391513437,
- 0.08379080891609192,
- 0.04128577187657356,
- 0.010884732007980347,
- -0.025367354974150658,
- -0.025512823835015297,
- -0.019205400720238686,
- -0.000975201663095504,
- 0.0923282653093338,
- 0.032156676054000854,
- 0.030512316152453423,
- 0.016714895144104958,
- 0.021938564255833626,
- -0.03814791142940521,
- -0.035489123314619064,
- -0.005386967211961746,
- -0.011024215258657932,
- -0.009591002017259598,
- 0.025929421186447144,
- -0.014417576603591442,
- 0.01578756421804428,
- -0.10574539005756378,
- -0.03948323428630829,
- 0.022968657314777374,
- -0.012156732380390167,
- -0.030500294640660286,
- -0.01759405806660652,
- -0.1384284347295761,
- 0.04713397100567818,
- 0.01198797021061182,
- -0.009157780557870865,
- -0.050119489431381226,
- -0.018971411511301994,
- 0.01528144720941782,
- -0.006592527963221073,
- 0.04165973886847496,
- -0.06862923502922058,
- 0.013918371871113777,
- -0.014858857728540897,
- -0.044073980301618576,
- -0.006928357295691967,
- 0.07469214498996735,
- -0.12073785066604614,
- 0.014107977040112019,
- 0.011816739104688168
- ]
- },
- {
- "keyword": "offering",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0877344012260437,
- 0.027042724192142487,
- -0.06041039526462555,
- 0.06383998692035675,
- -0.06454646587371826,
- -0.04983191564679146,
- 0.09885330498218536,
- 0.018970925360918045,
- -0.0031714432407170534,
- -0.027149073779582977,
- 0.011654531583189964,
- -0.12178108841180801,
- -0.048495206981897354,
- -0.0003873640962410718,
- 0.02211347594857216,
- 0.05784523859620094,
- -0.08961775153875351,
- -0.006758218165487051,
- -0.05242833122611046,
- 0.024745836853981018,
- -0.03488526865839958,
- -0.050441693514585495,
- 0.003665860276669264,
- -0.034647632390260696,
- -0.03191521391272545,
- -0.028524553403258324,
- 0.034410856664180756,
- 0.0537891611456871,
- 0.06005782634019852,
- -0.03724187985062599,
- 0.04217316582798958,
- -0.030292626470327377,
- 0.09500586986541748,
- -0.00941642839461565,
- 0.030044259503483772,
- -0.013746476732194424,
- -0.10492634028196335,
- -0.01634630560874939,
- -0.06760437786579132,
- 0.020832685753703117,
- -0.025835439562797546,
- -0.035091035068035126,
- -0.03142113983631134,
- 0.008459361270070076,
- -0.007911687716841698,
- -0.011683089658617973,
- -0.00038086416316218674,
- -0.01868634857237339,
- 0.0736544206738472,
- -0.0015444507589563727,
- 0.029320791363716125,
- 0.0030709318816661835,
- -0.07299680262804031,
- 0.024117572233080864,
- 0.007949331775307655,
- 0.02175135910511017,
- -0.08746315538883209,
- 0.06005406379699707,
- 0.01977621763944626,
- -0.03742338716983795,
- 0.011467333883047104,
- 0.00766088766977191,
- -0.055673498660326004,
- 0.07219534367322922,
- -0.014673139899969101,
- -0.048515915870666504,
- -0.0029222385492175817,
- 0.019479574635624886,
- -0.0632275640964508,
- -0.008732769638299942,
- 0.07600167393684387,
- 0.04853629693388939,
- -0.0291384756565094,
- -0.04551200568675995,
- -0.00327809015288949,
- -0.028831811621785164,
- 0.038022104650735855,
- -0.07045140862464905,
- 0.04057011008262634,
- 0.014099055901169777,
- 0.0063781640492379665,
- -0.0437982939183712,
- -0.052038293331861496,
- -0.008907872252166271,
- -0.005595550872385502,
- 0.007302040699869394,
- 0.02055501751601696,
- 0.05776878073811531,
- 0.005107824690639973,
- 0.0746702253818512,
- 0.027391331270337105,
- 0.05264352634549141,
- 0.006947534624487162,
- -0.09097770601511002,
- -0.04140279069542885,
- 0.0421130396425724,
- 0.07872986048460007,
- -0.009398345835506916,
- -0.10952113568782806,
- 0.20151300728321075,
- 0.06682216376066208,
- -0.048802152276039124,
- -0.05876819044351578,
- -0.03757977485656738,
- -0.035785745829343796,
- 0.021321015432476997,
- -0.054709479212760925,
- 0.00508138258010149,
- -0.03928897902369499,
- 0.011239709332585335,
- -0.0729268491268158,
- 0.027914732694625854,
- -0.09644094109535217,
- 0.012577807530760765,
- 0.03379390016198158,
- 0.01879202388226986,
- 0.04895130544900894,
- 0.03629181534051895,
- 0.06424154341220856,
- -0.024161240085959435,
- -0.00005786397377960384,
- -0.01545717567205429,
- -0.018245292827486992,
- -0.043226324021816254,
- -0.10023283213376999,
- -0.08725840598344803,
- -0.04777509719133377,
- -3.339911527840226e-33,
- 0.00813321117311716,
- 0.018041513860225677,
- -0.05056129768490791,
- -0.016238922253251076,
- 0.050919197499752045,
- 0.032575178891420364,
- 0.0035287763457745314,
- 0.011570801958441734,
- -0.022226965054869652,
- 0.04278476908802986,
- -0.06538696587085724,
- 0.09076379239559174,
- 0.04007922112941742,
- 0.024863049387931824,
- 0.009647801518440247,
- -0.01308538019657135,
- 0.08871413767337799,
- 0.08462093770503998,
- 0.08015414327383041,
- -0.029414748772978783,
- -0.01909712515771389,
- 0.012501999735832214,
- -0.008356180042028427,
- 0.049815814942121506,
- -0.05519679933786392,
- -0.043026912957429886,
- 0.0012263896642252803,
- -0.07145524024963379,
- 0.06072404235601425,
- -0.02132217399775982,
- 0.06026119366288185,
- -0.020381176844239235,
- -0.09397764503955841,
- 0.004506653640419245,
- -0.04068753868341446,
- -0.009520897641777992,
- 0.01360353920608759,
- -0.07497669011354446,
- 0.020229030400514603,
- -0.07264836132526398,
- -0.0351383350789547,
- 0.06910955905914307,
- -0.08843737095594406,
- 0.004172669257968664,
- -0.03003259189426899,
- 0.02454274334013462,
- 0.1444806009531021,
- -0.04988088458776474,
- -0.007009460590779781,
- 0.05886788293719292,
- -0.06176263093948364,
- -0.05871554836630821,
- -0.1267976313829422,
- 0.010443326085805893,
- -0.041063759475946426,
- -0.00057502236450091,
- 0.00035682262387126684,
- 0.07300520688295364,
- -0.011632224544882774,
- -0.05410895496606827,
- 0.12965361773967743,
- 0.01339733973145485,
- -0.029892150312662125,
- -0.019709499552845955,
- -0.021728631108999252,
- -0.021408911794424057,
- 0.053950320929288864,
- 0.025143902748823166,
- -0.0342305488884449,
- -0.0614791139960289,
- -0.09747018665075302,
- 0.04059899225831032,
- 0.07939951121807098,
- 0.056816283613443375,
- 0.0195815097540617,
- -0.030183568596839905,
- 0.06547582149505615,
- 0.021643849089741707,
- 0.04219583049416542,
- 0.027788551524281502,
- 0.038532402366399765,
- -0.004086843691766262,
- -0.015997186303138733,
- 0.06229475140571594,
- -0.0022033099085092545,
- 0.031789474189281464,
- -0.020679917186498642,
- -0.020800217986106873,
- 0.10489954799413681,
- 0.028394147753715515,
- -0.06995327025651932,
- 0.005877259653061628,
- 0.04151051864027977,
- -0.0028697813395410776,
- 0.021483924239873886,
- 2.951969188381093e-33,
- 0.008104199543595314,
- 0.03171743452548981,
- -0.06355825066566467,
- 0.013223711401224136,
- 0.060867320746183395,
- 0.07724690437316895,
- 0.06568806618452072,
- -0.0346989780664444,
- 0.03058452531695366,
- 0.004742247052490711,
- -0.10882281512022018,
- -0.0017677120631560683,
- 0.10763508081436157,
- -0.010954322293400764,
- 0.04373573139309883,
- -0.030056515708565712,
- 0.020447522401809692,
- 0.006618143524974585,
- 0.007117115426808596,
- -0.031515706330537796,
- -0.0767841637134552,
- 0.09012499451637268,
- 0.03844938054680824,
- -0.11629220843315125,
- 0.040435656905174255,
- 0.07017619907855988,
- 0.06917800009250641,
- 0.01956009678542614,
- -0.0019330147188156843,
- 0.04059677571058273,
- 0.033547140657901764,
- 0.020831460133194923,
- 0.011104854755103588,
- 0.0550084263086319,
- 0.015775129199028015,
- 0.05213930085301399,
- 0.14441239833831787,
- 0.04063482955098152,
- 0.01447312906384468,
- 0.08303653448820114,
- 0.04758322611451149,
- -0.03943189978599548,
- 0.13347673416137695,
- 0.10678474605083466,
- -0.024144701659679413,
- -0.055568307638168335,
- 0.009727156721055508,
- 0.015329047106206417,
- 0.07845067232847214,
- 0.027742067351937294,
- -0.029878610745072365,
- -0.003957582637667656,
- 0.003258440876379609,
- 0.0786411389708519,
- 0.016368940472602844,
- -0.018340256065130234,
- -0.0049133142456412315,
- -0.03867912292480469,
- 0.05461021512746811,
- -0.04025629535317421,
- -0.004337454680353403,
- 0.04351117089390755,
- 0.007792080752551556,
- 0.07174532860517502,
- 0.042178984731435776,
- 0.03350231423974037,
- 0.03930431976914406,
- -0.024529969319701195,
- -0.07244404405355453,
- -0.12604375183582306,
- 0.07453874498605728,
- -0.08937878906726837,
- -0.0008960022241808474,
- -0.009323520585894585,
- 0.04310471937060356,
- -0.04961717128753662,
- -0.027729544788599014,
- -0.054877862334251404,
- 0.012348570860922337,
- -0.03855253383517265,
- -0.06383558362722397,
- 0.06009754538536072,
- 0.055330004543066025,
- -0.031326599419116974,
- 0.015073967166244984,
- -0.06722705811262131,
- 0.09089022874832153,
- 0.08252750337123871,
- -0.04653152450919151,
- -0.0068092127330601215,
- 0.020877065137028694,
- 0.01752324216067791,
- 0.11279545724391937,
- 0.04860549047589302,
- -0.04117230325937271,
- -1.2699363338697367e-8,
- -0.003746344242244959,
- 0.03996193781495094,
- 0.050352565944194794,
- -0.061032529920339584,
- 0.012881318107247353,
- 0.003513852134346962,
- -0.0669519230723381,
- -0.020672665908932686,
- -0.025081072002649307,
- 0.042038917541503906,
- 0.06227215379476547,
- 0.024862144142389297,
- -0.020620208233594894,
- 0.004076019395142794,
- -0.011131657287478447,
- -0.031464505940675735,
- -0.0829259604215622,
- -0.012617927975952625,
- -0.041846081614494324,
- 0.0011849900474771857,
- -0.021677182987332344,
- 0.03271106630563736,
- 0.06254000961780548,
- -0.04131243750452995,
- -0.029179422184824944,
- 0.030305959284305573,
- -0.008315476588904858,
- 0.07827717810869217,
- -0.006235597189515829,
- -0.04292900115251541,
- 0.012234407477080822,
- 0.03338475152850151,
- -0.033419638872146606,
- -0.035916417837142944,
- -0.0022029296960681677,
- -0.03347200155258179,
- -0.10718598961830139,
- 0.04450441151857376,
- -0.00719416281208396,
- 0.0072713023982942104,
- 0.014922534115612507,
- -0.09593398123979568,
- 0.03581511974334717,
- -0.04010714963078499,
- -0.0030059886630624533,
- 0.04807994142174721,
- -0.0787745863199234,
- -0.021148456260561943,
- -0.02780926413834095,
- 0.002642175881192088,
- -0.0864710584282875,
- -0.0021500198636204004,
- -0.023588310927152634,
- 0.013528916984796524,
- -0.006692133843898773,
- 0.04386167973279953,
- -0.018679920583963394,
- 0.06882055848836899,
- 0.031582821160554886,
- 0.03492334857583046,
- 0.048513416200876236,
- -0.09716238081455231,
- -0.09156998246908188,
- -0.0032505327835679054
- ]
- },
- {
- "keyword": "solution",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.025610661134123802,
- 0.10355374217033386,
- 0.020880186930298805,
- 0.04810071364045143,
- 0.009938826784491539,
- -0.0004939939244650304,
- 0.12173351645469666,
- 0.025070346891880035,
- 0.014332455582916737,
- -0.059381064027547836,
- 0.06427953392267227,
- -0.07683763653039932,
- -0.02151559852063656,
- 0.08126596361398697,
- -0.040855493396520615,
- 0.04474613070487976,
- -0.024180002510547638,
- -0.04004782438278198,
- -0.08282704651355743,
- 0.038761068135499954,
- -0.04013952612876892,
- -0.027122722938656807,
- -0.060588836669921875,
- 0.08746765553951263,
- -0.0541774220764637,
- 0.05826874077320099,
- 0.016759322956204414,
- -0.04458253085613251,
- 0.061087243258953094,
- -0.11157085001468658,
- 0.05392993986606598,
- 0.08044975996017456,
- -0.007632637396454811,
- -0.03747930750250816,
- 0.008177424781024456,
- 0.06460853666067123,
- -0.043631311506032944,
- -0.02171742357313633,
- -0.025534404441714287,
- -0.07773841172456741,
- 0.01386716403067112,
- -0.028590362519025803,
- -0.018127495422959328,
- 0.010666054673492908,
- 0.0315675251185894,
- -0.012480988167226315,
- 0.002594976918771863,
- -0.0016185687854886055,
- 0.11259728670120239,
- -0.03965968266129494,
- -0.03920545428991318,
- 0.009265828877687454,
- -0.05859436094760895,
- -0.0712180808186531,
- 0.0812089741230011,
- -0.06220213696360588,
- -0.07068108022212982,
- 0.02345866523683071,
- 0.0140459593385458,
- -0.008785595186054707,
- 0.07860762625932693,
- -0.0024515839759260416,
- -0.04819963872432709,
- 0.030758824199438095,
- 0.03794928267598152,
- -0.016054410487413406,
- 0.015678102150559425,
- -0.037173133343458176,
- -0.13203002512454987,
- 0.03516320884227753,
- -0.05122554674744606,
- 0.09433555603027344,
- 0.04871074855327606,
- -0.016470221802592278,
- 0.0591820664703846,
- 0.038499925285577774,
- 0.03423020988702774,
- -0.052703943103551865,
- 0.07451023161411285,
- 0.038560036569833755,
- -0.00850802380591631,
- -0.03641929477453232,
- 0.017607811838388443,
- 0.08141050487756729,
- 0.05873169004917145,
- 0.05476553738117218,
- -0.02662532776594162,
- 0.0038589411415159702,
- -0.09686919301748276,
- -0.02092358097434044,
- -0.07661385834217072,
- -0.01536580454558134,
- 0.0702061727643013,
- 0.022492224350571632,
- -0.04839617386460304,
- 0.012488194741308689,
- 0.023366304114460945,
- 0.0034583830274641514,
- -0.03640946000814438,
- 0.24925349652767181,
- -0.034010570496320724,
- 0.007303150370717049,
- 0.002465310972183943,
- -0.033289894461631775,
- -0.05738118663430214,
- -0.006554946303367615,
- 0.013272928074002266,
- 0.028187472373247147,
- 0.03585321828722954,
- -0.03566557914018631,
- -0.04148496687412262,
- -0.04637955501675606,
- 0.02641313150525093,
- 0.11216297745704651,
- 0.013687615282833576,
- -0.041245270520448685,
- 0.015996934846043587,
- -0.0007668774924241006,
- -0.07553225755691528,
- -0.01585119590163231,
- 0.0004924958338961005,
- -0.01736101135611534,
- 0.01428960356861353,
- -0.02905935049057007,
- -0.09316825866699219,
- -0.04585501179099083,
- 0.09040474891662598,
- -4.582616604880701e-33,
- -0.0621093213558197,
- 0.038566816598176956,
- -0.017270412296056747,
- 0.003338162787258625,
- 0.011928297579288483,
- -0.03584008663892746,
- -0.03469943627715111,
- -0.01689840480685234,
- -0.010297532193362713,
- 0.04250779747962952,
- -0.05852692946791649,
- -0.057379912585020065,
- -0.009105225093662739,
- -0.044074155390262604,
- 0.07929325103759766,
- -0.04387980327010155,
- 0.04611578956246376,
- 0.11991633474826813,
- -0.03583396226167679,
- -0.055382050573825836,
- 0.003799291094765067,
- -0.0042967284098267555,
- -0.01764015667140484,
- 0.0676354318857193,
- -0.018671447411179543,
- -0.09065590053796768,
- 0.04637516662478447,
- -0.10680480301380157,
- 0.028145747259259224,
- -0.024118678644299507,
- 0.07693708688020706,
- 0.007666418328881264,
- -0.035416457802057266,
- 0.036545105278491974,
- -0.031692590564489365,
- 0.04464653506875038,
- 0.05207754671573639,
- -0.03115546517074108,
- 0.041217658668756485,
- -0.00697550643235445,
- -0.062325358390808105,
- -0.02058212086558342,
- -0.020523522049188614,
- -0.01660827361047268,
- 0.11996636539697647,
- 0.003802258986979723,
- -0.006359487771987915,
- 0.009018830955028534,
- 0.018975574523210526,
- 0.032812632620334625,
- 0.009114546701312065,
- -0.0062896618619561195,
- -0.05723182111978531,
- 0.03791947662830353,
- -0.005512644071131945,
- 0.01544919703155756,
- 0.011504964902997017,
- 0.0110934441909194,
- 0.004221069626510143,
- 0.009731133468449116,
- 0.08188064396381378,
- -0.07476161420345306,
- -0.08726084232330322,
- 0.016527898609638214,
- 0.03285122662782669,
- 0.02884894609451294,
- 0.00984338577836752,
- -0.011484363116323948,
- 0.013977753929793835,
- -0.02538268081843853,
- -0.09256722033023834,
- -0.055797990411520004,
- 0.11298827081918716,
- 0.02917463146150112,
- -0.00766198942437768,
- -0.10658655315637589,
- 0.07343098521232605,
- 0.04456646367907524,
- -0.02030472829937935,
- -0.05346941947937012,
- -0.054407451301813126,
- -0.0474490262567997,
- 0.03666091710329056,
- 0.02921520732343197,
- 0.040576595813035965,
- 0.0719226524233818,
- 0.015948813408613205,
- -0.03657395392656326,
- 0.010050304234027863,
- -0.03242906555533409,
- -0.046156853437423706,
- 0.016849283128976822,
- 0.00143608043435961,
- 0.06750794500112534,
- 0.001089973491616547,
- 4.4435526844425474e-33,
- -0.0625334307551384,
- 0.007888289168477058,
- -0.08268076181411743,
- 0.026485178619623184,
- 0.04307881370186806,
- 0.01191058848053217,
- 0.11364578455686569,
- -0.0475132055580616,
- -0.006686109583824873,
- 0.05396457388997078,
- -0.0146973617374897,
- -0.02031477354466915,
- 0.03048616647720337,
- 0.03382296487689018,
- -0.0189558956772089,
- 0.029383106157183647,
- 0.038914281874895096,
- -0.026018155738711357,
- -0.019529663026332855,
- 0.020560191944241524,
- -0.07698386907577515,
- 0.025476012378931046,
- 0.042389824986457825,
- 0.008328800089657307,
- -0.0006349316099658608,
- 0.05941488966345787,
- 0.10067431628704071,
- 0.017042936757206917,
- -0.028595563024282455,
- 0.05955159664154053,
- 0.11792371422052383,
- -0.07098802179098129,
- -0.0232259351760149,
- -0.08112519979476929,
- -0.004960475955158472,
- 0.07561590522527695,
- 0.04999232664704323,
- -0.07168598473072052,
- -0.01035329606384039,
- 0.06273578107357025,
- 0.04945288598537445,
- -0.013676323927938938,
- -0.0035415366291999817,
- 0.09207423031330109,
- -0.012764365412294865,
- 0.0702807679772377,
- 0.024839701130986214,
- -0.021170329302549362,
- 0.01842493750154972,
- 0.06588752567768097,
- -0.03685924783349037,
- -0.08460985869169235,
- -0.04258904233574867,
- -0.08557133376598358,
- -0.0014216728741303086,
- 0.0865628644824028,
- 0.01406518928706646,
- 0.04056602343916893,
- -0.02499549835920334,
- 0.02302236668765545,
- 0.06426636129617691,
- 0.04666666314005852,
- 0.02928728610277176,
- -0.04239910840988159,
- -0.01011105440557003,
- 0.04171602427959442,
- -0.019432727247476578,
- 0.06650740653276443,
- -0.02292054519057274,
- -0.03190639987587929,
- 0.07800311595201492,
- 0.051919929683208466,
- -0.02735106274485588,
- -0.04359671473503113,
- -0.03672425076365471,
- -0.0389353483915329,
- -0.1410982459783554,
- 0.03794524073600769,
- -0.04251406341791153,
- -0.06666542589664459,
- -0.01997937448322773,
- -0.037781450897455215,
- 0.045444127172231674,
- -0.019424866884946823,
- 0.004351637326180935,
- -0.09953184425830841,
- 0.0962342768907547,
- 0.026413116604089737,
- 0.0031435422133654356,
- -0.0382649265229702,
- -0.024975590407848358,
- 0.04052611440420151,
- -0.004169673193246126,
- 0.020593412220478058,
- 0.025185389444231987,
- -1.495866719380956e-8,
- -0.0741993710398674,
- -0.01682753674685955,
- -0.05493616312742233,
- -0.01383940503001213,
- -0.0025203812401741743,
- 0.08346584439277649,
- -0.04728040099143982,
- 0.05864135921001434,
- 0.02041003294289112,
- 0.030819354578852654,
- 0.028818845748901367,
- -0.0028143348172307014,
- 0.009790667332708836,
- 0.07621848583221436,
- -0.020970003679394722,
- -0.07027231901884079,
- -0.09797592461109161,
- 0.04569602012634277,
- -0.09624651819467545,
- -0.009029931388795376,
- -0.0056595951318740845,
- -0.016346657648682594,
- 0.006053470075130463,
- -0.049230266362428665,
- -0.03150835260748863,
- 0.027855955064296722,
- -0.040859244763851166,
- 0.025340991094708443,
- 0.012788834981620312,
- 0.008331728167831898,
- -0.04161596670746803,
- 0.013289074413478374,
- -0.04926064610481262,
- -0.040969911962747574,
- 0.08650966733694077,
- 0.07488755881786346,
- 0.02102121338248253,
- 0.01389073021709919,
- 0.03905676305294037,
- -0.023906540125608444,
- -0.019599122926592827,
- -0.033300064504146576,
- -0.004901543725281954,
- -0.048924438655376434,
- -0.0594913549721241,
- -0.026928598061203957,
- 0.04814709722995758,
- 0.04182601720094681,
- 0.05026758089661598,
- -0.046206239610910416,
- -0.030296869575977325,
- 0.0701916292309761,
- 0.046357735991477966,
- 0.098961740732193,
- 0.08459033071994781,
- -0.05272359028458595,
- 0.016216998919844627,
- 0.015023740939795971,
- -0.022627821192145348,
- 0.07865455001592636,
- 0.0892174169421196,
- 0.01557951234281063,
- 0.05354077368974686,
- -0.011861213482916355
- ]
- },
- {
- "keyword": "package",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.09349648654460907,
- 0.07835113257169724,
- -0.014379790052771568,
- -0.007508532144129276,
- 0.04962223395705223,
- -0.002094716066494584,
- 0.1357431560754776,
- 0.005152495577931404,
- -0.0674569234251976,
- 0.023446355015039444,
- 0.04220990091562271,
- -0.05081183835864067,
- 0.004564342088997364,
- -0.0122758150100708,
- -0.022100625559687614,
- 0.023123925551772118,
- 0.019725512713193893,
- -0.022011607885360718,
- -0.07161551713943481,
- -0.015829099342226982,
- -0.07849011570215225,
- 0.01303622592240572,
- 0.0012647612020373344,
- 0.039787422865629196,
- -0.025594793260097504,
- 0.10352953523397446,
- -0.041756521910429,
- -0.0062482720240950584,
- 0.014804661273956299,
- -0.12622876465320587,
- 0.036787062883377075,
- 0.037204157561063766,
- 0.07329709827899933,
- -0.022314943373203278,
- 0.034785035997629166,
- 0.08850353956222534,
- 0.010064410045742989,
- -0.039357151836156845,
- 0.03401058539748192,
- -0.02767985127866268,
- -0.02288268506526947,
- -0.06276686489582062,
- -0.022109374403953552,
- 0.03249727562069893,
- -0.011552397161722183,
- -0.03640641272068024,
- 0.010069229640066624,
- 0.008157345466315746,
- 0.03287457674741745,
- -0.022022010758519173,
- -0.0002564112073741853,
- 0.018759891390800476,
- -0.06808078289031982,
- -0.017292404547333717,
- 0.04672924801707268,
- 0.06900527328252792,
- -0.01285505574196577,
- 0.034646645188331604,
- -0.09019488096237183,
- -0.02087172120809555,
- -0.00702292425557971,
- -0.011655203998088837,
- -0.09642304480075836,
- 0.09142855554819107,
- 0.00705811707302928,
- 0.027745172381401062,
- 0.006357396487146616,
- -0.05447978898882866,
- -0.02020331099629402,
- -0.06900923699140549,
- -0.11615437269210815,
- 0.039975255727767944,
- 0.032638050615787506,
- 0.053293533623218536,
- 0.06593288481235504,
- -0.018814831972122192,
- 0.059965718537569046,
- -0.015735246241092682,
- 0.08621474355459213,
- -0.012052789330482483,
- 0.01308857835829258,
- -0.015292412601411343,
- -0.0017493143677711487,
- 0.05606980621814728,
- 0.023263799026608467,
- 0.010000364854931831,
- 0.05371762439608574,
- 0.0401189923286438,
- -0.037333179265260696,
- 0.00009192031575366855,
- -0.032955095171928406,
- -0.03867723420262337,
- 0.04515800252556801,
- 0.017569217830896378,
- -0.1513487696647644,
- 0.02168942429125309,
- -0.025229936465620995,
- -0.02915576659142971,
- -0.08917218446731567,
- 0.2701351046562195,
- -0.010765118524432182,
- 0.001007183687761426,
- 0.010932061821222305,
- -0.03928356617689133,
- -0.028114600107073784,
- -0.04874322563409805,
- -0.07423359900712967,
- -0.04381341487169266,
- 0.025465229526162148,
- 0.05214514210820198,
- -0.09577729552984238,
- -0.009472843259572983,
- -0.06245550885796547,
- -0.07252994179725647,
- -0.06623418629169464,
- -0.005695572588592768,
- -0.0459778718650341,
- 0.02379155345261097,
- 0.019711337983608246,
- -0.07809489965438843,
- 0.03016241081058979,
- 0.01633468084037304,
- 0.053535956889390945,
- -0.05153249204158783,
- -0.045393750071525574,
- -0.004958963021636009,
- 0.10353363305330276,
- -5.3085402024951277e-33,
- 0.0020651419181376696,
- -0.014052461832761765,
- -0.04210128262639046,
- 0.0846717432141304,
- 0.02033635415136814,
- -0.02381543256342411,
- 0.053676433861255646,
- -0.0333251990377903,
- -0.04603742063045502,
- 0.025194359943270683,
- -0.07353565096855164,
- -0.020950086414813995,
- -0.02502082660794258,
- 0.07987507432699203,
- 0.043354831635951996,
- 0.023737279698252678,
- -0.0026925012934952974,
- 0.057520072907209396,
- 0.03876332566142082,
- -0.039614658802747726,
- -0.07799042016267776,
- 0.029324457049369812,
- 0.0157882422208786,
- 0.10139360278844833,
- 0.04290647432208061,
- 0.017227455973625183,
- 0.042439255863428116,
- -0.021499253809452057,
- 0.028940342366695404,
- 0.022443022578954697,
- 0.04772445186972618,
- 0.03282206878066063,
- 0.004466115962713957,
- -0.031954627484083176,
- 0.03485454246401787,
- 0.029432378709316254,
- -0.05795833468437195,
- -0.041305966675281525,
- 0.043014075607061386,
- -0.036404769867658615,
- 0.017543364316225052,
- 0.028154121711850166,
- -0.013995249755680561,
- 0.08204500377178192,
- 0.08239616453647614,
- 0.007923898287117481,
- 0.06724096834659576,
- 0.032346174120903015,
- 0.12885861098766327,
- 0.014058052562177181,
- -0.02857169322669506,
- -0.027666358277201653,
- 0.005601612851023674,
- -0.009061331860721111,
- -0.038803938776254654,
- -0.03202320635318756,
- 0.038043662905693054,
- 0.03125597909092903,
- 0.05203559622168541,
- 0.003448157338425517,
- 0.0700707882642746,
- 0.036748241633176804,
- -0.037762053310871124,
- 0.005847877822816372,
- 0.0829344093799591,
- -0.05024539679288864,
- -0.08536212891340256,
- -0.027778953313827515,
- -0.009749135933816433,
- 0.025616558268666267,
- -0.04385853931307793,
- 0.01283986959606409,
- 0.09388992190361023,
- -0.0015900557627901435,
- 0.0006394293741323054,
- -0.02746981754899025,
- 0.026027128100395203,
- 0.017761921510100365,
- -0.08708144724369049,
- -0.057570964097976685,
- -0.12150252610445023,
- -0.044060561805963516,
- 0.028211450204253197,
- -0.01130534615367651,
- 0.030679911375045776,
- 0.035506721585989,
- -0.02239299565553665,
- -0.0009645606041885912,
- 0.06410466879606247,
- 0.016126258298754692,
- -0.05889539420604706,
- -0.007379615679383278,
- -0.007219113875180483,
- -0.01557825319468975,
- 0.05617579445242882,
- 4.981044904962146e-33,
- -0.0035067868884652853,
- 0.06483596563339233,
- -0.046186674386262894,
- 0.12708580493927002,
- 0.024746917188167572,
- 0.035479217767715454,
- 0.001406477065756917,
- 0.01434421818703413,
- 0.01902623288333416,
- 0.04708370938897133,
- -0.0017667112406343222,
- -0.03923040255904198,
- 0.11037309467792511,
- -0.007640888448804617,
- 0.08965863287448883,
- 0.04772796854376793,
- 0.047942791134119034,
- -0.01766606979072094,
- 0.004031286109238863,
- 0.004119532648473978,
- -0.061629511415958405,
- -0.04528291895985603,
- -0.03634842485189438,
- -0.035092294216156006,
- 0.00040878227446228266,
- 0.0011880785459652543,
- 0.11808458715677261,
- -0.03897164762020111,
- -0.010690206661820412,
- 0.012488387525081635,
- 0.05872456729412079,
- -0.04493575543165207,
- -0.11113309860229492,
- 0.010261236689984798,
- -0.03073081374168396,
- 0.05881244316697121,
- 0.06542592495679855,
- 0.012810577638447285,
- 0.02306629717350006,
- 0.02955690212547779,
- 0.03634626045823097,
- -0.011456496082246304,
- -0.08229105174541473,
- 0.12158678472042084,
- -0.005387580022215843,
- -0.06119350343942642,
- -0.0264144204556942,
- 0.0011493865167722106,
- 0.04064309224486351,
- 0.020211199298501015,
- -0.12199827283620834,
- 0.0586947426199913,
- -0.00015152287960518152,
- -0.05453382804989815,
- -0.044950611889362335,
- 0.06509387493133545,
- -0.016443584114313126,
- 0.05324091017246246,
- 0.04328446835279465,
- -0.02774042822420597,
- -0.005458568688482046,
- 0.01641779951751232,
- -0.008704280480742455,
- -0.08652310073375702,
- -0.06392447650432587,
- 0.0361236073076725,
- -0.010452921502292156,
- -0.017250802367925644,
- -0.0051075974479317665,
- 0.041219886392354965,
- 0.06179927662014961,
- 0.04140370711684227,
- -0.008055555634200573,
- -0.015004603192210197,
- -0.03174436092376709,
- -0.025868212804198265,
- -0.06700143218040466,
- 0.0388474203646183,
- -0.001016721478663385,
- 0.03919537737965584,
- 0.03384449705481529,
- -0.004066741093993187,
- 0.0412282757461071,
- 0.0603448860347271,
- 0.00917038507759571,
- -0.05005808174610138,
- 0.06352020800113678,
- -0.003321442287415266,
- -0.00848405621945858,
- -0.015967026352882385,
- 0.025667691603302956,
- 0.08798659592866898,
- -0.06189361587166786,
- 0.023022150620818138,
- 0.03157108649611473,
- -1.299772733887039e-8,
- 0.005885669495910406,
- -0.005734968930482864,
- -0.09998856484889984,
- -0.03404878452420235,
- 0.11131785809993744,
- 0.07045367360115051,
- -0.06679879128932953,
- 0.013045045547187328,
- -0.04558470845222473,
- 0.029206063598394394,
- 0.00490310974419117,
- 0.03229472413659096,
- -0.10664325952529907,
- 0.06960106641054153,
- 0.03233388811349869,
- -0.01574264094233513,
- -0.10169772803783417,
- 0.05603349208831787,
- -0.10609390586614609,
- -0.06528633832931519,
- -0.011630678549408913,
- 0.03385000675916672,
- 0.12082964926958084,
- -0.030596164986491203,
- -0.004763019736856222,
- -0.009944241493940353,
- 0.026853611692786217,
- 0.028752777725458145,
- 0.03270019218325615,
- 0.005096087232232094,
- 0.01907704956829548,
- -0.002495252527296543,
- -0.00046544361975975335,
- -0.06926899403333664,
- 0.08781035989522934,
- -0.00863003358244896,
- -0.008381047286093235,
- 0.01615571230649948,
- 0.07247592508792877,
- 0.060355693101882935,
- -0.037317149341106415,
- -0.05737763270735741,
- 0.0018637212924659252,
- -0.013770733028650284,
- -0.05928392335772514,
- 0.013240152038633823,
- -0.08727249503135681,
- -0.05187210813164711,
- -0.04581279307603836,
- 0.040860746055841446,
- 0.004881519824266434,
- -0.027263522148132324,
- -0.041231974959373474,
- 0.06504002213478088,
- -0.0021864722948521376,
- 0.04236520081758499,
- -0.007978018373250961,
- -0.10705137997865677,
- -0.005022318568080664,
- -0.00318154226988554,
- -0.05328495055437088,
- 0.00756507134065032,
- 0.0685466006398201,
- -0.021012118086218834
- ]
- },
- {
- "keyword": "bundle",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.11754436790943146,
- 0.03947160765528679,
- 0.02244395762681961,
- -0.002429523039609194,
- 0.07568355649709702,
- 0.032007455825805664,
- 0.12216770648956299,
- 0.06578521430492401,
- -0.06322050839662552,
- -0.000052579285693354905,
- 0.1101548820734024,
- -0.04054715484380722,
- -0.0159072894603014,
- 0.05218129605054855,
- 0.05817616730928421,
- 0.00004279545828467235,
- -0.013621604070067406,
- 0.05147147923707962,
- -0.0651644766330719,
- -0.02755073830485344,
- -0.041184164583683014,
- -0.03726916387677193,
- 0.05858830735087395,
- 0.03510884940624237,
- 0.04060246795415878,
- 0.01721614971756935,
- -0.009291468188166618,
- -0.039909351617097855,
- 0.03139927610754967,
- -0.1125020906329155,
- 0.07773660123348236,
- -0.009805307723581791,
- 0.0391891710460186,
- 0.06513039767742157,
- -0.015415421687066555,
- 0.03473950922489166,
- 0.06051315367221832,
- -0.0661689043045044,
- -0.06214487552642822,
- 0.019085178151726723,
- -0.021065419539809227,
- -0.029402203857898712,
- -0.03734404966235161,
- 0.06591974198818207,
- 0.022277260199189186,
- -0.02533654123544693,
- 0.026149548590183258,
- -0.007315780036151409,
- 0.0364314503967762,
- 0.06010812520980835,
- -0.020557787269353867,
- -0.000959439727012068,
- -0.06678393483161926,
- -0.013662158511579037,
- 0.03534315526485443,
- 0.0963178500533104,
- -0.04202238842844963,
- 0.026307247579097748,
- 0.001373592996969819,
- 0.047814786434173584,
- 0.0730915516614914,
- -0.0062776850536465645,
- -0.08497807383537292,
- 0.03988448530435562,
- 0.044902682304382324,
- 0.017555231228470802,
- 0.037452444434165955,
- 0.03398324176669121,
- 0.00008906563743948936,
- -0.0816018357872963,
- 0.012558920308947563,
- 0.012723477557301521,
- 0.03460343927145004,
- 0.036114152520895004,
- 0.02854841947555542,
- -0.016562622040510178,
- 0.03643272444605827,
- -0.05322359502315521,
- 0.009009250439703465,
- -0.015130520798265934,
- -0.09581759572029114,
- -0.01963852159678936,
- -0.06333939731121063,
- 0.003004079684615135,
- 0.010837608948349953,
- 0.019405273720622063,
- 0.004065364133566618,
- -0.008118044584989548,
- -0.022777073085308075,
- -0.05660177022218704,
- -0.033473338931798935,
- -0.06684804707765579,
- 0.034712500870227814,
- 0.04761846363544464,
- -0.06791231036186218,
- -0.006560978479683399,
- -0.025320257991552353,
- -0.03266210854053497,
- -0.01739872619509697,
- 0.2698342800140381,
- -0.003995717037469149,
- -0.004476162139326334,
- 0.008908485062420368,
- 0.0604349747300148,
- 0.032798297703266144,
- -0.09233018755912781,
- -0.0343792587518692,
- 0.030269326642155647,
- -0.02185879275202751,
- 0.03357235714793205,
- -0.022391680628061295,
- -0.009376365691423416,
- -0.07634975016117096,
- -0.11731978505849838,
- 0.000052682535169878975,
- 0.03711362183094025,
- -0.04939093813300133,
- 0.07980941236019135,
- 0.061497531831264496,
- 0.0006068897782824934,
- 0.0489991120994091,
- 0.003846552222967148,
- 0.07139777392148972,
- 0.02029963955283165,
- -0.0496513657271862,
- -0.09457912296056747,
- 0.013630405999720097,
- -5.194405211160053e-33,
- 0.006963080260902643,
- 0.02489861659705639,
- 0.04037414491176605,
- 0.09416887909173965,
- -0.034365564584732056,
- -0.06915988773107529,
- -0.021294794976711273,
- 0.002219582675024867,
- -0.0776161178946495,
- 0.07999458909034729,
- -0.0706690177321434,
- 0.046644896268844604,
- -0.03064802661538124,
- 0.1004522293806076,
- 0.08394010365009308,
- -0.06647346913814545,
- 0.0022872670087963343,
- 0.008610431104898453,
- 0.004764317534863949,
- -0.0296309906989336,
- -0.0427042618393898,
- 0.017003627493977547,
- 0.0014111154014244676,
- -0.013856503181159496,
- -0.026786155998706818,
- 0.001370822312310338,
- 0.011363914236426353,
- -0.024438928812742233,
- -0.002400608966127038,
- 0.04356438294053078,
- 0.014846817590296268,
- -0.03759027272462845,
- 0.034618668258190155,
- -0.02050718292593956,
- 0.018450958654284477,
- 0.014562252908945084,
- -0.05204642564058304,
- -0.0012517280410975218,
- -0.035978492349386215,
- 0.0012102932669222355,
- -0.0021146107465028763,
- -0.003015357069671154,
- -0.0564277246594429,
- -0.030921360477805138,
- 0.012711103074252605,
- 0.026698270812630653,
- 0.17070525884628296,
- -0.0309496708214283,
- -0.0232620257884264,
- -0.014092671684920788,
- 0.0237606018781662,
- -0.013222980313003063,
- 0.0005524659063667059,
- -0.018290163949131966,
- -0.05186760798096657,
- -0.04514381289482117,
- 0.028339555487036705,
- 0.049818068742752075,
- 0.05232235789299011,
- -0.05436978116631508,
- 0.07916242629289627,
- -0.00979122519493103,
- -0.001161447144113481,
- -0.016783693805336952,
- -0.04329397529363632,
- 0.006937702652066946,
- 0.04434723034501076,
- -0.02158597856760025,
- -0.03694513067603111,
- 0.024100657552480698,
- -0.14524152874946594,
- 0.0688425600528717,
- 0.029432568699121475,
- -0.02592727541923523,
- 0.0037257787771523,
- 0.004218081012368202,
- 0.025212235748767853,
- 0.056710466742515564,
- -0.07715931534767151,
- -0.03128013759851456,
- -0.12521110475063324,
- -0.039197761565446854,
- 0.005514310207217932,
- 0.034749243408441544,
- 0.013437027111649513,
- 0.010238646529614925,
- 0.009606658481061459,
- -0.008417434990406036,
- 0.019080499187111855,
- 0.02691669762134552,
- -0.06456295400857925,
- 0.026684625074267387,
- 0.03258081153035164,
- -0.06512425094842911,
- 0.05459584295749664,
- 4.6915276258523245e-33,
- 0.03154946491122246,
- -0.0012565937358886003,
- -0.03257680684328079,
- 0.0034269378520548344,
- -0.026178978383541107,
- 0.006108622532337904,
- 0.005167276598513126,
- 0.06255682557821274,
- -0.07429668307304382,
- 0.043733853846788406,
- -0.053197432309389114,
- -0.045969314873218536,
- 0.0829881951212883,
- 0.034028876572847366,
- 0.04136748984456062,
- 0.06856269389390945,
- -0.005247999913990498,
- -0.004550868179649115,
- 0.034028276801109314,
- 0.025796931236982346,
- -0.09885526448488235,
- 0.014543145895004272,
- -0.02394908480346203,
- -0.10858304798603058,
- -0.0014496397925540805,
- 0.06694123893976212,
- -0.021819179877638817,
- 0.01611892692744732,
- 0.023807810619473457,
- -0.027740754187107086,
- 0.12663087248802185,
- -0.021453125402331352,
- -0.09830978512763977,
- -0.010661749169230461,
- -0.04676841199398041,
- 0.12160705775022507,
- 0.015108326449990273,
- 0.08003769814968109,
- -0.012511682696640491,
- -0.07224688678979874,
- 0.01825265772640705,
- -0.031987689435482025,
- 0.020135430619120598,
- 0.06686457246541977,
- -0.009285715408623219,
- -0.03970041126012802,
- 0.08962786942720413,
- -0.014648924581706524,
- -0.05994696915149689,
- 0.076165571808815,
- -0.05409364029765129,
- 0.08209753781557083,
- -0.010709349066019058,
- -0.11449449509382248,
- -0.0358051136136055,
- 0.008813377469778061,
- -0.15143482387065887,
- 0.009700092487037182,
- 0.008325009606778622,
- -0.06446145474910736,
- 0.04697657749056816,
- -0.0340077243745327,
- -0.01309246476739645,
- -0.058938704431056976,
- 0.01561841368675232,
- -0.029233116656541824,
- -0.006654535885900259,
- 0.03481316938996315,
- -0.06498902291059494,
- 0.017900891602039337,
- 0.04662472754716873,
- 0.0012068814830854535,
- -0.036785926669836044,
- -0.025409456342458725,
- -0.007490082643926144,
- -0.009616046212613583,
- -0.07192592322826385,
- 0.06376263499259949,
- 0.03320266306400299,
- 0.038364093750715256,
- -0.011210385710000992,
- -0.008104274980723858,
- -0.04433386027812958,
- 0.03275643289089203,
- 0.02353113889694214,
- -0.00972137413918972,
- 0.08964414149522781,
- 0.06244053319096565,
- 0.013706591911613941,
- -0.07136866450309753,
- 0.0027951409574598074,
- 0.023421291261911392,
- -0.0021710761357098818,
- 0.08245169371366501,
- -0.014637206681072712,
- -1.192963328122687e-8,
- 0.007942590862512589,
- 0.029814552515745163,
- -0.03551401570439339,
- -0.02603284642100334,
- 0.07171761989593506,
- 0.027183184400200844,
- -0.06529501080513,
- 0.05220428854227066,
- 0.01190873607993126,
- 0.09206816554069519,
- 0.004694569855928421,
- 0.009224769659340382,
- -0.11654967069625854,
- 0.06856134533882141,
- -0.0017028104048222303,
- -0.039494842290878296,
- -0.10493303835391998,
- 0.0841592401266098,
- -0.03811394050717354,
- -0.0011166902258992195,
- 0.025215119123458862,
- 0.03913390263915062,
- 0.06949593126773834,
- 0.00284276669844985,
- -0.02003241889178753,
- 0.023405559360980988,
- 0.058643173426389694,
- 0.033078212291002274,
- 0.09347722679376602,
- 0.04713094234466553,
- 0.050444506108760834,
- 0.03598037734627724,
- -0.04167218878865242,
- -0.005675907712429762,
- -0.0295608751475811,
- -0.012531433254480362,
- -0.04003949835896492,
- 0.10217053443193436,
- 0.026083679869771004,
- 0.08219185471534729,
- 0.0874091312289238,
- -0.07262197136878967,
- 0.03219720348715782,
- 0.021325547248125076,
- -0.07373787462711334,
- 0.020697051659226418,
- -0.014118155464529991,
- -0.07663270086050034,
- -0.038996025919914246,
- 0.015470207668840885,
- -0.013005653396248817,
- -0.008525724522769451,
- -0.06328143179416656,
- 0.036038558930158615,
- 0.006296506151556969,
- 0.013083536177873611,
- -0.010006371885538101,
- -0.05255916714668274,
- 0.0001992750767385587,
- 0.0024689810816198587,
- -0.04223394766449928,
- -0.11309126764535904,
- -0.01578489877283573,
- -0.02436451055109501
- ]
- },
- {
- "keyword": "software",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.08036249130964279,
- 0.03096572868525982,
- -0.015908362343907356,
- -0.028266627341508865,
- -0.015217847190797329,
- -0.04445064812898636,
- 0.06944524496793747,
- 0.08923792839050293,
- 0.03626319393515587,
- 0.01577572338283062,
- -0.03772767633199692,
- 0.018665025010704994,
- 0.04841485247015953,
- -0.031221508979797363,
- -0.009960650466382504,
- -0.011639788746833801,
- -0.03447460010647774,
- -0.0023206404875963926,
- -0.01884872280061245,
- -0.10858408361673355,
- -0.05257602781057358,
- -0.01976948231458664,
- -0.05539878085255623,
- 0.02439970150589943,
- 0.040842682123184204,
- 0.06305921077728271,
- -0.022018898278474808,
- -0.003776941215619445,
- 0.07243964076042175,
- -0.10115084052085876,
- 0.0025194159243255854,
- 0.061675507575273514,
- 0.12412992119789124,
- -0.010027912445366383,
- -0.0483463853597641,
- 0.0034008079674094915,
- -0.027446778491139412,
- -0.044614844024181366,
- -0.0669884905219078,
- -0.05643486976623535,
- -0.10439430922269821,
- -0.03350928798317909,
- -0.009978342801332474,
- -0.0320252999663353,
- 0.038279589265584946,
- -0.07299408316612244,
- -0.03185264766216278,
- 0.01438287366181612,
- 0.025229845196008682,
- 0.057230450212955475,
- -0.11456318199634552,
- -0.04180240258574486,
- -0.023481599986553192,
- 0.02329503372311592,
- -0.025852015241980553,
- 0.026321135461330414,
- 0.06240170821547508,
- -0.007862885482609272,
- -0.02537141554057598,
- -0.004701854661107063,
- 0.05692150071263313,
- -0.012915206141769886,
- -0.12610642611980438,
- 0.06741146743297577,
- 0.021225685253739357,
- 0.03998379036784172,
- -0.002429396379739046,
- -0.00737082539126277,
- 0.038335006684064865,
- -0.10646422207355499,
- -0.09574922174215317,
- 0.009971627965569496,
- 0.024732772260904312,
- 0.06365944445133209,
- 0.0031717452220618725,
- -0.0579783171415329,
- 0.026752300560474396,
- -0.00624961219727993,
- 0.05114677920937538,
- -0.08156295120716095,
- 0.03747332841157913,
- -0.0064233290031552315,
- -0.05573633313179016,
- 0.04546429589390755,
- 0.016056684777140617,
- 0.006962182000279427,
- 0.058577463030815125,
- 0.05628965049982071,
- 0.034377261996269226,
- 0.030011802911758423,
- -0.03688381612300873,
- -0.0022425204515457153,
- 0.0447518415749073,
- -0.035927098244428635,
- -0.07145661860704422,
- 0.047323036938905716,
- 0.050752900540828705,
- -0.07615871727466583,
- 0.007892792113125324,
- 0.25317421555519104,
- 0.006271891295909882,
- -0.03422648459672928,
- 0.024510648101568222,
- -0.08439921587705612,
- -0.02006743662059307,
- -0.07421424239873886,
- 0.07862450927495956,
- -0.0062850541435182095,
- 0.057745642960071564,
- -0.03172025457024574,
- -0.08264194428920746,
- -0.06374070048332214,
- -0.07841943204402924,
- -0.11279170960187912,
- 0.019196292385458946,
- 0.029729558154940605,
- -0.0195737536996603,
- 0.040665194392204285,
- -0.06002477928996086,
- 0.021557623520493507,
- -0.04421012103557587,
- 0.010969686321914196,
- -0.0060006179846823215,
- -0.03054654598236084,
- 0.011450356803834438,
- -0.045878034085035324,
- 0.019610481336712837,
- -5.302198777814426e-33,
- 0.003724625101312995,
- -0.03025464154779911,
- -0.05201632156968117,
- 0.07871264964342117,
- -0.028461040928959846,
- -0.012454546056687832,
- -0.009844732470810413,
- -0.013321398757398129,
- -0.048567160964012146,
- 0.0066532292403280735,
- 0.02314661256968975,
- 0.026857757940888405,
- -0.0952480286359787,
- 0.04647614806890488,
- 0.2196216881275177,
- -0.005075249820947647,
- -0.008215108886361122,
- 0.11208733171224594,
- -0.018477415665984154,
- -0.025109780952334404,
- -0.0060971444472670555,
- -0.043527085334062576,
- 0.04502623900771141,
- 0.07650090008974075,
- 0.005014426074922085,
- 0.03138874098658562,
- 0.007310267072170973,
- -0.045741211622953415,
- 0.08487601578235626,
- 0.0186754297465086,
- 0.023632358759641647,
- 0.04666828736662865,
- -0.007052502129226923,
- -0.04760829359292984,
- 0.021962346509099007,
- 0.03945548087358475,
- -0.042710933834314346,
- -0.07543560117483139,
- 0.05910689756274223,
- 0.01607099175453186,
- -0.009391551837325096,
- -0.006156458519399166,
- 0.011619750410318375,
- -0.016565626487135887,
- 0.06067262589931488,
- -0.013377731665968895,
- 0.05745111033320427,
- 0.07129713892936707,
- -0.016468634828925133,
- 0.08077890425920486,
- -0.0068345749750733376,
- 0.038420338183641434,
- 0.02827061340212822,
- 0.033290356397628784,
- -0.04897729679942131,
- 0.029007161036133766,
- 0.01943998411297798,
- -0.02136389911174774,
- 0.06113167107105255,
- 0.027225105091929436,
- 0.06773808598518372,
- 0.057538069784641266,
- 0.009379363618791103,
- -0.04131506010890007,
- 0.013974240981042385,
- 0.0088508864864707,
- 0.06809794902801514,
- 0.0005392807652242482,
- 0.05373748764395714,
- 0.06231258437037468,
- -0.118149533867836,
- -0.05238483101129532,
- 0.05327042564749718,
- -0.007319964002817869,
- -0.011014877818524837,
- -0.00711007509380579,
- 0.009615626186132431,
- 0.0013455667067319155,
- -0.06886694580316544,
- 0.019474400207400322,
- -0.17750896513462067,
- -0.01821107603609562,
- -0.035999659448862076,
- 0.012149546295404434,
- 0.001198784215375781,
- 0.029597990214824677,
- -0.0617506317794323,
- -0.006429975852370262,
- -0.0057533057406544685,
- 0.041474081575870514,
- -0.05066647380590439,
- 0.005202599801123142,
- -0.03898795694112778,
- 0.09550035744905472,
- 0.01269291527569294,
- 4.4694598452507013e-33,
- -0.08629997819662094,
- -0.01948407292366028,
- -0.006202601362019777,
- 0.05184992402791977,
- 0.008554872125387192,
- -0.002333264797925949,
- -0.015485613606870174,
- -0.02074548602104187,
- -0.02285534329712391,
- 0.03731993958353996,
- -0.05441989377140999,
- -0.0037317974492907524,
- 0.07954976707696915,
- 0.007688500452786684,
- -0.01661023683845997,
- -0.02265799418091774,
- 0.052620984613895416,
- -0.059668779373168945,
- -0.03589893877506256,
- 0.04056290537118912,
- -0.06734946370124817,
- 0.012846875004470348,
- -0.018251005560159683,
- -0.04776986315846443,
- -0.02102769911289215,
- 0.04364445060491562,
- -0.02117929980158806,
- -0.022555992007255554,
- 0.020721090957522392,
- 0.03468886390328407,
- 0.06659666448831558,
- -0.03137027099728584,
- -0.10077819228172302,
- 0.04007112979888916,
- -0.0013682999415323138,
- -0.005167988128960133,
- 0.08411543071269989,
- -0.006054569035768509,
- -0.0105524230748415,
- -0.048618514090776443,
- 0.12453342229127884,
- -0.01387864351272583,
- -0.023946011438965797,
- 0.07546360790729523,
- 0.013071941211819649,
- -0.02828114479780197,
- -0.06337983161211014,
- 0.008521677926182747,
- 0.023191766813397408,
- -0.002757368376478553,
- -0.0013784938491880894,
- -0.020154520869255066,
- 0.05778280273079872,
- -0.10368483513593674,
- -0.01838856190443039,
- -0.0057807303965091705,
- -0.016007941216230392,
- -0.016377249732613564,
- 0.009749502874910831,
- -0.03380265459418297,
- -0.07615943253040314,
- -0.03724083676934242,
- 0.022338004782795906,
- -0.028069447726011276,
- -0.08557441085577011,
- 0.0695955827832222,
- 0.03873223438858986,
- -0.001982541987672448,
- -0.05934266373515129,
- 0.0007914203451946378,
- 0.08117565512657166,
- 0.09232711791992188,
- -0.008185584098100662,
- 0.030389724299311638,
- -0.029317384585738182,
- 0.01999353989958763,
- -0.12372688949108124,
- -0.015092306770384312,
- -0.07708822190761566,
- -0.1084865853190422,
- 0.07018519192934036,
- -0.06559383869171143,
- 0.04184488579630852,
- 0.04377937316894531,
- -0.05710282176733017,
- 0.0329827144742012,
- 0.0408482626080513,
- -0.06455065310001373,
- -0.01927872747182846,
- -0.019486408680677414,
- -0.09111451357603073,
- 0.07608521729707718,
- 0.019144447520375252,
- 0.07067126035690308,
- -0.058012157678604126,
- -1.3143100829893228e-8,
- -0.0001454915473004803,
- -0.04132743924856186,
- 0.026506295427680016,
- 0.002408846514299512,
- 0.005196970421820879,
- 0.058123230934143066,
- -0.04048290103673935,
- 0.03141509369015694,
- -0.017855042591691017,
- 0.031122570857405663,
- -0.00027011928614228964,
- -0.028517253696918488,
- -0.020328400656580925,
- 0.06738986074924469,
- 0.06346654146909714,
- -0.003187373513355851,
- 0.027898181229829788,
- 0.08377139270305634,
- -0.05492387339472771,
- -0.04172324016690254,
- 0.05548154190182686,
- 0.0346420481801033,
- 0.056243907660245895,
- 0.07105151563882828,
- 0.05313967168331146,
- -0.05545669421553612,
- 0.05318092554807663,
- 0.1269201785326004,
- 0.04585323855280876,
- 0.010362436063587666,
- 0.019301561638712883,
- 0.03444848209619522,
- 0.031127603724598885,
- -0.0067577543668448925,
- 0.08362000435590744,
- -0.022679591551423073,
- 0.03340105339884758,
- 0.027460632845759392,
- 0.008944214321672916,
- 0.010576171800494194,
- -0.01787795126438141,
- 0.05213387310504913,
- 0.026265151798725128,
- -0.04486894607543945,
- -0.019238928332924843,
- -0.01132260449230671,
- 0.007224969565868378,
- -0.05421098321676254,
- 0.032620761543512344,
- 0.0334283821284771,
- -0.030744444578886032,
- 0.037712618708610535,
- -0.02505841851234436,
- 0.05149209499359131,
- 0.04072041064500809,
- 0.022190405055880547,
- 0.04525172337889671,
- -0.05411231890320778,
- -0.002934095449745655,
- 0.05223885551095009,
- 0.027843615040183067,
- -0.0035768693778663874,
- 0.07695170491933823,
- 0.017826871946454048
- ]
- },
- {
- "keyword": "app",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.057125601917505264,
- 0.0007830605609342456,
- -0.013955166563391685,
- -0.031279318034648895,
- -0.010861613787710667,
- -0.034753721207380295,
- 0.07025806605815887,
- 0.05774510279297829,
- 0.03819592297077179,
- 0.012585299089550972,
- 0.009195380844175816,
- -0.04956838861107826,
- 0.03013775497674942,
- -0.037796858698129654,
- -0.011688890866935253,
- 0.0013763601891696453,
- 0.06052127480506897,
- 0.02727259323000908,
- -0.06427382677793503,
- -0.02519884519279003,
- -0.05856448411941528,
- 0.05409611016511917,
- 0.021705262362957,
- 0.0452694408595562,
- 0.035748254507780075,
- -0.02105640061199665,
- -0.10235659778118134,
- 0.028117120265960693,
- 0.0948006808757782,
- -0.057875629514455795,
- 0.018989121541380882,
- -0.007310206536203623,
- 0.05557297542691231,
- 0.047011714428663254,
- -0.07708321511745453,
- -0.0962258130311966,
- -0.0010683333966881037,
- -0.03541506826877594,
- -0.04800556227564812,
- -0.03353812173008919,
- -0.037616897374391556,
- -0.053292497992515564,
- -0.03263475373387337,
- 0.0558447502553463,
- -0.004461619537323713,
- -0.03448370844125748,
- 0.04898766800761223,
- 0.05211958661675453,
- 0.05505925044417381,
- 0.10288695991039276,
- 0.012682023458182812,
- -0.015272420831024647,
- -0.0005275662988424301,
- 0.016648711636662483,
- -0.055725377053022385,
- 0.0739588737487793,
- -0.0276477113366127,
- 0.03124118410050869,
- 0.038463640958070755,
- 0.0493062324821949,
- 0.12509900331497192,
- 0.01280058454722166,
- -0.042122192680835724,
- 0.08430270105600357,
- -0.01958431489765644,
- 0.06436216086149216,
- -0.03399016708135605,
- -0.00782702211290598,
- 0.029949922114610672,
- -0.1361885815858841,
- -0.052696116268634796,
- 0.041259411722421646,
- 0.006438328418880701,
- -0.06447364389896393,
- -0.038349494338035583,
- -0.07466025650501251,
- 0.0056228130124509335,
- -0.06493624299764633,
- -0.02651859261095524,
- -0.03143441304564476,
- -0.011087759397923946,
- -0.04734211787581444,
- -0.050901859998703,
- 0.10810267925262451,
- 0.02720070071518421,
- -0.010124283842742443,
- 0.05665229633450508,
- 0.03991169482469559,
- 0.048253804445266724,
- 0.022701185196638107,
- -0.024058399721980095,
- 0.0038493594620376825,
- 0.06448698788881302,
- -0.042431749403476715,
- -0.07005853950977325,
- 0.009642365388572216,
- -0.008224249817430973,
- -0.03451758250594139,
- -0.11821523308753967,
- 0.24038001894950867,
- 0.008336110971868038,
- -0.02598782256245613,
- 0.004839595407247543,
- -0.049295954406261444,
- 0.04329147934913635,
- -0.05717804655432701,
- -0.03482599928975105,
- -0.049664974212646484,
- 0.020912854000926018,
- 0.049320198595523834,
- -0.05758555233478546,
- -0.08352873474359512,
- 0.003934703301638365,
- -0.046546224504709244,
- 0.03846242278814316,
- 0.014324852265417576,
- 0.005985759664326906,
- 0.0541081540286541,
- 0.00948194321244955,
- 0.04735357686877251,
- -0.007469157688319683,
- 0.005380986724048853,
- -0.046414900571107864,
- -0.08717823773622513,
- -0.0011273542186245322,
- -0.07872720807790756,
- 0.0036658511962741613,
- -4.424888405545382e-33,
- 0.019435400143265724,
- -0.03113415837287903,
- 0.017289891839027405,
- 0.026128513738512993,
- -0.028914326801896095,
- -0.048337314277887344,
- 0.020688485354185104,
- -0.01583080179989338,
- -0.034802332520484924,
- -0.02638326585292816,
- -0.05684943497180939,
- 0.05176874250173569,
- -0.028163554146885872,
- -0.01230120100080967,
- 0.12606379389762878,
- -0.009245415218174458,
- -0.006055924110114574,
- 0.08529464900493622,
- 0.004765632096678019,
- -0.02062078006565571,
- -0.053110621869564056,
- -0.09875823557376862,
- 0.017904464155435562,
- 0.04184034839272499,
- -0.01661648042500019,
- 0.01743047498166561,
- 0.04225671663880348,
- -0.03425029665231705,
- 0.033712103962898254,
- 0.020883772522211075,
- 0.033634111285209656,
- 0.060237541794776917,
- -0.03874331712722778,
- -0.03478652983903885,
- -0.03468279913067818,
- -0.09385481476783752,
- 0.01495241466909647,
- -0.03785739466547966,
- 0.043815240263938904,
- 0.013859095051884651,
- -0.06560171395540237,
- -0.014830243773758411,
- -0.023280929774045944,
- 0.042569294571876526,
- -0.0033099630381911993,
- 0.02177063748240471,
- 0.054748762398958206,
- 0.0032208370976150036,
- -0.024706467986106873,
- 0.07202593237161636,
- 0.013532881624996662,
- 0.018652185797691345,
- -0.016581177711486816,
- 0.042090754956007004,
- -0.08385097235441208,
- -0.013852580450475216,
- 0.000793753657490015,
- -0.028395414352416992,
- 0.012911255471408367,
- -0.08024313300848007,
- 0.07773652672767639,
- 0.015879042446613312,
- -0.08409208804368973,
- 0.0007988594588823617,
- -0.059483032673597336,
- -0.007380540017038584,
- 0.0413593165576458,
- -0.08717638999223709,
- -0.011939997784793377,
- 0.055042896419763565,
- -0.07955703884363174,
- 0.0012340337270870805,
- 0.14613886177539825,
- 0.018817752599716187,
- -0.06107483431696892,
- 0.039265573024749756,
- 0.053010765463113785,
- -0.005093419458717108,
- -0.11357641965150833,
- -0.021200455725193024,
- -0.03305255249142647,
- -0.03872355446219444,
- -0.022675372660160065,
- 0.007719655986875296,
- -0.021853400394320488,
- 0.02115491032600403,
- -0.03232642263174057,
- -0.08751775324344635,
- -0.0324983187019825,
- 0.0824221670627594,
- -0.10786619037389755,
- 0.04012967646121979,
- 0.05036155879497528,
- 0.06843621283769608,
- -0.0339512974023819,
- 3.632538356849957e-33,
- -0.05120250582695007,
- -0.012633269652724266,
- -0.028896693140268326,
- 0.012290860526263714,
- 0.05649669095873833,
- -0.030139073729515076,
- 0.025288118049502373,
- 0.06440991908311844,
- 0.015091229230165482,
- 0.056303661316633224,
- -0.07340841740369797,
- -0.00453947065398097,
- 0.0872507393360138,
- 0.018913010135293007,
- -0.01684274524450302,
- 0.06187015771865845,
- 0.08381018042564392,
- 0.006699055433273315,
- -0.035854656249284744,
- 0.01413130946457386,
- -0.09243477880954742,
- -0.01464010402560234,
- -0.0014255163259804249,
- -0.04745655134320259,
- -0.08459185808897018,
- -0.03161495551466942,
- 0.04826710373163223,
- -0.042217917740345,
- 0.010410502552986145,
- -0.0630384311079979,
- 0.056832510977983475,
- -0.0759846493601799,
- -0.06854480504989624,
- -0.06320333480834961,
- -0.04090406000614166,
- 0.0754910558462143,
- 0.06918426603078842,
- -0.018528809770941734,
- -0.005231894087046385,
- -0.07377372682094574,
- 0.09915276616811752,
- 0.011225665919482708,
- 0.034350618720054626,
- 0.09288756549358368,
- -0.0000868209099280648,
- 0.0011138049885630608,
- -0.05321235954761505,
- 0.03557940199971199,
- 0.014556541107594967,
- 0.02336995117366314,
- 0.04240553453564644,
- 0.04343337565660477,
- 0.05877787619829178,
- -0.06451363861560822,
- 0.014414248988032341,
- 0.08397708833217621,
- 0.07071733474731445,
- 0.0027352150063961744,
- -0.05674023553729057,
- 0.00374283897690475,
- -0.017714759334921837,
- 0.016478151082992554,
- -0.026079708710312843,
- -0.016623634845018387,
- -0.003853131551295519,
- 0.046250224113464355,
- 0.012839277274906635,
- -0.005949773825705051,
- -0.026222137734293938,
- 0.10156825184822083,
- 0.03837362304329872,
- -0.014946027658879757,
- -0.03944462165236473,
- -0.00847838819026947,
- -0.09320687502622604,
- 0.01680426485836506,
- -0.023351484909653664,
- 0.020269332453608513,
- -0.06296096742153168,
- -0.08222270756959915,
- 0.006189604289829731,
- 0.005652918014675379,
- 0.04549918696284294,
- 0.026541396975517273,
- 0.0062733483500778675,
- -0.05737898498773575,
- 0.011527049355208874,
- -0.015909874811768532,
- 0.002808351069688797,
- 0.0250839963555336,
- -0.008930365554988384,
- 0.05758628621697426,
- -0.006504783406853676,
- 0.029591822996735573,
- -0.0535915344953537,
- -1.222063250594374e-8,
- 0.04839906468987465,
- -0.04599245265126228,
- 0.0037242057733237743,
- -0.015793681144714355,
- -0.008321383967995644,
- 0.011331643909215927,
- 0.011860134080052376,
- 0.061191365122795105,
- 0.07862374186515808,
- 0.0009750159806571901,
- -0.11906271427869797,
- 0.011217284947633743,
- -0.10504954308271408,
- 0.07875071465969086,
- 0.033295147120952606,
- -0.04010733589529991,
- 0.009534756653010845,
- 0.06749080866575241,
- -0.013253044337034225,
- 0.0007806893554516137,
- 0.0012224745005369186,
- 0.039275918155908585,
- 0.004745008423924446,
- 0.05951517075300217,
- 0.029273539781570435,
- -0.03330361843109131,
- 0.08182267844676971,
- 0.07094187289476395,
- 0.020961632952094078,
- 0.02043241821229458,
- 0.03681217133998871,
- 0.06888195872306824,
- 0.0388326570391655,
- -0.048278361558914185,
- 0.029195118695497513,
- 0.07756689935922623,
- -0.016496963798999786,
- 0.017994148656725883,
- 0.033949874341487885,
- -0.024037828668951988,
- -0.004939969629049301,
- -0.014734585769474506,
- 0.10883450508117676,
- -0.08068395406007767,
- -0.04777350276708603,
- 0.01012322586029768,
- 0.054323263466358185,
- -0.10574723780155182,
- 0.07106893509626389,
- 0.034716103225946426,
- -0.020159365609288216,
- 0.018576571717858315,
- 0.009488869458436966,
- -0.04564177244901657,
- 0.051504697650671005,
- 0.07957956939935684,
- 0.02157326601445675,
- -0.08945087343454361,
- 0.0006978458259254694,
- 0.06680155545473099,
- 0.16939914226531982,
- 0.03150986135005951,
- -0.02017282322049141,
- 0.04672636836767197
- ]
- },
- {
- "keyword": "application",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.040498629212379456,
- 0.01922963187098503,
- -0.04778120294213295,
- -0.10044625401496887,
- -0.019638381898403168,
- -0.017946524545550346,
- 0.12253336608409882,
- 0.11493907123804092,
- -0.04647047072649002,
- -0.03671048954129219,
- -0.027475491166114807,
- -0.024770736694335938,
- 0.020518092438578606,
- -0.016396375373005867,
- 0.017017165198922157,
- 0.01537512056529522,
- 0.07546018809080124,
- -0.029321802780032158,
- -0.03331516683101654,
- -0.043100979179143906,
- -0.00996521208435297,
- -0.0066988165490329266,
- -0.06837977468967438,
- 0.02340569719672203,
- -0.07984641194343567,
- 0.008535277098417282,
- -0.024224931374192238,
- 0.028219033032655716,
- 0.12020134180784225,
- -0.06196316331624985,
- 0.006224617827683687,
- 0.06812042742967606,
- 0.07666293531656265,
- 0.0029797626193612814,
- 0.00010926704271696508,
- 0.007112371735274792,
- -0.017495546489953995,
- -0.04006696864962578,
- -0.029711976647377014,
- -0.028060350567102432,
- -0.032996054738759995,
- -0.1051037460565567,
- -0.053070470690727234,
- 0.028237463906407356,
- 0.023915238678455353,
- -0.11310082674026489,
- 0.011314147152006626,
- 0.008723831735551357,
- 0.038121964782476425,
- 0.025457467883825302,
- -0.014809561893343925,
- -0.0170170646160841,
- 0.013015891425311565,
- 0.0039560371078550816,
- -0.049696262925863266,
- 0.013109161518514156,
- 0.017908697947859764,
- 0.01763017103075981,
- -0.03463162109255791,
- -0.011671943590044975,
- 0.04154761880636215,
- 0.03047851100564003,
- -0.06825470179319382,
- 0.11545896530151367,
- 0.06193939596414566,
- 0.03614400699734688,
- -0.049570418894290924,
- -0.012221839278936386,
- 0.03807856887578964,
- -0.17816129326820374,
- -0.06457506865262985,
- -0.033714260905981064,
- -0.074350506067276,
- -0.05342203751206398,
- -0.035771507769823074,
- -0.09569291025400162,
- -0.04321255162358284,
- -0.022733483463525772,
- 0.05302560329437256,
- -0.05137456953525543,
- 0.08562522381544113,
- -0.04097006469964981,
- -0.05734187364578247,
- 0.05211815983057022,
- -0.0037948412355035543,
- 0.029679933562874794,
- 0.024158407002687454,
- 0.004745759069919586,
- 0.08307511359453201,
- 0.05058173090219498,
- 0.04093081131577492,
- -0.011314869858324528,
- 0.012175323441624641,
- -0.038959041237831116,
- -0.04833655431866646,
- 0.000008111337592708878,
- -0.00002494638647476677,
- -0.01194155216217041,
- -0.03611477091908455,
- 0.28336769342422485,
- 0.024900255724787712,
- -0.08764734864234924,
- -0.026435697451233864,
- -0.0426434651017189,
- 0.016207197681069374,
- -0.06670919060707092,
- -0.00671154260635376,
- -0.06667510420084,
- 0.02174592763185501,
- 0.007316763512790203,
- -0.11171527206897736,
- -0.06756626814603806,
- -0.029143426567316055,
- -0.026405859738588333,
- 0.02018590457737446,
- 0.026813261210918427,
- -0.02675926871597767,
- 0.035249337553977966,
- -0.00944394152611494,
- 0.06931804120540619,
- 0.003419376676902175,
- 0.049888771027326584,
- -0.04209670424461365,
- -0.046947360038757324,
- -0.009957690723240376,
- -0.0960882157087326,
- -0.027053484693169594,
- -6.276131112301216e-33,
- -0.06463690102100372,
- -0.04598521813750267,
- -0.02168940007686615,
- 0.045786015689373016,
- -0.003899218048900366,
- -0.0387338362634182,
- 0.0038441293872892857,
- 0.004103736486285925,
- -0.043159641325473785,
- -0.02075650356709957,
- 0.0027944177854806185,
- 0.09624090790748596,
- 0.014721013605594635,
- 0.01225238386541605,
- 0.11253250390291214,
- 0.046242605894804,
- 0.019869569689035416,
- 0.1228565126657486,
- 0.005526485852897167,
- 0.018049636855721474,
- -0.01370063703507185,
- -0.057796407490968704,
- -0.01228571217507124,
- 0.06264283508062363,
- 0.03182315081357956,
- 0.039997879415750504,
- 0.006359163671731949,
- -0.024418318644165993,
- 0.052421387284994125,
- 0.03580937534570694,
- 0.11882141977548599,
- 0.037245918065309525,
- -0.05382915958762169,
- -0.024383293464779854,
- 0.02474767155945301,
- -0.03402458131313324,
- 0.0031434434931725264,
- -0.0453772246837616,
- 0.03426576033234596,
- -0.045968540012836456,
- -0.032085832208395004,
- -0.048771001398563385,
- 0.024544918909668922,
- 0.023364465683698654,
- 0.05630543455481529,
- 0.002678193850442767,
- 0.06323931366205215,
- 0.024027522653341293,
- 0.00391012616455555,
- 0.0675225630402565,
- 0.02840294875204563,
- 0.03665480017662048,
- -0.012247533537447453,
- 0.048367228358983994,
- -0.04990115389227867,
- 0.005526033230125904,
- -0.015360334888100624,
- -0.012935377657413483,
- 0.006805486045777798,
- -0.003938371781259775,
- -0.002865993184968829,
- -0.017727719619870186,
- -0.08915330469608307,
- -0.010510677471756935,
- -0.04926227033138275,
- -0.042225513607263565,
- 0.006812880747020245,
- -0.09223249554634094,
- 0.056896090507507324,
- 0.007341280579566956,
- -0.13152705132961273,
- -0.0029701530002057552,
- 0.10923294723033905,
- -0.00807084608823061,
- -0.0023035521153360605,
- 0.004720007535070181,
- -0.004163858015090227,
- 0.03468218073248863,
- -0.1147758737206459,
- 0.027060821652412415,
- -0.034130241721868515,
- -0.014600102789700031,
- -0.010282227769494057,
- -0.022394033148884773,
- 0.0038681922014802694,
- 0.02987617440521717,
- 0.006969362962990999,
- -0.07895033806562424,
- -0.014043169096112251,
- 0.07391377538442612,
- -0.042838290333747864,
- 0.04993531480431557,
- -0.02263553999364376,
- 0.12425965815782547,
- 0.0513186901807785,
- 3.746513187079732e-33,
- 0.007774060592055321,
- 0.011293316259980202,
- -0.027781538665294647,
- -0.024579495191574097,
- 0.08858279138803482,
- 0.04177437350153923,
- 0.023203473538160324,
- 0.004615989048033953,
- -0.02259228006005287,
- 0.055206868797540665,
- -0.04067816957831383,
- 0.01722925342619419,
- 0.10288675874471664,
- 0.012924748472869396,
- -0.09625580161809921,
- 0.03816097974777222,
- 0.06176280975341797,
- 0.014800654724240303,
- -0.03833591938018799,
- 0.06079798936843872,
- -0.08383160829544067,
- 0.02832791768014431,
- 0.013928305357694626,
- -0.040745269507169724,
- -0.02280205301940441,
- -0.03161987289786339,
- 0.025468597188591957,
- -0.060534968972206116,
- 0.0217516478151083,
- -0.026301365345716476,
- -0.04330544173717499,
- -0.04709427431225777,
- -0.08766036480665207,
- -0.02330254763364792,
- -0.06530946493148804,
- -0.007856029085814953,
- 0.13252227008342743,
- -0.04360267147421837,
- 0.01928708329796791,
- -0.033245500177145004,
- 0.14040152728557587,
- -0.03100140579044819,
- 0.061127785593271255,
- 0.04192742332816124,
- -0.026220761239528656,
- 0.003248038934543729,
- -0.09625041484832764,
- 0.02704405039548874,
- 0.039896346628665924,
- 0.0019999889191240072,
- -0.016524214297533035,
- 0.009535448625683784,
- 0.05944773554801941,
- -0.02673405595123768,
- 0.02505674585700035,
- 0.07282806187868118,
- 0.05465239658951759,
- -0.020610805600881577,
- -0.06410370767116547,
- 0.0692824125289917,
- -0.049793023616075516,
- 0.01623508706688881,
- -0.018257126212120056,
- -0.011225483380258083,
- 0.017980637028813362,
- -0.00791956763714552,
- -0.005810307338833809,
- 0.0015687489649280906,
- -0.02044844813644886,
- 0.03965657576918602,
- 0.05079488828778267,
- 0.04450336471199989,
- -0.01988210715353489,
- 0.009912370704114437,
- -0.07706610858440399,
- -0.03112933039665222,
- 0.03630131110548973,
- -0.03234213590621948,
- -0.0766260176897049,
- -0.03226996213197708,
- -0.06482048332691193,
- 0.020083416253328323,
- 0.04373621195554733,
- 0.003050382249057293,
- -0.05814020708203316,
- -0.03395358473062515,
- 0.042135074734687805,
- -0.053452812135219574,
- 0.006829984486103058,
- -0.06532688438892365,
- -0.06425181031227112,
- 0.08873173594474792,
- -0.01083298958837986,
- 0.03446917235851288,
- -0.039453957229852676,
- -1.2948417449365479e-8,
- -0.004096561577171087,
- -0.03537623956799507,
- 0.01952451281249523,
- -0.010567707940936089,
- -0.008906563743948936,
- 0.018931062892079353,
- -0.06391944736242294,
- 0.05906659737229347,
- 0.04528498277068138,
- -0.005948288831859827,
- -0.06944012641906738,
- 0.017591048032045364,
- -0.10367144644260406,
- 0.05332690477371216,
- 0.06229611858725548,
- -0.02252465859055519,
- 0.017824841663241386,
- 0.0406065471470356,
- -0.03768032416701317,
- -0.012165769003331661,
- 0.05216619372367859,
- 0.03788846731185913,
- 0.014576246961951256,
- 0.09896744787693024,
- 0.04209920018911362,
- -0.010005716234445572,
- 0.07880766689777374,
- 0.02389797940850258,
- -0.02345193736255169,
- 0.055678341537714005,
- 0.005384984891861677,
- 0.07420361042022705,
- 0.030613360926508904,
- 0.00012576484004966915,
- -0.031272634863853455,
- 0.01711474172770977,
- 0.0031953335274010897,
- 0.01331363432109356,
- 0.05310829356312752,
- 0.009343087673187256,
- -0.02027137763798237,
- -0.0019556633196771145,
- 0.06178031489253044,
- -0.07151283323764801,
- 0.010815219953656197,
- 0.030522242188453674,
- 0.00905179139226675,
- -0.06660549342632294,
- 0.045135412365198135,
- 0.03709420934319496,
- -0.05927123874425888,
- 0.025753837078809738,
- -0.009180325083434582,
- 0.021263008937239647,
- 0.06421750783920288,
- 0.07812407612800598,
- 0.04370473325252533,
- -0.10373716801404953,
- -0.027591058984398842,
- 0.061559781432151794,
- 0.06966546177864075,
- 0.04687374085187912,
- -0.026367630809545517,
- 0.05935925617814064
- ]
- },
- {
- "keyword": "program",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.024473100900650024,
- 0.03722376376390457,
- -0.04020264744758606,
- -0.01629558391869068,
- -0.03942364454269409,
- 0.003289243206381798,
- 0.0712980329990387,
- 0.06272777915000916,
- -0.050823092460632324,
- -0.02110876329243183,
- -0.039226848632097244,
- -0.010655737482011318,
- 0.04586584120988846,
- -0.03366980701684952,
- -0.030947964638471603,
- -0.026715870946645737,
- -0.025612492114305496,
- -0.015611818991601467,
- -0.023132499307394028,
- -0.0531708225607872,
- -0.009982306510210037,
- -0.028888754546642303,
- -0.04114546254277229,
- 0.007334140595048666,
- -0.01693873293697834,
- 0.07299520075321198,
- -0.0091174291446805,
- 0.028314506635069847,
- 0.01949547976255417,
- -0.07270900160074234,
- 0.010668609291315079,
- 0.03598872572183609,
- 0.1571681946516037,
- 0.03412018343806267,
- -0.024085011333227158,
- 0.07599098235368729,
- -0.022146834060549736,
- -0.04744739457964897,
- -0.03675566241145134,
- -0.006997482385486364,
- -0.13499736785888672,
- -0.05531506985425949,
- -0.0279957577586174,
- 0.003168942406773567,
- 0.009587278589606285,
- -0.030030690133571625,
- -0.02958507277071476,
- -0.006557411514222622,
- 0.019914688542485237,
- 0.037805378437042236,
- -0.1260114461183548,
- -0.028601257130503654,
- -0.01221389602869749,
- -0.042999785393476486,
- -0.04571203514933586,
- 0.031204136088490486,
- 0.08165916055440903,
- 0.01957118511199951,
- -0.021247146651148796,
- 0.006339309737086296,
- -0.009721253998577595,
- 0.002173337386921048,
- -0.11785940825939178,
- 0.04618537053465843,
- 0.05805231258273125,
- 0.014265568926930428,
- 0.013817688450217247,
- 0.011046883650124073,
- 0.06227165088057518,
- -0.12818863987922668,
- -0.07772903889417648,
- 0.014048284851014614,
- -0.036983050405979156,
- 0.06033964082598686,
- 0.013793799094855785,
- -0.07944440096616745,
- 0.03472532331943512,
- -0.01088335458189249,
- 0.03596765547990799,
- -0.055930543690919876,
- 0.0008898972300812602,
- -0.02336427941918373,
- -0.020542236045002937,
- 0.03733230382204056,
- 0.031550515443086624,
- 0.013762781396508217,
- 0.024851489812135696,
- 0.07656696438789368,
- 0.047431424260139465,
- 0.062417563050985336,
- -0.0760248601436615,
- 0.00035796116571873426,
- -0.00176015286706388,
- 0.008338606916368008,
- -0.037200409919023514,
- 0.08448522537946701,
- 0.03481883183121681,
- -0.11374315619468689,
- -0.04993095248937607,
- 0.2553258538246155,
- -0.014476639218628407,
- 0.021163076162338257,
- 0.07880328595638275,
- -0.060909755527973175,
- -0.0007441980415023863,
- -0.11504436284303665,
- 0.039965998381376266,
- 0.00018419801199343055,
- 0.020305883139371872,
- -0.06529057770967484,
- 0.009116491302847862,
- -0.05480263754725456,
- 0.004981478210538626,
- 0.00348461652174592,
- 0.03991379588842392,
- 0.06424973160028458,
- -0.03382178023457527,
- 0.06454534083604813,
- -0.007103653158992529,
- 0.024667227640748024,
- 0.015109259635210037,
- -0.0035814514849334955,
- -0.008495368994772434,
- -0.01723746955394745,
- -0.05913286283612251,
- -0.07704407721757889,
- -0.013028597459197044,
- -6.65336488189535e-33,
- -0.027789529412984848,
- -0.06785627454519272,
- 0.0018006390891969204,
- 0.05027162283658981,
- -0.02928898110985756,
- -0.030630704015493393,
- 0.043225761502981186,
- 0.044924743473529816,
- -0.08288537710905075,
- -0.012239603325724602,
- 0.03103518672287464,
- -0.013757863081991673,
- -0.013158833608031273,
- 0.13544735312461853,
- 0.16055935621261597,
- -0.03287951275706291,
- 0.020765742287039757,
- 0.06758252531290054,
- -0.04760662838816643,
- -0.047695260494947433,
- -0.0032323445193469524,
- 0.008328049443662167,
- 0.00913154799491167,
- 0.03446280583739281,
- 0.04402344301342964,
- -0.005114702507853508,
- -0.014991110190749168,
- -0.014052641578018665,
- 0.046784210950136185,
- 0.012748869135975838,
- 0.07935439795255661,
- 0.05159622058272362,
- -0.03858101740479469,
- -0.024660328403115273,
- 0.03905525431036949,
- -0.0022680116817355156,
- 0.008633304387331009,
- -0.030359208583831787,
- 0.06595253944396973,
- -0.04489367455244064,
- 0.008726011961698532,
- -0.00506322318688035,
- 0.08032736927270889,
- -0.01276943925768137,
- 0.05388331040740013,
- -0.002105449791997671,
- 0.04813835397362709,
- 0.06327428668737411,
- -0.07429712265729904,
- 0.04784068837761879,
- 0.007206177804619074,
- 0.01792163960635662,
- -0.010003962554037571,
- -0.01232963241636753,
- -0.022084571421146393,
- 0.021956084296107292,
- -0.02702847309410572,
- -0.0033602635376155376,
- 0.03140396624803543,
- -0.0037129439879208803,
- 0.08802127838134766,
- 0.13783647119998932,
- 0.06235945224761963,
- -0.016229921951889992,
- -0.00872133206576109,
- -0.016129855066537857,
- -0.018821654841303825,
- -0.03430801257491112,
- 0.08920885622501373,
- 0.10484780371189117,
- -0.132666677236557,
- -0.019807633012533188,
- 0.0844871774315834,
- -0.022620562463998795,
- -0.010727979242801666,
- -0.019397497177124023,
- 0.007058680988848209,
- 0.0007523154490627348,
- -0.0800817459821701,
- -0.023689307272434235,
- -0.026533693075180054,
- -0.027881337329745293,
- -0.016686640679836273,
- -0.018519576638936996,
- 0.031242959201335907,
- 0.001636906643398106,
- -0.003391395788639784,
- -0.06073252856731415,
- 0.02814292535185814,
- 0.023696808144450188,
- -0.048368290066719055,
- -0.006437521427869797,
- -0.0001857319293776527,
- 0.12096388638019562,
- 0.020990589633584023,
- 4.447556344733051e-33,
- 0.0005332810687832534,
- 0.046828366816043854,
- 0.0005582668818533421,
- -0.005989912897348404,
- -0.014649907127022743,
- 0.013071984052658081,
- 0.020100489258766174,
- -0.04377803951501846,
- -0.05944953113794327,
- 0.07392749190330505,
- -0.0373777411878109,
- -0.008367297239601612,
- 0.05319621041417122,
- 0.008408603258430958,
- 0.00016477511962875724,
- 0.020433060824871063,
- 0.052224259823560715,
- 0.03860802948474884,
- -0.05513691529631615,
- 0.04883037507534027,
- -0.0418708473443985,
- 0.012941766530275345,
- -0.0714910551905632,
- -0.029541848227381706,
- -0.0011347295949235559,
- -0.017322923988103867,
- 0.09160710126161575,
- 0.045249246060848236,
- 0.013694878667593002,
- 0.03646845370531082,
- 0.021343931555747986,
- -0.058249518275260925,
- -0.12825153768062592,
- 0.019018566235899925,
- -0.014523345977067947,
- -0.01616511680185795,
- 0.12049874663352966,
- -0.02059680037200451,
- -0.07337060570716858,
- -0.04045823588967323,
- 0.1541476547718048,
- -0.03854094445705414,
- -0.023335620760917664,
- 0.1711835414171219,
- -0.002932940376922488,
- 0.022531092166900635,
- -0.054437413811683655,
- 0.005508427508175373,
- -0.017988553270697594,
- -0.00588732585310936,
- -0.053897175937891006,
- -0.01990269124507904,
- 0.020742420107126236,
- -0.10222534090280533,
- -0.002779987407848239,
- -0.03226892277598381,
- 0.05214531347155571,
- 0.007241905201226473,
- -0.00888801645487547,
- -0.02752748504281044,
- -0.0687546581029892,
- -0.04691644385457039,
- 0.005018463358283043,
- -0.03643206134438515,
- -0.061037350445985794,
- 0.020292604342103004,
- -0.030330559238791466,
- 0.009309173561632633,
- 0.016772888600826263,
- 0.02367207780480385,
- 0.04933822900056839,
- 0.07222368568181992,
- -0.016015462577342987,
- -0.019289692863821983,
- -0.06926433742046356,
- 0.047366995364427567,
- -0.09401334822177887,
- -0.016667425632476807,
- -0.10761476308107376,
- -0.008068234659731388,
- 0.04085482656955719,
- -0.03132665529847145,
- 0.023035846650600433,
- 0.04769161343574524,
- -0.037352919578552246,
- 0.009378631599247456,
- 0.043775979429483414,
- 0.012498102150857449,
- -0.013725600205361843,
- 0.013371112756431103,
- -0.028589706867933273,
- 0.08854226768016815,
- 0.028105759993195534,
- -0.005412159953266382,
- -0.043254952877759933,
- -1.2589050690792192e-8,
- 0.01269678957760334,
- -0.06998291611671448,
- 0.07520725578069687,
- -0.00335221947170794,
- 0.0488709881901741,
- 0.08658524602651596,
- -0.0621604323387146,
- -0.026064423844218254,
- -0.01267743669450283,
- -0.03896300867199898,
- -0.007220577448606491,
- 0.012486782856285572,
- -0.007826868444681168,
- 0.042726729065179825,
- 0.07351761311292648,
- -0.0404663123190403,
- 0.013497600331902504,
- 0.031447261571884155,
- -0.02798200584948063,
- 0.022749336436390877,
- 0.04698576405644417,
- 0.0004374512063805014,
- 0.051142431795597076,
- 0.11591741442680359,
- -0.009639096446335316,
- -0.06174508482217789,
- 0.03784167766571045,
- 0.11397279798984528,
- -0.00653906911611557,
- -0.0017303290078416467,
- 0.03912854939699173,
- 0.0368916392326355,
- 0.003365247743204236,
- -0.04460040479898453,
- 0.04127557948231697,
- -0.014973166398704052,
- -0.013526629656553268,
- 0.007171200588345528,
- 0.018794620409607887,
- -0.08757970482110977,
- 0.0012644636444747448,
- 0.01611669547855854,
- 0.025122856721282005,
- -0.03865370154380798,
- 0.003469759365543723,
- 0.0007876491290517151,
- -0.003158730221912265,
- -0.0903862789273262,
- 0.019701726734638214,
- -0.00855502299964428,
- -0.060845181345939636,
- 0.02291341871023178,
- 0.013584517873823643,
- 0.034822382032871246,
- 0.10773099958896637,
- 0.05584324151277542,
- -0.045133400708436966,
- -0.06725344806909561,
- -0.0880265161395073,
- 0.09730706363916397,
- 0.013323790393769741,
- 0.035572491586208344,
- 0.05523866042494774,
- -0.04546872526407242
- ]
- },
- {
- "keyword": "tool",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.08421479165554047,
- 0.01749761588871479,
- -0.06506342440843582,
- 0.03367482125759125,
- -0.06521885842084885,
- -0.04835887625813484,
- 0.09595698863267899,
- -0.018867723643779755,
- 0.04121842980384827,
- 0.0025209011510014534,
- 0.02039487101137638,
- -0.03125318884849548,
- 0.001169864321127534,
- -0.01487510371953249,
- -0.04970267042517662,
- 0.0063475011847913265,
- -0.00007717262633377686,
- -0.019018974155187607,
- -0.018206404522061348,
- -0.022595103830099106,
- -0.09097836911678314,
- 0.05393866077065468,
- -0.01266341283917427,
- 0.005337324924767017,
- 0.014124894514679909,
- 0.017117487266659737,
- -0.030262380838394165,
- 0.025471949949860573,
- -0.000011743900358851533,
- -0.07917333394289017,
- 0.015050278976559639,
- -0.013419044204056263,
- -0.061017848551273346,
- 0.0019772755913436413,
- 0.015476851724088192,
- 0.02862786129117012,
- 0.023009397089481354,
- 0.02426016703248024,
- 0.007462163455784321,
- -0.03781561180949211,
- -0.04127207025885582,
- -0.05921521037817001,
- 0.02213510498404503,
- -0.0786680206656456,
- 0.005886688828468323,
- -0.033391185104846954,
- -0.025639081373810768,
- -0.028456099331378937,
- 0.05924747511744499,
- 0.0620843768119812,
- -0.067769855260849,
- -0.0626116618514061,
- -0.009047525003552437,
- -0.0033572984393686056,
- 0.0401734933257103,
- 0.017483128234744072,
- 0.04652034863829613,
- 0.003604298224672675,
- 0.013962826691567898,
- 0.02883782610297203,
- 0.06333841383457184,
- 0.030052317306399345,
- -0.12450607866048813,
- 0.0882745161652565,
- -0.01841266080737114,
- 0.012242646887898445,
- 0.019914526492357254,
- -0.07636905461549759,
- -0.03311460092663765,
- -0.04533505439758301,
- -0.019062645733356476,
- 0.021941332146525383,
- -0.015289402566850185,
- 0.07869139313697815,
- 0.09135295450687408,
- -0.05696800351142883,
- -0.0007868736865930259,
- 0.02662665769457817,
- 0.06348643451929092,
- -0.03431032970547676,
- -0.026481641456484795,
- 0.04572340101003647,
- -0.006190843414515257,
- 0.08391799032688141,
- 0.05624882131814957,
- 0.07284891605377197,
- 0.051812976598739624,
- -0.005812497343868017,
- 0.025614222511649132,
- 0.028489671647548676,
- -0.04935974255204201,
- 0.03549730032682419,
- 0.018607769161462784,
- 0.011228292249143124,
- -0.024281298741698265,
- -0.024224059656262398,
- 0.014993262477219105,
- -0.037039726972579956,
- -0.08688086271286011,
- 0.2733714282512665,
- -0.016608649864792824,
- -0.02270233817398548,
- 0.006060210522264242,
- -0.1073470413684845,
- -0.025661082938313484,
- 0.014958814717829227,
- -0.06467975676059723,
- -0.000892620359081775,
- -0.020939765498042107,
- 0.01810315065085888,
- -0.01270991936326027,
- -0.02155553549528122,
- -0.05708799883723259,
- -0.021273532882332802,
- 0.06673983484506607,
- -0.06570500880479813,
- -0.044543445110321045,
- -0.0004183072014711797,
- -0.020627735182642937,
- -0.00849983375519514,
- 0.01949247345328331,
- 0.039812829345464706,
- -0.09564035385847092,
- 0.006711130030453205,
- 0.011680485680699348,
- 0.00043221734813414514,
- 0.06788215786218643,
- -6.075279902705981e-33,
- 0.048545368015766144,
- -0.022229520604014397,
- 0.019194690510630608,
- 0.040529098361730576,
- -0.031888093799352646,
- 0.06927520781755447,
- 0.00519122090190649,
- -0.014782872051000595,
- -0.056333161890506744,
- 0.024922611191868782,
- -0.029435016214847565,
- 0.03523245453834534,
- -0.08601535856723785,
- 0.00754042761400342,
- 0.1627352386713028,
- -0.040042195469141006,
- 0.04157234728336334,
- 0.08179600536823273,
- -0.0351620651781559,
- -0.02694975771009922,
- -0.024740222841501236,
- 0.001739664003252983,
- -0.03608575090765953,
- 0.08908933401107788,
- 0.013162987306714058,
- 0.029268475249409676,
- 0.056200165301561356,
- -0.04211531952023506,
- 0.055090971291065216,
- 0.03793547302484512,
- -0.04757964238524437,
- 0.013452589511871338,
- 0.03251546621322632,
- 0.016231779009103775,
- -0.013861273415386677,
- 0.04795728251338005,
- -0.01701435074210167,
- -0.06775135546922684,
- -0.012737986631691456,
- 0.005228511057794094,
- -0.002761418465524912,
- 0.005721988622099161,
- -0.017572958022356033,
- -0.0780954658985138,
- -0.014410967007279396,
- 0.009496266953647137,
- -0.006027921102941036,
- 0.06668110191822052,
- 0.026179390028119087,
- 0.05476528778672218,
- -0.005828867666423321,
- 0.026468252763152122,
- 0.1224166601896286,
- 0.0346473753452301,
- -0.0822005420923233,
- 0.0324527733027935,
- 0.005214833188802004,
- 0.019103286787867546,
- 0.03621941804885864,
- 0.05862686410546303,
- 0.022026807069778442,
- 0.07676363736391068,
- -0.01693296618759632,
- 0.036867834627628326,
- 0.08727989345788956,
- -0.03744690492749214,
- 0.0814657136797905,
- 0.020209137350320816,
- 0.058940380811691284,
- 0.007996113039553165,
- -0.11829034984111786,
- -0.03704817593097687,
- 0.07674279063940048,
- 0.022425485774874687,
- -0.017380673438310623,
- -0.041258081793785095,
- 0.026316165924072266,
- 0.02464309334754944,
- -0.01668880321085453,
- -0.047076813876628876,
- -0.05544541776180267,
- -0.027506127953529358,
- 0.005035409238189459,
- -0.05819091945886612,
- 0.0179111510515213,
- 0.0024132367689162493,
- -0.0361039936542511,
- -0.08146557956933975,
- 0.04648299887776375,
- 0.022995635867118835,
- -0.09793390333652496,
- -0.027190526947379112,
- -0.07005797326564789,
- 0.10022155940532684,
- -0.05233445763587952,
- 5.6084683207914036e-33,
- -0.04784470424056053,
- -0.03210580348968506,
- -0.003989593591541052,
- 0.16930930316448212,
- 0.006678941193968058,
- -0.025896945968270302,
- -0.05467276647686958,
- -0.008724687620997429,
- -0.04795801639556885,
- -0.026227930560708046,
- -0.007276210002601147,
- -0.0019744921009987593,
- 0.0706959217786789,
- -0.015765976160764694,
- 0.156045064330101,
- 0.00848651584237814,
- -0.012336915358901024,
- -0.09135137498378754,
- 0.0007827547960914671,
- 0.015292222611606121,
- -0.038118552416563034,
- -0.05126180127263069,
- -0.007185002323240042,
- -0.050829026848077774,
- -0.05369335412979126,
- -0.010258586145937443,
- 0.01765885390341282,
- -0.030626941472291946,
- -0.05923118069767952,
- 0.028684694319963455,
- 0.07612529397010803,
- -0.06900530308485031,
- -0.039166390895843506,
- -0.020016081631183624,
- -0.02074800431728363,
- 0.06368634104728699,
- 0.1066298708319664,
- 0.022633021697402,
- -0.027698732912540436,
- -0.029177937656641006,
- -0.003492599120363593,
- 0.029171308502554893,
- -0.07622445374727249,
- 0.08156146109104156,
- -0.012546942569315434,
- 0.09418775886297226,
- -0.01803617738187313,
- 0.06576914340257645,
- -0.02241767942905426,
- 0.08276918530464172,
- -0.02908393368124962,
- 0.04499048367142677,
- 0.055803198367357254,
- -0.07375017553567886,
- -0.03465297445654869,
- -0.033379215747117996,
- -0.032527629286050797,
- -0.0913868248462677,
- -0.031162573024630547,
- 0.01782945729792118,
- -0.029237395152449608,
- 0.000432648288551718,
- -0.030582334846258163,
- 0.08159031718969345,
- 0.019512038677930832,
- -0.0021253274753689766,
- 0.03087855502963066,
- -0.0005061812116764486,
- -0.10582457482814789,
- 0.03876699134707451,
- 0.08823812752962112,
- 0.062225282192230225,
- 0.07491954416036606,
- -0.04062908887863159,
- 0.004878259263932705,
- -0.03247124329209328,
- -0.09201480448246002,
- -0.08945164084434509,
- -0.05329013615846634,
- -0.021771738305687904,
- 0.08768624812364578,
- -0.07021887600421906,
- 0.0681823268532753,
- -0.0003030917141586542,
- -0.07712431997060776,
- 0.006170547101646662,
- -0.030353136360645294,
- 0.0803631991147995,
- 0.006547724362462759,
- 0.0049385204911231995,
- -0.01080654002726078,
- -0.0007360571180470288,
- -0.03133365511894226,
- 0.047462016344070435,
- -0.014429599978029728,
- -1.2896339995904782e-8,
- 0.04095109924674034,
- 0.018346354365348816,
- 0.011118199676275253,
- 0.002797597786411643,
- 0.015392600558698177,
- 0.039133306592702866,
- -0.03877490386366844,
- 0.09984761476516724,
- -0.026798447594046593,
- 0.051192302256822586,
- 0.06547422707080841,
- -0.06729772686958313,
- -0.03851878643035889,
- 0.10962419956922531,
- 0.010278844274580479,
- -0.04242667928338051,
- -0.02444753237068653,
- 0.03446462005376816,
- -0.05400947481393814,
- -0.057121239602565765,
- 0.030425630509853363,
- -0.0015248823910951614,
- 0.058872662484645844,
- -0.02532554417848587,
- 0.026564473286271095,
- -0.05574685335159302,
- -0.11235617101192474,
- 0.1106443852186203,
- 0.021438343450427055,
- 0.03173603117465973,
- 0.003920088987797499,
- 0.06199120730161667,
- -0.021576130762696266,
- -0.006331617943942547,
- 0.05455122888088226,
- -0.0036191195249557495,
- -0.03629085794091225,
- 0.06181981414556503,
- 0.015453629195690155,
- 0.0760468915104866,
- 0.031009741127490997,
- 0.0751318633556366,
- -0.013904377818107605,
- -0.07157786190509796,
- -0.08542127907276154,
- 0.012733069248497486,
- 0.01775095798075199,
- -0.042670026421546936,
- -0.017639948055148125,
- -0.018123021349310875,
- -0.04525362327694893,
- 0.05070871487259865,
- 0.04308496043086052,
- 0.04479709640145302,
- 0.04698789864778519,
- 0.0333685427904129,
- 0.04338536784052849,
- -0.021579047664999962,
- -0.07598000764846802,
- 0.07606031745672226,
- 0.03594058007001877,
- -0.018210722133517265,
- 0.05223558098077774,
- 0.030995363369584084
- ]
- },
- {
- "keyword": "platform",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.017618954181671143,
- -0.000494805455673486,
- -0.03769693151116371,
- -0.08193505555391312,
- 0.03528042882680893,
- -0.03184843808412552,
- 0.06067069247364998,
- 0.08787256479263306,
- -0.009120741859078407,
- 0.0031089051626622677,
- -0.01833239570260048,
- 0.003142140805721283,
- -0.02598089911043644,
- -0.010567951947450638,
- 0.04095066338777542,
- 0.020862767472863197,
- -0.017727447673678398,
- 0.04825572296977043,
- -0.031197847798466682,
- 0.017296580597758293,
- -0.09012456238269806,
- -0.020854556933045387,
- -0.013010352849960327,
- 0.03472353518009186,
- -0.012083519250154495,
- 0.03113163262605667,
- -0.0941743478178978,
- 0.03205115720629692,
- 0.06246081367135048,
- -0.0838278979063034,
- 0.02479405328631401,
- -0.027456950396299362,
- 0.02671477012336254,
- 0.07683078944683075,
- -0.03152560070157051,
- 0.012832855805754662,
- 0.018323469907045364,
- -0.1226036548614502,
- -0.132984921336174,
- -0.07547654956579208,
- -0.030797159299254417,
- -0.021275730803608894,
- -0.05577555298805237,
- 0.08421730250120163,
- 0.04891528561711311,
- 0.059545695781707764,
- 0.00020799750927835703,
- 0.00043855959665961564,
- 0.043149109929800034,
- 0.04279320314526558,
- -0.04859296604990959,
- -0.060724347829818726,
- 0.02268967591226101,
- -0.011120106093585491,
- -0.061739567667245865,
- -0.022397620603442192,
- 0.001201875158585608,
- 0.04319409653544426,
- 0.03171839192509651,
- -0.03753110393881798,
- -0.002522852970287204,
- 0.005036503542214632,
- -0.09246624261140823,
- 0.09093885868787766,
- 0.0304932352155447,
- 0.06277177482843399,
- 0.00200613378547132,
- -0.004848812241107225,
- 0.01390050444751978,
- -0.09161935746669769,
- -0.030592259019613266,
- -0.05289309844374657,
- -0.023238476365804672,
- 0.046630069613456726,
- -0.06340433657169342,
- 0.004987386055290699,
- 0.026800069957971573,
- -0.03262212127447128,
- 0.0467996671795845,
- 0.03460371121764183,
- 0.04392988979816437,
- 0.05493398755788803,
- -0.08370593190193176,
- 0.03323780372738838,
- 0.032132431864738464,
- -0.03832146152853966,
- -0.0647917091846466,
- 0.029857303947210312,
- -0.035286251455545425,
- -0.018681570887565613,
- 0.007291822228580713,
- 0.024006610736250877,
- 0.14947958290576935,
- -0.0005271132104098797,
- -0.10156313329935074,
- 0.018146758899092674,
- 0.05871749669313431,
- -0.09217465668916702,
- -0.01119664590805769,
- 0.26969414949417114,
- -0.051479872316122055,
- 0.022669803351163864,
- -0.008990597911179066,
- 0.07617367058992386,
- 0.03208116814494133,
- 0.0030330370645970106,
- -0.02496614120900631,
- 0.040478143841028214,
- -0.009595097973942757,
- -0.020229540765285492,
- -0.04569437354803085,
- -0.0578545443713665,
- -0.09144075214862823,
- 0.006170644424855709,
- 0.0782184824347496,
- 0.015579842031002045,
- -0.07348942011594772,
- 0.05806172639131546,
- 0.06287490576505661,
- -0.026013385504484177,
- 0.026151413097977638,
- -0.03888051584362984,
- -0.039401378482580185,
- -0.01795634999871254,
- -0.0010257288813591003,
- -0.026314783841371536,
- 0.0016539543867111206,
- -4.611995514785612e-33,
- 0.017365673556923866,
- -0.033011093735694885,
- 0.06235994026064873,
- 0.011458438821136951,
- 0.03629869595170021,
- -0.01133631356060505,
- 0.030391057953238487,
- 0.0036471644416451454,
- -0.06977414339780807,
- 0.09488895535469055,
- -0.017599400132894516,
- 0.008926209062337875,
- 0.007539035752415657,
- 0.0077324556186795235,
- 0.18571634590625763,
- -0.08238736540079117,
- 0.05204012617468834,
- 0.06794819980859756,
- 0.032952286303043365,
- 0.06775205582380295,
- -0.01805761083960533,
- -0.014064105227589607,
- 0.010105862282216549,
- -0.00659693218767643,
- 0.059281785041093826,
- -0.07786424458026886,
- -0.05338475853204727,
- -0.07050952315330505,
- 0.0946585088968277,
- 0.011853938922286034,
- -0.07798681408166885,
- 0.03135640174150467,
- -0.05105280131101608,
- 0.04485016688704491,
- -0.01831202022731304,
- -0.08681724965572357,
- 0.00337186804972589,
- -0.1174715980887413,
- 0.024360688403248787,
- 0.03781198710203171,
- -0.09234160929918289,
- 0.00894410815089941,
- 0.033558301627635956,
- -0.02714185230433941,
- 0.05643302574753761,
- 0.016103249043226242,
- 0.04833348095417023,
- 0.00021127624495420605,
- 0.0006878199055790901,
- -0.015951231122016907,
- -0.0035194153897464275,
- 0.04464321956038475,
- -0.003467125818133354,
- 0.021749256178736687,
- 0.04401194304227829,
- -0.04724157601594925,
- -0.045605357736349106,
- 0.005883419886231422,
- -0.024600151926279068,
- 0.026673899963498116,
- 0.07225813716650009,
- 0.045784927904605865,
- 0.012488944455981255,
- -0.058307893574237823,
- -0.023896798491477966,
- -0.032643675804138184,
- 0.03943159431219101,
- -0.046750690788030624,
- 0.04670172929763794,
- 0.025195632129907608,
- -0.020859822630882263,
- -0.04864884912967682,
- 0.10264531522989273,
- 0.0673699826002121,
- -0.017276063561439514,
- 0.011812149547040462,
- -0.04158759117126465,
- 0.02265208028256893,
- -0.08087087422609329,
- 0.009622913785278797,
- -0.041901469230651855,
- 0.010933144018054008,
- -0.01776149310171604,
- 0.04209689050912857,
- 0.017515879124403,
- 0.005846213549375534,
- -0.004821204114705324,
- -0.12556901574134827,
- 0.011397485621273518,
- 0.03232328221201897,
- -0.10687708109617233,
- -0.021881133317947388,
- 0.027034709230065346,
- 0.07081008702516556,
- -0.06807166337966919,
- 4.1736430184464264e-33,
- -0.06556525826454163,
- -0.08610282093286514,
- -0.02579745464026928,
- 0.017393840476870537,
- -0.010244736447930336,
- -0.0016250305343419313,
- -0.002414247952401638,
- -0.0528547540307045,
- -0.03128908947110176,
- 0.06789248436689377,
- -0.035700391978025436,
- -0.024779025465250015,
- 0.10664976388216019,
- 0.01402283739298582,
- -0.026203354820609093,
- 0.06429377943277359,
- 0.006712217815220356,
- -0.02547875978052616,
- 0.002187213161960244,
- 0.001937849330715835,
- -0.04113427922129631,
- 0.03074975684285164,
- -0.0026132024358958006,
- 0.01586288772523403,
- 0.06434768438339233,
- -0.01075240783393383,
- 0.001208529225550592,
- -0.0693218857049942,
- 0.06826827675104141,
- 0.010808140970766544,
- -0.0014514541253447533,
- -0.00787604134529829,
- -0.02165156975388527,
- -0.02652767300605774,
- 0.11193417012691498,
- 0.08117661625146866,
- 0.011871120892465115,
- -0.011750802397727966,
- -0.0437471829354763,
- -0.025667252019047737,
- 0.08554654568433762,
- -0.05001247674226761,
- -0.05735989287495613,
- 0.0927765890955925,
- 0.014459238387644291,
- 0.028579525649547577,
- -0.055216558277606964,
- 0.07745173573493958,
- 0.08203550428152084,
- -0.03414499759674072,
- -0.020760223269462585,
- 0.027840211987495422,
- 0.05258920416235924,
- -0.07353454828262329,
- -0.04142417013645172,
- -0.0018807260785251856,
- -0.022035107016563416,
- 0.008457929827272892,
- -0.036613453179597855,
- -0.017575956881046295,
- 0.08064626902341843,
- -0.049003567546606064,
- -0.1112002283334732,
- 0.010431447066366673,
- 0.019094469025731087,
- -0.01873590238392353,
- -0.03272942453622818,
- 0.05036400258541107,
- -0.07594341039657593,
- 0.039763886481523514,
- 0.02064475230872631,
- -0.025788845494389534,
- -0.009194329380989075,
- 0.07801007479429245,
- -0.05134721100330353,
- -0.007567357737571001,
- -0.0368381068110466,
- -0.031463027000427246,
- 0.03605421632528305,
- -0.011964770033955574,
- -0.04031962901353836,
- 0.04024834558367729,
- 0.01955457404255867,
- 0.04100022464990616,
- -0.038005053997039795,
- -0.01586882211267948,
- 0.028494756668806076,
- 0.01795618236064911,
- -0.00763707933947444,
- -0.0241635050624609,
- 0.02659796178340912,
- 0.0012230416759848595,
- -0.019172202795743942,
- 0.10034272074699402,
- 0.025883873924613,
- -1.1388615384078093e-8,
- 0.11325693130493164,
- 0.03038736991584301,
- -0.0057782335206866264,
- 0.005375996232032776,
- 0.019115174189209938,
- 0.03184443339705467,
- 0.05024111643433571,
- -0.04542425274848938,
- -0.02086484432220459,
- 0.11718039959669113,
- -0.051302388310432434,
- -0.007937338203191757,
- 0.009780633263289928,
- 0.04687884822487831,
- 0.06334290653467178,
- 0.07360263913869858,
- -0.018721023574471474,
- 0.039518456906080246,
- -0.030348975211381912,
- 0.03861246630549431,
- 0.11306624859571457,
- 0.02020365372300148,
- -0.009834034368395805,
- -0.04958435893058777,
- -0.07067087292671204,
- -0.05645079165697098,
- 0.05936460942029953,
- 0.0937601700425148,
- -0.003034951165318489,
- 0.02562127634882927,
- -0.01500596571713686,
- -0.036721643060445786,
- -0.05651578679680824,
- 0.01610497571527958,
- 0.0672466903924942,
- 0.022851677611470222,
- -0.047862835228443146,
- 0.025752393528819084,
- 0.019208654761314392,
- -0.03140595555305481,
- -0.09241051226854324,
- -0.043136198073625565,
- 0.0179115142673254,
- -0.0143640898168087,
- -0.06256720423698425,
- -0.008730767294764519,
- -0.06329183280467987,
- -0.006748015992343426,
- -0.004441830329596996,
- -0.04840213805437088,
- 0.025233305990695953,
- 0.0001434084988432005,
- 0.021587831899523735,
- 0.0051896399818360806,
- 0.10816381126642227,
- 0.01680522970855236,
- 0.014478303492069244,
- -0.033269841223955154,
- 0.016855858266353607,
- 0.06364741921424866,
- 0.11904069036245346,
- 0.009919979609549046,
- 0.04224766418337822,
- -0.02123338170349598
- ]
- },
- {
- "keyword": "system",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04804253205657005,
- 0.07052012532949448,
- -0.09939128905534744,
- -0.048456497490406036,
- -0.004825811833143234,
- -0.03239765763282776,
- 0.11059089004993439,
- 0.08133763074874878,
- 0.058603182435035706,
- 0.020280856639146805,
- 0.02517606131732464,
- -0.003303453791886568,
- 0.08911682665348053,
- -0.02918822132050991,
- -0.052229344844818115,
- -0.03348337858915329,
- 0.0067290510050952435,
- -0.06933732330799103,
- -0.044993795454502106,
- 0.004126580432057381,
- -0.07872600108385086,
- 0.0064659020863473415,
- -0.11797836422920227,
- 0.0693058893084526,
- -0.059126365929841995,
- 0.10530923306941986,
- -0.0393461212515831,
- 0.00612466037273407,
- -0.03400775045156479,
- -0.14782020449638367,
- -0.02493816427886486,
- -0.010562470182776451,
- 0.11073127388954163,
- -0.0896906852722168,
- -0.04358872026205063,
- -0.04711110517382622,
- 0.08047277480363846,
- -0.06497182697057724,
- -0.013284562155604362,
- -0.027099648490548134,
- -0.06766680628061295,
- -0.03580647334456444,
- 0.03101237304508686,
- 0.03804454207420349,
- -0.007066130638122559,
- 0.04148230329155922,
- -0.009098730981349945,
- 0.03852000832557678,
- 0.06776927411556244,
- -0.05013091862201691,
- -0.0890447199344635,
- -0.030241509899497032,
- 0.028653036803007126,
- 0.08106780797243118,
- 0.04062892124056816,
- -0.007014133967459202,
- -0.017368869855999947,
- 0.04417673125863075,
- -0.09235745668411255,
- -0.06319361925125122,
- 0.0007062588701955974,
- 0.002215281128883362,
- -0.08992739021778107,
- 0.031980227679014206,
- 0.10683289915323257,
- 0.059817492961883545,
- -0.03644360974431038,
- 0.030069822445511818,
- -0.052564773708581924,
- -0.03735963627696037,
- -0.04983130842447281,
- 0.08308718353509903,
- 0.06823724508285522,
- 0.05129794031381607,
- 0.014187687076628208,
- 0.028765754774212837,
- 0.009861539117991924,
- -0.0396554060280323,
- 0.07295224070549011,
- 0.024572553113102913,
- 0.019418807700276375,
- 0.04645807296037674,
- -0.05502999573945999,
- 0.04708480462431908,
- 0.04085807129740715,
- -0.000019301203792565502,
- -0.09122442454099655,
- 0.01158393919467926,
- -0.00020864146063104272,
- -0.049292925745248795,
- -0.0012577376328408718,
- -0.01975957117974758,
- 0.12966974079608917,
- -0.04198060929775238,
- -0.02572857402265072,
- 0.005766521207988262,
- 0.07260875403881073,
- -0.0459686741232872,
- 0.00539303757250309,
- 0.25485607981681824,
- 0.01514044962823391,
- 0.03210664168000221,
- 0.04661276564002037,
- 0.030707253143191338,
- 0.03186791390180588,
- -0.0016594196204096079,
- -0.05305364355444908,
- 0.08469384163618088,
- 0.005622586701065302,
- -0.08533746749162674,
- -0.03589656203985214,
- -0.049090251326560974,
- -0.042022477835416794,
- 0.062213122844696045,
- 0.035579416900873184,
- -0.017633918672800064,
- -0.004383724648505449,
- 0.005949448794126511,
- 0.02766950987279415,
- -0.06134377047419548,
- 0.04080255329608917,
- -0.0225845780223608,
- -0.017933722585439682,
- -0.0054674698039889336,
- -0.025805983692407608,
- 0.024800853803753853,
- 0.050400201231241226,
- -6.114678799925698e-33,
- -0.08255211263895035,
- -0.027584780007600784,
- 0.06439772248268127,
- 0.04065227508544922,
- -0.063375324010849,
- -0.0029142890125513077,
- -0.010417189449071884,
- -0.004847682546824217,
- -0.047253064811229706,
- 0.07899568229913712,
- -0.07583126425743103,
- -0.010214289650321007,
- 0.00524149788543582,
- 0.004682369064539671,
- 0.13029243052005768,
- -0.022637972608208656,
- 0.042246975004673004,
- -0.0043534692376852036,
- -0.02900656871497631,
- -0.027599500492215157,
- -0.011085692793130875,
- 0.06735540181398392,
- -0.006720386911183596,
- -0.05188996344804764,
- 0.03264452517032623,
- -0.005626874044537544,
- -0.03658333793282509,
- -0.05293629318475723,
- -0.018452579155564308,
- 0.0012722229585051537,
- 0.0686124935746193,
- 0.0667935311794281,
- -0.02845250628888607,
- 0.005345058627426624,
- -0.05755434185266495,
- 0.009806248359382153,
- 0.10457097738981247,
- -0.04282185435295105,
- 0.023155294358730316,
- -0.08397108316421509,
- 0.012018797919154167,
- -0.011636246927082539,
- -0.0544208325445652,
- 0.008061463013291359,
- 0.04083087667822838,
- 0.0418199747800827,
- 0.02563312090933323,
- 0.01623610407114029,
- -0.01459736842662096,
- 0.052552301436662674,
- 0.012311575002968311,
- 0.016362302005290985,
- -0.026628611609339714,
- 0.006796345114707947,
- 0.021573690697550774,
- -0.03933878242969513,
- -0.012038316577672958,
- -0.012279321439564228,
- -0.01615118607878685,
- 0.06470824033021927,
- 0.056432660669088364,
- -0.03473390266299248,
- 0.08402347564697266,
- -0.016790924593806267,
- 0.0049895308911800385,
- -0.01685149222612381,
- 0.003690524259582162,
- -0.10789626836776733,
- 0.012532457709312439,
- 0.02778732031583786,
- -0.09911058843135834,
- -0.064857617020607,
- 0.10498613119125366,
- 0.11249297857284546,
- 0.019349513575434685,
- 0.0010792665416374803,
- 0.03191234916448593,
- 0.009753299877047539,
- -0.10088200122117996,
- 0.05268142744898796,
- -0.04193456470966339,
- -0.0741005465388298,
- -0.02439776435494423,
- 0.07290089130401611,
- 0.08471887558698654,
- 0.009931971319019794,
- -0.0613638199865818,
- -0.05819052830338478,
- -0.043831728398799896,
- -0.016108762472867966,
- -0.04202279448509216,
- -0.025516590103507042,
- -0.0025751653593033552,
- 0.11860258132219315,
- 0.008028934709727764,
- 4.61087401970653e-33,
- -0.031771495938301086,
- 0.006572087295353413,
- -0.054227545857429504,
- 0.01604492962360382,
- 0.08558359742164612,
- -0.006260031834244728,
- 0.0026662468444556,
- -0.005702489987015724,
- -0.08211175352334976,
- 0.0659426599740982,
- 0.02907591685652733,
- 0.03509954363107681,
- 0.05364781618118286,
- 0.033004436641931534,
- 0.042897745966911316,
- 0.04720735177397728,
- 0.0012204598169773817,
- -0.041374072432518005,
- -0.001149568473920226,
- 0.03013090044260025,
- -0.07196889072656631,
- 0.05799247324466705,
- -0.0038854649756103754,
- -0.043684374541044235,
- -0.030392827466130257,
- 0.044356562197208405,
- -0.0002541673893574625,
- 0.0029172077775001526,
- -0.005349352955818176,
- 0.010946541093289852,
- 0.02932271920144558,
- -0.07106433808803558,
- -0.04748054966330528,
- 0.062040526419878006,
- -0.018850430846214294,
- 0.0300845168530941,
- 0.024425853043794632,
- -0.008296070620417595,
- -0.07019616663455963,
- -0.04122686758637428,
- 0.06310807913541794,
- -0.025136273354291916,
- -0.02767561748623848,
- 0.10689982771873474,
- 0.0171535424888134,
- 0.011689276434481144,
- -0.029199454933404922,
- 0.0273504089564085,
- 0.05695051699876785,
- 0.0206378772854805,
- -0.046296194195747375,
- -0.07086488604545593,
- 0.0035305311903357506,
- -0.011923979967832565,
- 0.01897066831588745,
- -0.02540077082812786,
- 0.007163297384977341,
- 0.030885133892297745,
- -0.022374970838427544,
- -0.01629095897078514,
- -0.028979742899537086,
- -0.07143141329288483,
- -0.06587831676006317,
- -0.00614060228690505,
- 0.008011114783585072,
- -0.01555601041764021,
- -0.005301167722791433,
- 0.0246600154787302,
- 0.054962802678346634,
- 0.004610133823007345,
- 0.08670758455991745,
- 0.05165613815188408,
- 0.003937983885407448,
- 0.05529371649026871,
- 0.010364125482738018,
- -0.056499410420656204,
- -0.12335025519132614,
- -0.03852325305342674,
- 0.01217963919043541,
- -0.10859909653663635,
- -0.10861443728208542,
- -0.05577811598777771,
- 0.032245196402072906,
- -0.005081663373857737,
- -0.06823796778917313,
- -0.03129967302083969,
- 0.08292252570390701,
- 0.0003425812756177038,
- -0.015321430750191212,
- -0.024828869849443436,
- -0.013979585841298103,
- 0.02270626090466976,
- 0.025460198521614075,
- 0.0385378934442997,
- -0.014914565719664097,
- -1.2177141961444704e-8,
- 0.03666682541370392,
- 0.033561259508132935,
- -0.021733876317739487,
- 0.023742664605379105,
- -0.002157702809199691,
- 0.04937763884663582,
- 0.00730942701920867,
- 0.0658838301897049,
- -0.002626237692311406,
- 0.01437643077224493,
- 0.024319982156157494,
- -0.0049313735216856,
- 0.045523785054683685,
- 0.06042517349123955,
- 0.09090064465999603,
- -0.010046223178505898,
- -0.04956812411546707,
- 0.035762421786785126,
- -0.08842882513999939,
- -0.00959327258169651,
- 0.06365132331848145,
- -0.01409424189478159,
- -0.0013416565489023924,
- 0.01596585102379322,
- 0.024903032928705215,
- -0.01818491332232952,
- 0.011608111672103405,
- 0.10089389234781265,
- 0.050020307302474976,
- 0.07005953788757324,
- -0.003307236358523369,
- 0.028985029086470604,
- -0.04730919376015663,
- 0.011623435653746128,
- 0.011056913062930107,
- 0.025808298960328102,
- -0.06450453400611877,
- 0.01633899100124836,
- 0.051209188997745514,
- -0.006822891533374786,
- -0.04746650159358978,
- -0.037206485867500305,
- -0.050204046070575714,
- -0.01941872201859951,
- -0.058423519134521484,
- 0.0019424314377829432,
- -0.022056492045521736,
- 0.008014253340661526,
- -0.0006442763842642307,
- -0.03860173001885414,
- -0.030754853039979935,
- 0.013111304491758347,
- 0.05092046782374382,
- 0.0984710305929184,
- 0.09612469375133514,
- -0.060755569487810135,
- 0.04682542011141777,
- -0.009274949319660664,
- -0.05091601237654686,
- 0.11044111847877502,
- 0.06692789494991302,
- 0.06842391192913055,
- -0.006884272210299969,
- -0.020657094195485115
- ]
- },
- {
- "keyword": "framework",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.021994706243276596,
- -0.01803642325103283,
- -0.11442147940397263,
- -0.022823691368103027,
- 0.05427126586437225,
- 0.014967577531933784,
- 0.0992145761847496,
- 0.06636407226324081,
- -0.035414230078458786,
- 0.0017682795878499746,
- 0.040482599288225174,
- 0.008486543782055378,
- -0.026149563491344452,
- 0.022943435236811638,
- -0.004779890179634094,
- -0.010105581022799015,
- 0.01710190810263157,
- -0.03312304988503456,
- -0.05672582983970642,
- -0.02426891215145588,
- -0.11504843086004257,
- -0.0059104906395077705,
- -0.0025426745414733887,
- 0.02598612569272518,
- -0.036236606538295746,
- 0.0023369051050394773,
- -0.06143959239125252,
- -0.017834283411502838,
- 0.05311853811144829,
- -0.039229221642017365,
- -0.01487509161233902,
- 0.04620784521102905,
- 0.013201752677559853,
- -0.027895206585526466,
- -0.039566729217767715,
- 0.03271706774830818,
- 0.06470276415348053,
- -0.09192270040512085,
- -0.08427133411169052,
- -0.053529318422079086,
- -0.11999741941690445,
- -0.00587995070964098,
- -0.03152860328555107,
- -0.01652415655553341,
- 0.037789423018693924,
- -0.07115654647350311,
- -0.003274936228990555,
- 0.03193262591958046,
- 0.04155400022864342,
- -0.057900816202163696,
- -0.06503000855445862,
- -0.07634381204843521,
- -0.052245479077100754,
- -0.04822376370429993,
- -0.00418074568733573,
- 0.08080793172121048,
- 0.021732578054070473,
- -0.023357920348644257,
- -0.013941843062639236,
- -0.0311437975615263,
- 0.0194629468023777,
- -0.01962537132203579,
- -0.07297383248806,
- 0.10474318265914917,
- 0.10438007861375809,
- 0.04390578344464302,
- -0.03691193833947182,
- -0.01526966504752636,
- 0.027672773227095604,
- -0.06917782127857208,
- -0.10011322051286697,
- -0.05768892541527748,
- -0.010806255973875523,
- 0.02939213439822197,
- 0.004731305409222841,
- -0.05854576826095581,
- -0.008870609104633331,
- 0.004624988418072462,
- 0.09039587527513504,
- 0.006174749694764614,
- 0.06079145520925522,
- 0.0729600116610527,
- -0.00021926731278654188,
- 0.043851979076862335,
- 0.04933036118745804,
- 0.01614231988787651,
- 0.06924804300069809,
- -0.003698664018884301,
- -0.006772929336875677,
- -0.022684557363390923,
- 0.017839157953858376,
- 0.013916396535933018,
- 0.08106831461191177,
- 0.05880323797464371,
- -0.12053182721138,
- -0.012023133225739002,
- 0.02315140701830387,
- -0.028847908601164818,
- -0.004131327848881483,
- 0.23666176199913025,
- -0.040485817939043045,
- -0.025867745280265808,
- 0.05744786560535431,
- 0.0066919573582708836,
- 0.0022932300344109535,
- 0.00681062787771225,
- -0.01944063790142536,
- 0.01686423271894455,
- -0.006085609085857868,
- -0.012790728360414505,
- -0.03472292795777321,
- 0.03093455731868744,
- -0.06946133822202682,
- -0.08831891417503357,
- 0.044140782207250595,
- -0.07220422476530075,
- 0.011135109700262547,
- 0.002434096997603774,
- 0.058261942118406296,
- 0.0222933366894722,
- -0.015288855880498886,
- 0.036147259175777435,
- -0.038781169801950455,
- -0.058346088975667953,
- 0.0012161214835941792,
- 0.0068201967515051365,
- -0.03213401883840561,
- -3.433762629467893e-33,
- 0.022626006975769997,
- 0.0007728201453574002,
- 0.0704723671078682,
- 0.08241292834281921,
- 0.05510392412543297,
- -0.04572032392024994,
- 0.03620437905192375,
- 0.005444354843348265,
- -0.026524001732468605,
- 0.062342241406440735,
- 0.05628717690706253,
- 0.03398354351520538,
- 0.012755373492836952,
- 0.03370298817753792,
- 0.12544915080070496,
- -0.10252416878938675,
- 0.04569658264517784,
- 0.05110364407300949,
- 0.07882124930620193,
- 0.018629148602485657,
- -0.02295767515897751,
- -0.02518465556204319,
- -0.04354209452867508,
- -0.030886150896549225,
- 0.07092203944921494,
- 0.06091058626770973,
- 0.025494547560811043,
- 0.018227411434054375,
- -0.05216998979449272,
- 0.035363391041755676,
- 0.01710873655974865,
- 0.009000333957374096,
- -0.13035845756530762,
- 0.030057352036237717,
- -0.02722947858273983,
- -0.02421349473297596,
- 0.029076669365167618,
- -0.10791203379631042,
- 0.03453121334314346,
- -0.040317267179489136,
- -0.09213452786207199,
- 0.0007735374965704978,
- -0.00014626719348598272,
- -0.06643947213888168,
- 0.026391906663775444,
- -0.012377490289509296,
- 0.06354708969593048,
- 0.06184631958603859,
- 0.02986118756234646,
- 0.008942940272390842,
- -0.030920706689357758,
- 0.027381673455238342,
- 0.010968153364956379,
- 0.06483528763055801,
- -0.010738344863057137,
- 0.015485681593418121,
- -0.04247278347611427,
- 0.00048248900566250086,
- 0.02603255584836006,
- 0.025903459638357162,
- -0.03059639222919941,
- -0.009940375573933125,
- -0.09078262746334076,
- -0.028040297329425812,
- 0.006632597651332617,
- 0.000122016754176002,
- -0.08105700463056564,
- -0.13806623220443726,
- 0.04835326969623566,
- 0.009492339566349983,
- -0.06881657987833023,
- -0.0207047276198864,
- 0.0626116469502449,
- 0.06072913482785225,
- 0.005583629012107849,
- -0.0548294298350811,
- -0.002122861333191395,
- 0.0774349793791771,
- -0.06515972316265106,
- 0.005750203505158424,
- -0.1272543966770172,
- 0.016379788517951965,
- 0.04829259589314461,
- -0.011249489150941372,
- -0.04066871851682663,
- 0.016441602259874344,
- 0.01749046891927719,
- -0.004407500382512808,
- -0.004074368625879288,
- -0.03642135113477707,
- -0.07309173792600632,
- -0.04112328588962555,
- 0.10953877121210098,
- 0.012634683400392532,
- 0.014940733090043068,
- 2.1558568230790676e-33,
- 0.061053283512592316,
- 0.002096543088555336,
- -0.06458533555269241,
- -0.03200000897049904,
- 0.07440721988677979,
- 0.004989996552467346,
- -0.013015255331993103,
- 0.004238025285303593,
- -0.0686863511800766,
- -0.014562545344233513,
- 0.03156096488237381,
- -0.01789342239499092,
- 0.08388692140579224,
- -0.006609554868191481,
- -0.0367782860994339,
- 0.0184694342315197,
- 0.012836910784244537,
- -0.12178158760070801,
- 0.009657430462539196,
- -0.02548430673778057,
- -0.06703066825866699,
- -0.047849271446466446,
- -0.06001370772719383,
- -0.07119465619325638,
- -0.009318746626377106,
- 0.0025094931479543447,
- -0.07982482761144638,
- -0.02949742041528225,
- -0.008087841793894768,
- 0.04928220435976982,
- -0.019354036077857018,
- -0.0488748624920845,
- -0.0065450286492705345,
- -0.012550175189971924,
- 0.005852060858160257,
- 0.024106789380311966,
- 0.0282144732773304,
- -0.03022446110844612,
- -0.0427524708211422,
- 0.042894765734672546,
- 0.005984571296721697,
- -0.008776153437793255,
- -0.004371862858533859,
- 0.050764597952365875,
- 0.019663913175463676,
- -0.029559209942817688,
- -0.09225054085254669,
- 0.06427624821662903,
- 0.044167812913656235,
- -0.06166612356901169,
- -0.054178956896066666,
- 0.02380986139178276,
- 0.03326651453971863,
- -0.1001758798956871,
- -0.0683368444442749,
- 0.04909277707338333,
- 0.12646375596523285,
- -0.04372565820813179,
- -0.013338958844542503,
- 0.06173859164118767,
- 0.0058900704607367516,
- 0.05414627864956856,
- -0.07952694594860077,
- 0.05688963830471039,
- 0.033495403826236725,
- -0.004094304982572794,
- -0.12168481200933456,
- -0.029688192531466484,
- 0.015102125704288483,
- -0.030965114012360573,
- -0.0024332788307219744,
- -0.019839389249682426,
- 0.009878299199044704,
- 0.06866372376680374,
- -0.048330046236515045,
- -0.017432089895009995,
- 0.027832020074129105,
- -0.002857856685295701,
- 0.04068342596292496,
- 0.07742829620838165,
- 0.09950391948223114,
- -0.033869385719299316,
- 0.04877796396613121,
- 0.06966177374124527,
- -0.036049533635377884,
- -0.013730841688811779,
- 0.0531727634370327,
- -0.0729498565196991,
- -0.04419112950563431,
- -0.02019607089459896,
- -0.03885725513100624,
- 0.04473190754652023,
- -0.012031838297843933,
- 0.16422615945339203,
- 0.035711370408535004,
- -1.1570386426740242e-8,
- -0.0004655847151298076,
- 0.06528589874505997,
- -0.02401740662753582,
- -0.02795352041721344,
- -0.02985219657421112,
- 0.0594744049012661,
- 0.05838889628648758,
- -0.03272008150815964,
- 0.015561229549348354,
- 0.06090405210852623,
- -0.05792829766869545,
- 0.026964042335748672,
- -0.022280074656009674,
- 0.09979162365198135,
- 0.01924046128988266,
- 0.026896435767412186,
- -0.03266181796789169,
- 0.04803425818681717,
- -0.06433547288179398,
- 0.056167908012866974,
- 0.12538892030715942,
- 0.01874656416475773,
- -0.001925535500049591,
- 0.01061851717531681,
- 0.034443773329257965,
- -0.014573334716260433,
- 0.08673680573701859,
- 0.08172936737537384,
- -0.014074845239520073,
- 0.08608142286539078,
- -0.05428255349397659,
- 0.0844118520617485,
- -0.02685932256281376,
- 0.043923698365688324,
- 0.011799493804574013,
- 0.06670892983675003,
- -0.017777176573872566,
- -0.06075495108962059,
- -0.0032708998769521713,
- 0.010265284217894077,
- -0.025933561846613884,
- 0.017417995259165764,
- -0.018534021452069283,
- -0.05006943270564079,
- 0.04053768143057823,
- 0.011902650818228722,
- -0.01216269563883543,
- -0.05258236080408096,
- 0.029489634558558464,
- 0.017325878143310547,
- -0.014445741660892963,
- 0.0464809276163578,
- -0.018326951190829277,
- 0.02947859652340412,
- 0.03745754808187485,
- 0.06366153061389923,
- 0.027090460062026978,
- -0.037715062499046326,
- -0.012965804897248745,
- 0.03865372762084007,
- 0.02689437009394169,
- -0.009031030349433422,
- 0.09175767749547958,
- -0.0038787294179201126
- ]
- },
- {
- "keyword": "library",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07281371206045151,
- -0.0390964075922966,
- -0.09329649806022644,
- 0.0019177899230271578,
- 0.027856113389134407,
- 0.0018885789904743433,
- 0.05041807144880295,
- 0.04452313110232353,
- 0.03422641381621361,
- -0.01705022156238556,
- -0.005574675276875496,
- 0.04503863677382469,
- 0.012923261150717735,
- -0.04800263047218323,
- -0.016099292784929276,
- 0.003032132051885128,
- -0.020979564636945724,
- 0.07380419224500656,
- -0.023351972922682762,
- -0.08606210350990295,
- -0.04024761915206909,
- 0.03689750283956528,
- 0.014317620545625687,
- 0.006358522456139326,
- 0.033335037529468536,
- 0.023615000769495964,
- -0.04254491627216339,
- -0.04957139492034912,
- -0.015947073698043823,
- -0.09313423186540604,
- -0.04401403293013573,
- -0.030667118728160858,
- 0.049357328563928604,
- -0.037352319806814194,
- 0.006494817323982716,
- 0.014395609498023987,
- 0.03975924476981163,
- -0.0483151413500309,
- -0.0021804538555443287,
- 0.024789229035377502,
- -0.1269378811120987,
- 0.021830964833498,
- -0.007607497274875641,
- 0.026371482759714127,
- -0.046376559883356094,
- 0.06425824016332626,
- 0.007352771237492561,
- -0.028049208223819733,
- 0.022320469841361046,
- 0.05407131463289261,
- -0.0434575155377388,
- 0.0009032285888679326,
- -0.058331746608018875,
- -0.02985905297100544,
- 0.05851989611983299,
- 0.04537520557641983,
- -0.024551380425691605,
- 0.030005745589733124,
- -0.0162973552942276,
- -0.01535120327025652,
- 0.050685569643974304,
- 0.0001715446705929935,
- -0.0737527385354042,
- 0.09291692078113556,
- 0.06661425530910492,
- 0.08826274424791336,
- 0.04825284704566002,
- 0.07956759631633759,
- 0.033385708928108215,
- -0.16340228915214539,
- -0.13049161434173584,
- 0.0030081875156611204,
- 0.005037264432758093,
- 0.08961096405982971,
- 0.07330180704593658,
- -0.05735014006495476,
- -0.04076024517416954,
- -0.011588416062295437,
- 0.09281082451343536,
- -0.05886983871459961,
- -0.06284409016370773,
- -0.01702229306101799,
- 0.005064088385552168,
- 0.03372572734951973,
- 0.05880039557814598,
- -0.024822810664772987,
- 0.04464791342616081,
- 0.003882884979248047,
- 0.044469911605119705,
- 0.0032209947239607573,
- 0.025984877720475197,
- -0.025905484333634377,
- 0.09054303914308548,
- 0.020084476098418236,
- -0.11635498702526093,
- 0.07858577370643616,
- 0.05681762844324112,
- -0.09274519979953766,
- 0.01760575920343399,
- 0.26032406091690063,
- -0.06973119080066681,
- 0.006508795544505119,
- 0.05797645077109337,
- 0.013394015841186047,
- -0.03366495668888092,
- -0.09882800281047821,
- -0.03035939857363701,
- 0.008407559245824814,
- -0.014085931703448296,
- 0.018451539799571037,
- 0.0042174505069851875,
- -0.020885122939944267,
- -0.05236542969942093,
- -0.07607238739728928,
- 0.0372539684176445,
- 0.0010567664867267013,
- 0.04040154069662094,
- 0.003089785808697343,
- 0.0357702262699604,
- 0.001878797309473157,
- -0.044623907655477524,
- 0.004293827340006828,
- 0.0005461651599034667,
- 0.008329878561198711,
- -0.08337417244911194,
- -0.0660770907998085,
- -0.05810566991567612,
- -4.4653893287189945e-33,
- 0.06528053432703018,
- -0.05027571693062782,
- 0.04171231389045715,
- 0.05312561243772507,
- -0.010608243755996227,
- -0.0875023752450943,
- 0.03676294535398483,
- -0.011958601884543896,
- -0.07124458998441696,
- -0.007035905495285988,
- 0.011317817494273186,
- 0.07057997584342957,
- -0.07606559991836548,
- 0.016374750062823296,
- 0.03797514736652374,
- 0.0024783608969300985,
- 0.03728373348712921,
- 0.07298853993415833,
- 0.026271745562553406,
- -0.014164256863296032,
- -0.0625172108411789,
- -0.0075278207659721375,
- 0.057393308728933334,
- 0.07632371038198471,
- 0.01334292721003294,
- 0.00920773670077324,
- 0.0027443491853773594,
- -0.0961822122335434,
- 0.059793636202812195,
- 0.0524371862411499,
- 0.01419870276004076,
- -0.0632672905921936,
- -0.04730675742030144,
- -0.041335031390190125,
- 0.06828118115663528,
- -0.039099059998989105,
- -0.08827419579029083,
- -0.041234903037548065,
- 0.04605695605278015,
- 0.002938095713034272,
- 0.013379927724599838,
- 0.00008686901128385216,
- -0.006855218205600977,
- -0.03117918036878109,
- 0.00615308340638876,
- 0.06424283981323242,
- 0.018897993490099907,
- 0.03799501806497574,
- 0.03471522405743599,
- -0.013639600947499275,
- -0.0030774010811001062,
- 0.0313861146569252,
- -0.08801981061697006,
- -0.014030507765710354,
- 0.00851206760853529,
- -0.012213255278766155,
- -0.009232942946255207,
- 0.09585221856832504,
- 0.022889019921422005,
- -0.001008870080113411,
- 0.06810986995697021,
- 0.12908586859703064,
- 0.002718727570027113,
- -0.03775593638420105,
- 0.04439474269747734,
- -0.01765315607190132,
- -0.08754575997591019,
- -0.06599868088960648,
- 0.045940738171339035,
- 0.002354862168431282,
- -0.07392951101064682,
- -0.002308845752850175,
- 0.09090005606412888,
- 0.010680628940463066,
- 0.0009389990591444075,
- 0.07666989415884018,
- -0.06033117696642876,
- 0.012613018043339252,
- -0.10897260904312134,
- -0.0421307235956192,
- -0.094363734126091,
- -0.04216067120432854,
- 0.017976917326450348,
- 0.014882461167871952,
- -0.02387702837586403,
- -0.04491927847266197,
- 0.053003810346126556,
- -0.060770321637392044,
- -0.0359468013048172,
- 0.035531554371118546,
- -0.05393437668681145,
- 0.02209065854549408,
- -0.035165008157491684,
- 0.009678170084953308,
- -0.027995295822620392,
- 3.263007748673555e-33,
- 0.03598937392234802,
- -0.10355113446712494,
- 0.019166050478816032,
- 0.011902879923582077,
- 0.03203967213630676,
- 0.05853909254074097,
- -0.06630931794643402,
- -0.026584964245557785,
- 0.05058932676911354,
- 0.04728008806705475,
- -0.019974462687969208,
- -0.045367930084466934,
- 0.09150627255439758,
- 0.05731554701924324,
- 0.025692343711853027,
- -0.03496954217553139,
- 0.037423718720674515,
- -0.051580168306827545,
- -0.04671517759561539,
- 0.06144045293331146,
- -0.10740768164396286,
- 0.05409300699830055,
- 0.020464882254600525,
- -0.04260195791721344,
- -0.022221943363547325,
- 0.03692874312400818,
- -0.05194313824176788,
- -0.034983426332473755,
- -0.025574037805199623,
- 0.025932474061846733,
- -0.004102393984794617,
- 0.005046484991908073,
- -0.0670677199959755,
- -0.03594730421900749,
- -0.08865804225206375,
- 0.0029455258045345545,
- 0.04413753002882004,
- 0.034269772469997406,
- 0.007173630408942699,
- -0.043974462896585464,
- 0.061710212379693985,
- 0.04516497626900673,
- -0.022027060389518738,
- -0.0003989466349594295,
- 0.0004384770290926099,
- -0.06451505422592163,
- -0.05393708497285843,
- 0.1091834083199501,
- 0.005986788310110569,
- -0.044396188110113144,
- 0.010639023967087269,
- -0.005236283876001835,
- 0.057940803468227386,
- -0.10813186317682266,
- 0.041188403964042664,
- 0.061535779386758804,
- 0.028432661667466164,
- 0.021583296358585358,
- 0.08074312657117844,
- 0.010954095982015133,
- -0.13885235786437988,
- 0.022184500470757484,
- -0.0745847076177597,
- 0.04781382903456688,
- -0.06888359785079956,
- -0.01060317549854517,
- -0.059662945568561554,
- -0.022317860275506973,
- -0.004974848125129938,
- -0.0049483743496239185,
- 0.03544586896896362,
- 0.0493268184363842,
- 0.023909159004688263,
- 0.07091092318296432,
- -0.06199421361088753,
- 0.012038524262607098,
- 0.03041989356279373,
- 0.06981148570775986,
- -0.009747961536049843,
- -0.007595542352646589,
- 0.018697364255785942,
- 0.02241852879524231,
- 0.0038972615730017424,
- 0.062431029975414276,
- 0.07925596088171005,
- 0.02095131017267704,
- 0.08893194794654846,
- -0.0197769645601511,
- -0.006567927543073893,
- -0.044293347746133804,
- -0.02153557352721691,
- 0.04162612184882164,
- -0.0469873882830143,
- 0.06212678179144859,
- 0.06361851096153259,
- -1.2931420378947678e-8,
- -0.047044701874256134,
- 0.0018554511480033398,
- -0.05836334452033043,
- -0.008411876857280731,
- 0.05951735004782677,
- 0.009846910834312439,
- 0.023437874391674995,
- 0.07371548563241959,
- -0.06707099080085754,
- 0.01417868584394455,
- 0.029680628329515457,
- -0.05070445314049721,
- -0.02494893968105316,
- 0.039086632430553436,
- -0.04094662144780159,
- -0.0014151157811284065,
- 0.02083093859255314,
- -0.03776900842785835,
- -0.044943712651729584,
- 0.06867171823978424,
- 0.07192705571651459,
- -0.01343411672860384,
- 0.07354327291250229,
- 0.022427285090088844,
- -0.039878200739622116,
- -0.00268118130043149,
- 0.07183057814836502,
- -0.025356628000736237,
- 0.03518516942858696,
- -0.041361112147569656,
- -0.02411697618663311,
- 0.08802851289510727,
- -0.003133459249511361,
- -0.07774484157562256,
- 0.08225560933351517,
- 0.03726043552160263,
- -0.0016543720848858356,
- -0.05516032129526138,
- -0.04117569699883461,
- 0.07272801548242569,
- -0.001309389597736299,
- -0.05138195678591728,
- 0.0019401649478822947,
- 0.0031638911459594965,
- 0.020981604233384132,
- -0.022758223116397858,
- 0.00907466933131218,
- 0.0027967204805463552,
- -0.011547213420271873,
- 0.045971181243658066,
- -0.033923741430044174,
- 0.0033247845713049173,
- 0.03737517073750496,
- 0.020210471004247665,
- -0.03975096717476845,
- 0.019730214029550552,
- 0.017472179606556892,
- -0.04396232217550278,
- -0.06337513029575348,
- 0.04569922387599945,
- 0.11251740902662277,
- 0.04330847039818764,
- 0.050387099385261536,
- -0.012057350017130375
- ]
- },
- {
- "keyword": "device",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.06235736235976219,
- 0.04179686680436134,
- 0.023677833378314972,
- -0.04663292318582535,
- 0.005461813881993294,
- -0.05377364531159401,
- 0.11101724207401276,
- 0.05945698916912079,
- 0.02170775830745697,
- 0.013222964480519295,
- 0.041991762816905975,
- 0.008173847571015358,
- 0.008302773348987103,
- -0.019451960921287537,
- -0.006379344966262579,
- 0.0021121951285749674,
- -0.005235315300524235,
- 0.015178734436631203,
- -0.04838814213871956,
- 0.04740399494767189,
- -0.010176759213209152,
- 0.07320617139339447,
- -0.01658329926431179,
- 0.03366526961326599,
- -0.045978352427482605,
- -0.0019770213402807713,
- 0.00823278073221445,
- -0.015276412479579449,
- 0.057300955057144165,
- -0.07602640986442566,
- 0.035166844725608826,
- 0.0031201322562992573,
- 0.010773313231766224,
- 0.06982364505529404,
- -0.06684933602809906,
- -0.06454198807477951,
- 0.024052273482084274,
- -0.030471008270978928,
- -0.05381912738084793,
- -0.04909858480095863,
- -0.005374685395509005,
- -0.108263298869133,
- -0.022859036922454834,
- 0.009932126849889755,
- -0.013194866478443146,
- 0.05696745961904526,
- 0.03487981855869293,
- 0.020724941045045853,
- 0.015791675075888634,
- 0.02294674515724182,
- -0.020556550472974777,
- 0.0572977289557457,
- -0.021342990919947624,
- 0.051454611122608185,
- -0.036645252257585526,
- -0.009605437517166138,
- 0.016487590968608856,
- 0.06740676611661911,
- 0.031108159571886063,
- 0.011613469570875168,
- 0.06560111790895462,
- -0.016204791143536568,
- -0.06892086565494537,
- 0.017758315429091454,
- -0.0008232814143411815,
- -0.011502682231366634,
- -0.013018940575420856,
- -0.0874345451593399,
- 0.005780884996056557,
- 0.0030710145365446806,
- 0.015593176707625389,
- 0.00682522589340806,
- 0.01703714020550251,
- 0.041010305285453796,
- 0.053073134273290634,
- -0.0362393818795681,
- 0.02420010417699814,
- 0.007168611977249384,
- 0.057122912257909775,
- 0.00871279463171959,
- -0.0004586213326547295,
- 0.021922288462519646,
- -0.029391776770353317,
- -0.011918360367417336,
- 0.07306982576847076,
- -0.031000252813100815,
- 0.009037713520228863,
- 0.04193967953324318,
- -0.06714099645614624,
- -0.007494264282286167,
- -0.028915392234921455,
- 0.024985453113913536,
- 0.0018331678584218025,
- -0.03229309991002083,
- -0.06524662673473358,
- -0.05025439336895943,
- 0.023786481469869614,
- -0.103705994784832,
- -0.0889439508318901,
- 0.26343250274658203,
- 0.038833778351545334,
- 0.05569145083427429,
- -0.05652378499507904,
- 0.030484499409794807,
- -0.05584819242358208,
- -0.07704658806324005,
- -0.06093638017773628,
- -0.0025374244432896376,
- 0.015914514660835266,
- -0.01688516139984131,
- -0.001479357830248773,
- -0.04461082071065903,
- -0.13521136343479156,
- 0.026598867028951645,
- 0.04325451701879501,
- -0.026517201215028763,
- -0.09957483410835266,
- 0.12329672276973724,
- 0.0618591271340847,
- -0.017098477110266685,
- -0.0906449630856514,
- 0.010524874553084373,
- -0.05688575282692909,
- -0.05785401165485382,
- -0.026520807296037674,
- -0.029964502900838852,
- 0.01573636196553707,
- -5.442400356378985e-33,
- 0.035877734422683716,
- 0.027680352330207825,
- -0.03127867355942726,
- 0.002394064562395215,
- -0.09636878967285156,
- 0.06732179969549179,
- -0.03439049795269966,
- 0.05028342828154564,
- 0.01519131101667881,
- 0.03129354864358902,
- -0.040310148149728775,
- 0.032916609197854996,
- -0.050579991191625595,
- 0.08652026951313019,
- 0.17934530973434448,
- -0.053885333240032196,
- -0.02359021082520485,
- 0.03831511735916138,
- -0.006353619042783976,
- -0.002362950937822461,
- -0.06758051365613937,
- 0.006582470145076513,
- -0.0016462283674627542,
- 0.042668379843235016,
- 0.03695857897400856,
- -0.003647659672424197,
- -0.004134403076022863,
- -0.027841556817293167,
- 0.052710115909576416,
- 0.021877821534872055,
- -0.05747782066464424,
- 0.03045889176428318,
- 0.0009533605771139264,
- -0.07442524284124374,
- -0.011602271348237991,
- 0.009681281633675098,
- 0.0028987210243940353,
- -0.09277332574129105,
- -0.0033721013460308313,
- -0.021835768595337868,
- -0.039410706609487534,
- -0.02489180490374565,
- -0.010130861774086952,
- -0.015353849157691002,
- -0.04331788793206215,
- -0.01712159812450409,
- 0.004182031843811274,
- 0.01747310720384121,
- 0.024685602635145187,
- 0.06866743415594101,
- -0.02626882493495941,
- -0.025387335568666458,
- -0.008757412433624268,
- -0.10053469985723495,
- 0.026782000437378883,
- -0.02234818786382675,
- -0.0026475938502699137,
- -0.0009259278886020184,
- 0.0714653953909874,
- -0.029239993542432785,
- 0.06812725216150284,
- 0.06668423116207123,
- -0.005004966165870428,
- 0.01687280647456646,
- -0.02794582024216652,
- 0.052066411823034286,
- 0.09339558333158493,
- -0.065641850233078,
- 0.015616416931152344,
- 0.007908837869763374,
- -0.06215810775756836,
- -0.019722571596503258,
- 0.05670752748847008,
- -0.029550453647971153,
- -0.036964211612939835,
- 0.07935567200183868,
- -0.03487995266914368,
- -0.045679010450839996,
- -0.11931757628917694,
- -0.02617407776415348,
- -0.0969083309173584,
- -0.024622412398457527,
- 0.017239026725292206,
- 0.0440831296145916,
- -0.051325708627700806,
- -0.019470715895295143,
- -0.060795437544584274,
- -0.15329565107822418,
- 0.026782868430018425,
- 0.032402802258729935,
- -0.037887342274188995,
- 0.011575872078537941,
- -0.04357253015041351,
- 0.031174881383776665,
- -0.05050014331936836,
- 4.523360669339719e-33,
- -0.08387263864278793,
- -0.05158471688628197,
- 0.02048575133085251,
- 0.03179527819156647,
- 0.056624725461006165,
- -0.06662481278181076,
- 0.025496618822216988,
- -0.02511489950120449,
- -0.046934809535741806,
- 0.028157901018857956,
- -0.09340817481279373,
- -0.03292887657880783,
- 0.07689179480075836,
- -0.013939063996076584,
- 0.02941211499273777,
- 0.07554203271865845,
- 0.02772693894803524,
- -0.056376293301582336,
- 0.024576637893915176,
- 0.0009309636079706252,
- -0.03424357250332832,
- 0.06384345889091492,
- 0.07159604877233505,
- -0.042291976511478424,
- -0.0497545525431633,
- 0.02132038027048111,
- 0.023934826254844666,
- 0.01401655375957489,
- 0.02859034202992916,
- -0.0413530059158802,
- 0.06819690763950348,
- -0.10066872835159302,
- -0.003294958733022213,
- 0.00934410747140646,
- 0.03734130039811134,
- 0.10696859657764435,
- 0.11515528708696365,
- -0.005625556223094463,
- -0.0439520925283432,
- -0.08890851587057114,
- 0.0637921690940857,
- 0.05253402143716812,
- 0.02060508541762829,
- 0.16331836581230164,
- 0.0031577860936522484,
- -0.030529111623764038,
- 0.02870083972811699,
- 0.06129102781414986,
- 0.05405877158045769,
- 0.03488998860120773,
- 0.013160278089344501,
- 0.026919443160295486,
- 0.0322096049785614,
- -0.06712514162063599,
- -0.05567483976483345,
- 0.005271184723824263,
- 0.054692622274160385,
- -0.05323454737663269,
- -0.017520476132631302,
- -0.03794264793395996,
- 0.04909859225153923,
- -0.01163308322429657,
- -0.07475031167268753,
- 0.034099679440259933,
- -0.07153908163309097,
- 0.006172234658151865,
- 0.06378787755966187,
- 0.0362987220287323,
- 0.01668078638613224,
- 0.04863417148590088,
- 0.09609570354223251,
- 0.04040505737066269,
- 0.027726169675588608,
- 0.013932349160313606,
- -0.032948657870292664,
- 0.012562111020088196,
- -0.09152615815401077,
- -0.05200106278061867,
- -0.01598455011844635,
- -0.051360271871089935,
- 0.016367580741643906,
- -0.05982828512787819,
- -0.021921327337622643,
- 0.016637755557894707,
- 0.011273917742073536,
- -0.07717325538396835,
- 0.11504222452640533,
- 0.004374001640826464,
- 0.024239186197519302,
- 0.020378466695547104,
- -0.03126588463783264,
- 0.04009879380464554,
- -0.1346753090620041,
- 0.07330229133367538,
- -0.031152525916695595,
- -1.2413853056614244e-8,
- 0.025195524096488953,
- 0.03693898767232895,
- 0.04047968238592148,
- 0.002196716843172908,
- -0.0003395605890545994,
- -0.07024159282445908,
- 0.04747495427727699,
- -0.021061955019831657,
- 0.020584259182214737,
- 0.017022207379341125,
- -0.005068539641797543,
- -0.03917694464325905,
- -0.00200695195235312,
- 0.10630335658788681,
- 0.12001341581344604,
- 0.03107844851911068,
- -0.005378170870244503,
- 0.06906471401453018,
- -0.05770667642354965,
- -0.005565678235143423,
- 0.020167125388979912,
- 0.030396563932299614,
- 0.027965731918811798,
- -0.04885095730423927,
- 0.02845027670264244,
- -0.04116933420300484,
- 0.00014532828936353326,
- 0.07656597346067429,
- 0.0057739559561014175,
- -0.027037272229790688,
- -0.0037039543967694044,
- 0.02593090757727623,
- -0.022857051342725754,
- 0.018076345324516296,
- 0.01562601327896118,
- 0.008715614676475525,
- -0.025453750044107437,
- 0.04277140274643898,
- 0.039883702993392944,
- 0.04544408246874809,
- 0.00046792224748060107,
- -0.04509683698415756,
- -0.044809211045503616,
- 0.03622337803244591,
- -0.011766497977077961,
- -0.029824301600456238,
- -0.013578575104475021,
- -0.08557777851819992,
- -0.026241371408104897,
- 0.07660908997058868,
- -0.04849658161401749,
- 0.006598624866455793,
- 0.005524749401956797,
- 0.0397045761346817,
- 0.04044916853308678,
- 0.01804235763847828,
- 0.008520201779901981,
- -0.04037703946232796,
- -0.08628982305526733,
- 0.08307730406522751,
- 0.10653845965862274,
- 0.10105812549591064,
- 0.036318954080343246,
- 0.025468900799751282
- ]
- },
- {
- "keyword": "gadget",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.12813818454742432,
- 0.07617147266864777,
- 0.012088704854249954,
- -0.08042991161346436,
- 0.004930643830448389,
- -0.08364833891391754,
- 0.18980258703231812,
- 0.049432042986154556,
- -0.024822156876325607,
- -0.021527672186493874,
- 0.04605642333626747,
- 0.030990757048130035,
- 0.06051111966371536,
- -0.02339116297662258,
- -0.020146552473306656,
- -0.01722196489572525,
- 0.029063906520605087,
- -0.029138749465346336,
- -0.07101435959339142,
- -0.030438384041190147,
- -0.05970517173409462,
- 0.04665592685341835,
- 0.01870235800743103,
- 0.0056846728548407555,
- -0.03424008935689926,
- -0.0012811800697818398,
- 0.03778877109289169,
- 0.0005226746434345841,
- -0.00493094976991415,
- -0.05776335671544075,
- -0.014390676282346249,
- 0.04876718297600746,
- -0.03906331956386566,
- 0.0683673769235611,
- -0.12730707228183746,
- 0.010509379208087921,
- -0.007411403115838766,
- -0.007145239040255547,
- 0.0038296848069876432,
- 0.018227621912956238,
- -0.043821070343256,
- -0.07431502640247345,
- -0.0316772386431694,
- 0.008984328247606754,
- 0.030647525563836098,
- 0.020105773583054543,
- -0.02348879911005497,
- -0.05210331082344055,
- -0.04206952825188637,
- 0.031088825315237045,
- -0.02889077737927437,
- -0.02043968252837658,
- -0.021398400887846947,
- 0.005034077912569046,
- 0.058316670358181,
- 0.0005092729115858674,
- -0.026394976302981377,
- 0.023684535175561905,
- -0.004099564161151648,
- 0.06890717893838882,
- 0.07022089511156082,
- 0.003239443525671959,
- -0.02785288728773594,
- 0.007863624952733517,
- 0.003538447432219982,
- -0.03222040832042694,
- 0.04750522971153259,
- 0.014117958024144173,
- 0.017741138115525246,
- 0.02058563008904457,
- 0.02691980078816414,
- 0.01709398441016674,
- 0.0021884602028876543,
- -0.009344455786049366,
- -0.0009228131384588778,
- -0.09855716675519943,
- -0.04124180227518082,
- 0.033269498497247696,
- 0.09077703207731247,
- 0.04153509810566902,
- 0.0015450580976903439,
- -0.04976577311754227,
- 0.011883452534675598,
- 0.038092296570539474,
- 0.09096355736255646,
- 0.002278335392475128,
- 0.030212709680199623,
- 0.08436452597379684,
- -0.027618397027254105,
- 0.0027249909471720457,
- -0.019605044275522232,
- 0.037894684821367264,
- 0.05988024175167084,
- 0.01721137948334217,
- -0.08827304095029831,
- -0.048770252615213394,
- 0.025917017832398415,
- -0.10740117728710175,
- -0.09892717748880386,
- 0.2148367464542389,
- 0.03206046298146248,
- 0.026213886216282845,
- 0.04147951677441597,
- 0.041063882410526276,
- 0.031994447112083435,
- -0.028659584000706673,
- -0.017629586160182953,
- 0.036017049103975296,
- 0.02962055429816246,
- 0.007346583530306816,
- -0.07138177007436752,
- -0.018182139843702316,
- -0.06639230251312256,
- -0.03275008499622345,
- -0.026940181851387024,
- 0.02654857747256756,
- -0.08214773237705231,
- 0.0742935985326767,
- -0.012436131946742535,
- -0.026357706636190414,
- 0.06187989562749863,
- 0.09176619350910187,
- -0.06732594221830368,
- -0.04023706912994385,
- -0.008294953964650631,
- 0.025817610323429108,
- -0.002732260851189494,
- -2.836812618986757e-33,
- 0.004169510677456856,
- 0.049750540405511856,
- 0.03485312685370445,
- 0.04812150448560715,
- -0.04505086690187454,
- 0.06414982676506042,
- -0.0654824897646904,
- 0.053006865084171295,
- -0.018885858356952667,
- 0.012299252673983574,
- 0.026100527495145798,
- 0.052456922829151154,
- -0.06446833163499832,
- 0.07476680725812912,
- 0.13116832077503204,
- -0.08118493854999542,
- -0.05950186774134636,
- 0.01430896669626236,
- 0.038602378219366074,
- -0.07940897345542908,
- -0.010367444716393948,
- -0.08096365630626678,
- -0.013607681728899479,
- 0.04056834056973457,
- 0.024005869403481483,
- 0.007254035212099552,
- 0.03662135824561119,
- -0.01834268681704998,
- 0.020333504304289818,
- 0.04602459445595741,
- -0.030776912346482277,
- -0.013597107492387295,
- 0.021647442132234573,
- 0.01256613153964281,
- -0.0695267990231514,
- -0.12787218391895294,
- -0.024166855961084366,
- -0.11348578333854675,
- 0.05200854688882828,
- -0.025100907310843468,
- -0.009811870753765106,
- -0.037750814110040665,
- -0.020122423768043518,
- -0.03436862677335739,
- -0.023613888770341873,
- 0.052483007311820984,
- 0.055526867508888245,
- 0.030762024223804474,
- -0.006360180675983429,
- 0.023221852257847786,
- -0.01923142746090889,
- -0.014327469281852245,
- -0.009122905321419239,
- -0.010027902200818062,
- -0.02844342589378357,
- -0.03049370087683201,
- -0.0031369831413030624,
- -0.019364498555660248,
- 0.008531180210411549,
- -0.02931002713739872,
- 0.04574345797300339,
- 0.05669301748275757,
- 0.0414641872048378,
- 0.009181723929941654,
- -0.037213776260614395,
- 0.036212675273418427,
- -0.03441692516207695,
- -0.033192601054906845,
- 0.004941098392009735,
- 0.06071195378899574,
- -0.012223773635923862,
- 0.014484304003417492,
- 0.04097543656826019,
- -0.0019782239105552435,
- -0.029907533898949623,
- 0.02000107429921627,
- -0.04094782471656799,
- -0.06280466914176941,
- -0.15504327416419983,
- -0.02787390723824501,
- -0.07073458284139633,
- -0.039717815816402435,
- -0.04069700464606285,
- 0.012522495351731777,
- -0.01582670584321022,
- -0.040164850652217865,
- 0.04358784109354019,
- -0.09043736010789871,
- -0.0038092543836683035,
- -0.001973299542441964,
- -0.040173646062612534,
- -0.018347296863794327,
- 0.010670752264559269,
- -0.03246253728866577,
- -0.02919602021574974,
- 2.6680257728750847e-33,
- -0.019491763785481453,
- -0.0017426066333428025,
- -0.019275490194559097,
- 0.08042629063129425,
- 0.09873747825622559,
- -0.053441524505615234,
- 0.05942796915769577,
- -0.028220323845744133,
- -0.04736681282520294,
- 0.06643642485141754,
- -0.06361833214759827,
- 0.04315357655286789,
- 0.03728662058711052,
- -0.013190656900405884,
- 0.05908167362213135,
- 0.08353129029273987,
- -0.0024899423588067293,
- -0.041815370321273804,
- 0.03853733837604523,
- -0.04601519554853439,
- 0.0064854975789785385,
- -0.04692109674215317,
- 0.008025391958653927,
- -0.011779570020735264,
- -0.07458367943763733,
- 0.08208685368299484,
- 0.001270104432478547,
- -0.042270611971616745,
- 0.02943900227546692,
- 0.048183172941207886,
- 0.006177353672683239,
- -0.09337379783391953,
- -0.01408582367002964,
- 0.07061243057250977,
- 0.031668540090322495,
- 0.03218716382980347,
- 0.1493416726589203,
- 0.018947063013911247,
- -0.09269663691520691,
- -0.14975276589393616,
- 0.07144423574209213,
- 0.0019247353775426745,
- -0.0027252703439444304,
- 0.12811912596225739,
- 0.008876507170498371,
- 0.014130031690001488,
- -0.014057084918022156,
- 0.08577962219715118,
- 0.01724967546761036,
- 0.01120746973901987,
- 0.008305723778903484,
- 0.024425338953733444,
- 0.02124609425663948,
- -0.05074227973818779,
- -0.04061073064804077,
- 0.01459643803536892,
- 0.03641320392489433,
- -0.044502001255750656,
- -0.05054808408021927,
- 0.0042137266136705875,
- 0.06723591685295105,
- -0.02390347607433796,
- -0.06908764690160751,
- -0.006502562202513218,
- -0.05450470745563507,
- -0.024817083030939102,
- 0.08984863013029099,
- 0.114592045545578,
- 0.004851203877478838,
- -0.017339631915092468,
- 0.12596066296100616,
- 0.06609825789928436,
- 0.049441974610090256,
- -0.05299491435289383,
- -0.03554747626185417,
- 0.09486225992441177,
- -0.008177246898412704,
- -0.01649748906493187,
- -0.054823409765958786,
- -0.013601445592939854,
- 0.0574071928858757,
- -0.027919214218854904,
- 0.06541316211223602,
- 0.0003091652470175177,
- -0.07714387029409409,
- -0.06453926116228104,
- -0.000971645989920944,
- 0.07389108091592789,
- 0.03503575548529625,
- -0.018058979883790016,
- -0.05900884047150612,
- 0.07770105451345444,
- -0.056684460490942,
- 0.1008545309305191,
- 0.03479647636413574,
- -1.3705825807619476e-8,
- -0.04398206248879433,
- 0.02399604767560959,
- 0.01923472434282303,
- -0.05897916480898857,
- -0.004233700223267078,
- -0.04755692556500435,
- -0.015609107911586761,
- 0.02188398502767086,
- 0.05140730366110802,
- -0.04908421263098717,
- -0.0007926836260594428,
- -0.025925202295184135,
- -0.022394755855202675,
- 0.12298300117254257,
- 0.07320540398359299,
- -0.0250875111669302,
- -0.05348849296569824,
- 0.07571175694465637,
- -0.044780831784009933,
- -0.03171134740114212,
- -0.009143146686255932,
- 0.018846461549401283,
- -0.015043612569570541,
- -0.03865258768200874,
- -0.08529932796955109,
- 0.00013866019435226917,
- -0.05363576114177704,
- 0.04998502507805824,
- 0.04495810344815254,
- 0.024207692593336105,
- 0.015558476559817791,
- 0.032671958208084106,
- 0.009676240384578705,
- -0.0569080226123333,
- -0.005400249268859625,
- -0.019830621778964996,
- -0.07807003706693649,
- 0.017899733036756516,
- 0.043420594185590744,
- 0.004094985779374838,
- 0.008398638106882572,
- -0.11068376153707504,
- -0.034674301743507385,
- 0.0313655287027359,
- -0.05499297007918358,
- -0.040468327701091766,
- 0.0071546416729688644,
- -0.11073481291532516,
- 0.035781290382146835,
- 0.08831534534692764,
- 0.02362760901451111,
- 0.0320584736764431,
- 0.04629864543676376,
- 0.052408866584300995,
- 0.036390576511621475,
- 0.029255378991365433,
- 0.01117570511996746,
- -0.025026654824614525,
- 0.009401347488164902,
- 0.007448691874742508,
- -0.02530275285243988,
- 0.011865822598338127,
- 0.029798902571201324,
- 0.04179644584655762
- ]
- },
- {
- "keyword": "machine",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.06362171471118927,
- 0.03816267102956772,
- -0.01764139160513878,
- 0.015058564022183418,
- -0.0401320606470108,
- -0.049663737416267395,
- 0.015988457947969437,
- 0.0011159491259604692,
- -0.006653752643615007,
- -0.03349063917994499,
- 0.012936277315020561,
- -0.015072126872837543,
- 0.07836524397134781,
- -0.07626821100711823,
- -0.012755458243191242,
- -0.004305585753172636,
- 0.021467745304107666,
- -0.06384926289319992,
- -0.02546003647148609,
- -0.05241502448916435,
- -0.025589585304260254,
- 0.00863724946975708,
- -0.0704251155257225,
- 0.013146373443305492,
- -0.007147700525820255,
- 0.10694395005702972,
- -0.036010563373565674,
- 0.052845411002635956,
- 0.017367202788591385,
- -0.12543213367462158,
- -0.03096347488462925,
- -0.003993693273514509,
- 0.004161164630204439,
- 0.025491615757346153,
- 0.03658554330468178,
- -0.01303777564316988,
- 0.027012888342142105,
- -0.03174905851483345,
- 0.023279473185539246,
- -0.05079232156276703,
- 0.02588723972439766,
- -0.08061660081148148,
- 0.006541000213474035,
- -0.020141340792179108,
- 0.073256716132164,
- 0.11125043779611588,
- -0.002098986180499196,
- -0.03225136920809746,
- 0.05436448007822037,
- 0.023505924269557,
- -0.11020100861787796,
- -0.05997403338551521,
- 0.05492465943098068,
- 0.009159455075860023,
- -0.03397923335433006,
- 0.02670840360224247,
- 0.05001815780997276,
- 0.02060605399310589,
- -0.04573803395032883,
- -0.02011610008776188,
- 0.021118873730301857,
- -0.07100877910852432,
- -0.15737640857696533,
- 0.056236766278743744,
- 0.11238067597150803,
- 0.04076395183801651,
- -0.04594196379184723,
- -0.03638860210776329,
- -0.0188567116856575,
- 0.010217485949397087,
- 0.020543351769447327,
- 0.003290802240371704,
- 0.03692002594470978,
- 0.07278475910425186,
- -0.027212554588913918,
- -0.01983172632753849,
- 0.05570470169186592,
- -0.062219295650720596,
- 0.04276447370648384,
- 0.08241099864244461,
- -0.025362221524119377,
- -0.01958930492401123,
- -0.044300004839897156,
- 0.03704560548067093,
- -0.023185977712273598,
- 0.01635679230093956,
- -0.017162984237074852,
- 0.019162921234965324,
- -0.045591432601213455,
- -0.013195748440921307,
- -0.03780444338917732,
- -0.04148931801319122,
- 0.04391659051179886,
- -0.014427842572331429,
- -0.022960316389799118,
- 0.018418803811073303,
- 0.021524395793676376,
- -0.04531924054026604,
- -0.03158556669950485,
- 0.2251165360212326,
- 0.012551289983093739,
- 0.05877797678112984,
- 0.062135837972164154,
- -0.03381577879190445,
- 0.03848782554268837,
- -0.007974579930305481,
- -0.02684582769870758,
- 0.06923215836286545,
- 0.053474683314561844,
- -0.02803345024585724,
- 0.00949801504611969,
- 0.003524909960106015,
- -0.042260438203811646,
- -0.02331690862774849,
- -0.0022088803816586733,
- -0.021677527576684952,
- -0.013217821717262268,
- -0.013514391146600246,
- -0.048014938831329346,
- 0.032177649438381195,
- 0.009218055754899979,
- -0.024988656863570213,
- -0.01392123568803072,
- -0.009875621646642685,
- -0.03461239114403725,
- -0.058720704168081284,
- 0.007694270461797714,
- -4.916917647362959e-33,
- 0.049845919013023376,
- -0.06672891229391098,
- 0.10193079710006714,
- 0.016749007627367973,
- 0.06556030362844467,
- 0.00005321230128174648,
- -0.014248019084334373,
- 0.01606186293065548,
- -0.0070433649234473705,
- 0.04363604262471199,
- -0.04179486632347107,
- 0.024928294122219086,
- -0.0237546656280756,
- 0.0412042960524559,
- 0.11382592469453812,
- -0.05371731519699097,
- 0.04484979063272476,
- 0.03452605754137039,
- -0.09805096685886383,
- -0.013720858842134476,
- -0.016819490119814873,
- 0.06625932455062866,
- 0.04601004347205162,
- 0.06139976158738136,
- -0.039230797439813614,
- -0.0006109167588874698,
- -0.005050805862993002,
- -0.08137534558773041,
- 0.027031607925891876,
- 0.03705552965402603,
- 0.021519366651773453,
- 0.027945565059781075,
- -0.026575308293104172,
- -0.00834671314805746,
- -0.03812510892748833,
- -0.037085700780153275,
- 0.027723580598831177,
- -0.08089306950569153,
- 0.021334990859031677,
- -0.02294989489018917,
- -0.02498202584683895,
- 0.01664232462644577,
- 0.005223766900599003,
- -0.020465679466724396,
- -0.07504121214151382,
- 0.025428317487239838,
- 0.0971011370420456,
- -0.005667828489094973,
- 0.047816239297389984,
- 0.03649606928229332,
- 0.020864835008978844,
- 0.01176467351615429,
- -0.038582053035497665,
- -0.01382368989288807,
- -0.0032212703954428434,
- -0.024953119456768036,
- 0.0375387966632843,
- 0.024351119995117188,
- 0.020814919844269753,
- 0.034599509090185165,
- 0.0789111852645874,
- 0.09152413159608841,
- 0.01611902378499508,
- 0.06427221745252609,
- 0.04567130282521248,
- 0.03747526556253433,
- 0.03877738490700722,
- -0.0367620512843132,
- 0.05260103940963745,
- 0.04946475103497505,
- -0.09444065392017365,
- -0.08696717768907547,
- 0.08476423472166061,
- 0.04166664555668831,
- 0.0493873693048954,
- 0.04692787677049637,
- -0.061042848974466324,
- -0.04593314602971077,
- -0.10487400740385056,
- -0.07755576074123383,
- -0.03418106213212013,
- -0.040744438767433167,
- -0.06106557697057724,
- 0.008828694000840187,
- 0.004557283129543066,
- 0.08136212080717087,
- -0.06853707134723663,
- -0.02307073213160038,
- 0.07757610082626343,
- -0.012992716394364834,
- -0.05136885493993759,
- -0.038283392786979675,
- 0.03522040322422981,
- 0.11145972460508347,
- -0.1320461481809616,
- 4.2340009799413045e-33,
- -0.014009682461619377,
- -0.04215127229690552,
- 0.029321573674678802,
- 0.13681191205978394,
- 0.08302541077136993,
- -0.042010728269815445,
- 0.006405710242688656,
- -0.000013820526874042116,
- -0.061906490474939346,
- 0.06296331435441971,
- -0.021914765238761902,
- -0.034118931740522385,
- 0.09143751859664917,
- 0.041214343160390854,
- 0.05270341411232948,
- 0.09141894429922104,
- -0.025689635425806046,
- -0.020415794104337692,
- -0.002591569209471345,
- -0.0014075161889195442,
- -0.04354949668049812,
- 0.019509034231305122,
- -0.006385275162756443,
- -0.04199979081749916,
- -0.044082481414079666,
- 0.051255665719509125,
- -0.05189372971653938,
- -0.028619980439543724,
- 0.025529444217681885,
- -0.004093722905963659,
- 0.01253180205821991,
- -0.05633801221847534,
- -0.006133257411420345,
- 0.04326996952295303,
- 0.011313732713460922,
- 0.11755036562681198,
- 0.030489586293697357,
- -0.01618727296590805,
- 0.025406625121831894,
- 0.011415177024900913,
- 0.04894391447305679,
- -0.017874211072921753,
- -0.07632630318403244,
- 0.14027976989746094,
- -0.013270908035337925,
- -0.01767752505838871,
- -0.07805334031581879,
- -0.02535218745470047,
- 0.05556643381714821,
- 0.030577879399061203,
- -0.003155625192448497,
- 0.02315784990787506,
- 0.04581432044506073,
- -0.05196867138147354,
- -0.07591268420219421,
- -0.038697440177202225,
- -0.10944738239049911,
- -0.009084169752895832,
- 0.00017640333680901676,
- 0.009019257500767708,
- -0.10575222223997116,
- -0.055865831673145294,
- -0.04662643000483513,
- 0.04433349892497063,
- -0.03596619889140129,
- 0.044513266533613205,
- 0.03721889853477478,
- 0.07068584859371185,
- -0.04449422284960747,
- 0.019982434809207916,
- 0.029152166098356247,
- 0.0879618227481842,
- 0.020743615925312042,
- 0.0885346308350563,
- -0.05034999921917915,
- -0.02555282972753048,
- -0.07701953500509262,
- -0.07508468627929688,
- -0.0013485737144947052,
- -0.010336028411984444,
- -0.05626725032925606,
- -0.05934121087193489,
- -0.022441701963543892,
- 0.07667350769042969,
- -0.0694669857621193,
- -0.016777319833636284,
- 0.08621624857187271,
- -0.011968562379479408,
- -0.044222183525562286,
- -0.012884029187262058,
- 0.04924964904785156,
- 0.0031694371718913317,
- -0.005835921503603458,
- 0.022140583023428917,
- -0.04516284167766571,
- -1.2623814882317674e-8,
- 0.015383745543658733,
- -0.0336679071187973,
- 0.0741133987903595,
- 0.000431845779530704,
- 0.07363507896661758,
- 0.0031839823350310326,
- -0.00040431905654259026,
- 0.01650061272084713,
- 0.007624456193298101,
- 0.06514015048742294,
- 0.051970966160297394,
- -0.010348893702030182,
- 0.06578012555837631,
- 0.07831622660160065,
- 0.04779816418886185,
- -0.01240950170904398,
- -0.02060750499367714,
- 0.07813065499067307,
- -0.03470228239893913,
- 0.01887671649456024,
- 0.028356729075312614,
- -0.05351610109210014,
- 0.08760079741477966,
- -0.015595807693898678,
- 0.007014981005340815,
- -0.06063864007592201,
- -0.042931511998176575,
- 0.07730373740196228,
- -0.037875354290008545,
- 0.07836094498634338,
- -0.04130220413208008,
- 0.0705440416932106,
- -0.007345227524638176,
- 0.05163121223449707,
- -0.012839753180742264,
- -0.07341941446065903,
- -0.03230354189872742,
- 0.01301597524434328,
- 0.011173214763402939,
- -0.006930869072675705,
- 0.0052706697024405,
- 0.013250881806015968,
- -0.05817531421780586,
- 0.0065235961228609085,
- -0.0026184844318777323,
- -0.0016438463935628533,
- -0.04213429614901543,
- -0.11770816892385483,
- -0.053558554500341415,
- -0.026511071249842644,
- 0.012671275995671749,
- -0.0000136841144922073,
- 0.11976160854101181,
- 0.07123277336359024,
- 0.050456490367650986,
- -0.01037368830293417,
- -0.01517175231128931,
- 0.01248199213296175,
- -0.059970173984766006,
- 0.06398262828588486,
- 0.14928291738033295,
- 0.023706814274191856,
- 0.04686107859015465,
- -0.08637076616287231
- ]
- },
- {
- "keyword": "equipment",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05461341142654419,
- 0.04305725172162056,
- 0.02262897416949272,
- -0.03622124716639519,
- -0.07952773571014404,
- -0.05615835264325142,
- 0.1388648897409439,
- -0.005399452522397041,
- -0.023392677307128906,
- 0.03864416852593422,
- 0.06985907256603241,
- 0.010912314057350159,
- 0.06784552335739136,
- 0.010782052762806416,
- -0.02748834155499935,
- 0.014236269518733025,
- 0.05086847022175789,
- 0.006592866033315659,
- -0.10956767946481705,
- -0.044998496770858765,
- -0.03783662989735603,
- 0.05100739374756813,
- 0.02529802732169628,
- 0.01049512717872858,
- -0.06250765919685364,
- 0.0812271386384964,
- -0.07617531716823578,
- 0.005394152365624905,
- 0.047699157148599625,
- -0.1112736165523529,
- -0.011869345791637897,
- 0.007742804009467363,
- 0.015103786252439022,
- -0.022553620859980583,
- -0.041484612971544266,
- 0.07470659166574478,
- 0.06656042486429214,
- -0.026576915755867958,
- -0.022144580259919167,
- 0.01750894822180271,
- -0.0043930839747190475,
- -0.08347003161907196,
- 0.0166192427277565,
- -0.01807982102036476,
- 0.01187528669834137,
- 0.0819212794303894,
- 0.07769260555505753,
- -0.04089781641960144,
- 0.059069085866212845,
- 0.016166342422366142,
- -0.004846734926104546,
- -0.01221760269254446,
- -0.005584050435572863,
- 0.013498526066541672,
- 0.00039468874456360936,
- -0.04217662289738655,
- 0.02513304352760315,
- 0.028087904676795006,
- 0.005918537266552448,
- -0.032906424254179,
- 0.029546592384576797,
- 0.027590801939368248,
- -0.0718625858426094,
- 0.030344685539603233,
- 0.027991048991680145,
- -0.01599511317908764,
- -0.030277181416749954,
- 0.0247690137475729,
- -0.022359753027558327,
- 0.008404651656746864,
- 0.01765931397676468,
- -0.015174413099884987,
- 0.026996850967407227,
- 0.06609351933002472,
- 0.07235005497932434,
- -0.034238722175359726,
- 0.0533178336918354,
- -0.05855637043714523,
- 0.08738496899604797,
- -0.04057098180055618,
- 0.001861531869508326,
- -0.026909172534942627,
- -0.050796251744031906,
- 0.003020169213414192,
- 0.040963415056467056,
- -0.010512175038456917,
- 0.0016442980850115418,
- 0.023758145049214363,
- -0.02381136640906334,
- -0.0006766891456209123,
- -0.018288685008883476,
- -0.06711235642433167,
- 0.026868242770433426,
- 0.006068801041692495,
- 0.010135915130376816,
- 0.022643355652689934,
- 0.005480235908180475,
- -0.055437199771404266,
- -0.08283128589391708,
- 0.20655786991119385,
- 0.057463303208351135,
- 0.0033893012441694736,
- 0.07781936228275299,
- 0.022853270173072815,
- -0.11143835633993149,
- -0.039033111184835434,
- -0.07950058579444885,
- 0.0368349514901638,
- 0.03383854776620865,
- -0.047946762293577194,
- -0.03227321803569794,
- 0.010869313962757587,
- -0.15465334057807922,
- -0.01836448907852173,
- 0.006752999499440193,
- -0.006049955729395151,
- -0.05628083273768425,
- 0.03745655342936516,
- -0.04212244227528572,
- -0.04931585490703583,
- -0.0010592940961942077,
- -0.02320917136967182,
- 0.02609877847135067,
- 0.0007122193346731365,
- 0.025656497105956078,
- 0.0072790575213730335,
- 0.053262755274772644,
- -5.5948759326760516e-33,
- 0.014218906871974468,
- -0.03510954976081848,
- -0.014242754317820072,
- 0.03152897208929062,
- -0.015892179682850838,
- 0.03652322664856911,
- 0.010887435637414455,
- 0.042783960700035095,
- 0.07646746188402176,
- 0.07718614488840103,
- -0.03326547145843506,
- 0.14975285530090332,
- -0.07537774741649628,
- 0.06417806446552277,
- 0.1663665622472763,
- -0.06637425720691681,
- 0.003936565946787596,
- 0.06072637438774109,
- -0.02095058560371399,
- 0.0030829678289592266,
- -0.07004627585411072,
- -0.025450287386775017,
- 0.0232863686978817,
- 0.048477280884981155,
- 0.11269845813512802,
- -0.01306848507374525,
- 0.04833712428808212,
- 0.003054034197703004,
- 0.0005966104217804968,
- 0.03083857335150242,
- -0.013320176862180233,
- 0.026093723252415657,
- 0.009403436444699764,
- -0.03411601856350899,
- -0.014249264262616634,
- -0.014023340307176113,
- -0.06754322350025177,
- -0.09782937914133072,
- 0.006664534565061331,
- -0.04670380428433418,
- 0.04068727046251297,
- 0.008049270138144493,
- -0.028619395568966866,
- -0.031400881707668304,
- -0.03768346086144447,
- 0.013840096071362495,
- 0.03996754437685013,
- 0.054707542061805725,
- -0.06926529109477997,
- 0.033633336424827576,
- -0.014079298824071884,
- 0.03979622945189476,
- -0.0008036845247261226,
- -0.0596986748278141,
- 0.009794230572879314,
- -0.0007918238407000899,
- 0.036005448549985886,
- 0.01630372740328312,
- 0.035666365176439285,
- -0.014559335075318813,
- 0.016857851296663284,
- 0.11073215305805206,
- 0.02471587061882019,
- 0.03622337803244591,
- 0.007964489050209522,
- 0.004797791130840778,
- 0.06807631999254227,
- -0.03351600468158722,
- 0.077062226831913,
- -0.03044247440993786,
- -0.09118334203958511,
- -0.020845258608460426,
- -0.02155078388750553,
- 0.003661828115582466,
- 0.027301859110593796,
- 0.06701868027448654,
- -0.0696742907166481,
- -0.019243935123085976,
- -0.0545148067176342,
- -0.03807448223233223,
- -0.06621440500020981,
- 0.013156335800886154,
- -0.03098403476178646,
- 0.07686758041381836,
- -0.05476420000195503,
- -0.013652867637574673,
- 0.02751067839562893,
- -0.07967858761548996,
- -0.029756899923086166,
- -0.03811269626021385,
- -0.06263411045074463,
- 0.012600405141711235,
- -0.07244374603033066,
- 0.036211542785167694,
- 0.0039391228929162025,
- 4.2228121104313995e-33,
- -0.011142927221953869,
- 0.017564011737704277,
- 0.012062853202223778,
- 0.09676762670278549,
- 0.11158020049333572,
- -0.04852874204516411,
- 0.07760898768901825,
- -0.0483221560716629,
- -0.026665620505809784,
- 0.06683149188756943,
- -0.04088249430060387,
- -0.01370454765856266,
- -0.031106436625123024,
- 0.0058734482154250145,
- 0.04620794206857681,
- 0.04070109501481056,
- -0.06350749731063843,
- -0.014522332698106766,
- 0.041810084134340286,
- -0.03302742540836334,
- -0.003375375410541892,
- 0.04799669235944748,
- 0.06107743829488754,
- -0.06592455506324768,
- -0.06132844462990761,
- 0.042818550020456314,
- -0.08146379142999649,
- -0.030788034200668335,
- -0.0384252592921257,
- -0.00016473510186187923,
- 0.004551144782453775,
- -0.07199466228485107,
- 0.05355373024940491,
- 0.043081000447273254,
- -0.048834461718797684,
- 0.0742853656411171,
- 0.10210981965065002,
- 0.04118841513991356,
- -0.052662238478660583,
- -0.12481865286827087,
- 0.12541769444942474,
- 0.0060124630108475685,
- 0.039304185658693314,
- 0.0892985388636589,
- -0.05989750474691391,
- -0.07617878168821335,
- 0.016982629895210266,
- 0.01035918015986681,
- 0.03733377903699875,
- -0.006298985332250595,
- -0.031676243990659714,
- 0.0011672908440232277,
- 0.0014805133687332273,
- -0.05133165046572685,
- -0.02609429880976677,
- 0.012668110430240631,
- -0.05958216264843941,
- -0.03937413915991783,
- -0.007729640230536461,
- -0.009111282415688038,
- -0.009398172609508038,
- 0.0062135555781424046,
- -0.07983926683664322,
- 0.10552097111940384,
- 0.006482481956481934,
- 0.027716228738427162,
- 0.06569971889257431,
- -0.01890384778380394,
- -0.035910286009311676,
- 0.021113023161888123,
- 0.08453786373138428,
- 0.068370021879673,
- 0.07514729350805283,
- -0.018004560843110085,
- -0.06715241819620132,
- -0.018488524481654167,
- -0.10865844786167145,
- -0.030952250584959984,
- 0.042785678058862686,
- -0.0064134979620575905,
- 0.023669587448239326,
- -0.12879616022109985,
- -0.021520225331187248,
- 0.04520872235298157,
- -0.039090439677238464,
- -0.008579396642744541,
- 0.0688861757516861,
- -0.021749718114733696,
- -0.010352946817874908,
- -0.03148305043578148,
- -0.03016233630478382,
- 0.027590477839112282,
- -0.06079188361763954,
- 0.11209533363580704,
- -0.014692521654069424,
- -1.1602663718690565e-8,
- -0.06426182389259338,
- 0.07772541046142578,
- 0.006663808599114418,
- -0.004191671032458544,
- -0.021411923691630363,
- -0.0478537417948246,
- 0.03778264671564102,
- 0.06911849975585938,
- 0.005684534553438425,
- 0.022721216082572937,
- 0.02247133105993271,
- -0.0345347560942173,
- 0.06720846891403198,
- 0.05065298452973366,
- 0.05685611814260483,
- -0.006282227113842964,
- -0.06071114540100098,
- 0.05388112738728523,
- -0.0846138522028923,
- -0.08544741570949554,
- 0.09333571791648865,
- -0.04588929936289787,
- 0.06780637800693512,
- 0.027657251805067062,
- -0.01731756143271923,
- -0.04795461520552635,
- -0.04967436194419861,
- 0.06997719407081604,
- 0.057260144501924515,
- 0.1287008821964264,
- -0.00506863696500659,
- -0.019471844658255577,
- 0.054358042776584625,
- -0.012436127290129662,
- 0.00626106234267354,
- -0.0600108727812767,
- -0.049898624420166016,
- -0.028178563341498375,
- 0.01955348066985607,
- 0.036302000284194946,
- -0.05143618956208229,
- -0.06832586228847504,
- -0.001280400319956243,
- 0.03539091348648071,
- 0.024937935173511505,
- 0.006398920901119709,
- -0.10432102531194687,
- -0.037678252905607224,
- -0.05278806388378143,
- -0.009103530086576939,
- 0.008178268559277058,
- -0.021260283887386322,
- 0.04077865183353424,
- 0.03416468948125839,
- -0.006931051146239042,
- 0.03323649615049362,
- 0.06034989282488823,
- -0.03815103694796562,
- -0.04670779034495354,
- 0.08123782277107239,
- -0.035776663571596146,
- -0.002565462375059724,
- 0.031058335676789284,
- -0.02109832875430584
- ]
- },
- {
- "keyword": "hardware",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04664265736937523,
- 0.06687328964471817,
- 0.050010889768600464,
- -0.029228700324892998,
- -0.0688503235578537,
- -0.055150870233774185,
- 0.03926157206296921,
- 0.02437986433506012,
- -0.001225334475748241,
- 0.02259950153529644,
- 0.025815449655056,
- 0.027576560154557228,
- 0.00902510154992342,
- -0.029358670115470886,
- -0.05721849948167801,
- 0.00002076027521979995,
- 0.015564925968647003,
- 0.012285012751817703,
- -0.0695931613445282,
- -0.05100150778889656,
- 0.005855135153979063,
- -0.03198523074388504,
- -0.0663987323641777,
- -0.004904218018054962,
- -0.03432002291083336,
- 0.06721986085176468,
- 0.020959610119462013,
- 0.0017675254493951797,
- 0.031352680176496506,
- -0.07585673034191132,
- -0.033306606113910675,
- 0.017279205843806267,
- 0.0284251868724823,
- 0.029999807476997375,
- -0.03463229537010193,
- -0.04232987016439438,
- 0.0461784303188324,
- -0.13455605506896973,
- -0.0022696061059832573,
- -0.0730360597372055,
- -0.051570989191532135,
- -0.08441359549760818,
- 0.045883189886808395,
- 0.028054455295205116,
- 0.04555566608905792,
- 0.054107990115880966,
- 0.040288038551807404,
- -0.018333163112401962,
- 0.004850257653743029,
- -0.0014070016331970692,
- -0.07843146473169327,
- -0.00016901851631700993,
- 0.004145835526287556,
- 0.02836376428604126,
- -0.048672351986169815,
- 0.016317056491971016,
- 0.07838708907365799,
- -0.013611952774226665,
- -0.008877035230398178,
- -0.01468314416706562,
- 0.046048954129219055,
- -0.05711960792541504,
- -0.06478282064199448,
- 0.04939356818795204,
- 0.02429967187345028,
- -0.024192221462726593,
- 0.03075060434639454,
- -0.04669101908802986,
- 0.03447407856583595,
- 0.028015872463583946,
- 0.03533225134015083,
- -0.04976129159331322,
- -0.02301451377570629,
- 0.03705471381545067,
- 0.04698825627565384,
- -0.04056352749466896,
- 0.027873795479536057,
- -0.07445967197418213,
- 0.08411864191293716,
- -0.03306931257247925,
- -0.010775664821267128,
- -0.045115936547517776,
- -0.09965085983276367,
- 0.0021927703637629747,
- 0.07128987461328506,
- -0.007541379891335964,
- -0.041991185396909714,
- 0.07197967171669006,
- -0.04830906167626381,
- -0.09480492025613785,
- -0.04559209942817688,
- -0.030927244573831558,
- 0.025803890079259872,
- -0.03185325488448143,
- -0.005433554761111736,
- 0.012134650722146034,
- -0.011982488445937634,
- -0.15456025302410126,
- -0.08278951793909073,
- 0.18700678646564484,
- 0.013459236361086369,
- 0.03918055444955826,
- 0.03678242862224579,
- 0.03288769721984863,
- -0.05982154607772827,
- -0.007457028608769178,
- -0.10489324480295181,
- 0.07961949706077576,
- -0.06803498417139053,
- -0.019198881462216377,
- -0.05765676498413086,
- 0.005356560926884413,
- -0.06295529752969742,
- 0.016408871859312057,
- 0.026573559269309044,
- -0.04313387721776962,
- -0.05086078122258186,
- 0.06023897975683212,
- 0.06876559555530548,
- -0.014211753383278847,
- -0.034139178693294525,
- -0.05876249819993973,
- -0.03113928809762001,
- -0.0033208071254193783,
- 0.01271876972168684,
- -0.0497240275144577,
- -0.013746082782745361,
- -4.828734999900148e-33,
- 0.003791382536292076,
- 0.01328964438289404,
- -0.010647198185324669,
- -0.03209492936730385,
- -0.03754894807934761,
- 0.007647581398487091,
- 0.010597757995128632,
- 0.02913983352482319,
- 0.03986397758126259,
- 0.11660923063755035,
- 0.03285153582692146,
- 0.037428539246320724,
- 0.0007450612029060721,
- 0.07416798919439316,
- 0.20167669653892517,
- -0.07132428139448166,
- -0.021681200712919235,
- 0.03162442520260811,
- 0.02013728953897953,
- 0.00007253954390762374,
- 0.008799653500318527,
- 0.03440278768539429,
- 0.05319269001483917,
- 0.023702649399638176,
- 0.06901516020298004,
- -0.02821798250079155,
- -0.07507259398698807,
- -0.04009915515780449,
- 0.002417788840830326,
- 0.024761885404586792,
- -0.03344607353210449,
- 0.02482341229915619,
- 0.009963629767298698,
- -0.047715719789266586,
- 0.06508395075798035,
- -0.009799376130104065,
- 0.012802344746887684,
- -0.10673882812261581,
- 0.05817577987909317,
- -0.00820120982825756,
- -0.01885591261088848,
- 0.029943691566586494,
- -0.008492504246532917,
- -0.08581363409757614,
- 0.008853629231452942,
- 0.03837274760007858,
- 0.05407633259892464,
- 0.011520146392285824,
- -0.07236620038747787,
- 0.01826421171426773,
- -0.07013795524835587,
- 0.05951659381389618,
- 0.027260631322860718,
- -0.039695046842098236,
- 0.04243607074022293,
- -0.02516474388539791,
- 0.05486704036593437,
- 0.014286333695054054,
- 0.10487237572669983,
- 0.12442857772111893,
- -0.02444399520754814,
- 0.060561154037714005,
- 0.06551942974328995,
- -0.014799687080085278,
- -0.019872473552823067,
- 0.030489929020404816,
- 0.107378289103508,
- 0.030471302568912506,
- -0.03329465910792351,
- 0.005326678976416588,
- -0.028067512437701225,
- -0.07939300686120987,
- -0.012041197158396244,
- -0.018998263403773308,
- -0.0066359625197947025,
- 0.0709984079003334,
- -0.08087468147277832,
- -0.03448448330163956,
- -0.12074015289545059,
- -0.023416442796587944,
- -0.09996624290943146,
- 0.023846931755542755,
- 0.020524602383375168,
- 0.0660361722111702,
- 0.04531124234199524,
- 0.04606149345636368,
- -0.03012562356889248,
- -0.07921186834573746,
- 0.002274623839184642,
- -0.014611735008656979,
- -0.046965427696704865,
- 0.0059870085678994656,
- 0.013119589537382126,
- 0.025891883298754692,
- 0.005748770199716091,
- 3.683894235669444e-33,
- -0.08834933489561081,
- -0.021121453493833542,
- 0.00823415257036686,
- 0.08757124096155167,
- 0.028631042689085007,
- -0.07614273577928543,
- 0.024769846349954605,
- -0.07310835272073746,
- 0.005316383671015501,
- 0.05083809792995453,
- -0.027284644544124603,
- 0.014962318353354931,
- 0.02461504563689232,
- -0.03327703848481178,
- 0.025195451453328133,
- 0.0656006932258606,
- -0.014870647341012955,
- -0.03762712702155113,
- 0.042716074734926224,
- 0.03243546187877655,
- 0.07597479969263077,
- 0.03670597821474075,
- 0.0013058019103482366,
- -0.020748047158122063,
- 0.015125606209039688,
- 0.03744180127978325,
- -0.0032661741133779287,
- -0.00787653774023056,
- -0.028147375211119652,
- 0.01902659237384796,
- 0.04510615020990372,
- -0.08284428715705872,
- 0.0446791835129261,
- 0.10933800041675568,
- 0.03609445318579674,
- -0.011859484016895294,
- 0.13216838240623474,
- 0.030125636607408524,
- 0.005407440476119518,
- -0.07595895975828171,
- 0.12974070012569427,
- 0.018073491752147675,
- 0.01555677317082882,
- 0.08636301010847092,
- -0.004551896825432777,
- -0.07980374991893768,
- -0.055691808462142944,
- -0.0022696852684020996,
- 0.04350249469280243,
- -0.011962607502937317,
- -0.024372151121497154,
- -0.015610200352966785,
- 0.08984488993883133,
- -0.06209022179245949,
- 0.021523142233490944,
- -0.05828643962740898,
- 0.019394615665078163,
- 0.034626055508852005,
- 0.037690289318561554,
- -0.032103005796670914,
- 0.0619945153594017,
- -0.07003630697727203,
- 0.009524079971015453,
- 0.02596322074532509,
- -0.030523104593157768,
- -0.022758688777685165,
- 0.11026088893413544,
- -0.006033736746758223,
- -0.017436400055885315,
- 0.0020650227088481188,
- 0.06493537873029709,
- 0.056400395929813385,
- 0.07557665556669235,
- 0.0030191801488399506,
- -0.06347297877073288,
- 0.03179437667131424,
- -0.059595026075839996,
- -0.028050879016518593,
- -0.013075951486825943,
- 0.003286599414423108,
- -0.03198334202170372,
- -0.06803541630506516,
- 0.02667102962732315,
- 0.03079252503812313,
- -0.02741752192378044,
- -0.006103665102273226,
- 0.04688115417957306,
- 0.001951933722011745,
- -0.032416123896837234,
- -0.10431456565856934,
- -0.03204780071973801,
- 0.05844195932149887,
- -0.043965328484773636,
- 0.005425785202533007,
- -0.09563858062028885,
- -1.0639210401564014e-8,
- 0.02710726484656334,
- -0.03164138272404671,
- 0.012645374983549118,
- -0.03455537557601929,
- 0.018018169328570366,
- -0.045077890157699585,
- 0.011070671491324902,
- -0.0010888013057410717,
- 0.04111763834953308,
- 0.01261950097978115,
- 0.05281762033700943,
- -0.040894608944654465,
- 0.06082646921277046,
- 0.0660829022526741,
- 0.11155500262975693,
- 0.07174430787563324,
- -0.033769652247428894,
- 0.07152259349822998,
- -0.06181906536221504,
- -0.07005806267261505,
- 0.04478532075881958,
- 0.01548947487026453,
- 0.10914522409439087,
- -0.0030799107626080513,
- 0.007939380593597889,
- -0.012355762533843517,
- -0.006722522899508476,
- 0.015451010316610336,
- 0.07589750736951828,
- 0.08130370080471039,
- -0.0062983776442706585,
- -0.05392127484083176,
- 0.07817068696022034,
- -0.017792297527194023,
- 0.09221560508012772,
- -0.08682543784379959,
- 0.019914008677005768,
- 0.031448934227228165,
- 0.06319832056760788,
- -0.07493923604488373,
- -0.058907102793455124,
- -0.05599243938922882,
- -0.06348751485347748,
- 0.029127538204193115,
- 0.027699390426278114,
- -0.04046759754419327,
- -0.07751598209142685,
- -0.04470234364271164,
- -0.04867829009890556,
- 0.07459317147731781,
- -0.004640696570277214,
- 0.05141916126012802,
- 0.02844642475247383,
- -0.004148824140429497,
- 0.03052152693271637,
- 0.012529713101685047,
- -0.011504661291837692,
- -0.009154380299150944,
- -0.03217330947518349,
- 0.04642510041594505,
- 0.08105289936065674,
- -0.021683085709810257,
- 0.02375032752752304,
- 0.009116142056882381
- ]
- },
- {
- "keyword": "component",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.01286172866821289,
- 0.012299774214625359,
- -0.024137381464242935,
- 0.034235984086990356,
- 0.016801830381155014,
- 0.0514109767973423,
- 0.11567197740077972,
- 0.02769416756927967,
- 0.03503357619047165,
- -0.027519699186086655,
- 0.0296073816716671,
- -0.06802351027727127,
- -0.022225044667720795,
- 0.024115057662129402,
- 0.021295366808772087,
- -0.00817569624632597,
- 0.048684343695640564,
- -0.01312976237386465,
- -0.05662725120782852,
- 0.015929067507386208,
- -0.05254979804158211,
- -0.023336192592978477,
- -0.01251442264765501,
- -0.012503533624112606,
- -0.027537185698747635,
- 0.09501200169324875,
- 0.11274771392345428,
- -0.03525753319263458,
- 0.08088875561952591,
- -0.12364384531974792,
- 0.03398558124899864,
- 0.02676325850188732,
- -0.05422482639551163,
- -0.014482182450592518,
- -0.12099811434745789,
- 0.034983545541763306,
- 0.026361308991909027,
- -0.004524459596723318,
- -0.052197184413671494,
- -0.08698558807373047,
- 0.013476814143359661,
- -0.026215970516204834,
- -0.0623021237552166,
- -0.050794608891010284,
- 0.031235413625836372,
- -0.012895372696220875,
- -0.008750376291573048,
- -0.07095058262348175,
- 0.04605896770954132,
- -0.02058095671236515,
- -0.047989923506975174,
- -0.04558037593960762,
- 0.01514877937734127,
- 0.05836891010403633,
- -0.015160876326262951,
- 0.04578191787004471,
- -0.019145723432302475,
- 0.013177035376429558,
- 0.009212549775838852,
- -0.05139796808362007,
- 0.014974812977015972,
- -0.022297771647572517,
- 0.0015062475576996803,
- 0.04012822359800339,
- 0.07016905397176743,
- -0.021450679749250412,
- -0.050216708332300186,
- -0.05020677670836449,
- -0.06089125946164131,
- -0.050887513905763626,
- -0.015050596557557583,
- -0.02062372677028179,
- 0.07571128755807877,
- -0.03958161920309067,
- 0.04495226964354515,
- -0.0410497821867466,
- -0.030476039275527,
- -0.04379397630691528,
- 0.11552590876817703,
- 0.022969497367739677,
- 0.08393216133117676,
- 0.055745191872119904,
- -0.09038560837507248,
- 0.04217751696705818,
- 0.057436443865299225,
- 0.10341205447912216,
- 0.033940933644771576,
- -0.024484314024448395,
- -0.04116401448845863,
- -0.06440496444702148,
- -0.05652710795402527,
- 0.03227291256189346,
- 0.14441700279712677,
- 0.04138977825641632,
- -0.024073056876659393,
- 0.008356092497706413,
- -0.012629254721105099,
- 0.02637435495853424,
- -0.008772754110395908,
- 0.20313160121440887,
- 0.04659281671047211,
- 0.018340768292546272,
- -0.01573534496128559,
- 0.03315393999218941,
- -0.09449154138565063,
- -0.03820500150322914,
- -0.06532908231019974,
- 0.006363227963447571,
- 0.0500563308596611,
- -0.022105632349848747,
- -0.020578373223543167,
- -0.002994242124259472,
- -0.06758110970258713,
- -0.07641155272722244,
- 0.028438054025173187,
- -0.10351628810167313,
- -0.013646452687680721,
- 0.013927247375249863,
- 0.016460295766592026,
- -0.01467608381062746,
- 0.06133733317255974,
- 0.0009016502881422639,
- -0.027491651475429535,
- -0.003748323069885373,
- 0.015686698257923126,
- -0.03988851606845856,
- 0.023130079731345177,
- -3.6016052230080686e-33,
- 0.009617337957024574,
- -0.003328514751046896,
- -0.037025194615125656,
- 0.04343445971608162,
- 0.01396067626774311,
- 0.025091540068387985,
- 0.02981126308441162,
- -0.011391998268663883,
- -0.022904440760612488,
- 0.020156901329755783,
- -0.04869944974780083,
- 0.01817341335117817,
- -0.05735000595450401,
- 0.04270089417695999,
- 0.0854099839925766,
- -0.07585088908672333,
- 0.012420183047652245,
- 0.04209711030125618,
- -0.04973677918314934,
- -0.10830071568489075,
- -0.03697088360786438,
- 0.0494181364774704,
- -0.01762825809419155,
- 0.06693285703659058,
- 0.035906173288822174,
- -0.00673786923289299,
- 0.006435169838368893,
- -0.013802330009639263,
- -0.103375144302845,
- -0.01965414732694626,
- 0.056753817945718765,
- 0.054417677223682404,
- 0.00009736398351378739,
- 0.07183875143527985,
- -0.009445172734558582,
- -0.05026155710220337,
- -0.049816399812698364,
- -0.029879454523324966,
- -0.04971594363451004,
- -0.03424426168203354,
- -0.027370596304535866,
- -0.0337788388133049,
- -0.02170969359576702,
- 0.0008568958146497607,
- 0.027773326262831688,
- -0.004729274194687605,
- 0.062304262071847916,
- 0.08757738023996353,
- 0.08201568573713303,
- 0.02591882459819317,
- 0.013280292972922325,
- 0.06087936460971832,
- 0.06736903637647629,
- 0.008701599203050137,
- 0.037920136004686356,
- 0.03587270900607109,
- 0.02739378809928894,
- 0.06509540975093842,
- 0.08966342359781265,
- -0.05334049463272095,
- -0.012126806192100048,
- 0.057250019162893295,
- -0.018710142001509666,
- 0.053107038140296936,
- -0.08649811893701553,
- 0.06998787075281143,
- 0.020602094009518623,
- -0.05953292176127434,
- 0.014138646423816681,
- -0.025348544120788574,
- -0.013705157674849033,
- -0.03783110901713371,
- 0.019666148349642754,
- 0.01602974534034729,
- 0.011466694064438343,
- -0.042367272078990936,
- -0.0993480458855629,
- -0.04815789684653282,
- -0.10113684087991714,
- -0.009179088287055492,
- -0.1572883129119873,
- -0.02994750626385212,
- -0.02241266518831253,
- 0.07949639111757278,
- 0.0777769535779953,
- -0.011886002495884895,
- -0.02313832938671112,
- -0.055929362773895264,
- 0.04665355384349823,
- 0.038010433316230774,
- -0.06057344377040863,
- -0.02378236874938011,
- -0.028955841436982155,
- 0.013626676052808762,
- 0.013006537221372128,
- 3.818243321734847e-33,
- -0.008641979657113552,
- -0.01442026998847723,
- -0.012142683379352093,
- 0.04733309894800186,
- 0.034828417003154755,
- -0.04182101786136627,
- -0.0480656698346138,
- -0.009723832830786705,
- -0.018960587680339813,
- 0.09533929824829102,
- 0.05808033421635628,
- 0.016114093363285065,
- 0.06831642985343933,
- -0.02888498827815056,
- -0.034955862909555435,
- 0.17310680449008942,
- 0.08827817440032959,
- 0.005172130186110735,
- 0.022959209978580475,
- -0.05301803722977638,
- -0.041382018476724625,
- -0.04552384093403816,
- -0.005036125425249338,
- -0.041240543127059937,
- -0.04020313918590546,
- 0.07050509750843048,
- 0.13705231249332428,
- 0.0149465287104249,
- 0.01157335564494133,
- -0.002169783692806959,
- -0.006946552079170942,
- -0.05129997059702873,
- -0.02158336341381073,
- -0.03230427950620651,
- -0.03172102943062782,
- 0.02022070251405239,
- 0.06532122939825058,
- -0.05276993662118912,
- -0.06005663052201271,
- -0.07441592216491699,
- 0.019057922065258026,
- 0.01023728959262371,
- 0.018280167132616043,
- 0.16698043048381805,
- -0.08990461379289627,
- -0.0627330020070076,
- 0.05605094134807587,
- 0.040424447506666183,
- 0.041285041719675064,
- 0.05997481569647789,
- -0.05719011649489403,
- -0.07025335729122162,
- 0.040714628994464874,
- -0.04888893663883209,
- 0.024653103202581406,
- 0.016723381355404854,
- 0.013535706326365471,
- 0.022971579805016518,
- 0.08034351468086243,
- -0.029021259397268295,
- 0.05159059539437294,
- 0.00328939245082438,
- 0.005655221175402403,
- -0.0009491711389273405,
- 0.0655999407172203,
- 0.011250060051679611,
- -0.044325195252895355,
- 0.057267095893621445,
- 0.051980432122945786,
- -0.005955332890152931,
- 0.07312161475419998,
- 0.060675691813230515,
- 0.00922443252056837,
- -0.015334718860685825,
- 0.004894385579973459,
- -0.05389673635363579,
- -0.03843194991350174,
- 0.032942406833171844,
- 0.040574997663497925,
- -0.008370056748390198,
- 0.012888806872069836,
- -0.09930551052093506,
- 0.007158542983233929,
- -0.03768644481897354,
- 0.00620280159637332,
- -0.05797991901636124,
- 0.031417448073625565,
- 0.025753458961844444,
- 0.00796342734247446,
- 0.0005998093984089792,
- -0.03711231052875519,
- 0.08914560824632645,
- 0.020803138613700867,
- 0.02132456749677658,
- -0.014779086224734783,
- -1.132254912050712e-8,
- -0.005355244968086481,
- -0.01345204096287489,
- -0.07983139902353287,
- -0.10260720551013947,
- 0.06818407028913498,
- -0.0448303185403347,
- -0.005727158393710852,
- 0.01213831640779972,
- -0.02050148881971836,
- 0.08990880101919174,
- 0.0989113450050354,
- -0.02321702241897583,
- -0.014640514738857746,
- 0.03904932364821434,
- 0.08746540546417236,
- -0.01185278408229351,
- -0.09478844702243805,
- 0.0801517516374588,
- -0.07876544445753098,
- -0.044982071965932846,
- 0.04751771688461304,
- 0.032262858003377914,
- 0.02927291952073574,
- 0.027617786079645157,
- 0.041409846395254135,
- -0.03995344042778015,
- 0.013346344232559204,
- 0.062383994460105896,
- 0.06749062985181808,
- 0.009769110009074211,
- -0.0435759536921978,
- 0.04601539298892021,
- 0.0065804156474769115,
- -0.0626516044139862,
- -0.013797477819025517,
- 0.04841464012861252,
- -0.03499085456132889,
- 0.014859401620924473,
- 0.04055672511458397,
- -0.022884856909513474,
- -0.013189728371798992,
- -0.06840159744024277,
- 0.01539248414337635,
- 0.0009962087497115135,
- -0.05003741756081581,
- 0.06905540078878403,
- -0.0929621160030365,
- -0.04477525129914284,
- 0.0028942949138581753,
- -0.009203133173286915,
- -0.07363996654748917,
- -0.0015658154152333736,
- -0.07790105044841766,
- 0.046677056699991226,
- 0.00719309039413929,
- -0.0182722806930542,
- 0.02793271839618683,
- -0.02247857302427292,
- 0.022510476410388947,
- -0.0026002710219472647,
- 0.03467016667127609,
- 0.08205138146877289,
- 0.006014034152030945,
- -0.0387406162917614
- ]
- },
- {
- "keyword": "part",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.009253577329218388,
- 0.0825541689991951,
- 0.11599498242139816,
- 0.0405496321618557,
- 0.030734339728951454,
- -0.06374108791351318,
- 0.1052728146314621,
- -0.007337226532399654,
- -0.0070583634078502655,
- -0.04883911833167076,
- -0.024696536362171173,
- -0.052350565791130066,
- -0.009550603106617928,
- -0.005604032427072525,
- -0.02995733730494976,
- -0.043495550751686096,
- 0.011933675967156887,
- 0.05070105567574501,
- -0.1248505562543869,
- 0.03191916272044182,
- -0.10727616399526596,
- 0.07880166918039322,
- 0.0026481663808226585,
- -0.021823257207870483,
- -0.01370902918279171,
- 0.016970209777355194,
- 0.0031461850740015507,
- 0.06413492560386658,
- 0.0758926048874855,
- -0.07692074775695801,
- 0.027592262253165245,
- 0.04818492755293846,
- 0.015262993052601814,
- 0.05671985447406769,
- -0.0005245827487669885,
- 0.08822213858366013,
- 0.06477640569210052,
- -0.003920438699424267,
- 0.03864525258541107,
- -0.0840538889169693,
- 0.024633217602968216,
- -0.059593409299850464,
- -0.06449823826551437,
- 0.06592870503664017,
- 0.05954320728778839,
- 0.022957265377044678,
- 0.05350011959671974,
- -0.0331060029566288,
- -0.006489794235676527,
- 0.04387747123837471,
- -0.0058640846982598305,
- -0.0025591151788830757,
- -0.018952127546072006,
- 0.019031384959816933,
- 0.011966885067522526,
- 0.036672770977020264,
- -0.006734900176525116,
- -0.060439422726631165,
- -0.02790205553174019,
- 0.0020760504994541407,
- 0.11451997607946396,
- 0.027619969099760056,
- -0.10972911864519119,
- 0.024223772808909416,
- 0.036754120141267776,
- -0.08680713921785355,
- 0.06703212112188339,
- -0.030978703871369362,
- -0.08461792021989822,
- -0.017200257629156113,
- 0.01979195885360241,
- 0.03965073451399803,
- 0.01371425949037075,
- 0.003635694505646825,
- -0.0076861921697855,
- 0.017848066985607147,
- 0.0857592448592186,
- -0.009424307383596897,
- 0.06404367834329605,
- 0.019678857177495956,
- 0.049630917608737946,
- 0.04473721981048584,
- -0.06386348605155945,
- -0.026594078168272972,
- -0.043465711176395416,
- -0.01751350238919258,
- 0.04581870511174202,
- -0.0414402075111866,
- -0.07872442901134491,
- 0.01369672454893589,
- -0.04574424400925636,
- -0.04181630536913872,
- 0.13244527578353882,
- -0.02594323270022869,
- -0.01274955179542303,
- -0.018801510334014893,
- 0.005983519833534956,
- 0.04788915440440178,
- 0.018559088930487633,
- 0.23870545625686646,
- -0.04788900539278984,
- 0.06429659575223923,
- 0.050363898277282715,
- -0.08269364386796951,
- -0.08644329011440277,
- -0.015358439646661282,
- -0.08840961754322052,
- 0.07890167832374573,
- -0.0006029402138665318,
- -0.01268189586699009,
- -0.06046903878450394,
- -0.03743143379688263,
- 0.0308564230799675,
- 0.050022296607494354,
- 0.0528402216732502,
- -0.09211106598377228,
- 0.034502480179071426,
- 0.03844786435365677,
- 0.05339481309056282,
- 0.005505543202161789,
- 0.10025816410779953,
- 0.031655434519052505,
- 0.02064155414700508,
- 0.053900234401226044,
- -0.05057485029101372,
- -0.1295791119337082,
- 0.04054655879735947,
- -4.63067669141407e-33,
- 0.03277086466550827,
- -0.07307078689336777,
- -0.00485700648277998,
- -0.019049886614084244,
- -0.01686766929924488,
- 0.04106622561812401,
- 0.05051898956298828,
- -0.020666319876909256,
- -0.08249016851186752,
- 0.0500982441008091,
- -0.018058672547340393,
- -0.04224035143852234,
- -0.016095856204628944,
- 0.016339672729372978,
- 0.10269340872764587,
- -0.005489318165928125,
- -0.03257152438163757,
- 0.01573002152144909,
- -0.07479382306337357,
- -0.03566255792975426,
- -0.05044646933674812,
- 0.08416332304477692,
- -0.021970633417367935,
- 0.06884493678808212,
- -0.021201228722929955,
- -0.06892016530036926,
- 0.018843160942196846,
- -0.07998768985271454,
- 0.011562214232981205,
- 0.017124250531196594,
- -0.030480870977044106,
- 0.04918329790234566,
- -0.08790088444948196,
- 0.0033855552319437265,
- 0.02489221654832363,
- -0.09906542301177979,
- 0.007376108784228563,
- -0.04791214317083359,
- -0.06460556387901306,
- -0.0013246178859844804,
- -0.05566895008087158,
- 0.008467115461826324,
- 0.018803056329488754,
- -0.023144887760281563,
- -0.030184179544448853,
- 0.017907388508319855,
- -0.035163138061761856,
- 0.04186709225177765,
- -0.014339364133775234,
- 0.026169303804636,
- -0.024208668619394302,
- -0.02182720974087715,
- 0.023259824141860008,
- -0.032320115715265274,
- -0.04403578117489815,
- 0.02228648215532303,
- -0.015859942883253098,
- -0.05458275228738785,
- 0.016313116997480392,
- -0.05208250880241394,
- 0.008976095356047153,
- 0.03895234316587448,
- -0.05210831016302109,
- -0.0136818652972579,
- -0.028671493753790855,
- 0.05470024421811104,
- 0.0657319724559784,
- -0.03202323988080025,
- 0.000829448807053268,
- -0.04512790963053703,
- -0.10206294059753418,
- -0.05206969752907753,
- 0.05645303428173065,
- 0.05712089687585831,
- 0.003114343388006091,
- -0.042018067091703415,
- 0.012075100094079971,
- 0.05366571620106697,
- -0.08207102119922638,
- 0.003466194262728095,
- 0.01755860261619091,
- -0.04431602731347084,
- -0.015871508046984673,
- 0.04079144075512886,
- 0.035541094839572906,
- 0.04650728031992912,
- 0.03556317090988159,
- -0.08837684243917465,
- -0.03477562591433525,
- -0.000038587022572755814,
- -0.08904700726270676,
- 0.012783574871718884,
- -0.035527992993593216,
- 0.06512151658535004,
- -0.036503326147794724,
- 3.0075654794001793e-33,
- -0.07890333980321884,
- -0.04196224734187126,
- 0.051431749016046524,
- -0.0017810675781220198,
- 0.014580611139535904,
- -0.020773133262991905,
- 0.010955460369586945,
- -0.023104490712285042,
- 0.016011111438274384,
- 0.14381161332130432,
- -0.07019984722137451,
- -0.06965789198875427,
- 0.030451137572526932,
- 0.0003626763354986906,
- -0.013008305802941322,
- 0.009817524813115597,
- 0.09592355042695999,
- 0.03988850116729736,
- 0.020404459908604622,
- 0.03765948489308357,
- -0.06821348518133163,
- -0.019948892295360565,
- 0.024561643600463867,
- 0.0022086137905716896,
- -0.03526976332068443,
- 0.05567575991153717,
- 0.07424765080213547,
- 0.04230562597513199,
- 0.003646561410278082,
- 0.0695052221417427,
- 0.05446784943342209,
- -0.04528452083468437,
- -0.09425633400678635,
- -0.0010143659310415387,
- -0.05761738494038582,
- 0.09448707848787308,
- 0.025720568373799324,
- 0.03832555562257767,
- 0.09517316520214081,
- -0.02309473790228367,
- 0.07207925617694855,
- -0.009941644966602325,
- 0.00543334661051631,
- 0.11849389225244522,
- -0.003649946767836809,
- -0.017292071133852005,
- 0.09131624549627304,
- 0.04119749739766121,
- -0.01867819018661976,
- 0.05575469881296158,
- -0.06377828866243362,
- -0.0021136754658073187,
- -0.003871538210660219,
- 0.013082054443657398,
- 0.00662441598251462,
- 0.006612859666347504,
- 0.02903345786035061,
- -0.00788111425936222,
- 0.032178740948438644,
- -0.03141302615404129,
- -0.03094414807856083,
- 0.04987768828868866,
- -0.006966332904994488,
- -0.05579139664769173,
- 0.03966729715466499,
- -0.003371849190443754,
- -0.022161709144711494,
- 0.006525016389787197,
- 0.0712425634264946,
- -0.05799169838428497,
- 0.027437260374426842,
- 0.015708263963460922,
- 0.004853567108511925,
- -0.0024471613578498363,
- 0.059617213904857635,
- -0.050060342997312546,
- -0.09811297059059143,
- 0.03767549991607666,
- -0.012972458265721798,
- 0.024335360154509544,
- -0.05044470727443695,
- -0.10495861619710922,
- -0.04767272621393204,
- -0.02182459831237793,
- -0.027615630999207497,
- -0.042891085147857666,
- 0.02631230466067791,
- -0.015750689432024956,
- 0.0027776670176535845,
- -0.0758817121386528,
- -0.019678013399243355,
- 0.06539038568735123,
- 0.0565638430416584,
- -0.0060698967427015305,
- 0.07444396615028381,
- -1.2915689850956369e-8,
- 0.04103962332010269,
- 0.0249929241836071,
- -0.07069852203130722,
- -0.055341001600027084,
- 0.05599614605307579,
- 0.057687096297740936,
- -0.06247269734740257,
- 0.033752646297216415,
- 0.025747906416654587,
- 0.0651676207780838,
- 0.09984833002090454,
- -0.04247400537133217,
- 0.0335235670208931,
- -0.004311949480324984,
- -0.030046720057725906,
- 0.01988564431667328,
- -0.08508934080600739,
- 0.057603634893894196,
- -0.05893712118268013,
- 0.019525889307260513,
- -0.009550530463457108,
- -0.017795322462916374,
- 0.008892938494682312,
- -0.07829134166240692,
- -0.012382643297314644,
- 0.00865951832383871,
- -0.05423922464251518,
- 0.11443392187356949,
- -0.014962272718548775,
- -0.0012960592284798622,
- -0.021545173600316048,
- 0.030932001769542694,
- -0.05666486546397209,
- 0.007233245298266411,
- 0.016839470714330673,
- -0.015627359971404076,
- -0.03043629787862301,
- 0.022947536781430244,
- 0.026918990537524223,
- -0.02832058072090149,
- 0.01284689363092184,
- -0.06280068308115005,
- 0.08028572052717209,
- 0.02588500641286373,
- -0.0285379309207201,
- 0.0019219047389924526,
- -0.055635154247283936,
- -0.03576616570353508,
- 0.006371529307216406,
- -0.017935559153556824,
- -0.04031118378043175,
- 0.0279470793902874,
- -0.034977059811353683,
- 0.02731754444539547,
- 0.03207769989967346,
- -0.005312889348715544,
- 0.015105662867426872,
- -0.02168629691004753,
- -0.07040686160326004,
- 0.026428623124957085,
- 0.15870462357997894,
- 0.08322542160749435,
- 0.02261456474661827,
- 0.0009882295271381736
- ]
- },
- {
- "keyword": "accessory",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08638165146112442,
- 0.08687728643417358,
- 0.01714804582297802,
- 0.010278559289872646,
- 0.0007752153906039894,
- 0.00015237345360219479,
- 0.20417527854442596,
- 0.07489380240440369,
- -0.020979955792427063,
- -0.004690554924309254,
- 0.11477039009332657,
- -0.018748316913843155,
- 0.023187512531876564,
- 0.030536191537976265,
- 0.007165486924350262,
- -0.01567390002310276,
- 0.05723653361201286,
- 0.07462331652641296,
- -0.07763224840164185,
- -0.006121727172285318,
- -0.10256492346525192,
- 0.0035821176134049892,
- 0.026734333485364914,
- 0.016543546691536903,
- -0.06806020438671112,
- 0.020000586286187172,
- -0.020119009539484978,
- -0.05328823998570442,
- 0.012729141861200333,
- -0.1058400496840477,
- 0.014387991279363632,
- -0.051265355199575424,
- -0.006728584412485361,
- -0.007100219838321209,
- -0.027794862166047096,
- 0.006133465562015772,
- 0.06663434207439423,
- -0.017915235832333565,
- -0.056359369307756424,
- -0.03616318851709366,
- -0.00553402304649353,
- -0.04646247252821922,
- -0.02804509364068508,
- -0.0006128890090622008,
- 0.017463838681578636,
- -0.00981883890926838,
- 0.049710143357515335,
- 0.008999553509056568,
- -0.004547041840851307,
- 0.06724974513053894,
- 0.044941309839487076,
- -0.005399312358349562,
- -0.01446616556495428,
- 0.000639819074422121,
- 0.006596917752176523,
- 0.059903983026742935,
- -0.008915243670344353,
- -0.028478847816586494,
- -0.0032071126624941826,
- 0.0011076758382841945,
- 0.03995729982852936,
- 0.0243078600615263,
- -0.025155769661068916,
- 0.026610862463712692,
- 0.01575535535812378,
- -0.03184496983885765,
- -0.0014234791742637753,
- -0.037567514926195145,
- -0.01692967675626278,
- 0.022787602618336678,
- 0.024313464760780334,
- -0.05881303921341896,
- -0.01919909566640854,
- 0.015036187134683132,
- 0.03985778987407684,
- -0.057102419435977936,
- 0.04361265152692795,
- -0.01318941731005907,
- 0.04067690297961235,
- 0.033134784549474716,
- -0.010340241715312004,
- 0.019023584201931953,
- -0.02465844713151455,
- 0.009971815161406994,
- 0.07430767267942429,
- 0.024660499766469002,
- -0.0023884777911007404,
- 0.009946689940989017,
- -0.08374118059873581,
- -0.015007144771516323,
- -0.029558951035141945,
- -0.06337840855121613,
- 0.015182828530669212,
- -0.05267352610826492,
- -0.04425908252596855,
- -0.03131866827607155,
- -0.011358099058270454,
- -0.017637645825743675,
- -0.07658307999372482,
- 0.21285855770111084,
- 0.019307076930999756,
- 0.035900674760341644,
- -0.008654172532260418,
- 0.03296903520822525,
- -0.03503270447254181,
- -0.05427958071231842,
- -0.08050908148288727,
- -0.012244711630046368,
- -0.013425487093627453,
- -0.03777904435992241,
- -0.02272931858897209,
- -0.03492151200771332,
- -0.05764690041542053,
- -0.043930359184741974,
- 0.041010260581970215,
- -0.004219867289066315,
- -0.05256297066807747,
- 0.05304821953177452,
- 0.06808280944824219,
- -0.03146990388631821,
- 0.0034870048984885216,
- 0.04068022966384888,
- 0.011678305454552174,
- 0.013769756071269512,
- -0.04820523411035538,
- -0.04285816103219986,
- -0.022920308634638786,
- -5.635813992811376e-33,
- 0.027893511578440666,
- 0.07467611879110336,
- 0.02819133922457695,
- 0.002384713152423501,
- 0.006177369970828295,
- 0.014752686955034733,
- 0.006847185082733631,
- 0.04289310425519943,
- -0.045129530131816864,
- 0.06138528138399124,
- -0.05022107809782028,
- 0.04879440739750862,
- -0.056356023997068405,
- 0.018340889364480972,
- 0.16281640529632568,
- -0.048238370567560196,
- -0.014551903121173382,
- 0.05198720842599869,
- -0.009788322262465954,
- -0.04497719556093216,
- -0.05516590178012848,
- 0.030003860592842102,
- -0.004719696473330259,
- 0.09859784692525864,
- 0.034106023609638214,
- 0.06414488703012466,
- 0.013115936890244484,
- 0.02127470262348652,
- 0.08043783158063889,
- 0.0468924455344677,
- -0.03943338990211487,
- 0.024492977187037468,
- 0.002391176065430045,
- 0.0042077056132256985,
- -0.03907468169927597,
- -0.0533565990626812,
- -0.09228991717100143,
- -0.1505151391029358,
- -0.0028675906360149384,
- -0.01998470351099968,
- -0.026822399348020554,
- -0.03137921914458275,
- -0.04456407576799393,
- -0.04881583899259567,
- -0.02059103362262249,
- 0.007024943362921476,
- 0.07220731675624847,
- 0.05767769366502762,
- -0.004385080654174089,
- 0.04175180941820145,
- -0.017388340085744858,
- -0.035984382033348083,
- 0.04390495643019676,
- -0.01931697502732277,
- -0.04846499115228653,
- -0.008867035619914532,
- 0.019475741311907768,
- 0.011891697533428669,
- 0.05589785426855087,
- -0.01795593649148941,
- 0.0377451628446579,
- 0.0753176286816597,
- -0.019433535635471344,
- 0.00895664282143116,
- 0.021163923665881157,
- 0.04534008353948593,
- 0.0709778219461441,
- -0.062007106840610504,
- 0.025052890181541443,
- 0.007499745115637779,
- -0.113792285323143,
- 0.05364976450800896,
- -0.005077668931335211,
- 0.013532512821257114,
- -0.00822825450450182,
- 0.04980088770389557,
- -0.04013312980532646,
- -0.042262908071279526,
- -0.03768354654312134,
- -0.05360566824674606,
- -0.16631977260112762,
- -0.023512715473771095,
- 0.06472456455230713,
- 0.047672025859355927,
- -0.04562658816576004,
- -0.0660753846168518,
- -0.025879498571157455,
- -0.08571679145097733,
- 0.004330099560320377,
- 0.02684665657579899,
- 0.00430601742118597,
- 0.05791280046105385,
- -0.04553906247019768,
- 0.03178473934531212,
- -0.008547970093786716,
- 4.326952093706623e-33,
- 0.026042792946100235,
- -0.06603165715932846,
- 0.06265860795974731,
- 0.00047114869812503457,
- 0.08831528574228287,
- -0.05941987782716751,
- -0.0027773899491876364,
- -0.042721815407276154,
- -0.0897705927491188,
- 0.0006073061376810074,
- -0.08866050839424133,
- 0.015265107154846191,
- 0.07010504603385925,
- 0.019347043707966805,
- 0.09468159079551697,
- 0.09935282170772552,
- -0.03698984533548355,
- -0.007304088678210974,
- 0.04721777141094208,
- -0.019709749147295952,
- -0.018824391067028046,
- 0.05115854740142822,
- 0.15460780262947083,
- -0.1011272445321083,
- -0.08545438200235367,
- 0.03842472285032272,
- 0.006519743241369724,
- -0.02491198107600212,
- 0.011430910788476467,
- -0.026870181784033775,
- 0.009640929289162159,
- -0.04445512592792511,
- -0.04022049531340599,
- 0.009235827252268791,
- 0.004707945045083761,
- 0.14308370649814606,
- -0.004021353553980589,
- 0.007914246059954166,
- -0.01787504367530346,
- -0.07048840075731277,
- 0.00578704196959734,
- 0.046019867062568665,
- 0.06582105904817581,
- 0.14561685919761658,
- -0.0018156594596803188,
- -0.03954831510782242,
- 0.003017522394657135,
- 0.00475894333794713,
- 0.03243037313222885,
- 0.0423937626183033,
- -0.11967647820711136,
- 0.0020062110852450132,
- 0.016724230721592903,
- -0.006382211577147245,
- -0.058002769947052,
- 0.03176272287964821,
- 0.029096955433487892,
- -0.09150376915931702,
- 0.03736666962504387,
- -0.04771862551569939,
- 0.06191031634807587,
- 0.02373085916042328,
- -0.03519052267074585,
- 0.05555744841694832,
- 0.0070318845100700855,
- -0.058551110327243805,
- 0.0014710191171616316,
- 0.028537392616271973,
- -0.059991829097270966,
- -0.0029580111149698496,
- 0.07597938179969788,
- 0.03399096429347992,
- -0.023207983002066612,
- 0.008274749852716923,
- -0.05352005735039711,
- -0.02592811919748783,
- -0.08113300800323486,
- -0.030788397416472435,
- 0.006695765070617199,
- -0.059829115867614746,
- -0.0600004605948925,
- -0.07394847273826599,
- 0.000807924778200686,
- -0.012731410562992096,
- 0.003248285036534071,
- -0.05142989009618759,
- 0.08280342072248459,
- 0.050902824848890305,
- 0.003196907928213477,
- -0.023546863347291946,
- -0.007707681972533464,
- 0.07898851484060287,
- -0.046626828610897064,
- 0.14138981699943542,
- -0.01442296989262104,
- -1.1940965549683824e-8,
- -0.0016629501478746533,
- 0.06100504472851753,
- -0.01979895867407322,
- -0.06207739934325218,
- 0.04825906828045845,
- -0.060217902064323425,
- -0.08604037761688232,
- 0.004306284245103598,
- 0.021363819018006325,
- 0.03427276760339737,
- 0.0608772411942482,
- -0.07304041087627411,
- -0.0011594557436183095,
- 0.02689800225198269,
- 0.1029973030090332,
- -0.004128530155867338,
- -0.057101525366306305,
- 0.057153623551130295,
- -0.061148859560489655,
- -0.04299413785338402,
- 0.05210820958018303,
- 0.028660748153924942,
- 0.01631677895784378,
- -0.005915104877203703,
- -0.017761239781975746,
- -0.03388972952961922,
- -0.013442915864288807,
- 0.09049565345048904,
- 0.03055114857852459,
- 0.07488971203565598,
- 0.02591208554804325,
- -0.0010014884173870087,
- -0.007655888330191374,
- -0.005125397816300392,
- -0.021336553618311882,
- -0.002412170171737671,
- -0.06271219998598099,
- -0.02636619657278061,
- 0.01655725948512554,
- 0.016750942915678024,
- 0.07918460667133331,
- -0.05022893846035004,
- -0.011823082342743874,
- 0.05115662142634392,
- 0.03081546351313591,
- 0.05017522722482681,
- 0.024079138413071632,
- -0.13667654991149902,
- -0.05677266791462898,
- 0.09484846144914627,
- -0.0357782281935215,
- -0.07214385271072388,
- -0.0234234556555748,
- 0.02801184542477131,
- -0.016019951552152634,
- 0.005633776541799307,
- 0.07909461110830307,
- -0.04063783213496208,
- 0.003182854736223817,
- 0.025502728298306465,
- 0.030983852222561836,
- 0.052895687520504,
- 0.07320214807987213,
- 0.02045205608010292
- ]
- },
- {
- "keyword": "vehicle",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.011141100898385048,
- 0.07924492657184601,
- 0.012491933070123196,
- 0.0446334034204483,
- -0.03029698133468628,
- -0.009806511923670769,
- 0.10237734019756317,
- 0.03753836080431938,
- 0.01898890733718872,
- -0.03077496588230133,
- 0.07157803326845169,
- 0.03122214414179325,
- 0.048959873616695404,
- 0.019700968638062477,
- -0.05300571024417877,
- 0.03470189869403839,
- 0.020680803805589676,
- -0.015777356922626495,
- -0.046412911266088486,
- -0.006268036086112261,
- -0.02751820534467697,
- 0.07590396702289581,
- 0.004018433392047882,
- -0.012014091946184635,
- -0.08765135705471039,
- 0.06110807880759239,
- -0.025150436908006668,
- 0.05979505926370621,
- -0.010001533664762974,
- -0.10673979669809341,
- -0.025321325287222862,
- 0.007183493115007877,
- -0.028815537691116333,
- -0.012600787915289402,
- -0.027782190591096878,
- -0.05205918475985527,
- -0.00682600075379014,
- -0.0038938899524509907,
- 0.028798339888453484,
- -0.06162996590137482,
- -0.014756563119590282,
- -0.11624373495578766,
- -0.00568407354876399,
- -0.036608465015888214,
- 0.027739953249692917,
- 0.03348657861351967,
- 0.075039342045784,
- 0.02246558852493763,
- 0.11539918929338455,
- -0.04914233833551407,
- -0.0435602031648159,
- 0.005978541914373636,
- -0.030393673107028008,
- 0.005277210380882025,
- -0.08198575675487518,
- -0.023629052564501762,
- -0.055565107613801956,
- 0.0577508807182312,
- -0.02899777516722679,
- -0.027069246396422386,
- 0.09674893319606781,
- -0.0035746304783970118,
- -0.034232623875141144,
- 0.03421955183148384,
- -0.013891682028770447,
- -0.037726737558841705,
- -0.017923327162861824,
- -0.03782319650053978,
- -0.018382171168923378,
- 0.03133093938231468,
- 0.07361173629760742,
- 0.02616887539625168,
- 0.014323483221232891,
- 0.025425802916288376,
- 0.042884789407253265,
- -0.08704230189323425,
- 0.09662193804979324,
- 0.00628037890419364,
- 0.07209113240242004,
- -0.0082310251891613,
- 0.005901368334889412,
- 0.000011020096280844882,
- 0.005586368031799793,
- -0.03083077073097229,
- 0.04592959210276604,
- -0.038259029388427734,
- 0.010031027719378471,
- 0.07146602123975754,
- -0.06584394723176956,
- 0.0673677995800972,
- -0.0698373094201088,
- -0.04606757313013077,
- 0.06801394373178482,
- 0.0015321868704631925,
- -0.09490541368722916,
- 0.028437277302145958,
- 0.030856741592288017,
- -0.011147723533213139,
- 0.04566306620836258,
- 0.20012879371643066,
- 0.030996864661574364,
- 0.04995724558830261,
- 0.038776542991399765,
- 0.01686849631369114,
- -0.06251035630702972,
- 0.0738392099738121,
- 0.0032366481609642506,
- 0.004513713996857405,
- 0.01563958078622818,
- -0.03418705612421036,
- 0.03889472410082817,
- -0.02750680223107338,
- -0.06410443037748337,
- 0.018267136067152023,
- -0.06847161054611206,
- -0.07524827867746353,
- -0.0940612405538559,
- 0.014241311699151993,
- -0.005271089728921652,
- 0.0142925214022398,
- -0.043780211359262466,
- -0.044183824211359024,
- 0.07845050096511841,
- 0.01912212185561657,
- 0.05075893551111221,
- -0.04437819868326187,
- 0.08283154666423798,
- -6.227532502418376e-33,
- -0.0893506407737732,
- -0.040277209132909775,
- 0.0142245227470994,
- 0.05861451104283333,
- -0.02254806086421013,
- 0.02071085013449192,
- -0.036292899399995804,
- 0.015607009641826153,
- -0.041952453553676605,
- 0.06049811840057373,
- -0.048212599009275436,
- -0.034579820930957794,
- -0.05525006726384163,
- -0.01627996563911438,
- 0.11504311859607697,
- -0.021944081410765648,
- -0.056195877492427826,
- -0.02220725454390049,
- -0.08135925978422165,
- -0.04312228038907051,
- -0.052424848079681396,
- 0.03799201920628548,
- 0.022718382999300957,
- 0.00415008282288909,
- 0.05686292424798012,
- -0.021514786407351494,
- 0.002668259432539344,
- -0.044912390410900116,
- 0.012884557247161865,
- 0.043043188750743866,
- -0.02970675565302372,
- 0.07737017422914505,
- 0.012606775388121605,
- 0.05879988521337509,
- -0.046724747866392136,
- 0.011748363263905048,
- -0.10608190298080444,
- -0.08729232847690582,
- -0.07470577210187912,
- -0.02586585469543934,
- 0.05431026592850685,
- -0.05242600291967392,
- -0.07386056333780289,
- 0.03750916197896004,
- -0.05890922620892525,
- 0.008480357937514782,
- 0.07103917747735977,
- 0.018070656806230545,
- -0.06091756373643875,
- 0.0964621976017952,
- -0.05197617784142494,
- -0.032448526471853256,
- -0.03789781033992767,
- -0.008550296537578106,
- -0.0797676369547844,
- 0.01256887149065733,
- 0.04701497405767441,
- 0.00039481130079366267,
- 0.024534102529287338,
- -0.03455644100904465,
- -0.03179597109556198,
- 0.11480171233415604,
- 0.04309070110321045,
- -0.04711509495973587,
- 0.03445425257086754,
- -0.024458928033709526,
- -0.0076864915899932384,
- -0.021462304517626762,
- 0.06979713588953018,
- 0.040485285222530365,
- 0.0020611656364053488,
- -0.03953130170702934,
- 0.03884787857532501,
- -0.007223514840006828,
- 0.06453262269496918,
- 0.014090470038354397,
- -0.0012383140856400132,
- -0.002521802671253681,
- -0.11132847517728806,
- -0.0037407497875392437,
- -0.08457382023334503,
- 0.01379382610321045,
- -0.019210800528526306,
- 0.021867476403713226,
- 0.06318888813257217,
- 0.0451958104968071,
- -0.08125219494104385,
- -0.10973650217056274,
- 0.05174269154667854,
- 0.036465272307395935,
- -0.04758123308420181,
- 0.004800844006240368,
- -0.061675529927015305,
- 0.02067742869257927,
- 0.05415144935250282,
- 4.74548538794896e-33,
- 0.05281544849276543,
- 0.002493230625987053,
- 0.02010260336101055,
- 0.06765679270029068,
- 0.06394270807504654,
- -0.009308794513344765,
- 0.03024926781654358,
- -0.017521951347589493,
- -0.06826790422201157,
- 0.05469181016087532,
- -0.065300352871418,
- -0.061574093997478485,
- 0.11034779995679855,
- 0.0605337880551815,
- 0.088530033826828,
- 0.02987731620669365,
- 0.09749449789524078,
- -0.0539192371070385,
- -0.030668480321764946,
- 0.0566800981760025,
- -0.07431637495756149,
- -0.016068974509835243,
- 0.03764989227056503,
- -0.008682970888912678,
- -0.01161894854158163,
- 0.011908168904483318,
- -0.0047212946228682995,
- 0.03144649416208267,
- -0.010412978008389473,
- -0.04518379643559456,
- -0.0055737667717039585,
- -0.06393904983997345,
- 0.042100001126527786,
- 0.007414327934384346,
- -0.03775326535105705,
- 0.04265483841300011,
- 0.013531832955777645,
- -0.023283353075385094,
- -0.07716353237628937,
- -0.04976717382669449,
- 0.06040717288851738,
- -0.04729800671339035,
- 0.05253039300441742,
- 0.15270450711250305,
- 0.013128535822033882,
- -0.06271528452634811,
- 0.03830835595726967,
- 0.022267447784543037,
- 0.0916387140750885,
- 0.03157854825258255,
- 0.011986148543655872,
- -0.020047640427947044,
- 0.03756934404373169,
- 0.034988950937986374,
- 0.023487290367484093,
- 0.02042706310749054,
- 0.08051393181085587,
- 0.01010521873831749,
- 0.018611233681440353,
- 0.025170061737298965,
- 0.05920983478426933,
- 0.02986185997724533,
- -0.0481061115860939,
- 0.000862860179040581,
- -0.06604911386966705,
- -0.10644198209047318,
- -0.029294563457369804,
- -0.05426131933927536,
- -0.0020267069339752197,
- -0.041273437440395355,
- 0.0752711221575737,
- -0.004566412419080734,
- -0.016230251640081406,
- 0.010154284536838531,
- -0.044898901134729385,
- -0.027682099491357803,
- -0.013467559590935707,
- -0.010645394213497639,
- 0.06192535534501076,
- -0.09837318956851959,
- 0.026049746200442314,
- -0.08069046586751938,
- 0.005852637346833944,
- 0.09473642706871033,
- -0.08206235617399216,
- -0.04427879676222801,
- 0.011602150276303291,
- -0.04120133817195892,
- 0.0086400480940938,
- 0.028145166113972664,
- 0.023488957434892654,
- 0.10696493834257126,
- -0.029717855155467987,
- 0.019695935770869255,
- -0.08152087032794952,
- -1.2607256572039205e-8,
- 0.02340410277247429,
- 0.037840861827135086,
- -0.012832836247980595,
- -0.05669329687952995,
- 0.02052932046353817,
- 0.018977340310811996,
- 0.05729621648788452,
- 0.026470759883522987,
- -0.0704302191734314,
- 0.010136423632502556,
- 0.06136448681354523,
- -0.02675079181790352,
- 0.019339963793754578,
- 0.05703657492995262,
- 0.006748930085450411,
- -0.0100879380479455,
- -0.024321941658854485,
- 0.046472832560539246,
- -0.055887699127197266,
- -0.01992207206785679,
- 0.000439529016148299,
- 0.005402383394539356,
- 0.014582289382815361,
- 0.1039503738284111,
- -0.029882358387112617,
- -0.0336257740855217,
- 0.0037566954270005226,
- 0.03621722012758255,
- 0.08645504713058472,
- -0.04977475479245186,
- -0.046154748648405075,
- 0.10475973039865494,
- 0.025034472346305847,
- -0.04135247319936752,
- 0.025232505053281784,
- -0.054350271821022034,
- -0.01827685907483101,
- 0.0690440759062767,
- 0.007245149929076433,
- -0.04520142450928688,
- 0.046048760414123535,
- 0.05835193768143654,
- 0.017011044546961784,
- -0.0333096869289875,
- 0.015287752263247967,
- 0.05113387107849121,
- -0.09699855744838715,
- -0.0712646022439003,
- -0.0708983913064003,
- -0.004662602208554745,
- -0.01814211718738079,
- -0.07595520466566086,
- -0.03629272058606148,
- 0.1597076654434204,
- -0.0022684719879180193,
- -0.016757193952798843,
- 0.014930768869817257,
- -0.03843598812818527,
- -0.05939454585313797,
- 0.027881110087037086,
- 0.014951392076909542,
- 0.09258321672677994,
- 0.0636649876832962,
- 0.008876550942659378
- ]
- },
- {
- "keyword": "car",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.031706303358078,
- 0.1090739294886589,
- 0.012603569775819778,
- 0.05875612422823906,
- -0.03913161903619766,
- 0.032443150877952576,
- 0.11871900409460068,
- 0.04347732663154602,
- 0.045808739960193634,
- -0.04559888690710068,
- 0.045352715998888016,
- -0.022702859714627266,
- 0.005007422529160976,
- -0.01037395279854536,
- -0.04202279448509216,
- -0.020416846498847008,
- -0.021520057693123817,
- -0.039590828120708466,
- -0.07697803527116776,
- -0.022707954049110413,
- -0.05239914357662201,
- 0.03923908248543739,
- -0.00925090629607439,
- 0.015342201106250286,
- -0.05537259206175804,
- 0.07754257321357727,
- -0.056645967066287994,
- 0.0490732342004776,
- 0.011177855543792248,
- -0.10490448027849197,
- -0.021789036691188812,
- 0.005290134344249964,
- 0.016191301867365837,
- -0.022881384938955307,
- -0.04616309329867363,
- -0.09729517996311188,
- 0.005249334964901209,
- -0.028749985620379448,
- 0.028241174295544624,
- -0.028791911900043488,
- -0.011920411139726639,
- -0.11371012777090073,
- -0.0052888840436935425,
- -0.021933499723672867,
- 0.031576115638017654,
- 0.006705002393573523,
- 0.11362700909376144,
- 0.05095486342906952,
- 0.09452921152114868,
- -0.05704883858561516,
- -0.05995466187596321,
- 0.003963576164096594,
- -0.04946236312389374,
- 0.00020597886759787798,
- -0.07043571770191193,
- 0.016947003081440926,
- -0.016442937776446342,
- 0.05985299497842789,
- -0.031032105907797813,
- -0.00032558682141825557,
- 0.0985727533698082,
- -0.04315575957298279,
- -0.045134078711271286,
- 0.01976390741765499,
- 0.004093770869076252,
- -0.02174166589975357,
- -0.017816348001360893,
- -0.02395077608525753,
- 0.011915639974176884,
- 0.07163872569799423,
- 0.04437648877501488,
- 0.02797030098736286,
- 0.021015474572777748,
- -0.023358749225735664,
- 0.036510270088911057,
- -0.06923259794712067,
- 0.0718323290348053,
- -0.021741079166531563,
- 0.09546470642089844,
- 0.00041138235246762633,
- 0.030502671375870705,
- -0.042172130197286606,
- -0.04710974916815758,
- -0.02699507400393486,
- 0.03139162063598633,
- -0.022900249809026718,
- 0.020867595449090004,
- 0.06543799489736557,
- -0.08448238670825958,
- 0.07370893657207489,
- -0.10432913154363632,
- -0.0415089949965477,
- 0.051431626081466675,
- 0.0013857162557542324,
- -0.12045218050479889,
- 0.06681808084249496,
- 0.049460381269454956,
- -0.0002181176678277552,
- 0.011466864496469498,
- 0.21399052441120148,
- 0.038175396621227264,
- 0.06393016129732132,
- 0.041776690632104874,
- 0.006140170618891716,
- -0.02680729329586029,
- 0.06640636920928955,
- -0.04457203671336174,
- 0.054260410368442535,
- 0.021719736978411674,
- -0.003955073654651642,
- 0.02969128079712391,
- -0.03352765738964081,
- -0.022747771814465523,
- -0.016876036301255226,
- -0.06816647946834564,
- -0.024289678782224655,
- -0.02423599176108837,
- 0.03220882639288902,
- -0.004973540548235178,
- 0.031579457223415375,
- -0.04988260194659233,
- -0.026957813650369644,
- 0.048451706767082214,
- 0.0276370607316494,
- -0.03141433745622635,
- -0.06770895421504974,
- 0.029203427955508232,
- -4.9059499177278026e-33,
- -0.01656186580657959,
- -0.09909208118915558,
- 0.027809269726276398,
- 0.08378437161445618,
- -0.039557091891765594,
- 0.04444229602813721,
- -0.026856575161218643,
- 0.04986778274178505,
- -0.040913525968790054,
- 0.04885135591030121,
- 0.02070101723074913,
- -0.08031062036752701,
- -0.062313247472047806,
- -0.01710464060306549,
- 0.13006338477134705,
- 0.04202951490879059,
- -0.05924342945218086,
- -0.008414932526648045,
- -0.1322765201330185,
- -0.06069551035761833,
- -0.04258914664387703,
- 0.03804663568735123,
- 0.04161852225661278,
- 0.08381255716085434,
- 0.04580060392618179,
- -0.004490819294005632,
- -0.017939992249011993,
- -0.0496942438185215,
- 0.023077819496393204,
- 0.017174800857901573,
- -0.011684676632285118,
- 0.07973558455705643,
- 0.019848685711622238,
- 0.025239121168851852,
- -0.02276533655822277,
- -0.009031354449689388,
- -0.05813630670309067,
- -0.0693182498216629,
- -0.0010724575258791447,
- -0.03006613440811634,
- 0.04502832144498825,
- -0.026710424572229385,
- -0.04956183582544327,
- 0.016851887106895447,
- -0.0039968909695744514,
- 0.010570227168500423,
- 0.0744377002120018,
- 0.034601807594299316,
- -0.053832363337278366,
- 0.03772368282079697,
- -0.0026279021985828876,
- -0.06206643581390381,
- -0.018041355535387993,
- 0.0330539345741272,
- -0.024024059996008873,
- 0.030029496178030968,
- 0.03116251341998577,
- 0.005581127945333719,
- -0.009061411023139954,
- -0.040713317692279816,
- -0.012632124125957489,
- 0.10882237553596497,
- 0.04718370735645294,
- 0.005031993146985769,
- 0.005592792760580778,
- 0.03790600970387459,
- -0.016813071444630623,
- -0.017234478145837784,
- 0.03121250681579113,
- 0.02465762570500374,
- -0.028923071920871735,
- -0.0296211875975132,
- 0.03536210581660271,
- -0.02673371694982052,
- 0.020866049453616142,
- 0.05401833727955818,
- -0.0113829979673028,
- 0.0030909364577382803,
- -0.103961281478405,
- -0.004232203122228384,
- -0.030029138550162315,
- 0.027615800499916077,
- -0.00725611113011837,
- 0.008864132687449455,
- 0.06593815237283707,
- 0.062243279069662094,
- -0.11511942744255066,
- -0.10746927559375763,
- 0.049230292439460754,
- 0.06195271760225296,
- -0.027047811076045036,
- -0.011118159629404545,
- -0.011344527825713158,
- 0.020791947841644287,
- 0.04734452813863754,
- 3.6778922349825426e-33,
- 0.012142487801611423,
- -0.04947079345583916,
- 0.0415191650390625,
- 0.06974257528781891,
- 0.08856803923845291,
- -0.019351758062839508,
- -0.030988480895757675,
- -0.026766108348965645,
- -0.017517032101750374,
- 0.0811612606048584,
- -0.07993406057357788,
- -0.05711328610777855,
- 0.13817080855369568,
- 0.06456799805164337,
- 0.06831221282482147,
- 0.019502967596054077,
- 0.1286207139492035,
- -0.05489743873476982,
- -0.031840335577726364,
- 0.038203246891498566,
- -0.060226455330848694,
- -0.04131418466567993,
- 0.057308971881866455,
- -0.02231576293706894,
- -0.05106804519891739,
- 0.002023735549300909,
- 0.0011411741143092513,
- 0.024863066151738167,
- 0.03960655629634857,
- -0.040176551789045334,
- 0.048948388546705246,
- -0.03926023840904236,
- -0.014768458902835846,
- -0.018289029598236084,
- -0.011061104014515877,
- 0.08376646041870117,
- 0.018438149243593216,
- -0.06867779046297073,
- -0.05696225166320801,
- -0.032140303403139114,
- 0.030102545395493507,
- -0.043686751276254654,
- 0.05765097588300705,
- 0.155575692653656,
- 0.0019921085331588984,
- -0.053958162665367126,
- -0.006238850764930248,
- 0.013430412858724594,
- 0.09265116602182388,
- 0.06320811808109283,
- 0.01673363521695137,
- -0.07190307229757309,
- 0.02946801856160164,
- 0.037979524582624435,
- -0.03340183570981026,
- 0.019272487610578537,
- 0.06241275742650032,
- 0.008121715858578682,
- -0.006626755930483341,
- 0.026987018063664436,
- 0.06562188267707825,
- 0.043829526752233505,
- -0.05573031306266785,
- 0.012233415618538857,
- -0.11505637317895889,
- -0.08057417720556259,
- -0.055684711784124374,
- -0.03107779659330845,
- 0.0019811023958027363,
- -0.0452038049697876,
- 0.04911887273192406,
- 0.054319851100444794,
- -0.03018203191459179,
- 0.04135126248002052,
- -0.08254049718379974,
- 0.035808902233839035,
- -0.018929023295640945,
- 0.009372776374220848,
- 0.05966482311487198,
- -0.10242807865142822,
- 0.02685190923511982,
- -0.04687289521098137,
- -0.010446040891110897,
- 0.05302570015192032,
- -0.07510983943939209,
- -0.058998432010412216,
- 0.017775675281882286,
- -0.014032450504601002,
- 0.01973051205277443,
- -0.006412005517631769,
- 0.03371695429086685,
- 0.10077600181102753,
- -0.0644560158252716,
- 0.03968976438045502,
- -0.09086446464061737,
- -1.2586937714331725e-8,
- 0.05354880169034004,
- 0.010350706055760384,
- -0.030817074701189995,
- -0.07515811175107956,
- 0.0327279157936573,
- 0.04313904047012329,
- 0.03563939034938812,
- -0.014442882500588894,
- -0.02061031572520733,
- -0.001768312300555408,
- 0.019755680114030838,
- 0.0008581190486438572,
- 0.03765637427568436,
- 0.050447262823581696,
- -0.006223246920853853,
- -0.043879296630620956,
- -0.01822986640036106,
- 0.01543839368969202,
- -0.040470678359270096,
- 0.005327929276973009,
- -0.027468964457511902,
- 0.015815265476703644,
- 0.010579592548310757,
- 0.09742563217878342,
- -0.0059105465188622475,
- -0.08141189068555832,
- 0.012724628672003746,
- 0.09420525282621384,
- 0.031215175986289978,
- -0.004466502461582422,
- -0.019948819652199745,
- 0.06538739800453186,
- 0.0028680989053100348,
- -0.014493842609226704,
- 0.008415558375418186,
- -0.06657153367996216,
- -0.01874554716050625,
- 0.03576609864830971,
- -0.009691156446933746,
- -0.07836676388978958,
- 0.09051718562841415,
- 0.012067521922290325,
- 0.003942740149796009,
- -0.03370548412203789,
- -0.05900005251169205,
- 0.00338149000890553,
- -0.047802798449993134,
- -0.11010794341564178,
- -0.06284389644861221,
- 0.008176201954483986,
- -0.02855992503464222,
- -0.037316229194402695,
- -0.03391038998961449,
- 0.1146230399608612,
- 0.014703566208481789,
- -0.008153430186212063,
- -0.0178835391998291,
- 0.022931396961212158,
- -0.07615505158901215,
- 0.0032490368466824293,
- 0.04623079299926758,
- 0.05172791704535484,
- 0.030003363266587257,
- 0.08296628296375275
- ]
- },
- {
- "keyword": "automobile",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.028433656319975853,
- 0.08012182265520096,
- 0.03722791373729706,
- 0.04298924654722214,
- -0.039783135056495667,
- 0.03470705822110176,
- 0.11036272346973419,
- 0.04435817152261734,
- -0.02128569409251213,
- 0.0018079031724482775,
- 0.036621950566768646,
- 0.0182169321924448,
- 0.023894449695944786,
- -0.017338620498776436,
- -0.06585489213466644,
- -0.03914942592382431,
- 0.0206155888736248,
- -0.06455070525407791,
- -0.02217203751206398,
- -0.03570091724395752,
- -0.056987397372722626,
- 0.06120214983820915,
- 0.019906286150217056,
- 0.03805447742342949,
- -0.07307345420122147,
- 0.06560847908258438,
- -0.045454006642103195,
- 0.058835722506046295,
- -0.043502286076545715,
- -0.08906134217977524,
- -0.03827563673257828,
- 0.04821079224348068,
- 0.01209340151399374,
- -0.0059145363047719,
- -0.03811310604214668,
- -0.11039420962333679,
- -0.030627084895968437,
- -0.02205570787191391,
- 0.026989616453647614,
- -0.05522770807147026,
- -0.025988982990384102,
- -0.1432456374168396,
- -0.009902197867631912,
- -0.026584884151816368,
- 0.03325176611542702,
- 0.03604406863451004,
- 0.0711016058921814,
- 0.03214477747678757,
- 0.06277087330818176,
- -0.03682095929980278,
- -0.03548046201467514,
- -0.0016681262059137225,
- -0.02416064776480198,
- -0.04675314202904701,
- -0.06476157158613205,
- -0.02899947576224804,
- -0.012001660652458668,
- 0.05903618037700653,
- -0.06458551436662674,
- -0.010702155530452728,
- 0.09205010533332825,
- -0.03770424425601959,
- -0.05627268925309181,
- 0.01816878840327263,
- 0.036727435886859894,
- -0.006773021072149277,
- -0.01681244932115078,
- -0.010067067109048367,
- -0.03839879482984543,
- 0.05894293636083603,
- 0.07560339570045471,
- -0.0016669719479978085,
- 0.01875264383852482,
- 0.031749073415994644,
- 0.02447463385760784,
- -0.08354201167821884,
- 0.056889113038778305,
- -0.000043510488467291,
- 0.049989957362413406,
- -0.013866071589291096,
- 0.003334035398438573,
- -0.005220907274633646,
- -0.035790130496025085,
- -0.013547169044613838,
- 0.00045384332770481706,
- -0.0226275734603405,
- 0.004709736444056034,
- 0.013222862035036087,
- -0.07978063076734543,
- 0.04300977289676666,
- -0.09784641861915588,
- -0.09159191697835922,
- 0.04714279621839523,
- -0.025134902447462082,
- -0.06170422583818436,
- 0.06130720674991608,
- 0.021042928099632263,
- -0.06196485459804535,
- 0.03432245925068855,
- 0.2233399599790573,
- 0.02741577848792076,
- 0.07135846465826035,
- 0.006539342924952507,
- 0.029560688883066177,
- -0.06074897199869156,
- 0.06079729646444321,
- -0.046770013868808746,
- 0.04642903804779053,
- 0.022964056581258774,
- -0.015048633329570293,
- 0.01936653070151806,
- -0.011862354353070259,
- 0.013982818461954594,
- 0.018252389505505562,
- -0.08343636244535446,
- -0.017606258392333984,
- -0.02660706266760826,
- 0.011725389398634434,
- 0.023665377870202065,
- 0.049444302916526794,
- -0.06466488540172577,
- -0.03140582516789436,
- 0.015197919681668282,
- 0.03744212165474892,
- 0.008716435171663761,
- -0.08267515897750854,
- 0.03630170598626137,
- -6.561043759633676e-33,
- -0.04702019691467285,
- -0.05354277789592743,
- 0.08574125170707703,
- 0.0450737439095974,
- -0.04131913557648659,
- 0.012936457060277462,
- -0.04565679281949997,
- -0.0018670257413759828,
- -0.016733618453145027,
- 0.022204851731657982,
- 0.026100166141986847,
- -0.04771465063095093,
- -0.05335419625043869,
- -0.016855333000421524,
- 0.15137805044651031,
- 0.007936762645840645,
- -0.07048850506544113,
- 0.0030504416208714247,
- -0.06322258710861206,
- -0.05994705483317375,
- -0.05237617343664169,
- 0.058072518557310104,
- 0.04941660538315773,
- 0.0316990502178669,
- 0.04353132098913193,
- -0.01557199377566576,
- 0.00463181734085083,
- -0.016247091814875603,
- 0.055221833288669586,
- 0.04860392212867737,
- 0.002547760494053364,
- 0.1322871893644333,
- -0.05013011768460274,
- 0.019283926114439964,
- -0.03214533254504204,
- -0.03283580392599106,
- -0.09837111085653305,
- -0.07162831723690033,
- -0.021822603419423103,
- -0.023287054151296616,
- 0.011093249544501305,
- -0.020966751500964165,
- -0.08702881634235382,
- -0.003049369901418686,
- -0.018764209002256393,
- 0.027530880644917488,
- 0.048513393849134445,
- 0.04012356325984001,
- -0.07475926727056503,
- 0.05958607420325279,
- -0.0277605801820755,
- -0.026447556912899017,
- 0.041996732354164124,
- -0.03686530515551567,
- -0.04244433715939522,
- 0.019428687170147896,
- 0.055519476532936096,
- -0.019918514415621758,
- -0.02927495539188385,
- -0.02949436753988266,
- -0.021191203966736794,
- 0.12122125923633575,
- 0.052925337105989456,
- -0.044191669672727585,
- -0.00015606854867655784,
- 0.05668801814317703,
- 0.011219331063330173,
- -0.01504148542881012,
- 0.03558138757944107,
- 0.03886932507157326,
- 0.005954714026302099,
- -0.05312288552522659,
- 0.00489873206242919,
- 0.012922286055982113,
- 0.038386814296245575,
- 0.0817047506570816,
- 0.0309633556753397,
- -0.013406617566943169,
- -0.1085936576128006,
- -0.004856817424297333,
- -0.06128615140914917,
- 0.04002001881599426,
- -0.004724045284092426,
- -0.019512174651026726,
- 0.091861292719841,
- 0.04228216037154198,
- -0.07366392016410828,
- -0.10866807401180267,
- 0.0461789108812809,
- 0.04676203429698944,
- -0.041295263916254044,
- -0.028211044147610664,
- -0.028141023591160774,
- 0.054988205432891846,
- 0.02612224966287613,
- 3.9361420990444605e-33,
- 0.007436893880367279,
- -0.04019097611308098,
- 0.0473172664642334,
- 0.053429014980793,
- 0.06292442977428436,
- -0.04408608749508858,
- -0.004666729364544153,
- -0.014473482966423035,
- -0.029340380802750587,
- 0.08219529688358307,
- -0.06751853227615356,
- -0.017718693241477013,
- 0.11572812497615814,
- 0.04262420907616615,
- 0.07607437670230865,
- -0.01764994114637375,
- 0.11372195184230804,
- -0.05027412623167038,
- -0.031076908111572266,
- 0.042009834200143814,
- -0.055582817643880844,
- -0.0517912283539772,
- 0.027347324416041374,
- -0.003907880745828152,
- -0.0526483915746212,
- 0.026886407285928726,
- -0.05691530928015709,
- 0.016436520963907242,
- -0.021076742559671402,
- -0.05529998242855072,
- 0.03554713353514671,
- -0.04311845451593399,
- 0.004323636647313833,
- 0.012447673827409744,
- -0.022439559921622276,
- 0.030424069613218307,
- 0.020381985232234,
- -0.02265908755362034,
- -0.0719875693321228,
- -0.0750291720032692,
- 0.035548266023397446,
- -0.0693863034248352,
- 0.08571629971265793,
- 0.1274750977754593,
- 0.027317672967910767,
- -0.07540032267570496,
- -0.004956190474331379,
- 0.006029441021382809,
- 0.09183549135923386,
- 0.04551778733730316,
- 0.029429994523525238,
- 0.016525277867913246,
- 0.09040520340204239,
- 0.024151818826794624,
- 0.0038871504366397858,
- 0.009655908681452274,
- 0.09391815215349197,
- 0.0030600063037127256,
- -0.01357945241034031,
- 0.03234599903225899,
- 0.047254737466573715,
- 0.032946083694696426,
- -0.03065069392323494,
- 0.017220918089151382,
- -0.10184381902217865,
- -0.1229560598731041,
- -0.02356887236237526,
- -0.042392026633024216,
- 0.008429606445133686,
- -0.07106788456439972,
- 0.07478337734937668,
- 0.03739585727453232,
- -0.014974997378885746,
- 0.02936006337404251,
- -0.03488226607441902,
- 0.00227423757314682,
- -0.011940507218241692,
- 0.030675511807203293,
- 0.02162681147456169,
- -0.07611928135156631,
- 0.020906174555420876,
- -0.0516367107629776,
- 0.01587638631463051,
- 0.1118471771478653,
- -0.0825645700097084,
- -0.02829328179359436,
- -0.01743529550731182,
- -0.03210818022489548,
- 0.03283197805285454,
- 0.020679540932178497,
- 0.021373087540268898,
- 0.07974608242511749,
- -0.04641016200184822,
- 0.02748294547200203,
- -0.13038595020771027,
- -1.3106951968211433e-8,
- 0.04815226420760155,
- 0.024195626378059387,
- 0.028634287416934967,
- -0.06622116267681122,
- 0.013424288481473923,
- 0.0012115982826799154,
- 0.0752832293510437,
- 0.043875157833099365,
- -0.06976854056119919,
- 0.006762106437236071,
- 0.008233711123466492,
- -0.004456487484276295,
- 0.07125211507081985,
- 0.08701902627944946,
- -0.0036944656167179346,
- -0.04375787824392319,
- 0.013040784746408463,
- 0.03741620481014252,
- -0.06120120733976364,
- -0.004866285249590874,
- 0.02377501130104065,
- -0.00029586805612780154,
- 0.022118616849184036,
- 0.08344550430774689,
- -0.012169170193374157,
- -0.05779287964105606,
- 0.019489949569106102,
- -0.029083464294672012,
- 0.019562330096960068,
- -0.012486017309129238,
- -0.025793086737394333,
- 0.06310395896434784,
- 0.05189923569560051,
- -0.02862703613936901,
- -0.045997269451618195,
- -0.06742850691080093,
- 0.027472075074911118,
- 0.024630865082144737,
- -0.04015219211578369,
- -0.1331992894411087,
- 0.06863939017057419,
- 0.0478554405272007,
- -0.015429763123393059,
- -0.024551093578338623,
- 0.033198241144418716,
- -0.024720164015889168,
- -0.039315495640039444,
- -0.06364287436008453,
- -0.06961812824010849,
- 0.023105241358280182,
- -0.03577443212270737,
- -0.011133632622659206,
- -0.01637335494160652,
- 0.11198685318231583,
- 0.011991417966783047,
- -0.03182749077677727,
- 0.013032056391239166,
- -0.0238632969558239,
- -0.05020404979586601,
- -0.028895491734147072,
- 0.08524201810359955,
- 0.02415487915277481,
- 0.08721298724412918,
- 0.05853304639458656
- ]
- },
- {
- "keyword": "truck",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.024864310398697853,
- 0.024696331471204758,
- -0.012670994736254215,
- 0.055055879056453705,
- 0.04016606882214546,
- -0.001056016655638814,
- 0.08498524129390717,
- 0.033739034086465836,
- 0.024676181375980377,
- -0.027827542275190353,
- 0.014698831364512444,
- 0.006776701658964157,
- 0.04094168171286583,
- -0.03688657656311989,
- -0.013102363795042038,
- -0.017099332064390182,
- 0.047433193773031235,
- -0.06235440447926521,
- 0.005687536206096411,
- -0.07823379337787628,
- -0.03805915638804436,
- 0.10136985778808594,
- -0.012749481946229935,
- -0.018862320110201836,
- -0.05848328024148941,
- 0.036617740988731384,
- -0.06809579581022263,
- 0.04299076646566391,
- -0.0716700628399849,
- -0.12631089985370636,
- 0.02017482928931713,
- 0.03203105181455612,
- -0.032327499240636826,
- -0.05110780522227287,
- -0.015391435474157333,
- -0.023012151941657066,
- 0.011426687240600586,
- -0.037091199308633804,
- 0.04407775402069092,
- -0.08283966034650803,
- -0.045281052589416504,
- -0.1303129643201828,
- 0.014176040887832642,
- -0.05505790561437607,
- 0.014173155650496483,
- -0.005400237161666155,
- 0.0655217170715332,
- 0.030252521857619286,
- 0.15038996934890747,
- -0.038997095078229904,
- 0.031422071158885956,
- -0.0020054890774190426,
- -0.023212086409330368,
- 0.0202903151512146,
- 0.05563218146562576,
- -0.00448254682123661,
- -0.06623604893684387,
- -0.012172012589871883,
- -0.010833811946213245,
- 0.009425186552107334,
- 0.03827307000756264,
- 0.03360072895884514,
- -0.020041851326823235,
- 0.010706927627325058,
- -0.0029120701365172863,
- -0.0004902841174043715,
- 0.022663995623588562,
- -0.04344094917178154,
- 0.029019491747021675,
- 0.009896522387862206,
- 0.0052595483139157295,
- 0.04442344605922699,
- -0.008383509702980518,
- 0.03958066180348396,
- 0.07809481024742126,
- -0.07784344255924225,
- 0.08139897137880325,
- -0.034816235303878784,
- 0.04342135041952133,
- 0.006213498767465353,
- -0.03849555552005768,
- 0.021738087758421898,
- 0.009530684910714626,
- -0.04903342202305794,
- -0.07242278754711151,
- -0.032497305423021317,
- 0.01756693422794342,
- 0.03610990568995476,
- -0.09975402057170868,
- 0.0748734101653099,
- -0.051596514880657196,
- -0.029215924441814423,
- 0.0226517952978611,
- 0.04708784818649292,
- -0.12585808336734772,
- 0.0281365979462862,
- -0.003608367405831814,
- -0.025409584864974022,
- 0.041783228516578674,
- 0.19917172193527222,
- 0.011201894842088223,
- 0.03851194679737091,
- 0.010508748702704906,
- 0.0011647193459793925,
- -0.020551402121782303,
- 0.018462728708982468,
- -0.021225834265351295,
- 0.069725401699543,
- -0.0022476152516901493,
- -0.02019738033413887,
- 0.06205872446298599,
- 0.007121448405086994,
- -0.04672578349709511,
- 0.07199634611606598,
- -0.04227972775697708,
- -0.07530399411916733,
- -0.09005331248044968,
- -0.029669426381587982,
- -0.013564486987888813,
- 0.027834860607981682,
- -0.012432651594281197,
- 0.013882183469831944,
- 0.08049321919679642,
- 0.045503225177526474,
- 0.009598287753760815,
- -0.049579739570617676,
- 0.04186351224780083,
- -5.088923327614969e-33,
- -0.028911614790558815,
- -0.08811114728450775,
- 0.040700774639844894,
- 0.011979318223893642,
- 0.002820762572810054,
- 0.017808841541409492,
- -0.022968295961618423,
- 0.01901058666408062,
- -0.01824667491018772,
- 0.11010996252298355,
- -0.050927672535181046,
- 0.026216408237814903,
- -0.032020390033721924,
- -0.003043971722945571,
- 0.08584539592266083,
- -0.05487113445997238,
- -0.08242940157651901,
- -0.026427825912833214,
- -0.08452427387237549,
- -0.013368245214223862,
- -0.06593474000692368,
- 0.09401653707027435,
- 0.029210971668362617,
- 0.0844208300113678,
- 0.046282947063446045,
- -0.020366836339235306,
- -0.005999380256980658,
- -0.020682120695710182,
- 0.03658214211463928,
- 0.03981811925768852,
- -0.0467483215034008,
- 0.0414685420691967,
- 0.04957128316164017,
- 0.028559746220707893,
- 0.02788681723177433,
- -0.06509052217006683,
- -0.02376396767795086,
- -0.09760969877243042,
- -0.06497662514448166,
- 0.019383108243346214,
- 0.02775801159441471,
- 0.011782485991716385,
- -0.103756844997406,
- -0.014878110960125923,
- -0.03788340836763382,
- 0.05784768611192703,
- 0.09615969657897949,
- 0.03622596338391304,
- -0.07058967649936676,
- 0.09984888881444931,
- -0.08307068794965744,
- -0.027000028640031815,
- 0.013468846678733826,
- -0.024415647611021996,
- -0.05106114596128464,
- -0.01321712788194418,
- 0.04553692042827606,
- -0.04051946476101875,
- 0.05126342549920082,
- 0.03245364502072334,
- -0.030417799949645996,
- 0.08299628645181656,
- 0.05434257164597511,
- -0.012654921971261501,
- 0.035295724868774414,
- -0.04165978729724884,
- 0.05356861650943756,
- -0.02098168432712555,
- 0.037865057587623596,
- -0.007814493961632252,
- -0.007162870839238167,
- -0.05012663081288338,
- 0.10187475383281708,
- 0.04382416978478432,
- 0.08379609137773514,
- 0.01772039197385311,
- -0.025012653321027756,
- 0.04886273294687271,
- -0.09059549123048782,
- -0.00860993005335331,
- -0.04851027578115463,
- -0.004996882285922766,
- -0.002506763907149434,
- -0.010487803258001804,
- 0.06131856516003609,
- 0.03721662238240242,
- -0.07489391416311264,
- -0.06813091784715652,
- 0.04378156363964081,
- 0.01543062087148428,
- -0.1484558880329132,
- 0.019763348624110222,
- 0.02965380996465683,
- 0.003619643161073327,
- 0.09291235357522964,
- 3.871298157233257e-33,
- 0.08761969953775406,
- -0.025817295536398888,
- 0.026704253628849983,
- 0.07384739816188812,
- 0.04427608475089073,
- 0.05002077296376228,
- 0.06404677033424377,
- -0.0028142500668764114,
- 0.0145584587007761,
- 0.0851108506321907,
- -0.04008730500936508,
- -0.004709083121269941,
- 0.07970961183309555,
- 0.013026164844632149,
- 0.07121393829584122,
- -0.054303526878356934,
- 0.043112605810165405,
- -0.042042914777994156,
- -0.03377151861786842,
- 0.07640217244625092,
- -0.05804793909192085,
- -0.052804216742515564,
- -0.02896398864686489,
- -0.03861992061138153,
- -0.002882384927943349,
- 0.0369420051574707,
- -0.07624923437833786,
- 0.03690124303102493,
- -0.0849519893527031,
- -0.01703321747481823,
- 0.01543091144412756,
- -0.06534899771213531,
- 0.09684322774410248,
- 0.030357996001839638,
- -0.018193552270531654,
- 0.033290840685367584,
- 0.04414461553096771,
- 0.0004175146750640124,
- -0.03732090815901756,
- -0.04330500587821007,
- 0.0732026919722557,
- -0.020877569913864136,
- -0.0014947188319638371,
- 0.09897494316101074,
- -0.04530742019414902,
- -0.06969674676656723,
- -0.05615861341357231,
- -0.0035887889098376036,
- 0.11871007084846497,
- 0.009487154893577099,
- -0.04335201159119606,
- -0.01274210587143898,
- 0.02584574557840824,
- -0.04180321842432022,
- -0.02243785560131073,
- 0.003953678999096155,
- 0.03664248436689377,
- 0.05890451744198799,
- 0.009479878470301628,
- 0.07179715484380722,
- 0.008219357579946518,
- 0.056001126766204834,
- 0.028068825602531433,
- 0.01699088141322136,
- -0.026036856696009636,
- -0.05758571997284889,
- -0.017507879063487053,
- -0.07969531416893005,
- 0.0059706419706344604,
- 0.005462022963911295,
- 0.06783747673034668,
- -0.0010107118869200349,
- 0.04371088743209839,
- 0.03515572473406792,
- -0.06681997328996658,
- -0.0054756090976297855,
- -0.04391474276781082,
- 0.0008710383553989232,
- 0.007865222170948982,
- -0.028604069724678993,
- 0.04262818023562431,
- -0.09185581654310226,
- 0.0086381696164608,
- 0.10909156501293182,
- -0.13206267356872559,
- 0.024250157177448273,
- 0.028656894341111183,
- 0.021724147722125053,
- 0.028692973777651787,
- 0.0005329452687874436,
- 0.037911392748355865,
- 0.004585295915603638,
- -0.05098290368914604,
- 0.014452610164880753,
- -0.0545249879360199,
- -1.1444361902590572e-8,
- 0.0027319444343447685,
- 0.058476466685533524,
- -0.07021769881248474,
- -0.046819962561130524,
- 0.03625032305717468,
- 0.060451675206422806,
- 0.04188556224107742,
- 0.002054048702120781,
- -0.03508063778281212,
- 0.002210484119132161,
- 0.04118771106004715,
- 0.006865179631859064,
- -0.05532898008823395,
- 0.07384039461612701,
- 0.020899217575788498,
- 0.01065141148865223,
- -0.017200127243995667,
- 0.019267316907644272,
- -0.038422841578722,
- 0.006187676452100277,
- -0.0179304089397192,
- -0.023017046973109245,
- 0.028547655791044235,
- 0.06453856080770493,
- -0.029108501970767975,
- -0.06529843807220459,
- 0.01737704686820507,
- 0.09234096109867096,
- 0.0663439929485321,
- 0.020393045619130135,
- -0.06651376187801361,
- 0.07814572751522064,
- -0.09061665087938309,
- -0.029023952782154083,
- 0.015614419244229794,
- -0.08918503671884537,
- 0.0032520098611712456,
- 0.048759859055280685,
- 0.0016268647741526365,
- 0.02558922953903675,
- 0.018802613019943237,
- 0.047580018639564514,
- 0.041685525327920914,
- -0.07296556979417801,
- -0.021357866004109383,
- 0.02216278202831745,
- -0.08433601260185242,
- -0.06162411719560623,
- -0.07147150486707687,
- -0.01185818761587143,
- 0.043972305953502655,
- -0.03283095359802246,
- -0.04328475892543793,
- 0.13425102829933167,
- 0.0425107441842556,
- -0.024907821789383888,
- -0.052245352417230606,
- -0.010531208477914333,
- -0.10110004991292953,
- 0.007331049535423517,
- 0.04598161578178406,
- 0.002505093812942505,
- 0.07625343650579453,
- -0.016782550141215324
- ]
- },
- {
- "keyword": "bike",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03345474973320961,
- 0.1296532303094864,
- -0.04176822677254677,
- 0.03657938912510872,
- -0.052856504917144775,
- -0.0040459283627569675,
- 0.11829879134893417,
- 0.020221082493662834,
- 0.04567631706595421,
- 0.0002449875173624605,
- 0.03931490331888199,
- -0.019838280975818634,
- 0.0842556282877922,
- -0.011299286969006062,
- -0.029645271599292755,
- 0.024969398975372314,
- 0.030051548033952713,
- -0.023803742602467537,
- -0.04537693038582802,
- -0.0008528114412911236,
- -0.04968561232089996,
- 0.0841359868645668,
- -0.0076514957472682,
- 0.06527844071388245,
- -0.007407715078443289,
- 0.017981383949518204,
- -0.08010022342205048,
- -0.005291718523949385,
- -0.03443675488233566,
- -0.07558602839708328,
- -0.004108530469238758,
- 0.08167237043380737,
- 0.07413212209939957,
- -0.00029990781331434846,
- -0.10647869855165482,
- -0.030862268060445786,
- 0.03159959241747856,
- 0.02016543783247471,
- 0.017718108370900154,
- -0.059182535856962204,
- -0.01729433797299862,
- -0.040573496371507645,
- 0.0011781728826463223,
- -0.012845970690250397,
- 0.05363927036523819,
- 0.09405185282230377,
- 0.1307234764099121,
- -0.04998765140771866,
- 0.059511736035346985,
- -0.005935967899858952,
- 0.013231935910880566,
- 0.004274164326488972,
- 0.022854307666420937,
- 0.012823992408812046,
- -0.012375449761748314,
- -0.019210301339626312,
- -0.1034882441163063,
- 0.02108464576303959,
- -0.0014868570724502206,
- -0.10557666420936584,
- 0.1189127042889595,
- -0.010846900753676891,
- -0.02667304314672947,
- 0.07451490312814713,
- 0.04333459958434105,
- 0.007051863241940737,
- -0.01809876225888729,
- -0.059837646782398224,
- -0.019037390127778053,
- -0.04948490485548973,
- 0.014065771363675594,
- 0.01703464612364769,
- 0.012553002685308456,
- -0.04126611351966858,
- 0.053864698857069016,
- -0.057991694658994675,
- 0.05213025212287903,
- -0.006745902821421623,
- -0.011186669580638409,
- 0.015176896005868912,
- -0.04162532091140747,
- -0.07361101359128952,
- 0.009898878633975983,
- 0.05759754404425621,
- 0.09385939687490463,
- 0.010945520363748074,
- 0.048763446509838104,
- 0.08860128372907639,
- -0.03970279172062874,
- -0.01774207502603531,
- -0.08839088678359985,
- 0.03328453004360199,
- 0.037330642342567444,
- 0.045134980231523514,
- -0.13433228433132172,
- 0.010317666456103325,
- 0.014036103151738644,
- -0.04055554047226906,
- 0.003933087922632694,
- 0.23782770335674286,
- 0.06593426316976547,
- 0.0571867972612381,
- 0.10840965807437897,
- 0.04106548801064491,
- -0.0465812049806118,
- 0.039746858179569244,
- 0.020748069509863853,
- 0.04096490889787674,
- 0.02603275328874588,
- 0.03390621766448021,
- -0.008448771201074123,
- -0.03427755832672119,
- 0.0012976772850379348,
- 0.01966596581041813,
- 0.0036028698086738586,
- -0.017934150993824005,
- -0.06325782090425491,
- 0.036442290991544724,
- 0.040878020226955414,
- 0.040859851986169815,
- -0.04422163963317871,
- 0.0427316352725029,
- 0.014317339286208153,
- 0.034042589366436005,
- -0.0366768054664135,
- -0.043693020939826965,
- 0.025605004280805588,
- -5.0246171744692664e-33,
- -0.05326325073838234,
- -0.054648131132125854,
- 0.058261506259441376,
- 0.0011292921844869852,
- -0.006869425997138023,
- -0.02000999264419079,
- 0.0031540682539343834,
- -0.04057430475950241,
- -0.015180882066488266,
- 0.014819776639342308,
- 0.050526537001132965,
- -0.009364391677081585,
- 0.041257333010435104,
- -0.00874293502420187,
- 0.13623814284801483,
- -0.05577706918120384,
- -0.0031826866324990988,
- -0.06301046162843704,
- -0.04495196044445038,
- 0.044008951634168625,
- -0.04791600629687309,
- -0.05036037042737007,
- -0.012543801218271255,
- 0.06288608908653259,
- -0.011410114355385303,
- -0.024570807814598083,
- 0.08570173382759094,
- -0.030544932931661606,
- -0.019204020500183105,
- 0.029972875490784645,
- -0.049363330006599426,
- 0.02567240595817566,
- -0.015233060345053673,
- 0.0032585058361291885,
- -0.011031084693968296,
- -0.05236939340829849,
- -0.018192261457443237,
- 0.00879906490445137,
- -0.021964451298117638,
- -0.0475899875164032,
- 0.03451784327626228,
- -0.06901782006025314,
- -0.06863545626401901,
- -0.027974875643849373,
- 0.05616306513547897,
- 0.06930400431156158,
- 0.0646410882472992,
- 0.09029072523117065,
- -0.0981249064207077,
- 0.025858908891677856,
- -0.04630941525101662,
- -0.02185947261750698,
- -0.00868638139218092,
- 0.03290756419301033,
- -0.03008687123656273,
- -0.051857560873031616,
- 0.015689605847001076,
- 0.008895926177501678,
- -0.055297791957855225,
- 0.03075399063527584,
- 0.0010178647935390472,
- 0.08553063124418259,
- -0.012628073804080486,
- 0.039206188172101974,
- -0.05776436626911163,
- 0.01641046814620495,
- -0.0017078184755519032,
- -0.03561299294233322,
- -0.00923522375524044,
- -0.02830454148352146,
- -0.048043202608823776,
- 0.016015347093343735,
- 0.10006680339574814,
- 0.04442189261317253,
- 0.05895242467522621,
- 0.009927581064403057,
- -0.0647839829325676,
- -0.026994463056325912,
- -0.0943136140704155,
- 0.07039094716310501,
- -0.0008780129137448967,
- -0.06271284818649292,
- -0.03719484061002731,
- -0.02839323692023754,
- 0.0004722484154626727,
- 0.006263388320803642,
- -0.03548716753721237,
- -0.12269942462444305,
- -0.011888940818607807,
- -0.008838099427521229,
- -0.04921434819698334,
- -0.08464962989091873,
- 0.05627662315964699,
- 0.03916550800204277,
- 0.06474832445383072,
- 3.8580962536475686e-33,
- 0.06398919969797134,
- 0.0348997563123703,
- 0.08935243636369705,
- 0.03539666160941124,
- 0.06966415047645569,
- -0.05079827085137367,
- 0.03808771073818207,
- -0.07224862277507782,
- -0.11180263012647629,
- 0.014932048507034779,
- -0.008630434051156044,
- -0.08100258558988571,
- 0.07552121579647064,
- 0.05260700732469559,
- 0.0512196347117424,
- 0.05437219887971878,
- 0.06859096884727478,
- -0.01453606877475977,
- -0.003801462473347783,
- -0.015772640705108643,
- -0.041600301861763,
- -0.03690151870250702,
- -0.04076420143246651,
- -0.06829981505870819,
- -0.039195142686367035,
- 0.06315987557172775,
- -0.02157420851290226,
- 0.06893326342105865,
- -0.027068516239523888,
- 0.02165154367685318,
- -0.10856308043003082,
- 0.00906865019351244,
- 0.04893212392926216,
- 0.07393525540828705,
- -0.042934808880090714,
- 0.15901505947113037,
- -0.0573350191116333,
- -0.0519888810813427,
- -0.015266530215740204,
- -0.042556069791316986,
- 0.017479609698057175,
- -0.037143807858228683,
- 0.012726307846605778,
- 0.10309471189975739,
- 0.036430474370718,
- -0.007744361646473408,
- 0.009917901828885078,
- 0.08161155134439468,
- 0.07118252664804459,
- -0.04707996919751167,
- 0.03206251561641693,
- 0.07148202508687973,
- 0.05726111680269241,
- -0.05079461634159088,
- 0.057251717895269394,
- 0.011233869008719921,
- -0.02831203117966652,
- 0.023358454927802086,
- -0.026729144155979156,
- -0.05116061493754387,
- 0.008711913600564003,
- 0.06816720217466354,
- -0.03640232980251312,
- 0.05914180353283882,
- -0.09273280948400497,
- -0.05990471690893173,
- -0.006382527761161327,
- -0.010656983591616154,
- -0.05076194554567337,
- 0.007436845917254686,
- 0.014051134698092937,
- 0.06611620634794235,
- 0.050453122705221176,
- 0.010067939758300781,
- 0.017101148143410683,
- 0.006223876029253006,
- -0.01991104893386364,
- -0.004546272102743387,
- -0.007572746369987726,
- 0.0013528692070394754,
- -0.0030840816907584667,
- -0.04783133417367935,
- 0.021946297958493233,
- 0.07257618010044098,
- -0.08271573483943939,
- -0.04033704102039337,
- 0.01509117055684328,
- -0.041821230202913284,
- -0.026514675468206406,
- -0.039117444306612015,
- 0.007231748662889004,
- 0.1149955540895462,
- -0.06276731938123703,
- -0.005866541061550379,
- 0.00369454943574965,
- -1.1128395982495931e-8,
- 0.048990946263074875,
- -0.03892755135893822,
- -0.07351450622081757,
- -0.07009202986955643,
- 0.07661426812410355,
- 0.0646878257393837,
- 0.08374238759279251,
- -0.020994016900658607,
- -0.06379380077123642,
- -0.03183341026306152,
- 0.004232683219015598,
- 0.004816681612282991,
- -0.00023031658201944083,
- 0.05575156211853027,
- -0.0012428215704858303,
- -0.060732051730155945,
- 0.010303070768713951,
- 0.013140269555151463,
- -0.0067300437949597836,
- -0.039496272802352905,
- 0.01290021650493145,
- -0.04132812097668648,
- 0.03905751556158066,
- 0.012921679764986038,
- -0.057614997029304504,
- -0.10238856077194214,
- 0.03556467220187187,
- 0.006016537547111511,
- 0.009794151410460472,
- 0.0027560354210436344,
- -0.00969054363667965,
- 0.019915582612156868,
- -0.06000426411628723,
- -0.05376873165369034,
- -0.007069989573210478,
- -0.08865898847579956,
- -0.046606216579675674,
- 0.01573292538523674,
- 0.018198179081082344,
- 0.005251405294984579,
- -0.024347230792045593,
- 0.059074871242046356,
- -0.0008967271423898637,
- 0.0030701416544616222,
- -0.012025349773466587,
- -0.03188030421733856,
- -0.03183283656835556,
- -0.086935855448246,
- -0.02759247086942196,
- -0.052246324717998505,
- 0.028532182797789574,
- -0.037903621792793274,
- 0.056367166340351105,
- 0.07667819410562515,
- 0.01592135615646839,
- 0.08662597835063934,
- -0.038711220026016235,
- -0.03016708232462406,
- -0.07857444137334824,
- 0.0373806469142437,
- 0.0015657013282179832,
- 0.03501526638865471,
- 0.021962109953165054,
- -0.0676167830824852
- ]
- },
- {
- "keyword": "phone",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.10548466444015503,
- 0.08163513243198395,
- 0.03657219186425209,
- -0.034033630043268204,
- -0.03806755691766739,
- -0.049788761883974075,
- 0.10030066967010498,
- 0.06772623211145401,
- 0.0734747052192688,
- 0.02166125737130642,
- -0.03467848524451256,
- -0.02281271666288376,
- 0.015977930277585983,
- -0.03219275549054146,
- -0.032175496220588684,
- -0.06638933718204498,
- -0.001113789970986545,
- -0.10759612172842026,
- -0.14716801047325134,
- -0.0025136235635727644,
- -0.06382040679454803,
- 0.07288256287574768,
- -0.023163964971899986,
- -0.006999159697443247,
- 0.026298897340893745,
- -0.0026556674856692553,
- -0.10610659420490265,
- 0.028931424021720886,
- 0.08570322394371033,
- -0.10012169927358627,
- 0.04492046311497688,
- 0.0615595243871212,
- 0.15409357845783234,
- 0.01479856763035059,
- -0.07152319699525833,
- -0.03836415708065033,
- 0.023961156606674194,
- -0.00905041303485632,
- -0.005654413718730211,
- 0.00524929678067565,
- -0.00042974785901606083,
- -0.042379721999168396,
- -0.008619127795100212,
- 0.007939273491501808,
- 0.03451725095510483,
- 0.008752351626753807,
- 0.01930626668035984,
- 0.03294527158141136,
- 0.03052455000579357,
- 0.008313949219882488,
- 0.032858166843652725,
- 0.04784093797206879,
- -0.041974425315856934,
- 0.06062892824411392,
- -0.06701246649026871,
- 0.04586393013596535,
- -0.03065354749560356,
- 0.11037785559892654,
- 0.05130714923143387,
- 0.02309599705040455,
- 0.06768761575222015,
- 0.037946365773677826,
- -0.06742440909147263,
- 0.046449292451143265,
- -0.03202027082443237,
- 0.0626726821064949,
- -0.10163142532110214,
- 0.004624328576028347,
- -0.0032148566097021103,
- -0.009715268388390541,
- -0.01345820538699627,
- 0.03605545684695244,
- 0.019681638106703758,
- 0.014381960034370422,
- 0.02496182918548584,
- 0.0343310572206974,
- 0.013007454574108124,
- -0.03835409879684448,
- 0.025810834020376205,
- 0.036750081926584244,
- 0.059337858110666275,
- -0.08229418098926544,
- -0.037107571959495544,
- 0.03086753748357296,
- 0.04455526918172836,
- -0.031246177852153778,
- 0.0071567450650036335,
- 0.07121638208627701,
- -0.056958362460136414,
- -0.02088785357773304,
- -0.021668829023838043,
- 0.020188629627227783,
- 0.00810843612998724,
- -0.010062597692012787,
- -0.13746850192546844,
- 0.02105460688471794,
- -0.04057957977056503,
- -0.07556886970996857,
- -0.09552575647830963,
- 0.25351205468177795,
- -0.007025242783129215,
- 0.052743010222911835,
- 0.03262277692556381,
- 0.06820514798164368,
- 0.0018621617928147316,
- -0.030885890126228333,
- -0.07221653312444687,
- 0.03519614413380623,
- 0.0385836698114872,
- 0.004257496912032366,
- 0.009136732667684555,
- -0.06545700877904892,
- -0.06665775924921036,
- -0.027680307626724243,
- -0.022230371832847595,
- -0.08041831105947495,
- -0.011186748743057251,
- 0.02891295775771141,
- 0.09409060329198837,
- -0.05295489728450775,
- -0.03680986538529396,
- -0.0019750341307371855,
- -0.03432608023285866,
- -0.030689464882016182,
- -0.10594600439071655,
- -0.03262615576386452,
- 0.005740556865930557,
- -3.309900055037779e-33,
- 0.07679446041584015,
- -0.019979063421487808,
- 0.031208179891109467,
- 0.0719253420829773,
- -0.06876929849386215,
- 0.01749180443584919,
- 0.041414350271224976,
- -0.035349290817976,
- 0.01158385444432497,
- 0.03912515565752983,
- -0.021079998463392258,
- -0.0016271796775981784,
- -0.023167135193943977,
- 0.019440818578004837,
- 0.11028752475976944,
- 0.010409965179860592,
- -0.013372531160712242,
- -0.006560130510479212,
- -0.037254396826028824,
- -0.046030689030885696,
- -0.03754977136850357,
- 0.0011063149431720376,
- 0.016506629064679146,
- 0.13324975967407227,
- 0.0370042622089386,
- -0.027692761272192,
- 0.0237504243850708,
- -0.05900184065103531,
- 0.06886661052703857,
- -0.0006044922047294676,
- -0.03950386494398117,
- -0.01023547537624836,
- 0.030712060630321503,
- 0.006209827959537506,
- -0.0264738779515028,
- 0.0028189525473862886,
- 0.029507525265216827,
- -0.07639729231595993,
- 0.018755190074443817,
- -0.04172949120402336,
- -0.022828785702586174,
- 0.03529086709022522,
- -0.029774360358715057,
- 0.026159949600696564,
- 0.03962957113981247,
- -0.005012624431401491,
- 0.010719001293182373,
- 0.0733133852481842,
- -0.009374906308948994,
- 0.04604153707623482,
- -0.0038354210555553436,
- 0.029073825106024742,
- -0.05823565274477005,
- 0.013699059374630451,
- -0.05029451474547386,
- -0.03507504612207413,
- 0.005475085694342852,
- -0.03958238661289215,
- 0.022952869534492493,
- -0.033381592482328415,
- 0.10501161962747574,
- 0.07600711286067963,
- -0.05164341628551483,
- 0.02300281822681427,
- 0.02862938493490219,
- -0.011856264434754848,
- 0.003936913795769215,
- -0.06812228262424469,
- -0.020395878702402115,
- -0.01696879044175148,
- -0.07976886630058289,
- -0.024900618940591812,
- 0.08604244142770767,
- 0.009415186941623688,
- 0.015678154304623604,
- 0.09797067940235138,
- 0.06024187058210373,
- -0.0043893796391785145,
- -0.058496423065662384,
- 0.018505215644836426,
- -0.002813280327245593,
- -0.012001309543848038,
- 0.004950049798935652,
- 0.049097780138254166,
- 0.03792385756969452,
- 0.02097843587398529,
- -0.06435547769069672,
- -0.12593917548656464,
- 0.056425828486680984,
- 0.07030260562896729,
- -0.10156408697366714,
- -0.013253672048449516,
- 0.031079430133104324,
- 0.05226169526576996,
- 0.00731034716591239,
- 2.45129436928421e-33,
- -0.06565424799919128,
- -0.0809624120593071,
- 0.01742272451519966,
- 0.02414603717625141,
- 0.05362040176987648,
- -0.048439934849739075,
- 0.0751601904630661,
- 0.01280377060174942,
- -0.04929022490978241,
- 0.009694252163171768,
- -0.07721155881881714,
- -0.032180119305849075,
- 0.13720178604125977,
- 0.03474385663866997,
- 0.041292935609817505,
- 0.05705215409398079,
- 0.09021702408790588,
- -0.027450663968920708,
- 0.002496174070984125,
- -0.005067966878414154,
- -0.06713809818029404,
- -0.03929201886057854,
- -0.017279332503676414,
- 0.023722181096673012,
- -0.03918087109923363,
- -0.024255167692899704,
- 0.05083949863910675,
- -0.029128054156899452,
- 0.025462955236434937,
- -0.05024810507893562,
- 0.005512936972081661,
- -0.049312274903059006,
- -0.02678201161324978,
- 0.04105103760957718,
- 0.014920388348400593,
- 0.1227811723947525,
- 0.062456678599119186,
- -0.012677360326051712,
- 0.03593802824616432,
- -0.02559628337621689,
- 0.07245145738124847,
- -0.014380471780896187,
- 0.04642793536186218,
- 0.10045154392719269,
- -0.016853611916303635,
- -0.027361785992980003,
- -0.05075280740857124,
- 0.04266946017742157,
- -0.021942270919680595,
- 0.02054957114160061,
- 0.0829387828707695,
- -0.02773817628622055,
- 0.05147625878453255,
- 0.017157841473817825,
- -0.0653984472155571,
- -0.019606152549386024,
- 0.024266859516501427,
- -0.06035584211349487,
- 0.008830173872411251,
- -0.0028621628880500793,
- 0.0726911649107933,
- 0.03045441024005413,
- -0.04684643819928169,
- 0.013638658449053764,
- -0.05095268413424492,
- 0.059219758957624435,
- -0.019482482224702835,
- -0.032738275825977325,
- -0.0031608068384230137,
- 0.01794910430908203,
- -0.009063666686415672,
- -0.00901114847511053,
- 0.008593153208494186,
- 0.003735829144716263,
- -0.007390298414975405,
- -0.017660386860370636,
- -0.14602898061275482,
- 0.009731524623930454,
- -0.008849209174513817,
- -0.027591245248913765,
- 0.10324771702289581,
- 0.007609413005411625,
- -0.004002088215202093,
- -0.030843544751405716,
- 0.0009274014737457037,
- -0.06914772093296051,
- 0.09254608303308487,
- 0.023264039307832718,
- -0.01720401644706726,
- -0.06877857446670532,
- -0.0489666722714901,
- 0.041112568229436874,
- -0.06129852309823036,
- -0.01030934788286686,
- -0.03974995017051697,
- -1.279152517241755e-8,
- 0.06190117076039314,
- -0.017444727942347527,
- 0.026896869763731956,
- -0.08483593910932541,
- 0.0008610730874352157,
- 0.018544398248195648,
- 0.0368335098028183,
- -0.005400815512984991,
- 0.10180124640464783,
- -0.0003181742795277387,
- -0.016956593841314316,
- -0.02206168882548809,
- -0.06489831954240799,
- 0.06567565351724625,
- 0.07322967052459717,
- 0.013756836764514446,
- 0.04733099415898323,
- 0.016246870160102844,
- 0.009147711098194122,
- 0.022799232974648476,
- 0.023134451359510422,
- -0.0007011625566519797,
- 0.013639509677886963,
- -0.012776508927345276,
- 0.0428466796875,
- -0.0742156058549881,
- 0.06858187168836594,
- 0.07776622474193573,
- 0.05195122957229614,
- 0.015278751961886883,
- -0.0008785437094047666,
- 0.039628833532333374,
- -0.05514732748270035,
- -0.005652184132486582,
- -0.06836742907762527,
- -0.05978717654943466,
- -0.054686300456523895,
- -0.05109299719333649,
- 0.0538780614733696,
- -0.017715144902467728,
- 0.03420983999967575,
- -0.019932884722948074,
- 0.01067427359521389,
- -0.00479741720482707,
- -0.019879525527358055,
- -0.0573614127933979,
- 0.018019873648881912,
- -0.10622726380825043,
- -0.02531588263809681,
- -0.012214383110404015,
- -0.06273793429136276,
- -0.02515207976102829,
- 0.026124127209186554,
- -0.005859079770743847,
- 0.05641398951411247,
- -0.06587421149015427,
- 0.04196343570947647,
- 0.0011284538777545094,
- -0.044180095195770264,
- 0.05111052095890045,
- 0.07152097672224045,
- -0.017447538673877716,
- -0.047331251204013824,
- 0.05481213331222534
- ]
- },
- {
- "keyword": "smartphone",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0869687870144844,
- 0.08806324005126953,
- 0.07336775213479996,
- -0.05348306894302368,
- -0.033449213951826096,
- -0.04402961954474449,
- 0.08328945189714432,
- 0.09043081849813461,
- 0.08120410889387131,
- 0.0021112216636538506,
- 0.059630248695611954,
- 0.003148640738800168,
- 0.040869612246751785,
- 0.004314851947128773,
- 0.009579595178365707,
- -0.0801774263381958,
- 0.017996495589613914,
- -0.05208491161465645,
- -0.07567533850669861,
- -0.017092108726501465,
- -0.060153018683195114,
- 0.06939589977264404,
- 0.0001179101163870655,
- 0.016771061345934868,
- 0.05308513343334198,
- -0.006029432639479637,
- -0.06709043681621552,
- 0.0069417282938957214,
- 0.0187101848423481,
- -0.06327368319034576,
- 0.0270405076444149,
- 0.08351227641105652,
- 0.048740204423666,
- 0.06440440565347672,
- -0.10388953983783722,
- -0.1000567376613617,
- -0.006689741276204586,
- -0.0064045884646475315,
- -0.02249782532453537,
- -0.015355518087744713,
- -0.058962173759937286,
- -0.06020040810108185,
- 0.032300904393196106,
- -0.00045450986362993717,
- 0.050558410584926605,
- -0.024416716769337654,
- 0.025995532050728798,
- 0.020720751956105232,
- -0.009110436774790287,
- -0.03362985700368881,
- -0.0010116046760231256,
- 0.021592868492007256,
- -0.05855245515704155,
- 0.02026323787868023,
- -0.095063216984272,
- 0.03364838659763336,
- -0.008511073887348175,
- 0.0549907386302948,
- 0.08089052140712738,
- 0.03577980026602745,
- 0.04929123446345329,
- 0.052438247948884964,
- -0.028256528079509735,
- 0.08229196816682816,
- -0.03028069995343685,
- 0.04077655076980591,
- -0.023183202371001244,
- -0.05160339176654816,
- 0.05191618949174881,
- 0.009177874773740768,
- -0.012427333742380142,
- -0.010232922621071339,
- 0.04414452612400055,
- -0.031277500092983246,
- 0.0006488743238151073,
- -0.006147598382085562,
- 0.03279056400060654,
- -0.010250610299408436,
- -0.021846458315849304,
- 0.018089499324560165,
- 0.024804990738630295,
- -0.05493854358792305,
- -0.05462022125720978,
- 0.02873849868774414,
- 0.07131548225879669,
- -0.06645411998033524,
- 0.0026321583427488804,
- 0.09461398422718048,
- -0.08243703842163086,
- -0.07593502104282379,
- -0.034990470856428146,
- 0.03273988887667656,
- -0.06108955293893814,
- -0.013539478182792664,
- -0.09957131743431091,
- -0.008447929285466671,
- -0.0341956727206707,
- -0.10673128068447113,
- -0.09659278392791748,
- 0.20898574590682983,
- 0.034154124557971954,
- 0.04643537104129791,
- 0.018560046330094337,
- 0.045696765184402466,
- 0.018410880118608475,
- -0.032301049679517746,
- -0.05846292898058891,
- -0.0040506357327103615,
- 0.02118096314370632,
- 0.01937093399465084,
- -0.010010821744799614,
- -0.10116300731897354,
- -0.0723031610250473,
- -0.03657269850373268,
- -0.011706572957336903,
- -0.043098993599414825,
- -0.0016805455088615417,
- 0.06050221994519234,
- 0.07450040429830551,
- 0.031375885009765625,
- -0.05488961562514305,
- -0.001259813318029046,
- -0.09259688854217529,
- -0.0800846591591835,
- 0.0008410349837504327,
- -0.014462445862591267,
- -0.02063068188726902,
- -5.0918591247561476e-33,
- 0.028392532840371132,
- 0.011763039045035839,
- -0.003133791498839855,
- 0.03626509755849838,
- -0.041569583117961884,
- 0.018463142216205597,
- -0.0051511600613594055,
- -0.016764750704169273,
- 0.02564392052590847,
- -0.03847585991024971,
- 0.015492089092731476,
- -0.004451429937034845,
- -0.05730648711323738,
- 0.035427846014499664,
- 0.15083804726600647,
- -0.0509122833609581,
- 0.009725088253617287,
- -0.04047650098800659,
- -0.006023871712386608,
- -0.04448283836245537,
- -0.040070127695798874,
- -0.0990772694349289,
- -0.023520715534687042,
- 0.04172961786389351,
- 0.06339006870985031,
- 0.017842531204223633,
- 0.08607528358697891,
- -0.04803937301039696,
- 0.06148169934749603,
- 0.006757918279618025,
- -0.03275416046380997,
- -0.007344485726207495,
- 0.01211455836892128,
- -0.05902456119656563,
- -0.013528863899409771,
- 0.02852449007332325,
- -0.009259386919438839,
- -0.06037558242678642,
- 0.07048407196998596,
- -0.01381154265254736,
- -0.09156809002161026,
- 0.03578327223658562,
- -0.052322059869766235,
- -0.012928805314004421,
- 0.03136121481657028,
- 0.02315433695912361,
- -0.028834836557507515,
- 0.024678166955709457,
- -0.04801103472709656,
- 0.019012514501810074,
- 0.013941120356321335,
- -0.03297627344727516,
- -0.008696959353983402,
- -0.0259159617125988,
- -0.030619535595178604,
- 0.009666156955063343,
- 0.0053767189383506775,
- 0.024097688496112823,
- 0.0009567500092089176,
- -0.02412867732346058,
- 0.052928291261196136,
- 0.037171781063079834,
- -0.06765187531709671,
- 0.036801330745220184,
- -0.0021739332005381584,
- 0.034705545753240585,
- 0.04593401029706001,
- -0.020852074027061462,
- -0.03621414303779602,
- 0.07099483907222748,
- -0.027747103944420815,
- -0.06002427265048027,
- 0.11789798736572266,
- 0.012044043280184269,
- 0.00476295268163085,
- 0.09585560113191605,
- 0.0066166347824037075,
- -0.023839805275201797,
- -0.08377959579229355,
- 0.02174932137131691,
- -0.051643915474414825,
- -0.03893474489450455,
- 0.085769422352314,
- 0.02952989935874939,
- -0.014467760920524597,
- -0.04047601670026779,
- -0.05404007062315941,
- -0.15904799103736877,
- -0.017037831246852875,
- 0.07852447032928467,
- -0.10704698413610458,
- 0.0058603123761713505,
- 0.018754327669739723,
- 0.04554276540875435,
- -0.0340752936899662,
- 3.466462678255861e-33,
- -0.06608526408672333,
- -0.016944264993071556,
- 0.013214650563895702,
- -0.00016799086006358266,
- 0.03526432439684868,
- -0.06942295283079147,
- 0.05379294231534004,
- 0.00989240687340498,
- -0.07863473892211914,
- 0.054318178445100784,
- -0.03570310398936272,
- -0.006040997803211212,
- 0.08301951736211777,
- -0.04381420090794563,
- 0.012843531556427479,
- 0.007341735064983368,
- 0.05268369987607002,
- -0.07157949358224869,
- -0.009233028627932072,
- 0.0279280673712492,
- -0.06853362917900085,
- -0.04452557861804962,
- 0.0284880343824625,
- 0.038296375423669815,
- -0.0368681438267231,
- 0.004168984945863485,
- -0.028070399537682533,
- -0.024211719632148743,
- -0.002782924799248576,
- -0.0439378060400486,
- -0.028723999857902527,
- -0.10841715335845947,
- 0.025126876309514046,
- 0.03879113495349884,
- 0.06186734139919281,
- 0.08473433554172516,
- 0.010982315987348557,
- -0.016413889825344086,
- 0.022158307954669,
- 0.009778001345694065,
- 0.0918530598282814,
- 0.02635655738413334,
- 0.07294848561286926,
- 0.018907640129327774,
- 0.057147156447172165,
- -0.08295729756355286,
- -0.02878032810986042,
- 0.05492517724633217,
- 0.018504876643419266,
- -0.0028343857266008854,
- 0.1106271967291832,
- 0.06415371596813202,
- 0.022614089772105217,
- -0.021336324512958527,
- -0.03380470350384712,
- 0.04144774377346039,
- 0.0385250560939312,
- -0.06888164579868317,
- -0.017873195931315422,
- -0.06960801035165787,
- 0.10298001021146774,
- -0.05237721651792526,
- -0.06319728493690491,
- 0.003960258327424526,
- -0.07765910774469376,
- 0.004259010311216116,
- 0.04559386521577835,
- -0.00949807558208704,
- 0.006609731819480658,
- 0.04606655240058899,
- 0.02772550657391548,
- -0.029636332765221596,
- 0.023278797045350075,
- -0.015361067838966846,
- 0.016601456329226494,
- 0.07062329351902008,
- -0.10825581848621368,
- -0.019487328827381134,
- -0.04992997273802757,
- -0.07804512977600098,
- 0.09030808508396149,
- 0.04040305316448212,
- 0.032717786729335785,
- 0.034282587468624115,
- 0.026517312973737717,
- -0.04639989137649536,
- 0.059189796447753906,
- 0.015513528138399124,
- -0.03619278222322464,
- 0.0026553021743893623,
- -0.04896371439099312,
- 0.014321879483759403,
- -0.046476807445287704,
- 0.044710151851177216,
- -0.02711169794201851,
- -1.1283407985729355e-8,
- 0.05932670086622238,
- 0.012482027523219585,
- 0.041488874703645706,
- -0.033690761774778366,
- -0.012775231152772903,
- -0.06880685687065125,
- 0.05430854856967926,
- -0.03811263665556908,
- 0.13743802905082703,
- 0.0119511429220438,
- -0.05426120385527611,
- -0.0621371828019619,
- -0.04975464195013046,
- 0.1205584779381752,
- 0.06517945230007172,
- 0.06951234489679337,
- 0.051152221858501434,
- 0.02615034393966198,
- -0.019498249515891075,
- 0.04018005356192589,
- 0.07266603410243988,
- 0.051769476383924484,
- -0.04240384325385094,
- -0.0004216635716147721,
- 0.040267214179039,
- -0.03720015287399292,
- 0.00526465754956007,
- 0.033742547035217285,
- 0.07039982080459595,
- -0.0015431685606017709,
- 0.003046677215024829,
- -0.011750458739697933,
- -0.024332372471690178,
- -0.04595836251974106,
- -0.047961048781871796,
- -0.0072987377643585205,
- 0.025830451399087906,
- -0.07201343774795532,
- 0.05536144599318504,
- 0.01300883200019598,
- 0.0046774642542004585,
- -0.034243371337652206,
- 0.047181446105241776,
- 0.025542227551341057,
- 0.0018658065237104893,
- -0.09688592702150345,
- 0.08413153886795044,
- -0.10856548696756363,
- -0.01618047244846821,
- 0.0684107095003128,
- -0.040590688586235046,
- -0.022801598533988,
- 0.030665358528494835,
- -0.03295876085758209,
- 0.05558295175433159,
- -0.020743735134601593,
- 0.08892270177602768,
- -0.04453874006867409,
- -0.04443032667040825,
- 0.025387251749634743,
- 0.06762207299470901,
- 0.023092197254300117,
- 0.007710201200097799,
- 0.0680895522236824
- ]
- },
- {
- "keyword": "mobile",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06996160745620728,
- 0.05828601494431496,
- 0.018020538613200188,
- -0.0397818461060524,
- -0.000608531350735575,
- -0.04257209599018097,
- 0.013577853329479694,
- 0.06928412616252899,
- 0.046394072473049164,
- -0.003931401763111353,
- 0.08285846561193466,
- 0.030243946239352226,
- 0.05540759861469269,
- -0.02890162356197834,
- 0.018025662750005722,
- -0.028161518275737762,
- 0.008598584681749344,
- -0.041356224566698074,
- -0.0842568501830101,
- 0.014456006698310375,
- -0.0639173835515976,
- 0.012118875049054623,
- -0.017316976562142372,
- -0.013333883136510849,
- 0.04421670362353325,
- -0.03380651772022247,
- -0.10229726880788803,
- 0.054489124566316605,
- 0.0970451682806015,
- -0.09338216483592987,
- 0.007268562912940979,
- 0.08892322331666946,
- 0.04741795361042023,
- 0.04809875041246414,
- -0.1135997548699379,
- -0.10208243131637573,
- -0.01186542771756649,
- -0.024944908916950226,
- -0.016754183918237686,
- -0.035535961389541626,
- -0.05832156911492348,
- -0.017683370038866997,
- 0.01971883326768875,
- 0.059458330273628235,
- 0.03455904498696327,
- -0.03946217894554138,
- 0.0049639674834907055,
- 0.04923088848590851,
- 0.010306489653885365,
- 0.04728084057569504,
- 0.005415026564151049,
- -0.01111733540892601,
- -0.04651609808206558,
- 0.025909144431352615,
- -0.04693272337317467,
- 0.01675165630877018,
- -0.02308768592774868,
- 0.10781330615282059,
- 0.10337519645690918,
- 0.07792064547538757,
- 0.10896967351436615,
- 0.03954317048192024,
- -0.061300914734601974,
- 0.08644700795412064,
- 0.021610891446471214,
- 0.00802727323025465,
- -0.044308003038167953,
- -0.050258733332157135,
- -0.03416558727622032,
- -0.05664440244436264,
- 0.014605452306568623,
- -0.026985986158251762,
- 0.05353100970387459,
- 0.04067179560661316,
- 0.0186716690659523,
- -0.012616709806025028,
- 0.0020660485606640577,
- -0.03541601449251175,
- 0.012782841920852661,
- 0.028776638209819794,
- 0.04047027975320816,
- -0.061818938702344894,
- -0.027995355427265167,
- -0.010701209306716919,
- 0.06536023318767548,
- -0.052026379853487015,
- 0.002897389233112335,
- 0.08303490281105042,
- -0.040063757449388504,
- -0.060467179864645004,
- -0.06762398779392242,
- 0.07699694484472275,
- -0.013409287668764591,
- 0.019488954916596413,
- -0.13920265436172485,
- -0.004320099018514156,
- -0.04192730784416199,
- -0.1187511533498764,
- -0.11878831684589386,
- 0.2571658790111542,
- 0.05303860828280449,
- 0.10492999106645584,
- 0.09339535981416702,
- 0.04455871880054474,
- -0.011076227761805058,
- -0.018671603873372078,
- 0.0046972306445240974,
- 0.009952852502465248,
- 0.01576431468129158,
- 0.012722650542855263,
- -0.033833134919404984,
- -0.03109271451830864,
- -0.09446438401937485,
- -0.05679548904299736,
- -0.05247454345226288,
- -0.041544653475284576,
- -0.018899625167250633,
- 0.045751918107271194,
- 0.08865781873464584,
- 0.012449339032173157,
- -0.015068438835442066,
- -0.01373575534671545,
- -0.07887367159128189,
- -0.1101774349808693,
- 0.006943834014236927,
- -0.04424278810620308,
- 0.002970099914819002,
- -5.065724946601491e-33,
- 0.009782684035599232,
- -0.04606620594859123,
- 0.012725797481834888,
- 0.06947718560695648,
- 0.03629756346344948,
- -0.01437057089060545,
- 0.0220005102455616,
- -0.022119060158729553,
- -0.04420690983533859,
- 0.05453818291425705,
- 0.02486073225736618,
- 0.01944594457745552,
- -0.04361090436577797,
- 0.012791131623089314,
- 0.14302010834217072,
- -0.07733715325593948,
- 0.008459171280264854,
- -0.0072447857819497585,
- 0.03266482055187225,
- -0.009066135622560978,
- -0.0289419237524271,
- -0.053344108164310455,
- 0.01527521200478077,
- 0.012461156584322453,
- 0.04082849621772766,
- 0.051180802285671234,
- 0.02722182869911194,
- -0.05780673399567604,
- 0.04836219921708107,
- 0.01891404762864113,
- -0.010628682561218739,
- -0.018657859414815903,
- 0.004101389087736607,
- -0.04407569766044617,
- -0.00254326150752604,
- -0.046093571931123734,
- -0.014211976900696754,
- -0.08190857619047165,
- 0.02936435490846634,
- -0.051374390721321106,
- -0.0687975287437439,
- 0.0005049905739724636,
- -0.06411679089069366,
- 0.022948116064071655,
- -0.05357195809483528,
- 0.008272374048829079,
- 0.015462989918887615,
- -0.0018258090130984783,
- -0.008070017211139202,
- 0.03535987436771393,
- 0.024177534505724907,
- -0.021519748494029045,
- -0.04925670474767685,
- -0.02485525980591774,
- -0.02372347190976143,
- 0.011518644168972969,
- -0.014723177067935467,
- 0.022372761741280556,
- -0.0058615426532924175,
- -0.014373848214745522,
- 0.08870340883731842,
- 0.017912542447447777,
- -0.11429459601640701,
- 0.013692663051187992,
- -0.0330989696085453,
- -0.05850488319993019,
- 0.017690222710371017,
- -0.0385872907936573,
- 0.05686892941594124,
- 0.0002967447799164802,
- -0.03798528015613556,
- -0.03208497166633606,
- 0.1484275460243225,
- 0.046547215431928635,
- -0.02363508753478527,
- 0.0762496292591095,
- 0.01572420634329319,
- 0.04156533256173134,
- -0.09770359843969345,
- -0.017183981835842133,
- -0.04120726138353348,
- -0.04327421635389328,
- 0.02004566788673401,
- -0.004758918192237616,
- 0.02760225161910057,
- -0.017111189663410187,
- -0.06291428208351135,
- -0.15764576196670532,
- -0.02424008585512638,
- 0.13721193373203278,
- -0.11638912558555603,
- 0.06298218667507172,
- 0.07519184052944183,
- 0.030091678723692894,
- -0.03384314849972725,
- 3.162064375348599e-33,
- -0.1090599074959755,
- -0.0049840607680380344,
- -0.0014595482498407364,
- -0.009878577664494514,
- 0.02913506142795086,
- -0.03603346273303032,
- 0.0703311488032341,
- 0.05685712769627571,
- -0.04446708410978317,
- 0.011358240619301796,
- -0.04513787850737572,
- 0.020666930824518204,
- 0.06230214610695839,
- -0.004459804855287075,
- -0.016467537730932236,
- 0.06904340535402298,
- 0.07908838242292404,
- -0.058533526957035065,
- -0.05020241066813469,
- 0.03261002525687218,
- -0.06363403797149658,
- -0.008180261589586735,
- -0.004959156271070242,
- 0.06033078581094742,
- 0.014993693679571152,
- 0.01006937213242054,
- 0.037110041826963425,
- -0.02433372661471367,
- 0.0036379946395754814,
- -0.015258044004440308,
- 0.030969873070716858,
- -0.07361126691102982,
- 0.0317588746547699,
- 0.029897406697273254,
- 0.05908596143126488,
- 0.07562895864248276,
- 0.02051934227347374,
- 0.03280971199274063,
- 0.0053532784804701805,
- -0.006521768867969513,
- 0.09696967154741287,
- 0.013438889756798744,
- -0.028049683198332787,
- 0.07736101746559143,
- 0.00782839022576809,
- -0.02458808943629265,
- -0.03095082752406597,
- 0.016065118834376335,
- -0.011334477923810482,
- -0.0012997017474845052,
- 0.08279386162757874,
- 0.044295936822891235,
- 0.013358679600059986,
- -0.11163420975208282,
- 0.01153045054525137,
- 0.07499925047159195,
- 0.004973765928298235,
- -0.06746885925531387,
- -0.007622025441378355,
- -0.057406648993492126,
- 0.06993886828422546,
- -0.03828945755958557,
- -0.09130241721868515,
- -0.008025377057492733,
- -0.05743856728076935,
- 0.04073220118880272,
- 0.034317485988140106,
- -0.027719158679246902,
- -0.015676571056246758,
- 0.048955995589494705,
- 0.001514606410637498,
- 0.01379419956356287,
- -0.058448921889066696,
- -0.03365742415189743,
- -0.024256838485598564,
- 0.015024378895759583,
- -0.04754754900932312,
- 0.02721242606639862,
- -0.03301002085208893,
- -0.05323045700788498,
- 0.07338385283946991,
- 0.029382886365056038,
- -0.05536923184990883,
- 0.003973932471126318,
- -0.006710190791636705,
- 0.01687507890164852,
- 0.03191184997558594,
- -0.005354626104235649,
- -0.04029171168804169,
- -0.013026363216340542,
- -0.010998355224728584,
- 0.020373346284031868,
- -0.024575596675276756,
- 0.043852463364601135,
- -0.044236354529857635,
- -1.2359793188920776e-8,
- -0.0051079257391393185,
- 0.012040133588016033,
- 0.04948802664875984,
- -0.08677152544260025,
- -0.028471358120441437,
- -0.0006977880839258432,
- 0.03531241789460182,
- -0.013609501533210278,
- 0.08354227244853973,
- 0.012482700869441032,
- -0.008111158385872841,
- 0.014473933726549149,
- -0.030285101383924484,
- 0.0998561680316925,
- 0.06481555849313736,
- -0.0029838825576007366,
- 0.014508979395031929,
- 0.027944037690758705,
- -0.030941931530833244,
- 0.07806413620710373,
- 0.016839196905493736,
- 0.030054103583097458,
- -0.022690605372190475,
- 0.020682230591773987,
- 0.018367648124694824,
- 0.010790836066007614,
- -0.017757851630449295,
- 0.04947135969996452,
- 0.0726710632443428,
- 0.003964595962315798,
- 0.016544178128242493,
- 0.06400121003389359,
- -0.03533206507563591,
- -0.09717432409524918,
- -0.015420932322740555,
- 0.015723014250397682,
- 0.011958334594964981,
- -0.05524083971977234,
- 0.07092158496379852,
- -0.004377908539026976,
- 0.026743702590465546,
- 0.001434977282769978,
- 0.02040712721645832,
- 0.017223017290234566,
- -0.04570634663105011,
- -0.046279557049274445,
- 0.05330875143408775,
- -0.04690329730510712,
- 0.008838586509227753,
- -0.038259707391262054,
- -0.058379266411066055,
- -0.03322472795844078,
- -0.017129212617874146,
- -0.024991778656840324,
- 0.08772217482328415,
- -0.030171774327754974,
- 0.02973211742937565,
- -0.025284940376877785,
- -0.045804496854543686,
- 0.03436199575662613,
- 0.11417818814516068,
- 0.06226889789104462,
- 0.017567649483680725,
- 0.022241994738578796
- ]
- },
- {
- "keyword": "tablet",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04017479345202446,
- -0.01908022165298462,
- -0.0242978073656559,
- -0.10691317170858383,
- -0.03610575199127197,
- -0.0506998635828495,
- 0.1254691630601883,
- 0.08514537662267685,
- 0.05156117305159569,
- 0.045630570501089096,
- 0.034623514860868454,
- 0.00713302893564105,
- 0.004575048573315144,
- 0.008915265090763569,
- -0.02799396589398384,
- -0.07381963729858398,
- -0.00639329431578517,
- -0.0708879753947258,
- -0.07169941067695618,
- 0.0005273775313980877,
- -0.03156167268753052,
- 0.06809646636247635,
- 0.007005223538726568,
- -0.009761886671185493,
- 0.013321998529136181,
- 0.07939431071281433,
- 0.016066059470176697,
- 0.013669390231370926,
- 0.02002696320414543,
- -0.05374757945537567,
- 0.03472074121236801,
- 0.03788823261857033,
- -0.013622839003801346,
- -0.012375588528811932,
- -0.062421780079603195,
- -0.08276629447937012,
- -0.04695652425289154,
- -0.006041519809514284,
- 0.005719610955566168,
- -0.059219978749752045,
- -0.025649989023804665,
- -0.09200011193752289,
- -0.046492546796798706,
- 0.010912149213254452,
- 0.0007767072529532015,
- -0.05747807025909424,
- 0.004185069818049669,
- 0.019400088116526604,
- 0.09725388884544373,
- 0.08170964568853378,
- -0.028712516650557518,
- -0.007147819735109806,
- -0.04649432748556137,
- 0.01822788454592228,
- -0.040561605244874954,
- -0.022908976301550865,
- -0.06533095240592957,
- 0.05194065347313881,
- 0.0007244800799526274,
- 0.06524411588907242,
- 0.019389811903238297,
- -0.04749209061264992,
- -0.01658833771944046,
- 0.0460854098200798,
- -0.026101507246494293,
- 0.05870629847049713,
- 0.026755109429359436,
- -0.06434710323810577,
- 0.0674339160323143,
- -0.04270900413393974,
- -0.03261769935488701,
- 0.03229515999555588,
- 0.06380223482847214,
- -0.005208340007811785,
- -0.0025623682886362076,
- -0.06918273121118546,
- 0.06315942853689194,
- -0.009004331193864346,
- 0.02156679332256317,
- -0.009491381235420704,
- 0.03182555362582207,
- 0.03571563959121704,
- 0.03148151561617851,
- 0.03879975527524948,
- 0.05491529032588005,
- -0.015615648590028286,
- 0.013029907830059528,
- 0.07417888939380646,
- -0.05306175723671913,
- -0.03118152916431427,
- -0.025960415601730347,
- 0.0719028189778328,
- -0.02373022958636284,
- 0.027088377624750137,
- -0.1087702065706253,
- -0.05594390630722046,
- 0.0349835604429245,
- -0.06460462510585785,
- -0.1424867957830429,
- 0.27713146805763245,
- 0.030946195125579834,
- 0.13539917767047882,
- 0.05990780517458916,
- 0.012249235063791275,
- -0.03611031547188759,
- -0.1054665744304657,
- 0.04176780581474304,
- -0.03488875553011894,
- -0.01120878104120493,
- -0.025746984407305717,
- -0.014123057946562767,
- -0.0566963329911232,
- -0.03878255933523178,
- -0.04661450535058975,
- -0.03161069005727768,
- -0.016543490812182426,
- -0.014628497883677483,
- 0.08013057708740234,
- 0.07891367375850677,
- 0.03110514022409916,
- -0.0432051382958889,
- 0.025955459102988243,
- -0.03947347030043602,
- -0.030838020145893097,
- -0.07825292646884918,
- -0.015595619566738605,
- -0.017001796513795853,
- -3.835296071345432e-33,
- -0.00746966851875186,
- 0.05361548066139221,
- 0.0037421940360218287,
- 0.009810895659029484,
- -0.02712753415107727,
- 0.018133550882339478,
- -0.005546914413571358,
- -0.007291319780051708,
- 0.011814755387604237,
- -0.02315700426697731,
- -0.05637731775641441,
- -0.03582132235169411,
- -0.11700799316167831,
- 0.057870395481586456,
- 0.08085724711418152,
- 0.013391241431236267,
- -0.040954336524009705,
- 0.06465764343738556,
- -0.007247024215757847,
- -0.030429156497120857,
- -0.05131091922521591,
- -0.013408893719315529,
- -0.005035250913351774,
- 0.0018036592518910766,
- -0.045423246920108795,
- 0.014016462489962578,
- -0.008707433938980103,
- -0.006979317869991064,
- 0.09597359597682953,
- 0.02641727402806282,
- -0.039228230714797974,
- -0.06000296026468277,
- -0.03195476904511452,
- -0.12030897289514542,
- -0.01854173094034195,
- -0.06688252091407776,
- -0.0444951206445694,
- -0.0799596831202507,
- 0.09279874712228775,
- 0.005767720751464367,
- -0.04041802138090134,
- 0.0291148591786623,
- -0.009150363504886627,
- 0.008182162418961525,
- 0.025359397754073143,
- 0.024606475606560707,
- 0.0019371218513697386,
- 0.06793206930160522,
- -0.042240776121616364,
- 0.049054451286792755,
- -0.018584826961159706,
- -0.06012531369924545,
- 0.009619583375751972,
- -0.0003120833425782621,
- -0.03523702919483185,
- -0.06617683172225952,
- -0.060817040503025055,
- 0.006823270116001368,
- 0.05032772570848465,
- 0.04326249659061432,
- 0.053017910569906235,
- 0.03440484032034874,
- -0.004487929400056601,
- 0.0739956945180893,
- -0.05449618771672249,
- 0.0371345654129982,
- 0.014944029040634632,
- -0.036895718425512314,
- 0.03569595143198967,
- -0.028381597250699997,
- -0.06618501991033554,
- -0.04745709151029587,
- 0.1158253625035286,
- -0.0012605394003912807,
- -0.01916183903813362,
- 0.01479156594723463,
- 0.04757107421755791,
- -0.02551712654531002,
- -0.09807676821947098,
- -0.0580214224755764,
- -0.008238095790147781,
- -0.03288732469081879,
- -0.011955427937209606,
- 0.01620491035282612,
- -0.13382405042648315,
- 0.06294690072536469,
- -0.011871478520333767,
- -0.14584316313266754,
- -0.02316199615597725,
- 0.0008626797352917492,
- -0.08643532544374466,
- 0.02076319418847561,
- -0.020473012700676918,
- 0.0176372192800045,
- 0.0036393965128809214,
- 3.887309859659395e-33,
- -0.03821365162730217,
- -0.0463358536362648,
- -0.038744088262319565,
- 0.006295862607657909,
- -0.011933431960642338,
- -0.02399023063480854,
- 0.11940469592809677,
- -0.015387989580631256,
- 0.007886352948844433,
- 0.0017762191127985716,
- -0.04754180461168289,
- 0.008553504943847656,
- 0.08707263320684433,
- -0.053965404629707336,
- 0.02977244183421135,
- 0.0991184338927269,
- 0.09778604656457901,
- -0.0605618879199028,
- -0.01704704388976097,
- -0.060614850372076035,
- -0.06259243190288544,
- 0.048639241605997086,
- 0.037230703979730606,
- 0.028901120647788048,
- 0.02489704079926014,
- 0.03740724176168442,
- 0.04559004679322243,
- 0.008893161080777645,
- 0.030568202957510948,
- 0.06544969230890274,
- 0.09877002239227295,
- -0.046940386295318604,
- -0.011898701079189777,
- 0.062638059258461,
- 0.022088440135121346,
- 0.07183745503425598,
- 0.07356203347444534,
- -0.06694631278514862,
- -0.03872127830982208,
- -0.037348754703998566,
- 0.07600676268339157,
- 0.009797947481274605,
- -0.010953537188470364,
- 0.11405279487371445,
- 0.038756854832172394,
- 0.04843488708138466,
- 0.006323774810880423,
- 0.026789991185069084,
- 0.0000696411298122257,
- 0.013312825933098793,
- -0.02626597136259079,
- 0.020892225205898285,
- 0.020856061950325966,
- -0.1018628478050232,
- 0.00869117584079504,
- -0.0008933608769439161,
- 0.02189815230667591,
- -0.038049083203077316,
- -0.04007215425372124,
- -0.10746248066425323,
- -0.031864944845438004,
- 0.022266462445259094,
- -0.04544850438833237,
- -0.011925658211112022,
- -0.03569253534078598,
- 0.03245146945118904,
- 0.06470268964767456,
- 0.04182896763086319,
- 0.02170480601489544,
- 0.05723455548286438,
- 0.029927430674433708,
- 0.012047500349581242,
- 0.017753245308995247,
- 0.005236714147031307,
- -0.0072936853393912315,
- 0.10003329813480377,
- -0.05007025599479675,
- -0.00870505254715681,
- -0.08933974802494049,
- -0.1002318486571312,
- -0.0008926293812692165,
- -0.0745963528752327,
- -0.013798881322145462,
- -0.013434140011668205,
- -0.0466751866042614,
- -0.05784221738576889,
- 0.09322849661111832,
- 0.014352981001138687,
- -0.00820145383477211,
- 0.04469316080212593,
- 0.04327867925167084,
- 0.0025490080006420612,
- -0.07651550322771072,
- 0.09029281139373779,
- 0.07197257876396179,
- -1.0795113247752397e-8,
- 0.02353963814675808,
- 0.03457530215382576,
- 0.040358446538448334,
- 0.010173728689551353,
- -0.0096894521266222,
- -0.03299178555607796,
- 0.07365299016237259,
- 0.03520340844988823,
- 0.08634607493877411,
- 0.009476294741034508,
- 0.019786996766924858,
- -0.006970514543354511,
- -0.02254430390894413,
- 0.07822667807340622,
- 0.05513252690434456,
- 0.09389741718769073,
- 0.058946575969457626,
- 0.05021107569336891,
- -0.044195909053087234,
- -0.041327688843011856,
- -0.007400369271636009,
- 0.04123750329017639,
- 0.018499011173844337,
- -0.07047176361083984,
- 0.026880912482738495,
- -0.016468025743961334,
- 0.03284578025341034,
- 0.07847242802381516,
- 0.030749518424272537,
- -0.024723168462514877,
- 0.009044148959219456,
- -0.005469252355396748,
- -0.010645377449691296,
- -0.009030136279761791,
- 0.032434817403554916,
- -0.035749174654483795,
- 0.0012256226036697626,
- 0.030841205269098282,
- 0.021253786981105804,
- 0.049278631806373596,
- -0.007734429556876421,
- -0.006732545793056488,
- -0.001729327836073935,
- -0.02529744990170002,
- -0.06055803969502449,
- 0.005204022862017155,
- 0.01724722795188427,
- 0.018059466034173965,
- 0.03728004917502403,
- 0.06469930708408356,
- -0.002831903984770179,
- 0.08162076771259308,
- 0.04409275949001312,
- 0.024163424968719482,
- 0.020705347880721092,
- -0.008227836340665817,
- -0.008628157898783684,
- 0.027052992954850197,
- -0.048972759395837784,
- 0.019280830398201942,
- 0.11358050256967545,
- 0.04173652082681656,
- -0.018470024690032005,
- 0.021042853593826294
- ]
- },
- {
- "keyword": "computer",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04933398589491844,
- 0.046660415828228,
- -0.0005171468947082758,
- -0.028264814987778664,
- -0.03142166882753372,
- -0.03509790822863579,
- 0.09550119936466217,
- 0.03478194400668144,
- 0.07621531188488007,
- 0.016237473115324974,
- 0.0063161831349134445,
- -0.01171927247196436,
- 0.038518667221069336,
- -0.030670110136270523,
- -0.047993794083595276,
- -0.03700685873627663,
- -0.021493401378393173,
- -0.11390694230794907,
- -0.05667255073785782,
- -0.04362475499510765,
- -0.06177007406949997,
- -0.011672718450427055,
- -0.08833231776952744,
- 0.009398291818797588,
- 0.0027212437707930803,
- 0.09422886371612549,
- -0.03570117428898811,
- 0.00024413297069258988,
- -0.028187528252601624,
- -0.10449255257844925,
- -0.04342540726065636,
- -0.03135788068175316,
- 0.08201701939105988,
- 0.010757777839899063,
- -0.04527437314391136,
- -0.026794420555233955,
- 0.040932796895504,
- -0.02452041581273079,
- 0.021365225315093994,
- -0.06153560057282448,
- -0.013575592078268528,
- -0.0058222003281116486,
- 0.06696438789367676,
- 0.0260439645498991,
- 0.056047022342681885,
- 0.03880787640810013,
- 0.01624223031103611,
- -0.0019903185311704874,
- 0.05278899893164635,
- 0.04013650491833687,
- -0.07430950552225113,
- -0.002538781613111496,
- 0.0009167541284114122,
- 0.030941253527998924,
- -0.062437329441308975,
- 0.03175683319568634,
- 0.058294955641031265,
- 0.04518836364150047,
- -0.013334298506379128,
- -0.032303694635629654,
- -0.017665814608335495,
- -0.06164749339222908,
- -0.02710857428610325,
- 0.018850378692150116,
- 0.0696384534239769,
- 0.008735987357795238,
- -0.02423928864300251,
- 0.022757796570658684,
- 0.002462655073031783,
- -0.008898453786969185,
- -0.036631837487220764,
- 0.02141982689499855,
- -0.023638267070055008,
- 0.08941513299942017,
- 0.03710215166211128,
- -0.03859597072005272,
- 0.019261181354522705,
- -0.04048683121800423,
- 0.08487953990697861,
- 0.03635092452168465,
- 0.047570329159498215,
- -0.030767830088734627,
- -0.10615961253643036,
- 0.03224502503871918,
- 0.008393218740820885,
- -0.011877630837261677,
- -0.04919622465968132,
- 0.05784119293093681,
- -0.05353975296020508,
- -0.08212219178676605,
- -0.03438398614525795,
- -0.029513640329241753,
- 0.05098050832748413,
- 0.010231254622340202,
- -0.11257104575634003,
- -0.005451125558465719,
- 0.051533572375774384,
- -0.07662949711084366,
- -0.016495326533913612,
- 0.2534037232398987,
- 0.027837688103318214,
- 0.03198982775211334,
- 0.09736332297325134,
- 0.011058317497372627,
- -0.01830398291349411,
- -0.04010109230875969,
- -0.033038679510354996,
- 0.07389400154352188,
- 0.0050937701016664505,
- -0.07010162621736526,
- -0.0646883025765419,
- -0.010964177548885345,
- -0.09173465520143509,
- -0.007651329971849918,
- 0.028051866218447685,
- -0.0056735072284936905,
- -0.049074046313762665,
- 0.0891224816441536,
- 0.03298378363251686,
- 0.0031552978325635195,
- -0.03244393691420555,
- -0.014720735140144825,
- 0.018046556040644646,
- 0.028252316638827324,
- 0.018515612930059433,
- -0.06511089950799942,
- -0.016099989414215088,
- -3.700807762667854e-33,
- 0.04529058560729027,
- -0.047949086874723434,
- -0.00838447455316782,
- 0.054941095411777496,
- 0.0004795402055606246,
- 0.02393762394785881,
- 0.02405080385506153,
- -0.005991306621581316,
- -0.02784113585948944,
- 0.05277808755636215,
- 0.017481235787272453,
- 0.03867831081151962,
- -0.009704846888780594,
- 0.058684684336185455,
- 0.1853472739458084,
- 0.02136395499110222,
- 0.035088054835796356,
- 0.03296969085931778,
- -0.0677131861448288,
- -0.04619232192635536,
- 0.03772692009806633,
- 0.017568625509738922,
- 0.019903525710105896,
- 0.057283736765384674,
- 0.002127250423654914,
- -0.057370733469724655,
- -0.07784780114889145,
- -0.05597585067152977,
- 0.06253829598426819,
- 0.014698677696287632,
- 0.02865934744477272,
- 0.01822751760482788,
- -0.03237834572792053,
- -0.08808014541864395,
- -0.004083297681063414,
- -0.029858699068427086,
- 0.03196028992533684,
- -0.05413859337568283,
- 0.08140667527914047,
- 0.016723455861210823,
- -0.03811374306678772,
- 0.03652348741889,
- 0.06104607507586479,
- -0.027452202513813972,
- 0.030881958082318306,
- -0.010926304385066032,
- 0.07758887112140656,
- 0.0699397623538971,
- -0.04326879233121872,
- 0.06897672265768051,
- -0.020467648282647133,
- -0.021800875663757324,
- 0.04226475954055786,
- 0.022463057190179825,
- -0.013940468430519104,
- -0.003013740526512265,
- 0.03462338075041771,
- 0.008432320319116116,
- 0.07820753753185272,
- 0.04151396080851555,
- 0.09308689832687378,
- 0.11429297178983688,
- 0.04347892850637436,
- -0.011462981812655926,
- -0.021154860034585,
- 0.02736707776784897,
- 0.08773208409547806,
- 0.02506447769701481,
- 0.030930280685424805,
- -0.03657256066799164,
- -0.08075476437807083,
- -0.09841219335794449,
- 0.027993157505989075,
- -0.023621592670679092,
- 0.02407396025955677,
- 0.030386948958039284,
- -0.0666857585310936,
- -0.017984841018915176,
- -0.14220547676086426,
- 0.007682841271162033,
- -0.0814022421836853,
- -0.04904128238558769,
- -0.06251168996095657,
- 0.07057442516088486,
- 0.029096022248268127,
- 0.046509016305208206,
- -0.09013649076223373,
- -0.07860415428876877,
- 0.011809239163994789,
- 0.02971496619284153,
- -0.056998152285814285,
- 0.006605924107134342,
- 0.04341549426317215,
- 0.08998949080705643,
- -0.051657773554325104,
- 3.3487872448729036e-33,
- -0.08567506074905396,
- -0.08068374544382095,
- 0.012973768636584282,
- 0.0767330750823021,
- 0.06355287879705429,
- -0.029093092307448387,
- 0.05856521055102348,
- -0.04968031868338585,
- -0.06484274566173553,
- 0.008658328093588352,
- -0.008425538428127766,
- -0.006694204173982143,
- 0.0751475915312767,
- 0.011877908371388912,
- 0.04269750416278839,
- 0.06376371532678604,
- 0.00798944290727377,
- 0.015734517946839333,
- -0.013932674191892147,
- 0.0058423178270459175,
- -0.050514623522758484,
- -0.07453896105289459,
- -0.022128885611891747,
- -0.06328889727592468,
- 0.011912397108972073,
- 0.03992731496691704,
- 0.039581265300512314,
- -0.03544409200549126,
- 0.019946839660406113,
- 0.034041114151477814,
- 0.020390843972563744,
- -0.007194417528808117,
- -0.03161963075399399,
- 0.08612652868032455,
- 0.03816784918308258,
- 0.070230633020401,
- 0.045433733612298965,
- -0.05495143309235573,
- 0.0022528786212205887,
- -0.04796332120895386,
- 0.10462544858455658,
- 0.038984235376119614,
- -0.00814774539321661,
- 0.1712644100189209,
- -0.0337405800819397,
- 0.013098839670419693,
- -0.1088084802031517,
- 0.017776407301425934,
- 0.05782982334494591,
- 0.029584789648652077,
- 0.013481724075973034,
- -0.056120339781045914,
- 0.07071035355329514,
- -0.07392670959234238,
- -0.024692552164196968,
- -0.020042872056365013,
- -0.04752882570028305,
- 0.0484386570751667,
- 0.04891584441065788,
- -0.021789532154798508,
- -0.0035908552818000317,
- -0.05328591540455818,
- -0.04191408306360245,
- 0.00831352174282074,
- -0.09393645823001862,
- 0.02370237186551094,
- 0.054144591093063354,
- 0.07580377161502838,
- -0.055711567401885986,
- -0.02563886158168316,
- 0.06277309358119965,
- 0.059431273490190506,
- 0.00006057344580767676,
- 0.016265660524368286,
- -0.07655870914459229,
- 0.008674989454448223,
- -0.043345190584659576,
- 0.005381567403674126,
- -0.040152646601200104,
- -0.03347575291991234,
- 0.022391751408576965,
- 0.006533425766974688,
- -0.042218077927827835,
- -0.003995385952293873,
- -0.045808400958776474,
- -0.05449797585606575,
- 0.02587335929274559,
- 0.004798899870365858,
- -0.030639169737696648,
- -0.11188928782939911,
- -0.027432512491941452,
- 0.02965330332517624,
- -0.03542344644665718,
- 0.0033705267123878,
- -0.02786821871995926,
- -1.190096288183895e-8,
- 0.007460059132426977,
- -0.038147080689668655,
- 0.028361398726701736,
- -0.02856295369565487,
- 0.059189096093177795,
- 0.02169652283191681,
- 0.01984676904976368,
- -0.007335852365940809,
- 0.034708213061094284,
- 0.019897952675819397,
- 0.04231962561607361,
- -0.019295156002044678,
- 0.0031235271599143744,
- 0.016812391579151154,
- 0.10326557606458664,
- -0.021331259980797768,
- -0.007148703094571829,
- 0.0337907113134861,
- -0.022364741191267967,
- -0.020837197080254555,
- 0.05916139483451843,
- 0.0033522378653287888,
- 0.03836522251367569,
- 0.029271157458424568,
- 0.03054906241595745,
- -0.08407580852508545,
- 0.07243388891220093,
- 0.08698845654726028,
- 0.0033791533205658197,
- 0.06792783737182617,
- -0.03293212503194809,
- 0.017576707527041435,
- -0.06530316174030304,
- -0.035711620002985,
- 0.015519395470619202,
- -0.05122947692871094,
- 0.015906769782304764,
- 0.005481896921992302,
- 0.054218895733356476,
- -0.06769995391368866,
- -0.026691699400544167,
- -0.05602295324206352,
- 0.0023057651706039906,
- -0.025218240916728973,
- 0.012073216959834099,
- -0.0518307201564312,
- -0.0332271009683609,
- -0.09159751236438751,
- -0.01689932309091091,
- 0.015222117304801941,
- -0.030958160758018494,
- 0.012011045590043068,
- 0.03889017552137375,
- 0.08769263327121735,
- 0.057833001017570496,
- -0.05007787048816681,
- -0.029642706736922264,
- 0.03542603179812431,
- -0.0633893758058548,
- 0.10475882887840271,
- 0.09752531349658966,
- 0.039052605628967285,
- -0.019780749455094337,
- -0.013206633739173412
- ]
- },
- {
- "keyword": "laptop",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.05179845169186592,
- 0.08259172737598419,
- -0.0026057108771055937,
- 0.0023940654937177896,
- 0.010518495924770832,
- -0.012834583409130573,
- 0.06965730339288712,
- 0.03366226330399513,
- 0.08820943534374237,
- -0.0046924506314098835,
- 0.07090595364570618,
- 0.00914699211716652,
- 0.026363400742411613,
- -0.024347951635718346,
- 0.0353531613945961,
- -0.047279950231313705,
- 0.03881222754716873,
- -0.14044807851314545,
- -0.04435970261693001,
- -0.06934972107410431,
- -0.07433025538921356,
- 0.014212739653885365,
- -0.05425645038485527,
- -0.00001609278297109995,
- 0.014165249653160572,
- -0.005741219501942396,
- 0.012112652882933617,
- 0.0016040799673646688,
- -0.080622598528862,
- -0.04197157174348831,
- -0.009510764852166176,
- -0.02597990445792675,
- -0.029112692922353745,
- 0.04259437322616577,
- -0.03804202005267143,
- -0.0695253312587738,
- 0.01866151951253414,
- 0.024379558861255646,
- 0.07710637152194977,
- -0.1087864488363266,
- -0.06040254607796669,
- -0.08209062367677689,
- 0.06689408421516418,
- -0.021327152848243713,
- 0.06671562045812607,
- 0.009781302884221077,
- 0.01802351139485836,
- 0.044465452432632446,
- 0.07886719703674316,
- 0.04509734734892845,
- 0.0020566144958138466,
- -0.008607033640146255,
- -0.03518293425440788,
- -0.010157028213143349,
- -0.06721267849206924,
- 0.008988688699901104,
- 0.012217196635901928,
- 0.03946125879883766,
- -0.020031025633215904,
- -0.007201561704277992,
- 0.07597345113754272,
- -0.0782608687877655,
- -0.06722591817378998,
- 0.036139559000730515,
- -0.0029582639690488577,
- -0.05365804582834244,
- -0.006499669048935175,
- -0.050160642713308334,
- -0.022732241079211235,
- 0.05215080454945564,
- -0.01510231476277113,
- 0.048612985759973526,
- 0.03564124554395676,
- 0.03674427047371864,
- -0.01733807660639286,
- -0.05326111242175102,
- 0.031873248517513275,
- 0.032746944576501846,
- 0.058888986706733704,
- 0.021920721977949142,
- -0.010549976490437984,
- 0.04587563872337341,
- -0.04640396311879158,
- 0.06954523921012878,
- -0.0023223620373755693,
- -0.03970508649945259,
- -0.03022787906229496,
- 0.03619302809238434,
- -0.09802298992872238,
- -0.07780060917139053,
- -0.024259241297841072,
- 0.005965423304587603,
- -0.026500210165977478,
- 0.008396157994866371,
- -0.13823579251766205,
- -0.018066152930259705,
- 0.085033118724823,
- -0.04796994850039482,
- -0.04023238271474838,
- 0.22437115013599396,
- 0.01323858555406332,
- 0.04509760066866875,
- 0.09853839129209518,
- -0.014536509290337563,
- -0.020096085965633392,
- -0.030775833874940872,
- -0.01856091618537903,
- 0.05410923436284065,
- 0.015311180613934994,
- -0.0438576340675354,
- -0.06966378539800644,
- -0.02594631165266037,
- -0.05803578346967697,
- 0.006730969063937664,
- 0.009827550500631332,
- -0.0322495736181736,
- -0.05304545536637306,
- 0.012448634020984173,
- -0.00006258969369810075,
- 0.03984156623482704,
- -0.05128415301442146,
- 0.0034141766373068094,
- 0.030266985297203064,
- -0.04783628508448601,
- -0.06157466769218445,
- -0.04428310692310333,
- -0.006722056772559881,
- -3.802777122155887e-33,
- 0.05862879753112793,
- -0.04300667345523834,
- -0.005970214959233999,
- -0.01571434549987316,
- -0.032078228890895844,
- 0.024523580446839333,
- 0.037476103752851486,
- -0.028629116714000702,
- -0.004987443797290325,
- 0.05223744735121727,
- -0.01369889173656702,
- -0.03494340181350708,
- -0.021562008187174797,
- -0.002513247774913907,
- 0.16033029556274414,
- 0.01575802080333233,
- 0.04056655615568161,
- 0.040737397968769073,
- -0.11451312899589539,
- -0.031080620363354683,
- -0.007795012556016445,
- -0.03026050329208374,
- 0.006481102202087641,
- 0.020619841292500496,
- -0.006532423663884401,
- -0.008962687104940414,
- -0.05468881502747536,
- -0.025205805897712708,
- 0.017235010862350464,
- 0.05856515094637871,
- 0.023116672411561012,
- -0.03435434401035309,
- -0.08417908847332001,
- -0.10879702121019363,
- -0.05540161579847336,
- -0.01867426559329033,
- -0.013745606876909733,
- -0.07294926047325134,
- 0.10102715343236923,
- -0.01820432022213936,
- -0.06174655631184578,
- 0.057672955095767975,
- -0.018538691103458405,
- -0.04598157852888107,
- 0.0357377715408802,
- 0.0367913618683815,
- 0.0433131642639637,
- 0.11393416672945023,
- -0.028671827167272568,
- 0.08258097618818283,
- -0.0556921511888504,
- -0.018494194373488426,
- 0.05026969313621521,
- -0.0009217745391651988,
- -0.037081871181726456,
- 0.004052871372550726,
- 0.060944873839616776,
- 0.009500537998974323,
- 0.08967199176549911,
- 0.019761648029088974,
- 0.09055978059768677,
- 0.05310530960559845,
- 0.008198454976081848,
- 0.0014927962329238653,
- -0.01575152762234211,
- 0.035179413855075836,
- 0.11855622380971909,
- 0.003982604015618563,
- -0.0042633358389139175,
- -0.039977066218853,
- -0.05584224313497543,
- -0.08106440305709839,
- 0.03343810886144638,
- 0.012147963978350163,
- 0.02085825614631176,
- 0.0004227451572660357,
- -0.01931772381067276,
- 0.010677424259483814,
- -0.1115458682179451,
- 0.009877406992018223,
- -0.043447766453027725,
- -0.03385552391409874,
- 0.022309860214591026,
- 0.00615777587518096,
- -0.023144179955124855,
- 0.07853622734546661,
- -0.10573520511388779,
- -0.11630281805992126,
- -0.015834959223866463,
- 0.038444556295871735,
- -0.0024945945478975773,
- 0.012820428237318993,
- -0.02485634572803974,
- 0.0425705723464489,
- 0.025644058361649513,
- 3.131558092892853e-33,
- -0.006632247008383274,
- -0.013192551210522652,
- 0.025636835023760796,
- 0.002200273796916008,
- 0.08164302259683609,
- -0.02886727638542652,
- 0.008775857277214527,
- -0.0013897632015869021,
- -0.08289627730846405,
- 0.025496337562799454,
- -0.023648599162697792,
- 0.010860742069780827,
- 0.034552495926618576,
- -0.011189847253262997,
- 0.11462511122226715,
- 0.04963143542408943,
- 0.022831127047538757,
- -0.016316145658493042,
- 0.02480279840528965,
- 0.02009611949324608,
- -0.056820742785930634,
- -0.038388174027204514,
- 0.00446155434474349,
- -0.07797928899526596,
- -0.009701095521450043,
- 0.00602516857907176,
- -0.045393045991659164,
- 0.01954665407538414,
- -0.02120153233408928,
- 0.006596195511519909,
- 0.00027752856840379536,
- -0.03817807510495186,
- 0.0006114350981079042,
- 0.06618279218673706,
- 0.08132638782262802,
- -0.008305748924612999,
- 0.04286038130521774,
- -0.038104768842458725,
- 0.027972886338829994,
- -0.0012985047651454806,
- 0.11532361805438995,
- 0.028328273445367813,
- 0.008123917505145073,
- 0.13566060364246368,
- 0.04638710618019104,
- -0.045053593814373016,
- -0.09456202387809753,
- -0.05209532380104065,
- 0.09020388871431351,
- -0.037403810769319534,
- 0.013277724385261536,
- -0.03227221220731735,
- 0.06997359544038773,
- -0.04110923409461975,
- 0.0026953769847750664,
- -0.038267239928245544,
- -0.05131973326206207,
- 0.050011806190013885,
- 0.0741741880774498,
- -0.0565890297293663,
- -0.023604588583111763,
- -0.021722257137298584,
- -0.034910742193460464,
- 0.05009671300649643,
- -0.06149871274828911,
- 0.038073405623435974,
- 0.04281756281852722,
- 0.05495795980095863,
- 0.025788916274905205,
- -0.04966849088668823,
- -0.007225340232253075,
- -0.02608521096408367,
- 0.02801603265106678,
- 0.03462989255785942,
- -0.05718429014086723,
- -0.044722918421030045,
- -0.027443163096904755,
- -0.014276677742600441,
- -0.02392231859266758,
- 0.02071690559387207,
- 0.0899873822927475,
- -0.03723258525133133,
- -0.03718316927552223,
- -0.013322904706001282,
- -0.014115951955318451,
- -0.09229467064142227,
- 0.060009658336639404,
- 0.03956950083374977,
- -0.07389310002326965,
- -0.025511223822832108,
- 0.05340875685214996,
- 0.04471440985798836,
- -0.03211250528693199,
- 0.031559839844703674,
- 0.006651190109550953,
- -1.1181734649312602e-8,
- -0.009369568899273872,
- 0.021085428074002266,
- 0.05399845167994499,
- 0.03419938310980797,
- -0.00353015074506402,
- -0.011210649274289608,
- 0.04191211983561516,
- 0.004806754644960165,
- 0.1060117855668068,
- 0.04364411532878876,
- 0.04261618107557297,
- -0.0787486881017685,
- 0.03444598242640495,
- 0.05929193273186684,
- 0.028854161500930786,
- 0.029591290280222893,
- -0.03296208009123802,
- 0.1161307618021965,
- -0.019097717478871346,
- 0.011542629450559616,
- 0.061812348663806915,
- 0.011131355538964272,
- 0.10290928930044174,
- 0.0002843417169060558,
- 0.05979294702410698,
- -0.04660271108150482,
- 0.013915824703872204,
- 0.05032913759350777,
- 0.040597714483737946,
- 0.024562101811170578,
- -0.11133906990289688,
- 0.0483078770339489,
- -0.03212001919746399,
- -0.005916778929531574,
- -0.0639345720410347,
- -0.0896439477801323,
- 0.0038092315662652254,
- 0.010372478514909744,
- 0.08022452145814896,
- 0.034271858632564545,
- 0.014243275858461857,
- -0.0647106021642685,
- -0.03456580266356468,
- -0.022900359705090523,
- 0.03222392871975899,
- -0.0026710829697549343,
- -0.0037487929221242666,
- -0.10090719163417816,
- -0.07373630255460739,
- 0.050823576748371124,
- -0.02354603074491024,
- 0.009319473057985306,
- 0.07858021557331085,
- 0.06185317412018776,
- -0.004028121940791607,
- -0.010035055689513683,
- -0.001962686190381646,
- 0.07671207189559937,
- -0.08298598974943161,
- 0.022442830726504326,
- 0.15791405737400055,
- 0.053900688886642456,
- -0.05589279159903526,
- 0.023569853976368904
- ]
- },
- {
- "keyword": "desktop",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.000887557864189148,
- 0.016075750812888145,
- 0.014447709545493126,
- -0.0722920373082161,
- -0.04248102754354477,
- 0.001823661383241415,
- 0.036959804594516754,
- 0.028643319383263588,
- 0.01973208412528038,
- -0.010989991948008537,
- 0.03296452760696411,
- 0.0010523368837311864,
- 0.03213557228446007,
- -0.03445447236299515,
- -0.040184516459703445,
- -0.04738345742225647,
- -0.0197016429156065,
- -0.09169592708349228,
- -0.0038546682335436344,
- 0.04621277377009392,
- -0.11701681464910507,
- -0.056415993720293045,
- -0.07363539189100266,
- -0.026636363938450813,
- 0.06482455134391785,
- 0.020481161773204803,
- -0.023133836686611176,
- 0.016144266352057457,
- 0.007482306566089392,
- -0.09792353957891464,
- 0.0005838993820361793,
- 0.001264200429432094,
- -0.03636893630027771,
- 0.00503247557207942,
- -0.07433774322271347,
- -0.017573846504092216,
- 0.053878303617239,
- -0.017125317826867104,
- -0.028207901865243912,
- -0.035084813833236694,
- -0.044039227068424225,
- -0.0320773608982563,
- 0.01033678650856018,
- 0.04329029843211174,
- 0.07065815478563309,
- 0.02206226997077465,
- 0.0017200120491907,
- -0.08477789908647537,
- 0.05683261156082153,
- 0.036497414112091064,
- -0.02575715072453022,
- 0.0006652268930338323,
- -0.039958320558071136,
- 0.04799971729516983,
- -0.032709408551454544,
- -0.03332606330513954,
- 0.01923586241900921,
- 0.1179540604352951,
- -0.0021171001717448235,
- -0.02226812019944191,
- 0.026731494814157486,
- -0.05566902086138725,
- -0.005220493301749229,
- 0.06154155358672142,
- 0.07386713474988937,
- -0.05297276750206947,
- -0.11379697173833847,
- -0.004981144331395626,
- -0.008173500187695026,
- -0.015386882238090038,
- -0.025829946622252464,
- -0.008958512917160988,
- 0.006683883257210255,
- -0.007098789792507887,
- -0.04732988774776459,
- -0.04430990293622017,
- 0.012066026218235493,
- -0.03498981520533562,
- 0.08532266318798065,
- 0.05574163794517517,
- 0.06640183180570602,
- 0.07467400282621384,
- -0.06973091512918472,
- 0.024812690913677216,
- 0.02557663805782795,
- 0.012628467753529549,
- -0.039371129125356674,
- 0.006345726083964109,
- -0.07399456948041916,
- -0.07445122301578522,
- -0.024585314095020294,
- -0.016357421875,
- 0.06260280311107635,
- 0.026333926245570183,
- -0.1359737664461136,
- -0.03617430850863457,
- 0.033744633197784424,
- -0.07011208683252335,
- -0.007414143532514572,
- 0.2276909500360489,
- 0.022283274680376053,
- 0.03440996631979942,
- 0.11035347729921341,
- 0.037016816437244415,
- -0.01704329438507557,
- 0.01959131471812725,
- -0.001977465581148863,
- -0.041784800589084625,
- -0.022536810487508774,
- -0.020027192309498787,
- -0.04821297526359558,
- -0.003824167884886265,
- -0.13833929598331451,
- -0.05565869063138962,
- 0.0270627960562706,
- 0.011922192759811878,
- -0.0923081561923027,
- 0.026510003954172134,
- 0.044192951172590256,
- -0.022660981863737106,
- 0.0006284739356487989,
- -0.0067367227748036385,
- 0.002560050692409277,
- -0.025569312274456024,
- 0.03343264013528824,
- -0.00681326212361455,
- 0.013674822635948658,
- -3.627963847115335e-33,
- -0.0075440844520926476,
- -0.07958008348941803,
- -0.06602145731449127,
- 0.06809601932764053,
- 0.02268865332007408,
- 0.01417789701372385,
- 0.015833796933293343,
- 0.033545006066560745,
- -0.009265725500881672,
- 0.054406311362981796,
- 0.03682275488972664,
- 0.035948190838098526,
- 0.00914084818214178,
- 0.007561944425106049,
- 0.12745383381843567,
- -0.002879538806155324,
- 0.1254671961069107,
- 0.05861225351691246,
- -0.07523243874311447,
- -0.018492411822080612,
- 0.0016745473258197308,
- -0.04923778027296066,
- -0.01761045679450035,
- 0.013246693648397923,
- 0.021969716995954514,
- -0.047274719923734665,
- -0.03659244254231453,
- -0.048415087163448334,
- 0.040442679077386856,
- 0.00013371597742661834,
- 0.002287255134433508,
- 0.01376896072179079,
- -0.037014786154031754,
- -0.009464477188885212,
- -0.059915125370025635,
- -0.05365122854709625,
- -0.05690333619713783,
- -0.03912873938679695,
- 0.06677598506212234,
- 0.034028325229883194,
- -0.09956811368465424,
- 0.02114420384168625,
- 0.0630570650100708,
- 0.005918371025472879,
- 0.05638887733221054,
- 0.030130259692668915,
- 0.05347362905740738,
- -0.02079600840806961,
- -0.02072829194366932,
- 0.051942694932222366,
- -0.011974656023085117,
- -0.022459369152784348,
- -0.03342844173312187,
- 0.08440203219652176,
- -0.01846947893500328,
- -0.036221083253622055,
- 0.005005811806768179,
- 0.05195760726928711,
- 0.056606702506542206,
- 0.08912099897861481,
- 0.06598338484764099,
- 0.04736754298210144,
- -0.009165583178400993,
- -0.03287956118583679,
- -0.09157904982566833,
- -0.026494091376662254,
- 0.09686063230037689,
- 0.06726999580860138,
- -0.026314817368984222,
- -0.06232414394617081,
- -0.016280293464660645,
- -0.08199600130319595,
- 0.06370192766189575,
- -0.015762021765112877,
- 0.07173903286457062,
- -0.01812683418393135,
- -0.04178282991051674,
- -0.018669992685317993,
- -0.18562723696231842,
- 0.003706840332597494,
- -0.03291476145386696,
- -0.06391122937202454,
- -0.07148543745279312,
- 0.04854593425989151,
- 0.025122608989477158,
- 0.07143402844667435,
- -0.01964471861720085,
- -0.07377161830663681,
- 0.027123183012008667,
- 0.05098893120884895,
- -0.08670848608016968,
- -0.021695520728826523,
- 0.04130398482084274,
- 0.04989006370306015,
- -0.031239103525877,
- 3.5574624713988146e-33,
- -0.04076756536960602,
- -0.025263706222176552,
- 0.011617802083492279,
- 0.006692330818623304,
- 0.08220388740301132,
- 0.04083380848169327,
- 0.05279630795121193,
- -0.05390552431344986,
- -0.10677779465913773,
- 0.061409275978803635,
- 0.004241198301315308,
- -0.005851182155311108,
- 0.030102891847491264,
- 0.03266534581780434,
- 0.050304293632507324,
- 0.10549230873584747,
- -0.010955970734357834,
- -0.015010672621428967,
- -0.0638640746474266,
- 0.018352853134274483,
- -0.03487416356801987,
- -0.057145409286022186,
- -0.07531096041202545,
- 0.024563219398260117,
- 0.03886890411376953,
- 0.054716456681489944,
- 0.06457818299531937,
- -0.06204352155327797,
- 0.10236991196870804,
- 0.06721797585487366,
- -0.057184189558029175,
- -0.006257649976760149,
- -0.04623797535896301,
- 0.06050679832696915,
- 0.11253142356872559,
- 0.08370427042245865,
- 0.05280804634094238,
- -0.0013485804665833712,
- -0.10940907150506973,
- -0.0002928714966401458,
- 0.023161277174949646,
- 0.020605213940143585,
- -0.0047009773552417755,
- 0.1751154661178589,
- 0.0029807325918227434,
- 0.0055689397267997265,
- -0.08633832633495331,
- 0.022968441247940063,
- 0.005504153668880463,
- 0.07535798847675323,
- 0.03141992911696434,
- -0.00043232267489656806,
- 0.09068487584590912,
- -0.05971367284655571,
- -0.039871372282505035,
- -0.04056612029671669,
- -0.028789037838578224,
- 0.03326480835676193,
- 0.01945902779698372,
- -0.03252388536930084,
- 0.056530918926000595,
- -0.027864158153533936,
- -0.07828354090452194,
- -0.008386468514800072,
- -0.07347217202186584,
- 0.040558867156505585,
- 0.013400599360466003,
- 0.07432865351438522,
- -0.05775940790772438,
- 0.052253805100917816,
- 0.0007008086540736258,
- 0.02821175754070282,
- -0.017087051644921303,
- -0.009706228971481323,
- -0.0678878128528595,
- -0.008343345485627651,
- 0.09250522404909134,
- -0.052490487694740295,
- -0.0025599461514502764,
- 0.010967647656798363,
- 0.01805829256772995,
- -0.02251379005610943,
- 0.03376001864671707,
- 0.008398880250751972,
- 0.008626982569694519,
- -0.035079631954431534,
- -0.035967953503131866,
- 0.01005475502461195,
- -0.062090594321489334,
- -0.03643989562988281,
- 0.03147532045841217,
- 0.03690658137202263,
- 0.005865620449185371,
- 0.009697545319795609,
- 0.043889254331588745,
- -1.0872207134582368e-8,
- -0.058406006544828415,
- -0.06285196542739868,
- 0.004808149766176939,
- -0.0015963983023539186,
- 0.032783858478069305,
- -0.03903405740857124,
- -0.00785057246685028,
- 0.019928868860006332,
- 0.021587589755654335,
- 0.032297492027282715,
- 0.014861583709716797,
- -0.01573818549513817,
- -0.0033287620171904564,
- 0.04212307929992676,
- 0.062499478459358215,
- -0.009423215873539448,
- 0.015847790986299515,
- 0.07493212819099426,
- 0.0029421979561448097,
- 0.02623888850212097,
- 0.038479216396808624,
- 0.037699658423662186,
- 0.0556233674287796,
- -0.03721421957015991,
- 0.015606331638991833,
- -0.05406022071838379,
- 0.06505316495895386,
- 0.11635488271713257,
- -0.026401419192552567,
- 0.05157008767127991,
- 0.00803822185844183,
- 0.023137640208005905,
- -0.043744247406721115,
- -0.0610019713640213,
- 0.06628745794296265,
- 0.0010716606630012393,
- 0.00006040920197847299,
- 0.06780768185853958,
- 0.015285491943359375,
- -0.04369121044874191,
- 0.015845661982893944,
- -0.08037398755550385,
- 0.060192324221134186,
- -0.040881846100091934,
- -0.05082105100154877,
- -0.006325215566903353,
- 0.0038683286402374506,
- -0.06354707479476929,
- 0.0665864646434784,
- -0.05694642663002014,
- -0.03369911015033722,
- -0.005361782852560282,
- 0.0617762953042984,
- 0.00042437989031895995,
- 0.017931319773197174,
- 0.025368481874465942,
- -0.03093964233994484,
- 0.04066384956240654,
- 0.01164097711443901,
- 0.07472240179777145,
- 0.06511133164167404,
- 0.09861958771944046,
- -0.0291301216930151,
- -0.01081136241555214
- ]
- },
- {
- "keyword": "pc",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.011111547239124775,
- -0.01361965760588646,
- -0.02166554518043995,
- -0.017105886712670326,
- 0.02383582480251789,
- -0.04289403557777405,
- 0.06594700366258621,
- 0.03644922748208046,
- 0.043499186635017395,
- 0.00011367670231265947,
- 0.006638836581259966,
- -0.006357062608003616,
- -0.07540445029735565,
- 0.010886170901358128,
- -0.026719966903328896,
- 0.030090702697634697,
- -0.02216094546020031,
- -0.039870813488960266,
- -0.036905091255903244,
- 0.058535680174827576,
- -0.09852597862482071,
- -0.06727255135774612,
- -0.0762932226061821,
- -0.004093600437045097,
- 0.003967783413827419,
- 0.0000038986108847893775,
- -0.010977247729897499,
- 0.055597662925720215,
- 0.02335429936647415,
- -0.06879924982786179,
- -0.021037882193922997,
- -0.005745685193687677,
- 0.07996056228876114,
- 0.039218656718730927,
- 0.011347226798534393,
- -0.033206623047590256,
- 0.013195442967116833,
- -0.03864634037017822,
- -0.05398385599255562,
- -0.08325235545635223,
- -0.0013108475832268596,
- 0.00738087622448802,
- -0.016745371744036674,
- 0.07575524598360062,
- 0.07070934772491455,
- 0.07664260268211365,
- 0.026597879827022552,
- -0.0012171186972409487,
- 0.05130871757864952,
- 0.03168636932969093,
- -0.02094603143632412,
- 0.02011379972100258,
- -0.022153688594698906,
- -0.03311027213931084,
- -0.09998807311058044,
- -0.02089828997850418,
- -0.004175266716629267,
- 0.08090720325708389,
- 0.04478297382593155,
- -0.036514777690172195,
- -0.025196116417646408,
- -0.033024247735738754,
- -0.023684050887823105,
- 0.041030824184417725,
- 0.034780580550432205,
- -0.0017599941929802299,
- -0.0179066751152277,
- 0.013116922229528427,
- 0.012837826274335384,
- -0.048295143991708755,
- -0.05519496649503708,
- 0.04598435387015343,
- -0.03176214173436165,
- 0.015658168122172356,
- -0.04578205570578575,
- -0.004659213125705719,
- 0.024311332032084465,
- -0.04273408651351929,
- 0.038947585970163345,
- 0.010263833217322826,
- 0.0656084194779396,
- 0.03023959882557392,
- -0.11011789739131927,
- -0.024078315123915672,
- 0.015253053978085518,
- 0.0045593916438519955,
- -0.047532614320516586,
- 0.033338259905576706,
- -0.060764916241168976,
- -0.046164873987436295,
- -0.05002119392156601,
- 0.025904325768351555,
- 0.08265046030282974,
- -0.006625548470765352,
- -0.07307692617177963,
- 0.011620507575571537,
- 0.12387347221374512,
- -0.08694212138652802,
- -0.06069929152727127,
- 0.2138022929430008,
- 0.008978704921901226,
- 0.025876812636852264,
- 0.012170474976301193,
- 0.039270494133234024,
- 0.008739597164094448,
- -0.010164761915802956,
- -0.08319293707609177,
- 0.03473687544465065,
- -0.009442576207220554,
- -0.034048892557621,
- -0.05272072181105614,
- -0.02147732861340046,
- -0.09736831486225128,
- -0.006220814771950245,
- 0.10692183673381805,
- -0.016104603186249733,
- -0.06819307804107666,
- 0.11826282739639282,
- 0.03977792710065842,
- -0.034703128039836884,
- -0.03400110453367233,
- -0.07063093781471252,
- -0.0015288150170817971,
- -0.0556616447865963,
- 0.013637587428092957,
- -0.04760371148586273,
- 0.010625343769788742,
- -2.3987449963566536e-33,
- 0.05564194172620773,
- -0.01903737522661686,
- -0.02810700051486492,
- -0.0035085510462522507,
- -0.011246933601796627,
- -0.004595003090798855,
- 0.07175476104021072,
- -0.0513172410428524,
- -0.04151717200875282,
- 0.09848242998123169,
- 0.02180449105799198,
- -0.02586696669459343,
- 0.03696150705218315,
- -0.0014577005058526993,
- 0.12235774099826813,
- 0.04614311456680298,
- 0.0600254125893116,
- 0.07268843799829483,
- -0.020176667720079422,
- -0.03339342400431633,
- -0.04211842641234398,
- 0.010527228936553001,
- 0.05173846334218979,
- 0.02119867131114006,
- -0.0017449053702875972,
- -0.11074568331241608,
- -0.10690014809370041,
- -0.06631365418434143,
- 0.08006230741739273,
- -0.0011618174612522125,
- 0.006696794182062149,
- -0.01851409487426281,
- -0.007850462570786476,
- -0.006780632305890322,
- -0.015237095765769482,
- -0.06057480350136757,
- 0.02498689852654934,
- -0.07171384245157242,
- 0.07076400518417358,
- 0.06375852227210999,
- -0.06835651397705078,
- -0.00496423477306962,
- 0.05501528084278107,
- -0.06165499985218048,
- 0.03162866085767746,
- 0.007003428414463997,
- 0.062044475227594376,
- 0.048061802983284,
- -0.0648396909236908,
- 0.07827620953321457,
- -0.014289352111518383,
- 0.0015969709493219852,
- -0.002316395053640008,
- 0.05020064860582352,
- -0.055003147572278976,
- -0.040672481060028076,
- 0.018463939428329468,
- 0.01727350801229477,
- 0.062365587800741196,
- 0.019499488174915314,
- 0.11318139731884003,
- 0.04504574462771416,
- 0.04930023476481438,
- -0.08056990057229996,
- -0.025851130485534668,
- -0.08013591170310974,
- 0.10487823188304901,
- 0.022198041900992393,
- 0.005456728395074606,
- -0.06895612180233002,
- -0.019284499809145927,
- -0.06423764675855637,
- 0.0769905149936676,
- 0.0007921570213511586,
- 0.033554162830114365,
- 0.031009387224912643,
- -0.10549645125865936,
- -0.02088540978729725,
- -0.08275740593671799,
- 0.05842439457774162,
- -0.10651679337024689,
- 0.018750935792922974,
- -0.07373099029064178,
- 0.024475013837218285,
- 0.049562908709049225,
- 0.08324406296014786,
- -0.10325130075216293,
- -0.09772812575101852,
- 0.059689752757549286,
- 0.009771374054253101,
- -0.08813296258449554,
- 0.01452543679624796,
- -0.0005453542689792812,
- 0.03667917102575302,
- -0.003121974179521203,
- 3.040386200030099e-33,
- -0.10431673377752304,
- -0.06129781901836395,
- 0.0015755371423438191,
- 0.061562441289424896,
- 0.07593522220849991,
- -0.04621778428554535,
- 0.05299226939678192,
- -0.056092776358127594,
- -0.014612811617553234,
- 0.008104904554784298,
- 0.040865927934646606,
- -0.019669711589813232,
- 0.0731324851512909,
- -0.0025461993645876646,
- 0.04805503785610199,
- 0.1005149558186531,
- 0.029329027980566025,
- -0.004239880479872227,
- -0.002288226503878832,
- 0.003781086765229702,
- -0.030869178473949432,
- -0.10200802981853485,
- 0.002511731581762433,
- -0.022038813680410385,
- 0.030345993116497993,
- 0.04897059500217438,
- 0.06365426629781723,
- -0.08435598760843277,
- 0.09759694337844849,
- 0.00705322390422225,
- 0.064640112221241,
- 0.05416494607925415,
- -0.022197948768734932,
- 0.04762141779065132,
- 0.10110222548246384,
- 0.08636793494224548,
- 0.06721232086420059,
- -0.04031987488269806,
- 0.005583465564996004,
- 0.02712431736290455,
- 0.040389202535152435,
- 0.04491879418492317,
- 0.011455229483544827,
- 0.11971086263656616,
- -0.019633863121271133,
- -0.018811441957950592,
- -0.005214285105466843,
- -0.0002850049640983343,
- 0.11959201842546463,
- 0.03650568798184395,
- 0.0696372240781784,
- -0.016590507701039314,
- 0.039288438856601715,
- -0.04211795702576637,
- -0.02658427134156227,
- -0.046828728169202805,
- -0.04555240646004677,
- 0.04280368611216545,
- 0.015597105957567692,
- -0.06617511063814163,
- 0.046240564435720444,
- -0.047825299203395844,
- -0.0726761445403099,
- -0.014162975363433361,
- -0.05485464259982109,
- 0.08079843968153,
- 0.054419100284576416,
- 0.06464932858943939,
- -0.03925345838069916,
- -0.037728261202573776,
- -0.018958577886223793,
- -0.026348281651735306,
- 0.030651630833745003,
- 0.03316628560423851,
- -0.05428922921419144,
- -0.042144645005464554,
- 0.0009832123760133982,
- -0.022556396201252937,
- 0.051878493279218674,
- 0.02650236152112484,
- 0.03394094482064247,
- -0.026522863656282425,
- -0.007456307765096426,
- -0.004923271015286446,
- -0.03435483202338219,
- -0.0863693580031395,
- 0.009333834983408451,
- 0.029759403318166733,
- -0.02596418745815754,
- -0.07769650220870972,
- 0.0011450671590864658,
- 0.04720250889658928,
- 0.03454113379120827,
- 0.020402709022164345,
- 0.017480751499533653,
- -1.116021053348959e-8,
- 0.02744434028863907,
- -0.027537688612937927,
- -0.00010650471813278273,
- 0.00431979913264513,
- 0.05739343538880348,
- 0.021322306245565414,
- -0.02734767086803913,
- -0.011217422783374786,
- 0.0024301093071699142,
- 0.08581060916185379,
- 0.02091461420059204,
- -0.05134691298007965,
- 0.06415696442127228,
- 0.0073888846673071384,
- 0.04715753346681595,
- -0.023844532668590546,
- -0.05107920989394188,
- 0.08861204236745834,
- -0.010668533854186535,
- -0.07827764749526978,
- 0.05519217625260353,
- 0.026420023292303085,
- 0.03661429509520531,
- -0.018046746030449867,
- -0.024437231943011284,
- -0.057144034653902054,
- 0.054402269423007965,
- 0.09120260924100876,
- 0.01574859768152237,
- 0.007767602801322937,
- -0.022417450323700905,
- 0.016254959627985954,
- -0.012714583426713943,
- -0.01833534426987171,
- 0.049306292086839676,
- -0.010945888236165047,
- -0.022132158279418945,
- 0.07878170907497406,
- 0.03973237797617912,
- -0.026763534173369408,
- -0.022561144083738327,
- -0.11588788032531738,
- 0.008238732814788818,
- -0.044268686324357986,
- -0.0203363336622715,
- -0.020938459783792496,
- -0.059122588485479355,
- -0.03649120405316353,
- -0.05297696962952614,
- -0.06558261066675186,
- -0.0034862160682678223,
- 0.011573250405490398,
- 0.05797727778553963,
- 0.03689765930175781,
- 0.08615368604660034,
- -0.01802784577012062,
- -0.010909277014434338,
- 0.05862848833203316,
- -0.021877996623516083,
- 0.06591253727674484,
- 0.04636194929480553,
- 0.09595805406570435,
- -0.0361282117664814,
- -0.03915966674685478
- ]
- },
- {
- "keyword": "mac",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.014532574452459812,
- -0.017393432557582855,
- 0.05225065350532532,
- -0.002925510983914137,
- 0.04397588223218918,
- -0.054780881851911545,
- 0.03229008987545967,
- 0.0016415868885815144,
- 0.022752108052372932,
- 0.0372239388525486,
- 0.0466616190969944,
- -0.013305477797985077,
- -0.038757096976041794,
- 0.01648256741464138,
- 0.0198183786123991,
- -0.016000457108020782,
- -0.04482243210077286,
- -0.07099437713623047,
- 0.02570275403559208,
- 0.029402954503893852,
- -0.04912445321679115,
- 0.0006615630118176341,
- -0.05974213778972626,
- 0.0025915673468261957,
- 0.023862672969698906,
- 0.06455598771572113,
- 0.04302510619163513,
- 0.02363196574151516,
- -0.0232817605137825,
- -0.06962675601243973,
- -0.06995232403278351,
- -0.06112189590930939,
- 0.05176148563623428,
- 0.005232044495642185,
- 0.016045143827795982,
- -0.06546434760093689,
- 0.04685501754283905,
- -0.031445447355508804,
- -0.10357779264450073,
- -0.08530420064926147,
- -0.10655958950519562,
- -0.017214732244610786,
- 0.07334132492542267,
- 0.06288272142410278,
- 0.06517929583787918,
- -0.05457613244652748,
- 0.08297097682952881,
- -0.01572387106716633,
- 0.09733074903488159,
- 0.0726628303527832,
- 0.010330474004149437,
- -0.03690338879823685,
- -0.06301528960466385,
- 0.04472826421260834,
- 0.04117835313081741,
- 0.050503429025411606,
- -0.026745056733489037,
- -0.003294524271041155,
- 0.03899197280406952,
- 0.05457783862948418,
- -0.04062027856707573,
- -0.05173986777663231,
- -0.08559180796146393,
- 0.0416061170399189,
- 0.01607479341328144,
- 0.006427976302802563,
- 0.003428342752158642,
- -0.004429200664162636,
- -0.029717430472373962,
- -0.07913569360971451,
- -0.0004566331335809082,
- -0.029060885310173035,
- 0.014418350532650948,
- 0.07036793231964111,
- -0.005247287452220917,
- -0.04055558517575264,
- 0.07141859829425812,
- -0.07453689724206924,
- 0.051371797919273376,
- -0.0024593037087470293,
- -0.03381505608558655,
- -0.0017975157825276256,
- -0.08805961906909943,
- 0.038567956537008286,
- 0.02485424280166626,
- -0.019993003457784653,
- -0.050487518310546875,
- 0.021874787285923958,
- -0.04622747376561165,
- 0.04800371080636978,
- -0.05654430389404297,
- 0.019275441765785217,
- 0.02837466448545456,
- -0.023721590638160706,
- -0.07110685855150223,
- -0.00511590763926506,
- 0.0614202544093132,
- -0.008828428573906422,
- -0.023360854014754295,
- 0.2461458444595337,
- -0.0038288666401058435,
- 0.014559980481863022,
- 0.049530282616615295,
- -0.027488432824611664,
- 0.04378192499279976,
- -0.04802665859460831,
- 0.010113171301782131,
- 0.016592057421803474,
- 0.047960299998521805,
- 0.03158261254429817,
- 0.023678356781601906,
- -0.05766937509179115,
- -0.10369197279214859,
- 0.02981552667915821,
- 0.05597430467605591,
- -0.015556077472865582,
- -0.014404557645320892,
- 0.06372133642435074,
- 0.002389569068327546,
- -0.019584519788622856,
- -0.03347628936171532,
- -0.0028303347062319517,
- -0.00009536411380395293,
- -0.005646428558975458,
- -0.018100231885910034,
- -0.0350741483271122,
- -0.001776406541466713,
- -3.997075318087272e-33,
- 0.014078434556722641,
- -0.12635843455791473,
- 0.03165651112794876,
- 0.03490765765309334,
- 0.002581573324277997,
- -0.05881470814347267,
- 0.02756320871412754,
- -0.01819249987602234,
- -0.05354510247707367,
- 0.03526740148663521,
- -0.015675006434321404,
- -0.02142501436173916,
- -0.08952460438013077,
- 0.008392948657274246,
- 0.12520545721054077,
- 0.010956179350614548,
- 0.03697482496500015,
- 0.04762202501296997,
- -0.033140670508146286,
- -0.00930316373705864,
- 0.013493982143700123,
- 0.008453563787043095,
- 0.030919209122657776,
- -0.030138792470097542,
- -0.02385014109313488,
- -0.01469083409756422,
- -0.01014683023095131,
- -0.05228131636977196,
- 0.07496365904808044,
- 0.0327228344976902,
- -0.03706465661525726,
- -0.035365112125873566,
- 0.016918567940592766,
- -0.12784601747989655,
- -0.026485338807106018,
- -0.02575218677520752,
- -0.005828453227877617,
- -0.0487869493663311,
- 0.04406508058309555,
- 0.032163411378860474,
- -0.0823579728603363,
- -0.0289685670286417,
- 0.018334129825234413,
- -0.08135140687227249,
- 0.04275883734226227,
- -0.003675901098176837,
- 0.060976482927799225,
- 0.0558440163731575,
- -0.06493835896253586,
- 0.1067575141787529,
- -0.00630405405536294,
- -0.04271376132965088,
- 0.05156799033284187,
- 0.08673576265573502,
- -0.04626863822340965,
- 0.013400659896433353,
- 0.05820319056510925,
- 0.020812036469578743,
- 0.03140109404921532,
- 0.057630185037851334,
- 0.0505775585770607,
- 0.08283261209726334,
- 0.06290098279714584,
- 0.007467652205377817,
- 0.023128267377614975,
- -0.022038748487830162,
- 0.11241491138935089,
- -0.010600580833852291,
- -0.05257339030504227,
- 0.040505629032850266,
- -0.10116717219352722,
- -0.038953229784965515,
- 0.032165445387363434,
- -0.06278879195451736,
- -0.04136671870946884,
- -0.04436897858977318,
- -0.08756870031356812,
- 0.05376192554831505,
- -0.1219564825296402,
- 0.07570765167474747,
- -0.05243939533829689,
- -0.022670336067676544,
- -0.03274672105908394,
- 0.09570484608411789,
- 0.017820101231336594,
- 0.12799009680747986,
- -0.03630439192056656,
- -0.005532273091375828,
- 0.019604910165071487,
- 0.0523354671895504,
- -0.07916443049907684,
- 0.027062902227044106,
- -0.0007571815513074398,
- -0.00017702906916383654,
- -0.10034812986850739,
- 2.9857132230893853e-33,
- -0.058097705245018005,
- -0.0902557373046875,
- -0.002875919220969081,
- 0.02652439847588539,
- -0.03717229515314102,
- 0.00784007553011179,
- 0.004235061351209879,
- -0.009171785786747932,
- -0.1113598570227623,
- -0.06123382970690727,
- -0.03206074982881546,
- 0.013333391398191452,
- 0.09750904887914658,
- -0.04365286976099014,
- 0.02642183192074299,
- 0.04965517297387123,
- -0.02504378743469715,
- 0.015709688887000084,
- -0.021574193611741066,
- -0.032369691878557205,
- -0.04488328471779823,
- -0.06316815316677094,
- 0.05141960829496384,
- -0.03588882088661194,
- -0.023467954248189926,
- -0.01561205368489027,
- 0.0673232302069664,
- 0.034065138548612595,
- -0.014440508559346199,
- 0.00756142707541585,
- 0.04056815803050995,
- 0.02435930073261261,
- 0.011190565302968025,
- -0.03345760330557823,
- 0.09801413118839264,
- 0.10894165188074112,
- 0.02402890846133232,
- 0.03759228438138962,
- 0.009242024272680283,
- -0.009214886464178562,
- 0.0688304528594017,
- 0.0545465424656868,
- -0.02457219362258911,
- 0.12248066812753677,
- -0.011323891580104828,
- 0.02254694700241089,
- -0.05980323627591133,
- 0.015515993349254131,
- 0.08051689714193344,
- -0.021870534867048264,
- 0.003043309086933732,
- -0.05957823246717453,
- 0.022971924394369125,
- -0.09299958497285843,
- -0.025730639696121216,
- -0.05266207829117775,
- -0.055755309760570526,
- 0.0331130176782608,
- 0.04973743110895157,
- -0.03184967488050461,
- -0.04671308770775795,
- -0.031358473002910614,
- -0.001072281040251255,
- -0.06097099930047989,
- -0.02102009393274784,
- 0.027998561039566994,
- 0.0006992543931119144,
- -0.004834560211747885,
- -0.06303856521844864,
- 0.031328193843364716,
- 0.05405900627374649,
- 0.04921402037143707,
- 0.05482912436127663,
- 0.0042366632260382175,
- -0.029202276840806007,
- -0.003066098550334573,
- 0.005458413157612085,
- 0.022315839305520058,
- -0.034596920013427734,
- -0.009886307641863823,
- 0.12600386142730713,
- 0.04472805932164192,
- 0.007767329458147287,
- 0.05719020217657089,
- -0.06521645933389664,
- -0.0015402324497699738,
- 0.07591578364372253,
- 0.007322497200220823,
- 0.012131639756262302,
- -0.017958372831344604,
- -0.03128864988684654,
- 0.010809422470629215,
- -0.00500994548201561,
- -0.028831519186496735,
- -0.11069246381521225,
- -1.2213000388783257e-8,
- -0.07510354369878769,
- -0.011218991130590439,
- 0.028281165286898613,
- 0.016706150025129318,
- 0.02306942641735077,
- 0.0628553181886673,
- 0.027839763090014458,
- -0.0038307311479002237,
- 0.048880595713853836,
- 0.058249060064554214,
- 0.054218944162130356,
- -0.037548746913671494,
- -0.044893570244312286,
- 0.008588946424424648,
- 0.015580207109451294,
- 0.01105975080281496,
- -0.026417536661028862,
- 0.07585977762937546,
- 0.011677739210426807,
- -0.014541400596499443,
- -0.01190061867237091,
- 0.05484935641288757,
- 0.015672633424401283,
- 0.011431252583861351,
- 0.012734471820294857,
- -0.02895691990852356,
- 0.046492718160152435,
- 0.12021399289369583,
- 0.02402246557176113,
- 0.03417406603693962,
- -0.07111029326915741,
- 0.008397397585213184,
- -0.07667659968137741,
- 0.009118660353124142,
- 0.028372425585985184,
- -0.0593847818672657,
- -0.08885079622268677,
- 0.11762543022632599,
- -0.014029964804649353,
- -0.02023656666278839,
- -0.05859198048710823,
- -0.011279969476163387,
- -0.0017585728783160448,
- -0.061416227370500565,
- -0.0928243100643158,
- -0.025181865319609642,
- -0.03860955312848091,
- 0.03483255207538605,
- -0.028640909120440483,
- 0.02156740054488182,
- 0.04843572899699211,
- 0.007815207354724407,
- 0.051500774919986725,
- 0.05073906481266022,
- -0.0020114800427109003,
- -0.007899190299212933,
- 0.05077129229903221,
- -0.08315630257129669,
- -0.0939922109246254,
- 0.06223885715007782,
- 0.13516420125961304,
- 0.0085645392537117,
- 0.01802242361009121,
- 0.08066151291131973
- ]
- },
- {
- "keyword": "watch",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04437810927629471,
- -0.06687455624341965,
- -0.014092786237597466,
- -0.06157185509800911,
- 0.0760827586054802,
- 0.020613236352801323,
- 0.01990179717540741,
- -0.0006798474933020771,
- 0.05036795884370804,
- -0.0010710532078519464,
- -0.03697304427623749,
- -0.11607492715120316,
- -0.018195951357483864,
- 0.006787421181797981,
- -0.08250895142555237,
- -0.061396583914756775,
- 0.050292208790779114,
- -0.010465283878147602,
- -0.08580341190099716,
- -0.043194640427827835,
- -0.03884429112076759,
- -0.052177030593156815,
- -0.011183694936335087,
- 0.023468652740120888,
- -0.04224960133433342,
- 0.01946798339486122,
- -0.010359648615121841,
- 0.07881490141153336,
- 0.04849958419799805,
- -0.06203971803188324,
- 0.0275468360632658,
- 0.00014917200314812362,
- -0.0025026421062648296,
- 0.04857895150780678,
- -0.00018797890515998006,
- -0.025841521099209785,
- 0.03148740157485008,
- -0.005302300676703453,
- -0.013600253500044346,
- -0.0361049622297287,
- 0.06263027340173721,
- -0.02716168761253357,
- 0.04160822927951813,
- -0.007106699049472809,
- 0.018599824979901314,
- 0.05797171592712402,
- -0.007430951576679945,
- -0.04528166726231575,
- 0.05964413657784462,
- 0.027878638356924057,
- -0.05938699096441269,
- 0.04083184897899628,
- 0.026057375594973564,
- -0.10018518567085266,
- 0.05532181262969971,
- 0.05125460773706436,
- -0.028223231434822083,
- -0.011585178785026073,
- 0.04222242534160614,
- -0.038323238492012024,
- 0.10037830471992493,
- -0.008891199715435505,
- -0.06637341529130936,
- 0.037040311843156815,
- -0.06908899545669556,
- 0.058308638632297516,
- 0.013271532021462917,
- 0.04430898278951645,
- 0.06682748347520828,
- -0.02850351110100746,
- 0.020570017397403717,
- 0.0489245243370533,
- 0.020701758563518524,
- -0.027196111157536507,
- -0.03330795094370842,
- 0.0036725341342389584,
- -0.008438053540885448,
- -0.1283845156431198,
- 0.03244107589125633,
- 0.005228356458246708,
- -0.05797644332051277,
- -0.026798736304044724,
- -0.04333081468939781,
- 0.03601468726992607,
- 0.01774032600224018,
- -0.025015277788043022,
- 0.07294705510139465,
- -0.00413045659661293,
- -0.03910587728023529,
- 0.013099513947963715,
- -0.03712223470211029,
- 0.08036316931247711,
- 0.0278463214635849,
- 0.0006662156665697694,
- -0.046666424721479416,
- 0.03474036231637001,
- -0.01340521965175867,
- 0.09162683039903641,
- 0.005114504601806402,
- 0.281544953584671,
- 0.04436841234564781,
- 0.05460736155509949,
- -0.027778806164860725,
- -0.04644394293427467,
- -0.05545899271965027,
- -0.037686530500650406,
- -0.0559820793569088,
- 0.08017548173666,
- 0.005389862693846226,
- 0.019223913550376892,
- -0.012285026721656322,
- 0.04376092180609703,
- 0.014391852542757988,
- 0.05884326994419098,
- -0.00713453721255064,
- 0.05698905140161514,
- -0.022982006892561913,
- 0.07081189751625061,
- 0.01975140906870365,
- 0.027857273817062378,
- 0.10584380477666855,
- -0.01041374821215868,
- -0.0027036310639232397,
- -0.016977431252598763,
- 0.02905123680830002,
- -0.09073519706726074,
- 0.035565201193094254,
- -5.243731158172464e-33,
- 0.022851329296827316,
- -0.11210689693689346,
- -0.03371383622288704,
- -0.00009985535143641755,
- -0.07982636988162994,
- 0.06209595501422882,
- 0.043466903269290924,
- -0.006253525614738464,
- -0.00562961446121335,
- 0.06498506665229797,
- -0.016973910853266716,
- 0.002588180359452963,
- -0.04199971258640289,
- -0.009010598063468933,
- 0.10016689449548721,
- 0.024870384484529495,
- 0.03176996111869812,
- -0.01491845678538084,
- -0.02586623840034008,
- -0.017819372937083244,
- -0.012368563562631607,
- -0.01453173067420721,
- -0.02362154796719551,
- -0.028502851724624634,
- -0.022391585633158684,
- -0.041466474533081055,
- 0.03700949251651764,
- -0.12110286951065063,
- 0.028786463662981987,
- 0.039306025952100754,
- -0.031171971932053566,
- 0.03438666835427284,
- -0.027177592739462852,
- 0.026662228628993034,
- -0.0017653858521953225,
- -0.12697748839855194,
- -0.06408698856830597,
- 0.06042381376028061,
- -0.06134631484746933,
- -0.0930345356464386,
- -0.011249404400587082,
- 0.014562145806849003,
- -0.13079456984996796,
- -0.05726175010204315,
- -0.019561490043997765,
- 0.02797577902674675,
- 0.07756282389163971,
- 0.0614858977496624,
- -0.051041364669799805,
- 0.013617923483252525,
- 0.07765376567840576,
- -0.0052427863702178,
- -0.005448860116302967,
- -0.018541492521762848,
- -0.02957979030907154,
- 0.05342695862054825,
- 0.028386326506733894,
- -0.0027661474887281656,
- -0.001519063487648964,
- -0.03390084207057953,
- 0.028687193989753723,
- 0.04566691815853119,
- 0.017908111214637756,
- 0.06772683560848236,
- -0.05727984383702278,
- 0.007490301504731178,
- 0.034180644899606705,
- -0.07075871527194977,
- 0.02599846012890339,
- 0.03964782506227493,
- -0.07933274656534195,
- 0.03423024341464043,
- 0.07888640463352203,
- -0.018914300948381424,
- -0.06524649262428284,
- -0.02101171761751175,
- 0.04710499197244644,
- 0.010112578980624676,
- 0.025056911632418633,
- 0.027605123817920685,
- 0.09243308007717133,
- -0.07733122259378433,
- 0.008612510748207569,
- 0.06405302882194519,
- 0.04175723344087601,
- 0.0045055728405714035,
- -0.03640662878751755,
- -0.10996822267770767,
- 0.03197263553738594,
- -0.03487333282828331,
- -0.018246620893478394,
- -0.017777783796191216,
- 0.1555548906326294,
- 0.00005642490214086138,
- -0.0396425724029541,
- 3.64940853749418e-33,
- -0.02113906852900982,
- -0.046714238822460175,
- 0.07825404405593872,
- 0.01642737165093422,
- 0.0015309532172977924,
- -0.03601449355483055,
- -0.08698195219039917,
- -0.02414945513010025,
- 0.022299842908978462,
- 0.027884887531399727,
- -0.015885625034570694,
- -0.10441844165325165,
- -0.04278498888015747,
- 0.048547569662332535,
- 0.022108105942606926,
- -0.021869439631700516,
- 0.10421247035264969,
- -0.03655393049120903,
- -0.037928707897663116,
- -0.005027296021580696,
- -0.04558258876204491,
- -0.007536733988672495,
- 0.09367667883634567,
- -0.05592147260904312,
- 0.014806782826781273,
- 0.012558246962726116,
- 0.1218326985836029,
- 0.08421999216079712,
- -0.027369339019060135,
- -0.013939948752522469,
- 0.02524767629802227,
- -0.00042388992733322084,
- -0.06407036632299423,
- -0.0005443540867418051,
- -0.016056688502430916,
- 0.10606245696544647,
- 0.13681985437870026,
- 0.0003932277031708509,
- -0.06971413642168045,
- 0.0337241031229496,
- 0.04294946789741516,
- 0.03149138018488884,
- 0.058300990611314774,
- 0.0233614481985569,
- -0.023251477628946304,
- 0.022405453026294708,
- 0.03146234154701233,
- 0.11146187037229538,
- -0.07750459015369415,
- 0.023260455578565598,
- -0.0934019386768341,
- 0.05659646540880203,
- -0.04019153490662575,
- -0.02949889376759529,
- -0.04147950932383537,
- -0.033670440316200256,
- 0.005872113164514303,
- 0.041956331580877304,
- -0.016011647880077362,
- 0.036936573684215546,
- 0.006309742573648691,
- -0.0257355198264122,
- -0.05236519128084183,
- 0.04372672736644745,
- 0.011426026001572609,
- 0.07780101150274277,
- 0.0030268908012658358,
- -0.07090596854686737,
- 0.03116822987794876,
- 0.0051011922769248486,
- -0.029277285560965538,
- 0.03073468618094921,
- -0.07413191348314285,
- -0.05167181044816971,
- 0.03731094300746918,
- 0.008862831629812717,
- -0.06833133846521378,
- -0.005907755810767412,
- -0.02905166707932949,
- -0.06403777003288269,
- 0.025178570300340652,
- -0.03831571713089943,
- 0.025133652612566948,
- -0.019455261528491974,
- 0.017439328134059906,
- 0.0484900139272213,
- 0.038865383714437485,
- 0.042865537106990814,
- -0.008406319655478,
- -0.012939980253577232,
- -0.020860781893134117,
- 0.019340986385941505,
- 0.03203468769788742,
- -0.023746710270643234,
- 0.013990688137710094,
- -1.2826845363633765e-8,
- -0.06366101652383804,
- 0.0173692274838686,
- 0.042499296367168427,
- -0.039220355451107025,
- 0.013102198950946331,
- 0.002930787857621908,
- -0.03608482703566551,
- -0.06268574297428131,
- 0.011596545577049255,
- -0.027083516120910645,
- 0.03382593020796776,
- -0.0666324719786644,
- 0.004761425778269768,
- 0.07907110452651978,
- 0.1111317053437233,
- -0.051654696464538574,
- -0.02919202484190464,
- 0.05250141769647598,
- -0.050600968301296234,
- 0.01612177863717079,
- -0.017262699082493782,
- -0.010468604974448681,
- 0.08032668381929398,
- 0.04311012104153633,
- -0.011654337868094444,
- -0.01815194822847843,
- -0.04567890986800194,
- 0.08014079928398132,
- 0.01820402219891548,
- 0.00573915708810091,
- -0.008188799023628235,
- 0.10657240450382233,
- -0.04130621626973152,
- -0.0694141611456871,
- -0.004712587222456932,
- -0.05552603676915169,
- -0.004882678855210543,
- -0.027301792055368423,
- 0.08706489205360413,
- 0.041046157479286194,
- -0.0534568652510643,
- -0.06775614619255066,
- 0.072593554854393,
- 0.003229813650250435,
- -0.047718994319438934,
- -0.03685443475842476,
- 0.08149059861898422,
- -0.07331731915473938,
- 0.01973789744079113,
- -0.012510538101196289,
- 0.03359175845980644,
- -0.0417751744389534,
- 0.019994115456938744,
- 0.0014067995361983776,
- 0.0750259980559349,
- 0.025474853813648224,
- 0.06143040582537651,
- 0.0003966262738686055,
- -0.07572225481271744,
- 0.05027412995696068,
- 0.09955977648496628,
- -0.015154850669205189,
- 0.03306727856397629,
- 0.02784116379916668
- ]
- },
- {
- "keyword": "wearable",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.13858096301555634,
- 0.037630826234817505,
- 0.02575867809355259,
- 0.022865526378154755,
- 0.04199947044253349,
- -0.01329850871115923,
- 0.17086002230644226,
- 0.03627154231071472,
- -0.06609614938497543,
- 0.049387454986572266,
- 0.0732605829834938,
- 0.019289273768663406,
- -0.0075185769237577915,
- -0.023428982123732567,
- 0.01923271454870701,
- -0.04878080263733864,
- 0.06835553050041199,
- 0.011408236809074879,
- -0.0447869747877121,
- 0.02080388180911541,
- 0.01927798241376877,
- 0.06548336148262024,
- -0.026544757187366486,
- 0.07339630275964737,
- -0.021306117996573448,
- 0.061670660972595215,
- -0.054103076457977295,
- -0.02230881154537201,
- 0.014129780232906342,
- -0.05943048372864723,
- -0.03417329490184784,
- -0.009964685887098312,
- 0.02975548431277275,
- 0.01380276307463646,
- -0.11056776344776154,
- -0.018418412655591965,
- 0.061992496252059937,
- -0.0003131481644231826,
- -0.07319853454828262,
- 0.017779555171728134,
- -0.04983830079436302,
- -0.08327880501747131,
- -0.04475675895810127,
- -0.01007919106632471,
- 0.04850935563445091,
- 0.02333451434969902,
- 0.04690729081630707,
- -0.013597669079899788,
- -0.0049783019348979,
- 0.08457047492265701,
- -0.006385423243045807,
- 0.0084270304068923,
- 0.06106525659561157,
- 0.037190116941928864,
- 0.003193657146766782,
- 0.014835365116596222,
- -0.01954749785363674,
- -0.023375893011689186,
- -0.0033952633384615183,
- -0.015504610724747181,
- 0.08829975128173828,
- -0.02191011607646942,
- -0.03773899003863335,
- 0.04708480089902878,
- 0.002458492061123252,
- 0.00890478864312172,
- 0.026034338399767876,
- 0.07168883830308914,
- 0.01978931948542595,
- -0.0016418853774666786,
- 0.018792809918522835,
- -0.044065192341804504,
- 0.013991287909448147,
- 0.060740016400814056,
- 0.024806493893265724,
- -0.018801137804985046,
- 0.04751114919781685,
- -0.0708264410495758,
- 0.03198244795203209,
- 0.09140073508024216,
- -0.09256036579608917,
- -0.09872215986251831,
- 0.020055001601576805,
- 0.02420804090797901,
- 0.04422828182578087,
- -0.003448678646236658,
- 0.020873818546533585,
- 0.021431731060147285,
- -0.104167141020298,
- -0.05587692931294441,
- -0.07164621353149414,
- 0.03982360661029816,
- -0.048634640872478485,
- -0.054066337645053864,
- 0.029480820521712303,
- -0.04034709557890892,
- -0.043449513614177704,
- 0.02930666133761406,
- -0.03645704686641693,
- 0.17500607669353485,
- 0.009710747748613358,
- 0.037290386855602264,
- 0.025165559723973274,
- 0.08977384865283966,
- -0.018555298447608948,
- -0.10294440388679504,
- -0.05115554854273796,
- -0.02977665886282921,
- 0.053534992039203644,
- 0.031518492847681046,
- -0.030613239854574203,
- -0.030621694400906563,
- -0.03267686814069748,
- -0.013072350062429905,
- 0.006893969140946865,
- -0.01911553181707859,
- -0.04779435694217682,
- 0.08752049505710602,
- 0.08429299294948578,
- 0.07864916324615479,
- -0.003762348322197795,
- 0.00014582410221919417,
- -0.025414183735847473,
- -0.05541832372546196,
- -0.054269470274448395,
- -0.06202283874154091,
- 0.017112459987401962,
- -3.99656838614848e-33,
- 0.048854321241378784,
- 0.025778962299227715,
- 0.025959685444831848,
- -0.010869338177144527,
- 0.0017398180207237601,
- 0.004137609153985977,
- -0.05888577178120613,
- -0.06635186076164246,
- -0.0016225354047492146,
- 0.015569069422781467,
- -0.03322456404566765,
- 0.041586875915527344,
- -0.06065133586525917,
- 0.07676688581705093,
- 0.1942773014307022,
- -0.048151977360248566,
- -0.0073693920858204365,
- -0.02450253628194332,
- -0.010875281877815723,
- -0.04194257780909538,
- 0.009088288061320782,
- -0.07234102487564087,
- 0.00731215626001358,
- 0.05908708646893501,
- 0.012928671203553677,
- 0.032775893807411194,
- 0.025827748700976372,
- -0.0002713788999244571,
- 0.039745595306158066,
- 0.032095760107040405,
- -0.013257702812552452,
- -0.01537628099322319,
- -0.03420834615826607,
- -0.06589873135089874,
- 0.0010898980544880033,
- -0.0629296824336052,
- -0.027144595980644226,
- 0.012384788133203983,
- 0.05209539830684662,
- -0.04306643828749657,
- 0.03690269589424133,
- -0.014660187996923923,
- 0.01957085356116295,
- -0.08784125745296478,
- 0.0029574227519333363,
- 0.10299088805913925,
- 0.08764591068029404,
- 0.04997226595878601,
- -0.038418982177972794,
- 0.005568271037191153,
- 0.0021535074338316917,
- -0.0470072403550148,
- -0.029147250577807426,
- -0.09686056524515152,
- -0.004991212859749794,
- -0.02477249689400196,
- 0.006923563778400421,
- 0.01563144661486149,
- 0.02896980009973049,
- 0.04606626555323601,
- -0.00608945544809103,
- 0.09272341430187225,
- 0.09634130448102951,
- -0.012734918855130672,
- 0.014973840676248074,
- 0.0397910550236702,
- 0.031151995062828064,
- -0.05156712979078293,
- -0.05039307475090027,
- -0.029031967744231224,
- -0.055553507059812546,
- 0.04369678720831871,
- 0.023893946781754494,
- 0.03974763676524162,
- 0.022538533434271812,
- 0.01733587682247162,
- -0.026854369789361954,
- -0.024635376408696175,
- -0.08346685022115707,
- -0.036407146602869034,
- -0.07895995676517487,
- -0.014317555353045464,
- 0.03167526051402092,
- 0.07487949728965759,
- 0.02485518902540207,
- -0.044786080718040466,
- -0.0782596692442894,
- -0.10130807757377625,
- -0.06719407439231873,
- -0.02742425538599491,
- 0.010304250754415989,
- -0.025150828063488007,
- 0.08134152740240097,
- -0.01835552603006363,
- -0.09224572032690048,
- 2.4355625814503615e-33,
- -0.023624362424016,
- -0.023794695734977722,
- 0.047337912023067474,
- 0.03977148234844208,
- 0.06642209738492966,
- -0.03043525293469429,
- -0.0053731887601315975,
- 0.07618200033903122,
- -0.06677256524562836,
- 0.09150411933660507,
- 0.0201028510928154,
- -0.018785564228892326,
- -0.018289940431714058,
- -0.026460373774170876,
- 0.05666039139032364,
- 0.07376576215028763,
- 0.08964194357395172,
- 0.003994295373558998,
- -0.012170607224106789,
- -0.014536399394273758,
- 0.030376536771655083,
- -0.04992366209626198,
- 0.059374045580625534,
- -0.0711120069026947,
- -0.07773337513208389,
- 0.05515388026833534,
- -0.030846035107970238,
- 0.04125181585550308,
- -0.04679755121469498,
- -0.03986554965376854,
- -0.030748717486858368,
- 0.007477080449461937,
- -0.03703581914305687,
- 0.10019522160291672,
- 0.031904518604278564,
- 0.09451471269130707,
- -0.052525170147418976,
- 0.03283976390957832,
- -0.012191618792712688,
- -0.060170140117406845,
- 0.07705104351043701,
- -0.008866703137755394,
- 0.03407549858093262,
- 0.07873928546905518,
- 0.030284060165286064,
- -0.05239742621779442,
- -0.0754508301615715,
- -0.031491346657276154,
- -0.03145556151866913,
- -0.00549341132864356,
- -0.02466309629380703,
- 0.036617036908864975,
- 0.020231597125530243,
- -0.08131401985883713,
- -0.07229728996753693,
- 0.02505519427359104,
- -0.13132593035697937,
- -0.008670445531606674,
- -0.031291939318180084,
- 0.0031050588004291058,
- 0.020359864458441734,
- -0.023714151233434677,
- -0.027316126972436905,
- 0.006687407847493887,
- -0.0006535994471050799,
- 0.05369908735156059,
- -0.03262418508529663,
- -0.021304979920387268,
- -0.02359231375157833,
- 0.05259557440876961,
- 0.0188963133841753,
- 0.003210345283150673,
- -0.0070291608572006226,
- -0.006147161591798067,
- -0.01976688951253891,
- -0.05139734596014023,
- -0.06283904612064362,
- 0.05280793830752373,
- -0.04513102397322655,
- -0.03203010931611061,
- 0.008252606727182865,
- -0.05853918567299843,
- -0.038637492805719376,
- -0.021288296207785606,
- 0.06551764905452728,
- 0.019444886595010757,
- 0.040029581636190414,
- -0.02266162447631359,
- -0.04422546923160553,
- 0.011686560697853565,
- 0.008552824147045612,
- 0.07872848212718964,
- -0.055370308458805084,
- 0.08803658932447433,
- 0.013387655839323997,
- -1.2787252146040373e-8,
- 0.027513723820447922,
- 0.001301179057918489,
- 0.1019933670759201,
- -0.05246138945221901,
- -0.025681378319859505,
- -0.024806471541523933,
- 0.004063518717885017,
- -0.05193963646888733,
- 0.048261743038892746,
- 0.013479220680892467,
- -0.024235645309090614,
- -0.029593611136078835,
- 0.06534750014543533,
- 0.07974839955568314,
- 0.035352349281311035,
- 0.0717359259724617,
- -0.04879751056432724,
- 0.06151454895734787,
- -0.06636764109134674,
- -0.0252030398696661,
- 0.007704921066761017,
- -0.03392229601740837,
- -0.006707014515995979,
- 0.0637008398771286,
- 0.0417245551943779,
- -0.04443393275141716,
- 0.020113982260227203,
- 0.04328536242246628,
- -0.013768921606242657,
- 0.11937963962554932,
- 0.0397200733423233,
- 0.06254623085260391,
- -0.03833828493952751,
- 0.006436557974666357,
- -0.08256068825721741,
- -0.08763665705919266,
- 0.06694302707910538,
- -0.06364097446203232,
- -0.02205910161137581,
- -0.017927922308444977,
- -0.013599751517176628,
- -0.03647393733263016,
- -0.03773468732833862,
- 0.09798013418912888,
- 0.016195252537727356,
- -0.13101133704185486,
- 0.09380704164505005,
- -0.08708273619413376,
- -0.06673111021518707,
- 0.07776758819818497,
- 0.008422384038567543,
- -0.00019044990767724812,
- 0.033529095351696014,
- 0.005327555350959301,
- -0.004294253420084715,
- 0.013870999217033386,
- 0.035404790192842484,
- 0.02048775926232338,
- -0.07950355857610703,
- 0.05719723924994469,
- -0.01481521688401699,
- -0.11069109290838242,
- 0.010507599450647831,
- 0.059947576373815536
- ]
- },
- {
- "keyword": "tracker",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.06045461446046829,
- -0.010328782722353935,
- -0.08932976424694061,
- 0.025580858811736107,
- 0.13549679517745972,
- 0.011670202016830444,
- 0.10616110265254974,
- -0.0074346656911075115,
- -0.02498828060925007,
- 0.013956432230770588,
- 0.07233022898435593,
- -0.08827520161867142,
- 0.025326993316411972,
- 0.030510708689689636,
- -0.04342395067214966,
- -0.034355614334344864,
- 0.05347674712538719,
- 0.056304968893527985,
- -0.009603921324014664,
- -0.0501357838511467,
- -0.10465049743652344,
- -0.03062203899025917,
- 0.04578768461942673,
- 0.047511108219623566,
- -0.029540857300162315,
- -0.007376637309789658,
- -0.07032719999551773,
- -0.03529965877532959,
- -0.043067097663879395,
- -0.09341151267290115,
- 0.0072724418714642525,
- -0.02572600729763508,
- 0.0380559079349041,
- 0.05264537036418915,
- -0.06499851495027542,
- -0.05807140842080116,
- -0.007405432872474194,
- -0.007942842319607735,
- -0.02762889862060547,
- -0.016006141901016235,
- -0.05163528770208359,
- -0.019125640392303467,
- 0.020261777564883232,
- 0.05723504349589348,
- 0.014554230496287346,
- -0.0003260612429585308,
- -0.01507352665066719,
- 0.014267987571656704,
- -0.002017412567511201,
- 0.052914515137672424,
- -0.019321465864777565,
- -0.09191743284463882,
- 0.025587618350982666,
- -0.036612868309020996,
- -0.005484240595251322,
- 0.06367169320583344,
- -0.02284354530274868,
- 0.031949661672115326,
- 0.025965256616473198,
- -0.02240907959640026,
- 0.07028695195913315,
- -0.04445663094520569,
- -0.09178575873374939,
- 0.0036998314317315817,
- -0.0031947430688887835,
- -0.04536840692162514,
- -0.025698617100715637,
- 0.019452964887022972,
- 0.018088452517986298,
- 0.008830063976347446,
- -0.00828949362039566,
- 0.058333516120910645,
- 0.03182265907526016,
- -0.006575801409780979,
- 0.03277943283319473,
- -0.03773486986756325,
- -0.017849639058113098,
- 0.0065603856928646564,
- 0.09106391668319702,
- -0.04083488881587982,
- -0.02106783539056778,
- -0.09996965527534485,
- -0.02035624347627163,
- 0.023747287690639496,
- 0.09390802681446075,
- -0.03150273859500885,
- 0.018994340673089027,
- 0.044356703758239746,
- 0.005486955400556326,
- -0.028854945674538612,
- -0.026112547144293785,
- 0.051540911197662354,
- 0.08723650127649307,
- -0.055164240300655365,
- -0.06310317665338516,
- 0.029767731204628944,
- 0.0038778455927968025,
- 0.052369870245456696,
- 0.009435607120394707,
- 0.20967631042003632,
- 0.036549072712659836,
- 0.033913854509592056,
- -0.06911168247461319,
- 0.07761095464229584,
- -0.016506602987647057,
- -0.04952523857355118,
- -0.02546674571931362,
- 0.07592059671878815,
- -0.00980583019554615,
- 0.05392707511782646,
- -0.002881200285628438,
- -0.022845378145575523,
- -0.06446265429258347,
- -0.014491377398371696,
- 0.04833102226257324,
- 0.026671845465898514,
- -0.05832276865839958,
- 0.04730696976184845,
- 0.03655212000012398,
- 0.027354177087545395,
- 0.0013886003289371729,
- -0.005144680850207806,
- -0.017034029588103294,
- -0.028824582695961,
- -0.009820796549320221,
- 0.04022178798913956,
- 0.04957197606563568,
- -5.533934632109578e-33,
- 0.04765157401561737,
- 0.02622533217072487,
- -0.012996679171919823,
- -0.03973236307501793,
- 0.00586869940161705,
- 0.056824613362550735,
- -0.03593825176358223,
- -0.035098202526569366,
- -0.022843513637781143,
- -0.0049371737986803055,
- -0.0021383475977927446,
- 0.07575470954179764,
- -0.06510340422391891,
- 0.08213066309690475,
- 0.0837647095322609,
- -0.05131721496582031,
- 0.022926369681954384,
- 0.1311868280172348,
- -0.04245840758085251,
- 0.010115241631865501,
- -0.03290442004799843,
- -0.0891568660736084,
- -0.010586299933493137,
- -0.01559243444353342,
- 0.08590323477983475,
- 0.0786360502243042,
- 0.0007800105959177017,
- 0.018196625635027885,
- 0.0330473966896534,
- 0.03302637115120888,
- 0.038702577352523804,
- -0.030687345191836357,
- -0.01482729148119688,
- 0.024747375398874283,
- 0.027250882238149643,
- -0.07824808359146118,
- -0.0530971884727478,
- -0.051399681717157364,
- -0.02217995934188366,
- -0.047932080924510956,
- 0.0194135420024395,
- 0.021391652524471283,
- -0.07841812074184418,
- -0.0637592077255249,
- -0.12961483001708984,
- 0.019885988906025887,
- 0.02988920919597149,
- 0.031037138774991035,
- -0.013305851258337498,
- 0.031498391181230545,
- -0.001318449852988124,
- -0.017283843830227852,
- -0.08477079123258591,
- -0.057999320328235626,
- -0.006033406127244234,
- -0.04098338261246681,
- -0.009552805684506893,
- -0.047770608216524124,
- -0.032050326466560364,
- -0.05176308751106262,
- 0.10154745727777481,
- 0.0654892846941948,
- -0.016310598701238632,
- -0.08415404707193375,
- 0.02260318025946617,
- -0.0681578516960144,
- 0.05168985575437546,
- 0.027512071654200554,
- 0.022981619462370872,
- 0.07403777539730072,
- -0.0671379566192627,
- 0.021124200895428658,
- 0.06543751806020737,
- 0.043157149106264114,
- 0.03153180703520775,
- 0.015536833554506302,
- 0.020187566056847572,
- 0.08966447412967682,
- -0.11674517393112183,
- -0.07189595699310303,
- -0.12436220794916153,
- -0.09773456305265427,
- -0.003910960163921118,
- -0.0015194716397672892,
- -0.015201148577034473,
- -0.014790571294724941,
- -0.05772121995687485,
- -0.015373976901173592,
- -0.01715446636080742,
- 0.03391491621732712,
- 0.00027690338902175426,
- 0.01959739625453949,
- -0.03356204554438591,
- 0.07414878159761429,
- -0.05180501565337181,
- 4.3892639472177586e-33,
- -0.06255772709846497,
- 0.017488373443484306,
- 0.10692383348941803,
- -0.03525758534669876,
- -0.008623559959232807,
- -0.01581696979701519,
- 0.02841246873140335,
- -0.0026550970505923033,
- 0.07902376353740692,
- 0.02728380635380745,
- -0.08498238027095795,
- -0.052833691239356995,
- -0.007489651907235384,
- 0.04885740950703621,
- 0.02018054574728012,
- 0.03150813281536102,
- -0.025135623291134834,
- -0.05198812112212181,
- -0.02616424486041069,
- -0.060691144317388535,
- -0.0563112236559391,
- -0.07477909326553345,
- -0.01710318773984909,
- -0.05188578739762306,
- 0.018145127221941948,
- 0.04635937511920929,
- 0.12241215258836746,
- -0.037701405584812164,
- 0.03497028723359108,
- -0.03854340314865112,
- 0.07554203271865845,
- -0.0857594907283783,
- -0.01774374395608902,
- -0.005693424958735704,
- -0.0052349139004945755,
- 0.05246680602431297,
- 0.034980013966560364,
- 0.10085465013980865,
- -0.018504148349165916,
- 0.023702826350927353,
- 0.04816246032714844,
- 0.0517602413892746,
- 0.036403216421604156,
- 0.07000722736120224,
- -0.0013401276664808393,
- -0.006323593202978373,
- 0.005860732868313789,
- 0.136417418718338,
- -0.027348307892680168,
- 0.0038574011996388435,
- -0.02238031104207039,
- 0.011677945964038372,
- 0.05541915446519852,
- -0.05862998962402344,
- -0.061419520527124405,
- 0.07317307591438293,
- -0.044547829777002335,
- 0.0038993393536657095,
- -0.0043928539380431175,
- -0.04815569519996643,
- 0.008367173373699188,
- -0.02425350435078144,
- -0.08497066795825958,
- 0.06694351136684418,
- -0.0580497570335865,
- 0.01145321223884821,
- -0.013274449855089188,
- -0.0037080508191138506,
- -0.060592494904994965,
- 0.050710588693618774,
- 0.05655888468027115,
- -0.02849431522190571,
- -0.028887229040265083,
- 0.0045247990638017654,
- -0.04294733330607414,
- -0.04558151215314865,
- -0.08758198469877243,
- 0.026751236990094185,
- -0.007732235826551914,
- 0.001853449735790491,
- -0.02509520761668682,
- -0.0037358638364821672,
- 0.025365740060806274,
- -0.07417206466197968,
- 0.06291358917951584,
- -0.034792762249708176,
- -0.011043100617825985,
- 0.019191516563296318,
- 0.008063292130827904,
- -0.030695298686623573,
- 0.0027868165634572506,
- 0.050075188279151917,
- -0.04178248718380928,
- 0.04101399704813957,
- -0.0810667872428894,
- -1.1097230689927073e-8,
- -0.08192957192659378,
- 0.03727894648909569,
- -0.032997991889715195,
- 0.03781624138355255,
- 0.05342671647667885,
- 0.03998260572552681,
- 0.02811887115240097,
- 0.031181683763861656,
- 0.03104368969798088,
- 0.04240342602133751,
- 0.011515086516737938,
- -0.053887736052274704,
- -0.017063625156879425,
- 0.041240837424993515,
- 0.03849492594599724,
- -0.08819972723722458,
- -0.07288967072963715,
- 0.06933670490980148,
- -0.02348531223833561,
- 0.05096631124615669,
- -0.006746951956301928,
- 0.02398149110376835,
- 0.00763314263895154,
- 0.0380018949508667,
- -0.00941801629960537,
- -0.026832513511180878,
- 0.007154419552534819,
- 0.1557653844356537,
- 0.0900753065943718,
- 0.0347842276096344,
- 0.03913712501525879,
- 0.11773476749658585,
- 0.04253479838371277,
- -0.054487474262714386,
- 0.00628872262313962,
- 0.03049340471625328,
- -0.07248730957508087,
- 0.02479131706058979,
- 0.005086502060294151,
- 0.04819408431649208,
- 0.06474119424819946,
- 0.013030442409217358,
- 0.011068904772400856,
- 0.016571229323744774,
- -0.0032051079906523228,
- -0.011315683834254742,
- 0.03366918861865997,
- -0.13793595135211945,
- 0.020086554810404778,
- -0.05760835483670235,
- -0.012550590559840202,
- -0.07004702836275101,
- 0.05261141061782837,
- 0.09031985700130463,
- 0.05485110357403755,
- 0.057812053710222244,
- 0.02698006108403206,
- -0.11235754936933517,
- 0.028091594576835632,
- 0.049498848617076874,
- 0.03882022574543953,
- -0.031737279146909714,
- 0.016713334247469902,
- 0.08138041943311691
- ]
- },
- {
- "keyword": "monitor",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.01791725680232048,
- 0.05073476582765579,
- -0.07796553522348404,
- -0.03400233015418053,
- 0.007728207390755415,
- -0.02658182382583618,
- 0.10765821486711502,
- 0.026169897988438606,
- 0.08895016461610794,
- 0.04256494715809822,
- 0.05740325152873993,
- -0.0754905566573143,
- -0.0033379769884049892,
- 0.021418841555714607,
- -0.11923547834157944,
- -0.045661404728889465,
- 0.09663885086774826,
- -0.08170600980520248,
- 0.004112903960049152,
- -0.019105108454823494,
- -0.061973560601472855,
- -0.058002080768346786,
- -0.03372186794877052,
- 0.0022524858359247446,
- -0.05518602207303047,
- 0.038513194769620895,
- -0.05419613793492317,
- 0.06938248127698898,
- -0.0011831356678158045,
- -0.08163443207740784,
- -0.03373522311449051,
- -0.062056638300418854,
- 0.04216611757874489,
- 0.05139174684882164,
- -0.09549081325531006,
- -0.05384499207139015,
- 0.10174184292554855,
- -0.06772200018167496,
- -0.07004236429929733,
- -0.09505928307771683,
- -0.03654075041413307,
- -0.026194579899311066,
- 0.0499214231967926,
- -0.00010737086267909035,
- -0.02046213671565056,
- 0.0030306356493383646,
- 0.007662315387278795,
- -0.010053431615233421,
- -0.020309707149863243,
- -0.013437176123261452,
- -0.015449125319719315,
- -0.04458046332001686,
- 0.045484934002161026,
- 0.010028507560491562,
- -0.010503989644348621,
- 0.06750845909118652,
- -0.007174384314566851,
- 0.021419627591967583,
- 0.00533068785443902,
- 0.01578707993030548,
- 0.07257890701293945,
- -0.013903370127081871,
- -0.05579755827784538,
- 0.02439429610967636,
- -0.019976221024990082,
- 0.005120032466948032,
- -0.040081512182950974,
- -0.025923043489456177,
- -0.010842273011803627,
- 0.02431621216237545,
- -0.01743752881884575,
- -0.0007427743985317647,
- 0.024853583425283432,
- -0.04169147461652756,
- 0.02106865681707859,
- -0.05082174390554428,
- 0.005814047530293465,
- -0.10330543667078018,
- 0.1461276113986969,
- 0.013081667013466358,
- 0.018039770424365997,
- 0.01735607162117958,
- -0.06555359065532684,
- 0.0409676767885685,
- 0.06679857522249222,
- -0.04467335343360901,
- 0.047171175479888916,
- 0.04501325264573097,
- -0.03527909889817238,
- -0.11677026003599167,
- -0.04382515326142311,
- 0.05457943305373192,
- 0.0005381228984333575,
- 0.02140181139111519,
- -0.07927550375461578,
- -0.035796869546175,
- 0.08212849497795105,
- -0.03574886918067932,
- 0.007751683238893747,
- 0.22068992257118225,
- 0.07083375006914139,
- 0.048027195036411285,
- 0.08956845104694366,
- 0.03601030632853508,
- -0.016241921111941338,
- -0.04794957861304283,
- -0.01899345964193344,
- 0.07878728210926056,
- -0.051139332354068756,
- 0.021847762167453766,
- -0.035247575491666794,
- 0.035508472472429276,
- -0.061652593314647675,
- 0.02014916017651558,
- 0.08790874481201172,
- -0.012092139571905136,
- -0.05183936655521393,
- 0.05784899741411209,
- 0.07744418829679489,
- 0.018473269417881966,
- 0.022939592599868774,
- -0.046808041632175446,
- -0.07407892495393753,
- 0.006583669222891331,
- 0.07845845818519592,
- -0.003039923496544361,
- 0.023355325683951378,
- -4.566324253178304e-33,
- 0.026003295555710793,
- 0.0009299978264607489,
- -0.0518404059112072,
- 0.0003301740507595241,
- 0.00037205684930086136,
- 0.13833588361740112,
- 0.011994409374892712,
- 0.08620842546224594,
- 0.05133091285824776,
- 0.08110114187002182,
- 0.006861862260848284,
- 0.015063260681927204,
- -0.025790167972445488,
- 0.08301431685686111,
- 0.10879316926002502,
- -0.0363684706389904,
- 0.04358991980552673,
- 0.09666256606578827,
- -0.05148208513855934,
- -0.04471739009022713,
- -0.002963589271530509,
- -0.11294855922460556,
- 0.014148106798529625,
- 0.013509941287338734,
- 0.04506055265665054,
- 0.041315365582704544,
- 0.015477955341339111,
- 0.03435464948415756,
- 0.01869463548064232,
- -0.005030634347349405,
- 0.03947226703166962,
- 0.030382752418518066,
- 0.030717352405190468,
- -0.03249377757310867,
- -0.058744221925735474,
- -0.06789211183786392,
- 0.023574629798531532,
- -0.012765008956193924,
- -0.00564937386661768,
- 0.02852177806198597,
- -0.01917845383286476,
- 0.049764081835746765,
- -0.0038252752274274826,
- -0.025191083550453186,
- 0.0018471450312063098,
- 0.04722754657268524,
- 0.02604069374501705,
- 0.03783204406499863,
- -0.017271755263209343,
- 0.040650129318237305,
- -0.06248937547206879,
- -0.041823286563158035,
- -0.02421620488166809,
- -0.05046718567609787,
- -0.023362062871456146,
- 0.029482830315828323,
- 0.024607649073004723,
- -0.006458553019911051,
- 0.003942735027521849,
- -0.023267442360520363,
- -0.022609898820519447,
- 0.06288955360651016,
- -0.006019719876348972,
- 0.029376626014709473,
- 0.0054926760494709015,
- 0.003311011241748929,
- 0.07016235589981079,
- 0.0303601436316967,
- -0.0472351610660553,
- 0.006453544832766056,
- -0.10523885488510132,
- -0.01307730283588171,
- 0.06805619597434998,
- -0.017756521701812744,
- -0.03336700052022934,
- 0.026380719617009163,
- -0.06744076311588287,
- 0.06531842797994614,
- -0.09362120926380157,
- -0.011817033402621746,
- -0.007677147164940834,
- -0.037877000868320465,
- 0.022678714245557785,
- -0.008998611941933632,
- -0.007632185239344835,
- 0.0076997606083750725,
- -0.08383790403604507,
- -0.08410844951868057,
- -0.024129007011651993,
- 0.009526110254228115,
- -0.027821587398648262,
- -0.03301047533750534,
- 0.0517391636967659,
- -0.03416718915104866,
- -0.08030485361814499,
- 3.557319208024808e-33,
- -0.029495293274521828,
- -0.0204633716493845,
- -0.02639811486005783,
- -0.006322223227471113,
- 0.05432960391044617,
- -0.04388771578669548,
- 0.09921076148748398,
- -0.008861511014401913,
- -0.03145860508084297,
- -0.021325986832380295,
- -0.0055126165971159935,
- -0.016988342627882957,
- -0.013664387166500092,
- 0.05389998480677605,
- 0.020510990172624588,
- 0.029724152758717537,
- 0.04367975890636444,
- -0.08406507968902588,
- -0.05686786025762558,
- -0.0013118996284902096,
- -0.0024624133948236704,
- -0.030558517202734947,
- -0.0008659605518914759,
- -0.08827781677246094,
- 0.023182520642876625,
- 0.013159535825252533,
- 0.0619872584939003,
- 0.007042126264423132,
- -0.0047375718131661415,
- 0.06989849358797073,
- 0.0011547923786565661,
- -0.08343801647424698,
- 0.06701142340898514,
- 0.09720700234174728,
- 0.07075244933366776,
- -0.01492956094443798,
- 0.11267676949501038,
- -0.0454200841486454,
- -0.03599029779434204,
- 0.05302206799387932,
- 0.04696277156472206,
- 0.12094263732433319,
- 0.017236776649951935,
- 0.14508658647537231,
- 0.015055440366268158,
- 0.057735733687877655,
- -0.03673922270536423,
- 0.04797003045678139,
- -0.043706391006708145,
- -0.046083223074674606,
- -0.07577553391456604,
- -0.022473791614174843,
- 0.01368157658725977,
- -0.09064094722270966,
- -0.03145340830087662,
- -0.02197939157485962,
- -0.056412581354379654,
- 0.08215034753084183,
- -0.0016051247948780656,
- -0.001258016680367291,
- 0.06941299140453339,
- -0.04718298092484474,
- -0.1031237542629242,
- -0.03207053616642952,
- -0.0022452697157859802,
- 0.07601841539144516,
- -0.00012304657138884068,
- -0.021598314866423607,
- 0.03744391351938248,
- 0.01025127712637186,
- 0.06106339395046234,
- 0.01911286823451519,
- -0.0024437671527266502,
- -0.06447722762823105,
- -0.009125033393502235,
- 0.023177189752459526,
- -0.0021619617473334074,
- -0.011686388403177261,
- -0.024968072772026062,
- 0.008918218314647675,
- -0.001063425443135202,
- -0.08399765193462372,
- 0.09099097549915314,
- -0.02969140186905861,
- 0.03219021484255791,
- -0.03874443843960762,
- -0.014354055747389793,
- 0.04499279707670212,
- 0.020498981699347496,
- -0.043672461062669754,
- -0.02019531838595867,
- 0.06969968229532242,
- -0.06069188937544823,
- -0.07508018612861633,
- 0.04033274203538895,
- -1.0798438587755754e-8,
- -0.018867867067456245,
- -0.005448777228593826,
- 0.00695458147674799,
- -0.03425028547644615,
- -0.03630375489592552,
- -0.05477108806371689,
- 0.06378138810396194,
- -0.08312467485666275,
- 0.03209172934293747,
- 0.008172092959284782,
- -0.020677819848060608,
- -0.10733990371227264,
- -0.03342485427856445,
- 0.043337445706129074,
- 0.07240039110183716,
- -0.02635585516691208,
- -0.014875569380819798,
- 0.035698216408491135,
- -0.035691116005182266,
- 0.06805218011140823,
- 0.030915096402168274,
- 0.013529520481824875,
- 0.041836973279714584,
- -0.00945738609880209,
- 0.020093640312552452,
- -0.0723346695303917,
- -0.0086286636069417,
- 0.06586845219135284,
- 0.020116833969950676,
- 0.0005216223071329296,
- 0.03411564230918884,
- 0.06886418163776398,
- 0.0038625176530331373,
- -0.06328428536653519,
- 0.10844071954488754,
- -0.010851174592971802,
- -0.039918892085552216,
- 0.007879478856921196,
- 0.0884181335568428,
- 0.03618806228041649,
- -0.012672245502471924,
- -0.061172276735305786,
- -0.09942979365587234,
- 0.01523510180413723,
- -0.005327870603650808,
- -0.025029363110661507,
- -0.004723752848803997,
- -0.06688529253005981,
- -0.025181898847222328,
- 0.009727558121085167,
- -0.029918687418103218,
- -0.013173072598874569,
- 0.04357423633337021,
- -0.023371528834104538,
- -0.003567427396774292,
- -0.013862903229892254,
- 0.09241955727338791,
- -0.002872142940759659,
- -0.06533237546682358,
- 0.11657683551311493,
- 0.08547235280275345,
- 0.01804387755692005,
- 0.01719047501683235,
- -0.013785266317427158
- ]
- },
- {
- "keyword": "camera",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07423759996891022,
- 0.07086611539125443,
- -0.004744547884911299,
- -0.051549021154642105,
- 0.04980137199163437,
- -0.047473009675741196,
- 0.16168273985385895,
- 0.0697513073682785,
- 0.04895087331533432,
- 0.042303480207920074,
- 0.07752957195043564,
- -0.07314452528953552,
- 0.014616101048886776,
- 0.036678578704595566,
- -0.014947377145290375,
- -0.05616987869143486,
- 0.0494547076523304,
- -0.058194100856781006,
- -0.10110384970903397,
- -0.007045070640742779,
- -0.0866825208067894,
- -0.03463870286941528,
- 0.04038340970873833,
- -0.00845989678055048,
- 0.016721105203032494,
- 0.030210983008146286,
- -0.026062555611133575,
- -0.0014392519369721413,
- 0.016489949077367783,
- -0.10269635170698166,
- 0.000654033268801868,
- -0.01760978437960148,
- 0.03259992226958275,
- 0.027907904237508774,
- -0.03027523122727871,
- -0.034355588257312775,
- 0.04545929282903671,
- -0.028771186247467995,
- -0.007510144263505936,
- -0.01861274056136608,
- -0.04513821005821228,
- -0.0222232174128294,
- 0.04331143945455551,
- 0.014999985694885254,
- 0.026019446551799774,
- 0.05214553326368332,
- 0.08226494491100311,
- 0.0023153056390583515,
- 0.028467418625950813,
- -0.006887890864163637,
- -0.08418859541416168,
- -0.008061095140874386,
- -0.011218844912946224,
- 0.02751978486776352,
- -0.04595338925719261,
- 0.02628162130713463,
- -0.07418607175350189,
- -0.03623290732502937,
- 0.0062235621735453606,
- -0.0381445549428463,
- 0.04270290583372116,
- 0.002382739679887891,
- -0.030515143647789955,
- 0.054551489651203156,
- 0.013158801011741161,
- 0.037752605974674225,
- -0.000304775225231424,
- -0.0558176226913929,
- 0.040896955877542496,
- -0.027769071981310844,
- -0.058664124459028244,
- 0.0686386376619339,
- 0.0032133059576153755,
- -0.024997930973768234,
- -0.032975997775793076,
- -0.0441611148416996,
- 0.02798844315111637,
- -0.024272574111819267,
- 0.06174962967634201,
- -0.036494676023721695,
- 0.111974336206913,
- -0.07262856513261795,
- -0.07313219457864761,
- 0.009758605621755123,
- 0.05115359649062157,
- -0.01969342865049839,
- 0.01658431626856327,
- 0.047504961490631104,
- -0.06306672096252441,
- -0.07435700297355652,
- -0.13721512258052826,
- -0.05665251985192299,
- -0.06171434745192528,
- -0.036285560578107834,
- -0.13217049837112427,
- -0.023520929738879204,
- 0.02703695371747017,
- -0.07952096313238144,
- -0.018767347559332848,
- 0.23463337123394012,
- 0.022676298394799232,
- 0.016920438036322594,
- 0.04001929983496666,
- -0.0002455805370118469,
- 0.03222493827342987,
- -0.03152770549058914,
- -0.06183330714702606,
- 0.025777989998459816,
- 0.050239428877830505,
- 0.011999712325632572,
- -0.039404913783073425,
- 0.0019116149051114917,
- -0.052033375948667526,
- 0.013989642262458801,
- 0.06126319617033005,
- -0.05739075690507889,
- -0.05483507364988327,
- 0.0264150220900774,
- 0.020788585767149925,
- -0.0391327328979969,
- 0.03040272556245327,
- -0.059591349214315414,
- -0.0695459172129631,
- 0.02949696034193039,
- -0.03726055845618248,
- -0.06447688490152359,
- 0.058184925466775894,
- -3.577177715714012e-33,
- 0.028378741815686226,
- 0.013296395540237427,
- 0.05425842106342316,
- 0.016457658261060715,
- -0.0013662088895216584,
- 0.06425514817237854,
- -0.023760519921779633,
- 0.011260276660323143,
- -0.029489604756236076,
- 0.022433586418628693,
- -0.02352914959192276,
- -0.07517591118812561,
- -0.04520761966705322,
- 0.04728180170059204,
- 0.13395588099956512,
- 0.045174092054367065,
- 0.006978982128202915,
- -0.020168790593743324,
- -0.037377405911684036,
- 0.035134609788656235,
- -0.026884784922003746,
- -0.021906262263655663,
- 0.04829462990164757,
- 0.13352321088314056,
- 0.006057673133909702,
- 0.01269197091460228,
- 0.0451555997133255,
- -0.020515376701951027,
- 0.07071685791015625,
- 0.008575870655477047,
- -0.02179967425763607,
- 0.01736019365489483,
- -0.014233434572815895,
- -0.03159589692950249,
- 0.0394134595990181,
- -0.04262375086545944,
- 0.017751071602106094,
- -0.05221256613731384,
- 0.03746510669589043,
- -0.04261879250407219,
- 0.010410173796117306,
- 0.08412668108940125,
- -0.09131374955177307,
- -0.030388765037059784,
- 0.06655019521713257,
- 0.04061981663107872,
- 0.050321441143751144,
- 0.13266915082931519,
- -0.14219930768013,
- 0.04764877259731293,
- 0.02524159848690033,
- -0.04700544476509094,
- -0.042183589190244675,
- -0.04051688313484192,
- -0.0366399884223938,
- 0.030309919267892838,
- -0.02536911889910698,
- -0.016324803233146667,
- 0.008320429362356663,
- 0.0005241722683422267,
- 0.08227808028459549,
- 0.0629064291715622,
- -0.021140139549970627,
- 0.0006858473061583936,
- -0.03863706439733505,
- -0.006154197733849287,
- 0.078522689640522,
- 0.01712195761501789,
- -0.03843753784894943,
- 0.03549010306596756,
- -0.05790073052048683,
- -0.03741386905312538,
- 0.03442945331335068,
- -0.012265992350876331,
- 0.04377584904432297,
- 0.08696380257606506,
- -0.08123455196619034,
- -0.03959071636199951,
- -0.07165040820837021,
- 0.08273154497146606,
- -0.12996381521224976,
- 0.05464307963848114,
- 0.04682258889079094,
- 0.05654774233698845,
- -0.0302568469196558,
- -0.005173767916858196,
- -0.050443265587091446,
- -0.04946994036436081,
- -0.03483332693576813,
- 0.029669733718037605,
- -0.026821959763765335,
- 0.03823819383978844,
- 0.052831824868917465,
- 0.00852088164538145,
- -0.042399123311042786,
- 3.6884764595857434e-33,
- 0.022156286984682083,
- 0.012139835394918919,
- -0.08459857851266861,
- 0.03150911629199982,
- 0.00788085162639618,
- -0.06596070528030396,
- 0.07773040235042572,
- 0.036878302693367004,
- 0.06678719818592072,
- 0.01519306842237711,
- -0.04628477245569229,
- -0.0830908715724945,
- 0.04690764099359512,
- 0.014453056268393993,
- 0.030808117240667343,
- 0.02300410158932209,
- 0.04892817512154579,
- -0.031881723552942276,
- -0.040947042405605316,
- 0.004684823099523783,
- 0.01941823400557041,
- -0.008650406263768673,
- 0.06846655905246735,
- -0.008760430850088596,
- -0.01718265190720558,
- 0.09904059767723083,
- 0.03734002262353897,
- 0.05063909664750099,
- 0.012898199260234833,
- -0.0543619841337204,
- 0.04597768187522888,
- -0.08925580978393555,
- 0.07968736439943314,
- 0.005820500664412975,
- -0.0031836272682994604,
- 0.11927639693021774,
- 0.07392790168523788,
- -0.02618504874408245,
- -0.0066370731219649315,
- 0.01705784909427166,
- 0.03321992605924606,
- 0.008147502318024635,
- 0.022080719470977783,
- 0.1032230332493782,
- -0.005635037552565336,
- -0.018815718591213226,
- -0.012455184943974018,
- 0.012258726172149181,
- 0.0007737620617263019,
- 0.026028785854578018,
- -0.07799849659204483,
- -0.0023929148446768522,
- -0.0076660471968352795,
- -0.019804561510682106,
- -0.023552771657705307,
- -0.003464885987341404,
- -0.05479814112186432,
- 0.006732771638780832,
- 0.05704670771956444,
- 0.03780597820878029,
- 0.04786677286028862,
- 0.008079295046627522,
- -0.08210683614015579,
- 0.0016579332295805216,
- -0.04078949615359306,
- 0.03851413354277611,
- -0.00979546643793583,
- 0.01761266030371189,
- -0.009608902037143707,
- 0.05399034172296524,
- 0.09317974001169205,
- 0.06417374312877655,
- 0.05704179033637047,
- 0.03354324400424957,
- -0.0034149712882936,
- -0.023509522899985313,
- -0.07516197115182877,
- 0.038587965071201324,
- 0.036026231944561005,
- -0.04048623889684677,
- -0.013491040095686913,
- -0.14828622341156006,
- 0.005373610649257898,
- 0.08321123570203781,
- 0.008673819713294506,
- -0.023263009265065193,
- 0.05050676316022873,
- -0.0612872876226902,
- 0.00042625018977560103,
- -0.06535881757736206,
- 0.01534345094114542,
- 0.014125127345323563,
- -0.038604069501161575,
- 0.011689134873449802,
- -0.020580969750881195,
- -1.1621139606177167e-8,
- -0.0450592078268528,
- -0.028467411175370216,
- 0.027459172531962395,
- -0.04453597590327263,
- 0.02828218787908554,
- -0.05956077575683594,
- 0.019246628507971764,
- 0.050783514976501465,
- 0.06888703256845474,
- -0.03396103158593178,
- 0.057907428592443466,
- -0.023531129583716393,
- 0.020170273259282112,
- 0.03616960719227791,
- 0.03239189088344574,
- 0.01078221295028925,
- -0.03213489055633545,
- 0.053159523755311966,
- -0.029509447515010834,
- 0.020855994895100594,
- 0.007569767534732819,
- -0.07543914020061493,
- -0.003517827019095421,
- -0.009780557826161385,
- -0.002973016584292054,
- -0.10546109825372696,
- -0.010976836085319519,
- 0.010467641986906528,
- 0.08974213898181915,
- -0.010122420266270638,
- -0.04043473303318024,
- 0.018376249819993973,
- 0.03488242253661156,
- -0.003980445209890604,
- 0.026819521561264992,
- -0.08561389148235321,
- -0.0263887420296669,
- 0.00875895470380783,
- 0.027366824448108673,
- 0.012355652637779713,
- -0.020791584625840187,
- 0.035643357783555984,
- 0.005412759725004435,
- 0.0025033210404217243,
- -0.013967392034828663,
- 0.025779124349355698,
- 0.09502536803483963,
- -0.03972023352980614,
- -0.018208278343081474,
- -0.0006399838603101671,
- -0.09417550265789032,
- 0.03943563625216484,
- 0.04915160685777664,
- 0.10172563046216965,
- 0.010594099760055542,
- -0.041797664016485214,
- 0.10515329241752625,
- -0.06365100294351578,
- -0.08264880627393723,
- 0.05419349670410156,
- 0.0702117308974266,
- 0.005214605946093798,
- -0.08448518067598343,
- 0.0675218477845192
- ]
- },
- {
- "keyword": "lens",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.020731166005134583,
- 0.05037055164575577,
- -0.022258112207055092,
- -0.026240108534693718,
- -0.014877209439873695,
- -0.10098343342542648,
- 0.1969171017408371,
- 0.046333275735378265,
- -0.022296270355582237,
- 0.03001365065574646,
- 0.049181051552295685,
- -0.05542946979403496,
- -0.0360686294734478,
- 0.022916385903954506,
- -0.05464113503694534,
- -0.01618260331451893,
- 0.015096916817128658,
- -0.0024252193979918957,
- -0.09328707307577133,
- -0.025914935395121574,
- -0.018079815432429314,
- 0.016894539818167686,
- -0.014067599549889565,
- 0.012369192205369473,
- 0.03792707249522209,
- 0.07286632061004639,
- -0.020023435354232788,
- -0.0455828458070755,
- -0.019609304144978523,
- -0.07993185520172119,
- 0.00895609986037016,
- 0.019498739391565323,
- 0.01884768344461918,
- -0.03774530813097954,
- -0.04006502777338028,
- -0.01193868089467287,
- -0.02823321893811226,
- -0.00025533424923196435,
- 0.005898785311728716,
- -0.021458512172102928,
- -0.06056637316942215,
- -0.010867447592318058,
- -0.020564667880535126,
- 0.014547781087458134,
- 0.015120767056941986,
- -0.029342046007514,
- 0.07464654743671417,
- -0.00029998240643180907,
- 0.08017079532146454,
- 0.05262962728738785,
- -0.08509598672389984,
- 0.012569531798362732,
- -0.09729906916618347,
- -0.02321687527000904,
- 0.06473036855459213,
- 0.08607245981693268,
- -0.08746150881052017,
- 0.010367809794843197,
- -0.029065366834402084,
- -0.024557044729590416,
- 0.0181211419403553,
- -0.03194352984428406,
- -0.027277957648038864,
- 0.07941461354494095,
- 0.03184470161795616,
- -0.01008211262524128,
- 0.00771111436188221,
- -0.08464167267084122,
- 0.0040866173803806305,
- -0.03412346541881561,
- -0.03981664031744003,
- 0.05106518790125847,
- 0.009432286024093628,
- 0.010105879977345467,
- -0.030005106702446938,
- -0.02979440800845623,
- 0.04760275036096573,
- -0.06576193869113922,
- 0.08753728121519089,
- 0.07773859798908234,
- 0.0779842957854271,
- -0.06652911007404327,
- 0.015719959512352943,
- 0.04487210139632225,
- -0.007361171301454306,
- 0.01385160256177187,
- -0.06269916146993637,
- 0.0452086478471756,
- -0.05583677440881729,
- -0.044475819915533066,
- -0.05830348655581474,
- -0.06169753894209862,
- -0.027202794328331947,
- 0.014816595241427422,
- -0.039548180997371674,
- -0.02671671472489834,
- -0.07344914972782135,
- -0.0680246651172638,
- -0.02588915266096592,
- 0.23387855291366577,
- 0.04602929949760437,
- 0.004561305977404118,
- -0.02016409859061241,
- 0.050188273191452026,
- -0.023588595911860466,
- -0.014407269656658173,
- 0.019369984045624733,
- 0.06089603528380394,
- -0.02419354021549225,
- 0.025691788643598557,
- -0.05147833377122879,
- 0.05456264317035675,
- -0.06381760537624359,
- -0.039471834897994995,
- -0.00745402229949832,
- -0.02017906866967678,
- 0.0143424766138196,
- 0.030125822871923447,
- 0.042449701577425,
- 0.004829417448490858,
- -0.017072530463337898,
- 0.0019702177960425615,
- -0.06895488500595093,
- 0.049972910434007645,
- -0.0325019434094429,
- -0.044446758925914764,
- -0.0013617280637845397,
- -3.532748070014761e-33,
- 0.037343669682741165,
- 0.04294939339160919,
- 0.07786918431520462,
- -0.02196514420211315,
- -0.055167388170957565,
- 0.03148413822054863,
- 0.025671331211924553,
- 0.018917756155133247,
- -0.04857994243502617,
- -0.0462556891143322,
- -0.011511933989822865,
- 0.008286137133836746,
- -0.05093315243721008,
- 0.004425173159688711,
- 0.16428536176681519,
- -0.03432951495051384,
- 0.0802534744143486,
- 0.07817001640796661,
- -0.031238049268722534,
- 0.016815150156617165,
- -0.030687935650348663,
- 0.043476320803165436,
- -0.002559482119977474,
- 0.08356498926877975,
- 0.032215796411037445,
- -0.0066209277138113976,
- -0.00537827517837286,
- -0.031116662546992302,
- -0.011863987892866135,
- 0.0563737116754055,
- -0.03330593928694725,
- 0.04870164021849632,
- -0.018629111349582672,
- -0.03891878202557564,
- -0.018335498869419098,
- 0.06803815811872482,
- -0.06871355324983597,
- -0.0195199865847826,
- 0.009092657826840878,
- 0.010065977461636066,
- -0.01136690191924572,
- 0.11316134035587311,
- -0.019816748797893524,
- -0.010557875968515873,
- 0.0777420699596405,
- 0.08202303200960159,
- -0.048308052122592926,
- 0.13256916403770447,
- -0.07733543962240219,
- 0.0782131627202034,
- 0.047027960419654846,
- -0.08718083798885345,
- -0.07300236821174622,
- -0.04652028903365135,
- 0.03381938487291336,
- 0.022826164960861206,
- -0.023976756259799004,
- -0.006870813202112913,
- -0.029264437034726143,
- -0.016175733879208565,
- 0.0730387344956398,
- -0.022731810808181763,
- -0.08406994491815567,
- 0.041878484189510345,
- -0.01850310154259205,
- 0.022713465616106987,
- 0.018917730078101158,
- -0.00462149316444993,
- -0.08446235209703445,
- 0.03861153498291969,
- -0.1028534546494484,
- 0.004174405708909035,
- 0.009091622196137905,
- 0.06486085802316666,
- 0.025731738656759262,
- 0.014122911728918552,
- -0.04900480434298515,
- -0.05553494766354561,
- -0.06946416944265366,
- 0.06552539020776749,
- -0.08251803368330002,
- 0.030980052426457405,
- -0.01302647590637207,
- -0.04419051110744476,
- -0.07629946619272232,
- 0.011149109341204166,
- -0.02855783887207508,
- -0.02115444839000702,
- -0.003477910067886114,
- -0.020525194704532623,
- 0.029997242614626884,
- -0.00817068014293909,
- -0.04305967688560486,
- -0.05885758250951767,
- -0.10809046775102615,
- 3.3089894142578766e-33,
- 0.009647867642343044,
- -0.052860237658023834,
- -0.006766553968191147,
- 0.09836079925298691,
- 0.06891750544309616,
- 0.038073424249887466,
- 0.08311842381954193,
- 0.042668417096138,
- 0.02755540981888771,
- 0.008914528414607048,
- -0.013293806463479996,
- -0.048562191426754,
- -0.008814798668026924,
- -0.004434903152287006,
- -0.019863449037075043,
- -0.009218821302056313,
- 0.0370790921151638,
- -0.0097178490832448,
- 0.005668734200298786,
- -0.030421065166592598,
- 0.028307560831308365,
- 0.012438212521374226,
- 0.10473432391881943,
- -0.06932541728019714,
- -0.06555488705635071,
- 0.04105457291007042,
- -0.01574672944843769,
- -0.03473347797989845,
- -0.026050563901662827,
- -0.01014017779380083,
- -0.018683554604649544,
- -0.06496968865394592,
- 0.03770479932427406,
- 0.06492280215024948,
- 0.0001686710020294413,
- 0.15435907244682312,
- 0.02394847758114338,
- -0.09652218967676163,
- 0.024440567940473557,
- -0.015902241691946983,
- 0.029014553874731064,
- -0.01749093271791935,
- 0.1331804245710373,
- 0.06128564849495888,
- -0.07092281430959702,
- -0.01958322711288929,
- 0.05994386598467827,
- 0.041468650102615356,
- 0.05099916830658913,
- -0.0064490134827792645,
- -0.14864131808280945,
- 0.0016846370417624712,
- 0.03798196092247963,
- -0.012108467519283295,
- -0.057807836681604385,
- -0.05067979916930199,
- -0.045901987701654434,
- -0.009247788228094578,
- 0.0649459958076477,
- 0.009418023750185966,
- 0.05740931257605553,
- -0.007047787308692932,
- -0.05634120851755142,
- 0.03857326880097389,
- -0.04749254882335663,
- 0.005662339739501476,
- -0.033737946301698685,
- 0.03308317810297012,
- -0.00021369382739067078,
- 0.02504897676408291,
- 0.06605684012174606,
- -0.02231200598180294,
- 0.07936991751194,
- 0.05039491131901741,
- -0.011348257772624493,
- -0.06231871619820595,
- -0.05161643773317337,
- 0.09274013340473175,
- 0.0326642207801342,
- 0.052930865436792374,
- 0.015763558447360992,
- -0.0008874384802766144,
- -0.027247553691267967,
- 0.16676566004753113,
- 0.04487841576337814,
- -0.028702571988105774,
- 0.030435949563980103,
- -0.06024903431534767,
- -0.052929073572158813,
- -0.018333112820982933,
- -0.009885475970804691,
- 0.0309737715870142,
- -0.0037860770244151354,
- 0.010089563205838203,
- 0.0349389873445034,
- -1.0469700661985826e-8,
- 0.05400991439819336,
- 0.04464499279856682,
- 0.004780754912644625,
- -0.008365219458937645,
- 0.0480707585811615,
- -0.01779617741703987,
- -0.03656140714883804,
- 0.03818173334002495,
- -0.008348274044692516,
- -0.004438715986907482,
- 0.025094399228692055,
- 0.01994430460035801,
- 0.01795521378517151,
- 0.048705991357564926,
- 0.0540933758020401,
- -0.009597230702638626,
- 0.00005174697071197443,
- 0.027449924498796463,
- 0.006489027291536331,
- 0.016477437689900398,
- -0.0272805318236351,
- -0.004177461378276348,
- 0.02683466486632824,
- -0.011754706501960754,
- -0.03638360649347305,
- -0.025992589071393013,
- -0.043106552213430405,
- 0.011453009210526943,
- 0.11777669936418533,
- 0.08378483355045319,
- 0.044705722481012344,
- 0.01607104018330574,
- -0.048195794224739075,
- 0.003335012122988701,
- -0.0979011133313179,
- -0.0744488313794136,
- -0.04728322476148605,
- -0.014482071623206139,
- 0.02522439695894718,
- 0.005061144009232521,
- -0.027789507061243057,
- 0.024602791294455528,
- 0.10169386118650436,
- 0.025121457874774933,
- 0.008406968787312508,
- 0.006987203378230333,
- 0.08798843622207642,
- -0.08113234490156174,
- -0.07327690720558167,
- -0.0322122722864151,
- -0.02260665036737919,
- 0.007832257077097893,
- -0.009887730702757835,
- 0.06981459259986877,
- -0.0570714958012104,
- -0.0001858543837442994,
- 0.09518637508153915,
- -0.04044322296977043,
- -0.047255877405405045,
- 0.017733564600348473,
- 0.023003585636615753,
- 0.018641585484147072,
- -0.08552928268909454,
- 0.05173734575510025
- ]
- },
- {
- "keyword": "sensor",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03939936310052872,
- 0.04183599352836609,
- 0.02615276724100113,
- -0.011033434420824051,
- 0.10223501175642014,
- -0.04538840427994728,
- 0.2208583950996399,
- 0.028139479458332062,
- 0.046072326600551605,
- -0.014149748720228672,
- 0.06631021946668625,
- -0.05166491121053696,
- 0.004002532456070185,
- -0.014667972922325134,
- -0.07805351912975311,
- 0.007511435076594353,
- 0.047772571444511414,
- 0.028532883152365685,
- -0.03282628953456879,
- -0.08934824913740158,
- -0.07268154621124268,
- -0.005313408095389605,
- 0.02014480158686638,
- 0.01361709926277399,
- -0.09989796578884125,
- 0.06875241547822952,
- -0.02492797002196312,
- -0.014139918610453606,
- -0.0245580542832613,
- -0.055794961750507355,
- -0.0068384637124836445,
- -0.007979447953402996,
- 0.014428198337554932,
- -0.02654496394097805,
- -0.00013365919585339725,
- -0.058027978986501694,
- 0.002514335559681058,
- -0.03327728435397148,
- -0.007616803981363773,
- -0.0028424058109521866,
- -0.016447238624095917,
- -0.08974655717611313,
- 0.04857960715889931,
- 0.023530784994363785,
- -0.0034262146800756454,
- 0.04146120697259903,
- 0.021768560633063316,
- 0.009261452592909336,
- 0.029175054281949997,
- 0.034238122403621674,
- -0.041427355259656906,
- -0.046677034348249435,
- 0.016150280833244324,
- -0.015931088477373123,
- 0.008524470962584019,
- 0.02955269254744053,
- -0.05666188895702362,
- -0.0036087112966924906,
- -0.022805230692029,
- -0.06721806526184082,
- 0.14191503822803497,
- -0.036134202033281326,
- -0.07101893424987793,
- 0.03256680816411972,
- 0.0590214878320694,
- 0.008546233177185059,
- -0.06824363768100739,
- -0.06960155814886093,
- 0.03717528283596039,
- -0.09859757125377655,
- 0.035896506160497665,
- 0.029130930081009865,
- 0.017578504979610443,
- -0.042219169437885284,
- -0.01137614157050848,
- -0.06551149487495422,
- 0.004598395898938179,
- -0.06727033853530884,
- 0.0959332287311554,
- 0.006772477645426989,
- -0.017627015709877014,
- -0.06916026026010513,
- -0.05773802101612091,
- 0.05370105057954788,
- 0.07326377183198929,
- -0.017774397507309914,
- 0.04696521535515785,
- 0.05163964629173279,
- -0.040377043187618256,
- -0.056231603026390076,
- -0.05633855611085892,
- -0.10976282507181168,
- -0.07771649211645126,
- 0.0384085550904274,
- -0.07721385359764099,
- 0.03576859459280968,
- 0.003868238301947713,
- -0.01384818460792303,
- -0.00850877445191145,
- 0.18638794124126434,
- -0.005800768733024597,
- -0.007512853946536779,
- -0.14122439920902252,
- 0.06520790606737137,
- 0.017456166446208954,
- 0.0066831051371991634,
- -0.06973129510879517,
- 0.043543741106987,
- 0.07131043076515198,
- 0.04133487492799759,
- -0.03150981664657593,
- -0.05974041670560837,
- 0.0038419736083596945,
- 0.025747224688529968,
- -0.009517894126474857,
- -0.04908064380288124,
- -0.07498878985643387,
- 0.07186327874660492,
- 0.010195758193731308,
- 0.019219601526856422,
- 0.054403793066740036,
- -0.021057330071926117,
- -0.06327888369560242,
- -0.006352556403726339,
- 0.07450142502784729,
- 0.007706384174525738,
- 0.07108890265226364,
- -4.4412608378004286e-33,
- -0.048154912889003754,
- 0.012379318475723267,
- 0.01714044064283371,
- -0.022453032433986664,
- -0.045141614973545074,
- 0.025895096361637115,
- -0.05171654373407364,
- -0.006021680310368538,
- -0.02411411516368389,
- 0.04405917972326279,
- -0.0017359345220029354,
- 0.008816319517791271,
- -0.043027106672525406,
- 0.04083339497447014,
- 0.08036784082651138,
- -0.06399416923522949,
- 0.03636730834841728,
- -0.023039037361741066,
- 0.03396640345454216,
- -0.07047893851995468,
- 0.001669241115450859,
- -0.03434036672115326,
- -0.030252976343035698,
- 0.13172487914562225,
- 0.0674784928560257,
- 0.062308941036462784,
- -0.011550698429346085,
- 0.0427200086414814,
- -0.01409314014017582,
- 0.006987921427935362,
- 0.016391552984714508,
- 0.019672540947794914,
- -0.04679834097623825,
- -0.021977189928293228,
- 0.0026504984125494957,
- -0.027803298085927963,
- -0.0029688647482544184,
- -0.020514236763119698,
- 0.025904836133122444,
- -0.050458334386348724,
- 0.040542617440223694,
- 0.03477144241333008,
- 0.04964466765522957,
- -0.028370019048452377,
- 0.03624863550066948,
- -0.007181141991168261,
- -0.05293566733598709,
- 0.01965411752462387,
- 0.013356588780879974,
- 0.07241297513246536,
- 0.004699137061834335,
- -0.06573892384767532,
- 0.012170352973043919,
- 0.0030440830159932375,
- 0.02082330733537674,
- 0.02915794402360916,
- -0.018597908318042755,
- -0.03470638766884804,
- -0.00023393389710690826,
- 0.029682602733373642,
- -0.04442710056900978,
- 0.03956301510334015,
- 0.02341441810131073,
- -0.07513097673654556,
- 0.07990327477455139,
- 0.08120357245206833,
- 0.04975931718945503,
- 0.0056166741997003555,
- 0.039139870554208755,
- 0.018804706633090973,
- -0.0928688645362854,
- -0.04948621243238449,
- 0.05071168392896652,
- 0.060149043798446655,
- -0.0289418026804924,
- 0.04403737932443619,
- -0.03425626456737518,
- 0.01848321221768856,
- -0.051923733204603195,
- -0.03062518686056137,
- -0.09409665316343307,
- -0.0006702598766423762,
- 0.06441338360309601,
- -0.005278038326650858,
- 0.006778320763260126,
- 0.008958274498581886,
- -0.07792261242866516,
- -0.10457196086645126,
- -0.047161705791950226,
- 0.07417481392621994,
- 0.03990352526307106,
- 0.038627129048109055,
- -0.018942322582006454,
- 0.019520875066518784,
- -0.09245622903108597,
- 4.1870715720366325e-33,
- -0.06677759438753128,
- 0.012878870591521263,
- -0.009149209596216679,
- 0.057807277888059616,
- -0.019058959558606148,
- -0.03280572220683098,
- 0.04609133303165436,
- 0.025702642276883125,
- 0.029501108452677727,
- 0.09963587671518326,
- -0.013588044792413712,
- -0.02934023179113865,
- 0.03112802468240261,
- 0.03299205005168915,
- -0.027185354381799698,
- 0.08896926045417786,
- 0.02053655870258808,
- -0.032137274742126465,
- -0.022535204887390137,
- 0.03400086238980293,
- -0.06231486052274704,
- 0.03367375209927559,
- -0.08469162881374359,
- -0.04774102941155434,
- 0.010892019607126713,
- 0.09994444996118546,
- -0.004883267916738987,
- 0.024034004658460617,
- -0.049592528492212296,
- -0.06067362427711487,
- -0.05623975768685341,
- -0.08935622870922089,
- 0.04715193435549736,
- 0.029668239876627922,
- 0.001050080405548215,
- -0.017663663253188133,
- 0.08636636286973953,
- -0.03220429643988609,
- -0.059618037194013596,
- 0.05676426365971565,
- 0.036495160311460495,
- 0.03577693924307823,
- 0.017200326547026634,
- 0.09053094685077667,
- -0.05119729042053223,
- 0.030818894505500793,
- 0.006298268213868141,
- 0.07446952164173126,
- -0.030126936733722687,
- -0.0026530392933636904,
- -0.013100627809762955,
- 0.019439322873950005,
- -0.04787420481443405,
- 0.022739039734005928,
- 0.04698297381401062,
- 0.04586077481508255,
- 0.0352041982114315,
- 0.011849184520542622,
- 0.015336893498897552,
- -0.019537227228283882,
- 0.11654635518789291,
- -0.06106158718466759,
- 0.007321069482713938,
- 0.041576460003852844,
- 0.007458921056240797,
- 0.10073840618133545,
- 0.025753630325198174,
- 0.004278142005205154,
- 0.05093430355191231,
- 0.015753239393234253,
- 0.1611197292804718,
- 0.07046519964933395,
- 0.08823618292808533,
- -0.06627719104290009,
- -0.01940722018480301,
- -0.07485388219356537,
- -0.09913109987974167,
- -0.017089862376451492,
- -0.06531520187854767,
- -0.011636050418019295,
- -0.03050648234784603,
- -0.11141405999660492,
- 0.020722683519124985,
- 0.07330372929573059,
- 0.08705754578113556,
- -0.06374494731426239,
- -0.024189211428165436,
- 0.023922258988022804,
- 0.013996248133480549,
- 0.025058016180992126,
- -0.021226851269602776,
- 0.07078015059232712,
- 0.00996964331716299,
- -0.032088521867990494,
- -0.025746051222085953,
- -1.096621105034501e-8,
- -0.03343968465924263,
- -0.029204579070210457,
- 0.017945170402526855,
- -0.08903125673532486,
- 0.029580462723970413,
- 0.007399745751172304,
- 0.0243478212505579,
- 0.001798479468561709,
- -0.019816691055893898,
- -0.01966727524995804,
- 0.06368506699800491,
- -0.041355181485414505,
- -0.006897934712469578,
- 0.05063384398818016,
- 0.08632755279541016,
- -0.00856783427298069,
- -0.010413909330964088,
- 0.005708510056138039,
- -0.056358952075242996,
- -0.004155716393142939,
- 0.031613487750291824,
- 0.06037580594420433,
- -0.028830060735344887,
- 0.004395368508994579,
- 0.1105378121137619,
- -0.010294565930962563,
- -0.02873944863677025,
- 0.0730060413479805,
- 0.07016801834106445,
- 0.006578156258910894,
- -0.03826297074556351,
- -0.015266086906194687,
- 0.07585079222917557,
- -0.026587290689349174,
- 0.06325235962867737,
- 0.035730164498090744,
- -0.0810893252491951,
- 0.023271938785910606,
- 0.02437119372189045,
- -0.06746361404657364,
- -0.008661357685923576,
- 0.01040717028081417,
- -0.08932266384363174,
- 0.034691084176301956,
- -0.016723264008760452,
- -0.03151676803827286,
- 0.05929030850529671,
- -0.07081987708806992,
- 0.009439526125788689,
- 0.04081489518284798,
- 0.02075493521988392,
- -0.004482216201722622,
- 0.04129324480891228,
- 0.03230665624141693,
- -0.03017306886613369,
- 0.014407469891011715,
- 0.022226570174098015,
- -0.08208565413951874,
- -0.07768262177705765,
- 0.04365179315209389,
- 0.04222051054239273,
- 0.05737188830971718,
- -0.08578555285930634,
- -0.03441629558801651
- ]
- },
- {
- "keyword": "scanner",
- "type": "product",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.006132913753390312,
- 0.0674685463309288,
- -0.11488481611013412,
- -0.07718978077173233,
- -0.01620299182832241,
- -0.06324324011802673,
- 0.09942290931940079,
- 0.008450601249933243,
- -0.10585494339466095,
- -0.05966474488377571,
- 0.07596708834171295,
- 0.09578701108694077,
- 0.1291135549545288,
- 0.05418052524328232,
- -0.13420552015304565,
- -0.05859985947608948,
- -0.04093899577856064,
- -0.0030069993808865547,
- 0.04764958843588829,
- -0.035068243741989136,
- -0.0994316041469574,
- -0.02324684150516987,
- -0.03837963938713074,
- -0.07328259944915771,
- -0.06326614320278168,
- 0.06642094999551773,
- -0.02150476537644863,
- -0.062239084392786026,
- -0.04008953273296356,
- -0.09958970546722412,
- -0.005798302590847015,
- -0.0018759872764348984,
- 0.048602573573589325,
- 0.04824504628777504,
- -0.01380937173962593,
- -0.05694545805454254,
- 0.016769323498010635,
- 0.0016652306076139212,
- -0.022960878908634186,
- -0.04626844823360443,
- -0.046518474817276,
- -0.06084699183702469,
- -0.0031811713706701994,
- 0.0068376134149730206,
- 0.042358119040727615,
- -0.04715607687830925,
- -0.05707202106714249,
- -0.00397152453660965,
- 0.07196961343288422,
- -0.013051928952336311,
- -0.06937820464372635,
- -0.06612751632928848,
- -0.03845902532339096,
- 0.036084532737731934,
- -0.004808999132364988,
- 0.011258600279688835,
- 0.01425599679350853,
- 0.020761698484420776,
- -0.013783134520053864,
- 0.01596425287425518,
- -0.03285491093993187,
- 0.0598660409450531,
- -0.05301219969987869,
- 0.04204859212040901,
- 0.06745708733797073,
- 0.03700454160571098,
- 0.018642371520400047,
- -0.023175673559308052,
- 0.029286183416843414,
- -0.029711566865444183,
- -0.03863043710589409,
- 0.04257718101143837,
- 0.07879739254713058,
- 0.019227564334869385,
- 0.010690061375498772,
- -0.042970724403858185,
- 0.043419986963272095,
- 0.026793137192726135,
- 0.09343665093183517,
- -0.03332200646400452,
- -0.04128336161375046,
- -0.01699666492640972,
- 0.0007822132320143282,
- 0.035878438502550125,
- 0.02996613085269928,
- 0.014186082407832146,
- -0.027585824951529503,
- 0.014049842022359371,
- 0.03120184689760208,
- -0.03030240535736084,
- 0.033065784722566605,
- -0.010803821496665478,
- -0.08414943516254425,
- -0.012973965145647526,
- -0.027070973068475723,
- -0.03783325478434563,
- 0.07844458520412445,
- -0.05311613529920578,
- 0.0011009116424247622,
- 0.22469691932201385,
- 0.013172248378396034,
- -0.0012861029244959354,
- 0.029009079560637474,
- -0.0879804864525795,
- -0.09656719863414764,
- -0.05889540910720825,
- 0.022598233073949814,
- -0.01811630092561245,
- 0.06832539290189743,
- -0.06782600283622742,
- 0.006530345417559147,
- 0.01830945909023285,
- 0.03377305343747139,
- -0.03559336066246033,
- 0.03260248526930809,
- -0.014010331593453884,
- 0.050090398639440536,
- 0.08348187804222107,
- 0.04286753386259079,
- 0.0035786244552582502,
- -0.07339493930339813,
- -0.044740088284015656,
- -0.061650317162275314,
- -0.019971586763858795,
- -0.007802091538906097,
- -0.04477262124419212,
- 0.025431007146835327,
- -4.4479971551146095e-33,
- -0.05176205933094025,
- 0.07297508418560028,
- 0.0004225338634569198,
- 0.03540540486574173,
- -0.007826278917491436,
- 0.02917538397014141,
- -0.036174677312374115,
- 0.06156309321522713,
- -0.04711633920669556,
- 0.024375226348638535,
- -0.01219259575009346,
- 0.020176835358142853,
- -0.02862710878252983,
- 0.10504723340272903,
- 0.12443921715021133,
- 0.021062184125185013,
- 0.04091225937008858,
- 0.10304447263479233,
- -0.07315880060195923,
- 0.00184789823833853,
- -0.01989794336259365,
- -0.1261705905199051,
- 0.03741313889622688,
- 0.024695055559277534,
- 0.12844905257225037,
- 0.07964163273572922,
- -0.006690895184874535,
- -0.022794336080551147,
- 0.06978528946638107,
- 0.024497395381331444,
- -0.020619921386241913,
- 0.0705951675772667,
- -0.044063422828912735,
- -0.006967469118535519,
- -0.013318094424903393,
- 0.02123100869357586,
- -0.01793939433991909,
- 0.010243851691484451,
- 0.033456768840551376,
- -0.0704963430762291,
- 0.0309892725199461,
- -0.00735101755708456,
- 0.0493386946618557,
- -0.02181377448141575,
- 0.04936346039175987,
- -0.0037167377304285765,
- -0.02983524277806282,
- 0.06879352033138275,
- -0.05222553759813309,
- 0.09676369279623032,
- -0.03585066646337509,
- -0.005606887396425009,
- -0.07957793027162552,
- -0.01614287495613098,
- -0.0059771351516246796,
- 0.014814704656600952,
- 0.048305168747901917,
- 0.024874741211533546,
- 0.006160917691886425,
- 0.03243980556726456,
- 0.022828640416264534,
- 0.06242814287543297,
- 0.022502252832055092,
- 0.017743317410349846,
- 0.007255515083670616,
- -0.0470748245716095,
- -0.010673709213733673,
- -0.0268991868942976,
- 0.020454974845051765,
- 0.07546546310186386,
- -0.13684435188770294,
- -0.04554364085197449,
- 0.04547800496220589,
- -0.027708997949957848,
- 0.008389610797166824,
- 0.028406234458088875,
- -0.015367159619927406,
- 0.03681381419301033,
- 0.007536588702350855,
- -0.04089665412902832,
- -0.12179998308420181,
- -0.03455541282892227,
- 0.04185149446129799,
- -0.08061670511960983,
- 0.02162388153374195,
- 0.042444027960300446,
- -0.002188351470977068,
- -0.037545789033174515,
- -0.03687071427702904,
- 0.049419157207012177,
- -0.03868323192000389,
- 0.0919010117650032,
- -0.07727857679128647,
- 0.03944603353738785,
- 0.019607704132795334,
- 3.5242400623087e-33,
- -0.03484881669282913,
- -0.050266772508621216,
- -0.034867703914642334,
- 0.04896208271384239,
- -0.08708981424570084,
- -0.11651014536619186,
- 0.057780276983976364,
- 0.034897468984127045,
- 0.018553832545876503,
- -0.003066729987040162,
- 0.015000099316239357,
- -0.02544328197836876,
- 0.057231590151786804,
- -0.02801356092095375,
- 0.023950058966875076,
- -0.01081046275794506,
- -0.008373538963496685,
- -0.007117864675819874,
- 0.0034224200062453747,
- 0.041353482753038406,
- -0.009679239243268967,
- 0.041156064718961716,
- -0.03649677708745003,
- 0.016978560015559196,
- -0.001405962510034442,
- 0.05439282953739166,
- 0.0093251783400774,
- 0.01421542651951313,
- -0.00878585409373045,
- 0.09479621052742004,
- -0.014382408931851387,
- -0.07171572744846344,
- 0.02726191096007824,
- 0.06333494931459427,
- -0.00360545190051198,
- 0.013902099803090096,
- 0.1288316696882248,
- -0.017714418470859528,
- -0.0014618451241403818,
- 0.001553666195832193,
- 0.02043108455836773,
- 0.06777982413768768,
- -0.013425529934465885,
- 0.05795207619667053,
- -0.013907186686992645,
- -0.02269604802131653,
- -0.00009025273175211623,
- 0.117125503718853,
- 0.00994323194026947,
- 0.04572370648384094,
- -0.015597913414239883,
- -0.04074089601635933,
- 0.0033604507334530354,
- -0.036181095987558365,
- -0.019982434809207916,
- 0.042824506759643555,
- -0.013842754065990448,
- 0.01928873546421528,
- -0.04161354899406433,
- 0.04891166463494301,
- -0.012762174010276794,
- -0.030483320355415344,
- -0.043967023491859436,
- -0.03781944513320923,
- -0.06476648151874542,
- -0.026157069951295853,
- 0.08616624027490616,
- 0.006581403780728579,
- -0.030610719695687294,
- 0.04284168779850006,
- 0.0771070048213005,
- 0.020911632105708122,
- 0.05177314952015877,
- 0.022193165495991707,
- -0.01168745569884777,
- 0.02912207879126072,
- -0.015662306919693947,
- 0.05970972403883934,
- -0.04165639355778694,
- -0.05343049392104149,
- -0.0010821251198649406,
- -0.03299636021256447,
- -0.008812214247882366,
- 0.09393300861120224,
- -0.0009150691330432892,
- 0.019120503216981888,
- -0.006816605105996132,
- -0.11254488676786423,
- -0.028240349143743515,
- -0.043485041707754135,
- 0.03724389150738716,
- 0.0917210578918457,
- -0.004602785687893629,
- -0.07834674417972565,
- -0.01757204532623291,
- -1.0827166718740955e-8,
- -0.016579143702983856,
- -0.008841664530336857,
- -0.01003718189895153,
- -0.07095164805650711,
- 0.08692081272602081,
- -0.05413472279906273,
- 0.0009571781265549362,
- 0.02481432445347309,
- -0.03653418645262718,
- -0.06400905549526215,
- 0.05014367401599884,
- -0.07722010463476181,
- -0.03726617619395256,
- 0.01658635586500168,
- 0.11692453175783157,
- -0.004296192433685064,
- 0.050616126507520676,
- -0.02578549273312092,
- -0.09229441732168198,
- 0.012804360128939152,
- 0.02348366193473339,
- -0.0014593906234949827,
- 0.03902464359998703,
- 0.07315507531166077,
- 0.009317553602159023,
- -0.04841115325689316,
- 0.057287853211164474,
- 0.0440414622426033,
- 0.023119356483221054,
- -0.05414187163114548,
- -0.004701879806816578,
- 0.03912527114152908,
- -0.0031033388804644346,
- 0.005090110469609499,
- 0.013953663408756256,
- 0.01548369787633419,
- 0.033028315752744675,
- 0.03780762851238251,
- 0.001835913397371769,
- 0.03999868780374527,
- 0.044898878782987595,
- -0.04483174905180931,
- -0.04404803737998009,
- -0.06578763574361801,
- -0.09618955105543137,
- -0.05596798658370972,
- 0.08807464689016342,
- -0.07018017768859863,
- -0.01788323000073433,
- 0.02877790480852127,
- -0.013341303914785385,
- -0.02844678796827793,
- 0.06643667817115784,
- -0.03399071842432022,
- -0.006874920800328255,
- -0.07884078472852707,
- 0.05524030327796936,
- -0.08496274799108505,
- 0.019068866968154907,
- 0.14255039393901825,
- 0.031503550708293915,
- 0.014538520015776157,
- 0.05635639652609825,
- -0.0104902945458889
- ]
- },
- {
- "keyword": "service",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.12214873731136322,
- 0.021363209933042526,
- 0.0014598031993955374,
- -0.05157831683754921,
- -0.039301153272390366,
- -0.009915348142385483,
- 0.1409710943698883,
- -0.03545420244336128,
- 0.02053898386657238,
- 0.017143672332167625,
- -0.016765812411904335,
- 0.013351412490010262,
- 0.05063788965344429,
- 0.029636014252901077,
- 0.015743326395750046,
- -0.07523449510335922,
- 0.11119473725557327,
- -0.060581326484680176,
- -0.07714302837848663,
- 0.0012036212719976902,
- -0.07865002751350403,
- 0.038999803364276886,
- -0.09225770831108093,
- 0.06302106380462646,
- -0.06546919792890549,
- 0.03531810641288757,
- -0.056006062775850296,
- 0.009786900132894516,
- -0.027711205184459686,
- -0.11266498267650604,
- 0.024434342980384827,
- -0.00955300685018301,
- 0.042116429656744,
- -0.018610486760735512,
- 0.0275938268750906,
- 0.03778357431292534,
- 0.05193275213241577,
- -0.019609322771430016,
- 0.0007264611194841564,
- 0.01343567669391632,
- -0.03814403712749481,
- -0.09129974246025085,
- -0.07423371076583862,
- 0.006219075992703438,
- 0.012300018221139908,
- 0.008605049923062325,
- 0.01979304663836956,
- 0.002887125825509429,
- 0.03121444769203663,
- 0.004263800568878651,
- -0.06400426477193832,
- -0.061036814004182816,
- 0.0318271778523922,
- 0.030047254636883736,
- 0.01100852619856596,
- -0.023971417918801308,
- -0.005024832673370838,
- 0.050523120909929276,
- -0.0634564682841301,
- 0.01477445662021637,
- 0.02834455296397209,
- -0.020627036690711975,
- -0.04974932596087456,
- 0.05687619000673294,
- 0.0756889134645462,
- 0.03027999959886074,
- -0.023554053157567978,
- -0.013717906549572945,
- -0.054962534457445145,
- -0.10588892549276352,
- -0.035151127725839615,
- 0.09755286574363708,
- 0.046816520392894745,
- 0.08266277611255646,
- 0.03051299788057804,
- 0.033663973212242126,
- 0.04620887711644173,
- -0.056106530129909515,
- 0.08920033276081085,
- -0.09200286120176315,
- 0.013150328770279884,
- -0.04786166921257973,
- -0.013525692746043205,
- 0.09861421585083008,
- -0.012845922261476517,
- -0.05252843350172043,
- -0.019027890637516975,
- -0.04025061056017876,
- 0.020046131685376167,
- -0.003307066159322858,
- -0.029357047751545906,
- 0.009636650793254375,
- 0.025362156331539154,
- -0.03469071164727211,
- -0.055575981736183167,
- 0.02004963345825672,
- 0.005938033573329449,
- -0.08558721840381622,
- -0.0482812337577343,
- 0.23318789899349213,
- 0.04965265840291977,
- 0.060291338711977005,
- 0.01925443857908249,
- -0.016121195629239082,
- -0.007785165682435036,
- -0.032082732766866684,
- -0.11907897144556046,
- 0.09605655074119568,
- 0.004275342915207148,
- -0.01761624962091446,
- -0.021958786994218826,
- -0.01464703306555748,
- -0.04514738544821739,
- 0.04895645007491112,
- -0.005402245093137026,
- 0.014316616579890251,
- -0.01596214435994625,
- -0.021469511091709137,
- 0.019965996965765953,
- -0.0026753267738968134,
- 0.01599014177918434,
- 0.04100418835878372,
- -0.046031542122364044,
- -0.029145479202270508,
- -0.07170113921165466,
- -0.0429755337536335,
- 0.13804055750370026,
- -6.941161163807171e-33,
- -0.049504995346069336,
- -0.01650081016123295,
- 0.06203937157988548,
- 0.014425852335989475,
- 0.020097970962524414,
- -0.008670293726027012,
- -0.033232878893613815,
- 0.014143378473818302,
- -0.023904139176011086,
- 0.08966673165559769,
- -0.054926030337810516,
- 0.09386976808309555,
- 0.058915019035339355,
- -0.011785407550632954,
- 0.09200316667556763,
- 0.012953403405845165,
- 0.01483063492923975,
- 0.010363993234932423,
- -0.00018135546997655183,
- -0.0360478013753891,
- -0.048345476388931274,
- 0.02911405824124813,
- 0.00012518886069301516,
- 0.06629034876823425,
- 0.05788854509592056,
- -0.05167754739522934,
- -0.004048632923513651,
- -0.05689745768904686,
- 0.09350970387458801,
- 0.006564064882695675,
- 0.06285408139228821,
- 0.024850720539689064,
- 0.0028771143406629562,
- 0.013178137131035328,
- -0.02384931780397892,
- 0.011965806595981121,
- 0.05037185549736023,
- -0.08904769271612167,
- -0.0197640098631382,
- -0.09989412873983383,
- -0.03199626877903938,
- 0.02127094939351082,
- -0.09546267986297607,
- 0.05789873003959656,
- 0.006161422468721867,
- 0.007940568961203098,
- 0.026784036308526993,
- -0.008989689871668816,
- 0.002370264381170273,
- 0.06124484911561012,
- 0.03228955715894699,
- 0.03488513454794884,
- -0.037655945867300034,
- 0.023169750347733498,
- 0.017567461356520653,
- 0.011073041707277298,
- 0.04391050338745117,
- -0.009581287391483784,
- -0.007114627864211798,
- -0.06689567118883133,
- 0.0874013677239418,
- -0.07820460200309753,
- -0.03825749456882477,
- 0.008534234017133713,
- 0.03132554888725281,
- -0.07095340639352798,
- 0.016136717051267624,
- -0.04765617102384567,
- 0.041567109525203705,
- -0.02427230030298233,
- -0.04847512021660805,
- -0.016530612483620644,
- 0.09701000899076462,
- 0.06254858523607254,
- -0.014798293821513653,
- 0.031479477882385254,
- 0.02410939522087574,
- -0.031069403514266014,
- -0.04165153205394745,
- 0.0031201783567667007,
- -0.020848842337727547,
- -0.022788088768720627,
- -0.0025642449036240578,
- 0.05091376602649689,
- 0.08566384762525558,
- 0.0324421152472496,
- 0.008990452624857426,
- -0.06172191724181175,
- -0.0019069755217060447,
- 0.013200372457504272,
- -0.11192040890455246,
- 0.05057120323181152,
- 0.003641176503151655,
- 0.13079307973384857,
- -0.007532613351941109,
- 5.2681355229214886e-33,
- -0.04509834572672844,
- -0.017216559499502182,
- -0.035916153341531754,
- 0.09114893525838852,
- 0.014259773306548595,
- 0.004438192583620548,
- -0.010690545663237572,
- 0.021813957020640373,
- -0.025914285331964493,
- 0.14210478961467743,
- -0.06306315958499908,
- -0.02924957126379013,
- 0.032103996723890305,
- 0.03638904169201851,
- -0.03740701824426651,
- 0.008402930572628975,
- -0.01829724758863449,
- 0.02020784467458725,
- -0.012609459459781647,
- 0.051229316741228104,
- -0.0739142969250679,
- 0.07871741056442261,
- 0.051688652485609055,
- 0.01506164763122797,
- -0.07603628933429718,
- 0.07096303999423981,
- 0.03593219071626663,
- 0.0016097696498036385,
- -0.0392456129193306,
- -0.046915218234062195,
- 0.023084184154868126,
- -0.06633695960044861,
- -0.014503233134746552,
- -0.02589043416082859,
- -0.01303841732442379,
- 0.0687456876039505,
- 0.11335059255361557,
- 0.05968683212995529,
- -0.07823868095874786,
- -0.005360864568501711,
- 0.05302392691373825,
- -0.07665269821882248,
- -0.06859444081783295,
- 0.03969620540738106,
- -0.03782706707715988,
- -0.04245438426733017,
- -0.03207698464393616,
- -0.014168837107717991,
- -0.011351432651281357,
- 0.01886746659874916,
- -0.07098445296287537,
- -0.06884744763374329,
- 0.0023712352849543095,
- -0.004653926007449627,
- -0.03629515692591667,
- 0.02786167524755001,
- -0.01696678437292576,
- -0.020841654390096664,
- -0.10290046036243439,
- 0.01613396592438221,
- 0.08160477876663208,
- 0.013830703683197498,
- -0.05780443176627159,
- 0.05019168183207512,
- 0.03062950260937214,
- -0.053103767335414886,
- 0.05543002858757973,
- 0.0146205835044384,
- 0.008759097196161747,
- 0.005234296899288893,
- 0.0035461143124848604,
- 0.020273592323064804,
- -0.045963674783706665,
- 0.09099242091178894,
- -0.048139385879039764,
- -0.06782003492116928,
- -0.12378117442131042,
- -0.041102271527051926,
- -0.025364555418491364,
- -0.057381901890039444,
- -0.019505150616168976,
- -0.07364927232265472,
- -0.016634749248623848,
- 0.040347613394260406,
- -0.021801436319947243,
- -0.07947083562612534,
- 0.16670987010002136,
- 0.017072400078177452,
- 0.003129473887383938,
- -0.022163497284054756,
- -0.026660578325390816,
- -0.04468708112835884,
- -0.07121848315000534,
- 0.03045446053147316,
- 0.00016005264478735626,
- -1.302622099075279e-8,
- -0.028793741017580032,
- 0.04973187297582626,
- 0.0033369367010891438,
- 0.039336346089839935,
- -0.017972156405448914,
- -0.022441407665610313,
- -0.015027849934995174,
- 0.06064874306321144,
- 0.041463226079940796,
- 0.05764088034629822,
- -0.004842303227633238,
- -0.007912329398095608,
- -0.005693817511200905,
- 0.0712900310754776,
- 0.09309574216604233,
- -0.015165126882493496,
- -0.020903395488858223,
- -0.03926580399274826,
- -0.046930622309446335,
- 0.0171254500746727,
- 0.02936684899032116,
- 0.04669636860489845,
- 0.05992932617664337,
- -0.029769256711006165,
- 0.016235511749982834,
- 0.026836521923542023,
- -0.00583634851500392,
- 0.09278679639101028,
- 0.051630210131406784,
- 0.011842753738164902,
- -0.022049713879823685,
- -0.007214052136987448,
- 0.006528261583298445,
- -0.04664821922779083,
- -0.03943662717938423,
- -0.012999136932194233,
- -0.04935038089752197,
- -0.06248267740011215,
- 0.009318080730736256,
- 0.014060000889003277,
- -0.009529564529657364,
- 0.07180488854646683,
- 0.012675781734287739,
- -0.022450005635619164,
- 0.042715445160865784,
- 0.04717488959431648,
- 0.015506449155509472,
- 0.01980126090347767,
- 0.021965503692626953,
- -0.030681541189551353,
- -0.03512800112366676,
- 0.009243332780897617,
- 0.08456611633300781,
- 0.07661810517311096,
- 0.0660347193479538,
- -0.04355547949671745,
- 0.04138446971774101,
- -0.015472969971597195,
- -0.012355324812233448,
- 0.1649826467037201,
- 0.037042904645204544,
- -0.006584154441952705,
- 0.009662077762186527,
- -0.04746345430612564
- ]
- },
- {
- "keyword": "support",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.09793312847614288,
- 0.05698695406317711,
- 0.02869941107928753,
- -0.04733291268348694,
- 0.05617893487215042,
- 0.05006904900074005,
- 0.12671580910682678,
- -0.0012279616203159094,
- -0.028144018724560738,
- -0.009387914091348648,
- -0.0031730527989566326,
- 0.004307438153773546,
- 0.04135573282837868,
- 0.01500174030661583,
- 0.0011051477631554008,
- 0.04453815519809723,
- -0.03718644008040428,
- -0.02541971579194069,
- -0.17653989791870117,
- 0.0206801388412714,
- -0.1492968052625656,
- -0.0286635160446167,
- -0.009248742833733559,
- 0.002400963334366679,
- -0.04067588597536087,
- 0.051996249705553055,
- 0.0013760271249338984,
- -0.005819019395858049,
- 0.07028838247060776,
- -0.07757024466991425,
- 0.03894506394863129,
- -0.07426197826862335,
- 0.051774702966213226,
- -0.005513796582818031,
- -0.03756280988454819,
- 0.012832398526370525,
- 0.06912660598754883,
- -0.021992677822709084,
- -0.0484241284430027,
- -0.042012691497802734,
- -0.04024825617671013,
- -0.01130744256079197,
- 0.021296510472893715,
- 0.00990663655102253,
- 0.02413860522210598,
- 0.04560627415776253,
- 0.02065977454185486,
- 0.013573726639151573,
- 0.017570873722434044,
- 0.019790910184383392,
- -0.0205819234251976,
- 0.002415811875835061,
- 0.016851430758833885,
- 0.007381770294159651,
- 0.04198596626520157,
- 0.0033286577090620995,
- 0.010084490291774273,
- -0.027740446850657463,
- -0.005673808977007866,
- -0.010632498189806938,
- 0.13178354501724243,
- 0.02721812017261982,
- -0.07486744970083237,
- 0.037124909460544586,
- -0.000786823220551014,
- -0.010654431767761707,
- 0.009068568237125874,
- -0.024325057864189148,
- -0.037244513630867004,
- -0.001678289845585823,
- -0.012492123059928417,
- 0.05723177269101143,
- 0.02145368605852127,
- 0.0565243624150753,
- -0.016268737614154816,
- 0.034575942903757095,
- -0.011442279443144798,
- -0.09817665070295334,
- 0.11185775697231293,
- -0.04522284120321274,
- 0.07572612166404724,
- 0.08000865578651428,
- -0.015120196156203747,
- 0.04587963968515396,
- -0.003209558082744479,
- -0.0054205539636313915,
- -0.0011758416658267379,
- 0.0044095744378864765,
- -0.0061557115986943245,
- 0.016480835154652596,
- 0.02058393508195877,
- 0.03300556540489197,
- 0.11237014085054398,
- 0.029047666117548943,
- -0.08186519145965576,
- -0.010177777148783207,
- 0.030026881024241447,
- -0.024998633190989494,
- -0.08479013293981552,
- 0.2754935324192047,
- 0.02031809091567993,
- 0.03245573863387108,
- 0.018931936472654343,
- 0.03951050713658333,
- -0.006834928411990404,
- -0.014405324123799801,
- -0.07451891899108887,
- 0.0860472023487091,
- 0.01074579544365406,
- 0.016605759039521217,
- -0.009985026903450489,
- -0.01896275393664837,
- -0.11372727900743484,
- 0.018929705023765564,
- -0.0451028048992157,
- -0.009556051343679428,
- 0.015782220289111137,
- 0.02603522501885891,
- 0.04190859943628311,
- -0.040112849324941635,
- 0.02480102702975273,
- 0.039810072630643845,
- 0.0029786305967718363,
- -0.01793966256082058,
- 0.03894289582967758,
- -0.07584487646818161,
- -0.007877858355641365,
- -6.244190726737467e-33,
- 0.010581623762845993,
- -0.045421477407217026,
- 0.0046980781480669975,
- 0.05531521514058113,
- -0.004876005928963423,
- 0.01476671639829874,
- -0.038871295750141144,
- -0.008629728108644485,
- -0.050674039870500565,
- -0.007381115574389696,
- -0.009612579829990864,
- 0.0338611900806427,
- 0.04995744675397873,
- -0.03616948053240776,
- 0.03294293209910393,
- -0.038004253059625626,
- -0.0059876409359276295,
- 0.09137468039989471,
- -0.045252494513988495,
- 0.005165251903235912,
- -0.022769538685679436,
- 0.008621439337730408,
- 0.011128955520689487,
- 0.04426306113600731,
- -0.04145064204931259,
- -0.06627237796783447,
- 0.027951698750257492,
- -0.0063979001715779305,
- -0.024997955188155174,
- 0.025897055864334106,
- -0.0035485764965415,
- 0.022424764931201935,
- -0.013085463084280491,
- -0.11663330346345901,
- -0.013622370548546314,
- -0.05026257783174515,
- -0.007653060369193554,
- -0.07761617749929428,
- -0.028445877134799957,
- -0.10976117104291916,
- -0.01553595531731844,
- 0.025994276627898216,
- -0.04231184720993042,
- -0.028538106009364128,
- 0.029259497299790382,
- 0.04863417521119118,
- 0.06609782576560974,
- -0.016416626051068306,
- -0.03837733343243599,
- 0.01788991130888462,
- -0.016820620745420456,
- 0.0219926405698061,
- -0.05070336535573006,
- -0.03544575348496437,
- 0.02686924859881401,
- 0.004840176552534103,
- -0.006541012320667505,
- 0.07334541529417038,
- 0.02253737300634384,
- -0.09684254974126816,
- 0.11022575199604034,
- -0.07928696274757385,
- -0.06700517982244492,
- -0.04258999973535538,
- -0.04875233396887779,
- 0.016406618058681488,
- -0.0008261827169917524,
- -0.0620456300675869,
- -0.06657382845878601,
- -0.02463909052312374,
- -0.06349813938140869,
- -0.00024512415984645486,
- 0.042982880026102066,
- 0.0903833657503128,
- -0.06597765535116196,
- 0.0016579455696046352,
- -0.000743217533454299,
- 0.009165354073047638,
- -0.0011919256066903472,
- 0.04381432384252548,
- -0.02945111319422722,
- -0.08720115572214127,
- 0.013576483353972435,
- 0.015039412304759026,
- 0.09476874023675919,
- 0.05341416969895363,
- -0.027237962931394577,
- -0.057357363402843475,
- 0.0015503674512729049,
- -0.020552391186356544,
- -0.1331697255373001,
- 0.01114882342517376,
- -0.04947717860341072,
- -0.03524044528603554,
- -0.02621522545814514,
- 4.578674290701631e-33,
- -0.030389342457056046,
- -0.021991653367877007,
- -0.02256150171160698,
- 0.010321338661015034,
- 0.01215461827814579,
- -0.07624117285013199,
- -0.017946386709809303,
- -0.054116979241371155,
- 0.036752764135599136,
- 0.07167745381593704,
- 0.002318068640306592,
- -0.041062239557504654,
- -0.020655980333685875,
- 0.04990117624402046,
- -0.03958309441804886,
- -0.02570175565779209,
- 0.023817194625735283,
- -0.03139243647456169,
- 0.02214343100786209,
- 0.02831634134054184,
- -0.05168928578495979,
- -0.038671888411045074,
- -0.007315383292734623,
- 0.0939573347568512,
- -0.02934844419360161,
- 0.03159839287400246,
- 0.0432867705821991,
- -0.005345616955310106,
- 0.09703657031059265,
- -0.0048440066166222095,
- 0.07816346734762192,
- -0.04171896353363991,
- -0.06737037748098373,
- -0.001124843372963369,
- 0.010287380777299404,
- 0.01133145485073328,
- -0.04329025745391846,
- 0.08832678943872452,
- -0.07362586259841919,
- 0.0019704895094037056,
- 0.02934155985713005,
- 0.019041065126657486,
- 0.0030346133280545473,
- 0.09918820858001709,
- -0.0017533897189423442,
- 0.01715707965195179,
- 0.10057486593723297,
- -0.004662930965423584,
- -0.018797777593135834,
- 0.01915845088660717,
- -0.036563336849212646,
- -0.03316396474838257,
- 0.0656084269285202,
- 0.0515175499022007,
- 0.04614813253283501,
- 0.05139683187007904,
- 0.03704320639371872,
- -0.021187057718634605,
- -0.11584791541099548,
- -0.014805000275373459,
- -0.0589689202606678,
- 0.02752017229795456,
- -0.008516951464116573,
- 0.01902570016682148,
- 0.05231144279241562,
- 0.02104605734348297,
- -0.01770741119980812,
- -0.02470170333981514,
- 0.008151490241289139,
- 0.0066718896850943565,
- 0.029701169580221176,
- -0.026498867198824883,
- -0.05376209318637848,
- 0.06944405287504196,
- 0.010133396834135056,
- -0.004243828356266022,
- -0.1514834314584732,
- -0.06474852561950684,
- -0.01910410448908806,
- 0.07744661718606949,
- -0.06042525917291641,
- -0.1004207581281662,
- 0.03552451357245445,
- -0.0037159656640142202,
- 0.00940336100757122,
- -0.006300260778516531,
- 0.09666729718446732,
- 0.037969689816236496,
- 0.050544727593660355,
- -0.04143286496400833,
- 0.05079904943704605,
- 0.07819631695747375,
- -0.01723741739988327,
- 0.003826452884823084,
- -0.0025680079124867916,
- -1.3739534843182355e-8,
- -0.013521072454750538,
- 0.006317869294434786,
- -0.023446500301361084,
- -0.03359945863485336,
- 0.08542478084564209,
- 0.02592492662370205,
- -0.0025810636579990387,
- -0.10935723781585693,
- 0.052299655973911285,
- 0.10415291041135788,
- 0.03874242305755615,
- -0.01351118553429842,
- 0.009727736003696918,
- 0.05676043778657913,
- 0.12082464247941971,
- -0.0251050665974617,
- -0.04843246936798096,
- 0.045576684176921844,
- -0.09064044803380966,
- -0.030387356877326965,
- -0.04727070778608322,
- -0.00639413483440876,
- 0.038317225873470306,
- 0.010854887776076794,
- 0.01560728158801794,
- 0.02008683606982231,
- -0.04853225499391556,
- 0.11066437512636185,
- -0.04285204038023949,
- 0.0029115723446011543,
- 0.042863879352808,
- -0.0187149029225111,
- -0.03257235512137413,
- -0.03419607877731323,
- 0.046071991324424744,
- -0.011222540400922298,
- -0.04535915330052376,
- -0.010704121552407742,
- 0.03600144386291504,
- 0.03201724961400032,
- -0.02153077907860279,
- 0.0017318343743681908,
- 0.0797099620103836,
- -0.00767302792519331,
- -0.0597698949277401,
- 0.035604994744062424,
- -0.04136210307478905,
- -0.0151655413210392,
- -0.09824897348880768,
- -0.0821286141872406,
- -0.01612873561680317,
- -0.03485832363367081,
- 0.019478078931570053,
- 0.11519292742013931,
- 0.024200288578867912,
- 0.024575548246502876,
- -0.0016968118725344539,
- 0.029306281358003616,
- -0.013542375527322292,
- 0.05191170051693916,
- 0.15719620883464813,
- 0.03669828549027443,
- 0.10223677009344101,
- 0.041848719120025635
- ]
- },
- {
- "keyword": "assistance",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04046076163649559,
- 0.04785482957959175,
- 0.015270411036908627,
- -0.008625109679996967,
- -0.028925690799951553,
- 0.0490390807390213,
- 0.09882476925849915,
- 0.053659841418266296,
- -0.07596048712730408,
- -0.0589449442923069,
- 0.013797610066831112,
- -0.02930241823196411,
- -0.05363893136382103,
- 0.004477393347769976,
- -0.041685156524181366,
- 0.008519564755260944,
- 0.08069483935832977,
- -0.011717352084815502,
- -0.13399802148342133,
- 0.0013743663439527154,
- -0.045320380479097366,
- -0.006482305936515331,
- 0.012731322087347507,
- 0.005884000565856695,
- -0.05301820859313011,
- 0.028143007308244705,
- -0.018897326663136482,
- 0.01840430498123169,
- 0.017672348767518997,
- -0.10387172549962997,
- -0.0032971263863146305,
- -0.04983657971024513,
- 0.0732986330986023,
- 0.007193570025265217,
- -0.02100585587322712,
- 0.00882511306554079,
- 0.01882624253630638,
- 0.0805886834859848,
- -0.03819895163178444,
- -0.03142869472503662,
- -0.03177240490913391,
- -0.0404091477394104,
- -0.049410875886678696,
- -0.03665319085121155,
- 0.017917713150382042,
- 0.00795961357653141,
- 0.004232756793498993,
- 0.008986128494143486,
- 0.0841321274638176,
- 0.015435921959578991,
- 0.014602256007492542,
- 0.004139233846217394,
- -0.009770041331648827,
- 0.005766593385487795,
- 0.06565771251916885,
- 0.0018574583809822798,
- 0.0038228880148380995,
- 0.005693287122994661,
- -0.006243431009352207,
- -0.02774178981781006,
- 0.08299576491117477,
- -0.0036859391257166862,
- -0.08280795812606812,
- 0.0019243088318035007,
- -0.029546035453677177,
- -0.005969536490738392,
- 0.007412671111524105,
- -0.008340678177773952,
- -0.12281405180692673,
- -0.0893038660287857,
- -0.007247538305819035,
- 0.018645593896508217,
- 0.019069794565439224,
- -0.000898867379873991,
- 0.06501904875040054,
- -0.015107917599380016,
- 0.008299819193780422,
- -0.030501512810587883,
- 0.10150464624166489,
- -0.049408670514822006,
- -0.033188946545124054,
- 0.10597005486488342,
- -0.043429795652627945,
- 0.07477331906557083,
- -0.024641139432787895,
- 0.019234098494052887,
- -0.050266243517398834,
- 0.044346705079078674,
- 0.05452793091535568,
- -0.011415447108447552,
- -0.009056358598172665,
- -0.006799953058362007,
- 0.03363751620054245,
- -0.012451792135834694,
- -0.029736319556832314,
- -0.013909873552620411,
- 0.04035242646932602,
- -0.08890645951032639,
- -0.13258768618106842,
- 0.26564961671829224,
- 0.061198532581329346,
- -0.0006436819094233215,
- 0.033901747316122055,
- -0.04519430175423622,
- -0.0393596813082695,
- -0.05012863501906395,
- -0.036394376307725906,
- 0.08688651025295258,
- 0.0326048918068409,
- -0.039217256009578705,
- -0.07397264987230301,
- -0.03631934896111488,
- -0.120731420814991,
- 0.04392920061945915,
- 0.0012554714921861887,
- 0.04606267809867859,
- -0.012827292084693909,
- 0.005851670168340206,
- 0.0908806249499321,
- -0.055915117263793945,
- 0.011664336547255516,
- 0.023964187130331993,
- -0.012527380138635635,
- 0.013706600293517113,
- -0.036726389080286026,
- -0.07677324116230011,
- -0.010046111419796944,
- -6.0334245896350304e-33,
- 0.059069953858852386,
- 0.036640189588069916,
- 0.04697289317846298,
- 0.04455187916755676,
- 0.05721879377961159,
- -0.0026995260268449783,
- -0.05885208398103714,
- 0.012830249965190887,
- -0.06481059640645981,
- 0.07407379895448685,
- -0.00522479647770524,
- 0.059350281953811646,
- 0.0009129240061156452,
- -0.011698083952069283,
- 0.045725591480731964,
- 0.027013298124074936,
- 0.0007880987832322717,
- 0.0982598066329956,
- -0.12250610440969467,
- -0.01176528725773096,
- -0.017156409099698067,
- -0.012113351374864578,
- 0.0342620313167572,
- 0.07771063596010208,
- 0.003165221307426691,
- -0.02481061778962612,
- 0.03285655006766319,
- -0.04486069083213806,
- 0.09963963180780411,
- 0.0015585902146995068,
- 0.03335588052868843,
- 0.02391109988093376,
- -0.02872844599187374,
- -0.044861920177936554,
- 0.001682445639744401,
- -0.007398378103971481,
- 0.02154465951025486,
- -0.06180274859070778,
- -0.032381948083639145,
- -0.07409733533859253,
- -0.02389383688569069,
- 0.033337779343128204,
- 0.005049106199294329,
- -0.037821102887392044,
- 0.017133064568042755,
- 0.037485476583242416,
- 0.11443081498146057,
- -0.041314370930194855,
- -0.0004968369612470269,
- 0.06972016394138336,
- -0.06205831468105316,
- 0.0017537923995405436,
- -0.02993100881576538,
- -0.02373681589961052,
- -0.02579314075410366,
- -0.011562914587557316,
- -0.022609902545809746,
- 0.09437824040651321,
- -0.013527740724384785,
- -0.09669721126556396,
- 0.1238570585846901,
- -0.016334787011146545,
- -0.03160138428211212,
- -0.006759786978363991,
- -0.013020358979701996,
- -0.02602771855890751,
- -0.023786211386322975,
- -0.016321228817105293,
- 0.04346739128232002,
- -0.010967218317091465,
- -0.15624883770942688,
- -0.008370128460228443,
- 0.1758679896593094,
- 0.08093930780887604,
- 0.002563048154115677,
- 0.024124830961227417,
- -0.041626010090112686,
- -0.08423572033643723,
- 0.04348795488476753,
- -0.01707780361175537,
- 0.013620286248624325,
- -0.057955119758844376,
- 0.04369866102933884,
- 0.0445021316409111,
- 0.04898262768983841,
- 0.01566939614713192,
- -0.0077984267845749855,
- -0.005325871054083109,
- 0.026264186948537827,
- -0.021528655663132668,
- -0.06845302879810333,
- 0.05999850109219551,
- -0.07027117908000946,
- 0.013584733940660954,
- -0.026784678921103477,
- 4.353795609233604e-33,
- 0.01669193059206009,
- 0.00710021099075675,
- -0.004351097159087658,
- -0.05498146638274193,
- 0.030434738844633102,
- -0.025171050801873207,
- 0.06951182335615158,
- -0.020658021792769432,
- 0.011763804592192173,
- 0.056330058723688126,
- -0.0858345478773117,
- 0.011974061839282513,
- 0.03787015378475189,
- 0.021725911647081375,
- 0.0062481798231601715,
- 0.037279609590768814,
- -0.036249712109565735,
- 0.01212810818105936,
- 0.0069288937374949455,
- 0.04103121533989906,
- -0.1068994328379631,
- 0.030067075043916702,
- 0.0618165023624897,
- -0.007496852893382311,
- -0.0511443167924881,
- 0.07411888986825943,
- 0.053079068660736084,
- -0.008001827634871006,
- -0.024516932666301727,
- 0.003078688867390156,
- 0.02375989966094494,
- -0.02625378966331482,
- -0.018788158893585205,
- 0.003417463507503271,
- -0.07345321774482727,
- 0.08378653973340988,
- 0.017871087417006493,
- 0.04409138485789299,
- -0.10017220675945282,
- 0.01645919494330883,
- 0.04282621294260025,
- 0.04453470557928085,
- 0.0834776759147644,
- 0.06890608370304108,
- -0.028371693566441536,
- 0.057957570999860764,
- -0.05345693603157997,
- 0.03926953673362732,
- -0.021331757307052612,
- 0.028002407401800156,
- -0.03489102050662041,
- -0.02950981818139553,
- 0.020412076264619827,
- 0.04475180059671402,
- 0.011606922373175621,
- 0.020339712500572205,
- 0.033094972372055054,
- -0.03415214642882347,
- -0.08687224239110947,
- -0.031191833317279816,
- -0.036471810191869736,
- 0.05686202272772789,
- -0.05267276242375374,
- 0.04107515141367912,
- 0.03226036578416824,
- -0.03330301493406296,
- -0.07527704536914825,
- -0.061690229922533035,
- 0.03323059901595116,
- -0.003587588667869568,
- 0.11649278551340103,
- 0.04129970073699951,
- 0.05087658762931824,
- -0.021464651450514793,
- 0.018786435946822166,
- -0.008358401246368885,
- -0.03849994018673897,
- -0.04667890816926956,
- -0.027932602912187576,
- -0.08623447269201279,
- -0.04644092172384262,
- -0.07364813983440399,
- 0.008410782553255558,
- 0.046642862260341644,
- -0.06906381249427795,
- -0.030800295993685722,
- 0.06552639603614807,
- 0.09630201756954193,
- 0.0027718490455299616,
- -0.06626003980636597,
- -0.09532702714204788,
- 0.06596045196056366,
- 0.034758392721414566,
- 0.11421291530132294,
- -0.01128329522907734,
- -1.4833640982203633e-8,
- 0.02959122508764267,
- 0.022340720519423485,
- -0.01886863447725773,
- -0.01876082830131054,
- -0.0008556664106436074,
- 0.01736808568239212,
- -0.0364692322909832,
- 0.10059452056884766,
- 0.05052448809146881,
- -0.011142914183437824,
- 0.011204208247363567,
- 0.02714483253657818,
- 0.06068313494324684,
- 0.01568238064646721,
- 0.10240467637777328,
- -0.0660090446472168,
- -0.032220032066106796,
- 0.013099204748868942,
- -0.0626155212521553,
- 0.0005417772335931659,
- 0.022548457607626915,
- -0.02525012195110321,
- 0.017657609656453133,
- 0.009748287498950958,
- 0.019411658868193626,
- 0.023655211552977562,
- -0.006299261469393969,
- 0.15512822568416595,
- -0.034490298479795456,
- 0.006181986071169376,
- 0.035398419946432114,
- -0.017392350360751152,
- -0.030621260404586792,
- -0.0430615209043026,
- -0.033494118601083755,
- 0.05053234100341797,
- -0.027240794152021408,
- -0.059466540813446045,
- -0.01609264686703682,
- -0.06790736317634583,
- 0.005315754562616348,
- -0.00013807331561110914,
- -0.007273014634847641,
- -0.00514197675511241,
- 0.009185598231852055,
- 0.04209449514746666,
- -0.011531972326338291,
- -0.04963528364896774,
- -0.028725765645503998,
- -0.08243248611688614,
- -0.018308524042367935,
- -0.059177108108997345,
- 0.031208207830786705,
- 0.037418875843286514,
- 0.040639039129018784,
- 0.04515077918767929,
- 0.05448644608259201,
- -0.019434122368693352,
- -0.019286958500742912,
- 0.09192246943712234,
- 0.10720670223236084,
- -0.0004811588441953063,
- -0.014876151457428932,
- -0.014225607737898827
- ]
- },
- {
- "keyword": "consulting",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.017904840409755707,
- -0.010888447985053062,
- -0.0666867271065712,
- -0.02650488168001175,
- -0.10197758674621582,
- -0.02841103821992874,
- 0.07512009143829346,
- 0.026890810579061508,
- 0.05337701737880707,
- -0.02267998643219471,
- -0.029802445322275162,
- 0.017396017909049988,
- 0.0037832725793123245,
- 0.043215617537498474,
- -0.00869081262499094,
- 0.0191299170255661,
- 0.033208273351192474,
- -0.046750884503126144,
- 0.07349224388599396,
- -0.057465072721242905,
- -0.17207330465316772,
- 0.06218245252966881,
- -0.04001713544130325,
- -0.0015444167656823993,
- 0.00022235802316572517,
- 0.012826881371438503,
- 0.017956385388970375,
- -0.07341539859771729,
- 0.0034995360765606165,
- -0.02291950397193432,
- -0.028578896075487137,
- 0.12941239774227142,
- 0.03732821345329285,
- -0.05177881568670273,
- 0.08168351650238037,
- 0.1499582976102829,
- -0.06846456974744797,
- 0.042316462844610214,
- 0.06804602593183517,
- 0.06832332909107208,
- -0.04390513524413109,
- -0.008191394619643688,
- 0.030603064224123955,
- -0.03955089673399925,
- -0.02412067912518978,
- -0.07450713962316513,
- -0.00017906604625750333,
- 0.06143859773874283,
- 0.02081400156021118,
- 0.020701980218291283,
- -0.11785218119621277,
- -0.043639421463012695,
- -0.0155703229829669,
- -0.05654652416706085,
- -0.0013808744261041284,
- -0.023960495367646217,
- -0.0058050816878676414,
- 0.028558338060975075,
- -0.055111490190029144,
- 0.007661022711545229,
- 0.002594031859189272,
- 0.002472593216225505,
- -0.03141280636191368,
- 0.04274851828813553,
- 0.0005804757820442319,
- 0.04619351774454117,
- -0.05025961995124817,
- 0.029984649270772934,
- -0.06292619556188583,
- -0.0734817385673523,
- 0.02193342335522175,
- -0.0765867754817009,
- 0.0038248607888817787,
- -0.03357747197151184,
- 0.07659444212913513,
- -0.006057689432054758,
- 0.02795857936143875,
- 0.016896933317184448,
- 0.1235208511352539,
- -0.16859343647956848,
- 0.051422368735075,
- 0.08328772336244583,
- -0.025125976651906967,
- 0.04390566423535347,
- -0.07601945102214813,
- -0.013380592688918114,
- 0.04963625222444534,
- 0.03286779671907425,
- 0.09300555288791656,
- 0.008301718160510063,
- 0.038571976125240326,
- 0.0038966601714491844,
- -0.07765090465545654,
- -0.018897848203778267,
- -0.06077872961759567,
- 0.021157383918762207,
- 0.003837910480797291,
- -0.033907320350408554,
- -0.05390855297446251,
- 0.2130817025899887,
- -0.012416226789355278,
- -0.01355681661516428,
- -0.0023207664489746094,
- 0.013514304533600807,
- -0.0814097598195076,
- 0.013210223987698555,
- -0.021477190777659416,
- -0.005685866344720125,
- 0.022618940100073814,
- 0.07509435713291168,
- -0.04281943291425705,
- 0.06206461787223816,
- -0.06676001101732254,
- -0.020532093942165375,
- -0.010590089485049248,
- -0.06236179918050766,
- 0.02981199510395527,
- 0.04510853439569473,
- 0.0035585148725658655,
- 0.04902638867497444,
- -0.022115478292107582,
- 0.08653829246759415,
- -0.04262928664684296,
- -0.004462060052901506,
- -0.06153444945812225,
- -0.02828207053244114,
- 0.002364211482927203,
- -5.23696765755142e-33,
- -0.0204667579382658,
- 0.051320672035217285,
- 0.021269744262099266,
- 0.08501772582530975,
- 0.010405468754470348,
- 0.015207020565867424,
- 0.023253297433257103,
- 0.050511494278907776,
- -0.022150378674268723,
- -0.016536246985197067,
- 0.072078175842762,
- 0.06160667538642883,
- 0.06459993869066238,
- 0.009090160019695759,
- -0.0335874930024147,
- -0.01817043498158455,
- 0.023212077096104622,
- 0.11723343282938004,
- -0.031156515702605247,
- -0.08126098662614822,
- -0.0923350527882576,
- 0.027895569801330566,
- -0.006383327767252922,
- 0.07100182771682739,
- 0.03035578317940235,
- -0.009556015953421593,
- 0.04175100475549698,
- 0.041365355253219604,
- 0.07878952473402023,
- 0.017557449638843536,
- 0.03296664357185364,
- 0.03133177012205124,
- -0.055746421217918396,
- -0.009310117922723293,
- 0.006328163202852011,
- 0.07398243993520737,
- -0.07762070000171661,
- -0.11824052035808563,
- 0.04316689074039459,
- 0.04648568108677864,
- -0.08638506382703781,
- 0.026013797149062157,
- 0.05698129162192345,
- -0.02253800444304943,
- -0.0245067086070776,
- 0.01630634069442749,
- 0.05169222876429558,
- 0.039690885692834854,
- -0.06266675144433975,
- 0.019729958847165108,
- -0.08341920375823975,
- -0.039780933409929276,
- 0.02637859806418419,
- 0.06614301353693008,
- 0.06704096496105194,
- -0.021020706743001938,
- 0.01961490511894226,
- -0.014806127175688744,
- 0.02767735719680786,
- 0.008026110008358955,
- 0.0332736112177372,
- 0.058496907353401184,
- -0.07793518900871277,
- 0.015282110311090946,
- -0.027571167796850204,
- -0.051219429820775986,
- -0.04039737582206726,
- -0.020550107583403587,
- 0.1132977232336998,
- -0.03354364633560181,
- -0.008077452890574932,
- 0.06534650176763535,
- 0.06203995645046234,
- 0.03697838634252548,
- -0.07796771079301834,
- 0.005422808695584536,
- -0.08917729556560516,
- 0.022796720266342163,
- 0.004092554096132517,
- 0.07672581821680069,
- -0.02448921464383602,
- 0.029583945870399475,
- 0.014852132648229599,
- 0.031976185739040375,
- 0.06965283304452896,
- 0.04901764541864395,
- 0.03522110357880592,
- -0.0015430892817676067,
- 0.010335104539990425,
- 0.09210216253995895,
- -0.13831505179405212,
- 0.014483407139778137,
- -0.035623494535684586,
- 0.08325940370559692,
- 0.059773173183202744,
- 3.2453106812219255e-33,
- -0.004982923157513142,
- 0.006948069203644991,
- 0.02521325834095478,
- 0.00876533892005682,
- 0.05587560683488846,
- -0.025408035144209862,
- 0.0478917732834816,
- -0.032180167734622955,
- -0.019663749262690544,
- 0.004583803936839104,
- -0.03844158723950386,
- -0.03946441039443016,
- 0.0038581741973757744,
- 0.013276607729494572,
- -0.01946759782731533,
- 0.0113410959020257,
- 0.02007625624537468,
- -0.0690607875585556,
- -0.006438195705413818,
- 0.02536970004439354,
- -0.002086915308609605,
- -0.012157073244452477,
- -0.04266826808452606,
- 0.02548663690686226,
- 0.00324358232319355,
- 0.025336792692542076,
- -0.047501090914011,
- -0.04268728196620941,
- -0.05387542396783829,
- 0.032366715371608734,
- -0.013030030764639378,
- -0.012111536227166653,
- -0.0931231901049614,
- 0.06605246663093567,
- -0.06467218697071075,
- 0.07618118822574615,
- -0.004005770199000835,
- -0.017122559249401093,
- -0.07157228887081146,
- -0.03310776129364967,
- 0.07840588688850403,
- -0.07290507107973099,
- 0.042103514075279236,
- 0.010588894598186016,
- -0.012633082456886768,
- -0.07251963019371033,
- 0.015817850828170776,
- 0.005663983523845673,
- 0.02063624933362007,
- -0.06183008477091789,
- -0.08679743856191635,
- 0.050962552428245544,
- -0.05085507035255432,
- -0.03811517730355263,
- -0.08270565420389175,
- 0.00896908063441515,
- 0.07144838571548462,
- -0.029418645426630974,
- 0.043593600392341614,
- 0.0033446657471358776,
- 0.08631245046854019,
- 0.024487925693392754,
- -0.006801073905080557,
- 0.031072895973920822,
- -0.03706331551074982,
- -0.0014138731639832258,
- 0.03601847216486931,
- 0.01993560418486595,
- 0.04679594561457634,
- -0.04649532213807106,
- 0.05624058097600937,
- 0.058261383324861526,
- 0.015518964268267155,
- -0.04388361796736717,
- -0.01964549720287323,
- 0.04119338467717171,
- -0.032888736575841904,
- -0.10404539108276367,
- -0.01966146193444729,
- 0.016838958486914635,
- 0.036378201097249985,
- -0.08673803508281708,
- 0.0158437117934227,
- 0.10391432791948318,
- -0.05684024468064308,
- 0.0009995169239118695,
- 0.035114482045173645,
- -0.05013832077383995,
- -0.03379182144999504,
- -0.054385896772146225,
- -0.08433248847723007,
- -0.020557548850774765,
- -0.024056321009993553,
- 0.03107368014752865,
- 0.03529556468129158,
- -1.1898545260180526e-8,
- -0.051744189113378525,
- 0.010801127180457115,
- 0.024082891643047333,
- -0.008939148858189583,
- -0.03180115297436714,
- -0.11348485946655273,
- -0.053808875381946564,
- 0.03042043186724186,
- 0.03886415809392929,
- 0.08805233240127563,
- -0.038025349378585815,
- -0.06874484568834305,
- -0.01800861768424511,
- 0.058530520647764206,
- 0.018500734120607376,
- -0.020080463960766792,
- 0.04858208820223808,
- 0.027683887630701065,
- -0.05495462939143181,
- -0.04267597943544388,
- -0.023804577067494392,
- 0.03736741095781326,
- -0.019717035815119743,
- -0.017868196591734886,
- 0.027339007705450058,
- -0.03435693308711052,
- -0.008751044049859047,
- 0.04181782156229019,
- -0.004052926320582628,
- -0.032670725136995316,
- 0.018054159358143806,
- -0.010287286713719368,
- 0.01348680816590786,
- -0.04201452434062958,
- 0.04359143227338791,
- -0.0831613838672638,
- -0.031048612669110298,
- -0.019179033115506172,
- 0.0476563386619091,
- 0.053218550980091095,
- -0.08855564147233963,
- 0.08323240280151367,
- 0.012292718514800072,
- 0.01617841236293316,
- -0.03452586382627487,
- 0.016470590606331825,
- 0.009999526664614677,
- 0.0029291859827935696,
- 0.0004669352783821523,
- -0.06033480167388916,
- -0.007182524539530277,
- 0.02278735488653183,
- 0.052036091685295105,
- -0.027555514127016068,
- 0.026927631348371506,
- 0.02032879739999771,
- 0.08134862035512924,
- -0.02831966057419777,
- -0.09470244497060776,
- 0.09452904760837555,
- -0.10675299167633057,
- -0.0009215421159751713,
- 0.019803164526820183,
- -0.03613176941871643
- ]
- },
- {
- "keyword": "advisory",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.059557560831308365,
- 0.005279873497784138,
- -0.016628876328468323,
- 0.0929587334394455,
- 0.037357646971940994,
- -0.02134484425187111,
- 0.11211352795362473,
- 0.0292238537222147,
- -0.051669228821992874,
- 0.037848860025405884,
- -0.013661625795066357,
- 0.014894011430442333,
- 0.0189653430134058,
- -0.012675784528255463,
- -0.06883872300386429,
- 0.03328083083033562,
- 0.00024488806957378983,
- -0.03474203869700432,
- -0.059476301074028015,
- -0.03926851227879524,
- -0.01995321735739708,
- 0.06994032859802246,
- -0.02496311627328396,
- 0.03493204340338707,
- -0.059530191123485565,
- 0.00484062684699893,
- -0.025320155546069145,
- 0.04542721435427666,
- -0.061696603894233704,
- -0.06707288324832916,
- 0.0024913290981203318,
- 0.0403527095913887,
- 0.017934458330273628,
- -0.021615009754896164,
- -0.02288096956908703,
- 0.0418497696518898,
- 0.03767010569572449,
- -0.0017310620751231909,
- 0.08168595284223557,
- -0.022565707564353943,
- -0.022993754595518112,
- -0.10399755835533142,
- -0.05225421488285065,
- 0.00018750752496998757,
- -0.0001483723899582401,
- 0.005379612557590008,
- -0.033625245094299316,
- -0.08183297514915466,
- -0.009875845164060593,
- -0.03391876071691513,
- -0.050742290914058685,
- -0.09483177214860916,
- -0.011172017082571983,
- -0.035973917692899704,
- -0.0387256033718586,
- 0.014215489849448204,
- -0.0018911531660705805,
- -0.07745752483606339,
- 0.08036524057388306,
- -0.022043375298380852,
- 0.03644943609833717,
- -0.06734225898981094,
- -0.08683712035417557,
- 0.05373861640691757,
- 0.05319884046912193,
- -0.044327083975076675,
- -0.017354590818285942,
- 0.009855874814093113,
- 0.035640738904476166,
- -0.09515120834112167,
- -0.0001676049578236416,
- 0.013718328438699245,
- 0.0042791771702468395,
- 0.05307767167687416,
- 0.035080716013908386,
- -0.012432056479156017,
- 0.039035432040691376,
- -0.04432748258113861,
- 0.07759859412908554,
- -0.10290184617042542,
- -0.02888595685362816,
- 0.027061011642217636,
- 0.0012543010525405407,
- -0.05943945050239563,
- -0.002248222939670086,
- -0.00048568565398454666,
- -0.025845810770988464,
- 0.008097853511571884,
- 0.06249377503991127,
- 0.06621205061674118,
- 0.0067562260664999485,
- -0.038164760917425156,
- 0.03440242260694504,
- -0.0025377527344971895,
- -0.05012223497033119,
- 0.020294321700930595,
- -0.018124714493751526,
- -0.10918158292770386,
- -0.11353731900453568,
- 0.27004045248031616,
- 0.023776542395353317,
- -0.05470621585845947,
- -0.04272530600428581,
- -0.02126459591090679,
- -0.057493336498737335,
- -0.1028042882680893,
- 0.01723845675587654,
- -0.027510670945048332,
- 0.03514188528060913,
- -0.009147441014647484,
- -0.05666327476501465,
- 0.04604643955826759,
- 0.07234582304954529,
- 0.03311248868703842,
- -0.03584931790828705,
- 0.06591429561376572,
- 0.02208385244011879,
- 0.024820944294333458,
- 0.08391518145799637,
- 0.03829537332057953,
- 0.011844583787024021,
- 0.008867365308105946,
- -0.0017778057372197509,
- -0.03532818332314491,
- 0.0383312813937664,
- -0.028638247400522232,
- -0.005499405786395073,
- -6.247100075255752e-33,
- -0.00572093203663826,
- 0.005862270947545767,
- 0.05176636204123497,
- 0.005760029889643192,
- -0.03407324478030205,
- -0.003628683043643832,
- -0.013894113712012768,
- -0.05393160507082939,
- -0.03638887777924538,
- -0.01279681921005249,
- 0.06806481629610062,
- 0.06765427440404892,
- -0.01212777104228735,
- -0.03775181248784065,
- 0.04703156650066376,
- 0.020726988092064857,
- 0.02701910212635994,
- 0.14483517408370972,
- 0.01069381833076477,
- -0.012001768685877323,
- -0.0005784460809081793,
- 0.04434671252965927,
- -0.011450475081801414,
- -0.023698676377534866,
- -0.035262953490018845,
- -0.013888546265661716,
- -0.01082646381109953,
- -0.02206919901072979,
- 0.09991259127855301,
- 0.03309493139386177,
- -0.02125147171318531,
- 0.08329267799854279,
- -0.0045829336158931255,
- -0.03667334094643593,
- 0.014983585104346275,
- 0.006070110481232405,
- -0.07350803911685944,
- -0.03609883785247803,
- -0.001856479444541037,
- -0.028986917808651924,
- -0.01122385635972023,
- 0.02368173375725746,
- -0.02357177436351776,
- 0.036197151988744736,
- 0.04502139985561371,
- 0.0010131648741662502,
- -0.011267943307757378,
- 0.002442015567794442,
- 0.008668094873428345,
- 0.062439195811748505,
- 0.023618502542376518,
- -0.08306784927845001,
- -0.11738423258066177,
- 0.025979598984122276,
- -0.017597980797290802,
- 0.010754680261015892,
- 0.028256043791770935,
- 0.048903629183769226,
- 0.008771692402660847,
- -0.044264376163482666,
- 0.050570957362651825,
- 0.08993063867092133,
- -0.11301623284816742,
- -0.029889173805713654,
- -0.06444519013166428,
- -0.048040591180324554,
- -0.02359389327466488,
- 0.019865529611706734,
- 0.03663311526179314,
- -0.06002497300505638,
- -0.10427100956439972,
- -0.008905784226953983,
- 0.07894238084554672,
- 0.12552693486213684,
- -0.021463517099618912,
- -0.08321530371904373,
- -0.011794117279350758,
- -0.0003259938966948539,
- -0.032083660364151,
- -0.01860014721751213,
- -0.06523402780294418,
- 0.04531010612845421,
- -0.009717877954244614,
- 0.059979189187288284,
- 0.042763128876686096,
- -0.06494764983654022,
- 0.07781504094600677,
- 0.045212484896183014,
- -0.03881849721074104,
- -0.007485534530133009,
- -0.11996690928936005,
- 0.045662619173526764,
- 0.01924765668809414,
- 0.0672527328133583,
- -0.018743515014648438,
- 3.2538524843905725e-33,
- 0.0328066311776638,
- -0.022329414263367653,
- 0.02477954886853695,
- 0.04294182360172272,
- 0.04412182420492172,
- 0.005337827373296022,
- -0.06098591536283493,
- -0.0011505810543894768,
- 0.05644376575946808,
- -0.09082911908626556,
- -0.08153484016656876,
- -0.022054100409150124,
- 0.0971188098192215,
- 0.023771967738866806,
- 0.02511497028172016,
- -0.04653200879693031,
- -0.018824420869350433,
- -0.04146623983979225,
- -0.000993811641819775,
- -0.007076491601765156,
- -0.031886134296655655,
- -0.10142397880554199,
- 0.06992945820093155,
- 0.07709188759326935,
- -0.020935948938131332,
- -0.004483561497181654,
- 0.02946552075445652,
- 0.12587721645832062,
- -0.08088245987892151,
- -0.03858115151524544,
- -0.018641788512468338,
- -0.03410522639751434,
- 0.008496979251503944,
- 0.0798000767827034,
- -0.03144340589642525,
- 0.026815688237547874,
- 0.10177680850028992,
- -0.03661666065454483,
- -0.03567669168114662,
- 0.11610759794712067,
- 0.043173715472221375,
- 0.03850599005818367,
- 0.018122754991054535,
- 0.08731977641582489,
- -0.08532511442899704,
- -0.026103990152478218,
- 0.08750274032354355,
- 0.009203928522765636,
- -0.009915811941027641,
- 0.018954310566186905,
- -0.06240057572722435,
- 0.039203085005283356,
- -0.03756873309612274,
- -0.041689395904541016,
- -0.017382975667715073,
- 0.01347165647894144,
- 0.049874112010002136,
- 0.01809287630021572,
- 0.02999958023428917,
- 0.024658337235450745,
- 0.01335466094315052,
- 0.0942320004105568,
- 0.019089700654149055,
- 0.07578925788402557,
- 0.02721242792904377,
- 0.024295255541801453,
- -0.019738171249628067,
- 0.02548249624669552,
- 0.046950846910476685,
- 0.02144814282655716,
- 0.07404472678899765,
- -0.03456718847155571,
- -0.13396845757961273,
- -0.030815623700618744,
- 0.022669196128845215,
- -0.10097568482160568,
- 0.010460197925567627,
- -0.05536220595240593,
- -0.008412634953856468,
- -0.021188782528042793,
- -0.1245957687497139,
- -0.033291466534137726,
- 0.0021252541337162256,
- 0.005601166747510433,
- 0.035555340349674225,
- -0.0023030813317745924,
- 0.020025473088026047,
- -0.008707401342689991,
- 0.021171217784285545,
- 0.022506408393383026,
- -0.01024332083761692,
- -0.027722153812646866,
- 0.03874143958091736,
- -0.02945600263774395,
- -0.06633659452199936,
- -1.2494007606278501e-8,
- 0.010986280627548695,
- 0.006295214407145977,
- -0.012876410037279129,
- -0.016413848847150803,
- 0.08020538091659546,
- -0.038281217217445374,
- -0.09109831601381302,
- -0.049498867243528366,
- 0.050511326640844345,
- 0.04550960659980774,
- 0.06005482003092766,
- -0.0236371923238039,
- -0.004892582073807716,
- 0.03473114222288132,
- 0.09511736780405045,
- -0.04717355966567993,
- 0.010869289748370647,
- 0.11214717477560043,
- -0.10207981616258621,
- 0.08960939943790436,
- 0.01709565706551075,
- -0.014617987908422947,
- -0.009063503704965115,
- -0.005818412639200687,
- 0.03080837056040764,
- -0.02929096110165119,
- 0.003307810751721263,
- 0.06360379606485367,
- -0.03868527710437775,
- 0.10842365026473999,
- -0.030010728165507317,
- 0.05343624949455261,
- 0.023444170132279396,
- -0.0028734190855175257,
- 0.05458381399512291,
- 0.02618357352912426,
- -0.02441885881125927,
- -0.007888520136475563,
- 0.030801717191934586,
- 0.0744892880320549,
- -0.01783682405948639,
- -0.043352268636226654,
- 0.028285691514611244,
- -0.026151757687330246,
- -0.010890370234847069,
- -0.008271834813058376,
- 0.0035470963921397924,
- -0.02854161150753498,
- 0.055949971079826355,
- -0.07524549216032028,
- -0.013496391475200653,
- -0.05187784135341644,
- 0.061964251101017,
- 0.024609554558992386,
- 0.04342540726065636,
- 0.005485426634550095,
- -0.0033413430210202932,
- -0.0035944231785833836,
- -0.08305574953556061,
- 0.023156456649303436,
- 0.08466944843530655,
- -0.061307091265916824,
- -0.010779622942209244,
- 0.03725539147853851
- ]
- },
- {
- "keyword": "guidance",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.0509689636528492,
- 0.05345511808991432,
- 0.009116983972489834,
- 0.03402518481016159,
- -0.017728153616189957,
- 0.003216383047401905,
- 0.05616794899106026,
- 0.017757173627614975,
- -0.09463106840848923,
- -0.04681191220879555,
- -0.022236956283450127,
- 0.021419132128357887,
- -0.028580348938703537,
- 0.03787651285529137,
- 0.011149550788104534,
- -0.014849250204861164,
- 0.025062503293156624,
- -0.05653281882405281,
- -0.09437447786331177,
- -0.09390667080879211,
- 0.050157275050878525,
- 0.033354226499795914,
- 0.023595472797751427,
- -0.030316077172756195,
- -0.037551797926425934,
- 0.04454757273197174,
- -0.00030893218354322016,
- 0.011244075372815132,
- -0.00783680472522974,
- -0.050034478306770325,
- -0.018779383972287178,
- -0.034724149852991104,
- -0.022574327886104584,
- -0.01919064298272133,
- -0.021019894629716873,
- 0.05152735859155655,
- 0.07585209608078003,
- 0.026031779125332832,
- 0.01516198180615902,
- 0.03584277629852295,
- -0.0291981790214777,
- 0.01961745135486126,
- -0.017758892849087715,
- 0.023037124425172806,
- 0.03521886467933655,
- 0.002940737409517169,
- -0.020641092211008072,
- -0.06422711908817291,
- -0.002018566941842437,
- -0.018522849306464195,
- -0.07675706595182419,
- -0.05045483261346817,
- -0.03814351186156273,
- 0.011459952220320702,
- 0.03425261750817299,
- -0.010594399645924568,
- -0.01566941849887371,
- -0.013327890075743198,
- 0.05439412221312523,
- -0.0596831776201725,
- 0.020473266020417213,
- -0.06808481365442276,
- -0.12351591140031815,
- -0.012812209315598011,
- -0.03985324129462242,
- -0.044940441846847534,
- -0.06734916567802429,
- 0.027937257662415504,
- 0.0204918310046196,
- 0.004237995948642492,
- -0.07222774624824524,
- -0.0010738589335232973,
- -0.026179403066635132,
- 0.03517007827758789,
- 0.04294397309422493,
- 0.002191284205764532,
- 0.02022591605782509,
- -0.011606313288211823,
- 0.0395498052239418,
- -0.11827465891838074,
- -0.005112301558256149,
- 0.07480370998382568,
- 0.015508390963077545,
- 0.02907835878431797,
- 0.013459784910082817,
- -0.00037063233321532607,
- 0.015296644531190395,
- -0.03022635728120804,
- -0.0038025109097361565,
- 0.08056195080280304,
- 0.08783845603466034,
- -0.0530431792140007,
- 0.0036943359300494194,
- 0.013832923024892807,
- -0.08239644020795822,
- 0.03367238491773605,
- -0.051889557391405106,
- -0.17263023555278778,
- -0.024670971557497978,
- 0.2910257875919342,
- -0.003926863893866539,
- -0.025640271604061127,
- -0.027200959622859955,
- -0.02716284990310669,
- -0.04663727432489395,
- -0.04767714813351631,
- 0.005685711279511452,
- 0.0797259733080864,
- 0.023760799318552017,
- -0.03130519017577171,
- -0.04178502410650253,
- 0.044672898948192596,
- -0.05371132120490074,
- -0.016518527641892433,
- 0.06069513037800789,
- 0.05537574365735054,
- -0.015134741552174091,
- 0.023595234379172325,
- 0.08825639635324478,
- 0.00573737034574151,
- -0.030643032863736153,
- 0.03358853608369827,
- 0.06268271803855896,
- 0.023386165499687195,
- 0.006660106126219034,
- -0.0787784680724144,
- -0.08299615234136581,
- -6.645567680929552e-33,
- 0.05821380391716957,
- 0.034115325659513474,
- 0.0018896529218181968,
- 0.13099759817123413,
- -0.014515898190438747,
- 0.042110804468393326,
- -0.033283524215221405,
- 0.003414551028981805,
- -0.04868922755122185,
- 0.12567070126533508,
- 0.06402034312486649,
- 0.008839652873575687,
- -0.03410693258047104,
- -0.005338044371455908,
- 0.06837458908557892,
- -0.05343039333820343,
- 0.0004392634145915508,
- 0.08379027247428894,
- 0.006547339726239443,
- 0.012051362544298172,
- -0.046745844185352325,
- 0.013838223181664944,
- 0.01769651100039482,
- -0.04554033651947975,
- 0.03479904681444168,
- 0.012418687343597412,
- -0.009249509312212467,
- -0.03189031034708023,
- 0.10257445275783539,
- 0.03969273716211319,
- -0.05142907798290253,
- 0.017672395333647728,
- -0.09300163388252258,
- -0.047004833817481995,
- 0.008594980463385582,
- 0.028201119974255562,
- -0.039750974625349045,
- -0.07987203449010849,
- 0.03974057734012604,
- -0.05814702436327934,
- 0.009448160417377949,
- -0.00021194123837631196,
- 0.027920236811041832,
- -0.041940949857234955,
- 0.012056172825396061,
- 0.08443901687860489,
- 0.08448662608861923,
- -0.033142101019620895,
- -0.065211720764637,
- 0.08096440136432648,
- -0.055000025779008865,
- -0.04658762738108635,
- 0.04923630505800247,
- -0.02413361333310604,
- -0.018251953646540642,
- -0.02111922949552536,
- -0.021218080073595047,
- 0.0331040658056736,
- -0.02163478545844555,
- -0.020693954080343246,
- 0.11038221418857574,
- 0.04028243198990822,
- -0.09413698315620422,
- 0.02635321579873562,
- -0.07199013233184814,
- -0.01067860797047615,
- -0.07356619834899902,
- -0.04754281044006348,
- 0.06538316607475281,
- -0.11079271882772446,
- -0.12451429665088654,
- 0.044524602591991425,
- 0.09258703142404556,
- 0.05018178001046181,
- -0.05346233397722244,
- -0.037489987909793854,
- -0.044470757246017456,
- -0.03183969482779503,
- 0.06294213235378265,
- -0.03545314818620682,
- -0.044701430946588516,
- 0.054022692143917084,
- -0.009983740746974945,
- 0.0444641150534153,
- 0.047321319580078125,
- -0.013450785540044308,
- 0.07426200062036514,
- 0.03200938552618027,
- -0.026373619213700294,
- 0.054590463638305664,
- -0.12175627797842026,
- -0.004177183378487825,
- 0.0032325719948858023,
- 0.10793771594762802,
- -0.00639066519215703,
- 5.3222765886684554e-33,
- 0.09965303540229797,
- 0.04623023793101311,
- 0.04949227347970009,
- -0.010532066226005554,
- 0.07745726406574249,
- -0.0027926082257181406,
- -0.04032767564058304,
- -0.025737419724464417,
- 0.07035855203866959,
- -0.028363175690174103,
- -0.03493634983897209,
- -0.0021242238581180573,
- 0.06802331656217575,
- 0.044012051075696945,
- -0.034540995955467224,
- -0.011288726702332497,
- 0.0064223348163068295,
- -0.04776053503155708,
- -0.00019220654212404042,
- -0.005109793972223997,
- -0.08418446779251099,
- -0.013700720854103565,
- -0.007450520992279053,
- -0.01523942407220602,
- -0.024797821417450905,
- 0.015086655505001545,
- 0.023054420948028564,
- 0.08041923493146896,
- -0.07317760586738586,
- -0.02310418151319027,
- 0.037764690816402435,
- -0.03139946609735489,
- 0.0437588207423687,
- -0.02203909493982792,
- -0.05426369234919548,
- 0.05662032216787338,
- 0.04604807123541832,
- -0.0007585177081637084,
- -0.04004015401005745,
- 0.07216207683086395,
- 0.0680437982082367,
- 0.0351492241024971,
- 0.05834813416004181,
- -0.02766113355755806,
- -0.057819705456495285,
- 0.04693208634853363,
- 0.08429521322250366,
- 0.02832694724202156,
- 0.04984337091445923,
- 0.09165392816066742,
- -0.10689976066350937,
- -0.020857736468315125,
- 0.00555528374388814,
- -0.09630589187145233,
- -0.03035805933177471,
- -0.010949812829494476,
- 0.017357857897877693,
- -0.029864130541682243,
- 0.010368654504418373,
- -0.05769800767302513,
- 0.017587145790457726,
- 0.0567442812025547,
- -0.04553380608558655,
- 0.08757398277521133,
- 0.010476067662239075,
- -0.028825793415308,
- -0.06725789606571198,
- 0.033696532249450684,
- 0.030656849965453148,
- 0.025297533720731735,
- -0.03192982077598572,
- 0.04236718639731407,
- -0.017964428290724754,
- 0.015285508707165718,
- -0.02194995805621147,
- -0.11216631531715393,
- 0.04177717864513397,
- -0.0902911126613617,
- -0.005483892746269703,
- -0.060373011976480484,
- -0.03204110637307167,
- -0.0753437727689743,
- -0.03352774307131767,
- 0.03245343640446663,
- 0.04899439215660095,
- 0.07217755913734436,
- 0.029614971950650215,
- 0.03628320246934891,
- 0.019373243674635887,
- 0.003781355917453766,
- -0.10510463267564774,
- -0.029565295204520226,
- 0.03339354693889618,
- 0.019202811643481255,
- -0.07530517131090164,
- -1.385591996694302e-8,
- -0.03989476338028908,
- -0.006743593607097864,
- 0.03136801719665527,
- 0.034857168793678284,
- 0.0033722096122801304,
- 0.05940660089254379,
- -0.03932249918580055,
- 0.00006075627970858477,
- 0.018832504749298096,
- 0.059055473655462265,
- 0.010575806722044945,
- 0.028186211362481117,
- 0.022083044052124023,
- 0.01873672939836979,
- 0.08269587904214859,
- -0.02860002964735031,
- 0.015504947863519192,
- 0.020427098497748375,
- -0.04617926478385925,
- 0.01356165949255228,
- 0.017740542069077492,
- -0.005598852410912514,
- -0.04020782560110092,
- 0.043993864208459854,
- 0.04605984315276146,
- 0.013354698196053505,
- 0.04996536299586296,
- 0.12217476218938828,
- 0.0007867522072046995,
- 0.11985836178064346,
- 0.018671080470085144,
- -0.024336108937859535,
- -0.0007693617371842265,
- -0.008471676148474216,
- -0.01699730195105076,
- -0.005390676204115152,
- -0.012110862880945206,
- -0.05932961404323578,
- 0.05931362882256508,
- 0.040811676532030106,
- -0.046828631311655045,
- -0.02542266808450222,
- 0.05673876032233238,
- -0.0050414325669407845,
- -0.012770186178386211,
- 0.0028815963305532932,
- 0.040711190551519394,
- -0.009932027198374271,
- -0.025280272588133812,
- -0.04862391576170921,
- -0.0029128172900527716,
- -0.020306285470724106,
- 0.07581648230552673,
- 0.011955128982663155,
- 0.08582603931427002,
- 0.033980175852775574,
- 0.02864120528101921,
- 0.020674007013440132,
- -0.07771722972393036,
- 0.07998622953891754,
- 0.06109419837594032,
- -0.011797049082815647,
- -0.01689050905406475,
- 0.008491539396345615
- ]
- },
- {
- "keyword": "maintenance",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08138234913349152,
- 0.04742094874382019,
- 0.07135114073753357,
- 0.031476423144340515,
- 0.01404553186148405,
- -0.07210402190685272,
- 0.10899247974157333,
- -0.017144497483968735,
- -0.08885859698057175,
- 0.012419404461979866,
- -0.010349422693252563,
- 0.029342327266931534,
- -0.036880552768707275,
- 0.027734212577342987,
- -0.0637468695640564,
- -0.03134581446647644,
- 0.01630990020930767,
- -0.03834768012166023,
- -0.1137268990278244,
- -0.032924093306064606,
- -0.10914143919944763,
- 0.009413071908056736,
- -0.05175601691007614,
- 0.06474077701568604,
- -0.05378173664212227,
- 0.1124691441655159,
- -0.04525426775217056,
- 0.01166894193738699,
- 0.00856759399175644,
- -0.09605420380830765,
- -0.07533487677574158,
- 0.0619213841855526,
- 0.02604934386909008,
- -0.00018021503638010472,
- -0.02409198507666588,
- 0.07456547766923904,
- 0.01248799916356802,
- -0.07610075920820236,
- 0.010025651194155216,
- -0.022621436044573784,
- -0.03971245512366295,
- -0.07097078114748001,
- -0.038659725338220596,
- -0.01861540414392948,
- 0.03252822905778885,
- 0.049813803285360336,
- 0.002150824060663581,
- -0.04853321239352226,
- 0.07149053364992142,
- 0.029232701286673546,
- 0.03224368020892143,
- 0.018360266461968422,
- 0.02449415810406208,
- 0.008608350530266762,
- 0.10753197968006134,
- 0.03757372498512268,
- 0.06319577991962433,
- -0.0469871386885643,
- -0.021674571558833122,
- -0.031153278425335884,
- 0.12445350736379623,
- -0.001442622160539031,
- -0.04614051803946495,
- 0.05861443653702736,
- 0.11717959493398666,
- -0.07115663588047028,
- 0.012935660779476166,
- -0.024906164035201073,
- -0.0075849853456020355,
- 0.018905742093920708,
- -0.08373397588729858,
- 0.010094818659126759,
- -0.03607013076543808,
- 0.030967682600021362,
- 0.006607404910027981,
- -0.00573740666732192,
- 0.027530742809176445,
- -0.08884810656309128,
- 0.052257440984249115,
- -0.07266511768102646,
- 0.019107988104224205,
- -0.005473772995173931,
- 0.0003434309037402272,
- 0.047658488154411316,
- 0.05122147127985954,
- 0.0018096452113240957,
- 0.035245317965745926,
- 0.021195312961935997,
- 0.060409918427467346,
- 0.010314274579286575,
- 0.010522419586777687,
- 0.029878675937652588,
- 0.056996967643499374,
- -0.016822075471282005,
- -0.10932796448469162,
- 0.014452611096203327,
- -0.04694262146949768,
- -0.020342545583844185,
- -0.05335705354809761,
- 0.22915944457054138,
- 0.01701706275343895,
- 0.046639490872621536,
- 0.054200686514377594,
- -0.07288525998592377,
- -0.050910476595163345,
- 0.0034035108983516693,
- -0.020448176190257072,
- 0.0951412096619606,
- 0.0010190937900915742,
- -0.034896064549684525,
- -0.050669409334659576,
- 0.013106727972626686,
- -0.010000904090702534,
- -0.035869352519512177,
- -0.005437976215034723,
- -0.01134896744042635,
- -0.016634253785014153,
- 0.048777591437101364,
- 0.004956882447004318,
- 0.01718306355178356,
- 0.08968081325292587,
- -0.005205665249377489,
- 0.010535343550145626,
- -0.035824473947286606,
- -0.027899302542209625,
- -0.02136758714914322,
- 0.10943564027547836,
- -5.4716047788411954e-33,
- 0.02922373265028,
- -0.053267981857061386,
- 0.008083460852503777,
- 0.046674877405166626,
- -0.03225448727607727,
- -0.009490964002907276,
- -0.011632814072072506,
- -0.030976392328739166,
- 0.05430518835783005,
- -0.06898960471153259,
- 0.10524878650903702,
- 0.09581533819437027,
- -0.06934953480958939,
- -0.07423428446054459,
- 0.059127986431121826,
- -0.030028516426682472,
- 0.035236697643995285,
- 0.08145157247781754,
- 0.010145919397473335,
- 0.004885781556367874,
- 0.0012109067756682634,
- -0.034613508731126785,
- -0.015036103315651417,
- 0.0450824610888958,
- 0.10169292241334915,
- 0.005399366375058889,
- 0.03274133801460266,
- -0.021649280562996864,
- -0.015645675361156464,
- 0.013710319995880127,
- 0.11746668815612793,
- 0.054049767553806305,
- -0.05322199687361717,
- 0.01332953292876482,
- -0.06015663966536522,
- 0.007482698652893305,
- -0.04647841677069664,
- -0.05762605741620064,
- -0.02535134367644787,
- -0.0902857705950737,
- -0.017985399812459946,
- -0.016175074502825737,
- -0.018671879544854164,
- -0.01626407541334629,
- 0.011587776243686676,
- -0.026494832709431648,
- 0.05742138624191284,
- 0.026549799367785454,
- -0.03421211987733841,
- 0.0271798986941576,
- 0.015720868483185768,
- -0.004860369022935629,
- -0.06802353262901306,
- -0.005871676839888096,
- -0.038611289113759995,
- 0.0649077296257019,
- 0.05843384936451912,
- -0.10460886359214783,
- -0.016819000244140625,
- -0.03445952385663986,
- 0.04390105605125427,
- 0.021237414330244064,
- -0.06000140681862831,
- -0.004067194648087025,
- 0.053745098412036896,
- 0.01585107482969761,
- 0.018094617873430252,
- 0.05156503617763519,
- 0.02588278241455555,
- -0.024640336632728577,
- -0.09324295818805695,
- -0.06593503803014755,
- 0.02640685625374317,
- 0.05455131456255913,
- -0.038496844470500946,
- -0.005411945283412933,
- -0.04195864126086235,
- -0.03181806951761246,
- -0.08998756110668182,
- 0.02510136365890503,
- -0.052929796278476715,
- -0.012776652351021767,
- -0.014554663561284542,
- 0.031792689114809036,
- 0.0786634236574173,
- 0.007739727385342121,
- 0.03291027247905731,
- -0.0038551806937903166,
- -0.01378838811069727,
- 0.09135735034942627,
- -0.03715481609106064,
- 0.019513731822371483,
- 0.01569419726729393,
- 0.0399460569024086,
- 0.010951181873679161,
- 3.8347153036677286e-33,
- 0.042584504932165146,
- -0.00159379281103611,
- -0.031106535345315933,
- 0.11277562379837036,
- -0.0631723552942276,
- -0.013049116358160973,
- -0.09579678624868393,
- -0.00817181821912527,
- -0.05848095193505287,
- 0.03221658244729042,
- -0.0396820493042469,
- -0.007765875197947025,
- -0.057207513600587845,
- -0.050238270312547684,
- -0.05774861201643944,
- 0.0394333153963089,
- 0.04050007835030556,
- -0.06494700908660889,
- -0.05651497840881348,
- 0.029287908226251602,
- -0.02147485874593258,
- 0.03271416947245598,
- -0.04021497443318367,
- -0.016206176951527596,
- -0.0654958039522171,
- 0.08580321073532104,
- -0.050290290266275406,
- 0.027180975303053856,
- -0.05820334702730179,
- -0.007766857277601957,
- 0.008663118816912174,
- -0.061461396515369415,
- -0.015071400441229343,
- 0.03561270982027054,
- -0.008621439337730408,
- 0.0786271020770073,
- -0.015120291151106358,
- 0.05092529579997063,
- -0.06060849130153656,
- 0.018625402823090553,
- 0.11816088110208511,
- 0.007661586627364159,
- 0.07098709046840668,
- 0.10209325700998306,
- 0.001063856529071927,
- -0.019608577713370323,
- -0.04374728724360466,
- -0.061976127326488495,
- -0.05206068605184555,
- 0.009329290129244328,
- 0.048421453684568405,
- -0.028923051431775093,
- 0.021121088415384293,
- 0.0036272818688303232,
- 0.02050614356994629,
- 0.08578619360923767,
- -0.04483479633927345,
- 0.0035737676080316305,
- -0.09851906448602676,
- 0.04768894985318184,
- 0.039317913353443146,
- 0.0420084074139595,
- 0.012755753472447395,
- 0.03484616428613663,
- -0.07974718511104584,
- -0.029583049938082695,
- 0.03791090101003647,
- -0.013749205507338047,
- 0.018209829926490784,
- -0.03178374469280243,
- 0.05314260348677635,
- 0.0746791735291481,
- -0.012351207435131073,
- -0.02857416681945324,
- -0.06355951726436615,
- 0.017306776717305183,
- -0.05654238164424896,
- -0.09454519301652908,
- -0.02415141835808754,
- 0.026460222899913788,
- -0.09604965895414352,
- -0.034784186631441116,
- -0.04411618784070015,
- 0.06950413435697556,
- -0.032160501927137375,
- -0.09222336858510971,
- 0.011900100857019424,
- 0.02890048362314701,
- 0.06961580365896225,
- 0.020570604130625725,
- 0.0139085091650486,
- 0.020310306921601295,
- -0.10304903984069824,
- 0.024051781743764877,
- -0.015882818028330803,
- -1.163990503982859e-8,
- -0.0401773527264595,
- 0.04492703825235367,
- 0.010926596820354462,
- -0.07417821139097214,
- 0.10236771404743195,
- -0.03666651248931885,
- 0.07672172039747238,
- 0.04808411747217178,
- 0.04848563298583031,
- 0.04131576791405678,
- -0.0008801352232694626,
- -0.021917128935456276,
- 0.005427700001746416,
- 0.05471154674887657,
- 0.05963211879134178,
- -0.013293705880641937,
- -0.034774646162986755,
- 0.05037462338805199,
- -0.11593256890773773,
- -0.012522825971245766,
- -0.028165196999907494,
- -0.043414849787950516,
- 0.04742426425218582,
- 0.06687366217374802,
- -0.00506682600826025,
- -0.031242163851857185,
- 0.07922454923391342,
- 0.0684032142162323,
- 0.052041810005903244,
- 0.06050291657447815,
- -0.006222868803888559,
- 0.04747869446873665,
- 0.05698414146900177,
- -0.08169326186180115,
- 0.016515687108039856,
- -0.027889279648661613,
- 0.041664402931928635,
- -0.07988572865724564,
- 0.03893919289112091,
- 0.026478072628378868,
- -0.05065969005227089,
- 0.04149635136127472,
- 0.0380026176571846,
- 0.03330628573894501,
- 0.038917798548936844,
- -0.004143033176660538,
- -0.05395658686757088,
- 0.012669643387198448,
- -0.05781049281358719,
- -0.11221147328615189,
- 0.025285571813583374,
- -0.04067922756075859,
- 0.03127938136458397,
- 0.1025090366601944,
- -0.00783219002187252,
- 0.015760429203510284,
- 0.06247184798121452,
- -0.001610797131434083,
- -0.005759862717241049,
- 0.018433181568980217,
- -0.023469284176826477,
- -0.030404573306441307,
- 0.008781885728240013,
- 0.01720467023551464
- ]
- },
- {
- "keyword": "repair",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0952041894197464,
- 0.02500934712588787,
- 0.10107681900262833,
- 0.00005346155376173556,
- -0.028027648106217384,
- -0.01891705021262169,
- 0.12272388488054276,
- 0.05444775149226189,
- -0.06255676597356796,
- -0.019282659515738487,
- -0.01749725639820099,
- 0.020041655749082565,
- -0.05243358761072159,
- 0.002152444329112768,
- -0.1328478306531906,
- -0.02674221061170101,
- -0.035684384405612946,
- 0.01064569503068924,
- -0.08925553411245346,
- -0.039512794464826584,
- -0.12460660189390182,
- 0.09104204177856445,
- -0.034261200577020645,
- 0.030329691246151924,
- -0.04701618477702141,
- 0.0770794153213501,
- -0.06168913468718529,
- 0.03281398490071297,
- 0.023393867537379265,
- -0.16102458536624908,
- -0.022783564403653145,
- 0.022792404517531395,
- 0.015018452890217304,
- -0.032095909118652344,
- 0.015751268714666367,
- 0.01390941720455885,
- 0.03272733464837074,
- -0.030261050909757614,
- 0.01279718242585659,
- -0.06870115548372269,
- -0.000153272834722884,
- -0.04863376170396805,
- -0.08403065800666809,
- -0.018253745511174202,
- 0.026813970878720284,
- 0.10380608588457108,
- 0.08961683511734009,
- 0.006338048260658979,
- 0.08861862868070602,
- 0.023532742634415627,
- -0.03855646774172783,
- 0.011247030459344387,
- 0.021189957857131958,
- -0.021100906655192375,
- 0.09703607857227325,
- 0.04288439080119133,
- -0.008809142746031284,
- 0.026729663833975792,
- 0.02235701121389866,
- -0.01837536133825779,
- 0.12622831761837006,
- -0.019958334043622017,
- -0.029845910146832466,
- 0.06341297179460526,
- 0.07708104699850082,
- -0.02955479361116886,
- 0.027088545262813568,
- -0.09183835983276367,
- -0.014668396674096584,
- 0.03538281470537186,
- -0.009535960853099823,
- 0.013429142534732819,
- 0.004940376151353121,
- 0.04363037645816803,
- 0.023184996098279953,
- 0.024227473884820938,
- 0.0019145221449434757,
- -0.09246058762073517,
- 0.050762828439474106,
- 0.034569453448057175,
- -0.019738946110010147,
- -0.026872139424085617,
- -0.011265154927968979,
- 0.04832344502210617,
- 0.11085154116153717,
- 0.01760999485850334,
- 0.04898661747574806,
- -0.03626084327697754,
- -0.020967015996575356,
- 0.005589599721133709,
- -0.05720270797610283,
- 0.018633730709552765,
- 0.0713142454624176,
- -0.0030884966254234314,
- -0.02178265154361725,
- 0.028793085366487503,
- 0.03868687525391579,
- -0.025093570351600647,
- -0.0038815694861114025,
- 0.248652383685112,
- -0.0014811690198257565,
- 0.046956293284893036,
- 0.036795441061258316,
- -0.09478572010993958,
- -0.04961701110005379,
- -0.009619297459721565,
- -0.06606701761484146,
- 0.1377529799938202,
- 0.032750435173511505,
- -0.030647175386548042,
- -0.01588016375899315,
- 0.008736452087759972,
- 0.02386420965194702,
- 0.009068775922060013,
- 0.0354418084025383,
- -0.013540944084525108,
- -0.06646649539470673,
- -0.005315823946148157,
- 0.010888773016631603,
- 0.006578090600669384,
- 0.0038888368289917707,
- -0.002471118001267314,
- -0.01781429350376129,
- -0.021330062299966812,
- -0.07278792560100555,
- -0.07922098785638809,
- 0.08149483054876328,
- -5.7674454828744714e-33,
- 0.03561326488852501,
- -0.05029260367155075,
- 0.02882358618080616,
- 0.042183127254247665,
- -0.010614653117954731,
- 0.04394897446036339,
- 0.0004259823472239077,
- -0.06936900317668915,
- 0.019528333097696304,
- 0.009700740687549114,
- 0.09410086274147034,
- 0.0420970655977726,
- -0.025211429223418236,
- -0.07519572228193283,
- 0.020907826721668243,
- 0.059318866580724716,
- 0.014116908423602581,
- 0.010063632391393185,
- -0.11353500932455063,
- -0.026992639526724815,
- -0.05441264435648918,
- 0.05877065658569336,
- 0.022431790828704834,
- 0.037342268973588943,
- 0.01715158298611641,
- 0.013687795028090477,
- 0.06362076848745346,
- -0.03383781388401985,
- 0.03025416098535061,
- 0.011747307144105434,
- 0.010388473980128765,
- 0.08914148807525635,
- 0.04770081117749214,
- 0.03115876391530037,
- -0.08642493188381195,
- -0.04255637526512146,
- 0.025642957538366318,
- -0.07413522154092789,
- -0.03708161041140556,
- -0.06367035210132599,
- -0.06692563742399216,
- 0.04777650162577629,
- -0.009208359755575657,
- 0.012575221247971058,
- 0.015717459842562675,
- 0.00006398655386874452,
- 0.026672234758734703,
- 0.04611470550298691,
- -0.03772469982504845,
- -0.009958541020751,
- -0.016785893589258194,
- 0.01117884460836649,
- -0.012570730410516262,
- -0.015313397161662579,
- -0.04482322931289673,
- 0.07836505025625229,
- 0.030629100278019905,
- 0.00926853995770216,
- -0.030538909137248993,
- -0.001771683688275516,
- 0.08902394771575928,
- 0.018321136012673378,
- 0.02571498416364193,
- 0.006066048983484507,
- 0.005560295190662146,
- 0.02663302794098854,
- 0.033407386392354965,
- 0.02948211319744587,
- 0.013065135106444359,
- -0.054676081985235214,
- -0.07024187594652176,
- -0.048895612359046936,
- 0.07765049487352371,
- 0.10477747768163681,
- -0.07833592593669891,
- 0.03148467093706131,
- -0.013900435529649258,
- -0.01775180734694004,
- -0.07616589963436127,
- -0.007525933440774679,
- -0.05847249925136566,
- -0.031111236661672592,
- -0.0069471546448767185,
- 0.024053625762462616,
- 0.027890777215361595,
- 0.0027658329345285892,
- -0.003297339892014861,
- -0.02536698244512081,
- 0.021986152976751328,
- 0.060134343802928925,
- -0.06655348837375641,
- -0.017657682299613953,
- 0.021653182804584503,
- -0.002267216332256794,
- -0.033045195043087006,
- 3.896094108537899e-33,
- -0.015098095871508121,
- -0.07609551399946213,
- 0.04061245918273926,
- 0.11213704198598862,
- 0.013986599631607533,
- -0.04748253524303436,
- -0.0763329491019249,
- 0.03134441748261452,
- -0.002050211885944009,
- 0.02888393960893154,
- -0.05512005835771561,
- -0.019628392532467842,
- -0.028183588758111,
- -0.010682596825063229,
- -0.0126675795763731,
- 0.03878982365131378,
- 0.0021396393422037363,
- -0.04276158660650253,
- -0.01640930213034153,
- -0.0028985317330807447,
- 0.04722076281905174,
- 0.03763582184910774,
- 0.01894758641719818,
- 0.014017673209309578,
- -0.04488986358046532,
- 0.10473833233118057,
- -0.01554069947451353,
- -0.0015290488954633474,
- 0.014162677340209484,
- 0.03486010804772377,
- 0.07124978303909302,
- -0.08377804607152939,
- -0.04651917144656181,
- 0.05003765970468521,
- 0.020924486219882965,
- 0.06906480342149734,
- 0.06149599328637123,
- -0.026540376245975494,
- -0.029870416969060898,
- -0.04081203415989876,
- 0.07040766626596451,
- -0.027622735127806664,
- 0.04103880003094673,
- 0.14153777062892914,
- 0.04772302508354187,
- -0.06540399044752121,
- -0.0070180040784180164,
- -0.038002464920282364,
- 0.02756148763000965,
- -0.01785053312778473,
- -0.008695763535797596,
- -0.034681256860494614,
- 0.03116924688220024,
- -0.021434305235743523,
- -0.005018226802349091,
- 0.06503535807132721,
- -0.0002947445900645107,
- -0.013485712930560112,
- -0.10145938396453857,
- 0.035716354846954346,
- -0.00595759367570281,
- 0.059694934636354446,
- 0.02734806202352047,
- 0.028671491891145706,
- -0.02345871739089489,
- -0.0027125917840749025,
- 0.03800911828875542,
- -0.04691798985004425,
- 0.022221526131033897,
- -0.02627384662628174,
- 0.04265812411904335,
- 0.09171725064516068,
- -0.05474115535616875,
- -0.04897604510188103,
- 0.02116573415696621,
- -0.010362373664975166,
- -0.15289701521396637,
- 0.0021151418332010508,
- -0.0010778933065012097,
- 0.024637019261717796,
- -0.024242762476205826,
- -0.08808431774377823,
- -0.014210239052772522,
- 0.08217166364192963,
- 0.0320461168885231,
- -0.07988941669464111,
- 0.10792897641658783,
- 0.059456150978803635,
- -0.020582912489771843,
- -0.1319938600063324,
- -0.011913130059838295,
- 0.0583014041185379,
- -0.03322680667042732,
- -0.035066843032836914,
- -0.025026600807905197,
- -1.192750254119801e-8,
- -0.04470236971974373,
- 0.00411810539662838,
- -0.046088315546512604,
- -0.03383257985115051,
- 0.047480277717113495,
- -0.05581548437476158,
- -0.01821329817175865,
- 0.08422987163066864,
- 0.009333875961601734,
- 0.02403656207025051,
- -0.05850905552506447,
- -0.0029916884377598763,
- 0.029679063707590103,
- 0.03477067872881889,
- 0.009025529958307743,
- -0.11436805129051208,
- -0.08782839775085449,
- 0.08477716892957687,
- -0.08513008803129196,
- -0.04318495839834213,
- -0.03373132646083832,
- -0.012231795117259026,
- 0.08124566823244095,
- 0.013277080841362476,
- -0.04133704677224159,
- -0.0220160111784935,
- 0.01221407949924469,
- 0.06279294937849045,
- -0.0014222989557310939,
- 0.021095894277095795,
- 0.008478494361042976,
- 0.004891181364655495,
- 0.05697872117161751,
- -0.058466069400310516,
- 0.019543971866369247,
- -0.06505120545625687,
- 0.04010869935154915,
- -0.05434417724609375,
- -0.002111729234457016,
- -0.04831281304359436,
- -0.03219079598784447,
- -0.002304126275703311,
- 0.10059292614459991,
- 0.011744021438062191,
- -0.046082377433776855,
- -0.03538428246974945,
- 0.018547773361206055,
- -0.024870427325367928,
- -0.06857363879680634,
- -0.07812060415744781,
- 0.04054345190525055,
- 0.06944092363119125,
- 0.009433737024664879,
- 0.043831195682287216,
- -0.024357622489333153,
- -0.004910764750093222,
- 0.006506048608571291,
- 0.003212908748537302,
- 0.028501732274889946,
- 0.06689385324716568,
- -0.019711829721927643,
- -0.009925182908773422,
- 0.04820924252271652,
- -0.0049683703109622
- ]
- },
- {
- "keyword": "installation",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.03593616932630539,
- 0.011060881428420544,
- 0.06458795070648193,
- -0.034635357558727264,
- -0.018641546368598938,
- -0.0008138761622831225,
- 0.08905962109565735,
- -0.0064904959872365,
- -0.012642215006053448,
- -0.025452321395277977,
- 0.05480955168604851,
- 0.011850454844534397,
- -0.012415653094649315,
- -0.04109470546245575,
- -0.051087941974401474,
- 0.05872570723295212,
- 0.01744186319410801,
- -0.000564813963137567,
- -0.031848177313804626,
- -0.036873284727334976,
- -0.04015233740210533,
- -0.054199155420064926,
- -0.06404638290405273,
- -0.05605573207139969,
- -0.01889423467218876,
- -0.012433343566954136,
- -0.009539750404655933,
- 0.1160745844244957,
- 0.03795585036277771,
- -0.045511644333601,
- -0.023573167622089386,
- -0.07028444856405258,
- 0.04896928742527962,
- 0.01293944288045168,
- 0.009762868285179138,
- -0.0395686998963356,
- 0.08673720806837082,
- -0.05471804738044739,
- -0.044670626521110535,
- -0.051637936383485794,
- -0.023736335337162018,
- -0.06945465505123138,
- -0.020784953609108925,
- -0.02281775139272213,
- 0.013953147456049919,
- 0.05215625837445259,
- 0.04610741510987282,
- 0.00969733577221632,
- 0.058791570365428925,
- -0.0366961844265461,
- -0.041572973132133484,
- 0.04184465855360031,
- -0.00795125961303711,
- 0.007482863496989012,
- -0.02085314318537712,
- 0.07594349980354309,
- 0.040214814245700836,
- 0.04176604375243187,
- -0.027975941076874733,
- -0.05777979642152786,
- 0.1242758259177208,
- -0.02596254274249077,
- -0.05773637816309929,
- 0.1277548372745514,
- 0.026188887655735016,
- -0.054996516555547714,
- -0.02985437959432602,
- -0.09668098390102386,
- 0.036376964300870895,
- -0.08757460862398148,
- -0.07229246944189072,
- 0.01209974754601717,
- -0.04361698403954506,
- -0.02468266710639,
- -0.05425925925374031,
- -0.057782914489507675,
- 0.02293933369219303,
- 0.04218416288495064,
- 0.014826586470007896,
- -0.0018858471885323524,
- 0.015077533200383186,
- 0.043292928487062454,
- 0.004320959094911814,
- 0.04092159867286682,
- 0.006113194394856691,
- -0.06381462514400482,
- 0.019421322271227837,
- 0.019937904551625252,
- 0.0036455169320106506,
- 0.007713907863944769,
- 0.06902476400136948,
- -0.08421898633241653,
- -0.02602432854473591,
- 0.0374913327395916,
- 0.012074043974280357,
- 0.02417265810072422,
- 0.06605308502912521,
- -0.05513814091682434,
- -0.03362166881561279,
- 0.2418196201324463,
- 0.04446806386113167,
- -0.07222240418195724,
- -0.04754682630300522,
- 0.027060668915510178,
- -0.03983522206544876,
- -0.016524046659469604,
- -0.057917650789022446,
- 0.032167285680770874,
- -0.019472895190119743,
- -0.07486328482627869,
- -0.009121079929172993,
- -0.054495781660079956,
- -0.029381750151515007,
- 0.017313247546553612,
- 0.007769725285470486,
- 0.00874624028801918,
- -0.07594623416662216,
- -0.023876095190644264,
- -0.02951892465353012,
- -0.01573498547077179,
- 0.026992402970790863,
- 0.007844412699341774,
- -0.01709931530058384,
- -0.03913528844714165,
- 0.07128065824508667,
- -0.0655769482254982,
- 0.05249752104282379,
- -5.847396363803665e-33,
- 0.011796209961175919,
- -0.005109232850372791,
- -0.037162523716688156,
- 0.027510860934853554,
- -0.0289462897926569,
- 0.0472942516207695,
- 0.012376693077385426,
- -0.06119995191693306,
- -0.06720510870218277,
- 0.014320781454443932,
- 0.03878620266914368,
- -0.03580146282911301,
- -0.022104855626821518,
- 0.04185120761394501,
- 0.12549008429050446,
- -0.03401581570506096,
- 0.05815475434064865,
- 0.006162757053971291,
- -0.03268584609031677,
- -0.07137387990951538,
- -0.05241483822464943,
- 0.03780769556760788,
- 0.0071135773323476315,
- 0.046020571142435074,
- -0.013738359324634075,
- 0.009784670546650887,
- 0.015942396596074104,
- -0.0204154122620821,
- -0.0399274043738842,
- 0.017677130177617073,
- -0.03443675860762596,
- -0.030035201460123062,
- 0.02400903031229973,
- -0.0004858039610553533,
- 0.060916218906641006,
- 0.011540111154317856,
- -0.0013956337934359908,
- -0.028459914028644562,
- 0.030699392780661583,
- -0.03861572593450546,
- 0.03856537118554115,
- -0.0075152856297791,
- 0.03813363239169121,
- 0.00023978618264663965,
- 0.11067119985818863,
- 0.07115965336561203,
- 0.043078117072582245,
- 0.03812491521239281,
- 0.10464895516633987,
- 0.07265783846378326,
- -0.013917253352701664,
- -0.1021857038140297,
- 0.04208587855100632,
- 0.06256219744682312,
- -0.03232472017407417,
- 0.03196562081575394,
- -0.03688189014792442,
- -0.01822926476597786,
- 0.04204576089978218,
- -0.02659519761800766,
- 0.01767408661544323,
- 0.01952565461397171,
- 0.025829104706645012,
- 0.004411640577018261,
- 0.020475732162594795,
- -0.08105775713920593,
- 0.04192174971103668,
- -0.008007118478417397,
- 0.06955315172672272,
- 0.030923858284950256,
- -0.09907088428735733,
- -0.07173491269350052,
- 0.03539511561393738,
- 0.06284534931182861,
- -0.05981980264186859,
- 0.048041194677352905,
- -0.045198142528533936,
- -0.007684997282922268,
- -0.04330625385046005,
- 0.014149091206490993,
- -0.10086804628372192,
- -0.005361281335353851,
- -0.04186124727129936,
- 0.028327664360404015,
- 0.09924782812595367,
- -0.003947022836655378,
- -0.021357782185077667,
- -0.03618490323424339,
- 0.06965939700603485,
- 0.05951322242617607,
- 0.03749259188771248,
- 0.09417319297790527,
- -0.0018437668913975358,
- 0.022124744951725006,
- -0.02108127996325493,
- 4.268252681272358e-33,
- -0.04054773226380348,
- -0.05230220779776573,
- 0.0690109133720398,
- -0.027965176850557327,
- 0.018617834895849228,
- 0.038182053714990616,
- -0.0835670605301857,
- -0.05365205928683281,
- 0.0006467608618550003,
- 0.050004228949546814,
- 0.03314986079931259,
- 0.03970942273736,
- 0.08478902280330658,
- -0.00347211048938334,
- -0.011535552330315113,
- 0.07691311091184616,
- 0.11393509805202484,
- 0.02033660188317299,
- -0.02811550162732601,
- 0.043694864958524704,
- -0.01879418082535267,
- -0.026276519522070885,
- 0.04100075364112854,
- -0.06903237849473953,
- -0.015117185190320015,
- -0.03686515986919403,
- 0.10575540363788605,
- 0.06931248307228088,
- -0.07087293267250061,
- 0.09686167538166046,
- 0.04683930054306984,
- 0.04065996780991554,
- -0.10377933084964752,
- 0.03487857058644295,
- -0.0257374569773674,
- 0.030236857011914253,
- 0.14638713002204895,
- 0.043335989117622375,
- -0.024405112490057945,
- -0.09912621974945068,
- 0.024604633450508118,
- 0.025586115196347237,
- -0.09027590602636337,
- 0.019530290737748146,
- -0.01657651737332344,
- 0.01783161051571369,
- 0.043358929455280304,
- -0.07504677027463913,
- -0.0434219054877758,
- 0.03018784150481224,
- -0.03856261447072029,
- -0.00012170924310339615,
- 0.07960166782140732,
- -0.006409114226698875,
- -0.02854268066585064,
- -0.04832137003540993,
- 0.037047553807497025,
- 0.06352096050977707,
- 0.04471852630376816,
- -0.012161428108811378,
- 0.02922379970550537,
- 0.07819744199514389,
- 0.045581214129924774,
- -0.1023949459195137,
- 0.013811718672513962,
- -0.04862476885318756,
- 0.032459475100040436,
- -0.006358205806463957,
- -0.11127232760190964,
- 0.013748494908213615,
- -0.1245407983660698,
- 0.014707577414810658,
- 0.002490042708814144,
- -0.02496993914246559,
- 0.060757726430892944,
- -0.0009523610933683813,
- -0.07814376801252365,
- 0.04396524652838707,
- -0.04159431904554367,
- 0.007008916698396206,
- -0.0362158939242363,
- -0.06438232958316803,
- -0.007195927668362856,
- -0.022852357476949692,
- -0.011036486364901066,
- -0.11397773027420044,
- 0.057323385030031204,
- 0.003462276654317975,
- 0.031126756221055984,
- -0.0961117148399353,
- 0.07107551395893097,
- 0.04398972913622856,
- -0.035401199012994766,
- -0.008736548945307732,
- 0.014434373937547207,
- -1.2173615004940075e-8,
- -0.006629812065511942,
- -0.05506208539009094,
- -0.057178668677806854,
- -0.001658025081269443,
- 0.04103823006153107,
- 0.013301285915076733,
- 0.0017825992545112967,
- 0.022838355973362923,
- 0.01148700900375843,
- -0.013436555862426758,
- 0.1075606569647789,
- -0.014605365693569183,
- 0.03464297577738762,
- 0.06398838013410568,
- -0.015164337120950222,
- 0.024472203105688095,
- -0.15549734234809875,
- 0.05922480300068855,
- -0.07114674150943756,
- -0.009645559825003147,
- 0.05367216095328331,
- 0.000024857386961230077,
- 0.08653625100851059,
- -0.0314798578619957,
- 0.08566271513700485,
- -0.08012431859970093,
- 0.09510048478841782,
- -0.010475900024175644,
- -0.028397349640727043,
- -0.011318398639559746,
- -0.012406300753355026,
- 0.037987131625413895,
- -0.030785128474235535,
- 0.0043060677126049995,
- 0.08667858690023422,
- -0.005405005998909473,
- -0.009846079163253307,
- 0.05692119896411896,
- 0.0493435300886631,
- -0.06522360444068909,
- 0.034243080765008926,
- 0.03322802111506462,
- 0.050495218485593796,
- -0.02977612242102623,
- -0.01566191203892231,
- -0.029114171862602234,
- -0.03232668712735176,
- 0.03269690275192261,
- 0.008805971592664719,
- -0.0035662674345076084,
- -0.023167449980974197,
- 0.009659446775913239,
- -0.020441027358174324,
- 0.015201407484710217,
- 0.04183812066912651,
- -0.006884150672703981,
- 0.0010801390744745731,
- 0.040189314633607864,
- -0.04340651258826256,
- 0.03158630430698395,
- 0.030062971636652946,
- 0.12440761923789978,
- -0.018660282716155052,
- -0.09687291830778122
- ]
- },
- {
- "keyword": "setup",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.03718293085694313,
- 0.035343706607818604,
- -0.04332397133111954,
- 0.015103789046406746,
- -0.08526322990655899,
- 0.031910110265016556,
- 0.046909399330616,
- 0.04248901084065437,
- -0.08092214912176132,
- 0.017976954579353333,
- 0.041318826377391815,
- -0.04576903209090233,
- 0.04159950092434883,
- -0.03293246403336525,
- -0.05229295790195465,
- 0.04143618419766426,
- 0.03695956617593765,
- -0.04504293203353882,
- -0.03601448982954025,
- -0.04452495649456978,
- -0.09503768384456635,
- -0.11210868507623672,
- 0.03441091254353523,
- -0.07117300480604172,
- -0.019227299839258194,
- 0.047896627336740494,
- 0.022114187479019165,
- 0.10119933634996414,
- 0.020087940618395805,
- -0.09017853438854218,
- 0.036690399050712585,
- -0.0573841854929924,
- 0.03798362612724304,
- 0.017375586554408073,
- -0.058358535170555115,
- -0.034650590270757675,
- 0.07907689362764359,
- -0.05296482518315315,
- 0.010304464027285576,
- -0.004833112005144358,
- -0.0347023531794548,
- -0.061865273863077164,
- -0.028323844075202942,
- -0.021443737670779228,
- -0.02824792079627514,
- 0.08274531364440918,
- 0.039805054664611816,
- 0.07896485179662704,
- 0.10059156268835068,
- -0.013229320757091045,
- 0.008272875100374222,
- -0.015177464112639427,
- -0.02935664728283882,
- 0.02530568651854992,
- -0.04616815596818924,
- 0.06150120124220848,
- -0.015692824497818947,
- 0.02888672798871994,
- 0.0028146817348897457,
- -0.07823628187179565,
- 0.12680943310260773,
- 0.03169959783554077,
- -0.041190747171640396,
- 0.07142546772956848,
- 0.02200186997652054,
- -0.004167469218373299,
- -0.012043834663927555,
- -0.0018609906546771526,
- 0.01092841848731041,
- -0.0437445342540741,
- -0.05420713871717453,
- 0.0294908806681633,
- 0.011111948639154434,
- 0.01787305809557438,
- 0.0010821915930137038,
- -0.01644062250852585,
- 0.0918760597705841,
- -0.02106010541319847,
- 0.10644789785146713,
- -0.0188109390437603,
- 0.0077704694122076035,
- 0.10497124493122101,
- -0.05848146602511406,
- 0.079551100730896,
- 0.008197017014026642,
- -0.077491395175457,
- 0.012560844421386719,
- 0.06687898933887482,
- -0.008798660710453987,
- -0.013986358419060707,
- 0.035324785858392715,
- -0.03829994425177574,
- -0.027723515406250954,
- 0.019600996747612953,
- 0.006160758435726166,
- 0.04083092510700226,
- 0.02693275921046734,
- -0.07596123218536377,
- -0.035409823060035706,
- 0.22429430484771729,
- 0.04966999962925911,
- -0.0429447703063488,
- 0.040039945393800735,
- 0.014563800767064095,
- -0.03179168328642845,
- -0.022426215931773186,
- -0.05536763370037079,
- 0.0363379567861557,
- 0.024347973987460136,
- -0.09696060419082642,
- -0.016220008954405785,
- -0.0336042121052742,
- -0.04965351149439812,
- 0.027824895456433296,
- -0.004535678308457136,
- 0.04451173171401024,
- -0.0374971367418766,
- 0.04330216720700264,
- 0.024049976840615273,
- -0.047270260751247406,
- 0.021345583721995354,
- -0.010690809227526188,
- 0.034064121544361115,
- -0.035074420273303986,
- 0.030951064079999924,
- -0.0085432855412364,
- 0.04096246510744095,
- -3.892953334569296e-33,
- -0.002573010977357626,
- 0.027513807639479637,
- -0.06903794407844543,
- 0.10183684527873993,
- 0.03804811090230942,
- 0.04297907277941704,
- 0.001927560311742127,
- -0.02773873321712017,
- -0.0289271529763937,
- 0.031969815492630005,
- 0.04247204586863518,
- -0.014427253976464272,
- -0.02873619832098484,
- 0.04318863898515701,
- 0.09423646330833435,
- -0.07497531175613403,
- 0.11946265399456024,
- 0.02059612050652504,
- 0.010451282374560833,
- -0.04161311686038971,
- -0.1183159351348877,
- -0.04826618358492851,
- 0.00020798001787625253,
- 0.024024875834584236,
- 0.03216186910867691,
- 0.052122507244348526,
- 0.03609619662165642,
- -0.02060527727007866,
- -0.009219507686793804,
- 0.01833827793598175,
- 0.016950227320194244,
- -0.034024324268102646,
- -0.04764150455594063,
- 0.05289909243583679,
- 0.051980841904878616,
- -0.021920055150985718,
- -0.03254877030849457,
- -0.03187771141529083,
- 0.00910416804254055,
- -0.022472649812698364,
- -0.014387992210686207,
- -0.004855453968048096,
- -0.006990291643887758,
- -0.06615198403596878,
- -0.018443670123815536,
- 0.09068823605775833,
- 0.03849530592560768,
- 0.07840921729803085,
- 0.040613893419504166,
- 0.09207764267921448,
- -0.05713489651679993,
- -0.029124310240149498,
- -0.05308270454406738,
- 0.05849606916308403,
- 0.027047710493206978,
- 0.0030778388027101755,
- -0.002119131851941347,
- -0.092043936252594,
- 0.06035159155726433,
- -0.005693281069397926,
- 0.0537334568798542,
- 0.016845881938934326,
- -0.022769831120967865,
- 0.005034193862229586,
- -0.023561526089906693,
- -0.04664512723684311,
- 0.033174119889736176,
- -0.08476148545742035,
- 0.07654684782028198,
- -0.00007847175584174693,
- -0.09589873254299164,
- -0.04983394220471382,
- 0.06717237830162048,
- 0.0933113694190979,
- -0.02673432230949402,
- 0.06994713097810745,
- -0.06262423098087311,
- 0.06067216396331787,
- -0.09297037869691849,
- 0.02849690243601799,
- -0.06549547612667084,
- 0.04138947278261185,
- -0.03450271487236023,
- 0.10789431631565094,
- 0.03098994866013527,
- 0.008128301240503788,
- -0.0330226793885231,
- -0.05786006152629852,
- -0.035095781087875366,
- 0.07668711990118027,
- -0.06416488438844681,
- 0.038001835346221924,
- 0.048022445291280746,
- 0.047533657401800156,
- -0.021815752610564232,
- 3.891735228548256e-33,
- -0.07280958443880081,
- 0.016540152952075005,
- 0.01464543491601944,
- -0.027579698711633682,
- 0.10469318926334381,
- -0.020764552056789398,
- 0.03790225088596344,
- -0.09338612109422684,
- 0.02853030525147915,
- 0.07316920906305313,
- -0.016251347959041595,
- 0.011092613451182842,
- 0.050178855657577515,
- -0.02288498729467392,
- -0.06876471638679504,
- 0.07204634696245193,
- 0.11084000021219254,
- -0.005976416170597076,
- 0.03673313185572624,
- -0.0038786393124610186,
- -0.012561564333736897,
- -0.041766710579395294,
- -0.028923790901899338,
- -0.08193773776292801,
- -0.012997322715818882,
- 0.028805406764149666,
- 0.02039201557636261,
- 0.0630284920334816,
- -0.03954967483878136,
- 0.09415720403194427,
- -0.007014503236860037,
- -0.023052625358104706,
- -0.004663797561079264,
- 0.0390879362821579,
- -0.06754845380783081,
- 0.055099792778491974,
- 0.0895754024386406,
- 0.055399827659130096,
- -0.047786202281713486,
- -0.09284425526857376,
- 0.09730477631092072,
- 0.025524558499455452,
- -0.16053712368011475,
- 0.09193997830152512,
- -0.027894912287592888,
- 0.0018436550162732601,
- 0.03036477603018284,
- -0.024654170498251915,
- -0.03561699390411377,
- 0.007639015559107065,
- -0.11971550434827805,
- -0.03088178113102913,
- 0.01834755949676037,
- -0.07158629596233368,
- -0.018533438444137573,
- -0.04660516604781151,
- 0.07157359272241592,
- 0.03910724073648453,
- 0.0077080256305634975,
- 0.050099778920412064,
- -0.010971575044095516,
- 0.0016028182581067085,
- -0.024830812588334084,
- 0.03728574514389038,
- -0.04127481207251549,
- -0.031791940331459045,
- 0.03524520993232727,
- 0.03802948817610741,
- -0.046369973570108414,
- 0.011208303272724152,
- -0.1356600821018219,
- 0.013653410598635674,
- 0.08881894499063492,
- -0.03634006530046463,
- -0.015574091114103794,
- -0.02878139354288578,
- -0.08205093443393707,
- 0.014613010920584202,
- 0.02929026260972023,
- 0.025102416053414345,
- -0.05359213799238205,
- -0.048023030161857605,
- -0.03620319440960884,
- 0.013123640790581703,
- -0.00916243065148592,
- -0.07587466388940811,
- 0.05967997759580612,
- 0.04825755953788757,
- 0.011721464805305004,
- -0.061916522681713104,
- 0.04089203476905823,
- 0.011155148036777973,
- -0.024903804063796997,
- 0.014532242901623249,
- -0.001226114691235125,
- -1.1818082512604633e-8,
- 0.005511470139026642,
- 0.012878414243459702,
- -0.03363297879695892,
- 0.01713399775326252,
- -0.020867738872766495,
- 0.009699798189103603,
- 0.058930665254592896,
- 0.003933303989470005,
- -0.02489073947072029,
- -0.00020614198001567274,
- 0.05004746466875076,
- 0.0005936156958341599,
- 0.027715038508176804,
- 0.09806624799966812,
- -0.027655327692627907,
- -0.0078300004824996,
- -0.09863205254077911,
- 0.056220218539237976,
- -0.10250593721866608,
- -0.0034474721178412437,
- 0.023373935371637344,
- -0.0032400405034422874,
- 0.05728508532047272,
- 0.037224795669317245,
- 0.05885186418890953,
- -0.055340178310871124,
- 0.0547555647790432,
- 0.025445224717259407,
- -0.02245967648923397,
- 0.05006019398570061,
- -0.004731351044028997,
- 0.04225817695260048,
- -0.059295520186424255,
- 0.005712925922125578,
- -0.03503071889281273,
- -0.01559742446988821,
- -0.08633393794298172,
- 0.017834031954407692,
- 0.0746338814496994,
- -0.021244317293167114,
- 0.011839007958769798,
- -0.01816435530781746,
- -0.001667582313530147,
- -0.04296431317925453,
- -0.022730236873030663,
- 0.018171438947319984,
- -0.040405455976724625,
- -0.015655573457479477,
- -0.045004695653915405,
- -0.016941092908382416,
- -0.029374608770012856,
- 0.02765139564871788,
- 0.06853651255369186,
- 0.023822911083698273,
- 0.08679331094026566,
- 0.021278196945786476,
- 0.0445982851088047,
- 0.01711202971637249,
- -0.037995029240846634,
- 0.07405292987823486,
- -0.00213803187943995,
- 0.0732821524143219,
- -0.06767150014638901,
- -0.045928578823804855
- ]
- },
- {
- "keyword": "hosting",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.017803918570280075,
- -0.013105222024023533,
- 0.04694744944572449,
- 0.04307441785931587,
- 0.0036215230356901884,
- -0.0783005803823471,
- -0.009864045307040215,
- -0.04181842878460884,
- 0.05269290506839752,
- 0.08663549274206161,
- -0.04465150833129883,
- 0.021766850724816322,
- 0.06491044908761978,
- 0.0018017299007624388,
- -0.01832513138651848,
- -0.048534780740737915,
- -0.03061957284808159,
- -0.038934074342250824,
- -0.03357367962598801,
- -0.030638910830020905,
- -0.12905816733837128,
- -0.0233966913074255,
- -0.010335753671824932,
- -0.03878864645957947,
- 0.0006416445830836892,
- 0.061738938093185425,
- -0.059336401522159576,
- 0.08958623558282852,
- 0.02334260195493698,
- -0.11105295270681381,
- -0.04922559857368469,
- -0.06002509593963623,
- 0.029581010341644287,
- 0.02884269878268242,
- 0.01817101053893566,
- 0.06777988374233246,
- 0.024305274710059166,
- -0.08225974440574646,
- -0.07127358019351959,
- 0.0323919840157032,
- 0.05786551535129547,
- -0.001086036441847682,
- 0.017557723447680473,
- -0.04437308385968208,
- -0.04588289186358452,
- 0.06193207576870918,
- 0.02428978681564331,
- 0.044591277837753296,
- 0.0045493533834815025,
- 0.04020180180668831,
- 0.049501098692417145,
- 0.014583012089133263,
- -0.004264169372618198,
- 0.011482272297143936,
- -0.04966476187109947,
- -0.0327276811003685,
- -0.00007422169437631965,
- -0.007072803098708391,
- -0.002062124665826559,
- -0.0077951829880476,
- 0.07493683695793152,
- 0.0015204037772491574,
- -0.07341014593839645,
- 0.04891949146986008,
- 0.044261228293180466,
- -0.02912347950041294,
- 0.01613125018775463,
- 0.05088898912072182,
- -0.04584011808037758,
- -0.03641997277736664,
- -0.06226779893040657,
- 0.023723451420664787,
- -0.04230796918272972,
- 0.05163397267460823,
- 0.07944030314683914,
- -0.0939875990152359,
- 0.09075567871332169,
- 0.01398046500980854,
- 0.07508452981710434,
- -0.0028745566960424185,
- 0.07990005612373352,
- -0.03307066857814789,
- -0.06745024025440216,
- 0.037547945976257324,
- -0.08479667454957962,
- -0.09000353515148163,
- 0.058602530509233475,
- 0.05953352153301239,
- -0.019501181319355965,
- -0.010107207112014294,
- 0.019079146906733513,
- 0.020516501739621162,
- 0.07654286921024323,
- 0.011742767877876759,
- -0.11555275321006775,
- 0.021018359810113907,
- 0.0458391010761261,
- 0.005805860739201307,
- -0.0575706847012043,
- 0.22990748286247253,
- 0.03926879167556763,
- -0.026878926903009415,
- 0.008947390131652355,
- -0.033028021454811096,
- 0.001494753872975707,
- 0.027482381090521812,
- 0.025648774579167366,
- 0.09740792959928513,
- 0.03462514281272888,
- -0.041598208248615265,
- -0.10848770290613174,
- -0.01738707907497883,
- -0.0004472846048884094,
- 0.018449341878294945,
- 0.028640026226639748,
- -0.034181494265794754,
- -0.02839922159910202,
- 0.06142321228981018,
- 0.08439723402261734,
- -0.03585124388337135,
- 0.0270366370677948,
- -0.017804516479372978,
- -0.02595173753798008,
- -0.035033632069826126,
- 0.003110234858468175,
- -0.0553211085498333,
- 0.02985472045838833,
- -4.9207163308260383e-33,
- 0.05909908190369606,
- -0.010070444084703922,
- -0.03998277336359024,
- -0.041448045521974564,
- 0.08355806767940521,
- 0.04868265613913536,
- 0.006259049288928509,
- 0.049641501158475876,
- -0.09708187729120255,
- 0.05756088346242905,
- 0.04650678485631943,
- -0.03321567922830582,
- 0.011545756831765175,
- 0.0050698816776275635,
- 0.06938453763723373,
- 0.007369097322225571,
- 0.07037176936864853,
- 0.05071968585252762,
- 0.05837502330541611,
- -0.030943885445594788,
- -0.0902651995420456,
- 0.020888227969408035,
- 0.007718989625573158,
- 0.13980689644813538,
- 0.05385216325521469,
- -0.06322415173053741,
- -0.007679780945181847,
- 0.0040280744433403015,
- 0.10037778317928314,
- -0.014491448178887367,
- 0.04444103315472603,
- -0.0765729621052742,
- -0.10374663770198822,
- 0.009034084156155586,
- 0.017328545451164246,
- 0.02800622396171093,
- 0.04023055359721184,
- -0.07478979229927063,
- 0.00020534818759188056,
- 0.018417485058307648,
- -0.04960094392299652,
- 0.030583595857024193,
- -0.0744985044002533,
- 0.037008654326200485,
- -0.03128015249967575,
- 0.06031801551580429,
- 0.06246865540742874,
- -0.014631698839366436,
- -0.035057734698057175,
- 0.07922011613845825,
- -0.029356159269809723,
- -0.07212363928556442,
- 0.0020678893197327852,
- 0.07800319045782089,
- -0.010723103769123554,
- 0.12286420911550522,
- 0.035235654562711716,
- -0.07053735852241516,
- 0.05705595761537552,
- -0.022470533847808838,
- 0.004938516300171614,
- -0.02935854345560074,
- -0.10881710797548294,
- -0.023616090416908264,
- -0.053113024681806564,
- -0.06287743896245956,
- 0.047627463936805725,
- -0.015508602373301983,
- 0.060984354466199875,
- 0.008116744458675385,
- -0.050238773226737976,
- -0.01837078295648098,
- 0.03132766857743263,
- 0.048682402819395065,
- -0.1032525971531868,
- 0.08152016252279282,
- -0.09857649356126785,
- -0.03525162488222122,
- -0.014017431996762753,
- 0.036937568336725235,
- 0.02270050160586834,
- -0.009690366685390472,
- 0.017347920686006546,
- 0.034340959042310715,
- -0.022268550470471382,
- -0.004255232866853476,
- 0.026493694633245468,
- -0.02730654366314411,
- 0.017768722027540207,
- 0.09351923316717148,
- -0.0721856877207756,
- -0.002246781485155225,
- 0.050480637699365616,
- 0.03539946302771568,
- -0.02036244422197342,
- 4.538801154979754e-33,
- -0.1039409413933754,
- -0.028851889073848724,
- -0.09790249168872833,
- 0.05657301843166351,
- 0.013214397244155407,
- -0.020432904362678528,
- 0.0043071177788078785,
- -0.039473820477724075,
- -0.030460333451628685,
- -0.0840797945857048,
- -0.004723554942756891,
- 0.003918448928743601,
- 0.028789808973670006,
- 0.013872657902538776,
- -0.07911047339439392,
- -0.026258626952767372,
- -0.004062907304614782,
- -0.04434477537870407,
- -0.04537445306777954,
- 0.014095119200646877,
- -0.0743253231048584,
- 0.016320176422595978,
- -0.001903829863294959,
- 0.0004102301027160138,
- 0.020060911774635315,
- 0.03827185556292534,
- 0.014280349016189575,
- 0.08506479114294052,
- -0.0922672301530838,
- 0.02271391823887825,
- 0.06887131929397583,
- -0.05310559272766113,
- -0.045720625668764114,
- 0.04848780483007431,
- -0.012203420512378216,
- 0.07739303261041641,
- 0.011260339990258217,
- 0.08994878828525543,
- -0.015416231006383896,
- 0.01360398344695568,
- 0.0734097883105278,
- -0.0007419786415994167,
- -0.007500410545617342,
- 0.03667759895324707,
- -0.03996025398373604,
- 0.008669019676744938,
- -0.10742443054914474,
- -0.009001470170915127,
- 0.042530033737421036,
- 0.026317697018384933,
- -0.09623546898365021,
- -0.09179428219795227,
- 0.04462656006217003,
- -0.08876827359199524,
- -0.008846232667565346,
- 0.006548495031893253,
- -0.07665187865495682,
- 0.016850179061293602,
- 0.018467657268047333,
- 0.05253418907523155,
- 0.0602899007499218,
- 0.002480963012203574,
- -0.008845454081892967,
- 0.047681115567684174,
- -0.0413140133023262,
- 0.019795507192611694,
- 0.0792979970574379,
- -0.029229065403342247,
- -0.0042440458200871944,
- 0.049026455730199814,
- -0.02773943915963173,
- 0.018444813787937164,
- -0.04817710816860199,
- 0.03715814650058746,
- -0.017960282042622566,
- 0.007371301297098398,
- 0.011232724413275719,
- 0.04368480294942856,
- -0.01153269037604332,
- 0.03563070297241211,
- 0.01735130324959755,
- 0.0032360628247261047,
- 0.009839286096394062,
- -0.012799120508134365,
- 0.010182317346334457,
- -0.11248531937599182,
- 0.09568402171134949,
- 0.003676182357594371,
- -0.020900946110486984,
- -0.05886860564351082,
- 0.020830295979976654,
- 0.025631427764892578,
- -0.04538628086447716,
- -0.01733624003827572,
- 0.05375295504927635,
- -1.111670044906532e-8,
- 0.032790955156087875,
- -0.02100132219493389,
- 0.003226261120289564,
- -0.01837950572371483,
- -0.008701153099536896,
- -0.01777881756424904,
- 0.0521576851606369,
- -0.06516106426715851,
- 0.06680887937545776,
- 0.052760232239961624,
- -0.012450850568711758,
- -0.07531857490539551,
- 0.015075918287038803,
- 0.008562237955629826,
- 0.04319841414690018,
- -0.011053455993533134,
- -0.0356086790561676,
- 0.04758307337760925,
- -0.07574553787708282,
- -0.04195558652281761,
- -0.013285008259117603,
- 0.04753318056464195,
- 0.06355204433202744,
- -0.03713231906294823,
- 0.015991073101758957,
- -0.03954559192061424,
- 0.09013176709413528,
- 0.020844336599111557,
- -0.0079483762383461,
- 0.030987711623311043,
- -0.010892423801124096,
- 0.060742273926734924,
- 0.015686804428696632,
- -0.08642665296792984,
- 0.007462217006832361,
- 0.0016525088576599956,
- -0.12978443503379822,
- -0.03432242199778557,
- -0.01847441866993904,
- -0.04937562346458435,
- 0.01419625524431467,
- 0.06693559885025024,
- 0.08362659811973572,
- -0.04099108651280403,
- 0.04629507288336754,
- -0.043930280953645706,
- 0.0795934647321701,
- 0.006661455146968365,
- -0.01795829087495804,
- -0.023867078125476837,
- -0.010794318281114101,
- 0.03985161334276199,
- 0.08428984135389328,
- 0.05659457668662071,
- 0.06710205227136612,
- -0.01197128277271986,
- 0.05332086235284805,
- 0.06483111530542374,
- -0.03913380205631256,
- 0.10830068588256836,
- 0.02322405017912388,
- 0.03215780109167099,
- 0.014725192449986935,
- -0.01742617040872574
- ]
- },
- {
- "keyword": "cloud",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.032112836837768555,
- -0.026808258146047592,
- 0.023089870810508728,
- -0.027599016204476357,
- 0.042313676327466965,
- -0.006453402806073427,
- 0.07874118536710739,
- -0.06089657545089722,
- 0.08184318244457245,
- 0.04945475235581398,
- 0.018567560240626335,
- 0.0032672209199517965,
- 0.01592343859374523,
- -0.050873804837465286,
- -0.010055073536932468,
- 0.0026218704879283905,
- 0.033752575516700745,
- -0.08485953509807587,
- -0.10203980654478073,
- -0.05247127264738083,
- -0.0857791006565094,
- 0.030701907351613045,
- -0.05760331451892853,
- 0.015131873078644276,
- 0.0037326859310269356,
- 0.09627968817949295,
- -0.06784020364284515,
- 0.0158685389906168,
- -0.014545136131346226,
- -0.14926163852214813,
- 0.02168377861380577,
- -0.02909812144935131,
- 0.013896076940000057,
- 0.09092474728822708,
- -0.007495636586099863,
- -0.023478874936699867,
- -0.015805719420313835,
- -0.05730117857456207,
- -0.029120823368430138,
- -0.01931413635611534,
- -0.011081034317612648,
- -0.1335669606924057,
- -0.05537464842200279,
- -0.001203696127049625,
- 0.03543080762028694,
- -0.006424219813197851,
- 0.02218448743224144,
- -0.0011210432276129723,
- 0.04623562842607498,
- 0.07764794677495956,
- -0.009985987097024918,
- -0.06337564438581467,
- -0.03616489842534065,
- 0.04567309468984604,
- -0.055854443460702896,
- -0.007544735446572304,
- -0.03928050026297569,
- 0.082598015666008,
- 0.0007452922873198986,
- -0.019160566851496696,
- 0.024567926302552223,
- -0.05308452993631363,
- -0.016495119780302048,
- 0.0665561631321907,
- 0.05279386416077614,
- 0.05328964442014694,
- 0.008593803271651268,
- 0.06439173966646194,
- -0.005908886436372995,
- -0.05088287219405174,
- 0.00039217411540448666,
- 0.021266747266054153,
- -0.03824474290013313,
- 0.02907480299472809,
- 0.029912222176790237,
- -0.017718994989991188,
- 0.04808804765343666,
- -0.028958192095160484,
- 0.06444749981164932,
- 0.04437505081295967,
- 0.06156228482723236,
- 0.03470493108034134,
- -0.03287224844098091,
- 0.07277693599462509,
- -0.055037885904312134,
- -0.036079756915569305,
- 0.03041326068341732,
- -0.017086321488022804,
- -0.04985160380601883,
- -0.06283550709486008,
- -0.025293009355664253,
- -0.008019146509468555,
- 0.10640831291675568,
- 0.060138292610645294,
- -0.09246567636728287,
- 0.009432557970285416,
- 0.05609491094946861,
- -0.08111775666475296,
- -0.027929842472076416,
- 0.21964406967163086,
- -0.025807766243815422,
- 0.04562215879559517,
- 0.021783770993351936,
- -0.035305991768836975,
- 0.07232122868299484,
- -0.028744889423251152,
- -0.03146742656826973,
- 0.040641024708747864,
- 0.023070350289344788,
- -0.0011637386633083224,
- -0.07420129328966141,
- -0.05795339122414589,
- -0.07950955629348755,
- -0.007524318527430296,
- 0.03204759955406189,
- 0.0034947830718010664,
- 0.0066522653214633465,
- 0.04821992665529251,
- -0.03694811835885048,
- -0.03423269838094711,
- 0.04068479314446449,
- -0.06570924073457718,
- 0.03616179898381233,
- -0.0004884142545051873,
- -0.05866207554936409,
- -0.03413383290171623,
- -0.07095664739608765,
- -4.2989455734562974e-33,
- 0.040452584624290466,
- -0.04740608111023903,
- 0.07810673862695694,
- -0.0403347983956337,
- 0.1012340784072876,
- -0.0378376841545105,
- -0.015414833091199398,
- -0.03239323943853378,
- -0.10507016628980637,
- 0.01628330536186695,
- -0.10569097101688385,
- 0.047096531838178635,
- -0.01127634383738041,
- 0.01190274115651846,
- 0.15385065972805023,
- -0.022124040871858597,
- -0.017086198553442955,
- 0.0786910429596901,
- 0.060035381466150284,
- -0.04483550414443016,
- -0.06712239980697632,
- 0.009011977352201939,
- 0.02641149051487446,
- 0.04395296052098274,
- 0.03620981052517891,
- -0.04745333641767502,
- 0.05271058529615402,
- -0.07232508808374405,
- 0.08976593613624573,
- 0.006971457507461309,
- 0.02601383440196514,
- 0.011571299284696579,
- 0.027634721249341965,
- -0.03090139850974083,
- 0.0026125097647309303,
- -0.042180005460977554,
- -0.052046868950128555,
- -0.05117330700159073,
- 0.009256139397621155,
- 0.03921826556324959,
- -0.014995880424976349,
- 0.0417330227792263,
- -0.05954230949282646,
- -0.00019817744032479823,
- -0.005391920916736126,
- 0.009622730314731598,
- 0.05869968235492706,
- 0.00822317972779274,
- 0.0004227070021443069,
- 0.061615798622369766,
- -0.03757442533969879,
- 0.0026228136848658323,
- -0.03742636740207672,
- 0.01851348578929901,
- -0.00265324953943491,
- 0.0005441884277388453,
- 0.02917254902422428,
- 0.013079274445772171,
- 0.04057927057147026,
- 0.018652239814400673,
- -0.008463187143206596,
- -0.023246536031365395,
- 0.017502490431070328,
- -0.04316175729036331,
- -0.023376448079943657,
- -0.08530370146036148,
- -0.006720315665006638,
- 0.06151053309440613,
- 0.05546730384230614,
- 0.031312987208366394,
- -0.03745710477232933,
- 0.002432234352454543,
- 0.09947290271520615,
- -0.003518827026709914,
- 0.05422331392765045,
- -0.030872687697410583,
- -0.0409691147506237,
- -0.019184600561857224,
- -0.10223515331745148,
- -0.015910528600215912,
- -0.05700632557272911,
- 0.011657962575554848,
- -0.0485810860991478,
- 0.03867775574326515,
- -0.06834020465612411,
- 0.025585070252418518,
- -0.00968250073492527,
- -0.02530491165816784,
- -0.06054052338004112,
- 0.07235760241746902,
- -0.09486725181341171,
- -0.030708489939570427,
- 0.13524721562862396,
- -0.04770563915371895,
- -0.07535379379987717,
- 3.800297196417637e-33,
- -0.0818956270813942,
- -0.10104645043611526,
- -0.07863418757915497,
- 0.14221502840518951,
- 0.0627174973487854,
- -0.012734498828649521,
- 0.06717319786548615,
- 0.0273900106549263,
- -0.07307571172714233,
- 0.11846884340047836,
- -0.04293791577219963,
- 0.015777776017785072,
- 0.050753477960824966,
- 0.006996022071689367,
- -0.007712959311902523,
- 0.057744335383176804,
- -0.018849710002541542,
- -0.1282733827829361,
- -0.01300002820789814,
- 0.027359336614608765,
- -0.044824447482824326,
- -0.1440093070268631,
- 0.035882316529750824,
- 0.002332884818315506,
- -0.03255362808704376,
- 0.09322617202997208,
- -0.023991703987121582,
- 0.021810613572597504,
- 0.05248871073126793,
- 0.023891016840934753,
- 0.02002292312681675,
- -0.01552489958703518,
- -0.051436349749565125,
- -0.0054764472879469395,
- 0.0033639371395111084,
- 0.03049759566783905,
- 0.05658978968858719,
- 0.03368771821260452,
- -0.05805465579032898,
- -0.061315156519412994,
- 0.043420225381851196,
- -0.08598316460847855,
- 0.009019436314702034,
- 0.04008720442652702,
- 0.03277699276804924,
- 0.015503554604947567,
- -0.04742985963821411,
- 0.09136203676462173,
- -0.07302240282297134,
- -0.007060260511934757,
- 0.003293665125966072,
- -0.0034888770896941423,
- 0.0012113747652620077,
- 0.0012415258679538965,
- 0.017229324206709862,
- 0.01474055927246809,
- -0.021214956417679787,
- 0.07315521687269211,
- -0.057833049446344376,
- 0.024351801723241806,
- 0.04740382358431816,
- -0.07897370308637619,
- -0.0010647564195096493,
- 0.06029897928237915,
- -0.027473755180835724,
- 0.0017768784891813993,
- 0.03794841095805168,
- 0.016538234427571297,
- -0.07646148651838303,
- 0.021700287237763405,
- -0.011570151895284653,
- -0.029501430690288544,
- 0.0069439164362847805,
- -0.0465376153588295,
- -0.04171658679842949,
- -0.023554829880595207,
- -0.06789393723011017,
- 0.0027080110739916563,
- -0.01623292826116085,
- 0.014582812786102295,
- -0.04596038535237312,
- 0.04448122903704643,
- -0.003442956367507577,
- 0.03304636478424072,
- 0.06380041688680649,
- -0.05432278290390968,
- 0.10482791811227798,
- -0.010970501229166985,
- -0.044848423451185226,
- 0.019206279888749123,
- -0.03654051199555397,
- 0.011162122711539268,
- -0.063297338783741,
- 0.05239415168762207,
- -0.0029168049804866314,
- -1.2114320213640895e-8,
- -0.0064344266429543495,
- -0.005266711115837097,
- 0.08252859115600586,
- 0.020508579909801483,
- 0.047401778399944305,
- 0.020103327929973602,
- 0.08056452870368958,
- 0.08194106817245483,
- 0.04270806163549423,
- 0.04373979568481445,
- -0.025704797357320786,
- -0.08277283608913422,
- 0.013430575840175152,
- 0.04704008996486664,
- 0.07873626798391342,
- -0.000350241462001577,
- -0.0010659433901309967,
- -0.029778484255075455,
- -0.02079682983458042,
- -0.022507905960083008,
- -0.01344684325158596,
- 0.04684464633464813,
- -0.023032424971461296,
- 0.02449248731136322,
- 0.038956496864557266,
- 0.01870269700884819,
- 0.08482901006937027,
- 0.06309235095977783,
- -0.039573270827531815,
- 0.02112160250544548,
- -0.03388753905892372,
- 0.02148442529141903,
- -0.0040001217275857925,
- -0.08031833171844482,
- 0.037146762013435364,
- -0.029638269916176796,
- -0.03550952300429344,
- -0.014724340289831161,
- 0.004387921188026667,
- 0.025546018034219742,
- 0.007262825034558773,
- 0.041703034192323685,
- 0.04186432063579559,
- -0.07213912904262543,
- 0.029989609494805336,
- -0.03881232813000679,
- 0.053163446485996246,
- -0.01516819279640913,
- -0.015329410322010517,
- 0.06100820377469063,
- -0.005941897630691528,
- -0.011280336417257786,
- 0.029239611700177193,
- 0.056871309876441956,
- 0.10142899304628372,
- -0.011157484725117683,
- 0.03798096999526024,
- -0.03896636515855789,
- 0.007473520468920469,
- 0.12301672995090485,
- 0.11538010835647583,
- -0.010591087862849236,
- -0.0036930108908563852,
- 0.0347088985145092
- ]
- },
- {
- "keyword": "saas",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.048673179000616074,
- -0.00030511210206896067,
- -0.07662758231163025,
- 0.07002326846122742,
- -0.010318300686776638,
- 0.008194592781364918,
- 0.0701853483915329,
- -0.07059335708618164,
- 0.03397791087627411,
- 0.02934759296476841,
- 0.03797576576471329,
- -0.02105812542140484,
- 0.0342680960893631,
- -0.014222637750208378,
- 0.05100090429186821,
- -0.02594830095767975,
- 0.04330255463719368,
- -0.05979122221469879,
- -0.07429328560829163,
- -0.06182441487908363,
- 0.007099165115505457,
- -0.0265085157006979,
- -0.05911038815975189,
- 0.04519835114479065,
- 0.036345452070236206,
- 0.025336042046546936,
- 0.00442141480743885,
- -0.07288355380296707,
- -0.0380578339099884,
- -0.03732389956712723,
- 0.025730598717927933,
- 0.01792854256927967,
- 0.01797511987388134,
- 0.0247836671769619,
- -0.03138396888971329,
- 0.0345526859164238,
- 0.02952144667506218,
- -0.0775102898478508,
- 0.02503765933215618,
- 0.022061774507164955,
- -0.00544779933989048,
- -0.02708740346133709,
- 0.018176918849349022,
- -0.08557658642530441,
- 0.01208377443253994,
- -0.11690637469291687,
- -0.026304109022021294,
- 0.01892898418009281,
- 0.03231180086731911,
- 0.008867274969816208,
- 0.0036599505692720413,
- -0.09044935554265976,
- -0.07494622468948364,
- 0.008168627507984638,
- -0.0047599938698112965,
- -0.02426033839583397,
- -0.055545903742313385,
- -0.08032336086034775,
- 0.026643669232726097,
- -0.015566800720989704,
- 0.026421576738357544,
- -0.07209331542253494,
- -0.012391661293804646,
- 0.07154466211795807,
- 0.017396705225110054,
- -0.06358927488327026,
- -0.01599017344415188,
- 0.06575842946767807,
- -0.08304841071367264,
- 0.026064705103635788,
- -0.0019454978173598647,
- -0.03805336356163025,
- -0.00047363326302729547,
- 0.09005610644817352,
- 0.04251039773225784,
- -0.07994142919778824,
- 0.05004221200942993,
- -0.029205646365880966,
- 0.054160475730895996,
- -0.00815066322684288,
- 0.0027321851812303066,
- 0.04756471887230873,
- -0.03513643890619278,
- 0.0322236567735672,
- -0.005575269460678101,
- 0.03488686680793762,
- 0.03477808088064194,
- -0.027360089123249054,
- 0.061701204627752304,
- 0.004755969624966383,
- -0.06961880624294281,
- 0.014698821119964123,
- 0.043676212430000305,
- -0.0751274973154068,
- -0.024176504462957382,
- -0.03491757810115814,
- -0.011983106844127178,
- -0.043239958584308624,
- -0.05219563469290733,
- 0.1960490494966507,
- 0.015458098612725735,
- 0.04624226689338684,
- 0.060493916273117065,
- -0.01608942821621895,
- -0.037920452654361725,
- 0.024818167090415955,
- -0.0417092889547348,
- 0.010814945213496685,
- -0.03418482840061188,
- 0.0634508803486824,
- -0.12296366691589355,
- 0.10514835268259048,
- -0.04851587861776352,
- -0.06733031570911407,
- 0.006733916699886322,
- 0.014261140488088131,
- 0.03877105936408043,
- -0.03870410844683647,
- -0.026130227372050285,
- -0.03843142092227936,
- 0.0011433166218921542,
- -0.005824986379593611,
- 0.015435745939612389,
- -0.06308785080909729,
- 0.02379985898733139,
- -0.008839541114866734,
- -0.05868235230445862,
- -1.1062663660954936e-33,
- -0.014920135959982872,
- -0.05575602874159813,
- 0.05942390859127045,
- 0.0038959444500505924,
- 0.058029916137456894,
- -0.020310675725340843,
- -0.005596865434199572,
- 0.013685465790331364,
- -0.029841914772987366,
- 0.04463659226894379,
- -0.04938732832670212,
- 0.12504340708255768,
- -0.028502635657787323,
- -0.024456923827528954,
- 0.12208154797554016,
- 0.04603314772248268,
- 0.05177921801805496,
- -0.036395542323589325,
- 0.030462371185421944,
- -0.051182784140110016,
- -0.08342821896076202,
- -0.0006955860881134868,
- 0.08933490514755249,
- 0.0405416265130043,
- 0.029383430257439613,
- -0.10941700637340546,
- 0.06707603484392166,
- -0.023284323513507843,
- 0.01809365674853325,
- 0.02798364870250225,
- 0.044767171144485474,
- 0.041263435035943985,
- -0.007160645443946123,
- -0.05324685573577881,
- -0.046180617064237595,
- 0.015624240040779114,
- -0.008114852011203766,
- -0.03974336385726929,
- 0.026625877246260643,
- -0.005199143197387457,
- 0.044231969863176346,
- 0.05864931270480156,
- 0.022221315652132034,
- 0.040810223668813705,
- -0.05204101279377937,
- 0.047767456620931625,
- 0.02746066264808178,
- -0.018455907702445984,
- 0.05585714057087898,
- 0.08582988381385803,
- -0.03442789614200592,
- 0.005138378124684095,
- 0.013390064239501953,
- 0.07618041336536407,
- 0.014593919739127159,
- -0.020392507314682007,
- 0.027682986110448837,
- -0.05495012551546097,
- -0.021645665168762207,
- -0.03915302827954292,
- 0.009096612222492695,
- -0.05657293274998665,
- -0.02276693843305111,
- -0.032587431371212006,
- -0.031342506408691406,
- -0.01948864944279194,
- -0.009404043667018414,
- -0.008429225534200668,
- 0.07837840914726257,
- -0.04365244135260582,
- -0.017872296273708344,
- 0.03481324017047882,
- -0.028054101392626762,
- 0.07418081909418106,
- -0.03717702254652977,
- -0.059584882110357285,
- 0.03322172909975052,
- 0.057201504707336426,
- -0.002427897183224559,
- 0.037499137222766876,
- 0.018864165991544724,
- 0.061804089695215225,
- 0.031510718166828156,
- 0.09237124025821686,
- -0.010105717927217484,
- 0.02021576277911663,
- -0.03023473359644413,
- -0.059559453278779984,
- -0.022830162197351456,
- -0.0027661980129778385,
- -0.06034811958670616,
- 0.009670787490904331,
- 0.08996883034706116,
- -0.022247927263379097,
- -0.039540257304906845,
- 7.305124796041972e-34,
- -0.008957275189459324,
- -0.11525963991880417,
- 0.020847629755735397,
- 0.1040121465921402,
- 0.05443774163722992,
- -0.025327857583761215,
- 0.042947858572006226,
- -0.0006147092208266258,
- -0.020458977669477463,
- 0.08301464468240738,
- -0.025254864245653152,
- 0.01606270670890808,
- 0.10379574447870255,
- -0.03763259947299957,
- 0.11639927327632904,
- -0.04018797725439072,
- 0.10939303040504456,
- -0.014152144081890583,
- 0.022216329351067543,
- -0.015582852996885777,
- 0.038161009550094604,
- 0.0938839390873909,
- 0.11631551384925842,
- -0.0819094181060791,
- -0.03290692716836929,
- -0.01858723908662796,
- -0.035420458763837814,
- 0.048456307500600815,
- -0.11527983844280243,
- -0.013450956903398037,
- 0.04050370678305626,
- -0.057983074337244034,
- -0.01729164831340313,
- 0.04491017758846283,
- -0.10128374397754669,
- -0.04286744073033333,
- 0.03968864679336548,
- 0.04251141473650932,
- -0.05526860058307648,
- -0.03314998000860214,
- 0.10276278853416443,
- 0.008205825462937355,
- 0.02803533524274826,
- 0.1275772750377655,
- 0.018158966675400734,
- -0.019678132608532906,
- -0.03696012124419212,
- 0.056953560560941696,
- -0.005038722418248653,
- -0.07320567220449448,
- -0.047755710780620575,
- -0.0704561099410057,
- -0.01233706995844841,
- -0.04254384711384773,
- 0.05679100379347801,
- -0.03621950000524521,
- -0.012588550336658955,
- -0.040406081825494766,
- -0.021776150912046432,
- -0.021908575668931007,
- 0.06366541236639023,
- 0.05662917718291283,
- -0.05536571145057678,
- 0.04742627963423729,
- 0.03637418895959854,
- -0.0036859221290796995,
- -0.00914810597896576,
- -0.0545034185051918,
- -0.06116807833313942,
- -0.01077814307063818,
- 0.02700606733560562,
- -0.003962383605539799,
- -0.13563363254070282,
- -0.008804626762866974,
- -0.04698432981967926,
- -0.02488046884536743,
- -0.0947871059179306,
- -0.008715230040252209,
- 0.006901023909449577,
- -0.055783987045288086,
- -0.05660754814743996,
- -0.08192389458417892,
- 0.004065816756337881,
- 0.014583421871066093,
- 0.022944476455450058,
- 0.03207584097981453,
- 0.06149066239595413,
- -0.09362410008907318,
- 0.037934865802526474,
- 0.03571450710296631,
- -0.08926226943731308,
- -0.014094718731939793,
- 0.0105422493070364,
- 0.042937442660331726,
- 0.0009779694955796003,
- -1.2373424951306333e-8,
- -0.06193900480866432,
- 0.017744988203048706,
- 0.00025856922729872167,
- -0.008031666278839111,
- -0.007103358395397663,
- 0.00037385636824183166,
- -0.011540542356669903,
- -0.03351206332445145,
- 0.10650777816772461,
- 0.022488143295049667,
- -0.05916137620806694,
- 0.017738426104187965,
- 0.0808681771159172,
- 0.036530159413814545,
- -0.0016353853279724717,
- 0.009083375334739685,
- 0.03756091743707657,
- 0.08598100394010544,
- -0.022055862471461296,
- -0.03178242966532707,
- 0.10314009338617325,
- 0.06262314319610596,
- 0.01930745132267475,
- 0.03890727832913399,
- 0.03666975721716881,
- -0.027820060029625893,
- -0.0029620735440403223,
- 0.1468123346567154,
- 0.015092097222805023,
- 0.026772551238536835,
- -0.00837569497525692,
- -0.039293162524700165,
- 0.048485368490219116,
- -0.02893853187561035,
- 0.0004954751930199564,
- -0.05674007162451744,
- -0.024592623114585876,
- 0.0038014568854123354,
- 0.04967644438147545,
- -0.018144886940717697,
- -0.013017491437494755,
- 0.012444332242012024,
- 0.05963136628270149,
- -0.016105156391859055,
- -0.071639783680439,
- 0.05416017025709152,
- 0.02576877363026142,
- 0.050650376826524734,
- -0.029526246711611748,
- -0.027464386075735092,
- -0.019969912245869637,
- -0.058758728206157684,
- 0.002701688325032592,
- 0.037171103060245514,
- 0.014499806798994541,
- -0.15151023864746094,
- 0.08840521425008774,
- -0.005897697061300278,
- 0.059137288480997086,
- 0.05396108701825142,
- 0.13521845638751984,
- -0.06384719163179398,
- -0.07444708794355392,
- 0.051643256098032
- ]
- },
- {
- "keyword": "paas",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08573388308286667,
- 0.03796590492129326,
- -0.04543539136648178,
- -0.026069877669215202,
- -0.11936161667108536,
- 0.01948787458240986,
- 0.0792030468583107,
- -0.04273057356476784,
- 0.01938103698194027,
- 0.06875496357679367,
- 0.04414526745676994,
- -0.03632073104381561,
- -0.03989425301551819,
- -0.028468739241361618,
- -0.02685990184545517,
- -0.006246476899832487,
- -0.029608242213726044,
- -0.016796957701444626,
- 0.045543693006038666,
- -0.047204580157995224,
- -0.011105194687843323,
- 0.03504936769604683,
- 0.01881229318678379,
- 0.03584632650017738,
- -0.06716469675302505,
- 0.09566735476255417,
- 0.014147463254630566,
- -0.02350172959268093,
- 0.027099257335066795,
- -0.09992996603250504,
- 0.026497408747673035,
- -0.006862974260002375,
- -0.025863636285066605,
- 0.0010382256004959345,
- -0.004425766412168741,
- 0.05750786513090134,
- -0.044320400804281235,
- -0.08188480138778687,
- 0.024119805544614792,
- -0.013765045441687107,
- 0.07596904784440994,
- -0.062458623200654984,
- -0.04441533237695694,
- -0.05784269794821739,
- -0.009558404795825481,
- -0.03335484862327576,
- -0.06676230579614639,
- 0.032464224845170975,
- 0.029811948537826538,
- -0.04164606332778931,
- 0.005465015769004822,
- -0.09246296435594559,
- -0.06452227383852005,
- 0.008046749979257584,
- 0.012116258963942528,
- 0.007106447592377663,
- 0.018456516787409782,
- 0.002618496073409915,
- 0.007335251662880182,
- 0.008531762287020683,
- -0.005145072005689144,
- 0.017431136220693588,
- -0.05183819308876991,
- 0.07181359827518463,
- 0.0020775790326297283,
- -0.02434040978550911,
- 0.0017097826348617673,
- 0.011495465412735939,
- -0.07842276990413666,
- 0.007277566008269787,
- 0.027810584753751755,
- -0.0025475379079580307,
- 0.015691470354795456,
- 0.006197100505232811,
- 0.017901085317134857,
- -0.006586388219147921,
- -0.008313443511724472,
- -0.05153288692235947,
- -0.04546966031193733,
- 0.022945649921894073,
- 0.020335879176855087,
- 0.006242914125323296,
- -0.0606481209397316,
- 0.04810584336519241,
- 0.008650517091155052,
- -0.008265238255262375,
- -0.050510257482528687,
- -0.0036000567488372326,
- 0.11921709030866623,
- -0.05727465823292732,
- -0.02261342853307724,
- 0.04071953147649765,
- 0.005731245968490839,
- 0.02368905209004879,
- 0.01924464851617813,
- 0.01722768135368824,
- -0.013446256518363953,
- -0.03609413653612137,
- -0.0160702932626009,
- 0.1277676671743393,
- 0.04534904286265373,
- 0.059990812093019485,
- -0.005964077543467283,
- -0.06015382707118988,
- -0.05768537148833275,
- 0.033612631261348724,
- 0.03780724108219147,
- -0.0644950196146965,
- 0.022440610453486443,
- 0.08956306427717209,
- -0.10244713723659515,
- 0.03611307218670845,
- -0.07086753100156784,
- -0.08150091022253036,
- -0.07988713681697845,
- 0.028572287410497665,
- 0.02189018577337265,
- -0.06494230031967163,
- 0.0326039083302021,
- -0.10912910848855972,
- -0.0643707737326622,
- -0.027000468224287033,
- -0.015548537485301495,
- 0.0837777853012085,
- 0.028035521507263184,
- -0.017697924748063087,
- -0.13441626727581024,
- -3.4839764420571593e-33,
- -0.011956855654716492,
- -0.00931322481483221,
- 0.07634176313877106,
- 0.03288189321756363,
- 0.07509180158376694,
- 0.031043436378240585,
- 0.046706344932317734,
- -0.1865084171295166,
- -0.07214543223381042,
- -0.014216147363185883,
- -0.10340161621570587,
- 0.04587849974632263,
- -0.07151392102241516,
- -0.06110669672489166,
- 0.11022314429283142,
- 0.08901815116405487,
- 0.008563116192817688,
- 0.07791350781917572,
- -0.004808125551789999,
- 0.02127648890018463,
- -0.002342528197914362,
- 0.03766641765832901,
- 0.05005338788032532,
- 0.04840371012687683,
- 0.07896100729703903,
- -0.008731761015951633,
- 0.004308558069169521,
- -0.028340963646769524,
- -0.03201870620250702,
- -0.003408632706850767,
- 0.001572299050167203,
- 0.02652662806212902,
- 0.007353668101131916,
- -0.061629194766283035,
- -0.04529844969511032,
- -0.00844697467982769,
- 0.006902966182678938,
- -0.022981852293014526,
- -0.018822602927684784,
- -0.013479532673954964,
- -0.004781623370945454,
- 0.0037735735531896353,
- 0.07957415282726288,
- 0.039890941232442856,
- -0.08054054528474808,
- -0.006447178311645985,
- -0.018939202651381493,
- 0.008019356057047844,
- 0.009590785019099712,
- 0.056489694863557816,
- -0.003067307872697711,
- -0.04931030422449112,
- -0.08028176426887512,
- 0.022658484056591988,
- -0.02059505507349968,
- -0.0366424098610878,
- 0.05058185011148453,
- 0.005422613117843866,
- 0.06297306716442108,
- 0.01935625821352005,
- 0.03567519783973694,
- -0.0019973861053586006,
- -0.0006105166394263506,
- -0.07610221952199936,
- -0.0065363929606974125,
- -0.07706589251756668,
- -0.05747050791978836,
- 0.053699787706136703,
- 0.03043941780924797,
- 0.00606294022873044,
- -0.03375215828418732,
- 0.00711203645914793,
- 0.05103708431124687,
- 0.05550326406955719,
- 0.05311305820941925,
- -0.01957053691148758,
- 0.01392060611397028,
- 0.08317004144191742,
- -0.01186473947018385,
- 0.0739273950457573,
- 0.041413646191358566,
- 0.022005658596754074,
- -0.021135076880455017,
- 0.0512765496969223,
- 0.03096429817378521,
- -0.049233775585889816,
- 0.04042603075504303,
- 0.018093394115567207,
- -0.05444023013114929,
- -0.01283668726682663,
- 0.03904242441058159,
- -0.011769476346671581,
- 0.10158640891313553,
- -0.010068208910524845,
- -0.09269774705171585,
- 1.2253139136265477e-33,
- -0.04838434234261513,
- 0.013331367634236813,
- 0.019649799913167953,
- 0.06788697093725204,
- 0.10049008578062057,
- -0.07061205804347992,
- 0.028360120952129364,
- 0.07830340415239334,
- 0.01938132755458355,
- 0.04858521372079849,
- -0.043671272695064545,
- -0.02620803564786911,
- 0.06508869677782059,
- 0.021263977512717247,
- 0.04247629642486572,
- 0.045100439339876175,
- 0.09562485665082932,
- 0.01543453335762024,
- 0.011464585550129414,
- -0.033849943429231644,
- 0.017600418999791145,
- 0.03102889470756054,
- -0.0007723702001385391,
- -0.00934311468154192,
- -0.01435243058949709,
- -0.010214895009994507,
- 0.022599540650844574,
- 0.07203218340873718,
- -0.16324125230312347,
- -0.02653130330145359,
- -0.02831624634563923,
- -0.038497019559144974,
- -0.044839851558208466,
- 0.07449893653392792,
- -0.0745680183172226,
- 0.01362775731831789,
- 0.0403020977973938,
- 0.04806430637836456,
- 0.034495092928409576,
- -0.01953490450978279,
- 0.07925651967525482,
- -0.026000885292887688,
- 0.07158850133419037,
- 0.15478573739528656,
- -0.04318038001656532,
- -0.04382789880037308,
- 0.025905543938279152,
- 0.025358030572533607,
- -0.09134470671415329,
- 0.05963669717311859,
- -0.053204189985990524,
- 0.04989950731396675,
- 0.01646488904953003,
- 0.03832872956991196,
- 0.07176153361797333,
- -0.04254649579524994,
- -0.08183557540178299,
- 0.01962118037045002,
- -0.01734340935945511,
- -0.009238511323928833,
- 0.09005777537822723,
- 0.002678218297660351,
- -0.13838714361190796,
- 0.08166222274303436,
- 0.0002371620648773387,
- 0.00695329625159502,
- -0.04897932708263397,
- -0.06690588593482971,
- -0.03587352856993675,
- 0.04107986018061638,
- -0.026558080688118935,
- 0.06644203513860703,
- -0.12906800210475922,
- -0.009930703788995743,
- -0.022024400532245636,
- -0.040469393134117126,
- -0.13022485375404358,
- 0.038693495094776154,
- 0.0681474357843399,
- -0.04904280975461006,
- -0.06662598252296448,
- -0.08211297541856766,
- -0.033074431121349335,
- -0.021338215097784996,
- 0.06959794461727142,
- 0.05308815464377403,
- 0.06291984766721725,
- -0.04247400537133217,
- -0.0053594112396240234,
- -0.009028765372931957,
- 0.0023316610604524612,
- 0.002497999696061015,
- 0.03556358814239502,
- 0.007360933348536491,
- -0.0436236746609211,
- -1.3330081038986918e-8,
- -0.06160256266593933,
- -0.008113370276987553,
- -0.05916271358728409,
- -0.0331815667450428,
- 0.07591968029737473,
- -0.03519430756568909,
- -0.002729804255068302,
- 0.025676734745502472,
- 0.04388995096087456,
- -0.013292868621647358,
- 0.04927794635295868,
- 0.012572744861245155,
- 0.08079123497009277,
- 0.005987235344946384,
- 0.05456547811627388,
- 0.015117325820028782,
- -0.02122151292860508,
- 0.09457745403051376,
- -0.018934868276119232,
- -0.0409264899790287,
- 0.023929985240101814,
- 0.0639534592628479,
- -0.005958449561148882,
- 0.036711689084768295,
- -0.006889283657073975,
- 0.039955995976924896,
- 0.08545832335948944,
- 0.07537051290273666,
- -0.009177579544484615,
- -0.00487822899594903,
- 0.005858364049345255,
- 0.06755029410123825,
- -0.09916108846664429,
- -0.05234555900096893,
- 0.010070566087961197,
- -0.05557112395763397,
- 0.012902631424367428,
- 0.004335749428719282,
- 0.010522867552936077,
- -0.004389354493469,
- -0.054035432636737823,
- -0.0001927900011651218,
- -0.002268742537125945,
- 0.0009278962970711291,
- -0.01748926006257534,
- 0.055642709136009216,
- 0.016754942014813423,
- -0.038146574050188065,
- 0.004703582264482975,
- -0.048186857253313065,
- -0.013356250710785389,
- -0.02368159219622612,
- 0.053059495985507965,
- -0.0033354260958731174,
- 0.0058491425588727,
- -0.07240387052297592,
- 0.0736188068985939,
- 0.08975143730640411,
- -0.01830078847706318,
- -0.01221365574747324,
- 0.12695565819740295,
- -0.03263413533568382,
- 0.05875514820218086,
- 0.07844000309705734
- ]
- },
- {
- "keyword": "iaas",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05855885148048401,
- 0.09176652133464813,
- 0.0053850989788770676,
- 0.05693184956908226,
- -0.09072630852460861,
- -0.03317222744226456,
- 0.13733331859111786,
- -0.016595346853137016,
- 0.04490024223923683,
- 0.1064179539680481,
- 0.039711251854896545,
- -0.15512070059776306,
- 0.02200995199382305,
- 0.008027181029319763,
- -0.014615273103117943,
- 0.02105540782213211,
- 0.03976532071828842,
- -0.0723242461681366,
- -0.07081607729196548,
- -0.07832103222608566,
- -0.05561051517724991,
- 0.017645062878727913,
- -0.0284431129693985,
- 0.010336143895983696,
- -0.030350932851433754,
- 0.014178278855979443,
- -0.01788257248699665,
- -0.023261982947587967,
- 0.008502179756760597,
- -0.1555163711309433,
- -0.01347360573709011,
- -0.06506551057100296,
- 0.08130740374326706,
- -0.011569855734705925,
- 0.0005039581446908414,
- -0.0027984832413494587,
- 0.00960872508585453,
- -0.07629422843456268,
- 0.0016069096745923162,
- -0.037728700786828995,
- 0.0340530201792717,
- -0.006468143314123154,
- -0.0011165456380695105,
- -0.05167738348245621,
- -0.0038031707517802715,
- -0.049611303955316544,
- 0.012397559359669685,
- -0.007014341186732054,
- 0.07375936955213547,
- 0.0875314474105835,
- -0.0135991545394063,
- 0.021069586277008057,
- -0.036908503621816635,
- 0.00990100298076868,
- 0.03997039794921875,
- -0.0004130135348532349,
- -0.022671308368444443,
- -0.012229790911078453,
- 0.015980752184987068,
- 0.057073477655649185,
- 0.05591235309839249,
- -0.02879541739821434,
- -0.011487488634884357,
- 0.05789068713784218,
- -0.015591873787343502,
- -0.01810356415808201,
- 0.0145662697032094,
- 0.01154271699488163,
- -0.06486020982265472,
- -0.027946528047323227,
- 0.043929748237133026,
- -0.04515928402543068,
- -0.0585305355489254,
- 0.05764303356409073,
- 0.06913413852453232,
- -0.003199923550710082,
- 0.05188053846359253,
- -0.06427816301584244,
- 0.048606351017951965,
- 0.012316090986132622,
- -0.05156328156590462,
- 0.028582967817783356,
- -0.0018084702314808965,
- -0.00482523487880826,
- -0.018254011869430542,
- 0.008062899112701416,
- 0.051179174333810806,
- -0.025155512616038322,
- 0.05144190043210983,
- 0.02909669652581215,
- -0.048310961574316025,
- -0.028505640104413033,
- 0.05587778240442276,
- -0.06182922422885895,
- 0.08701954036951065,
- -0.03729955479502678,
- -0.010801575146615505,
- 0.031183356419205666,
- -0.06655670702457428,
- 0.15495418012142181,
- 0.03688015788793564,
- 0.0748034343123436,
- -0.044757671654224396,
- 0.03455382212996483,
- -0.033751893788576126,
- 0.012711452320218086,
- -0.007919395342469215,
- -0.019612884148955345,
- -0.004003255628049374,
- 0.07738830149173737,
- -0.08167899399995804,
- 0.004824817646294832,
- -0.05809621512889862,
- -0.0346563346683979,
- 0.0423177070915699,
- 0.05672174692153931,
- 0.02033739537000656,
- -0.023427437990903854,
- 0.0411173477768898,
- -0.04593932628631592,
- -0.0688476413488388,
- -0.01646197773516178,
- -0.014760002493858337,
- 0.04448002204298973,
- 0.03628828004002571,
- -0.015087859705090523,
- -0.04035622999072075,
- -3.251396803223308e-33,
- -0.06489252299070358,
- -0.03513747826218605,
- -0.007938685826957226,
- 0.018280627205967903,
- 0.01858571171760559,
- -0.048174913972616196,
- -0.03315849229693413,
- 0.01431307103484869,
- -0.038661111146211624,
- 0.0008525855373591185,
- -0.09023657441139221,
- 0.05421295017004013,
- -0.014596673659980297,
- 0.005296068266034126,
- 0.10510998219251633,
- 0.06283392757177353,
- 0.08389268070459366,
- 0.019764339551329613,
- -0.003073415718972683,
- 0.02682923711836338,
- 0.003742683446034789,
- -0.03432786464691162,
- 0.05899326130747795,
- -0.008763981983065605,
- 0.021000007167458534,
- -0.01677337847650051,
- 0.08124363422393799,
- 0.004155218135565519,
- 0.036535535007715225,
- 0.01787378266453743,
- 0.0011689793318510056,
- 0.02364017441868782,
- -0.058362361043691635,
- -0.065249502658844,
- -0.0424923412501812,
- 0.009222079068422318,
- 0.030729865655303,
- 0.015431803651154041,
- -0.011926903389394283,
- -0.009751484729349613,
- 0.008886712603271008,
- 0.10170330852270126,
- 0.043048467487096786,
- -0.023121427744627,
- 0.0030636442825198174,
- 0.04504799842834473,
- 0.019325777888298035,
- 0.027771009132266045,
- 0.09365354478359222,
- 0.034894101321697235,
- -0.06593529134988785,
- -0.004903592634946108,
- -0.015712982043623924,
- -0.020266305655241013,
- 0.05384368076920509,
- -0.009012134745717049,
- -0.0343751534819603,
- -0.01752431131899357,
- 0.017626255750656128,
- 0.0007926439866423607,
- 0.012839719653129578,
- -0.05280272662639618,
- -0.05664370581507683,
- 0.05304986983537674,
- -0.06297357380390167,
- -0.015629269182682037,
- -0.04110616445541382,
- -0.0015886146575212479,
- 0.05590195953845978,
- -0.021370617672801018,
- -0.03577716276049614,
- -0.00782865472137928,
- 0.06153912842273712,
- 0.08380875736474991,
- -0.048578616231679916,
- -0.034363068640232086,
- -0.02254890277981758,
- 0.003974710591137409,
- -0.053043510764837265,
- 0.055714696645736694,
- -0.048940155655145645,
- 0.061400171369314194,
- 0.020341698080301285,
- 0.05216505005955696,
- 0.050709884613752365,
- -0.01322407927364111,
- -0.008312484249472618,
- -0.003369193058460951,
- 0.009074972942471504,
- -0.028068527579307556,
- -0.021686725318431854,
- 0.04558124765753746,
- 0.05318591743707657,
- 0.04618564993143082,
- -0.09624551981687546,
- 1.9059812542408047e-33,
- 0.03965503349900246,
- -0.07198790460824966,
- -0.02402825653553009,
- 0.013876351527869701,
- 0.05298725515604019,
- 0.013265857473015785,
- 0.09378998726606369,
- 0.127677783370018,
- -0.016612298786640167,
- 0.056477516889572144,
- 0.021518880501389503,
- -0.01166069321334362,
- 0.09154625236988068,
- 0.009206262417137623,
- 0.04004847630858421,
- -0.01487367320805788,
- 0.08539379388093948,
- -0.049445200711488724,
- 0.06655801087617874,
- 0.0002831797464750707,
- -0.06223488971590996,
- -0.007514615077525377,
- 0.069307342171669,
- -0.09398410469293594,
- -0.012086658738553524,
- -0.004235677421092987,
- -0.01582847349345684,
- 0.05538573116064072,
- -0.07763601094484329,
- -0.04260431230068207,
- -0.0082484669983387,
- -0.025141268968582153,
- -0.04529189690947533,
- 0.07255242019891739,
- -0.06227708235383034,
- 0.046183664351701736,
- 0.07095960527658463,
- -0.048486657440662384,
- -0.0629185289144516,
- -0.026776831597089767,
- 0.06004086881875992,
- 0.030173931270837784,
- 0.0022270306944847107,
- 0.10463143140077591,
- -0.0013020344777032733,
- 0.02462715469300747,
- -0.05366857722401619,
- 0.0708727240562439,
- -0.07817510515451431,
- -0.008360058069229126,
- -0.07748241722583771,
- -0.09564394503831863,
- 0.040937766432762146,
- -0.0057933134958148,
- -0.0031786449253559113,
- 0.00013081543147563934,
- 0.01551663689315319,
- -0.014764337800443172,
- -0.030983474105596542,
- 0.03493896871805191,
- 0.08098208159208298,
- 0.05192127451300621,
- -0.014532873407006264,
- -0.04647623375058174,
- -0.07626181840896606,
- -0.03806455433368683,
- -0.04176414757966995,
- -0.08874838054180145,
- -0.08886580914258957,
- 0.004557759501039982,
- 0.11115240305662155,
- -0.01655561663210392,
- -0.18607334792613983,
- -0.052452217787504196,
- -0.006716790609061718,
- -0.03967226296663284,
- -0.03651044890284538,
- -0.05617891252040863,
- 0.0010285171447321773,
- -0.14845871925354004,
- -0.08222014456987381,
- -0.0105504859238863,
- -0.031225254759192467,
- 0.046505507081747055,
- 0.00700222235172987,
- 0.07552005350589752,
- 0.05316460132598877,
- -0.08161494135856628,
- -0.012395823374390602,
- 0.07606929540634155,
- 0.008995347656309605,
- 0.005192313343286514,
- 0.02603749930858612,
- -0.02393828146159649,
- -0.06364332884550095,
- -1.2384908210094636e-8,
- -0.042636364698410034,
- 0.037968069314956665,
- 0.007303430698812008,
- 0.0049369726330041885,
- -0.01764496974647045,
- 0.023236721754074097,
- -0.08898789435625076,
- 0.05109892785549164,
- 0.07436016947031021,
- -0.010184403508901596,
- 0.020396292209625244,
- 0.00902615487575531,
- 0.025782674551010132,
- 0.049131128937006,
- 0.016083650290966034,
- -0.004734163172543049,
- 0.008799102157354355,
- 0.08706824481487274,
- 0.011103182099759579,
- -0.05179354548454285,
- 0.02197718620300293,
- 0.05387592688202858,
- 0.005650265607982874,
- -0.02096339501440525,
- 0.02248458005487919,
- 0.008555767126381397,
- 0.025925589725375175,
- 0.05928943306207657,
- -0.005306420382112265,
- 0.050806254148483276,
- -0.06775320321321487,
- 0.08552130311727524,
- -0.0021158852614462376,
- -0.08010008186101913,
- -0.01177095528692007,
- -0.04761910438537598,
- -0.022125806659460068,
- -0.010666257701814175,
- -0.026120616123080254,
- -0.039300136268138885,
- 0.0036807935684919357,
- 0.0409349761903286,
- 0.03465769439935684,
- -0.06076718494296074,
- 0.015211459249258041,
- 0.022923018783330917,
- 0.05329286307096481,
- -0.032337039709091187,
- 0.002091252477839589,
- -0.06590362638235092,
- -0.02009512670338154,
- -0.04417997598648071,
- 0.055269379168748856,
- 0.09827922284603119,
- 0.05446769297122955,
- -0.0954103022813797,
- 0.02837338298559189,
- -0.047793056815862656,
- 0.08328596502542496,
- 0.08723468333482742,
- 0.21014046669006348,
- -0.05211613327264786,
- -0.020100848749279976,
- -0.0256632212549448
- ]
- },
- {
- "keyword": "delivery",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03780477121472359,
- 0.012341847643256187,
- 0.007081787101924419,
- 0.01889711432158947,
- -0.046620361506938934,
- -0.020248547196388245,
- 0.06066662818193436,
- -0.016550319269299507,
- -0.011869861744344234,
- 0.053716324269771576,
- 0.06135543808341026,
- -0.03341323509812355,
- -0.011485417373478413,
- 0.02404892072081566,
- 0.002436690032482147,
- -0.02754191868007183,
- 0.05540461838245392,
- -0.05706900730729103,
- -0.05800078436732292,
- 0.02407759800553322,
- -0.027517754584550858,
- 0.07909693568944931,
- -0.034511152654886246,
- 0.02101142331957817,
- 0.009049120359122753,
- 0.032692212611436844,
- -0.10061285644769669,
- -0.022119317203760147,
- -0.01595768891274929,
- -0.11118755489587784,
- 0.049323227256536484,
- -0.03068348579108715,
- -0.016520202159881592,
- 0.020410889759659767,
- 0.02551249973475933,
- 0.03275870904326439,
- 0.06337349861860275,
- -0.01738854870200157,
- 0.05893195793032646,
- -0.040401723235845566,
- 0.014750155620276928,
- -0.06617749482393265,
- -0.01864759624004364,
- 0.04146499186754227,
- 0.02757493406534195,
- 0.006603095680475235,
- 0.008266243152320385,
- 0.0703284814953804,
- 0.029635563492774963,
- 0.0400494821369648,
- 0.0260391216725111,
- -0.04805736243724823,
- -0.05163641646504402,
- 0.056894879788160324,
- -0.003550904802978039,
- 0.034041933715343475,
- 0.02457769401371479,
- -0.09786318987607956,
- -0.04073658213019371,
- -0.024177120998501778,
- -0.0137392682954669,
- 0.008327838033437729,
- -0.05487775057554245,
- 0.014229083433747292,
- -0.016027413308620453,
- -0.025175388902425766,
- 0.03046288900077343,
- -0.035628873854875565,
- -0.04598153755068779,
- -0.05271248146891594,
- 0.032580628991127014,
- 0.03827713429927826,
- 0.0069401441141963005,
- 0.08178433775901794,
- 0.07073786854743958,
- -0.08669032901525497,
- 0.10525211691856384,
- -0.028148340061306953,
- 0.002216343767940998,
- -0.013487711548805237,
- 0.0780879408121109,
- 0.010256974026560783,
- -0.018862565979361534,
- -0.0059278239496052265,
- -0.032315876334905624,
- -0.0030699954368174076,
- 0.039202768355607986,
- 0.06260354816913605,
- -0.0820743665099144,
- -0.05852077901363373,
- -0.010899804532527924,
- -0.0007803912158124149,
- -0.02375778555870056,
- 0.07416835427284241,
- -0.1285678595304489,
- -0.02329295501112938,
- 0.017698196694254875,
- -0.07732851058244705,
- -0.0737760066986084,
- 0.212620347738266,
- 0.0732843428850174,
- 0.030690312385559082,
- -0.0038872375153005123,
- -0.03483405336737633,
- -0.04948897287249565,
- -0.03013143315911293,
- -0.07442967593669891,
- 0.018337344750761986,
- -0.05610896646976471,
- 0.0005175242549739778,
- -0.06242118775844574,
- 0.015531931072473526,
- -0.07284238934516907,
- 0.01638115756213665,
- -0.03424539417028427,
- 0.07310750335454941,
- -0.029151715338230133,
- 0.0166019219905138,
- 0.11607368290424347,
- -0.09514380991458893,
- -0.013037814758718014,
- 0.017038967460393906,
- 0.010011388920247555,
- -0.04274846240878105,
- -0.09674389660358429,
- -0.1120838075876236,
- 0.09374506771564484,
- -4.798188677168077e-33,
- -0.07653672993183136,
- -0.07378976047039032,
- 0.0037539657205343246,
- 0.07476339489221573,
- 0.0725332722067833,
- -0.02963598445057869,
- -0.040669478476047516,
- 0.013927792198956013,
- 0.02391809970140457,
- -0.010052510537207127,
- -0.16908949613571167,
- -0.05264905095100403,
- 0.031205492094159126,
- -0.0025962707586586475,
- -0.023631539195775986,
- -0.024352997541427612,
- 0.005509954411536455,
- 0.09084168076515198,
- 0.030905282124876976,
- 0.06523070484399796,
- -0.04089110344648361,
- -0.009099025279283524,
- -0.02155495062470436,
- 0.05831489339470863,
- 0.045147817581892014,
- -0.0003684016119223088,
- -0.04232422634959221,
- 0.03537975251674652,
- 0.046229321509599686,
- 0.02609020285308361,
- 0.008595257066190243,
- -0.014828885905444622,
- 0.042769551277160645,
- 0.03661981597542763,
- -0.01868935115635395,
- -0.0017341222846880555,
- -0.06961124390363693,
- -0.08143176883459091,
- -0.00022938450274523348,
- -0.0242211502045393,
- 0.005145265720784664,
- -0.014929817058146,
- -0.08130183070898056,
- 0.11988251656293869,
- -0.06604084372520447,
- 0.059146031737327576,
- 0.03996037691831589,
- -0.05262239649891853,
- 0.08416014164686203,
- -0.009146065451204777,
- -0.059693846851587296,
- -0.022330105304718018,
- 0.00541264284402132,
- 0.026344776153564453,
- 0.009028000757098198,
- -0.04288126900792122,
- 0.044640153646469116,
- -0.06331136077642441,
- -0.005436434410512447,
- -0.020526893436908722,
- 0.07684844732284546,
- 0.024960875511169434,
- -0.060542162507772446,
- 0.0012489496730268002,
- 0.05183571204543114,
- -0.15056529641151428,
- -0.031919173896312714,
- -0.03371352702379227,
- 0.06022444739937782,
- -0.0338636115193367,
- -0.04604534059762955,
- 0.06992997974157333,
- 0.0977621078491211,
- -0.038991689682006836,
- 0.05969320610165596,
- -0.020136555656790733,
- 0.011634734459221363,
- -0.0035381976049393415,
- 0.005634163040667772,
- -0.03469245135784149,
- 0.014368398115038872,
- 0.03824755921959877,
- 0.010714026167988777,
- 0.04423942789435387,
- 0.08819206804037094,
- 0.03626471385359764,
- -0.014198517426848412,
- 0.017919715493917465,
- 0.009188838303089142,
- 0.06613199412822723,
- -0.0446976013481617,
- 0.02176971547305584,
- 0.06212708353996277,
- -0.02158164232969284,
- 0.09200603514909744,
- 4.618708322212776e-33,
- -0.02574748918414116,
- 0.046421490609645844,
- -0.1202564537525177,
- 0.11889620870351791,
- -0.010994788259267807,
- 0.009725557640194893,
- 0.043121032416820526,
- 0.011050951667129993,
- 0.05581536889076233,
- 0.03926611691713333,
- -0.13969850540161133,
- -0.03865350782871246,
- 0.07306566089391708,
- 0.01774023286998272,
- -0.0023345870431512594,
- 0.013639364391565323,
- 0.10853543877601624,
- -0.02221495658159256,
- -0.005548188462853432,
- 0.0486517958343029,
- -0.020799724385142326,
- -0.00141183624509722,
- -0.036111582070589066,
- -0.09384172409772873,
- 0.04441860690712929,
- 0.07525264471769333,
- 0.02734469249844551,
- 0.0697755217552185,
- -0.06294159591197968,
- -0.00022590636217501014,
- -0.01683349721133709,
- -0.009598170407116413,
- -0.012800619937479496,
- 0.02805333212018013,
- -0.02670097164809704,
- 0.0817393958568573,
- 0.03178383782505989,
- 0.13044193387031555,
- 0.04008049890398979,
- 0.04621156305074692,
- 0.03749842941761017,
- 0.004648118279874325,
- 0.02870466746389866,
- 0.14709779620170593,
- 0.03323938697576523,
- -0.011464602313935757,
- -0.050609979778528214,
- 0.0417318232357502,
- 0.06482260674238205,
- 0.06313768774271011,
- -0.09316875785589218,
- 0.0008888858137652278,
- -0.06567256897687912,
- -0.008072896860539913,
- -0.004536658059805632,
- 0.03916010633111,
- -0.029201768338680267,
- -0.023776786401867867,
- 0.027345146983861923,
- 0.02570842020213604,
- -0.04570702835917473,
- 0.002744857221841812,
- 0.02643393725156784,
- -0.05670332908630371,
- -0.0036586385685950518,
- -0.014105774462223053,
- 0.06284013390541077,
- -0.018933402374386787,
- 0.018145689740777016,
- 0.022023333236575127,
- -0.0021662344224750996,
- -0.024066375568509102,
- -0.054489992558956146,
- -0.021415486931800842,
- -0.013101416639983654,
- -0.012354491278529167,
- -0.0017874734476208687,
- -0.016317127272486687,
- -0.02811305597424507,
- 0.011869427748024464,
- -0.0011989407939836383,
- -0.038891829550266266,
- -0.006843648850917816,
- 0.06498261541128159,
- -0.0505366325378418,
- -0.0947488471865654,
- 0.10871794074773788,
- -0.06013701111078262,
- 0.027717377990484238,
- 0.005333784501999617,
- 0.02913285233080387,
- 0.047427427023649216,
- 0.010765567421913147,
- -0.051987189799547195,
- -0.03631672263145447,
- -1.1024184232155676e-8,
- 0.03686262294650078,
- 0.016566872596740723,
- -0.07445710152387619,
- -0.053062643855810165,
- 0.04325142875313759,
- 0.04271657392382622,
- 0.043769679963588715,
- 0.01828562282025814,
- -0.0025345899630337954,
- 0.010774646885693073,
- -0.10099012404680252,
- 0.024167241528630257,
- -0.013912130147218704,
- 0.07805487513542175,
- 0.04193167760968208,
- 0.012155551463365555,
- -0.018563302233815193,
- -0.00680295517668128,
- -0.095852330327034,
- -0.06027347967028618,
- -0.025102784857153893,
- 0.04223334789276123,
- 0.09668298810720444,
- -0.030754830688238144,
- 0.022477401420474052,
- 0.019011063501238823,
- 0.041951317340135574,
- 0.051211919635534286,
- 0.09267032891511917,
- 0.006328228861093521,
- 0.007202924229204655,
- 0.07284627109766006,
- 0.00442163273692131,
- -0.04964485391974449,
- -0.034706778824329376,
- -0.029038280248641968,
- -0.03579682484269142,
- 0.04489791765809059,
- 0.024182064458727837,
- 0.012392223812639713,
- 0.039336998015642166,
- -0.021238598972558975,
- 0.008909869939088821,
- -0.015415792353451252,
- 0.018300790339708328,
- -0.024012703448534012,
- -0.09301609545946121,
- 0.023942075669765472,
- -0.04142802208662033,
- 0.0072203464806079865,
- -0.009945566765964031,
- -0.035174980759620667,
- 0.013094312511384487,
- 0.09083884209394455,
- 0.03281327709555626,
- 0.02526801824569702,
- -0.04944562539458275,
- -0.0767633393406868,
- 0.0722893550992012,
- 0.05366808921098709,
- -0.005999263375997543,
- 0.005131347104907036,
- 0.08948540687561035,
- -0.0025990139693021774
- ]
- },
- {
- "keyword": "shipping",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07999015599489212,
- 0.00014007584832143039,
- -0.03687655180692673,
- 0.04159684479236603,
- 0.022554969415068626,
- -0.025449739769101143,
- 0.04402973875403404,
- 0.02848874405026436,
- -0.012780256569385529,
- 0.09310885518789291,
- 0.014469234272837639,
- -0.08494149148464203,
- -0.061796676367521286,
- -0.017052587121725082,
- -0.0685395747423172,
- -0.0083625428378582,
- -0.014924264512956142,
- -0.018529541790485382,
- -0.12508802115917206,
- 0.02352990210056305,
- -0.03847941383719444,
- 0.015308575704693794,
- -0.04144483059644699,
- 0.005725915543735027,
- 0.0017853345489129424,
- 0.04607516527175903,
- -0.07826127111911774,
- -0.035170458257198334,
- -0.03517170250415802,
- -0.12124522030353546,
- 0.005899682641029358,
- 0.0385214202105999,
- -0.014964764006435871,
- 0.039341263473033905,
- 0.044428110122680664,
- -0.016376929357647896,
- 0.047095417976379395,
- -0.029192356392741203,
- 0.03536092862486839,
- -0.054324839264154434,
- -0.003790192538872361,
- -0.058065738528966904,
- -0.016850270330905914,
- 0.07002656906843185,
- 0.014280334115028381,
- 0.0008684044587425888,
- 0.07334210723638535,
- 0.08999752998352051,
- 0.06223878264427185,
- 0.058882709592580795,
- 0.04111940786242485,
- -0.001054779626429081,
- -0.06659924983978271,
- 0.03471437469124794,
- -0.04134990647435188,
- 0.05082282796502113,
- 0.01033079531043768,
- -0.0033105378970503807,
- -0.0006213674787431955,
- -0.006243233103305101,
- 0.020396562293171883,
- 0.02330828085541725,
- -0.07673952728509903,
- 0.05325494706630707,
- 0.0910843089222908,
- -0.040550414472818375,
- -0.0048365406692028046,
- -0.013247577473521233,
- -0.06361643224954605,
- -0.025622589513659477,
- 0.005788790062069893,
- 0.04629683867096901,
- 0.0068194009363651276,
- 0.04114896431565285,
- 0.07159271091222763,
- -0.07932811230421066,
- 0.10556808114051819,
- -0.04786309599876404,
- 0.002992165507748723,
- 0.06189606711268425,
- 0.022529838606715202,
- -0.040590859949588776,
- -0.03574815392494202,
- 0.006313506979495287,
- -0.007665195036679506,
- -0.035702358931303024,
- 0.04667821153998375,
- 0.10162363201379776,
- -0.09442230314016342,
- -0.031492557376623154,
- 0.017038527876138687,
- -0.036812517791986465,
- 0.022643830627202988,
- 0.06503169238567352,
- -0.11789149791002274,
- 0.021851224824786186,
- 0.042927198112010956,
- -0.007064213510602713,
- -0.031026987358927727,
- 0.19393180310726166,
- 0.06738349050283432,
- 0.02652495540678501,
- 0.04585428535938263,
- -0.02180626429617405,
- -0.07662982493638992,
- -0.021789463236927986,
- -0.07543099671602249,
- 0.06451167911291122,
- -0.028088651597499847,
- 0.01773240976035595,
- -0.08976614475250244,
- 0.0022699395194649696,
- -0.06091830134391785,
- 0.008062673732638359,
- -0.05299854651093483,
- 0.008492411114275455,
- 0.024478169158101082,
- 0.018045246601104736,
- 0.09322654455900192,
- -0.11552394181489944,
- 0.03692843019962311,
- -0.06321851909160614,
- 0.07337930798530579,
- -0.030925508588552475,
- -0.14598675072193146,
- -0.03312406688928604,
- 0.012499919161200523,
- -3.701817585783607e-33,
- -0.013905688188970089,
- -0.0659128800034523,
- -0.062028709799051285,
- -0.05055074393749237,
- 0.04303714632987976,
- -0.00564999645575881,
- 0.018327221274375916,
- -0.019976118579506874,
- 0.003879395080730319,
- 0.06143666431307793,
- -0.1337752342224121,
- 0.03569653630256653,
- 0.044089242815971375,
- 0.0021057433914393187,
- -0.029104232788085938,
- -0.057341039180755615,
- 0.053325213491916656,
- 0.009575363248586655,
- -0.01857677660882473,
- -0.029759207740426064,
- -0.08389580249786377,
- -0.041028279811143875,
- -0.043726515024900436,
- 0.053153205662965775,
- 0.012299266643822193,
- 0.0005063166609033942,
- -0.03228027746081352,
- -0.017934225499629974,
- 0.07596432417631149,
- 0.029904386028647423,
- -0.01906740292906761,
- -0.0065645985305309296,
- 0.016115684062242508,
- 0.027155231684446335,
- 0.010201347060501575,
- -0.02414623275399208,
- -0.0212992113083601,
- -0.0799235925078392,
- 0.005060201045125723,
- -0.07934506237506866,
- -0.003008847823366523,
- 0.0379057452082634,
- -0.02865525707602501,
- 0.08362631499767303,
- -0.017008455470204353,
- 0.049968309700489044,
- 0.052373047918081284,
- -0.03466911241412163,
- 0.029597219079732895,
- -0.012413596734404564,
- -0.07184141874313354,
- -0.0076382821425795555,
- -0.04270876199007034,
- 0.010428342968225479,
- -0.03901777043938637,
- -0.01989169791340828,
- 0.04400011524558067,
- -0.03069535456597805,
- 0.003080625319853425,
- -0.04541005939245224,
- 0.06546232849359512,
- 0.02297818474471569,
- 0.010836714878678322,
- -0.03875867649912834,
- 0.05464683845639229,
- -0.08831015229225159,
- -0.02550884336233139,
- -0.021813273429870605,
- -0.04317282885313034,
- -0.03564077988266945,
- -0.01893201470375061,
- 0.0710681602358818,
- 0.11354244500398636,
- -0.008266780525445938,
- 0.10239129513502121,
- 0.013170327059924603,
- 0.0735393837094307,
- 0.020971374586224556,
- -0.04330293834209442,
- -0.06272143870592117,
- -0.05468012019991875,
- 0.019625172019004822,
- -0.05337124690413475,
- 0.0724581852555275,
- 0.05812595412135124,
- 0.04949275031685829,
- -0.048990800976753235,
- 0.00987299531698227,
- 0.04608425870537758,
- 0.025772664695978165,
- 0.006269178818911314,
- -0.01526576653122902,
- 0.06974903494119644,
- -0.07447069883346558,
- 0.04159386083483696,
- 3.0507143872700115e-33,
- -0.09106075018644333,
- 0.06485721468925476,
- -0.0472567155957222,
- 0.06107248365879059,
- 0.035095106810331345,
- 0.026454107835888863,
- 0.06820884346961975,
- 0.01602824032306671,
- 0.07707423716783524,
- 0.03294914960861206,
- -0.12806925177574158,
- -0.03449893370270729,
- 0.08495829999446869,
- 0.014919900335371494,
- 0.009522726759314537,
- 0.016223207116127014,
- 0.0786130353808403,
- 0.021733110770583153,
- 0.07606026530265808,
- -0.035425491631031036,
- 0.027241168543696404,
- 0.004014808218926191,
- -0.011564589105546474,
- -0.05282739922404289,
- 0.01454924326390028,
- 0.0074247638694942,
- 0.07122427970170975,
- -0.012650462798774242,
- -0.045875802636146545,
- 0.041862331330776215,
- 0.06463757902383804,
- -0.015156697481870651,
- 0.0024863234721124172,
- 0.08957061916589737,
- -0.08424900472164154,
- 0.048843637108802795,
- 0.07040172070264816,
- 0.1275513619184494,
- 0.0756622850894928,
- 0.05126949027180672,
- -0.03686315193772316,
- -0.021205542609095573,
- 0.03352157026529312,
- 0.08646286278963089,
- 0.00016075937310233712,
- -0.05167841538786888,
- -0.027608726173639297,
- 0.004444408696144819,
- 0.0835166797041893,
- 0.024129953235387802,
- -0.09098502993583679,
- 0.03471730276942253,
- 0.0395561121404171,
- -0.04036723077297211,
- -0.07603106647729874,
- 0.031144356355071068,
- -0.05278641730546951,
- 0.0555216521024704,
- -0.03442357853055,
- -0.018621956929564476,
- 0.009111064486205578,
- 0.031857337802648544,
- 0.0075529697351157665,
- -0.01107955351471901,
- -0.02109944447875023,
- 0.056938618421554565,
- 0.08601674437522888,
- -0.03386973589658737,
- 0.005396461114287376,
- 0.06048686429858208,
- -0.014058397151529789,
- -0.03972744569182396,
- 0.019706664606928825,
- 0.06877173483371735,
- -0.013615090399980545,
- -0.05382497236132622,
- -0.012796634808182716,
- 0.048665862530469894,
- 0.0017718205926939845,
- 0.042454369366168976,
- 0.024142075330018997,
- -0.007830854505300522,
- 0.014578082598745823,
- 0.007032369263470173,
- 0.0071740481071174145,
- -0.14234264194965363,
- 0.09656107425689697,
- 0.01828748732805252,
- 0.011906828731298447,
- -0.0038131747860461473,
- 0.005016174633055925,
- 0.04016444459557533,
- 0.005563769955188036,
- -0.10730922967195511,
- -0.04423394799232483,
- -1.0818467899298412e-8,
- 0.009460153989493847,
- -0.013202592730522156,
- 0.009467284195125103,
- 0.028665738180279732,
- 0.015173030085861683,
- 0.10484569519758224,
- 0.05276409164071083,
- 0.03992187976837158,
- -0.022021085023880005,
- -0.03344057872891426,
- -0.06736215204000473,
- 0.01125885359942913,
- -0.06094512715935707,
- -0.0033557461574673653,
- -0.012888115830719471,
- -0.0036318053025752306,
- 0.006941293831914663,
- 0.007153056561946869,
- -0.06260775774717331,
- -0.03494634851813316,
- 0.02587193436920643,
- 0.03418971225619316,
- 0.08890430629253387,
- 0.016694450750947,
- -0.003038303228095174,
- 0.009721488691866398,
- 0.08908431977033615,
- 0.0324740968644619,
- 0.06933790445327759,
- -0.021612748503684998,
- 0.014703012071549892,
- 0.10525741428136826,
- 0.021008117124438286,
- -0.05572487413883209,
- -0.049278464168310165,
- -0.13786697387695312,
- -0.09124048799276352,
- 0.000907055102288723,
- -0.0260334312915802,
- 0.025242900475859642,
- 0.01629548706114292,
- -0.029191335663199425,
- 0.022842170670628548,
- -0.026700345799326897,
- 0.07616659253835678,
- -0.012802970595657825,
- -0.1317683458328247,
- -0.041006602346897125,
- -0.009012053720653057,
- -0.012214429676532745,
- 0.05092449486255646,
- 0.0005582725279964507,
- 0.00023514110944233835,
- 0.05144600570201874,
- 0.02251063659787178,
- 0.0524313859641552,
- 0.0006188289844430983,
- 0.009678265079855919,
- 0.01551959477365017,
- 0.06739671528339386,
- 0.015038645826280117,
- -0.03631735220551491,
- -0.006423822604119778,
- 0.0131673663854599
- ]
- },
- {
- "keyword": "logistics",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04979143664240837,
- -0.0030924957245588303,
- -0.027729040011763573,
- 0.029053861275315285,
- 0.04321511089801788,
- -0.06070159375667572,
- 0.10349594801664352,
- -0.027903584763407707,
- -0.028505675494670868,
- 0.020919758826494217,
- 0.04558133706450462,
- -0.024986324831843376,
- -0.012426969595253468,
- 0.05244237929582596,
- -0.06177236884832382,
- -0.048330724239349365,
- 0.027738936245441437,
- -0.01350073330104351,
- -0.10845328867435455,
- -0.09697361290454865,
- -0.07421571016311646,
- 0.02294202521443367,
- -0.02330787666141987,
- 0.007893524132668972,
- -0.0003496474528219551,
- 0.05430014431476593,
- -0.08536352217197418,
- -0.03906911984086037,
- -0.041075512766838074,
- -0.13524049520492554,
- -0.011866141110658646,
- 0.04253045842051506,
- 0.026063887402415276,
- 0.05515427142381668,
- -0.0070967175997793674,
- 0.11664727330207825,
- 0.0335637666285038,
- -0.029960904270410538,
- 0.06107087433338165,
- -0.0379270575940609,
- -0.008263910189270973,
- -0.02423776686191559,
- -0.016351139172911644,
- 0.02603275515139103,
- -0.027119407430291176,
- -0.044228311628103256,
- -0.0026143016293644905,
- -0.021104123443365097,
- 0.025186963379383087,
- 0.029928168281912804,
- -0.004743372555822134,
- -0.03175950422883034,
- -0.03612160310149193,
- 0.010897151194512844,
- 0.009792178869247437,
- 0.04630361497402191,
- 0.01538008265197277,
- -0.04039818048477173,
- -0.0445755273103714,
- -0.04523986950516701,
- 0.01597440056502819,
- -0.00038329308154061437,
- -0.023486768826842308,
- 0.014416437596082687,
- 0.08146601170301437,
- -0.057596880942583084,
- 0.000993036781437695,
- 0.07013905793428421,
- -0.08402853459119797,
- -0.03564654290676117,
- 0.042728718370199203,
- -0.060853712260723114,
- -0.03632785752415657,
- 0.07892010360956192,
- 0.0686970129609108,
- -0.031046327203512192,
- 0.09240935742855072,
- 0.00528073450550437,
- 0.05132048577070236,
- -0.025035690516233444,
- -0.02138635888695717,
- 0.040462762117385864,
- -0.05273231491446495,
- 0.021159501746296883,
- -0.056965410709381104,
- -0.057196587324142456,
- 0.011903584003448486,
- 0.05315174162387848,
- 0.029604410752654076,
- -0.025252411141991615,
- -0.00220965757034719,
- -0.09559137374162674,
- 0.06771792471408844,
- 0.007070068269968033,
- -0.02835327573120594,
- 0.03006202168762684,
- -0.016118574887514114,
- 0.0028073128778487444,
- -0.005139891058206558,
- 0.16308587789535522,
- 0.05270932614803314,
- 0.060144681483507156,
- 0.03920449689030647,
- -0.052116747945547104,
- -0.07501220703125,
- -0.043374668806791306,
- -0.048664819449186325,
- 0.01239368412643671,
- -0.002087061293423176,
- 0.039824165403842926,
- -0.05776313692331314,
- 0.05773300305008888,
- -0.029552245512604713,
- 0.00995198916643858,
- -0.05125844478607178,
- 0.0878719761967659,
- -0.001859931624494493,
- 0.013276788406074047,
- 0.022733457386493683,
- -0.05801089480519295,
- 0.019251998513936996,
- 0.014071499928832054,
- 0.034009311348199844,
- -0.036624323576688766,
- -0.05131497606635094,
- -0.018633462488651276,
- 0.03589741885662079,
- -5.3945221041280085e-33,
- -0.09267745912075043,
- -0.04760859161615372,
- 0.03644023835659027,
- 0.005946130026131868,
- 0.06592554599046707,
- -0.005859161261469126,
- -0.030743155628442764,
- 0.009192133322358131,
- 0.021036764606833458,
- 0.09584008157253265,
- -0.13089106976985931,
- 0.1162983849644661,
- -0.04120996594429016,
- -0.004424289334565401,
- -0.0032701604068279266,
- -0.1336348056793213,
- -0.02082112617790699,
- 0.09064965695142746,
- 0.04088503494858742,
- -0.018801966682076454,
- -0.06757809221744537,
- -0.0736289843916893,
- 0.0026594095397740602,
- -0.015313091687858105,
- 0.10445312410593033,
- -0.02956889010965824,
- 0.010620319284498692,
- 0.0063902949914336205,
- 0.11882892996072769,
- 0.018413327634334564,
- 0.06126387044787407,
- 0.04499377682805061,
- -0.05256298929452896,
- 0.006276485975831747,
- -0.02966497465968132,
- 0.015759572386741638,
- -0.07664705812931061,
- -0.030496535822749138,
- -0.015121569857001305,
- -0.03735658898949623,
- -0.03406014293432236,
- 0.0014596557011827826,
- -0.04677053168416023,
- 0.029273517429828644,
- -0.07063707709312439,
- 0.07916390895843506,
- 0.07515621185302734,
- -0.044433921575546265,
- -0.01923396810889244,
- -0.0049011362716555595,
- -0.057554781436920166,
- -0.027632994577288628,
- 0.0349065326154232,
- -0.06012659892439842,
- 0.05251035839319229,
- -0.06343387812376022,
- 0.10168788582086563,
- -0.05897665023803711,
- -0.0032163183204829693,
- -0.016494086012244225,
- 0.05252503976225853,
- 0.041786883026361465,
- -0.004355017561465502,
- 0.053430452942848206,
- 0.07101920992136002,
- -0.04869997873902321,
- -0.004803485237061977,
- 0.009629512205719948,
- 0.05950853228569031,
- -0.027237681671977043,
- -0.011724314652383327,
- 0.0066493055783212185,
- 0.07515795528888702,
- 0.06559587270021439,
- 0.03595057502388954,
- 0.03823694959282875,
- 0.0070160082541406155,
- 0.01896839402616024,
- -0.0427120216190815,
- -0.062127888202667236,
- -0.07105229794979095,
- 0.01139398105442524,
- 0.011322641745209694,
- 0.05739673972129822,
- 0.07524736225605011,
- 0.017055604606866837,
- -0.03141787648200989,
- -0.004784526769071817,
- 0.009291339665651321,
- 0.040588948875665665,
- -0.12836813926696777,
- 0.02118070237338543,
- 0.015878213569521904,
- 0.06697184592485428,
- 0.046893130987882614,
- 3.2199255133739335e-33,
- 0.00019463089120108634,
- 0.0766259953379631,
- 0.0025292648933827877,
- 0.02664816938340664,
- 0.01900593750178814,
- -0.019329970702528954,
- 0.05739103630185127,
- -0.0467740036547184,
- 0.08332585543394089,
- 0.057562775909900665,
- -0.17879080772399902,
- -0.02662869356572628,
- 0.022578241303563118,
- 0.03703149035573006,
- 0.06697266548871994,
- -0.015428178012371063,
- 0.043098486959934235,
- -0.03680175542831421,
- -0.03893740475177765,
- -0.005379939917474985,
- -0.025866756215691566,
- -0.01195098552852869,
- -0.15007950365543365,
- -0.013143508695065975,
- -0.010001271031796932,
- 0.08063659071922302,
- -0.04692309349775314,
- -0.02934357337653637,
- -0.03871704265475273,
- -0.02464221604168415,
- 0.017240241169929504,
- -0.0674106702208519,
- 0.007892713882029057,
- 0.03273200988769531,
- -0.06042257323861122,
- -0.030048975721001625,
- -0.02052033506333828,
- 0.16297577321529388,
- 0.024319201707839966,
- -0.02894403412938118,
- 0.04502517357468605,
- -0.05086992308497429,
- 0.026358991861343384,
- 0.05668259039521217,
- -0.029391558840870857,
- -0.07700248807668686,
- 0.021964428946375847,
- -0.07623445987701416,
- 0.09722059220075607,
- -0.004967633169144392,
- -0.05633664131164551,
- 0.06541657447814941,
- -0.01060846634209156,
- -0.04795584827661514,
- -0.02259712852537632,
- 0.11630834639072418,
- -0.06202087551355362,
- 0.02786995843052864,
- -0.01924603432416916,
- -0.030928410589694977,
- 0.003908598329871893,
- 0.03998716175556183,
- 0.029625769704580307,
- 0.030596764758229256,
- -0.07197757065296173,
- 0.005881080869585276,
- 0.035440340638160706,
- -0.10016319900751114,
- -0.044662147760391235,
- 0.008592518977820873,
- 0.0530448742210865,
- 0.034142524003982544,
- -0.03287823870778084,
- 0.07300817221403122,
- 0.015836913138628006,
- -0.022817786782979965,
- -0.06131034344434738,
- -0.01444026455283165,
- -0.019908010959625244,
- 0.02690456621348858,
- 0.047823820263147354,
- -0.07589411735534668,
- 0.004644432105123997,
- 0.09255051612854004,
- -0.02957215905189514,
- -0.02167046070098877,
- 0.11878841370344162,
- -0.02323080413043499,
- 0.02765483967959881,
- -0.025649597868323326,
- -0.02655170112848282,
- -0.019786786288022995,
- -0.02277212403714657,
- 0.02988203801214695,
- -0.012643860653042793,
- -1.1973576796719954e-8,
- -0.030771508812904358,
- -0.030888015404343605,
- 0.007864895276725292,
- 0.00016314073582179844,
- -0.0027161857578903437,
- 0.023155592381954193,
- 0.060765959322452545,
- 0.10133125633001328,
- -0.017813147976994514,
- 0.06024229899048805,
- -0.07278542965650558,
- 0.02407080866396427,
- -0.07194745540618896,
- 0.06926481425762177,
- 0.039316993206739426,
- 0.0023085521534085274,
- -0.025047533214092255,
- 0.06495355814695358,
- -0.024642467498779297,
- -0.06370339542627335,
- 0.03454525023698807,
- 0.03984593600034714,
- 0.018884606659412384,
- 0.05124453827738762,
- -0.02089856006205082,
- -0.0155487060546875,
- 0.022304346784949303,
- 0.010447333566844463,
- 0.1120881661772728,
- 0.027213335037231445,
- 0.04383167251944542,
- 0.06797932088375092,
- -0.004107056185603142,
- -0.05768955871462822,
- -0.09454556554555893,
- -0.047251082956790924,
- -0.017261534929275513,
- -0.02240161783993244,
- 0.014412482269108295,
- -0.040671538561582565,
- -0.04403056204319,
- 0.03196018561720848,
- 0.02098919451236725,
- 0.0038751629181206226,
- 0.04694279283285141,
- 0.001944309682585299,
- -0.11060117185115814,
- 0.0054586101323366165,
- -0.004023671615868807,
- -0.035024166107177734,
- 0.0013451266568154097,
- 0.005607841536402702,
- 0.06458234041929245,
- 0.07748062908649445,
- 0.0896223783493042,
- -0.013020535930991173,
- -0.015564284287393093,
- -0.05480034649372101,
- 0.003910763654857874,
- 0.04121986776590347,
- 0.010727505199611187,
- -0.0575103685259819,
- 0.08073464781045914,
- 0.01336588803678751
- ]
- },
- {
- "keyword": "transport",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.02995052933692932,
- -0.03872824087738991,
- 0.005388329271227121,
- 0.060337577015161514,
- 0.028500687330961227,
- -0.020034389570355415,
- 0.16378241777420044,
- 0.00017347029643133283,
- -0.037038397043943405,
- -0.013982324860990047,
- 0.03309260308742523,
- -0.013738168403506279,
- -0.036943066865205765,
- 0.10078196227550507,
- -0.07675257325172424,
- -0.07880808413028717,
- 0.04043214023113251,
- 0.021073222160339355,
- -0.0909806415438652,
- -0.0049043563194572926,
- -0.02461799792945385,
- 0.04458623751997948,
- -0.06776519119739532,
- 0.0009222999215126038,
- -0.0268869586288929,
- 0.044312164187431335,
- -0.021677134558558464,
- -0.07246200740337372,
- 0.0070376829244196415,
- -0.08945593237876892,
- -0.04681582376360893,
- 0.013742285780608654,
- -0.1274586021900177,
- 0.011404622346162796,
- -0.06635671854019165,
- 0.10607627779245377,
- 0.023761525750160217,
- -0.04675817862153053,
- 0.048467472195625305,
- -0.01824888400733471,
- 0.011600199155509472,
- -0.0988202840089798,
- 0.04943644255399704,
- 0.06301189213991165,
- -0.014855020679533482,
- -0.03918277099728584,
- 0.04083128273487091,
- -0.03139922767877579,
- -0.016964605078101158,
- 0.006068535149097443,
- -0.010800300166010857,
- -0.04825172945857048,
- -0.04638803005218506,
- 0.07986590266227722,
- -0.05263851210474968,
- 0.0036919310223311186,
- 0.014238755218684673,
- -0.008813194930553436,
- -0.05719974264502525,
- -0.000858111830893904,
- -0.003216125536710024,
- 0.02770518884062767,
- -0.0024856175296008587,
- 0.02763592265546322,
- 0.07362113893032074,
- -0.08723001182079315,
- -0.027470164000988007,
- 0.05799011141061783,
- -0.051221977919340134,
- 0.00044924014946445823,
- 0.02001163922250271,
- -0.008271905593574047,
- -0.08601605147123337,
- 0.0019798451103270054,
- 0.07130669802427292,
- -0.11189524084329605,
- 0.01089833676815033,
- 0.05356372520327568,
- 0.05075409635901451,
- -0.025196338072419167,
- 0.04716179147362709,
- 0.004601947031915188,
- -0.04986941069364548,
- 0.007934913039207458,
- -0.024353882297873497,
- 0.017863646149635315,
- -0.005764313042163849,
- -0.014443399384617805,
- -0.062334902584552765,
- -0.010406829416751862,
- -0.008338193409144878,
- -0.054596662521362305,
- 0.03735955059528351,
- 0.017252184450626373,
- -0.06287120282649994,
- 0.004835170228034258,
- -0.05451013147830963,
- 0.004343677312135696,
- 0.06314216554164886,
- 0.17612875998020172,
- 0.010851058177649975,
- 0.09934908151626587,
- 0.0015450231730937958,
- 0.044723011553287506,
- -0.05536884814500809,
- -0.0350518524646759,
- -0.006526459474116564,
- 0.01727827824652195,
- 0.012331121601164341,
- 0.020469173789024353,
- -0.012418953701853752,
- 0.037370674312114716,
- -0.0021280087530612946,
- 0.01318521797657013,
- -0.0723310112953186,
- 0.024625450372695923,
- -0.06174950674176216,
- 0.010322623886168003,
- 0.006328441668301821,
- 0.04233706369996071,
- -0.059262800961732864,
- -0.044477373361587524,
- 0.06556207686662674,
- 0.004931395407766104,
- -0.037273209542036057,
- -0.06892521679401398,
- 0.04766888916492462,
- -5.191367292947147e-33,
- -0.13051186501979828,
- -0.08351686596870422,
- 0.08179835975170135,
- 0.05880693346261978,
- 0.009463123045861721,
- -0.062091607600450516,
- -0.07686395943164825,
- -0.05358016863465309,
- 0.06623509526252747,
- -0.043483808636665344,
- -0.08774226903915405,
- 0.06101621687412262,
- -0.03190232068300247,
- 0.04882125183939934,
- 0.013399637304246426,
- -0.04478916525840759,
- -0.005697246640920639,
- 0.02410617470741272,
- 0.07628995180130005,
- -0.053527284413576126,
- 0.01477859541773796,
- -0.015977604314684868,
- 0.010102584958076477,
- -0.06792088598012924,
- 0.06335622072219849,
- -0.030374491587281227,
- -0.05182911455631256,
- -0.07608870416879654,
- 0.08260272443294525,
- 0.03865642473101616,
- -0.0001127831419580616,
- 0.044652391225099564,
- -0.06641554087400436,
- -0.0019711304921656847,
- -0.002625339664518833,
- 0.004351810552179813,
- -0.03105320781469345,
- -0.026122896000742912,
- -0.01188681274652481,
- -0.02269057370722294,
- -0.041439276188611984,
- -0.06696172058582306,
- -0.07231209427118301,
- 0.04994964972138405,
- -0.012278883717954159,
- 0.04488595575094223,
- 0.06194758787751198,
- -0.06006656587123871,
- -0.03967968747019768,
- 0.02212098427116871,
- -0.04137076810002327,
- -0.0700526311993599,
- -0.010319952853024006,
- -0.09951160103082657,
- 0.015606728382408619,
- -0.05300581082701683,
- 0.05431443080306053,
- 0.027484262362122536,
- -0.041525643318891525,
- 0.04770084470510483,
- 0.011063464917242527,
- 0.1298934370279312,
- 0.026489948853850365,
- 0.026551049202680588,
- 0.12712135910987854,
- -0.001834534341469407,
- -0.04836346209049225,
- -0.031134380027651787,
- 0.0205350611358881,
- -0.02298157662153244,
- -0.06774343550205231,
- 0.013335435651242733,
- 0.05641263723373413,
- 0.020537007600069046,
- 0.08407240360975266,
- -0.005981043446809053,
- -0.06556051224470139,
- -0.006371046882122755,
- -0.042615678161382675,
- -0.04299016296863556,
- -0.13334906101226807,
- -0.014897439628839493,
- -0.012294996529817581,
- 0.016588427126407623,
- 0.025205036625266075,
- -0.0034867648500949144,
- -0.027622850611805916,
- -0.07190670818090439,
- 0.02082587592303753,
- 0.011853834614157677,
- -0.024527646601200104,
- 0.03104439377784729,
- -0.009606895968317986,
- 0.0368637815117836,
- 0.021459858864545822,
- 2.913358974402381e-33,
- 0.040786538273096085,
- 0.08919305354356766,
- -0.0029838201589882374,
- 0.03548514097929001,
- -0.004740984179079533,
- 0.010745806619524956,
- 0.04381955787539482,
- -0.037478432059288025,
- 0.0650344267487526,
- 0.09280411154031754,
- -0.1264096349477768,
- -0.015824930742383003,
- 0.0823783129453659,
- -0.001371651771478355,
- 0.057498279958963394,
- -0.06908118724822998,
- 0.08406627923250198,
- -0.01875656470656395,
- -0.06427199393510818,
- 0.027352094650268555,
- -0.050435662269592285,
- 0.024753570556640625,
- -0.03237463906407356,
- -0.044295161962509155,
- -0.04764691740274429,
- 0.06110915541648865,
- -0.027775030583143234,
- 0.009242480620741844,
- -0.04840222746133804,
- -0.006900768727064133,
- -0.015061560086905956,
- 0.011874384246766567,
- 0.011520457454025745,
- 0.008989623747766018,
- -0.0794203132390976,
- 0.06808657944202423,
- 0.035462506115436554,
- 0.11359099298715591,
- -0.03350125253200531,
- -0.04173130914568901,
- 0.010386396199464798,
- -0.03975875675678253,
- 0.05925431102514267,
- 0.08548133820295334,
- -0.020604372024536133,
- -0.0046860650181770325,
- -0.03881442919373512,
- -0.021726742386817932,
- 0.03968050703406334,
- -0.023509556427598,
- 0.10142599046230316,
- 0.04779095947742462,
- -0.03959023952484131,
- -0.0352596715092659,
- 0.07967685908079147,
- 0.12257252633571625,
- 0.000770711456425488,
- -0.02183489501476288,
- 0.03328287601470947,
- -0.08985751122236252,
- 0.029631612822413445,
- 0.02209477312862873,
- -0.03226712346076965,
- -0.008689737878739834,
- -0.07526107877492905,
- 0.004826248623430729,
- -0.005386113189160824,
- -0.024125339463353157,
- 0.019383614882826805,
- 0.017506180331110954,
- 0.0364961214363575,
- 0.027395183220505714,
- -0.033918850123882294,
- 0.02337072417140007,
- -0.0021914078388363123,
- -0.012964113615453243,
- 0.06874192506074905,
- 0.05932994186878204,
- -0.04617142677307129,
- 0.04099058359861374,
- -0.02024383470416069,
- 0.03313622996211052,
- -0.0015982313780114055,
- -0.00448227534070611,
- 0.06764968484640121,
- -0.04783100634813309,
- 0.016766244545578957,
- -0.10030960291624069,
- 0.0005367671838030219,
- -0.03525743633508682,
- -0.026720691472291946,
- 0.0001397178421029821,
- -0.009539220482110977,
- -0.034206077456474304,
- -0.05904252827167511,
- -1.1519118991998312e-8,
- -0.016713012009859085,
- -0.014488080516457558,
- 0.023745222017169,
- -0.016745328903198242,
- -0.06853248924016953,
- 0.01468907855451107,
- 0.05741952359676361,
- 0.09412633627653122,
- -0.0034214702900499105,
- 0.12319297343492508,
- -0.06204191595315933,
- 0.0878540500998497,
- 0.05181271582841873,
- 0.09204868972301483,
- 0.04787752032279968,
- 0.04659009352326393,
- -0.009106162935495377,
- -0.005190144758671522,
- -0.065338134765625,
- -0.0858745276927948,
- 0.027655677869915962,
- -0.014488035812973976,
- 0.01625477895140648,
- 0.12149576842784882,
- 0.010348486714065075,
- -0.025900637730956078,
- 0.015210417099297047,
- -0.035167522728443146,
- 0.07345013320446014,
- -0.042202409356832504,
- 0.004422965459525585,
- 0.04354353994131088,
- -0.015388141386210918,
- 0.03235124424099922,
- -0.01915612630546093,
- 0.0029296462889760733,
- 0.03404095023870468,
- 0.052822913974523544,
- -0.00501477625221014,
- 0.052170176059007645,
- -0.009579667821526527,
- 0.005700933281332254,
- 0.004099480342119932,
- 0.027680151164531708,
- 0.04743311181664467,
- 0.0452522449195385,
- -0.08114742487668991,
- 0.0350034162402153,
- -0.07978934049606323,
- 0.021873915567994118,
- -0.0022093947045505047,
- -0.011844654567539692,
- 0.026071365922689438,
- 0.09407361596822739,
- 0.0552637055516243,
- 0.042659733444452286,
- -0.08050354570150375,
- -0.053607337176799774,
- -0.06691892445087433,
- 0.06613872945308685,
- -0.024023057892918587,
- 0.1256323754787445,
- 0.05577762797474861,
- 0.007985326461493969
- ]
- },
- {
- "keyword": "subscription",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0870717242360115,
- -0.05501508712768555,
- -0.043639104813337326,
- 0.005747916642576456,
- 0.014265693724155426,
- 0.009002652019262314,
- 0.06673240661621094,
- -0.009187211282551289,
- 0.0535104013979435,
- 0.030481351539492607,
- -0.0028373401146382093,
- 0.017324378713965416,
- 0.0562756322324276,
- 0.002175738336518407,
- -0.012104004621505737,
- -0.027190789580345154,
- 0.02025309018790722,
- 0.01634310744702816,
- -0.0034451214596629143,
- -0.035804253071546555,
- -0.1497567892074585,
- 0.03527747839689255,
- -0.012573610059916973,
- 0.07517759501934052,
- 0.023029156029224396,
- -0.045676592737436295,
- -0.03909507766366005,
- -0.017554808408021927,
- -0.00879826582968235,
- -0.07263291627168655,
- 0.07903560250997543,
- -0.06485926359891891,
- 0.08801987767219543,
- -0.0028536501340568066,
- 0.013260338455438614,
- -0.05270855128765106,
- -0.012689562514424324,
- 0.007410278543829918,
- -0.08086502552032471,
- -0.020535817369818687,
- 0.053703416138887405,
- -0.09488079696893692,
- -0.06092209741473198,
- 0.021714523434638977,
- -0.009475401602685452,
- 0.012509050779044628,
- -0.011191450990736485,
- 0.05161238834261894,
- 0.05493832007050514,
- 0.07644512504339218,
- 0.00039610237581655383,
- -0.07951371371746063,
- -0.0018547596409916878,
- 0.031539298593997955,
- 0.01869288645684719,
- 0.032801903784275055,
- -0.0031867120414972305,
- 0.045528534799814224,
- 0.0016491346759721637,
- -0.04964488744735718,
- 0.06787347048521042,
- -0.0684475377202034,
- -0.1084369644522667,
- 0.07700517773628235,
- -0.029484830796718597,
- 0.07506637275218964,
- 0.04735253006219864,
- 0.11751197278499603,
- -0.005907933693379164,
- -0.03915591165423393,
- -0.09944381564855576,
- 0.08791635930538177,
- -0.023588968440890312,
- 0.029758475720882416,
- 0.0669412612915039,
- -0.006546563934534788,
- 0.01248217560350895,
- -0.07987289875745773,
- 0.07688429206609726,
- 0.035129573196172714,
- -0.05947444215416908,
- 0.01717955432832241,
- -0.022608283907175064,
- -0.0008851750753819942,
- 0.03345669433474541,
- 0.0288570374250412,
- 0.06125343590974808,
- -0.018351882696151733,
- -0.020594079047441483,
- -0.036383006721735,
- 0.01165953278541565,
- 0.06271089613437653,
- 0.05517033487558365,
- -0.01652740128338337,
- -0.13925963640213013,
- 0.030989771708846092,
- 0.012013129889965057,
- -0.03879251703619957,
- -0.04256467521190643,
- 0.22235985100269318,
- 0.010836529545485973,
- 0.04009672626852989,
- 0.029115406796336174,
- -0.0056700329296290874,
- -0.019132928922772408,
- -0.09389165043830872,
- -0.020981797948479652,
- 0.0630272850394249,
- -0.018004808574914932,
- 0.04135650396347046,
- -0.043513957411050797,
- 0.0002165570913348347,
- -0.026983730494976044,
- -0.049719445407390594,
- 0.013854796066880226,
- 0.1185673400759697,
- 0.031765084713697433,
- 0.09162276238203049,
- 0.0271567702293396,
- -0.027134770527482033,
- 0.03054460883140564,
- 0.01587207429111004,
- 0.004753659013658762,
- -0.0339597649872303,
- -0.0395197793841362,
- -0.06989479809999466,
- 0.0019234739011153579,
- -5.528436624625591e-33,
- 0.00379131524823606,
- 0.029893623664975166,
- 0.026911959052085876,
- -0.00523580564185977,
- 0.02535509690642357,
- 0.005215429235249758,
- 0.07124677300453186,
- 0.01871367171406746,
- -0.0523131899535656,
- 0.014021096751093864,
- -0.010166903026401997,
- 0.1369132250547409,
- -0.003860123222693801,
- 0.04852232709527016,
- -0.018695084378123283,
- -0.07453982532024384,
- -0.012429468333721161,
- 0.08320750296115875,
- -0.021526353433728218,
- -0.027993595227599144,
- -0.06273853033781052,
- -0.008104804903268814,
- 0.041336558759212494,
- 0.062224771827459335,
- 0.0009095671121031046,
- -0.03448246046900749,
- 0.006878828164190054,
- 0.013177750632166862,
- 0.08698872476816177,
- 0.019345538690686226,
- -0.003278746735304594,
- 0.02378152869641781,
- -0.06206448748707771,
- -0.016486776992678642,
- 0.0175009835511446,
- -0.0760856494307518,
- 0.01401964295655489,
- -0.05095870792865753,
- -0.002050427021458745,
- -0.04049081355333328,
- 0.022756904363632202,
- 0.0003551742120180279,
- -0.07235937565565109,
- -0.022764010354876518,
- -0.023931846022605896,
- -0.023531068116426468,
- 0.08882808685302734,
- -0.051208846271038055,
- 0.09394053369760513,
- 0.015933075919747353,
- 0.04628363996744156,
- 0.024410873651504517,
- -0.1171528697013855,
- -0.046658050268888474,
- 0.001999360742047429,
- -0.01582382060587406,
- 0.001908866106532514,
- 0.0030789587181061506,
- 0.03125307336449623,
- -0.07377144694328308,
- 0.05750459432601929,
- -0.006125381216406822,
- 0.11856777966022491,
- -0.009601649828255177,
- -0.07359130680561066,
- 0.006224906537681818,
- -0.010939259082078934,
- -0.062183771282434464,
- 0.017742397263646126,
- 0.0026419037021696568,
- 0.04259521886706352,
- -0.007040317170321941,
- 0.020515121519565582,
- 0.005316116381436586,
- -0.04799848049879074,
- 0.01070939190685749,
- -0.006021900102496147,
- -0.0021914909593760967,
- 0.0028050316032022238,
- 0.0624241977930069,
- -0.04547898471355438,
- -0.018313195556402206,
- -0.030697811394929886,
- 0.10608125478029251,
- 0.06894955784082413,
- 0.10603338479995728,
- -0.011602790094912052,
- -0.002759935101494193,
- -0.009133397601544857,
- 0.007421360816806555,
- -0.04656731337308884,
- 0.021545104682445526,
- 0.033999670296907425,
- 0.007891771383583546,
- 0.07544644176959991,
- 5.315587291128307e-33,
- -0.03638039529323578,
- -0.03817737102508545,
- -0.03295163810253143,
- -0.00911935418844223,
- -0.013942316174507141,
- -0.05173884704709053,
- -0.07515835762023926,
- 0.0642017349600792,
- 0.07502137124538422,
- 0.04925717040896416,
- -0.06573018431663513,
- -0.005459747277200222,
- -0.032846130430698395,
- 0.08310586959123611,
- 0.04097112640738487,
- -0.012852970510721207,
- 0.09202760457992554,
- -0.035771287977695465,
- -0.029120683670043945,
- -0.034517694264650345,
- -0.07945562154054642,
- -0.0022693045902997255,
- -0.01061225961893797,
- -0.05494359880685806,
- -0.003710504388436675,
- 0.039779528975486755,
- 0.08781174570322037,
- 0.11359748244285583,
- -0.007096060086041689,
- 0.009491550736129284,
- 0.05925446376204491,
- -0.018464088439941406,
- -0.06399582326412201,
- 0.006188821513205767,
- -0.006452493369579315,
- -0.0035851772408932447,
- 0.11064831912517548,
- 0.1389533132314682,
- -0.023780180141329765,
- -0.05514694005250931,
- 0.05835636705160141,
- -0.07973982393741608,
- 0.061942435801029205,
- 0.04890742525458336,
- 0.040041789412498474,
- -0.02609056979417801,
- 0.055672962218523026,
- 0.020203767344355583,
- 0.036058008670806885,
- 0.06886235624551773,
- -0.08839624375104904,
- -0.031025946140289307,
- 0.04619183763861656,
- 0.012358644045889378,
- -0.06802795827388763,
- 0.0783199593424797,
- -0.026477426290512085,
- 0.06664823740720749,
- 0.07396887987852097,
- -0.03577537089586258,
- -0.04285429045557976,
- 0.005641468800604343,
- -0.07723698019981384,
- -0.038052283227443695,
- -0.029703563079237938,
- 0.00578857958316803,
- 0.045135438442230225,
- -0.011374887079000473,
- 0.0022211007308214903,
- -0.011115087196230888,
- -0.0897846519947052,
- -0.05120927467942238,
- -0.011280362494289875,
- -0.04961080476641655,
- -0.03645165637135506,
- 0.01702999323606491,
- -0.08898038417100906,
- 0.05035601928830147,
- -0.04089144244790077,
- 0.020365357398986816,
- -0.09849558025598526,
- -0.018528621643781662,
- -0.017337895929813385,
- 0.004573058802634478,
- -0.004970065318048,
- -0.10150013864040375,
- 0.10299333184957504,
- -0.03152242302894592,
- 0.014830430969595909,
- -0.03812315687537193,
- -0.006382632534950972,
- -0.019367361441254616,
- -0.07879897207021713,
- 0.008085115812718868,
- 0.024828463792800903,
- -1.2510652069863681e-8,
- 0.012266344390809536,
- -0.010052290745079517,
- 0.021772727370262146,
- 0.029834719374775887,
- 0.08823319524526596,
- 0.05397064983844757,
- -0.0043823085725307465,
- -0.03590848669409752,
- 0.012103407643735409,
- 0.07325413823127747,
- -0.036775849759578705,
- -0.03941699489951134,
- 0.010079216212034225,
- 0.048787571489810944,
- 0.06754913926124573,
- -0.05455641448497772,
- -0.05272037163376808,
- -0.04545840993523598,
- -0.0751335397362709,
- -0.009869931265711784,
- 0.022029783576726913,
- 0.027181288227438927,
- 0.07605595141649246,
- -0.06560740619897842,
- -0.007814018055796623,
- 0.013833087868988514,
- 0.03964998573064804,
- 0.08166124671697617,
- 0.03647607937455177,
- -0.05227462574839592,
- 0.016495369374752045,
- 0.08313808590173721,
- -0.01727980189025402,
- -0.08207669109106064,
- 0.0024028122425079346,
- -0.060381338000297546,
- -0.018925480544567108,
- -0.031907156109809875,
- -0.03405974805355072,
- -0.018441256135702133,
- 0.054388727992773056,
- -0.02907687984406948,
- 0.05962724611163139,
- 0.00811492558568716,
- -0.05946746841073036,
- 0.0181198101490736,
- -0.054782889783382416,
- -0.034355826675891876,
- 0.1173183023929596,
- -0.011829808354377747,
- -0.016918309032917023,
- 0.001046884572133422,
- 0.07015889137983322,
- 0.009974019601941109,
- -0.026633363217115402,
- -0.032961152493953705,
- 0.056522756814956665,
- -0.03933680057525635,
- -0.049719128757715225,
- 0.07227692753076553,
- 0.09304171055555344,
- -0.013367822393774986,
- 0.005240857135504484,
- -0.05307861045002937
- ]
- },
- {
- "keyword": "membership",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05064867436885834,
- -0.05642368271946907,
- 0.010262830182909966,
- 0.0761449933052063,
- -0.01801731064915657,
- 0.004565727896988392,
- 0.1752968281507492,
- -0.01535269245505333,
- 0.03537234663963318,
- -0.03249554708600044,
- 0.0015094148693606257,
- -0.005395003594458103,
- 0.08814698457717896,
- -0.02582629770040512,
- -0.04311271384358406,
- -0.033357392996549606,
- -0.016406763345003128,
- 0.016117634251713753,
- -0.07319711893796921,
- -0.09538757801055908,
- -0.15371420979499817,
- -0.08080024272203445,
- -0.0012280724477022886,
- 0.08762317150831223,
- 0.002206956734880805,
- -0.013795158825814724,
- -0.035423193126916885,
- 0.021531976759433746,
- 0.024950165301561356,
- -0.05352866277098656,
- 0.022036178037524223,
- 0.05337664484977722,
- 0.06416456401348114,
- 0.023755082860589027,
- -0.026887891814112663,
- -0.025554781779646873,
- 0.04810584709048271,
- -0.02040869928896427,
- -0.07743404805660248,
- -0.015673920512199402,
- -0.05406766012310982,
- -0.02175549790263176,
- -0.059771183878183365,
- 0.03810624033212662,
- -0.010993566364049911,
- 0.0657627284526825,
- -0.013001730665564537,
- 0.0702422484755516,
- 0.023153306916356087,
- 0.07707283645868301,
- 0.11652610450983047,
- -0.020069807767868042,
- 0.007731233257800341,
- 0.028076132759451866,
- 0.030759867280721664,
- -0.018260397017002106,
- -0.02724887616932392,
- 0.006461188662797213,
- -0.054324280470609665,
- -0.0557863786816597,
- 0.05863036587834358,
- -0.0547451488673687,
- -0.06309802085161209,
- 0.010577358305454254,
- 0.000023072419935488142,
- 0.015439691953361034,
- -0.009737973101437092,
- 0.020220354199409485,
- -0.0075441752560436726,
- -0.08090906590223312,
- -0.024121850728988647,
- 0.03209025412797928,
- -0.008229844272136688,
- 0.07208886742591858,
- 0.05832773074507713,
- -0.007537135388702154,
- 0.08577067404985428,
- -0.040858663618564606,
- 0.11068490147590637,
- 0.02621779963374138,
- -0.040274932980537415,
- 0.0499085895717144,
- 0.0032808776013553143,
- 0.024006640538573265,
- 0.03179343789815903,
- -0.02677161991596222,
- 0.03192657604813576,
- 0.009184871800243855,
- -0.0679071918129921,
- -0.0030027939938008785,
- 0.0543634369969368,
- 0.037012215703725815,
- 0.049742184579372406,
- -0.04078999534249306,
- -0.12618388235569,
- 0.019749898463487625,
- -0.006070752162486315,
- 0.05489508435130119,
- -0.03457009792327881,
- 0.2423865646123886,
- -0.005020035430788994,
- 0.014555980451405048,
- 0.019838299602270126,
- -0.02783348597586155,
- -0.05070630833506584,
- -0.009522410109639168,
- 0.015482524409890175,
- 0.07244353741407394,
- 0.09658113121986389,
- 0.0018837193492799997,
- -0.0706939697265625,
- 0.00433932151645422,
- -0.06516189873218536,
- -0.014609228819608688,
- 0.029974138364195824,
- 0.04698282107710838,
- 0.016526469960808754,
- 0.04497341066598892,
- 0.06123148277401924,
- -0.022251730784773827,
- 0.04537026956677437,
- 0.03347919136285782,
- 0.05569516494870186,
- 0.01578647457063198,
- -0.030886683613061905,
- -0.0724821612238884,
- -0.0573711022734642,
- -5.4487017407833616e-33,
- -0.02969631552696228,
- 0.044010039418935776,
- 0.006354883778840303,
- -0.003996523562818766,
- 0.03424210101366043,
- -0.014276177622377872,
- -0.001618330948986113,
- -0.01533760130405426,
- -0.08894705027341843,
- 0.05697307735681534,
- -0.0905001163482666,
- 0.07926561683416367,
- 0.0366566926240921,
- -0.0321517251431942,
- 0.14476920664310455,
- -0.04480979964137077,
- -0.01505856029689312,
- -0.005383554380387068,
- 0.011754264123737812,
- -0.028298556804656982,
- -0.060084663331508636,
- 0.029632464051246643,
- 0.0122158732265234,
- 0.08923867344856262,
- -0.028999827802181244,
- -0.052347682416439056,
- -0.04827482998371124,
- -0.07216858863830566,
- 0.05076111853122711,
- 0.019492464140057564,
- 0.022446386516094208,
- 0.013186756521463394,
- -0.055393949151039124,
- -0.045610230416059494,
- 0.011249679140746593,
- -0.03853796049952507,
- 0.050490185618400574,
- -0.020784204825758934,
- 0.0061036073602736,
- -0.10198327153921127,
- -0.047349702566862106,
- -0.017809361219406128,
- 0.02844666689634323,
- -0.0037177877966314554,
- 0.009056581184267998,
- 0.004581509158015251,
- 0.056802332401275635,
- -0.018221767619252205,
- 0.0335310697555542,
- 0.0841367244720459,
- -0.007946621626615524,
- -0.030722908675670624,
- -0.050200264900922775,
- -0.016226621344685555,
- -0.04123325273394585,
- -0.06838981062173843,
- -0.004208527505397797,
- 0.007080945651978254,
- 0.004513996187597513,
- -0.09603438526391983,
- 0.05842890217900276,
- 0.03600485250353813,
- -0.01751449890434742,
- 0.09244439005851746,
- -0.14058946073055267,
- -0.032314181327819824,
- 0.007019242271780968,
- -0.08869145810604095,
- 0.06431914120912552,
- -0.008058312349021435,
- -0.05014996975660324,
- 0.01144490484148264,
- -0.031395863741636276,
- 0.0158480666577816,
- -0.10873078554868698,
- 0.02296987548470497,
- 0.03709973394870758,
- 0.018255479633808136,
- 0.02217266894876957,
- 0.08297786116600037,
- -0.05579759180545807,
- -0.027836935594677925,
- 0.00217922474257648,
- 0.07563910633325577,
- 0.05818039923906326,
- 0.016282593831419945,
- 0.013965068385004997,
- -0.07349630445241928,
- -0.029287030920386314,
- -0.013258308172225952,
- -0.030844826251268387,
- -0.0361255444586277,
- 0.12120525538921356,
- 0.07773774117231369,
- 0.04449661821126938,
- 4.189756107260323e-33,
- -0.02370184101164341,
- -0.04617064818739891,
- 0.034281786531209946,
- -0.02485489659011364,
- 0.08607294410467148,
- -0.006716446485370398,
- -0.009883664548397064,
- -0.017704812809824944,
- -0.02276621013879776,
- 0.047004129737615585,
- -0.029802843928337097,
- 0.05718290060758591,
- -0.0062148659490048885,
- 0.07648167759180069,
- 0.0035149534232914448,
- -0.0234173983335495,
- 0.05378669127821922,
- 0.03937464952468872,
- 0.007470060605555773,
- -0.03806307539343834,
- -0.09539857506752014,
- 0.00371325621381402,
- 0.01325925812125206,
- -0.0357058085501194,
- 0.014591666869819164,
- 0.051234181970357895,
- 0.06618452817201614,
- 0.06735493242740631,
- -0.02764205075800419,
- 0.02889675833284855,
- 0.05155404284596443,
- -0.025680048391222954,
- -0.060124434530735016,
- -0.00868762843310833,
- -0.04998316988348961,
- -0.017516212537884712,
- 0.05135500431060791,
- 0.07401882857084274,
- -0.03317352756857872,
- -0.031796544790267944,
- 0.05801522359251976,
- -0.008519108407199383,
- 0.029719656333327293,
- 0.056421153247356415,
- -0.002685306128114462,
- 0.008769075386226177,
- 0.07585647702217102,
- -0.03952004015445709,
- -0.03333548083901405,
- 0.04095660150051117,
- -0.09102706611156464,
- -0.08127050846815109,
- 0.15344612300395966,
- -0.0007597191724926233,
- -0.027920342981815338,
- 0.034978266805410385,
- -0.07817765325307846,
- -0.005228027701377869,
- 0.05734963342547417,
- 0.002550974255427718,
- 0.016911698505282402,
- 0.03992414474487305,
- -0.04499435797333717,
- 0.09889331459999084,
- -0.052758682519197464,
- -0.04923176020383835,
- -0.022072114050388336,
- 0.08128378540277481,
- -0.06859338283538818,
- 0.03718005120754242,
- -0.08869438618421555,
- -0.06815052032470703,
- -0.029186153784394264,
- 0.04843893647193909,
- -0.06689592450857162,
- -0.015936480835080147,
- -0.04901241511106491,
- 0.08269485831260681,
- -0.055584684014320374,
- -0.007248338311910629,
- -0.05638774111866951,
- -0.03751419112086296,
- -0.0007614197093062103,
- 0.032964762300252914,
- 0.030983636155724525,
- -0.08589750528335571,
- 0.08391332626342773,
- 0.03302384540438652,
- 0.007110252510756254,
- -0.008028854615986347,
- 0.04297861084342003,
- -0.03353037312626839,
- -0.03824977949261665,
- -0.013489803299307823,
- -0.014865425415337086,
- -1.1777198771767416e-8,
- -0.024721160531044006,
- -0.004456330556422472,
- 0.027719365432858467,
- 0.016986291855573654,
- 0.09000323712825775,
- 0.002898078877478838,
- -0.038414422422647476,
- -0.00501310545951128,
- 0.013213912025094032,
- 0.1339338719844818,
- 0.03565993905067444,
- -0.007064157165586948,
- -0.054364316165447235,
- -0.05522530898451805,
- 0.010394314303994179,
- -0.013392768800258636,
- -0.0677645280957222,
- 0.02891312912106514,
- -0.0713195875287056,
- 0.007760874927043915,
- -0.01062314584851265,
- 0.021574025973677635,
- 0.015953384339809418,
- -0.06084665283560753,
- -0.054403018206357956,
- 0.03548043966293335,
- 0.027326274663209915,
- 0.07300819456577301,
- -0.01932302489876747,
- -0.020219014957547188,
- -0.027527639642357826,
- 0.12158205360174179,
- -0.034518178552389145,
- -0.025799913331866264,
- -0.035574041306972504,
- -0.04652860760688782,
- -0.07429938018321991,
- -0.018791453912854195,
- -0.029081905260682106,
- 0.0007875423179939389,
- -0.002660646801814437,
- 0.0275531318038702,
- 0.09607478976249695,
- 0.010161950252950191,
- 0.012809766456484795,
- 0.03121289238333702,
- -0.03654344007372856,
- -0.0016760261496528983,
- 0.07209370285272598,
- -0.007986770942807198,
- 0.032810479402542114,
- 0.0312708280980587,
- -0.019119417294859886,
- 0.06163209676742554,
- -0.026742365211248398,
- -0.015115765854716301,
- 0.010215741582214832,
- 0.032595086842775345,
- -0.05278143286705017,
- -0.056037917733192444,
- 0.03709397464990616,
- -0.0024437301326543093,
- -0.013516104780137539,
- -0.0012164461659267545
- ]
- },
- {
- "keyword": "plan",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08576750755310059,
- 0.07293770462274551,
- 0.00995326042175293,
- 0.024292470887303352,
- -0.03495132923126221,
- -0.054784126579761505,
- 0.06127581745386124,
- 0.0018037251429632306,
- -0.07268526405096054,
- -0.03845323249697685,
- -0.07859481871128082,
- 0.005351950880140066,
- -0.03241317719221115,
- 0.013997753150761127,
- 0.0004963704268448055,
- -0.011992393992841244,
- 0.0038003078661859035,
- -0.05029989778995514,
- -0.05787840858101845,
- 0.03157704696059227,
- -0.08720705658197403,
- 0.06224413588643074,
- 0.005515658762305975,
- -0.012579127214848995,
- -0.027707191184163094,
- 0.06153632700443268,
- 0.06731153279542923,
- 0.02679215930402279,
- -0.033517543226480484,
- -0.034307487308979034,
- 0.0899384468793869,
- 0.04668731987476349,
- -0.01765953190624714,
- -0.03464125096797943,
- -0.0025291668716818094,
- 0.02168991044163704,
- -0.02902377024292946,
- -0.0516139380633831,
- 0.02999153360724449,
- -0.04568197950720787,
- 0.005052335560321808,
- -0.05482659488916397,
- -0.05835418775677681,
- 0.06191875413060188,
- -0.001600966788828373,
- 0.008015847764909267,
- -0.016243193298578262,
- 0.02110426314175129,
- 0.014561688527464867,
- 0.010870547033846378,
- -0.032466016709804535,
- 0.007440468762069941,
- 0.03777699917554855,
- -0.03931575268507004,
- -0.018575699999928474,
- -0.010610854253172874,
- -0.010205680504441261,
- -0.009296199306845665,
- 0.024913255125284195,
- -0.05575264245271683,
- -0.008575201965868473,
- -0.07357940077781677,
- 0.021604400128126144,
- 0.003844293998554349,
- -0.10342087596654892,
- 0.04989912360906601,
- 0.039737455546855927,
- 0.08715679496526718,
- 0.005752760451287031,
- 0.07084862887859344,
- -0.0023995647206902504,
- 0.002540166722610593,
- -0.0721360370516777,
- -0.04246925562620163,
- 0.007665389683097601,
- 0.06590916961431503,
- 0.053756557404994965,
- -0.014887694269418716,
- 0.09785345941781998,
- -0.03866457939147949,
- -0.08077570050954819,
- 0.05850771442055702,
- -0.05042128264904022,
- 0.04003560543060303,
- -0.031279802322387695,
- 0.018572337925434113,
- 0.027711454778909683,
- -0.01689315028488636,
- -0.06861560791730881,
- -0.0387687087059021,
- 0.014255158603191376,
- -0.020556723698973656,
- -0.016028253361582756,
- -0.0009597499156370759,
- -0.0759681835770607,
- 0.08722511678934097,
- -0.06072090193629265,
- -0.13239121437072754,
- -0.02368246391415596,
- 0.23474383354187012,
- 0.017151981592178345,
- 0.07637397944927216,
- 0.057627420872449875,
- -0.0293740127235651,
- -0.03281675651669502,
- -0.08187925070524216,
- -0.05583745986223221,
- 0.07153546065092087,
- 0.02499327063560486,
- -0.036402154713869095,
- 0.03231489658355713,
- 0.013118534348905087,
- 0.05241445079445839,
- 0.022308291867375374,
- 0.09753687679767609,
- 0.04342005401849747,
- 0.010102808475494385,
- 0.08337389677762985,
- 0.05947679653763771,
- 0.029374154284596443,
- 0.019576657563447952,
- 0.03229095786809921,
- 0.047430362552404404,
- -0.0026907550636678934,
- -0.07447157800197601,
- -0.10292074084281921,
- -0.024638881906867027,
- -4.592620061806199e-33,
- 0.008704153820872307,
- 0.0848904550075531,
- 0.01710454747080803,
- 0.04921560361981392,
- 0.010747318156063557,
- 0.0010541718220338225,
- 0.05355880782008171,
- 0.0141152860596776,
- 0.0007419719477184117,
- 0.08901716023683548,
- -0.03266364708542824,
- -0.05073428526520729,
- -0.06682854145765305,
- 0.07688525319099426,
- 0.04155132174491882,
- -0.05934221297502518,
- -0.0030853580683469772,
- 0.07239457219839096,
- -0.033068008720874786,
- -0.0018393106292933226,
- 0.033559687435626984,
- 0.009069940075278282,
- 0.05120714753866196,
- 0.01955603063106537,
- -0.009942984208464622,
- 0.045048028230667114,
- -0.01938524655997753,
- -0.06302685290575027,
- -0.0007749339565634727,
- 0.021458977833390236,
- -0.017219778150320053,
- 0.051232654601335526,
- -0.09733283519744873,
- -0.01746406964957714,
- -0.023839246481657028,
- 0.030746016651391983,
- -0.05185431241989136,
- -0.038142696022987366,
- -0.0004502453375607729,
- -0.07853652536869049,
- 0.03366653621196747,
- 0.0525471530854702,
- -0.052159614861011505,
- 0.04688938707113266,
- 0.05425861105322838,
- 0.038930006325244904,
- 0.05825507268309593,
- -0.002026313217356801,
- 0.04043634235858917,
- 0.0031689456664025784,
- -0.005234450101852417,
- -0.06000232696533203,
- -0.10687395930290222,
- -0.030692076310515404,
- -0.04525254666805267,
- -0.0010187330190092325,
- -0.020813630893826485,
- -0.13164907693862915,
- 0.09010827541351318,
- 0.05083315446972847,
- 0.1218462660908699,
- 0.0004426826781127602,
- -0.07824181765317917,
- 0.03631448745727539,
- -0.02028622105717659,
- 0.041649047285318375,
- -0.023558350279927254,
- -0.001262766309082508,
- 0.012287773191928864,
- 0.003642779542133212,
- -0.0014022422255948186,
- 0.04236151650547981,
- 0.08384788781404495,
- 0.028313471004366875,
- -0.08653634041547775,
- 0.051549024879932404,
- 0.014513532631099224,
- 0.02345908246934414,
- -0.00296023883856833,
- 0.019917551428079605,
- 0.04608623683452606,
- 0.031549952924251556,
- -0.03506210818886757,
- 0.023822639137506485,
- 0.10471615195274353,
- 0.028592122718691826,
- 0.0771297961473465,
- -0.007839623838663101,
- -0.05161113291978836,
- 0.0363810770213604,
- -0.09511926025152206,
- 0.03790168836712837,
- 0.00038934656186029315,
- 0.05590593442320824,
- -0.0548085942864418,
- 4.361321344472759e-33,
- 0.04768618941307068,
- -0.04565039649605751,
- -0.019115516915917397,
- -0.012875961139798164,
- 0.08261743187904358,
- -0.0754944309592247,
- 0.022117149084806442,
- -0.011259852908551693,
- -0.007702353876084089,
- -0.008587679825723171,
- -0.11384730041027069,
- -0.06826165318489075,
- 0.07640771567821503,
- -0.015806235373020172,
- 0.027928156778216362,
- 0.049079544842243195,
- 0.1402416229248047,
- -0.014399850741028786,
- 0.0031704253051429987,
- 0.031979773193597794,
- -0.08289376646280289,
- -0.04989846795797348,
- -0.09778318554162979,
- 0.012108836323022842,
- -0.045640118420124054,
- 0.07076059281826019,
- 0.09771203249692917,
- 0.03109366074204445,
- -0.010368634946644306,
- 0.00902045052498579,
- 0.000921411148738116,
- -0.12510602176189423,
- -0.08140528947114944,
- -0.03717653825879097,
- 0.06446876376867294,
- 0.09574971348047256,
- 0.05075075849890709,
- 0.026877431198954582,
- -0.009899330325424671,
- 0.04408041387796402,
- 0.0733754113316536,
- -0.05151595175266266,
- -0.01949233189225197,
- 0.11858018487691879,
- -0.04467615857720375,
- 0.010891405865550041,
- 0.04736113175749779,
- 0.016810161992907524,
- -0.0037267657462507486,
- 0.0473250113427639,
- -0.07049588859081268,
- 0.05745964124798775,
- -0.06319174915552139,
- -0.022530287504196167,
- -0.020370731130242348,
- -0.027340760454535484,
- 0.06481780111789703,
- -0.06117970123887062,
- 0.01782645843923092,
- 0.00847791787236929,
- 0.02750794216990471,
- 0.09034443646669388,
- -0.04061833396553993,
- 0.014185923151671886,
- -0.014759250916540623,
- 0.03159664571285248,
- -0.03018364869058132,
- -0.04680607467889786,
- 0.02878672629594803,
- 0.009526217356324196,
- -0.05269313603639603,
- -0.005473668687045574,
- -0.040108758956193924,
- -0.023926226422190666,
- 0.030350802466273308,
- -0.12803125381469727,
- -0.030548151582479477,
- -0.009602061472833157,
- 0.04421841725707054,
- -0.007916589267551899,
- -0.019207395613193512,
- -0.016155079007148743,
- -0.08032400161027908,
- 0.016666067764163017,
- -0.003954876679927111,
- -0.03102502040565014,
- 0.034281354397535324,
- 0.038190342485904694,
- 0.0055443402379751205,
- 0.008188504725694656,
- -0.04781254753470421,
- 0.026899410411715508,
- 0.03035813756287098,
- 0.008296996355056763,
- 0.00015691088628955185,
- -1.3518739017115422e-8,
- -0.007216025609523058,
- 0.0121344905346632,
- 0.052124541252851486,
- -0.01444946601986885,
- 0.05681554973125458,
- 0.018503934144973755,
- -0.02090119943022728,
- -0.005575614515691996,
- 0.04640859365463257,
- 0.05105715990066528,
- 0.03692815825343132,
- 0.031287070363759995,
- 0.04891083389520645,
- 0.03237403184175491,
- 0.008628364652395248,
- -0.030258027836680412,
- 0.02134864404797554,
- -0.012394995428621769,
- 0.004678648430854082,
- -0.009525150991976261,
- -0.11926364153623581,
- -0.05374553054571152,
- 0.009188026189804077,
- -0.018083594739437103,
- 0.026454752311110497,
- 0.013432023115456104,
- -0.027748648077249527,
- 0.12129801511764526,
- 0.05594692379236221,
- 0.056903839111328125,
- -0.054117582738399506,
- -0.030333667993545532,
- -0.050388604402542114,
- 0.009111002087593079,
- 0.0021080567967146635,
- -0.07816910743713379,
- -0.050158265978097916,
- -0.02168513834476471,
- 0.07243528217077255,
- -0.019197918474674225,
- -0.031850725412368774,
- 0.0063905795104801655,
- 0.031044209375977516,
- -0.03934720903635025,
- -0.06362166255712509,
- -0.029238605871796608,
- -0.0038633253425359726,
- -0.06538736820220947,
- 0.002708120970055461,
- -0.05923698842525482,
- -0.07285653054714203,
- -0.03061738982796669,
- 0.06279714405536652,
- 0.11216963082551956,
- 0.09274467825889587,
- 0.06009193882346153,
- -5.136558911544853e-7,
- -0.03451859578490257,
- -0.022026361897587776,
- 0.0288656298071146,
- 0.13314422965049744,
- -0.05270324647426605,
- -0.033322613686323166,
- 0.011160707101225853
- ]
- },
- {
- "keyword": "training",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.00044029028504155576,
- 0.03730789199471474,
- -0.013161717914044857,
- 0.0841362476348877,
- -0.035440728068351746,
- 0.030330585315823555,
- 0.06991800665855408,
- -0.05186264216899872,
- -0.06665284186601639,
- -0.05684768781065941,
- -0.01028961781412363,
- -0.02103172242641449,
- 0.0060815163888037205,
- 0.04344357177615166,
- -0.03353988751769066,
- -0.025601133704185486,
- 0.016883429139852524,
- -0.006416505202651024,
- -0.05123094469308853,
- -0.09299100190401077,
- -0.030992574989795685,
- 0.009595368057489395,
- 0.052357252687215805,
- 0.0623987540602684,
- -0.04317387938499451,
- 0.05440419912338257,
- -0.020550094544887543,
- 0.013086603954434395,
- 0.028191037476062775,
- -0.10049065202474594,
- -0.0023982918355613947,
- -0.022270003333687782,
- 0.058327630162239075,
- 0.044019680470228195,
- -0.04069128632545471,
- 0.08853018283843994,
- 0.05504074692726135,
- 0.002423209371045232,
- 0.025308407843112946,
- 0.029701240360736847,
- -0.02499237284064293,
- -0.05766797438263893,
- -0.017422499135136604,
- -0.04163569211959839,
- 0.04492216929793358,
- 0.026311369612812996,
- 0.04941587150096893,
- -0.03608105704188347,
- -0.01878831349313259,
- 0.01557120680809021,
- -0.02858659066259861,
- -0.04290815442800522,
- -0.016340898349881172,
- 0.017591284587979317,
- 0.010496905073523521,
- 0.01935144141316414,
- 0.014273879118263721,
- 0.007410956546664238,
- -0.014943287707865238,
- -0.0030674459412693977,
- 0.016311414539813995,
- -0.023376211524009705,
- -0.11594308167695999,
- 0.00029819176415912807,
- 0.01183136086910963,
- -0.06045287102460861,
- -0.015490289777517319,
- 0.07969427108764648,
- 0.04186461865901947,
- -0.13723605871200562,
- 0.010913848876953125,
- 0.016809992492198944,
- -0.04883791506290436,
- 0.027574066072702408,
- 0.07198338210582733,
- 0.040638942271471024,
- 0.01644560694694519,
- 0.03838471323251724,
- 0.09526943415403366,
- -0.07215989381074905,
- 0.028021998703479767,
- 0.02817872352898121,
- 0.015030317939817905,
- 0.011246919631958008,
- 0.05566992983222008,
- -0.024532541632652283,
- 0.017820492386817932,
- 0.04769672080874443,
- 0.031707681715488434,
- 0.06099822744727135,
- 0.026062285527586937,
- -0.02042744681239128,
- -0.06192950904369354,
- 0.025767330080270767,
- -0.08307360857725143,
- 0.03815486654639244,
- -0.030095594003796577,
- 0.009757195599377155,
- -0.05544266849756241,
- 0.2343512326478958,
- 0.045466624200344086,
- -0.008898544125258923,
- -0.038485441356897354,
- 0.04549599811434746,
- -0.07954351603984833,
- -0.021893704310059547,
- -0.012544278055429459,
- 0.04065153747797012,
- 0.04462124779820442,
- -0.01655871607363224,
- 0.014893640764057636,
- 0.028188634663820267,
- -0.10085737705230713,
- 0.015439067967236042,
- 0.006252645514905453,
- 0.14742211997509003,
- -0.08152411878108978,
- 0.0005035565118305385,
- -0.023792486637830734,
- 0.13986214995384216,
- -0.06770408153533936,
- 0.015984373167157173,
- -0.005205182824283838,
- -0.0017874321201816201,
- -0.004916359204798937,
- -0.11916348338127136,
- -0.052705492824316025,
- -3.89708152379259e-33,
- 0.05876908451318741,
- -0.032282792031764984,
- 0.020233117043972015,
- 0.027700642123818398,
- -0.016584262251853943,
- -0.04643478989601135,
- 0.03365626931190491,
- -0.007799232844263315,
- 0.012489473447203636,
- 0.028202146291732788,
- -0.03372687101364136,
- 0.04458271339535713,
- 0.0011632830137386918,
- 0.017289333045482635,
- 0.11632657051086426,
- -0.027129990980029106,
- -0.0967155173420906,
- 0.06576937437057495,
- -0.007396428845822811,
- 0.03825470060110092,
- -0.004244574811309576,
- 0.00577526306733489,
- -0.04731824994087219,
- 0.0005352263106033206,
- 0.04393835365772247,
- 0.005420675501227379,
- -0.009784159250557423,
- 0.0037656158674508333,
- 0.034777797758579254,
- 0.02444392628967762,
- -0.01703750528395176,
- 0.06372930854558945,
- -0.03644870966672897,
- -0.05749208852648735,
- 0.019836202263832092,
- -0.02438138797879219,
- 0.03317980468273163,
- -0.06581950187683105,
- 0.05564378574490547,
- -0.02550545707345009,
- 0.028881149366497993,
- -0.004754574969410896,
- 0.05617513880133629,
- -0.04488557204604149,
- 0.03001636639237404,
- 0.03787749633193016,
- 0.09516435861587524,
- -0.02523593045771122,
- -0.11623454093933105,
- 0.045605581253767014,
- -0.04628472030162811,
- -0.04641945660114288,
- 0.00387364043854177,
- -0.10123450309038162,
- 0.028147133067250252,
- 0.07448713481426239,
- 0.02239975333213806,
- 0.031234968453645706,
- -0.010150697082281113,
- -0.021323565393686295,
- 0.079988032579422,
- 0.06342820823192596,
- -0.05154280364513397,
- 0.08644034713506699,
- -0.051391664892435074,
- -0.07845211774110794,
- 0.0020701130852103233,
- -0.031412508338689804,
- 0.12060486525297165,
- -0.027450621128082275,
- -0.0999080166220665,
- -0.028041090816259384,
- 0.03344722464680672,
- -0.06255863606929779,
- 0.0716504454612732,
- -0.0878087654709816,
- -0.012239308096468449,
- 0.03860170394182205,
- -0.037301380187273026,
- 0.004104131832718849,
- 0.011344424448907375,
- 0.038795337080955505,
- -0.007186866365373135,
- 0.007591421250253916,
- 0.05008113011717796,
- 0.009909733198583126,
- -0.03625888749957085,
- -0.10244052112102509,
- 0.05233055353164673,
- 0.08339668810367584,
- -0.08152108639478683,
- -0.027537541463971138,
- -0.013817102648317814,
- 0.07198230177164078,
- 0.020601920783519745,
- 3.5114345207244295e-33,
- 0.03232193738222122,
- 0.07211216539144516,
- -0.018695823848247528,
- 0.07133181393146515,
- 0.05277905613183975,
- 0.05821983516216278,
- 0.049162399023771286,
- 0.07773958891630173,
- -0.06455563008785248,
- 0.05499649420380592,
- -0.04761946201324463,
- -0.04218783229589462,
- 0.013976896181702614,
- 0.012804047204554081,
- -0.04112745821475983,
- -0.016800573095679283,
- -0.006920522544533014,
- 0.04407200217247009,
- 0.011014802381396294,
- -0.0023339204490184784,
- 0.0068705035373568535,
- 0.027783265337347984,
- 0.0018389549804851413,
- -0.0034605583641678095,
- -0.010304187424480915,
- 0.016434932127594948,
- 0.0008880096138454974,
- 0.10559246689081192,
- -0.011577608995139599,
- 0.02144404500722885,
- 0.0023333937861025333,
- -0.023296035826206207,
- -0.03366393223404884,
- 0.0032193942461162806,
- -0.08733828365802765,
- 0.06280137598514557,
- 0.07999923080205917,
- 0.02087266370654106,
- -0.03854512423276901,
- 0.10683418065309525,
- 0.0934857502579689,
- -0.04906018078327179,
- -0.019269686192274094,
- 0.12458007037639618,
- -0.035782523453235626,
- -0.06702163070440292,
- -0.00016512729052919894,
- -0.016291216015815735,
- 0.005061473697423935,
- -0.01662023551762104,
- -0.03459959104657173,
- -0.06406015157699585,
- -0.03421347960829735,
- -0.08902379870414734,
- -0.014198013581335545,
- -0.0606071911752224,
- -0.0313144288957119,
- -0.040022823959589005,
- -0.028149543330073357,
- -0.04737192392349243,
- -0.0017274311976507306,
- 0.05012598633766174,
- -0.05242551863193512,
- 0.06707698851823807,
- -0.030963191762566566,
- 0.008313976228237152,
- -0.0482654944062233,
- 0.050642214715480804,
- 0.012049089185893536,
- 0.06905476748943329,
- 0.010784406214952469,
- 0.05651507526636124,
- 0.029812395572662354,
- 0.04045942798256874,
- -0.09498465061187744,
- -0.037448205053806305,
- -0.06273909658193588,
- -0.032367195934057236,
- -0.058874212205410004,
- -0.046925999224185944,
- -0.08062374591827393,
- -0.08823519945144653,
- -0.0475560761988163,
- 0.10539146512746811,
- 0.011372723616659641,
- 0.10563182085752487,
- 0.07156917452812195,
- 0.009279388934373856,
- -0.033168964087963104,
- -0.10163632780313492,
- -0.025303225964307785,
- -0.0007396764121949673,
- -0.02584879659116268,
- -0.005761641543358564,
- -0.03652127459645271,
- -1.2698921025844356e-8,
- -0.032730583101511,
- 0.013485006988048553,
- -0.005351469852030277,
- -0.008830923587083817,
- -0.012021102011203766,
- 0.019737277179956436,
- -0.026395339518785477,
- 0.04909130185842514,
- 0.00856923870742321,
- 0.05613383650779724,
- 0.018133385106921196,
- -0.02677079476416111,
- 0.030173296108841896,
- 0.019539494067430496,
- 0.07426498085260391,
- 0.02026326023042202,
- -0.00817087385803461,
- 0.0839567705988884,
- -0.0550667904317379,
- 0.024677056819200516,
- 0.04504329711198807,
- -0.004996966570615768,
- 0.05963427573442459,
- 0.0729912668466568,
- -0.014587480574846268,
- -0.12226549535989761,
- -0.010262470692396164,
- 0.12856413424015045,
- -0.0019257193198427558,
- 0.04129285365343094,
- -0.024449443444609642,
- 0.025562841445207596,
- 0.055498674511909485,
- -0.04847068712115288,
- -0.007916171103715897,
- 0.000884068722371012,
- 0.030713273212313652,
- -0.08740925788879395,
- 0.010755636729300022,
- -0.03846832737326622,
- -0.08886969089508057,
- 0.026737593114376068,
- 0.08901374042034149,
- -0.03543534129858017,
- 0.0007909080595709383,
- 0.03196629136800766,
- -0.04560484364628792,
- -0.014988845214247704,
- -0.007892105728387833,
- -0.07607102394104004,
- -0.0019308797782287002,
- 0.01559387519955635,
- -0.0024049074854701757,
- 0.04607716202735901,
- 0.044775962829589844,
- 0.046476058661937714,
- -0.030579542741179466,
- -0.05295364186167717,
- -0.10383768379688263,
- 0.09452652186155319,
- -0.035523585975170135,
- -0.03232884407043457,
- 0.022294851019978523,
- -0.013338413089513779
- ]
- },
- {
- "keyword": "education",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.025159412994980812,
- 0.10667233914136887,
- -0.028673170134425163,
- 0.08613181114196777,
- -0.0106571726500988,
- 0.02267424203455448,
- 0.07387371361255646,
- -0.014848768711090088,
- 0.026563728228211403,
- 0.07255294173955917,
- 0.057343605905771255,
- 0.005174314137548208,
- -0.005057533737272024,
- -0.0037911797408014536,
- -0.04465119540691376,
- -0.02657291293144226,
- -0.04624440521001816,
- -0.042392611503601074,
- -0.08344602584838867,
- -0.1118728518486023,
- -0.044612664729356766,
- 0.0804690346121788,
- 0.021412186324596405,
- 0.027799246832728386,
- -0.011318342760205269,
- 0.07977815717458725,
- 0.021655071526765823,
- -0.07305819541215897,
- -0.008287476375699043,
- -0.09528671950101852,
- 0.052302516996860504,
- -0.008206425234675407,
- 0.06834070384502411,
- 0.01763538084924221,
- -0.019301127642393112,
- 0.10617410391569138,
- 0.05609289929270744,
- 0.017503414303064346,
- 0.042360711842775345,
- -0.053645845502614975,
- -0.0261523500084877,
- -0.04007665440440178,
- -0.03450583666563034,
- -0.032114386558532715,
- 0.07788565009832382,
- -0.018968531861901283,
- 0.02512665092945099,
- -0.04453764110803604,
- 0.02000742405653,
- 0.007187195587903261,
- -0.04493444785475731,
- -0.047739166766405106,
- -0.01192683819681406,
- -0.04124798625707626,
- -0.027911804616451263,
- 0.04032782092690468,
- -0.03401825204491615,
- 0.021851737052202225,
- -0.020634688436985016,
- -0.042540617287158966,
- 0.020057281479239464,
- -0.021480461582541466,
- -0.057171862572431564,
- 0.06056564301252365,
- 0.044767193496227264,
- -0.043828174471855164,
- -0.03513193130493164,
- 0.09357006847858429,
- -0.04342612624168396,
- -0.030007630586624146,
- 0.042620062828063965,
- 0.01028918195515871,
- 0.024764718487858772,
- 0.0064453864470124245,
- 0.10301975905895233,
- -0.04794970527291298,
- 0.01635933853685856,
- 0.03848166763782501,
- 0.08760373294353485,
- -0.05421052128076553,
- 0.0911872461438179,
- -0.010699708946049213,
- -0.0486694797873497,
- 0.02402762696146965,
- 0.014798011630773544,
- -0.024974847212433815,
- 0.022820590063929558,
- 0.04123072698712349,
- -0.009371647611260414,
- -0.011644863523542881,
- -0.0017037625657394528,
- -0.06329226493835449,
- 0.03278025984764099,
- 0.05429021269083023,
- 0.0168294757604599,
- 0.006125268992036581,
- -0.0003130570112261921,
- -0.06302084028720856,
- -0.03609141707420349,
- 0.24495422840118408,
- -0.039311282336711884,
- 0.0013622354017570615,
- -0.03933549299836159,
- 0.054805539548397064,
- -0.04345894977450371,
- -0.01036003790795803,
- -0.013295759446918964,
- 0.034623656421899796,
- -0.0006722338730469346,
- -0.03293374925851822,
- -0.01625438779592514,
- 0.045432109385728836,
- -0.08445540815591812,
- 0.08750996738672256,
- 0.04512288421392441,
- 0.05587093159556389,
- 0.07579809427261353,
- 0.023633373901247978,
- 0.022097701206803322,
- 0.02514399029314518,
- -0.018937529996037483,
- 0.02277470752596855,
- -0.047039225697517395,
- -0.005175309721380472,
- -0.02262396365404129,
- -0.16078723967075348,
- -0.05383315309882164,
- -3.7204950889922194e-33,
- 0.05081969127058983,
- -0.037948183715343475,
- 0.029180673882365227,
- 0.05377727001905441,
- -0.0533316507935524,
- 0.02198933996260166,
- 0.05643828585743904,
- -0.004000348504632711,
- -0.02267848514020443,
- 0.04149064049124718,
- 0.017746690660715103,
- 0.05309551954269409,
- 0.00657713832333684,
- 0.08688507974147797,
- 0.1505797803401947,
- 0.054039038717746735,
- -0.08341404795646667,
- 0.09440174698829651,
- 0.05073859542608261,
- 0.028879037126898766,
- -0.009525456465780735,
- -0.002698268974199891,
- 0.00007464183727279305,
- -0.028118081390857697,
- -0.04324818402528763,
- -0.023009413853287697,
- -0.006981244310736656,
- -0.024501940235495567,
- 0.046041447669267654,
- -0.007260950747877359,
- 0.01876978948712349,
- 0.028163179755210876,
- -0.09688319265842438,
- -0.06882749497890472,
- 0.02632431499660015,
- -0.04313036426901817,
- 0.04304789379239082,
- -0.08552790433168411,
- 0.004797118715941906,
- -0.057842917740345,
- 0.042914293706417084,
- -0.0180058591067791,
- 0.032097820192575455,
- 0.012546933256089687,
- 0.007985148578882217,
- 0.05836308002471924,
- 0.06013662740588188,
- 0.016253674402832985,
- -0.054873839020729065,
- 0.050575535744428635,
- -0.062096405774354935,
- -0.05035847797989845,
- -0.06479167938232422,
- -0.09065719693899155,
- 0.06054813414812088,
- 0.06276088207960129,
- 0.026454808190464973,
- 0.056469112634658813,
- -0.0031525639351457357,
- -0.043384674936532974,
- -0.006977180019021034,
- 0.08302025496959686,
- -0.014457925222814083,
- -0.006046171300113201,
- 0.03137869015336037,
- 0.0026766585651785135,
- 0.013404647819697857,
- -0.012779965996742249,
- 0.1690048724412918,
- -0.12084997445344925,
- -0.08932256698608398,
- -0.029024789109826088,
- -0.018583567813038826,
- 0.02930283732712269,
- -0.023997914046049118,
- -0.044967181980609894,
- -0.005554685369133949,
- -0.05246278643608093,
- 0.040233809500932693,
- 0.07154691219329834,
- 0.048007745295763016,
- -0.01797409914433956,
- 0.03180360421538353,
- -0.03981699049472809,
- 0.10206178575754166,
- 0.03478938713669777,
- -0.017263079062104225,
- -0.07521197944879532,
- 0.04571957141160965,
- 0.010760289616882801,
- -0.04998292401432991,
- -0.06506142765283585,
- 0.002524346113204956,
- 0.09494217485189438,
- 0.009736059233546257,
- 2.8644301240753572e-33,
- -0.017093099653720856,
- 0.03053104504942894,
- -0.10142429172992706,
- 0.12413307279348373,
- 0.04553340747952461,
- 0.014382371678948402,
- 0.07811511307954788,
- 0.023089610040187836,
- -0.01133387628942728,
- 0.03857221081852913,
- -0.04940558597445488,
- -0.026639897376298904,
- 0.04604940488934517,
- 0.06578999012708664,
- 0.014084184542298317,
- -0.024706143885850906,
- 0.03795986622571945,
- -0.027679137885570526,
- -0.026087777689099312,
- -0.024757126346230507,
- -0.05505215749144554,
- 0.020699547603726387,
- -0.0279978197067976,
- -0.008448957465589046,
- -0.05436474457383156,
- -0.010779539123177528,
- -0.04389437288045883,
- 0.03378580883145332,
- -0.07062311470508575,
- 0.073665089905262,
- 0.08939438313245773,
- -0.05080588534474373,
- -0.00328981620259583,
- 0.04327753931283951,
- -0.03796205297112465,
- 0.05670265853404999,
- 0.025891445577144623,
- 0.03454433009028435,
- -0.0721544399857521,
- 0.06156179681420326,
- 0.04211387410759926,
- -0.06351974606513977,
- -0.06780100613832474,
- 0.07829814404249191,
- -0.0701766312122345,
- 0.019672628492116928,
- -0.011090720072388649,
- 0.05644547939300537,
- 0.05334442853927612,
- 0.040723107755184174,
- -0.050136227160692215,
- -0.005453609395772219,
- 0.01102518942207098,
- -0.06920314580202103,
- 0.017255913466215134,
- -0.02639073319733143,
- 0.01723712682723999,
- -0.0029300993774086237,
- -0.005669982638210058,
- -0.017979171127080917,
- 0.07123782485723495,
- 0.010187112726271152,
- -0.058283284306526184,
- 0.09265193343162537,
- -0.06250803172588348,
- 0.027550678700208664,
- -0.047074560075998306,
- 0.06728868186473846,
- -0.009723411872982979,
- 0.0024826752487570047,
- 0.11135397851467133,
- 0.04383474215865135,
- -0.03995128720998764,
- -0.04797085002064705,
- -0.0492488257586956,
- 0.049756716936826706,
- -0.03151147440075874,
- 0.04038495942950249,
- -0.018489984795451164,
- -0.015440380200743675,
- -0.020163558423519135,
- -0.07669515162706375,
- 0.006762936245650053,
- 0.02356206253170967,
- -0.05641382187604904,
- 0.029694000259041786,
- 0.07242607325315475,
- -0.061264779418706894,
- 0.01061126496642828,
- -0.09123124182224274,
- -0.043236006051301956,
- -0.0031071354169398546,
- -0.04703955724835396,
- -0.01813359558582306,
- -0.02963133342564106,
- -1.3260339493115225e-8,
- -0.03194950148463249,
- -0.07145237922668457,
- -0.00356673332862556,
- -0.06914879381656647,
- -0.0027549825608730316,
- 0.04868099465966225,
- -0.011389549821615219,
- 0.005971995182335377,
- 0.00999377854168415,
- 0.07526241987943649,
- -0.0746985599398613,
- 0.03737037256360054,
- 0.00017176178516820073,
- -0.010896860621869564,
- 0.048455897718667984,
- 0.05486811697483063,
- 0.016266828402876854,
- 0.049922674894332886,
- -0.015762820839881897,
- 0.04694938659667969,
- 0.04350326582789421,
- -0.02275412529706955,
- 0.0011873492039740086,
- -0.0037634382024407387,
- -0.014918481931090355,
- -0.034500155597925186,
- 0.05058790743350983,
- 0.05607260391116142,
- -0.056199733167886734,
- 0.08135990798473358,
- -0.017786310985684395,
- -0.02954484522342682,
- 0.00969733577221632,
- -0.0848628431558609,
- 0.01663525402545929,
- -0.0367409884929657,
- 0.0039903526194393635,
- -0.047590602189302444,
- 0.06071769818663597,
- -0.03191126510500908,
- -0.05232471227645874,
- -0.0037315369118005037,
- 0.08310399949550629,
- -0.025132199749350548,
- 0.01467262301594019,
- 0.03369876742362976,
- -0.055297113955020905,
- 0.038735345005989075,
- -0.002297164872288704,
- 0.01675509475171566,
- -0.046366818249225616,
- -0.04722977057099342,
- -0.03070073015987873,
- -0.06660591810941696,
- 0.05261240899562836,
- -0.0905933752655983,
- -0.023866381496191025,
- -0.07741880416870117,
- -0.07633854448795319,
- 0.02359069138765335,
- 0.10895460844039917,
- 0.0015370914479717612,
- 0.06946847587823868,
- 0.004070020280778408
- ]
- },
- {
- "keyword": "coaching",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.054888296872377396,
- 0.04354531317949295,
- -0.006276710890233517,
- 0.015805061906576157,
- 0.017677797004580498,
- 0.020963972434401512,
- 0.1111370399594307,
- 0.010625330731272697,
- 0.053016286343336105,
- -0.0007143091061152518,
- -0.01053948700428009,
- 0.005730760749429464,
- 0.05656059831380844,
- 0.02588985301554203,
- -0.012990443967282772,
- 0.031328633427619934,
- -0.046191003173589706,
- -0.015293383970856667,
- -0.06423164159059525,
- -0.17779649794101715,
- -0.09165579080581665,
- 0.034139178693294525,
- -0.010027961805462837,
- -0.0008107208996079862,
- 0.025229360908269882,
- 0.0657435953617096,
- -0.054323647171258926,
- -0.03809180483222008,
- -0.0002520958660170436,
- -0.07741611450910568,
- -0.02140123024582863,
- -0.10584806650876999,
- -0.012174838222563267,
- 0.01622053235769272,
- -0.06585067510604858,
- 0.10498273372650146,
- -0.049063790589571,
- 0.010997697710990906,
- 0.024607015773653984,
- 0.006759658455848694,
- 0.03174639865756035,
- -0.04376431927084923,
- -0.013698999769985676,
- -0.015828613191843033,
- -0.006802425719797611,
- 0.08056686818599701,
- 0.04314973205327988,
- 0.0421670600771904,
- -0.01648869551718235,
- 0.012441026046872139,
- -0.07222123444080353,
- 0.018177926540374756,
- -0.027821596711874008,
- -0.032245028764009476,
- 0.06532475352287292,
- 0.052463188767433167,
- 0.01017756201326847,
- 0.007840895093977451,
- -0.02891743928194046,
- 0.051312465220689774,
- 0.07529327273368835,
- -0.004589392337948084,
- -0.12679699063301086,
- 0.03153056278824806,
- 0.0016681432025507092,
- -0.034887127578258514,
- -0.09136451035737991,
- 0.04975013807415962,
- -0.00164339120965451,
- -0.07087866961956024,
- 0.03322882950305939,
- -0.0366801992058754,
- 0.025069113820791245,
- -0.03578773885965347,
- 0.10565715283155441,
- 0.012772048823535442,
- 0.04848304018378258,
- -0.015015500597655773,
- 0.08889991044998169,
- -0.027018720284104347,
- -0.037725090980529785,
- -0.10665012896060944,
- -0.04481004923582077,
- 0.03692501410841942,
- 0.019113503396511078,
- -0.01893146149814129,
- -0.010941038839519024,
- -0.03553309291601181,
- 0.04471955820918083,
- 0.07714464515447617,
- 0.002761528128758073,
- -0.0613570474088192,
- -0.006452557630836964,
- 0.0060975318774580956,
- -0.034502364695072174,
- 0.09148719161748886,
- -0.014455722644925117,
- -0.08716952800750732,
- -0.0603342279791832,
- 0.24910634756088257,
- 0.009611370041966438,
- 0.0381154865026474,
- -0.010407674126327038,
- -0.003087665420025587,
- -0.047707702964544296,
- 0.016096388921141624,
- -0.07887022197246552,
- 0.05877113714814186,
- -0.0367528535425663,
- 0.01759697124361992,
- -0.06833189725875854,
- 0.06921766698360443,
- -0.030133025720715523,
- 0.08433391153812408,
- -0.03616062551736832,
- 0.009979262948036194,
- 0.04297376051545143,
- 0.03985271230340004,
- -0.021556302905082703,
- 0.03563695400953293,
- 0.029658976942300797,
- 0.051557205617427826,
- -0.030378276482224464,
- 0.005637692753225565,
- -0.01693134568631649,
- -0.01807851344347,
- -0.030925806611776352,
- -4.6073423938662786e-33,
- 0.04622676596045494,
- -0.044395770877599716,
- 0.05600165203213692,
- 0.08044734597206116,
- -0.008911995217204094,
- 0.01413057278841734,
- 0.06656326353549957,
- -0.010865123011171818,
- -0.007539015728980303,
- -0.015114180743694305,
- 0.06756660342216492,
- 0.008249342441558838,
- 0.0351521335542202,
- -0.0007760213338769972,
- 0.07206428050994873,
- -0.020278451964259148,
- -0.08714822679758072,
- 0.03697929531335831,
- 0.0048316060565412045,
- -0.003926078323274851,
- 0.006696379277855158,
- 0.030166102573275566,
- -0.019466551020741463,
- 0.07739614695310593,
- 0.0024315055925399065,
- 0.0006932110991328955,
- -0.0021006367169320583,
- -0.06116209924221039,
- 0.009539795108139515,
- -0.0024525122717022896,
- -0.03322429209947586,
- -0.00743919238448143,
- -0.10134613513946533,
- -0.01849907450377941,
- -0.0313141867518425,
- -0.08601449429988861,
- -0.004550079815089703,
- -0.09272409230470657,
- 0.07106843590736389,
- 0.013704520650207996,
- -0.026704270392656326,
- 0.003163727233186364,
- -0.06066453456878662,
- -0.05625462159514427,
- 0.01765689253807068,
- 0.0361015722155571,
- 0.01402360387146473,
- -0.011970855295658112,
- -0.07499875128269196,
- 0.008386388421058655,
- 0.039096977561712265,
- -0.047365251928567886,
- 0.061568159610033035,
- -0.06268703937530518,
- 0.0646636113524437,
- -0.01836950145661831,
- 0.054062098264694214,
- 0.02995467744767666,
- -0.00170353171415627,
- 0.009327840991318226,
- 0.06856463849544525,
- 0.047835782170295715,
- -0.04742144048213959,
- 0.03432324528694153,
- 0.04336296021938324,
- -0.061574287712574005,
- 0.0605759434401989,
- 0.03990142047405243,
- 0.11257316172122955,
- -0.07897327840328217,
- -0.03559660539031029,
- 0.04489916190505028,
- -0.006430851761251688,
- 0.064036063849926,
- 0.012821879237890244,
- -0.010985291562974453,
- 0.0069164396263659,
- -0.03509562835097313,
- 0.04466206952929497,
- 0.0017499334644526243,
- 0.047349706292152405,
- 0.00790430884808302,
- -0.022324850782752037,
- -0.028542635962367058,
- 0.03507489338517189,
- 0.021609287708997726,
- -0.08348454535007477,
- -0.019039729610085487,
- 0.05877932533621788,
- 0.0664757788181305,
- -0.07723023742437363,
- 0.00965677946805954,
- -0.045573700219392776,
- 0.07388103008270264,
- -0.0022370305377990007,
- 4.095989861631106e-33,
- -0.08170938491821289,
- -0.040459807962179184,
- -0.02792835235595703,
- 0.09035197645425797,
- 0.02733536995947361,
- -0.037171173840761185,
- 0.001381525071337819,
- 0.022690411657094955,
- 0.055567000061273575,
- 0.055731501430273056,
- -0.05207227170467377,
- -0.019040685147047043,
- 0.010043281130492687,
- 0.06386465579271317,
- -0.07301704585552216,
- -0.0146479532122612,
- 0.000191325627383776,
- -0.010248120874166489,
- -0.025726385414600372,
- -0.02756934054195881,
- -0.013619083911180496,
- 0.10053572058677673,
- 0.008037914521992207,
- -0.031061308458447456,
- -0.003451017662882805,
- 0.016391288489103317,
- -0.046776145696640015,
- 0.09848940372467041,
- -0.040198780596256256,
- 0.03254307433962822,
- 0.08253706246614456,
- -0.052285805344581604,
- 0.06690458208322525,
- -0.0533832386136055,
- -0.004885401111096144,
- 0.0583522729575634,
- 0.03696074336767197,
- 0.03915921226143837,
- -0.07011072337627411,
- 0.0679798349738121,
- 0.08437172323465347,
- -0.06912588328123093,
- -0.0012213170994073153,
- -0.005607708357274532,
- -0.03374290093779564,
- 0.06169498711824417,
- 0.03490382805466652,
- -0.046050772070884705,
- -0.053977105766534805,
- 0.030451102182269096,
- -0.09107290208339691,
- 0.015394341200590134,
- -0.07031653076410294,
- -0.022821800783276558,
- -0.022563733160495758,
- -0.03755519539117813,
- 0.020853864029049873,
- -0.020442256703972816,
- 0.025603007525205612,
- -0.052269142121076584,
- 0.03191235288977623,
- 0.03884400427341461,
- -0.0420088991522789,
- 0.04472655802965164,
- -0.004621351137757301,
- 0.040863316506147385,
- -0.03188958764076233,
- -0.021017633378505707,
- 0.013222825713455677,
- 0.004825429990887642,
- -0.027427908033132553,
- 0.0931437686085701,
- -0.020416969433426857,
- 0.04533262550830841,
- -0.08060191571712494,
- 0.13627056777477264,
- -0.11235231161117554,
- 0.05039205774664879,
- -0.012719608843326569,
- 0.005820952355861664,
- -0.10465429723262787,
- -0.10468145459890366,
- -0.03936590999364853,
- 0.08508169651031494,
- 0.025493059307336807,
- 0.03803356736898422,
- 0.05675516277551651,
- 0.043403953313827515,
- 0.05208931490778923,
- -0.10984570533037186,
- -0.002002866705879569,
- -0.05601273104548454,
- 0.040558889508247375,
- 0.008306612260639668,
- -0.004053161945194006,
- -1.2128422710588893e-8,
- -0.014272992499172688,
- -0.027585932984948158,
- 0.007037561386823654,
- -0.040489312261343,
- 0.008501200936734676,
- 0.039372775703668594,
- -0.024798717349767685,
- -0.032029736787080765,
- 0.05595479905605316,
- 0.059936124831438065,
- 0.02318442240357399,
- -0.029603177681565285,
- 0.05319405719637871,
- 0.0020571670029312372,
- 0.11050955206155777,
- -0.01886753737926483,
- 0.0008347388356924057,
- 0.09198082983493805,
- -0.016700182110071182,
- 0.0024363964330404997,
- -0.0064730048179626465,
- 0.0597146712243557,
- -0.0051901862025260925,
- 0.03730339929461479,
- 0.03923949971795082,
- -0.0747496709227562,
- -0.022938808426260948,
- 0.13648417592048645,
- -0.05251016095280647,
- -0.014641781337559223,
- 0.015640875324606895,
- 0.022547483444213867,
- 0.010489015839993954,
- -0.02764514461159706,
- -0.0034983179066330194,
- -0.01099125575274229,
- -0.051739197224378586,
- -0.13125964999198914,
- 0.016956573352217674,
- -0.024869875982403755,
- -0.055771082639694214,
- 0.09954863041639328,
- 0.048551104962825775,
- 0.018429147079586983,
- 0.017918827012181282,
- 0.04641242325305939,
- 0.01815289445221424,
- -0.012583605013787746,
- -0.07985352724790573,
- -0.1015971451997757,
- -0.03308243304491043,
- 0.054863687604665756,
- 0.016717277467250824,
- 0.024421609938144684,
- 0.02443092130124569,
- 0.027246195822954178,
- -0.02158735878765583,
- -0.022521736100316048,
- -0.1070738136768341,
- 0.016939660534262657,
- 0.048702601343393326,
- 0.046309567987918854,
- 0.009027684107422829,
- -0.01605544239282608
- ]
- },
- {
- "keyword": "mentoring",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.024088457226753235,
- 0.06385954469442368,
- -0.025751860812306404,
- 0.014871008694171906,
- 0.02855776622891426,
- -0.0392504446208477,
- 0.0067019229754805565,
- 0.005076954141259193,
- -0.04099251329898834,
- -0.0286514051258564,
- 0.003030923195183277,
- 0.008125003427267075,
- 0.09301569312810898,
- 0.03054867684841156,
- -0.05506227910518646,
- 0.05103873834013939,
- -0.06670045107603073,
- 0.0035439732018858194,
- 0.004713721107691526,
- -0.17015640437602997,
- -0.1833183467388153,
- -0.04893002286553383,
- 0.028269145637750626,
- -0.007566443178802729,
- 0.025699682533740997,
- 0.058838851749897,
- -0.03414180129766464,
- -0.02515519969165325,
- -0.023857882246375084,
- -0.04375504329800606,
- -0.007642511744052172,
- -0.04647403210401535,
- -0.0024859346449375153,
- 0.020797984674572945,
- 0.014708804897964,
- 0.16461385786533356,
- 0.05982991307973862,
- 0.04963217303156853,
- -0.018376993015408516,
- -0.0006640068022534251,
- 0.011836057528853416,
- 0.04700138792395592,
- -0.0047514550387859344,
- -0.04871749505400658,
- 0.03098592907190323,
- -0.08236141502857208,
- 0.0012845981400460005,
- 0.018218597397208214,
- -0.06086169555783272,
- 0.009518476203083992,
- -0.11217949539422989,
- -0.10595031827688217,
- -0.05329767242074013,
- 0.032385680824518204,
- 0.054841093719005585,
- 0.11747352033853531,
- 0.06443285942077637,
- 0.0011883737752214074,
- -0.024070212617516518,
- 0.01633094996213913,
- -0.054693154990673065,
- 0.014971419237554073,
- -0.14204451441764832,
- -0.004419023636728525,
- -0.00012958564911969006,
- -0.001495963428169489,
- -0.040390484035015106,
- 0.031194530427455902,
- -0.00961451604962349,
- -0.005243590567260981,
- -0.004868939984589815,
- -0.033639077097177505,
- 0.0216145571321249,
- -0.005256932694464922,
- 0.12314984947443008,
- 0.02880547195672989,
- 0.044133394956588745,
- -0.0059905098751187325,
- 0.09832321852445602,
- -0.010099376551806927,
- -0.03374360501766205,
- -0.0291883684694767,
- -0.039199523627758026,
- 0.007803996559232473,
- -0.02980802208185196,
- -0.041208796203136444,
- 0.026709282770752907,
- -0.05751921236515045,
- 0.06382583826780319,
- 0.07903516292572021,
- 0.019497688859701157,
- 0.01889977604150772,
- 0.0012303809635341167,
- 0.015705419704318047,
- -0.05074695125222206,
- 0.020624179393053055,
- 0.044539496302604675,
- -0.02258220687508583,
- -0.04352370277047157,
- 0.22768649458885193,
- -0.010306431911885738,
- -0.01699528470635414,
- -0.004933173302561045,
- 0.015113182365894318,
- -0.04348202422261238,
- 0.0643097534775734,
- -0.02579505741596222,
- 0.010787752456963062,
- -0.00229719583876431,
- -0.0015774384373798966,
- -0.05519261956214905,
- 0.08824630826711655,
- -0.053961798548698425,
- 0.021341990679502487,
- 0.022084832191467285,
- 0.0352238193154335,
- 0.04794345051050186,
- 0.0242634117603302,
- -0.04263101890683174,
- -0.003590580075979233,
- -0.0027664555236697197,
- 0.07474098354578018,
- 0.05076013132929802,
- 0.0008977629477158189,
- -0.05817607790231705,
- -0.061813853681087494,
- -0.04035047069191933,
- -5.7714957955970235e-33,
- 0.04878390580415726,
- 0.04327967390418053,
- 0.04344242066144943,
- 0.05068213492631912,
- 0.005593364126980305,
- 0.023736510425806046,
- -0.010626793839037418,
- 0.014605414122343063,
- -0.027840744704008102,
- -0.05803462117910385,
- 0.050789397209882736,
- 0.023882148787379265,
- 0.002424697857350111,
- -0.05125204473733902,
- 0.04001839458942413,
- -0.013752744533121586,
- -0.02832704782485962,
- 0.010662750340998173,
- -0.000728597748093307,
- 0.000705114915035665,
- -0.03963189199566841,
- -0.030238281935453415,
- -0.038287561386823654,
- -0.0001799158053472638,
- 0.0480160228908062,
- -0.007610659580677748,
- 0.00938260555267334,
- -0.01343187503516674,
- 0.07473115622997284,
- 0.02780163288116455,
- -0.019038571044802666,
- 0.00768523383885622,
- -0.05235101282596588,
- -0.06361072510480881,
- -0.0411485880613327,
- 0.03241530433297157,
- -0.005143799353390932,
- -0.12176227569580078,
- 0.031100355088710785,
- -0.017265262082219124,
- -0.011905553750693798,
- -0.019670270383358,
- 0.0835549384355545,
- -0.050121892243623734,
- 0.006336386315524578,
- 0.056530870497226715,
- 0.09115483611822128,
- -0.025626832619309425,
- -0.12680794298648834,
- 0.09659866988658905,
- -0.0897781103849411,
- -0.044346753507852554,
- 0.041147422045469284,
- 0.004538262728601694,
- -0.014484195038676262,
- 0.018436677753925323,
- 0.042240068316459656,
- 0.02674817107617855,
- 0.024256888777017593,
- -0.06463702023029327,
- 0.09345749765634537,
- -0.05571785941720009,
- -0.0723312497138977,
- 0.014432190917432308,
- 0.047820303589105606,
- -0.057345498353242874,
- -0.010374081321060658,
- -0.00029105847352184355,
- 0.12476460635662079,
- -0.027248183265328407,
- -0.09766192734241486,
- 0.036337368190288544,
- -0.007882428355515003,
- 0.024070415645837784,
- -0.05132706090807915,
- -0.02792522870004177,
- -0.04318743571639061,
- -0.05151347070932388,
- 0.0674440786242485,
- -0.031073760241270065,
- -0.03771081194281578,
- 0.013363609090447426,
- -0.053774554282426834,
- 0.0405694842338562,
- 0.08394770324230194,
- -0.0511852502822876,
- -0.036464136093854904,
- -0.046328455209732056,
- 0.030680837109684944,
- 0.059652190655469894,
- -0.07232233881950378,
- -0.08110148459672928,
- 0.05383641645312309,
- 0.08041880279779434,
- 0.01637645810842514,
- 4.155891584381071e-33,
- 0.0787511020898819,
- -0.04556848108768463,
- 0.029885059222579002,
- 0.03781150281429291,
- 0.13873404264450073,
- -0.08717317879199982,
- -0.049312837421894073,
- -0.0017385114915668964,
- 0.003955132327973843,
- 0.024868207052350044,
- 0.002844379749149084,
- 0.0004491173312999308,
- -0.036809034645557404,
- 0.0717010349035263,
- -0.01224585808813572,
- 0.01805230788886547,
- -0.0016455425648018718,
- 0.04409250244498253,
- 0.01723974011838436,
- -0.05220605805516243,
- 0.031193779781460762,
- 0.07122072577476501,
- 0.03306753560900688,
- 0.03448639065027237,
- 0.025197643786668777,
- -0.015665823593735695,
- 0.03690103814005852,
- 0.011595532298088074,
- -0.04849279299378395,
- 0.05932652950286865,
- 0.014630506746470928,
- 0.020785929635167122,
- 0.05556635558605194,
- -0.013539943844079971,
- -0.047635264694690704,
- 0.09026949107646942,
- 0.03785337507724762,
- -0.07863665372133255,
- -0.038349103182554245,
- 0.030114155262708664,
- 0.05703631415963173,
- -0.006092628464102745,
- -0.014032104052603245,
- -0.04797140136361122,
- 0.008581751957535744,
- 0.044426701962947845,
- 0.00006417673284886405,
- 0.03524567186832428,
- -0.03304768353700638,
- -0.020968906581401825,
- -0.11919229477643967,
- 0.0019524757517501712,
- 0.034529317170381546,
- -0.03477853909134865,
- 0.026662059128284454,
- -0.027829118072986603,
- 0.10640885680913925,
- 0.00060128333279863,
- 0.0799948126077652,
- -0.016051335260272026,
- 0.009382841177284718,
- -0.02042453922331333,
- -0.03657848387956619,
- 0.04834623262286186,
- -0.030799269676208496,
- -0.10797228664159775,
- -0.007218803279101849,
- 0.034297529608011246,
- -0.0629681646823883,
- 0.04473835229873657,
- -0.025862153619527817,
- 0.052054453641176224,
- -0.026722107082605362,
- 0.06835956871509552,
- -0.06732513755559921,
- -0.007623980287462473,
- -0.08370337635278702,
- -0.021150439977645874,
- -0.015007296577095985,
- -0.1043374091386795,
- -0.06588747352361679,
- -0.06744405627250671,
- -0.00459965318441391,
- 0.015570524148643017,
- 0.03917833790183067,
- -0.00616505928337574,
- 0.10650188475847244,
- 0.049636147916316986,
- 0.027809392660856247,
- -0.0877930298447609,
- 0.012125403620302677,
- -0.04982020705938339,
- -0.011645362712442875,
- 0.02210562862455845,
- -0.0333513580262661,
- -1.1853784620541319e-8,
- -0.0052660549990832806,
- 0.022111138328909874,
- -0.05424508452415466,
- 0.012549521401524544,
- 0.02635696716606617,
- 0.08905573934316635,
- -0.0025561819784343243,
- 0.024568187072873116,
- 0.041763029992580414,
- 0.0585782416164875,
- 0.045632194727659225,
- -0.036082230508327484,
- -0.010715539567172527,
- 0.010746571235358715,
- 0.11401992291212082,
- -0.015812648460268974,
- -0.014405100606381893,
- 0.047347988933324814,
- -0.04020967334508896,
- -0.01551344059407711,
- 0.029591333121061325,
- 0.05485331267118454,
- -0.046592798084020615,
- 0.09825307130813599,
- 0.006846746429800987,
- -0.08627793937921524,
- -0.01055050827562809,
- 0.1473158895969391,
- -0.03319420665502548,
- 0.004656020551919937,
- -0.0010970256989821792,
- 0.04865332692861557,
- -0.008619135245680809,
- -0.04573797062039375,
- -0.0335538350045681,
- -0.003497096011415124,
- 0.02376258373260498,
- -0.06608785688877106,
- -0.015795107930898666,
- 0.03523183614015579,
- -0.04620932787656784,
- 0.04593038558959961,
- 0.029154403135180473,
- -0.01858656480908394,
- -0.028185615316033363,
- 0.06334196776151657,
- 0.05602121725678444,
- 0.004073933698236942,
- 0.02680300548672676,
- -0.018000056967139244,
- -0.029215190559625626,
- -0.02571091055870056,
- 0.01798372156918049,
- -0.08630829304456711,
- 0.03434990346431732,
- 0.015679044649004936,
- 0.00009051147208083421,
- 0.04280257225036621,
- -0.03885960578918457,
- -0.01644650474190712,
- 0.11578848212957382,
- 0.012028687633574009,
- 0.004705748055130243,
- -0.025503741577267647
- ]
- },
- {
- "keyword": "healthcare",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03387761116027832,
- 0.09607595205307007,
- -0.00983946118503809,
- 0.005137774161994457,
- -0.043123919516801834,
- 0.04171526059508324,
- 0.12936712801456451,
- 0.010992485098540783,
- -0.01267230324447155,
- -0.002419053576886654,
- -0.0074234940111637115,
- 0.03037578985095024,
- 0.00845788512378931,
- -0.06227598711848259,
- -0.08208037167787552,
- -0.08723286539316177,
- 0.006807826459407806,
- -0.008117071352899075,
- -0.06635653972625732,
- -0.0026091313920915127,
- -0.13330025970935822,
- 0.13747230172157288,
- 0.02127750590443611,
- 0.03877026587724686,
- -0.020393798127770424,
- 0.10285986214876175,
- -0.04430776461958885,
- -0.049577970057725906,
- -0.0017097347881644964,
- -0.05782049894332886,
- 0.038411494344472885,
- -0.024961702525615692,
- 0.06822896748781204,
- 0.006208527367562056,
- -0.03506360203027725,
- 0.02137451060116291,
- 0.022632475942373276,
- -0.017614057287573814,
- -0.009869846515357494,
- -0.016446303576231003,
- -0.014043616130948067,
- -0.034610241651535034,
- -0.029131639748811722,
- 0.018155159428715706,
- 0.046583957970142365,
- -0.008242609910666943,
- -0.02049248479306698,
- 0.0017464025877416134,
- 0.06596533209085464,
- 0.047703273594379425,
- -0.030982887372374535,
- -0.0010969022987410426,
- -0.020737281069159508,
- 0.051648687571287155,
- 0.06466100364923477,
- -0.0522548146545887,
- -0.06210007146000862,
- -0.0675542801618576,
- -0.07988167554140091,
- -0.04180064797401428,
- 0.02280259132385254,
- -0.018494844436645508,
- 0.012221293523907661,
- 0.07045027613639832,
- 0.056885939091444016,
- 0.017773808911442757,
- -0.007600685581564903,
- 0.0057243709452450275,
- -0.06565312296152115,
- -0.05530492961406708,
- -0.017185885459184647,
- -0.08814409375190735,
- 0.01626761443912983,
- 0.05888387933373451,
- 0.07969683408737183,
- -0.004179636016488075,
- -0.01030062697827816,
- -0.0026051311288028955,
- 0.10844513773918152,
- -0.0315009243786335,
- 0.09523636102676392,
- -0.010867291130125523,
- -0.057399846613407135,
- 0.09901542961597443,
- -0.0017247475916519761,
- -0.04025052487850189,
- 0.03550359234213829,
- -0.01145432610064745,
- -0.018249547109007835,
- -0.03010707162320614,
- -0.01774074323475361,
- -0.04480331763625145,
- 0.03372444957494736,
- -0.03236158937215805,
- 0.02947397530078888,
- 0.008035078644752502,
- 0.01321896631270647,
- -0.023357568308711052,
- -0.06576788425445557,
- 0.20359081029891968,
- -0.0084095299243927,
- -0.005803687497973442,
- 0.03457953780889511,
- 0.0383368656039238,
- -0.006765785161405802,
- -0.00970588531345129,
- -0.06119586154818535,
- 0.04084493964910507,
- 0.014261751435697079,
- -0.006787759251892567,
- -0.04217405989766121,
- 0.06508173793554306,
- 0.011952186934649944,
- -0.009209759533405304,
- -0.00564288254827261,
- 0.02713896706700325,
- 0.04410150274634361,
- -0.05804876983165741,
- 0.004823669325560331,
- 0.02489432692527771,
- -0.017474384978413582,
- -0.02437862940132618,
- -0.05987263843417168,
- -0.011552771553397179,
- -0.026781439781188965,
- -0.09618919342756271,
- -0.018691670149564743,
- -6.256896351301917e-33,
- -0.01919005811214447,
- -0.06968532502651215,
- 0.11903088539838791,
- 0.010224374942481518,
- -0.03375139459967613,
- 0.015406093560159206,
- -0.029991036280989647,
- -0.04359408840537071,
- 0.004661680199205875,
- 0.017819097265601158,
- -0.02512018010020256,
- 0.043967705219984055,
- 0.008272231556475163,
- 0.0433855764567852,
- 0.045679979026317596,
- 0.014234397560358047,
- -0.08620224893093109,
- 0.07570849359035492,
- -0.07143177092075348,
- 0.050698067992925644,
- -0.018975118175148964,
- -0.02050606720149517,
- -0.02240583673119545,
- 0.08070461452007294,
- 0.0035021763760596514,
- 0.020524676889181137,
- 0.0011785028036683798,
- -0.052671920508146286,
- 0.09588109701871872,
- 0.02156047895550728,
- -0.00949366670101881,
- 0.08416478335857391,
- -0.056771714240312576,
- -0.12052596360445023,
- -0.028204424306750298,
- -0.06443165242671967,
- -0.03729990869760513,
- -0.028932109475135803,
- -0.00021470105275511742,
- -0.07078224420547485,
- -0.020479951053857803,
- -0.0032519823871552944,
- -0.002476322464644909,
- 0.02135401964187622,
- 0.07911504060029984,
- 0.042790986597537994,
- -0.018009299412369728,
- -0.02175421640276909,
- -0.10550711303949356,
- -0.020856447517871857,
- -0.0649600401520729,
- 0.022567538544535637,
- -0.024770587682724,
- -0.04419834539294243,
- 0.05440560355782509,
- -0.04803246259689331,
- 0.02351151779294014,
- 0.034995101392269135,
- -0.03359278663992882,
- -0.008448648266494274,
- 0.07192925363779068,
- 0.03589177876710892,
- -0.03300005942583084,
- -0.017438426613807678,
- -0.04562864080071449,
- -0.017259342595934868,
- 0.0053991470485925674,
- -0.009584794752299786,
- 0.053452666848897934,
- -0.0017745817312970757,
- -0.0009008629131130874,
- 0.03249634802341461,
- 0.03884341940283775,
- 0.015606436878442764,
- -0.07901006191968918,
- 0.052208904176950455,
- 0.03447549417614937,
- -0.018427817150950432,
- -0.057078126817941666,
- 0.019930457696318626,
- -0.029726307839155197,
- 0.03339599817991257,
- -0.01876312866806984,
- 0.06945393979549408,
- 0.09648505598306656,
- 0.04808403551578522,
- -0.009741614572703838,
- -0.004456042777746916,
- -0.03575420379638672,
- -0.041098419576883316,
- -0.14934714138507843,
- 0.05271396413445473,
- 0.07886029034852982,
- 0.05344625189900398,
- -0.013510503806173801,
- 2.8941370703725442e-33,
- 0.021303929388523102,
- -0.019054332748055458,
- -0.014136871322989464,
- 0.05505518987774849,
- 0.06782432645559311,
- -0.05376991629600525,
- 0.010446751490235329,
- -0.04223185032606125,
- 0.04885353520512581,
- 0.11840493977069855,
- 0.00659186439588666,
- -0.03852970525622368,
- 0.054957203567028046,
- 0.035658493638038635,
- -0.003621818730607629,
- 0.01776164397597313,
- 0.021727630868554115,
- -0.07578093558549881,
- -0.05129975080490112,
- 0.0652850940823555,
- -0.022228095680475235,
- 0.029793772846460342,
- 0.02538786455988884,
- 0.024326587095856667,
- 0.00886248704046011,
- 0.11733748763799667,
- -0.04716702550649643,
- 0.0536666102707386,
- 0.07608123123645782,
- -0.0607585608959198,
- -0.038400474935770035,
- 0.024335190653800964,
- -0.01261450070887804,
- -0.0381847508251667,
- -0.010097661055624485,
- 0.007549087982624769,
- 0.021142642945051193,
- -0.008271146565675735,
- -0.01992986537516117,
- -0.00035706887138076127,
- 0.16215722262859344,
- -0.09796806424856186,
- -0.049784090369939804,
- 0.10995464771986008,
- -0.016204217448830605,
- -0.01136645395308733,
- -0.05475291237235069,
- 0.06940169632434845,
- 0.010770821943879128,
- -0.04238668456673622,
- -0.0186281967908144,
- 0.005969648715108633,
- -0.012188912369310856,
- 0.060084883123636246,
- -0.013985811732709408,
- 0.00896615069359541,
- -0.027591630816459656,
- -0.0779050961136818,
- -0.04371128976345062,
- -0.009492018260061741,
- 0.006573365535587072,
- 0.03710059076547623,
- -0.09045163542032242,
- 0.04472467675805092,
- -0.12439892441034317,
- 0.015245659276843071,
- 0.06214180588722229,
- -0.031668521463871,
- -0.02240023948252201,
- -0.023887164890766144,
- 0.040115177631378174,
- -0.007024137768894434,
- -0.02935636229813099,
- -0.0068138521164655685,
- 0.020715082064270973,
- 0.013185083866119385,
- -0.05805594474077225,
- 0.018482647836208344,
- -0.04285811632871628,
- 0.02238403633236885,
- 0.01583402045071125,
- -0.16983722150325775,
- -0.02036266401410103,
- 0.025000613182783127,
- -0.07948731631040573,
- -0.006331100594252348,
- 0.05197848007082939,
- -0.07519172877073288,
- -0.07183528691530228,
- -0.03134050965309143,
- -0.08865027129650116,
- -0.010716264136135578,
- -0.0945335254073143,
- -0.0024334557820111513,
- -0.0527338869869709,
- -1.3646939578393358e-8,
- 0.010971526615321636,
- -0.018582768738269806,
- 0.05391451716423035,
- -0.07039843499660492,
- -0.022213919088244438,
- -0.06282597035169601,
- -0.078592948615551,
- 0.09094656258821487,
- 0.062478505074977875,
- 0.0837203711271286,
- -0.006350030656903982,
- 0.054679930210113525,
- 0.03180953115224838,
- 0.013106613419950008,
- 0.05237280949950218,
- 0.01044832170009613,
- -0.07756005972623825,
- 0.04002244770526886,
- -0.012347018346190453,
- -0.008753446862101555,
- 0.006467494647949934,
- -0.0027414194773882627,
- 0.03602718934416771,
- 0.027307327836751938,
- -0.056412216275930405,
- 0.008734271861612797,
- 0.06170571595430374,
- 0.0034961318597197533,
- -0.018343329429626465,
- 0.02089564874768257,
- 0.023347459733486176,
- 0.05456426367163658,
- 0.03730202838778496,
- -0.0024545027408748865,
- -0.075230672955513,
- -0.11003810167312622,
- 0.03726024925708771,
- -0.09597282111644745,
- 0.0643179640173912,
- -0.10641644150018692,
- 0.040183838456869125,
- 0.08425700664520264,
- 0.03492872789502144,
- 0.012591877020895481,
- -0.0377829484641552,
- -0.0719030499458313,
- 0.0740826427936554,
- 0.0036600125022232533,
- -0.011591343209147453,
- -0.08760253340005875,
- 0.011816643178462982,
- 0.02777794748544693,
- 0.07409969717264175,
- 0.013173224404454231,
- -0.004357225261628628,
- 0.010664093308150768,
- 0.06104660406708717,
- -0.009859633632004261,
- -0.03819557651877403,
- 0.03442375734448433,
- 0.09184283018112183,
- -0.041336845606565475,
- 0.07589763402938843,
- 0.016279088333249092
- ]
- },
- {
- "keyword": "medical",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0036920972634106874,
- 0.05533425509929657,
- 0.0002731060376390815,
- 0.01739528216421604,
- -0.06155886501073837,
- -0.03243107721209526,
- 0.1076418086886406,
- 0.1363738775253296,
- 0.006999162491410971,
- 0.00047557870857417583,
- -0.0744454488158226,
- 0.010821707546710968,
- -0.047950271517038345,
- -0.0058476789854466915,
- -0.11517469584941864,
- -0.09765280783176422,
- -0.050503116101026535,
- -0.03419365733861923,
- -0.039075709879398346,
- 0.007327549159526825,
- -0.09147186577320099,
- 0.10474341362714767,
- -0.002463354729115963,
- 0.045622751116752625,
- -0.026717929169535637,
- 0.03994841128587723,
- -0.030664874240756035,
- -0.05279243364930153,
- 0.020442597568035126,
- -0.0704585388302803,
- 0.02668880857527256,
- 0.03159134089946747,
- 0.09934665262699127,
- -0.0036726072430610657,
- -0.0046372986398637295,
- -0.007051031570881605,
- -0.0017282747430726886,
- 0.0008177104755304754,
- -0.002460632473230362,
- 0.06470134109258652,
- -0.014233292080461979,
- -0.04607804864645004,
- 0.009645840153098106,
- 0.009379818104207516,
- 0.01740608736872673,
- 0.010848025791347027,
- 0.0152212493121624,
- -0.0012076381826773286,
- 0.06148509308695793,
- 0.06661700457334518,
- -0.08023475855588913,
- -0.007844813168048859,
- -0.06737753748893738,
- 0.06971996277570724,
- 0.03881235793232918,
- -0.04952431842684746,
- -0.019779592752456665,
- -0.07038113474845886,
- -0.11474525183439255,
- -0.03730575740337372,
- -0.005455660168081522,
- 0.04807092994451523,
- 0.008487953804433346,
- 0.05688457563519478,
- 0.035620175302028656,
- -0.02372751757502556,
- -0.015036139637231827,
- -0.022329170256853104,
- 0.01492080744355917,
- -0.03822118416428566,
- 0.03704945370554924,
- -0.07264099270105362,
- 0.00806387234479189,
- 0.1075410470366478,
- 0.08176638185977936,
- 0.026794912293553352,
- 0.04333021864295006,
- -0.025719761848449707,
- 0.07261241972446442,
- -0.04417089372873306,
- 0.08613566309213638,
- -0.04556054621934891,
- -0.0943281501531601,
- 0.01712416671216488,
- -0.037680480629205704,
- 0.0087128309533,
- 0.005370725877583027,
- 0.04537196829915047,
- -0.06509219110012054,
- -0.04096129909157753,
- 0.011949882842600346,
- -0.07574304938316345,
- 0.04675069451332092,
- -0.010594747960567474,
- -0.013641814701259136,
- 0.034579839557409286,
- -0.006361830979585648,
- -0.07453037798404694,
- -0.03481409698724747,
- 0.17601394653320312,
- 0.0018741203239187598,
- 0.02869531512260437,
- 0.009549806825816631,
- 0.07268434762954712,
- -0.006744095124304295,
- -0.044637057930231094,
- 0.0007014716975390911,
- -0.015260180458426476,
- 0.024286208674311638,
- -0.04005774110555649,
- -0.011322475038468838,
- 0.050034213811159134,
- -0.0022558998316526413,
- 0.009290837682783604,
- -0.04133712872862816,
- 0.11168211698532104,
- 0.015392768196761608,
- -0.006530828773975372,
- 0.043150126934051514,
- 0.05460555478930473,
- -0.03330553323030472,
- -0.019966116175055504,
- -0.07928263396024704,
- -0.06791117042303085,
- -0.02551771141588688,
- -0.08604874461889267,
- 0.006572522688657045,
- -6.0361513691869535e-33,
- -0.03167952969670296,
- -0.07010843604803085,
- 0.08826878666877747,
- 0.003615229856222868,
- -0.005194996949285269,
- 0.04733556509017944,
- 0.025230038911104202,
- -0.05723310634493828,
- 0.03237732872366905,
- -0.023474937304854393,
- -0.030490731820464134,
- 0.02446255460381508,
- 0.00092616758774966,
- 0.03752888739109039,
- 0.016639109700918198,
- 0.015080003999173641,
- -0.07388931512832642,
- 0.06119006499648094,
- -0.05774107202887535,
- 0.032811280339956284,
- -0.008189033716917038,
- 0.05766291171312332,
- -0.07162471115589142,
- 0.05174188315868378,
- -0.04341437295079231,
- 0.03579552099108696,
- -0.06743992865085602,
- -0.09297096729278564,
- 0.12539862096309662,
- -0.004874765407294035,
- -0.022663095965981483,
- 0.08625016361474991,
- -0.0202601607888937,
- -0.06853865087032318,
- -0.034733228385448456,
- 0.0294094979763031,
- -0.05241663381457329,
- -0.026970546692609787,
- 0.030010001733899117,
- -0.0038454399909824133,
- -0.04220740124583244,
- 0.0034470101818442345,
- 0.011425806209445,
- 0.04243624210357666,
- 0.06606665253639221,
- 0.0435095839202404,
- -0.04060812667012215,
- -0.0125428456813097,
- -0.08252838999032974,
- -0.028907814994454384,
- -0.023030778393149376,
- -0.025345509871840477,
- 0.030832018703222275,
- -0.07512996345758438,
- 0.07055176049470901,
- -0.011056612245738506,
- 0.04013201221823692,
- -0.00017523027781862766,
- -0.0468633659183979,
- 0.041231874376535416,
- 0.10746055841445923,
- 0.09199950844049454,
- -0.027353497222065926,
- 0.04872355982661247,
- -0.017796404659748077,
- -0.07255520671606064,
- 0.009644380770623684,
- -0.08676648885011673,
- 0.056026965379714966,
- -0.008733941242098808,
- -0.0760159119963646,
- 0.052855219691991806,
- 0.023405732586979866,
- 0.03732508793473244,
- -0.06466472893953323,
- 0.01752803474664688,
- 0.017235372215509415,
- -0.019772689789533615,
- -0.05291096493601799,
- -0.029552463442087173,
- -0.031437911093235016,
- 0.021782347932457924,
- 0.0015987936640158296,
- 0.08767789602279663,
- 0.07682749629020691,
- 0.014980954118072987,
- -0.044516127556562424,
- -0.009821915067732334,
- -0.029271047562360764,
- -0.003177030012011528,
- -0.15386338531970978,
- 0.017838027328252792,
- 0.031921494752168655,
- 0.08524162322282791,
- -0.03634198382496834,
- 3.3546342272422906e-33,
- -0.0212693028151989,
- -0.030611500144004822,
- -0.04896325245499611,
- 0.08742315322160721,
- 0.088865265250206,
- -0.014042126946151257,
- 0.044082723557949066,
- -0.0040655783377587795,
- 0.026639623567461967,
- 0.08974183350801468,
- 0.016015132889151573,
- -0.05726505070924759,
- 0.002070524962618947,
- 0.008438320830464363,
- -0.024329232051968575,
- 0.004035505931824446,
- 0.0009147398523055017,
- -0.020957456901669502,
- -0.052478112280368805,
- 0.0779610127210617,
- -0.03418218716979027,
- 0.07251136004924774,
- -0.023677131161093712,
- -0.0046437387354671955,
- -0.015528489835560322,
- 0.07449439913034439,
- 0.005276678595691919,
- 0.016608593985438347,
- -0.03189621493220329,
- -0.05546059086918831,
- -0.04062679409980774,
- 0.027698352932929993,
- -0.0247992854565382,
- -0.058196693658828735,
- 0.0017667618812993169,
- 0.08697286248207092,
- 0.0002153779350919649,
- 0.0013116530608385801,
- -0.020510954782366753,
- -0.0077378712594509125,
- 0.13560894131660461,
- -0.03599078953266144,
- 0.04651997610926628,
- 0.11942435801029205,
- 0.018485533073544502,
- -0.025350475683808327,
- -0.08592302352190018,
- 0.03942842036485672,
- 0.02590753324329853,
- 0.004467012360692024,
- -0.06229577213525772,
- -0.021944796666502953,
- -0.010497047565877438,
- 0.028453966602683067,
- -0.00882670283317566,
- -0.021787716075778008,
- -0.1075671911239624,
- -0.07388906180858612,
- -0.052118219435214996,
- -0.0114054000005126,
- 0.062095530331134796,
- -0.0075331456027925014,
- -0.06511755287647247,
- 0.05422363057732582,
- -0.10007895529270172,
- 0.03585061803460121,
- 0.06833019852638245,
- -0.009222627617418766,
- -0.041370783001184464,
- -0.0032478617504239082,
- 0.0985988900065422,
- 0.04266021400690079,
- -0.04264002665877342,
- 0.05054008960723877,
- 0.032876670360565186,
- -0.01732277311384678,
- -0.061645448207855225,
- -0.004824051167815924,
- 0.0027747168205678463,
- -0.04385015740990639,
- -0.008872543461620808,
- -0.10837262868881226,
- -0.012764998711645603,
- 0.1117933988571167,
- -0.07671214640140533,
- -0.004644619766622782,
- 0.051211751997470856,
- -0.015283297747373581,
- -0.04362817108631134,
- -0.06609191745519638,
- -0.004870544653385878,
- 0.01806890219449997,
- -0.053285934031009674,
- -0.013336258009076118,
- 0.017205653712153435,
- -1.2727946696600156e-8,
- 0.013623254373669624,
- -0.027051592245697975,
- -0.011036907322704792,
- -0.056877586990594864,
- 0.0029008027631789446,
- -0.04961121454834938,
- -0.07519586384296417,
- 0.05587555468082428,
- 0.03247101232409477,
- 0.04775217920541763,
- -0.06733305752277374,
- 0.04568846896290779,
- 0.027589619159698486,
- 0.000031222716643242165,
- 0.08530682325363159,
- -0.01906616985797882,
- -0.026357272639870644,
- 0.049541763961315155,
- -0.020829657092690468,
- -0.052530139684677124,
- -0.011922246776521206,
- -0.013269172050058842,
- 0.05554865300655365,
- 0.05480905622243881,
- -0.026452871039509773,
- -0.01782401278614998,
- 0.06951409578323364,
- 0.032661281526088715,
- 0.003090514102950692,
- 0.046423863619565964,
- 0.019293494522571564,
- 0.04843956232070923,
- 0.008740641176700592,
- -0.006413029041141272,
- -0.0036898781545460224,
- -0.08331945538520813,
- 0.053023163229227066,
- -0.09328534454107285,
- 0.007555849850177765,
- -0.03345790505409241,
- 0.02352169342339039,
- 0.03547012060880661,
- 0.057713571935892105,
- -0.01238930132240057,
- 0.015842853114008904,
- -0.08053813129663467,
- 0.061835046857595444,
- 0.024861693382263184,
- 0.040999799966812134,
- -0.09480718523263931,
- 0.014323888346552849,
- 0.0012840525014325976,
- 0.03998521342873573,
- -0.024840230122208595,
- -0.022860653698444366,
- 0.056700609624385834,
- 0.02903648465871811,
- 0.021084554493427277,
- -0.10778273642063141,
- 0.03785960003733635,
- 0.14980711042881012,
- -0.002055340213701129,
- 0.06518092751502991,
- 0.07834061235189438
- ]
- },
- {
- "keyword": "dental",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05414854362607002,
- 0.010479326359927654,
- -0.02806771732866764,
- -0.02396276779472828,
- -0.13389386236667633,
- -0.07317603379487991,
- 0.04399874806404114,
- 0.10386314243078232,
- -0.04999112710356712,
- 0.06860573589801788,
- -0.020408429205417633,
- -0.043808531016111374,
- -0.036000173538923264,
- 0.03489147126674652,
- -0.0491291768848896,
- -0.043163370341062546,
- 0.014502356760203838,
- 0.0026436408516019583,
- 0.009506295435130596,
- -0.01805529184639454,
- -0.034723103046417236,
- 0.08976104855537415,
- 0.011020742356777191,
- -0.026986708864569664,
- 0.03129999712109566,
- 0.09028975665569305,
- -0.0177133921533823,
- -0.10298432409763336,
- 0.059141114354133606,
- 0.004491113591939211,
- -0.023195872083306313,
- 0.03944273293018341,
- 0.10709725320339203,
- -0.09328150749206543,
- -0.01372827123850584,
- -0.022138727828860283,
- -0.019635401666164398,
- -0.004119425546377897,
- 0.06832842528820038,
- 0.0011341955978423357,
- -0.06154603138566017,
- -0.010729990899562836,
- 0.01171848550438881,
- -0.01966325379908085,
- 0.039201315492391586,
- 0.03264520317316055,
- 0.01674654521048069,
- 0.0036816897336393595,
- -0.005037566181272268,
- -0.015432874672114849,
- 0.02462047152221203,
- -0.02244933322072029,
- -0.0529666393995285,
- -0.021287785843014717,
- -0.06132875010371208,
- 0.005968577228486538,
- -0.024571668356657028,
- -0.03408319503068924,
- -0.03034970909357071,
- 0.0698719173669815,
- 0.05977042391896248,
- -0.03238558769226074,
- -0.04754698649048805,
- 0.12044338136911392,
- -0.0363953523337841,
- 0.022290103137493134,
- 0.04713459312915802,
- -0.037490904331207275,
- -0.04796075448393822,
- -0.01477065309882164,
- -0.020509915426373482,
- -0.05123705044388771,
- 0.0438031405210495,
- 0.06713122129440308,
- 0.13781212270259857,
- -0.05212614685297012,
- 0.14390861988067627,
- -0.024181945249438286,
- 0.025266652926802635,
- -0.037548985332250595,
- 0.03644362464547157,
- 0.025982556864619255,
- -0.04169066995382309,
- 0.034617830067873,
- -0.02341274917125702,
- -0.008150098845362663,
- -0.022222399711608887,
- -0.012109109200537205,
- -0.030515605583786964,
- -0.029417788609862328,
- -0.045303430408239365,
- -0.03348858654499054,
- 0.02118525467813015,
- -0.011669425293803215,
- -0.03933284804224968,
- 0.026544563472270966,
- -0.013307985849678516,
- 0.021193603053689003,
- 0.016445383429527283,
- 0.24327532947063446,
- -0.0451357364654541,
- 0.026521656662225723,
- -0.0404525063931942,
- 0.029749197885394096,
- 0.010289463214576244,
- -0.04759649932384491,
- -0.06504609435796738,
- -0.031633488833904266,
- 0.07095523923635483,
- -0.02555607073009014,
- -0.01836521551012993,
- 0.04294046014547348,
- -0.03207305073738098,
- -0.02154613472521305,
- -0.05195263773202896,
- -0.03227739781141281,
- 0.034549664705991745,
- -0.010201840661466122,
- 0.07851068675518036,
- 0.1079285740852356,
- -0.025074223056435585,
- -0.04464152455329895,
- -0.06216141954064369,
- -0.036202963441610336,
- -0.040939029306173325,
- -0.0781414806842804,
- 0.04088027402758598,
- -6.432041336154591e-33,
- 0.013752147555351257,
- -0.06390907615423203,
- 0.04532744362950325,
- -0.043084945529699326,
- -0.01910197176039219,
- 0.08076146990060806,
- 0.008106671273708344,
- 0.0197359099984169,
- -0.019008243456482887,
- 0.041982125490903854,
- 0.021408768370747566,
- 0.009644431993365288,
- -0.07492076605558395,
- 0.006128163542598486,
- 0.026963816955685616,
- 0.13063576817512512,
- -0.10352496802806854,
- 0.06372929364442825,
- -0.06835602968931198,
- 0.03178135305643082,
- -0.0600452683866024,
- 0.04199329763650894,
- -0.021833421662449837,
- 0.14538432657718658,
- -0.06066228076815605,
- -0.020142918452620506,
- -0.019545726478099823,
- -0.11234831064939499,
- 0.007943610660731792,
- 0.003837321186438203,
- -0.017338871955871582,
- 0.023954078555107117,
- 0.02945924736559391,
- -0.06690109521150589,
- 0.016833338886499405,
- -0.013357437215745449,
- 0.000565999245736748,
- -0.04689890146255493,
- -0.004733070731163025,
- -0.05357953906059265,
- 0.0022081518545746803,
- 0.054869480431079865,
- -0.027271738275885582,
- -0.01907080039381981,
- 0.047154251486063004,
- -0.01706044003367424,
- -0.02664579451084137,
- 0.07880079746246338,
- -0.037737712264060974,
- 0.029864495620131493,
- 0.010848884470760822,
- 0.0067460970021784306,
- -0.042263105511665344,
- 0.07687483727931976,
- -0.06945885717868805,
- -0.004137780983000994,
- 0.012289809063076973,
- 0.004658624529838562,
- -0.05391780659556389,
- 0.07295151799917221,
- -0.058491338044404984,
- 0.01570046879351139,
- 0.0005658238660544157,
- 0.030090967193245888,
- -0.04971439763903618,
- 0.00567707559093833,
- 0.012837176211178303,
- -0.028716599568724632,
- 0.03583531081676483,
- -0.047912150621414185,
- -0.09752808511257172,
- 0.02606945112347603,
- -0.07509434968233109,
- 0.008564099669456482,
- -0.04637403041124344,
- 0.022965634241700172,
- 0.1431637704372406,
- 0.10476336628198624,
- -0.06976684927940369,
- 0.034747686237096786,
- -0.0013137063942849636,
- 0.038595207035541534,
- -0.001157785882242024,
- -0.02581026591360569,
- -0.007784847170114517,
- 0.07120903581380844,
- -0.033498600125312805,
- -0.1251998096704483,
- 0.09119420498609543,
- 0.0272335484623909,
- -0.09990473836660385,
- -0.04742155224084854,
- 0.004204584285616875,
- 0.03232062608003616,
- -0.006528137717396021,
- 3.712707071576037e-33,
- -0.02204469032585621,
- -0.05439897999167442,
- -0.02348288893699646,
- 0.05327700451016426,
- 0.0699460431933403,
- 0.06740555167198181,
- -0.0031368772033602,
- 0.01239672489464283,
- -0.039130620658397675,
- 0.03415515646338463,
- 0.04079027101397514,
- 0.027487266808748245,
- 0.1267877221107483,
- 0.000804488139692694,
- -0.018426131457090378,
- 0.022354034706950188,
- 0.08206363767385483,
- -0.011845371685922146,
- -0.10125716775655746,
- 0.06890685111284256,
- 0.020887888967990875,
- 0.09751114994287491,
- -0.005416398402303457,
- -0.057497166097164154,
- -0.00825759768486023,
- 0.06180816516280174,
- -0.07034243643283844,
- -0.018048681318759918,
- -0.026324957609176636,
- -0.00005029234307585284,
- -0.0032374390866607428,
- 0.006223352625966072,
- -0.014815067872405052,
- 0.0010969337308779359,
- -0.010939505882561207,
- 0.08052922040224075,
- 0.007506540510803461,
- -0.009712299332022667,
- -0.09129642695188522,
- -0.032484717667102814,
- 0.053910356014966965,
- 0.0025334882084280252,
- 0.06154133379459381,
- 0.10607115179300308,
- -0.022283870726823807,
- 0.04543093591928482,
- -0.018163088709115982,
- 0.007131081540137529,
- -0.05137338489294052,
- 0.07106129825115204,
- -0.0535050630569458,
- 0.04035310819745064,
- -0.03135593980550766,
- 0.012748350389301777,
- -0.03415024280548096,
- 0.006890587974339724,
- -0.05902712047100067,
- -0.06160368025302887,
- -0.025151070207357407,
- 0.00644677272066474,
- 0.052176885306835175,
- 0.05790691077709198,
- -0.03588610514998436,
- 0.0487399622797966,
- -0.01934671588242054,
- -0.019185269251465797,
- 0.01851513609290123,
- 0.00696851359680295,
- -0.034668929874897,
- -0.004617589991539717,
- 0.05028250440955162,
- 0.04727661982178688,
- 0.03011148050427437,
- -0.0012771213660016656,
- -0.008383510634303093,
- 0.006221066229045391,
- -0.04422584921121597,
- -0.09863567352294922,
- -0.08899703621864319,
- -0.0340392105281353,
- -0.046029601246118546,
- -0.04384318366646767,
- -0.013367751613259315,
- 0.12538321316242218,
- -0.009689366444945335,
- -0.0283088069409132,
- 0.04198291525244713,
- -0.016128290444612503,
- -0.008824225515127182,
- -0.02194582112133503,
- -0.08150848001241684,
- 0.08986857533454895,
- -0.033937785774469376,
- -0.07328922301530838,
- 0.0848541408777237,
- -1.1835550317584875e-8,
- 0.008389869704842567,
- -0.012174050323665142,
- -0.07039161026477814,
- -0.03002050332725048,
- -0.02969241887331009,
- -0.048710327595472336,
- -0.06650307774543762,
- 0.06655924022197723,
- -0.032952889800071716,
- 0.04575534537434578,
- 0.017510047182440758,
- 0.05584865063428879,
- -0.007720192428678274,
- -0.021913738921284676,
- 0.052889056503772736,
- -0.028977451846003532,
- 0.015095985494554043,
- -0.013936230912804604,
- -0.03907151520252228,
- -0.05769072473049164,
- -0.06545960903167725,
- -0.024719106033444405,
- 0.09417896717786789,
- 0.006697369739413261,
- -0.03813690319657326,
- -0.04949747025966644,
- 0.043208830058574677,
- 0.10801690071821213,
- -0.0031419743318110704,
- 0.035051725804805756,
- 0.004547612275928259,
- 0.09131820499897003,
- -0.00826906505972147,
- -0.016811562702059746,
- -0.0005105706513859332,
- -0.04638369008898735,
- 0.055406466126441956,
- -0.04385089874267578,
- -0.033390872180461884,
- -0.048913341015577316,
- 0.0064496733248233795,
- -0.004549779929220676,
- 0.06009064242243767,
- 0.036007899791002274,
- -0.07255750149488449,
- -0.003420453052967787,
- 0.0794575959444046,
- 0.07294736802577972,
- 0.06228712573647499,
- -0.00501498207449913,
- -0.0189413670450449,
- 0.017366409301757812,
- -0.00908788200467825,
- -0.006970873102545738,
- -0.013270033523440361,
- 0.024798015132546425,
- 0.06785603612661362,
- -0.041980668902397156,
- 0.013187608681619167,
- 0.045343004167079926,
- 0.05858863145112991,
- -0.012122521176934242,
- 0.08515268564224243,
- 0.03727865219116211
- ]
- },
- {
- "keyword": "therapy",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04868312180042267,
- 0.07010938227176666,
- -0.0023363337386399508,
- 0.04688788205385208,
- -0.018485132604837418,
- 0.0404350645840168,
- 0.14879480004310608,
- 0.07238379120826721,
- 0.028784865513443947,
- -0.04813772067427635,
- -0.03671400994062424,
- 0.020102081820368767,
- 0.015987524762749672,
- 0.03136196732521057,
- -0.025927841663360596,
- 0.04334329068660736,
- 0.037150513380765915,
- 0.030850792303681374,
- -0.004300384316593409,
- -0.018835080787539482,
- -0.16177091002464294,
- 0.055120810866355896,
- 0.03921632468700409,
- 0.06331700831651688,
- -0.06223685294389725,
- 0.08250711113214493,
- -0.04000300168991089,
- -0.06579844653606415,
- 0.025111008435487747,
- -0.009671039879322052,
- 0.009058816358447075,
- -0.011488240212202072,
- -0.10720378905534744,
- 0.012134090065956116,
- -0.015523640438914299,
- 0.017352988943457603,
- -0.05391914024949074,
- 0.046603117138147354,
- -0.03904600813984871,
- -0.011615036055445671,
- -0.010124051943421364,
- 0.004546965938061476,
- 0.009596684016287327,
- -0.043859317898750305,
- -0.0227048322558403,
- -0.03968619182705879,
- -0.007432805374264717,
- 0.021744215860962868,
- -0.008104633539915085,
- -0.05009295418858528,
- -0.01987900771200657,
- 0.06508767604827881,
- -0.011870142072439194,
- -0.011462732218205929,
- 0.028871485963463783,
- -0.03386842831969261,
- 0.04236353188753128,
- 0.060308702290058136,
- -0.03583119437098503,
- 0.083626389503479,
- 0.059738434851169586,
- -0.0037164264358580112,
- -0.08296214044094086,
- 0.04939071834087372,
- 0.13093024492263794,
- 0.008698822930455208,
- -0.009819104336202145,
- 0.05765227600932121,
- 0.015081032179296017,
- -0.007298698183149099,
- -0.0313262939453125,
- -0.004691390320658684,
- 0.09915744513273239,
- 0.03860236331820488,
- 0.07333840429782867,
- -0.01083887368440628,
- -0.037733785808086395,
- -0.034569356590509415,
- 0.0669848620891571,
- 0.038829077035188675,
- 0.032485246658325195,
- 0.06905117630958557,
- 0.03324400633573532,
- 0.04008134454488754,
- -0.0022816681303083897,
- 0.0041174013167619705,
- 0.025509122759103775,
- 0.006014673039317131,
- 0.02523125894367695,
- 0.0705198347568512,
- -0.015611676499247551,
- 0.0070507097989320755,
- -0.03332594037055969,
- -0.013815231621265411,
- -0.04782961681485176,
- -0.03626767918467522,
- -0.0517517626285553,
- -0.05061442032456398,
- -0.07836280763149261,
- 0.26385796070098877,
- 0.0070421816781163216,
- 0.016922779381275177,
- -0.04045230150222778,
- 0.054322872310876846,
- -0.007561069913208485,
- -0.03000977449119091,
- -0.07239997386932373,
- -0.036247167736291885,
- -0.03514084964990616,
- -0.011139290407299995,
- -0.05132339149713516,
- -0.05236416682600975,
- -0.05052723363041878,
- 0.008455011062324047,
- 0.013424893841147423,
- 0.10365129262208939,
- 0.030191609635949135,
- -0.017252624034881592,
- 0.03021741844713688,
- 0.037243861705064774,
- 0.07947750389575958,
- -0.036188751459121704,
- 0.01779090240597725,
- 0.05097481235861778,
- -0.08743992447853088,
- -0.03993474319577217,
- 0.0034723435528576374,
- -5.673577850857496e-33,
- 0.02826726995408535,
- -0.02976173162460327,
- 0.03821767494082451,
- 0.027093108743429184,
- -0.0501992329955101,
- 0.06107112392783165,
- 0.010846965946257114,
- -0.07236733287572861,
- 0.00494287209585309,
- -0.04792670160531998,
- 0.03542303293943405,
- 0.014008738100528717,
- 0.06901790201663971,
- 0.0029248169157654047,
- -0.051680922508239746,
- -0.05083969607949257,
- -0.060660697519779205,
- 0.04579917713999748,
- -0.004851995036005974,
- -0.022608546540141106,
- 0.00024057080736383796,
- 0.08853355050086975,
- 0.0033691173885017633,
- 0.09007656574249268,
- -0.052132781594991684,
- -0.012527515180408955,
- -0.026755407452583313,
- -0.011531350202858448,
- 0.043955087661743164,
- 0.03926509618759155,
- -0.05212552472949028,
- 0.09861671924591064,
- 0.007263934705406427,
- -0.01735611818730831,
- -0.043932974338531494,
- -0.02324735000729561,
- 0.021383995190262794,
- -0.07593359798192978,
- 0.015500455163419247,
- -0.08643144369125366,
- 0.04521845281124115,
- 0.0604606568813324,
- -0.03618590161204338,
- 0.013666712678968906,
- 0.07020947337150574,
- 0.06901302933692932,
- -0.019352087751030922,
- -0.07888484746217728,
- -0.19243617355823517,
- 0.03184324502944946,
- 0.01465330459177494,
- 0.029874196276068687,
- -0.02666090801358223,
- -0.08552541583776474,
- -0.0026902540121227503,
- -0.027485031634569168,
- -0.010394641198217869,
- 0.02204807847738266,
- 0.04459637030959129,
- 0.006894188933074474,
- 0.107753686606884,
- -0.0016471404815092683,
- -0.06803334504365921,
- -0.04508329555392265,
- -0.05364694073796272,
- -0.04552941396832466,
- -0.008935821242630482,
- -0.083743155002594,
- 0.023852722719311714,
- -0.045572493225336075,
- -0.13297569751739502,
- 0.06474103778600693,
- 0.0801975429058075,
- 0.08518099784851074,
- -0.007241152226924896,
- -0.08717764914035797,
- 0.05583146959543228,
- -0.058652542531490326,
- -0.14263352751731873,
- -0.012480120174586773,
- 0.013626364059746265,
- -0.013187194243073463,
- -0.05176582932472229,
- 0.06165456026792526,
- 0.03991371765732765,
- -0.03146742284297943,
- -0.07310599088668823,
- -0.0011469232849776745,
- -0.027440402656793594,
- 0.016263166442513466,
- -0.008681310340762138,
- 0.0006546324002556503,
- 0.05161591246724129,
- 0.07536997646093369,
- -0.019563036039471626,
- 4.2048061083706945e-33,
- 0.0068585011176764965,
- -0.04812094569206238,
- 0.010230439715087414,
- -0.005659662187099457,
- 0.03159283474087715,
- -0.0636240765452385,
- -0.08493176847696304,
- 0.0036093140952289104,
- 0.018733413890004158,
- 0.08476175367832184,
- 0.014491080306470394,
- -0.04052126035094261,
- -0.006940432824194431,
- 0.07483401149511337,
- -0.06889977306127548,
- -0.014097255654633045,
- 0.028018159791827202,
- 0.01859148219227791,
- -0.0375075563788414,
- -0.033810656517744064,
- 0.02647026814520359,
- 0.09244111180305481,
- -0.015342604368925095,
- -0.04339568316936493,
- 0.005111644510179758,
- 0.010744307190179825,
- 0.015696806833148003,
- -0.03963690996170044,
- 0.05713999271392822,
- -0.022968566045165062,
- 0.034653160721063614,
- -0.02897465042769909,
- -0.0651293620467186,
- -0.027687957510352135,
- -0.002822138601914048,
- 0.06324470788240433,
- 0.08998603373765945,
- 0.05761119723320007,
- -0.09038664400577545,
- -0.0647912546992302,
- 0.00416636373847723,
- -0.05750207230448723,
- -0.039087653160095215,
- 0.05597773566842079,
- 0.06739562004804611,
- 0.0368366464972496,
- -0.02609993889927864,
- 0.028169220313429832,
- -0.002994474023580551,
- 0.001493974239565432,
- -0.028453579172492027,
- -0.015899932011961937,
- 0.0674402117729187,
- -0.03279699385166168,
- 0.024849282577633858,
- -0.10700540244579315,
- 0.038177456706762314,
- -0.05083590745925903,
- -0.0820537656545639,
- -0.01595209166407585,
- -0.014524146914482117,
- 0.00418541906401515,
- -0.051873210817575455,
- 0.026818599551916122,
- 0.012236462906002998,
- 0.030482014641165733,
- -0.030997924506664276,
- 0.034796569496393204,
- -0.024275312200188637,
- 0.021619990468025208,
- 0.009775339625775814,
- 0.08478479832410812,
- -0.053038254380226135,
- 0.004677978344261646,
- 0.026051582768559456,
- 0.027882523834705353,
- -0.0823650136590004,
- -0.06666873395442963,
- -0.017948567867279053,
- 0.0017338258912786841,
- -0.11031823605298996,
- -0.06185122951865196,
- 0.08482762426137924,
- 0.017390865832567215,
- -0.013137033209204674,
- -0.04259691387414932,
- 0.05882290005683899,
- 0.05017782002687454,
- -0.006052480544894934,
- -0.04204288497567177,
- -0.031310588121414185,
- -0.0643458440899849,
- -0.03532421961426735,
- -0.02476220577955246,
- 0.022097080945968628,
- -1.2527086035163393e-8,
- 0.04516589269042015,
- -0.1116127148270607,
- -0.03826365992426872,
- -0.03682559356093407,
- -0.01002378761768341,
- 0.0931844413280487,
- -0.044669583439826965,
- 0.045941196382045746,
- -0.022309862077236176,
- 0.08067135512828827,
- -0.0010084497043862939,
- 0.02921421267092228,
- 0.024057399481534958,
- 0.03979688137769699,
- 0.0221203975379467,
- -0.04887806251645088,
- 0.03984707221388817,
- 0.05013108253479004,
- -0.02419527992606163,
- -0.024801703169941902,
- -0.016772553324699402,
- -0.003448288654908538,
- 0.06963314861059189,
- -0.005354437045753002,
- -0.0362778902053833,
- -0.02320590242743492,
- 0.016368472948670387,
- 0.05731464922428131,
- -0.04593473672866821,
- -0.05220981687307358,
- 0.08024405688047409,
- -0.021876584738492966,
- 0.0017265421338379383,
- -0.036879438906908035,
- -0.06306561827659607,
- -0.05152284726500511,
- 0.04615795612335205,
- -0.03676903247833252,
- 0.0017884299159049988,
- -0.006739550735801458,
- -0.027472300454974174,
- 0.040832243859767914,
- 0.055517956614494324,
- 0.00843341089785099,
- -0.009786535985767841,
- -0.045151129364967346,
- 0.04747122526168823,
- -0.00010111423034686595,
- -0.00984529871493578,
- -0.015806399285793304,
- 0.030432485044002533,
- 0.04906611517071724,
- 0.01311291754245758,
- 0.037522535771131516,
- 0.03541906923055649,
- 0.03179119899868965,
- 0.053028736263513565,
- 0.005162757821381092,
- -0.09512220323085785,
- 0.016058243811130524,
- 0.070796437561512,
- 0.09802426397800446,
- 0.08712240308523178,
- 0.04438074678182602
- ]
- },
- {
- "keyword": "legal",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.012886440381407738,
- -0.004053145181387663,
- -0.06474463641643524,
- -0.0353231281042099,
- 0.0021268436685204506,
- -0.0033364328555762768,
- 0.05885456129908562,
- 0.03018355183303356,
- -0.007083316333591938,
- 0.048081059008836746,
- 0.00839665625244379,
- 0.07320705056190491,
- -0.07289592921733856,
- 0.004967357963323593,
- 0.033925559371709824,
- -0.04238132759928703,
- 0.028697680681943893,
- 0.0034253099001944065,
- -0.115915447473526,
- 0.05671288073062897,
- -0.07195533066987991,
- 0.04806389659643173,
- -0.01350109651684761,
- 0.04923727363348007,
- -0.019773269072175026,
- 0.005408614408224821,
- -0.0027335206978023052,
- 0.020577866584062576,
- 0.05180375650525093,
- -0.0748041495680809,
- 0.014099366962909698,
- 0.051858752965927124,
- 0.040758129209280014,
- -0.018836265429854393,
- 0.008245954290032387,
- -0.062026407569646835,
- -0.027650268748402596,
- -0.04645950347185135,
- -0.05066476762294769,
- 0.025669846683740616,
- 0.05425551161170006,
- -0.10746264457702637,
- -0.10470598936080933,
- -0.0002719940966926515,
- 0.006499593146145344,
- 0.06959528475999832,
- 0.020802518352866173,
- 0.021010980010032654,
- 0.03421327471733093,
- 0.050035156309604645,
- -0.015810415148735046,
- 0.022448942065238953,
- -0.01908118836581707,
- 0.05492345988750458,
- 0.0019379950826987624,
- -0.13757050037384033,
- -0.02453295700252056,
- 0.013618187047541142,
- 0.017001789063215256,
- -0.030952678993344307,
- 0.06239136680960655,
- 0.02605009265244007,
- -0.0829162672162056,
- -0.0387260764837265,
- -0.03464219346642494,
- 0.031353458762168884,
- -0.03583770617842674,
- -0.04759790003299713,
- 0.0023700075689703226,
- -0.07463087141513824,
- 0.017265353351831436,
- -0.02394236996769905,
- 0.014734767377376556,
- 0.030555274337530136,
- 0.0014488219749182463,
- -0.011788999661803246,
- 0.02753232605755329,
- 0.006558398716151714,
- 0.037301868200302124,
- -0.05678539350628853,
- -0.0389360636472702,
- -0.02850191667675972,
- -0.041735757142305374,
- -0.07744599133729935,
- -0.015546274371445179,
- 0.005043444223701954,
- -0.017183998599648476,
- 0.0761028379201889,
- 0.03878791257739067,
- 0.03099086508154869,
- 0.03807036578655243,
- 0.01591901294887066,
- 0.1260947287082672,
- 0.01058721262961626,
- -0.04726428538560867,
- -0.015162876807153225,
- 0.04419665411114693,
- -0.054950449615716934,
- -0.011100062169134617,
- 0.23348726332187653,
- -0.017344936728477478,
- 0.04823454096913338,
- -0.036227576434612274,
- 0.009978734888136387,
- 0.022227760404348373,
- 0.02623041532933712,
- -0.013365066610276699,
- 0.04915572330355644,
- 0.013045283034443855,
- 0.01888144202530384,
- 0.009106201119720936,
- 0.02740061841905117,
- 0.002218087902292609,
- -0.05054919049143791,
- 0.0131717873737216,
- 0.1397790163755417,
- -0.01997171714901924,
- 0.030090367421507835,
- 0.08078952133655548,
- -0.09647692739963531,
- -0.028226401656866074,
- -0.016380449756979942,
- -0.027669748291373253,
- -0.01302389521151781,
- -0.08001779019832611,
- -0.17561136186122894,
- 0.02711368538439274,
- -4.9773791992975036e-33,
- -0.04083411768078804,
- -0.012911020778119564,
- -0.035613056272268295,
- -0.011009925045073032,
- 0.009634004905819893,
- 0.008630081079900265,
- 0.006020558066666126,
- 0.02121712826192379,
- -0.085880808532238,
- 0.0914936438202858,
- -0.021023256704211235,
- -0.0005367026897147298,
- -0.0460335947573185,
- 0.0396549254655838,
- 0.14674843847751617,
- 0.012553839012980461,
- -0.04418838024139404,
- 0.029454730451107025,
- -0.0376761294901371,
- 0.0031026718206703663,
- 0.03667256236076355,
- -0.0048190392553806305,
- -0.019451741129159927,
- 0.06638945639133453,
- -0.11076483130455017,
- -0.010845067910850048,
- -0.00046549030230380595,
- -0.10104580968618393,
- 0.11983035504817963,
- 0.015137767419219017,
- -0.05325734242796898,
- 0.05246341601014137,
- 0.10057093948125839,
- -0.025227338075637817,
- 0.04359126091003418,
- 0.027865419164299965,
- -0.018257344141602516,
- -0.025725428014993668,
- 0.015304525382816792,
- 0.012496287934482098,
- -0.06568951159715652,
- -0.015335694886744022,
- -0.011867080815136433,
- 0.00014918750093784183,
- 0.010611276142299175,
- 0.028626753017306328,
- -0.041395921260118484,
- -0.033714525401592255,
- -0.05209263041615486,
- 0.03469215705990791,
- -0.016721529886126518,
- 0.00992650631815195,
- -0.05518503487110138,
- -0.0625111386179924,
- 0.022308768704533577,
- 0.044837526977062225,
- 0.0056010023690760136,
- 0.07466013729572296,
- 0.023215971887111664,
- 0.007501873653382063,
- 0.06517957895994186,
- 0.11955302953720093,
- -0.0019075220916420221,
- 0.054960932582616806,
- -0.05452040955424309,
- -0.05245266482234001,
- 0.0010219215182587504,
- -0.0016856106230989099,
- 0.027066923677921295,
- -0.036693423986434937,
- 0.015135970897972584,
- 0.06248033791780472,
- 0.012431622482836246,
- 0.035510290414094925,
- 0.003516420954838395,
- -0.01707797683775425,
- 0.06984711438417435,
- -0.010700198821723461,
- 0.051249220967292786,
- -0.03591189533472061,
- -0.03765571489930153,
- -0.004604806192219257,
- -0.015287469141185284,
- 0.03162839636206627,
- 0.055509235709905624,
- 0.03139244019985199,
- -0.046363167464733124,
- -0.0750819593667984,
- 0.032787758857011795,
- 0.15825285017490387,
- -0.055943433195352554,
- -0.012426608242094517,
- 0.017518965527415276,
- 0.0025031198747456074,
- 0.0026527787558734417,
- 4.129956138240101e-33,
- -0.09128130227327347,
- -0.02401943877339363,
- -0.026692379266023636,
- 0.030321218073368073,
- -0.012315808795392513,
- -0.004082780797034502,
- -0.008969549089670181,
- 0.02333708293735981,
- -0.05430292710661888,
- 0.037571534514427185,
- -0.1046203076839447,
- -0.05763367563486099,
- 0.033738069236278534,
- 0.030358586460351944,
- -0.0010983867105096579,
- -0.02442323975265026,
- 0.004393799230456352,
- -0.06935407966375351,
- -0.03896573930978775,
- -0.013048837892711163,
- -0.048951808363199234,
- -0.05226072296500206,
- 0.016106512397527695,
- -0.013431014493107796,
- -0.011663836427032948,
- 0.010586432181298733,
- -0.01991385594010353,
- 0.04898237809538841,
- 0.045580942183732986,
- 0.06914029270410538,
- 0.042145684361457825,
- 0.031164808198809624,
- -0.13363254070281982,
- -0.03504249081015587,
- -0.01329372264444828,
- 0.05678049474954605,
- 0.050185367465019226,
- 0.005945698358118534,
- 0.01125472690910101,
- -0.0638836920261383,
- 0.04924458637833595,
- 0.018869047984480858,
- 0.08703046292066574,
- 0.12079320102930069,
- -0.0725506916642189,
- -0.02916211634874344,
- 0.0020357000175863504,
- 0.01684124767780304,
- 0.08999757468700409,
- 0.021402442827820778,
- -0.017084641382098198,
- 0.030248429626226425,
- 0.1015724390745163,
- -0.049996163696050644,
- -0.026950307190418243,
- -0.05528268963098526,
- -0.0106583246961236,
- 0.042284492403268814,
- -0.07701143622398376,
- -0.025224406272172928,
- 0.09005524218082428,
- 0.013210051693022251,
- -0.03243841975927353,
- -0.046996623277664185,
- -0.02723592333495617,
- 0.008072758093476295,
- 0.02333826757967472,
- -0.04300887510180473,
- 0.0025260960683226585,
- -0.04213463515043259,
- -0.0125653725117445,
- 0.042172979563474655,
- -0.10112111270427704,
- -0.0020739769097417593,
- 0.02623625285923481,
- -0.04366961494088173,
- 0.005270092282444239,
- 0.025957943871617317,
- 0.022596050053834915,
- -0.09442556649446487,
- -0.030898312106728554,
- -0.04598478600382805,
- -0.018558373674750328,
- 0.050147730857133865,
- -0.026193244382739067,
- -0.045619476586580276,
- -0.0025092570576816797,
- 0.016077078878879547,
- -0.002771147759631276,
- -0.025783026590943336,
- 0.07307864725589752,
- 0.006080887746065855,
- 0.012217354029417038,
- 0.09316728264093399,
- 0.011939218267798424,
- -1.3264275011692916e-8,
- -0.0028308976907283068,
- 0.014801561832427979,
- -0.011967248283326626,
- -0.024447377771139145,
- -0.06883470714092255,
- 0.02626083791255951,
- -0.0036374914925545454,
- -0.05389772728085518,
- 0.024008722975850105,
- 0.06766040623188019,
- -0.0500776469707489,
- -0.07373502850532532,
- 0.016625406220555305,
- 0.05732383579015732,
- -0.00503410492092371,
- -0.05067369341850281,
- 0.05339159071445465,
- -0.02679007314145565,
- -0.010667292401194572,
- 0.104219451546669,
- -0.08392398059368134,
- -0.0010464157676324248,
- 0.07741813361644745,
- 0.04328201338648796,
- 0.008434858173131943,
- -0.014076405204832554,
- 0.0680999681353569,
- 0.103828564286232,
- 0.02521243505179882,
- 0.091844841837883,
- 0.03639904782176018,
- 0.12734223902225494,
- -0.02599749155342579,
- -0.021366415545344353,
- -0.013354998081922531,
- -0.1504129320383072,
- -0.07030581682920456,
- 0.026542771607637405,
- -0.006186621263623238,
- -0.03371169790625572,
- -0.03720109537243843,
- 0.009615607559680939,
- 0.045187149196863174,
- -0.03592287376523018,
- -0.02644290216267109,
- -0.013340691104531288,
- -0.03200925886631012,
- -0.014184937812387943,
- 0.017190290614962578,
- 0.03466958925127983,
- -0.021015523001551628,
- -0.05464038997888565,
- 0.07185522466897964,
- -0.024866096675395966,
- -0.00948309525847435,
- 0.06159808859229088,
- 0.04036569222807884,
- 0.013446971774101257,
- -0.008730139583349228,
- 0.0009486388880759478,
- 0.16295576095581055,
- 0.013667325489223003,
- 0.1097210943698883,
- 0.03838464990258217
- ]
- },
- {
- "keyword": "accounting",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.011983628384768963,
- 0.06765712052583694,
- -0.056777223944664,
- 0.010180925950407982,
- -0.03757038712501526,
- 0.0008477908559143543,
- 0.11735399812459946,
- -0.025419587269425392,
- 0.0457172691822052,
- 0.03676624968647957,
- 0.010068133473396301,
- -0.09186941385269165,
- -0.061474092304706573,
- -0.008634703233838081,
- -0.07047715783119202,
- -0.10535935312509537,
- -0.026013169437646866,
- 0.010613045655190945,
- 0.03278151527047157,
- -0.02771187573671341,
- -0.038488615304231644,
- 0.02245890349149704,
- -0.027053959667682648,
- 0.005702088121324778,
- 0.07880747318267822,
- 0.011143747717142105,
- -0.057053618133068085,
- 0.005681013222783804,
- -0.004423448815941811,
- -0.1213480532169342,
- -0.03433645889163017,
- -0.001829121494665742,
- 0.07080569863319397,
- 0.004264147486537695,
- 0.008989238180220127,
- 0.0047868238762021065,
- -0.0030121952295303345,
- 0.04074666276574135,
- 0.05647590383887291,
- 0.013190858066082,
- -0.07309618592262268,
- -0.020613981410861015,
- -0.0013100695796310902,
- -0.05699564144015312,
- -0.010476435534656048,
- 0.0008408752037212253,
- 0.024362219497561455,
- -0.008739087730646133,
- -0.0043123699724674225,
- 0.09121391922235489,
- -0.05643429607152939,
- -0.008626829832792282,
- -0.048629969358444214,
- -0.010483848862349987,
- 0.06717242300510406,
- 0.004796795547008514,
- 0.029195789247751236,
- -0.035085659474134445,
- -0.04762736335396767,
- -0.05573694407939911,
- -0.04878326132893562,
- 0.009531858377158642,
- -0.01575925201177597,
- 0.059947121888399124,
- 0.10367505252361298,
- 0.04038788005709648,
- -0.019295789301395416,
- 0.11182989925146103,
- -0.13682806491851807,
- -0.019442081451416016,
- -0.024725424125790596,
- -0.06869758665561676,
- -0.07330382615327835,
- -0.015940088778734207,
- 0.08056706935167313,
- -0.0783795714378357,
- 0.004767939914017916,
- 0.013532483950257301,
- 0.04736270755529404,
- -0.027765555307269096,
- 0.037153054028749466,
- 0.05162721872329712,
- -0.09610497951507568,
- 0.00018774630734696984,
- 0.014567756094038486,
- -0.08430399000644684,
- 0.025272147729992867,
- -0.0033779647201299667,
- 0.04536695033311844,
- -0.042536988854408264,
- 0.038183458149433136,
- -0.040808454155921936,
- 0.12254969775676727,
- -0.02739085629582405,
- -0.029826175421476364,
- 0.030634019523859024,
- -0.029362183064222336,
- 0.03063071332871914,
- 0.07368062436580658,
- 0.20893554389476776,
- 0.05144142732024193,
- 0.08765366673469543,
- -0.010752124711871147,
- 0.0035911535378545523,
- -0.022656874731183052,
- -0.035308994352817535,
- 0.12147466838359833,
- -0.0004989299923181534,
- 0.010399342514574528,
- -0.02616371586918831,
- -0.022022858262062073,
- 0.06579600274562836,
- -0.08290355652570724,
- -0.02502860315144062,
- 0.05349978432059288,
- 0.07810129225254059,
- -0.010932802222669125,
- 0.026803897693753242,
- 0.021454697474837303,
- -0.02344067394733429,
- -0.0031238554511219263,
- 0.0807010680437088,
- -0.05784124881029129,
- -0.015431958250701427,
- -0.06211410090327263,
- -0.00878368690609932,
- -0.002712148241698742,
- -5.008133804934861e-33,
- -0.014460082165896893,
- -0.05517786368727684,
- 0.06647270917892456,
- -0.006582329049706459,
- -0.016872676089406013,
- -0.00006162926729302853,
- -0.044251978397369385,
- 0.0392598919570446,
- 0.008723251521587372,
- 0.1018284484744072,
- 0.038475535809993744,
- 0.07409816235303879,
- -0.04477158188819885,
- -0.02498818002641201,
- 0.1012711375951767,
- 0.030131207779049873,
- -0.06509702652692795,
- 0.13833443820476532,
- 0.04853473976254463,
- 0.02266550436615944,
- -0.06605441123247147,
- -0.05610058456659317,
- 0.0602773055434227,
- -0.001024292898364365,
- 0.09688700735569,
- 0.031111588701605797,
- -0.03622345253825188,
- -0.02636602520942688,
- -0.00968983955681324,
- 0.006520479917526245,
- 0.1050524041056633,
- 0.007481211330741644,
- -0.036851946264505386,
- -0.0001290358486585319,
- 0.001200424856506288,
- -0.044168904423713684,
- -0.08162439614534378,
- -0.010423987172544003,
- 0.05460572615265846,
- -0.02686711959540844,
- -0.014732570387423038,
- -0.010386839509010315,
- 0.027791636064648628,
- -0.04870922118425369,
- -0.08909840881824493,
- 0.10970139503479004,
- 0.07504159957170486,
- 0.06315505504608154,
- 0.05502362549304962,
- 0.08671822398900986,
- 0.00838787853717804,
- -0.06703194230794907,
- -0.015394759364426136,
- -0.049092553555965424,
- 0.03621330484747887,
- 0.025580748915672302,
- 0.022448871284723282,
- -0.046946361660957336,
- -0.05868702381849289,
- -0.024799035862088203,
- 0.031308360397815704,
- 0.04585793986916542,
- -0.03569731488823891,
- 0.03366716206073761,
- -0.08880043029785156,
- 0.0555509477853775,
- 0.010417984798550606,
- 0.020549263805150986,
- 0.10315363854169846,
- -0.03866472467780113,
- -0.07317974418401718,
- -0.05601629987359047,
- -0.0332803837954998,
- 0.03221104294061661,
- 0.007016491610556841,
- 0.03456060215830803,
- 0.0154122244566679,
- -0.010848996229469776,
- -0.022693783044815063,
- 0.033094096928834915,
- -0.05943939462304115,
- -0.006560046691447496,
- -0.03347248211503029,
- -0.03322652727365494,
- -0.01697561889886856,
- 0.11227976530790329,
- 0.05021060258150101,
- -0.02047891356050968,
- 0.06135910004377365,
- 0.05027206987142563,
- -0.07446494698524475,
- -0.017458265647292137,
- 0.023304250091314316,
- 0.08375056087970734,
- -0.015166085213422775,
- 2.918528210810122e-33,
- -0.01511541660875082,
- -0.02932835929095745,
- -0.0272880420088768,
- -0.055772967636585236,
- -0.02515595778822899,
- -0.03687093034386635,
- 0.06189744174480438,
- -0.055146414786577225,
- -0.005534149240702391,
- 0.033348288387060165,
- -0.09725957363843918,
- 0.006372072268277407,
- -0.007287910673767328,
- 0.05927213281393051,
- 0.006009366363286972,
- -0.04292748123407364,
- 0.06368618458509445,
- -0.06689498573541641,
- -0.03278035297989845,
- 0.005287871230393648,
- 0.0027993093244731426,
- 0.05877785384654999,
- 0.08871539682149887,
- -0.04513948783278465,
- 0.009721179492771626,
- 0.07243086397647858,
- -0.03478587046265602,
- -0.0008507622987963259,
- 0.01266467198729515,
- -0.027687888592481613,
- -0.02207818627357483,
- -0.04617970436811447,
- 0.040820203721523285,
- 0.009231560863554478,
- -0.03984120115637779,
- -0.12443815916776657,
- 0.01003014575690031,
- -0.01778673194348812,
- -0.03145846724510193,
- -0.01861998438835144,
- 0.04903630167245865,
- -0.018087362870573997,
- 0.011024285107851028,
- 0.09915784746408463,
- 0.06744741648435593,
- -0.04340921342372894,
- -0.006317485589534044,
- 0.051236532628536224,
- 0.04280916228890419,
- -0.03155537322163582,
- -0.03751736506819725,
- -0.00498123187571764,
- -0.005722315050661564,
- 0.006756491493433714,
- -0.07361477613449097,
- 0.14037394523620605,
- -0.004734366200864315,
- -0.07682151347398758,
- 0.0072176349349319935,
- -0.010099188424646854,
- -0.03075915016233921,
- 0.06170591339468956,
- 0.021593496203422546,
- 0.10193827748298645,
- -0.017529617995023727,
- 0.01986447349190712,
- 0.00007184138667071238,
- -0.014912914484739304,
- -0.03136676549911499,
- -0.022504078224301338,
- 0.04697496071457863,
- -0.027519267052412033,
- -0.019726362079381943,
- -0.05479370802640915,
- -0.06074071303009987,
- 0.05355394631624222,
- -0.09732276201248169,
- -0.0593697652220726,
- -0.016693947836756706,
- 0.0034725212026387453,
- -0.09183935075998306,
- 0.013041448779404163,
- -0.0243265088647604,
- 0.04261567071080208,
- -0.1013258770108223,
- -0.059295907616615295,
- 0.023080382496118546,
- -0.09963621944189072,
- -0.0018240046920254827,
- -0.013122008182108402,
- -0.06477491557598114,
- -0.019700417295098305,
- 0.01599389687180519,
- 0.02022606134414673,
- -0.0599207729101181,
- -1.205216371147344e-8,
- -0.0385059118270874,
- -0.019002821296453476,
- 0.0583074688911438,
- 0.0026270782109349966,
- -0.016222670674324036,
- -0.08499685674905777,
- -0.016767030581831932,
- -0.006645901594310999,
- 0.00804448314011097,
- 0.07376107573509216,
- 0.02591835893690586,
- 0.0105107007548213,
- -0.025903182104229927,
- 0.027818139642477036,
- 0.019418051466345787,
- -0.021635491400957108,
- -0.003738752566277981,
- -0.01876731775701046,
- -0.050805747509002686,
- 0.008150792680680752,
- 0.03332544490695,
- -0.0016522019868716598,
- 0.016301115974783897,
- 0.021049698814749718,
- -0.025014953687787056,
- -0.05210357904434204,
- 0.0723486915230751,
- 0.09482350945472717,
- 0.05915675312280655,
- -0.053064294159412384,
- 0.022893106564879417,
- 0.08276154100894928,
- 0.07336382567882538,
- -0.04750492423772812,
- 0.009477355517446995,
- -0.042257968336343765,
- 0.031587742269039154,
- -0.017843125388026237,
- -0.009627975523471832,
- -0.014594119042158127,
- -0.0734078660607338,
- -0.004085196182131767,
- 0.04517274349927902,
- 0.02965357154607773,
- 0.0032441127113997936,
- -0.010650882497429848,
- -0.08618194609880447,
- 0.0413554422557354,
- 0.050940778106451035,
- -0.06287020444869995,
- -0.01260520052164793,
- -0.03533973917365074,
- 0.05259623005986214,
- 0.032749056816101074,
- 0.008892898447811604,
- -0.013177432119846344,
- 0.005790860392153263,
- -0.014083093032240868,
- -0.08465936034917831,
- 0.03805083781480789,
- 0.15677616000175476,
- -0.051707156002521515,
- 0.04871088266372681,
- -0.012926772236824036
- ]
- },
- {
- "keyword": "financial",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.013793420977890491,
- 0.06079881265759468,
- -0.07082729786634445,
- 0.05250765383243561,
- -0.01679874397814274,
- -0.016177790239453316,
- 0.12613414227962494,
- 0.05200083553791046,
- 0.0696844533085823,
- 0.0012915667612105608,
- -0.01425077859312296,
- -0.08230117708444595,
- -0.067190982401371,
- -0.048407964408397675,
- -0.06793279200792313,
- -0.12508241832256317,
- -0.019545534625649452,
- -0.05206967145204544,
- -0.07341330498456955,
- 0.04616463929414749,
- -0.05752898380160332,
- -0.04207266494631767,
- -0.003805221989750862,
- -0.024990634992718697,
- 0.080426886677742,
- 0.027069220319390297,
- 0.0032098994124680758,
- 0.029324376955628395,
- -0.002767060184851289,
- -0.09899290651082993,
- 0.027970604598522186,
- 0.043217964470386505,
- 0.0817897617816925,
- -0.052086953073740005,
- 0.02154741808772087,
- 0.030433258041739464,
- 0.0393737368285656,
- 0.04885581135749817,
- 0.020566245540976524,
- -0.004000364802777767,
- -0.047031380236148834,
- -0.06864311546087265,
- 0.02388758771121502,
- -0.045322906225919724,
- 0.022560687735676765,
- -0.02610587701201439,
- 0.038793597370386124,
- 0.0359649620950222,
- 0.02997271716594696,
- 0.11591972410678864,
- -0.052992358803749084,
- 0.01499324943870306,
- -0.03461920842528343,
- 0.028722457587718964,
- 0.05628268048167229,
- -0.01234366837888956,
- 0.04809930920600891,
- -0.0215460117906332,
- 0.005638052709400654,
- -0.05201556906104088,
- 0.034339603036642075,
- -0.02415500394999981,
- -0.032717522233724594,
- 0.018954381346702576,
- 0.11437375843524933,
- 0.03862529993057251,
- -0.01566983014345169,
- 0.055512409657239914,
- -0.07610297948122025,
- -0.02324979566037655,
- 0.061263278126716614,
- -0.08578666299581528,
- -0.06157759949564934,
- -0.04959743097424507,
- 0.042020563036203384,
- -0.021903228014707565,
- 0.05788494274020195,
- 0.03750285133719444,
- 0.04824342951178551,
- 0.00775911333039403,
- 0.0720510184764862,
- -0.04012918844819069,
- -0.0652555450797081,
- -0.014772708527743816,
- -0.018742531538009644,
- 0.008577153086662292,
- 0.013363819569349289,
- -0.0002919442194979638,
- -0.004751279950141907,
- 0.0030042307917028666,
- -0.01347432006150484,
- -0.0017267167568206787,
- 0.06938248872756958,
- 0.006724073551595211,
- -0.07670645415782928,
- 0.011142070405185223,
- -0.017612943425774574,
- -0.08917026221752167,
- -0.010299905203282833,
- 0.21712130308151245,
- 0.06532713770866394,
- 0.03480244800448418,
- 0.0137865599244833,
- 0.04653855413198471,
- -0.026774937286973,
- -0.04791441932320595,
- 0.049890369176864624,
- 0.11905979365110397,
- 0.07117299735546112,
- -0.020555146038532257,
- -0.06769000738859177,
- 0.03335951641201973,
- -0.06088876351714134,
- -0.014538183808326721,
- -0.012487674131989479,
- 0.03144528344273567,
- -0.07898460328578949,
- -0.03655705600976944,
- 0.11280336230993271,
- 0.03445856645703316,
- 0.02012360841035843,
- 0.1034417673945427,
- -0.08962179720401764,
- -0.0165974460542202,
- -0.08096672594547272,
- -0.10019802302122116,
- -0.082354336977005,
- -4.557280293516665e-33,
- -0.027248239144682884,
- -0.04867055267095566,
- 0.04004056379199028,
- -0.04597543925046921,
- -0.03325039520859718,
- 0.058915067464113235,
- -0.022741056978702545,
- -0.006394946947693825,
- -0.10307081788778305,
- 0.10845354199409485,
- 0.0013452197890728712,
- 0.05113401636481285,
- -0.03334948793053627,
- -0.009554866701364517,
- 0.051951322704553604,
- -0.0028808664064854383,
- -0.05688992142677307,
- 0.048751793801784515,
- 0.08064477145671844,
- 0.002014345722272992,
- 0.016336632892489433,
- 0.05442701280117035,
- 0.05735497549176216,
- -0.005387221463024616,
- 0.09118863940238953,
- -0.06691362708806992,
- -0.052409153431653976,
- -0.034972332417964935,
- 0.08448222279548645,
- 0.03198373317718506,
- -0.0011815944453701377,
- 0.013221731409430504,
- 0.0350467711687088,
- -0.05832761153578758,
- -0.016838015988469124,
- -0.03359324485063553,
- -0.05549893528223038,
- -0.05965077504515648,
- -0.02415597438812256,
- -0.04229298606514931,
- -0.031142983585596085,
- -0.0011619029100984335,
- -0.01985892839729786,
- 0.0696219876408577,
- -0.04242730513215065,
- 0.055096033960580826,
- 0.05215265229344368,
- 0.06867428869009018,
- -0.041250135749578476,
- 0.023963844403624535,
- -0.04169338941574097,
- 0.03758248686790466,
- -0.09858392924070358,
- -0.07215378433465958,
- -0.014458111487329006,
- -0.07371174544095993,
- 0.042537007480859756,
- -0.028860054910182953,
- -0.1152893602848053,
- -0.10730786621570587,
- 0.03734331205487251,
- -0.005848339758813381,
- -0.059093914926052094,
- 0.0058439974673092365,
- -0.09447258710861206,
- 0.04368961229920387,
- 0.030128398910164833,
- 0.03798050060868263,
- 0.011240423657000065,
- -0.004933962132781744,
- -0.09540417045354843,
- 0.0031681638211011887,
- 0.09335414320230484,
- 0.07028737664222717,
- 0.04786015301942825,
- 0.000026709894882515073,
- 0.03922395408153534,
- -0.012722999788820744,
- -0.00547548895701766,
- 0.07883121073246002,
- -0.03573842719197273,
- -0.006335725076496601,
- -0.013525147922337055,
- 0.09369660913944244,
- 0.047600019723176956,
- 0.10726509243249893,
- 0.005990215577185154,
- -0.06562799215316772,
- 0.06657474488019943,
- 0.02704596519470215,
- -0.06865255534648895,
- -0.029779160395264626,
- 0.06721727550029755,
- 0.04162479564547539,
- 0.018765276297926903,
- 2.246856616222021e-33,
- -0.05541687831282616,
- -0.02621474862098694,
- 0.010356630198657513,
- 0.05114801600575447,
- -0.04445779323577881,
- -0.009614053182303905,
- 0.03398434817790985,
- -0.030806416645646095,
- 0.07229804992675781,
- 0.06542287021875381,
- -0.06633156538009644,
- -0.015785900875926018,
- 0.04287143051624298,
- 0.00996056105941534,
- -0.039985477924346924,
- -0.06486385315656662,
- 0.04959738254547119,
- -0.049616485834121704,
- 0.04108363389968872,
- -0.03931932523846626,
- -0.016425810754299164,
- 0.021890562027692795,
- 0.0901455357670784,
- 0.015081165358424187,
- 0.01232439000159502,
- 0.051450464874506,
- -0.03275124356150627,
- 0.033312030136585236,
- -0.0513024665415287,
- 0.019401922821998596,
- 0.021056463941931725,
- 0.01008972991257906,
- 0.0026314514689147472,
- 0.0333072803914547,
- -0.0800987109541893,
- -0.004708542488515377,
- 0.008743930608034134,
- -0.005245893262326717,
- -0.00668629864230752,
- 0.02498246543109417,
- 0.06962868571281433,
- -0.007549517787992954,
- 0.05561354011297226,
- 0.06578521430492401,
- 0.04289742186665535,
- -0.06561830639839172,
- -0.012877908535301685,
- -0.012376693077385426,
- 0.08053512126207352,
- -0.00619569793343544,
- -0.0310687068849802,
- -0.010600161738693714,
- -0.006319147069007158,
- 0.02489960379898548,
- -0.06011436879634857,
- 0.10748420655727386,
- 0.03828161954879761,
- -0.02819858305156231,
- -0.022188929840922356,
- 0.028239326551556587,
- -0.027180219069123268,
- 0.06000689044594765,
- 0.029203947633504868,
- 0.11857425421476364,
- -0.07585414499044418,
- 0.01988869719207287,
- -0.012183280661702156,
- -0.03974832966923714,
- -0.02221435308456421,
- -0.03733106330037117,
- 0.03995044529438019,
- -0.017987767234444618,
- -0.021535558626055717,
- 0.04090655595064163,
- -0.021650098264217377,
- 0.09160910546779633,
- -0.0973404124379158,
- -0.031974148005247116,
- -0.002624446526169777,
- 0.029893483966588974,
- -0.011164488270878792,
- 0.01719735376536846,
- -0.03731439635157585,
- 0.013761370442807674,
- -0.06869550049304962,
- -0.036965105682611465,
- 0.006788851693272591,
- -0.057984281331300735,
- -0.03038405068218708,
- -0.07264264672994614,
- -0.028697315603494644,
- 0.022216200828552246,
- 0.009085399098694324,
- -0.006428826600313187,
- -0.09094613045454025,
- -1.1902764995852522e-8,
- -0.0243767611682415,
- -0.0038813415449112654,
- 0.009421153925359249,
- -0.040540050715208054,
- 0.055707741528749466,
- -0.049595192074775696,
- 0.01832246221601963,
- -0.007757170125842094,
- 0.013620736077427864,
- 0.027044840157032013,
- 0.018406560644507408,
- 0.04940083995461464,
- -0.06355815380811691,
- 0.0041847797110676765,
- -0.018517451360821724,
- -0.01765708439052105,
- -0.020897338166832924,
- -0.03623560816049576,
- -0.014910856261849403,
- 0.02453938126564026,
- 0.04758157953619957,
- 0.00024648080579936504,
- 0.035010501742362976,
- 0.04254604130983353,
- -0.032130323350429535,
- -0.0396059975028038,
- 0.07303444296121597,
- 0.13283520936965942,
- 0.043061982840299606,
- 0.019358934834599495,
- -0.02175181731581688,
- 0.020405283197760582,
- 0.04147094488143921,
- -0.043237052857875824,
- -0.08994117379188538,
- -0.019726909697055817,
- 0.04769443720579147,
- 0.002086881548166275,
- -0.01143665798008442,
- 0.01570606790482998,
- 0.0060897525399923325,
- -0.05219827592372894,
- -0.011289868503808975,
- -0.01874002255499363,
- -0.0018907181220129132,
- -0.005839885678142309,
- -0.08853214234113693,
- 0.009273682720959187,
- 0.038415808230638504,
- -0.12682701647281647,
- -0.0026829384732991457,
- -0.01062761154025793,
- 0.07010286301374435,
- 0.025555163621902466,
- 0.0020029880106449127,
- -0.011561177670955658,
- -0.05099838599562645,
- 0.04245549440383911,
- -0.07980623096227646,
- -0.0364367850124836,
- 0.09745530784130096,
- -0.08544866740703583,
- 0.047616422176361084,
- -0.01107193436473608
- ]
- },
- {
- "keyword": "insurance",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04524192959070206,
- 0.14122095704078674,
- 0.013199010863900185,
- -0.002830257872119546,
- 0.06405000388622284,
- 0.0331842377781868,
- 0.20398768782615662,
- 0.04742400720715523,
- -0.016469106078147888,
- 0.026690592989325523,
- 0.0566667877137661,
- 0.025523336604237556,
- -0.004405073821544647,
- -0.040046337991952896,
- -0.057524051517248154,
- -0.08240779489278793,
- 0.011207236908376217,
- -0.010567919351160526,
- -0.10420387983322144,
- 0.04044539853930473,
- -0.14099089801311493,
- 0.06587963551282883,
- -0.023685837164521217,
- -0.00005845397026860155,
- 0.0037967816460877657,
- 0.0278616975992918,
- 0.022943612188100815,
- 0.04219939187169075,
- -0.03206095099449158,
- -0.052280984818935394,
- 0.041836779564619064,
- -0.04568815976381302,
- -0.004387578461319208,
- -0.017527291551232338,
- -0.02989606373012066,
- -0.026539690792560577,
- -0.08273108303546906,
- -0.05448025465011597,
- -0.06905540823936462,
- 0.0027938212733715773,
- -0.011067761108279228,
- -0.009632285684347153,
- -0.04023875668644905,
- 0.029383957386016846,
- 0.0010582503164187074,
- -0.001354615786112845,
- 0.033555012196302414,
- 0.046464093029499054,
- 0.09173650294542313,
- 0.09484629333019257,
- 0.0015247076516970992,
- 0.06089714169502258,
- 0.008321346715092659,
- -0.02973509207367897,
- 0.053174883127212524,
- -0.09127660095691681,
- -0.05849670618772507,
- -0.035407859832048416,
- -0.05640315264463425,
- -0.023642031475901604,
- 0.02912517450749874,
- 0.0208267979323864,
- -0.009528539143502712,
- 0.08546122908592224,
- 0.021947382017970085,
- -0.02121375873684883,
- 0.04272571951150894,
- 0.07952013611793518,
- -0.05773165822029114,
- -0.06598909944295883,
- 0.023023946210741997,
- -0.07017479836940765,
- -0.028028132393956184,
- 0.025455299764871597,
- 0.03342008590698242,
- -0.01064777560532093,
- 0.04027511551976204,
- -0.02568434737622738,
- 0.004983748774975538,
- -0.029462171718478203,
- 0.02461470104753971,
- -0.050144221633672714,
- 0.05147296562790871,
- 0.005448282230645418,
- 0.03917308896780014,
- -0.0003144777729175985,
- -0.007773095276206732,
- 0.027972102165222168,
- -0.029041381552815437,
- -0.04441634938120842,
- 0.003181983018293977,
- -0.08234132081270218,
- 0.060047272592782974,
- -0.0033192678820341825,
- 0.004239238332957029,
- 0.007372408639639616,
- -0.030462244525551796,
- -0.06917963922023773,
- -0.06084941700100899,
- 0.20499594509601593,
- 0.00008816308400128037,
- -0.050240401178598404,
- -0.02871105447411537,
- 0.05755633860826492,
- -0.10039916634559631,
- -0.04785197600722313,
- -0.018201109021902084,
- 0.04062321409583092,
- 0.05228756368160248,
- 0.02509617619216442,
- 0.0036822205875068903,
- 0.014285208657383919,
- 0.033060334622859955,
- 0.02918866090476513,
- -0.023150937631726265,
- 0.009178155101835728,
- -0.04406356438994408,
- -0.04029237851500511,
- 0.08129321038722992,
- -0.051225051283836365,
- 0.05674035847187042,
- 0.03683527931571007,
- -0.04915333911776543,
- -0.01810290664434433,
- -0.07023059576749802,
- -0.05958422273397446,
- 0.05050152167677879,
- -6.650374718140446e-33,
- -0.0012226707767695189,
- 0.009282421320676804,
- 0.007121276576071978,
- -0.01410538237541914,
- 0.0015776375075802207,
- 0.022802526131272316,
- 0.011248322203755379,
- -0.0005841563106514513,
- -0.025408104062080383,
- 0.05301271751523018,
- -0.04185621440410614,
- -0.001273603644222021,
- -0.026594001799821854,
- -0.02809036895632744,
- 0.016348468139767647,
- 0.10026533901691437,
- -0.043735798448324203,
- 0.11715679615736008,
- -0.029019808396697044,
- 0.030681967735290527,
- -0.08759456872940063,
- 0.018043391406536102,
- 0.05638980120420456,
- 0.05223057046532631,
- 0.04028548300266266,
- -0.0008351227734237909,
- 0.026492515578866005,
- -0.08913037925958633,
- 0.05611748248338699,
- 0.03977399319410324,
- 0.007950108498334885,
- 0.10252564400434494,
- -0.014183689840137959,
- -0.03505507856607437,
- -0.031114306300878525,
- -0.0032246641349047422,
- -0.10215065628290176,
- -0.0410214364528656,
- -0.06289629638195038,
- -0.09108567237854004,
- -0.04921378940343857,
- -0.04510919377207756,
- 0.0135455671697855,
- 0.02522128075361252,
- -0.023260587826371193,
- -0.04526367038488388,
- 0.013608505018055439,
- 0.010301731526851654,
- -0.09833961725234985,
- -0.04038890451192856,
- -0.08653528243303299,
- 0.0037778106052428484,
- -0.030206354334950447,
- -0.030837826430797577,
- 0.022584781050682068,
- 0.00641055591404438,
- 0.026723964139819145,
- 0.038140833377838135,
- -0.019704090431332588,
- -0.018977133557200432,
- -0.012485663406550884,
- 0.04519094526767731,
- -0.018522316589951515,
- -0.009874826297163963,
- -0.010896517895162106,
- 0.03795376792550087,
- 0.01047009602189064,
- -0.049465958029031754,
- 0.06698060780763626,
- -0.011097783222794533,
- -0.03275429829955101,
- 0.0372612439095974,
- 0.05900149419903755,
- 0.0175644401460886,
- -0.04459255933761597,
- 0.036128148436546326,
- -0.01467529684305191,
- -0.010420294478535652,
- 0.02203872799873352,
- 0.03873893991112709,
- -0.056625694036483765,
- -0.016903171315789223,
- 0.023083925247192383,
- 0.058687251061201096,
- 0.05543294921517372,
- 0.06463861465454102,
- -0.026779428124427795,
- 0.02860058657824993,
- -0.01691499724984169,
- 0.01718279719352722,
- -0.03585837781429291,
- -0.03154880926012993,
- 0.01668182574212551,
- 0.07017920166254044,
- 0.06365075707435608,
- 3.478591208562455e-33,
- -0.06184853985905647,
- -0.012177749536931515,
- 0.05302250012755394,
- -0.022137673571705818,
- -0.03330731764435768,
- -0.07994883507490158,
- -0.000473479536594823,
- -0.04976947605609894,
- 0.03361274302005768,
- 0.07831325381994247,
- -0.07496332377195358,
- 0.029511919245123863,
- 0.06390300393104553,
- 0.02756403014063835,
- 0.0592847615480423,
- -0.00507195433601737,
- 0.04006276652216911,
- -0.077933169901371,
- 0.02891606278717518,
- -0.010065481998026371,
- 0.00323447585105896,
- 0.028844498097896576,
- -0.012347015552222729,
- 0.06003272160887718,
- -0.058871079236269,
- 0.04202393814921379,
- -0.04474075883626938,
- 0.0362357571721077,
- 0.023337561637163162,
- -0.03124561347067356,
- -0.02982025407254696,
- -0.025575431063771248,
- -0.06908709555864334,
- 0.03472557291388512,
- -0.06121068075299263,
- -0.006140303798019886,
- 0.042672328650951385,
- 0.03512251004576683,
- -0.09456581622362137,
- -0.05153512954711914,
- 0.11416365206241608,
- -0.07322942465543747,
- 0.09046412259340286,
- 0.04262063279747963,
- 0.03793088719248772,
- -0.04728056490421295,
- 0.01976889744400978,
- -0.02426697127521038,
- 0.08821388334035873,
- 0.043406933546066284,
- -0.044085048139095306,
- 0.007798324339091778,
- 0.0284207034856081,
- 0.07124274969100952,
- -0.0832907035946846,
- -0.02387477457523346,
- 0.004043092019855976,
- -0.042465951293706894,
- -0.06318431347608566,
- 0.016118692234158516,
- 0.03771967813372612,
- 0.09605856984853745,
- 0.016583114862442017,
- 0.12620747089385986,
- -0.07327315211296082,
- 0.007260653655976057,
- -0.03649007901549339,
- -0.08776842802762985,
- 0.041405949741601944,
- -0.05045022815465927,
- 0.004510693717747927,
- 0.005423508584499359,
- -0.06336821615695953,
- -0.02704780548810959,
- -0.009571176022291183,
- 0.024313073605298996,
- -0.047571536153554916,
- 0.0003903016331605613,
- -0.0488753542304039,
- 0.03384217619895935,
- 0.004729679320007563,
- -0.09794186800718307,
- -0.049869354814291,
- 0.10708582401275635,
- -0.009905785322189331,
- -0.05017640069127083,
- 0.03190057724714279,
- -0.05841108411550522,
- 0.0007892462308518589,
- 0.03531063348054886,
- -0.06276597082614899,
- 0.08106063306331635,
- -0.046673331409692764,
- 0.010398470796644688,
- -0.0768660306930542,
- -1.2843642593907134e-8,
- -0.0158276055008173,
- 0.048987794667482376,
- 0.07518206536769867,
- -0.06027955934405327,
- 0.02364964410662651,
- -0.13173197209835052,
- -0.04634571075439453,
- 0.09635964035987854,
- 0.011022779159247875,
- 0.004067363683134317,
- 0.04352680221199989,
- 0.08618473261594772,
- 0.07104528695344925,
- -0.03049614652991295,
- -0.05422469228506088,
- -0.03991130739450455,
- -0.019325949251651764,
- 0.09766951203346252,
- -0.019980959594249725,
- 0.054898928850889206,
- 0.0419766865670681,
- -0.024222729727625847,
- 0.0058132498525083065,
- 0.005422996357083321,
- -0.07798167318105698,
- -0.012369758449494839,
- 0.05613580718636513,
- 0.00010693896183511242,
- 0.03448394685983658,
- 0.036103755235672,
- -0.09069495648145676,
- 0.015317527577280998,
- 0.06212151423096657,
- -0.00522553501650691,
- -0.08050788193941116,
- -0.08219361305236816,
- 0.10986079275608063,
- -0.014192799106240273,
- 0.03200579062104225,
- -0.0983826071023941,
- 0.031678833067417145,
- 0.03320813924074173,
- 0.07718675583600998,
- 0.019426338374614716,
- 0.01028153020888567,
- -0.05321337282657623,
- -0.03518059477210045,
- -0.052861664444208145,
- 0.05655916780233383,
- -0.039680201560258865,
- 0.03171630576252937,
- -0.021477332338690758,
- 0.036400359123945236,
- 0.02818879671394825,
- -0.024101540446281433,
- -0.009719555266201496,
- 0.02228703908622265,
- -0.027661839500069618,
- -0.04754434898495674,
- 0.07460273057222366,
- 0.004971330054104328,
- -0.08139671385288239,
- 0.08771489560604095,
- 0.027593590319156647
- ]
- },
- {
- "keyword": "marketing",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05265318229794502,
- 0.02049315720796585,
- -0.028107384219765663,
- 0.007189467549324036,
- 0.033664118498563766,
- 0.027975765988230705,
- 0.12494084239006042,
- 0.02172848954796791,
- 0.020340122282505035,
- -0.06158383563160896,
- 0.06268792599439621,
- 0.011706494726240635,
- 0.052269890904426575,
- -0.0303032323718071,
- 0.037281520664691925,
- -0.07574290037155151,
- -0.008861157111823559,
- -0.010631202720105648,
- -0.12005815654993057,
- -0.049031686037778854,
- -0.0861404687166214,
- 0.0008417211356572807,
- -0.014667640440165997,
- 0.024301722645759583,
- -0.055657196789979935,
- 0.04414305463433266,
- -0.029991839081048965,
- 0.0355161614716053,
- 0.013997922651469707,
- -0.09440338611602783,
- 0.012715429998934269,
- 0.07104972004890442,
- 0.09603313356637955,
- -0.03808942064642906,
- -0.013449005782604218,
- 0.06158601865172386,
- -0.03661554306745529,
- -0.021371467038989067,
- 0.033461086452007294,
- 0.013103623874485493,
- -0.011115903966128826,
- -0.07349056750535965,
- -0.05871332436800003,
- -0.021069442853331566,
- -0.015549506060779095,
- -0.014347647316753864,
- 0.0519755557179451,
- 0.0402090884745121,
- 0.01700274646282196,
- 0.06900518387556076,
- -0.06469912827014923,
- -0.023206593468785286,
- -0.06972868740558624,
- -0.032004229724407196,
- 0.010965547524392605,
- -0.016232334077358246,
- -0.07943179458379745,
- -0.012077164836227894,
- -0.0003423012385610491,
- -0.0036441583652049303,
- 0.03845405951142311,
- -0.06018664315342903,
- -0.04208125174045563,
- 0.06507505476474762,
- 0.07976126670837402,
- -0.042762625962495804,
- -0.09572405368089676,
- 0.09158290177583694,
- -0.07752762734889984,
- -0.05221052095293999,
- 0.094763845205307,
- -0.044728633016347885,
- -0.017473164945840836,
- 0.02266048453748226,
- 0.04824165254831314,
- -0.03168053179979324,
- 0.06051188334822655,
- 0.02367185615003109,
- 0.06670445948839188,
- -0.012613993138074875,
- 0.04623853787779808,
- -0.02303955890238285,
- -0.07007277756929398,
- 0.07225918769836426,
- 0.0006603157380595803,
- -0.00273709325119853,
- 0.03705930337309837,
- -0.04926762357354164,
- -0.0044853477738797665,
- -0.004952503368258476,
- -0.01983211375772953,
- -0.04138781130313873,
- -0.055208686739206314,
- 0.007205706089735031,
- -0.11301292479038239,
- 0.03233879432082176,
- -0.050199881196022034,
- -0.04384814575314522,
- 0.03897733986377716,
- 0.2473505288362503,
- 0.002278051571920514,
- 0.042893607169389725,
- -0.026692073792219162,
- -0.026667054742574692,
- -0.07356277108192444,
- -0.1007617712020874,
- -0.03093062713742256,
- 0.09986407309770584,
- 0.0072222426533699036,
- 0.05557267740368843,
- -0.1339430958032608,
- 0.016726022586226463,
- -0.02272753044962883,
- 0.0021178806200623512,
- 0.02504950948059559,
- 0.04202331230044365,
- 0.0077551668509840965,
- 0.01872582919895649,
- 0.07344402372837067,
- 0.025084277614951134,
- -0.05892791599035263,
- 0.05429484695196152,
- -0.001572147710248828,
- -0.00746235903352499,
- -0.10495158284902573,
- -0.08088605105876923,
- -0.07534685730934143,
- -3.972452017515407e-33,
- -0.10392117500305176,
- -0.03377358242869377,
- 0.04488677904009819,
- 0.06577321887016296,
- -0.014221006073057652,
- 0.012456601485610008,
- -0.04073471575975418,
- -0.031647056341171265,
- -0.010111354291439056,
- 0.04724777489900589,
- 0.00257651275023818,
- 0.06615594774484634,
- -0.008714132942259312,
- 0.07162225991487503,
- 0.1048920601606369,
- 0.016960302367806435,
- -0.051255963742733,
- 0.05089166387915611,
- 0.015092604793608189,
- -0.015888940542936325,
- -0.022544145584106445,
- 0.028939370065927505,
- 0.021461905911564827,
- 0.029539884999394417,
- -0.017247630283236504,
- -0.03337113931775093,
- -0.006417979020625353,
- -0.004259548615664244,
- 0.039464984089136124,
- 0.027800235897302628,
- -0.012639356777071953,
- 0.038596659898757935,
- -0.01216834969818592,
- -0.05725973844528198,
- -0.04460817575454712,
- 0.00688836770132184,
- -0.028167543932795525,
- -0.1481383591890335,
- 0.05917767807841301,
- 0.027469182386994362,
- -0.08954893797636032,
- -0.0041352203115820885,
- -0.05411528795957565,
- 0.04776843264698982,
- -0.00552543206140399,
- 0.13994063436985016,
- 0.037519875913858414,
- -0.045862827450037,
- -0.031985972076654434,
- 0.021490225568413734,
- 0.006321712397038937,
- 0.01185458805412054,
- 0.04967181012034416,
- 0.008379725739359856,
- 0.029904596507549286,
- -0.03695501387119293,
- -0.03358224406838417,
- -0.10003270208835602,
- -0.059267789125442505,
- -0.01969281956553459,
- 0.015768857672810555,
- 0.042784057557582855,
- -0.020646611228585243,
- -0.012510109692811966,
- -0.0031200058292597532,
- -0.0041371178813278675,
- 0.03019523434340954,
- -0.047325462102890015,
- 0.030582670122385025,
- -0.023355964571237564,
- -0.010364675894379616,
- 0.013342869468033314,
- -0.03499637916684151,
- 0.013374261558055878,
- -0.02434762939810753,
- -0.018146609887480736,
- -0.06833074241876602,
- 0.11533117294311523,
- 0.07982528209686279,
- 0.04025335609912872,
- -0.02303634025156498,
- -0.010345962829887867,
- 0.0101165184751153,
- 0.03755512461066246,
- 0.05879899114370346,
- 0.0188407264649868,
- 0.022811971604824066,
- -0.0711858943104744,
- 0.0037759148981422186,
- 0.039805762469768524,
- -0.058265186846256256,
- 0.05628388002514839,
- -0.04144846275448799,
- 0.07845331728458405,
- -0.02090662159025669,
- 2.509921782689487e-33,
- -0.07984490692615509,
- 0.006491831969469786,
- -0.029470523819327354,
- 0.07280361652374268,
- 0.018801426514983177,
- 0.023492934182286263,
- -0.022906223312020302,
- -0.056532200425863266,
- 0.057347267866134644,
- 0.07953666150569916,
- -0.11020772159099579,
- -0.030062895268201828,
- 0.02227623201906681,
- 0.043778128921985626,
- -0.051238030195236206,
- -0.020497294142842293,
- 0.14428916573524475,
- 0.011997331865131855,
- -0.026999864727258682,
- -0.016624946147203445,
- 0.01936432160437107,
- 0.04361686855554581,
- -0.08112896978855133,
- 0.0016376986168324947,
- -0.04312989115715027,
- 0.03763017803430557,
- -0.07123822718858719,
- 0.025455541908740997,
- 0.006025250069797039,
- 0.010419657453894615,
- 0.028247205540537834,
- -0.03100619651377201,
- -0.03155210241675377,
- 0.035096120089292526,
- -0.03766673803329468,
- 0.10556848347187042,
- 0.011352390982210636,
- 0.051630791276693344,
- -0.015898797661066055,
- 0.03400369733572006,
- 0.02424108423292637,
- -0.06016344949603081,
- 0.03933189436793327,
- 0.03212746977806091,
- -0.04812794178724289,
- -0.006761807017028332,
- 0.058582816272974014,
- -0.046391598880290985,
- 0.053146928548812866,
- 0.013883550651371479,
- -0.07269956171512604,
- 0.04009147733449936,
- 0.01603573188185692,
- -0.04304850846529007,
- -0.06091887131333351,
- 0.05203457921743393,
- -0.01824416220188141,
- 0.010947268456220627,
- -0.0017248207004740834,
- 0.056141939014196396,
- 0.04621225595474243,
- 0.07858606427907944,
- -0.005556880030781031,
- 0.011243712157011032,
- -0.053661759942770004,
- 0.030740683898329735,
- 0.0399768203496933,
- -0.06681573390960693,
- 0.004998389631509781,
- -0.0561586394906044,
- 0.08620721101760864,
- 0.046639397740364075,
- -0.0741807147860527,
- 0.03547573462128639,
- -0.1535108983516693,
- 0.027101457118988037,
- -0.09677480161190033,
- 0.011228392831981182,
- -0.04366040602326393,
- -0.08340297639369965,
- -0.03032386302947998,
- -0.045885127037763596,
- -0.03732764348387718,
- 0.036141958087682724,
- -0.04427183046936989,
- 0.01503689680248499,
- 0.0485931821167469,
- -0.015995699912309647,
- -0.036135945469141006,
- -0.0966053381562233,
- -0.0325985811650753,
- -0.031148841604590416,
- -0.06010378897190094,
- 0.05914362147450447,
- 0.0022350805811583996,
- -1.4027433437036052e-8,
- -0.01996675692498684,
- -0.09552855789661407,
- 0.056386496871709824,
- 0.010900440625846386,
- 0.027626413851976395,
- 0.058314934372901917,
- 0.028828581795096397,
- 0.044224970042705536,
- 0.06185363605618477,
- 0.08815663307905197,
- -0.0392100065946579,
- 0.05013817176222801,
- -0.06358068436384201,
- 0.0899224579334259,
- 0.01801067218184471,
- 0.012131627649068832,
- -0.01827828399837017,
- 0.008379790931940079,
- -0.009303851053118706,
- -0.005851416382938623,
- 0.032937437295913696,
- 0.060852907598018646,
- 0.030031200498342514,
- -0.0010573647450655699,
- 0.04506407678127289,
- -0.0024976010899990797,
- 0.10318170487880707,
- 0.05467084422707558,
- 0.0451752170920372,
- -0.02165253832936287,
- -0.017718756571412086,
- -0.015292813070118427,
- 0.003397756488993764,
- -0.003441247856244445,
- -0.04664691910147667,
- -0.021000511944293976,
- 0.006378393154591322,
- -0.0046501681208610535,
- 0.01274596806615591,
- -0.024120934307575226,
- -0.06415186077356339,
- 0.04623638093471527,
- 0.08403763920068741,
- 0.01610427536070347,
- -0.023701127618551254,
- 0.04154505580663681,
- -0.022691605612635612,
- 0.056571878492832184,
- 0.0017179148271679878,
- 0.01892229914665222,
- -0.024376800283789635,
- 0.04089256748557091,
- 0.047063980251550674,
- -0.017164409160614014,
- -0.026733404025435448,
- -0.08901232481002808,
- -0.030927851796150208,
- -0.006618542596697807,
- -0.022351909428834915,
- 0.08010797947645187,
- 0.06402328610420227,
- 0.005191864911466837,
- 0.06190147623419762,
- 0.0568448044359684
- ]
- },
- {
- "keyword": "advertising",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.06609661132097244,
- 0.01502138003706932,
- -0.0411115325987339,
- 0.024857627227902412,
- 0.05463133752346039,
- 0.014337580651044846,
- 0.10563233494758606,
- 0.0039008131716400385,
- 0.011801488697528839,
- -0.10292632132768631,
- 0.02752411551773548,
- -0.006054183002561331,
- 0.025125356391072273,
- 0.016277752816677094,
- 0.06084344908595085,
- -0.040522441267967224,
- 0.04124097898602486,
- 0.016857368871569633,
- -0.02670021913945675,
- -0.07676183432340622,
- 0.010902756825089455,
- 0.031577158719301224,
- 0.019271716475486755,
- 0.017086414620280266,
- -0.034193795174360275,
- -0.048542484641075134,
- -0.014217784628272057,
- 0.025088367983698845,
- 0.026813136413693428,
- -0.06822286546230316,
- 0.00027439979021437466,
- -0.002023137640208006,
- 0.09261506795883179,
- -0.01620773784816265,
- 0.0018221612554043531,
- 0.0530339851975441,
- -0.06346601992845535,
- -0.06122270226478577,
- 0.010570875369012356,
- 0.025722870603203773,
- 0.02084844931960106,
- -0.08554808795452118,
- -0.06844402849674225,
- -0.07983507215976715,
- 0.014947309158742428,
- -0.03645797446370125,
- 0.07278317958116531,
- 0.11111003905534744,
- 0.038987912237644196,
- 0.05088045075535774,
- -0.0344277024269104,
- -0.020577652379870415,
- -0.04393567889928818,
- -0.027483275160193443,
- 0.007644060533493757,
- -0.0916033387184143,
- -0.03023836947977543,
- -0.0007038589683361351,
- -0.022945227101445198,
- -0.01876276358962059,
- 0.06331103295087814,
- -0.02758956514298916,
- -0.0886811912059784,
- 0.07657141238451004,
- 0.0647098645567894,
- -0.041570667177438736,
- -0.07554447650909424,
- 0.06282244622707367,
- -0.07866337895393372,
- -0.03637313097715378,
- 0.06476907432079315,
- -0.021901868283748627,
- -0.03150414302945137,
- 0.030934972688555717,
- 0.07893936336040497,
- -0.0362367257475853,
- 0.021695250645279884,
- -0.026840172708034515,
- 0.06771745532751083,
- -0.04604737460613251,
- 0.029330791905522346,
- -0.12191253155469894,
- -0.10252618789672852,
- 0.03929856792092323,
- 0.020445533096790314,
- -0.05813611298799515,
- 0.03101792372763157,
- -0.005831126589328051,
- 0.03429306671023369,
- 0.0174430962651968,
- -0.040699928998947144,
- -0.0010300568537786603,
- -0.053764309734106064,
- 0.0030834448989480734,
- -0.08878207206726074,
- -0.018231138586997986,
- 0.002068619942292571,
- -0.0020535001531243324,
- 0.03275836631655693,
- 0.2884082496166229,
- -0.04065479338169098,
- 0.06043698638677597,
- 0.027739303186535835,
- -0.056151699274778366,
- -0.055957332253456116,
- -0.08061450719833374,
- -0.048006974160671234,
- 0.09272358566522598,
- 0.060102205723524094,
- 0.06067686900496483,
- -0.07794108241796494,
- 0.051244836300611496,
- -0.009695521555840969,
- -0.003971353638917208,
- 0.04143323749303818,
- -0.01807459257543087,
- 0.007180492859333754,
- 0.004552737344056368,
- 0.0713309571146965,
- -0.0462750568985939,
- -0.012209988199174404,
- 0.06794324517250061,
- -0.001419469597749412,
- -0.021496020257472992,
- 0.03888954594731331,
- -0.04100356996059418,
- -0.0685872957110405,
- -5.239279708002694e-33,
- -0.004745026119053364,
- 0.02105310745537281,
- 0.07923786342144012,
- 0.07938948273658752,
- 0.0036240192130208015,
- 0.07848893105983734,
- -0.0677054226398468,
- -0.03507467731833458,
- 0.033443521708250046,
- 0.09298653155565262,
- 0.012503224425017834,
- 0.043051764369010925,
- 0.0465913861989975,
- 0.12118472903966904,
- 0.11456920951604843,
- 0.002353874035179615,
- -0.00707079516723752,
- 0.02502467669546604,
- -0.011023391038179398,
- 0.018494240939617157,
- -0.009942584671080112,
- 0.02694685384631157,
- -0.02627582848072052,
- 0.04328841716051102,
- -0.020612303167581558,
- -0.056465230882167816,
- -0.014269702136516571,
- -0.03190445899963379,
- 0.03209085389971733,
- 0.03815467283129692,
- 0.036447662860155106,
- 0.0392640195786953,
- -0.03939493000507355,
- -0.04011349380016327,
- -0.06699685007333755,
- -0.03107776679098606,
- -0.031543392688035965,
- -0.14847640693187714,
- 0.0621415413916111,
- 0.010370011441409588,
- -0.0490727536380291,
- -0.006669143680483103,
- -0.005749540403485298,
- 0.047747381031513214,
- 0.0019465421792119741,
- 0.13967326283454895,
- 0.03688034415245056,
- 0.0006497870781458914,
- -0.045990847051143646,
- 0.09896937012672424,
- 0.04374755546450615,
- -0.0037210285663604736,
- -0.04911709576845169,
- 0.0031422208994627,
- -0.012938589788973331,
- -0.01170947402715683,
- -0.03200826793909073,
- -0.07852449268102646,
- -0.04609358683228493,
- -0.06267087161540985,
- 0.03761019557714462,
- 0.045352909713983536,
- 0.005427957512438297,
- 0.015007495880126953,
- -0.059790611267089844,
- -0.0002991554792970419,
- 0.06968545913696289,
- -0.07863278687000275,
- 0.06483849138021469,
- -0.046641454100608826,
- -0.009440827183425426,
- 0.0264432430267334,
- -0.005506536923348904,
- -0.002054542303085327,
- -0.05514626204967499,
- 0.0024354017805308104,
- -0.008118498139083385,
- 0.020913930609822273,
- 0.037502896040678024,
- 0.05487225577235222,
- 0.01895826682448387,
- -0.03989437595009804,
- 0.046847034245729446,
- 0.015690097585320473,
- 0.044334426522254944,
- 0.011882483959197998,
- -0.023387234658002853,
- -0.062232956290245056,
- 0.004352559335529804,
- 0.02295912615954876,
- -0.05665509030222893,
- 0.061571333557367325,
- -0.07531910389661789,
- 0.09888313710689545,
- -0.03626422584056854,
- 3.642890788660855e-33,
- -0.12018198519945145,
- 0.022534547373652458,
- 0.029281074181199074,
- 0.020987963303923607,
- -0.03300577774643898,
- 0.013483569957315922,
- 0.0011142244329676032,
- -0.01467705238610506,
- 0.07082179188728333,
- 0.0509474016726017,
- -0.1238732561469078,
- -0.07411564886569977,
- 0.04234393686056137,
- 0.05842012166976929,
- -0.06712442636489868,
- 0.01671227067708969,
- 0.09694283455610275,
- 0.03748194873332977,
- -0.02432437241077423,
- -0.008017503656446934,
- -0.005359383765608072,
- 0.07977491617202759,
- -0.02101418934762478,
- 0.02695222571492195,
- -0.002504899865016341,
- 0.015287196263670921,
- 0.010593254119157791,
- 0.08234108984470367,
- 0.002674682764336467,
- 0.0052999043837189674,
- 0.024964116513729095,
- -0.08151562511920929,
- -0.003985265735536814,
- 0.00263973162509501,
- -0.020877284929156303,
- 0.12253331393003464,
- 0.08341901004314423,
- 0.02313612960278988,
- -0.03392573446035385,
- 0.04684458300471306,
- 0.024708088487386703,
- -0.05069159343838692,
- 0.01332674641162157,
- 0.05770261958241463,
- -0.039699915796518326,
- -0.0638033002614975,
- 0.009079121984541416,
- -0.0233293529599905,
- 0.04092707484960556,
- 0.02295440249145031,
- -0.06414887309074402,
- 0.02534971758723259,
- -0.01705704629421234,
- -0.046307824552059174,
- -0.08857693523168564,
- 0.02475985698401928,
- -0.06290345638990402,
- -0.023113854229450226,
- -0.009287595748901367,
- 0.05584283918142319,
- 0.031603213399648666,
- 0.07701107114553452,
- -0.011373346671462059,
- -0.023055244237184525,
- -0.035241179168224335,
- -0.05809275060892105,
- 0.09151604026556015,
- -0.039180539548397064,
- 0.007315684575587511,
- -0.029617859050631523,
- 0.06849130988121033,
- 0.04540096968412399,
- -0.07180413603782654,
- -0.02048693783581257,
- -0.14518769085407257,
- 0.04698726534843445,
- -0.020808733999729156,
- 0.04021281376481056,
- 0.016533024609088898,
- -0.08333596587181091,
- -0.06411933898925781,
- 0.006292363163083792,
- 0.008510608226060867,
- 0.006957198027521372,
- -0.03859401494264603,
- -0.03346354141831398,
- 0.05740177258849144,
- -0.05839945375919342,
- -0.05931472405791283,
- -0.05557918921113014,
- -0.00031980397761799395,
- 0.008230372332036495,
- -0.016131224110722542,
- 0.04725551977753639,
- -0.025581972673535347,
- -1.249398273728275e-8,
- -0.03583061322569847,
- -0.032959796488285065,
- 0.07245735079050064,
- -0.01018412783741951,
- 0.022776437923312187,
- 0.013928505592048168,
- 0.03805923834443092,
- 0.01932072639465332,
- 0.02074873447418213,
- -0.03716663271188736,
- -0.009637114591896534,
- 0.06110255792737007,
- -0.07682187110185623,
- 0.06714422255754471,
- 0.039515525102615356,
- -0.04498184472322464,
- -0.037084322422742844,
- -0.025054769590497017,
- -0.054166216403245926,
- -0.011378132738173008,
- 0.016226375475525856,
- 0.0372195728123188,
- 0.023913878947496414,
- -0.019640743732452393,
- 0.014258748851716518,
- -0.03477426618337631,
- 0.10583241283893585,
- 0.030992669984698296,
- 0.04659964144229889,
- 0.020818350836634636,
- -0.0815269947052002,
- 0.05425101891160011,
- -0.04097088798880577,
- -0.01368540059775114,
- 0.0038349302485585213,
- -0.040940165519714355,
- -0.016690343618392944,
- -0.040531255304813385,
- 0.004200131166726351,
- -0.014131528325378895,
- -0.05327749624848366,
- -0.024559199810028076,
- 0.09107277542352676,
- -0.0056075709871947765,
- 0.05854012072086334,
- 0.02181137539446354,
- 0.0035545711871236563,
- 0.005648578051477671,
- 0.027182701975107193,
- -0.06632937490940094,
- -0.04458257555961609,
- 0.018000038340687752,
- 0.0309081319719553,
- -0.034351930022239685,
- -0.004862974397838116,
- -0.05819140374660492,
- -0.029984723776578903,
- 0.0003828188928309828,
- -0.001152210752479732,
- 0.11688805371522903,
- 0.01844152808189392,
- -0.020437108352780342,
- 0.014181796461343765,
- 0.023457979783415794
- ]
- },
- {
- "keyword": "promotion",
- "type": "service",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.09585489332675934,
- 0.019941285252571106,
- -0.015165830962359905,
- -0.05741354078054428,
- 0.04046150669455528,
- 0.06776020675897598,
- 0.08915109932422638,
- -0.00782317016273737,
- -0.037366803735494614,
- 0.030362755060195923,
- 0.09758128970861435,
- -0.05482904613018036,
- 0.05285658314824104,
- 0.037438467144966125,
- 0.013453853316605091,
- -0.0036021859850734472,
- -0.026501933112740517,
- 0.08121020346879959,
- -0.09770049154758453,
- -0.08000332117080688,
- -0.06944087147712708,
- -0.05014541372656822,
- 0.03602394461631775,
- 0.044152069836854935,
- 0.015312222763895988,
- -0.024226421490311623,
- -0.011583726853132248,
- 0.06803718209266663,
- 0.006249925121665001,
- -0.1025688573718071,
- -0.010915812104940414,
- -0.057176049798727036,
- 0.09272996336221695,
- -0.0322163850069046,
- -0.023259107023477554,
- 0.039915215224027634,
- -0.017635144293308258,
- -0.05440140515565872,
- -0.03882405534386635,
- 0.04129703342914581,
- 0.021808546036481857,
- -0.08657371252775192,
- -0.07075093686580658,
- -0.010316974483430386,
- 0.039676375687122345,
- 0.013394434936344624,
- 0.042809952050447464,
- 0.043982721865177155,
- -0.03565597161650658,
- -0.01402745209634304,
- 0.05547645688056946,
- -0.04809243604540825,
- -0.030332617461681366,
- 0.0004610566538758576,
- 0.032408457249403,
- -0.00094741175416857,
- -0.015745334327220917,
- -0.01742514595389366,
- 0.044292569160461426,
- -0.09908188879489899,
- -0.003807279746979475,
- -0.04489383473992348,
- -0.05006033927202225,
- 0.010719837620854378,
- -0.03354768827557564,
- -0.07756613940000534,
- -0.04561089351773262,
- 0.07852443307638168,
- -0.07958273589611053,
- 0.0204333309084177,
- 0.07450021058320999,
- -0.07998973876237869,
- 0.05895043909549713,
- 0.029484137892723083,
- 0.024595897644758224,
- 0.010562977753579617,
- 0.06519283354282379,
- 0.036914318799972534,
- 0.045527078211307526,
- 0.016980430111289024,
- 0.047523465007543564,
- -0.08284198492765427,
- -0.03988931328058243,
- 0.028310976922512054,
- -0.0524246022105217,
- -0.028355319052934647,
- 0.0391513928771019,
- -0.029619606211781502,
- -0.034871071577072144,
- 0.04350452870130539,
- 0.004293231293559074,
- -0.005276480223983526,
- 0.0614534430205822,
- -0.007910155691206455,
- -0.15614724159240723,
- -0.006899379659444094,
- -0.03875994682312012,
- -0.03728301450610161,
- -0.0030326563864946365,
- 0.29915881156921387,
- 0.016888439655303955,
- 0.04517889395356178,
- -0.051401421427726746,
- -0.01503656804561615,
- -0.03564467653632164,
- -0.05005073919892311,
- -0.009772532619535923,
- 0.09599033743143082,
- 0.006927747279405594,
- -0.010734692215919495,
- -0.06340238451957703,
- 0.03397311642765999,
- -0.07806552201509476,
- -0.0028159464709460735,
- 0.00150137091986835,
- 0.1370174139738083,
- -0.05738077312707901,
- 0.033486589789390564,
- 0.03548525646328926,
- -0.04928695037961006,
- 0.04567323252558708,
- 0.053438205271959305,
- 0.007539683952927589,
- 0.009522916749119759,
- -0.09686625003814697,
- -0.03388435021042824,
- -0.046018656343221664,
- -5.4556878506470923e-33,
- -0.019740765914320946,
- 0.007052786182612181,
- 0.007187718525528908,
- 0.014797057956457138,
- 0.047733698040246964,
- 0.013279402628540993,
- -0.05589503422379494,
- -0.014898472465574741,
- -0.053178638219833374,
- 0.03627939149737358,
- -0.06411855667829514,
- 0.061437904834747314,
- 0.019085178151726723,
- 0.007857688702642918,
- 0.05064898356795311,
- -0.033602844923734665,
- -0.004877246450632811,
- 0.04609024152159691,
- 0.0063970559276640415,
- -0.015137181617319584,
- -0.017999017611145973,
- 0.06461174041032791,
- -0.015777578577399254,
- 0.05385322496294975,
- 0.01778598316013813,
- -0.039208825677633286,
- -0.018119243904948235,
- -0.08258979022502899,
- 0.05305669829249382,
- 0.022903254255652428,
- 0.01607701927423477,
- 0.02367466688156128,
- 0.03617646545171738,
- -0.05883783847093582,
- -0.022317420691251755,
- 0.02320144884288311,
- -0.036837365478277206,
- -0.15373079478740692,
- 0.04760284721851349,
- -0.034755878150463104,
- -0.05499100312590599,
- -0.04336296766996384,
- -0.03853798285126686,
- -0.02030671201646328,
- -0.007268564775586128,
- 0.08324635773897171,
- 0.05824499949812889,
- -0.08193537592887878,
- -0.044164177030324936,
- 0.0651533305644989,
- 0.04401090741157532,
- -0.014596820808947086,
- 0.04096623510122299,
- -0.006682282313704491,
- -0.0062211984768509865,
- -0.05941354110836983,
- -0.012557866051793098,
- -0.005828237161040306,
- 0.003773450618609786,
- -0.07705498486757278,
- 0.028947632759809494,
- 0.0035523248370736837,
- -0.07283119112253189,
- 0.07098153978586197,
- -0.09770707041025162,
- -0.06703493744134903,
- 0.01709786243736744,
- -0.04255529120564461,
- 0.02808944135904312,
- -0.012261781841516495,
- 0.006186202168464661,
- 0.02938583493232727,
- -0.08342890441417694,
- -0.037450287491083145,
- -0.0126841701567173,
- -0.02564430423080921,
- -0.04651695117354393,
- 0.0710766464471817,
- 0.03931587561964989,
- -0.01696818694472313,
- -0.04187966510653496,
- -0.06318800151348114,
- 0.004687262699007988,
- -0.05613665655255318,
- 0.08307230472564697,
- 0.039950691163539886,
- 0.011577107943594456,
- -0.04342471435666084,
- 0.051827866584062576,
- 0.07663225382566452,
- -0.054237619042396545,
- 0.05414915829896927,
- 0.0005953689687885344,
- 0.12401264160871506,
- 0.07636119425296783,
- 4.219069630291969e-33,
- 0.02838161401450634,
- 0.061221081763505936,
- -0.03340798616409302,
- -0.0005506310262717307,
- 0.03101234696805477,
- 0.06156269088387489,
- -0.03828909993171692,
- -0.013346071355044842,
- -0.05510992929339409,
- 0.05351715534925461,
- -0.06308023631572723,
- 0.052052970975637436,
- 0.031011497601866722,
- 0.044956594705581665,
- -0.016074761748313904,
- -0.05397757515311241,
- 0.06409604847431183,
- 0.030055668205022812,
- -0.01787400059401989,
- -0.009047869592905045,
- -0.047578129917383194,
- 0.0405895933508873,
- -0.032698486000299454,
- -0.028414633125066757,
- -0.004656422883272171,
- 0.03047839179635048,
- 0.051121506839990616,
- 0.09093622118234634,
- -0.0065752845257520676,
- 0.06281020492315292,
- 0.04123528301715851,
- -0.04309956729412079,
- -0.10898140072822571,
- -0.0039023770950734615,
- -0.012284526601433754,
- 0.08034775406122208,
- 0.018976664170622826,
- -0.0026841233484447002,
- -0.017334338277578354,
- 0.054061759263277054,
- -0.02723548375070095,
- -0.0456831268966198,
- 0.07918156683444977,
- 0.04157489910721779,
- -0.01963791809976101,
- 0.012865775264799595,
- 0.011655584909021854,
- -0.06242165341973305,
- 0.025532368570566177,
- 0.03565933555364609,
- -0.16169220209121704,
- -0.017401471734046936,
- 0.055717259645462036,
- 0.03662243112921715,
- -0.0168325062841177,
- 0.02620510384440422,
- -0.018121160566806793,
- 0.024503976106643677,
- -0.04893234744668007,
- 0.027594218030571938,
- 0.047560516744852066,
- 0.05490938201546669,
- 0.008850142359733582,
- -0.0017129090847447515,
- 0.008572038263082504,
- -0.02685544826090336,
- 0.05075838789343834,
- 0.011816701851785183,
- 0.014577825553715229,
- 0.0003280055825598538,
- -0.002800031565129757,
- 0.054270509630441666,
- -0.08824458718299866,
- 0.004248825367540121,
- -0.13433194160461426,
- -0.036006778478622437,
- -0.0394783653318882,
- 0.06293763220310211,
- 0.005903853103518486,
- -0.05642126128077507,
- -0.048874616622924805,
- 0.00039592909161001444,
- 0.03943737968802452,
- -0.025259504094719887,
- -0.07259140908718109,
- -0.02129436656832695,
- 0.1294938027858734,
- 0.04106678068637848,
- 0.03246382623910904,
- -0.06789664924144745,
- 0.03118923120200634,
- -0.035814691334962845,
- 0.007580742239952087,
- 0.008365566842257977,
- -0.00873162318021059,
- -1.2664012949414882e-8,
- -0.034853436052799225,
- 0.023112842813134193,
- -0.03224742040038109,
- 0.04343308135867119,
- 0.0750596672296524,
- 0.012255745008587837,
- -0.08034731447696686,
- -0.022513991221785545,
- 0.06639190763235092,
- -0.014014649204909801,
- -0.0016601389506831765,
- -0.027166815474629402,
- 0.009362021461129189,
- 0.016680331900715828,
- 0.11855806410312653,
- -0.008045325987040997,
- -0.024547524750232697,
- 0.06999701261520386,
- -0.020796118304133415,
- -0.025926880538463593,
- 0.0002722117060329765,
- 0.07252548635005951,
- 0.061280153691768646,
- 0.009446953423321247,
- -0.04039202257990837,
- 0.02104419283568859,
- 0.04241473972797394,
- 0.10129658877849579,
- 0.025891561061143875,
- 0.021557511761784554,
- -0.011181853711605072,
- 0.06153794005513191,
- -0.021999739110469818,
- -0.0339776873588562,
- 0.010837754234671593,
- 0.008556505665183067,
- -0.03572650998830795,
- -0.00743075693026185,
- -0.01833372190594673,
- 0.037972524762153625,
- -0.04145229235291481,
- -0.009812207892537117,
- 0.07177270948886871,
- 0.009764500893652439,
- -0.05105740576982498,
- 0.06517558544874191,
- -0.029250310733914375,
- -0.03894496709108353,
- 0.012436281889677048,
- -0.06209187209606171,
- 0.025433668866753578,
- -0.03141560032963753,
- 0.02979690581560135,
- 0.04777933284640312,
- -0.02135259099304676,
- 0.000489596335683018,
- -0.019027847796678543,
- 0.03648725524544716,
- -0.0683375671505928,
- 0.05180415138602257,
- 0.0881662666797638,
- -0.06593066453933716,
- 0.038587283343076706,
- 0.03800257295370102
- ]
- },
- {
- "keyword": "user",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.05015319585800171,
- 0.044333573430776596,
- -0.010441009886562824,
- -0.006096890661865473,
- -0.07753082364797592,
- -0.07708019018173218,
- 0.1450650840997696,
- 0.07258640974760056,
- -0.0017142149154096842,
- -0.014243175275623798,
- -0.016505172476172447,
- -0.04277314990758896,
- 0.012714962475001812,
- -0.029403476044535637,
- -0.015767205506563187,
- -0.006228799931704998,
- -0.0156862735748291,
- -0.008716288022696972,
- -0.04446662962436676,
- 0.0028432293329387903,
- -0.03076513297855854,
- 0.0002850998716894537,
- 0.00646776519715786,
- 0.010316884145140648,
- 0.02992980182170868,
- -0.038861311972141266,
- -0.010429389774799347,
- 0.06422750651836395,
- 0.04939776659011841,
- -0.002911921124905348,
- -0.015876740217208862,
- -0.01222661416977644,
- 0.0755743458867073,
- 0.02798207476735115,
- -0.0201222263276577,
- -0.0036922243889421225,
- -0.006520413793623447,
- 0.020972304046154022,
- -0.021645741537213326,
- -0.02863547019660473,
- -0.009840961545705795,
- -0.07605119049549103,
- -0.05567004159092903,
- 0.018601318821310997,
- -0.02153106965124607,
- 0.034286655485630035,
- 0.03261745348572731,
- -0.013195442035794258,
- 0.08276314288377762,
- 0.08122247457504272,
- 0.021664705127477646,
- 0.03637062385678291,
- -0.000398101779865101,
- -0.021775219589471817,
- -0.013192237354815006,
- -0.01934123784303665,
- 0.006546302232891321,
- 0.07243253290653229,
- 0.0032574478536844254,
- -0.05038582161068916,
- 0.039876990020275116,
- -0.00019416201394051313,
- -0.11938320100307465,
- 0.03592148423194885,
- 0.04844504967331886,
- -0.00016907119425013661,
- -0.04566579684615135,
- -0.030101967975497246,
- 0.0008100551785901189,
- -0.03364437445998192,
- -0.0278621818870306,
- 0.03698074072599411,
- -0.006147931795567274,
- 0.0018855180824175477,
- 0.04770159348845482,
- -0.04967803508043289,
- 0.03920254111289978,
- -0.029018821194767952,
- 0.06250430643558502,
- 0.06668383628129959,
- 0.005416498053818941,
- 0.05099910497665405,
- -0.018181655555963516,
- -0.03309040144085884,
- 0.0071992650628089905,
- 0.06220497936010361,
- 0.028306664898991585,
- -0.0030064000748097897,
- -0.023912951350212097,
- -0.008884718641638756,
- 0.11691050231456757,
- 0.07996610552072525,
- 0.15690293908119202,
- -0.052210886031389236,
- -0.09153258055448532,
- 0.010490942746400833,
- -0.01299209799617529,
- 0.01171203888952732,
- -0.11979818344116211,
- 0.27543050050735474,
- -0.007402506656944752,
- -0.013249405659735203,
- 0.002899731043726206,
- -0.06166340783238411,
- 0.07219444215297699,
- 0.039702825248241425,
- -0.06896934658288956,
- 0.05012645199894905,
- -0.06553315371274948,
- -0.03437797725200653,
- -0.03980670124292374,
- -0.05050418898463249,
- -0.0031328131444752216,
- 0.027845561504364014,
- 0.06815538555383682,
- -0.01576348766684532,
- -0.0652129128575325,
- -0.023364843800663948,
- -0.002105443039909005,
- -0.01167383138090372,
- -0.03284374997019768,
- -0.020115826278924942,
- 0.010460375808179379,
- 0.05113356187939644,
- -0.05058196187019348,
- -0.10914674401283264,
- 0.034742262214422226,
- -3.797570784207698e-33,
- 0.02118661254644394,
- -0.03784614056348801,
- 0.007634657900780439,
- 0.03937278315424919,
- -0.058405179530382156,
- 0.04417542740702629,
- 0.026322441175580025,
- -0.04927248880267143,
- -0.06960165500640869,
- 0.01542370393872261,
- 0.013364843092858791,
- 0.0498613603413105,
- -0.0277386661618948,
- -0.015408318489789963,
- 0.08955452591180801,
- -0.001983390189707279,
- 0.06796339154243469,
- -0.05317223444581032,
- -0.04030914232134819,
- 0.0259737279266119,
- -0.01998322457075119,
- -0.016091492027044296,
- 0.014477357268333435,
- 0.14337970316410065,
- -0.03696931153535843,
- -0.04860226809978485,
- 0.007281717378646135,
- 0.034822799265384674,
- 0.06660676747560501,
- 0.044313330203294754,
- 0.009205317124724388,
- -0.008037245832383633,
- -0.031051648780703545,
- 0.019759435206651688,
- -0.07024488598108292,
- -0.0453837588429451,
- 0.030753517523407936,
- -0.031699903309345245,
- -0.007395769003778696,
- 0.005043641664087772,
- -0.015685750171542168,
- 0.012370375916361809,
- 0.012789051048457623,
- 0.01520089153200388,
- -0.06965021789073944,
- -0.012026604264974594,
- 0.11468353122472763,
- 0.06604766845703125,
- -0.06185154989361763,
- 0.06279060989618301,
- 0.028423171490430832,
- 0.03738444671034813,
- -0.07508128136396408,
- -0.004481993615627289,
- 0.009029961191117764,
- -0.01867803931236267,
- 0.02182915434241295,
- -0.04086768999695778,
- -0.03673708811402321,
- -0.07150974869728088,
- 0.053018949925899506,
- 0.1318138986825943,
- -0.021710162982344627,
- -0.0124351866543293,
- -0.04491134360432625,
- -0.10064041614532471,
- 0.017112690955400467,
- -0.06788534671068192,
- -0.015386928804218769,
- -0.0034294496290385723,
- -0.06679724901914597,
- 0.017997058108448982,
- 0.10053969919681549,
- -0.002441736636683345,
- -0.00821746326982975,
- -0.03807971626520157,
- -0.02162599377334118,
- 0.08745721727609634,
- -0.06543165445327759,
- 0.04473864659667015,
- -0.0023829962592571974,
- -0.03605986014008522,
- -0.051146335899829865,
- 0.0022752140648663044,
- -0.0420086607336998,
- 0.05151094123721123,
- -0.07606980204582214,
- -0.08106082677841187,
- 0.023891925811767578,
- 0.0038148665335029364,
- -0.025492027401924133,
- 0.009283451363444328,
- 0.06912577897310257,
- 0.127142995595932,
- -0.026886437088251114,
- 1.977104356266315e-33,
- -0.08393079787492752,
- 0.028161602094769478,
- -0.03627404570579529,
- -0.04304151609539986,
- 0.06943029165267944,
- -0.012707327492535114,
- 0.03808867186307907,
- 0.007662885822355747,
- -0.06828150153160095,
- 0.012332559563219547,
- -0.04756567254662514,
- 0.004117946606129408,
- 0.0762128233909607,
- 0.02948188968002796,
- 0.02917453832924366,
- 0.03964407369494438,
- 0.030672410503029823,
- -0.056399933993816376,
- -0.041997041553258896,
- -0.013058026321232319,
- -0.08504512906074524,
- -0.0005241076578386128,
- -0.06673900783061981,
- -0.040589217096567154,
- -0.04844847321510315,
- 0.0170502457767725,
- 0.1301288902759552,
- 0.00840816367417574,
- -0.02063070237636566,
- -0.027161123231053352,
- 0.10562349110841751,
- -0.036965999752283096,
- -0.0960775762796402,
- -0.06543582677841187,
- -0.07464568316936493,
- 0.10883308947086334,
- -0.009997222572565079,
- 0.08765380084514618,
- 0.012987051159143448,
- -0.01651257835328579,
- 0.07121216505765915,
- 0.07931780070066452,
- 0.04320386052131653,
- 0.07757958024740219,
- -0.07204009592533112,
- 0.0783931240439415,
- -0.01785549335181713,
- -0.028611933812499046,
- 0.014627249911427498,
- 0.06117524579167366,
- -0.054065149277448654,
- -0.006550663150846958,
- 0.07081644237041473,
- -0.042787689715623856,
- -0.0019556041806936264,
- -0.04602736607193947,
- 0.022436263039708138,
- -0.08939388394355774,
- 0.07511328160762787,
- -0.0013293931260704994,
- -0.09637406468391418,
- 0.007273722440004349,
- -0.012447290122509003,
- 0.08112035691738129,
- -0.03371254354715347,
- 0.01263490505516529,
- -0.04326585680246353,
- 0.007368726190179586,
- -0.004077230580151081,
- -0.02413833513855934,
- 0.09009045362472534,
- -0.05195827782154083,
- -0.05236324295401573,
- -0.014899041503667831,
- -0.0244623851031065,
- -0.051076069474220276,
- -0.11791063845157623,
- 0.021910909563302994,
- 0.019955860450863838,
- -0.016264919191598892,
- 0.011709465645253658,
- 0.021837672218680382,
- -0.022153817117214203,
- 0.017881017178297043,
- -0.04905649647116661,
- -0.08644580841064453,
- 0.01333532016724348,
- 0.04179918020963669,
- -0.009882209822535515,
- 0.04671787470579147,
- 0.013013812713325024,
- -0.002103680744767189,
- -0.07639885693788528,
- -0.05446043238043785,
- 0.009601154364645481,
- -1.2649659097974109e-8,
- -0.033612530678510666,
- 0.07003631442785263,
- 0.06466653943061829,
- 0.06518851220607758,
- 0.053589705377817154,
- 0.03974345698952675,
- 0.011711441911756992,
- -0.02042156085371971,
- 0.00888226181268692,
- 0.06147703528404236,
- -0.014498937875032425,
- 0.025462090969085693,
- 0.013914644718170166,
- 0.01991025172173977,
- 0.07562147080898285,
- -0.07981552928686142,
- -0.027376677840948105,
- 0.05111290514469147,
- -0.06852992624044418,
- -0.012303007766604424,
- 0.026378262788057327,
- 0.03091702051460743,
- 0.005424936302006245,
- -0.03327280282974243,
- 0.01665234938263893,
- 0.04923274740576744,
- 0.0017291656695306301,
- 0.10075651109218597,
- -0.046503063291311264,
- -0.04882814362645149,
- 0.00044796866131946445,
- 0.10620398819446564,
- -0.032696597278118134,
- -0.0591745562851429,
- -0.03834924474358559,
- 0.022331563755869865,
- -0.05348217859864235,
- 0.01693992130458355,
- 0.006390340160578489,
- 0.011213007383048534,
- -0.020374692976474762,
- -0.049497272819280624,
- 0.04893285408616066,
- 0.022044604644179344,
- -0.026398060843348503,
- -0.01772264949977398,
- 0.0628204271197319,
- -0.0551149882376194,
- -0.010496820323169231,
- 0.017513606697320938,
- -0.03772991523146629,
- -0.024983346462249756,
- 0.03772062063217163,
- 0.04908822104334831,
- 0.006320758257061243,
- -0.031083831563591957,
- 0.039434801787137985,
- 0.06253217160701752,
- -0.08669617027044296,
- -0.01986277662217617,
- 0.0865420401096344,
- 0.05700327083468437,
- -0.025176752358675003,
- 0.04267461225390434
- ]
- },
- {
- "keyword": "account",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06020632013678551,
- 0.02715342864394188,
- -0.027005234733223915,
- 0.004173746332526207,
- -0.05350087955594063,
- -0.01331032533198595,
- 0.139695405960083,
- 0.010263503529131413,
- 0.0755300298333168,
- 0.010683209635317326,
- 0.012226761318743229,
- -0.13332533836364746,
- 0.03171190619468689,
- -0.030170025303959846,
- -0.02336241863667965,
- -0.002318472834303975,
- -0.04915408417582512,
- 0.006592357996851206,
- -0.05331933870911598,
- -0.033456720411777496,
- -0.03893625736236572,
- -0.05886419117450714,
- -0.006355093792080879,
- 0.02824072167277336,
- 0.015212290920317173,
- 0.014192412607371807,
- -0.05889606475830078,
- 0.06463562697172165,
- -0.026062408462166786,
- -0.09298533201217651,
- 0.055759742856025696,
- -0.037185005843639374,
- 0.0129776019603014,
- -0.04566435143351555,
- -0.022758426144719124,
- -0.011790242977440357,
- -0.03528821840882301,
- 0.03744662180542946,
- 0.004820194561034441,
- -0.07431339472532272,
- -0.05999578535556793,
- -0.07670960575342178,
- -0.047218795865774155,
- -0.0037237100768834352,
- 0.008725111372768879,
- 0.06792294979095459,
- 0.0093755554407835,
- 0.06990834325551987,
- 0.021623708307743073,
- 0.04932745173573494,
- 0.014262691140174866,
- -0.03568723425269127,
- 0.0137538593262434,
- -0.0015610913978889585,
- -0.016243228688836098,
- 0.04801730066537857,
- 0.0157138891518116,
- 0.03905704244971275,
- -0.014355471357703209,
- -0.04231337457895279,
- 0.030442096292972565,
- -0.02483319118618965,
- -0.05035429820418358,
- 0.06461441516876221,
- -0.0014224209589883685,
- 0.001674861996434629,
- -0.05496342107653618,
- 0.06305361539125443,
- 0.0006480035372078419,
- -0.03196878731250763,
- -0.06629491597414017,
- 0.003390758763998747,
- -0.09950469434261322,
- -0.02494748868048191,
- 0.05657526105642319,
- 0.0015263715758919716,
- 0.043321579694747925,
- -0.03453616797924042,
- 0.0839201807975769,
- 0.08189006894826889,
- 0.03276510164141655,
- 0.052862562239170074,
- -0.03452959284186363,
- 0.0314791165292263,
- 0.013979578390717506,
- -0.0023242358583956957,
- -0.0025945131201297045,
- 0.019811250269412994,
- -0.10166147351264954,
- 0.01542381290346384,
- 0.03321997821331024,
- 0.06119117885828018,
- 0.13156184554100037,
- -0.03936341032385826,
- -0.03148321807384491,
- -0.008335743099451065,
- 0.0010345944901928306,
- 0.010195331647992134,
- -0.061742205172777176,
- 0.23715628683567047,
- 0.03673025593161583,
- 0.03611093759536743,
- 0.009399420581758022,
- 0.0500001460313797,
- 0.048620495945215225,
- 0.002796081593260169,
- 0.020147740840911865,
- 0.036757323890924454,
- 0.029399704188108444,
- -0.04024232178926468,
- -0.07023494690656662,
- 0.015582227148115635,
- -0.02931404300034046,
- 0.04931690916419029,
- 0.055340152233839035,
- 0.00927931722253561,
- -0.009286497719585896,
- 0.04060029610991478,
- 0.015519154258072376,
- -0.022128399461507797,
- 0.02053544670343399,
- 0.02883552759885788,
- -0.021879425272345543,
- -0.02350040338933468,
- -0.0423600897192955,
- -0.038621772080659866,
- -0.013663512654602528,
- -4.065814921645498e-33,
- -0.01477054227143526,
- 0.004468970000743866,
- -0.004491876810789108,
- 0.019181672483682632,
- -0.024981467053294182,
- 0.034049127250909805,
- -0.017666678875684738,
- -0.014326456934213638,
- -0.08909693360328674,
- 0.09126833826303482,
- 0.003186900867149234,
- 0.040190428495407104,
- -0.0230330191552639,
- 0.019211571663618088,
- 0.07414539158344269,
- 0.022188358008861542,
- 0.026251181960105896,
- 0.04799020662903786,
- 0.0505216121673584,
- 0.0032095869537442923,
- -0.06252183765172958,
- 0.004840339068323374,
- 0.035056255757808685,
- 0.1080811619758606,
- 0.027075955644249916,
- -0.03615918010473251,
- -0.008412926457822323,
- -0.012292059138417244,
- -0.006434078793972731,
- -0.005783100612461567,
- -0.0437806211411953,
- -0.04826996847987175,
- -0.003861102508381009,
- -0.003540595294907689,
- 0.009317528456449509,
- -0.05374138429760933,
- 0.04897131025791168,
- -0.08834653347730637,
- 0.01994955725967884,
- -0.0066392128355801105,
- 0.02074773982167244,
- 0.04237144812941551,
- -0.014277300797402859,
- -0.005953179206699133,
- -0.09105128049850464,
- 0.04718833416700363,
- 0.11432048678398132,
- 0.054223332554101944,
- 0.03710160776972771,
- 0.11218610405921936,
- 0.010127559304237366,
- 0.004090968053787947,
- -0.13883379101753235,
- -0.02870481088757515,
- -0.01514589972794056,
- -0.0012972834520041943,
- -0.010190481320023537,
- -0.047858335077762604,
- -0.04946335032582283,
- -0.07201340794563293,
- 0.09103301912546158,
- 0.014706935733556747,
- -0.0314713679254055,
- 0.009222717024385929,
- -0.04324383661150932,
- -0.06594759225845337,
- 0.047520268708467484,
- -0.052589546889066696,
- -0.014051644131541252,
- 0.025180649012327194,
- -0.052918676286935806,
- -0.0010528960265219212,
- 0.006469501182436943,
- 0.019045718014240265,
- -0.03955114632844925,
- -0.022237850353121758,
- 0.010327386669814587,
- 0.06397949904203415,
- -0.06397900730371475,
- 0.09374518692493439,
- -0.022423136979341507,
- -0.011982030235230923,
- -0.07003693282604218,
- 0.058857351541519165,
- -0.016701137647032738,
- 0.0647602528333664,
- 0.02147100865840912,
- -0.07163757085800171,
- 0.005330235697329044,
- -0.022109495475888252,
- -0.05763982981443405,
- -0.03654736280441284,
- 0.11253471672534943,
- 0.0949927568435669,
- -0.0018642105860635638,
- 3.0475568992411074e-33,
- -0.08779897540807724,
- -0.09071074426174164,
- -0.027336515486240387,
- 0.0049156188033521175,
- 0.043940670788288116,
- 0.0018532226094976068,
- 0.0954427644610405,
- 0.0018610908882692456,
- 0.0035961673129349947,
- 0.04290551319718361,
- -0.06182410567998886,
- 0.027051780372858047,
- 0.06285110861063004,
- 0.013366186991333961,
- 0.10429113358259201,
- -0.014956002123653889,
- 0.06660062074661255,
- -0.004088616464287043,
- -0.05016718804836273,
- -0.05871739238500595,
- -0.03545793518424034,
- 0.04662163183093071,
- 0.07410284131765366,
- -0.03997061029076576,
- -0.011811726726591587,
- 0.03996323049068451,
- 0.06532639265060425,
- 0.023163972422480583,
- -0.020038457587361336,
- 0.016136307269334793,
- 0.06677699834108353,
- -0.02909894660115242,
- 0.00906380359083414,
- 0.0644896924495697,
- -0.07836756110191345,
- -0.02512689307332039,
- 0.06352793425321579,
- 0.01744634099304676,
- 0.037525419145822525,
- 0.00013339372526388615,
- 0.05991560220718384,
- 0.013213079422712326,
- 0.08000607043504715,
- 0.11696486175060272,
- 0.024065861478447914,
- 0.004019077401608229,
- 0.005954519379884005,
- 0.0533006489276886,
- 0.02808035910129547,
- 0.06327445060014725,
- -0.09493298828601837,
- -0.06205693259835243,
- 0.03091866336762905,
- 0.02457025833427906,
- -0.06539684534072876,
- 0.0346091128885746,
- 0.07370414584875107,
- -0.04131634160876274,
- 0.09564607590436935,
- -0.07981695234775543,
- -0.06288551539182663,
- 0.059204861521720886,
- -0.043961189687252045,
- 0.08559506386518478,
- -0.050067950040102005,
- 0.015664665028452873,
- -0.002136958995833993,
- -0.029007432982325554,
- -0.007451264653354883,
- -0.022401856258511543,
- -0.049395762383937836,
- -0.07770729809999466,
- -0.02686484158039093,
- 0.011787955649197102,
- -0.06808409839868546,
- -0.023116718977689743,
- -0.1318715512752533,
- 0.02615860104560852,
- -0.006561245769262314,
- 0.00545424222946167,
- -0.04951654374599457,
- 0.06981849670410156,
- -0.02618584968149662,
- -0.0051565878093242645,
- 0.0018807337619364262,
- -0.11694726347923279,
- 0.028796689584851265,
- -0.04722415283322334,
- -0.007211160846054554,
- -0.0396626852452755,
- 0.020443744957447052,
- -0.024707278236746788,
- -0.034281257539987564,
- -0.02854437381029129,
- -0.024119414389133453,
- -1.18756409150933e-8,
- -0.027841633185744286,
- 0.01643131487071514,
- 0.10746161639690399,
- 0.04108719527721405,
- 0.056711696088314056,
- 0.05782158672809601,
- -0.03254108503460884,
- 0.010326710529625416,
- 0.02648063749074936,
- 0.09745532274246216,
- -0.0017203502357006073,
- 0.04645507410168648,
- -0.04098732769489288,
- -0.016079140827059746,
- 0.026261115446686745,
- -0.025590233504772186,
- -0.034467604011297226,
- 0.017476804554462433,
- -0.0280016977339983,
- 0.003766062669456005,
- -0.031664203852415085,
- 0.0298770684748888,
- 0.012821129523217678,
- -0.08120756596326828,
- -0.05682840198278427,
- 0.014324475079774857,
- 0.023460015654563904,
- 0.1516648530960083,
- 0.026556378230452538,
- -0.06263589859008789,
- -0.024489549919962883,
- 0.08931073546409607,
- -0.04261917620897293,
- -0.056217458099126816,
- -0.02484702132642269,
- -0.041144732385873795,
- -0.048774562776088715,
- 0.00015173034626059234,
- -0.020363280549645424,
- -0.008828260004520416,
- -0.047030720859766006,
- -0.01649615727365017,
- 0.11177054047584534,
- -0.03022579476237297,
- -0.06429940462112427,
- -0.009492446668446064,
- -0.05862206965684891,
- -0.03163953125476837,
- 0.07837600260972977,
- -0.005854123737663031,
- -0.06076499819755554,
- -0.013032280839979649,
- 0.06010698899626732,
- 0.10396164655685425,
- 0.029868416488170624,
- -0.018710821866989136,
- 0.005440348293632269,
- 0.0165892094373703,
- -0.11940493434667587,
- 0.03173353895545006,
- 0.15035471320152283,
- 0.026050133630633354,
- -0.0017169392667710781,
- -0.06190042570233345
- ]
- },
- {
- "keyword": "profile",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.07875475287437439,
- 0.0020564706064760685,
- -0.0367799773812294,
- 0.035872988402843475,
- 0.03531638905405998,
- -0.018976233899593353,
- 0.12141110748052597,
- 0.06490358710289001,
- -0.04864232987165451,
- -0.06391500681638718,
- 0.0024498431012034416,
- -0.11312312632799149,
- 0.05222609266638756,
- 0.007925563491880894,
- -0.004001881927251816,
- -0.036171503365039825,
- -0.03991730511188507,
- 0.01709096133708954,
- -0.033741265535354614,
- -0.10155326128005981,
- -0.08251702040433884,
- -0.007661781739443541,
- 0.042014311999082565,
- -0.03676409274339676,
- -0.008485923521220684,
- -0.02841268666088581,
- -0.050733666867017746,
- 0.07980947196483612,
- -0.0667089894413948,
- -0.05525323748588562,
- 0.028184425085783005,
- 0.008506652899086475,
- 0.017828235402703285,
- 0.00781955011188984,
- -0.022472543641924858,
- -0.012095380574464798,
- 0.024896644055843353,
- 0.010473305359482765,
- -0.05870187282562256,
- -0.0390004925429821,
- -0.057147298008203506,
- -0.09383254498243332,
- -0.06084790080785751,
- 0.0442647822201252,
- -0.023351319134235382,
- 0.004934981465339661,
- 0.022503536194562912,
- 0.0038015292957425117,
- -0.02280653454363346,
- 0.03317531943321228,
- -0.015234677121043205,
- -0.015411251224577427,
- 0.014023237861692905,
- 0.03250466659665108,
- 0.056593723595142365,
- 0.08033819496631622,
- 0.014020470902323723,
- 0.04729273170232773,
- 0.0004140126402489841,
- 0.0024424202274531126,
- -0.0014901035465300083,
- -0.0006193833542056382,
- -0.05825390666723251,
- 0.06800428032875061,
- 0.03997509926557541,
- -0.022838247939944267,
- -0.036246031522750854,
- 0.027718031778931618,
- -0.0443350113928318,
- -0.036303844302892685,
- -0.05529424920678139,
- -0.00018928163626696914,
- -0.05177503451704979,
- -0.001362237730063498,
- 0.08266528695821762,
- -0.050475090742111206,
- 0.007227324414998293,
- -0.013252467848360538,
- 0.10163796693086624,
- 0.05931601673364639,
- 0.023792723193764687,
- -0.056646380573511124,
- -0.003893690649420023,
- 0.036828648298978806,
- 0.02819243259727955,
- -0.03637818992137909,
- 0.01809127815067768,
- -0.06640640646219254,
- -0.057649195194244385,
- 0.02767569199204445,
- 0.0263832900673151,
- 0.08140111714601517,
- 0.1296694576740265,
- -0.009155018255114555,
- -0.10479516535997391,
- 0.006791988387703896,
- 0.057016726583242416,
- -0.06294360011816025,
- -0.029320046305656433,
- 0.26682138442993164,
- -0.04687967151403427,
- -0.01619044318795204,
- 0.010062969289720058,
- 0.08209677785634995,
- 0.03895409777760506,
- 0.003041135147213936,
- -0.0183070357888937,
- 0.055067483335733414,
- -0.00045238216989673674,
- -0.021141042932868004,
- -0.029570721089839935,
- -0.011529256589710712,
- -0.048534881323575974,
- 0.024550722911953926,
- 0.1056201308965683,
- -0.05623754858970642,
- 0.009207341820001602,
- 0.02925175428390503,
- 0.04667287692427635,
- 0.0019842085894197226,
- 0.03733844682574272,
- 0.02510964870452881,
- -0.007540873251855373,
- -0.01047849003225565,
- -0.03886863961815834,
- -0.016215063631534576,
- -0.010243261232972145,
- -4.7061592244422e-33,
- 0.08518356084823608,
- -0.009205133654177189,
- -0.003923672251403332,
- 0.05479089170694351,
- -0.06596260517835617,
- 0.025889217853546143,
- -0.06260105222463608,
- -0.017488447949290276,
- -0.01073276624083519,
- 0.011921849101781845,
- 0.008439967408776283,
- 0.03943469747900963,
- -0.04615955427289009,
- 0.1130063459277153,
- 0.08930689096450806,
- 0.0356597900390625,
- 0.09505372494459152,
- 0.05114835873246193,
- -0.05178200453519821,
- 0.003240461926907301,
- 0.0036940178833901882,
- -0.01968378573656082,
- -0.012442268431186676,
- 0.05997201427817345,
- 0.03477460518479347,
- 0.036823123693466187,
- 0.08609065413475037,
- -0.04005608335137367,
- -0.0048083774745464325,
- 0.022004766389727592,
- 0.006240176036953926,
- -0.0015707237180322409,
- 0.0060684047639369965,
- -0.013253003358840942,
- 0.056735266000032425,
- 0.011144605465233326,
- 0.01661069504916668,
- -0.03462562710046768,
- -0.002301860833540559,
- 0.005481179803609848,
- 0.013548251241445541,
- 0.014846785925328732,
- 0.016146600246429443,
- -0.024602878838777542,
- -0.14948254823684692,
- 0.014508266933262348,
- 0.10964208841323853,
- 0.014216401614248753,
- 0.041685666888952255,
- 0.04537786915898323,
- 0.031322941184043884,
- -0.05762658268213272,
- -0.05698971822857857,
- 0.02883303537964821,
- -0.05144130066037178,
- -0.018641142174601555,
- -0.06470902264118195,
- -0.052065249532461166,
- -0.028639497235417366,
- -0.04874533414840698,
- 0.08145309239625931,
- 0.057610444724559784,
- -0.03230040520429611,
- -0.0635080337524414,
- -0.05592099204659462,
- -0.11067744344472885,
- 0.01166775356978178,
- -0.05887066572904587,
- 0.05511367693543434,
- 0.025407060980796814,
- -0.08631762862205505,
- 0.04261007159948349,
- 0.08754955977201462,
- 0.022769151255488396,
- -0.03599410131573677,
- 0.0016600063536316156,
- -0.0016307398909702897,
- 0.06140227988362312,
- -0.1399819552898407,
- 0.1066342443227768,
- 0.01202776562422514,
- 0.05941270664334297,
- -0.09246636927127838,
- -0.06033843010663986,
- 0.03484669327735901,
- -0.012004598043859005,
- -0.015134569257497787,
- -0.0498511902987957,
- -0.02681995928287506,
- -0.016489503905177116,
- -0.011825915426015854,
- -0.009454630315303802,
- 0.09746108204126358,
- 0.08510036766529083,
- -0.09906867891550064,
- 3.443241889381321e-33,
- -0.045928243547677994,
- -0.06672602891921997,
- 0.022341260686516762,
- 0.002229295903816819,
- 0.04411787912249565,
- -0.03906169533729553,
- 0.09910382330417633,
- 0.09998917579650879,
- -0.021539457142353058,
- 0.03726884722709656,
- -0.046782854944467545,
- 0.0051994360983371735,
- 0.06725478917360306,
- 0.009571749716997147,
- 0.11657292395830154,
- 0.08844389021396637,
- -0.021645646542310715,
- 0.039080873131752014,
- -0.07624641060829163,
- -0.01766892336308956,
- -0.05428897216916084,
- -0.08994543552398682,
- -0.09710640460252762,
- -0.0419195257127285,
- -0.0592174232006073,
- 0.01633347198367119,
- 0.04543648287653923,
- 0.012310574762523174,
- -0.03219420090317726,
- 0.031458429992198944,
- 0.045331958681344986,
- -0.013565067201852798,
- -0.09867320209741592,
- -0.03696642816066742,
- -0.03958331048488617,
- 0.08500076830387115,
- -0.03343529254198074,
- 0.007965604774653912,
- -0.026768025010824203,
- -0.02146935649216175,
- 0.05975579842925072,
- 0.04778959974646568,
- -0.008669833652675152,
- 0.06805488467216492,
- 0.029995955526828766,
- 0.054922159761190414,
- 0.05965248867869377,
- 0.018538586795330048,
- 0.03283269330859184,
- 0.03570457175374031,
- -0.002731653396040201,
- 0.019600065425038338,
- 0.062139321118593216,
- 0.011406050063669682,
- 0.025054899975657463,
- -0.018042011186480522,
- -0.010174334049224854,
- -0.020009195432066917,
- 0.06744341552257538,
- -0.018275756388902664,
- 0.008235495537519455,
- 0.028949705883860588,
- -0.0031871527899056673,
- 0.08555411547422409,
- -0.057988617569208145,
- -0.024866344407200813,
- 0.004640904720872641,
- -0.004968937952071428,
- -0.08094098418951035,
- -0.04147906228899956,
- 0.004146771505475044,
- -0.04566342383623123,
- -0.012132393196225166,
- -0.0010765095939859748,
- -0.022321097552776337,
- -0.07443023473024368,
- -0.10160952806472778,
- -0.002961881458759308,
- -0.07040033489465714,
- 0.12033547461032867,
- 0.011780754663050175,
- 0.009870951063930988,
- -0.0880974531173706,
- -0.04033469781279564,
- 0.006510632112622261,
- -0.03492356464266777,
- 0.00451500341296196,
- 0.050665903836488724,
- -0.015176326036453247,
- -0.01736101321876049,
- 0.05642903968691826,
- 0.02631603740155697,
- -0.13545268774032593,
- -0.019663561135530472,
- -0.058509379625320435,
- -1.2378310820793104e-8,
- -0.02817089483141899,
- -0.023251423612236977,
- -0.004437591414898634,
- 0.04405711591243744,
- -0.005780989769846201,
- 0.0735718235373497,
- -0.03948076069355011,
- 0.0027776637580245733,
- 0.04148700460791588,
- 0.03376644849777222,
- 0.008698437362909317,
- 0.005894873291254044,
- -0.020787276327610016,
- 0.04050840809941292,
- 0.048922840505838394,
- -0.03939404711127281,
- -0.04380227252840996,
- 0.07731258124113083,
- 0.010800528340041637,
- 0.028869464993476868,
- -0.03668367862701416,
- 0.021011503413319588,
- 0.002891247859224677,
- -0.041931070387363434,
- 0.011089677922427654,
- -0.012944670394062996,
- 0.003112690756097436,
- 0.07051410526037216,
- -0.030125435441732407,
- 0.013398952782154083,
- 0.001828445470891893,
- 0.0947827696800232,
- 0.0134162912145257,
- -0.065945565700531,
- -0.0093226945027709,
- -0.018292780965566635,
- -0.06429077684879303,
- -0.005379322450608015,
- -0.02580779790878296,
- 0.05837726220488548,
- 0.07209165394306183,
- -0.015242409892380238,
- 0.09871257096529007,
- 0.05283523350954056,
- -0.051485493779182434,
- 0.010492551140487194,
- 0.051060162484645844,
- -0.08356911689043045,
- 0.018465278670191765,
- -0.03144363313913345,
- -0.05837005004286766,
- -0.06771647185087204,
- 0.08095042407512665,
- 0.03484654054045677,
- 0.008019712753593922,
- -0.017255013808608055,
- -0.01765265502035618,
- 0.0476473867893219,
- -0.02607157453894615,
- -0.007224699016660452,
- 0.03215416520833969,
- 0.015262151136994362,
- -0.02964109554886818,
- -0.03006664477288723
- ]
- },
- {
- "keyword": "identity",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0911327376961708,
- 0.13800999522209167,
- 0.0052368356846272945,
- 0.0736769437789917,
- 0.016159988939762115,
- -0.026850048452615738,
- 0.20304130017757416,
- -0.043081317096948624,
- 0.08329270780086517,
- -0.05277343466877937,
- 0.026157591491937637,
- -0.09477769583463669,
- 0.016535302624106407,
- -0.010909151285886765,
- -0.048425350338220596,
- -0.011498874984681606,
- -0.03066675178706646,
- 0.04317156970500946,
- -0.06985368579626083,
- -0.015653854236006737,
- -0.08587414771318436,
- -0.04093270003795624,
- -0.007244881242513657,
- 0.05506373941898346,
- -0.0005204964545555413,
- -0.004562574904412031,
- 0.026287032291293144,
- 0.03305036202073097,
- -0.0009042272577062249,
- -0.0916886180639267,
- 0.016382448375225067,
- -0.016786465421319008,
- 0.051651183515787125,
- -0.04291050508618355,
- -0.019855432212352753,
- 0.035885412245988846,
- 0.06316463649272919,
- -0.003074278589338064,
- 0.021113257855176926,
- -0.049444012343883514,
- 0.0010076171020045877,
- -0.16234727203845978,
- -0.048444975167512894,
- -0.00447295093908906,
- -0.030050305649638176,
- 0.016145743429660797,
- 0.02675507590174675,
- 0.058503977954387665,
- 0.00037519860779866576,
- 0.050133172422647476,
- -0.0036899903789162636,
- 0.034994497895240784,
- -0.11486832052469254,
- 0.031014304608106613,
- 0.07376744598150253,
- 0.013296013697981834,
- -0.014162127859890461,
- 0.04976210743188858,
- 0.021483805030584335,
- 0.06258685886859894,
- 0.08443202078342438,
- -0.027080129832029343,
- 0.014402098953723907,
- 0.08892051130533218,
- 0.04681103304028511,
- -0.02225847728550434,
- 0.053567882627248764,
- -0.05728853493928909,
- -0.03559787943959236,
- -0.06819609552621841,
- 0.02849695086479187,
- 0.039183109998703,
- -0.036855123937129974,
- 0.011397439055144787,
- 0.056383684277534485,
- -0.017597796395421028,
- 0.015741437673568726,
- -0.03724750131368637,
- 0.06913977116346359,
- 0.03789637237787247,
- -0.008573330007493496,
- 0.0465371273458004,
- -0.02236461080610752,
- 0.012137590907514095,
- 0.01355348527431488,
- 0.0075857508927583694,
- -0.032928381115198135,
- 0.011956440284848213,
- -0.0828644335269928,
- 0.03850092366337776,
- -0.029687033966183662,
- -0.05190294235944748,
- 0.12409816682338715,
- -0.08991364389657974,
- 0.05451379716396332,
- -0.061116497963666916,
- -0.018286358565092087,
- 0.010937036015093327,
- -0.01979481428861618,
- 0.23505127429962158,
- -0.03429538011550903,
- 0.04570416733622551,
- -0.07280059158802032,
- -0.042391225695610046,
- -0.018948517739772797,
- -0.015893390402197838,
- -0.0036565600894391537,
- -0.022975275292992592,
- 0.014621628448367119,
- 0.03349277377128601,
- -0.026249326765537262,
- -0.03571140766143799,
- -0.022248776629567146,
- 0.07261200994253159,
- 0.04706718400120735,
- 0.05075545236468315,
- -0.013414227403700352,
- -0.008768011815845966,
- -0.0023421798832714558,
- -0.05676222965121269,
- 0.016793666407465935,
- 0.008634376339614391,
- -0.023764001205563545,
- 0.03384110704064369,
- -0.06024948135018349,
- -0.02762068808078766,
- 0.021774686872959137,
- -6.168042937375168e-33,
- -0.07412619888782501,
- 0.03847111761569977,
- 0.01461037341505289,
- 0.004746995400637388,
- 0.007864493876695633,
- -0.03450830653309822,
- -0.07396407425403595,
- -0.04814307764172554,
- -0.06273044645786285,
- 0.11778128147125244,
- -0.057075757533311844,
- 0.0676584467291832,
- -0.047204259783029556,
- -0.022166486829519272,
- -0.004699478857219219,
- 0.07555338740348816,
- -0.03294672071933746,
- 0.04783736914396286,
- 0.005108483601361513,
- 0.013823997229337692,
- -0.006350309122353792,
- 0.030764330178499222,
- 0.016989586874842644,
- 0.06928776949644089,
- 0.05494034290313721,
- -0.019059432670474052,
- 0.048467788845300674,
- 0.0020105307921767235,
- -0.018698828294873238,
- 0.0009498419240117073,
- 0.04134111851453781,
- -0.0032562795095145702,
- -0.010881034657359123,
- -0.021240822970867157,
- 0.012688412331044674,
- 0.03215905278921127,
- 0.07590477913618088,
- -0.12361811846494675,
- 0.07069450616836548,
- -0.023435896262526512,
- -0.034745458513498306,
- -0.010005730204284191,
- -0.03770844265818596,
- 0.04050349444150925,
- -0.04969426617026329,
- 0.014831610955297947,
- 0.1106661856174469,
- -0.0037667425349354744,
- 0.05441707745194435,
- 0.051992520689964294,
- -0.06295381486415863,
- 0.018283136188983917,
- -0.0867232233285904,
- -0.023235879838466644,
- -0.06789100915193558,
- -0.030162476003170013,
- -0.01821720600128174,
- 0.05117243155837059,
- -0.06716778874397278,
- -0.06136876344680786,
- 0.00528237409889698,
- 0.014881514944136143,
- -0.1058163195848465,
- 0.05387823283672333,
- 0.011293119750916958,
- -0.03700502589344978,
- 0.04979905113577843,
- 0.0027167145162820816,
- 0.05281471088528633,
- -0.03219255805015564,
- -0.03281163051724434,
- -0.038091935217380524,
- 0.06437602639198303,
- 0.028787484392523766,
- -0.002262883121147752,
- -0.05192992463707924,
- 0.004397816956043243,
- -0.01293307263404131,
- -0.08099471777677536,
- 0.07993977516889572,
- -0.040173135697841644,
- 0.06306790560483932,
- 0.023724617436528206,
- -0.04725879058241844,
- 0.03507286310195923,
- 0.053409136831760406,
- -0.0075644850730896,
- -0.09214495122432709,
- -0.003560163313522935,
- 0.018884645774960518,
- -0.03317776322364807,
- 0.032106898725032806,
- 0.047631822526454926,
- 0.08384540677070618,
- -0.09288085252046585,
- 3.702273089844551e-33,
- -0.10825090855360031,
- -0.09015331417322159,
- -0.02586398273706436,
- -0.04318977892398834,
- 0.03957311064004898,
- -0.05144741013646126,
- 0.0635320395231247,
- -0.023402387276291847,
- -0.0771724283695221,
- 0.012557506561279297,
- 0.02440846897661686,
- -0.05434935539960861,
- 0.03821779787540436,
- 0.040545057505369186,
- 0.08089093118906021,
- -0.034606385976076126,
- 0.02223145216703415,
- 0.0002766151155810803,
- 0.049050964415073395,
- -0.009522334672510624,
- 0.03437378257513046,
- 0.002584280679002404,
- 0.02865602634847164,
- -0.0012832442298531532,
- -0.04015568643808365,
- 0.025806190446019173,
- 0.07025745511054993,
- 0.01996273547410965,
- 0.02834710106253624,
- -0.030096080154180527,
- 0.08259672671556473,
- 0.010534239932894707,
- -0.04424254596233368,
- -0.0517498217523098,
- -0.033954307436943054,
- 0.006120594218373299,
- 0.08001206070184708,
- -0.023121153935790062,
- -0.004120633006095886,
- 0.0511755533516407,
- 0.018880274146795273,
- 0.006411002017557621,
- 0.05379646271467209,
- 0.09109677374362946,
- 0.015559106133878231,
- -0.03950826823711395,
- 0.02863481268286705,
- 0.05349123850464821,
- 0.0002150046348106116,
- 0.030548224225640297,
- -0.09715451300144196,
- -0.07111099362373352,
- 0.011425457894802094,
- -0.07783804833889008,
- -0.0012010078644379973,
- -0.037831731140613556,
- 0.03943600133061409,
- -0.0339098684489727,
- -0.011408700607717037,
- 0.05070766434073448,
- -0.009561697021126747,
- 0.08288487792015076,
- -0.04958680272102356,
- 0.11914553493261337,
- 0.000629983376711607,
- -0.05056861415505409,
- -0.010640589520335197,
- -0.017762895673513412,
- -0.031696174293756485,
- -0.00015178929606918246,
- 0.07550537586212158,
- -0.06731316447257996,
- -0.07442216575145721,
- -0.02094304747879505,
- -0.07346294820308685,
- -0.0881405621767044,
- -0.12318254262208939,
- 0.048683419823646545,
- -0.04109717905521393,
- 0.05209047347307205,
- -0.03996511548757553,
- -0.0007365666679106653,
- -0.007812388241291046,
- -0.00637156143784523,
- 0.0027508761268109083,
- -0.017687808722257614,
- 0.032705072313547134,
- 0.05483127385377884,
- 0.025042083114385605,
- 0.043642807751894,
- -0.0037223456893116236,
- 0.06078213080763817,
- -0.12163498997688293,
- -0.08030768483877182,
- 0.0009197455365210772,
- -1.2328865039989978e-8,
- -0.03288979455828667,
- 0.0234722588211298,
- 0.029292289167642593,
- -0.045125916600227356,
- 0.046586133539676666,
- 0.03003539890050888,
- -0.07688865810632706,
- -0.054623253643512726,
- -0.008842341601848602,
- -0.0019711756613105536,
- 0.029054811224341393,
- 0.021592654287815094,
- 0.04790817201137543,
- -0.03938387334346771,
- 0.0795680582523346,
- 0.019783595576882362,
- -0.07445406913757324,
- -0.024004818871617317,
- -0.0017372110160067677,
- 0.005683544557541609,
- -0.004484254866838455,
- -0.00632045604288578,
- 0.010600371286273003,
- -0.10316071659326553,
- -0.040061358362436295,
- 0.013995845802128315,
- -0.02090349979698658,
- -0.0024202147033065557,
- -0.05016930401325226,
- 0.037724580615758896,
- -0.042885541915893555,
- 0.08048325777053833,
- -0.003940577618777752,
- -0.018343186005949974,
- 0.016692237928509712,
- -0.005272845737636089,
- 0.03639229014515877,
- 0.02149038016796112,
- 0.03657877445220947,
- 0.019003674387931824,
- -0.03365921229124069,
- 0.011634898371994495,
- 0.04888640344142914,
- 0.01600751094520092,
- -0.08032115548849106,
- 0.011032099835574627,
- 0.0047736261039972305,
- -0.006848411168903112,
- -0.022875359281897545,
- 0.03634438291192055,
- 0.015135914087295532,
- -0.053652819246053696,
- 0.00004531782178673893,
- 0.05397258698940277,
- 0.029605207964777946,
- -0.02954777143895626,
- -0.0057338145561516285,
- 0.07849787920713425,
- 0.03921053186058998,
- 0.08317946642637253,
- 0.1286228448152542,
- 0.039380256086587906,
- 0.02628389373421669,
- -0.08258765190839767
- ]
- },
- {
- "keyword": "username",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.09067749977111816,
- -0.0342278815805912,
- 0.03504594415426254,
- -0.021744588389992714,
- -0.03457481786608696,
- -0.08306996524333954,
- 0.10413884371519089,
- 0.03497254475951195,
- 0.011709148995578289,
- -0.025538282468914986,
- -0.009784282185137272,
- -0.01715238392353058,
- 0.048960551619529724,
- -0.033863235265016556,
- 0.010192365385591984,
- -0.05649646371603012,
- -0.01757674664258957,
- -0.14059028029441833,
- -0.016040557995438576,
- 0.04328298568725586,
- 0.008087019436061382,
- 0.07795252650976181,
- 0.05735987424850464,
- 0.00957818515598774,
- 0.00881312694400549,
- 0.018831107765436172,
- -0.06860645860433578,
- 0.04768895357847214,
- -0.018025992438197136,
- -0.07508879154920578,
- -0.021601900458335876,
- 0.04209316149353981,
- 0.0649455115199089,
- 0.07097293436527252,
- -0.010694668628275394,
- -0.014602678827941418,
- -0.08176776021718979,
- -0.04612309858202934,
- -0.025208624079823494,
- 0.02173328772187233,
- 0.07799221575260162,
- -0.0568794384598732,
- -0.002965977182611823,
- -0.00867386069148779,
- -0.00472278380766511,
- -0.033460792154073715,
- -0.04479909688234329,
- 0.0063975779339671135,
- -0.004719968419522047,
- 0.05302198976278305,
- -0.029121529310941696,
- -0.004727005027234554,
- 0.0486871711909771,
- -0.046612005680799484,
- -0.029455062001943588,
- -0.09216040372848511,
- -0.0022317557595670223,
- 0.027015021070837975,
- -0.005896357353776693,
- -0.02046547830104828,
- 0.05851241573691368,
- 0.0444185771048069,
- -0.10199626535177231,
- -0.012091603130102158,
- 0.06305381655693054,
- -0.010334399528801441,
- 0.0006779438117519021,
- 0.01130979135632515,
- 0.037659499794244766,
- -0.01335811149328947,
- 0.0024493939708918333,
- 0.01301424391567707,
- 0.011767237447202206,
- 0.02990790270268917,
- 0.09380368888378143,
- 0.016211403533816338,
- 0.08902579545974731,
- -0.035797860473394394,
- 0.06349024921655655,
- 0.006220424547791481,
- -0.04112811014056206,
- 0.03270436450839043,
- -0.0763581320643425,
- 0.011167824268341064,
- -0.035452939569950104,
- -0.012815832160413265,
- -0.069486103951931,
- 0.007098756264895201,
- -0.04659480229020119,
- 0.031281694769859314,
- -0.0296669602394104,
- 0.04683799669146538,
- 0.09222936630249023,
- -0.02124171517789364,
- -0.028442248702049255,
- 0.0031212414614856243,
- -0.007878762669861317,
- 0.003503947053104639,
- 0.000447855272796005,
- 0.3271850645542145,
- -0.010101568885147572,
- -0.008701938204467297,
- 0.01907876878976822,
- 0.08999063074588776,
- 0.09588741511106491,
- -0.006050483789294958,
- -0.05952560529112816,
- 0.05148589611053467,
- -0.11053545027971268,
- -0.09044178575277328,
- -0.034150779247283936,
- -0.026960337534546852,
- 0.03309675678610802,
- 0.014613380655646324,
- -0.020167408511042595,
- 0.10432663559913635,
- 0.005387230310589075,
- -0.021942634135484695,
- 0.0030366030987352133,
- -0.07119141519069672,
- 0.043276771903038025,
- 0.023515265434980392,
- -0.014846861362457275,
- 0.05159493535757065,
- 0.03695975989103317,
- -0.0764789804816246,
- 0.05006866529583931,
- 3.4931070944271715e-33,
- 0.04845399782061577,
- 0.05053962022066116,
- 0.0675513967871666,
- 0.12067078799009323,
- 0.05086207762360573,
- 0.04180653765797615,
- 0.013428584672510624,
- 0.004167061299085617,
- 0.03260596841573715,
- 0.016636617481708527,
- 0.051374197006225586,
- 0.06555778533220291,
- -0.09176591038703918,
- -0.010572734288871288,
- 0.010809398256242275,
- -0.010595368221402168,
- -0.012639288790524006,
- 0.026763301342725754,
- -0.03686227649450302,
- -0.007404001895338297,
- -0.01848059706389904,
- -0.03722904995083809,
- -0.04396321624517441,
- 0.020012304186820984,
- -0.024513667449355125,
- -0.04994811490178108,
- -0.03235092759132385,
- -0.07174114882946014,
- -0.018587598577141762,
- -0.010696210898458958,
- -0.018300361931324005,
- 0.02671647258102894,
- -0.024103304371237755,
- 0.03836195915937424,
- -0.06858375668525696,
- 0.057440709322690964,
- 0.03615869581699371,
- -0.013830470852553844,
- 0.014150116592645645,
- 0.09971600025892258,
- -0.10276926308870316,
- 0.03608325123786926,
- -0.04526696726679802,
- 0.01043679565191269,
- 0.020752865821123123,
- 0.02737332694232464,
- 0.028329549357295036,
- -0.015324856154620647,
- -0.025162994861602783,
- 0.0080616045743227,
- -0.03870932757854462,
- 0.05536530539393425,
- -0.09650689363479614,
- -0.06831224262714386,
- -0.08233683556318283,
- -0.058490198105573654,
- 0.03664688766002655,
- 0.06351008266210556,
- -0.056617144495248795,
- -0.009138347581028938,
- -0.008733895607292652,
- 0.05612276867032051,
- -0.029045339673757553,
- -0.08404624462127686,
- -0.01402533520013094,
- -0.06340806931257248,
- 0.039455097168684006,
- -0.025649620220065117,
- 0.00021399326215032488,
- 0.036107391119003296,
- -0.10677772015333176,
- 0.05089394375681877,
- 0.04895049333572388,
- -0.03644220903515816,
- -0.006583507172763348,
- -0.09002793580293655,
- 0.00491346837952733,
- 0.05445937439799309,
- 0.059280265122652054,
- -0.07809901982545853,
- 0.06585884839296341,
- -0.05653765797615051,
- 0.019539136439561844,
- -0.04860434681177139,
- -0.035649921745061874,
- 0.04316350072622299,
- -0.0326903760433197,
- -0.114161916077137,
- -0.03699798882007599,
- -0.041742708534002304,
- -0.03209827095270157,
- 0.01834094524383545,
- 0.02697541005909443,
- 0.01981993392109871,
- -0.059341948479413986,
- -4.778445147520063e-33,
- -0.04925605282187462,
- -0.01977442018687725,
- 0.026082830503582954,
- 0.03759760782122612,
- 0.043490082025527954,
- -0.06523951888084412,
- 0.003002286422997713,
- 0.09202581644058228,
- -0.08221516758203506,
- 0.04292626306414604,
- 0.06286818534135818,
- -0.039018455892801285,
- -0.02328786998987198,
- 0.007935588248074055,
- 0.07798884063959122,
- 0.008898605592548847,
- 0.07912582159042358,
- -0.008596892468631268,
- -0.02477911114692688,
- -0.0224271509796381,
- -0.05699783191084862,
- -0.004927747417241335,
- 0.020285412669181824,
- 0.014637605287134647,
- -0.04613373056054115,
- -0.020978378131985664,
- 0.059943899512290955,
- 0.09021123498678207,
- -0.06565216183662415,
- 0.018415920436382294,
- 0.006542387884110212,
- -0.023430228233337402,
- -0.04632725566625595,
- -0.0025154694449156523,
- -0.022264009341597557,
- 0.02142057567834854,
- -0.06184757128357887,
- -0.03226318955421448,
- 0.06731367111206055,
- 0.03938274085521698,
- 0.04164630547165871,
- -0.02071765810251236,
- -0.08175266534090042,
- 0.07692040503025055,
- 0.013740145601332188,
- -0.04662591218948364,
- 0.005348660051822662,
- 0.016290782019495964,
- 0.061709508299827576,
- 0.05415721982717514,
- -0.06623528897762299,
- 0.0019542984664440155,
- -0.036053191870450974,
- 0.042057961225509644,
- -0.013765251263976097,
- 0.021410038694739342,
- 0.07252318412065506,
- -0.08675675094127655,
- -0.020718052983283997,
- 0.02002294547855854,
- -0.09716282039880753,
- 0.038194440305233,
- -0.04503278806805611,
- 0.08799673616886139,
- 0.011064589954912663,
- 0.019321803003549576,
- -0.06352957338094711,
- -0.019186444580554962,
- -0.012207278981804848,
- -0.022004196420311928,
- -0.0013952709268778563,
- -0.02012771926820278,
- -0.06480354070663452,
- 0.032753877341747284,
- -0.09728235751390457,
- -0.013461248949170113,
- -0.039805829524993896,
- 0.04833320900797844,
- 0.01625874638557434,
- 0.06634490191936493,
- 0.07674969732761383,
- 0.03865509107708931,
- -0.02936774119734764,
- -0.030693328008055687,
- 0.01220538280904293,
- -0.006750026717782021,
- 0.048713382333517075,
- 0.07789785414934158,
- 0.022603169083595276,
- -0.012610925361514091,
- -0.07392454147338867,
- -0.02783556655049324,
- -0.011531344614923,
- -0.016139578074216843,
- 0.029198255389928818,
- -2.5052610652664953e-8,
- -0.05539555475115776,
- 0.012970895506441593,
- -0.03619198501110077,
- 0.004046492278575897,
- 0.011318707838654518,
- 0.09453988075256348,
- 0.010896463878452778,
- 0.003020619973540306,
- 0.016757264733314514,
- -0.008223189041018486,
- 0.06541256606578827,
- 0.05243859440088272,
- 0.034355279058218,
- 0.19705207645893097,
- 0.058839477598667145,
- -0.016119658946990967,
- -0.03355447202920914,
- -0.03729917109012604,
- -0.04106523469090462,
- 0.005889310967177153,
- -0.006784398108720779,
- -0.005313263740390539,
- 0.055402714759111404,
- -0.0439375601708889,
- 0.014888706617057323,
- 0.011578553356230259,
- 0.01756328158080578,
- 0.027907459065318108,
- -0.023049652576446533,
- -0.035169925540685654,
- 0.044404882937669754,
- 0.07439350336790085,
- 0.03338375315070152,
- 0.037131167948246,
- 0.03139210119843483,
- -0.006769369821995497,
- -0.018818916752934456,
- 0.044046420603990555,
- -0.0021129136439412832,
- 0.0012926803901791573,
- -0.05249025300145149,
- -0.07311303168535233,
- 0.11713527143001556,
- 0.012008457444608212,
- -0.074842169880867,
- -0.044197071343660355,
- -0.012624820694327354,
- -0.07862261682748795,
- -0.03494260832667351,
- 0.010723109357059002,
- 0.0023857573978602886,
- -0.005242256913334131,
- -0.01568782702088356,
- 0.05969782918691635,
- 0.07680224627256393,
- 0.03845391422510147,
- -0.034788791090250015,
- 0.02973872236907482,
- -0.013832151889801025,
- -0.0016855868743732572,
- 0.11571591347455978,
- 0.05874865874648094,
- -0.026350151747465134,
- 0.02092297561466694
- ]
- },
- {
- "keyword": "login",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.012270390056073666,
- -0.04315779358148575,
- -0.0322306863963604,
- -0.0407814122736454,
- -0.04068852216005325,
- -0.010708460584282875,
- 0.12941831350326538,
- -0.01195516437292099,
- 0.042023915797472,
- 0.002855878323316574,
- 0.010244767181575298,
- -0.06899792701005936,
- -0.01265134196728468,
- 0.02779792807996273,
- -0.0011031890753656626,
- -0.025390882045030594,
- -0.020146865397691727,
- -0.004159962292760611,
- -0.08741460740566254,
- 0.0401032380759716,
- 0.013885191641747952,
- -0.06561227887868881,
- -0.08723461627960205,
- 0.07428571581840515,
- 0.009852686896920204,
- -0.049992237240076065,
- -0.009645139798521996,
- 0.062245115637779236,
- 0.00006070253948564641,
- -0.03752024099230766,
- -0.021603519096970558,
- 0.04514323174953461,
- 0.03725353628396988,
- -0.03435578942298889,
- -0.012714345939457417,
- -0.09204763919115067,
- 0.014877273701131344,
- 0.0413953959941864,
- 0.009977796114981174,
- -0.055875226855278015,
- -0.07013831287622452,
- -0.06957796216011047,
- -0.018117103725671768,
- -0.014522848650813103,
- 0.0131825627759099,
- 0.044292159378528595,
- -0.02874288335442543,
- -0.0024693096056580544,
- 0.025473028421401978,
- 0.04656968265771866,
- 0.024941906332969666,
- 0.040044449269771576,
- 0.04505568742752075,
- 0.03437541797757149,
- -0.04806283488869667,
- 0.0893356204032898,
- -0.003245698753744364,
- 0.0374714732170105,
- 0.004240446723997593,
- 0.013377409428358078,
- 0.05694599077105522,
- -0.028299011290073395,
- -0.0007660903502255678,
- 0.04654684290289879,
- 0.048613183200359344,
- -0.04586627334356308,
- -0.010913494974374771,
- -0.06749843060970306,
- 0.040125101804733276,
- -0.020923584699630737,
- -0.08518672734498978,
- 0.018997231498360634,
- -0.04057818651199341,
- -0.03425804153084755,
- 0.09330198913812637,
- 0.0054984851740300655,
- 0.009593658149242401,
- -0.055387236177921295,
- 0.09353960305452347,
- 0.06729424744844437,
- 0.028852837160229683,
- 0.04548180103302002,
- -0.032819945365190506,
- 0.05966401845216751,
- 0.009943399578332901,
- 0.011485359631478786,
- 0.0009415445965714753,
- 0.09271308034658432,
- -0.04739464446902275,
- -0.015014218166470528,
- 0.03526676818728447,
- 0.02994849719107151,
- 0.010720856487751007,
- -0.012928975746035576,
- -0.04081013426184654,
- -0.03809851408004761,
- 0.06950629502534866,
- 0.0467735193669796,
- -0.020575201138854027,
- 0.17032106220722198,
- 0.00465607363730669,
- 0.04466960206627846,
- 0.03893505409359932,
- -0.05441441014409065,
- 0.05056116729974747,
- -0.05549630522727966,
- 0.0065962038934230804,
- 0.007116216700524092,
- -0.002704960759729147,
- -0.03958868235349655,
- -0.039847537875175476,
- -0.020219216123223305,
- -0.02263353392481804,
- 0.05129664018750191,
- 0.0375857912003994,
- 0.010880843736231327,
- -0.00879048090428114,
- 0.03094090335071087,
- 0.03740810975432396,
- 0.0468406118452549,
- 0.022366227582097054,
- -0.005289300344884396,
- -0.01487929280847311,
- -0.036277566105127335,
- 0.011209644377231598,
- -0.10625562071800232,
- 0.07265319675207138,
- 1.045737797207628e-34,
- 0.015541360713541508,
- 0.003974107094109058,
- 0.006019899155944586,
- 0.010109680704772472,
- 0.01791379041969776,
- -0.0018596220761537552,
- 0.04035035893321037,
- -0.04516379535198212,
- -0.08170386403799057,
- 0.03545040637254715,
- -0.06869074702262878,
- 0.05375269055366516,
- 0.033424071967601776,
- -0.034350402653217316,
- 0.06825218349695206,
- -0.02461809106171131,
- 0.018263982608914375,
- 0.0429198257625103,
- -0.009043116122484207,
- -0.011816861107945442,
- -0.021017063409090042,
- -0.04366741701960564,
- 0.04384436830878258,
- 0.05114800110459328,
- -0.014392049983143806,
- -0.0019887888338416815,
- 0.01955287531018257,
- 0.009238827042281628,
- 0.0028351719956845045,
- 0.0067498343996703625,
- 0.02590436115860939,
- -0.04319525137543678,
- -0.06489785015583038,
- -0.008403876796364784,
- -0.023407109081745148,
- -0.015617405995726585,
- 0.0412987656891346,
- -0.004621204454451799,
- -0.008556978777050972,
- -0.05610758811235428,
- -0.05389555171132088,
- -0.010188092477619648,
- -0.06987714022397995,
- 0.006582700647413731,
- -0.000500819063745439,
- 0.01645885407924652,
- 0.07042521238327026,
- 0.02236461639404297,
- 0.03221674636006355,
- 0.02693530172109604,
- -0.06944487988948822,
- -0.015765273943543434,
- -0.14916080236434937,
- 0.038740355521440506,
- -0.04912959784269333,
- 0.0065191807225346565,
- 0.005507291294634342,
- -0.023278359323740005,
- -0.07428999990224838,
- -0.11351095139980316,
- 0.0373205691576004,
- 0.043302249163389206,
- -0.001720478292554617,
- -0.08965392410755157,
- 0.00482347933575511,
- -0.05149415135383606,
- 0.05829855799674988,
- -0.046697333455085754,
- 0.02202470228075981,
- -0.0017924231942743063,
- -0.04854431375861168,
- -0.03519558906555176,
- 0.052935291081666946,
- 0.015051569789648056,
- -0.01661798544228077,
- 0.035413824021816254,
- 0.00002039770879491698,
- 0.052083831280469894,
- -0.0830497071146965,
- 0.08271799981594086,
- 0.005057875532656908,
- 0.03912920504808426,
- -0.0831681564450264,
- 0.08493676036596298,
- 0.021763179451227188,
- 0.08462698012590408,
- -0.06103920191526413,
- -0.07115717232227325,
- -0.06045414134860039,
- 0.038861554116010666,
- -0.04649544507265091,
- -0.020520595833659172,
- 0.17940494418144226,
- 0.05541368946433067,
- -0.06498800218105316,
- -5.179853509451835e-34,
- -0.04367808252573013,
- -0.04549403116106987,
- 0.003024876583367586,
- -0.01335099246352911,
- 0.061339784413576126,
- 0.011571160517632961,
- 0.02740911953151226,
- -0.05587683990597725,
- -0.0454745851457119,
- -0.04876173287630081,
- 0.10616962611675262,
- 0.05707857012748718,
- 0.0892639234662056,
- 0.004254928324371576,
- 0.0936790481209755,
- 0.0954665094614029,
- 0.0276247076690197,
- 0.06465481221675873,
- -0.0797966942191124,
- -0.025847507640719414,
- -0.045037172734737396,
- -0.00833499152213335,
- -0.05218801647424698,
- -0.04175388067960739,
- -0.00631742924451828,
- 0.009946145117282867,
- 0.08180800825357437,
- 0.08957917243242264,
- -0.0022482825443148613,
- 0.039367496967315674,
- 0.11698029190301895,
- -0.002807930111885071,
- -0.054909639060497284,
- 0.04583503305912018,
- -0.02499469928443432,
- -0.0037759519182145596,
- 0.12639711797237396,
- 0.11489466577768326,
- -0.045650966465473175,
- -0.052612125873565674,
- 0.0732702985405922,
- 0.012302601709961891,
- 0.01292872242629528,
- 0.08610101044178009,
- 0.007083570118993521,
- 0.02801666408777237,
- -0.06082817167043686,
- 0.008880970999598503,
- 0.007620885968208313,
- 0.10799593478441238,
- -0.01857604831457138,
- -0.053161583840847015,
- 0.07196862995624542,
- -0.06415735930204391,
- -0.05060424655675888,
- -0.024459365755319595,
- 0.0018404724542051554,
- -0.009443333372473717,
- 0.030949348583817482,
- -0.013483792543411255,
- -0.06219059228897095,
- 0.023013919591903687,
- -0.003718339139595628,
- 0.10733573138713837,
- -0.05384296178817749,
- -0.052707038819789886,
- -0.05719243362545967,
- 0.07871667295694351,
- -0.029786687344312668,
- 0.004883065354079008,
- -0.053458791226148605,
- -0.01922863908112049,
- 0.04015824571251869,
- 0.026820378378033638,
- 0.028508435934782028,
- -0.11778145283460617,
- -0.08863815665245056,
- -0.010204474441707134,
- -0.060894764959812164,
- 0.009476332925260067,
- 0.04157695546746254,
- 0.022488869726657867,
- -0.0841241404414177,
- -0.017105504870414734,
- 0.0166420079767704,
- -0.10281531512737274,
- 0.010151791386306286,
- 0.048249464482069016,
- 0.050734229385852814,
- -0.030168769881129265,
- -0.0038552002515643835,
- 0.026678768917918205,
- -0.05824204906821251,
- -0.01799815706908703,
- 0.03396300971508026,
- -1.3488835826080958e-8,
- -0.01660706289112568,
- 0.01912856101989746,
- 0.12799209356307983,
- 0.05058294162154198,
- 0.059040617197752,
- 0.09890163689851761,
- -0.044100333005189896,
- 0.019792785868048668,
- -0.036418937146663666,
- 0.04789838194847107,
- -0.09238123148679733,
- 0.006340634543448687,
- -0.03186851739883423,
- 0.013979226350784302,
- -0.0645853653550148,
- 0.030493827536702156,
- -0.09173422306776047,
- 0.013632453978061676,
- 0.029708752408623695,
- -0.029802313074469566,
- -0.012539323419332504,
- -0.06666933000087738,
- 0.014915809966623783,
- -0.013869695365428925,
- 0.017183536663651466,
- 0.029383569955825806,
- 0.08077868074178696,
- 0.11734969913959503,
- -0.019040435552597046,
- -0.017655881121754646,
- 0.02219601906836033,
- 0.14417888224124908,
- -0.016914431005716324,
- -0.07989183813333511,
- -0.059518180787563324,
- -0.06356759369373322,
- -0.049133941531181335,
- -0.03384336829185486,
- -0.00984356738626957,
- -0.07594576478004456,
- -0.00026221724692732096,
- -0.045387763530015945,
- 0.1264258176088333,
- -0.06144743412733078,
- -0.09655926376581192,
- -0.013278583064675331,
- 0.03387823700904846,
- 0.0017981983255594969,
- 0.04386671259999275,
- -0.020557211712002754,
- -0.02589748054742813,
- 0.020437754690647125,
- 0.012921594083309174,
- 0.07985257357358932,
- 0.0716053768992424,
- 0.026509521529078484,
- 0.026173999533057213,
- -0.004251520149409771,
- -0.04083063080906868,
- 0.026684384793043137,
- 0.034330081194639206,
- 0.0451447032392025,
- -0.025327380746603012,
- -0.06744136661291122
- ]
- },
- {
- "keyword": "credential",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0765199139714241,
- 0.015841595828533173,
- -0.01725435070693493,
- -0.07178422808647156,
- -0.0905023142695427,
- -0.0008167627383954823,
- 0.05448729917407036,
- -0.034147877246141434,
- 0.012905365787446499,
- -0.014285906217992306,
- -0.038826074451208115,
- -0.10158946365118027,
- 0.015482179820537567,
- 0.002946578897535801,
- -0.05603080242872238,
- -0.028865395113825798,
- 0.0374741405248642,
- 0.013137721456587315,
- 0.015810992568731308,
- -0.10000741481781006,
- -0.06637601554393768,
- 0.012471456080675125,
- -0.0975043997168541,
- 0.021435357630252838,
- 0.08554457128047943,
- -0.04356931149959564,
- 0.028044696897268295,
- -0.02069888822734356,
- -0.029205402359366417,
- 0.005282202735543251,
- 0.012519116513431072,
- -0.06596720963716507,
- 0.03932411968708038,
- 0.05076449736952782,
- 0.028807029128074646,
- 0.04425704851746559,
- 0.018097378313541412,
- 0.057547710835933685,
- 0.0231500044465065,
- -0.013859723694622517,
- -0.04254942387342453,
- -0.0330670066177845,
- -0.009214184246957302,
- 0.00546923466026783,
- -0.00921222660690546,
- 0.0013073614099994302,
- 0.043880362063646317,
- -0.026804300025105476,
- -0.017326293513178825,
- 0.003480873303487897,
- 0.01827935315668583,
- -0.04350779205560684,
- -0.011768210679292679,
- 0.04981010779738426,
- -0.05159829556941986,
- 0.040088213980197906,
- 0.032063089311122894,
- 0.027287615463137627,
- 0.014971327036619186,
- 0.008107581175863743,
- -0.06892868876457214,
- 0.01695737987756729,
- -0.009943589568138123,
- 0.10142570734024048,
- 0.05166981741786003,
- -0.03942788019776344,
- -0.01136792916804552,
- 0.03462997451424599,
- -0.017724690958857536,
- -0.03891448304057121,
- -0.03624245896935463,
- -0.038468148559331894,
- -0.06838969141244888,
- -0.0202161967754364,
- 0.10273778438568115,
- -0.01328328438103199,
- 0.007172075565904379,
- -0.01699354685842991,
- 0.06208131089806557,
- -0.036915089935064316,
- 0.05059346929192543,
- 0.006164184771478176,
- -0.03690701350569725,
- 0.056290965527296066,
- 0.05331292375922203,
- 0.00394412549212575,
- 0.00035314777051098645,
- 0.00913635827600956,
- 0.04455527290701866,
- -0.010993906296789646,
- 0.07648886740207672,
- -0.06327375769615173,
- 0.03633936867117882,
- -0.0433441586792469,
- -0.028234465047717094,
- 0.05695521831512451,
- -0.04906006157398224,
- -0.012292997911572456,
- 0.011562816798686981,
- 0.13542449474334717,
- -0.07447086274623871,
- 0.021638691425323486,
- -0.06629423052072525,
- 0.013851811178028584,
- 0.016129108145833015,
- 0.07244272530078888,
- 0.037699099630117416,
- 0.024282509461045265,
- 0.07023885846138,
- 0.038386110216379166,
- -0.02072126232087612,
- 0.028359219431877136,
- -0.008001229725778103,
- 0.003382960567250848,
- 0.062147993594408035,
- 0.10070569068193436,
- -0.07835642248392105,
- 0.01591416634619236,
- 0.0680806040763855,
- -0.02252975106239319,
- 0.006989290937781334,
- 0.026999948546290398,
- -0.11307089775800705,
- -0.13013359904289246,
- -0.030041547492146492,
- -0.12457716464996338,
- -0.005796143319457769,
- -9.809922800894316e-34,
- -0.03118373453617096,
- 0.09247267991304398,
- 0.041420675814151764,
- 0.05933709442615509,
- 0.07247286289930344,
- 0.006042787805199623,
- 0.023934485390782356,
- 0.027827635407447815,
- -0.05875149369239807,
- 0.06610029190778732,
- -0.02505931816995144,
- 0.06793525069952011,
- -0.009952448308467865,
- -0.023355841636657715,
- -0.047225385904312134,
- 0.06076109781861305,
- -0.037293441593647,
- 0.05605612322688103,
- 0.004921921528875828,
- 0.06756279617547989,
- -0.04375400021672249,
- 0.040220193564891815,
- -0.00374623597599566,
- 0.05452624708414078,
- -0.006757958326488733,
- -0.048034220933914185,
- 0.0254689771682024,
- 0.05891549959778786,
- 0.072397381067276,
- 0.04195926710963249,
- 0.04737020656466484,
- -0.0032369166146963835,
- -0.012021980248391628,
- 0.0022213123738765717,
- 0.09292754530906677,
- 0.03276235982775688,
- -0.015766186639666557,
- -0.04508136212825775,
- 0.008131085895001888,
- -0.036112166941165924,
- -0.03966578096151352,
- -0.058724772185087204,
- 0.043186936527490616,
- -0.007333480753004551,
- -0.05936183035373688,
- -0.03980318456888199,
- 0.0724802240729332,
- 0.061076439917087555,
- 0.08327977359294891,
- 0.12005442380905151,
- -0.059141647070646286,
- -0.0011109542101621628,
- -0.04696675017476082,
- -0.014738237485289574,
- 0.0065238503739237785,
- -0.023629717528820038,
- 0.02886834926903248,
- 0.009668521583080292,
- -0.052340153604745865,
- -0.0789637565612793,
- -0.05361107736825943,
- 0.08606183528900146,
- -0.06339772045612335,
- 0.026239635422825813,
- -0.024640966206789017,
- -0.08099181950092316,
- -0.03364737704396248,
- -0.041775722056627274,
- 0.13362006843090057,
- -0.006993930321186781,
- -0.042493682354688644,
- 0.04074372723698616,
- -0.03772671893239021,
- -0.03837636113166809,
- -0.022907773032784462,
- 0.008269274607300758,
- 0.05053970590233803,
- -0.0028127620462328196,
- 0.009795592166483402,
- 0.11768263578414917,
- -0.025829965248703957,
- -0.026407914236187935,
- -0.005378718487918377,
- 0.05670410022139549,
- 0.08598431944847107,
- 0.03728951886296272,
- -0.02245435304939747,
- -0.007179900538176298,
- 0.04663454368710518,
- 0.018669452518224716,
- 0.015554023906588554,
- -0.04190121591091156,
- 0.10035566985607147,
- 0.10087909549474716,
- -0.059474725276231766,
- 3.802273083035224e-34,
- -0.006085950881242752,
- -0.09395049512386322,
- 0.04846683889627457,
- 0.08108600229024887,
- 0.028853092342615128,
- 0.042769305408000946,
- 0.009685922414064407,
- -0.04765904322266579,
- -0.07797113806009293,
- 0.027420897036790848,
- 0.08034595102071762,
- 0.033353522419929504,
- 0.04562419652938843,
- 0.008514393121004105,
- 0.0944930911064148,
- 0.0149462865665555,
- -0.007950698025524616,
- 0.02706247754395008,
- -0.05055834352970123,
- 0.01367307361215353,
- 0.0034566628746688366,
- -0.00230986624956131,
- 0.005440576933324337,
- 0.00896592065691948,
- 0.03997628390789032,
- 0.027952807024121284,
- -0.018779752776026726,
- 0.039222218096256256,
- -0.027655569836497307,
- 0.028485264629125595,
- -0.01883232779800892,
- 0.011052996851503849,
- -0.15417128801345825,
- 0.0826139822602272,
- -0.11112263798713684,
- -0.03292551636695862,
- 0.05564029514789581,
- 0.04624965041875839,
- -0.05330977216362953,
- 0.030488142743706703,
- 0.08904871344566345,
- -0.05126963555812836,
- 0.045773945748806,
- 0.02623336762189865,
- -0.012219568714499474,
- -0.03338934853672981,
- 0.004399064462631941,
- 0.019550761207938194,
- 0.02266906201839447,
- 0.031453054398298264,
- -0.10920023918151855,
- 0.012789764441549778,
- 0.02049049735069275,
- 0.00077128253178671,
- 0.010300558991730213,
- 0.0658748522400856,
- -0.03049730695784092,
- 0.03133678063750267,
- 0.10334146022796631,
- -0.012410791590809822,
- 0.08021319657564163,
- 0.035904355347156525,
- 0.001382850226946175,
- 0.12518371641635895,
- -0.041586436331272125,
- -0.013716811314225197,
- -0.016603386029601097,
- 0.04018152132630348,
- -0.10321587324142456,
- 0.04649418592453003,
- 0.0494903028011322,
- -0.04185638949275017,
- 0.023813635110855103,
- -0.10518099367618561,
- -0.042945489287376404,
- -0.08164110034704208,
- -0.050675176084041595,
- -0.0608067512512207,
- -0.08745898306369781,
- 0.11076702922582626,
- 0.024189405143260956,
- -0.004445376805961132,
- -0.047643031924963,
- 0.0908728539943695,
- -0.037414778023958206,
- -0.08815239369869232,
- -0.048972614109516144,
- -0.06333539634943008,
- 0.03844589740037918,
- -0.010470819659531116,
- -0.009916406124830246,
- 0.0164866391569376,
- 0.03173166885972023,
- -0.027637485414743423,
- 0.028555160388350487,
- -1.5435865918789204e-8,
- -0.036564480513334274,
- 0.025239842012524605,
- 0.03823127597570419,
- -0.06859541684389114,
- 0.010439863428473473,
- -0.05272302404046059,
- -0.10936248302459717,
- -0.07385500520467758,
- -0.006353522650897503,
- 0.07310983538627625,
- -0.026865964755415916,
- -0.1238415390253067,
- 0.026773277670145035,
- -0.026727333664894104,
- -0.03551224619150162,
- 0.01157501433044672,
- 0.02844889461994171,
- 0.022726479917764664,
- -0.00009928394138114527,
- 0.017328111454844475,
- 0.005408635828644037,
- -0.0027232568245381117,
- -0.010300259105861187,
- 0.050458770245313644,
- -0.03576165437698364,
- 0.046194788068532944,
- 0.04393399506807327,
- 0.11902417987585068,
- -0.044049326330423355,
- 0.027478868141770363,
- -0.09118848294019699,
- 0.08450289070606232,
- 0.00949934683740139,
- -0.13511914014816284,
- -0.08004914969205856,
- -0.02898610383272171,
- 0.015286914072930813,
- -0.037894830107688904,
- -0.01833433099091053,
- -0.015855079516768456,
- -0.04430510103702545,
- 0.019528884440660477,
- 0.06869006901979446,
- 0.005697759799659252,
- -0.0066568246111273766,
- 0.015496733598411083,
- -0.0077727921307086945,
- 0.056888461112976074,
- 0.03850647062063217,
- -0.009064246900379658,
- 0.00939999520778656,
- -0.056226227432489395,
- -0.019342390820384026,
- -0.020498082041740417,
- -0.03243136778473854,
- -0.03692211955785751,
- 0.02605327032506466,
- -0.07884253561496735,
- -0.06228932365775108,
- -0.011051811277866364,
- -0.003208764595910907,
- 0.022591229528188705,
- 0.043305449187755585,
- -0.0770726129412651
- ]
- },
- {
- "keyword": "subscriber",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0843990370631218,
- -0.06014712527394295,
- -0.011080496944487095,
- 0.003900690469890833,
- -0.016052013263106346,
- -0.0764458030462265,
- 0.10235563665628433,
- 0.03382204473018646,
- 0.039076462388038635,
- -0.016818279400467873,
- -0.025089619681239128,
- -0.03308243677020073,
- 0.041968561708927155,
- 0.020324936136603355,
- -0.02915993519127369,
- 0.05964667722582817,
- 0.02752857655286789,
- -0.0011977232061326504,
- -0.07785065472126007,
- -0.1369544416666031,
- -0.09299781173467636,
- 0.08027006685733795,
- -0.05068390443921089,
- 0.0489870086312294,
- 0.035488311201334,
- -0.052198514342308044,
- -0.01851334422826767,
- -0.03840833157300949,
- 0.0357491672039032,
- -0.02697557769715786,
- 0.10010353475809097,
- -0.04972900450229645,
- 0.11232934147119522,
- -0.01769240014255047,
- -0.02870022878050804,
- -0.002843288704752922,
- -0.04873651638627052,
- 0.008756423369050026,
- 0.01771882176399231,
- 0.038610052317380905,
- 0.017504017800092697,
- -0.097236767411232,
- -0.05316167324781418,
- -0.015293075703084469,
- -0.04050188884139061,
- 0.012800020165741444,
- 0.016356736421585083,
- -0.05706993117928505,
- 0.02245257794857025,
- 0.056899938732385635,
- 0.016414202749729156,
- -0.040101438760757446,
- -0.0327896811068058,
- -0.010121540166437626,
- 0.09446143358945847,
- 0.04440847039222717,
- -0.02706463821232319,
- -0.017298737540841103,
- 0.054881613701581955,
- -0.06756781041622162,
- 0.0538637638092041,
- -0.03921210393309593,
- -0.009405108168721199,
- 0.07925862818956375,
- 0.03996102511882782,
- 0.032298680394887924,
- 0.04537308216094971,
- 0.08041153103113174,
- 0.0027986459899693727,
- 0.016900857910513878,
- -0.031008325517177582,
- 0.07820777595043182,
- -0.05430827662348747,
- 0.058655235916376114,
- 0.02718518301844597,
- -0.06266675144433975,
- -0.026284070685505867,
- -0.05377670377492905,
- 0.0640367642045021,
- 0.05393880233168602,
- 0.02337886579334736,
- 0.004215347580611706,
- -0.03058912418782711,
- -0.03758471459150314,
- 0.04647131636738777,
- -0.0041314116679131985,
- 0.1036013662815094,
- -0.051887817680835724,
- -0.04981951788067818,
- 0.014825177378952503,
- -0.020845698192715645,
- 0.07192938774824142,
- 0.07354442775249481,
- -0.025422632694244385,
- -0.1442057490348816,
- 0.012365716509521008,
- 0.01728319562971592,
- 0.024805525317788124,
- -0.040038395673036575,
- 0.15353791415691376,
- -0.03932209685444832,
- 0.0410446934401989,
- 0.028674202039837837,
- 0.004316613543778658,
- -0.007766134571284056,
- -0.08249718695878983,
- -0.04465361312031746,
- 0.06776663661003113,
- -0.03524370864033699,
- 0.08517679572105408,
- 0.00219364115037024,
- 0.015386941842734814,
- 0.02451423741877079,
- -0.011004606261849403,
- 0.023409869521856308,
- 0.02221030369400978,
- 0.035721853375434875,
- 0.06901153922080994,
- 0.054243505001068115,
- 0.02410339191555977,
- 0.004598711151629686,
- -0.02549860253930092,
- 0.02001018449664116,
- -0.04558801278471947,
- 0.06717941164970398,
- -0.07806916534900665,
- -0.0024520237930119038,
- -5.41735755126067e-34,
- -0.010453849099576473,
- 0.004604847636073828,
- 0.04028577357530594,
- 0.004782545380294323,
- 0.028274402022361755,
- 0.020036334171891212,
- 0.001787977060303092,
- 0.023082399740815163,
- -0.040949735790491104,
- -0.053942304104566574,
- 0.040543828159570694,
- 0.08454594016075134,
- -0.0533800944685936,
- 0.02820410393178463,
- 0.0657251700758934,
- -0.09481614828109741,
- -0.04600611701607704,
- 0.02772257849574089,
- -0.12537254393100739,
- -0.05679333209991455,
- -0.033546749502420425,
- 0.03633807599544525,
- 0.011471908539533615,
- 0.08428947627544403,
- -0.061735037714242935,
- -0.06497684866189957,
- 0.0658949613571167,
- -0.017462309449911118,
- 0.019710643216967583,
- 0.014947189018130302,
- 0.005623296368867159,
- 0.03883453086018562,
- -0.021268127486109734,
- 0.011543838307261467,
- 0.012032142840325832,
- -0.1363837569952011,
- 0.02843649871647358,
- -0.03942057862877846,
- -0.03173092380166054,
- -0.07394217699766159,
- 0.0077009061351418495,
- 0.012524785473942757,
- -0.07870639115571976,
- 0.018340596929192543,
- 0.016183678060770035,
- -0.01692228764295578,
- 0.060527753084897995,
- -0.014721798710525036,
- 0.08869136869907379,
- -0.029460148885846138,
- 0.028490910306572914,
- -0.0363481231033802,
- -0.025952327996492386,
- -0.029545897617936134,
- 0.03316681087017059,
- -0.015566437505185604,
- -0.0020916839130222797,
- -0.0272819846868515,
- -0.018635835498571396,
- -0.04512364789843559,
- -0.019827019423246384,
- 0.008673843927681446,
- 0.08600156009197235,
- -0.04216388240456581,
- -0.048648517578840256,
- 0.011654339730739594,
- 0.01590343378484249,
- -0.08381522446870804,
- 0.00960103515535593,
- 0.02402428723871708,
- 0.05743308365345001,
- -0.0073962463065981865,
- 0.0185967069119215,
- 0.051182836294174194,
- -0.02608433924615383,
- 0.034017182886600494,
- -0.05786342918872833,
- 0.014965365640819073,
- -0.012484142556786537,
- 0.03162074089050293,
- -0.019447345286607742,
- 0.00313973193988204,
- -0.02686908282339573,
- 0.04181479290127754,
- 0.05284850671887398,
- 0.051800407469272614,
- 0.009742865338921547,
- -0.0198806244879961,
- 0.037257324904203415,
- 0.08884331583976746,
- -0.036320462822914124,
- -0.009503020904958248,
- 0.03657695651054382,
- -0.012789437547326088,
- 0.02619568072259426,
- 9.693620491849913e-34,
- -0.0018814591458067298,
- -0.028124868869781494,
- -0.03468059003353119,
- 0.06107538938522339,
- -0.03309504687786102,
- -0.06973696500062943,
- -0.044654883444309235,
- 0.013053607195615768,
- 0.04508903995156288,
- 0.04808593913912773,
- -0.01095740869641304,
- 0.0161460991948843,
- 0.03291267156600952,
- 0.04994787275791168,
- 0.04409748315811157,
- 0.0257621668279171,
- 0.13231201469898224,
- -0.01562228798866272,
- -0.1598571240901947,
- -0.05185671150684357,
- -0.07402569055557251,
- -0.027560273185372353,
- -0.03849110007286072,
- -0.022914035245776176,
- -0.021657761186361313,
- 0.04166196286678314,
- 0.1185937374830246,
- 0.11205501854419708,
- -0.027238143607974052,
- -0.04196704924106598,
- -0.004796011373400688,
- -0.0031774663366377354,
- -0.03018958866596222,
- -0.06257303804159164,
- -0.01834256947040558,
- 0.005310848820954561,
- 0.06311307102441788,
- 0.15005163848400116,
- -0.02234245277941227,
- -0.05217622220516205,
- 0.04597283899784088,
- 0.011391226202249527,
- 0.0030495875980705023,
- 0.038722436875104904,
- -0.005635080859065056,
- -0.04000924900174141,
- 0.07620029151439667,
- 0.014109001494944096,
- 0.05090314894914627,
- 0.0731869488954544,
- -0.17278353869915009,
- -0.05252634733915329,
- 0.07675120234489441,
- -0.046821605414152145,
- -0.016330590471625328,
- 0.05203567445278168,
- -0.03207479789853096,
- -0.017917703837156296,
- 0.1138937920331955,
- -0.021149834617972374,
- -0.046352315694093704,
- 0.010550912469625473,
- 0.024861490353941917,
- 0.02136511541903019,
- 0.01942761242389679,
- -0.03173680603504181,
- -0.0420018769800663,
- -0.009059194475412369,
- -0.022072678431868553,
- 0.02394925430417061,
- 0.023089086636900902,
- -0.05982931703329086,
- -0.0028299421537667513,
- -0.01853996329009533,
- 0.04264229163527489,
- -0.019728654995560646,
- -0.1026512086391449,
- 0.06824382394552231,
- -0.06885408610105515,
- -0.0039060937706381083,
- -0.06937006115913391,
- 0.004601896740496159,
- -0.05459001660346985,
- -0.01099375355988741,
- -0.047548700124025345,
- -0.06415563076734543,
- 0.07365071773529053,
- -0.08040186762809753,
- -0.006144227925688028,
- -0.05750279501080513,
- -0.03172004595398903,
- -0.006830997299402952,
- -0.04808609187602997,
- -0.059709906578063965,
- -0.01774667203426361,
- -1.628527712682626e-8,
- -0.02569747157394886,
- -0.007305772975087166,
- 0.02568245865404606,
- 0.03169984370470047,
- 0.1042519062757492,
- 0.07210007309913635,
- 0.0047485060058534145,
- -0.06360570341348648,
- 0.011830443516373634,
- 0.1236901581287384,
- -0.0007244946318678558,
- -0.05164210870862007,
- -0.002750656334683299,
- 0.050996147096157074,
- 0.15682964026927948,
- -0.08346983790397644,
- 0.03387721627950668,
- 0.0027962953317910433,
- -0.05500822886824608,
- -0.06049944460391998,
- 0.0003113565035164356,
- 0.022427789866924286,
- 0.04530058056116104,
- -0.08404244482517242,
- 0.01894468627870083,
- 0.053040407598018646,
- -0.04559476301074028,
- 0.0680643767118454,
- -0.06310521066188812,
- 0.006293168757110834,
- 0.011301269754767418,
- 0.10017053782939911,
- -0.0024908995255827904,
- -0.06030482053756714,
- 0.021786322817206383,
- -0.013987750746309757,
- 0.011666838079690933,
- -0.056837297976017,
- 0.00025036517763510346,
- -0.022865774109959602,
- 0.04170214384794235,
- 0.015208667144179344,
- 0.060880862176418304,
- 0.02610182575881481,
- -0.06875326484441757,
- 0.002468474442139268,
- 0.02121005766093731,
- -0.05977568402886391,
- 0.07922063022851944,
- -0.004353319760411978,
- 0.03758369758725166,
- -0.008164028637111187,
- 0.07030406594276428,
- 0.02914155274629593,
- 0.003236644435673952,
- -0.03143353387713432,
- -0.009571761824190617,
- 0.027711374685168266,
- -0.03754366934299469,
- 0.06872205436229706,
- 0.027842488139867783,
- 0.0299206729978323,
- 0.01883912831544876,
- -0.04688762128353119
- ]
- },
- {
- "keyword": "follower",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04156451299786568,
- -0.011235811747610569,
- 0.018842652440071106,
- -0.010799087584018707,
- -0.08707670867443085,
- -0.01763113960623741,
- 0.08988097310066223,
- 0.018180888146162033,
- 0.0568929985165596,
- 0.027151815593242645,
- 0.04015402868390083,
- -0.012650251388549805,
- 0.07043911516666412,
- -0.03521086275577545,
- -0.0274367555975914,
- 0.00838193017989397,
- 0.00778648816049099,
- 0.03704790025949478,
- -0.07107768952846527,
- -0.0654761791229248,
- -0.19280846416950226,
- -0.009477848187088966,
- -0.030558565631508827,
- 0.07942282408475876,
- -0.032627206295728683,
- -0.03994719684123993,
- 0.013251743279397488,
- -0.065523162484169,
- -0.01734793372452259,
- -0.07521575689315796,
- -0.00040591327706351876,
- -0.05485996603965759,
- 0.038263168185949326,
- 0.04790753498673439,
- -0.05573640391230583,
- 0.06355221569538116,
- 0.0759633257985115,
- 0.036505408585071564,
- -0.036825425922870636,
- -0.019572336226701736,
- -0.012858269736170769,
- -0.045986976474523544,
- -0.018304018303751945,
- -0.018424930050969124,
- 0.007369376253336668,
- -0.010224494151771069,
- -0.02936331368982792,
- 0.014123104512691498,
- -0.026724450290203094,
- -0.019383559003472328,
- -0.060060545802116394,
- -0.04806159436702728,
- -0.04360441491007805,
- 0.04401511698961258,
- 0.026798496022820473,
- 0.04180508479475975,
- 0.04989248514175415,
- 0.016042986884713173,
- 0.09009379148483276,
- 0.002631432143971324,
- 0.06351812183856964,
- 0.0027446893509477377,
- -0.04563648998737335,
- 0.015714239329099655,
- -0.04290195181965828,
- -0.016026576980948448,
- 0.006452812813222408,
- -0.011805959977209568,
- -0.023584002628922462,
- 0.04407179355621338,
- -0.0037659406661987305,
- 0.026470927521586418,
- 0.026035716757178307,
- 0.030215978622436523,
- -0.02869446948170662,
- -0.024460915476083755,
- 0.015224728733301163,
- -0.11969879269599915,
- 0.08099427074193954,
- -0.04700273647904396,
- -0.017656855285167694,
- -0.023113150149583817,
- -0.03675933554768562,
- 0.07484017312526703,
- 0.02005498856306076,
- 0.036737922579050064,
- 0.00848589837551117,
- -0.03785649687051773,
- -0.01346539705991745,
- -0.006824008654803038,
- 0.010280783288180828,
- 0.07453461736440659,
- 0.058451805263757706,
- -0.03532697632908821,
- -0.12827956676483154,
- 0.023959746584296227,
- -0.031223919242620468,
- -0.04649246484041214,
- -0.11221735179424286,
- 0.27678608894348145,
- -0.035356245934963226,
- 0.04205751419067383,
- 0.030349984765052795,
- 0.034420546144247055,
- 0.025958377867937088,
- 0.02219993993639946,
- -0.00958818756043911,
- -0.01512988656759262,
- -0.014063626527786255,
- 0.014782530255615711,
- -0.0463709831237793,
- -0.020699549466371536,
- -0.07387901097536087,
- -0.0028504962101578712,
- 0.051467567682266235,
- -0.021400224417448044,
- 0.015184398740530014,
- 0.03797779977321625,
- -0.06702450662851334,
- 0.04075195640325546,
- 0.04002383351325989,
- -0.012754382565617561,
- -0.00015909620560705662,
- 0.06702516973018646,
- -0.04094303026795387,
- -0.058597322553396225,
- 0.03830675035715103,
- -5.35064310406372e-33,
- 0.0103434007614851,
- 0.03040407784283161,
- 0.029820788651704788,
- -0.01300009060651064,
- 0.03509856387972832,
- 0.01966915838420391,
- 0.00807938352227211,
- -0.006895910948514938,
- -0.10172681510448456,
- -0.05647680163383484,
- 0.04043117165565491,
- -0.0070222048088908195,
- 0.023279694840312004,
- 0.030719155445694923,
- 0.012467941269278526,
- -0.04223913326859474,
- 0.10409915447235107,
- 0.030056346207857132,
- 0.0026620111893862486,
- -0.0299886055290699,
- -0.031070973724126816,
- -0.004151749890297651,
- -0.05558193847537041,
- 0.0250466950237751,
- 0.020584816113114357,
- -0.11480739712715149,
- 0.028878573328256607,
- 0.012801827862858772,
- 0.03659410402178764,
- 0.04561188444495201,
- 0.001492685405537486,
- 0.023200877010822296,
- -0.00888681598007679,
- 0.005145946517586708,
- -0.022781504318118095,
- -0.06491157412528992,
- 0.03143272176384926,
- -0.11217182874679565,
- -0.024834217503666878,
- -0.08455662429332733,
- -0.02561291493475437,
- 0.02253536880016327,
- 0.033429380506277084,
- -0.04018966481089592,
- -0.11543025076389313,
- 0.008115059696137905,
- 0.08629359304904938,
- -0.009512192569673061,
- 0.015248610638082027,
- 0.053640350699424744,
- -0.012105274945497513,
- -0.018640028312802315,
- -0.02006107196211815,
- 0.02000848576426506,
- -0.027057575061917305,
- -0.07362856715917587,
- 0.006270509213209152,
- 0.041362032294273376,
- 0.017772279679775238,
- -0.041920021176338196,
- 0.04798976704478264,
- 0.0966889038681984,
- 0.002406028099358082,
- 0.05820527300238609,
- -0.012735425494611263,
- -0.07691995799541473,
- -0.05177212506532669,
- -0.04360711947083473,
- 0.05264581739902496,
- 0.0383162684738636,
- -0.017182735726237297,
- 0.035799380391836166,
- 0.009003955870866776,
- -0.0024023540318012238,
- -0.010807113721966743,
- -0.03891746699810028,
- -0.058922745287418365,
- -0.027319392189383507,
- 0.015957746654748917,
- 0.003334359498694539,
- -0.03585882484912872,
- -0.03668802231550217,
- -0.039870329201221466,
- 0.05017317831516266,
- 0.02184671349823475,
- -0.007905518636107445,
- -0.018491677939891815,
- -0.03739956393837929,
- 0.03200989216566086,
- 0.015418360941112041,
- 0.0036382153630256653,
- 0.029699426144361496,
- 0.05625838041305542,
- 0.10989134013652802,
- -0.058252789080142975,
- 4.1728433149458826e-33,
- -0.01657721772789955,
- 0.023508310317993164,
- 0.07732917368412018,
- 0.031317900866270065,
- 0.08360807597637177,
- -0.03645453602075577,
- -0.07843571156263351,
- 0.0009485333575867116,
- -0.04402934014797211,
- -0.00419921288266778,
- -0.06227453798055649,
- 0.027380352839827538,
- 0.02864314243197441,
- 0.02372143790125847,
- 0.08122322708368301,
- -0.026166334748268127,
- 0.10488366335630417,
- -0.03779241815209389,
- -0.022213827818632126,
- -0.02821218967437744,
- -0.07696285098791122,
- -0.08082538098096848,
- -0.04705389216542244,
- -0.026329103857278824,
- 0.021260330453515053,
- 0.017588330432772636,
- 0.1283004879951477,
- 0.10261484980583191,
- -0.059939052909612656,
- -0.061374444514513016,
- 0.07483386993408203,
- -0.047079943120479584,
- -0.031978774815797806,
- -0.10103227198123932,
- -0.029855696484446526,
- 0.10757768899202347,
- -0.019425516948103905,
- 0.10067374259233475,
- -0.07921887934207916,
- 0.018455609679222107,
- 0.0314631350338459,
- 0.004118275362998247,
- 0.10825410485267639,
- -0.025085004046559334,
- -0.021272508427500725,
- 0.04109756648540497,
- 0.1343182772397995,
- 0.054354216903448105,
- 0.009173817001283169,
- 0.023134974762797356,
- -0.011255580000579357,
- -0.003614482469856739,
- 0.07816652953624725,
- 0.05811141058802605,
- 0.02639504335820675,
- 0.03919387236237526,
- -0.03193508833646774,
- 0.0014897038927301764,
- 0.0036413392517715693,
- -0.09397130459547043,
- -0.025042539462447166,
- -0.0008863072143867612,
- 0.03764844313263893,
- 0.08764901757240295,
- -0.01637040078639984,
- -0.04327123239636421,
- -0.012305941432714462,
- 0.0863075777888298,
- -0.046504631638526917,
- -0.0029623303562402725,
- -0.014833841472864151,
- -0.021983487531542778,
- 0.022570589557290077,
- 0.0364496186375618,
- 0.04182802885770798,
- -0.12256520986557007,
- -0.10016442090272903,
- -0.058922190219163895,
- 0.000059604531998047605,
- 0.01873275265097618,
- -0.02180519327521324,
- -0.02045951783657074,
- 0.018476156517863274,
- -0.018574228510260582,
- 0.029589233919978142,
- -0.0684223473072052,
- 0.03227465599775314,
- 0.1056227907538414,
- 0.04748258367180824,
- 0.029276380315423012,
- 0.07104305922985077,
- 0.0323556624352932,
- -0.029388125985860825,
- -0.07097209990024567,
- -0.03649181127548218,
- -1.1664884169704237e-8,
- -0.038162682205438614,
- -0.03025807812809944,
- 0.0020698809530586004,
- 0.020485134795308113,
- 0.07438280433416367,
- -0.0059295520186424255,
- 0.025198938325047493,
- -0.052068304270505905,
- -0.025863343849778175,
- 0.10597958415746689,
- 0.011327922344207764,
- 0.03245369717478752,
- 0.02612806111574173,
- -0.0050998833030462265,
- 0.07838618755340576,
- -0.05089631304144859,
- 0.002991453744471073,
- -0.029469983652234077,
- -0.050784025341272354,
- -0.026815081015229225,
- -0.03915552422404289,
- -0.01970902644097805,
- 0.0028537313919514418,
- -0.06163209304213524,
- -0.00664212740957737,
- 0.006048868410289288,
- -0.04702548682689667,
- 0.03720228374004364,
- 0.024051010608673096,
- 0.017771387472748756,
- 0.014834059402346611,
- 0.06408407539129257,
- -0.06480710208415985,
- -0.022541943937540054,
- 0.019430814310908318,
- 0.030534926801919937,
- -0.044525183737277985,
- 0.00035252058296464384,
- -0.007534259930253029,
- 0.10561592876911163,
- 0.0665297582745552,
- 0.02774466946721077,
- 0.08160755038261414,
- 0.08079858869314194,
- -0.02211780659854412,
- 0.009349877946078777,
- 0.09496171772480011,
- -0.10615670680999756,
- -0.005635378882288933,
- -0.10883470624685287,
- -0.015787454321980476,
- -0.05909413844347,
- 0.04244789853692055,
- 0.07567787170410156,
- 0.025462975725531578,
- -0.016417227685451508,
- 0.046766385436058044,
- 0.0397304929792881,
- -0.047792863100767136,
- 0.028614498674869537,
- 0.07276587188243866,
- 0.011465886607766151,
- -0.041693899780511856,
- -0.021088577806949615
- ]
- },
- {
- "keyword": "fan",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04273415729403496,
- 0.007512169890105724,
- 0.01190024521201849,
- -0.008471125736832619,
- 0.01527785137295723,
- -0.008913818746805191,
- 0.13116677105426788,
- 0.005613293498754501,
- 0.109122633934021,
- 0.07555573433637619,
- 0.040799014270305634,
- -0.06453671306371689,
- 0.041521016508340836,
- -0.05444600060582161,
- 0.00005839109144289978,
- -0.01824822463095188,
- 0.005127453710883856,
- -0.04919702187180519,
- -0.10938356071710587,
- -0.056051481515169144,
- -0.09837067127227783,
- 0.016344811767339706,
- -0.019550923258066177,
- 0.05547894164919853,
- -0.0019350367365404963,
- 0.016760820522904396,
- 0.006824623327702284,
- 0.04649117961525917,
- -0.008209647610783577,
- -0.020537450909614563,
- 0.003874075599014759,
- 0.07328580319881439,
- 0.012736068107187748,
- 0.027513863518834114,
- 0.0026004586834460497,
- -0.01028463151305914,
- -0.07496625930070877,
- 0.028423067182302475,
- 0.013948293402791023,
- 0.054372984915971756,
- -0.0068033370189368725,
- -0.059868261218070984,
- 0.06349486112594604,
- 0.05122065544128418,
- 0.03173211216926575,
- 0.07514973729848862,
- -0.008279162459075451,
- -0.001221377868205309,
- 0.09480740875005722,
- 0.06348297744989395,
- 0.023095106706023216,
- 0.014563262462615967,
- -0.012503434903919697,
- -0.09523890912532806,
- 0.05622924864292145,
- 0.040114156901836395,
- 0.00014322316565085202,
- -0.01160235796123743,
- -0.033898238092660904,
- 0.01684088446199894,
- 0.13543012738227844,
- -0.004700657911598682,
- -0.1044059470295906,
- -0.026947053149342537,
- 0.048470377922058105,
- -0.001875716377981007,
- -0.009180307388305664,
- 0.03260614350438118,
- 0.02508619800209999,
- -0.04285791143774986,
- 0.03695637732744217,
- 0.00952580850571394,
- 0.008672053925693035,
- -0.004707038402557373,
- -0.012867568992078304,
- 0.0024711189325898886,
- -0.005858069751411676,
- -0.06679586321115494,
- 0.06020483374595642,
- 0.0021439525298774242,
- 0.0009433032246306539,
- -0.07362320274114609,
- -0.02223113365471363,
- 0.00230594864115119,
- -0.030016573145985603,
- -0.015832558274269104,
- 0.06125950068235397,
- -0.004264983348548412,
- -0.03536813333630562,
- -0.012354755774140358,
- -0.002798547502607107,
- 0.00865954626351595,
- 0.08326830714941025,
- -0.01577773131430149,
- -0.10366078466176987,
- 0.03929124400019646,
- -0.020190401002764702,
- 0.005326438695192337,
- -0.10604949295520782,
- 0.24858973920345306,
- -0.000665451749227941,
- 0.040504857897758484,
- -0.01040673814713955,
- 0.02325231395661831,
- 0.03604642674326897,
- 0.05246666818857193,
- -0.05720587819814682,
- 0.03837842121720314,
- -0.0356111004948616,
- -0.004097508266568184,
- -0.08531143516302109,
- 0.011571312323212624,
- -0.013103940524160862,
- 0.051296912133693695,
- 0.014137637801468372,
- -0.020985357463359833,
- -0.006999121978878975,
- 0.011528538540005684,
- 0.024743588641285896,
- -0.001743611297570169,
- 0.07702284306287766,
- 0.06582479923963547,
- -0.02311243861913681,
- 0.04368837550282478,
- -0.011334899812936783,
- -0.11771852523088455,
- -0.0665547251701355,
- -4.9688983748983054e-33,
- -0.004026712849736214,
- -0.017239544540643692,
- 0.04300256073474884,
- 0.08446381986141205,
- 0.01914936676621437,
- 0.06397154182195663,
- 0.022521978244185448,
- -0.051038481295108795,
- -0.041363801807165146,
- 0.010632259771227837,
- 0.030250370502471924,
- 0.04962581768631935,
- -0.015782451257109642,
- 0.0040869633667171,
- 0.11692380160093307,
- -0.008230626583099365,
- 0.0150375347584486,
- -0.07316556572914124,
- -0.03463375195860863,
- -0.07406461238861084,
- 0.01027331780642271,
- 0.06252887845039368,
- -0.018777990713715553,
- 0.15407942235469818,
- -0.08010341972112656,
- -0.07520592957735062,
- 0.013336672447621822,
- -0.048895206302404404,
- -0.008326021954417229,
- 0.021704629063606262,
- -0.043796636164188385,
- 0.01946420781314373,
- 0.00262188958004117,
- 0.02177325449883938,
- -0.05112894997000694,
- -0.12810616195201874,
- 0.014557071030139923,
- -0.046222470700740814,
- -0.024310488253831863,
- -0.01796494983136654,
- 0.022069338709115982,
- -0.00015345111023634672,
- -0.07464805990457535,
- -0.035053834319114685,
- -0.04615866020321846,
- 0.058272380381822586,
- 0.030400821939110756,
- -0.015372552908957005,
- 0.00222218781709671,
- 0.016413351520895958,
- 0.05820181220769882,
- -0.030468150973320007,
- -0.05381115525960922,
- 0.012092004530131817,
- -0.01367130782455206,
- -0.014092152938246727,
- 0.028481824323534966,
- -0.018312089145183563,
- -0.0009137972956523299,
- -0.03820367902517319,
- -0.020626217126846313,
- 0.15651804208755493,
- 0.006090156268328428,
- 0.010334070771932602,
- -0.0028544978704303503,
- 0.03365182876586914,
- 0.0639365017414093,
- 0.0322449691593647,
- 0.021284567192196846,
- -0.030682571232318878,
- -0.05073695257306099,
- 0.021879980340600014,
- -0.024148745462298393,
- 0.0004247912729624659,
- -0.04046148434281349,
- 0.023047754541039467,
- -0.0031386041082441807,
- 0.037754420191049576,
- -0.0686921700835228,
- -0.041634563356637955,
- -0.06105982884764671,
- -0.051732778549194336,
- 0.0037182800006121397,
- -0.057937510311603546,
- 0.06996587663888931,
- -0.021872524172067642,
- -0.030289312824606895,
- -0.07259270548820496,
- 0.04304485768079758,
- -0.038755252957344055,
- -0.029264023527503014,
- 0.030683724209666252,
- 0.12595734000205994,
- 0.05627020075917244,
- -0.05549777299165726,
- 3.3279328730633624e-33,
- -0.07964969426393509,
- -0.07291093468666077,
- 0.02337411791086197,
- 0.07049614191055298,
- -0.0073354230262339115,
- -0.033137593418359756,
- -0.02154596522450447,
- 0.030928440392017365,
- 0.007524800952523947,
- 0.01660037599503994,
- -0.08459372073411942,
- -0.04797230660915375,
- -0.0246884785592556,
- 0.025767888873815536,
- 0.015523425303399563,
- -0.034424811601638794,
- 0.04213852062821388,
- -0.014685717411339283,
- -0.07477215677499771,
- 0.03242815285921097,
- -0.07123161107301712,
- -0.06743720918893814,
- 0.0473877377808094,
- -0.06540165096521378,
- -0.05743265524506569,
- -0.008089374750852585,
- 0.034875303506851196,
- 0.07896031439304352,
- -0.01410636305809021,
- -0.04715277999639511,
- 0.11638251692056656,
- -0.011400293558835983,
- 0.030018508434295654,
- -0.0170655008405447,
- 0.07844018936157227,
- 0.06279259920120239,
- -0.02617308497428894,
- -0.013373552821576595,
- -0.012944706715643406,
- 0.006580651737749577,
- -0.0013021118938922882,
- -0.0029801286291331053,
- 0.0316433422267437,
- 0.06674689799547195,
- -0.03941355645656586,
- 0.034255579113960266,
- 0.042870402336120605,
- -0.012596245855093002,
- 0.06709808856248856,
- 0.011989887803792953,
- 0.017898650839924812,
- -0.020846998319029808,
- 0.01625862531363964,
- 0.05075974017381668,
- -0.020336046814918518,
- 0.020709797739982605,
- -0.043544311076402664,
- 0.05179963633418083,
- -0.00022620122763328254,
- -0.023857083171606064,
- 0.01392289437353611,
- -0.03189561888575554,
- -0.05312664806842804,
- 0.029914656654000282,
- -0.057219281792640686,
- 0.05737963691353798,
- -0.012080325745046139,
- -0.05080399289727211,
- 0.00882379524409771,
- 0.006704356055706739,
- -0.04099665582180023,
- -0.00004719013304566033,
- -0.06844105571508408,
- 0.10034617781639099,
- -0.019239800050854683,
- -0.03853018581867218,
- -0.04433906823396683,
- 0.02277536690235138,
- -0.008025201968848705,
- 0.0027641316410154104,
- -0.11295957118272781,
- -0.0021099746227264404,
- -0.03293537721037865,
- 0.021745067089796066,
- 0.06930873543024063,
- -0.09166789054870605,
- 0.003112536622211337,
- 0.050116103142499924,
- 0.047891631722450256,
- -0.03337152302265167,
- 0.06878713518381119,
- -0.0030104992911219597,
- 0.08188366144895554,
- -0.07702905684709549,
- -0.0051392000168561935,
- -1.2804502347307789e-8,
- -0.0280495323240757,
- -0.02516903728246689,
- -0.003863436868414283,
- -0.04125719144940376,
- 0.06999851018190384,
- 0.04717182368040085,
- -0.007336521986871958,
- -0.13406918942928314,
- 0.05557925999164581,
- 0.10651916265487671,
- 0.08567419648170471,
- 0.07965413480997086,
- -0.03130006417632103,
- 0.03062642738223076,
- 0.07620061933994293,
- -0.07473431527614594,
- 0.006121855694800615,
- 0.049480732530355453,
- 0.011160050518810749,
- 0.046479444950819016,
- -0.04855221137404442,
- 0.016674818471074104,
- 0.05570034310221672,
- -0.031681906431913376,
- 0.03061317838728428,
- 0.04166685789823532,
- -0.08753718435764313,
- 0.0696253776550293,
- -0.04881160706281662,
- 0.011542857624590397,
- 0.06981845945119858,
- 0.036433685570955276,
- -0.0449417345225811,
- -0.04584858939051628,
- -0.01836267113685608,
- -0.04499943554401398,
- 0.027643809095025063,
- -0.006848826073110104,
- 0.042188845574855804,
- -0.10722988098859787,
- 0.010602095164358616,
- -0.012496719136834145,
- -0.023787306621670723,
- -0.0055030155926942825,
- 0.010711177252233028,
- -0.05697651579976082,
- 0.08413579314947128,
- -0.0827704593539238,
- -0.004917599726468325,
- -0.08778722584247589,
- 0.016015449538826942,
- 0.022566450759768486,
- 0.015340986661612988,
- 0.09214314073324203,
- -0.014338410459458828,
- -0.023821135982871056,
- -0.012830344960093498,
- 0.03496912121772766,
- -0.09338206797838211,
- 0.006195889785885811,
- 0.14947198331356049,
- 0.10274282842874527,
- -0.024590643122792244,
- 0.028006773442029953
- ]
- },
- {
- "keyword": "supporter",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.010355482809245586,
- 0.02768818847835064,
- 0.014915946871042252,
- -0.0665351152420044,
- 0.08666381984949112,
- -0.01671869494020939,
- 0.15412092208862305,
- 0.08914904296398163,
- 0.0581430122256279,
- 0.007382764481008053,
- 0.047805365175008774,
- -0.11343706399202347,
- 0.044631488621234894,
- -0.008008467964828014,
- -0.05070682242512703,
- 0.02131621167063713,
- -0.03325466811656952,
- -0.1007019579410553,
- -0.12975816428661346,
- -0.02100503072142601,
- -0.1235661581158638,
- -0.022026585415005684,
- 0.003164219669997692,
- 0.03078448213636875,
- -0.01623581536114216,
- -0.03685377538204193,
- 0.07034583389759064,
- 0.06265716254711151,
- 0.04611074924468994,
- 0.0016829720698297024,
- 0.013192136771976948,
- -0.0382191464304924,
- 0.053344372659921646,
- 0.01058817096054554,
- -0.03954622894525528,
- 0.023733902722597122,
- -0.051488667726516724,
- 0.014084676280617714,
- -0.011838577687740326,
- 0.010503730736672878,
- -0.007554337382316589,
- -0.05837314948439598,
- -0.031633805483579636,
- 0.0054200561717152596,
- 0.05380778759717941,
- 0.05667860060930252,
- 0.03909247741103172,
- 0.032978981733322144,
- -0.0013703062431886792,
- 0.022035162895917892,
- 0.03435475379228592,
- -0.0006746600265614688,
- 0.013352910056710243,
- -0.12376881390810013,
- 0.07728505879640579,
- -0.005718158092349768,
- -0.036264169961214066,
- 0.03373704478144646,
- -0.020485803484916687,
- -0.01555198710411787,
- 0.13622650504112244,
- -0.024351855739951134,
- -0.07871927320957184,
- -0.029044143855571747,
- -0.048390794545412064,
- -0.018744904547929764,
- -0.004337677266448736,
- -0.013257546350359917,
- 0.026063719764351845,
- -0.0204934012144804,
- 0.024962525814771652,
- 0.02535228431224823,
- 0.06265637278556824,
- -0.03961575776338577,
- -0.05485072731971741,
- -0.032672371715307236,
- 0.01855430006980896,
- -0.0641859695315361,
- 0.09851281344890594,
- 0.012918238528072834,
- -0.012424733489751816,
- -0.030041420832276344,
- -0.02233264222741127,
- -0.0021956658456474543,
- -0.0665740966796875,
- -0.0025381608866155148,
- -0.007076711859554052,
- 0.0018201501807197928,
- -0.027800945565104485,
- 0.02247581072151661,
- -0.004331336822360754,
- 0.030356314033269882,
- 0.12095829099416733,
- 0.00022379751317203045,
- -0.06574008613824844,
- -0.01608985662460327,
- 0.02612435258924961,
- 0.025860555469989777,
- -0.16153930127620697,
- 0.24697057902812958,
- 0.009259018115699291,
- 0.07558737695217133,
- 0.019347108900547028,
- -0.03082830272614956,
- 0.04054860770702362,
- 0.02872290462255478,
- -0.07750967890024185,
- 0.05346931144595146,
- -0.005074929445981979,
- 0.021984480321407318,
- -0.03752812370657921,
- -0.003160431981086731,
- -0.0037611122243106365,
- 0.03720583766698837,
- -0.02015485242009163,
- -0.036035578697919846,
- -0.004134641028940678,
- -0.01342235691845417,
- 0.002845398848876357,
- 0.012432532384991646,
- 0.07428067922592163,
- 0.03341969847679138,
- -0.05442603677511215,
- 0.017136935144662857,
- 0.023441322147846222,
- -0.12041357159614563,
- -0.049392860382795334,
- -5.3204589805284964e-33,
- -0.011915394105017185,
- -0.016806988045573235,
- -0.00840980838984251,
- -0.0024636932648718357,
- -0.01318297814577818,
- 0.027506476268172264,
- 0.01533528696745634,
- -0.014826949685811996,
- -0.0505923368036747,
- -0.02307932823896408,
- -0.004836198408156633,
- 0.05121540278196335,
- 0.01637950912117958,
- -0.01857198029756546,
- 0.0873771607875824,
- 0.02619505301117897,
- -0.02806449867784977,
- 0.013081303797662258,
- -0.03974314033985138,
- -0.06496988236904144,
- -0.03947960212826729,
- 0.11395152658224106,
- -0.0374707356095314,
- 0.09854666888713837,
- -0.05916883423924446,
- -0.12573444843292236,
- 0.027313323691487312,
- -0.026594437658786774,
- -0.014266271144151688,
- -0.008881953544914722,
- 0.02709328755736351,
- 0.011845704168081284,
- -0.0360255092382431,
- -0.060736075043678284,
- -0.006332945078611374,
- -0.08292180299758911,
- 0.05009334906935692,
- -0.0958583876490593,
- -0.08000893145799637,
- -0.04759608581662178,
- -0.007705794647336006,
- 0.006129799876362085,
- 0.0024760300293564796,
- -0.02228476293385029,
- -0.01201386284083128,
- -0.002299846615642309,
- 0.0370718277990818,
- -0.021388813853263855,
- -0.04979787394404411,
- 0.02288159728050232,
- 0.02351493015885353,
- -0.03432079777121544,
- -0.04449281468987465,
- 0.020445430651307106,
- -0.011397326365113258,
- -0.024743536487221718,
- -0.02615947276353836,
- 0.032308004796504974,
- 0.00027960477746091783,
- -0.09299860894680023,
- -0.02809210866689682,
- 0.07875332236289978,
- 0.008081542328000069,
- -0.010732736438512802,
- -0.06835953146219254,
- -0.0060139065608382225,
- 0.0106838783249259,
- -0.03724225237965584,
- 0.012718422338366508,
- -0.03402065858244896,
- 0.015110267326235771,
- 0.02213915064930916,
- -0.02088196761906147,
- 0.009884401224553585,
- 0.02833179570734501,
- -0.013495943509042263,
- -0.043140511959791183,
- 0.06276039779186249,
- 0.008450471796095371,
- 0.007694433443248272,
- -0.054757557809352875,
- -0.0869532972574234,
- 0.03798272833228111,
- -0.08425110578536987,
- 0.032025448977947235,
- 0.06020761653780937,
- -0.027705801650881767,
- -0.05415419861674309,
- 0.06995423883199692,
- -0.028160126879811287,
- -0.09201237559318542,
- 0.026030421257019043,
- 0.04345334321260452,
- 0.02552054449915886,
- 0.00023159774718806148,
- 3.4051599131765096e-33,
- -0.0214774701744318,
- 0.0022114403545856476,
- 0.05209074169397354,
- 0.02320859022438526,
- 0.05844529718160629,
- -0.026183051988482475,
- 0.004301512613892555,
- -0.012318579480051994,
- -0.013735044747591019,
- 0.07809321582317352,
- -0.04063492640852928,
- -0.03345130756497383,
- 0.031777169555425644,
- 0.041900500655174255,
- -0.017377428710460663,
- -0.00397458765655756,
- -0.00597454234957695,
- 0.0665959045290947,
- -0.0428125225007534,
- 0.021898524835705757,
- -0.07126310467720032,
- -0.08034972846508026,
- 0.058617547154426575,
- 0.019499003887176514,
- -0.03922155126929283,
- -0.009725676849484444,
- 0.14047513902187347,
- 0.051148541271686554,
- -0.0009583915234543383,
- -0.05946892872452736,
- 0.09026192128658295,
- -0.029434463009238243,
- 0.0016427157679572701,
- -0.07062710076570511,
- 0.045391179621219635,
- 0.07170787453651428,
- -0.05237113684415817,
- -0.02411123365163803,
- -0.018865318968892097,
- 0.01994219608604908,
- 0.01762673258781433,
- -0.009795562364161015,
- 0.016814405098557472,
- 0.09012175351381302,
- -0.04459325224161148,
- 0.007876494899392128,
- 0.06909069418907166,
- 0.0024455792736262083,
- 0.06175341457128525,
- 0.023127680644392967,
- -0.01797562465071678,
- -0.020426642149686813,
- 0.014239107258617878,
- 0.10168986767530441,
- 0.07639986276626587,
- 0.06926289200782776,
- -0.0364144928753376,
- 0.01003376953303814,
- -0.049898888915777206,
- 0.007546604610979557,
- -0.0067662703804671764,
- 0.0020016583148390055,
- -0.0021834063809365034,
- 0.07353092730045319,
- 0.002760036149993539,
- 0.015325912274420261,
- -0.08995790034532547,
- 0.007990803569555283,
- 0.007940695621073246,
- -0.028994042426347733,
- 0.012575422413647175,
- -0.016490310430526733,
- -0.07247835397720337,
- 0.10475119948387146,
- -0.0040239859372377396,
- -0.008850125595927238,
- -0.057196006178855896,
- 0.029725011438131332,
- 0.015760695561766624,
- 0.01687205582857132,
- -0.0944787859916687,
- -0.004858795553445816,
- 0.037456534802913666,
- 0.014307618141174316,
- 0.05010244995355606,
- -0.04660918191075325,
- 0.053648363798856735,
- 0.06790447235107422,
- 0.05287226289510727,
- -0.011635327711701393,
- 0.07331984490156174,
- 0.03841427341103554,
- 0.058828942477703094,
- -0.04178836941719055,
- 0.004582539200782776,
- -1.185393028180215e-8,
- -0.026454288512468338,
- -0.027372634038329124,
- -0.04021013155579567,
- 0.0027994210831820965,
- 0.06875646114349365,
- 0.04344845563173294,
- -0.0025489984545856714,
- -0.12776142358779907,
- 0.012303778901696205,
- 0.08111928403377533,
- 0.03764869645237923,
- 0.0322754941880703,
- -0.06163324415683746,
- -0.0373636819422245,
- 0.08535949140787125,
- -0.038359060883522034,
- 0.02721247263252735,
- 0.05017983913421631,
- -0.030409691855311394,
- 0.03774738684296608,
- -0.01100993249565363,
- 0.003993301652371883,
- 0.02833617851138115,
- 0.028260257095098495,
- 0.021812016144394875,
- 0.04170530289411545,
- -0.07151932269334793,
- 0.09805241972208023,
- -0.05912983790040016,
- -0.04175645485520363,
- 0.0006906379130668938,
- 0.02920631691813469,
- -0.08037254959344864,
- -0.022877704352140427,
- 0.0177648663520813,
- -0.00024576939176768064,
- 0.0010345830814912915,
- -0.01600591093301773,
- 0.05080243945121765,
- 0.07628778368234634,
- -0.015333030372858047,
- -0.04507352039217949,
- 0.0209233108907938,
- 0.006794870365411043,
- 0.03249802812933922,
- 0.023927932605147362,
- -0.0317230150103569,
- -0.05153333395719528,
- -0.05265114828944206,
- -0.08329765498638153,
- -0.02975461632013321,
- -0.005908856634050608,
- -0.026428939774632454,
- 0.11922554671764374,
- 0.03336026519536972,
- -0.04295136779546738,
- -0.03345678746700287,
- 0.07700831443071365,
- -0.06627175956964493,
- 0.005219658371061087,
- 0.19220833480358124,
- 0.11513479799032211,
- 0.0022962980438023806,
- 0.036418307572603226
- ]
- },
- {
- "keyword": "member",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.09062273055315018,
- -0.02807425521314144,
- 0.0007687766337767243,
- 0.005167604889720678,
- -0.01499229110777378,
- -0.016849106177687645,
- 0.16186092793941498,
- 0.03626752644777298,
- -0.01115023996680975,
- -0.04471670091152191,
- 0.03984902799129486,
- -0.07106541097164154,
- 0.061024561524391174,
- -0.0288058090955019,
- -0.035942140966653824,
- -0.03832492232322693,
- -0.07421475648880005,
- 0.07633396983146667,
- -0.06492086499929428,
- -0.00670666666701436,
- -0.11351761221885681,
- -0.05125056952238083,
- 0.006293792277574539,
- 0.05686134472489357,
- 0.019280537962913513,
- -0.03812292590737343,
- 0.035157687962055206,
- 0.02346641756594181,
- 0.03803098946809769,
- -0.06709928810596466,
- -0.031227272003889084,
- 0.020415661856532097,
- 0.05824306979775429,
- 0.012213725596666336,
- -0.01781216263771057,
- 0.005177154205739498,
- 0.05114235356450081,
- -0.01330048218369484,
- -0.013443686999380589,
- -0.002222229726612568,
- -0.05187680944800377,
- 0.011401589959859848,
- -0.0900951474905014,
- -0.00042017633677460253,
- 0.020130211487412453,
- 0.02256164886057377,
- 0.031464673578739166,
- -0.028369374573230743,
- -0.001001653610728681,
- 0.02677992731332779,
- 0.04088514670729637,
- -0.0014805932296440005,
- -0.01413231436163187,
- 0.03548009321093559,
- 0.04583869129419327,
- 0.010027233511209488,
- -0.008373881690204144,
- -0.04094051197171211,
- -0.003999444656074047,
- -0.033672526478767395,
- 0.03622337430715561,
- -0.01675855554640293,
- -0.07127970457077026,
- 0.012869776226580143,
- -0.03620671480894089,
- -0.024865085259079933,
- 0.007204790133982897,
- -0.0007562767714262009,
- 0.010472869500517845,
- -0.08749033510684967,
- 0.010729467496275902,
- 0.04428580030798912,
- 0.01707790605723858,
- 0.011246385984122753,
- 0.03730633854866028,
- 0.013894022442400455,
- 0.0587264709174633,
- -0.028841836377978325,
- 0.0978638306260109,
- 0.019788255915045738,
- 0.012561785988509655,
- 0.006726454012095928,
- -0.009775778278708458,
- 0.005877350922673941,
- 0.05199628695845604,
- -0.012092758901417255,
- 0.024828273802995682,
- -0.00824231281876564,
- -0.07949817180633545,
- 0.00868062861263752,
- 0.03215766325592995,
- 0.0975458100438118,
- 0.11052220314741135,
- -0.024545367807149887,
- -0.008947256952524185,
- 0.022895677015185356,
- -0.001019712071865797,
- 0.06070241332054138,
- -0.0787588506937027,
- 0.27231472730636597,
- -0.02267749421298504,
- 0.04572875797748566,
- -0.005478455685079098,
- -0.06242753192782402,
- -0.04554916173219681,
- 0.011028570123016834,
- -0.0017599345883354545,
- 0.02536703646183014,
- 0.04420410096645355,
- -0.0005702227354049683,
- -0.04767712205648422,
- -0.007847328670322895,
- -0.0938679650425911,
- -0.020354101434350014,
- 0.05200173333287239,
- -0.029163679108023643,
- -0.017764974385499954,
- 0.004901747684925795,
- -0.017456719651818275,
- -0.05115489661693573,
- 0.020303785800933838,
- -0.00024246318207588047,
- -0.005524114705622196,
- 0.039111435413360596,
- -0.0024731112644076347,
- -0.05737316235899925,
- -0.016845397651195526,
- -5.018908680028086e-33,
- -0.037717241793870926,
- 0.01870397850871086,
- -0.0018081344896927476,
- -0.040207669138908386,
- 0.009520618245005608,
- 0.02358575537800789,
- -0.014674410223960876,
- 0.0048383502289652824,
- -0.08687322586774826,
- -0.0016117643099278212,
- -0.059804096817970276,
- 0.004602197557687759,
- 0.02015663869678974,
- -0.022153927013278008,
- 0.09746165573596954,
- -0.057975273579359055,
- 0.02424175664782524,
- -0.008385613560676575,
- -0.02144245244562626,
- -0.030673349276185036,
- -0.03372395783662796,
- 0.08508528023958206,
- 0.02715752087533474,
- 0.08242609351873398,
- -0.03151529282331467,
- -0.03949764370918274,
- -0.03959456831216812,
- -0.03697681799530983,
- -0.004179439507424831,
- 0.03351563215255737,
- 0.033718593418598175,
- 0.013986591249704361,
- -0.06924935430288315,
- 0.03349713981151581,
- -0.019059283658862114,
- -0.028844712302088737,
- 0.015802482143044472,
- -0.08258045464754105,
- -0.047164760529994965,
- -0.06178317219018936,
- -0.011323230341076851,
- -0.011796174570918083,
- 0.019792865961790085,
- -0.011216904036700726,
- -0.036503832787275314,
- 0.02149253711104393,
- 0.11084767431020737,
- 0.009451567195355892,
- 0.062006473541259766,
- 0.06044264882802963,
- -0.022755146026611328,
- 0.0002732835419010371,
- -0.07652442157268524,
- 0.020592939108610153,
- -0.04253498092293739,
- -0.05885211378335953,
- 0.011737355031073093,
- 0.008769873529672623,
- -0.02789893001317978,
- -0.07437946647405624,
- 0.03518735244870186,
- 0.10746448487043381,
- 0.008646250702440739,
- 0.014922804199159145,
- -0.12297267466783524,
- -0.0445430651307106,
- -0.002538100816309452,
- -0.07983546704053879,
- 0.05895284190773964,
- -0.028079107403755188,
- -0.04356754571199417,
- 0.02401522919535637,
- 0.013315893709659576,
- 0.010149520821869373,
- -0.07353006303310394,
- -0.04409588500857353,
- -0.0040481616742908955,
- 0.049890998750925064,
- -0.04189194366335869,
- 0.08640632778406143,
- -0.08641767501831055,
- -0.04454486444592476,
- -0.007285087835043669,
- -0.0052057248540222645,
- 0.0048265596851706505,
- -0.021220849826931953,
- -0.009903410449624062,
- -0.07784892618656158,
- 0.030061058700084686,
- 0.042732905596494675,
- 0.00894591398537159,
- -0.02992149442434311,
- 0.10595079511404037,
- 0.10662868618965149,
- -0.0023083114065229893,
- 3.180810571508337e-33,
- 0.0029355932492762804,
- 0.0006376758101396263,
- 0.056699689477682114,
- -0.04324813187122345,
- 0.0938391461968422,
- 0.005161122884601355,
- 0.008687066845595837,
- 0.007338447030633688,
- -0.10072766989469528,
- 0.018176337704062462,
- -0.01615147292613983,
- 0.027107467874884605,
- 0.009000493213534355,
- 0.0016211821930482984,
- 0.05757570266723633,
- 0.05996588617563248,
- 0.021714746952056885,
- 0.008327051997184753,
- -0.008393489755690098,
- -0.004129668232053518,
- -0.0830933004617691,
- -0.007171017583459616,
- -0.0016898781759664416,
- -0.008284784853458405,
- -0.024369334802031517,
- 0.05474843829870224,
- 0.15083184838294983,
- 0.056738462299108505,
- 0.00010949243005597964,
- 0.014002262614667416,
- 0.07509531825780869,
- -0.007615904789417982,
- -0.08057093620300293,
- -0.026293005794286728,
- -0.028844159096479416,
- 0.089808888733387,
- 0.02401154860854149,
- 0.008862258866429329,
- -0.046634525060653687,
- -0.019646048545837402,
- 0.09063272178173065,
- 0.0559820793569088,
- 0.03941090404987335,
- 0.06203434243798256,
- -0.0017393938032910228,
- -0.020774878561496735,
- 0.06939961016178131,
- -0.010172017849981785,
- -0.06370171159505844,
- 0.09349457919597626,
- -0.07952642440795898,
- -0.03180447220802307,
- 0.09577389806509018,
- -0.019174009561538696,
- 0.04273957759141922,
- 0.037901371717453,
- -0.0493994876742363,
- -0.03261803835630417,
- 0.08609072864055634,
- 0.005790418479591608,
- -0.007186914794147015,
- -0.008362780325114727,
- -0.008510209619998932,
- 0.07718086242675781,
- -0.030581193044781685,
- -0.06664052605628967,
- -0.03712695837020874,
- 0.06606210023164749,
- -0.0526588000357151,
- -0.0052730850875377655,
- -0.055301349610090256,
- -0.08149141073226929,
- -0.027344785630702972,
- 0.059913523495197296,
- -0.08401892334222794,
- -0.07659457623958588,
- -0.0857551172375679,
- 0.023602349683642387,
- -0.025325575843453407,
- 0.014966489747166634,
- -0.07397972792387009,
- -0.027373138815164566,
- 0.020757418125867844,
- 0.03550231084227562,
- 0.015544941648840904,
- -0.07033674418926239,
- 0.09588247537612915,
- 0.08599786460399628,
- 0.017949393019080162,
- 0.014146273024380207,
- 0.05939847603440285,
- -0.01606355607509613,
- 0.027837516739964485,
- -0.024871179834008217,
- -0.03620824217796326,
- -1.181649000869811e-8,
- -0.04569375887513161,
- 0.007234461139887571,
- 0.009888631291687489,
- 0.03994766250252724,
- 0.1422271430492401,
- 0.004046327900141478,
- -0.04813435673713684,
- -0.044027041643857956,
- 0.002188490703701973,
- 0.1111508309841156,
- 0.0306275375187397,
- -0.014238915406167507,
- 0.04283878952264786,
- -0.06394974142313004,
- 0.08649227023124695,
- -0.05285550653934479,
- -0.13847996294498444,
- 0.04675314947962761,
- -0.05602693185210228,
- -0.06143736094236374,
- -0.033021748065948486,
- 0.014109263196587563,
- 0.029429256916046143,
- -0.006109823472797871,
- -0.016718832775950432,
- 0.016029974445700645,
- -0.04313676059246063,
- 0.14214108884334564,
- -0.016457008197903633,
- 0.014050096273422241,
- -0.06541628390550613,
- 0.13049903512001038,
- -0.06936163455247879,
- -0.0061527276411652565,
- 0.03742466866970062,
- -0.015636414289474487,
- -0.09261634945869446,
- 0.028500806540250778,
- -0.026757003739476204,
- 0.10308729857206345,
- 0.034728746861219406,
- -0.027777286246418953,
- 0.03372568264603615,
- 0.03816160559654236,
- 0.01753329485654831,
- 0.07095605134963989,
- -0.035158827900886536,
- -0.007100445684045553,
- 0.020194528624415398,
- -0.013109938241541386,
- 0.005673233885318041,
- 0.021956034004688263,
- -0.04483537748456001,
- 0.11144866794347763,
- -0.007178609725087881,
- 0.0015430557541549206,
- -0.015694497153162956,
- 0.044111065566539764,
- -0.058808885514736176,
- -0.08506903797388077,
- 0.0562785342335701,
- 0.0043468470685184,
- -0.07550862431526184,
- 0.0029010081198066473
- ]
- },
- {
- "keyword": "participant",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0010454037692397833,
- 0.05011650174856186,
- -0.01523357629776001,
- -0.004016510210931301,
- -0.011851317249238491,
- 0.009350653737783432,
- 0.16012059152126312,
- 0.030293365940451622,
- 0.03506097197532654,
- 0.011819541454315186,
- 0.029971765354275703,
- -0.06072796508669853,
- -0.04939912632107735,
- 0.06027495861053467,
- -0.02526189759373665,
- 0.025642355903983116,
- 0.06709399819374084,
- 0.05183171480894089,
- -0.004903798922896385,
- 0.014864369295537472,
- -0.0621131956577301,
- -0.06419955939054489,
- -0.0012116626603528857,
- 0.033125828951597214,
- -0.08258466422557831,
- 0.0025847528595477343,
- 0.0015552595723420382,
- -0.0243198461830616,
- 0.03956251218914986,
- -0.07600303739309311,
- -0.0019217876251786947,
- 0.009104358032345772,
- 0.00801321305334568,
- 0.035456109791994095,
- -0.07603202760219574,
- 0.03891206160187721,
- -0.035180702805519104,
- -0.0017668661894276738,
- -0.017437346279621124,
- 0.028380218893289566,
- 0.0007115975604392588,
- -0.04186858609318733,
- -0.026459159329533577,
- -0.04351605102419853,
- 0.0798477828502655,
- -0.018513325601816177,
- 0.06183822825551033,
- 0.04478122293949127,
- -0.021489985287189484,
- 0.024668559432029724,
- -0.06296653300523758,
- -0.0479956716299057,
- 0.005897313356399536,
- 0.009978696703910828,
- 0.013209541328251362,
- -0.0010069039417430758,
- 0.013637447729706764,
- -0.11950286477804184,
- -0.032193977385759354,
- -0.008097919635474682,
- 0.02440238557755947,
- -0.005123678129166365,
- -0.10055862367153168,
- 0.04008164629340172,
- -0.0029101665131747723,
- -0.02652372047305107,
- 0.00625991728156805,
- -0.04680723324418068,
- 0.03328607603907585,
- -0.06360919773578644,
- 0.04557105526328087,
- 0.006065423134714365,
- 0.02344531938433647,
- 0.03615117445588112,
- 0.06497539579868317,
- -0.06122288480401039,
- 0.0002909054746851325,
- -0.0545249842107296,
- 0.08956430852413177,
- 0.031375449150800705,
- -0.0029904001858085394,
- -0.08499468117952347,
- 0.036749545484781265,
- -0.014337118715047836,
- -0.0025753797963261604,
- -0.04090959578752518,
- -0.03432853892445564,
- 0.06760282814502716,
- -0.025398025289177895,
- 0.0035726288333535194,
- -0.10133417695760727,
- 0.0864543542265892,
- 0.00298360176384449,
- -0.020246215164661407,
- -0.06673956662416458,
- 0.017304599285125732,
- -0.03882158547639847,
- 0.01656998135149479,
- 0.06713604927062988,
- 0.29738274216651917,
- -0.008555607870221138,
- 0.09376025199890137,
- -0.024108698591589928,
- 0.0308883897960186,
- -0.07472629845142365,
- -0.056267425417900085,
- -0.050587575882673264,
- -0.04163724556565285,
- -0.019893398508429527,
- 0.019200662150979042,
- -0.00590397696942091,
- -0.01942944899201393,
- -0.030490897595882416,
- 0.052159979939460754,
- 0.022866440936923027,
- 0.05042795464396477,
- -0.014751764014363289,
- 0.06381285190582275,
- -0.006976192817091942,
- -0.0004443027719389647,
- 0.04978008568286896,
- 0.014704201370477676,
- -0.024423016235232353,
- -0.04361218214035034,
- -0.025004180148243904,
- -0.05882095918059349,
- 0.045352399349212646,
- -8.332612928658714e-33,
- 0.006223199889063835,
- -0.10077119618654251,
- 0.026795657351613045,
- 0.07037633657455444,
- 0.020771605893969536,
- 0.031416118144989014,
- -0.04454054310917854,
- -0.0346653126180172,
- -0.04586826637387276,
- -0.021978255361318588,
- 0.014887852594256401,
- -0.07467791438102722,
- 0.04297836869955063,
- 0.04279274865984917,
- 0.011106009595096111,
- -0.04100653901696205,
- -0.03318308666348457,
- 0.07234905660152435,
- -0.11963425576686859,
- 0.004562715534120798,
- 0.0037634894251823425,
- 0.04994858056306839,
- -0.04808802902698517,
- 0.07208967208862305,
- -0.06739867478609085,
- 0.0009716805652715266,
- 0.01638202928006649,
- -0.03793974965810776,
- 0.028488945215940475,
- -0.002211952582001686,
- 0.06572675704956055,
- -0.00637934822589159,
- -0.030833197757601738,
- 0.0038942284882068634,
- 0.02976173907518387,
- 0.03498402610421181,
- 0.030743805691599846,
- -0.06189773231744766,
- 0.02961326204240322,
- -0.06905972957611084,
- -0.020382754504680634,
- -0.00397736020386219,
- 0.05125797539949417,
- -0.001584264449775219,
- -0.09263598173856735,
- -0.020489072427153587,
- 0.011087198741734028,
- 0.016702214255928993,
- -0.00024577294243499637,
- 0.09547582268714905,
- -0.016284175217151642,
- 0.004143563099205494,
- 0.023306649178266525,
- -0.05279073491692543,
- 0.032410334795713425,
- -0.0005489937611855567,
- 0.0371527224779129,
- 0.014950024895370007,
- -0.016537552699446678,
- -0.04641590639948845,
- 0.009912470355629921,
- 0.08691000938415527,
- -0.09173991531133652,
- 0.04689409211277962,
- 0.010977997444570065,
- -0.05628091096878052,
- -0.0024411994963884354,
- -0.10452697426080704,
- 0.10688493400812149,
- -0.051010821014642715,
- -0.09453772753477097,
- 0.04781496152281761,
- 0.05433233082294464,
- -0.02201358787715435,
- -0.06664321571588516,
- -0.014958180487155914,
- -0.02623688615858555,
- 0.0004910078714601696,
- -0.0012205312959849834,
- 0.02565516158938408,
- -0.023331953212618828,
- -0.040339160710573196,
- 0.012567751109600067,
- -0.04404004290699959,
- -0.07192707806825638,
- -0.00219188560731709,
- -0.05286679416894913,
- -0.10776209086179733,
- -0.011292998678982258,
- 0.036533012986183167,
- -0.023525403812527657,
- -0.0007612874615006149,
- 0.032207608222961426,
- 0.1045822724699974,
- 0.03802991658449173,
- 5.6208940307635644e-33,
- 0.04408469423651695,
- 0.0007815350545570254,
- 0.015181176364421844,
- 0.0390169620513916,
- 0.17467637360095978,
- -0.03732074424624443,
- 0.05399209260940552,
- -0.043745409697294235,
- 0.0005359623464755714,
- 0.0716327428817749,
- -0.031252503395080566,
- -0.012514094822108746,
- 0.07478942722082138,
- 0.0006934160483069718,
- 0.048857513815164566,
- 0.04694569855928421,
- -0.01749063841998577,
- 0.04660433530807495,
- -0.046327121555805206,
- 0.04485089331865311,
- -0.02423430047929287,
- 0.019543837755918503,
- 0.07023549824953079,
- -0.09289297461509705,
- -0.03022715263068676,
- 0.011662681587040424,
- 0.16915611922740936,
- -0.007731275167316198,
- -0.010149650275707245,
- -0.025592036545276642,
- -0.02059147134423256,
- -0.06344753503799438,
- -0.029482629150152206,
- -0.048471033573150635,
- -0.006655797827988863,
- 0.1368502825498581,
- 0.05719245970249176,
- -0.0375128872692585,
- -0.06449481099843979,
- -0.03756791353225708,
- 0.0929529070854187,
- 0.015515374951064587,
- 0.005176985636353493,
- 0.11847106367349625,
- 0.008334397338330746,
- 0.010374787263572216,
- -0.03910587728023529,
- -0.018012024462223053,
- 0.048290401697158813,
- 0.005257332231849432,
- -0.08968264609575272,
- 0.008969330228865147,
- -0.00006137815216789022,
- -0.0596020370721817,
- 0.062245696783065796,
- 0.013060520403087139,
- -0.031214185059070587,
- -0.0703900158405304,
- 0.027178918942809105,
- 0.031612999737262726,
- 0.024786747992038727,
- 0.02015908807516098,
- -0.03692063316702843,
- 0.09718018770217896,
- 0.0454203300178051,
- 0.027257148176431656,
- -0.05941419675946236,
- 0.05157642811536789,
- -0.03305087983608246,
- 0.00891856662929058,
- 0.07007177174091339,
- -0.012701654806733131,
- -0.03795666992664337,
- -0.02835640124976635,
- 0.026437783613801003,
- -0.05338149890303612,
- -0.07434555143117905,
- 0.004644230008125305,
- -0.018608640879392624,
- 0.033882662653923035,
- -0.0822029858827591,
- -0.00042937055695801973,
- 0.02386520989239216,
- 0.04106032848358154,
- 0.041145287454128265,
- -0.005365264136344194,
- 0.026931961998343468,
- 0.04481237009167671,
- -0.07420773804187775,
- 0.011246493086218834,
- 0.0344451479613781,
- 0.04872571676969528,
- 0.01328340359032154,
- -0.08803589642047882,
- -0.004102058708667755,
- -1.4063791020646477e-8,
- -0.037808481603860855,
- 0.021161852404475212,
- -0.03920615091919899,
- -0.011536997742950916,
- 0.03289607912302017,
- -0.0025256669614464045,
- -0.019421830773353577,
- -0.07860156148672104,
- -0.007656939327716827,
- 0.054008256644010544,
- 0.008793001063168049,
- -0.03453078866004944,
- 0.10950411856174469,
- -0.01180914044380188,
- 0.1133686974644661,
- -0.037297360599040985,
- -0.09872138500213623,
- 0.05342523008584976,
- -0.10595373064279556,
- -0.02644168958067894,
- 0.05098556727170944,
- 0.0023712245747447014,
- 0.002299151150509715,
- 0.02687384933233261,
- -0.030968453735113144,
- 0.0305768009275198,
- -0.05623617023229599,
- 0.10614616423845291,
- -0.04905492439866066,
- 0.01204721350222826,
- -0.02441132441163063,
- 0.06797953695058823,
- -0.02643476612865925,
- -0.06180043891072273,
- 0.05204915255308151,
- -0.00353059615008533,
- -0.003072005230933428,
- 0.01335803885012865,
- 0.03579811379313469,
- -0.015948349609971046,
- -0.05277501419186592,
- -0.011040532030165195,
- 0.008877130225300789,
- 0.07408156245946884,
- 0.07325775921344757,
- 0.03520386293530464,
- -0.060791052877902985,
- -0.05176180601119995,
- 0.001190923503600061,
- 0.028220653533935547,
- -0.03618721291422844,
- -0.10034487396478653,
- 0.02808152139186859,
- 0.03886260837316513,
- -0.042459648102521896,
- 0.04092549905180931,
- 0.0318722240626812,
- 0.002028120681643486,
- -0.039847493171691895,
- 0.017707746475934982,
- 0.08020643889904022,
- 0.049181289970874786,
- -0.020317601040005684,
- 0.03657011315226555
- ]
- },
- {
- "keyword": "contributor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.005310324486345053,
- 0.02988571487367153,
- -0.00027978711295872927,
- 0.026250436902046204,
- 0.013925882056355476,
- 0.042404383420944214,
- 0.0943710133433342,
- 0.030400080606341362,
- -0.03716158866882324,
- 0.023427940905094147,
- -0.004848498851060867,
- -0.03689489886164665,
- -0.03417455404996872,
- 0.020249348133802414,
- -0.03938399627804756,
- 0.03416016697883606,
- 0.018821705132722855,
- 0.04012564569711685,
- -0.08067566156387329,
- -0.04470912739634514,
- -0.137835294008255,
- 0.002421577926725149,
- 0.04012090340256691,
- 0.04455455392599106,
- 0.07306566089391708,
- -0.0224093496799469,
- -0.013207245618104935,
- 0.06565295904874802,
- 0.05909045413136482,
- -0.0776195228099823,
- 0.025296274572610855,
- 0.0049659619107842445,
- 0.08691148459911346,
- 0.023286065086722374,
- -0.04133065789937973,
- -0.007725224830210209,
- 0.04587583243846893,
- 0.03575318679213524,
- -0.05706344172358513,
- -0.04373333975672722,
- -0.012491906993091106,
- -0.027627263218164444,
- -0.03212593123316765,
- -0.002654206706210971,
- 0.014885538257658482,
- -0.008331242017447948,
- 0.04666054621338844,
- -0.03205924108624458,
- -0.02282208576798439,
- 0.00783447828143835,
- 0.04151912406086922,
- -0.004519002977758646,
- -0.037093330174684525,
- -0.027309438213706017,
- 0.02716701477766037,
- -0.04201352968811989,
- -0.05010313540697098,
- 0.021952882409095764,
- 0.03083123080432415,
- -0.04001647233963013,
- 0.05051408335566521,
- 0.034204546362161636,
- -0.0904012992978096,
- 0.038598742336034775,
- 0.050301484763622284,
- 0.00030951789813116193,
- 0.042254671454429626,
- -0.06718151271343231,
- -0.1024489775300026,
- -0.0759706124663353,
- 0.023034946992993355,
- 0.043692588806152344,
- -0.030615903437137604,
- -0.08294497430324554,
- 0.018283473327755928,
- -0.03924083337187767,
- -0.009924473240971565,
- -0.025938065722584724,
- 0.07793480902910233,
- -0.03798786550760269,
- 0.05114268511533737,
- 0.11258486658334732,
- -0.041550442576408386,
- 0.034953631460666656,
- 0.02155482769012451,
- 0.02195434272289276,
- 0.016681531444191933,
- 0.048208680003881454,
- -0.002451396780088544,
- 0.004287407733500004,
- 0.011290325783193111,
- 0.061671916395425797,
- 0.166158065199852,
- -0.029349815100431442,
- -0.04587123915553093,
- 0.026836009696125984,
- -0.026751209050416946,
- -0.048156484961509705,
- -0.13460630178451538,
- 0.2392401546239853,
- -0.07310634851455688,
- 0.011693102307617664,
- -0.060742270201444626,
- -0.04219251126050949,
- -0.006917439866811037,
- 0.008615934289991856,
- -0.016953062266111374,
- 0.049987517297267914,
- 0.007563471328467131,
- 0.05409809947013855,
- -0.009176054038107395,
- 0.0038347772788256407,
- -0.06647495925426483,
- 0.04572723060846329,
- 0.023537255823612213,
- -0.0053206137381494045,
- -0.008524447679519653,
- 0.011063502170145512,
- 0.026989538222551346,
- 0.00043575072777457535,
- 0.05368844047188759,
- 0.040501922369003296,
- -0.034914396703243256,
- 0.0014710414689034224,
- -0.04746997728943825,
- -0.029252998530864716,
- -0.046872567385435104,
- -5.7288991864010855e-33,
- 0.04277576506137848,
- 0.010474187321960926,
- 0.07568221539258957,
- 0.05117781087756157,
- 0.0872613936662674,
- -0.02717013470828533,
- 0.025608457624912262,
- -0.054689452052116394,
- -0.060981135815382004,
- -0.07838055491447449,
- 0.009104691445827484,
- 0.088340163230896,
- 0.03377718850970268,
- 0.037193041294813156,
- 0.045069120824337006,
- -0.013908937573432922,
- 0.008495897985994816,
- 0.017994744703173637,
- -0.06662050634622574,
- -0.007003976963460445,
- 0.010687246918678284,
- 0.017440201714634895,
- -0.0025744629092514515,
- 0.06848463416099548,
- 0.051361750811338425,
- -0.10129333287477493,
- -0.00463456753641367,
- -0.0006342551205307245,
- 0.06309899687767029,
- 0.05268020182847977,
- 0.01240211259573698,
- -0.028864964842796326,
- -0.059810806065797806,
- -0.06603637337684631,
- -0.013545677997171879,
- -0.06776729971170425,
- -0.02836778201162815,
- -0.06765174865722656,
- 0.014388269744813442,
- -0.058619480580091476,
- -0.020439643412828445,
- 0.03828071057796478,
- -0.04373837262392044,
- -0.01929960586130619,
- 0.03810853138566017,
- -0.015116192400455475,
- 0.12054868787527084,
- 0.041604746133089066,
- 0.05954408273100853,
- 0.0714392438530922,
- -0.007085959427058697,
- -0.027231886982917786,
- -0.054878074675798416,
- -0.02028094418346882,
- -0.03881152346730232,
- -0.02439856342971325,
- -0.006152847316116095,
- -0.002376264426857233,
- -0.02300419844686985,
- -0.025238145142793655,
- 0.038645390421152115,
- 0.11196495592594147,
- -0.06455256044864655,
- -0.021291440352797508,
- -0.03474951162934303,
- 0.02340996079146862,
- 0.007636722642928362,
- -0.015250181779265404,
- -0.03276953846216202,
- 0.0126291299238801,
- -0.04222702234983444,
- 0.004664990119636059,
- 0.04788575693964958,
- 0.04057440534234047,
- -0.03293640539050102,
- -0.06084206700325012,
- -0.09350636601448059,
- 0.01570841111242771,
- 0.03532034531235695,
- 0.0642550140619278,
- -0.07020813971757889,
- -0.024487243965268135,
- 0.0064161960035562515,
- -0.027574623003602028,
- -0.002511102007701993,
- -0.03255961090326309,
- -0.012229652144014835,
- -0.025798946619033813,
- -0.015507214702665806,
- 0.03309455141425133,
- 0.017660953104496002,
- -0.008315426297485828,
- 0.017623325809836388,
- 0.04513712599873543,
- -0.1053505465388298,
- 4.1046032964867564e-33,
- -0.10051266849040985,
- -0.027869269251823425,
- 0.010395203717052937,
- 0.03549722954630852,
- 0.020023470744490623,
- -0.0029021811205893755,
- -0.09451377391815186,
- 0.0030216483864933252,
- 0.04790082201361656,
- -0.03626802936196327,
- 0.0272839218378067,
- 0.005426856689155102,
- 0.021787863224744797,
- 0.016800982877612114,
- 0.013001875951886177,
- 0.0032409692648798227,
- -0.004795546643435955,
- 0.000373523827875033,
- -0.07528446614742279,
- -0.010513123124837875,
- -0.03852648288011551,
- -0.0016083323862403631,
- 0.04893740266561508,
- -0.04995761811733246,
- -0.019950080662965775,
- 0.025433283299207687,
- 0.11441321671009064,
- 0.09352664649486542,
- -0.014161673374474049,
- 0.011947478167712688,
- 0.012987216003239155,
- 0.04735292121767998,
- -0.15278246998786926,
- -0.12639468908309937,
- -0.07027942687273026,
- 0.13211582601070404,
- -0.04229562729597092,
- 0.06283064931631088,
- -0.035584092140197754,
- 0.0018530073575675488,
- 0.07473627477884293,
- 0.053879015147686005,
- 0.047298915684223175,
- 0.09269004315137863,
- -0.01777772232890129,
- 0.04521194100379944,
- 0.048388686031103134,
- -0.02681809291243553,
- 0.0022190825548022985,
- 0.06251350790262222,
- -0.05578558146953583,
- 0.03210026025772095,
- 0.009916180744767189,
- 0.040072325617074966,
- 0.04262952506542206,
- 0.0689314603805542,
- 0.004647295456379652,
- 0.020300377160310745,
- 0.0996311828494072,
- -0.04551387578248978,
- 0.011403965763747692,
- 0.049784377217292786,
- -0.004021456930786371,
- -0.016204508021473885,
- 0.02675778418779373,
- -0.030248673632740974,
- -0.05331509932875633,
- 0.029871588572859764,
- 0.04912913963198662,
- -0.07143297791481018,
- 0.08353665471076965,
- -0.0163321103900671,
- -0.01324842032045126,
- -0.006750014610588551,
- 0.024631192907691002,
- -0.029285242781043053,
- -0.0564873181283474,
- 0.12443152815103531,
- -0.060007061809301376,
- -0.004952409770339727,
- -0.04379401355981827,
- -0.05951613932847977,
- -0.011319320648908615,
- 0.08421321213245392,
- 0.014670399948954582,
- -0.028896184638142586,
- 0.0398845449090004,
- -0.044241297990083694,
- 0.01827988214790821,
- 0.03883251175284386,
- -0.007676180452108383,
- 0.041439201682806015,
- 0.00992613285779953,
- -0.039774563163518906,
- 0.020568067207932472,
- -1.2873577759364707e-8,
- -0.015741536393761635,
- 0.06424786150455475,
- -0.09255701303482056,
- 0.018605191260576248,
- 0.07211128622293472,
- -0.004807278048247099,
- 0.03326232731342316,
- -0.0004714415408670902,
- 0.04612521454691887,
- 0.15209105610847473,
- 0.03766847401857376,
- -0.04722106456756592,
- -0.00630317023023963,
- -0.021775543689727783,
- 0.09387834370136261,
- -0.06485963612794876,
- -0.07018467038869858,
- 0.0024941402953118086,
- -0.10665928572416306,
- -0.06949052959680557,
- 0.0686565637588501,
- -0.01716175675392151,
- 0.08761437982320786,
- -0.09942970424890518,
- 0.03827535733580589,
- 0.034911755472421646,
- -0.06117971986532211,
- 0.09406878054141998,
- -0.05311208590865135,
- 0.0026561173144727945,
- -0.03331417590379715,
- 0.05396099016070366,
- -0.12202826887369156,
- -0.054405055940151215,
- -0.0067202989012002945,
- -0.004917186219245195,
- -0.033876221626996994,
- -0.053491413593292236,
- 0.03505357727408409,
- 0.04365178197622299,
- -0.01640276610851288,
- -0.06138621270656586,
- 0.051523033529520035,
- 0.0027997801080346107,
- -0.00015619050827808678,
- -0.003194695571437478,
- -0.02232654020190239,
- 0.005542195402085781,
- -0.005519991274923086,
- -0.056738466024398804,
- -0.020879419520497322,
- -0.07825271040201187,
- 0.007056404370814562,
- 0.043446920812129974,
- 0.02288488671183586,
- -0.017977962270379066,
- 0.01598220318555832,
- 0.04230161011219025,
- -0.029772009700536728,
- -0.04472392424941063,
- 0.1175413504242897,
- 0.0028063389472663403,
- 0.028967775404453278,
- 0.06058448925614357
- ]
- },
- {
- "keyword": "author",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.034648265689611435,
- 0.06747043877840042,
- 0.023561052978038788,
- 0.06503620743751526,
- -0.06523630023002625,
- 0.014160753227770329,
- 0.09021437913179398,
- 0.004788835998624563,
- 0.07205992192029953,
- 0.05187046527862549,
- -0.03559587523341179,
- 0.06358485668897629,
- -0.00443394435569644,
- -0.04502870887517929,
- -0.07733640819787979,
- 0.08088713884353638,
- -0.04462551325559616,
- 0.034060075879096985,
- 0.012163123115897179,
- -0.05790987238287926,
- -0.060121163725852966,
- 0.04695197194814682,
- -0.022703614085912704,
- 0.012344906106591225,
- 0.06694110482931137,
- 0.043093010783195496,
- -0.006175313610583544,
- 0.010705855675041676,
- 0.008368628099560738,
- -0.08233970403671265,
- -0.03714575245976448,
- 0.013058999553322792,
- 0.011796076782047749,
- 0.010799894109368324,
- -0.016450325027108192,
- -0.026360711082816124,
- 0.01152806170284748,
- 0.05526519566774368,
- 0.03480853512883186,
- -0.02336861379444599,
- -0.017921697348356247,
- -0.07439731806516647,
- 0.007806070148944855,
- 0.020413648337125778,
- 0.0056711221113801,
- -0.017066726461052895,
- -0.03341522440314293,
- -0.0220642052590847,
- 0.0028277181554585695,
- 0.04756449535489082,
- -0.03737255185842514,
- 0.0016442214837297797,
- -0.013061247766017914,
- -0.07706775516271591,
- 0.035552892833948135,
- 0.011432577855885029,
- -0.027849707752466202,
- 0.06782163679599762,
- 0.002241214970126748,
- -0.04443636164069176,
- 0.06805641204118729,
- 0.036778081208467484,
- -0.06898311525583267,
- 0.07068376243114471,
- 0.10713450610637665,
- 0.07751969993114471,
- 0.007805596571415663,
- 0.0061148484237492085,
- -0.09291503578424454,
- -0.03275159001350403,
- 0.036320291459560394,
- 0.05084007605910301,
- -0.03307110443711281,
- 0.019098006188869476,
- 0.05823493376374245,
- -0.04820536822080612,
- 0.001112693571485579,
- 0.001737614395096898,
- 0.06582199782133102,
- -0.042872123420238495,
- 0.022632557898759842,
- -0.010003930889070034,
- -0.04660220816731453,
- 0.037179455161094666,
- 0.015483121387660503,
- 0.07072725892066956,
- 0.00457800505682826,
- 0.0008263222989626229,
- 0.029710231348872185,
- 0.0002343355299672112,
- -0.0022462024353444576,
- -0.002137168310582638,
- 0.07851679623126984,
- -0.021876292303204536,
- -0.07532504200935364,
- 0.04111792892217636,
- -0.05605518817901611,
- -0.014453530311584473,
- -0.11883144825696945,
- 0.19670695066452026,
- -0.03553774207830429,
- 0.02701757661998272,
- -0.047911886125802994,
- 0.03465390205383301,
- 0.12289493530988693,
- -0.04476116970181465,
- 0.04086417704820633,
- 0.005929416976869106,
- -0.03913842514157295,
- -0.004311142954975367,
- -0.018986009061336517,
- 0.005832202732563019,
- -0.036592986434698105,
- 0.05005266144871712,
- 0.10280176997184753,
- 0.008153226226568222,
- 0.0020103920251131058,
- 0.00863646063953638,
- 0.014191602356731892,
- -0.004905046429485083,
- -0.009758959524333477,
- 0.003072971012443304,
- -0.06513882428407669,
- 0.007280176505446434,
- -0.10373548418283463,
- -0.05466930568218231,
- 0.003353351727128029,
- -4.180942471023048e-33,
- 0.017500804737210274,
- 0.05305818095803261,
- 0.0513102225959301,
- 0.09038825333118439,
- 0.09288404881954193,
- -0.02618739753961563,
- 0.04253018647432327,
- -0.038843508809804916,
- -0.05603721737861633,
- -0.03227737545967102,
- -0.0296782236546278,
- -0.008326342329382896,
- -0.03221781924366951,
- 0.004149974323809147,
- -0.013266023248434067,
- 0.016677800565958023,
- -0.023054739460349083,
- -0.024922164157032967,
- -0.03280853107571602,
- -0.04525110498070717,
- 0.006451069377362728,
- 0.06319437175989151,
- -0.0036991622764617205,
- 0.045454904437065125,
- -0.0392150953412056,
- -0.027916017919778824,
- 0.00404285779222846,
- -0.01396525651216507,
- 0.00457471888512373,
- 0.037741679698228836,
- 0.012073562480509281,
- 0.015577556565403938,
- -0.01443545613437891,
- -0.054656244814395905,
- -0.033953018486499786,
- -0.018761053681373596,
- -0.05029844865202904,
- -0.06393861025571823,
- 0.009209460578858852,
- 0.09819754213094711,
- -0.003805721877142787,
- -0.0012291226303204894,
- 0.02699287422001362,
- -0.07456790655851364,
- -0.04998547583818436,
- 0.02134261466562748,
- 0.07031400501728058,
- 0.004323287401348352,
- 0.11314357072114944,
- 0.05503921955823898,
- -0.061005134135484695,
- 0.025682229548692703,
- -0.05600278452038765,
- 0.014659241773188114,
- 0.04892679303884506,
- -0.03415362909436226,
- -0.031013764441013336,
- -0.013848025351762772,
- -0.01585126854479313,
- -0.018347637727856636,
- 0.006132478825747967,
- 0.1063636913895607,
- -0.07522634416818619,
- 0.07288414239883423,
- 0.053013093769550323,
- 0.005396767519414425,
- -0.0031032320111989975,
- -0.06257294118404388,
- 0.010384619235992432,
- 0.002551276469603181,
- -0.07521776854991913,
- 0.016855226829648018,
- 0.09534633904695511,
- -0.009517664089798927,
- -0.08369485288858414,
- -0.031275879591703415,
- -0.030569108203053474,
- 0.021258970722556114,
- -0.046060960739851,
- 0.013847761787474155,
- -0.04565488547086716,
- 0.00445911381393671,
- -0.002393909962847829,
- -0.01417210977524519,
- -0.11624012887477875,
- -0.024822000414133072,
- -0.0806552916765213,
- -0.04108882322907448,
- -0.006314347963780165,
- 0.09023746103048325,
- 0.004037105944007635,
- -0.045197226107120514,
- 0.017329016700387,
- 0.0036267400719225407,
- -0.07600851356983185,
- 3.226916766025449e-33,
- -0.09418074786663055,
- -0.10492361336946487,
- 0.030899960547685623,
- 0.03492050990462303,
- 0.025203794240951538,
- -0.06870082765817642,
- -0.03321800380945206,
- 0.04534124210476875,
- 0.028209321200847626,
- -0.03656682372093201,
- -0.03947567939758301,
- -0.05697427690029144,
- 0.08135867118835449,
- 0.06222062185406685,
- 0.050440069288015366,
- -0.03158425912261009,
- -0.012821760028600693,
- -0.06640788912773132,
- -0.07598999887704849,
- -0.034353744238615036,
- -0.038407664746046066,
- -0.03380972146987915,
- -0.02929765358567238,
- -0.10879692435264587,
- 0.05804739519953728,
- 0.061092618852853775,
- 0.1392805427312851,
- 0.08671732246875763,
- -0.07709015160799026,
- -0.00951886922121048,
- -0.004774651024490595,
- 0.04454069212079048,
- -0.08620110899209976,
- -0.05898745730519295,
- -0.05356442183256149,
- 0.13493655622005463,
- 0.0032928327564150095,
- 0.03221600130200386,
- -0.020561864599585533,
- -0.01721564494073391,
- 0.08385682106018066,
- 0.06121603026986122,
- 0.08901838213205338,
- 0.025296589359641075,
- 0.013381976634263992,
- 0.08202631771564484,
- 0.026718512177467346,
- -0.0006542372284457088,
- -0.0004953829338774085,
- 0.04474738612771034,
- 0.0001955228071892634,
- -0.01119622215628624,
- -0.013287486508488655,
- -0.016369283199310303,
- 0.052239786833524704,
- 0.01160386111587286,
- 0.05083810165524483,
- -0.007492222357541323,
- 0.0543329231441021,
- 0.018850177526474,
- -0.07531264424324036,
- 0.025498660281300545,
- 0.009555723518133163,
- 0.0669371709227562,
- -0.011318677105009556,
- -0.02134392224252224,
- -0.06519865244626999,
- 0.015210720710456371,
- -0.04493090137839317,
- -0.0443565733730793,
- 0.047973304986953735,
- -0.0831112340092659,
- -0.07238540053367615,
- 0.024928992614150047,
- -0.0454186350107193,
- -0.019224725663661957,
- -0.0608174093067646,
- -0.007394433952867985,
- -0.02642565220594406,
- -0.06620605289936066,
- -0.04383119195699692,
- -0.02850060723721981,
- -0.014045284129679203,
- 0.13357090950012207,
- -0.014506234787404537,
- 0.013841329142451286,
- -0.023894721642136574,
- -0.08267287164926529,
- -0.005581021308898926,
- 0.06576061993837357,
- 0.01811709627509117,
- 0.003460742300376296,
- 0.013470898382365704,
- -0.03816002234816551,
- -0.0016636920627206564,
- -1.2461270237906774e-8,
- -0.06549828499555588,
- 0.00040456769056618214,
- -0.02897563949227333,
- -0.021302025765180588,
- 0.08652142435312271,
- 0.0834255963563919,
- 0.07229504734277725,
- -0.027336863800883293,
- -0.011538582853972912,
- 0.07994495332241058,
- -0.008317748084664345,
- -0.016627689823508263,
- 0.05968695133924484,
- 0.02502601407468319,
- 0.051999371498823166,
- -0.12363579869270325,
- 0.02413039840757847,
- 0.06220013648271561,
- -0.05436810106039047,
- 0.03106549009680748,
- 0.07102860510349274,
- 0.012948493473231792,
- 0.0289826188236475,
- -0.14340484142303467,
- -0.0068700662814080715,
- 0.11357998847961426,
- -0.02689192444086075,
- 0.0005870840977877378,
- -0.011195514351129532,
- 0.059894878417253494,
- -0.0264787208288908,
- 0.16861994564533234,
- -0.038008060306310654,
- -0.03771297261118889,
- 0.05299478769302368,
- 0.02991192229092121,
- 0.03257507458329201,
- -0.0002516120730433613,
- -0.06547662615776062,
- 0.021428516134619713,
- -0.04416210576891899,
- 0.04906122758984566,
- -0.00483645498752594,
- -0.0044838618487119675,
- -0.02858499251306057,
- -0.06052432581782341,
- 0.008575830608606339,
- 0.041018541902303696,
- 0.021582815796136856,
- 0.033431995660066605,
- 0.016699690371751785,
- -0.041911326348781586,
- 0.0987534299492836,
- 0.0011475506471469998,
- -0.04333680495619774,
- -0.05667205899953842,
- 0.007057521026581526,
- 0.02921975590288639,
- -0.01917177252471447,
- -0.020833661779761314,
- 0.12277989089488983,
- -0.05002699792385101,
- 0.08717906475067139,
- 0.0200946107506752
- ]
- },
- {
- "keyword": "viewer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.02065175585448742,
- -0.07348586618900299,
- -0.09688880294561386,
- -0.0452440083026886,
- 0.028944745659828186,
- 0.021519655361771584,
- 0.06735468655824661,
- 0.02135702781379223,
- 0.05292129144072533,
- 0.006589208263903856,
- 0.01334450114518404,
- 0.009945398196578026,
- -0.0023167829494923353,
- 0.036827120929956436,
- -0.11411534994840622,
- -0.037262436002492905,
- 0.05667830631136894,
- 0.01141868345439434,
- 0.023546386510133743,
- 0.045020148158073425,
- -0.11965218186378479,
- -0.02098684385418892,
- -0.029857853427529335,
- -0.01782158389687538,
- -0.01942705363035202,
- -0.009079327806830406,
- -0.06095636636018753,
- 0.04397650435566902,
- 0.013720281422138214,
- -0.09288335591554642,
- -0.032379742711782455,
- -0.057323429733514786,
- 0.05796957388520241,
- 0.024767989292740822,
- 0.018584592267870903,
- -0.04154598340392113,
- 0.007172980811446905,
- -0.00422830693423748,
- -0.04381050169467926,
- -0.023736191913485527,
- -0.01422012411057949,
- 0.006893137935549021,
- -0.009407098405063152,
- -0.039248988032341,
- -0.008998612873256207,
- -0.060766831040382385,
- -0.007638893555849791,
- -0.05781932175159454,
- 0.10694477707147598,
- 0.05754734203219414,
- -0.12617196142673492,
- -0.025952965021133423,
- -0.01853683963418007,
- -0.05491093173623085,
- -0.018142279237508774,
- 0.0028923137579113245,
- -0.03031195141375065,
- -0.001379924244247377,
- -0.015313760377466679,
- 0.012147844769060612,
- 0.040477897971868515,
- 0.03476571664214134,
- -0.0499146394431591,
- 0.08699831366539001,
- -0.03686521574854851,
- 0.04026123508810997,
- -0.016362057998776436,
- 0.04956340044736862,
- 0.05726129561662674,
- -0.17621181905269623,
- -0.0710420086979866,
- 0.012731265276670456,
- -0.024968665093183517,
- -0.04233299195766449,
- -0.047035619616508484,
- -0.06734400987625122,
- 0.04467478021979332,
- -0.06010253354907036,
- 0.06274736672639847,
- -0.08358966559171677,
- 0.06319290399551392,
- 0.024695750325918198,
- -0.010519222356379032,
- 0.03287847712635994,
- 0.05817846208810806,
- 0.03698773309588432,
- 0.03692251443862915,
- -0.028683258220553398,
- 0.026013264432549477,
- 0.06871157884597778,
- -0.03049049712717533,
- 0.006758033763617277,
- -0.0008126106695272028,
- 0.016122862696647644,
- -0.024316411465406418,
- 0.013900833204388618,
- 0.051859308034181595,
- -0.04600014165043831,
- -0.02543851174414158,
- 0.2477317452430725,
- 0.041406210511922836,
- 0.04237118735909462,
- 0.07060262560844421,
- -0.03362429141998291,
- -0.06223291903734207,
- -0.10862365365028381,
- 0.03570301830768585,
- 0.052199672907590866,
- 0.0095701664686203,
- 0.010291741229593754,
- 0.018220670521259308,
- 0.01131969504058361,
- -0.03217403590679169,
- -0.052710723131895065,
- 0.04700164124369621,
- -0.015059737488627434,
- -0.0057342806831002235,
- 0.03536438196897507,
- 0.08623596280813217,
- 0.09389111399650574,
- 0.055265963077545166,
- -0.032065391540527344,
- -0.026965998113155365,
- 0.009402213618159294,
- 0.08947288990020752,
- -0.09686248749494553,
- 0.09521523118019104,
- -5.928571962909621e-33,
- -0.043939799070358276,
- -0.014543701894581318,
- 0.0026274516712874174,
- 0.01127233449369669,
- -0.01583511382341385,
- 0.01034847553819418,
- 0.04740828648209572,
- 0.00971174892038107,
- -0.0819038525223732,
- -0.02122613973915577,
- 0.01653553918004036,
- 0.0067919958382844925,
- 0.004651135299354792,
- 0.05722213163971901,
- 0.028996305540204048,
- 0.044906605035066605,
- -0.01852099783718586,
- 0.08882946521043777,
- -0.0868796706199646,
- -0.045857321470975876,
- -0.040509991347789764,
- -0.03611219301819801,
- -0.02035771682858467,
- 0.057474322617053986,
- 0.003823772305622697,
- 0.012671995908021927,
- 0.03618625923991203,
- -0.035203512758016586,
- -0.008495490998029709,
- 0.027417942881584167,
- 0.007892615161836147,
- 0.029163116589188576,
- -0.021842850372195244,
- -0.03302778676152229,
- -0.033051230013370514,
- -0.04705188795924187,
- -0.010217416100203991,
- -0.01883508265018463,
- 0.01673487387597561,
- -0.03759012743830681,
- -0.07215738296508789,
- -0.046261563897132874,
- -0.031563688069581985,
- -0.022732743993401527,
- -0.07131145894527435,
- -0.010203513316810131,
- 0.011210527271032333,
- 0.08507329970598221,
- -0.09199642390012741,
- 0.03487367928028107,
- 0.032710831612348557,
- -0.0029605869203805923,
- 0.023873113095760345,
- -0.0027846682351082563,
- -0.058656543493270874,
- 0.035173285752534866,
- 0.03594368323683739,
- 0.022391710430383682,
- 0.02761077880859375,
- -0.019808918237686157,
- 0.03293018043041229,
- 0.1394970715045929,
- 0.001260039396584034,
- -0.06451430171728134,
- -0.02352396585047245,
- -0.05629114806652069,
- 0.04076451063156128,
- -0.02276931144297123,
- -0.02180677093565464,
- 0.06452047824859619,
- -0.17705847322940826,
- -0.04051942750811577,
- 0.08864101022481918,
- -0.008307889103889465,
- -0.0063864197582006454,
- -0.024843811988830566,
- -0.04451458528637886,
- 0.07742886245250702,
- 0.015817906707525253,
- 0.03861583396792412,
- -0.0355343259871006,
- -0.07964474707841873,
- 0.07974560558795929,
- 0.011091327294707298,
- -0.01851721853017807,
- -0.028062039986252785,
- -0.03601299598813057,
- -0.08076506853103638,
- 0.021976005285978317,
- -0.02654496394097805,
- -0.008296951651573181,
- 0.028017515316605568,
- 0.01254966575652361,
- 0.00812869518995285,
- 0.0072549087926745415,
- 4.796404129806735e-33,
- -0.0460064671933651,
- -0.04442309960722923,
- -0.04044746607542038,
- -0.02710113674402237,
- -0.016605645418167114,
- -0.03743969276547432,
- -0.03600942716002464,
- 0.02291024476289749,
- -0.011981962248682976,
- -0.010934000834822655,
- 0.0012026916956529021,
- -0.015871772542595863,
- 0.002797191496938467,
- 0.030453303828835487,
- 0.0211841631680727,
- 0.028148500248789787,
- 0.06290612369775772,
- -0.050927385687828064,
- -0.08812034875154495,
- 0.039902713149785995,
- -0.01442540343850851,
- -0.03940718248486519,
- 0.01972268335521221,
- -0.034731119871139526,
- 0.012042135000228882,
- 0.05866099148988724,
- 0.16826677322387695,
- 0.06137995049357414,
- -0.013565408065915108,
- -0.02391155995428562,
- 0.0406736396253109,
- -0.07516587525606155,
- -0.043944984674453735,
- 0.014137991704046726,
- -0.030296139419078827,
- 0.10855580121278763,
- 0.15702034533023834,
- -0.008976690471172333,
- -0.0834893137216568,
- 0.04166093468666077,
- 0.047391168773174286,
- 0.036731187254190445,
- 0.05573118105530739,
- 0.08761052042245865,
- 0.021398553624749184,
- 0.03656894713640213,
- -0.027834203094244003,
- 0.0782625749707222,
- -0.013729271478950977,
- 0.02697163075208664,
- -0.08053388446569443,
- 0.046444933861494064,
- 0.056687287986278534,
- -0.016787316650152206,
- -0.026215864345431328,
- -0.011333305388689041,
- 0.013935682363808155,
- 0.04059543088078499,
- 0.018088771030306816,
- -0.00842508114874363,
- 0.002040688181295991,
- -0.02950182929635048,
- -0.13778327405452728,
- -0.008185944519937038,
- -0.06340786814689636,
- 0.0488889105618,
- 0.0005827656132169068,
- -0.006533512379974127,
- -0.04313453659415245,
- -0.01759973354637623,
- 0.02804427407681942,
- -0.02480761706829071,
- -0.02707505412399769,
- -0.0705820694565773,
- 0.03897735849022865,
- 0.026344241574406624,
- -0.008309856057167053,
- -0.004590953234583139,
- -0.04538905620574951,
- -0.00028517504688352346,
- 0.06907296180725098,
- -0.03626169264316559,
- 0.06158528849482536,
- 0.006141369231045246,
- 0.07121322304010391,
- -0.008724457584321499,
- -0.06606411188840866,
- 0.0610056109726429,
- 0.02873057685792446,
- -0.01920400559902191,
- -0.024171428754925728,
- 0.01043825875967741,
- 0.008915546350181103,
- -0.012687230482697487,
- 0.06670807301998138,
- -1.2643856628358208e-8,
- -0.07484827935695648,
- -0.0036031422205269337,
- 0.09449182450771332,
- -0.03230179101228714,
- 0.034537311643362045,
- -0.011647294275462627,
- -0.041344448924064636,
- 0.045454591512680054,
- -0.006401016842573881,
- 0.03783635050058365,
- 0.0356222540140152,
- -0.10466672480106354,
- -0.009056486189365387,
- 0.020184719935059547,
- 0.06826729327440262,
- -0.05904516205191612,
- 0.013353701680898666,
- 0.06978099048137665,
- -0.06959391385316849,
- 0.025479016825556755,
- 0.06325977295637131,
- 0.013040043413639069,
- 0.05870668590068817,
- -0.007131056860089302,
- 0.018372923135757446,
- -0.02090044505894184,
- 0.02351706475019455,
- 0.006507107987999916,
- -0.005966377444565296,
- -0.03864120692014694,
- -0.010993354953825474,
- 0.13086313009262085,
- -0.004803812131285667,
- -0.07237458229064941,
- -0.003970354795455933,
- 0.036400556564331055,
- -0.022467171773314476,
- 0.03308417275547981,
- 0.01860109716653824,
- 0.01709241233766079,
- 0.017787786200642586,
- -0.040543217211961746,
- 0.06277585029602051,
- -0.016782430931925774,
- -0.04474757984280586,
- -0.00929209217429161,
- 0.0716346800327301,
- -0.09218405932188034,
- 0.06966198235750198,
- 0.004663912579417229,
- -0.059563688933849335,
- -0.03835030645132065,
- 0.036328040063381195,
- 0.02332359179854393,
- 0.027768149971961975,
- 0.020391404628753662,
- 0.09975343197584152,
- -0.05743623897433281,
- -0.0918041318655014,
- 0.08187861740589142,
- 0.06425592303276062,
- 0.06710422784090042,
- 0.001944099203683436,
- 0.06814511865377426
- ]
- },
- {
- "keyword": "reader",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.027134496718645096,
- -0.04093395546078682,
- -0.0042076497338712215,
- 0.01620348170399666,
- -0.026884697377681732,
- -0.009208782576024532,
- 0.12324246019124985,
- 0.04122384265065193,
- 0.04180097207427025,
- -0.015093582682311535,
- 0.01255453284829855,
- 0.06000463664531708,
- 0.028265906497836113,
- 0.02529504895210266,
- -0.0683397650718689,
- -0.02785666659474373,
- 0.03027505800127983,
- 0.020221086218953133,
- -0.018589269369840622,
- -0.008822903037071228,
- -0.0950787290930748,
- 0.04076887294650078,
- -0.009245223365724087,
- -0.006799416150897741,
- -0.06499781459569931,
- 0.039201851934194565,
- -0.07683238387107849,
- -0.03584572672843933,
- -0.038122471421957016,
- -0.0608731247484684,
- 0.007692154962569475,
- -0.022616777569055557,
- 0.032922275364398956,
- -0.016770925372838974,
- -0.012674287892878056,
- 0.020683594048023224,
- -0.004895046353340149,
- 0.0017065757419914007,
- 0.011700119823217392,
- -0.03494022786617279,
- 0.025412611663341522,
- -0.0566464327275753,
- 0.0044260285794734955,
- 0.03914009779691696,
- 0.08237652480602264,
- -0.06544382870197296,
- 0.00422605499625206,
- 0.02391226589679718,
- 0.028842788189649582,
- 0.0577395036816597,
- -0.08937608450651169,
- -0.02358141914010048,
- -0.055412016808986664,
- 0.012467101216316223,
- 0.018070131540298462,
- 0.014793381094932556,
- -0.0038277774583548307,
- 0.028788022696971893,
- -0.04595369100570679,
- -0.04186432436108589,
- -0.018801679834723473,
- 0.004415089264512062,
- -0.044198933988809586,
- 0.07516615837812424,
- -0.008742228150367737,
- 0.011119739152491093,
- -0.023353587836027145,
- 0.005797910038381815,
- -0.030414670705795288,
- -0.0760679841041565,
- -0.006923428270965815,
- 0.07064900547266006,
- 0.056299518793821335,
- 0.001160436193458736,
- 0.04925380274653435,
- -0.034029725939035416,
- 0.016929306089878082,
- -0.06547989696264267,
- 0.10094241052865982,
- -0.019673028960824013,
- -0.01737026683986187,
- 0.012722434476017952,
- 0.0047404286451637745,
- 0.03395235911011696,
- 0.023777009919285774,
- 0.00009675924229668453,
- -0.003667837707325816,
- -0.015543103218078613,
- -0.02832173742353916,
- 0.032761577516794205,
- -0.0008988730842247605,
- -0.030759567394852638,
- 0.026496654376387596,
- 0.0701279267668724,
- -0.0581531897187233,
- 0.03867654502391815,
- 0.017829561606049538,
- -0.0399169921875,
- -0.06177102401852608,
- 0.2890457212924957,
- 0.012518458999693394,
- 0.12092866003513336,
- 0.04066009074449539,
- -0.021914612501859665,
- -0.0466340109705925,
- -0.10489288717508316,
- -0.06951284408569336,
- -0.015428357757627964,
- -0.053868528455495834,
- -0.04635196179151535,
- 0.008849053643643856,
- -0.0068384152837097645,
- -0.026619404554367065,
- 0.010714763775467873,
- 0.011647955514490604,
- -0.015321717597544193,
- 0.025431007146835327,
- 0.04767708480358124,
- 0.07211749255657196,
- 0.10027578473091125,
- -0.016773825511336327,
- 0.05694112554192543,
- -0.09654222428798676,
- 0.043951328843832016,
- 0.025966579094529152,
- -0.09982509911060333,
- 0.07052626460790634,
- -5.2428403538597315e-33,
- -0.06939326971769333,
- 0.01308027096092701,
- 0.03307264670729637,
- 0.03821665793657303,
- -0.04063691198825836,
- -0.006626919377595186,
- 0.02601589821279049,
- -0.015689555555582047,
- -0.0663686990737915,
- -0.10722293704748154,
- 0.0037932267878204584,
- 0.021011151373386383,
- -0.04005901888012886,
- 0.08222214877605438,
- 0.046510424464941025,
- 0.05389904975891113,
- -0.08355768769979477,
- 0.07566364109516144,
- -0.056820619851350784,
- 0.00042535821557976305,
- -0.005734406877309084,
- -0.007454026490449905,
- -0.01834418624639511,
- 0.038117364048957825,
- -0.05086249113082886,
- -0.008214477449655533,
- -0.02124214731156826,
- -0.044968221336603165,
- 0.010150929912924767,
- 0.04359769448637962,
- -0.013735303655266762,
- 0.008041766472160816,
- -0.04151162877678871,
- -0.08712765574455261,
- -0.030146613717079163,
- -0.16171319782733917,
- 0.09204617142677307,
- -0.06329011172056198,
- 0.004474825691431761,
- -0.01952127180993557,
- -0.010994816198945045,
- -0.006258962210267782,
- 0.05231214314699173,
- 0.001410480123013258,
- -0.03380744531750679,
- 0.029439222067594528,
- 0.03150763735175133,
- -0.008618210442364216,
- -0.038658615201711655,
- 0.07247596979141235,
- -0.008090510033071041,
- -0.049278680235147476,
- -0.04188772663474083,
- -0.005495377350598574,
- 0.017785800620913506,
- -0.04370967671275139,
- 0.057256221771240234,
- 0.020695451647043228,
- 0.05535758286714554,
- -0.049201544374227524,
- 0.12269754707813263,
- 0.13236020505428314,
- 0.061930105090141296,
- -0.008309564553201199,
- 0.06062057241797447,
- -0.03128238394856453,
- -0.010927162133157253,
- -0.040467776358127594,
- 0.024991311132907867,
- -0.0639837384223938,
- -0.10688206553459167,
- -0.03863983973860741,
- 0.0455806702375412,
- 0.02754184976220131,
- -0.07427218556404114,
- 0.030068274587392807,
- -0.003956405445933342,
- -0.008415834978222847,
- 0.06862901151180267,
- -0.016332101076841354,
- -0.02189183235168457,
- -0.004585045389831066,
- 0.04015544801950455,
- -0.0016944868257269263,
- -0.06162004545331001,
- 0.004466055426746607,
- 0.022656980901956558,
- -0.12463437020778656,
- -0.0065461150370538235,
- -0.04555801674723625,
- 0.037731513381004333,
- 0.037107232958078384,
- 0.028410684317350388,
- -0.05180523172020912,
- -0.040703002363443375,
- 5.9116543951493804e-33,
- -0.09071606397628784,
- -0.032847847789525986,
- -0.08248184621334076,
- 0.0641244649887085,
- -0.07426556199789047,
- -0.05745304748415947,
- -0.08042404800653458,
- -0.04172736778855324,
- 0.05248280614614487,
- -0.010059202089905739,
- -0.07286236435174942,
- -0.00893713254481554,
- 0.04165590927004814,
- 0.04806464537978172,
- 0.05557634308934212,
- -0.013631175272166729,
- 0.08930975943803787,
- -0.08482442051172256,
- -0.04353981837630272,
- 0.0208602175116539,
- -0.021728496998548508,
- -0.04152417182922363,
- 0.006851366255432367,
- -0.023227635771036148,
- 0.05268823355436325,
- 0.045800525695085526,
- 0.10110604763031006,
- 0.0023613497614860535,
- -0.06385724246501923,
- -0.03774421662092209,
- 0.00017957213276531547,
- -0.0013893727445974946,
- 0.00789293646812439,
- -0.047047387808561325,
- -0.03910152241587639,
- 0.06124360114336014,
- 0.07380269467830658,
- 0.004927490837872028,
- -0.0868564322590828,
- 0.03497026860713959,
- 0.11014469712972641,
- 0.001785334199666977,
- -0.009169219993054867,
- 0.009684576652944088,
- -0.021284881979227066,
- 0.02950688637793064,
- 0.03730761259794235,
- 0.05353941768407822,
- 0.0931035727262497,
- 0.056304313242435455,
- -0.05493038892745972,
- 0.032863084226846695,
- 0.014476713724434376,
- -0.02894810400903225,
- -0.007521453779190779,
- 0.07377302646636963,
- 0.05054141953587532,
- -0.008992613293230534,
- 0.022107625380158424,
- -0.08065818250179291,
- -0.02514801360666752,
- 0.0003243209794163704,
- -0.07906429469585419,
- 0.04648560285568237,
- -0.016042839735746384,
- -0.015961376950144768,
- -0.003363881492987275,
- -0.07898694276809692,
- -0.0038648564368486404,
- -0.03332607075572014,
- 0.012405043467879295,
- -0.04350554198026657,
- -0.008713394403457642,
- -0.04420500248670578,
- 0.04324661195278168,
- 0.05562930181622505,
- -0.07041017711162567,
- 0.03967989608645439,
- -0.08703996241092682,
- -0.007621954660862684,
- -0.009450205601751804,
- 0.00557788135483861,
- -0.014866174198687077,
- 0.09702840447425842,
- 0.052130598574876785,
- -0.030345823615789413,
- -0.026424674317240715,
- -0.04934994503855705,
- -0.004347761161625385,
- -0.002019578358158469,
- 0.02608020044863224,
- 0.05402403697371483,
- 0.026715395972132683,
- 0.0277690552175045,
- -0.010732769034802914,
- -1.3391748154845118e-8,
- -0.03686906397342682,
- -0.013309652917087078,
- -0.009797792881727219,
- 0.03151226043701172,
- 0.047848258167505264,
- 0.012876244261860847,
- -0.07952278107404709,
- 0.004477428272366524,
- -0.025778740644454956,
- 0.07260976731777191,
- 0.022949865087866783,
- -0.043491918593645096,
- 0.0070470403879880905,
- -0.028466640040278435,
- 0.10623589158058167,
- 0.004330194089561701,
- 0.09775619208812714,
- -0.007408247794955969,
- -0.10122177004814148,
- 0.007126777898520231,
- 0.11790414899587631,
- 0.055352311581373215,
- -0.034479737281799316,
- -0.03470473736524582,
- 0.025879548862576485,
- 0.04215025156736374,
- 0.022174719721078873,
- 0.000030091772714513354,
- 0.04927578940987587,
- -0.008805900812149048,
- 0.0076483204029500484,
- 0.0735626220703125,
- -0.015278534032404423,
- -0.029530273750424385,
- 0.010445320047438145,
- 0.054232675582170486,
- 0.06591954827308655,
- 0.05904415622353554,
- 0.017193369567394257,
- 0.1184631958603859,
- 0.03620182350277901,
- -0.05123165622353554,
- 0.008173629641532898,
- -0.001013576053082943,
- -0.015128619968891144,
- -0.04814860597252846,
- 0.0662868320941925,
- -0.04852620139718056,
- 0.05411199852824211,
- 0.024513399228453636,
- -0.034858740866184235,
- 0.005163297522813082,
- 0.09691943973302841,
- 0.07423832267522812,
- 0.02194407768547535,
- -0.031413644552230835,
- 0.061020638793706894,
- 0.015916043892502785,
- -0.09953528642654419,
- 0.07297756522893906,
- 0.09457241743803024,
- 0.08164776861667633,
- 0.01503009907901287,
- 0.03926944360136986
- ]
- },
- {
- "keyword": "listener",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.0034827881027013063,
- -0.04683713614940643,
- 0.03212420642375946,
- -0.0649997740983963,
- -0.020374612882733345,
- 0.00968184508383274,
- 0.2203107476234436,
- -0.01659693382680416,
- 0.03525926545262337,
- -0.016486765816807747,
- -0.010970608331263065,
- -0.0005846866988576949,
- 0.01848391257226467,
- 0.009877962991595268,
- 0.007219547871500254,
- 0.0014853200409561396,
- 0.1032629907131195,
- 0.014605280011892319,
- -0.06802841275930405,
- -0.04745770990848541,
- -0.1055799201130867,
- 0.03865460678935051,
- -0.04118308797478676,
- -0.0005896648508496583,
- -0.05629466846585274,
- -0.019782837480306625,
- 0.02179955132305622,
- -0.041216541081666946,
- 0.09214411675930023,
- -0.08829117566347122,
- 0.020290613174438477,
- -0.004642979241907597,
- 0.07001139223575592,
- -0.032446734607219696,
- -0.10155851393938065,
- 0.02441350370645523,
- -0.062142133712768555,
- -0.021625446155667305,
- -0.00391395203769207,
- 0.014498400501906872,
- -0.01722859777510166,
- -0.02120930328965187,
- -0.02906743995845318,
- -0.054393868893384933,
- -0.07438286393880844,
- -0.07678262144327164,
- 0.01109235268086195,
- -0.024759113788604736,
- -0.017832322046160698,
- 0.06281455606222153,
- -0.03632929176092148,
- -0.0024535509292036295,
- -0.02289130724966526,
- 0.022148553282022476,
- 0.02177567221224308,
- -0.04152487590909004,
- -0.02344653010368347,
- 0.05717215687036514,
- -0.00399739621207118,
- 0.03867940232157707,
- 0.041099853813648224,
- -0.03637784719467163,
- -0.0797438696026802,
- 0.07141490280628204,
- 0.06640014052391052,
- 0.04666229709982872,
- 0.041685327887535095,
- 0.03162119910120964,
- 0.014364284463226795,
- -0.05794692412018776,
- -0.07179051637649536,
- 0.049936357885599136,
- 0.0790228322148323,
- -0.016078229993581772,
- 0.03504765033721924,
- -0.012556777335703373,
- 0.012511424720287323,
- -0.07654552161693573,
- 0.04798338562250137,
- 0.017326246947050095,
- 0.005888744723051786,
- -0.08336429297924042,
- -0.07369062304496765,
- -0.050008367747068405,
- 0.016036780551075935,
- 0.020674515515565872,
- 0.0006674880860373378,
- -0.005215735174715519,
- -0.04941090568900108,
- 0.03521318361163139,
- -0.10007493197917938,
- -0.026431940495967865,
- -0.020781436935067177,
- 0.03621480241417885,
- -0.014612001366913319,
- 0.04598163813352585,
- -0.009491745382547379,
- -0.031178463250398636,
- -0.05060742422938347,
- 0.24019771814346313,
- 0.03319701924920082,
- 0.09002024680376053,
- -0.04652649536728859,
- -0.011192906647920609,
- 0.012791306711733341,
- -0.06454011797904968,
- -0.1863776594400406,
- 0.015239410102367401,
- -0.014265964739024639,
- 0.03447256237268448,
- -0.03684893995523453,
- -0.034123990684747696,
- 0.007164649199694395,
- 0.015669716522097588,
- 0.008179058320820332,
- 0.07134819030761719,
- 0.04068473353981972,
- 0.038922056555747986,
- 0.02357962541282177,
- -0.060082320123910904,
- 0.0801871195435524,
- 0.004751261323690414,
- -0.005687383934855461,
- 0.01339331641793251,
- -0.02760166861116886,
- -0.05480204522609711,
- 0.0077372584491968155,
- -6.483388398766448e-33,
- -0.020860183984041214,
- -0.058948345482349396,
- -0.005437702406197786,
- -0.02629309706389904,
- 0.058677177876234055,
- 0.02406555414199829,
- -0.021299103274941444,
- -0.027498675510287285,
- 0.018950462341308594,
- 0.028089243918657303,
- 0.034097425639629364,
- 0.052318282425403595,
- 0.029617296531796455,
- -0.10149753838777542,
- 0.11326630413532257,
- 0.012861703522503376,
- -0.09943930059671402,
- 0.1084400862455368,
- -0.05006767064332962,
- -0.040824417024850845,
- -0.022891748696565628,
- -0.005523388274013996,
- -0.04844681918621063,
- 0.09433387964963913,
- 0.03253737464547157,
- -0.0009822375141084194,
- 0.02353426069021225,
- -0.02792944200336933,
- 0.029272088780999184,
- -0.013908741995692253,
- 0.0392056368291378,
- 0.02658640407025814,
- 0.028229091316461563,
- -0.008106871508061886,
- 0.03583184629678726,
- -0.11815949529409409,
- 0.022311897948384285,
- -0.010953009128570557,
- 0.00878655444830656,
- -0.141951322555542,
- -0.03604019060730934,
- -0.0391848050057888,
- -0.04335344210267067,
- -0.015518750995397568,
- 0.028183981776237488,
- -0.007655570283532143,
- -0.03447001427412033,
- 0.02591191977262497,
- 0.01724599115550518,
- -0.04540158063173294,
- 0.013700606301426888,
- 0.013602230697870255,
- 0.07213441282510757,
- 0.009382241405546665,
- -0.0017878616927191615,
- 0.0302322655916214,
- 0.04670712724328041,
- 0.05917683616280556,
- 0.005461447406560183,
- 0.047422707080841064,
- 0.00501215597614646,
- 0.08245861530303955,
- 0.09274521470069885,
- -0.06404668837785721,
- -0.010011783801019192,
- 0.02033529058098793,
- -0.05511535704135895,
- -0.09942073374986649,
- 0.08445821702480316,
- -0.016462048515677452,
- 0.04182978346943855,
- 0.04947583004832268,
- 0.013544482178986073,
- 0.050089020282030106,
- -0.020424876362085342,
- 0.00520718190819025,
- -0.007758007850497961,
- -0.006039884872734547,
- -0.014647231437265873,
- -0.0023720937315374613,
- -0.02042362652719021,
- -0.015073723159730434,
- 0.013920129276812077,
- 0.09318621456623077,
- 0.02209089882671833,
- 0.007024181541055441,
- -0.04814893379807472,
- -0.06666835397481918,
- -0.04105810448527336,
- 0.03675586357712746,
- -0.021029073745012283,
- 0.08103658258914948,
- 0.045083560049533844,
- -0.02689603716135025,
- -0.024220164865255356,
- 3.961957057014472e-33,
- -0.06568268686532974,
- 0.021809961646795273,
- -0.0651445984840393,
- 0.037584997713565826,
- -0.02738640084862709,
- 0.01943541131913662,
- -0.08418749272823334,
- 0.02927779033780098,
- -0.09239038825035095,
- 0.04163016751408577,
- -0.016992641612887383,
- 0.0220428965985775,
- 0.01538657583296299,
- 0.07126124203205109,
- -0.03745900094509125,
- -0.008805147372186184,
- 0.044280435889959335,
- -0.0022180306259542704,
- -0.007044927682727575,
- 0.055141132324934006,
- -0.030232688412070274,
- -0.01062760129570961,
- 0.019295141100883484,
- 0.054338421672582626,
- -0.0649118572473526,
- 0.006164154037833214,
- 0.07162516564130783,
- 0.0330485962331295,
- -0.08732850849628448,
- -0.05053236335515976,
- -0.0025863810442388058,
- -0.010948375798761845,
- -0.04337117075920105,
- -0.06791999936103821,
- 0.04543447494506836,
- 0.041323840618133545,
- 0.08107996731996536,
- 0.042790066450834274,
- -0.025515319779515266,
- -0.05758316442370415,
- 0.024887477979063988,
- 0.0002524713345337659,
- 0.0034540225751698017,
- 0.02679501660168171,
- -0.01856599561870098,
- 0.0024614869616925716,
- -0.05851428210735321,
- 0.0766621083021164,
- -0.010656989179551601,
- 0.0010384612251073122,
- -0.006076465360820293,
- -0.0271727554500103,
- 0.0645763948559761,
- -0.018506774678826332,
- -0.04403463751077652,
- 0.15848372876644135,
- 0.030515458434820175,
- -0.04001898318529129,
- 0.024175411090254784,
- 0.004121649544686079,
- 0.05162758752703667,
- -0.04872807115316391,
- -0.06338120996952057,
- -0.007111267652362585,
- -0.021384678781032562,
- 0.056124474853277206,
- -0.008985769003629684,
- 0.049775414168834686,
- -0.003170035080984235,
- 0.017901595681905746,
- 0.01714695617556572,
- -0.003763447282835841,
- -0.06838493049144745,
- 0.012255607172846794,
- 0.008708655834197998,
- 0.05842408165335655,
- -0.0945705845952034,
- -0.12917298078536987,
- -0.03290284425020218,
- -0.05324196070432663,
- -0.023598043248057365,
- 0.028307948261499405,
- 0.01814604550600052,
- -0.027285559102892876,
- 0.016085229814052582,
- 0.007973621599376202,
- 0.06642536073923111,
- 0.004187165759503841,
- 0.005321458913385868,
- -0.019161995500326157,
- 0.029248634353280067,
- 0.07716846466064453,
- -0.09914997965097427,
- -0.021733732894062996,
- -0.02485528215765953,
- -1.2616584221802896e-8,
- 0.013731724582612514,
- 0.007545569445937872,
- 0.03487487509846687,
- -0.0654737651348114,
- 0.03806784376502037,
- 0.010340693406760693,
- 0.011605942621827126,
- -0.02333889901638031,
- -0.02224172092974186,
- 0.037962447851896286,
- -0.05049562081694603,
- -0.04337435960769653,
- -0.012120725587010384,
- 0.08170930296182632,
- 0.15389718115329742,
- 0.006824444979429245,
- -0.005927714519202709,
- 0.01160652656108141,
- -0.12091074138879776,
- -0.03210240229964256,
- 0.05361246317625046,
- 0.03433038294315338,
- 0.049362458288669586,
- 0.0031152237206697464,
- 0.034602392464876175,
- -0.06230585277080536,
- 0.07379238307476044,
- 0.055636946111917496,
- 0.04251270741224289,
- -0.023997880518436432,
- 0.013187175616621971,
- 0.0366065613925457,
- -0.07042966037988663,
- -0.06523283571004868,
- -0.07694922387599945,
- 0.027563557028770447,
- -0.009942032396793365,
- -0.08348845690488815,
- -0.0016443842323496938,
- 0.043526049703359604,
- -0.03829535096883774,
- -0.07148412615060806,
- -0.007676383480429649,
- 0.06174389645457268,
- -0.06418398022651672,
- 0.028270937502384186,
- 0.05097752809524536,
- -0.03297598659992218,
- 0.028144067153334618,
- 0.05905803665518761,
- -0.023205526173114777,
- 0.03714536875486374,
- 0.05200519412755966,
- -0.058043401688337326,
- 0.07393362373113632,
- -0.007993478327989578,
- -0.04057695344090462,
- -0.013356287032365799,
- -0.027187122032046318,
- 0.020397255197167397,
- 0.01544459629803896,
- 0.1452268809080124,
- -0.0028537798207253218,
- 0.02388625778257847
- ]
- },
- {
- "keyword": "watcher",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.11363637447357178,
- -0.03785597160458565,
- 0.004226403310894966,
- 0.002794558648020029,
- 0.06482963263988495,
- 0.025929421186447144,
- 0.08726722002029419,
- 0.007961700670421124,
- 0.08578620105981827,
- -0.018285561352968216,
- 0.010615344159305096,
- -0.0633842721581459,
- 0.027384430170059204,
- 0.004495222121477127,
- -0.08072812855243683,
- -0.021592313423752785,
- 0.05585915595293045,
- -0.024931594729423523,
- -0.0190623477101326,
- -0.08824683725833893,
- -0.10850068181753159,
- 0.003981979098170996,
- 0.007032871246337891,
- 0.09245389699935913,
- -0.05322318151593208,
- -0.0032285298220813274,
- -0.006774133071303368,
- 0.022700779139995575,
- -0.01594553142786026,
- -0.06094446778297424,
- 0.035398636013269424,
- -0.07499731332063675,
- -0.0030693274457007647,
- 0.017874903976917267,
- -0.03707128390669823,
- -0.03448411449790001,
- -0.027527835220098495,
- 0.009499317966401577,
- -0.04307224228978157,
- 0.02500590682029724,
- 0.003216646146029234,
- -0.07331890612840652,
- 0.011294928379356861,
- -0.030824117362499237,
- -0.030061734840273857,
- 0.023590806871652603,
- 0.04423433914780617,
- 0.00276163243688643,
- 0.0838586762547493,
- 0.017024410888552666,
- -0.08984234929084778,
- -0.020058469846844673,
- 0.012423262931406498,
- -0.11398979276418686,
- 0.06567464023828506,
- 0.01763535849750042,
- 0.009135863743722439,
- -0.007288530934602022,
- 0.011603016406297684,
- -0.03300166130065918,
- 0.021613774821162224,
- -0.002889077179133892,
- -0.0305711068212986,
- 0.025268888100981712,
- -0.047688309103250504,
- 0.04641997814178467,
- -0.0033712214790284634,
- 0.08210232853889465,
- 0.024434639140963554,
- -0.011262895539402962,
- -0.03948017954826355,
- 0.04046503081917763,
- -0.025627348572015762,
- 0.014182434417307377,
- -0.060203392058610916,
- -0.06705224514007568,
- 0.04150306060910225,
- -0.09160047024488449,
- 0.07202445715665817,
- -0.035025518387556076,
- -0.08673329651355743,
- -0.13644221425056458,
- -0.053173452615737915,
- 0.03844793513417244,
- 0.037727802991867065,
- -0.02400953136384487,
- 0.04638388380408287,
- -0.04384494945406914,
- 0.0816362202167511,
- -0.017415441572666168,
- -0.06667833775281906,
- -0.0013115843757987022,
- 0.02366747334599495,
- 0.007004640065133572,
- -0.0268414206802845,
- 0.03322136774659157,
- -0.0059294686652719975,
- 0.0935140997171402,
- -0.03470487892627716,
- 0.15607011318206787,
- 0.007452932186424732,
- -0.05642974376678467,
- 0.03547464683651924,
- 0.012793595902621746,
- -0.008895261213183403,
- -0.0580376572906971,
- 0.005339109804481268,
- 0.06696391105651855,
- 0.02413136512041092,
- 0.09036707878112793,
- 0.04176964610815048,
- 0.05788330361247063,
- 0.013324343599379063,
- 0.009451223537325859,
- 0.0355890691280365,
- 0.014709781855344772,
- -0.05838003382086754,
- 0.026609864085912704,
- 0.06593391299247742,
- 0.042671672999858856,
- 0.1164429634809494,
- 0.01523220632225275,
- -0.00877242349088192,
- -0.01719171740114689,
- 0.1038389578461647,
- -0.057697195559740067,
- 0.04939057677984238,
- -5.068479644144246e-33,
- -0.03712381422519684,
- -0.05361292511224747,
- 0.008044689893722534,
- 0.008014874532818794,
- -0.014530451036989689,
- 0.05278156325221062,
- 0.01094895601272583,
- 0.06671411544084549,
- 0.03595418855547905,
- 0.05825503543019295,
- 0.01760758087038994,
- -0.042728256434202194,
- -0.0576653778553009,
- 0.028608139604330063,
- 0.14785583317279816,
- -0.03292057290673256,
- -0.011275257915258408,
- -0.011429409496486187,
- -0.060599491000175476,
- -0.06233924254775047,
- -0.03590366244316101,
- -0.03813683241605759,
- -0.019569579511880875,
- 0.007580352481454611,
- -0.0649399608373642,
- -0.05434136465191841,
- -0.016219332814216614,
- -0.0923403799533844,
- 0.007741671986877918,
- -0.01656097173690796,
- 0.019888509064912796,
- 0.005734636448323727,
- 0.024886727333068848,
- -0.016243839636445045,
- 0.026647353544831276,
- -0.09428372234106064,
- 0.001854544272646308,
- 0.01469962764531374,
- -0.056418102234601974,
- -0.03596778213977814,
- -0.018126321956515312,
- -0.00705738365650177,
- -0.06126123294234276,
- -0.04926649108529091,
- -0.013972388580441475,
- -0.04906322434544563,
- 0.0470404326915741,
- 0.06780903041362762,
- -0.014352384954690933,
- 0.01423271931707859,
- 0.056132249534130096,
- -0.02505657635629177,
- -0.023240307345986366,
- -0.014242513105273247,
- 0.04925639182329178,
- 0.04926251247525215,
- 0.02957754395902157,
- -0.02541891112923622,
- 0.010422949679195881,
- -0.01999768614768982,
- -0.039448920637369156,
- 0.07184149324893951,
- 0.07350731641054153,
- 0.03287526220083237,
- 0.03842713311314583,
- -0.04176120460033417,
- 0.08332471549510956,
- -0.054752081632614136,
- 0.0032567244488745928,
- 0.06659400463104248,
- -0.0685393437743187,
- -0.009664451703429222,
- 0.07104767113924026,
- 0.0635947436094284,
- 0.001087743672542274,
- 0.0026036715134978294,
- -0.053407590836286545,
- 0.024868689477443695,
- 0.016453005373477936,
- -0.041673943400382996,
- 0.012559749186038971,
- -0.0034131661523133516,
- 0.047639671713113785,
- 0.028605354949831963,
- -0.07611339539289474,
- 0.013450081460177898,
- -0.031561121344566345,
- -0.0608200803399086,
- 0.07678328454494476,
- -0.012129983864724636,
- 0.03448263555765152,
- -0.04763122275471687,
- 0.055705104023218155,
- -0.009103745222091675,
- -0.11783789098262787,
- 2.7429960475056455e-33,
- -0.05918946489691734,
- -0.04408378526568413,
- 0.11691480875015259,
- 0.017323780804872513,
- 0.06378185003995895,
- -0.038043636828660965,
- -0.05256260186433792,
- 0.001770090777426958,
- 0.04113534465432167,
- 0.018580274656414986,
- -0.022139398381114006,
- -0.01557993609458208,
- 0.0426531545817852,
- 0.059342578053474426,
- 0.035015955567359924,
- 0.06124018505215645,
- 0.05946484953165054,
- 0.028662770986557007,
- -0.060753632336854935,
- -0.03995615988969803,
- 0.05130612105131149,
- -0.04108646139502525,
- 0.04117845371365547,
- -0.09098020941019058,
- 0.01787208952009678,
- -0.02806808240711689,
- 0.03416674584150314,
- 0.0781652107834816,
- -0.007185729220509529,
- 0.0012788177700713277,
- 0.008190602995455265,
- -0.030801264569163322,
- 0.047152820974588394,
- 0.021191149950027466,
- 0.009415979497134686,
- 0.07591228187084198,
- 0.05928366258740425,
- -0.02375946007668972,
- -0.056120678782463074,
- -0.008653342723846436,
- 0.022381268441677094,
- -0.003522104350849986,
- 0.02872794307768345,
- 0.05084460973739624,
- -0.023772913962602615,
- 0.008574279025197029,
- -0.023993147537112236,
- 0.08281915634870529,
- -0.09326979517936707,
- 0.0036338295321911573,
- -0.12170296162366867,
- -0.031018229201436043,
- -0.036004625260829926,
- -0.04647406190633774,
- -0.023764781653881073,
- 0.060400765389204025,
- -0.031526219099760056,
- -0.044612541794776917,
- 0.007604646030813456,
- -0.0023517499212175608,
- 0.06637120991945267,
- -0.06963436305522919,
- -0.030938103795051575,
- 0.059037186205387115,
- -0.000701680313795805,
- 0.02998480200767517,
- 0.037205178290605545,
- -0.02079627476632595,
- -0.016089389100670815,
- 0.011584170162677765,
- 0.1094195768237114,
- -0.02566775493323803,
- -0.09756380319595337,
- -0.030071577057242393,
- 0.0814746618270874,
- 0.0010476212482899427,
- -0.05172497034072876,
- 0.008892826735973358,
- -0.10210991650819778,
- -0.0809677392244339,
- -0.0473841056227684,
- -0.06107183173298836,
- 0.08156563341617584,
- -0.06487210094928741,
- 0.030227478593587875,
- 0.06660549342632294,
- 0.05560660362243652,
- -0.004136976785957813,
- 0.07642275840044022,
- -0.03360554203391075,
- 0.0025853076949715614,
- -0.022754961624741554,
- 0.11120009422302246,
- -0.011348802596330643,
- -0.004500517621636391,
- -1.4561673644664097e-8,
- -0.06869151443243027,
- 0.031080735847353935,
- -0.046135030686855316,
- -0.04174169898033142,
- 0.00552938599139452,
- -0.05766677111387253,
- -0.028068412095308304,
- -0.033458054065704346,
- -0.005111753474920988,
- 0.044489577412605286,
- 0.05056752264499664,
- -0.09795363247394562,
- 0.012780152261257172,
- 0.05083198845386505,
- 0.14814437925815582,
- -0.07170848548412323,
- 0.016472436487674713,
- 0.10140901803970337,
- -0.06221440061926842,
- 0.04564536735415459,
- 0.06736584007740021,
- 0.026316722854971886,
- 0.053866781294345856,
- -0.035728324204683304,
- -0.018408572301268578,
- 0.04283631965517998,
- -0.07124222815036774,
- 0.035570915788412094,
- 0.03049057349562645,
- 0.035091426223516464,
- 0.05362209677696228,
- 0.1490575075149536,
- -0.03690009191632271,
- -0.008352906443178654,
- 0.028270015493035316,
- -0.0029822541400790215,
- 0.008857854641973972,
- 0.01913546957075596,
- 0.022571731358766556,
- 0.09604504704475403,
- -0.023789633065462112,
- -0.0316929928958416,
- -0.013090129010379314,
- 0.0610404908657074,
- 0.0036531975492835045,
- -0.043662846088409424,
- 0.02843656577169895,
- -0.1292332261800766,
- 0.03151828795671463,
- -0.07971695810556412,
- 0.03739478439092636,
- 0.010332471691071987,
- 0.03260808065533638,
- 0.025919130071997643,
- 0.08165960758924484,
- -0.025259975343942642,
- 0.037631332874298096,
- 0.027680082246661186,
- -0.12425810098648071,
- -0.028568383306264877,
- 0.07238585501909256,
- -0.002203869866207242,
- -0.06310867518186569,
- 0.0026226239278912544
- ]
- },
- {
- "keyword": "player",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.03272990509867668,
- 0.04790274053812027,
- -0.03352607041597366,
- -0.05324235185980797,
- -0.052073732018470764,
- 0.018748270347714424,
- 0.17948244512081146,
- 0.1270112693309784,
- 0.013239050284028053,
- 0.03635749593377113,
- 0.020811619237065315,
- -0.023832229897379875,
- -0.02776828408241272,
- 0.02076658234000206,
- 0.02185322344303131,
- 0.055190399289131165,
- -0.0960022360086441,
- 0.03866250813007355,
- -0.020359626039862633,
- -0.010427415370941162,
- -0.104438416659832,
- 0.002686153631657362,
- -0.025218021124601364,
- 0.011769297532737255,
- -0.02928820252418518,
- 0.007791642099618912,
- 0.03658890724182129,
- 0.047430187463760376,
- -0.08580508828163147,
- -0.08409776538610458,
- -0.03263792395591736,
- -0.005511729046702385,
- 0.0845855325460434,
- 0.023585030809044838,
- -0.1086476594209671,
- 0.05905858799815178,
- -0.06013157591223717,
- -0.013998951762914658,
- -0.03281359374523163,
- 0.0005915264482609928,
- -0.009683494456112385,
- -0.06255464255809784,
- -0.08061973750591278,
- 0.009234899654984474,
- -0.04063623398542404,
- -0.01471992302685976,
- 0.05152178555727005,
- 0.022720221430063248,
- -0.0032317328732460737,
- 0.02943585440516472,
- -0.09269493073225021,
- 0.05825347453355789,
- -0.025509372353553772,
- -0.02327265776693821,
- 0.06846094131469727,
- -0.001009689294733107,
- 0.003188640344887972,
- 0.04321093484759331,
- 0.013306490145623684,
- 0.00010751603986136615,
- -0.006682951003313065,
- -0.03191240876913071,
- -0.048145558685064316,
- -0.0027181582991033792,
- 0.06610520929098129,
- 0.010333400219678879,
- -0.006566272582858801,
- -0.0335158035159111,
- -0.04716093838214874,
- -0.0024756116326898336,
- 0.007386953104287386,
- 0.026022661477327347,
- -0.004537784494459629,
- -0.056286100298166275,
- 0.012648026458919048,
- -0.025749914348125458,
- 0.03214290738105774,
- -0.0005893183988519013,
- 0.1177297830581665,
- 0.06819107383489609,
- 0.061122167855501175,
- -0.043326981365680695,
- -0.06622301042079926,
- -0.014937389642000198,
- -0.01615230366587639,
- -0.03789537400007248,
- -0.015865135937929153,
- -0.007239938713610172,
- 0.011235712096095085,
- 0.05676480010151863,
- -0.04213555157184601,
- 0.06180861219763756,
- 0.08500464260578156,
- 0.014133975841104984,
- -0.05646301805973053,
- 0.03762264922261238,
- 0.07161884754896164,
- -0.11850858479738235,
- -0.04930591583251953,
- 0.24789860844612122,
- 0.04281321540474892,
- 0.04647127166390419,
- 0.07023411989212036,
- -0.01027530524879694,
- -0.019661100581288338,
- 0.019234340637922287,
- -0.06041475757956505,
- 0.04445933550596237,
- -0.03964381664991379,
- -0.02041814476251602,
- 0.0007518318598158658,
- -0.019890835508704185,
- -0.08848728239536285,
- 0.03887251019477844,
- 0.025530390441417694,
- 0.035333652049303055,
- -0.010597188957035542,
- 0.0701204314827919,
- 0.010575929656624794,
- -0.01902327872812748,
- 0.012348413467407227,
- -0.002887191018089652,
- -0.02112184651196003,
- 0.028742274269461632,
- -0.055763885378837585,
- -0.0028800282161682844,
- 0.06514157354831696,
- -5.993049297420162e-33,
- -0.014890050515532494,
- -0.06349719315767288,
- 0.01813400909304619,
- 0.0851859524846077,
- -0.05873925983905792,
- 0.01695157401263714,
- 0.061455391347408295,
- -0.005123487673699856,
- -0.11477439850568771,
- -0.01910187304019928,
- -0.00932423584163189,
- -0.01679745316505432,
- -0.011988135986030102,
- 0.06646649539470673,
- 0.11485759168863297,
- 0.05884071812033653,
- -0.02457124926149845,
- 0.02223019115626812,
- -0.00064870435744524,
- 0.020445959642529488,
- 0.0030876079108566046,
- 0.06856193393468857,
- -0.004050381947308779,
- 0.09196846932172775,
- -0.05928149074316025,
- -0.027909262105822563,
- 0.011941674165427685,
- -0.041450340300798416,
- 0.02887316793203354,
- -0.0044415052980184555,
- 0.04025096818804741,
- -0.024700025096535683,
- 0.0016170279122889042,
- 0.02443728782236576,
- 0.032567381858825684,
- -0.02720177173614502,
- -0.03136211261153221,
- -0.06670035421848297,
- -0.0179706159979105,
- -0.08371806144714355,
- 0.02141752280294895,
- 0.019631540402770042,
- -0.06840590387582779,
- 0.006966791581362486,
- -0.09727250039577484,
- -0.07716227322816849,
- 0.05422879010438919,
- -0.00872646551579237,
- -0.09823296964168549,
- -0.0014227806823328137,
- 0.0007373765693046153,
- 0.024172183126211166,
- -0.021152615547180176,
- -0.002415142022073269,
- 0.00010293140803696588,
- -0.054019514471292496,
- 0.05592867732048035,
- -0.042573295533657074,
- -0.047425102442502975,
- -0.03359030932188034,
- 0.05486133694648743,
- 0.09559796005487442,
- -0.017777753993868828,
- 0.0003460612497292459,
- -0.016714807599782944,
- -0.07832128554582596,
- 0.05826140195131302,
- -0.0062248888425529,
- 0.0988617017865181,
- -0.039576876908540726,
- 0.020258262753486633,
- 0.05368669703602791,
- 0.08047474920749664,
- 0.05069568380713463,
- -0.07951641827821732,
- -0.006537945941090584,
- -0.02959478087723255,
- 0.05271606147289276,
- 0.02261645905673504,
- -0.0007102438830770552,
- -0.0648341178894043,
- -0.038192518055438995,
- -0.05391565337777138,
- -0.044472143054008484,
- -0.06945832073688507,
- -0.026366785168647766,
- -0.015725672245025635,
- -0.07786007225513458,
- 0.003221837803721428,
- 0.07833617925643921,
- -0.021969880908727646,
- 0.026217302307486534,
- 0.04133987054228783,
- 0.06329372525215149,
- -0.02484532631933689,
- 3.740377841252409e-33,
- -0.03934936597943306,
- -0.03364412486553192,
- 0.024524305015802383,
- 0.05460391938686371,
- 0.07177140563726425,
- -0.018995482474565506,
- 0.05519662797451019,
- 0.048371732234954834,
- -0.023241713643074036,
- 0.04485957324504852,
- -0.0501394122838974,
- -0.018757006153464317,
- 0.056395936757326126,
- -0.012490770779550076,
- 0.03185657784342766,
- 0.04256501421332359,
- -0.02089114673435688,
- -0.036200933158397675,
- -0.00007921569340396672,
- 0.048024918884038925,
- -0.06375192850828171,
- -0.04135577008128166,
- 0.04043879359960556,
- -0.06700251251459122,
- -0.05910133197903633,
- -0.005469046533107758,
- 0.18171729147434235,
- 0.0034296377561986446,
- -0.0528072863817215,
- 0.005716115701943636,
- 0.08567197620868683,
- 0.07692594826221466,
- -0.05795769393444061,
- -0.07061802595853806,
- -0.05751229077577591,
- 0.12495654821395874,
- 0.009202873334288597,
- 0.030211549252271652,
- -0.010813440196216106,
- -0.0016465920489281416,
- 0.08034264296293259,
- 0.06350221484899521,
- -0.022032609209418297,
- 0.09793833643198013,
- -0.025113826617598534,
- 0.02500193379819393,
- 0.05427980050444603,
- -0.021648839116096497,
- 0.046857498586177826,
- 0.061519723385572433,
- -0.05037826672196388,
- 0.04849006235599518,
- 0.010214673355221748,
- -0.044975586235523224,
- -0.03977808728814125,
- 0.030928438529372215,
- -0.04598955065011978,
- -0.053519561886787415,
- 0.013514460064470768,
- 0.00817844644188881,
- 0.005915479734539986,
- 0.01666930504143238,
- -0.01297425664961338,
- 0.05657370761036873,
- -0.011143362149596214,
- 0.08143103122711182,
- -0.038056571036577225,
- -0.003167471382766962,
- -0.014219488948583603,
- -0.11686068773269653,
- 0.04221852123737335,
- -0.005752179306000471,
- -0.05044339597225189,
- 0.048405177891254425,
- -0.029748031869530678,
- -0.025137875229120255,
- -0.11165373027324677,
- 0.11756832897663116,
- 0.03718038275837898,
- -0.03570966422557831,
- -0.04062497988343239,
- -0.03713125362992287,
- -0.05036052316427231,
- 0.026094520464539528,
- -0.02682356722652912,
- -0.05209054425358772,
- 0.007636410184204578,
- 0.04042913392186165,
- -0.06372344493865967,
- -0.0076600792817771435,
- 0.049550995230674744,
- 0.036692820489406586,
- -0.07889356464147568,
- -0.03714878112077713,
- 0.0020675125997513533,
- -1.3225446515718886e-8,
- -0.09091660380363464,
- 0.05369266867637634,
- -0.018504614010453224,
- -0.011280420236289501,
- 0.05472620949149132,
- 0.02451394684612751,
- -0.040764227509498596,
- -0.051581382751464844,
- 0.03766372427344322,
- 0.06101619079709053,
- 0.03224591165781021,
- -0.013111686334013939,
- 0.08546281605958939,
- -0.030024413019418716,
- 0.08766051381826401,
- -0.05570884421467781,
- -0.07211755216121674,
- 0.04586435854434967,
- -0.06693390011787415,
- 0.04632776230573654,
- 0.004365391563624144,
- -0.011640943586826324,
- 0.011689999140799046,
- 0.05939023941755295,
- 0.008942021988332272,
- -0.010924163274466991,
- -0.11998147517442703,
- 0.0641670748591423,
- -0.014794401824474335,
- -0.014836790040135384,
- 0.0004892015131190419,
- 0.09736878424882889,
- 0.034695934504270554,
- -0.04129772633314133,
- 0.022983206436038017,
- 0.040091536939144135,
- 0.06511817872524261,
- -0.0018154431600123644,
- -0.038965120911598206,
- 0.08224565535783768,
- -0.02530086040496826,
- -0.008164223283529282,
- -0.0643533319234848,
- -0.019379064440727234,
- 0.003153834957629442,
- -0.0069739073514938354,
- -0.03262513875961304,
- -0.07356815040111542,
- -0.04374824836850166,
- -0.0020154754165560007,
- -0.035996608436107635,
- -0.000025880717657855712,
- 0.004446818493306637,
- 0.042791228741407394,
- 0.02973480336368084,
- -0.00395974051207304,
- -0.0201733335852623,
- 0.048349447548389435,
- -0.017184119671583176,
- -0.004808809142559767,
- 0.07079603523015976,
- 0.02703339233994484,
- 0.011004829779267311,
- 0.05012059584259987
- ]
- },
- {
- "keyword": "gamer",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.006354769691824913,
- 0.03303069993853569,
- 0.00179958320222795,
- -0.04846804589033127,
- -0.05333029106259346,
- -0.05704242363572121,
- 0.2066413313150406,
- 0.04455374926328659,
- -0.006624109577387571,
- 0.062116771936416626,
- -0.02482876367866993,
- -0.10119142383337021,
- -0.013148028403520584,
- -0.07890602201223373,
- -0.004018762614578009,
- 0.061829037964344025,
- -0.017560921609401703,
- -0.012107286602258682,
- -0.0745435431599617,
- -0.046608392149209976,
- -0.12472330033779144,
- 0.021383026614785194,
- 0.015752138569951057,
- 0.03223951533436775,
- -0.029779400676488876,
- 0.05211096629500389,
- 0.02550443634390831,
- 0.09781170636415482,
- -0.020096048712730408,
- -0.00010694420780055225,
- -0.017244230955839157,
- 0.009515240788459778,
- -0.007025133818387985,
- 0.05170893296599388,
- -0.0779954120516777,
- 0.07959038019180298,
- -0.005842907354235649,
- -0.010378895327448845,
- -0.04711785539984703,
- -0.08306574076414108,
- -0.06195636838674545,
- -0.018336737528443336,
- -0.03140246495604515,
- 0.0013418258167803288,
- 0.0016502178041264415,
- 0.037277430295944214,
- -0.04603641852736473,
- -0.013581650331616402,
- 0.02397921308875084,
- 0.06784567981958389,
- -0.01389212254434824,
- -0.01242047268897295,
- 0.01070497278124094,
- -0.04492577537894249,
- 0.0135421147570014,
- 0.012963881716132164,
- -0.05768349766731262,
- 0.03597623109817505,
- 0.009339860640466213,
- 0.01790761947631836,
- 0.003979455213993788,
- -0.04040352627635002,
- -0.04456980526447296,
- 0.021605070680379868,
- 0.05827769637107849,
- 0.0357268787920475,
- 0.06276210397481918,
- -0.010373474098742008,
- -0.020707309246063232,
- -0.023730142042040825,
- -0.016449442133307457,
- 0.04325892776250839,
- -0.05853918194770813,
- -0.05916167050600052,
- -0.05001223459839821,
- -0.03335205465555191,
- 0.022517606616020203,
- 0.020908109843730927,
- 0.11137432605028152,
- 0.04315808415412903,
- 0.08960976451635361,
- 0.08935342729091644,
- -0.02796890214085579,
- 0.009460313245654106,
- -0.03087020292878151,
- 0.0008485618745908141,
- -0.05841241031885147,
- 0.003920048475265503,
- -0.03639472648501396,
- 0.01826031506061554,
- -0.005728869698941708,
- 0.03215847536921501,
- 0.16686224937438965,
- 0.06086819991469383,
- -0.12066498398780823,
- -0.014528361149132252,
- 0.030464477837085724,
- -0.09617342054843903,
- -0.04645358771085739,
- 0.2226080745458603,
- -0.04301679879426956,
- 0.034714385867118835,
- 0.02629428170621395,
- 0.05847938358783722,
- -0.006098996847867966,
- 0.060210101306438446,
- -0.09142309427261353,
- 0.08754701912403107,
- -0.06353224813938141,
- 0.019680770114064217,
- -0.05484922230243683,
- 0.029702387750148773,
- -0.0439898855984211,
- 0.005976771004498005,
- 0.057973794639110565,
- 0.060745056718587875,
- -0.05594727396965027,
- 0.07330100238323212,
- -0.0034704701974987984,
- 0.0025857235305011272,
- 0.008511066436767578,
- 0.005646584555506706,
- 0.0007706340402364731,
- 0.03861742466688156,
- 0.03010663017630577,
- -0.03899885714054108,
- 0.032894402742385864,
- -5.5239190528985874e-33,
- 0.004740346688777208,
- -0.06388040632009506,
- 0.07300624996423721,
- 0.040361981838941574,
- -0.010168161243200302,
- 0.05273319408297539,
- 0.07316093146800995,
- -0.0011871381429955363,
- -0.029965175315737724,
- 0.05739979445934296,
- 0.015201309695839882,
- 0.048374615609645844,
- -0.0710732564330101,
- 0.05488072335720062,
- 0.10899628698825836,
- 0.032400548458099365,
- 0.02779771201312542,
- 0.01870540715754032,
- -0.03085084818303585,
- 0.01470187958329916,
- 0.013356849551200867,
- -0.008482828736305237,
- 0.06163110211491585,
- 0.10180716216564178,
- -0.05932355299592018,
- 0.00009190128912450746,
- -0.08375735580921173,
- -0.006691745948046446,
- 0.07033583521842957,
- 0.023578381165862083,
- 0.00937382597476244,
- -0.07970279455184937,
- -0.03932569548487663,
- -0.001534511218778789,
- 0.006578747648745775,
- -0.06766019016504288,
- 0.013417690992355347,
- -0.028567777946591377,
- -0.0415000393986702,
- 0.008899071253836155,
- 0.013536268845200539,
- 0.01098011713474989,
- -0.044088806957006454,
- -0.08091626316308975,
- -0.015307264402508736,
- -0.016840772703289986,
- 0.058324795216321945,
- -0.08708912879228592,
- -0.17482644319534302,
- 0.05580272525548935,
- -0.056290727108716965,
- 0.044818248599767685,
- 0.006433185189962387,
- 0.01718795858323574,
- -0.003376034554094076,
- -0.07809952646493912,
- 0.06575051695108414,
- -0.03968333452939987,
- -0.08636622130870819,
- -0.0059223053976893425,
- 0.05604107305407524,
- 0.09477992355823517,
- 0.02403915487229824,
- -0.033376578241586685,
- -0.006272493861615658,
- -0.04791051149368286,
- 0.0756615698337555,
- 0.013135449029505253,
- 0.004281145986169577,
- -0.044525351375341415,
- 0.06725631654262543,
- 0.03191850706934929,
- 0.10697977244853973,
- 0.010216024704277515,
- 0.022302165627479553,
- -0.014119117520749569,
- -0.03944980725646019,
- -0.03282410651445389,
- -0.034377533942461014,
- -0.013474207371473312,
- 0.008414286188781261,
- -0.021198570728302002,
- -0.06809166818857193,
- -0.08220696449279785,
- -0.0260959230363369,
- 0.004157259128987789,
- -0.01469547301530838,
- -0.09242059290409088,
- 0.048718977719545364,
- -0.0198834091424942,
- -0.1816558837890625,
- -0.025556016713380814,
- 0.09056413173675537,
- 0.011389018036425114,
- -0.04991822689771652,
- 4.673215995260406e-33,
- -0.07684934139251709,
- -0.0279268529266119,
- -0.0039500282146036625,
- 0.03840603679418564,
- 0.043053898960351944,
- -0.0007338589639402926,
- -0.0019200752722099423,
- -0.02081213891506195,
- -0.03486150503158569,
- -0.00439556734636426,
- -0.018064022064208984,
- 0.0970238521695137,
- 0.05049215629696846,
- 0.02356659434735775,
- 0.04234280809760094,
- 0.01221960224211216,
- -0.007760724052786827,
- -0.021150847896933556,
- -0.005131099373102188,
- 0.025878548622131348,
- 0.018534837290644646,
- -0.01737167313694954,
- -0.03983911871910095,
- -0.007002392318099737,
- 0.024005772545933723,
- 0.035590801388025284,
- 0.10871390253305435,
- -0.022739458829164505,
- 0.036112770438194275,
- 0.029945148155093193,
- 0.08394865691661835,
- 0.11265367269515991,
- 0.05683290585875511,
- 0.001454029930755496,
- 0.03525567799806595,
- 0.024912675842642784,
- 0.07830622047185898,
- 0.019244713708758354,
- -0.043409328907728195,
- -0.01756528951227665,
- 0.016399288550019264,
- 0.007555666379630566,
- -0.04051223397254944,
- 0.10659767687320709,
- -0.02709096483886242,
- 0.13197505474090576,
- 0.025972140952944756,
- 0.029952866956591606,
- 0.06050358712673187,
- 0.024104837328195572,
- -0.0250012818723917,
- -0.003531636670231819,
- 0.044611379504203796,
- -0.06673960387706757,
- -0.02328421175479889,
- -0.059710171073675156,
- -0.06543999165296555,
- -0.010291033424437046,
- 0.02025236375629902,
- -0.02518470399081707,
- 0.0011968895560130477,
- -0.00310220243409276,
- -0.018937895074486732,
- 0.041666287928819656,
- 0.007400939706712961,
- 0.024078577756881714,
- 0.030399929732084274,
- -0.024658460170030594,
- -0.00991098489612341,
- -0.09006448835134506,
- -0.0070571559481322765,
- -0.019272617995738983,
- -0.02854405902326107,
- 0.0022682049311697483,
- -0.12398911267518997,
- -0.022887755185365677,
- -0.08590739965438843,
- 0.014812382869422436,
- 0.01614472083747387,
- 0.001218638033606112,
- -0.009841099381446838,
- -0.027993550524115562,
- 0.05085187405347824,
- 0.03396455571055412,
- -0.040562164038419724,
- -0.08303631097078323,
- 0.0364864356815815,
- 0.031814493238925934,
- -0.06479785591363907,
- -0.05496756359934807,
- 0.06050265580415726,
- 0.05865602567791939,
- -0.02057729847729206,
- 0.0076665147207677364,
- -0.01812521554529667,
- -1.1337134786515435e-8,
- 0.02739112824201584,
- -0.04694196581840515,
- 0.013965369202196598,
- -0.07490918785333633,
- 0.04361998662352562,
- 0.0662255808711052,
- -0.03483445197343826,
- -0.0011726646916940808,
- 0.013074686750769615,
- 0.07303158938884735,
- 0.04114524647593498,
- 0.018482796847820282,
- 0.07313042134046555,
- 0.03503764420747757,
- 0.06389181315898895,
- 0.02656971476972103,
- 0.013266601599752903,
- 0.03135095164179802,
- -0.06726660579442978,
- 0.052203468978405,
- 0.029684972018003464,
- -0.0010636132210493088,
- 0.032431792467832565,
- -0.05982087925076485,
- -0.058217603713274,
- -0.029206309467554092,
- -0.052696067839860916,
- 0.003218907630071044,
- 0.03544807434082031,
- 0.03143741562962532,
- -0.014008807949721813,
- 0.07215210050344467,
- -0.013554304838180542,
- -0.006613713223487139,
- -0.04590838775038719,
- -0.04617910832166672,
- 0.06951062381267548,
- 0.009740930050611496,
- -0.003952979110181332,
- 0.016729410737752914,
- -0.07654789090156555,
- -0.03352795168757439,
- 0.02551187016069889,
- -0.04245169833302498,
- -0.02534388191998005,
- 0.020885828882455826,
- 0.0015253034653142095,
- -0.04453011602163315,
- -0.032579854130744934,
- -0.04154026508331299,
- -0.024208584800362587,
- 0.06266216188669205,
- 0.009574836120009422,
- 0.03347564488649368,
- 0.04857983440160751,
- -0.01919950731098652,
- 0.02818658947944641,
- 0.08198121935129166,
- -0.005739962682127953,
- -0.010624595917761326,
- 0.04665610194206238,
- 0.03960795700550079,
- -0.03421609476208687,
- -0.047226980328559875
- ]
- },
- {
- "keyword": "competitor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.03928166627883911,
- 0.012751822359859943,
- -0.027015874162316322,
- -0.04643309861421585,
- 0.023867616429924965,
- 0.04762732610106468,
- 0.06685799360275269,
- 0.083201564848423,
- 0.011492932215332985,
- -0.001567690633237362,
- 0.019544661045074463,
- -0.06390777230262756,
- 0.08745572715997696,
- 0.02174791507422924,
- -0.04418975114822388,
- -0.04952133074402809,
- 0.09251945465803146,
- -0.009544705972075462,
- -0.06795310229063034,
- -0.0469207763671875,
- -0.08566796034574509,
- -0.0903443992137909,
- 0.03001832403242588,
- 0.019528139382600784,
- -0.03324773535132408,
- 0.028016002848744392,
- -0.057241544127464294,
- 0.07945387810468674,
- 0.007792028598487377,
- -0.09321621060371399,
- -0.03941473364830017,
- -0.06510283797979355,
- 0.025501811876893044,
- 0.01820051111280918,
- 0.010533063672482967,
- -0.01584421843290329,
- -0.05454302579164505,
- 0.011064168065786362,
- -0.0028820871375501156,
- 0.038646064698696136,
- -0.025262875482439995,
- -0.10286509245634079,
- -0.04797202721238136,
- -0.023848678916692734,
- 0.02605457231402397,
- 0.02453998662531376,
- 0.042731527239084244,
- 0.04414596036076546,
- 0.04160747677087784,
- 0.020030932500958443,
- -0.1561492681503296,
- -0.05975335091352463,
- -0.02523636817932129,
- -0.10714707523584366,
- 0.0538092665374279,
- 0.00013264056178741157,
- -0.00045740342466160655,
- -0.0507541261613369,
- -0.004574681166559458,
- -0.025451699271798134,
- 0.0940839871764183,
- -0.005606673192232847,
- -0.08053871244192123,
- 0.04499523341655731,
- 0.028196431696414948,
- -0.026358233764767647,
- -0.043481554836034775,
- 0.07274524867534637,
- -0.029567543417215347,
- 0.0004871480632573366,
- 0.09605145454406738,
- -0.03420443460345268,
- -0.00014580742572434247,
- 0.054328832775354385,
- 0.0408073253929615,
- 0.008328107185661793,
- 0.0019570125732570887,
- -0.0012819337425753474,
- 0.09263720363378525,
- 0.006832031533122063,
- 0.05704379826784134,
- -0.04838881269097328,
- -0.07428918033838272,
- 0.02738303318619728,
- -0.028808187693357468,
- -0.04972059279680252,
- 0.04513852298259735,
- -0.027274735271930695,
- 0.03202904015779495,
- -0.0489901639521122,
- -0.039598479866981506,
- 0.02078179083764553,
- 0.04327146336436272,
- 0.04434040188789368,
- -0.10965999960899353,
- 0.05207137018442154,
- -0.04788056015968323,
- 0.030280310660600662,
- 0.044319432228803635,
- 0.2580393850803375,
- 0.016839440912008286,
- 0.03515098989009857,
- -0.06160692870616913,
- -0.03843134641647339,
- 0.012289605103433132,
- -0.033822692930698395,
- -0.005784826353192329,
- -0.011372808367013931,
- 0.04391619190573692,
- 0.05596540495753288,
- 0.039960455149412155,
- 0.009344327263534069,
- -0.08421965688467026,
- 0.06975124776363373,
- 0.04550405591726303,
- 0.05177077278494835,
- -0.0409393273293972,
- 0.06791416555643082,
- 0.004069892689585686,
- 0.02155197598040104,
- -0.01968168094754219,
- 0.05179360881447792,
- -0.05433250218629837,
- 0.006573799066245556,
- -0.012138440273702145,
- -0.05798785388469696,
- -0.04147140309214592,
- -6.438018724928523e-33,
- -0.03262327238917351,
- -0.07312864065170288,
- 0.06314260512590408,
- 0.05774018540978432,
- -0.1002974882721901,
- 0.0014675433048978448,
- -0.042336560785770416,
- -0.01896372251212597,
- -0.09411116689443588,
- 0.0005474170902743936,
- -0.07288626581430435,
- 0.03909216821193695,
- -0.03101084567606449,
- -0.011800437234342098,
- 0.1621512621641159,
- 0.012703511863946915,
- -0.049586132168769836,
- -0.06905797868967056,
- 0.008590670302510262,
- -0.012735999189317226,
- -0.00707833981141448,
- 0.010629523545503616,
- -0.04091854393482208,
- 0.09347634762525558,
- 0.004664165433496237,
- -0.019128354266285896,
- 0.008489715866744518,
- -0.06689369678497314,
- 0.012430298142135143,
- 0.02746719680726528,
- 0.03336891159415245,
- -0.0733678862452507,
- 0.00952489860355854,
- 0.016719985753297806,
- 0.03375978022813797,
- 0.01768210157752037,
- -0.038697876036167145,
- -0.09378620982170105,
- -0.0025298704858869314,
- 0.05430041626095772,
- -0.07118530571460724,
- -0.01856888271868229,
- -0.026662832126021385,
- 0.00331618869677186,
- 0.0008842539391480386,
- -0.0182814784348011,
- -0.00008616415288997814,
- -0.005033339839428663,
- -0.04221542179584503,
- 0.01982252486050129,
- -0.018475569784641266,
- 0.0015465235337615013,
- 0.08509588241577148,
- -0.014584307558834553,
- 0.0437721312046051,
- -0.020635994151234627,
- -0.02001727931201458,
- -0.006832960061728954,
- -0.008507421240210533,
- 0.049181073904037476,
- -0.0484100803732872,
- 0.08822543919086456,
- -0.04588423669338226,
- 0.03827601298689842,
- -0.05089493468403816,
- 0.015492971986532211,
- 0.03413018956780434,
- -0.053724903613328934,
- -0.05585791543126106,
- -0.009249168448150158,
- -0.012645664624869823,
- -0.05472194775938988,
- -0.11078594624996185,
- -0.024350665509700775,
- 0.007142771501094103,
- -0.0564676895737648,
- 0.014390571042895317,
- 0.06196872517466545,
- 0.07639816403388977,
- -0.04288759082555771,
- -0.03135264292359352,
- -0.014110802672803402,
- 0.018941977992653847,
- -0.033278945833444595,
- -0.07340919226408005,
- -0.024268951267004013,
- 0.02876872941851616,
- -0.10802337527275085,
- 0.08195760846138,
- 0.09271156042814255,
- -0.05412859469652176,
- 0.010580960661172867,
- -0.023372797295451164,
- 0.14444996416568756,
- 0.029437875375151634,
- 5.324781126319676e-33,
- -0.009047077037394047,
- 0.0028434814885258675,
- 0.08005351573228836,
- 0.07691635936498642,
- 0.03614009916782379,
- 0.0258666779845953,
- 0.047187212854623795,
- -0.04673689231276512,
- -0.06645198911428452,
- 0.06041008606553078,
- -0.055087216198444366,
- 0.008408145979046822,
- 0.06666544824838638,
- 0.0005279613542370498,
- -0.015484622679650784,
- -0.06319717317819595,
- 0.053083911538124084,
- 0.031689904630184174,
- 0.005665600299835205,
- -0.03865987807512283,
- 0.025806579738855362,
- -0.009313737042248249,
- 0.036190617829561234,
- -0.046365007758140564,
- -0.04066438972949982,
- -0.001986876130104065,
- 0.0405772402882576,
- -0.06159095838665962,
- -0.013104865327477455,
- -0.028369488194584846,
- 0.05597277358174324,
- -0.023389782756567,
- -0.03400819003582001,
- 0.02238648757338524,
- -0.007786226458847523,
- 0.12918171286582947,
- -0.017416009679436684,
- -0.04634404554963112,
- 0.0005781096406280994,
- -0.041863225400447845,
- -0.03185892477631569,
- -0.06997164338827133,
- 0.047780342400074005,
- 0.04243971407413483,
- -0.03599778562784195,
- -0.0000364848856406752,
- 0.04514816775918007,
- -0.11640137434005737,
- 0.09909583628177643,
- 0.04577600583434105,
- -0.01899358257651329,
- 0.0395510271191597,
- -0.008958405815064907,
- 0.01171694602817297,
- -0.05001729354262352,
- -0.012632324360311031,
- 0.004014427773654461,
- 0.03847895935177803,
- -0.02082865871489048,
- -0.0018965770723298192,
- 0.07808660715818405,
- 0.0070144301280379295,
- -0.013154753483831882,
- 0.11001937091350555,
- 0.014011763036251068,
- 0.05120443180203438,
- -0.0321618989109993,
- 0.04083370417356491,
- 0.02591664530336857,
- -0.0373697429895401,
- 0.008983262814581394,
- 0.06449459493160248,
- -0.037486568093299866,
- -0.0327925942838192,
- -0.10573611408472061,
- 0.016399715095758438,
- -0.1005525141954422,
- 0.06469683349132538,
- 0.008795683272182941,
- 0.08385609835386276,
- -0.025803320109844208,
- 0.03459704667329788,
- 0.06461300700902939,
- 0.06461330503225327,
- -0.03983098641037941,
- 0.10642362385988235,
- 0.02931327559053898,
- 0.020427418872714043,
- -0.03919002786278725,
- 0.019856518134474754,
- 0.06939678639173508,
- -0.06122877076268196,
- 0.009623005986213684,
- -0.01267358846962452,
- 0.04216466844081879,
- -1.241499081316988e-8,
- -0.0444733090698719,
- 0.019081179052591324,
- 0.07825183868408203,
- 0.05213639885187149,
- -0.006004508584737778,
- -0.02062249556183815,
- 0.02635432966053486,
- -0.056339602917432785,
- 0.028222782537341118,
- 0.10172267258167267,
- 0.06457553058862686,
- -0.020289355888962746,
- -0.010089624673128128,
- 0.06115192547440529,
- 0.05177004635334015,
- 0.01685241423547268,
- -0.030573494732379913,
- 0.06169922649860382,
- -0.007254394702613354,
- 0.002150393556803465,
- 0.032181933522224426,
- 0.07709063589572906,
- -0.029007162898778915,
- 0.02121058665215969,
- -0.009784926660358906,
- 0.02893386036157608,
- -0.02500586025416851,
- 0.029390772804617882,
- -0.004289868287742138,
- 0.030775409191846848,
- 0.024362560361623764,
- -0.007583167869597673,
- -0.061402156949043274,
- -0.1179414689540863,
- -0.03781236335635185,
- -0.013534866273403168,
- -0.026222432032227516,
- 0.04642409086227417,
- 0.0035058355424553156,
- -0.06698485463857651,
- -0.08979795128107071,
- 0.04269138723611832,
- 0.03404920920729637,
- 0.04600929096341133,
- 0.041550878435373306,
- 0.002106850268319249,
- 0.033252354711294174,
- -0.04493820294737816,
- 0.004388558212667704,
- -0.03459310159087181,
- 0.07444902509450912,
- -0.04255960136651993,
- 0.028932055458426476,
- 0.02059113048017025,
- -0.00026294385315850377,
- -0.022744737565517426,
- -0.012462087906897068,
- -0.008446565829217434,
- -0.0670309066772461,
- 0.010580713860690594,
- 0.08290014415979385,
- -0.056365929543972015,
- 0.06762553751468658,
- 0.07112901657819748
- ]
- },
- {
- "keyword": "guest",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.03690396249294281,
- 0.028682952746748924,
- -0.005931576248258352,
- 0.03013455495238304,
- 0.015064614824950695,
- -0.06649450957775116,
- 0.08622673898935318,
- -0.034430041909217834,
- -0.02081487514078617,
- 0.038999155163764954,
- 0.010573872365057468,
- -0.08598102629184723,
- -0.03801030293107033,
- -0.014192955568432808,
- 0.001055094413459301,
- -0.0013889383990317583,
- 0.03298363462090492,
- 0.04194857180118561,
- -0.002398241311311722,
- 0.027190690860152245,
- -0.0974932461977005,
- -0.022679803892970085,
- 0.0032981974072754383,
- 0.017957864329218864,
- 0.03665562719106674,
- -0.009188816882669926,
- 0.01561568770557642,
- 0.06912314146757126,
- -0.038935013115406036,
- -0.13196516036987305,
- -0.06309393048286438,
- 0.09107155352830887,
- -0.0018068162025883794,
- 0.07369624078273773,
- -0.037607550621032715,
- 0.025715261697769165,
- -0.01881285011768341,
- -0.05250461772084236,
- -0.027606744319200516,
- 0.029491573572158813,
- -0.05457308515906334,
- -0.0195193812251091,
- -0.02860953100025654,
- -0.031021637842059135,
- 0.037068501114845276,
- -0.0011056652292609215,
- 0.04314695671200752,
- 0.018108762800693512,
- 0.052792664617300034,
- 0.09174089878797531,
- 0.07192879915237427,
- 0.06376954168081284,
- -0.0008857995853759348,
- 0.06307768821716309,
- 0.02258506417274475,
- -0.016774332150816917,
- 0.01760154217481613,
- -0.0875217467546463,
- -0.029813718050718307,
- -0.0312877893447876,
- 0.03731402009725571,
- 0.0016065360978245735,
- -0.03318025544285774,
- 0.023588430136442184,
- -0.018275771290063858,
- -0.024706726893782616,
- -0.006471509579569101,
- -0.007136578671634197,
- -0.03727491945028305,
- -0.09609214961528778,
- -0.018078602850437164,
- 0.0799441859126091,
- 0.005778296384960413,
- -0.03256018087267876,
- 0.04159167781472206,
- -0.0625317171216011,
- 0.030134031549096107,
- -0.03922467678785324,
- 0.07031640410423279,
- 0.05320696532726288,
- 0.0036305603571236134,
- -0.03459368273615837,
- -0.028738630935549736,
- -0.015576496720314026,
- -0.025814495980739594,
- -0.044981565326452255,
- 0.04238898679614067,
- 0.02064083330333233,
- -0.04772171005606651,
- 0.04581013694405556,
- -0.06173945590853691,
- 0.09409691393375397,
- 0.12631821632385254,
- -0.01480479072779417,
- -0.018980970606207848,
- 0.03158046305179596,
- -0.06548979878425598,
- -0.05255822464823723,
- -0.0018495027907192707,
- 0.2618164122104645,
- 0.01616678386926651,
- 0.06628521531820297,
- -0.002372697228565812,
- 0.03922049701213837,
- 0.005098561756312847,
- 0.02155635692179203,
- 0.07928060740232468,
- 0.0259822066873312,
- 0.029276100918650627,
- -0.04772046208381653,
- -0.04231532663106918,
- 0.0498841293156147,
- 0.0929638221859932,
- -0.020165281370282173,
- 0.06969507783651352,
- 0.025622986257076263,
- -0.0021839337423443794,
- 0.04387447610497475,
- 0.04298076033592224,
- -0.0846700370311737,
- 0.07095181196928024,
- 0.009474662132561207,
- 0.0090706255286932,
- -0.020365066826343536,
- -0.07552672177553177,
- -0.12290723621845245,
- 0.03609795123338699,
- -5.70675654625144e-33,
- -0.043377239257097244,
- -0.0029579303227365017,
- -0.006095042917877436,
- -0.016133099794387817,
- 0.07912100851535797,
- 0.038338154554367065,
- 0.0069904327392578125,
- -0.013597178272902966,
- -0.08190693706274033,
- -0.07341800630092621,
- -0.017408836632966995,
- -0.05173999071121216,
- 0.01860189437866211,
- 0.00542727205902338,
- 0.034713033586740494,
- 0.07270841300487518,
- 0.042910411953926086,
- 0.055867526680231094,
- -0.019381489604711533,
- 0.019732674583792686,
- 0.0025451979599893093,
- 0.059490665793418884,
- 0.031652044504880905,
- 0.08695467561483383,
- -0.02942069247364998,
- -0.019816488027572632,
- 0.016159940510988235,
- -0.03250817954540253,
- 0.05320662260055542,
- 0.014024386182427406,
- 0.026635000482201576,
- -0.026156838983297348,
- 0.001842439640313387,
- 0.04813607037067413,
- -0.05260418355464935,
- -0.024779587984085083,
- -0.025033706799149513,
- -0.0743025690317154,
- -0.04495655745267868,
- -0.011958524584770203,
- -0.0224703811109066,
- -0.018181294202804565,
- 0.015159785747528076,
- 0.0019079800695180893,
- -0.10247333347797394,
- 0.009767970070242882,
- 0.11642784625291824,
- 0.041339535266160965,
- 0.0045912666246294975,
- 0.10295862704515457,
- 0.0067802369594573975,
- -0.045987654477357864,
- -0.060394566506147385,
- 0.004551346879452467,
- -0.014864693395793438,
- -0.01108513679355383,
- 0.010528666898608208,
- -0.019291352480649948,
- -0.018468182533979416,
- -0.03768739476799965,
- 0.025071950629353523,
- 0.11230921745300293,
- -0.02440963312983513,
- 0.003799926256760955,
- -0.06710967421531677,
- -0.09884528070688248,
- -0.02300354093313217,
- -0.1161080002784729,
- 0.06933822482824326,
- -0.02761167101562023,
- -0.08590185642242432,
- 0.032284822314977646,
- -0.03619633615016937,
- -0.02342119812965393,
- -0.05088939145207405,
- 0.02133028768002987,
- 0.018421996384859085,
- -0.032105702906847,
- 0.01933278702199459,
- -0.02677891217172146,
- -0.029859185218811035,
- -0.008184963837265968,
- -0.007247379515320063,
- -0.03647668659687042,
- -0.06810297816991806,
- -0.045628637075424194,
- -0.03514411672949791,
- -0.08068279922008514,
- 0.0244591124355793,
- -0.023453280329704285,
- -0.026684917509555817,
- -0.027105649933218956,
- 0.1613924205303192,
- 0.020019004121422768,
- 0.02520786225795746,
- 4.2477660187894335e-33,
- -0.0453355647623539,
- -0.022070525214076042,
- -0.010503456927835941,
- 0.03603487089276314,
- 0.04864126071333885,
- 0.010860991664230824,
- -0.002472482854500413,
- -0.037881266325712204,
- -0.0747639536857605,
- -0.0172527264803648,
- -0.04852890595793724,
- -0.01595022901892662,
- 0.06143984571099281,
- -0.010813705623149872,
- 0.05591603368520737,
- 0.0883653461933136,
- 0.06069367378950119,
- -0.017228318378329277,
- -0.025810986757278442,
- 0.015436260960996151,
- -0.07634400576353073,
- 0.09394348412752151,
- 0.021364348009228706,
- -0.04338972643017769,
- -0.011055621318519115,
- 0.03422456979751587,
- 0.16350874304771423,
- -0.0023378299083560705,
- -0.04239705950021744,
- 0.03595275431871414,
- 0.05477560684084892,
- -0.0014301373157650232,
- -0.08920208364725113,
- -0.048345956951379776,
- 0.07126656174659729,
- 0.14516527950763702,
- 0.04650340601801872,
- 0.01734972558915615,
- -0.07314813137054443,
- -0.02727397158741951,
- 0.07013055682182312,
- 0.031454868614673615,
- -0.04084513336420059,
- 0.06563708186149597,
- -0.015065408311784267,
- 0.02912704274058342,
- -0.05502670630812645,
- 0.005882234778255224,
- 0.047371719032526016,
- 0.08537053316831589,
- -0.03768640756607056,
- -0.027660565450787544,
- 0.00603827927261591,
- -0.009223733097314835,
- -0.019722964614629745,
- -0.03906073421239853,
- -0.08935093134641647,
- -0.011500563472509384,
- 0.12025947868824005,
- 0.002900267019867897,
- -0.029655734077095985,
- 0.013903462328016758,
- 0.04564836621284485,
- 0.01392949465662241,
- -0.07718788832426071,
- 0.012985304929316044,
- -0.0052430275827646255,
- 0.12442614138126373,
- 0.011078516952693462,
- 0.004003529902547598,
- -0.0040607997216284275,
- -0.06637094914913177,
- -0.04343826696276665,
- 0.09687832742929459,
- 0.0015713719185441732,
- -0.01592295616865158,
- 0.020322522148489952,
- 0.00014310053666122258,
- -0.0033672035206109285,
- 0.0013738576089963317,
- -0.02349086105823517,
- 0.006768981926143169,
- 0.016011061146855354,
- 0.021500347182154655,
- 0.017582999542355537,
- -0.09372846782207489,
- 0.033451445400714874,
- 0.017193878069519997,
- 0.007944062352180481,
- 0.014672222547233105,
- 0.04869755357503891,
- -0.04721254110336304,
- 0.027461716905236244,
- -0.11184906214475632,
- -0.03651968389749527,
- -1.1867657079278615e-8,
- -0.008501973003149033,
- -0.006416622549295425,
- 0.0030822581611573696,
- -0.005646177101880312,
- -0.0006783088902011514,
- -0.016163885593414307,
- -0.005747811868786812,
- -0.02272864058613777,
- 0.043265458196401596,
- 0.09630050510168076,
- -0.014258421957492828,
- -0.0006161691853776574,
- 0.1349058449268341,
- -0.045598529279232025,
- 0.09037419408559799,
- 0.0056280698627233505,
- -0.09475094825029373,
- 0.07764270156621933,
- -0.0487847737967968,
- -0.031131727620959282,
- -0.003903583623468876,
- -0.002376070711761713,
- 0.010148818604648113,
- -0.026606116443872452,
- 0.01097112987190485,
- 0.029264874756336212,
- -0.030619604513049126,
- 0.021827371791005135,
- -0.02263989858329296,
- 0.025080684572458267,
- -0.03448959067463875,
- 0.13129037618637085,
- -0.1341574639081955,
- -0.07701356709003448,
- -0.020857788622379303,
- -0.004584313370287418,
- -0.033200740814208984,
- -0.01679079793393612,
- 0.0155869722366333,
- 0.01816139556467533,
- 0.0008957729442045093,
- 0.031225088983774185,
- 0.06117147579789162,
- -0.053981710225343704,
- -0.023110246285796165,
- -0.04602820426225662,
- 0.03421001881361008,
- -0.02857792004942894,
- 0.04519275948405266,
- -0.04284247010946274,
- -0.015717774629592896,
- -0.041565150022506714,
- -0.0022096550092101097,
- 0.063255175948143,
- -0.0021414775401353836,
- -0.0067289830185472965,
- 0.031529661267995834,
- 0.025304073467850685,
- -0.014826655387878418,
- -0.030679866671562195,
- 0.08988936245441437,
- 0.08187337219715118,
- -0.0028406777419149876,
- -0.0500815212726593
- ]
- },
- {
- "keyword": "visitor",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.015786224976181984,
- 0.02855752594769001,
- 0.01650025136768818,
- 0.007392876781523228,
- -0.014103338122367859,
- -0.0177768561989069,
- 0.20368824899196625,
- -0.0016016733134165406,
- 0.044070400297641754,
- 0.0007770139491185546,
- 0.021142398938536644,
- -0.07816112786531448,
- -0.029761983081698418,
- 0.004425309598445892,
- -0.003813875140622258,
- 0.006296670995652676,
- 0.00961268786340952,
- -0.03923067823052406,
- 0.07791464775800705,
- 0.030367663130164146,
- -0.10168541967868805,
- 0.023755095899105072,
- -0.04418615624308586,
- 0.02652416005730629,
- -0.06299113482236862,
- -0.001201554900035262,
- -0.016014020889997482,
- 0.043028824031353,
- 0.06807481497526169,
- -0.032076284289360046,
- 0.0055043864995241165,
- 0.0750720351934433,
- -0.004804946016520262,
- -0.007447002921253443,
- -0.030894504860043526,
- 0.08020994812250137,
- -0.006708625238388777,
- -0.06341428309679031,
- 0.003066678298637271,
- 0.0423557348549366,
- -0.023243041709065437,
- -0.0346195325255394,
- 0.06784923374652863,
- -0.02493305318057537,
- 0.04018240049481392,
- -0.022802861407399178,
- 0.02266717329621315,
- 0.04318463057279587,
- 0.03772933408617973,
- 0.02891368232667446,
- 0.02753397263586521,
- 0.011887259781360626,
- -0.014343511313199997,
- -0.034271325916051865,
- 0.030625706538558006,
- -0.03562156856060028,
- 0.0564383789896965,
- -0.07262525707483292,
- -0.037512362003326416,
- -0.03359723836183548,
- 0.033157896250486374,
- -0.03293928503990173,
- -0.02538027986884117,
- 0.014734694734215736,
- -0.01590346172451973,
- -0.0708165168762207,
- -0.09747880697250366,
- -0.04602020978927612,
- 0.07770092785358429,
- -0.06659192591905594,
- 0.003739496460184455,
- 0.01916266605257988,
- -0.0014271236723288894,
- 0.001602289266884327,
- -0.0041391802951693535,
- -0.11700642108917236,
- -0.012908353470265865,
- -0.02432624064385891,
- 0.09535550326108932,
- -0.03557771071791649,
- 0.05448570102453232,
- -0.059693243354558945,
- -0.0025282036513090134,
- -0.0013787844218313694,
- 0.00847721379250288,
- -0.0035282201133668423,
- -0.02553069218993187,
- 0.011846688576042652,
- -0.028578458353877068,
- 0.044159386307001114,
- 0.013444824144244194,
- 0.04489032179117203,
- 0.05042719841003418,
- -0.000891940959263593,
- -0.06244216486811638,
- -0.042730771005153656,
- -0.01246337965130806,
- -0.0063653443939983845,
- -0.04647405445575714,
- 0.2926443815231323,
- 0.02780832350254059,
- 0.11582724004983902,
- 0.008245893754065037,
- 0.059338293969631195,
- -0.045304443687200546,
- -0.0260643158107996,
- -0.00592623557895422,
- 0.040593862533569336,
- 0.0060792723670601845,
- -0.02081911824643612,
- -0.013251649215817451,
- -0.024414561688899994,
- 0.004042915999889374,
- 0.002323857042938471,
- -0.007089021150022745,
- -0.09464143216609955,
- -0.022628942504525185,
- -0.03367944806814194,
- 0.029711376875638962,
- 0.06335706263780594,
- 0.09645111858844757,
- 0.03475461155176163,
- -0.043467842042446136,
- -0.005886657629162073,
- 0.0013779366854578257,
- -0.0895499587059021,
- 0.09706846624612808,
- -8.022164870606547e-33,
- -0.037314705550670624,
- 0.05151287838816643,
- 0.04073496162891388,
- -0.010390102863311768,
- 0.04249679669737816,
- 0.03834345564246178,
- -0.03743147477507591,
- -0.028959523886442184,
- -0.047734517604112625,
- -0.03925665467977524,
- 0.08852066844701767,
- 0.022416003048419952,
- 0.03182908147573471,
- 0.01947956532239914,
- -0.0650724247097969,
- 0.037479713559150696,
- 0.07960870116949081,
- 0.025728048756718636,
- -0.012042372487485409,
- -0.005868728272616863,
- 0.03353292867541313,
- -0.03618895262479782,
- 0.022256480529904366,
- 0.11197131127119064,
- 0.015323456376791,
- -0.04374150559306145,
- -0.01491887029260397,
- -0.0041826991364359856,
- 0.05758490413427353,
- 0.03132995218038559,
- 0.05012550204992294,
- 0.02294236049056053,
- 0.003192212199792266,
- -0.04516877233982086,
- 0.013054139912128448,
- -0.11487079411745071,
- 0.04589293524622917,
- -0.08134029060602188,
- -0.00495905103161931,
- -0.08482707291841507,
- -0.06950987130403519,
- -0.029199039563536644,
- 0.01596924662590027,
- -0.0009182056528516114,
- -0.10414234548807144,
- 0.03975601866841316,
- 0.09553974866867065,
- 0.006958856713026762,
- -0.09233361482620239,
- 0.09094393998384476,
- -0.0424165353178978,
- -0.05547693371772766,
- -0.10238915681838989,
- 0.043879441916942596,
- -0.05780947208404541,
- -0.043267808854579926,
- -0.0011146597098559141,
- 0.05488891527056694,
- -0.027173345908522606,
- -0.04878721013665199,
- 0.03964422270655632,
- 0.15805907547473907,
- -0.03723124787211418,
- -0.06794842332601547,
- 0.049126382917165756,
- -0.1349448710680008,
- -0.012329828925430775,
- -0.05067494884133339,
- 0.03562328591942787,
- 0.03987601771950722,
- -0.014066344127058983,
- 0.060102831572294235,
- 0.0110610481351614,
- -0.006098139099776745,
- -0.07200051844120026,
- 0.00375373219139874,
- -0.03268535062670708,
- 0.07581930607557297,
- 0.06866652518510818,
- 0.006852935533970594,
- -0.05520517751574516,
- -0.024109050631523132,
- 0.03462916612625122,
- -0.030873168259859085,
- -0.06154037266969681,
- 0.024322504177689552,
- -0.0032506349962204695,
- -0.08240577578544617,
- 0.01860159821808338,
- 0.00004299225111026317,
- 0.012081163004040718,
- -0.006336560007184744,
- 0.1092381477355957,
- 0.029638636857271194,
- -0.052581001073122025,
- 5.418886795942693e-33,
- 0.008212612941861153,
- 0.007055554538965225,
- 0.001399730914272368,
- -0.03802857920527458,
- -0.006374952383339405,
- -0.030637862160801888,
- 0.012446274980902672,
- -0.008538557216525078,
- -0.020059693604707718,
- 0.01749255135655403,
- -0.06292584538459778,
- 0.045109059661626816,
- 0.10225161910057068,
- 0.033155422657728195,
- 0.02975967712700367,
- 0.03854365646839142,
- 0.06423928588628769,
- -0.012494701892137527,
- -0.033472128212451935,
- 0.04996732249855995,
- -0.036564797163009644,
- -0.01142437569797039,
- -0.024139493703842163,
- -0.0691528394818306,
- -0.02296929806470871,
- 0.019849194213747978,
- 0.09816789627075195,
- -0.08041038364171982,
- -0.06318287551403046,
- -0.01866854354739189,
- -0.002779941540211439,
- -0.032337214797735214,
- -0.08184085786342621,
- -0.06050506979227066,
- -0.03616783395409584,
- 0.09280738234519958,
- 0.04996601864695549,
- 0.06472429633140564,
- -0.07080008089542389,
- 0.10707809031009674,
- 0.05395033210515976,
- 0.021025633439421654,
- 0.08375503867864609,
- 0.01470178086310625,
- -0.005723193753510714,
- 0.04298997297883034,
- -0.08158864080905914,
- 0.08099097013473511,
- 0.00026448184507898986,
- -0.013659102842211723,
- -0.06555654853582382,
- -0.007605803199112415,
- 0.020267928019165993,
- 0.027085386216640472,
- -0.031629253178834915,
- 0.020577289164066315,
- -0.05726666748523712,
- -0.04837016016244888,
- 0.08699006587266922,
- -0.0015056401025503874,
- -0.01755974255502224,
- -0.04310447350144386,
- -0.028263365849852562,
- 0.0627954751253128,
- -0.0799659714102745,
- -0.027228549122810364,
- -0.04479007050395012,
- 0.062122639268636703,
- -0.003858163021504879,
- -0.03521781042218208,
- 0.024539286270737648,
- -0.0513676218688488,
- -0.021890126168727875,
- -0.06259982287883759,
- 0.018105633556842804,
- -0.005830277223140001,
- 0.01693984679877758,
- 0.004573213867843151,
- 0.016632037237286568,
- 0.00869311485439539,
- -0.02966948412358761,
- 0.010139672085642815,
- 0.013786816969513893,
- -0.022736212238669395,
- 0.08229739964008331,
- -0.11799145489931107,
- 0.0038637963589280844,
- 0.004141394980251789,
- 0.028134848922491074,
- -0.008124240674078465,
- -0.014865313656628132,
- -0.01088771503418684,
- -0.015588962472975254,
- -0.08451802283525467,
- -0.023942654952406883,
- -1.3091598916048497e-8,
- -0.05274764448404312,
- -0.01989872194826603,
- 0.031221719458699226,
- -0.01575022004544735,
- 0.06959282606840134,
- -0.045425012707710266,
- 0.00043035729322582483,
- 0.0076974197290837765,
- -0.01183116901665926,
- 0.07610752433538437,
- -0.02878868207335472,
- -0.013447898440063,
- 0.07770354300737381,
- -0.0040328712202608585,
- 0.11818014830350876,
- 0.044279299676418304,
- -0.02851399965584278,
- -0.03184870630502701,
- -0.07236452400684357,
- -0.005406702868640423,
- -0.028026478365063667,
- -0.0002958247496280819,
- 0.06035146862268448,
- 0.020678609609603882,
- 0.004836258478462696,
- 0.02480640821158886,
- -0.04490341991186142,
- -0.04864548146724701,
- 0.01396859809756279,
- -0.01749061793088913,
- -0.02091166563332081,
- 0.13305950164794922,
- -0.055682502686977386,
- -0.0809246301651001,
- 0.04028058424592018,
- 0.046206310391426086,
- -0.013939835131168365,
- -0.015483036637306213,
- 0.04265132173895836,
- 0.006224123761057854,
- -0.0144841019064188,
- -0.007985294796526432,
- 0.012156857177615166,
- 0.06690873950719833,
- 0.019844962283968925,
- -0.0012367344461381435,
- 0.06492156535387039,
- -0.08938662707805634,
- -0.0003304994897916913,
- -0.05451548472046852,
- -0.012863004580140114,
- -0.08289700746536255,
- 0.037813492119312286,
- 0.09826879948377609,
- 0.012304900214076042,
- -0.00901802908629179,
- 0.005590477492660284,
- -0.0008827027049846947,
- -0.04028671234846115,
- 0.021258248016238213,
- 0.06200287118554115,
- 0.0650525912642479,
- 0.003984480630606413,
- -0.007137014530599117
- ]
- },
- {
- "keyword": "attendee",
- "type": "person",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.07095243036746979,
- -0.026786068454384804,
- 0.03956019878387451,
- -0.035165250301361084,
- -0.028664495795965195,
- 0.026499096304178238,
- 0.1468309909105301,
- -0.041278693825006485,
- 0.03139403089880943,
- 0.06601805239915848,
- -0.025211896747350693,
- -0.11440932005643845,
- 0.011464113369584084,
- -0.043607618659734726,
- 0.014993795193731785,
- 0.03457814082503319,
- 0.07722562551498413,
- -0.02937004156410694,
- -0.07119371742010117,
- -0.02581189014017582,
- -0.08734621852636337,
- 0.04499923065304756,
- -0.020104099065065384,
- 0.06334439665079117,
- -0.010005597025156021,
- 0.0288094375282526,
- -0.01255374401807785,
- 0.005379151552915573,
- 0.023986738175153732,
- 0.000539025932084769,
- 0.02100633643567562,
- 0.028672175481915474,
- 0.04223765805363655,
- 0.04010084643959999,
- 0.006485150195658207,
- -0.014215955510735512,
- 0.004843744914978743,
- -0.052469827234745026,
- -0.09439507126808167,
- 0.056819602847099304,
- -0.010712848976254463,
- 0.007774488069117069,
- 0.016677750274538994,
- 0.016527751460671425,
- 0.0021859020926058292,
- -0.03642428293824196,
- 0.0476161353290081,
- -0.04113570228219032,
- 0.09001975506544113,
- 0.0027448181062936783,
- 0.015940099954605103,
- -0.033759705722332,
- -0.04258473590016365,
- -0.03718147426843643,
- -0.029603611677885056,
- 0.0999167338013649,
- 0.0556023083627224,
- -0.07224391400814056,
- -0.009113870561122894,
- 0.03607276454567909,
- -0.001936512067914009,
- -0.042377930134534836,
- 0.0056884498335421085,
- 0.039394527673721313,
- -0.03597778081893921,
- -0.0006317817023955286,
- -0.04473181068897247,
- 0.025012308731675148,
- 0.04368246719241142,
- -0.05301544815301895,
- -0.016760703176259995,
- 0.03699856251478195,
- -0.05977786332368851,
- 0.03242149204015732,
- 0.026152510195970535,
- 0.009958812966942787,
- 0.005139918066561222,
- 0.02513379417359829,
- 0.13088612258434296,
- 0.009099282324314117,
- -0.04027750343084335,
- -0.015448927879333496,
- 0.016085563227534294,
- -0.03652103990316391,
- 0.0800914615392685,
- 0.020182250067591667,
- 0.015606654807925224,
- -0.005589419510215521,
- -0.03176664188504219,
- -0.040994685143232346,
- -0.013537243008613586,
- 0.010560262948274612,
- 0.03147988021373749,
- -0.028201395645737648,
- 0.010420698672533035,
- -0.008185277692973614,
- -0.006633705459535122,
- -0.07323995977640152,
- -0.011247234418988228,
- 0.1854676604270935,
- -0.058965813368558884,
- 0.10155241936445236,
- -0.03870386257767677,
- -0.02673162892460823,
- -0.02684606984257698,
- -0.06212781369686127,
- 0.019203752279281616,
- 0.059147655963897705,
- -0.03289920836687088,
- 0.013276590034365654,
- -0.04801024869084358,
- -0.02323566935956478,
- 0.03914394602179527,
- 0.05556314438581467,
- 0.022263873368501663,
- 0.06334639340639114,
- 0.03391503915190697,
- 0.0035018641501665115,
- 0.07507029920816422,
- -0.1005779355764389,
- -0.015499084256589413,
- 0.006792618427425623,
- 0.0023358080070465803,
- -0.019623994827270508,
- -0.08411534875631332,
- -0.17217418551445007,
- -0.003666661214083433,
- -3.381627618299001e-33,
- 0.006809915415942669,
- -0.031786367297172546,
- 0.050343845039606094,
- -0.02342037670314312,
- 0.025319339707493782,
- 0.03730464726686478,
- -0.06925154477357864,
- -0.020741401240229607,
- -0.0020281493198126554,
- -0.009566993452608585,
- -0.03040703758597374,
- 0.028240181505680084,
- 0.04583430662751198,
- -0.011016515083611012,
- 0.03018733114004135,
- -0.025116393342614174,
- 0.016021525487303734,
- 0.0929592028260231,
- -0.014621512033045292,
- -0.07188007980585098,
- -0.05776786431670189,
- 0.01015150360763073,
- 0.033425960689783096,
- 0.07396137714385986,
- -0.006059006322175264,
- 0.017191320657730103,
- 0.017087610438466072,
- 0.0020175164099782705,
- 0.05865573510527611,
- -0.000677055271808058,
- 0.04641421511769295,
- -0.029089326038956642,
- -0.06982528418302536,
- 0.00957502145320177,
- -0.029380816966295242,
- 0.009985181502997875,
- 0.009615626186132431,
- -0.06842847913503647,
- 0.0059692105278372765,
- -0.07603709399700165,
- -0.06583576649427414,
- -0.02209974080324173,
- -0.026906568557024002,
- -0.03661283478140831,
- 0.0277108121663332,
- 0.02543857879936695,
- 0.1238994225859642,
- -0.002618681639432907,
- 0.14705513417720795,
- 0.00192994624376297,
- -0.06907980889081955,
- -0.06118926778435707,
- -0.05631302297115326,
- 0.007731655612587929,
- -0.06397111713886261,
- -0.04274870082736015,
- 0.056808196008205414,
- 0.03150990232825279,
- 0.011918595060706139,
- -0.03426974639296532,
- 0.012429790571331978,
- 0.1121039018034935,
- 0.02864803560078144,
- -0.025121254846453667,
- -0.037698883563280106,
- -0.028005782514810562,
- -0.03676355630159378,
- -0.11384034901857376,
- 0.10361061990261078,
- 0.017173008993268013,
- -0.013972865417599678,
- 0.012466022744774818,
- 0.049875035881996155,
- 0.018449626863002777,
- -0.01227419450879097,
- 0.0007004929357208312,
- 0.016670674085617065,
- 0.012234116904437542,
- 0.059749506413936615,
- 0.018812105059623718,
- -0.019386442378163338,
- -0.05322053283452988,
- 0.028598004952073097,
- 0.018064197152853012,
- 0.07119480520486832,
- 0.01996639370918274,
- -0.022832637652754784,
- -0.041478682309389114,
- -0.04028846696019173,
- 0.005862398073077202,
- 0.04308152571320534,
- -0.0036798547953367233,
- 0.06516645103693008,
- 0.09833957999944687,
- -0.0058585903607308865,
- 3.0080121672534918e-33,
- 0.04159347712993622,
- 0.015253946185112,
- -0.022642413154244423,
- 0.026642166078090668,
- 0.14128661155700684,
- -0.057309579104185104,
- -0.03400230407714844,
- 0.035926736891269684,
- -0.04777716472744942,
- -0.05368805304169655,
- 0.022677747532725334,
- -0.008485499769449234,
- 0.0748162567615509,
- -0.039342742413282394,
- 0.07618072628974915,
- 0.0360698401927948,
- 0.14885009825229645,
- 0.011945660226047039,
- -0.015624729916453362,
- 0.007573222275823355,
- -0.022316593676805496,
- -0.06153101101517677,
- 0.006784278433769941,
- -0.11463936418294907,
- -0.006693682167679071,
- -0.030022863298654556,
- 0.12215946614742279,
- 0.057016704231500626,
- -0.08163483440876007,
- -0.11235024034976959,
- 0.0589437410235405,
- -0.020011786371469498,
- -0.13776420056819916,
- -0.02336798794567585,
- 0.022531738504767418,
- 0.03351988643407822,
- 0.047014933079481125,
- 0.11359760910272598,
- -0.056924257427453995,
- 0.033759843558073044,
- 0.07265880703926086,
- -0.0705876275897026,
- -0.0015755388885736465,
- 0.10787095129489899,
- 0.019029932096600533,
- 0.0508866086602211,
- -0.09558267891407013,
- 0.008903482928872108,
- 0.02084149792790413,
- 0.06605411320924759,
- -0.14351338148117065,
- -0.07471945881843567,
- 0.004131695255637169,
- -0.015018761157989502,
- 0.013989065773785114,
- 0.07838453352451324,
- 0.027765650302171707,
- -0.028112411499023438,
- -0.050420813262462616,
- -0.027678918093442917,
- 0.052532266825437546,
- -0.031546566635370255,
- -0.028531458228826523,
- 0.08437135070562363,
- -0.016263391822576523,
- -0.06399809569120407,
- -0.05867956951260567,
- 0.04937746003270149,
- -0.013713419437408447,
- 0.05005814507603645,
- 0.0025240012910217047,
- -0.020937616005539894,
- -0.03545365482568741,
- 0.030696861445903778,
- 0.006825250107795,
- -0.07559201121330261,
- 0.024787720292806625,
- 0.03604050725698471,
- -0.001859080046415329,
- -0.04936355724930763,
- -0.06198479235172272,
- 0.007551879156380892,
- 0.013006365858018398,
- 0.05696769058704376,
- 0.06854541599750519,
- 0.01996079459786415,
- 0.10120752453804016,
- -0.02768447995185852,
- 0.02284907177090645,
- 0.002958504017442465,
- -0.00005472528937389143,
- 0.002095757983624935,
- 0.04022027552127838,
- -0.08860762417316437,
- -0.022451281547546387,
- -1.32389095242047e-8,
- -0.04064872860908508,
- 0.06192116066813469,
- 0.03205713629722595,
- -0.026520172134041786,
- 0.07056403160095215,
- -0.053417984396219254,
- -0.04956674575805664,
- 0.0004478317860048264,
- 0.0011139314156025648,
- 0.012824897654354572,
- -0.049291517585515976,
- -0.04613761603832245,
- 0.05254135653376579,
- 0.007257283199578524,
- 0.056544508785009384,
- 0.09025710076093674,
- -0.0728323683142662,
- 0.013595814816653728,
- -0.03509869799017906,
- -0.028285957872867584,
- 0.017392899841070175,
- -0.004976367577910423,
- 0.08613437414169312,
- 0.007029181811958551,
- -0.00006200725329108536,
- 0.03679007664322853,
- -0.01194096077233553,
- 0.12540951371192932,
- -0.011941877193748951,
- 0.02446378394961357,
- -0.06348980963230133,
- 0.02811722457408905,
- -0.019204793497920036,
- -0.07626692205667496,
- 0.0190996415913105,
- -0.008796973153948784,
- 0.018014471977949142,
- -0.11313484609127045,
- 0.003390862140804529,
- -0.024194272235035896,
- 0.00007402286428259686,
- -0.06942365318536758,
- 0.09741156548261642,
- 0.04070563614368439,
- 0.04147323593497276,
- 0.03803784400224686,
- 0.032828912138938904,
- -0.01827971450984478,
- 0.0024764121044427156,
- -0.06085031107068062,
- -0.02114173211157322,
- 0.01523673813790083,
- -0.02708590030670166,
- 0.056861914694309235,
- 0.025996726006269455,
- -0.007664908189326525,
- 0.04153657704591751,
- -0.01250645611435175,
- -0.0416862852871418,
- 0.032437633723020554,
- 0.06871546059846878,
- 0.0024843558203428984,
- -0.04365692660212517,
- -0.06746550649404526
- ]
- },
- {
- "keyword": "task",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04413916915655136,
- 0.0796116441488266,
- -0.052915047854185104,
- -0.01573951356112957,
- -0.002385292202234268,
- -0.030599048361182213,
- 0.15553784370422363,
- 0.012068304233253002,
- 0.007132533937692642,
- 0.020655715838074684,
- -0.011965777724981308,
- -0.04705587029457092,
- 0.012898975051939487,
- 0.06727144867181778,
- -0.017423594370484352,
- 0.0014067847514525056,
- 0.09526235610246658,
- -0.06587505340576172,
- -0.08750259131193161,
- -0.008486579172313213,
- 0.0004425406805239618,
- -0.025184528902173042,
- 0.04002747684717178,
- 0.08348012715578079,
- -0.06894639879465103,
- 0.07154739648103714,
- -0.004396121948957443,
- -0.03417216241359711,
- 0.010811466723680496,
- -0.07756462693214417,
- -0.0020609123166650534,
- -0.011789541691541672,
- 0.1273072510957718,
- 0.01869298331439495,
- 0.0061516123823821545,
- 0.07100439816713333,
- -0.03793690353631973,
- -0.008618174120783806,
- 0.03533623367547989,
- -0.07990602403879166,
- -0.04835984483361244,
- -0.09479207545518875,
- -0.04281576722860336,
- 0.007310351822525263,
- -0.005255212541669607,
- 0.024845043197274208,
- -0.008417181670665741,
- -0.04790746420621872,
- -0.01835334673523903,
- 0.006112006492912769,
- -0.06940644979476929,
- -0.07337085157632828,
- -0.019461777061223984,
- -0.03466213867068291,
- 0.020128734409809113,
- 0.024478185921907425,
- 0.02319476194679737,
- -0.02601548656821251,
- -0.0323837473988533,
- -0.07100076973438263,
- 0.07232224196195602,
- -0.05806814134120941,
- -0.07449423521757126,
- 0.0030478585977107286,
- 0.09042591601610184,
- 0.031348783522844315,
- -0.007702866569161415,
- -0.049765948206186295,
- -0.07694757729768753,
- -0.04551482945680618,
- 0.002456239191815257,
- 0.08055344223976135,
- -0.014728947542607784,
- 0.008915266022086143,
- 0.04128461703658104,
- -0.026509903371334076,
- -0.018250109627842903,
- -0.04882187023758888,
- 0.06472074240446091,
- -0.035803571343421936,
- -0.02140364609658718,
- 0.008192586712539196,
- -0.03379807621240616,
- 0.05937572568655014,
- 0.10152784734964371,
- -0.011287698522210121,
- -0.05601919814944267,
- 0.033101268112659454,
- 0.054236192256212234,
- -0.015435665845870972,
- -0.11147941648960114,
- -0.09038613736629486,
- 0.06637553125619888,
- 0.0017786433454602957,
- -0.026932263746857643,
- -0.025636740028858185,
- 0.008327318355441093,
- -0.01338285394012928,
- -0.013037320226430893,
- 0.2540352940559387,
- -0.019307395443320274,
- 0.02086212858557701,
- 0.00393953500315547,
- -0.026688091456890106,
- -0.02604418620467186,
- -0.008281474001705647,
- -0.05801589414477348,
- 0.02916964516043663,
- -0.010601143352687359,
- -0.056380659341812134,
- -0.03156851604580879,
- -0.09175155311822891,
- 0.0008465302526019514,
- 0.060764264315366745,
- 0.005819168873131275,
- 0.00471374811604619,
- -0.008133097551763058,
- 0.032697416841983795,
- -0.025821609422564507,
- 0.004710912238806486,
- 0.06890880316495895,
- 0.03835479915142059,
- -0.009182734414935112,
- -0.014216972514986992,
- -0.10153301805257797,
- -0.07341276109218597,
- 0.08037219196557999,
- -6.555025228557466e-33,
- 0.01615365780889988,
- 0.007888645865023136,
- 0.06196296587586403,
- 0.008429016917943954,
- 0.03520670533180237,
- -0.051298756152391434,
- -0.054728683084249496,
- 0.03936650604009628,
- -0.020770860835909843,
- -0.012872938998043537,
- -0.03587846830487251,
- -0.052531465888023376,
- -0.015292452648282051,
- 0.013711766339838505,
- 0.0503455325961113,
- -0.03865497559309006,
- 0.058764249086380005,
- 0.07832608371973038,
- -0.06994272768497467,
- -0.01960017904639244,
- -0.06215779483318329,
- 0.0367126502096653,
- -0.041854094713926315,
- 0.041168052703142166,
- 0.03532896563410759,
- -0.051342301070690155,
- -0.012831910513341427,
- -0.07322563230991364,
- -0.034509431570768356,
- 0.01287127286195755,
- 0.015052717179059982,
- 0.031305089592933655,
- -0.032004281878471375,
- 0.029906710609793663,
- -0.042533423751592636,
- 0.015594316646456718,
- 0.10039165616035461,
- -0.049902576953172684,
- 0.08802618086338043,
- -0.03226862847805023,
- 0.05124131962656975,
- 0.02540787123143673,
- 0.005075300578027964,
- 0.022627726197242737,
- 0.029943762347102165,
- 0.028435228392481804,
- 0.01796042174100876,
- 0.01615467295050621,
- 0.034665606915950775,
- 0.08844184875488281,
- 0.03649505600333214,
- -0.013103232719004154,
- 0.020404405891895294,
- -0.047155506908893585,
- 0.028176436200737953,
- -0.016669541597366333,
- 0.006488200277090073,
- 0.01055137813091278,
- 0.05466457083821297,
- 0.00340026686899364,
- 0.08323165774345398,
- -0.016773458570241928,
- -0.06565170735120773,
- 0.06485806405544281,
- 0.007939939387142658,
- -0.010687566362321377,
- 0.0015932086389511824,
- -0.01055589783936739,
- 0.06858668476343155,
- -0.0018653495935723186,
- -0.12126848846673965,
- -0.028706276789307594,
- 0.07933639734983444,
- 0.035358332097530365,
- 0.04574945569038391,
- 0.04719618707895279,
- 0.043142445385456085,
- -0.03404060751199722,
- -0.10305638611316681,
- 0.00805706437677145,
- -0.0320097915828228,
- -0.03855790197849274,
- -0.01859273388981819,
- -0.02527482993900776,
- 0.0027698709163814783,
- 0.0071752723306417465,
- -0.00693008815869689,
- -0.07525161653757095,
- 0.018596148118376732,
- 0.02704671397805214,
- -0.04752693325281143,
- 0.06575194746255875,
- -0.0629771500825882,
- 0.06150204315781593,
- 0.03748093917965889,
- 5.8974639742830476e-33,
- -0.04632023349404335,
- 0.03890713304281235,
- -0.10917617380619049,
- 0.07490774989128113,
- 0.10485419631004333,
- 0.037738677114248276,
- 0.019735975190997124,
- -0.07422339916229248,
- -0.10636799782514572,
- 0.1042623221874237,
- -0.06303528696298599,
- -0.053354594856500626,
- -0.024641811847686768,
- 0.02161247842013836,
- -0.0026451428420841694,
- 0.021728044375777245,
- 0.049737393856048584,
- -0.002600274048745632,
- -0.07874917984008789,
- 0.03949989378452301,
- -0.08132044970989227,
- 0.07769005745649338,
- -0.04328484460711479,
- 0.0017787215765565634,
- -0.025802627205848694,
- 0.05635913088917732,
- 0.027710143476724625,
- -0.04081842675805092,
- -0.00847106147557497,
- -0.03849969804286957,
- -0.008302813395857811,
- -0.135751873254776,
- -0.04915756359696388,
- -0.01060362346470356,
- -0.003232019254937768,
- 0.06916512548923492,
- 0.036462195217609406,
- 0.056327223777770996,
- -0.07537294179201126,
- -0.000629168062005192,
- 0.05834043771028519,
- -0.02994353510439396,
- -0.007814163342118263,
- 0.14897239208221436,
- 0.012251432985067368,
- 0.04566452279686928,
- -0.026819562539458275,
- -0.0045271762646734715,
- -0.026211539283394814,
- 0.04034198448061943,
- -0.00091166963102296,
- 0.008519313298165798,
- -0.06176462396979332,
- -0.04309065639972687,
- -0.004027822986245155,
- -0.039630789309740067,
- -0.023405715823173523,
- -0.056403737515211105,
- -0.050416938960552216,
- 0.02329844981431961,
- 0.02521616220474243,
- 0.03317573294043541,
- 0.002165381098166108,
- 0.04641130566596985,
- 0.05123234540224075,
- -0.03147082030773163,
- -0.03312891721725464,
- -0.006362246815115213,
- 0.07279466092586517,
- 0.030943362042307854,
- 0.0772625282406807,
- 0.0037327727768570185,
- -0.0011730333790183067,
- -0.004680595826357603,
- 0.0008659363375045359,
- -0.06898683309555054,
- -0.09204640239477158,
- 0.0066292923875153065,
- -0.04071884974837303,
- 0.00788386631757021,
- -0.05475752800703049,
- -0.08066689223051071,
- -0.026844363659620285,
- -0.003588540945202112,
- -0.03413709998130798,
- -0.03296643868088722,
- 0.05938989669084549,
- 0.06309037655591965,
- -0.04062198847532272,
- -0.010008931159973145,
- -0.0013729034690186381,
- 0.021863311529159546,
- 0.012906426563858986,
- 0.020351629704236984,
- 0.021288752555847168,
- -1.3616349825440466e-8,
- 0.0026951574254781008,
- 0.013845552690327168,
- -0.040728889405727386,
- -0.009818403981626034,
- 0.026307011023163795,
- 0.020886443555355072,
- -0.06194375082850456,
- 0.06515024602413177,
- 0.05056401342153549,
- 0.026782192289829254,
- 0.06266643106937408,
- -0.06246255338191986,
- 0.06992843002080917,
- 0.0968586802482605,
- 0.06116144359111786,
- -0.06389333307743073,
- -0.009174973703920841,
- 0.034063637256622314,
- -0.03819047287106514,
- -0.031626880168914795,
- 0.04519544914364815,
- 0.03430458903312683,
- -0.04714885726571083,
- -0.003621558425948024,
- -0.02206612564623356,
- -0.03767133876681328,
- -0.04794397950172424,
- 0.13245122134685516,
- 0.05780744180083275,
- 0.030763301998376846,
- 0.017788276076316833,
- 0.07330760359764099,
- -0.05210045725107193,
- 0.003302869386970997,
- 0.03035186603665352,
- -0.003319344250485301,
- 0.006833861116319895,
- 0.01184555422514677,
- 0.030483711510896683,
- 0.0058291321620345116,
- 0.019561177119612694,
- 0.07003951817750931,
- 0.036335356533527374,
- 0.03938651457428932,
- -0.0009918109280988574,
- 0.019917069002985954,
- -0.06669794023036957,
- -0.018871519714593887,
- 0.001283440156839788,
- -0.03953148424625397,
- -0.06007995456457138,
- 0.0060842582024633884,
- 0.022120794281363487,
- 0.1069004163146019,
- 0.0655277818441391,
- 0.022831810638308525,
- 0.06761334091424942,
- -0.0181589238345623,
- -0.09246309846639633,
- 0.0577501580119133,
- 0.18374067544937134,
- 0.07555264979600906,
- -0.031536001712083817,
- 0.030627384781837463
- ]
- },
- {
- "keyword": "todo",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08024946600198746,
- 0.08333572000265121,
- 0.054027579724788666,
- 0.01802108809351921,
- -0.000007215680852823425,
- 0.008172767236828804,
- 0.10293228924274445,
- 0.0004121974343433976,
- -0.08409115672111511,
- 0.0038855860475450754,
- -0.028423136100172997,
- -0.1233290582895279,
- -0.09441497176885605,
- 0.03228702396154404,
- -0.056737400591373444,
- 0.009536102414131165,
- 0.07926096022129059,
- 0.05292775481939316,
- -0.10866042226552963,
- -0.038623373955488205,
- -0.047885868698358536,
- 0.03388834372162819,
- -0.0605756975710392,
- 0.03687235340476036,
- -0.05526574328541756,
- 0.065519779920578,
- 0.012036435306072235,
- 0.0498507134616375,
- -0.03762129694223404,
- -0.06862040609121323,
- -0.0015394666697829962,
- 0.1125800609588623,
- 0.11371799558401108,
- -0.020457440987229347,
- 0.03842310607433319,
- -0.007279068697243929,
- 0.01723465882241726,
- -0.04319243133068085,
- 0.0000854202953632921,
- -0.019590815529227257,
- -0.02501816488802433,
- -0.04165586084127426,
- -0.035548772662878036,
- -0.06699425727128983,
- 0.03678099811077118,
- 0.016193289309740067,
- -0.02184474840760231,
- 0.024012453854084015,
- 0.08818076550960541,
- 0.034758180379867554,
- -0.019647443667054176,
- 0.027973780408501625,
- -0.09044621884822845,
- -0.08534501492977142,
- 0.02017606794834137,
- 0.13297082483768463,
- -0.018736809492111206,
- 0.011924166232347488,
- 0.04790837690234184,
- -0.049743957817554474,
- 0.092837855219841,
- -0.011362544260919094,
- -0.033901941031217575,
- 0.059532281011343,
- 0.07513578236103058,
- 0.003996684215962887,
- 0.004536576569080353,
- -0.04977691173553467,
- -0.045239757746458054,
- -0.019637029618024826,
- 0.002363255014643073,
- 0.05104346573352814,
- -0.023184258490800858,
- -0.023497913032770157,
- 0.014987066388130188,
- -0.025256866589188576,
- 0.031003234907984734,
- -0.026242218911647797,
- 0.013049628585577011,
- -0.028700530529022217,
- -0.09785624593496323,
- -0.030270922929048538,
- -0.01886243000626564,
- 0.0005043426644988358,
- -0.023660624399781227,
- 0.044664978981018066,
- 0.005300979595631361,
- -0.06225775182247162,
- -0.011350946500897408,
- -0.037084195762872696,
- -0.08762521296739578,
- 0.0372159481048584,
- 0.002946778666228056,
- -0.021457554772496223,
- -0.03642738610506058,
- -0.02114972472190857,
- -0.01308057364076376,
- 0.03486745432019234,
- -0.019007470458745956,
- 0.2120710164308548,
- 0.029399264603853226,
- 0.02438524179160595,
- 0.00012278332724235952,
- 0.014636398293077946,
- 0.04352188482880592,
- 0.0045160651206970215,
- -0.08971061557531357,
- 0.05306077003479004,
- 0.007052523083984852,
- -0.0029961189720779657,
- -0.05945000424981117,
- 0.0045241317711770535,
- 0.06673138588666916,
- 0.03941578418016434,
- -0.00006238681089598686,
- -0.06417758762836456,
- 0.006284519098699093,
- 0.004972540307790041,
- 0.04487279802560806,
- 0.01676870509982109,
- 0.058783456683158875,
- 0.02911304123699665,
- -0.04941056668758392,
- -0.01583692990243435,
- -0.09110049903392792,
- -0.06791193783283234,
- 0.0272617656737566,
- -2.069314724919623e-33,
- -0.004009279888123274,
- -0.01814320869743824,
- 0.04320158064365387,
- 0.029764996841549873,
- 0.030475664883852005,
- -0.001066117431037128,
- -0.055984172970056534,
- -0.03750938922166824,
- -0.08356540650129318,
- 0.0013763440074399114,
- -0.059598226100206375,
- -0.014311205595731735,
- -0.07482798397541046,
- -0.05587193742394447,
- 0.11468542367219925,
- -0.012305689044296741,
- 0.06529899686574936,
- 0.06882507354021072,
- 0.01711711287498474,
- 0.06162525340914726,
- -0.038348566740751266,
- -0.02576029859483242,
- 0.03555398806929588,
- 0.017604563385248184,
- -0.03120497055351734,
- 0.03663864731788635,
- -0.007931613363325596,
- -0.06564629822969437,
- -0.08436297625303268,
- 0.027455152943730354,
- -0.03017403744161129,
- 0.04341632500290871,
- 0.0018492231611162424,
- 0.059674300253391266,
- -0.039505958557128906,
- -0.0704774260520935,
- -0.01317794993519783,
- -0.026294449344277382,
- -0.06229063868522644,
- -0.021061886101961136,
- 0.027777334675192833,
- 0.002256549196317792,
- -0.09224547445774078,
- -0.0038638152182102203,
- 0.000050950624427059665,
- 0.002092408249154687,
- 0.0761747881770134,
- -0.010402842424809933,
- 0.17262694239616394,
- 0.03146056830883026,
- 0.017428014427423477,
- -0.04714009538292885,
- -0.04431481286883354,
- -0.035809244960546494,
- -0.006789007224142551,
- -0.04116828739643097,
- 0.05293447524309158,
- -0.03257428854703903,
- -0.015632914379239082,
- -0.01608419232070446,
- 0.10685316473245621,
- -0.008885842747986317,
- -0.04194961115717888,
- -0.10472635179758072,
- -0.03952564671635628,
- -0.04452461376786232,
- -0.0017264116322621703,
- 0.04253389313817024,
- 0.0009097077418118715,
- -0.03976945951581001,
- -0.07591518014669418,
- 0.009388254955410957,
- 0.01902969367802143,
- 0.05596639961004257,
- 0.03881135210394859,
- -0.0045711020939052105,
- 0.028983067721128464,
- 0.010280290618538857,
- 0.004803675692528486,
- 0.010502944700419903,
- 0.0009459047578275204,
- -0.05087399110198021,
- 0.04994423687458038,
- 0.03395385295152664,
- 0.14764779806137085,
- 0.04162956401705742,
- -0.015749027952551842,
- -0.14044001698493958,
- -0.12711548805236816,
- 0.036935437470674515,
- -0.039674144238233566,
- 0.04824325069785118,
- 0.016064975410699844,
- -0.04048348218202591,
- -0.03437253087759018,
- 4.457851563029843e-34,
- 0.02226445823907852,
- 0.0018241608049720526,
- -0.019671466201543808,
- 0.01719261333346367,
- 0.061529576778411865,
- 0.005705113522708416,
- -0.022923579439520836,
- 0.02590850181877613,
- 0.05445243418216705,
- 0.03916947916150093,
- -0.027484087273478508,
- 0.0026664906181395054,
- 0.04656608775258064,
- -0.008062121458351612,
- -0.026152247563004494,
- 0.053986284881830215,
- 0.11483586579561234,
- -0.0032205702736973763,
- -0.13966400921344757,
- -0.007150971330702305,
- -0.06919330358505249,
- 0.026247607544064522,
- 0.055700529366731644,
- -0.06856469064950943,
- -0.04036589711904526,
- -0.0190818402916193,
- 0.04045014828443527,
- 0.026284582912921906,
- 0.02073894999921322,
- 0.008653691969811916,
- 0.024602875113487244,
- -0.04451138526201248,
- -0.06556004285812378,
- -0.05208439752459526,
- 0.03488066792488098,
- 0.15105299651622772,
- 0.022894764319062233,
- 0.018224194645881653,
- -0.04583483934402466,
- 0.06196164712309837,
- 0.03862176090478897,
- 0.03387584164738655,
- 0.030184807255864143,
- 0.037463683634996414,
- 0.02695881575345993,
- -0.029442965984344482,
- 0.011296126991510391,
- 0.04469584301114082,
- -0.08194952458143234,
- 0.030216118320822716,
- 0.039605651050806046,
- -0.001661934657022357,
- -0.04192093014717102,
- 0.00300247292034328,
- -0.03455671668052673,
- 0.021637331694364548,
- -0.023983130231499672,
- -0.023159585893154144,
- -0.024341939017176628,
- -0.044884223490953445,
- 0.024801308289170265,
- 0.09966666251420975,
- 0.017963644117116928,
- 0.024689095094799995,
- -0.0012645535171031952,
- 0.026394760236144066,
- -0.04156126454472542,
- 0.03226791322231293,
- -0.0507209338247776,
- 0.03317415714263916,
- 0.10856299102306366,
- 0.03447722643613815,
- -0.03284839540719986,
- -0.035387735813856125,
- 0.025882288813591003,
- -0.07902590185403824,
- -0.10304652154445648,
- 0.09549007564783096,
- -0.01668033003807068,
- -0.061811186373233795,
- -0.03357265144586563,
- -0.039916299283504486,
- -0.026848487555980682,
- 0.0211455300450325,
- 0.052482109516859055,
- -0.10341959446668625,
- -0.009990694932639599,
- 0.0002827838761731982,
- 0.022119127213954926,
- -0.004709033295512199,
- -0.00780462846159935,
- 0.05248057469725609,
- 0.07187379896640778,
- 0.015282808803021908,
- -0.02006559446454048,
- -1.5917349216465482e-8,
- 0.03141162544488907,
- -0.016107600182294846,
- -0.0825209692120552,
- -0.025775142014026642,
- 0.05734162777662277,
- 0.04773011431097984,
- 0.018210679292678833,
- -0.05128144845366478,
- 0.02631351351737976,
- 0.06102107837796211,
- 0.08218812197446823,
- -0.02379838563501835,
- -0.0030598188750445843,
- 0.04821105673909187,
- 0.07228315621614456,
- -0.011455233208835125,
- -0.08484969288110733,
- 0.07761438190937042,
- 0.0032540427055209875,
- -0.03991807624697685,
- -0.008013679645955563,
- -0.022240864112973213,
- -0.019276931881904602,
- -0.05451466143131256,
- 0.03602438047528267,
- 0.021390948444604874,
- -0.05008832365274429,
- 0.10332721471786499,
- -0.0038352347910404205,
- -0.03141240030527115,
- -0.006350623909384012,
- -0.013340430334210396,
- -0.035798363387584686,
- -0.03753390535712242,
- 0.04601903259754181,
- 0.05473046004772186,
- -0.0448092482984066,
- -0.010709794238209724,
- 0.07534857839345932,
- 0.030913880094885826,
- 0.02302664704620838,
- 0.016789674758911133,
- 0.06148765981197357,
- 0.035492781549692154,
- -0.0711747258901596,
- 0.00447104824706912,
- -0.00652346620336175,
- -0.006218251772224903,
- 0.0388159342110157,
- -0.0201997309923172,
- 0.0025031943805515766,
- 0.019282668828964233,
- 0.10196997225284576,
- 0.04807312786579132,
- -0.013521545566618443,
- 0.04572463408112526,
- 0.08315660059452057,
- 0.00930957030504942,
- -0.014427157118916512,
- 0.019390417262911797,
- 0.1590631604194641,
- -0.002200412331148982,
- -0.008764590136706829,
- 0.002628511982038617
- ]
- },
- {
- "keyword": "action",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.052880723029375076,
- 0.007331287022680044,
- -0.020627226680517197,
- 0.002469092607498169,
- -0.02407863177359104,
- 0.05231396108865738,
- 0.16965553164482117,
- -0.0267927348613739,
- 0.009259187616407871,
- 0.04839549958705902,
- 0.05007665231823921,
- -0.008795457892119884,
- -0.044506631791591644,
- 0.04043694585561752,
- 0.003507307032123208,
- 0.016110030934214592,
- -0.019308431074023247,
- 0.01152427401393652,
- -0.09633393585681915,
- 0.04954288527369499,
- -0.016613254323601723,
- -0.02483023889362812,
- 0.011042173951864243,
- -0.019542314112186432,
- -0.09079871326684952,
- 0.03319098427891731,
- -0.011188661679625511,
- -0.027554810047149658,
- -0.046774376183748245,
- -0.12388883531093597,
- 0.10087767988443375,
- 0.015160481445491314,
- 0.08636300265789032,
- -0.053820449858903885,
- -0.04887636378407478,
- 0.10731203854084015,
- -0.006186826154589653,
- -0.08229490369558334,
- -0.03523845598101616,
- -0.09419094026088715,
- 0.0012683575041592121,
- -0.07842642068862915,
- 0.00909083429723978,
- 0.0017728321254253387,
- 0.01517685130238533,
- 0.04027232900261879,
- 0.0070326426066458225,
- -0.007884538732469082,
- -0.014132755808532238,
- 0.0010960015933960676,
- -0.012401022017002106,
- -0.00037657032953575253,
- -0.040282294154167175,
- -0.031261034309864044,
- 0.014613336883485317,
- -0.04008669778704643,
- -0.05285242199897766,
- -0.03342714533209801,
- 0.05879462510347366,
- -0.05538378655910492,
- 0.1375596672296524,
- -0.007571442052721977,
- -0.09767572581768036,
- 0.011655203066766262,
- -0.004290938843041658,
- 0.006507362704724073,
- 0.03847714886069298,
- -0.10484208166599274,
- -0.04566090926527977,
- -0.005905772093683481,
- 0.05936437472701073,
- -0.03373757749795914,
- -0.03543345630168915,
- -0.016544247046113014,
- -0.017505040392279625,
- -0.057039957493543625,
- 0.0014481800608336926,
- -0.050771500915288925,
- 0.014162912033498287,
- -0.00709378020837903,
- 0.037651773542165756,
- -0.04243404418230057,
- -0.05210884287953377,
- 0.056760597974061966,
- 0.05067213997244835,
- 0.001860545133240521,
- -0.057431887835264206,
- -0.026142707094550133,
- 0.040270522236824036,
- 0.04356333613395691,
- -0.08510413765907288,
- -0.015918591991066933,
- 0.0313321091234684,
- 0.0049630082212388515,
- -0.11760900169610977,
- -0.030189011245965958,
- -0.0050548953004181385,
- -0.00985761173069477,
- -0.021538661792874336,
- 0.28571972250938416,
- 0.03910812735557556,
- 0.04864821583032608,
- -0.06404783576726913,
- -0.028585264459252357,
- 0.0514080710709095,
- -0.0441361665725708,
- -0.03426878899335861,
- -0.0029330274555832148,
- -0.03672990947961807,
- 0.02744462341070175,
- -0.05967188626527786,
- -0.09451155364513397,
- -0.03452715277671814,
- 0.05190461128950119,
- 0.042917586863040924,
- 0.04098936915397644,
- -0.04432143270969391,
- -0.002909919247031212,
- -0.04494553059339523,
- -0.06638356298208237,
- 0.0617632158100605,
- 0.017080804333090782,
- 0.0473555326461792,
- -0.002426586113870144,
- -0.06420199573040009,
- -0.10757815092802048,
- -0.003383791306987405,
- -6.498603703769904e-33,
- 0.054444361478090286,
- -0.044463932514190674,
- 0.038609884679317474,
- 0.06375131011009216,
- 0.04184966906905174,
- 0.004740714095532894,
- -0.003500062972307205,
- -0.04797971248626709,
- 0.012864550575613976,
- 0.03515768051147461,
- -0.0042120544239878654,
- -0.014792668633162975,
- 0.03313428908586502,
- 0.042509712278842926,
- 0.0402103029191494,
- 0.0034472814295440912,
- -0.024388441815972328,
- 0.0077096750028431416,
- 0.011652335524559021,
- -0.0016100759385153651,
- -0.024388732388615608,
- 0.06628766655921936,
- 0.013345797546207905,
- 0.060612790286540985,
- -0.047338373959064484,
- -0.07186708599328995,
- -0.0007068769773468375,
- -0.03680521994829178,
- -0.049703653901815414,
- 0.007293609902262688,
- 0.024638952687382698,
- 0.0012940570013597608,
- -0.0326300784945488,
- 0.03938061371445656,
- 0.037339404225349426,
- -0.014112653210759163,
- -0.03388584405183792,
- -0.03736292943358421,
- 0.0035093266051262617,
- -0.056139860302209854,
- -0.04706280678510666,
- 0.0626336932182312,
- -0.0681409239768982,
- 0.01902359165251255,
- 0.023051775991916656,
- 0.05104665085673332,
- 0.06294478476047516,
- 0.07377254217863083,
- -0.0016354284016415477,
- 0.07008778303861618,
- 0.06955648213624954,
- -0.028050409629940987,
- 0.06253336369991302,
- -0.03414836898446083,
- -0.025035705417394638,
- 0.029434800148010254,
- 0.006126838270574808,
- 0.05998194217681885,
- 0.04732442647218704,
- 0.03472277894616127,
- 0.0894571989774704,
- 0.008452622219920158,
- -0.022288555279374123,
- 0.0628078505396843,
- -0.06614098697900772,
- -0.015943186357617378,
- -0.012662050314247608,
- -0.008118200115859509,
- 0.037013083696365356,
- -0.0539092943072319,
- -0.05007611960172653,
- 0.03652404621243477,
- 0.08318425714969635,
- -0.02952377125620842,
- -0.000875387224368751,
- -0.001203930121846497,
- -0.0038201003335416317,
- -0.06182719022035599,
- -0.06259537488222122,
- 0.018794842064380646,
- -0.08573362976312637,
- -0.09679336100816727,
- -0.030771490186452866,
- 0.06282699108123779,
- 0.00836881808936596,
- 0.026302702724933624,
- 0.017167428508400917,
- -0.05966121703386307,
- -0.04146842658519745,
- 0.06762299686670303,
- -0.10444990545511246,
- 0.0004836544394493103,
- -0.033497098833322525,
- 0.03750855475664139,
- 0.10636298358440399,
- 4.8199661793849986e-33,
- 0.04944564402103424,
- 0.05009216070175171,
- -0.08791923522949219,
- 0.0729992538690567,
- 0.033501241356134415,
- 0.01688883639872074,
- 0.011299839243292809,
- 0.03208918496966362,
- 0.04438363388180733,
- 0.050953686237335205,
- -0.08161964267492294,
- -0.006150835193693638,
- 0.03104676678776741,
- 0.03589697554707527,
- 0.050910089164972305,
- -0.04276209697127342,
- 0.07891097664833069,
- 0.05230002850294113,
- -0.03154303506016731,
- 0.025652913376688957,
- -0.07649803161621094,
- 0.048612095415592194,
- -0.023754406720399857,
- -0.008357103914022446,
- -0.0688929334282875,
- 0.03619379177689552,
- 0.10140546411275864,
- 0.015206664800643921,
- -0.00527329184114933,
- 0.009403093717992306,
- 0.038394443690776825,
- -0.05405033379793167,
- -0.019588906317949295,
- 0.03605786710977554,
- 0.005090505816042423,
- 0.08654984086751938,
- 0.10051824897527695,
- 0.052791349589824677,
- -0.0017323339125141501,
- -0.046034518629312515,
- 0.0423295795917511,
- -0.029443124309182167,
- 0.00771138072013855,
- 0.13993343710899353,
- 0.012722020968794823,
- 0.029459020122885704,
- 0.00999666191637516,
- -0.01052317675203085,
- -0.0685754120349884,
- 0.03834852576255798,
- -0.05234944075345993,
- 0.0026480727829039097,
- 0.005263013299554586,
- -0.03956930339336395,
- 0.05724271759390831,
- 0.02266005426645279,
- 0.03433851897716522,
- -0.012283185496926308,
- -0.055901795625686646,
- -0.0007447812822647393,
- 0.01526691485196352,
- 0.07034376263618469,
- -0.028813036158680916,
- -0.02014162763953209,
- 0.03310481086373329,
- 0.009532252326607704,
- -0.024007504805922508,
- -0.015426933765411377,
- 0.03137030452489853,
- 0.010766752995550632,
- 0.0719081461429596,
- 0.006882582791149616,
- -0.07599571347236633,
- -0.006596711464226246,
- 0.04508296772837639,
- -0.12018037587404251,
- -0.05741185322403908,
- -0.030458666384220123,
- 0.006637122016400099,
- -0.019536804407835007,
- -0.019956162199378014,
- -0.0468871146440506,
- 0.020264700055122375,
- 0.01908053085207939,
- -0.07779781520366669,
- 0.03151777386665344,
- -0.015684710815548897,
- 0.014410476200282574,
- -0.02872011996805668,
- 0.03689213842153549,
- 0.002879427745938301,
- 0.049380823969841,
- 0.08797439932823181,
- 0.011108829639852047,
- -0.05132737755775452,
- -1.3542032384350478e-8,
- -0.03566661849617958,
- 0.09143868833780289,
- 0.09468171745538712,
- -0.036777205765247345,
- 0.02526717633008957,
- 0.05750333517789841,
- -0.05332067608833313,
- 0.037943582981824875,
- 0.04282636567950249,
- 0.041571326553821564,
- 0.06462235748767853,
- 0.035811495035886765,
- 0.0660129263997078,
- -0.01777287945151329,
- 0.05640693008899689,
- -0.07770855724811554,
- 0.0056421030312776566,
- 0.004220874048769474,
- -0.1065673753619194,
- 0.04966191574931145,
- 0.01768622174859047,
- -0.022613363340497017,
- -0.013469699770212173,
- -0.03830946609377861,
- -0.033195991069078445,
- -0.049265388399362564,
- -0.007383636198937893,
- 0.07768464088439941,
- 0.0016738666454330087,
- 0.03897327557206154,
- 0.06574029475450516,
- 0.037910379469394684,
- -0.05449451506137848,
- 0.006901073735207319,
- -0.07704094797372818,
- -0.03826804459095001,
- 0.05274403095245361,
- -0.028242744505405426,
- 0.007731236517429352,
- -0.030564596876502037,
- -0.07638861238956451,
- -0.0035461944062262774,
- 0.04100480303168297,
- -0.015143497847020626,
- -0.05377832055091858,
- 0.09568753093481064,
- -0.0563957616686821,
- -0.10027683526277542,
- 0.008717996999621391,
- -0.0030087397899478674,
- -0.009779357351362705,
- -0.00889630801975727,
- 0.005070497747510672,
- 0.1430594027042389,
- 0.007130113430321217,
- 0.0807245746254921,
- 0.049926239997148514,
- -0.02237250655889511,
- -0.016686420887708664,
- 0.04443599283695221,
- 0.11130385845899582,
- -0.019032351672649384,
- -0.03317146748304367,
- 0.012940741144120693
- ]
- },
- {
- "keyword": "activity",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.021039197221398354,
- -0.0242659542709589,
- 0.028019852936267853,
- 0.009682422503829002,
- -0.04044870287179947,
- 0.047984831035137177,
- 0.16160593926906586,
- -0.01258057076483965,
- 0.011511818505823612,
- 0.005066368263214827,
- 0.011618966236710548,
- -0.008822614327073097,
- -0.01603529043495655,
- 0.07857705652713776,
- 0.003152044489979744,
- 0.006191933527588844,
- 0.017132168635725975,
- 0.016105374321341515,
- -0.052167858928442,
- -0.014205308631062508,
- -0.029909437522292137,
- -0.026207441464066505,
- 0.015198907814919949,
- 0.056773312389850616,
- -0.05549627169966698,
- 0.07118687033653259,
- -0.02467142976820469,
- -0.01958300545811653,
- 0.011167054995894432,
- -0.09444024413824081,
- 0.026667645201086998,
- 0.030934562906622887,
- 0.1719226837158203,
- -0.012030170299112797,
- -0.08077409118413925,
- 0.04025433212518692,
- 0.000018036973415291868,
- -0.020158639177680016,
- -0.008071472868323326,
- -0.021007850766181946,
- -0.07372628897428513,
- -0.12124733626842499,
- 0.04399316385388374,
- -0.019948741421103477,
- 0.008515733294188976,
- 0.04137200862169266,
- 0.015599784441292286,
- -0.04454150050878525,
- 0.029996363446116447,
- 0.04947960004210472,
- 0.0075493426993489265,
- -0.0375191792845726,
- -0.044829338788986206,
- 0.02828504517674446,
- -0.009381961077451706,
- -0.011365163139998913,
- -0.03578128665685654,
- -0.022296832874417305,
- 0.03245430439710617,
- -0.04264039173722267,
- 0.10406433045864105,
- -0.020548610016703606,
- -0.0649074912071228,
- 0.0657205581665039,
- 0.014738655649125576,
- 0.008519165217876434,
- 0.002175126923248172,
- -0.019867928698658943,
- -0.017528042197227478,
- -0.049928341060876846,
- 0.03197256103157997,
- -0.05445259064435959,
- 0.005069656763225794,
- 0.0037988536059856415,
- -0.008439815603196621,
- -0.09407120198011398,
- 0.016097398474812508,
- -0.08051038533449173,
- 0.016615604981780052,
- -0.06997757405042648,
- -0.010186677798628807,
- -0.046846382319927216,
- -0.04237968102097511,
- 0.03633429482579231,
- 0.03851449489593506,
- 0.019177131354808807,
- -0.01415089052170515,
- 0.050197575241327286,
- 0.04718410596251488,
- 0.009231866337358952,
- -0.12330495566129684,
- 0.02175513468682766,
- -0.02541365474462509,
- -0.03306293860077858,
- -0.09904640913009644,
- 0.008101114071905613,
- -0.05285054072737694,
- -0.07636282593011856,
- 0.006049598101526499,
- 0.25909367203712463,
- 0.04300995543599129,
- 0.11446762084960938,
- -0.011526125483214855,
- 0.01815411075949669,
- -0.022350868210196495,
- -0.040673501789569855,
- -0.055312227457761765,
- 0.04261458292603493,
- 0.038526710122823715,
- 0.07315370440483093,
- -0.03341151773929596,
- -0.06897416710853577,
- -0.0313565731048584,
- 0.017886564135551453,
- -0.008480760268867016,
- 0.07297205924987793,
- 0.036604173481464386,
- 0.0031845879275351763,
- -0.044815793633461,
- 0.025275245308876038,
- 0.0829460620880127,
- -0.0070702205412089825,
- 0.02870425209403038,
- -0.023764515295624733,
- -0.060204628854990005,
- -0.06757870316505432,
- -0.0062084379605948925,
- -6.301437301622512e-33,
- 0.04647998511791229,
- -0.11917294561862946,
- 0.06383989751338959,
- 0.07299511879682541,
- -0.014146116562187672,
- -0.0013572484022006392,
- -0.010621030814945698,
- -0.05241585895419121,
- 0.04037846252322197,
- -0.006076430901885033,
- -0.019842874258756638,
- 0.06731702387332916,
- 0.0027188679669052362,
- 0.08019108325242996,
- 0.11748604476451874,
- -0.05037382245063782,
- -0.0015588407404720783,
- 0.03714531660079956,
- -0.010028954595327377,
- 0.023175805807113647,
- -0.004579320549964905,
- -0.058107390999794006,
- -0.0012067763600498438,
- 0.054152149707078934,
- 0.01733437180519104,
- -0.018887735903263092,
- 0.014025567099452019,
- -0.1170191839337349,
- 0.005639718845486641,
- 0.0024828119203448296,
- 0.06873346120119095,
- -0.011964170262217522,
- -0.057389333844184875,
- -0.002141052857041359,
- 0.043424636125564575,
- 0.0021661901846528053,
- 0.008006315678358078,
- -0.02775551564991474,
- 0.0550767220556736,
- -0.0812540203332901,
- -0.038930248469114304,
- -0.01683039404451847,
- -0.002647648798301816,
- -0.03848835453391075,
- 0.008630181662738323,
- 0.039970409125089645,
- 0.06568287312984467,
- 0.048212990164756775,
- -0.03206220641732216,
- 0.02794681489467621,
- 0.049781426787376404,
- -0.0006786240846849978,
- 0.035755500197410583,
- -0.062206823378801346,
- -0.01178994681686163,
- 0.020599547773599625,
- 0.019004788249731064,
- 0.014609881676733494,
- 0.032886113971471786,
- 0.044949375092983246,
- 0.10738307982683182,
- 0.09296221286058426,
- -0.06325885653495789,
- -0.005592768546193838,
- -0.022841090336441994,
- 0.01562901772558689,
- -0.02460920438170433,
- -0.03407416120171547,
- 0.06544281542301178,
- -0.04926541447639465,
- -0.07756392657756805,
- 0.017603550106287003,
- 0.0838797315955162,
- 0.007615996524691582,
- 0.03763886168599129,
- 0.06457870453596115,
- -0.01638292893767357,
- -0.042834170162677765,
- -0.0817185714840889,
- 0.008552071638405323,
- -0.0066520292311906815,
- -0.061306197196245193,
- 0.06113031879067421,
- -0.03703895956277847,
- -0.05289784073829651,
- 0.03194712847471237,
- -0.004015611484646797,
- -0.08489160984754562,
- -0.08869649469852448,
- 0.07390330731868744,
- -0.09981178492307663,
- 0.007906585931777954,
- -0.016771983355283737,
- 0.058789242058992386,
- 0.005696010775864124,
- 3.579406746876759e-33,
- -0.04208367317914963,
- -0.006103073246777058,
- -0.059756919741630554,
- 0.0016651040641590953,
- 0.05771372467279434,
- -0.003882236545905471,
- -0.023061519488692284,
- -0.012641025707125664,
- -0.03916960954666138,
- 0.07867664843797684,
- -0.06212514266371727,
- -0.03104117326438427,
- 0.03859567269682884,
- 0.008325854316353798,
- 0.04521074891090393,
- -0.0010177216026932001,
- 0.0616043284535408,
- 0.11245829612016678,
- -0.0588894858956337,
- 0.08793450146913528,
- -0.11060769855976105,
- 0.05992426723241806,
- -0.03338496387004852,
- -0.032561562955379486,
- -0.005752240307629108,
- 0.07598405331373215,
- 0.05722227692604065,
- -0.013887329027056694,
- -0.03542987257242203,
- -0.0022302044089883566,
- -0.03641621768474579,
- -0.017806321382522583,
- -0.005756511352956295,
- -0.012431472539901733,
- -0.051135480403900146,
- 0.1202622577548027,
- 0.031404562294483185,
- -0.0118162976577878,
- -0.06344371289014816,
- -0.06395068019628525,
- 0.08709125965833664,
- 0.020583700388669968,
- 0.06170577183365822,
- 0.13226386904716492,
- -0.0016865070210769773,
- -0.002305921632796526,
- -0.10189221054315567,
- 0.0702308714389801,
- -0.12128088623285294,
- 0.01565992459654808,
- 0.02638951502740383,
- -0.006796462461352348,
- -0.032818134874105453,
- -0.06618860363960266,
- 0.08404229581356049,
- 0.07889755070209503,
- -0.00877514760941267,
- -0.05683467909693718,
- -0.021447695791721344,
- -0.04740709811449051,
- 0.030583305284380913,
- 0.0653429701924324,
- -0.11288407444953918,
- 0.07413970679044724,
- 0.007636630907654762,
- 0.026590265333652496,
- -0.04955049231648445,
- 0.006526933517307043,
- -0.048643846064805984,
- 0.010868789628148079,
- 0.04643062502145767,
- -0.0026039178483188152,
- -0.05215069279074669,
- -0.041313279420137405,
- -0.013550778850913048,
- -0.03292311355471611,
- -0.03949134051799774,
- -0.03260243311524391,
- -0.002777203917503357,
- -0.009667458944022655,
- -0.042618006467819214,
- -0.033583372831344604,
- -0.01564095728099346,
- -0.018277648836374283,
- -0.06908926367759705,
- -0.007546985521912575,
- -0.01956494338810444,
- 0.005320405121892691,
- -0.04547909274697304,
- 0.0011589754140004516,
- 0.0003077993169426918,
- 0.05898448824882507,
- -0.06551247090101242,
- -0.012086208909749985,
- -0.034476619213819504,
- -1.2863340614899244e-8,
- 0.02023410238325596,
- 0.023910710588097572,
- 0.023054856806993484,
- -0.01849275641143322,
- 0.04411037638783455,
- -0.012196470983326435,
- 0.06212300807237625,
- 0.05122339725494385,
- 0.046510785818099976,
- 0.05254132300615311,
- 0.0073808724991977215,
- -0.008971733041107655,
- 0.08929865062236786,
- 0.040828853845596313,
- 0.07469143718481064,
- -0.05449209734797478,
- 0.017340051010251045,
- 0.01502861175686121,
- -0.11993513256311417,
- 0.014832455664873123,
- 0.04809320718050003,
- -0.01744653657078743,
- -0.018615921959280968,
- 0.020642247051000595,
- -0.05349496379494667,
- -0.044253021478652954,
- -0.01438768208026886,
- 0.029381757602095604,
- 0.049099646508693695,
- 0.019998908042907715,
- 0.04401404783129692,
- 0.04119109734892845,
- -0.028566546738147736,
- -0.04682580754160881,
- -0.05422963574528694,
- -0.020863985642790794,
- 0.0698993131518364,
- -0.02464812994003296,
- -0.033509377390146255,
- 0.04030793905258179,
- -0.07594704627990723,
- -0.06399794667959213,
- 0.07575442641973495,
- 0.03267303481698036,
- -0.027318112552165985,
- 0.02454672008752823,
- -0.04253489524126053,
- -0.08677900582551956,
- 0.022910065948963165,
- -0.026858577504754066,
- -0.03872455656528473,
- -0.044082943350076675,
- 0.05720990523695946,
- 0.0431673601269722,
- -0.009565381333231926,
- 0.07223879545927048,
- -0.0000036986514260206604,
- -0.01920953392982483,
- -0.043120622634887695,
- 0.005678294226527214,
- 0.09075476229190826,
- 0.050240714102983475,
- -0.036554306745529175,
- 0.054606325924396515
- ]
- },
- {
- "keyword": "job",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.14035089313983917,
- 0.0690765231847763,
- -0.03767813742160797,
- -0.015429121442139149,
- -0.05038701370358467,
- -0.10821856558322906,
- 0.12918736040592194,
- -0.027414005249738693,
- -0.015351757407188416,
- -0.0321413092315197,
- -0.012554267421364784,
- -0.05429154261946678,
- -0.0068784598261117935,
- 0.022677360102534294,
- -0.07329683750867844,
- -0.007538733538240194,
- 0.0016340785659849644,
- 0.03166359290480614,
- -0.057290561497211456,
- -0.03839704766869545,
- -0.042499952018260956,
- 0.04058942571282387,
- 0.0007059199851937592,
- 0.028862204402685165,
- -0.01212515402585268,
- 0.08600273728370667,
- -0.016599509865045547,
- 0.06771952658891678,
- 0.01385465171188116,
- -0.11960981786251068,
- -0.06469771265983582,
- 0.04648423194885254,
- 0.08449658006429672,
- 0.0037028994411230087,
- -0.0017163685988634825,
- 0.08472846448421478,
- -0.014689681120216846,
- -0.02189825475215912,
- -0.012272205203771591,
- -0.0739409402012825,
- 0.023546060547232628,
- -0.10938114672899246,
- -0.05737564340233803,
- -0.03279099985957146,
- -0.038465630263090134,
- 0.013055120594799519,
- 0.05869037285447121,
- 0.012436341494321823,
- 0.06410516053438187,
- 0.012068413197994232,
- -0.03915689140558243,
- -0.023488953709602356,
- 0.030922839418053627,
- -0.0020499909296631813,
- 0.026843106374144554,
- 0.006812734063714743,
- -0.016608823090791702,
- -0.015559371560811996,
- 0.010119538754224777,
- -0.039520785212516785,
- 0.1030493751168251,
- 0.017103808000683784,
- -0.041443146765232086,
- 0.053312353789806366,
- 0.07268635928630829,
- -0.022944211959838867,
- -0.014711526222527027,
- -0.00008613282989244908,
- -0.02366158366203308,
- -0.07843644917011261,
- -0.004788832273334265,
- 0.002963494276627898,
- -0.02211407758295536,
- -0.017057621851563454,
- 0.08397163450717926,
- 0.010533377528190613,
- 0.024756846949458122,
- -0.056123510003089905,
- 0.056481871753931046,
- -0.026375940069556236,
- -0.019264061003923416,
- -0.07717451453208923,
- -0.06606645882129669,
- 0.09124281257390976,
- -0.05771772935986519,
- -0.059412017464637756,
- 0.010690063238143921,
- 0.04014066606760025,
- 0.018345477059483528,
- -0.004345044493675232,
- 0.007941299118101597,
- -0.04519624263048172,
- 0.0508870892226696,
- 0.0013009995454922318,
- -0.1230957955121994,
- -0.06259453296661377,
- 0.013919475488364697,
- 0.05777649208903313,
- -0.01897394098341465,
- 0.2202528864145279,
- 0.02274160087108612,
- 0.007762780413031578,
- -0.004856840241700411,
- -0.02378176711499691,
- -0.026162341237068176,
- 0.010641077533364296,
- -0.07195352762937546,
- 0.09848275780677795,
- -0.028920872136950493,
- -0.02172403782606125,
- -0.12316978722810745,
- -0.011273562908172607,
- -0.010050766170024872,
- 0.08285903185606003,
- 0.035947926342487335,
- 0.011330999433994293,
- -0.06886516511440277,
- 0.028908180072903633,
- -0.039839331060647964,
- 0.02654067613184452,
- 0.029770495370030403,
- 0.07210466265678406,
- -0.04216565936803818,
- 0.01651015877723694,
- -0.07478228956460953,
- -0.10527174174785614,
- 0.052614159882068634,
- -3.036191705578579e-33,
- 0.0823555439710617,
- -0.06836700439453125,
- -0.0230984129011631,
- 0.028154678642749786,
- 0.06577426195144653,
- 0.02841351367533207,
- 0.011435894295573235,
- 0.05473610386252403,
- 0.011250668205320835,
- 0.12701529264450073,
- -0.054750218987464905,
- 0.0041447849944233894,
- -0.03269468620419502,
- 0.04713178053498268,
- 0.10956767946481705,
- 0.058094415813684464,
- -0.020420091226696968,
- 0.059240784496068954,
- -0.07159539312124252,
- -0.008430649526417255,
- -0.03239979222416878,
- 0.01984671875834465,
- -0.06425110250711441,
- 0.10182999074459076,
- -0.013354109600186348,
- -0.026961810886859894,
- 0.05121118575334549,
- -0.05315171927213669,
- 0.011975674889981747,
- 0.0054330588318407536,
- -0.024548694491386414,
- 0.030041750520467758,
- 0.027773559093475342,
- 0.03272651508450508,
- -0.043742772191762924,
- -0.10759895294904709,
- -0.008467050269246101,
- -0.0761495977640152,
- 0.03406970947980881,
- -0.06780586391687393,
- -0.0046651288866996765,
- 0.009592476300895214,
- -0.03698272630572319,
- 0.05306389927864075,
- 0.02580850198864937,
- 0.01928347907960415,
- 0.05758773535490036,
- 0.011820999905467033,
- 0.00962916761636734,
- 0.1470378041267395,
- 0.007624911144375801,
- -0.005530196242034435,
- -0.011832887306809425,
- 0.013492354191839695,
- -0.05305182561278343,
- 0.04135667532682419,
- 0.00628673005849123,
- -0.038012806326150894,
- -0.04876631870865822,
- -0.03714748099446297,
- 0.08839111030101776,
- 0.054454755038022995,
- -0.07150403410196304,
- -0.029593760147690773,
- 0.06612502038478851,
- -0.04058166593313217,
- 0.020967699587345123,
- -0.031116243451833725,
- 0.06446758657693863,
- 0.028018806129693985,
- -0.04950182884931564,
- 0.05418673902750015,
- 0.055291272699832916,
- 0.044986143708229065,
- 0.003713904181495309,
- 0.019880009815096855,
- -0.00014540694246534258,
- -0.02468816190958023,
- -0.0981156975030899,
- 0.029061559587717056,
- 0.08034012466669083,
- -0.032966144382953644,
- 0.040973007678985596,
- 0.028203684836626053,
- 0.1037006825208664,
- 0.012056266888976097,
- -0.0007741273730061948,
- -0.06001947447657585,
- 0.10245369374752045,
- 0.09237325936555862,
- -0.05734800919890404,
- 0.036878325045108795,
- 0.06139219179749489,
- 0.032776445150375366,
- 0.02673039399087429,
- 2.4879525279565877e-33,
- -0.011343126185238361,
- 0.00964699313044548,
- -0.009933832101523876,
- 0.06647630035877228,
- 0.02604616992175579,
- 0.0011286836815997958,
- 0.019094383344054222,
- 0.032592155039310455,
- -0.0396951287984848,
- 0.15359744429588318,
- -0.10841982811689377,
- -0.0014828736893832684,
- 0.055836789309978485,
- -0.0188138447701931,
- -0.01013421081006527,
- 0.022862594574689865,
- 0.023773247376084328,
- -0.0459376722574234,
- -0.08053170889616013,
- 0.05535067990422249,
- -0.08114530146121979,
- -0.03756432235240936,
- -0.016157757490873337,
- 0.002466930542141199,
- 0.0467466376721859,
- 0.018934356048703194,
- 0.02101370133459568,
- -0.052622243762016296,
- 0.010922751389443874,
- 0.0045067728497087955,
- 0.050586335361003876,
- 0.021352915093302727,
- -0.08320281654596329,
- -0.026251843199133873,
- 0.004458252806216478,
- 0.05539461597800255,
- 0.022083859890699387,
- 0.059810005128383636,
- 0.02319248765707016,
- 0.08039478957653046,
- 0.026336457580327988,
- -0.034926120191812515,
- 0.011427571065723896,
- 0.08003456890583038,
- -0.06457247585058212,
- -0.034566354006528854,
- -0.016806336119771004,
- 0.014644542708992958,
- -0.0015427361940965056,
- 0.03201999515295029,
- -0.05207135155797005,
- -0.03141852095723152,
- -0.005560440942645073,
- 0.016376109793782234,
- 0.006539595313370228,
- -0.05267738923430443,
- -0.024015748873353004,
- -0.014596178196370602,
- -0.023569395765662193,
- 0.01964499056339264,
- 0.020684922114014626,
- -0.0007296736584976315,
- 0.0657251849770546,
- 0.05266863480210304,
- -0.016550593078136444,
- -0.04603669419884682,
- 0.008549332618713379,
- -0.012623123824596405,
- 0.013319224119186401,
- 0.02348187193274498,
- 0.04813937842845917,
- 0.035329923033714294,
- -0.010187114588916302,
- 0.059137631207704544,
- -0.09713432937860489,
- -0.0654943585395813,
- -0.025760112330317497,
- 0.003965576179325581,
- -0.0016179524827748537,
- 0.03101939707994461,
- -0.05707347020506859,
- -0.044993843883275986,
- -0.012936770915985107,
- 0.010093300603330135,
- -0.08629554510116577,
- -0.01877858303487301,
- 0.013969216495752335,
- 0.027441317215561867,
- -0.008037005551159382,
- -0.07687806338071823,
- -0.08360347151756287,
- 0.05240361765027046,
- -0.01891414262354374,
- 0.016101760789752007,
- 0.011420752853155136,
- -1.2487032741148596e-8,
- 0.003314695553854108,
- 0.038388658314943314,
- 0.02432449348270893,
- -0.08435793966054916,
- 0.03544280678033829,
- 0.03962767496705055,
- -0.023611918091773987,
- -0.0038746425416320562,
- 0.05281571298837662,
- 0.05559179186820984,
- 0.025056635960936546,
- -0.011394563131034374,
- -0.020602867007255554,
- 0.05248448625206947,
- 0.11687029898166656,
- -0.002298023086041212,
- 0.01378293614834547,
- -0.00751082319766283,
- -0.03422575816512108,
- -0.017671847715973854,
- -0.04801959544420242,
- 0.04480927810072899,
- 0.010663339868187904,
- 0.015673665329813957,
- -0.013168507255613804,
- -0.028092579916119576,
- -0.018053026869893074,
- 0.167705237865448,
- -0.007705639116466045,
- 0.0588001124560833,
- -0.01912599802017212,
- 0.06165964528918266,
- -0.04404762014746666,
- -0.07505176961421967,
- -0.010318473912775517,
- -0.061734408140182495,
- 0.020831771194934845,
- -0.05271529033780098,
- 0.027965473011136055,
- -0.023616759106516838,
- -0.007748845033347607,
- 0.05494388937950134,
- 0.08311659842729568,
- -0.03132771700620651,
- -0.03678354248404503,
- -0.013909594155848026,
- 0.008040453307330608,
- -0.05835023894906044,
- -0.02598777413368225,
- -0.0678354799747467,
- -0.034489378333091736,
- -0.021740887314081192,
- 0.047789886593818665,
- 0.05220947042107582,
- 0.009100604802370071,
- -0.040731292217969894,
- 0.0070176259614527225,
- 0.041351038962602615,
- -0.08802113682031631,
- 0.08650781959295273,
- 0.1163523718714714,
- 0.010964781045913696,
- -0.031593047082424164,
- 0.04050992801785469
- ]
- },
- {
- "keyword": "assignment",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.022540604695677757,
- 0.12061209976673126,
- -0.009725415147840977,
- 0.02402508817613125,
- -0.02804303914308548,
- -0.012132329866290092,
- 0.16000567376613617,
- 0.0028884343337267637,
- -0.03425564989447594,
- -0.002091675531119108,
- 0.018236815929412842,
- -0.03341515362262726,
- -0.03145131096243858,
- 0.02713356725871563,
- -0.08767083287239075,
- -0.040275733917951584,
- -0.0266976747661829,
- -0.01827451027929783,
- -0.0989186093211174,
- -0.045817781239748,
- 0.05044244974851608,
- 0.023540491238236427,
- 0.018800463527441025,
- 0.058014530688524246,
- -0.028495052829384804,
- 0.06232327222824097,
- 0.00317532941699028,
- -0.01965242810547352,
- 0.02948186919093132,
- -0.1006237342953682,
- -0.07202798128128052,
- 0.054631900042295456,
- 0.09768346697092056,
- 0.026222625747323036,
- -0.04531333968043327,
- 0.025724120438098907,
- -0.031556956470012665,
- 0.0008783536031842232,
- -0.03920423239469528,
- -0.023091323673725128,
- -0.030930377542972565,
- -0.06382999569177628,
- -0.009364557452499866,
- -0.005964761599898338,
- 0.012184091843664646,
- -0.012848568148911,
- 0.02648250013589859,
- -0.009017009288072586,
- -0.02004914917051792,
- 0.01836494170129299,
- 0.017834791913628578,
- -0.014369978569447994,
- -0.12576159834861755,
- 0.00852335337549448,
- 0.018334105610847473,
- -0.00023300615430343896,
- 0.051678385585546494,
- 0.002521152375265956,
- 0.037057798355817795,
- -0.02375713735818863,
- 0.008623555302619934,
- 0.031092876568436623,
- 0.007289827801287174,
- 0.08947702497243881,
- 0.15299801528453827,
- -0.07471058517694473,
- 0.008684205822646618,
- 0.007805188186466694,
- -0.08179172873497009,
- 0.013824046589434147,
- -0.046449653804302216,
- 0.04865892976522446,
- 0.08374983072280884,
- 0.04816150665283203,
- 0.04425327479839325,
- -0.050965745002031326,
- 0.025861673057079315,
- -0.029790552332997322,
- 0.07159321010112762,
- -0.017428575083613396,
- -0.04935413971543312,
- -0.01967366598546505,
- -0.021176457405090332,
- 0.05457008257508278,
- 0.021531589329242706,
- -0.04730157554149628,
- -0.006740076467394829,
- 0.013585878536105156,
- 0.06753905117511749,
- 0.02608874812722206,
- -0.03752031922340393,
- -0.014127343893051147,
- 0.05225473642349243,
- -0.02447792887687683,
- -0.02702891267836094,
- 0.035981446504592896,
- 0.0019093839218840003,
- -0.023091454058885574,
- -0.01733485236763954,
- 0.2739441394805908,
- 0.009041756391525269,
- 0.06324128806591034,
- -0.016423391178250313,
- 0.032906901091337204,
- -0.11368359625339508,
- -0.06274902820587158,
- -0.05604257807135582,
- -0.048193544149398804,
- 0.0022495058365166187,
- -0.055072858929634094,
- -0.013403009623289108,
- -0.014282002113759518,
- -0.06632089614868164,
- 0.056706395000219345,
- 0.03694115951657295,
- -0.01449351105839014,
- 0.011234601959586143,
- 0.04009556770324707,
- -0.05441577360033989,
- -0.03576851263642311,
- 0.052026115357875824,
- -0.0014981592539697886,
- -0.010565120726823807,
- -0.0028074372094124556,
- -0.09374793618917465,
- -0.03596842288970947,
- 0.006105962209403515,
- -6.564207308805326e-33,
- -0.02913041040301323,
- -0.08022875338792801,
- -0.02867952734231949,
- 0.10917983949184418,
- 0.051366351544857025,
- -0.028956223279237747,
- -0.0038521208334714174,
- 0.026134179905056953,
- 0.014926736243069172,
- 0.020140990614891052,
- -0.018633119761943817,
- -0.012991979718208313,
- -0.005441245157271624,
- 0.030359311029314995,
- 0.06901385635137558,
- -0.00790923461318016,
- -0.005530278664082289,
- 0.07678253948688507,
- -0.07055141776800156,
- -0.022116733714938164,
- 0.005326994229108095,
- 0.023118378594517708,
- -0.013766886666417122,
- -0.012536450289189816,
- -0.0025934309232980013,
- -0.0043519833125174046,
- -0.028619401156902313,
- -0.10132775455713272,
- -0.006401532329618931,
- 0.03840920701622963,
- 0.10772661119699478,
- -0.006435086484998465,
- -0.013054718263447285,
- -0.030391952022910118,
- 0.015615995973348618,
- -0.009683506563305855,
- 0.023125410079956055,
- -0.050343628972768784,
- 0.09054163098335266,
- -0.046478547155857086,
- 0.018037814646959305,
- -0.0389435775578022,
- 0.03272357955574989,
- -0.016608014702796936,
- 0.07137729227542877,
- -0.010663734748959541,
- 0.09441984444856644,
- 0.06151856854557991,
- 0.009224813431501389,
- 0.0562923438847065,
- -0.07014992833137512,
- -0.03709769248962402,
- -0.02277769148349762,
- -0.05047638714313507,
- 0.04344990849494934,
- 0.03253918141126633,
- 0.032569520175457,
- -0.040858034044504166,
- -0.08524233847856522,
- 0.016286274418234825,
- 0.06001937389373779,
- 0.06718158721923828,
- -0.06772487610578537,
- 0.032667357474565506,
- -0.007007706444710493,
- -0.02357707917690277,
- -0.003421792294830084,
- -0.03490384295582771,
- 0.08913889527320862,
- -0.032640017569065094,
- -0.11986978352069855,
- 0.006940664257854223,
- -0.015291806310415268,
- 0.039209481328725815,
- -0.027806419879198074,
- 0.017858507111668587,
- -0.003459118539467454,
- -0.0010866782395169139,
- -0.06662239879369736,
- -0.05159003287553787,
- -0.06411276757717133,
- 0.019915344193577766,
- -0.012219822965562344,
- -0.021042264997959137,
- -0.04471729323267937,
- -0.030146870762109756,
- 0.04780399054288864,
- -0.07619857043027878,
- 0.054585132747888565,
- 0.07864812761545181,
- -0.014017933048307896,
- -0.009269479662179947,
- -0.024814661592245102,
- 0.06433986872434616,
- 0.014910549856722355,
- 3.450291182066408e-33,
- -0.07945945858955383,
- 0.023707063868641853,
- 0.0007377743604592979,
- 0.01490218099206686,
- 0.06059830263257027,
- -0.0026775929145514965,
- -0.037761230021715164,
- -0.07447770237922668,
- 0.05126358941197395,
- 0.13201041519641876,
- -0.09959723800420761,
- -0.0014611982041969895,
- -0.03433995693922043,
- 0.009605015628039837,
- -0.009210160002112389,
- 0.018153464421629906,
- -0.005787908099591732,
- -0.06579012423753738,
- -0.06904646754264832,
- -0.01321875024586916,
- -0.09392209351062775,
- 0.095552459359169,
- 0.001501483959145844,
- -0.01726951263844967,
- -0.012042956426739693,
- 0.08832976967096329,
- 0.016080021858215332,
- -0.01363285630941391,
- 0.002072175033390522,
- -0.03983931243419647,
- -0.0428447425365448,
- -0.0741218626499176,
- -0.12115691602230072,
- -0.030525263398885727,
- -0.012394564226269722,
- 0.08271604031324387,
- 0.08261917531490326,
- 0.0008763780351728201,
- -0.0032150130718946457,
- 0.06388476490974426,
- 0.14444531500339508,
- 0.015491800382733345,
- 0.06197074055671692,
- 0.13887697458267212,
- -0.008154010400176048,
- 0.01210513524711132,
- 0.023891277611255646,
- -0.007731799501925707,
- 0.06441684067249298,
- 0.05008065328001976,
- -0.07500865310430527,
- 0.027672288939356804,
- -0.03572884947061539,
- -0.03462567180395126,
- 0.014733095653355122,
- 0.04273175820708275,
- -0.06240077689290047,
- -0.0471566878259182,
- 0.07651734352111816,
- 0.04318520426750183,
- -0.04354476183652878,
- 0.06321555376052856,
- -0.03672746196389198,
- 0.09698288887739182,
- -0.03964576870203018,
- -0.04219089075922966,
- -0.04254879802465439,
- -0.0062420545145869255,
- 0.011294969357550144,
- -0.015281329862773418,
- 0.11013893783092499,
- 0.016197308897972107,
- -0.018174760043621063,
- -0.037987492978572845,
- 0.005541069433093071,
- 0.008200895972549915,
- -0.12792415916919708,
- 0.0599922277033329,
- -0.03225454315543175,
- 0.008795641362667084,
- -0.038564831018447876,
- -0.008455337025225163,
- -0.0326511412858963,
- 0.04586310312151909,
- -0.10065119713544846,
- -0.024112846702337265,
- 0.11279276758432388,
- 0.02464960515499115,
- 0.03362597897648811,
- -0.044155415147542953,
- -0.0549975223839283,
- -0.008043922483921051,
- -0.08397984504699707,
- -0.08678131550550461,
- -0.023573100566864014,
- -1.4067547127183389e-8,
- -0.03691781312227249,
- -0.011428328230977058,
- 0.01814374141395092,
- 0.022939365357160568,
- -0.0005693995044566691,
- 0.017480604350566864,
- -0.003521926933899522,
- -0.03505478799343109,
- -0.02328404411673546,
- 0.12174095958471298,
- 0.0313093326985836,
- -0.038815051317214966,
- 0.031398478895425797,
- 0.03218626230955124,
- 0.07316615432500839,
- -0.04409192129969597,
- -0.02162027359008789,
- -0.01686766743659973,
- -0.06979866325855255,
- -0.01974857784807682,
- 0.03863834589719772,
- 0.043322183191776276,
- 0.00535121513530612,
- -0.022507639601826668,
- -0.028795819729566574,
- -0.04034911096096039,
- -0.015695899724960327,
- 0.057241711765527725,
- -0.006683662999421358,
- 0.02983185648918152,
- 0.016115311533212662,
- 0.10323034226894379,
- -0.021296750754117966,
- -0.01785583421587944,
- 0.03301466256380081,
- 0.03836972266435623,
- -0.024179531261324883,
- -0.006260736379772425,
- 0.043131694197654724,
- -0.01083888579159975,
- -0.01151969749480486,
- -0.0008447101572528481,
- 0.05000368505716324,
- -0.005862161051481962,
- 0.04676610603928566,
- 0.0019712289795279503,
- -0.06376704573631287,
- -0.01539590209722519,
- -0.0040662046521902084,
- -0.05321421101689339,
- -0.08900260925292969,
- 0.005790567956864834,
- 0.049542296677827835,
- 0.041245557367801666,
- 0.014175430871546268,
- -0.02783789485692978,
- -0.012609951198101044,
- -0.04375851899385452,
- -0.03627154976129532,
- 0.059874527156353,
- 0.03315695747733116,
- 0.06412865966558456,
- -0.059230126440525055,
- -0.04634014144539833
- ]
- },
- {
- "keyword": "duty",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.11927054822444916,
- 0.053639259189367294,
- 0.031295377761125565,
- -0.05308800935745239,
- -0.020076477900147438,
- -0.036567214876413345,
- 0.14545992016792297,
- -0.02191605046391487,
- -0.023183459416031837,
- -0.006303481757640839,
- 0.0181509368121624,
- -0.033241841942071915,
- 0.016970453783869743,
- 0.01597861386835575,
- -0.026562072336673737,
- 0.0034010778181254864,
- 0.024785879999399185,
- -0.0024585165083408356,
- -0.10250996053218842,
- 0.04610816389322281,
- 0.0066640558652579784,
- 0.04036102816462517,
- 0.05099572241306305,
- 0.016621587797999382,
- -0.07313691079616547,
- 0.005502958316355944,
- -0.04970300942659378,
- 0.04176069796085358,
- -0.0015275179175660014,
- -0.11020175367593765,
- 0.012472813948988914,
- 0.03338084742426872,
- 0.05234130099415779,
- 0.004142627120018005,
- -0.06322814524173737,
- 0.056035831570625305,
- 0.04502520337700844,
- -0.044702641665935516,
- 0.011368580162525177,
- -0.01514393463730812,
- -0.016616078093647957,
- -0.06101777032017708,
- -0.04865724593400955,
- 0.04109610617160797,
- 0.02711988426744938,
- 0.05355206876993179,
- 0.06347490102052689,
- -0.04405162110924721,
- 0.09780851751565933,
- 0.07235165685415268,
- 0.005436135455965996,
- -0.02644307352602482,
- -0.07696065306663513,
- 0.02286689355969429,
- 0.062141042202711105,
- -0.032972052693367004,
- 0.0548010990023613,
- -0.055418502539396286,
- 0.0432717464864254,
- -0.054695356637239456,
- -0.06590012460947037,
- -0.00609718170017004,
- -0.05606456845998764,
- 0.022484907880425453,
- 0.02273925580084324,
- -0.056179627776145935,
- 0.03479566052556038,
- -0.0887155532836914,
- -0.09648396074771881,
- -0.015248258598148823,
- -0.013369305990636349,
- 0.04338454082608223,
- 0.02702309563755989,
- 0.009512284770607948,
- 0.03717268258333206,
- -0.014972181059420109,
- -0.007321468088775873,
- -0.060496799647808075,
- 0.05075335130095482,
- -0.07152952253818512,
- 0.04033146798610687,
- 0.07664303481578827,
- -0.021101759746670723,
- 0.04338153079152107,
- -0.010870732367038727,
- -0.04251939803361893,
- 0.02002687379717827,
- 0.01925334334373474,
- 0.07886836677789688,
- 0.03293541446328163,
- -0.040387511253356934,
- 0.008153392001986504,
- 0.050522077828645706,
- 0.0340106263756752,
- -0.11735667288303375,
- 0.012738421559333801,
- 0.027045970782637596,
- 0.015659397467970848,
- -0.10933838039636612,
- 0.2622637450695038,
- 0.05700668320059776,
- -0.021064678207039833,
- -0.08353834599256516,
- -0.06267744302749634,
- -0.02773306891322136,
- 0.022715575993061066,
- -0.09802817553281784,
- 0.08865152299404144,
- -0.058183807879686356,
- -0.04593192785978317,
- -0.0037872069515287876,
- 0.02726641483604908,
- -0.10657104849815369,
- 0.007865547202527523,
- -0.022561857476830482,
- 0.0901215523481369,
- -0.09392748773097992,
- 0.0028110940475016832,
- 0.05292307585477829,
- -0.07214261591434479,
- 0.040395673364400864,
- -0.0013257875107228756,
- 0.02421034500002861,
- -0.04171139746904373,
- -0.09229470044374466,
- -0.07110420614480972,
- 0.09400962293148041,
- -7.202840899979597e-33,
- 0.04889719560742378,
- -0.061141252517700195,
- 0.0033131809905171394,
- 0.01867871917784214,
- 0.039210040122270584,
- 0.029197830706834793,
- 0.04043574258685112,
- 0.00217337254434824,
- -0.008719313889741898,
- 0.05444122850894928,
- -0.05163387209177017,
- 0.06610189378261566,
- -0.01650986261665821,
- -0.06092081591486931,
- 0.044606857001781464,
- 0.03782375529408455,
- 0.005625478457659483,
- 0.030068866908550262,
- 0.05710139498114586,
- 0.01190050970762968,
- -0.004557290580123663,
- -0.041521105915308,
- -0.022015171125531197,
- 0.07468371838331223,
- -0.02400844171643257,
- 0.055334705859422684,
- -0.023376405239105225,
- -0.047392696142196655,
- 0.07222951948642731,
- 0.06565702706575394,
- 0.03396394103765488,
- 0.006269779521971941,
- -0.007323193363845348,
- -0.014993268996477127,
- -0.03510379046201706,
- -0.04460267722606659,
- -0.06367166340351105,
- -0.026139898225665092,
- -0.07729221880435944,
- -0.09442799538373947,
- -0.014516500756144524,
- -0.021778322756290436,
- -0.03570249676704407,
- 0.04661151021718979,
- -0.014409912750124931,
- -0.061231620609760284,
- 0.07504609227180481,
- -0.010100292973220348,
- -0.06408467143774033,
- 0.047876179218292236,
- -0.012397952377796173,
- -0.023749077692627907,
- -0.02449166402220726,
- -0.003558821976184845,
- -0.015640975907444954,
- -0.003384184092283249,
- 0.018852047622203827,
- -0.022671787068247795,
- -0.06751572340726852,
- -0.031109021976590157,
- 0.059289660304784775,
- -0.0228436216711998,
- -0.028758589178323746,
- 0.12098424136638641,
- 0.030507056042551994,
- -0.10703416168689728,
- 0.0114065483212471,
- -0.030159981921315193,
- 0.050642870366573334,
- -0.07853557169437408,
- -0.0183026771992445,
- -0.018211765214800835,
- 0.07405240833759308,
- -0.015278798528015614,
- -0.049535129219293594,
- 0.04416507109999657,
- 0.019501924514770508,
- 0.0014836288755759597,
- -0.006699698977172375,
- -0.018071196973323822,
- -0.056075919419527054,
- -0.032495055347681046,
- 0.003124623093754053,
- -0.01593891531229019,
- 0.06489617377519608,
- 0.014563611708581448,
- 0.009695055894553661,
- -0.1166241392493248,
- 0.028049901127815247,
- 0.01808200217783451,
- -0.12199565023183823,
- 0.04705500975251198,
- 0.014701436273753643,
- -0.0695955827832222,
- -0.010229571722447872,
- 5.832619665129859e-33,
- 0.01941106654703617,
- 0.019306806847453117,
- -0.002567727118730545,
- 0.021791785955429077,
- 0.017976267263293266,
- -0.02302515134215355,
- -0.03472154214978218,
- -0.023587601259350777,
- -0.014807507395744324,
- 0.10796982049942017,
- -0.08240184187889099,
- 0.0029684831388294697,
- 0.031785786151885986,
- 0.02588193118572235,
- 0.02071470394730568,
- -0.019634947180747986,
- 0.04996538162231445,
- 0.005243959371000528,
- -0.04150950163602829,
- -0.011526262387633324,
- -0.0029014982283115387,
- 0.04700441658496857,
- 0.014825250022113323,
- -0.010104019194841385,
- -0.03051871433854103,
- 0.05516377463936806,
- -0.002657730132341385,
- 0.01075535174459219,
- 0.06390292197465897,
- 0.027381235733628273,
- 0.05746041238307953,
- -0.057581160217523575,
- -0.009335603564977646,
- -0.04556478187441826,
- 0.009738956578075886,
- 0.10425575077533722,
- -0.0005584518075920641,
- 0.05467897281050682,
- -0.05068954452872276,
- 0.029047353193163872,
- 0.04556993022561073,
- 0.07300710678100586,
- 0.015740539878606796,
- 0.10110759735107422,
- -0.07602173835039139,
- -0.018397800624370575,
- -0.012751386500895023,
- -0.04160856083035469,
- 0.06872400641441345,
- 0.030004987493157387,
- -0.06712358444929123,
- 0.00032753957202658057,
- -0.02148536592721939,
- -0.014502405188977718,
- -0.04405898600816727,
- 0.015023615211248398,
- -0.06076718494296074,
- 0.00030437344685196877,
- -0.002489126054570079,
- 0.022432303056120872,
- 0.032032787799835205,
- 0.026722576469182968,
- -0.06728244572877884,
- 0.026025094091892242,
- -0.021496614441275597,
- -0.0008132403017953038,
- 0.013308130204677582,
- 0.013168225064873695,
- 0.013603565283119678,
- 0.04762914031744003,
- 0.012509526684880257,
- 0.017427707090973854,
- -0.056209418922662735,
- 0.018007174134254456,
- -0.0463208369910717,
- -0.05413862690329552,
- -0.04649544134736061,
- 0.041865937411785126,
- -0.019570868462324142,
- 0.06155109032988548,
- 0.03256376460194588,
- -0.08899486064910889,
- -0.03244629129767418,
- 0.08842696994543076,
- -0.08726399391889572,
- -0.06736759096384048,
- 0.1212146133184433,
- 0.11387814581394196,
- 0.0271286703646183,
- 0.0029051201418042183,
- 0.03139657527208328,
- 0.024540016427636147,
- -0.0006938048754818738,
- 0.03182836249470711,
- -0.005607331171631813,
- -1.336117705363904e-8,
- -0.039261169731616974,
- 0.07656398415565491,
- 0.01074072252959013,
- 0.026866083964705467,
- 0.02309153974056244,
- -0.038057003170251846,
- 0.012996098957955837,
- -0.03831695392727852,
- 0.03049987182021141,
- 0.03866412863135338,
- 0.020842330530285835,
- -0.021906249225139618,
- 0.0469612181186676,
- 0.003809363814070821,
- 0.08737456053495407,
- 0.01744605042040348,
- -0.022253645583987236,
- 0.007469392381608486,
- -0.05189155414700508,
- -0.001526524662040174,
- -0.02661040611565113,
- -0.017673535272479057,
- 0.0564013347029686,
- 0.02087906002998352,
- -0.03975194692611694,
- 0.050965793430805206,
- -0.0339888259768486,
- 0.10848269611597061,
- 0.056061726063489914,
- 0.07101157307624817,
- 0.032957885414361954,
- 0.061932556331157684,
- -0.029767470434308052,
- -0.06291467696428299,
- -0.019577866420149803,
- -0.009009209461510181,
- -0.03724486753344536,
- -0.017615456134080887,
- 0.023000966757535934,
- 0.016620345413684845,
- -0.006452576722949743,
- 0.06543891131877899,
- 0.1357293277978897,
- 0.012414759956300259,
- -0.019673695787787437,
- 0.04727770388126373,
- -0.0766613557934761,
- -0.03283568471670151,
- -0.07216622680425644,
- -0.058965083211660385,
- -0.01056701596826315,
- -0.021666841581463814,
- -0.016287803649902344,
- 0.11451288312673569,
- -0.030481966212391853,
- 0.10714244097471237,
- 0.019944973289966583,
- -0.007602617144584656,
- -0.05550722777843475,
- 0.055063243955373764,
- 0.14064764976501465,
- 0.021156881004571915,
- 0.003996025770902634,
- 0.007914943620562553
- ]
- },
- {
- "keyword": "work",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.12097833305597305,
- 0.07170498371124268,
- 0.028054706752300262,
- -0.009730786085128784,
- -0.02401994727551937,
- -0.025280296802520752,
- 0.10150923579931259,
- -0.06474213302135468,
- 0.008471711538732052,
- -0.0016364175826311111,
- -0.028079574927687645,
- -0.03170115128159523,
- -0.04029947146773338,
- 0.06210299953818321,
- -0.011984302662312984,
- 0.027040015906095505,
- -0.024332495406270027,
- 0.04807523265480995,
- -0.05367346853017807,
- -0.11982516199350357,
- -0.01801518350839615,
- 0.0013026620727032423,
- -0.031438421458005905,
- 0.009611311368644238,
- -0.0018840382108464837,
- 0.10593852400779724,
- -0.06897180527448654,
- 0.0998571515083313,
- 0.038981493562459946,
- -0.08724187314510345,
- -0.04640117287635803,
- 0.01482411939650774,
- 0.029465658590197563,
- -0.01700637675821781,
- -0.006147393956780434,
- 0.023392805829644203,
- 0.019675860181450844,
- 0.021843232214450836,
- 0.0410887636244297,
- -0.04300503805279732,
- -0.0076105124317109585,
- -0.07895517349243164,
- -0.01896750181913376,
- -0.00523154204711318,
- -0.017082154750823975,
- 0.037937846034765244,
- 0.06218983232975006,
- 0.00012812209024559706,
- 0.06859392672777176,
- 0.01078520156443119,
- -0.003922042436897755,
- -0.02432878315448761,
- 0.023400381207466125,
- -0.011434471234679222,
- 0.03271574154496193,
- 0.031739749014377594,
- -0.025013186037540436,
- -0.04852241650223732,
- 0.017358772456645966,
- -0.06658810377120972,
- 0.10289071500301361,
- -0.015775322914123535,
- -0.07746009528636932,
- 0.02501564472913742,
- 0.07140091806650162,
- 0.02599121257662773,
- -0.012598692439496517,
- -0.019583899527788162,
- -0.08901437371969223,
- -0.02308770641684532,
- 0.044717177748680115,
- -0.0038681551814079285,
- -0.03398022800683975,
- -0.024676257744431496,
- 0.12285526841878891,
- -0.008778519928455353,
- 0.029306484386324883,
- -0.08664072304964066,
- 0.09336119145154953,
- -0.05358695983886719,
- -0.008254718035459518,
- -0.026588894426822662,
- -0.05746444687247276,
- 0.06641626358032227,
- -0.010929953306913376,
- -0.035065844655036926,
- 0.03014141507446766,
- 0.02525067888200283,
- 0.06864698231220245,
- -0.01355078537017107,
- -0.012195571325719357,
- 0.0009169953409582376,
- -0.03914186730980873,
- 0.039175961166620255,
- -0.05659039318561554,
- -0.10513605177402496,
- 0.061772506684064865,
- 0.09375105798244476,
- -0.06584950536489487,
- 0.25725674629211426,
- 0.06261280924081802,
- 0.0021476310212165117,
- 0.05634583160281181,
- -0.00949165504425764,
- -0.02550402656197548,
- 0.03016565553843975,
- -0.06225630268454552,
- 0.11878940463066101,
- -0.019950393587350845,
- -0.0228810366243124,
- -0.08481775224208832,
- 0.05292106792330742,
- -0.08604757487773895,
- 0.10757862776517868,
- -0.016980409622192383,
- 0.030187111347913742,
- -0.06984741240739822,
- 0.03657972440123558,
- -0.08023000508546829,
- 0.05122923105955124,
- 0.035219598561525345,
- 0.05588743835687637,
- 0.016135381534695625,
- -0.007830335758626461,
- -0.0744955986738205,
- -0.09834025055170059,
- 0.06974691152572632,
- -4.76077158995545e-33,
- 0.07604634016752243,
- -0.09432923793792725,
- 0.06522488594055176,
- 0.09982042759656906,
- 0.0352189727127552,
- 0.010768395848572254,
- -0.0003931661485694349,
- 0.03932531923055649,
- 0.05918004736304283,
- 0.061580657958984375,
- -0.026566851884126663,
- 0.035959869623184204,
- 0.003432421712204814,
- 0.03157472610473633,
- 0.04534531757235527,
- -0.013540561310946941,
- 0.03387704864144325,
- 0.02912314049899578,
- -0.09032203257083893,
- 0.018834242597222328,
- -0.013820343650877476,
- -0.04676436632871628,
- -0.01818750984966755,
- 0.04463348165154457,
- -0.0570082850754261,
- -0.0045375460758805275,
- 0.001731920288875699,
- -0.10463763773441315,
- 0.0623156875371933,
- 0.011730125173926353,
- -0.021773532032966614,
- 0.03495160490274429,
- 0.026230355724692345,
- 0.015480631962418556,
- -0.09104184061288834,
- -0.021043162792921066,
- -0.016497088596224785,
- -0.058571092784404755,
- 0.05488506704568863,
- -0.08686263859272003,
- 0.029716698452830315,
- -0.018173005431890488,
- 0.008751317858695984,
- -0.0033911243081092834,
- 0.04655081406235695,
- 0.0904555693268776,
- 0.07320379465818405,
- 0.027532726526260376,
- -0.03298521414399147,
- 0.11910474300384521,
- 0.01989632286131382,
- 0.025918282568454742,
- -0.005198955535888672,
- -0.004275474697351456,
- -0.021716957911849022,
- 0.014857865869998932,
- -0.03353828564286232,
- -0.01757543534040451,
- 0.006510823965072632,
- -0.03325433284044266,
- 0.024659253656864166,
- 0.003862555604428053,
- -0.04262114688754082,
- 0.020195692777633667,
- 0.013614114373922348,
- 0.05701848492026329,
- -0.014732969924807549,
- -0.006311182398349047,
- 0.09435199946165085,
- 0.006371517665684223,
- -0.06486696749925613,
- 0.059235524386167526,
- 0.03715164214372635,
- 0.0040032463148236275,
- 0.018279017880558968,
- 0.07085242122411728,
- 0.041042495518922806,
- -0.09354083240032196,
- -0.061216775327920914,
- 0.021634165197610855,
- 0.07123057544231415,
- 0.004315589088946581,
- 0.06458598375320435,
- 0.023352185264229774,
- 0.1327980011701584,
- 0.04563036933541298,
- -0.018440719693899155,
- -0.06491686403751373,
- 0.026025919243693352,
- 0.07221583276987076,
- -0.04752738028764725,
- 0.015052896924316883,
- 0.019260630011558533,
- 0.04046211391687393,
- 0.028272660449147224,
- 3.9692017756353834e-33,
- -0.024945760145783424,
- 0.010952498763799667,
- -0.02889515832066536,
- 0.024592401459813118,
- 0.02208990789949894,
- -0.03461606800556183,
- -0.008515636436641216,
- -0.07387573271989822,
- -0.016669919714331627,
- 0.11496374011039734,
- -0.06024712696671486,
- -0.05696634575724602,
- 0.00225748959928751,
- 0.0011435509659349918,
- -0.0149735938757658,
- -0.00227463711053133,
- 0.05513492226600647,
- -0.009025204926729202,
- -0.06397097557783127,
- 0.06587480753660202,
- -0.10907766222953796,
- 0.008741146884858608,
- -0.005613131448626518,
- 0.008079134859144688,
- 0.05904242768883705,
- 0.03725665435194969,
- 0.025428086519241333,
- -0.029443761333823204,
- -0.00228996598161757,
- -0.042225711047649384,
- 0.02864593081176281,
- 0.006591679062694311,
- -0.040644802153110504,
- -0.05902888998389244,
- 0.012398744001984596,
- 0.07519558817148209,
- -0.007979124784469604,
- 0.03337109833955765,
- -0.02591175027191639,
- -0.01294220332056284,
- 0.06688991189002991,
- -0.012362907640635967,
- -0.004087687470018864,
- 0.03830739110708237,
- -0.033646613359451294,
- -0.04654935002326965,
- 0.020849844440817833,
- 0.0016009424580261111,
- -0.05963635444641113,
- 0.024488674476742744,
- 0.021665392443537712,
- -0.04824787378311157,
- -0.010795347392559052,
- -0.022880516946315765,
- -0.010570191778242588,
- -0.04528849199414253,
- -0.06293508410453796,
- -0.09849188476800919,
- -0.014380327425897121,
- 0.04234229400753975,
- -0.051849301904439926,
- 0.013467041775584221,
- 0.019475217908620834,
- 0.08671560138463974,
- 0.00020574666268657893,
- -0.06995069980621338,
- -0.009243077598512173,
- -0.02118677645921707,
- 0.0871191993355751,
- 0.011900607496500015,
- -0.0041563925333321095,
- 0.029383376240730286,
- -0.00796916801482439,
- 0.015119384042918682,
- -0.02920810505747795,
- -0.02863975241780281,
- -0.0266531091183424,
- -0.006470475811511278,
- 0.029405266046524048,
- -0.024478444829583168,
- -0.03734644129872322,
- -0.05042349174618721,
- 0.023372160270810127,
- 0.007810419891029596,
- -0.05606576055288315,
- -0.024177074432373047,
- 0.008123581297695637,
- 0.009183702990412712,
- -0.001853309920988977,
- -0.08138389140367508,
- -0.03985990583896637,
- 0.03640308231115341,
- 0.025203455239534378,
- 0.03647517412900925,
- 0.02248600870370865,
- -1.2639342017450872e-8,
- 0.02880830317735672,
- -0.018965665251016617,
- -0.019231660291552544,
- -0.09342669695615768,
- -0.009548453614115715,
- 0.018364714458584785,
- -0.003705010050907731,
- -0.0533878467977047,
- 0.08578117191791534,
- 0.02389668859541416,
- 0.02311595529317856,
- -0.024213559925556183,
- 0.06802884489297867,
- 0.0725017860531807,
- 0.07958976179361343,
- -0.044910676777362823,
- 0.04349614679813385,
- -0.023621704429388046,
- -0.0672340989112854,
- -0.04138823226094246,
- -0.0441451333463192,
- -0.022370006889104843,
- 0.038224704563617706,
- 0.015912532806396484,
- -0.027522454038262367,
- -0.0353579968214035,
- -0.010203077457845211,
- 0.1266770362854004,
- 0.017157353460788727,
- 0.01890743523836136,
- 0.01935085840523243,
- 0.07483226805925369,
- -0.08459115773439407,
- -0.044139161705970764,
- -0.034199830144643784,
- -0.12384970486164093,
- 0.05433792993426323,
- -0.05282899737358093,
- 0.00448254169896245,
- -0.016640493646264076,
- -0.010182078927755356,
- 0.000927039363887161,
- 0.07608792930841446,
- -0.04232921451330185,
- -0.07262076437473297,
- -0.02493107318878174,
- -0.04216989502310753,
- -0.010478287003934383,
- -0.05110441520810127,
- -0.07567375898361206,
- 0.04300009086728096,
- -0.03467849642038345,
- 0.07887201756238937,
- 0.055765312165021896,
- 0.007243755739182234,
- -0.008955651894211769,
- 0.01634771190583706,
- 0.05208390951156616,
- -0.07342842221260071,
- 0.06362896412611008,
- 0.14594845473766327,
- -0.016136620193719864,
- -0.008337611332535744,
- 0.06809518486261368
- ]
- },
- {
- "keyword": "ticket",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.02039020135998726,
- 0.08056765794754028,
- -0.004395534750074148,
- -0.012460368685424328,
- -0.005703294649720192,
- 0.03321375697851181,
- 0.12492894381284714,
- -0.008346577174961567,
- -0.005924907047301531,
- 0.03983638808131218,
- -0.046764351427555084,
- -0.06710571050643921,
- 0.04022775962948799,
- 0.034565363079309464,
- -0.036088354885578156,
- -0.04102891683578491,
- 0.011198742315173149,
- -0.06879450380802155,
- -0.1152939572930336,
- -0.010627040639519691,
- -0.0658734142780304,
- 0.07302547991275787,
- -0.06239298731088638,
- 0.0459512323141098,
- -0.02555995248258114,
- -0.0026582321152091026,
- -0.019328149035573006,
- 0.03171222656965256,
- 0.006602942943572998,
- -0.07613971829414368,
- -0.004920725245028734,
- -0.02043827436864376,
- -0.028747882694005966,
- 0.012885269708931446,
- -0.027299789711833,
- -0.04218045994639397,
- 0.015832951292395592,
- -0.042802780866622925,
- 0.018866632133722305,
- -0.022296620532870293,
- 0.020698262378573418,
- -0.06835507601499557,
- -0.029631584882736206,
- 0.04055425897240639,
- 0.06590357422828674,
- 0.06682984530925751,
- 0.02511982060968876,
- 0.023625263944268227,
- 0.10035929828882217,
- -0.01140679232776165,
- 0.03487570583820343,
- -0.0017520845867693424,
- 0.023555783554911613,
- -0.012767068110406399,
- -0.01933913864195347,
- 0.05098724365234375,
- -0.0011842245003208518,
- 0.044781506061553955,
- -0.0012563442578539252,
- 0.006288354285061359,
- 0.037988029420375824,
- -0.08596359938383102,
- -0.05112013593316078,
- 0.003663002047687769,
- -0.10153170675039291,
- -0.032808996737003326,
- -0.000203429619432427,
- 0.030473742634058,
- 0.06718329340219498,
- 0.018502214923501015,
- 0.04319293797016144,
- 0.06000753119587898,
- 0.07558636367321014,
- -0.011202597059309483,
- 0.051188476383686066,
- 0.05679306760430336,
- -0.03286365419626236,
- -0.05619518831372261,
- 0.04676381126046181,
- -0.007067582104355097,
- -0.04122030362486839,
- -0.08681609481573105,
- -0.026879826560616493,
- -0.0013821761822327971,
- 0.0861278772354126,
- 0.018950438126921654,
- -0.022912483662366867,
- 0.08663532882928848,
- -0.06370588392019272,
- 0.017040954902768135,
- 0.010487166233360767,
- -0.05196625739336014,
- 0.07035032659769058,
- 0.019380079582333565,
- -0.16502931714057922,
- 0.043847840279340744,
- -0.0028960872441530228,
- -0.025053389370441437,
- -0.003209480084478855,
- 0.2380218207836151,
- 0.02113875187933445,
- 0.06844152510166168,
- -0.036217667162418365,
- 0.04214631766080856,
- 0.056756775826215744,
- 0.0057405224069952965,
- -0.014337840490043163,
- 0.08070039004087448,
- 0.06416206061840057,
- -0.005159423220902681,
- -0.015668591484427452,
- 0.002623392501845956,
- 0.08263341337442398,
- 0.022295227274298668,
- -0.07874824106693268,
- 0.08897896856069565,
- -0.05948558449745178,
- 0.012364688329398632,
- 0.012200706638395786,
- -0.0910947322845459,
- -0.011315209791064262,
- 0.00582682341337204,
- 0.008649105206131935,
- -0.011938093230128288,
- -0.09740143269300461,
- -0.11906899511814117,
- 0.01629915088415146,
- -5.517787013149126e-33,
- -0.003377022920176387,
- -0.06995527446269989,
- -0.04693065211176872,
- -0.08291587233543396,
- 0.048311930149793625,
- 0.03159679099917412,
- -0.049059562385082245,
- -0.019184743985533714,
- -0.04667530208826065,
- 0.07624467462301254,
- -0.05416543036699295,
- -0.011404622346162796,
- 0.035452209413051605,
- -0.06131253018975258,
- 0.08270642906427383,
- 0.015068133361637592,
- -0.006969507317990065,
- 0.040338270366191864,
- -0.05315535143017769,
- -0.02591373771429062,
- -0.0829472616314888,
- 0.007714028004556894,
- 0.0031518852338194847,
- 0.052549153566360474,
- 0.00578893581405282,
- 0.030789902433753014,
- 0.00375323835760355,
- -0.07950980216264725,
- 0.1328224539756775,
- -0.005141562782227993,
- -0.022432634606957436,
- 0.08299468457698822,
- -0.051170527935028076,
- 0.015880314633250237,
- 0.04090698063373566,
- 0.03741195797920227,
- -0.01243965420871973,
- -0.06007811054587364,
- 0.024568459019064903,
- -0.09731531143188477,
- -0.09930328279733658,
- -0.03484325855970383,
- -0.10532262921333313,
- 0.03457511216402054,
- -0.027378108352422714,
- 0.04393631964921951,
- 0.016064979135990143,
- -0.009157322347164154,
- 0.052703607827425,
- 0.01735147275030613,
- -0.04765138402581215,
- -0.0016962334048002958,
- -0.03418545797467232,
- -0.050150834023952484,
- -0.059132639318704605,
- 0.00927232950925827,
- 0.019655361771583557,
- -0.002419906435534358,
- -0.015681589022278786,
- -0.02867700904607773,
- -0.0029822769574820995,
- 0.009906350634992123,
- -0.011532491073012352,
- 0.01930755004286766,
- -0.024279553443193436,
- -0.05140519514679909,
- -0.0189217422157526,
- -0.0748993456363678,
- 0.018338104709982872,
- -0.029361076653003693,
- 0.09510868042707443,
- 0.0320943184196949,
- 0.025855736806988716,
- 0.016499226912856102,
- 0.044453803449869156,
- -0.000162686308613047,
- 0.0283905491232872,
- 0.039860617369413376,
- 0.0020155617967247963,
- 0.023299187421798706,
- -0.06523014605045319,
- 0.005643708165735006,
- -0.03804639354348183,
- 0.025832518935203552,
- 0.1632540374994278,
- 0.11590545624494553,
- -0.06516154855489731,
- -0.05833768472075462,
- -0.017552584409713745,
- -0.053050439804792404,
- -0.01850065402686596,
- -0.023815246298909187,
- 0.06624863296747208,
- 0.05478847399353981,
- 0.016111107543110847,
- 5.316962252176785e-33,
- -0.016579631716012955,
- 0.024275651201605797,
- -0.02473335526883602,
- 0.008503228425979614,
- 0.044402506202459335,
- 0.003101383801549673,
- 0.0029161858838051558,
- 0.045815154910087585,
- 0.041374530643224716,
- 0.03875536099076271,
- -0.06387931853532791,
- 0.0002517102693673223,
- 0.1156965047121048,
- 0.026011575013399124,
- 0.07645616680383682,
- -0.07528819888830185,
- 0.09606395661830902,
- 0.02876071259379387,
- 0.018565628677606583,
- 0.026809807866811752,
- -0.07057861983776093,
- -0.07557843625545502,
- -0.08658957481384277,
- -0.03353486210107803,
- -0.041794683784246445,
- 0.059170812368392944,
- 0.11535553634166718,
- 0.04859095811843872,
- -0.1296575665473938,
- 0.0022008311934769154,
- 0.07409793138504028,
- -0.05036434903740883,
- -0.09282547235488892,
- 0.002091699279844761,
- 0.002827319083735347,
- 0.04410053417086601,
- 0.13685153424739838,
- 0.027487032115459442,
- -0.039958156645298004,
- 0.03496517241001129,
- -0.008483531884849072,
- -0.006810161750763655,
- 0.11740925908088684,
- 0.10944519937038422,
- -0.012392678298056126,
- 0.06085551530122757,
- -0.02527107484638691,
- 0.037453021854162216,
- 0.032551735639572144,
- 0.0322989858686924,
- -0.06635543704032898,
- 0.009578105062246323,
- 0.03051822818815708,
- 0.04102879390120506,
- -0.04443052038550377,
- 0.014977999031543732,
- -0.0342610701918602,
- 0.03953002020716667,
- 0.03125348687171936,
- -0.020892618224024773,
- 0.012605204246938229,
- 0.07400621473789215,
- -0.04693135991692543,
- 0.10711009800434113,
- -0.044590700417757034,
- 0.011939620599150658,
- -0.0477072149515152,
- -0.07854054868221283,
- -0.008001480251550674,
- 0.06160698086023331,
- -0.08548566699028015,
- 0.020536042749881744,
- -0.027250144630670547,
- 0.05243389680981636,
- 0.015707720071077347,
- -0.03734753280878067,
- -0.04981661215424538,
- 0.08015661686658859,
- -0.02620762400329113,
- -0.02922710031270981,
- 0.02206352725625038,
- -0.03104153275489807,
- -0.006855236366391182,
- 0.014309334568679333,
- 0.019636133685708046,
- -0.04479435458779335,
- 0.05164065584540367,
- 0.005886812228709459,
- 0.010205533355474472,
- 0.017408275976777077,
- 0.05313495174050331,
- -0.003333571832627058,
- 0.013206901028752327,
- -0.02411019243299961,
- -0.03761376440525055,
- -1.1501912311473461e-8,
- -0.04335131123661995,
- 0.06371846050024033,
- -0.06050838530063629,
- -0.05445707589387894,
- 0.02061900869011879,
- -0.003629605518653989,
- -0.10587061941623688,
- 0.011244712397456169,
- -0.026826078072190285,
- -0.018249059095978737,
- 0.015227255411446095,
- -0.003034272463992238,
- -0.03823728486895561,
- 0.002358336467295885,
- -0.008333219215273857,
- 0.028703756630420685,
- -0.024185093119740486,
- 0.006066962145268917,
- -0.05900438874959946,
- 0.003063174430280924,
- -0.008062156848609447,
- 0.0006667478592135012,
- 0.020459696650505066,
- 0.010287567041814327,
- -0.017987847328186035,
- 0.02764149010181427,
- 0.021452324464917183,
- 0.11529789865016937,
- 0.054528843611478806,
- -0.03979487344622612,
- -0.04531775042414665,
- 0.08244660496711731,
- 0.024418191984295845,
- -0.028779366984963417,
- 0.04051829129457474,
- -0.08298666775226593,
- -0.0482708103954792,
- -0.04429544880986214,
- 0.03975457698106766,
- 0.040786612778902054,
- -0.025623835623264313,
- -0.04183471202850342,
- 0.04992648959159851,
- 0.028180019930005074,
- 0.028072314336895943,
- -0.0034540409687906504,
- -0.02075362205505371,
- 0.03243521228432655,
- -0.013331019319593906,
- -0.051006168127059937,
- 0.018885722383856773,
- -0.014265108853578568,
- -0.02369648404419422,
- 0.05365746095776558,
- 0.011924602091312408,
- -0.0031928005628287792,
- 0.05719573050737381,
- -0.017075929790735245,
- -0.05773966759443283,
- 0.07998770475387573,
- 0.0703013464808464,
- 0.01763949543237686,
- 0.0378282330930233,
- 0.006690981797873974
- ]
- },
- {
- "keyword": "issue",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04339371994137764,
- 0.03271777927875519,
- -0.012246157974004745,
- -0.0011468695010989904,
- -0.05218828096985817,
- -0.015780098736286163,
- 0.08013103157281876,
- 0.018355082720518112,
- -0.07352877408266068,
- 0.0029844571836292744,
- 0.0039049729239195585,
- 0.053804539144039154,
- -0.025940800085663795,
- 0.047032058238983154,
- 0.050642676651477814,
- 0.034155167639255524,
- 0.022815072908997536,
- -0.06164059415459633,
- -0.10951318591833115,
- 0.07054489105939865,
- -0.13512423634529114,
- -0.028841082006692886,
- -0.021278634667396545,
- 0.0635422095656395,
- -0.049245525151491165,
- -0.09687284380197525,
- -0.054651763290166855,
- -0.0020163608714938164,
- 0.10891236364841461,
- -0.07368220388889313,
- 0.01790381222963333,
- 0.05564101040363312,
- 0.0006597652682103217,
- -0.041083045303821564,
- -0.03458055108785629,
- 0.048229753971099854,
- 0.0028471823316067457,
- 0.035441454499959946,
- 0.023973025381565094,
- -0.05760892108082771,
- 0.02520282007753849,
- -0.07636924088001251,
- 0.0011483700945973396,
- -0.03897442668676376,
- -0.01738586835563183,
- -0.02886343188583851,
- 0.07834664732217789,
- 0.030410900712013245,
- 0.05787064880132675,
- 0.027234835550189018,
- -0.025102872401475906,
- -0.028118086978793144,
- 0.0908607468008995,
- -0.027990290895104408,
- 0.00045487910392694175,
- -0.048845790326595306,
- -0.0430879183113575,
- 0.049349717795848846,
- 0.03680546581745148,
- -0.007678491063416004,
- 0.0992666706442833,
- 0.01967131532728672,
- -0.0962880551815033,
- 0.05429327115416527,
- -0.007493313867598772,
- 0.02474978379905224,
- -0.007655400317162275,
- -0.032011955976486206,
- -0.08105364441871643,
- -0.02761087380349636,
- 0.032605137676000595,
- 0.06884009391069412,
- -0.07939273118972778,
- 0.018896624445915222,
- 0.05224150791764259,
- 0.022536497563123703,
- -0.027997322380542755,
- -0.02454313263297081,
- 0.11082188040018082,
- 0.015164708718657494,
- 0.016720136627554893,
- -0.024682091549038887,
- -0.05556963384151459,
- 0.049017902463674545,
- 0.06950805336236954,
- -0.010015253908932209,
- 0.011876001954078674,
- -0.0193179938942194,
- -0.06951124966144562,
- 0.027208784595131874,
- 0.006304965354502201,
- -0.005718275438994169,
- 0.11947190761566162,
- 0.02162761799991131,
- -0.00875316746532917,
- -0.018474020063877106,
- 0.06984302401542664,
- -0.0017533337231725454,
- -0.08900430798530579,
- 0.27149778604507446,
- -0.04308149963617325,
- 0.04941616579890251,
- 0.003688381751999259,
- 0.04737542197108269,
- -0.03309668228030205,
- -0.002619495615363121,
- -0.012050830759108067,
- -0.023988846689462662,
- -0.01693832315504551,
- -0.017209311947226524,
- 0.00858111958950758,
- -0.02994140051305294,
- -0.06241203844547272,
- 0.04435238987207413,
- 0.06610727310180664,
- -0.07315851002931595,
- -0.01289143692702055,
- 0.018948465585708618,
- 0.013565219938755035,
- -0.011809785850346088,
- -0.04487909376621246,
- -0.0410461351275444,
- -0.04428160935640335,
- -0.029884081333875656,
- -0.031089074909687042,
- -0.10783368349075317,
- 0.10771399736404419,
- -4.178849356394615e-33,
- -0.02055228501558304,
- -0.07040809094905853,
- -0.04180245101451874,
- -0.01349832396954298,
- 0.03394019231200218,
- 0.008258231915533543,
- -0.014797821640968323,
- 0.006920177489519119,
- -0.0870981514453888,
- 0.04323474317789078,
- -0.022200604900717735,
- -0.041979722678661346,
- -0.015619944781064987,
- -0.06873558461666107,
- 0.09825941175222397,
- -0.03000221773982048,
- 0.06843540817499161,
- 0.08112832903862,
- -0.08503600209951401,
- 0.018835028633475304,
- -0.02573743276298046,
- 0.005464503541588783,
- -0.010275033302605152,
- 0.09924577176570892,
- -0.035784054547548294,
- 0.06606405228376389,
- 0.031646981835365295,
- -0.007650723215192556,
- -0.024443022906780243,
- 0.012189512141048908,
- -0.020006731152534485,
- 0.007936837151646614,
- 0.041169725358486176,
- -0.014680137857794762,
- -0.004740532487630844,
- 0.05429321900010109,
- 0.13496902585029602,
- -0.015606043860316277,
- -0.009387093596160412,
- -0.029277855530381203,
- -0.0782364159822464,
- 0.01463296264410019,
- -0.04940629377961159,
- 0.03542178124189377,
- 0.04044845327734947,
- 0.08117149025201797,
- 0.0467303991317749,
- 0.0251499954611063,
- -0.0013215577928349376,
- 0.1353314071893692,
- -0.06958132982254028,
- 0.032651592046022415,
- -0.0371653251349926,
- -0.012849617749452591,
- -0.011422872543334961,
- -0.013239036314189434,
- -0.017603561282157898,
- -0.04045746102929115,
- 0.03600118309259415,
- -0.0031404506880789995,
- 0.13961195945739746,
- 0.05030536651611328,
- -0.005181906744837761,
- -0.10686761885881424,
- -0.001509172492660582,
- -0.01890759915113449,
- 0.04698805883526802,
- -0.009334174916148186,
- 0.01848628558218479,
- -0.03109804540872574,
- -0.0367649607360363,
- -0.017545504495501518,
- 0.12207777798175812,
- -0.04560619592666626,
- -0.0385613739490509,
- -0.030736373737454414,
- -0.008989343419671059,
- 0.038009222596883774,
- -0.0233005303889513,
- 0.020470520481467247,
- 0.00039422206464223564,
- -0.023953596130013466,
- 0.02437441051006317,
- -0.002071336144581437,
- -0.01950157806277275,
- 0.05406529828906059,
- 0.06063732132315636,
- 0.01690935157239437,
- 0.0460057407617569,
- 0.06215817853808403,
- -0.003568041604012251,
- 0.03800411522388458,
- 0.036716144531965256,
- 0.05187394842505455,
- -0.033569734543561935,
- 4.485255183247891e-33,
- -0.1683834046125412,
- -0.03498972952365875,
- -0.023509355261921883,
- 0.015269451774656773,
- 0.047686997801065445,
- -0.03282913193106651,
- 0.06575635820627213,
- 0.0793774425983429,
- 0.01991487853229046,
- 0.021501509472727776,
- -0.08718840777873993,
- -0.003785745706409216,
- 0.025784648954868317,
- 0.025613149628043175,
- -0.01068884041160345,
- 0.006288532633334398,
- 0.03388567268848419,
- -0.016960812732577324,
- -0.014167006127536297,
- 0.02442317269742489,
- -0.06625017523765564,
- -0.04335634782910347,
- -0.0024381782859563828,
- 0.00063866819255054,
- -0.07076761871576309,
- 0.08216693252325058,
- 0.05548332631587982,
- -0.018330460414290428,
- 0.03440079465508461,
- -0.039041075855493546,
- 0.13489319384098053,
- -0.041076913475990295,
- -0.05715671926736832,
- 0.05622480437159538,
- 0.013127312995493412,
- 0.08216194063425064,
- -0.041200920939445496,
- -0.04349707067012787,
- 0.033269356936216354,
- -0.005565511528402567,
- 0.10760585963726044,
- 0.01172859501093626,
- -0.05019615218043327,
- 0.13675987720489502,
- 0.03456465154886246,
- 0.02691265195608139,
- -0.0009914186084643006,
- 0.00985762383788824,
- 0.05243614315986633,
- 0.057091549038887024,
- -0.043444763869047165,
- -0.025321511551737785,
- 0.036667317152023315,
- -0.0947067141532898,
- -0.011226917617022991,
- 0.08095651865005493,
- 0.04984835907816887,
- 0.06458207219839096,
- 0.04201379418373108,
- 0.005006861872971058,
- 0.01671898551285267,
- 0.054366882890462875,
- -0.02719021961092949,
- -0.0631028488278389,
- 0.05758430063724518,
- 0.004928655922412872,
- -0.004405560903251171,
- 0.015623560175299644,
- 0.03394012153148651,
- 0.010812261141836643,
- -0.07094651460647583,
- -0.05309206619858742,
- -0.039960961788892746,
- -0.07104913145303726,
- -0.015909584239125252,
- -0.012237777933478355,
- -0.07449577748775482,
- 0.04410189390182495,
- -0.025948328897356987,
- 0.06167787313461304,
- -0.020563019439578056,
- -0.011847596615552902,
- 0.013996431604027748,
- 0.011001684702932835,
- -0.03390898182988167,
- -0.03450612723827362,
- 0.07542072981595993,
- 0.0040238699875772,
- 0.0036674123257398605,
- -0.09410728514194489,
- 0.009460036642849445,
- -0.03139731287956238,
- -0.06571360677480698,
- 0.03128358721733093,
- 0.010220280848443508,
- -1.4051078522925309e-8,
- -0.02265053242444992,
- -0.03283213824033737,
- -0.020756451413035393,
- -0.005038623232394457,
- 0.06924088299274445,
- 0.008454471826553345,
- -0.022546106949448586,
- 0.01749766245484352,
- -0.029411572962999344,
- 0.0504516065120697,
- -0.013861064799129963,
- 0.0033821386750787497,
- 0.013520805165171623,
- 0.03545007109642029,
- 0.008587967604398727,
- -0.11507043987512589,
- -0.10326890647411346,
- 0.004822331480681896,
- -0.09352445602416992,
- -0.000390680885175243,
- -0.055080194026231766,
- -0.006914730649441481,
- 0.05070844292640686,
- -0.05927392467856407,
- -0.01675734855234623,
- -0.03019271418452263,
- -0.005938285496085882,
- 0.07927737385034561,
- 0.03976140171289444,
- -0.042324233800172806,
- 0.01058377604931593,
- 0.04495619609951973,
- 0.04357030987739563,
- -0.006874044891446829,
- 0.024718936532735825,
- -0.033750686794519424,
- -0.03081659972667694,
- 0.0064528994262218475,
- 0.016142310574650764,
- -0.057775214314460754,
- -0.029243698343634605,
- -0.044627461582422256,
- -0.0203203447163105,
- -0.020344430580735207,
- -0.05790645256638527,
- 0.030725136399269104,
- -0.02744794450700283,
- 0.028059232980012894,
- 0.04659981653094292,
- 0.010265287943184376,
- -0.05968174338340759,
- -0.010486249811947346,
- 0.005187865346670151,
- 0.021390317007899284,
- 0.09602523595094681,
- 0.03950278088450432,
- 0.015754543244838715,
- -0.040847525000572205,
- 0.023564886301755905,
- 0.03790424391627312,
- 0.12832829356193542,
- -0.005911184474825859,
- 0.016365624964237213,
- 0.011309034191071987
- ]
- },
- {
- "keyword": "bug",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03261685371398926,
- 0.0034590938594192266,
- 0.013628319837152958,
- 0.062228407710790634,
- -0.005212752614170313,
- -0.02317756973206997,
- 0.10308481752872467,
- -0.015961427241563797,
- -0.0628407821059227,
- -0.016373055055737495,
- 0.0645492896437645,
- 0.005945122335106134,
- 0.002035557059571147,
- 0.005184351932257414,
- -0.028896182775497437,
- 0.009377713315188885,
- -0.010286432690918446,
- -0.05271359533071518,
- -0.10622324794530869,
- -0.05345096066594124,
- -0.11487813293933868,
- 0.009405300952494144,
- 0.03387998789548874,
- 0.022263461723923683,
- 0.0119851715862751,
- -0.02207791991531849,
- -0.0816507413983345,
- 0.0027386366855353117,
- 0.060524385422468185,
- -0.12433567643165588,
- 0.012461239472031593,
- 0.07679590582847595,
- -0.025384794920682907,
- -0.06900997459888458,
- 0.009088442660868168,
- 0.01335122250020504,
- -0.04711553454399109,
- 0.03129446879029274,
- 0.020428946241736412,
- 0.0012761810794472694,
- -0.010811292566359043,
- 0.001419809996150434,
- -0.04737355560064316,
- -0.0033907874021679163,
- -0.0051053715869784355,
- -0.032557468861341476,
- -0.009383496828377247,
- 0.048282090574502945,
- 0.08081113547086716,
- 0.027874747291207314,
- -0.002822515554726124,
- 0.016829244792461395,
- 0.0003274274058640003,
- 0.0040775868110358715,
- 0.0059245373122394085,
- 0.033047474920749664,
- -0.004127764608711004,
- 0.020916424691677094,
- 0.030204204842448235,
- 0.05441008880734444,
- 0.08555732667446136,
- 0.0030225187074393034,
- -0.046585287898778915,
- 0.04028240218758583,
- 0.02484600618481636,
- -0.003712782170623541,
- -0.006646650843322277,
- -0.07314241677522659,
- -0.08042965829372406,
- -0.10786232352256775,
- -0.00846160389482975,
- 0.05896884575486183,
- -0.08916977047920227,
- 0.11861579865217209,
- 0.07632964849472046,
- 0.018720727413892746,
- -0.02932361140847206,
- -0.02192281000316143,
- 0.07879688590765,
- -0.0132713308557868,
- -0.034792207181453705,
- -0.023097943514585495,
- -0.012524142861366272,
- -0.01617865264415741,
- 0.12220057100057602,
- 0.07652221620082855,
- 0.044720880687236786,
- 0.0360773466527462,
- -0.0262653436511755,
- 0.038725703954696655,
- -0.010815940797328949,
- -0.019056694582104683,
- 0.07803693413734436,
- 0.049973707646131516,
- -0.0830216258764267,
- -0.001447678660042584,
- 0.02188301272690296,
- 0.03168364614248276,
- -0.07619810849428177,
- 0.29094770550727844,
- -0.035592708736658096,
- -0.04036685824394226,
- 0.03904826194047928,
- 0.03634907305240631,
- 0.003987487871199846,
- -0.022378945723176003,
- 0.027442319318652153,
- -0.030411384999752045,
- -0.017888464033603668,
- -0.03587305173277855,
- -0.0063465796411037445,
- -0.0005516420351341367,
- 0.031121881678700447,
- 0.013659574091434479,
- -0.05510362982749939,
- -0.07395084202289581,
- -0.0650353878736496,
- 0.007432141806930304,
- 0.04824018105864525,
- -0.0017918202793225646,
- 0.062316782772541046,
- -0.04225757345557213,
- -0.044475533068180084,
- -0.04716099426150322,
- -0.012056967243552208,
- -0.03347809985280037,
- 0.052282415330410004,
- -5.412565575071146e-33,
- -0.015016901306807995,
- -0.04607053101062775,
- 0.02104346454143524,
- -0.031017251312732697,
- 0.039357297122478485,
- -0.04263624921441078,
- -0.04275432601571083,
- 0.03411724418401718,
- -0.012524552643299103,
- -0.010165060870349407,
- 0.024593668058514595,
- -0.11285993456840515,
- 0.0433683767914772,
- -0.042987123131752014,
- 0.036080148071050644,
- 0.030930496752262115,
- 0.1170746237039566,
- 0.00982667412608862,
- -0.022361967712640762,
- -0.01708158291876316,
- 0.02905268594622612,
- -0.01091424748301506,
- -0.030553782358765602,
- -0.029910316690802574,
- -0.011609679087996483,
- 0.1306115835905075,
- -0.04397834092378616,
- -0.041798871010541916,
- -0.016730735078454018,
- 0.06069997698068619,
- -0.04973241314291954,
- 0.013477051630616188,
- 0.025642940774559975,
- 0.044893551617860794,
- 0.018326811492443085,
- 0.03389730304479599,
- 0.039627060294151306,
- -0.013023633509874344,
- -0.03580280393362045,
- -0.07105451077222824,
- -0.07963080704212189,
- -0.03078768588602543,
- -0.07204224914312363,
- -0.008680815808475018,
- 0.044821836054325104,
- -0.04148256033658981,
- 0.0333930104970932,
- 0.06607452034950256,
- -0.0007935904432088137,
- 0.03872144967317581,
- 0.016194498166441917,
- 0.03781462088227272,
- -0.002475879853591323,
- -0.013191631995141506,
- 0.02107464149594307,
- -0.021480005234479904,
- 0.04006652534008026,
- -0.015345824882388115,
- -0.039410922676324844,
- 0.06708816438913345,
- 0.01632857322692871,
- 0.005422553513199091,
- 0.0019470403203740716,
- -0.058551620692014694,
- 0.008518381975591183,
- 0.03226497024297714,
- 0.014692608267068863,
- -0.05672725290060043,
- 0.05216860771179199,
- -0.04133342206478119,
- 0.02142387069761753,
- -0.03128938004374504,
- 0.030034953728318214,
- 0.07653854787349701,
- -0.060033224523067474,
- -0.05450011044740677,
- 0.027370868250727654,
- 0.004105525091290474,
- -0.008014037273824215,
- -0.05921056866645813,
- -0.053983259946107864,
- -0.0505603589117527,
- 0.0589698888361454,
- -0.004038437735289335,
- -0.04261292889714241,
- 0.04510261118412018,
- 0.03071979433298111,
- -0.011256922967731953,
- -0.0422351211309433,
- 0.06406079232692719,
- 0.03175371140241623,
- 0.013205266557633877,
- 0.054372843354940414,
- 0.0521591380238533,
- -0.04499993100762367,
- 4.3082727537880876e-33,
- -0.1644717901945114,
- -0.011081724427640438,
- -0.11500496417284012,
- -0.005047729704529047,
- 0.024332700297236443,
- 0.004179017152637243,
- 0.0449465848505497,
- 0.15424519777297974,
- -0.0755218118429184,
- 0.03827589377760887,
- -0.023195091634988785,
- 0.047996193170547485,
- -0.03867775574326515,
- 0.06180749833583832,
- 0.10957576334476471,
- 0.018384089693427086,
- 0.07624565064907074,
- 0.0052009751088917255,
- -0.02446972206234932,
- 0.034335456788539886,
- -0.0475279875099659,
- -0.05762016773223877,
- -0.0021355790086090565,
- -0.04912856966257095,
- -0.053685467690229416,
- 0.05440161004662514,
- 0.04948465898633003,
- 0.04898209869861603,
- 0.05185053125023842,
- -0.02394620142877102,
- 0.10067744553089142,
- 0.02939014323055744,
- -0.09525685757398605,
- 0.0527212880551815,
- 0.03937936946749687,
- 0.03853670880198479,
- -0.0772257000207901,
- -0.04013630375266075,
- 0.03578033670783043,
- 0.055028095841407776,
- 0.056378744542598724,
- 0.03773893415927887,
- -0.005911994259804487,
- 0.04765281826257706,
- 0.028393058106303215,
- 0.016001207754015923,
- 0.013377738185226917,
- -0.002379071433097124,
- 0.08980195969343185,
- 0.009569140151143074,
- 0.010668233968317509,
- -0.033148039132356644,
- 0.05800585448741913,
- -0.025841999799013138,
- -0.03519011288881302,
- 0.054525431245565414,
- -0.021387334913015366,
- 0.014442113228142262,
- 0.06141795590519905,
- -0.06715801358222961,
- 0.014858967624604702,
- 0.03693447262048721,
- -0.0974259227514267,
- -0.05950786918401718,
- 0.014856822788715363,
- 0.0250554159283638,
- 0.005594649817794561,
- 0.0622214712202549,
- 0.008117112331092358,
- -0.022481262683868408,
- -0.0047872792929410934,
- -0.007480391301214695,
- 0.014686641283333302,
- -0.10613638907670975,
- 0.006622753106057644,
- 0.03319994732737541,
- -0.056913647800683975,
- 0.019486088305711746,
- -0.047216642647981644,
- 0.011104324832558632,
- -0.04450235515832901,
- -0.030745474621653557,
- -0.03487919643521309,
- -0.020923318341374397,
- 0.025534436106681824,
- -0.057865966111421585,
- -0.04484925419092178,
- 0.06538830697536469,
- -0.010656912811100483,
- 0.003087977645918727,
- 0.02557404711842537,
- 0.03832614794373512,
- -0.013680064119398594,
- 0.08842495083808899,
- -0.01153386477380991,
- -1.4602707487654243e-8,
- -0.024309327825903893,
- 0.01250077411532402,
- -0.07278311997652054,
- 0.03132574260234833,
- 0.07820328325033188,
- -0.10053130984306335,
- -0.023032132536172867,
- 0.007980983704328537,
- -0.017298735678195953,
- 0.010409396141767502,
- -0.04164808243513107,
- -0.017808720469474792,
- 0.09566698223352432,
- 0.04099569097161293,
- 0.02589869499206543,
- -0.12207278609275818,
- -0.14028093218803406,
- 0.02522089332342148,
- -0.061280619353055954,
- -0.05893246829509735,
- -0.09223320335149765,
- 0.03808441013097763,
- 0.0022048603277653456,
- -0.05527447536587715,
- -0.06873465329408646,
- -0.0342392772436142,
- 0.02100091613829136,
- 0.09183594584465027,
- 0.06504920870065689,
- -0.028907686471939087,
- 0.04372849687933922,
- 0.09624109417200089,
- 0.03310435637831688,
- -0.05168545991182327,
- -0.06623657792806625,
- 0.02688530832529068,
- 0.04471917077898979,
- -0.0062662712298333645,
- 0.07017261534929276,
- -0.0325516015291214,
- 0.020583152770996094,
- -0.035695623606443405,
- 0.03572892025113106,
- -0.025377316400408745,
- -0.10060615092515945,
- 0.033826280385255814,
- 0.031441349536180496,
- 0.01449710875749588,
- 0.05771191418170929,
- -0.027272123843431473,
- 0.007559206802397966,
- -0.02850417234003544,
- -0.00004727402483695187,
- 0.00036346519482322037,
- 0.07718270272016525,
- -0.027506636455655098,
- 0.053326912224292755,
- -0.0878673568367958,
- -0.002671882277354598,
- -0.030964305624365807,
- 0.059303168207407,
- -0.05865872651338577,
- -0.02057788521051407,
- 0.032913245260715485
- ]
- },
- {
- "keyword": "defect",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05655426159501076,
- 0.07172505557537079,
- 0.06396596878767014,
- 0.04198193922638893,
- -0.013474006205797195,
- -0.07824871689081192,
- 0.07961716502904892,
- 0.12728571891784668,
- -0.01421147957444191,
- 0.008571304380893707,
- 0.06005510687828064,
- -0.022936269640922546,
- 0.014000688679516315,
- 0.02278112806379795,
- -0.06588265299797058,
- -0.02448856644332409,
- -0.01859957166016102,
- -0.022049004212021828,
- -0.083128422498703,
- -0.023632032796740532,
- -0.07704658061265945,
- 0.03715777024626732,
- -0.047416336834430695,
- 0.024801069870591164,
- -0.07196245342493057,
- 0.05207466706633568,
- 0.00959080457687378,
- -0.022096186876296997,
- 0.07768598943948746,
- -0.14708568155765533,
- -0.014798237942159176,
- 0.11269216984510422,
- -0.021483981981873512,
- -0.025778593495488167,
- 0.05953943356871605,
- 0.0004638525133486837,
- -0.022213781252503395,
- 0.0036669273395091295,
- -0.012567817233502865,
- -0.05338237062096596,
- 0.00888193678110838,
- -0.056741952896118164,
- -0.05442171171307564,
- -0.0015529502416029572,
- -0.024332687258720398,
- -0.003208467271178961,
- 0.03450468182563782,
- 0.0295345950871706,
- 0.030962521210312843,
- 0.03935379907488823,
- -0.04211052134633064,
- -0.05705640837550163,
- -0.01715727522969246,
- -0.035084668546915054,
- 0.049178071320056915,
- -0.03346738591790199,
- -0.049171026796102524,
- 0.031223727390170097,
- -0.0038416285533457994,
- 0.005479225888848305,
- 0.16920018196105957,
- -0.043136756867170334,
- -0.06284336000680923,
- -0.013251228258013725,
- 0.050768375396728516,
- -0.03241897374391556,
- 0.04113076627254486,
- -0.1163235679268837,
- -0.01498708501458168,
- 0.019682513549923897,
- 0.06764291226863861,
- -0.010590197518467903,
- -0.035621099174022675,
- 0.06491216272115707,
- 0.04675309360027313,
- -0.03131205588579178,
- -0.019091401249170303,
- -0.06050630658864975,
- 0.07632280141115189,
- 0.04454444721341133,
- -0.09533730149269104,
- -0.013784091919660568,
- -0.038649652153253555,
- 0.0006296193460002542,
- 0.08562366664409637,
- -0.0014599876012653112,
- 0.041327983140945435,
- 0.0025370309595018625,
- -0.041986819356679916,
- 0.015207631513476372,
- -0.03490999713540077,
- 0.058380939066410065,
- 0.033411361277103424,
- 0.02676117978990078,
- -0.06617958843708038,
- 0.010325385257601738,
- 0.048323020339012146,
- -0.04530273377895355,
- 0.03903241828083992,
- 0.25373002886772156,
- -0.029797812923789024,
- 0.04470115900039673,
- -0.014072094112634659,
- 0.05048466846346855,
- 0.011241128668189049,
- -0.011641575954854488,
- 0.0012975115096196532,
- 0.009297873824834824,
- -0.008604200556874275,
- -0.02678442746400833,
- -0.02155636064708233,
- 0.006211298052221537,
- 0.032110072672367096,
- 0.01047863531857729,
- 0.04987862706184387,
- -0.016506517305970192,
- -0.06275973469018936,
- 0.02297963574528694,
- 0.010230232030153275,
- 0.0058789486065506935,
- 0.03936328738927841,
- 0.03994337469339371,
- -0.07226963341236115,
- -0.023478031158447266,
- -0.08829040080308914,
- -0.09074240922927856,
- -0.028277521952986717,
- -5.3008958157949365e-33,
- 0.02601502649486065,
- 0.03888295963406563,
- -0.01128807757049799,
- -0.022967463359236717,
- 0.02279871329665184,
- -0.036814890801906586,
- -0.03481760248541832,
- -0.023725731298327446,
- 0.014265093021094799,
- 0.045191120356321335,
- 0.059945717453956604,
- -0.09313047677278519,
- 0.03223384544253349,
- -0.10420317947864532,
- 0.09515076130628586,
- 0.05976170673966408,
- -0.02557349018752575,
- 0.0023853410966694355,
- -0.05962465703487396,
- 0.03677549585700035,
- -0.004024712834507227,
- 0.060514114797115326,
- 0.053266674280166626,
- 0.02320903167128563,
- -0.0192518699914217,
- 0.01784500479698181,
- -0.014004974626004696,
- -0.04872665926814079,
- 0.0016339215217158198,
- 0.0353904627263546,
- 0.02609476074576378,
- 0.09139131754636765,
- 0.04700091481208801,
- 0.025412853807210922,
- -0.06522548943758011,
- -0.007528810296207666,
- 0.024994827806949615,
- -0.05873345211148262,
- -0.045251328498125076,
- -0.0454401858150959,
- -0.0687587708234787,
- 0.014798056334257126,
- 0.0031564708333462477,
- 0.03277286887168884,
- 0.08887001872062683,
- -0.0036638532765209675,
- 0.08172625303268433,
- -0.028999917209148407,
- 0.002411950146779418,
- -0.03918902948498726,
- -0.05109025910496712,
- 0.0009340484393760562,
- 0.05288909748196602,
- 0.03401467576622963,
- 0.0470423698425293,
- 0.008562595583498478,
- 0.026396561414003372,
- -0.015494825318455696,
- 0.0005916929221712053,
- 0.05720742046833038,
- 0.09902934730052948,
- 0.06944773346185684,
- -0.013895983807742596,
- 0.0008109809132292867,
- -0.023136693984270096,
- -0.0403357669711113,
- -0.010319999419152737,
- -0.04118043929338455,
- 0.008604571223258972,
- -0.07627972960472107,
- -0.020341744646430016,
- -0.016260113567113876,
- -0.0514262430369854,
- 0.07571911066770554,
- -0.05697287619113922,
- -0.03926165774464607,
- 0.018744587898254395,
- -0.014271740801632404,
- 0.02586524933576584,
- -0.08242834359407425,
- -0.06247913837432861,
- -0.030102981254458427,
- 0.02786991186439991,
- -0.062040142714977264,
- -0.07256495207548141,
- 0.06064446270465851,
- 0.019839350134134293,
- 0.015915213152766228,
- 0.011967262253165245,
- 0.08163698017597198,
- -0.026390178129076958,
- 0.00024160346947610378,
- 0.03353051841259003,
- 0.041741643100976944,
- 0.058140553534030914,
- 4.478885473234373e-33,
- -0.1246325820684433,
- -0.00815964862704277,
- -0.03785598278045654,
- 0.08460165560245514,
- -0.0009875994874164462,
- -0.04418105632066727,
- -0.04427399858832359,
- 0.06934265792369843,
- 0.025663945823907852,
- 0.01632790081202984,
- -0.06877782940864563,
- -0.03141012042760849,
- -0.056522294878959656,
- 0.0027184176724404097,
- 0.03356549143791199,
- -0.0018253728048875928,
- 0.035213302820920944,
- -0.0576002299785614,
- 0.01584858074784279,
- 0.048111237585544586,
- 0.05625205487012863,
- 0.07465595752000809,
- -0.018170956522226334,
- -0.0745822861790657,
- -0.027007270604372025,
- 0.0762305036187172,
- -0.008544149808585644,
- -0.04900600388646126,
- -0.024279875680804253,
- 0.00925731472671032,
- 0.046318504959344864,
- -0.005531151778995991,
- -0.0798521414399147,
- 0.03855833411216736,
- 0.08933030813932419,
- -0.01399879902601242,
- -0.0005979731795378029,
- -0.023744672536849976,
- 0.00988134928047657,
- -0.013002095744013786,
- 0.06420937925577164,
- -0.010019182227551937,
- 0.060492709279060364,
- 0.1235768273472786,
- 0.03284288942813873,
- 0.012301408685743809,
- 0.04292255640029907,
- -0.03521353378891945,
- 0.03223476931452751,
- 0.030764726921916008,
- -0.011500869877636433,
- -0.006461825221776962,
- 0.00010282981384079903,
- 0.010944636538624763,
- -0.02582918293774128,
- 0.09799091517925262,
- -0.019275275990366936,
- 0.04310928285121918,
- 0.03676126152276993,
- 0.05478686839342117,
- 0.06380898505449295,
- 0.016371823847293854,
- -0.021980678662657738,
- -0.03627302125096321,
- 0.014371958561241627,
- 0.053213685750961304,
- 0.003854140406474471,
- 0.05209658294916153,
- 0.07258445769548416,
- -0.014818315394222736,
- 0.017971886321902275,
- 0.046309374272823334,
- -0.07396696507930756,
- -0.11204443126916885,
- -0.011563205160200596,
- 0.0014797335024923086,
- -0.17210333049297333,
- -0.013031703419983387,
- -0.026152199134230614,
- 0.00844489224255085,
- -0.042328570038080215,
- -0.03549855947494507,
- 0.046585842967033386,
- 0.05583198368549347,
- 0.039528511464595795,
- -0.048432812094688416,
- 0.012422194704413414,
- 0.054425500333309174,
- -0.02228163555264473,
- -0.06630313396453857,
- 0.009911333210766315,
- 0.06796075403690338,
- -0.030999699607491493,
- -0.013352787122130394,
- 0.013468549586832523,
- -1.2440423802217992e-8,
- -0.05881175398826599,
- -0.03484385088086128,
- -0.047891486436128616,
- -0.04161546006798744,
- 0.06198905408382416,
- -0.12620706856250763,
- -0.07179944217205048,
- 0.027346171438694,
- 0.003131926292553544,
- 0.07582415640354156,
- -0.07560326904058456,
- -0.019934140145778656,
- -0.03394262120127678,
- 0.05632029473781586,
- 0.032036833465099335,
- -0.04422079771757126,
- -0.09398787468671799,
- 0.08941801637411118,
- -0.05441048741340637,
- -0.058089789003133774,
- -0.04972495138645172,
- 0.029891349375247955,
- 0.06717784702777863,
- -0.04331584647297859,
- -0.08193905651569366,
- -0.006202251184731722,
- 0.021253136917948723,
- 0.049608051776885986,
- 0.01366396527737379,
- -0.04361189901828766,
- 0.10129822045564651,
- 0.02820480801165104,
- 0.10205906629562378,
- -0.03779592365026474,
- 0.04722357168793678,
- 0.017486263066530228,
- 0.00959403719753027,
- -0.04478679969906807,
- 0.016416339203715324,
- -0.08365046232938766,
- -0.008650257252156734,
- 0.02007908560335636,
- 0.08294598758220673,
- 0.04380087926983833,
- -0.05430744215846062,
- -0.06545008718967438,
- 0.0064856139943003654,
- 0.0007341355667449534,
- -0.024189716205000877,
- -0.08446938544511795,
- 0.03178945183753967,
- 0.011731510050594807,
- -0.06007354333996773,
- 0.039912231266498566,
- 0.0196626465767622,
- -0.007931354455649853,
- 0.044413406401872635,
- -0.015871411189436913,
- -0.024717777967453003,
- 0.006679575890302658,
- 0.12309580296278,
- 0.00298964511603117,
- 0.040454696863889694,
- -0.017980508506298065
- ]
- },
- {
- "keyword": "problem",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03780016675591469,
- 0.11391639709472656,
- -0.018320392817258835,
- -0.005113950930535793,
- -0.043633781373500824,
- -0.02806180715560913,
- 0.10331758856773376,
- 0.043245524168014526,
- -0.039674948900938034,
- -0.007339928764849901,
- 0.012884591706097126,
- 0.00048284660442732275,
- 0.010133435018360615,
- 0.06984914094209671,
- -0.009110521525144577,
- 0.043564386665821075,
- -0.020450841635465622,
- -0.028958996757864952,
- -0.11533065885305405,
- 0.04210310056805611,
- -0.0658004954457283,
- -0.02387141063809395,
- -0.03750506788492203,
- 0.09379489719867706,
- -0.09582388401031494,
- -0.05729243904352188,
- -0.03780975937843323,
- 0.003289837623015046,
- 0.07025382667779922,
- -0.04237489029765129,
- -0.011256154626607895,
- 0.019096137955784798,
- 0.060767762362957,
- -0.053404249250888824,
- -0.04391491785645485,
- 0.00415150448679924,
- -0.02070273458957672,
- 0.03933102265000343,
- 0.04227205738425255,
- -0.01834169588983059,
- 0.03000420331954956,
- -0.046774983406066895,
- -0.012447169050574303,
- -0.03468221798539162,
- -0.016203511506319046,
- -0.01443595439195633,
- 0.0674922838807106,
- 0.061225421726703644,
- 0.11854525655508041,
- 0.005811166949570179,
- -0.07153558731079102,
- -0.054812170565128326,
- -0.022817254066467285,
- -0.06332876533269882,
- 0.01713971234858036,
- -0.06031364947557449,
- -0.03385259583592415,
- 0.020028850063681602,
- -0.005839257035404444,
- -0.03883986175060272,
- 0.09242237359285355,
- -0.022496910765767097,
- -0.1098770722746849,
- -0.0006359220133163035,
- 0.0847686380147934,
- 0.04331272840499878,
- 0.0455545149743557,
- -0.007767568342387676,
- -0.11356575787067413,
- 0.0242424588650465,
- -0.04311317950487137,
- 0.0754987969994545,
- -0.04382949694991112,
- 0.03712557628750801,
- 0.0784936249256134,
- 0.043088871985673904,
- -0.007804596330970526,
- -0.0019348917994648218,
- 0.112783282995224,
- 0.04159626364707947,
- 0.009682653471827507,
- -0.025095373392105103,
- -0.034179382026195526,
- 0.05296489596366882,
- -0.015837552025914192,
- 0.012880377471446991,
- -0.024067629128694534,
- 0.01506828237324953,
- -0.06661658734083176,
- 0.00846157968044281,
- -0.0021120277233421803,
- -0.03790195286273956,
- 0.09741728752851486,
- 0.05539063364267349,
- -0.07503209263086319,
- -0.01762205734848976,
- 0.052083663642406464,
- 0.022414207458496094,
- -0.05636322870850563,
- 0.26567062735557556,
- -0.03534020110964775,
- 0.041601862758398056,
- 0.0414397157728672,
- 0.0034967553801834583,
- -0.04361521452665329,
- -0.015049807727336884,
- -0.004589698743075132,
- 0.012554899789392948,
- -0.011491941288113594,
- -0.014074241742491722,
- 0.007307224441319704,
- -0.042120594531297684,
- 0.03772290423512459,
- 0.10517451167106628,
- 0.06680755317211151,
- -0.03645433112978935,
- -0.018635474145412445,
- 0.013667034916579723,
- -0.02048010565340519,
- -0.0020847832784056664,
- -0.010028037242591381,
- -0.028970016166567802,
- -0.03180250525474548,
- -0.03253602609038353,
- -0.05249333754181862,
- -0.08854371309280396,
- 0.09539170563220978,
- -4.6953714923795134e-33,
- -0.03914652392268181,
- -0.045469097793102264,
- -0.02784060686826706,
- -0.009973888285458088,
- -0.020214004442095757,
- -0.019845953211188316,
- -0.016158562153577805,
- 0.029793301597237587,
- -0.024471139535307884,
- 0.038248926401138306,
- -0.002548054326325655,
- -0.07979071885347366,
- -0.0459718219935894,
- -0.09652098268270493,
- 0.14110727608203888,
- -0.022252151742577553,
- 0.0926138386130333,
- 0.04428251087665558,
- -0.10208266973495483,
- -0.009273876436054707,
- -0.05225072801113129,
- -0.0215301476418972,
- -0.018622087314724922,
- 0.06582027673721313,
- -0.008327074348926544,
- -0.011890078894793987,
- 0.023691272363066673,
- -0.047359924763441086,
- -0.025623349472880363,
- 0.0018227582331746817,
- 0.04643148556351662,
- 0.04195832461118698,
- -0.0042023854330182076,
- -0.005960127338767052,
- 0.009168628603219986,
- 0.03202718868851662,
- 0.17977343499660492,
- -0.02087925560772419,
- 0.006471941713243723,
- -0.029024221003055573,
- -0.05006175860762596,
- 0.011446268297731876,
- -0.025337114930152893,
- 0.03879687562584877,
- 0.05850917100906372,
- 0.09030811488628387,
- 0.061740174889564514,
- 0.005525463260710239,
- -0.015859689563512802,
- 0.12289441376924515,
- -0.09484655410051346,
- -0.017781898379325867,
- -0.08938216418027878,
- 0.02339157648384571,
- 0.009068789891898632,
- 0.009066899307072163,
- -0.029828650876879692,
- -0.012172894552350044,
- -0.0021712947636842728,
- 0.014182990416884422,
- 0.10066862404346466,
- 0.051859647035598755,
- 0.03288325294852257,
- -0.08905232697725296,
- 0.021620506420731544,
- 0.02317715436220169,
- 0.03186482563614845,
- -0.025843868032097816,
- -0.002150321379303932,
- -0.02805916965007782,
- -0.07231949269771576,
- -0.0426178053021431,
- 0.10232872515916824,
- 0.022407202050089836,
- -0.027656937018036842,
- -0.004334589466452599,
- 0.03549583628773689,
- 0.009385058656334877,
- -0.007405322045087814,
- 0.009162851609289646,
- -0.02612674981355667,
- -0.02492094784975052,
- 0.01947249472141266,
- -0.07011021673679352,
- -0.02399638667702675,
- 0.041203226894140244,
- 0.02650143764913082,
- 0.022394269704818726,
- 0.06263566762208939,
- 0.02795928530395031,
- -0.017712024971842766,
- 0.035878635942935944,
- 0.04710588976740837,
- 0.09797601401805878,
- 0.0237140990793705,
- 3.8948690230191514e-33,
- -0.07919365167617798,
- 0.006099365651607513,
- -0.05712715908885002,
- -0.004583586473017931,
- 0.061054810881614685,
- -0.019784094765782356,
- 0.06412205845117569,
- 0.057746004313230515,
- -0.007749127224087715,
- 0.09586990624666214,
- -0.050563473254442215,
- -0.001009197672829032,
- 0.029552793130278587,
- 0.04494529590010643,
- -0.03631841763854027,
- 0.011961130425333977,
- 0.019266216084361076,
- -0.018592799082398415,
- -0.031082654371857643,
- 0.0738181546330452,
- -0.10446719825267792,
- 0.006499918177723885,
- -0.04595740884542465,
- -0.039481647312641144,
- -0.06662057340145111,
- 0.058763109147548676,
- 0.04718323424458504,
- -0.07223224639892578,
- 0.0021045180037617683,
- -0.028325846418738365,
- 0.10219432413578033,
- -0.06529329717159271,
- -0.12527526915073395,
- 0.0613081268966198,
- -0.009164754301309586,
- 0.0871020182967186,
- -0.033697228878736496,
- -0.03387250006198883,
- 0.031229276210069656,
- -0.023497622460126877,
- 0.08328483253717422,
- -0.0374189168214798,
- -0.030922070145606995,
- 0.0793091282248497,
- 0.02550770342350006,
- 0.028872685506939888,
- 0.03380240127444267,
- -0.018652524799108505,
- 0.07041984051465988,
- 0.07297244668006897,
- -0.03473513945937157,
- -0.0503101646900177,
- 0.017994772642850876,
- -0.12013543397188187,
- -0.022788245230913162,
- 0.0810532495379448,
- 0.027555890381336212,
- 0.04773851856589317,
- 0.019052322953939438,
- -0.0009171380079351366,
- 0.020741056650877,
- 0.0308840349316597,
- -0.030608486384153366,
- 0.021608032286167145,
- 0.036037735641002655,
- 0.010590720921754837,
- -0.019823327660560608,
- 0.020458897575736046,
- 0.06305736303329468,
- 0.008790063671767712,
- -0.023546086624264717,
- 0.044564008712768555,
- -0.06775522232055664,
- -0.003601998323574662,
- -0.03076549991965294,
- -0.06011734902858734,
- -0.119378961622715,
- 0.04565759748220444,
- -0.028337553143501282,
- 0.0004190984764136374,
- -0.011521311476826668,
- -0.0343204103410244,
- -0.011765331029891968,
- -0.01784284971654415,
- -0.07611210644245148,
- -0.040633492171764374,
- 0.10766904801130295,
- 0.034809354692697525,
- -0.0014085813891142607,
- -0.0576813668012619,
- -0.011049633845686913,
- -0.025469109416007996,
- -0.007040723226964474,
- -0.04694654047489166,
- 0.0072998180985450745,
- -1.4189336816627929e-8,
- -0.03635839372873306,
- -0.0862228199839592,
- -0.016445660963654518,
- -0.00043429614743217826,
- 0.06647583842277527,
- 0.07220815867185593,
- -0.007462545298039913,
- 0.03561496362090111,
- -0.022666901350021362,
- 0.030338311567902565,
- 0.02373715676367283,
- 0.017510689795017242,
- -0.005126597359776497,
- 0.09016868472099304,
- -0.012484028935432434,
- -0.0953972265124321,
- -0.08415044099092484,
- 0.0008396388147957623,
- -0.0879143700003624,
- -0.009169990196824074,
- -0.047974321991205215,
- -0.023619133979082108,
- 0.036293815821409225,
- -0.024706093594431877,
- 0.005183881148695946,
- -0.01683574542403221,
- 0.022897642105817795,
- 0.062055330723524094,
- 0.046716220676898956,
- 0.0008744498481974006,
- 0.0017229355871677399,
- 0.016482243314385414,
- 0.005168539006263018,
- -0.028383610770106316,
- 0.053990479558706284,
- -0.007084083277732134,
- -0.006804939825087786,
- -0.011502769775688648,
- 0.025197116658091545,
- -0.055179353803396225,
- -0.0553322359919548,
- -0.05405035242438316,
- -0.002689715940505266,
- -0.0018394794315099716,
- -0.0466170571744442,
- -0.013508815318346024,
- 0.02436051517724991,
- 0.022387973964214325,
- -0.011988772079348564,
- 0.00825961772352457,
- -0.04182272404432297,
- 0.014114572666585445,
- 0.008137345314025879,
- 0.06147443503141403,
- 0.03380501642823219,
- -0.008968045003712177,
- 0.04642791301012039,
- -0.01009911485016346,
- -0.027878694236278534,
- 0.06758797913789749,
- 0.13989587128162384,
- 0.03350665792822838,
- 0.007064526434987783,
- -0.006511221174150705
- ]
- },
- {
- "keyword": "feature",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.009214037097990513,
- 0.03602903336286545,
- 0.0401882566511631,
- 0.04455350339412689,
- 0.059399209916591644,
- -0.0062657869420945644,
- 0.11617583781480789,
- -0.020001359283924103,
- -0.08308108896017075,
- -0.044783927500247955,
- 0.020198004320263863,
- -0.056059516966342926,
- 0.02250884473323822,
- 0.003175075864419341,
- 0.008671541698276997,
- 0.040892038494348526,
- 0.09489806741476059,
- 0.025966979563236237,
- -0.07948228716850281,
- -0.03507466986775398,
- -0.011381288059055805,
- 0.010972950607538223,
- -0.014561189338564873,
- 0.04012715443968773,
- -0.004009215626865625,
- 0.0815085917711258,
- -0.026154890656471252,
- 0.03645632043480873,
- 0.06475096940994263,
- -0.0920029729604721,
- -0.025214767083525658,
- 0.10891254991292953,
- 0.029297830536961555,
- -0.04808248579502106,
- -0.016708629205822945,
- 0.00888480618596077,
- -0.014194323681294918,
- 0.008073229342699051,
- -0.04367572069168091,
- -0.08805456757545471,
- 0.004502227529883385,
- -0.11166702210903168,
- -0.03286417946219444,
- -0.01192731037735939,
- 0.024788396432995796,
- 0.04896387457847595,
- 0.033821940422058105,
- 0.04986317828297615,
- 0.0030877969693392515,
- 0.06069095805287361,
- -0.027467554435133934,
- 0.02367870695888996,
- -0.03861142322421074,
- 0.04053371772170067,
- 0.06694582849740982,
- -0.003035093192011118,
- -0.009913085028529167,
- -0.012992541305720806,
- 0.013118582777678967,
- -0.00024544374900870025,
- 0.10354891419410706,
- -0.040649957954883575,
- -0.07140465080738068,
- 0.07387182116508484,
- 0.055201198905706406,
- -0.061424244195222855,
- 0.0171858798712492,
- -0.07186564058065414,
- -0.03533868491649628,
- -0.06631249189376831,
- -0.007077549118548632,
- 0.04934193566441536,
- -0.03322736546397209,
- 0.04819272458553314,
- 0.054579269140958786,
- 0.006784373894333839,
- 0.02724231407046318,
- -0.02279164083302021,
- 0.10051275789737701,
- 0.0678100660443306,
- -0.048764295876026154,
- -0.04573867842555046,
- 0.00936121866106987,
- -0.007638449780642986,
- 0.10143791884183884,
- 0.002689875429496169,
- 0.03827367722988129,
- -0.05115022882819176,
- -0.10476043820381165,
- 0.06429200619459152,
- -0.043571487069129944,
- -0.060556698590517044,
- 0.02490934729576111,
- -0.08421957492828369,
- -0.08169035613536835,
- -0.03434744104743004,
- 0.03363986313343048,
- -0.054945286363363266,
- -0.01337664108723402,
- 0.24910880625247955,
- -0.04301556572318077,
- -0.00666222907602787,
- 0.01480539608746767,
- -0.028486674651503563,
- 0.052195556461811066,
- -0.04990597441792488,
- 0.005693625193089247,
- -0.02002151869237423,
- 0.025404145941138268,
- 0.007364161778241396,
- -0.03981756418943405,
- -0.053510405123233795,
- -0.02079710364341736,
- -0.04938337579369545,
- 0.001043670461513102,
- -0.04062909632921219,
- -0.0701093003153801,
- 0.03603638708591461,
- 0.019902538508176804,
- -0.003349015722051263,
- 0.007028224412351847,
- -0.018463341519236565,
- -0.01929008774459362,
- -0.007701779715716839,
- -0.01185689214617014,
- 0.005692597944289446,
- 0.01122813019901514,
- -5.8578149171717965e-33,
- 0.014896055683493614,
- -0.03431112319231033,
- -0.016478145495057106,
- 0.005601292010396719,
- -0.005462039727717638,
- -0.01430465281009674,
- -0.08005218952894211,
- 0.0035393100697547197,
- -0.023455793038010597,
- 0.0225839763879776,
- -0.07085351645946503,
- -0.02665407583117485,
- -0.01230926439166069,
- -0.0009486768394708633,
- 0.09264076501131058,
- -0.054427217692136765,
- -0.0006729914457537234,
- 0.03308012709021568,
- -0.024764912202954292,
- -0.03819187730550766,
- -0.011376047506928444,
- 0.00560240400955081,
- 0.03847234323620796,
- 0.010668998584151268,
- -0.005936128087341785,
- -0.01628563366830349,
- -0.00094952731160447,
- -0.0768790915608406,
- -0.09463892132043839,
- 0.05032248795032501,
- 0.0020105254370719194,
- 0.07066543400287628,
- -0.03334406390786171,
- 0.020656773820519447,
- -0.03911181539297104,
- -0.05901045352220535,
- 0.00481954263523221,
- -0.1463385671377182,
- 0.046784110367298126,
- 0.0585087314248085,
- -0.016651980578899384,
- -0.05003541707992554,
- -0.09216349571943283,
- -0.006772318854928017,
- -0.020588064566254616,
- 0.0684209018945694,
- 0.09531278163194656,
- 0.006495991256088018,
- -0.020915307104587555,
- 0.026280246675014496,
- 0.025995276868343353,
- 0.019323937594890594,
- -0.06376322358846664,
- -0.0660691112279892,
- -0.0065186237916350365,
- 0.03447481244802475,
- -0.038313962519168854,
- -0.05257285013794899,
- -0.03211865574121475,
- 0.015913425013422966,
- 0.010789820924401283,
- 0.04798479378223419,
- -0.006932577583938837,
- -0.08310853689908981,
- -0.024197174236178398,
- -0.026363501325249672,
- 0.0924331396818161,
- 0.0026076871436089277,
- 0.016743868589401245,
- 0.011405957862734795,
- -0.03363648056983948,
- -0.034154098480939865,
- -0.004657812882214785,
- -0.0450676791369915,
- -0.005165735259652138,
- -0.009808837436139584,
- 0.06413991749286652,
- 0.022508898749947548,
- -0.014898146502673626,
- -0.04678313434123993,
- -0.06497395783662796,
- -0.02645283006131649,
- -0.03587369620800018,
- 0.003920345567166805,
- 0.06355565041303635,
- 0.011336667463183403,
- 0.015058508142828941,
- -0.0926484763622284,
- -0.006094946525990963,
- -0.024165188893675804,
- -0.04193110391497612,
- 0.047374825924634933,
- 0.03744978830218315,
- 0.040114179253578186,
- 0.02409505844116211,
- 4.157628744626396e-33,
- -0.0928114503622055,
- 0.010228002443909645,
- 0.007173316087573767,
- 0.051425233483314514,
- 0.028014997020363808,
- -0.030670160427689552,
- -0.021258294582366943,
- 0.0006395891541615129,
- -0.06524817645549774,
- 0.0552055686712265,
- -0.02328302152454853,
- -0.0354459173977375,
- -0.03838516026735306,
- -0.04186757653951645,
- 0.03501557931303978,
- 0.08997949957847595,
- 0.020180124789476395,
- -0.054457347840070724,
- -0.018999328836798668,
- 0.09731060266494751,
- -0.04303188621997833,
- -0.059936102479696274,
- -0.030368514358997345,
- 0.0090754684060812,
- -0.09477470815181732,
- -0.0059621017426252365,
- 0.015340549871325493,
- -0.045846376568078995,
- 0.031205255538225174,
- -0.03313469514250755,
- 0.015713445842266083,
- -0.033237673342227936,
- -0.1324220448732376,
- -0.019285215064883232,
- -0.0028621761593967676,
- 0.03448086977005005,
- 0.025995569303631783,
- -0.024245258420705795,
- -0.011690676212310791,
- 0.08675830811262131,
- 0.11305982619524002,
- -0.03320217877626419,
- -0.01880498230457306,
- 0.12568026781082153,
- 0.007990985177457333,
- 0.0017460656818002462,
- 0.06093592196702957,
- 0.05179502069950104,
- 0.07513442635536194,
- 0.04460616037249565,
- -0.03322533890604973,
- -0.0011902668047696352,
- 0.018967710435390472,
- -0.00830475427210331,
- -0.08668423444032669,
- 0.048304177820682526,
- 0.04115433990955353,
- -0.04371551051735878,
- 0.05207732692360878,
- 0.06661078333854675,
- -0.045409124344587326,
- 0.022271955385804176,
- -0.02107798308134079,
- 0.054077181965112686,
- 0.07262149453163147,
- -0.01094084046781063,
- 0.012472767382860184,
- 0.018475862219929695,
- -0.04792806878685951,
- -0.0013470688136294484,
- -0.011452430859208107,
- -0.017052579671144485,
- -0.02793828584253788,
- -0.022495469078421593,
- -0.08244041353464127,
- -0.04325522854924202,
- -0.08665809035301208,
- -0.07221998274326324,
- -0.03378010168671608,
- 0.002356545766815543,
- -0.011907809413969517,
- -0.06502209603786469,
- 0.0099841533228755,
- 0.02271398715674877,
- 0.049661122262477875,
- 0.009948695078492165,
- 0.01791432686150074,
- 0.04948640614748001,
- 0.026870666071772575,
- -0.025744596496224403,
- -0.010489196516573429,
- 0.08974834531545639,
- -0.10485494136810303,
- 0.09353611618280411,
- -0.009131285361945629,
- -1.3107461782624341e-8,
- -0.09386545419692993,
- -0.01590682752430439,
- 0.014320864342153072,
- 0.01411435380578041,
- 0.07282418012619019,
- -0.0013358084252104163,
- -0.02025306411087513,
- 0.06682877242565155,
- -0.010856466367840767,
- 0.006989186629652977,
- -0.008920865133404732,
- 0.047229211777448654,
- -0.0206171665340662,
- 0.1079297661781311,
- 0.15583421289920807,
- -0.04075668752193451,
- -0.0659898966550827,
- 0.05859608203172684,
- -0.05510750040411949,
- -0.024500124156475067,
- 0.026649577543139458,
- -0.011425741016864777,
- 0.04300311952829361,
- -0.004894931335002184,
- -0.014159418642520905,
- -0.0821564793586731,
- -0.03251996636390686,
- 0.15390469133853912,
- 0.08015114814043045,
- 0.045755159109830856,
- 0.027408579364418983,
- 0.055064279586076736,
- 0.009085794910788536,
- 0.0033667769748717546,
- 0.1477339118719101,
- 0.04146583750844002,
- 0.06720981746912003,
- -0.02254045382142067,
- 0.02408577688038349,
- -0.02524673566222191,
- 0.015660425648093224,
- 0.018623359501361847,
- 0.013232449069619179,
- 0.009184254333376884,
- -0.020401548594236374,
- 0.05624730512499809,
- 0.0429840125143528,
- -0.15064340829849243,
- -0.020124739035964012,
- 0.0069949813187122345,
- 0.030084971338510513,
- 0.046952441334724426,
- 0.06180243939161301,
- 0.10021250694990158,
- 0.09307631850242615,
- 0.052271705120801926,
- 0.013023723848164082,
- -0.051326438784599304,
- 0.007875410839915276,
- 0.04957958683371544,
- 0.03886231407523155,
- 0.021202929317951202,
- 0.04545691981911659,
- -0.05103230103850365
- ]
- },
- {
- "keyword": "enhancement",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.02100514806807041,
- 0.04762197658419609,
- 0.021596765145659447,
- 0.03809254243969917,
- -0.028505505993962288,
- -0.0312172994017601,
- 0.11093483865261078,
- 0.002252080710604787,
- -0.0420653373003006,
- -0.005992550868541002,
- 0.04770893603563309,
- 0.05203919857740402,
- 0.0031950226984918118,
- -0.028151774778962135,
- -0.005581059493124485,
- 0.0009427094482816756,
- 0.08743826299905777,
- 0.058064740151166916,
- -0.1610574722290039,
- -0.04320667311549187,
- -0.010153771378099918,
- -0.04666674882173538,
- 0.00235564261674881,
- 0.011953452602028847,
- 0.028859300538897514,
- 0.011370571330189705,
- -0.025415202602744102,
- 0.03162870183587074,
- 0.12395842373371124,
- -0.07116485387086868,
- -0.054084137082099915,
- 0.05846697837114334,
- 0.11176589876413345,
- -0.07988650351762772,
- -0.0675196573138237,
- -0.02868637628853321,
- 0.05282507836818695,
- 0.09143339097499847,
- -0.0017605801112949848,
- -0.016975754871964455,
- -0.018727565184235573,
- -0.05671511963009834,
- 0.002855107421055436,
- -0.0427556112408638,
- -0.03743747994303703,
- -0.05128999426960945,
- 0.0032099990639835596,
- -0.03828132152557373,
- -0.054303497076034546,
- -0.02437691204249859,
- 0.007294397335499525,
- -0.0627293661236763,
- -0.09359311312437057,
- -0.03558763489127159,
- 0.004646810702979565,
- 0.02074303850531578,
- -0.06588680297136307,
- -0.03261782228946686,
- -0.02069903537631035,
- -0.06646067649126053,
- 0.021809779107570648,
- 0.0101775536313653,
- 0.03042004071176052,
- 0.0003144946531392634,
- 0.053351011127233505,
- -0.054920922964811325,
- 0.02005798928439617,
- -0.030748696997761726,
- 0.023865338414907455,
- 0.05139920487999916,
- 0.05627789348363876,
- -0.0036043536383658648,
- 0.0040692831389606,
- -0.0512797087430954,
- 0.014745566062629223,
- -0.049395207315683365,
- -0.004220638889819384,
- 0.015774104744195938,
- 0.08463628590106964,
- 0.06859656423330307,
- 0.1024525836110115,
- 0.017406772822141647,
- -0.021789440885186195,
- 0.06170625612139702,
- 0.013822322711348534,
- 0.015024850144982338,
- -0.01152658648788929,
- -0.1142740398645401,
- -0.09871096163988113,
- 0.04319296404719353,
- 0.0053028529509902,
- -0.00013603085244540125,
- -0.11863923072814941,
- -0.04788189381361008,
- -0.07074905931949615,
- -0.07865531742572784,
- -0.03971192613244057,
- -0.1176614835858345,
- -0.014744681306183338,
- 0.27786582708358765,
- 0.00848497822880745,
- 0.004657517187297344,
- -0.09615963697433472,
- -0.04185346141457558,
- -0.02600661665201187,
- -0.008677549660205841,
- -0.006649888586252928,
- 0.04136652871966362,
- -0.014130651950836182,
- 0.012963022105395794,
- 0.010208149440586567,
- 0.015068013221025467,
- -0.0810718983411789,
- -0.02395460195839405,
- 0.020133811980485916,
- 0.06723885238170624,
- 0.05148901417851448,
- 0.03471091762185097,
- 0.05321960523724556,
- -0.09104093164205551,
- 0.08568800985813141,
- -0.04264303296804428,
- 0.015819089487195015,
- 0.0008872579201124609,
- -0.029327739030122757,
- -0.016093123704195023,
- -0.03480277955532074,
- -5.152351900759386e-33,
- -0.03351092338562012,
- 0.08060549199581146,
- 0.023635005578398705,
- 0.0008616959094069898,
- 0.06643988937139511,
- 0.036382440477609634,
- -0.04014494642615318,
- -0.10044541954994202,
- -0.04034237191081047,
- -0.011517476290464401,
- -0.04244588688015938,
- 0.07118214666843414,
- -0.0129069359973073,
- 0.06242060288786888,
- 0.08795509487390518,
- -0.047282032668590546,
- -0.004577973857522011,
- 0.0698067918419838,
- 0.049619559198617935,
- -0.012753831222653389,
- 0.012268749065697193,
- 0.023180561140179634,
- -0.0013608366716653109,
- 0.037146568298339844,
- 0.02399256080389023,
- -0.05368117243051529,
- 0.050006624311208725,
- 0.017940718680620193,
- -0.008045261725783348,
- 0.0005630802479572594,
- 0.030996395274996758,
- 0.060825154185295105,
- -0.05846589058637619,
- -0.006788387428969145,
- -0.04800539091229439,
- 0.05335160344839096,
- -0.03624913841485977,
- -0.04461751878261566,
- 0.04430266097187996,
- 0.03754234313964844,
- 0.009784082882106304,
- -0.0002726663660723716,
- -0.0013305575121194124,
- -0.03414515405893326,
- 0.04281225800514221,
- 0.09577222168445587,
- 0.04310867190361023,
- 0.030953949317336082,
- -0.07006813585758209,
- -0.01706884615123272,
- 0.030140433460474014,
- 0.03790958598256111,
- 0.03969068080186844,
- -0.06855625659227371,
- -0.02511073648929596,
- -0.014579189009964466,
- 0.002819337649270892,
- -0.014902563765645027,
- 0.022245798259973526,
- 0.02247333526611328,
- -0.0017796704778447747,
- -0.0024658318143337965,
- -0.006005001720041037,
- 0.013520034030079842,
- 0.08092623203992844,
- -0.022088833153247833,
- 0.05167149379849434,
- -0.04371499642729759,
- 0.016772247850894928,
- -0.041267555207014084,
- -0.10510408878326416,
- -0.026416298002004623,
- 0.02094092406332493,
- 0.016845684498548508,
- 0.03252848982810974,
- -0.06812762469053268,
- -0.003157473634928465,
- 0.05660265311598778,
- 0.06405195593833923,
- -0.010426153428852558,
- -0.11532624065876007,
- -0.009958397597074509,
- 0.028967931866645813,
- -0.03916192799806595,
- -0.00409254664555192,
- -0.02856532298028469,
- -0.020230719819664955,
- -0.011097235605120659,
- 0.05200362205505371,
- -0.02205927111208439,
- -0.07425402849912643,
- 0.03434174507856369,
- -0.05763643607497215,
- 0.03467657044529915,
- -0.0568925142288208,
- 3.58172651150971e-33,
- 0.0027288547717034817,
- 0.005765773355960846,
- -0.05592593550682068,
- 0.0934092178940773,
- 0.01126143615692854,
- 0.042418207973241806,
- 0.022722020745277405,
- 0.00703244237229228,
- -0.013855311088263988,
- -0.09356911480426788,
- 0.01905500702559948,
- 0.05637624114751816,
- 0.0031716281082481146,
- -0.04471055045723915,
- -0.019224438816308975,
- -0.008582957088947296,
- -0.03402983769774437,
- -0.03575299680233002,
- -0.06326530873775482,
- 0.015668150037527084,
- 0.0025415760464966297,
- 0.044108714908361435,
- 0.10178271681070328,
- -0.038413651287555695,
- 0.0025952751748263836,
- 0.040024396032094955,
- -0.06985843926668167,
- 0.04278219863772392,
- 0.011582360602915287,
- -0.012189147062599659,
- -0.03695034235715866,
- -0.07495664060115814,
- -0.04933914914727211,
- -0.004178439732640982,
- -0.019185688346624374,
- 0.04353289678692818,
- 0.10303732007741928,
- -0.026342784985899925,
- -0.028431082144379616,
- -0.008637012913823128,
- -0.01403611246496439,
- 0.02437913790345192,
- 0.024868641048669815,
- 0.1331263780593872,
- 0.010642137378454208,
- 0.031042659655213356,
- 0.0070727551355957985,
- 0.0468619167804718,
- 0.02258228324353695,
- 0.0213894285261631,
- 0.023244934156537056,
- 0.01316374633461237,
- -0.017993556335568428,
- 0.023967381566762924,
- -0.01619129441678524,
- -0.046360306441783905,
- 0.05102447047829628,
- -0.06966284662485123,
- 0.057093456387519836,
- 0.07855623960494995,
- -0.004285663831979036,
- 0.0290056224912405,
- -0.08993267267942429,
- -0.020316094160079956,
- 0.008323919028043747,
- 0.01651739329099655,
- -0.03731786459684372,
- 0.07061761617660522,
- 0.007368219550698996,
- -0.04523618146777153,
- 0.05474723502993584,
- -0.014258695766329765,
- -0.029149146750569344,
- -0.04269705340266228,
- -0.031876686960458755,
- -0.018875563517212868,
- 0.0475696437060833,
- -0.003860452678054571,
- -0.05782925337553024,
- -0.001503607491031289,
- -0.11232133209705353,
- -0.06871845573186874,
- 0.027980487793684006,
- -0.04394286498427391,
- 0.03675739839673042,
- 0.007721808739006519,
- -0.014524132944643497,
- 0.04452522471547127,
- 0.039355721324682236,
- 0.01682077720761299,
- -0.0500219464302063,
- 0.04839354380965233,
- -0.15467733144760132,
- -0.002516101347282529,
- -0.03148332238197327,
- -1.2299067542187458e-8,
- -0.00046898206346668303,
- -0.02564728818833828,
- -0.06527779251337051,
- -0.03345085680484772,
- 0.012534449808299541,
- -0.041135795414447784,
- -0.06459329277276993,
- 0.057797033339738846,
- -0.00238404399715364,
- -0.09330397099256516,
- 0.0009015115792863071,
- 0.024404972791671753,
- 0.0013754944084212184,
- 0.0760265365242958,
- 0.10839787870645523,
- -0.012446727603673935,
- -0.05188830941915512,
- 0.07479611784219742,
- -0.08619701117277145,
- -0.03627697005867958,
- -0.027382707223296165,
- 0.033785972744226456,
- 0.06325341761112213,
- -0.0258720051497221,
- 0.039267923682928085,
- -0.004948867484927177,
- 0.015696769580245018,
- -0.043040625751018524,
- -0.05608352646231651,
- 0.0010011340491473675,
- 0.09589973092079163,
- 0.07346152514219284,
- 0.07700104266405106,
- 0.06639652699232101,
- 0.05778186768293381,
- 0.04300331696867943,
- -0.03883976489305496,
- -0.028402885422110558,
- -0.08630412071943283,
- 0.026650171726942062,
- -0.07947798073291779,
- -0.007626052014529705,
- 0.008611682802438736,
- 0.01663162373006344,
- -0.0008082378190010786,
- -0.08210081607103348,
- 0.08943815529346466,
- -0.037683840841054916,
- -0.04007500782608986,
- 0.02264319360256195,
- 0.03178570792078972,
- 0.05574216693639755,
- 0.06523940712213516,
- -0.03303287550806999,
- -0.04410633444786072,
- 0.027209389954805374,
- 0.07625311613082886,
- 0.011470561847090721,
- 0.0053721219301223755,
- 0.05735614523291588,
- 0.09701444208621979,
- -0.04742520675063133,
- 0.08895932137966156,
- 0.01009790413081646
- ]
- },
- {
- "keyword": "improvement",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.0037066093645989895,
- 0.06374270468950272,
- 0.048576779663562775,
- -0.025242744013667107,
- -0.028645282611250877,
- -0.04537167772650719,
- 0.0011303483042865992,
- -0.005957924760878086,
- -0.04545021802186966,
- 0.017828991636633873,
- 0.045633357018232346,
- 0.055398695170879364,
- -0.0026923848781734705,
- -0.03128622844815254,
- 0.03056071139872074,
- 0.002435738919302821,
- 0.0752348005771637,
- 0.06668808311223984,
- -0.12480282783508301,
- -0.06919244676828384,
- -0.14253568649291992,
- 0.005512626841664314,
- 0.07436203211545944,
- 0.05790913850069046,
- -0.035135507583618164,
- 0.05161646381020546,
- -0.09330622106790543,
- 0.032609738409519196,
- 0.11156044900417328,
- -0.049482494592666626,
- -0.007227896712720394,
- 0.0037985160015523434,
- 0.13720470666885376,
- -0.05761164799332619,
- -0.05906379595398903,
- 0.01661752350628376,
- 0.016321152448654175,
- 0.0803576335310936,
- -0.0025070703122764826,
- -0.01760619878768921,
- -0.0438731387257576,
- -0.06615973263978958,
- -0.0342707559466362,
- -0.012840568087995052,
- -0.03672954812645912,
- 0.02936771884560585,
- 0.011339010670781136,
- -0.02027587592601776,
- -0.033200424164533615,
- 0.0039244405925273895,
- -0.0535990409553051,
- -0.051325179636478424,
- -0.04981227591633797,
- -0.07880789041519165,
- 0.04281163215637207,
- 0.04153992980718613,
- 0.010552125982940197,
- 0.028112124651670456,
- 0.051686301827430725,
- -0.06322499364614487,
- 0.08420831710100174,
- -0.005736988503485918,
- 0.0032917200587689877,
- 0.04323617368936539,
- 0.027080461382865906,
- -0.07233580201864243,
- 0.012422654777765274,
- -0.033444423228502274,
- -0.02309776283800602,
- 0.04468514025211334,
- -0.000045581371523439884,
- 0.07616804540157318,
- 0.02104717493057251,
- -0.01308226678520441,
- 0.015600998885929585,
- -0.02287304773926735,
- -0.029564743861556053,
- 0.007497107144445181,
- 0.06875862181186676,
- -0.01599099487066269,
- 0.05405596271157265,
- -0.03140707686543465,
- -0.024390216916799545,
- 0.06893189996480942,
- 0.012553511187434196,
- -0.04774557799100876,
- 0.02517911233007908,
- -0.12304919958114624,
- -0.08778979629278183,
- -0.0041555361822247505,
- 0.0050610690377652645,
- 0.027517471462488174,
- -0.017559714615345,
- 0.0001961570087587461,
- -0.07486627250909805,
- 0.01268791314214468,
- 0.014523938298225403,
- -0.07161016017198563,
- -0.04837982356548309,
- 0.3031085729598999,
- 0.03555303066968918,
- 0.06978276371955872,
- -0.0582890510559082,
- -0.08436597138643265,
- -0.016180314123630524,
- 0.03103470988571644,
- 0.018493985757231712,
- 0.09911564737558365,
- -0.09342290461063385,
- -0.032174646854400635,
- 0.018592827022075653,
- 0.0066025275737047195,
- -0.11088132858276367,
- 0.022948728874325752,
- 0.033820971846580505,
- 0.04795904830098152,
- 0.018419712781906128,
- 0.053519539535045624,
- 0.03466234356164932,
- 0.017956336960196495,
- 0.0823916643857956,
- -0.0350312665104866,
- -0.004636326339095831,
- -0.02334059402346611,
- -0.06883492320775986,
- -0.02628135494887829,
- 0.0183786042034626,
- -5.116481323302059e-33,
- 0.022508112713694572,
- 0.04941404238343239,
- 0.0461798757314682,
- -0.009853612631559372,
- 0.01449644286185503,
- 0.0542931854724884,
- -0.059505097568035126,
- -0.07793771475553513,
- 0.0042929318733513355,
- -0.02937266044318676,
- 0.006206737365573645,
- -0.014250397682189941,
- -0.019946204498410225,
- 0.0009232638985849917,
- 0.12681937217712402,
- -0.10378386080265045,
- -0.09266398102045059,
- 0.0012130357790738344,
- -0.02776455506682396,
- 0.06178770214319229,
- -0.026878532022237778,
- -0.03369845449924469,
- 0.008791958913207054,
- -0.001132289064116776,
- 0.039974793791770935,
- 0.014184476807713509,
- 0.04311836510896683,
- -0.012785765342414379,
- -0.028699981048703194,
- -0.009756850078701973,
- 0.04047989472746849,
- 0.017064077779650688,
- -0.054325170814991,
- 0.035582344979047775,
- -0.0011689423117786646,
- -0.03234464302659035,
- 0.023561730980873108,
- -0.08914703130722046,
- 0.007090532686561346,
- -0.05608838424086571,
- -0.0332120843231678,
- 0.013291268609464169,
- 0.0000939009987632744,
- -0.013308165594935417,
- 0.005366768222302198,
- 0.08881267160177231,
- 0.0002536051324568689,
- -0.022705381736159325,
- 0.018864590674638748,
- 0.001234841882251203,
- 0.008701777085661888,
- 0.009495525620877743,
- -0.051707521080970764,
- -0.0008167577325366437,
- -0.0006711813039146364,
- -0.02653582952916622,
- 0.01048688217997551,
- 0.009779461659491062,
- 0.0703108161687851,
- 0.032286521047353745,
- 0.06193884089589119,
- 0.03081030771136284,
- -0.061635635793209076,
- 0.02368221804499626,
- 0.044945742934942245,
- 0.009414441883563995,
- 0.08964306861162186,
- -0.020639568567276,
- 0.07226618379354477,
- -0.06747722625732422,
- -0.09345459938049316,
- -0.026575006544589996,
- 0.08903888612985611,
- 0.0797828957438469,
- 0.030120687559247017,
- -0.042292725294828415,
- -0.06443154811859131,
- 0.0004370011738501489,
- 0.02318371832370758,
- -0.07035347074270248,
- -0.03831016644835472,
- 0.02788807637989521,
- 0.019441023468971252,
- -0.06192147359251976,
- 0.08013522624969482,
- -0.00815090723335743,
- 0.015357731841504574,
- 0.05039047449827194,
- 0.07051283121109009,
- 0.04582833871245384,
- -0.05744316428899765,
- -0.010569524019956589,
- -0.02829812653362751,
- 0.08728824555873871,
- -0.006993001326918602,
- 4.400319471587242e-33,
- -0.0009268224821425974,
- -0.012954318895936012,
- 0.00273803249001503,
- 0.15565840899944305,
- -0.02724853716790676,
- -0.02274775505065918,
- 0.05530736967921257,
- -0.032003242522478104,
- 0.03127172589302063,
- -0.039646536111831665,
- -0.040481481701135635,
- 0.0024411941412836313,
- -0.012008339166641235,
- 0.02123919129371643,
- -0.0057781473733484745,
- 0.015864122658967972,
- 0.014703658409416676,
- -0.0975039154291153,
- -0.028621673583984375,
- -0.007728985510766506,
- -0.004524382296949625,
- 0.07975677400827408,
- 0.04020175337791443,
- 0.033182818442583084,
- -0.059560298919677734,
- 0.027175623923540115,
- -0.0013788287760689855,
- 0.05064671114087105,
- -0.0056434995494782925,
- -0.07077629119157791,
- 0.025253165513277054,
- -0.061336394399404526,
- -0.08523796498775482,
- 0.059096693992614746,
- 0.00022515899036079645,
- 0.03382176160812378,
- 0.07826931029558182,
- -0.044496454298496246,
- -0.0508270338177681,
- 0.017396550625562668,
- 0.07026924192905426,
- 0.01657119393348694,
- -0.024418991059064865,
- 0.1389886438846588,
- 0.02088799886405468,
- 0.020793532952666283,
- -0.06426925212144852,
- -0.04789090156555176,
- -0.009072615765035152,
- 0.019524995237588882,
- -0.01807739958167076,
- -0.03949383646249771,
- -0.05852349475026131,
- -0.022618301212787628,
- 0.017700158059597015,
- -0.003005808452144265,
- 0.01010209321975708,
- -0.08689222484827042,
- -0.007455931045114994,
- 0.015114831738173962,
- -0.03258175402879715,
- 0.042126551270484924,
- -0.0523320809006691,
- 0.03138337656855583,
- 0.04645921289920807,
- -0.003171468386426568,
- -0.05807961896061897,
- 0.02255653403699398,
- 0.09893772006034851,
- 0.03325929492712021,
- -0.02860003523528576,
- -0.05853234604001045,
- -0.10464498400688171,
- -0.0405043363571167,
- -0.044625747948884964,
- -0.005442405119538307,
- 0.017382005229592323,
- 0.005948246456682682,
- -0.02582283690571785,
- 0.010957674123346806,
- -0.0939495787024498,
- -0.05209683999419212,
- -0.018042059615254402,
- 0.04357293248176575,
- -0.0478157177567482,
- 0.00533885695040226,
- 0.036389876157045364,
- 0.033554352819919586,
- 0.008465847931802273,
- 0.02047218382358551,
- -0.018815629184246063,
- 0.041864436119794846,
- -0.08237573504447937,
- -0.026149099692702293,
- -0.016200954094529152,
- -1.3305514023898013e-8,
- -0.017069363966584206,
- -0.0017839769134297967,
- -0.040365830063819885,
- 0.028312580659985542,
- 0.04973244667053223,
- 0.019664179533720016,
- -0.10926682502031326,
- 0.10814844071865082,
- -0.020278993993997574,
- -0.03699122369289398,
- 0.00458837766200304,
- 0.01687457039952278,
- 0.032344043254852295,
- 0.01917056180536747,
- 0.09837540984153748,
- -0.003595231333747506,
- -0.06849511712789536,
- 0.06821652501821518,
- -0.04991372674703598,
- -0.03390420228242874,
- -0.011042664758861065,
- 0.10432489216327667,
- 0.015108599327504635,
- -0.046799566596746445,
- -0.004899783059954643,
- -0.0055860416032373905,
- 0.034496158361434937,
- 0.02088109962642193,
- -0.0652097538113594,
- -0.09503538906574249,
- 0.0447101816534996,
- 0.04057422652840614,
- 0.0478341169655323,
- -0.014300075359642506,
- 0.07701481878757477,
- 0.008784300647675991,
- 0.004059347789734602,
- -0.004572039004415274,
- 0.017596285790205002,
- -0.015904854983091354,
- -0.05872666835784912,
- -0.01505604200065136,
- 0.05317462235689163,
- 0.006682003848254681,
- -0.012767246924340725,
- -0.04994435980916023,
- -0.010790571570396423,
- -0.0017174360109493136,
- -0.0542026162147522,
- -0.1162305697798729,
- 0.0519450418651104,
- 0.04856368526816368,
- 0.020950347185134888,
- 0.023564467206597328,
- 0.035418007522821426,
- 0.02173071913421154,
- 0.029014378786087036,
- -0.033661291003227234,
- -0.024669701233506203,
- 0.06587947905063629,
- 0.11705523729324341,
- -0.02747085876762867,
- 0.0751669853925705,
- -0.0016832704422995448
- ]
- },
- {
- "keyword": "request",
- "type": "task",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.09892508387565613,
- -0.010392513126134872,
- -0.07292068749666214,
- -0.0489073321223259,
- -0.03455153852701187,
- -0.08105310797691345,
- 0.0828070342540741,
- 0.06669940799474716,
- -0.024447839707136154,
- 0.025577835738658905,
- -0.028287673369050026,
- -0.020963797345757484,
- -0.04274151474237442,
- 0.0020685167983174324,
- -0.028894562274217606,
- 0.026546455919742584,
- 0.040984123945236206,
- 0.0027490269858390093,
- -0.0692218765616417,
- 0.045195288956165314,
- 0.006684870459139347,
- -0.0029901335947215557,
- -0.037701718509197235,
- 0.01052961964160204,
- -0.08712434023618698,
- -0.028135178610682487,
- 0.0023262633476406336,
- 0.024394525215029716,
- 0.025881163775920868,
- -0.04920605197548866,
- -0.02657259628176689,
- -0.012530392967164516,
- 0.08181259036064148,
- -0.011581816710531712,
- 0.004732631146907806,
- -0.012021241709589958,
- 0.021344944834709167,
- 0.002478210721164942,
- -0.047268401831388474,
- -0.009648728184401989,
- -0.0318010076880455,
- -0.05365798994898796,
- -0.07137756049633026,
- 0.03022003546357155,
- -0.06870964914560318,
- 0.059803757816553116,
- -0.0006670263828709722,
- -0.05582614615559578,
- 0.026098009198904037,
- 0.002962964354082942,
- -0.03546886891126633,
- 0.027695994824171066,
- -0.0011835945770144463,
- 0.048380061984062195,
- 0.030715957283973694,
- -0.03965950012207031,
- -0.04625464603304863,
- 0.03996492922306061,
- 0.046002741903066635,
- 0.014233231544494629,
- 0.07014405727386475,
- 0.05727090686559677,
- -0.07104096561670303,
- 0.046393681317567825,
- -0.00968229304999113,
- -0.04024631157517433,
- 0.009939305484294891,
- -0.046355150640010834,
- -0.017882073298096657,
- -0.07130911201238632,
- 0.015351648442447186,
- 0.0707588866353035,
- -0.06948420405387878,
- -0.04312322661280632,
- 0.03020089864730835,
- -0.05375499650835991,
- 0.016170818358659744,
- -0.04958493262529373,
- 0.07172760367393494,
- 0.03720647841691971,
- -0.051774829626083374,
- 0.07783637940883636,
- -0.04420911520719528,
- 0.06660817563533783,
- 0.003863922320306301,
- -0.03737092390656471,
- -0.0016573769971728325,
- 0.05333884060382843,
- -0.03164343535900116,
- 0.0134198609739542,
- -0.057967547327280045,
- 0.12270703166723251,
- -0.005550711415708065,
- -0.02176619879901409,
- -0.04564925283193588,
- 0.08453919738531113,
- 0.06042921915650368,
- -0.08438848704099655,
- -0.031041882932186127,
- 0.25635987520217896,
- 0.023444492369890213,
- -0.033445775508880615,
- 0.019507242366671562,
- -0.04951261729001999,
- 0.0014191140653565526,
- 0.01858808659017086,
- -0.03920193016529083,
- 0.09817958623170853,
- -0.011739484034478664,
- 0.010605351999402046,
- -0.07107603549957275,
- -0.0013457998866215348,
- -0.07762302458286285,
- 0.026270667091012,
- 0.053645502775907516,
- 0.016193687915802002,
- -0.01805725321173668,
- 0.021123958751559258,
- 0.030568145215511322,
- -0.03164307028055191,
- 0.017818212509155273,
- -0.04207588732242584,
- -0.015499956905841827,
- -0.08873268961906433,
- -0.049058444797992706,
- -0.08298330008983612,
- 0.056339144706726074,
- -1.595631092827543e-33,
- 0.016977425664663315,
- 0.06052529811859131,
- -0.005166222341358662,
- 0.03735717386007309,
- 0.02809702791273594,
- -0.028424307703971863,
- 0.03858387470245361,
- -0.04439983144402504,
- 0.0025019829627126455,
- -0.029775619506835938,
- -0.01635163091123104,
- 0.03516612946987152,
- -0.039334751665592194,
- -0.07039228081703186,
- -0.004268746357411146,
- -0.030179422348737717,
- 0.09576824307441711,
- 0.05179301276803017,
- -0.02535664290189743,
- 0.051170241087675095,
- -0.06163773685693741,
- 0.005910524632781744,
- -0.004588871728628874,
- 0.05080148205161095,
- -0.06605793535709381,
- 0.013819584622979164,
- 0.011740142479538918,
- -0.018352972343564034,
- 0.01171334832906723,
- 0.04551912099123001,
- 0.056919172406196594,
- -0.04843395948410034,
- -0.10139751434326172,
- 0.04799892380833626,
- -0.008620969019830227,
- 0.05993039160966873,
- 0.016139356419444084,
- -0.007664137985557318,
- -0.03635718300938606,
- -0.06692703813314438,
- -0.007452679332345724,
- -0.036487288773059845,
- -0.08053010702133179,
- 0.02698974683880806,
- 0.025548549368977547,
- -0.06463640928268433,
- 0.10486764460802078,
- -0.004318859428167343,
- 0.09772387146949768,
- 0.06396429985761642,
- -0.02562609687447548,
- 0.015077305026352406,
- -0.09744007140398026,
- -0.007169789634644985,
- -0.03329772874712944,
- 0.02953965589404106,
- -0.006948721129447222,
- -0.02297036722302437,
- -0.061475206166505814,
- -0.04323155805468559,
- 0.09574303030967712,
- 0.05076401308178902,
- 0.03659072890877724,
- -0.0671713650226593,
- 0.0277803223580122,
- -0.04868874326348305,
- 0.035235561430454254,
- -0.024964556097984314,
- -0.06830603629350662,
- -0.10859429836273193,
- -0.07320836931467056,
- -0.02804897166788578,
- 0.13427451252937317,
- 0.012339270673692226,
- 0.03387311100959778,
- -0.07080578058958054,
- -0.04496636986732483,
- 0.005548142362385988,
- -0.03705066442489624,
- 0.045962098985910416,
- -0.047279275953769684,
- -0.06584454327821732,
- -0.04502216726541519,
- 0.04695313051342964,
- 0.053984321653842926,
- 0.044584207236766815,
- -0.08216650038957596,
- -0.0483049713075161,
- 0.03184784948825836,
- 0.05482897162437439,
- -0.0911758691072464,
- 0.03624625876545906,
- -0.06584068387746811,
- 0.05067805200815201,
- -0.0732744038105011,
- 2.1654699791458938e-33,
- 0.017926983535289764,
- -0.022608358412981033,
- -0.05318646878004074,
- 0.016625218093395233,
- 0.11401413381099701,
- 0.027629464864730835,
- 0.03583695366978645,
- 0.0009658554336056113,
- -0.02454281412065029,
- 0.027407411485910416,
- -0.00330734858289361,
- -0.007671752478927374,
- 0.01850416697561741,
- -0.08494026213884354,
- -0.017455825582146645,
- 0.059192806482315063,
- 0.06178053095936775,
- 0.026431506499648094,
- 0.00798533670604229,
- -0.039531998336315155,
- -0.13956575095653534,
- -0.025993529707193375,
- -0.03200133144855499,
- -0.013946667313575745,
- 0.013719962909817696,
- 0.053814589977264404,
- 0.05574174225330353,
- 0.005375145003199577,
- 0.06356264650821686,
- 0.050795022398233414,
- 0.04582288861274719,
- -0.01898014359176159,
- -0.08057130128145218,
- 0.0327669195830822,
- 0.013489538803696632,
- 0.023683542385697365,
- 0.055197086185216904,
- 0.06858588755130768,
- -0.06934161484241486,
- -0.006587232928723097,
- 0.03881698101758957,
- 0.012157207354903221,
- 0.030960096046328545,
- 0.11937118321657181,
- 0.022942552343010902,
- 0.009548438712954521,
- 0.05099581182003021,
- 0.04317568242549896,
- 0.052703578025102615,
- -0.026209549978375435,
- -0.0008620216394774616,
- 0.023452874273061752,
- -0.012537159956991673,
- 0.03957545384764671,
- 0.004603044129908085,
- -0.029432261362671852,
- 0.085760697722435,
- 0.0018552355468273163,
- 0.05876768007874489,
- -0.02216367796063423,
- -0.0098934480920434,
- 0.06611833721399307,
- -0.040924906730651855,
- 0.06403082609176636,
- 0.03549798205494881,
- 0.002284937771037221,
- 0.03888890892267227,
- -0.023700544610619545,
- -0.019543848931789398,
- -0.07558196783065796,
- 0.06915409862995148,
- -0.03566138073801994,
- -0.03701061010360718,
- 0.08007024973630905,
- 0.10525117069482803,
- -0.04402832314372063,
- -0.017407629638910294,
- 0.05387749522924423,
- -0.032087292522192,
- 0.07144539058208466,
- 0.01114506833255291,
- -0.06761498004198074,
- 0.0051542664878070354,
- -0.03695850819349289,
- 0.03289016708731651,
- -0.03530963137745857,
- 0.04015994817018509,
- 0.14472666382789612,
- 0.008720341138541698,
- -0.08554650843143463,
- -0.013033425435423851,
- -0.0023552654311060905,
- -0.005680684465914965,
- -0.042867161333560944,
- 0.043413784354925156,
- -1.4429157424444838e-8,
- 0.011198055930435658,
- 0.06223352253437042,
- 0.04723595455288887,
- 0.048152755945920944,
- 0.052884411066770554,
- 0.08517802506685257,
- -0.01668761484324932,
- 0.038882456719875336,
- 0.007295810151845217,
- 0.015004345215857029,
- 0.028208348900079727,
- 0.02107471227645874,
- 0.06626679003238678,
- 0.03146965801715851,
- -0.012081681750714779,
- -0.04543943703174591,
- -0.14015385508537292,
- 0.022364124655723572,
- -0.02587009407579899,
- -0.08016166090965271,
- -0.021701281890273094,
- -0.0020733762066811323,
- 0.03255656734108925,
- -0.022531649097800255,
- 0.012919093482196331,
- 0.05588884279131889,
- 0.018345031887292862,
- 0.09858700633049011,
- -0.07385141402482986,
- -0.02335522696375847,
- -0.002904398599639535,
- 0.08730374276638031,
- -0.010212516412138939,
- -0.05739511549472809,
- 0.04661060497164726,
- 0.021282607689499855,
- -0.14504452049732208,
- 0.006628890056163073,
- -0.023571686819195747,
- -0.010253656655550003,
- 0.06967902183532715,
- -0.023060083389282227,
- 0.0329994261264801,
- -0.03661762923002243,
- 0.02747395448386669,
- 0.010431916452944279,
- -0.00870900321751833,
- -0.013671588152647018,
- -0.01080502849072218,
- 0.037175070494413376,
- -0.044394318014383316,
- -0.0264115110039711,
- 0.014839288778603077,
- 0.0022361145820468664,
- -0.024806901812553406,
- 0.05269258841872215,
- 0.022482603788375854,
- -0.035086821764707565,
- 0.007636365946382284,
- 0.03931098431348801,
- 0.14101767539978027,
- 0.07699360698461533,
- -0.06531281024217606,
- 0.021553242579102516
- ]
- },
- {
- "keyword": "project",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04297420009970665,
- 0.09135998785495758,
- -0.060364603996276855,
- -0.019533907994627953,
- -0.02750939130783081,
- -0.07248441129922867,
- 0.049420230090618134,
- 0.0248295646160841,
- -0.0441451258957386,
- -0.0048207975924015045,
- -0.002870037453249097,
- -0.024901574477553368,
- -0.02784554287791252,
- 0.03309253603219986,
- -0.07639120519161224,
- -0.017644019797444344,
- 0.0032524182461202145,
- 0.05174567177891731,
- -0.08222518116235733,
- -0.03532424569129944,
- -0.007569701876491308,
- 0.01411429326981306,
- 0.0225545484572649,
- 0.020608877763152122,
- -0.057235073298215866,
- 0.05192635953426361,
- 0.040304578840732574,
- 0.03358771651983261,
- 0.0007803125190548599,
- -0.06434843689203262,
- -0.07753745466470718,
- 0.05660267546772957,
- 0.10193601995706558,
- -0.015003597363829613,
- -0.012476636096835136,
- 0.04042194411158562,
- 0.03370921313762665,
- 0.02056206949055195,
- -0.038706857711076736,
- -0.014929610304534435,
- -0.07138820737600327,
- -0.0555478110909462,
- 0.04176308959722519,
- -0.0034595539327710867,
- -0.012312572449445724,
- 0.013881456106901169,
- 0.03241691738367081,
- -0.006222724448889494,
- -0.03908109292387962,
- 0.027068190276622772,
- -0.03158130496740341,
- 0.0008989825728349388,
- -0.014227540232241154,
- -0.10727954655885696,
- -0.04277629032731056,
- -0.02178148739039898,
- -0.04821361228823662,
- -0.03074282594025135,
- 0.02961665950715542,
- -0.03748311847448349,
- 0.09205789864063263,
- 0.03691307082772255,
- -0.12387536466121674,
- -0.0011905294377356768,
- 0.055584803223609924,
- 0.04369692876935005,
- 0.05079728737473488,
- 0.04857766628265381,
- -0.03574267402291298,
- -0.06717608869075775,
- 0.01965690217912197,
- 0.022798553109169006,
- -0.023152748122811317,
- 0.026532262563705444,
- 0.059929825365543365,
- -0.007324830163270235,
- 0.019011760130524635,
- -0.0314503088593483,
- 0.07590266317129135,
- -0.05503718554973602,
- -0.05430014058947563,
- 0.01655360870063305,
- -0.017051922157406807,
- 0.05449158698320389,
- 0.007429950870573521,
- 0.03921046108007431,
- 0.024269532412290573,
- 0.02298152633011341,
- -0.028634827584028244,
- -0.009414241649210453,
- -0.021896207705140114,
- -0.030491633340716362,
- 0.0007672026404179633,
- -0.03773551434278488,
- -0.020825287327170372,
- -0.0034189941361546516,
- 0.011624257080256939,
- -0.04308604449033737,
- 0.0560927614569664,
- 0.28207969665527344,
- -0.046022336930036545,
- -0.009286288172006607,
- 0.07220932096242905,
- -0.07052406668663025,
- -0.03601391986012459,
- 0.003501360537484288,
- -0.05071336030960083,
- 0.05446700379252434,
- 0.04674088582396507,
- -0.012137023732066154,
- -0.08028066903352737,
- -0.09939444065093994,
- -0.0282738097012043,
- 0.017121976241469383,
- 0.09954696148633957,
- 0.0012925112387165427,
- 0.013855625875294209,
- 0.03284453600645065,
- -0.04552815109491348,
- -0.014411946758627892,
- -0.007303549442440271,
- 0.005610729567706585,
- -0.018097152933478355,
- 0.0037169817369431257,
- -0.05529571697115898,
- -0.015282818116247654,
- -0.005058384966105223,
- -3.5367616485388495e-33,
- 0.05650073662400246,
- 0.001296955393627286,
- -0.012220927514135838,
- 0.11045405268669128,
- 0.0503709577023983,
- -0.0767148807644844,
- 0.0498165600001812,
- -0.0011953142238780856,
- -0.03259138762950897,
- 0.040096480399370193,
- 0.021434331312775612,
- -0.02584322914481163,
- -0.04842491075396538,
- 0.011234097182750702,
- 0.12322450429201126,
- -0.06496177613735199,
- 0.020111333578824997,
- 0.046372588723897934,
- -0.10773013532161713,
- 0.0011655124835669994,
- -0.09489009529352188,
- -0.008570091798901558,
- 0.0218666922301054,
- 0.04502343386411667,
- 0.01667161099612713,
- 0.0011031259782612324,
- 0.03146292269229889,
- -0.07483962178230286,
- -0.03767738863825798,
- 0.04283907264471054,
- 0.05759362131357193,
- 0.02292000688612461,
- -0.04961167648434639,
- 0.004195803310722113,
- -0.050076186656951904,
- 0.01885155588388443,
- 0.02661318890750408,
- -0.11128190904855728,
- 0.024642830714583397,
- 0.014081114903092384,
- -0.0008380288491025567,
- 0.04366455227136612,
- -0.007432420738041401,
- 0.05754069983959198,
- 0.07641524076461792,
- 0.022615546360611916,
- 0.040710121393203735,
- 0.012465370818972588,
- 0.03866925835609436,
- -0.015424546785652637,
- 0.0383203960955143,
- -0.01230792049318552,
- -0.1010417640209198,
- -0.0322822667658329,
- -0.02338511310517788,
- 0.004814457148313522,
- -0.0043850126676261425,
- -0.06845428049564362,
- 0.01289400551468134,
- 0.031019652262330055,
- 0.06861741095781326,
- 0.08536387234926224,
- -0.05788813903927803,
- -0.04276641458272934,
- 0.0141493184491992,
- 0.06665050983428955,
- -0.016332492232322693,
- 0.0352245531976223,
- 0.04611961171030998,
- -0.038389310240745544,
- -0.05921030417084694,
- -0.02031543478369713,
- 0.10191083699464798,
- -0.008947156369686127,
- -0.029895246028900146,
- 0.0340161956846714,
- -0.04255235940217972,
- 0.02488759160041809,
- -0.1193174347281456,
- 0.06262955069541931,
- -0.09535295516252518,
- -0.04350113123655319,
- 0.05543462559580803,
- 0.01817483641207218,
- 0.006216026842594147,
- -0.03735516592860222,
- -0.02654164843261242,
- -0.03709885850548744,
- -0.012117316946387291,
- 0.015769969671964645,
- -0.06279123574495316,
- 0.029536014422774315,
- -0.020589236170053482,
- 0.005634683649986982,
- -0.0140333017334342,
- 3.4409026556231844e-33,
- -0.015639934688806534,
- 0.024043787270784378,
- -0.03624440357089043,
- 0.03163077309727669,
- 0.1286800354719162,
- -0.03150365874171257,
- 0.00004195091241854243,
- -0.021909121423959732,
- 0.001976572209969163,
- 0.1088365763425827,
- -0.08766712248325348,
- -0.03682537376880646,
- 0.07741842418909073,
- -0.017787162214517593,
- -0.02156718820333481,
- 0.01866469904780388,
- 0.08742046356201172,
- -0.045787032693624496,
- -0.06834062188863754,
- 0.005519191734492779,
- -0.12566561996936798,
- 0.06588893383741379,
- -0.023096000775694847,
- -0.05487392470240593,
- -0.023489411920309067,
- 0.05806640535593033,
- 0.015382393263280392,
- -0.05100231245160103,
- 0.05670025572180748,
- -0.018012477084994316,
- 0.047015272080898285,
- -0.09078063070774078,
- -0.14882947504520416,
- -0.0650414526462555,
- -0.06765930354595184,
- 0.09489324688911438,
- 0.05832121521234512,
- -0.015481455251574516,
- 0.0005929800681769848,
- -0.02685433067381382,
- 0.08847283571958542,
- -0.0054474021308124065,
- -0.0014514077920466661,
- 0.09774081408977509,
- -0.016068676486611366,
- -0.021288329735398293,
- 0.03632168471813202,
- 0.06432615220546722,
- -0.007578424643725157,
- 0.04834473133087158,
- -0.02500702627003193,
- 0.0656580775976181,
- 0.03374691680073738,
- -0.06905904412269592,
- 0.0169072262942791,
- -0.027333563193678856,
- 0.04093572869896889,
- 0.012668830342590809,
- 0.04505922645330429,
- -0.0030336526688188314,
- -0.027768075466156006,
- -0.018865283578634262,
- -0.016952114179730415,
- 0.037622496485710144,
- 0.0019244110444560647,
- -0.005490308627486229,
- -0.04474726319313049,
- 0.08800653368234634,
- 0.026390889659523964,
- -0.035278115421533585,
- 0.07702039927244186,
- 0.08425916731357574,
- -0.0572587251663208,
- 0.05710510164499283,
- -0.025457510724663734,
- -0.09799674153327942,
- -0.05967456102371216,
- 0.08854463696479797,
- 0.006352588534355164,
- 0.002478143200278282,
- -0.016302281990647316,
- -0.08689616620540619,
- -0.017639344558119774,
- 0.006159652955830097,
- -0.0022062419448047876,
- 0.07424522191286087,
- 0.029022376984357834,
- -0.00505364453420043,
- 0.01167977787554264,
- 0.03203261271119118,
- -0.0983029380440712,
- 0.04017454385757446,
- -0.024007171392440796,
- 0.00850185938179493,
- 0.005767931696027517,
- -1.3347841942845662e-8,
- 0.013868715614080429,
- 0.0838538259267807,
- 0.013372187502682209,
- 0.0237236600369215,
- -0.004640327766537666,
- 0.07571620494127274,
- -0.010511431843042374,
- 0.04301728680729866,
- -0.0035233080852776766,
- 0.06883172690868378,
- 0.035557251423597336,
- -0.03538687527179718,
- 0.08215747773647308,
- 0.0964813381433487,
- -0.004131725989282131,
- -0.1271982043981552,
- -0.008210415951907635,
- 0.04128621891140938,
- -0.049625299870967865,
- -0.01833926886320114,
- -0.013810724951326847,
- -0.006784465163946152,
- -0.0017021528910845518,
- 0.009374001063406467,
- -0.01546263974159956,
- -0.03181064501404762,
- 0.021408280357718468,
- 0.10199625790119171,
- 0.0016726881731301546,
- -0.01354155968874693,
- -0.010710109956562519,
- 0.08902767300605774,
- -0.033542271703481674,
- -0.048701848834753036,
- 0.030460406094789505,
- 0.08823232352733612,
- -0.00943349301815033,
- -0.010068796575069427,
- 0.014603063464164734,
- 0.017355378717184067,
- -0.00026658212300390005,
- 0.0016422037733718753,
- 0.0386112779378891,
- 0.0406481958925724,
- -0.00925477221608162,
- 0.014400390908122063,
- -0.08909332752227783,
- -0.04566271975636482,
- -0.01180284097790718,
- -0.028658458963036537,
- -0.06805817782878876,
- 0.043507736176252365,
- 0.030392082408070564,
- 0.049205802381038666,
- 0.04475270211696625,
- 0.056000951677560806,
- 0.057590167969465256,
- -0.03217571601271629,
- -0.028399672359228134,
- 0.06775937229394913,
- 0.14605756103992462,
- 0.013246276415884495,
- -0.0787385031580925,
- 0.005878892727196217
- ]
- },
- {
- "keyword": "program",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.024473100900650024,
- 0.03722376376390457,
- -0.04020264744758606,
- -0.01629558391869068,
- -0.03942364454269409,
- 0.003289243206381798,
- 0.0712980329990387,
- 0.06272777915000916,
- -0.050823092460632324,
- -0.02110876329243183,
- -0.039226848632097244,
- -0.010655737482011318,
- 0.04586584120988846,
- -0.03366980701684952,
- -0.030947964638471603,
- -0.026715870946645737,
- -0.025612492114305496,
- -0.015611818991601467,
- -0.023132499307394028,
- -0.0531708225607872,
- -0.009982306510210037,
- -0.028888754546642303,
- -0.04114546254277229,
- 0.007334140595048666,
- -0.01693873293697834,
- 0.07299520075321198,
- -0.0091174291446805,
- 0.028314506635069847,
- 0.01949547976255417,
- -0.07270900160074234,
- 0.010668609291315079,
- 0.03598872572183609,
- 0.1571681946516037,
- 0.03412018343806267,
- -0.024085011333227158,
- 0.07599098235368729,
- -0.022146834060549736,
- -0.04744739457964897,
- -0.03675566241145134,
- -0.006997482385486364,
- -0.13499736785888672,
- -0.05531506985425949,
- -0.0279957577586174,
- 0.003168942406773567,
- 0.009587278589606285,
- -0.030030690133571625,
- -0.02958507277071476,
- -0.006557411514222622,
- 0.019914688542485237,
- 0.037805378437042236,
- -0.1260114461183548,
- -0.028601257130503654,
- -0.01221389602869749,
- -0.042999785393476486,
- -0.04571203514933586,
- 0.031204136088490486,
- 0.08165916055440903,
- 0.01957118511199951,
- -0.021247146651148796,
- 0.006339309737086296,
- -0.009721253998577595,
- 0.002173337386921048,
- -0.11785940825939178,
- 0.04618537053465843,
- 0.05805231258273125,
- 0.014265568926930428,
- 0.013817688450217247,
- 0.011046883650124073,
- 0.06227165088057518,
- -0.12818863987922668,
- -0.07772903889417648,
- 0.014048284851014614,
- -0.036983050405979156,
- 0.06033964082598686,
- 0.013793799094855785,
- -0.07944440096616745,
- 0.03472532331943512,
- -0.01088335458189249,
- 0.03596765547990799,
- -0.055930543690919876,
- 0.0008898972300812602,
- -0.02336427941918373,
- -0.020542236045002937,
- 0.03733230382204056,
- 0.031550515443086624,
- 0.013762781396508217,
- 0.024851489812135696,
- 0.07656696438789368,
- 0.047431424260139465,
- 0.062417563050985336,
- -0.0760248601436615,
- 0.00035796116571873426,
- -0.00176015286706388,
- 0.008338606916368008,
- -0.037200409919023514,
- 0.08448522537946701,
- 0.03481883183121681,
- -0.11374315619468689,
- -0.04993095248937607,
- 0.2553258538246155,
- -0.014476639218628407,
- 0.021163076162338257,
- 0.07880328595638275,
- -0.060909755527973175,
- -0.0007441980415023863,
- -0.11504436284303665,
- 0.039965998381376266,
- 0.00018419801199343055,
- 0.020305883139371872,
- -0.06529057770967484,
- 0.009116491302847862,
- -0.05480263754725456,
- 0.004981478210538626,
- 0.00348461652174592,
- 0.03991379588842392,
- 0.06424973160028458,
- -0.03382178023457527,
- 0.06454534083604813,
- -0.007103653158992529,
- 0.024667227640748024,
- 0.015109259635210037,
- -0.0035814514849334955,
- -0.008495368994772434,
- -0.01723746955394745,
- -0.05913286283612251,
- -0.07704407721757889,
- -0.013028597459197044,
- -6.65336488189535e-33,
- -0.027789529412984848,
- -0.06785627454519272,
- 0.0018006390891969204,
- 0.05027162283658981,
- -0.02928898110985756,
- -0.030630704015493393,
- 0.043225761502981186,
- 0.044924743473529816,
- -0.08288537710905075,
- -0.012239603325724602,
- 0.03103518672287464,
- -0.013757863081991673,
- -0.013158833608031273,
- 0.13544735312461853,
- 0.16055935621261597,
- -0.03287951275706291,
- 0.020765742287039757,
- 0.06758252531290054,
- -0.04760662838816643,
- -0.047695260494947433,
- -0.0032323445193469524,
- 0.008328049443662167,
- 0.00913154799491167,
- 0.03446280583739281,
- 0.04402344301342964,
- -0.005114702507853508,
- -0.014991110190749168,
- -0.014052641578018665,
- 0.046784210950136185,
- 0.012748869135975838,
- 0.07935439795255661,
- 0.05159622058272362,
- -0.03858101740479469,
- -0.024660328403115273,
- 0.03905525431036949,
- -0.0022680116817355156,
- 0.008633304387331009,
- -0.030359208583831787,
- 0.06595253944396973,
- -0.04489367455244064,
- 0.008726011961698532,
- -0.00506322318688035,
- 0.08032736927270889,
- -0.01276943925768137,
- 0.05388331040740013,
- -0.002105449791997671,
- 0.04813835397362709,
- 0.06327428668737411,
- -0.07429712265729904,
- 0.04784068837761879,
- 0.007206177804619074,
- 0.01792163960635662,
- -0.010003962554037571,
- -0.01232963241636753,
- -0.022084571421146393,
- 0.021956084296107292,
- -0.02702847309410572,
- -0.0033602635376155376,
- 0.03140396624803543,
- -0.0037129439879208803,
- 0.08802127838134766,
- 0.13783647119998932,
- 0.06235945224761963,
- -0.016229921951889992,
- -0.00872133206576109,
- -0.016129855066537857,
- -0.018821654841303825,
- -0.03430801257491112,
- 0.08920885622501373,
- 0.10484780371189117,
- -0.132666677236557,
- -0.019807633012533188,
- 0.0844871774315834,
- -0.022620562463998795,
- -0.010727979242801666,
- -0.019397497177124023,
- 0.007058680988848209,
- 0.0007523154490627348,
- -0.0800817459821701,
- -0.023689307272434235,
- -0.026533693075180054,
- -0.027881337329745293,
- -0.016686640679836273,
- -0.018519576638936996,
- 0.031242959201335907,
- 0.001636906643398106,
- -0.003391395788639784,
- -0.06073252856731415,
- 0.02814292535185814,
- 0.023696808144450188,
- -0.048368290066719055,
- -0.006437521427869797,
- -0.0001857319293776527,
- 0.12096388638019562,
- 0.020990589633584023,
- 4.447556344733051e-33,
- 0.0005332810687832534,
- 0.046828366816043854,
- 0.0005582668818533421,
- -0.005989912897348404,
- -0.014649907127022743,
- 0.013071984052658081,
- 0.020100489258766174,
- -0.04377803951501846,
- -0.05944953113794327,
- 0.07392749190330505,
- -0.0373777411878109,
- -0.008367297239601612,
- 0.05319621041417122,
- 0.008408603258430958,
- 0.00016477511962875724,
- 0.020433060824871063,
- 0.052224259823560715,
- 0.03860802948474884,
- -0.05513691529631615,
- 0.04883037507534027,
- -0.0418708473443985,
- 0.012941766530275345,
- -0.0714910551905632,
- -0.029541848227381706,
- -0.0011347295949235559,
- -0.017322923988103867,
- 0.09160710126161575,
- 0.045249246060848236,
- 0.013694878667593002,
- 0.03646845370531082,
- 0.021343931555747986,
- -0.058249518275260925,
- -0.12825153768062592,
- 0.019018566235899925,
- -0.014523345977067947,
- -0.01616511680185795,
- 0.12049874663352966,
- -0.02059680037200451,
- -0.07337060570716858,
- -0.04045823588967323,
- 0.1541476547718048,
- -0.03854094445705414,
- -0.023335620760917664,
- 0.1711835414171219,
- -0.002932940376922488,
- 0.022531092166900635,
- -0.054437413811683655,
- 0.005508427508175373,
- -0.017988553270697594,
- -0.00588732585310936,
- -0.053897175937891006,
- -0.01990269124507904,
- 0.020742420107126236,
- -0.10222534090280533,
- -0.002779987407848239,
- -0.03226892277598381,
- 0.05214531347155571,
- 0.007241905201226473,
- -0.00888801645487547,
- -0.02752748504281044,
- -0.0687546581029892,
- -0.04691644385457039,
- 0.005018463358283043,
- -0.03643206134438515,
- -0.061037350445985794,
- 0.020292604342103004,
- -0.030330559238791466,
- 0.009309173561632633,
- 0.016772888600826263,
- 0.02367207780480385,
- 0.04933822900056839,
- 0.07222368568181992,
- -0.016015462577342987,
- -0.019289692863821983,
- -0.06926433742046356,
- 0.047366995364427567,
- -0.09401334822177887,
- -0.016667425632476807,
- -0.10761476308107376,
- -0.008068234659731388,
- 0.04085482656955719,
- -0.03132665529847145,
- 0.023035846650600433,
- 0.04769161343574524,
- -0.037352919578552246,
- 0.009378631599247456,
- 0.043775979429483414,
- 0.012498102150857449,
- -0.013725600205361843,
- 0.013371112756431103,
- -0.028589706867933273,
- 0.08854226768016815,
- 0.028105759993195534,
- -0.005412159953266382,
- -0.043254952877759933,
- -1.2589050690792192e-8,
- 0.01269678957760334,
- -0.06998291611671448,
- 0.07520725578069687,
- -0.00335221947170794,
- 0.0488709881901741,
- 0.08658524602651596,
- -0.0621604323387146,
- -0.026064423844218254,
- -0.01267743669450283,
- -0.03896300867199898,
- -0.007220577448606491,
- 0.012486782856285572,
- -0.007826868444681168,
- 0.042726729065179825,
- 0.07351761311292648,
- -0.0404663123190403,
- 0.013497600331902504,
- 0.031447261571884155,
- -0.02798200584948063,
- 0.022749336436390877,
- 0.04698576405644417,
- 0.0004374512063805014,
- 0.051142431795597076,
- 0.11591741442680359,
- -0.009639096446335316,
- -0.06174508482217789,
- 0.03784167766571045,
- 0.11397279798984528,
- -0.00653906911611557,
- -0.0017303290078416467,
- 0.03912854939699173,
- 0.0368916392326355,
- 0.003365247743204236,
- -0.04460040479898453,
- 0.04127557948231697,
- -0.014973166398704052,
- -0.013526629656553268,
- 0.007171200588345528,
- 0.018794620409607887,
- -0.08757970482110977,
- 0.0012644636444747448,
- 0.01611669547855854,
- 0.025122856721282005,
- -0.03865370154380798,
- 0.003469759365543723,
- 0.0007876491290517151,
- -0.003158730221912265,
- -0.0903862789273262,
- 0.019701726734638214,
- -0.00855502299964428,
- -0.060845181345939636,
- 0.02291341871023178,
- 0.013584517873823643,
- 0.034822382032871246,
- 0.10773099958896637,
- 0.05584324151277542,
- -0.045133400708436966,
- -0.06725344806909561,
- -0.0880265161395073,
- 0.09730706363916397,
- 0.013323790393769741,
- 0.035572491586208344,
- 0.05523866042494774,
- -0.04546872526407242
- ]
- },
- {
- "keyword": "initiative",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03075607493519783,
- 0.042064957320690155,
- -0.0025847095530480146,
- 0.019837096333503723,
- 0.007181504741311073,
- -0.043878547847270966,
- 0.055931318551301956,
- 0.011859700083732605,
- -0.026216650381684303,
- 0.05634571239352226,
- 0.002906572772189975,
- 0.00130881043151021,
- 0.04252232238650322,
- -0.033294111490249634,
- -0.03292679414153099,
- 0.019143372774124146,
- -0.011377205140888691,
- -0.056762292981147766,
- -0.045084983110427856,
- -0.02419268898665905,
- -0.03635053709149361,
- 0.03813786804676056,
- 0.059532418847084045,
- 0.012386186048388481,
- -0.06644410640001297,
- 0.08439154177904129,
- -0.009794097393751144,
- 0.009995423257350922,
- -0.024517370387911797,
- -0.06124104931950569,
- 0.02651990018785,
- -0.0038088886067271233,
- 0.08760020136833191,
- -0.052234046161174774,
- -0.0271825660020113,
- 0.035668205469846725,
- 0.008366306312382221,
- -0.03362990543246269,
- 0.02807663567364216,
- -0.08376394957304001,
- -0.05955575406551361,
- -0.10124833881855011,
- -0.0002650660171639174,
- -0.008323793299496174,
- 0.04313918575644493,
- -0.03385180979967117,
- -0.07767350226640701,
- 0.0089404983446002,
- -0.04671522229909897,
- -0.00040819187415763736,
- -0.08547123521566391,
- -0.09251552075147629,
- -0.011070781387388706,
- 0.01079651154577732,
- -0.021914398297667503,
- 0.026545949280261993,
- 0.00015748599253129214,
- -0.0274860430508852,
- 0.055759117007255554,
- -0.054681871086359024,
- 0.018669309094548225,
- -0.019451240077614784,
- 0.0051435139030218124,
- 0.0009355986258015037,
- -0.02544853650033474,
- 0.008571944199502468,
- 0.06665588170289993,
- 0.020317647606134415,
- 0.006409863475710154,
- -0.05966366082429886,
- 0.050863709300756454,
- 0.034182529896497726,
- -0.02249557338654995,
- 0.02106967195868492,
- 0.10428916662931442,
- -0.030926592648029327,
- 0.05240220949053764,
- -0.019717276096343994,
- 0.08110712468624115,
- 0.005404332187026739,
- -0.05016247555613518,
- 0.02890782803297043,
- -0.0219544880092144,
- 0.05375310406088829,
- 0.012611561454832554,
- -0.06119072064757347,
- -0.026373835280537605,
- 0.06603527069091797,
- 0.043264299631118774,
- 0.05285109952092171,
- -0.0995328277349472,
- -0.04989023506641388,
- 0.03878352418541908,
- -0.020304234698414803,
- -0.01930854097008705,
- 0.03154706954956055,
- 0.026921389624476433,
- -0.1431235820055008,
- -0.06925791501998901,
- 0.22068098187446594,
- -0.016505325213074684,
- -0.037391696125268936,
- -0.056260090321302414,
- -0.061595674604177475,
- -0.03297395259141922,
- -0.04843329265713692,
- -0.006098926533013582,
- -0.06702196598052979,
- 0.009049970656633377,
- 0.007757402490824461,
- -0.06873513013124466,
- -0.048937615007162094,
- 0.03357798233628273,
- 0.0032641501165926456,
- 0.031195636838674545,
- 0.12234148383140564,
- -0.027837829664349556,
- 0.09638028591871262,
- 0.030999379232525826,
- -0.02612263895571232,
- 0.053894609212875366,
- 0.0034296249505132437,
- -0.007459681946784258,
- 0.013251719996333122,
- -0.019667139276862144,
- -0.0010275158565491438,
- 0.02722979709506035,
- -7.371123936559347e-33,
- 0.01585814543068409,
- 0.04118872433900833,
- -0.012583415023982525,
- 0.1427256166934967,
- 0.04318775236606598,
- -0.044875260442495346,
- -0.007447975222021341,
- 0.00709431990981102,
- -0.07182813435792923,
- -0.04222051799297333,
- -0.016948821023106575,
- 0.09074541926383972,
- 0.007357016671448946,
- 0.08576849848031998,
- 0.055242523550987244,
- -0.07058963179588318,
- -0.008786492981016636,
- 0.10085742920637131,
- -0.04688376560807228,
- -0.03040200285613537,
- 0.03936520591378212,
- -0.044075578451156616,
- 0.042284365743398666,
- -0.022173384204506874,
- 0.11733436584472656,
- 0.03767116740345955,
- 0.05684005096554756,
- -0.06282974779605865,
- 0.023159103468060493,
- 0.020889682695269585,
- 0.07101047784090042,
- -0.02137475088238716,
- -0.10955023765563965,
- -0.02779632806777954,
- -0.02273843251168728,
- 0.01969476416707039,
- -0.0058069792576134205,
- -0.052959248423576355,
- 0.014300758950412273,
- 0.014906033873558044,
- -0.05046462267637253,
- 0.027611561119556427,
- 0.013089749030768871,
- 0.013006789609789848,
- 0.017641669139266014,
- 0.030321143567562103,
- 0.03771698474884033,
- 0.025889648124575615,
- 0.04337035119533539,
- 0.017213977873325348,
- -0.01747412234544754,
- -0.008274239487946033,
- -0.013214058242738247,
- -0.007112677209079266,
- 0.01592192053794861,
- -0.005733306985348463,
- 0.00010018556349677965,
- 0.03231091424822807,
- 0.017616605386137962,
- -0.06599515676498413,
- 0.0841582790017128,
- 0.053820282220840454,
- -0.019386259838938713,
- 0.14977975189685822,
- 0.05774237588047981,
- -0.015122457407414913,
- 0.0025705534499138594,
- 0.028663331642746925,
- 0.08423995226621628,
- 0.024078914895653725,
- -0.028440525755286217,
- -0.028617409989237785,
- -0.025351429358124733,
- -0.011596237309277058,
- -0.04715771600604057,
- 0.003913664724677801,
- 0.013189764693379402,
- 0.026545455679297447,
- 0.006265460513532162,
- -0.06749354302883148,
- -0.0022346347104758024,
- -0.03999410197138786,
- -0.005854847840964794,
- -0.011819999665021896,
- 0.10005425661802292,
- -0.02300325408577919,
- -0.01770036295056343,
- 0.05065545439720154,
- 0.0346158966422081,
- -0.03304838389158249,
- -0.07788052409887314,
- 0.03989456593990326,
- 0.006566605530679226,
- 0.05281312018632889,
- -0.02373281866312027,
- 4.998005084392604e-33,
- 0.035971060395240784,
- -0.03567475453019142,
- 0.015536557883024216,
- 0.021811021491885185,
- 0.054978497326374054,
- -0.008023223839700222,
- -0.004504859913140535,
- -0.05370635166764259,
- 0.03328092023730278,
- 0.01137521117925644,
- -0.07055628299713135,
- -0.025790952146053314,
- -0.021027063950896263,
- 0.004443514160811901,
- 0.07283595204353333,
- -0.04807475209236145,
- 0.04010102152824402,
- -0.0118709122762084,
- 0.03221360966563225,
- 0.00023339827021118253,
- -0.034324366599321365,
- -0.06205252557992935,
- -0.0368092879652977,
- -0.09801868349313736,
- -0.04136132076382637,
- 0.022251401096582413,
- 0.05961902067065239,
- 0.0621725469827652,
- -0.03543064743280411,
- 0.03428054600954056,
- 0.016584748402237892,
- -0.09164382517337799,
- -0.06559738516807556,
- 0.03393977880477905,
- 0.0036849218886345625,
- 0.10125943273305893,
- 0.0298861563205719,
- -0.056324850767850876,
- -0.08861624449491501,
- 0.03270959109067917,
- 0.0182661022990942,
- -0.01904626376926899,
- -0.024022912606596947,
- 0.11478544771671295,
- -0.06485237181186676,
- 0.028004037216305733,
- -0.05419662967324257,
- 0.10461145639419556,
- -0.07940554618835449,
- 0.05238975211977959,
- -0.09806729108095169,
- 0.017925014719367027,
- -0.030193693935871124,
- -0.05643293261528015,
- 0.004491394851356745,
- 0.047556955367326736,
- 0.006047466304153204,
- -0.0016841785982251167,
- -0.042915936559438705,
- 0.025688130408525467,
- 0.008057048544287682,
- 0.05879543721675873,
- -0.0183268953114748,
- 0.03429481387138367,
- -0.04766727238893509,
- -0.032115574926137924,
- 0.027748091146349907,
- -0.0372069776058197,
- 0.024534741416573524,
- -0.007414001505821943,
- 0.12171495705842972,
- -0.009796824306249619,
- -0.03450056165456772,
- -0.055799245834350586,
- 0.0084508853033185,
- -0.02626536414027214,
- -0.03853640332818031,
- 0.019762394949793816,
- -0.04673111066222191,
- -0.10878590494394302,
- -0.003243562765419483,
- 0.015757804736495018,
- 0.013322951272130013,
- -0.006997034884989262,
- -0.037403810769319534,
- 0.062048763036727905,
- 0.027766281738877296,
- 0.09023237973451614,
- -0.026827778667211533,
- 0.05209425091743469,
- -0.026827795431017876,
- 0.030411772429943085,
- -0.017442919313907623,
- 0.051572561264038086,
- -0.014100748114287853,
- -1.2428098550287814e-8,
- 0.04144546762108803,
- 0.04965441673994064,
- 0.00527424830943346,
- 0.01544615626335144,
- 0.08805616199970245,
- -0.031265273690223694,
- -0.1389516144990921,
- 0.038536809384822845,
- 0.01652231626212597,
- 0.006157902535051107,
- 0.02768503874540329,
- 0.008920588530600071,
- 0.05845662206411362,
- 0.01078383531421423,
- 0.04390091821551323,
- -0.007362110540270805,
- -0.003601327072829008,
- -0.026870129629969597,
- -0.07571040838956833,
- 0.0037628638092428446,
- 0.046216029673814774,
- -0.012788383290171623,
- -0.04835519567131996,
- -0.06279119104146957,
- 0.003365423297509551,
- -0.011842411011457443,
- -0.0018257790943607688,
- 0.07068917155265808,
- -0.03316550701856613,
- 0.051441680639982224,
- -0.0034624403342604637,
- 0.08160360902547836,
- -0.07026148587465286,
- 0.0259490255266428,
- -0.055076368153095245,
- 0.013004410080611706,
- 0.029848115518689156,
- -0.029262972995638847,
- 0.034531187266111374,
- -0.17055343091487885,
- 0.007602480705827475,
- 0.04504317417740822,
- 0.041892923414707184,
- -0.04515933245420456,
- -0.0679408386349678,
- 0.01139435637742281,
- -0.04508272558450699,
- -0.08020729571580887,
- 0.06429670751094818,
- -0.07845859229564667,
- -0.11204590648412704,
- -0.005676603410393,
- 0.04752529785037041,
- 0.08380980789661407,
- 0.12973859906196594,
- 0.0840480774641037,
- -0.013124940916895866,
- -0.006294244434684515,
- -0.021557310596108437,
- 0.0739847868680954,
- 0.16875886917114258,
- -0.07205455005168915,
- -0.03163164481520653,
- -0.0795617550611496
- ]
- },
- {
- "keyword": "campaign",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05054739862680435,
- -0.0019452100386843085,
- 0.013637853786349297,
- -0.026059001684188843,
- 0.04994939640164375,
- 0.020794278010725975,
- 0.04441985860466957,
- 0.011298769153654575,
- -0.03563660755753517,
- -0.0009814795339480042,
- -0.02919183112680912,
- -0.026361709460616112,
- 0.04983273893594742,
- -0.028537074103951454,
- 0.030188333243131638,
- 0.0306971687823534,
- 0.029347239062190056,
- 0.03935219347476959,
- 0.009800998494029045,
- 0.0775814950466156,
- -0.04359699413180351,
- 0.016741128638386726,
- 0.004328476265072823,
- 0.056911736726760864,
- -0.04895207658410072,
- 0.026048721745610237,
- -0.011221569962799549,
- 0.012394863180816174,
- -0.04809551686048508,
- -0.04886987432837486,
- 0.03625540807843208,
- 0.024409202858805656,
- 0.04729370400309563,
- -0.00911913625895977,
- 0.052352771162986755,
- 0.027316562831401825,
- -0.039741531014442444,
- -0.04778168350458145,
- -0.007580759935081005,
- -0.026569785550236702,
- -0.08092981576919556,
- -0.10551134496927261,
- -0.08455566316843033,
- -0.005848150700330734,
- 0.005531610455363989,
- -0.03285113349556923,
- -0.005045237950980663,
- 0.07350470125675201,
- 0.07895871996879578,
- 0.042963478714227676,
- -0.014465510845184326,
- -0.02413666620850563,
- -0.06300642341375351,
- -0.06636496633291245,
- 0.06416361033916473,
- -0.06873421370983124,
- -0.04454740136861801,
- -0.014278206042945385,
- 0.004919053055346012,
- -0.0192869883030653,
- 0.03416930139064789,
- -0.03678268566727638,
- -0.10674191266298294,
- 0.057270731776952744,
- -0.011917762458324432,
- -0.012768525630235672,
- -0.0463220439851284,
- -0.0071923271752893925,
- 0.007910791784524918,
- -0.07270219922065735,
- 0.04928603023290634,
- 0.028850743547081947,
- 0.00011556942627066746,
- -0.018757019191980362,
- 0.01635846495628357,
- 0.013744945637881756,
- 0.04560554027557373,
- 0.05977960675954819,
- 0.11646948009729385,
- -0.04579245299100876,
- 0.05780026316642761,
- 0.018216418102383614,
- -0.02902235835790634,
- 0.03767753764986992,
- 0.027625713497400284,
- -0.03529622405767441,
- -0.01737959496676922,
- -0.023280100896954536,
- 0.03816830739378929,
- 0.019396798685193062,
- -0.061333462595939636,
- 0.015046852640807629,
- 0.0658007338643074,
- 0.016377225518226624,
- -0.10206432640552521,
- -0.010247834958136082,
- 0.0325477235019207,
- -0.004941772203892469,
- 0.06818491220474243,
- 0.28747859597206116,
- -0.060196127742528915,
- -0.05732046812772751,
- -0.008521793410182,
- -0.09507119655609131,
- -0.039120785892009735,
- -0.060778167098760605,
- -0.042548440396785736,
- 0.009942605160176754,
- -0.03075569123029709,
- 0.0006946261855773628,
- 0.009506987407803535,
- 0.0002455390349496156,
- 0.005092719569802284,
- 0.03577191010117531,
- 0.049583468586206436,
- -0.00942931231111288,
- -0.05499228462576866,
- -0.04854363948106766,
- -0.05624803155660629,
- 0.11903922259807587,
- -0.05592027306556702,
- -0.029463358223438263,
- -0.02164810337126255,
- 0.0014535884838551283,
- -0.038371141999959946,
- -0.026087863370776176,
- 0.0068097831681370735,
- -5.554054319949855e-33,
- -0.05249730125069618,
- -0.04710611328482628,
- 0.052584774792194366,
- 0.08126943558454514,
- -0.011342262849211693,
- 0.05622492730617523,
- -0.003965543583035469,
- -0.03745012730360031,
- -0.06037347391247749,
- 0.04391774907708168,
- 0.00033704517409205437,
- 0.14042438566684723,
- -0.026609981432557106,
- 0.09632362425327301,
- 0.13742056488990784,
- -0.033371567726135254,
- -0.04751892760396004,
- 0.03563055023550987,
- -0.02593003585934639,
- -0.026328831911087036,
- -0.03994058817625046,
- 0.03221356123685837,
- -0.004406903870403767,
- 0.04228145629167557,
- 0.06940428912639618,
- -0.00218191952444613,
- 0.043591104447841644,
- -0.013605447486042976,
- -0.015518000349402428,
- 0.05277537181973457,
- 0.00653119059279561,
- -0.02568073756992817,
- 0.014151101000607014,
- 0.0024061021395027637,
- 0.013619200326502323,
- 0.007770857308059931,
- 0.003997650928795338,
- -0.12470006197690964,
- -0.029469504952430725,
- 0.08369408547878265,
- -0.02811320871114731,
- 0.04137035086750984,
- 0.025313876569271088,
- 0.047046955674886703,
- -0.03166917338967323,
- 0.008499992080032825,
- 0.059943437576293945,
- 0.01946946606040001,
- -0.0037944691721349955,
- 0.06074107810854912,
- 0.022278811782598495,
- 0.0010058238403871655,
- -0.03788914903998375,
- -0.01288249809294939,
- -0.012374027632176876,
- -0.03569488227367401,
- -0.04139060527086258,
- -0.09008963406085968,
- -0.06905334442853928,
- -0.06955531239509583,
- 0.07257851213216782,
- -0.008438793011009693,
- 0.011739235371351242,
- -0.004348341841250658,
- -0.011618507094681263,
- -0.03327900543808937,
- -0.00433889776468277,
- -0.03801477327942848,
- 0.08153892308473587,
- 0.02426034025847912,
- -0.01935042254626751,
- -0.04918394237756729,
- 0.05353817343711853,
- 0.01279793493449688,
- -0.02450346201658249,
- -0.04707159474492073,
- 0.10962650924921036,
- 0.06444650888442993,
- -0.018394649028778076,
- -0.01618051528930664,
- -0.001570101478137076,
- -0.08364628255367279,
- 0.0053306445479393005,
- -0.0017465600976720452,
- 0.04825668781995773,
- 0.013531854376196861,
- 0.024505842477083206,
- -0.10832301527261734,
- -0.010137836448848248,
- 0.019742120057344437,
- -0.12497862428426743,
- -0.008166499435901642,
- -0.048268768936395645,
- 0.031763311475515366,
- -0.018098954111337662,
- 4.3581276732583686e-33,
- -0.06220946088433266,
- 0.00439925491809845,
- 0.006533837411552668,
- 0.019340520724654198,
- 0.07741840928792953,
- 0.028224805369973183,
- 0.020711388438940048,
- -0.10912404954433441,
- 0.007463095244020224,
- 0.07219929248094559,
- -0.047934480011463165,
- 0.02624928206205368,
- 0.06548405438661575,
- 0.021391836926341057,
- -0.01921958103775978,
- -0.012186947278678417,
- 0.14371351897716522,
- -0.009800789877772331,
- -0.00869999174028635,
- -0.02162531390786171,
- -0.022810444235801697,
- 0.030625002458691597,
- -0.055993739515542984,
- -0.05540967732667923,
- -0.04331532120704651,
- 0.000513568811584264,
- 0.0030976419802755117,
- -0.008621427230536938,
- 0.021589091047644615,
- 0.04035726189613342,
- 0.0788695439696312,
- -0.03743286058306694,
- -0.04332692548632622,
- 0.0011472326004877687,
- -0.025775156915187836,
- 0.14882074296474457,
- 0.12457692623138428,
- -0.025274772197008133,
- -0.032534319907426834,
- -0.02232482098042965,
- 0.06227609142661095,
- -0.07972251623868942,
- 0.027926553040742874,
- 0.09162554889917374,
- -0.12052618712186813,
- 0.051153942942619324,
- -0.003057820489630103,
- 0.030918067321181297,
- -0.014229819178581238,
- 0.007842478342354298,
- -0.11225122213363647,
- 0.03590230643749237,
- -0.00044625220471061766,
- -0.0011831545270979404,
- -0.041164830327034,
- -0.06495918333530426,
- -0.031233811751008034,
- -0.0469265915453434,
- -0.003133303951472044,
- 0.08055643737316132,
- 0.043081462383270264,
- 0.017601674422621727,
- 0.012728259898722172,
- -0.06374876201152802,
- 0.0063609289936721325,
- -0.025971733033657074,
- -0.03297322243452072,
- -0.014208335429430008,
- 0.030642472207546234,
- 0.041188228875398636,
- -0.035647306591272354,
- 0.005171900149434805,
- -0.0866549164056778,
- 0.0790618285536766,
- -0.07470958679914474,
- -0.040509987622499466,
- -0.12947562336921692,
- 0.03706337884068489,
- 0.0024003556463867426,
- -0.0008683943306095898,
- 0.006013321690261364,
- -0.07849954813718796,
- -0.06330613046884537,
- -0.025712624192237854,
- -0.023682978004217148,
- 0.019561802968382835,
- 0.09768083691596985,
- 0.0981144830584526,
- -0.048257503658533096,
- 0.062102753669023514,
- 0.03295323625206947,
- -0.036016833037137985,
- 0.0295255146920681,
- 0.043395817279815674,
- -0.03652345389127731,
- -1.2285606310058483e-8,
- 0.036051321774721146,
- 0.050080105662345886,
- 0.03141273930668831,
- 0.018661051988601685,
- 0.0006617855397053063,
- -0.017438584938645363,
- -0.09212732315063477,
- 0.026669902727007866,
- 0.04940979182720184,
- 0.06286768615245819,
- 0.06890228390693665,
- 0.02807934395968914,
- -0.03494563698768616,
- 0.050574518740177155,
- -0.0038569574244320393,
- -0.008263000287115574,
- -0.022409165278077126,
- 0.01659390516579151,
- -0.06571396440267563,
- 0.010558320209383965,
- -0.04543508216738701,
- 0.05353795737028122,
- -0.025095921009778976,
- -0.028728069737553596,
- 0.023980556055903435,
- -0.0036650432739406824,
- -0.0164546687155962,
- 0.09566739201545715,
- 0.054450396448373795,
- 0.001857240917161107,
- -0.016026640310883522,
- 0.05413057655096054,
- -0.11484325677156448,
- 0.004658427555114031,
- -0.07923450320959091,
- 0.05025193467736244,
- -0.045603279024362564,
- 0.0535060279071331,
- 0.020846065133810043,
- -0.018388474360108376,
- 0.015539908781647682,
- 0.07313865423202515,
- 0.08069057017564774,
- -0.012220285832881927,
- -0.06582062691450119,
- 0.09085234254598618,
- -0.019950758665800095,
- 0.013994705863296986,
- 0.02064894326031208,
- -0.09285810589790344,
- -0.0444088950753212,
- 0.019177628681063652,
- -0.045588087290525436,
- 0.08211454004049301,
- 0.05345446243882179,
- -0.0012218840420246124,
- 0.009012392722070217,
- 0.04167448356747627,
- 0.002053706906735897,
- 0.053935591131448746,
- 0.045486606657505035,
- 0.009355289861559868,
- -0.04106326773762703,
- 0.0001765964407240972
- ]
- },
- {
- "keyword": "drive",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.05433550477027893,
- 0.022516615688800812,
- 0.04129229858517647,
- 0.0889802798628807,
- -0.05254620313644409,
- 0.004244315437972546,
- 0.07932011038064957,
- 0.0001868913823273033,
- 0.02588229440152645,
- -0.015136947855353355,
- -0.029693633317947388,
- -0.041517868638038635,
- 0.013897835277020931,
- -0.002340774517506361,
- -0.03706375136971474,
- -0.002098824130371213,
- 0.030987922102212906,
- -0.03350522369146347,
- -0.06971614807844162,
- 0.0250833909958601,
- -0.040912728756666183,
- 0.07286223769187927,
- 0.004314227495342493,
- -0.01969820074737072,
- -0.06244603917002678,
- 0.03467053174972534,
- -0.008607826195657253,
- 0.04449723660945892,
- -0.022533701732754707,
- -0.10182628035545349,
- -0.027958277612924576,
- -0.013746904209256172,
- -0.00977935828268528,
- 0.01621481403708458,
- -0.05254777520895004,
- -0.017519893124699593,
- 0.05695343390107155,
- -0.024983562529087067,
- 0.05596005544066429,
- -0.10902626812458038,
- 0.04579753801226616,
- -0.06967140734195709,
- 0.035128142684698105,
- 0.02515784651041031,
- 0.007664348464459181,
- 0.028729533776640892,
- 0.0661776140332222,
- -0.007718194741755724,
- 0.10376530885696411,
- -0.006573361344635487,
- -0.07687970250844955,
- 0.0018679759232327342,
- -0.004084769636392593,
- -0.007405945565551519,
- 0.000932661525439471,
- 0.023532679304480553,
- -0.0018558228621259332,
- 0.0845259353518486,
- -0.034164298325777054,
- 0.021270889788866043,
- 0.04284696653485298,
- -0.05027695745229721,
- -0.016662610694766045,
- 0.012981467880308628,
- 0.01491022389382124,
- -0.0028819360304623842,
- -0.040083788335323334,
- -0.010232627391815186,
- -0.04145825654268265,
- 0.017691582441329956,
- 0.026975175365805626,
- 0.0449146144092083,
- -0.03782825917005539,
- -0.03082200139760971,
- 0.0741545632481575,
- -0.05638698488473892,
- 0.05561850219964981,
- -0.014672167599201202,
- 0.07377789914608002,
- -0.01786900870501995,
- -0.04325564205646515,
- 0.061553191393613815,
- -0.055813319981098175,
- 0.061075590550899506,
- 0.005928630009293556,
- -0.024648243561387062,
- -0.022611364722251892,
- 0.08643412590026855,
- -0.0736270472407341,
- 0.05593482032418251,
- -0.004069555085152388,
- -0.05230855569243431,
- 0.048185255378484726,
- 0.005891487002372742,
- -0.08492112904787064,
- 0.013337071985006332,
- 0.023090772330760956,
- 0.0208534374833107,
- 0.019654756411910057,
- 0.22869108617305756,
- -0.0013276247773319483,
- 0.08783793449401855,
- -0.005142086185514927,
- -0.055119309574365616,
- -0.08820319920778275,
- 0.03501090034842491,
- -0.0383148230612278,
- 0.09878978133201599,
- -0.04520329460501671,
- -0.02467603236436844,
- 0.04970620200037956,
- -0.015329372137784958,
- -0.04677079617977142,
- 0.04436052590608597,
- -0.003289091633632779,
- -0.010751648806035519,
- -0.08028925210237503,
- 0.06407328695058823,
- 0.014697040431201458,
- -0.039622459560632706,
- -0.05103588104248047,
- -0.01713797077536583,
- 0.02773275226354599,
- 0.0166728887706995,
- -0.020956523716449738,
- -0.14449092745780945,
- 0.07266409695148468,
- -4.234038448823737e-33,
- 0.016097160056233406,
- -0.08280031383037567,
- 0.04127597063779831,
- 0.035512689501047134,
- 0.0024397566448897123,
- 0.026313144713640213,
- 0.010143781080842018,
- -0.011086573824286461,
- -0.06287912279367447,
- 0.009522335603833199,
- 0.09533368796110153,
- 0.007467573508620262,
- -0.0368364043533802,
- -0.028034232556819916,
- 0.14583221077919006,
- 0.007722812704741955,
- -0.03227079287171364,
- 0.026878071948885918,
- -0.0709235891699791,
- -0.06267451494932175,
- 0.042138051241636276,
- 0.04309136047959328,
- -0.018318161368370056,
- 0.0488412044942379,
- 0.0020432353485375643,
- -0.0525934062898159,
- 0.01092685479670763,
- -0.027531862258911133,
- 0.0791827067732811,
- 0.03129509836435318,
- -0.04720533266663551,
- 0.04661617428064346,
- -0.05548552796244621,
- -0.005228676833212376,
- 0.02560638077557087,
- 0.005580776836723089,
- -0.05675235390663147,
- -0.02749345637857914,
- 0.011339305900037289,
- -0.036867864429950714,
- -0.02866436168551445,
- -0.04012267664074898,
- -0.05716370418667793,
- -0.007668732199817896,
- -0.053976304829120636,
- 0.008149011060595512,
- 0.08334306627511978,
- 0.02144855074584484,
- -0.05625419691205025,
- 0.09490527212619781,
- -0.07122769951820374,
- -0.033567532896995544,
- 0.019346466287970543,
- -0.025164097547531128,
- -0.046332161873579025,
- -0.010041163302958012,
- 0.04915248975157738,
- -0.0955943912267685,
- 0.024843987077474594,
- -0.045439012348651886,
- 0.03256506100296974,
- 0.048732198774814606,
- 0.054687175899744034,
- 0.0037360929418355227,
- -0.05206078663468361,
- -0.0054712616838514805,
- 0.030404159799218178,
- -0.03752800077199936,
- 0.05667268857359886,
- 0.026764005422592163,
- 0.013873616233468056,
- -0.061572592705488205,
- 0.004791028797626495,
- 0.015496155247092247,
- 0.04458386078476906,
- 0.014753484167158604,
- -0.042637743055820465,
- -0.013066284358501434,
- -0.0772586464881897,
- -0.019693350419402122,
- -0.05231878161430359,
- -0.04998474195599556,
- -0.048252906650304794,
- 0.0857100859284401,
- 0.09101156890392303,
- 0.046800535172224045,
- -0.07413870096206665,
- -0.0733412429690361,
- -0.014242909848690033,
- -0.03719799965620041,
- -0.043438542634248734,
- -0.03873772174119949,
- -0.010997534729540348,
- -0.0017062743427231908,
- -0.04789860174059868,
- 3.99507661034889e-33,
- -0.01170138269662857,
- -0.040331415832042694,
- 0.052645452320575714,
- 0.03297605738043785,
- 0.0003775414661504328,
- 0.0010857614688575268,
- 0.01784653216600418,
- -0.062468793243169785,
- 0.0077840304002165794,
- 0.04764309152960777,
- -0.13528740406036377,
- -0.05738386884331703,
- 0.0958603248000145,
- 0.019776275381445885,
- 0.0754651427268982,
- -0.003463505767285824,
- 0.14322344958782196,
- -0.05624992027878761,
- -0.04857584834098816,
- 0.011173986829817295,
- -0.05576474592089653,
- -0.0023632748052477837,
- 0.08430704474449158,
- 0.0013777088606730103,
- -0.05189304053783417,
- 0.04729973524808884,
- 0.01987796649336815,
- 0.0958302766084671,
- -0.06486444175243378,
- 0.02781938761472702,
- 0.04195813462138176,
- 0.0005675555439665914,
- -0.02936411462724209,
- -0.07461638003587723,
- -0.0520925410091877,
- 0.15857098996639252,
- 0.0488663874566555,
- 0.017114073038101196,
- -0.08441552519798279,
- -0.026234086602926254,
- 0.07162367552518845,
- -0.06192125752568245,
- 0.08079375326633453,
- 0.1562846451997757,
- 0.007286691106855869,
- 0.056677818298339844,
- 0.01320353802293539,
- 0.042488258332014084,
- 0.02257196046411991,
- 0.0861024409532547,
- 0.029036998748779297,
- 0.0070348093286156654,
- 0.03526835888624191,
- 0.02277650497853756,
- -0.012520777061581612,
- -0.055529817938804626,
- 0.0007313452078960836,
- 0.003739965846762061,
- 0.02277071215212345,
- 0.0038521999958902597,
- 0.0055541167967021465,
- 0.09171297401189804,
- -0.008334782905876637,
- -0.004753416869789362,
- -0.09284865111112595,
- -0.03889443352818489,
- -0.03909745439887047,
- -0.09451644867658615,
- -0.00595001969486475,
- 0.02153777703642845,
- -0.04569408297538757,
- 0.009558801539242268,
- 0.0010249944170936942,
- 0.02238762192428112,
- -0.07585980743169785,
- -0.050134990364313126,
- -0.03577221557497978,
- -0.0393432192504406,
- -0.003668074030429125,
- -0.02618849091231823,
- 0.03432915359735489,
- -0.01880563423037529,
- -0.028273144736886024,
- 0.06711866706609726,
- -0.010172775946557522,
- -0.03105924278497696,
- -0.03354048356413841,
- -0.04011080786585808,
- 0.01007875893265009,
- -0.030789494514465332,
- 0.017385436221957207,
- 0.06682927906513214,
- -0.05947614461183548,
- 0.04025442898273468,
- -0.03540859743952751,
- -1.2114555580922115e-8,
- -0.03848966583609581,
- 0.020572038367390633,
- 0.028991876170039177,
- -0.02139095775783062,
- 0.015264005400240421,
- -0.03266952186822891,
- 0.031942203640937805,
- 0.09509706497192383,
- 0.03640439733862877,
- 0.07210904359817505,
- 0.06587051600217819,
- -0.04085831344127655,
- 0.041370026767253876,
- 0.010252472944557667,
- 0.030536722391843796,
- 0.01214923057705164,
- 0.035627398639917374,
- 0.015484410338103771,
- -0.06547222286462784,
- -0.010019495151937008,
- 0.045678284019231796,
- -0.04712661728262901,
- 0.04906214773654938,
- 0.10317915678024292,
- 0.03293321654200554,
- -0.07200837135314941,
- 0.014651989564299583,
- 0.03718129172921181,
- 0.019565850496292114,
- -0.05834266543388367,
- -0.036291033029556274,
- 0.07140203565359116,
- -0.009702414274215698,
- 0.0023774621076881886,
- 0.014051917940378189,
- -0.04759996011853218,
- 0.0009442078298889101,
- 0.055556029081344604,
- 0.06077326089143753,
- 0.05835461616516113,
- -0.027519389986991882,
- 0.025782819837331772,
- 0.09893657267093658,
- 0.009459251537919044,
- -0.10887649655342102,
- -0.020230906084179878,
- -0.08336008340120316,
- 0.027290474623441696,
- -0.06958132237195969,
- 0.02887474000453949,
- -0.03143228590488434,
- -0.018331293016672134,
- -0.004894757643342018,
- 0.06307081878185272,
- 0.008746156468987465,
- 0.01480065193027258,
- -0.0041070240549743176,
- 0.04611518234014511,
- -0.11812476813793182,
- 0.0714305192232132,
- 0.14282439649105072,
- 0.040067631751298904,
- 0.03375670686364174,
- 0.03261128440499306
- ]
- },
- {
- "keyword": "venture",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.04120151326060295,
- -0.06385700404644012,
- 0.05165613442659378,
- -0.046240001916885376,
- 0.007921499200165272,
- -0.04523142799735069,
- 0.015185720287263393,
- 0.005352361127734184,
- 0.016649290919303894,
- 0.05709431320428848,
- 0.02039756253361702,
- -0.008251016959547997,
- 0.02027902938425541,
- 0.02129962667822838,
- 0.004116686061024666,
- -0.0006058429717086256,
- 0.03777337074279785,
- -0.007911741733551025,
- 0.020304525271058083,
- -0.006793676409870386,
- -0.12474019080400467,
- -0.0022244418505579233,
- -0.004447961691766977,
- -0.02034156583249569,
- 0.07943811267614365,
- 0.023599805310368538,
- 0.030334383249282837,
- 0.054009128361940384,
- 0.025500662624835968,
- -0.0960741713643074,
- 0.023106122389435768,
- 0.10470172762870789,
- -0.010584239847958088,
- 0.013865737244486809,
- 0.08812551945447922,
- 0.06228913739323616,
- -0.06069107726216316,
- -0.03882528468966484,
- -0.02641073241829872,
- -0.011971797794103622,
- 0.010959107428789139,
- -0.09847623854875565,
- -0.0014420043444260955,
- -0.04388677328824997,
- -0.027149146422743797,
- 0.03375966101884842,
- -0.0010410933755338192,
- 0.04816951975226402,
- 0.07785273343324661,
- 0.07294860482215881,
- -0.04064268246293068,
- -0.10070949792861938,
- 0.016132887452840805,
- -0.02238384820520878,
- -0.022714665159583092,
- 0.014165816828608513,
- -0.021033914759755135,
- -0.014437290839850903,
- 0.04078717902302742,
- -0.026995249092578888,
- 0.07815134525299072,
- 0.021391693502664566,
- 0.016368571668863297,
- 0.01925755850970745,
- -0.054443858563899994,
- -0.014004416763782501,
- -0.011910988949239254,
- 0.11567315459251404,
- -0.02573661506175995,
- -0.08810894191265106,
- 0.08375079184770584,
- -0.056029122322797775,
- -0.07985883206129074,
- -0.010954118333756924,
- -0.023133739829063416,
- 0.022020934149622917,
- 0.04507966712117195,
- 0.012400193139910698,
- 0.0975465252995491,
- -0.12492986023426056,
- -0.01568479835987091,
- 0.025176532566547394,
- -0.07802361249923706,
- 0.045164261013269424,
- -0.08519327640533447,
- 0.0056005497463047504,
- 0.07355846464633942,
- 0.03129167482256889,
- 0.1297263652086258,
- 0.052282512187957764,
- -0.11661936342716217,
- -0.016244808211922646,
- 0.09048669785261154,
- -0.055731046944856644,
- -0.0295136496424675,
- 0.027130531147122383,
- -0.03636109456419945,
- -0.10350526124238968,
- 0.0058523318730294704,
- 0.2065683901309967,
- -0.025114521384239197,
- 0.03158928453922272,
- 0.03033333085477352,
- -0.03160504624247551,
- -0.033083993941545486,
- -0.023491056635975838,
- 0.00015315650671254843,
- 0.028104109689593315,
- 0.11735941469669342,
- 0.03534357249736786,
- -0.06288024038076401,
- 0.027218321338295937,
- 0.06640999764204025,
- 0.011789831332862377,
- 0.02341313660144806,
- 0.011698972433805466,
- -0.046537742018699646,
- 0.011993090622127056,
- 0.028384855017066002,
- -0.032694995403289795,
- 0.03795400634407997,
- 0.042252976447343826,
- -0.02160898968577385,
- -0.02730245143175125,
- -0.05667261406779289,
- -0.11318813264369965,
- 0.023221461102366447,
- -6.347118481463405e-33,
- -0.044754691421985626,
- 0.03209841996431351,
- 0.04742150753736496,
- 0.0704369992017746,
- 0.05768435820937157,
- 0.006455217953771353,
- -0.014574620872735977,
- 0.016910310834646225,
- -0.13941740989685059,
- 0.03156857565045357,
- -0.006083561107516289,
- -0.03266693279147148,
- -0.0012901709415018559,
- 0.07185306400060654,
- 0.08912520855665207,
- -0.06917762756347656,
- -0.00740705756470561,
- 0.00956701673567295,
- 0.006097523495554924,
- -0.03256930783390999,
- -0.06431389600038528,
- -0.04927726835012436,
- -0.015320105478167534,
- 0.07504909485578537,
- 0.04047650098800659,
- -0.101032555103302,
- 0.015078835189342499,
- 0.017731575295329094,
- 0.022939840331673622,
- 0.034062810242176056,
- -0.02701503597199917,
- 0.027868865057826042,
- -0.020515242591500282,
- -0.003219688544049859,
- 0.010050494223833084,
- -0.02740711160004139,
- 0.013917260803282261,
- -0.12587088346481323,
- -0.052471406757831573,
- 0.08095242083072662,
- -0.06071092560887337,
- 0.018016543239355087,
- -0.014720139093697071,
- -0.00032567288144491613,
- -0.010937588289380074,
- 0.0025786866899579763,
- 0.07382960617542267,
- 0.023344697430729866,
- 0.038879554718732834,
- 0.04978087544441223,
- -0.0006462297169491649,
- 0.009939678013324738,
- 0.026608344167470932,
- -0.03599885106086731,
- 0.02759363129734993,
- 0.03519062697887421,
- -0.01909678429365158,
- -0.0072194235399365425,
- -0.012509859167039394,
- -0.03432729095220566,
- 0.018678812310099602,
- 0.08928176015615463,
- -0.09326203912496567,
- 0.0405600406229496,
- 0.0008689705864526331,
- -0.01703494042158127,
- 0.06200755387544632,
- 0.005119758192449808,
- 0.09379516541957855,
- 0.036188285797834396,
- 0.0022374915424734354,
- 0.005476309452205896,
- -0.05282137542963028,
- -0.023548094555735588,
- -0.048878517001867294,
- -0.009012535214424133,
- -0.07931386679410934,
- 0.03822329267859459,
- 0.020523907616734505,
- 0.03739035129547119,
- -0.00753359217196703,
- -0.02223539911210537,
- -0.06896334141492844,
- 0.05095889791846275,
- 0.03041701205074787,
- 0.010613474994897842,
- 0.07087867707014084,
- -0.014667578041553497,
- -0.006829555612057447,
- -0.03583301231265068,
- -0.07115782052278519,
- -0.015165283344686031,
- 0.028945544734597206,
- 0.06070719286799431,
- -0.006529638543725014,
- 4.613722022113382e-33,
- -0.0898510217666626,
- -0.02533680386841297,
- 0.011182053945958614,
- 0.06801676750183105,
- 0.05667048692703247,
- 0.006800502073019743,
- 0.0322512723505497,
- -0.011872909963130951,
- -0.08375626802444458,
- 0.025856345891952515,
- -0.0803862065076828,
- -0.04156975448131561,
- 0.02880121022462845,
- -0.030949683859944344,
- -0.0253024622797966,
- 0.015606289729475975,
- 0.08333434909582138,
- -0.04049568623304367,
- 0.04201640188694,
- 0.057526662945747375,
- 0.0418970063328743,
- -0.080827996134758,
- 0.02177424356341362,
- -0.04145810380578041,
- 0.03340023010969162,
- 0.05806683748960495,
- 0.038216110318899155,
- 0.07260575890541077,
- -0.13302284479141235,
- 0.03475267067551613,
- 0.018627269193530083,
- 0.05900915712118149,
- -0.08531253784894943,
- 0.007609240710735321,
- -0.00848313607275486,
- 0.02695591188967228,
- 0.05820471793413162,
- -0.020663918927311897,
- -0.052990518510341644,
- -0.15935295820236206,
- 0.03434397652745247,
- -0.0323934331536293,
- -0.004959208890795708,
- 0.04061923548579216,
- -0.029401401057839394,
- 0.01201997697353363,
- 0.04823043942451477,
- 0.02358197048306465,
- 0.08598659187555313,
- 0.04014132171869278,
- -0.07620228826999664,
- 0.042495232075452805,
- 0.014691866934299469,
- -0.011913728900253773,
- -0.015909848734736443,
- -0.07094138860702515,
- 0.03933902829885483,
- 0.0355621799826622,
- 0.008259112946689129,
- -0.026378819718956947,
- 0.031673260033130646,
- 0.02865925058722496,
- 0.06721458584070206,
- 0.09061992168426514,
- -0.014871791936457157,
- 0.008535434491932392,
- 0.07035981118679047,
- 0.10497661679983139,
- -0.06011474132537842,
- -0.09756778180599213,
- -0.0016047207172960043,
- 0.03861089050769806,
- -0.012325884774327278,
- -0.06636383384466171,
- -0.09507239609956741,
- -0.019308824092149734,
- -0.00851356703788042,
- -0.054966866970062256,
- -0.031646158546209335,
- -0.02066156640648842,
- 0.03915225714445114,
- -0.04450829699635506,
- 0.02126811258494854,
- 0.021330295130610466,
- -0.022883284837007523,
- 0.03931901231408119,
- -0.058298733085393906,
- 0.011175905354321003,
- 0.010620447807013988,
- 0.07523686438798904,
- -0.05103665962815285,
- -0.0654490664601326,
- -0.028894856572151184,
- 0.024168148636817932,
- -0.012758231721818447,
- -1.2876364863245726e-8,
- -0.024540619924664497,
- 0.03094693087041378,
- 0.02514251321554184,
- -0.07711075246334076,
- 0.05511964485049248,
- -0.07550886273384094,
- -0.09164561331272125,
- 0.008988200686872005,
- 0.0531168095767498,
- 0.044961053878068924,
- -0.03127461299300194,
- -0.040732283145189285,
- 0.025807993486523628,
- 0.12210115045309067,
- 0.04866625368595123,
- -0.05845952779054642,
- 0.0018074138788506389,
- 0.03164827451109886,
- -0.057411715388298035,
- -0.04838600009679794,
- 0.030893830582499504,
- 0.05661754310131073,
- 0.015145543962717056,
- -0.06849174946546555,
- -0.030402187258005142,
- 0.007755457889288664,
- -0.03927059471607208,
- -0.07745812833309174,
- 0.04446249082684517,
- -0.02844017930328846,
- 0.04502798989415169,
- 0.09945864975452423,
- -0.049566999077796936,
- -0.0432688370347023,
- -0.07027855515480042,
- -0.06926008313894272,
- 0.007936853915452957,
- 0.03992348909378052,
- 0.011781015433371067,
- -0.030625605955719948,
- -0.025884347036480904,
- 0.07603160291910172,
- 0.029526757076382637,
- -0.05615511164069176,
- -0.03017624095082283,
- -0.0010191182373091578,
- -0.014266294427216053,
- -0.07157669216394424,
- 0.03525153174996376,
- -0.08518150448799133,
- -0.0010461771162226796,
- -0.020350487902760506,
- 0.030340252444148064,
- 0.007242515217512846,
- 0.08553770184516907,
- -0.044618602842092514,
- -0.001673624268732965,
- -0.002724194433540106,
- -0.020217878744006157,
- -0.004435657989233732,
- 0.03142816945910454,
- -0.029745927080512047,
- 0.0401693619787693,
- -0.0606837272644043
- ]
- },
- {
- "keyword": "plan",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08576750755310059,
- 0.07293770462274551,
- 0.00995326042175293,
- 0.024292470887303352,
- -0.03495132923126221,
- -0.054784126579761505,
- 0.06127581745386124,
- 0.0018037251429632306,
- -0.07268526405096054,
- -0.03845323249697685,
- -0.07859481871128082,
- 0.005351950880140066,
- -0.03241317719221115,
- 0.013997753150761127,
- 0.0004963704268448055,
- -0.011992393992841244,
- 0.0038003078661859035,
- -0.05029989778995514,
- -0.05787840858101845,
- 0.03157704696059227,
- -0.08720705658197403,
- 0.06224413588643074,
- 0.005515658762305975,
- -0.012579127214848995,
- -0.027707191184163094,
- 0.06153632700443268,
- 0.06731153279542923,
- 0.02679215930402279,
- -0.033517543226480484,
- -0.034307487308979034,
- 0.0899384468793869,
- 0.04668731987476349,
- -0.01765953190624714,
- -0.03464125096797943,
- -0.0025291668716818094,
- 0.02168991044163704,
- -0.02902377024292946,
- -0.0516139380633831,
- 0.02999153360724449,
- -0.04568197950720787,
- 0.005052335560321808,
- -0.05482659488916397,
- -0.05835418775677681,
- 0.06191875413060188,
- -0.001600966788828373,
- 0.008015847764909267,
- -0.016243193298578262,
- 0.02110426314175129,
- 0.014561688527464867,
- 0.010870547033846378,
- -0.032466016709804535,
- 0.007440468762069941,
- 0.03777699917554855,
- -0.03931575268507004,
- -0.018575699999928474,
- -0.010610854253172874,
- -0.010205680504441261,
- -0.009296199306845665,
- 0.024913255125284195,
- -0.05575264245271683,
- -0.008575201965868473,
- -0.07357940077781677,
- 0.021604400128126144,
- 0.003844293998554349,
- -0.10342087596654892,
- 0.04989912360906601,
- 0.039737455546855927,
- 0.08715679496526718,
- 0.005752760451287031,
- 0.07084862887859344,
- -0.0023995647206902504,
- 0.002540166722610593,
- -0.0721360370516777,
- -0.04246925562620163,
- 0.007665389683097601,
- 0.06590916961431503,
- 0.053756557404994965,
- -0.014887694269418716,
- 0.09785345941781998,
- -0.03866457939147949,
- -0.08077570050954819,
- 0.05850771442055702,
- -0.05042128264904022,
- 0.04003560543060303,
- -0.031279802322387695,
- 0.018572337925434113,
- 0.027711454778909683,
- -0.01689315028488636,
- -0.06861560791730881,
- -0.0387687087059021,
- 0.014255158603191376,
- -0.020556723698973656,
- -0.016028253361582756,
- -0.0009597499156370759,
- -0.0759681835770607,
- 0.08722511678934097,
- -0.06072090193629265,
- -0.13239121437072754,
- -0.02368246391415596,
- 0.23474383354187012,
- 0.017151981592178345,
- 0.07637397944927216,
- 0.057627420872449875,
- -0.0293740127235651,
- -0.03281675651669502,
- -0.08187925070524216,
- -0.05583745986223221,
- 0.07153546065092087,
- 0.02499327063560486,
- -0.036402154713869095,
- 0.03231489658355713,
- 0.013118534348905087,
- 0.05241445079445839,
- 0.022308291867375374,
- 0.09753687679767609,
- 0.04342005401849747,
- 0.010102808475494385,
- 0.08337389677762985,
- 0.05947679653763771,
- 0.029374154284596443,
- 0.019576657563447952,
- 0.03229095786809921,
- 0.047430362552404404,
- -0.0026907550636678934,
- -0.07447157800197601,
- -0.10292074084281921,
- -0.024638881906867027,
- -4.592620061806199e-33,
- 0.008704153820872307,
- 0.0848904550075531,
- 0.01710454747080803,
- 0.04921560361981392,
- 0.010747318156063557,
- 0.0010541718220338225,
- 0.05355880782008171,
- 0.0141152860596776,
- 0.0007419719477184117,
- 0.08901716023683548,
- -0.03266364708542824,
- -0.05073428526520729,
- -0.06682854145765305,
- 0.07688525319099426,
- 0.04155132174491882,
- -0.05934221297502518,
- -0.0030853580683469772,
- 0.07239457219839096,
- -0.033068008720874786,
- -0.0018393106292933226,
- 0.033559687435626984,
- 0.009069940075278282,
- 0.05120714753866196,
- 0.01955603063106537,
- -0.009942984208464622,
- 0.045048028230667114,
- -0.01938524655997753,
- -0.06302685290575027,
- -0.0007749339565634727,
- 0.021458977833390236,
- -0.017219778150320053,
- 0.051232654601335526,
- -0.09733283519744873,
- -0.01746406964957714,
- -0.023839246481657028,
- 0.030746016651391983,
- -0.05185431241989136,
- -0.038142696022987366,
- -0.0004502453375607729,
- -0.07853652536869049,
- 0.03366653621196747,
- 0.0525471530854702,
- -0.052159614861011505,
- 0.04688938707113266,
- 0.05425861105322838,
- 0.038930006325244904,
- 0.05825507268309593,
- -0.002026313217356801,
- 0.04043634235858917,
- 0.0031689456664025784,
- -0.005234450101852417,
- -0.06000232696533203,
- -0.10687395930290222,
- -0.030692076310515404,
- -0.04525254666805267,
- -0.0010187330190092325,
- -0.020813630893826485,
- -0.13164907693862915,
- 0.09010827541351318,
- 0.05083315446972847,
- 0.1218462660908699,
- 0.0004426826781127602,
- -0.07824181765317917,
- 0.03631448745727539,
- -0.02028622105717659,
- 0.041649047285318375,
- -0.023558350279927254,
- -0.001262766309082508,
- 0.012287773191928864,
- 0.003642779542133212,
- -0.0014022422255948186,
- 0.04236151650547981,
- 0.08384788781404495,
- 0.028313471004366875,
- -0.08653634041547775,
- 0.051549024879932404,
- 0.014513532631099224,
- 0.02345908246934414,
- -0.00296023883856833,
- 0.019917551428079605,
- 0.04608623683452606,
- 0.031549952924251556,
- -0.03506210818886757,
- 0.023822639137506485,
- 0.10471615195274353,
- 0.028592122718691826,
- 0.0771297961473465,
- -0.007839623838663101,
- -0.05161113291978836,
- 0.0363810770213604,
- -0.09511926025152206,
- 0.03790168836712837,
- 0.00038934656186029315,
- 0.05590593442320824,
- -0.0548085942864418,
- 4.361321344472759e-33,
- 0.04768618941307068,
- -0.04565039649605751,
- -0.019115516915917397,
- -0.012875961139798164,
- 0.08261743187904358,
- -0.0754944309592247,
- 0.022117149084806442,
- -0.011259852908551693,
- -0.007702353876084089,
- -0.008587679825723171,
- -0.11384730041027069,
- -0.06826165318489075,
- 0.07640771567821503,
- -0.015806235373020172,
- 0.027928156778216362,
- 0.049079544842243195,
- 0.1402416229248047,
- -0.014399850741028786,
- 0.0031704253051429987,
- 0.031979773193597794,
- -0.08289376646280289,
- -0.04989846795797348,
- -0.09778318554162979,
- 0.012108836323022842,
- -0.045640118420124054,
- 0.07076059281826019,
- 0.09771203249692917,
- 0.03109366074204445,
- -0.010368634946644306,
- 0.00902045052498579,
- 0.000921411148738116,
- -0.12510602176189423,
- -0.08140528947114944,
- -0.03717653825879097,
- 0.06446876376867294,
- 0.09574971348047256,
- 0.05075075849890709,
- 0.026877431198954582,
- -0.009899330325424671,
- 0.04408041387796402,
- 0.0733754113316536,
- -0.05151595175266266,
- -0.01949233189225197,
- 0.11858018487691879,
- -0.04467615857720375,
- 0.010891405865550041,
- 0.04736113175749779,
- 0.016810161992907524,
- -0.0037267657462507486,
- 0.0473250113427639,
- -0.07049588859081268,
- 0.05745964124798775,
- -0.06319174915552139,
- -0.022530287504196167,
- -0.020370731130242348,
- -0.027340760454535484,
- 0.06481780111789703,
- -0.06117970123887062,
- 0.01782645843923092,
- 0.00847791787236929,
- 0.02750794216990471,
- 0.09034443646669388,
- -0.04061833396553993,
- 0.014185923151671886,
- -0.014759250916540623,
- 0.03159664571285248,
- -0.03018364869058132,
- -0.04680607467889786,
- 0.02878672629594803,
- 0.009526217356324196,
- -0.05269313603639603,
- -0.005473668687045574,
- -0.040108758956193924,
- -0.023926226422190666,
- 0.030350802466273308,
- -0.12803125381469727,
- -0.030548151582479477,
- -0.009602061472833157,
- 0.04421841725707054,
- -0.007916589267551899,
- -0.019207395613193512,
- -0.016155079007148743,
- -0.08032400161027908,
- 0.016666067764163017,
- -0.003954876679927111,
- -0.03102502040565014,
- 0.034281354397535324,
- 0.038190342485904694,
- 0.0055443402379751205,
- 0.008188504725694656,
- -0.04781254753470421,
- 0.026899410411715508,
- 0.03035813756287098,
- 0.008296996355056763,
- 0.00015691088628955185,
- -1.3518739017115422e-8,
- -0.007216025609523058,
- 0.0121344905346632,
- 0.052124541252851486,
- -0.01444946601986885,
- 0.05681554973125458,
- 0.018503934144973755,
- -0.02090119943022728,
- -0.005575614515691996,
- 0.04640859365463257,
- 0.05105715990066528,
- 0.03692815825343132,
- 0.031287070363759995,
- 0.04891083389520645,
- 0.03237403184175491,
- 0.008628364652395248,
- -0.030258027836680412,
- 0.02134864404797554,
- -0.012394995428621769,
- 0.004678648430854082,
- -0.009525150991976261,
- -0.11926364153623581,
- -0.05374553054571152,
- 0.009188026189804077,
- -0.018083594739437103,
- 0.026454752311110497,
- 0.013432023115456104,
- -0.027748648077249527,
- 0.12129801511764526,
- 0.05594692379236221,
- 0.056903839111328125,
- -0.054117582738399506,
- -0.030333667993545532,
- -0.050388604402542114,
- 0.009111002087593079,
- 0.0021080567967146635,
- -0.07816910743713379,
- -0.050158265978097916,
- -0.02168513834476471,
- 0.07243528217077255,
- -0.019197918474674225,
- -0.031850725412368774,
- 0.0063905795104801655,
- 0.031044209375977516,
- -0.03934720903635025,
- -0.06362166255712509,
- -0.029238605871796608,
- -0.0038633253425359726,
- -0.06538736820220947,
- 0.002708120970055461,
- -0.05923698842525482,
- -0.07285653054714203,
- -0.03061738982796669,
- 0.06279714405536652,
- 0.11216963082551956,
- 0.09274467825889587,
- 0.06009193882346153,
- -5.136558911544853e-7,
- -0.03451859578490257,
- -0.022026361897587776,
- 0.0288656298071146,
- 0.13314422965049744,
- -0.05270324647426605,
- -0.033322613686323166,
- 0.011160707101225853
- ]
- },
- {
- "keyword": "strategy",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.014301019720733166,
- 0.09848740696907043,
- -0.05083406716585159,
- -0.05378143489360809,
- -0.026175955310463905,
- 0.03751689940690994,
- 0.04624442756175995,
- -0.019773142412304878,
- -0.05758842080831528,
- 0.019644444808363914,
- 0.008011135272681713,
- 0.05377643555402756,
- 0.02972724474966526,
- -0.0002910471230279654,
- 0.0033323022071272135,
- 0.001090342178940773,
- -0.0481964573264122,
- 0.02880932204425335,
- -0.02920280024409294,
- -0.03327298164367676,
- -0.0782080739736557,
- -0.04742437228560448,
- 0.08119688928127289,
- -0.030722368508577347,
- -0.04509764537215233,
- 0.05033499374985695,
- -0.02656930312514305,
- -0.0026387511752545834,
- -0.046937160193920135,
- -0.11560314893722534,
- 0.1214970126748085,
- -0.017995741218328476,
- -0.019253212958574295,
- -0.04262453317642212,
- -0.1025308147072792,
- 0.059326283633708954,
- -0.07247546315193176,
- -0.027537642046809196,
- 0.09164591878652573,
- 0.01640164852142334,
- -0.047390542924404144,
- -0.08279991149902344,
- -0.028449464589357376,
- -0.00865755695849657,
- -0.016122104600071907,
- 0.02507510595023632,
- -0.008830452337861061,
- 0.02802056074142456,
- 0.04805556312203407,
- -0.04684101417660713,
- -0.06098473072052002,
- -0.03501882031559944,
- -0.026105601340532303,
- -0.04165362939238548,
- 0.02606564573943615,
- -0.004521478433161974,
- -0.013971813954412937,
- -0.00951541867107153,
- 0.08441415429115295,
- -0.04627878591418266,
- 0.10144083201885223,
- -0.04270162060856819,
- -0.04025694727897644,
- 0.006183184217661619,
- -0.00601535476744175,
- -0.030410656705498695,
- 0.03941444307565689,
- 0.06177378073334694,
- -0.024849098175764084,
- 0.008039026521146297,
- 0.04805393144488335,
- -0.04268784821033478,
- -0.020280495285987854,
- -0.00017327771638520062,
- 0.025211837142705917,
- 0.05585980787873268,
- 0.048033617436885834,
- 0.0007780641899444163,
- 0.06167556345462799,
- -0.022494137287139893,
- 0.03412657231092453,
- -0.009990324266254902,
- -0.024647828191518784,
- 0.06482657790184021,
- 0.035748712718486786,
- -0.014353102073073387,
- -0.03837304189801216,
- -0.04763822257518768,
- 0.10063707083463669,
- -0.024050040170550346,
- -0.053340986371040344,
- 0.011637169867753983,
- 0.06903321295976639,
- 0.016076894477009773,
- -0.0545271597802639,
- 0.05991606414318085,
- -0.02940743789076805,
- -0.07350412011146545,
- -0.035565901547670364,
- 0.2542450428009033,
- 0.054546426981687546,
- 0.10033105313777924,
- -0.006939289625734091,
- -0.06795112788677216,
- -0.00022812726092524827,
- -0.053276095539331436,
- -0.02876507118344307,
- 0.07772024720907211,
- -0.000042995019612135366,
- -0.04360517859458923,
- 0.012812224216759205,
- 0.025923244655132294,
- -0.030958106741309166,
- 0.0014517068630084395,
- -0.02613256312906742,
- -0.01919330097734928,
- -0.051415689289569855,
- 0.055343735963106155,
- -0.05212564393877983,
- 0.011917989701032639,
- 0.011153014376759529,
- 0.009685407392680645,
- 0.018251048400998116,
- -0.0015157629968598485,
- -0.05804997682571411,
- 0.004491028375923634,
- -0.04698783531785011,
- -6.327677274268742e-33,
- -0.047142498195171356,
- -0.04238389432430267,
- 0.009679167531430721,
- 0.09777514636516571,
- -0.034749653190374374,
- 0.0042159478180110455,
- 0.06410523504018784,
- -0.024768659844994545,
- -0.04965651035308838,
- -0.0003517575387377292,
- -0.02212764136493206,
- 0.04842232167720795,
- -0.059588078409433365,
- 0.002558324718847871,
- 0.18378832936286926,
- -0.044015996158123016,
- -0.0444859154522419,
- 0.04152831807732582,
- 0.0371050126850605,
- -0.031349554657936096,
- 0.01955355703830719,
- -0.004641147796064615,
- 0.036210548132658005,
- -0.051607005298137665,
- 0.07653654366731644,
- 0.01741267740726471,
- -0.032707467675209045,
- -0.03607134521007538,
- -0.07262613624334335,
- 0.018723327666521072,
- -0.012263985350728035,
- 0.021904191002249718,
- -0.1443696767091751,
- -0.033750806003808975,
- 0.003987511154264212,
- 0.004299353342503309,
- -0.04490956664085388,
- -0.02270093746483326,
- 0.005840887315571308,
- 0.03032764233648777,
- -0.04755198583006859,
- 0.023025529459118843,
- -0.09386257827281952,
- 0.013870242983102798,
- 0.07362126559019089,
- 0.0550515316426754,
- 0.0026786592788994312,
- -0.010925211943686008,
- -0.06318771094083786,
- -0.013395898044109344,
- 0.003280806588009,
- -0.03731542080640793,
- -0.02074730582535267,
- -0.03977541998028755,
- 0.03529367968440056,
- -0.005673905368894339,
- 0.013640136457979679,
- -0.01514222752302885,
- 0.0008136903052218258,
- -0.001150426804088056,
- 0.09706586599349976,
- -0.035337626934051514,
- -0.09358250349760056,
- 0.045604411512613297,
- -0.041221875697374344,
- 0.015981797128915787,
- 0.01507919654250145,
- -0.037454623728990555,
- 0.02036179229617119,
- -0.0008198319701477885,
- 0.029229603707790375,
- 0.004036837723106146,
- 0.08260609209537506,
- 0.0173473060131073,
- -0.055796366184949875,
- 0.021249882876873016,
- 0.028174929320812225,
- 0.06981851905584335,
- 0.03783345967531204,
- -0.07536644488573074,
- 0.019762147217988968,
- 0.025619439780712128,
- 0.012799150310456753,
- 0.0032980823889374733,
- 0.03089158795773983,
- 0.024988437071442604,
- 0.07754513621330261,
- -0.053281016647815704,
- -0.05116388574242592,
- 0.08182794600725174,
- -0.16005003452301025,
- 0.04378751665353775,
- -0.0029874625615775585,
- 0.03326292708516121,
- 0.029276235029101372,
- 5.215912349676285e-33,
- 0.011845238506793976,
- 0.0736791118979454,
- -0.04928018897771835,
- -0.01600920595228672,
- 0.021556805819272995,
- 0.01346192043274641,
- -0.009875948540866375,
- -0.04399168863892555,
- -0.03750521317124367,
- 0.030018450692296028,
- -0.0587904155254364,
- 0.06012042239308357,
- 0.04409850388765335,
- 0.029074177145957947,
- -0.021926861256361008,
- -0.06698968261480331,
- 0.1474515050649643,
- -0.021451253443956375,
- -0.019498227164149284,
- -0.044865574687719345,
- -0.01782129518687725,
- -0.011851762421429157,
- -0.08994268625974655,
- 0.02686743251979351,
- -0.007907281629741192,
- 0.0335785411298275,
- 0.031070755794644356,
- -0.04333987832069397,
- -0.06376777589321136,
- -0.013478762470185757,
- 0.046610359102487564,
- -0.10069461911916733,
- 0.02806924656033516,
- 0.019430331885814667,
- 0.0005799997597932816,
- 0.1114257201552391,
- -0.008134397678077221,
- -0.02171437442302704,
- 0.003741147927939892,
- 0.1128620132803917,
- 0.012447855435311794,
- 0.014764638617634773,
- -0.03299944847822189,
- 0.0540568083524704,
- -0.043862227350473404,
- 0.04399401322007179,
- 0.08414843678474426,
- -0.029257724061608315,
- 0.00023920138482935727,
- 0.05340798199176788,
- -0.029111556708812714,
- 0.01656222529709339,
- -0.0649947077035904,
- -0.09434764832258224,
- -0.07265004515647888,
- 0.01473298016935587,
- 0.025699710473418236,
- 0.03469047695398331,
- -0.02401176281273365,
- 0.03364122286438942,
- 0.07296906411647797,
- 0.08372568339109421,
- -0.045795951038599014,
- 0.05421693995594978,
- -0.040026016533374786,
- 0.03680014982819557,
- -0.05547085031867027,
- 0.012213400565087795,
- 0.05147829279303551,
- 0.0299337487667799,
- -0.02396521531045437,
- 0.08771420270204544,
- -0.04494542255997658,
- 0.04601513594388962,
- -0.03588865324854851,
- 0.0007766147027723491,
- -0.15014445781707764,
- 0.019260261207818985,
- 0.006789319682866335,
- 0.04522184282541275,
- -0.040460579097270966,
- -0.0346466526389122,
- 0.0004157113144174218,
- 0.055856648832559586,
- -0.06538664549589157,
- 0.10042789578437805,
- 0.04152999073266983,
- 0.014994479715824127,
- 0.009772791527211666,
- -0.04963042214512825,
- -0.01313403807580471,
- -0.03482756391167641,
- 0.05332116410136223,
- 0.047836750745773315,
- 0.031336113810539246,
- -1.3060366121919742e-8,
- -0.03867350146174431,
- -0.016855038702487946,
- 0.16654692590236664,
- 0.08203916996717453,
- 0.029375489801168442,
- 0.044550325721502304,
- -0.0644601359963417,
- -0.029797153547406197,
- 0.04310202598571777,
- 0.0043056127615273,
- 0.007029813714325428,
- 0.045010339468717575,
- 0.009984368458390236,
- 0.04609856754541397,
- 0.06287000328302383,
- -0.038736745715141296,
- 0.03745748847723007,
- 0.003912669140845537,
- -0.08503485471010208,
- 0.026168817654252052,
- -0.012766360305249691,
- 0.03610978648066521,
- -0.04200839623808861,
- -0.01352566760033369,
- -0.005101674702018499,
- 0.027993014082312584,
- 0.0025466284714639187,
- 0.05439946800470352,
- 0.044638022780418396,
- 0.0789349377155304,
- 0.056027866899967194,
- -0.01319567859172821,
- -0.015281965024769306,
- -0.0017180123832076788,
- -0.06816192716360092,
- 0.015158327296376228,
- 0.0028632599860429764,
- 0.005439470522105694,
- 0.08172772824764252,
- -0.04008997604250908,
- -0.06687406450510025,
- 0.022329056635499,
- 0.027372365817427635,
- 0.024218585342168808,
- -0.08238787204027176,
- 0.02894715778529644,
- -0.05567609891295433,
- -0.023488380014896393,
- -0.0014758373145014048,
- -0.10963599383831024,
- -0.0034982506185770035,
- -0.013832084834575653,
- -0.0037080200854688883,
- 0.1249806359410286,
- 0.07381707429885864,
- -0.013206378556787968,
- 0.027506083250045776,
- 0.004906489979475737,
- -0.09365662932395935,
- 0.04897154122591019,
- 0.035644832998514175,
- -0.04762962460517883,
- -0.005269432440400124,
- 0.028100714087486267
- ]
- },
- {
- "keyword": "roadmap",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.010310959070920944,
- 0.06218874454498291,
- 0.06863715499639511,
- 0.0015751523897051811,
- 0.0180328581482172,
- -0.0032575190998613834,
- 0.03202279657125473,
- -0.021269796416163445,
- -0.10228891670703888,
- -0.03966281935572624,
- -0.02682092972099781,
- -0.10581580549478531,
- 0.018651971593499184,
- 0.004951301496475935,
- -0.023877248167991638,
- -0.003465985180810094,
- 0.007370996288955212,
- -0.03607355058193207,
- 0.0283257644623518,
- -0.056840553879737854,
- -0.030484193935990334,
- 0.03867100551724434,
- -0.043843381106853485,
- -0.022727802395820618,
- -0.012571118772029877,
- 0.1506902575492859,
- 0.08485917001962662,
- 0.030394090339541435,
- -0.05936865136027336,
- -0.06847378611564636,
- 0.011649283580482006,
- 0.022722721099853516,
- -0.0014612195082008839,
- -0.033494316041469574,
- 0.0063621108420193195,
- 0.0829518660902977,
- 0.07404282689094543,
- -0.0014887062134221196,
- 0.028867220506072044,
- -0.0026729879900813103,
- -0.04304545000195503,
- -0.015315044671297073,
- -0.008197581395506859,
- 0.022487221285700798,
- 0.11644335836172104,
- -0.05324810370802879,
- -0.009763034991919994,
- -0.002085607498884201,
- -0.044291649013757706,
- -0.005050623789429665,
- -0.10398206114768982,
- -0.03678647428750992,
- -0.0541500560939312,
- 0.01390228420495987,
- -0.013146613724529743,
- 0.041641246527433395,
- 0.010018723085522652,
- 0.011524178087711334,
- 0.0006987250526435673,
- -0.042640481144189835,
- -0.015417703427374363,
- -0.03029259853065014,
- -0.0524609237909317,
- 0.031101729720830917,
- 0.15452812612056732,
- -0.04607057571411133,
- 0.03489034250378609,
- 0.031422559171915054,
- 0.03428542613983154,
- 0.024199780076742172,
- -0.07504749298095703,
- 0.026679547503590584,
- -0.027342140674591064,
- -0.0110873281955719,
- 0.04038688540458679,
- 0.07732891291379929,
- 0.0242269616574049,
- 0.023664914071559906,
- 0.0756598487496376,
- -0.10961543023586273,
- 0.005503414198756218,
- -0.010039417073130608,
- -0.03740064799785614,
- 0.09547501057386398,
- -0.00696835620328784,
- -0.0305410735309124,
- -0.023623377084732056,
- -0.0502154640853405,
- 0.027522260323166847,
- 0.014686508104205132,
- -0.015225817449390888,
- -0.04858752340078354,
- -0.0014207204803824425,
- 0.030332939699292183,
- -0.05216493085026741,
- 0.02712324634194374,
- -0.022162826731801033,
- -0.13926531374454498,
- 0.017679471522569656,
- 0.17046159505844116,
- -0.04722016304731369,
- -0.0004670828056987375,
- 0.03278685361146927,
- -0.06973385810852051,
- -0.013497757725417614,
- 0.009388189762830734,
- -0.010058222338557243,
- -0.00652743224054575,
- 0.00493441428989172,
- 0.012139242142438889,
- 0.015272754244506359,
- -0.04368828982114792,
- -0.06528095155954361,
- -0.040795329958200455,
- 0.04142434522509575,
- -0.004579103086143732,
- -0.01882638782262802,
- 0.017021065577864647,
- -0.031095605343580246,
- 0.0346091166138649,
- -0.09495498985052109,
- -0.07129139453172684,
- 0.022153694182634354,
- -0.03127278760075569,
- -0.07762571424245834,
- -0.03155222535133362,
- -0.02943555824458599,
- -1.297127618583166e-33,
- 0.025082705542445183,
- 0.013585694134235382,
- 0.057904068380594254,
- 0.1263982504606247,
- 0.024058112874627113,
- -0.08024829626083374,
- -0.02138081006705761,
- -0.0071101076900959015,
- -0.08131721615791321,
- -0.017014140263199806,
- 0.034679774194955826,
- 0.055897243320941925,
- -0.09298389405012131,
- 0.039798934012651443,
- 0.13439203798770905,
- -0.03324398025870323,
- -0.07099645584821701,
- 0.010034842416644096,
- -0.04516137018799782,
- 0.026448573917150497,
- -0.013996175490319729,
- 0.022939743474125862,
- 0.007775926496833563,
- -0.017635753378272057,
- 0.10774204879999161,
- 0.050159674137830734,
- -0.0158416498452425,
- -0.0015788704622536898,
- 0.04114827513694763,
- 0.026351816952228546,
- 0.04035785421729088,
- 0.11032667011022568,
- -0.03757830709218979,
- 0.003249549074098468,
- 0.06068560853600502,
- 0.09713491797447205,
- -0.057803183794021606,
- -0.13510330021381378,
- -0.023890692740678787,
- -0.04844750463962555,
- -0.016024179756641388,
- -0.07335751503705978,
- -0.07073885947465897,
- -0.006011922378093004,
- 0.06440158188343048,
- 0.0886572003364563,
- -0.01942523382604122,
- -0.041976407170295715,
- 0.03137046843767166,
- -0.04099458456039429,
- 0.005218771751970053,
- 0.0363352969288826,
- -0.030028998851776123,
- -0.010658602230250835,
- -0.014277486130595207,
- -0.047365110367536545,
- -0.03628760576248169,
- -0.0748385637998581,
- 0.050047267228364944,
- 0.06735216826200485,
- 0.006707048509269953,
- 0.013992657884955406,
- 0.04166805371642113,
- 0.031137635931372643,
- -0.06584475189447403,
- 0.010414401069283485,
- 0.008310901932418346,
- -0.055318038910627365,
- 0.057946618646383286,
- 0.019833916798233986,
- -0.013120380230247974,
- 0.004816005006432533,
- 0.09061900526285172,
- 0.03960125893354416,
- -0.02571231685578823,
- -0.04407234117388725,
- -0.049086809158325195,
- 0.04633381962776184,
- -0.05066878721117973,
- 0.0611906573176384,
- -0.09433743357658386,
- -0.014604679308831692,
- -0.01988106593489647,
- -0.038810696452856064,
- 0.11752969771623611,
- -0.07611652463674545,
- 0.01661366969347,
- 0.013882175087928772,
- 0.04415081813931465,
- 0.003017378505319357,
- -0.10097561776638031,
- 0.08269468694925308,
- -0.005946103483438492,
- 0.046545762568712234,
- 0.0076342239044606686,
- -5.264811904480035e-35,
- -0.05171578377485275,
- -0.0741438940167427,
- -0.028593089431524277,
- 0.11605254560709,
- 0.013121159747242928,
- -0.013919547200202942,
- 0.02028963528573513,
- -0.05541393533349037,
- 0.04299505800008774,
- 0.12457317858934402,
- -0.05953957140445709,
- 0.03405650705099106,
- 0.060194045305252075,
- 0.020705215632915497,
- 0.029084723442792892,
- -0.06975603848695755,
- 0.11017604917287827,
- -0.06535036861896515,
- -0.008052836172282696,
- 0.0718405619263649,
- 0.008333367295563221,
- 0.03283862769603729,
- -0.10891914367675781,
- -0.03712271898984909,
- 0.002937339013442397,
- 0.028307855129241943,
- 0.0019062632927671075,
- -0.04840315878391266,
- -0.09002337604761124,
- -0.07784049957990646,
- 0.027519850060343742,
- -0.021450234577059746,
- -0.028564689680933952,
- -0.04051332548260689,
- -0.01972309686243534,
- 0.06921868771314621,
- 0.043884191662073135,
- 0.032940711826086044,
- -0.06328394263982773,
- 0.012224444188177586,
- 0.04238349571824074,
- -0.0022961951326578856,
- -0.06564705073833466,
- 0.0111331632360816,
- -0.009046089835464954,
- -0.02719722129404545,
- 0.010220364667475224,
- 0.09375505149364471,
- 0.005609424319118261,
- 0.006471422500908375,
- 0.04361731559038162,
- 0.07478386163711548,
- -0.032148852944374084,
- -0.0740460455417633,
- -0.0028709699399769306,
- 0.028581766411662102,
- -0.00965496152639389,
- -0.009378252550959587,
- 0.10382295399904251,
- 0.09541524946689606,
- -0.016123909503221512,
- 0.009709445759654045,
- -0.030522428452968597,
- 0.07766219973564148,
- -0.0030886714812368155,
- -0.059628523886203766,
- -0.004879477899521589,
- -0.0961606577038765,
- -0.028738126158714294,
- 0.01233719103038311,
- -0.06316179782152176,
- 0.03924965485930443,
- -0.022723352536559105,
- 0.07779250293970108,
- 0.02685016766190529,
- -0.023931942880153656,
- -0.06537934392690659,
- 0.06615789979696274,
- -0.014351855963468552,
- -0.08124227076768875,
- 0.01055451575666666,
- -0.08106748014688492,
- -0.005299938842654228,
- 0.14722967147827148,
- -0.029425378888845444,
- 0.06978954374790192,
- 0.011568072251975536,
- -0.004622698295861483,
- 0.0008805138058960438,
- 0.038577765226364136,
- 0.007661554962396622,
- -0.008532284758985043,
- -0.06453195959329605,
- 0.05821053311228752,
- -0.049458976835012436,
- -1.6189831697488444e-8,
- -0.01987357623875141,
- 0.06534082442522049,
- 0.036613959819078445,
- 0.02576960064470768,
- -0.006670332979410887,
- 0.02681572176516056,
- 0.08555341511964798,
- 0.034135423600673676,
- 0.07584156841039658,
- 0.08142264187335968,
- 0.01819007284939289,
- 0.01617606356739998,
- -0.01005989033728838,
- 0.057886045426130295,
- 0.042210936546325684,
- -0.06705664098262787,
- -0.009440313093364239,
- 0.006209222134202719,
- -0.051687803119421005,
- 0.033884160220623016,
- -0.02488236129283905,
- 0.034647226333618164,
- 0.006393430754542351,
- 0.04832517355680466,
- 0.06760745495557785,
- -0.02339901030063629,
- -0.019136648625135422,
- 0.06985840201377869,
- 0.0006340062245726585,
- -0.03539657220244408,
- -0.04031291604042053,
- 0.0001783442567102611,
- -0.007043128367513418,
- -0.0034331739880144596,
- 0.048142921179533005,
- -0.005914146080613136,
- 0.04113297536969185,
- 0.02092047408223152,
- 0.0004251737555023283,
- 0.015281928703188896,
- -0.009435447864234447,
- 0.043354541063308716,
- 0.06848543137311935,
- -0.037012964487075806,
- -0.08553888648748398,
- 0.04541632533073425,
- -0.013177632354199886,
- -0.061386529356241226,
- -0.021924758329987526,
- -0.034961652010679245,
- -0.08768389374017715,
- -0.024512160569429398,
- 0.01614530384540558,
- 0.021214378997683525,
- 0.07447700947523117,
- 0.028377270326018333,
- 0.016087695956230164,
- -0.02603503316640854,
- -0.07234984636306763,
- 0.04120266065001488,
- 0.02865465171635151,
- -0.04793872311711311,
- -0.0485755018889904,
- 0.019517632201313972
- ]
- },
- {
- "keyword": "milestone",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.041074417531490326,
- 0.09177329391241074,
- -0.013162275776267052,
- -0.022983316332101822,
- -0.01891065575182438,
- 0.04510343447327614,
- 0.014829495921730995,
- 0.06198953464627266,
- -0.016244810074567795,
- -0.051091715693473816,
- 0.02248559147119522,
- -0.09029557555913925,
- 0.012857955880463123,
- 0.013544479385018349,
- 0.04793215170502663,
- 0.0014525308506563306,
- -0.042423542588949203,
- 0.040816888213157654,
- -0.021373316645622253,
- -0.11592845618724823,
- -0.14060333371162415,
- -0.05217516049742699,
- 0.04067990183830261,
- 0.08296223729848862,
- 0.022120801731944084,
- 0.09780483692884445,
- -0.007189918775111437,
- -0.032122813165187836,
- 0.03659696504473686,
- -0.05108557641506195,
- 0.005527577828615904,
- -0.011977873742580414,
- 0.04309063404798508,
- -0.017154807224869728,
- 0.014993026852607727,
- 0.04978080466389656,
- 0.04077623412013054,
- -0.08218272030353546,
- -0.021258333697915077,
- -0.06938054412603378,
- -0.050107888877391815,
- -0.08821800351142883,
- -0.03208516538143158,
- 0.015454152598977089,
- 0.05785168707370758,
- -0.06382174044847488,
- 0.0015662896912544966,
- 0.0023448101710528135,
- -0.07491403818130493,
- 0.06284196674823761,
- 0.004217080771923065,
- -0.08889679610729218,
- 0.010624902322888374,
- -0.008556656539440155,
- 0.03334486857056618,
- 0.121069997549057,
- -0.0009994651190936565,
- -0.024504046887159348,
- 0.019144311547279358,
- -0.04241975396871567,
- -0.07293210178613663,
- -0.02735425904393196,
- -0.05285859480500221,
- 0.005521512124687433,
- 0.0400538444519043,
- -0.014136501587927341,
- 0.0018720891093835235,
- -0.04222136363387108,
- 0.04376903548836708,
- 0.015102742239832878,
- 0.009009418077766895,
- -0.028845084831118584,
- 0.0989435687661171,
- 0.0027866146992892027,
- 0.03145012632012367,
- 0.02223353646695614,
- 0.005361814983189106,
- 0.022637024521827698,
- 0.06871825456619263,
- -0.032510027289390564,
- -0.008834929205477238,
- -0.008502861484885216,
- -0.01743294484913349,
- 0.0180196575820446,
- -0.04540098085999489,
- -0.00916847214102745,
- -0.024309305474162102,
- 0.01283283531665802,
- 0.012710114941000938,
- -0.02976333163678646,
- -0.01411404274404049,
- 0.007651770953088999,
- -0.022685416042804718,
- -0.008262683637440205,
- -0.13484375178813934,
- -0.017895638942718506,
- -0.02980283834040165,
- -0.12116841971874237,
- -0.019576475024223328,
- 0.2195320427417755,
- -0.03962113335728645,
- 0.10085756331682205,
- -0.021944701671600342,
- -0.017327284440398216,
- 0.02219219319522381,
- -0.04119320586323738,
- 0.004858353175222874,
- 0.00942195300012827,
- -0.03248659893870354,
- 0.02778063341975212,
- -0.03143411874771118,
- -0.06285347789525986,
- 0.01939154975116253,
- 0.021816175431013107,
- -0.0032767695374786854,
- 0.038266219198703766,
- -0.03245658427476883,
- -0.0024286971893161535,
- 0.050383102148771286,
- -0.02868717722594738,
- 0.05862100049853325,
- 0.04449420049786568,
- 0.022914277389645576,
- 0.021581148728728294,
- -0.09916312247514725,
- -0.0911637470126152,
- 0.04285906255245209,
- -5.6799883358313086e-33,
- 0.05870959535241127,
- 0.04984643682837486,
- 0.025404907763004303,
- 0.06782712787389755,
- -0.025094207376241684,
- 0.03516962751746178,
- 0.01144346036016941,
- -0.04263819009065628,
- -0.04047558829188347,
- -0.0017234181286767125,
- -0.018027886748313904,
- -0.0269794799387455,
- 0.009978579357266426,
- -0.07259207963943481,
- 0.06265068799257278,
- -0.0857134461402893,
- 0.02140924707055092,
- 0.008830578066408634,
- -0.026486286893486977,
- 0.049655552953481674,
- 0.009550287388265133,
- 0.017705591395497322,
- -0.03331663832068443,
- 0.020259108394384384,
- 0.04390589892864227,
- 0.017092131078243256,
- 0.0009024930186569691,
- -0.01541081815958023,
- -0.040136922150850296,
- 0.012837336398661137,
- 0.05030379444360733,
- 0.030766360461711884,
- -0.0222343597561121,
- -0.02521694079041481,
- 0.018666351214051247,
- 0.0195913165807724,
- 0.004495558328926563,
- -0.09411054104566574,
- 0.033717893064022064,
- -0.008213202469050884,
- -0.03744150698184967,
- -0.05877814069390297,
- -0.04582025855779648,
- -0.009123852476477623,
- -0.07519075274467468,
- 0.03143751621246338,
- 0.08649614453315735,
- -0.00914167333394289,
- 0.11440121382474899,
- -0.07792222499847412,
- -0.035943303257226944,
- 0.04428504779934883,
- -0.053167905658483505,
- -0.0908043310046196,
- 0.0002718885079957545,
- -0.03722377121448517,
- -0.023666484281420708,
- -0.04558451101183891,
- -0.015856632962822914,
- -0.013796886429190636,
- 0.11063186824321747,
- -0.03438245505094528,
- -0.07803578674793243,
- -0.03089129738509655,
- -0.09556297957897186,
- 0.02121989242732525,
- -0.022809719666838646,
- 0.00012875393440481275,
- 0.08805970102548599,
- 0.07885607331991196,
- -0.018607577309012413,
- 0.01592050865292549,
- 0.1065220907330513,
- -0.026367414742708206,
- 0.04784104600548744,
- 0.017132431268692017,
- 0.06786300987005234,
- 0.020383525639772415,
- 0.009949778206646442,
- 0.031946081668138504,
- -0.10948006808757782,
- -0.005839528050273657,
- 0.024633171036839485,
- -0.019562561064958572,
- 0.0873810276389122,
- -0.0201927050948143,
- 0.011082184500992298,
- 0.0183215644210577,
- -0.08111352473497391,
- 0.02873115800321102,
- -0.07664475589990616,
- -0.004828355740755796,
- 0.052241355180740356,
- 0.08714393526315689,
- -0.005051805172115564,
- 4.2849388235822806e-33,
- 0.044999442994594574,
- 0.04023854807019234,
- 0.010999546386301517,
- 0.006331434473395348,
- 0.056923940777778625,
- -0.04534928500652313,
- -0.058805957436561584,
- 0.08533361554145813,
- -0.024060742929577827,
- 0.144235298037529,
- 0.003595610149204731,
- 0.012062324211001396,
- -0.004843634553253651,
- -0.06478743255138397,
- 0.026597414165735245,
- 0.041701607406139374,
- 0.025165913626551628,
- 0.03892739489674568,
- 0.02466348186135292,
- 0.05583604797720909,
- 0.04647094011306763,
- -0.02867605909705162,
- -0.12890763580799103,
- -0.030750013887882233,
- 0.013978463597595692,
- 0.039459746330976486,
- 0.0290876142680645,
- -0.04685840755701065,
- -0.0403532050549984,
- -0.04201972484588623,
- -0.010775838978588581,
- -0.050806961953639984,
- -0.0331432931125164,
- -0.03523343801498413,
- 0.025418130680918694,
- -0.00005448428782983683,
- -0.021413739770650864,
- -0.054638393223285675,
- -0.06693754345178604,
- -0.01602485403418541,
- 0.028186270967125893,
- -0.003075578948482871,
- -0.023273063823580742,
- 0.0880102589726448,
- 0.06833043694496155,
- 0.007162279915064573,
- 0.042598359286785126,
- 0.1058339849114418,
- -0.0022115889005362988,
- 0.05590161681175232,
- 0.008828471414744854,
- 0.03863002732396126,
- 0.02363589219748974,
- 0.043156299740076065,
- 0.03238017112016678,
- 0.10398360341787338,
- -0.09266721457242966,
- -0.01829678937792778,
- 0.027432391420006752,
- 0.012893295846879482,
- 0.04842628166079521,
- -0.010960438288748264,
- -0.01564190164208412,
- 0.04202054813504219,
- 0.02088233456015587,
- -0.0320127047598362,
- 0.0363125316798687,
- 0.05932837352156639,
- -0.10082168877124786,
- 0.052511315792798996,
- -0.028982926160097122,
- 0.07149896025657654,
- 0.011517839506268501,
- 0.03517851606011391,
- -0.03204427286982536,
- -0.11043480038642883,
- -0.06592732667922974,
- -0.07317259907722473,
- -0.01989474892616272,
- -0.04329553246498108,
- -0.027748646214604378,
- 0.003587646409869194,
- -0.019514232873916626,
- 0.049415867775678635,
- 0.02590659074485302,
- 0.031393975019454956,
- 0.06824487447738647,
- 0.0076151504181325436,
- 0.0006541595212183893,
- 0.010230042971670628,
- -0.007331240922212601,
- 0.01490753423422575,
- -0.0664122998714447,
- 0.057758912444114685,
- 0.06439289450645447,
- -1.189720411076678e-8,
- -0.03207352012395859,
- 0.0821581780910492,
- -0.17747467756271362,
- -0.0027433952782303095,
- 0.11504034698009491,
- 0.021825915202498436,
- -0.02680257149040699,
- 0.03853398561477661,
- 0.011523192748427391,
- 0.019304737448692322,
- 0.0043114423751831055,
- -0.011028409935534,
- -0.03747480362653732,
- -0.011590150184929371,
- -0.0044106715358793736,
- -0.02278885617852211,
- -0.04916940629482269,
- 0.0704544261097908,
- -0.021905003115534782,
- 0.0062410575337708,
- -0.0022981392685323954,
- 0.015267007984220982,
- 0.010794625617563725,
- -0.08112579584121704,
- -0.07546444982290268,
- -0.002456186106428504,
- -0.008592149242758751,
- 0.16877493262290955,
- 0.026075225323438644,
- -0.06440147012472153,
- 0.039408400654792786,
- -0.03150134161114693,
- 0.03239010274410248,
- -0.04856077954173088,
- -0.013261878862977028,
- 0.0007367864018306136,
- 0.003815008094534278,
- 0.05054235830903053,
- 0.03169504925608635,
- 0.061568643897771835,
- 0.02524111047387123,
- 0.006069853436201811,
- 0.06795251369476318,
- 0.07608457654714584,
- -0.07928977906703949,
- -0.009793587028980255,
- -0.07753659039735794,
- -0.042353350669145584,
- -0.03671594336628914,
- -0.03412787243723869,
- -0.031366199254989624,
- 0.005234717391431332,
- 0.03271748125553131,
- 0.019262902438640594,
- 0.022377735003829002,
- 0.03172535449266434,
- -0.006458330433815718,
- -0.02355320192873478,
- -0.05246809497475624,
- 0.05592157691717148,
- 0.14827653765678406,
- -0.04280988872051239,
- 0.07653364539146423,
- -0.036550894379615784
- ]
- },
- {
- "keyword": "deliverable",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.08070610463619232,
- -0.00254040933214128,
- -0.02940557338297367,
- 0.03318505734205246,
- -0.0528624951839447,
- -0.006699277553707361,
- 0.03427274152636528,
- -0.03853835165500641,
- -0.025139514356851578,
- 0.03357378765940666,
- 0.01979869231581688,
- 0.0364673025906086,
- -0.006028697360306978,
- 0.046307533979415894,
- -0.014555050991475582,
- -0.041841086000204086,
- 0.09099607169628143,
- -0.03228772059082985,
- -0.07396218925714493,
- 0.015685413032770157,
- 0.04973027855157852,
- 0.06361588090658188,
- -0.0035553881898522377,
- 0.02029883861541748,
- 0.012503297999501228,
- 0.014876210130751133,
- -0.11898486316204071,
- -0.025265755131840706,
- -0.03702237084507942,
- -0.1264578104019165,
- 0.07361365854740143,
- -0.050217676907777786,
- 0.00394099485129118,
- -0.015023315325379372,
- 0.03584183380007744,
- 0.08920565992593765,
- 0.006275101564824581,
- -0.007387071382254362,
- 0.03056798316538334,
- -0.04096655920147896,
- 0.01602526381611824,
- -0.07353905588388443,
- -0.010914681479334831,
- 0.02734808810055256,
- -0.020755307748913765,
- -0.008861652575433254,
- 0.03446127846837044,
- -0.01448157336562872,
- -0.028939703479409218,
- 0.024774428457021713,
- -0.03801700100302696,
- -0.04237023741006851,
- -0.023492680862545967,
- 0.01863180100917816,
- 0.029611853882670403,
- 0.009024289436638355,
- -0.010639132000505924,
- -0.04608940705657005,
- -0.01432520616799593,
- -0.06993328034877777,
- -0.010691841132938862,
- 0.04322189837694168,
- -0.014895780943334103,
- -0.01757880672812462,
- 0.0417085699737072,
- -0.03858381509780884,
- 0.08069362491369247,
- -0.03561456501483917,
- -0.04125440865755081,
- 0.010382589884102345,
- 0.03881092369556427,
- 0.019894421100616455,
- -0.021412232890725136,
- 0.0546102449297905,
- 0.07661459594964981,
- -0.032121337950229645,
- 0.09724995493888855,
- -0.024394525215029716,
- 0.024466296657919884,
- 0.035140469670295715,
- 0.015784597024321556,
- -0.05668311566114426,
- -0.025033432990312576,
- -0.015827074646949768,
- -0.0687403529882431,
- 0.0027300145011395216,
- 0.0783541351556778,
- -0.005869110114872456,
- -0.05359433963894844,
- -0.0618102066218853,
- -0.06058603897690773,
- 0.06640759110450745,
- -0.01822214014828205,
- -0.012949910014867783,
- -0.0413220189511776,
- -0.05372672528028488,
- 0.06291744112968445,
- -0.06502774357795715,
- -0.1221921443939209,
- 0.17470329999923706,
- 0.07688406109809875,
- 0.05461519584059715,
- 0.0012348544551059604,
- -0.08183954656124115,
- -0.061574917286634445,
- -0.041268955916166306,
- -0.08986472338438034,
- 0.007483001798391342,
- -0.09774760901927948,
- -0.0018612090498209,
- -0.061355337500572205,
- 0.04274667799472809,
- -0.026451854035258293,
- 0.004293752834200859,
- 0.04411127790808678,
- 0.034144748002290726,
- -0.06649535894393921,
- 0.041293662041425705,
- 0.06289594620466232,
- -0.06103616952896118,
- 0.03455566614866257,
- 0.02112419717013836,
- 0.033212583512067795,
- -0.05655261129140854,
- -0.08622262626886368,
- -0.11303288489580154,
- 0.10919627547264099,
- -3.552520619679561e-33,
- 0.012094574049115181,
- -0.03413011133670807,
- 0.003552202833816409,
- 0.07783903181552887,
- 0.12088926881551743,
- -0.021498696878552437,
- -0.02010568603873253,
- 0.030001388862729073,
- 0.007069028448313475,
- -0.011176074855029583,
- -0.11360254138708115,
- 0.0539843887090683,
- 0.013427545316517353,
- 0.01210638415068388,
- 0.002686216263100505,
- 0.008185472339391708,
- 0.028536992147564888,
- 0.05757737532258034,
- -0.037491921335458755,
- 0.049827512353658676,
- -0.0028350227512419224,
- 0.0014818523777648807,
- -0.04641137272119522,
- -0.019391529262065887,
- -0.01187925785779953,
- -0.006696684751659632,
- -0.015281000174582005,
- 0.06480685621500015,
- 0.03084535337984562,
- 0.020031988620758057,
- -0.05648084357380867,
- -0.008269065991044044,
- -0.021346040070056915,
- 0.0530453696846962,
- -0.03726452961564064,
- -0.03435465693473816,
- -0.10873186588287354,
- -0.07654974609613419,
- 0.04773581400513649,
- -0.010199617594480515,
- 0.032793078571558,
- 0.008494090288877487,
- -0.060801394283771515,
- 0.10007909685373306,
- -0.00841932836920023,
- 0.10962877422571182,
- 0.050112321972846985,
- -0.06654775887727737,
- 0.018597809597849846,
- -0.00013317725097294897,
- -0.044576890766620636,
- -0.013550419360399246,
- -0.00895615853369236,
- -0.017322158440947533,
- -0.020570052787661552,
- -0.010372953489422798,
- 0.06479641050100327,
- 0.010485239326953888,
- 0.009329885244369507,
- 0.0665450170636177,
- 0.07397296279668808,
- 0.051525771617889404,
- -0.010224285535514355,
- -0.07982295751571655,
- 0.006703856401145458,
- -0.06034627929329872,
- -0.02838909812271595,
- 0.041074562817811966,
- 0.03318493440747261,
- -0.02318706549704075,
- -0.047853972762823105,
- 0.028550639748573303,
- 0.09128204733133316,
- -0.005801960825920105,
- 0.03275223448872566,
- -0.06687109172344208,
- -0.0006689117872156203,
- -0.021261658519506454,
- 0.0345129668712616,
- -0.0210439320653677,
- -0.05390959605574608,
- 0.01577521488070488,
- -0.07159910351037979,
- 0.036634720861911774,
- 0.05529221147298813,
- 0.016124559566378593,
- -0.03757487237453461,
- -0.019717475399374962,
- -0.00806084368377924,
- 0.11743198335170746,
- -0.043342020362615585,
- 0.027565576136112213,
- 0.10745204240083694,
- -0.0716979056596756,
- 0.041595153510570526,
- 3.567566212686117e-33,
- -0.013608952052891254,
- -0.007361753843724728,
- -0.0899391621351242,
- 0.1694001853466034,
- 0.007690850179642439,
- 0.0435158908367157,
- -0.026772644370794296,
- 0.044872261583805084,
- 0.03401372954249382,
- 0.09550810605287552,
- -0.1565360426902771,
- -0.0575493723154068,
- 0.08232583850622177,
- -0.041709672659635544,
- -0.0475182868540287,
- -0.0010928401025012136,
- 0.11853503435850143,
- -0.015668673440814018,
- -0.0362556129693985,
- -0.003498269710689783,
- 0.026132291182875633,
- 0.058499474078416824,
- -0.009931462816894054,
- -0.053483109921216965,
- 0.0038423468358814716,
- 0.07556705921888351,
- -0.01979473978281021,
- 0.053898416459560394,
- -0.03716449439525604,
- -0.00833897851407528,
- 0.004643451422452927,
- -0.015353098511695862,
- -0.08062642812728882,
- 0.03082972951233387,
- -0.0023035514168441296,
- 0.054346587508916855,
- 0.02182760089635849,
- 0.15424075722694397,
- 0.014071222394704819,
- 0.07874151319265366,
- 0.04125383868813515,
- 0.004903703462332487,
- -0.021843278780579567,
- 0.1600026935338974,
- 0.08914148807525635,
- -0.024045759811997414,
- 0.05838907137513161,
- -0.05944667384028435,
- 0.09192284196615219,
- 0.14164796471595764,
- -0.06782268732786179,
- 0.040282946079969406,
- -0.050613630563020706,
- -0.007737390231341124,
- 0.009902004152536392,
- -0.02937076985836029,
- -0.02041357383131981,
- -0.03332111984491348,
- 0.06532872468233109,
- 0.008690684102475643,
- -0.0606880746781826,
- -0.0017172610387206078,
- 0.02974577620625496,
- -0.002090047113597393,
- 0.042434241622686386,
- -0.034276798367500305,
- 0.006856412626802921,
- -0.04449182376265526,
- 0.04761281982064247,
- 0.028178798034787178,
- 0.014330105856060982,
- -0.05990710109472275,
- -0.03204679861664772,
- 0.0053904736414551735,
- 0.029146619141101837,
- -0.019765786826610565,
- -0.07750293612480164,
- 0.008685644716024399,
- -0.04467398673295975,
- -0.01551014557480812,
- 0.026448816061019897,
- -0.03189549967646599,
- 0.012767727486789227,
- -0.026358578354120255,
- 0.05309668928384781,
- -0.05887502059340477,
- 0.13211409747600555,
- -0.08219906687736511,
- 0.043031275272369385,
- 0.0059752133674919605,
- 0.03243287280201912,
- 0.0419294536113739,
- -0.0670764297246933,
- 0.0014556630048900843,
- -0.003473135642707348,
- -1.3231645112909973e-8,
- 0.053734056651592255,
- 0.013098759576678276,
- -0.07434718310832977,
- -0.019049087539315224,
- -0.022445961833000183,
- 0.00966571643948555,
- 0.04107530042529106,
- -0.029762951657176018,
- 0.017475534230470657,
- 0.02647979184985161,
- -0.03392072767019272,
- -0.03596558794379234,
- 0.005389281548559666,
- 0.13425900042057037,
- 0.034682292491197586,
- -0.021034477278590202,
- -0.0626758486032486,
- 0.01888624019920826,
- -0.09284450113773346,
- -0.023598134517669678,
- -0.00012916242121718824,
- 0.016579441726207733,
- 0.020873043686151505,
- -0.05169948935508728,
- -0.0010122483363375068,
- 0.010965973138809204,
- -0.0036588148213922977,
- 0.0718919113278389,
- -0.02891579270362854,
- 0.06683843582868576,
- 0.05880511552095413,
- 0.05139140039682388,
- -0.004018643405288458,
- -0.0198238305747509,
- -0.047231920063495636,
- -0.04191792383790016,
- -0.024190211668610573,
- 0.027737902477383614,
- -0.0032932073809206486,
- -0.015164792537689209,
- 0.0381634347140789,
- 0.0023884845431894064,
- -0.004722305573523045,
- 0.04136727750301361,
- -0.01598835177719593,
- -0.06858303397893906,
- -0.001161085907369852,
- -0.003567816223949194,
- -0.04896337911486626,
- 0.03313315287232399,
- 0.0186860803514719,
- -0.009624315425753593,
- 0.00510657811537385,
- 0.0232391320168972,
- 0.01092107780277729,
- 0.03025059960782528,
- -0.014687648043036461,
- -0.03859230503439903,
- 0.0646841824054718,
- 0.07230877876281738,
- 0.06605642288923264,
- -0.032017387449741364,
- 0.05415307730436325,
- 0.011584112420678139
- ]
- },
- {
- "keyword": "objective",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.007784130517393351,
- 0.053093262016773224,
- -0.08513101190328598,
- 0.006668095476925373,
- -0.029620304703712463,
- -0.0077959210611879826,
- 0.09223253279924393,
- -0.03570612519979477,
- -0.04304128140211105,
- 0.05553516745567322,
- -0.006109191570430994,
- -0.07753412425518036,
- 0.0167043786495924,
- 0.025415387004613876,
- -0.037489548325538635,
- 0.05230865627527237,
- 0.05620446056127548,
- 0.0003754580393433571,
- -0.052163589745759964,
- -0.006752152927219868,
- 0.008718455210328102,
- 0.0629706084728241,
- 0.04174032807350159,
- 0.02068212814629078,
- -0.051822543144226074,
- 0.07979369163513184,
- -0.004793758504092693,
- -0.015917737036943436,
- 0.042695797979831696,
- -0.05759246274828911,
- 0.018028225749731064,
- -0.006310661323368549,
- 0.09360341727733612,
- 0.019809216260910034,
- -0.026868613436818123,
- 0.07621566206216812,
- 0.031848348677158356,
- -0.0010818570153787732,
- 0.054824262857437134,
- -0.0016213299240916967,
- -0.039632685482501984,
- -0.06559012085199356,
- -0.010534696280956268,
- -0.03353505581617355,
- 0.007214832119643688,
- -0.010547308251261711,
- -0.017032133415341377,
- -0.013721542432904243,
- 0.0037189980503171682,
- 0.008588296361267567,
- -0.033749211579561234,
- -0.07126239687204361,
- -0.14278949797153473,
- 0.018025357276201248,
- 0.08661116659641266,
- 0.011051779612898827,
- 0.001010527485050261,
- -0.014760961756110191,
- 0.061287716031074524,
- -0.005490320269018412,
- 0.00375600578263402,
- -0.0145614854991436,
- -0.053598012775182724,
- 0.10062175244092941,
- 0.12989722192287445,
- -0.06611579656600952,
- -0.04419839754700661,
- -0.028942467644810677,
- -0.04950002208352089,
- 0.008200131356716156,
- 0.07415896654129028,
- -0.031092770397663116,
- 0.05196627229452133,
- -0.032435838133096695,
- 0.022945063188672066,
- 0.026643412187695503,
- 0.0808551236987114,
- -0.03937189653515816,
- 0.027459220960736275,
- 0.0012805688893422484,
- 0.07502081990242004,
- 0.010903618298470974,
- 0.0035361284390091896,
- 0.07845478504896164,
- 0.03872251510620117,
- -0.06117334961891174,
- 0.036800485104322433,
- -0.02759764902293682,
- 0.0012324030976742506,
- 0.06261636316776276,
- -0.0163256898522377,
- -0.015912577509880066,
- 0.05153030902147293,
- 0.017879676073789597,
- 0.010315275751054287,
- -0.050377849489450455,
- 0.013043910264968872,
- -0.07135306298732758,
- -0.06759408116340637,
- 0.26567625999450684,
- 0.0012022644514217973,
- -0.018979571759700775,
- -0.14282245934009552,
- 0.027039213106036186,
- 0.01722804829478264,
- -0.08450712263584137,
- -0.013151624239981174,
- -0.043146274983882904,
- -0.020502658560872078,
- 0.001024138182401657,
- -0.008635632693767548,
- -0.008614732883870602,
- -0.11282871663570404,
- 0.021885747089982033,
- 0.007221851032227278,
- -0.022612906992435455,
- -0.017454534769058228,
- 0.05210903659462929,
- 0.022206680849194527,
- 0.007605334743857384,
- -0.06853681057691574,
- 0.016723940148949623,
- 0.010417886078357697,
- 0.05577923357486725,
- -0.027395600453019142,
- -0.011387977749109268,
- 0.0016877137823030353,
- -6.394997101056366e-33,
- -0.08531402051448822,
- -0.08097971975803375,
- 0.039582960307598114,
- -0.004948628135025501,
- -0.09279760718345642,
- -0.02594316005706787,
- -0.04279759153723717,
- 0.02058788575232029,
- 0.02462272346019745,
- 0.014455856755375862,
- 0.0008643863257020712,
- 0.11880125105381012,
- -0.006017627194523811,
- 0.03271288424730301,
- 0.184590682387352,
- -0.013038034550845623,
- -0.041339945048093796,
- 0.09789236634969711,
- -0.06345086544752121,
- 0.041844263672828674,
- -0.08592375367879868,
- -0.0035490314476191998,
- -0.05829847976565361,
- -0.013354452326893806,
- -0.0075487359426915646,
- 0.02058534324169159,
- 0.06626685708761215,
- -0.09396685659885406,
- -0.08947719633579254,
- 0.0583171471953392,
- 0.011314800009131432,
- 0.045992717146873474,
- -0.06094200536608696,
- 0.00041202196734957397,
- -0.06429770588874817,
- 0.029477130621671677,
- 0.009733293205499649,
- -0.03825514763593674,
- -0.05451028794050217,
- -0.02329939790070057,
- -0.06046104431152344,
- 0.02680157870054245,
- 0.016810502856969833,
- -0.00977408792823553,
- 0.024494946002960205,
- 0.05451319366693497,
- 0.023476045578718185,
- -0.009406618773937225,
- 0.01871432177722454,
- 0.04073980823159218,
- -0.030406706035137177,
- 0.013698992319405079,
- -0.019405148923397064,
- 0.01963953487575054,
- -0.011512376368045807,
- -0.018418919295072556,
- -0.039986222982406616,
- -0.014731290750205517,
- 0.004806967452168465,
- -0.031067727133631706,
- -0.0009714490734040737,
- 0.00579946581274271,
- -0.06834618747234344,
- -0.027502723038196564,
- 0.04166867956519127,
- 0.045068636536598206,
- 0.007537549827247858,
- -0.10691628605127335,
- 0.08051140606403351,
- 0.0166793055832386,
- -0.12763208150863647,
- 0.03018190898001194,
- 0.07915481925010681,
- 0.0021002893336117268,
- -0.052407100796699524,
- 0.015750033780932426,
- 0.05446222424507141,
- 0.09467191249132156,
- -0.03298097103834152,
- -0.06684396415948868,
- -0.039651885628700256,
- 0.09105915576219559,
- 0.047417037189006805,
- -0.08210796862840652,
- 0.04532010853290558,
- -0.012740569189190865,
- -0.049987249076366425,
- -0.061333928257226944,
- -0.04855223000049591,
- 0.11540228873491287,
- -0.07503025978803635,
- 0.018262840807437897,
- -0.07851702719926834,
- 0.08237629383802414,
- -0.011285302229225636,
- 4.1752438948154525e-33,
- -0.034611888229846954,
- -0.01892717368900776,
- -0.056417301297187805,
- 0.04958418756723404,
- 0.03920673578977585,
- 0.004647294525057077,
- -0.07986914366483688,
- -0.014375696890056133,
- -0.04242517799139023,
- 0.0725337415933609,
- -0.04963671788573265,
- 0.005634423810988665,
- 0.044680219143629074,
- 0.05015701428055763,
- -0.008653607219457626,
- -0.028108831495046616,
- -0.004692383110523224,
- -0.03211694210767746,
- -0.013987626880407333,
- 0.004131347872316837,
- 0.03707825765013695,
- 0.05023666471242905,
- -0.024335911497473717,
- -0.12635736167430878,
- -0.04864789545536041,
- 0.05217231437563896,
- 0.055241744965314865,
- 0.011211440898478031,
- 0.058237746357917786,
- -0.017770323902368546,
- 0.05253347381949425,
- -0.05224170163273811,
- -0.12308371812105179,
- 0.02071094885468483,
- -0.009752479381859303,
- 0.1213432028889656,
- -0.010126855224370956,
- -0.0030415409710258245,
- -0.036542683839797974,
- 0.043266523629426956,
- 0.02611674554646015,
- 0.06922131031751633,
- -0.03798951581120491,
- 0.04501081630587578,
- -0.006169339641928673,
- 0.01860671117901802,
- 0.055377986282110214,
- 0.06029680743813515,
- 0.05212167277932167,
- 0.018037784844636917,
- -0.03508063778281212,
- 0.0016573782777413726,
- -0.03704613074660301,
- -0.04902733117341995,
- -0.061576999723911285,
- -0.04106232523918152,
- 0.019601527601480484,
- -0.0705094262957573,
- 0.06323786079883575,
- 0.024414459243416786,
- 0.059913184493780136,
- 0.05163412541151047,
- -0.012028178200125694,
- 0.03901802748441696,
- -0.09265697002410889,
- 0.02666865661740303,
- -0.006226848345249891,
- 0.015497895888984203,
- -0.008340696804225445,
- 0.03869003430008888,
- 0.02927512302994728,
- -0.008841884322464466,
- -0.07049771398305893,
- 0.00875256396830082,
- -0.0676882192492485,
- 0.03424616903066635,
- 0.01564403995871544,
- 0.0053240517154335976,
- -0.013710486702620983,
- -0.015308375470340252,
- 0.06900845468044281,
- 0.041067734360694885,
- 0.007123182062059641,
- 0.028290310874581337,
- 0.02468266524374485,
- 0.04107619822025299,
- 0.07068844884634018,
- 0.04817618802189827,
- -0.011968743056058884,
- 0.04762842878699303,
- 0.020905109122395515,
- 0.01345678698271513,
- -0.005259588360786438,
- -0.05156104266643524,
- -0.05199979245662689,
- -1.2741082855427521e-8,
- -0.049149323254823685,
- 0.007369276136159897,
- 0.01648217998445034,
- 0.07914981991052628,
- 0.03760453313589096,
- 0.03253871202468872,
- -0.05032481253147125,
- -0.01925266906619072,
- 0.015874255448579788,
- -0.027564149349927902,
- 0.005949647631496191,
- 0.02957674115896225,
- -0.07572582364082336,
- 0.10180044919252396,
- 0.016216065734624863,
- -0.040150236338377,
- -0.05373194441199303,
- -0.05114014446735382,
- -0.027354126796126366,
- -0.011515447869896889,
- -0.008669532835483551,
- 0.03271091729402542,
- -0.03066042996942997,
- -0.044119060039520264,
- 0.035165563225746155,
- -0.000669764936901629,
- -0.0648268461227417,
- 0.011392398737370968,
- 0.018987024202942848,
- 0.06671647727489471,
- 0.021707752719521523,
- 0.12421239167451859,
- -0.06099667772650719,
- -0.008496087044477463,
- -0.07275895774364471,
- 0.012541471049189568,
- -0.012903841212391853,
- 0.005676422733813524,
- 0.010632215067744255,
- -0.0706668570637703,
- -0.0511968694627285,
- 0.0013595682103186846,
- 0.07469111680984497,
- -0.019126055762171745,
- -0.007457554340362549,
- 0.056969694793224335,
- -0.017387691885232925,
- -0.08904904127120972,
- -0.03224431723356247,
- -0.05052115023136139,
- -0.05575251579284668,
- -0.062469758093357086,
- -0.0005017950315959752,
- 0.08326208591461182,
- 0.036276064813137054,
- -0.008711591362953186,
- -0.013546627946197987,
- -0.06240406632423401,
- -0.04258684441447258,
- 0.05712370201945305,
- 0.10241170227527618,
- 0.012623450718820095,
- -0.03397902473807335,
- 0.033809464424848557
- ]
- },
- {
- "keyword": "goal",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.05537231266498566,
- 0.16106128692626953,
- -0.07193534821271896,
- -0.025488130748271942,
- 0.05932148918509483,
- 0.014749186113476753,
- 0.1361713707447052,
- 0.032053276896476746,
- 0.06697152554988861,
- -0.026134446263313293,
- 0.0008834302425384521,
- -0.1269812434911728,
- 0.03363162651658058,
- 0.01279357261955738,
- -0.033468857407569885,
- -0.002376571064814925,
- -0.0767081156373024,
- -0.018857723101973534,
- -0.1100410521030426,
- 0.02683323808014393,
- 0.03674004226922989,
- 0.06941165775060654,
- 0.008152911439538002,
- 0.013927469961345196,
- -0.03037257120013237,
- 0.059115149080753326,
- 0.002951370319351554,
- -0.060557376593351364,
- 0.027651574462652206,
- -0.060146573930978775,
- 0.02680163085460663,
- -0.07653634250164032,
- 0.06786223500967026,
- 0.00991083588451147,
- -0.033700063824653625,
- 0.013886833563446999,
- 0.012743581086397171,
- -0.02167847566306591,
- 0.0481555312871933,
- -0.006902338471263647,
- -0.008996239863336086,
- -0.09608648717403412,
- -0.07297394424676895,
- -0.029338525608181953,
- 0.07215750217437744,
- 0.02324569597840309,
- 0.04651305824518204,
- -0.021203890442848206,
- 0.007093088701367378,
- 0.017723776400089264,
- 0.012710882350802422,
- 0.022929884493350983,
- -0.04129535332322121,
- -0.01191024575382471,
- 0.037655916064977646,
- 0.07854359596967697,
- -0.023236872628331184,
- 0.00569339282810688,
- 0.041865378618240356,
- -0.04955087974667549,
- 0.06587908416986465,
- -0.060209669172763824,
- -0.10781049728393555,
- 0.029711028560996056,
- 0.036912038922309875,
- -0.042747292667627335,
- -0.025915173813700676,
- -0.03780822083353996,
- -0.03379778191447258,
- 0.014830807223916054,
- 0.05175154283642769,
- -0.04101528599858284,
- 0.015960605815052986,
- -0.0316394604742527,
- 0.0978638231754303,
- 0.018114963546395302,
- -0.021448107436299324,
- -0.07677193731069565,
- 0.010759771801531315,
- 0.008315026760101318,
- 0.04417896270751953,
- -0.06388195604085922,
- -0.031485896557569504,
- 0.043835848569869995,
- 0.03522947430610657,
- 0.014602122828364372,
- -0.0251383725553751,
- 0.018402405083179474,
- 0.06242040917277336,
- 0.032238710671663284,
- -0.03886071592569351,
- -0.01567317545413971,
- 0.025025369599461555,
- 0.04064293950796127,
- -0.08293711394071579,
- -0.058543864637613297,
- 0.032162562012672424,
- -0.09432345628738403,
- -0.015720855444669724,
- 0.25652867555618286,
- -0.0041562942788004875,
- 0.061635423451662064,
- 0.03141477331519127,
- -0.015326814725995064,
- 0.019750552251935005,
- 0.004040291998535395,
- -0.046515367925167084,
- 0.11578432470560074,
- -0.028200892731547356,
- -0.041946109384298325,
- -0.03411315008997917,
- -0.054375533014535904,
- 0.02340732142329216,
- 0.07017472386360168,
- 0.010076547972857952,
- -0.004365825094282627,
- -0.07785659283399582,
- 0.03438916429877281,
- 0.06913391500711441,
- -0.08587714284658432,
- -0.009842347353696823,
- 0.03244755044579506,
- 0.009021209552884102,
- 0.013988999649882317,
- -0.07927896082401276,
- -0.02311456762254238,
- 0.0011358794290572405,
- -5.2468888298723604e-33,
- 0.011577477678656578,
- -0.015681300312280655,
- 0.04370430111885071,
- 0.05583248659968376,
- -0.04577450081706047,
- 0.07217425853013992,
- 0.004540794063359499,
- -0.031116142868995667,
- -0.01959538459777832,
- 0.041468098759651184,
- 0.0508752204477787,
- -0.03334691375494003,
- -0.05642145872116089,
- -0.01281163189560175,
- 0.11620554327964783,
- 0.008207577280700207,
- -0.024260692298412323,
- 0.04608221724629402,
- -0.06637180596590042,
- 0.05626962333917618,
- -0.024840010330080986,
- 0.056553829461336136,
- -0.03609325736761093,
- -0.0030750709120184183,
- 0.05993160605430603,
- 0.003384847193956375,
- -0.0035537995863705873,
- -0.08541370183229446,
- -0.08435767889022827,
- 0.002680436708033085,
- 0.02509152516722679,
- 0.0029941557440906763,
- -0.07637462019920349,
- -0.025813670828938484,
- -0.04860188066959381,
- -0.06918077170848846,
- -0.03885365650057793,
- -0.08700910955667496,
- -0.04296926409006119,
- -0.04352967441082001,
- -0.007623923942446709,
- 0.012043319642543793,
- 0.04500488564372063,
- 0.021166864782571793,
- 0.011259154416620731,
- 0.002712810644879937,
- 0.021015848964452744,
- 0.010825996287167072,
- -0.007479866500943899,
- 0.005703442730009556,
- -0.004424758721143007,
- 0.009002522565424442,
- -0.06938603520393372,
- 0.0038234470412135124,
- 0.01649623177945614,
- -0.043497804552316666,
- -0.03145613521337509,
- -0.09121977537870407,
- -0.011257980950176716,
- -0.05604976415634155,
- 0.08835384249687195,
- -0.058697737753391266,
- -0.09295167773962021,
- 0.060146771371364594,
- 0.027842698618769646,
- 0.020573776215314865,
- 0.03126078099012375,
- 0.0018818700918927789,
- 0.04356271028518677,
- -0.01610095240175724,
- -0.04903806746006012,
- -0.014007650315761566,
- 0.047630857676267624,
- -0.014522729441523552,
- 0.028295323252677917,
- -0.027716007083654404,
- -0.008163325488567352,
- 0.044351354241371155,
- -0.0008507476304657757,
- -0.02337603084743023,
- -0.0474337600171566,
- 0.011910845525562763,
- 0.01015582773834467,
- -0.06429444998502731,
- 0.03764147683978081,
- 0.04300828278064728,
- -0.05206989496946335,
- -0.04277728870511055,
- -0.08403565734624863,
- 0.027057820931077003,
- -0.07471118122339249,
- 0.058169588446617126,
- -0.039727456867694855,
- 0.0737166479229927,
- 0.005702537018805742,
- 4.125098775177312e-33,
- 0.006655316334217787,
- 0.011410418897867203,
- 0.0027529194485396147,
- 0.0948956087231636,
- 0.04362872987985611,
- -0.01392187736928463,
- 0.02770073711872101,
- -0.030489780008792877,
- 0.039804521948099136,
- 0.09312617033720016,
- -0.07188873738050461,
- -0.05467364564538002,
- 0.05737375095486641,
- 0.04623962938785553,
- -0.031049242243170738,
- 0.027656521648168564,
- 0.0990481898188591,
- 0.009989436715841293,
- -0.06264565140008926,
- -0.007633083965629339,
- -0.015953868627548218,
- -0.010439159348607063,
- -0.003562837839126587,
- -0.09249017387628555,
- -0.012539112940430641,
- 0.021822454407811165,
- 0.07121454924345016,
- -0.006738126743584871,
- -0.06678464263677597,
- -0.02746828831732273,
- 0.06895063072443008,
- -0.02816948853433132,
- -0.04848562926054001,
- -0.036395113915205,
- 0.012237070128321648,
- 0.09174754470586777,
- -0.014139758422970772,
- 0.017406290397047997,
- -0.012121348641812801,
- 0.09374178200960159,
- 0.06552766263484955,
- 0.01322871819138527,
- -0.01142896804958582,
- 0.13638180494308472,
- -0.004120443481951952,
- 0.029326949268579483,
- 0.0520499087870121,
- 0.039339516311883926,
- 0.04914944991469383,
- 0.06195913627743721,
- 0.01880982518196106,
- 0.028737835586071014,
- -0.06662783771753311,
- 0.04842037707567215,
- -0.0007192507619038224,
- -0.01763000525534153,
- -0.09218048304319382,
- -0.022825757041573524,
- 0.040451087057590485,
- 0.01287189032882452,
- 0.03135571628808975,
- 0.11700201779603958,
- -0.08425789326429367,
- 0.12305587530136108,
- 0.04154570400714874,
- 0.05989690497517586,
- -0.006227355450391769,
- 0.053358420729637146,
- 0.02100413106381893,
- 0.005446800496429205,
- -0.007926901802420616,
- 0.0014523905701935291,
- -0.03363831341266632,
- 0.09629577398300171,
- -0.07692960649728775,
- -0.055206555873155594,
- -0.06556347757577896,
- -0.004779272712767124,
- 0.015784520655870438,
- -0.003696709405630827,
- -0.06958376616239548,
- -0.12229383736848831,
- -0.09990064799785614,
- 0.06290936470031738,
- 0.004767814185470343,
- -0.0440271757543087,
- 0.06765208393335342,
- 0.03037690371274948,
- 0.008709904737770557,
- -0.004655173514038324,
- 0.002508089877665043,
- 0.03714555501937866,
- -0.029428550973534584,
- 0.02364214137196541,
- 0.05478053539991379,
- -1.2807753968502311e-8,
- -0.052013546228408813,
- 0.024261735379695892,
- -0.10974928736686707,
- -0.030735183507204056,
- 0.056491803377866745,
- 0.05231594294309616,
- -0.07326727360486984,
- -0.12128952890634537,
- 0.042657822370529175,
- -0.08125737309455872,
- 0.009370120242238045,
- 0.015749461948871613,
- 0.03622234985232353,
- 0.025993037968873978,
- 0.024252869188785553,
- -0.04058212414383888,
- -0.01621551439166069,
- 0.018503781408071518,
- 0.021516967564821243,
- 0.04228459298610687,
- -0.010731751099228859,
- -0.02009415812790394,
- -0.041486360132694244,
- -0.015900462865829468,
- -0.030411334708333015,
- -0.022013463079929352,
- -0.0569852851331234,
- 0.13479696214199066,
- -0.002746371552348137,
- -0.026788050308823586,
- 0.017945026978850365,
- 0.07216992974281311,
- 0.0011658817529678345,
- -0.020865825936198235,
- 0.004128014203161001,
- 0.03363042697310448,
- -0.03470652922987938,
- 0.0071799494326114655,
- 0.0764031782746315,
- -0.01379950437694788,
- -0.0006311686593107879,
- 0.034382667392492294,
- 0.06382213532924652,
- -0.005146858282387257,
- -0.07618772238492966,
- 0.029947079718112946,
- -0.01820960082113743,
- -0.010985702276229858,
- -0.026530401781201363,
- -0.02678963541984558,
- -0.015782276168465614,
- -0.00835508108139038,
- 0.019877301529049873,
- 0.050638437271118164,
- 0.03458094969391823,
- 0.0044495947659015656,
- -0.023902663961052895,
- -0.016061509028077126,
- -0.02452344074845314,
- 0.031399670988321304,
- 0.15220804512500763,
- 0.025951316580176353,
- -0.0033701215870678425,
- -0.010798624716699123
- ]
- },
- {
- "keyword": "sprint",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.052018359303474426,
- 0.0758923664689064,
- 0.012761599384248257,
- 0.0029043201357126236,
- 0.004149735439568758,
- -0.015336334705352783,
- 0.05120548978447914,
- 0.0450948067009449,
- 0.030148306861519814,
- 0.07543526589870453,
- -0.017896998673677444,
- 0.04091014713048935,
- 0.03166932985186577,
- -0.001493549905717373,
- 0.06337548792362213,
- -0.05218776687979698,
- 0.044389963150024414,
- -0.03334151208400726,
- -0.028322558850049973,
- -0.029278643429279327,
- -0.04957946389913559,
- -0.007312994450330734,
- -0.040952082723379135,
- 0.023245714604854584,
- 0.055068545043468475,
- -0.008240834809839725,
- -0.06253231316804886,
- 0.02050555869936943,
- -0.04197481647133827,
- -0.0760437622666359,
- -0.03461321070790291,
- -0.032657939940690994,
- 0.07644977420568466,
- 0.05637771263718605,
- 0.017244437709450722,
- -0.0626373440027237,
- -0.015891365706920624,
- 0.006959292106330395,
- 0.02097363956272602,
- -0.029211433604359627,
- 0.03888251632452011,
- -0.06509862095117569,
- -0.04395822063088417,
- 0.019271671772003174,
- 0.0894906297326088,
- -0.03820490837097168,
- 0.006944974418729544,
- 0.04955752193927765,
- -0.017895270138978958,
- 0.08389343321323395,
- 0.04941577836871147,
- -0.03199397772550583,
- -0.05125349014997482,
- -0.014707916416227818,
- -0.010199757292866707,
- 0.0950300395488739,
- 0.03494151681661606,
- 0.10701898485422134,
- 0.07586681097745895,
- 0.026217682287096977,
- 0.024888454005122185,
- -0.03459100052714348,
- -0.06127793714404106,
- 0.04660572111606598,
- -0.03656506538391113,
- -0.03248364105820656,
- -0.058507610112428665,
- 0.0936325266957283,
- -0.005841566249728203,
- -0.0533040314912796,
- 0.014625081792473793,
- -0.011670310981571674,
- -0.0216950885951519,
- 0.02189442329108715,
- 0.000843118701595813,
- 0.11991093307733536,
- 0.09984022378921509,
- 0.0071356953121721745,
- 0.039364177733659744,
- -0.016752714291214943,
- 0.0200149267911911,
- -0.060424402356147766,
- -0.11247409135103226,
- -0.057656899094581604,
- 0.058417897671461105,
- -0.04064185544848442,
- 0.014633984304964542,
- 0.025744834914803505,
- 0.01104043610394001,
- -0.06988521665334702,
- -0.006034281104803085,
- 0.0803399458527565,
- -0.08244053274393082,
- 0.016631044447422028,
- -0.09690061211585999,
- 0.005107325501739979,
- -0.05210499465465546,
- -0.08193094283342361,
- -0.04566109925508499,
- 0.1879822164773941,
- -0.01935947686433792,
- -0.02198421210050583,
- 0.05213058367371559,
- 0.07129815965890884,
- 0.030945857986807823,
- -0.021236486732959747,
- 0.0026818590704351664,
- 0.01689137890934944,
- 0.04270883649587631,
- 0.03877515718340874,
- -0.008035961538553238,
- 0.09599727392196655,
- -0.07486983388662338,
- 0.029548726975917816,
- 0.014629682525992393,
- -0.004759833216667175,
- -0.077379010617733,
- 0.009716370142996311,
- 0.031944043934345245,
- 0.01664504036307335,
- 0.0020121783018112183,
- 0.005768508650362492,
- -0.039412353187799454,
- -0.031793177127838135,
- -0.054096292704343796,
- 0.019040191546082497,
- 0.021876532584428787,
- -4.034322325961015e-33,
- -0.05114249512553215,
- 0.05742926523089409,
- 0.022180596366524696,
- -0.03639610856771469,
- 0.0354778878390789,
- 0.005165033973753452,
- 0.011306745000183582,
- -0.01709112711250782,
- -0.02330636978149414,
- 0.04038392752408981,
- -0.10635297000408173,
- 0.008858184330165386,
- 0.057630762457847595,
- 0.039763156324625015,
- 0.033749938011169434,
- -0.0920841172337532,
- 0.018588382750749588,
- 0.006993443705141544,
- 0.025716599076986313,
- -0.04960311949253082,
- 0.01724824495613575,
- 0.04150748252868652,
- 0.012150007300078869,
- -0.0026136816013604403,
- 0.0744977593421936,
- -0.0002409368462394923,
- 0.038127824664115906,
- -0.12445615977048874,
- 0.07399547100067139,
- 0.03864105045795441,
- -0.013891334645450115,
- -0.04925331100821495,
- -0.03922460973262787,
- 0.011791779659688473,
- 0.00706954300403595,
- 0.017902322113513947,
- -0.05054909735918045,
- -0.07682808488607407,
- -0.007905489765107632,
- -0.04601738229393959,
- -0.057339612394571304,
- 0.00403083860874176,
- -0.017169760540127754,
- -0.037673115730285645,
- -0.011666413396596909,
- 0.02626306749880314,
- 0.021871497854590416,
- 0.0027123927138745785,
- -0.06816195696592331,
- -0.002527771284803748,
- -0.0549585297703743,
- -0.023420967161655426,
- -0.046627823263406754,
- -0.0007275459356606007,
- 0.028912216424942017,
- -0.018408767879009247,
- 0.06370344758033752,
- -0.06075514853000641,
- 0.05961103364825249,
- -0.0008188878418877721,
- 0.04119997099041939,
- -0.034629855304956436,
- -0.06703522056341171,
- -0.011021377518773079,
- -0.0065218545496463776,
- -0.01781466417014599,
- -0.004072314128279686,
- -0.03695026785135269,
- 0.07613372057676315,
- 0.009682572446763515,
- -0.00015096172865014523,
- -0.019811710342764854,
- 0.0793863981962204,
- 0.06440669298171997,
- -0.015533190220594406,
- 0.036344967782497406,
- 0.04100095480680466,
- 0.09813136607408524,
- -0.09889086335897446,
- -0.001052516046911478,
- -0.051315244287252426,
- 0.01883571594953537,
- -0.04565589874982834,
- 0.012270167469978333,
- 0.07358334958553314,
- 0.01365155540406704,
- -0.027340207248926163,
- -0.08754169940948486,
- 0.0023927849251776934,
- 0.058432549238204956,
- -0.05469002574682236,
- 0.034778643399477005,
- 0.018478374928236008,
- 0.057630982249975204,
- 0.006183673162013292,
- 3.5498540842131174e-33,
- -0.07442369312047958,
- 0.032579660415649414,
- 0.046590663492679596,
- 0.04086550697684288,
- 0.04797464236617088,
- -0.04691684991121292,
- 0.09861619770526886,
- 0.029546132311224937,
- -0.09299635142087936,
- 0.038744863122701645,
- -0.06870377063751221,
- -0.06921931356191635,
- -0.038337282836437225,
- -0.03363886848092079,
- 0.051595840603113174,
- 0.00700764125213027,
- 0.06825311481952667,
- 0.0002868346346076578,
- -0.03503057360649109,
- 0.0029159248806536198,
- -0.03495853766798973,
- -0.053610801696777344,
- -0.04531195014715195,
- 0.07284342497587204,
- 0.08729341626167297,
- 0.023762980476021767,
- -0.025314079597592354,
- -0.010878206230700016,
- -0.029731642454862595,
- -0.09152708202600479,
- -0.03888659551739693,
- -0.043007925152778625,
- 0.02924085594713688,
- 0.03941336274147034,
- 0.0447855070233345,
- 0.061976056545972824,
- 0.022859157994389534,
- 0.10747183114290237,
- 0.033087991178035736,
- -0.0004153930058237165,
- 0.15921840071678162,
- -0.023322587832808495,
- 0.008282211609184742,
- 0.11654894053936005,
- -0.008460980840027332,
- -0.008700592443346977,
- 0.04590180888772011,
- -0.02247343771159649,
- -0.08981754630804062,
- 0.015179995447397232,
- -0.019536029547452927,
- -0.07408282160758972,
- 0.04586698114871979,
- 0.0449972078204155,
- -0.0251260157674551,
- -0.08586642146110535,
- 0.06188567355275154,
- -0.03819063678383827,
- -0.034854140132665634,
- -0.035853929817676544,
- 0.1173621341586113,
- -0.004596308339387178,
- -0.03229130432009697,
- 0.0737384706735611,
- 0.0041690003126859665,
- -0.03129667788743973,
- 0.04034755006432533,
- -0.04696918651461601,
- -0.1012030616402626,
- -0.03935019671916962,
- -0.037910670042037964,
- 0.00045636569848284125,
- -0.050186265259981155,
- 0.03491360321640968,
- -0.04910732060670853,
- 0.010152996517717838,
- -0.16161972284317017,
- -0.014851945452392101,
- -0.08640745282173157,
- 0.008155924268066883,
- 0.006080355495214462,
- 0.011687012389302254,
- -0.0008830412989482284,
- 0.017092948779463768,
- -0.009973817504942417,
- 0.027945194393396378,
- 0.07142821699380875,
- 0.07637171447277069,
- 0.004210247192531824,
- -0.05063043162226677,
- -0.05857530236244202,
- -0.0022695481311529875,
- 0.0005381759838201106,
- 0.032531145960092545,
- 0.0024210549890995026,
- -1.1087776030649366e-8,
- 0.008027003146708012,
- -0.0037394738756120205,
- 0.05843193456530571,
- -0.026913681998848915,
- 0.03553956001996994,
- 0.018892649561166763,
- -0.033054906874895096,
- 0.0077787721529603004,
- 0.08247675746679306,
- 0.06290451437234879,
- -0.034200333058834076,
- -0.04429241642355919,
- -0.06043803319334984,
- 0.01012168638408184,
- -0.009768188931047916,
- 0.019370049238204956,
- -0.0363861545920372,
- -0.014777226373553276,
- 0.030692465603351593,
- 0.055789388716220856,
- 0.0074728974141180515,
- 0.11900640279054642,
- -0.08118768781423569,
- 0.03278462216258049,
- 0.032087624073028564,
- -0.019843626767396927,
- -0.05712033808231354,
- 0.12406764179468155,
- 0.09186314791440964,
- -0.03565579280257225,
- 0.045999497175216675,
- 0.02179797738790512,
- 0.013383890502154827,
- -0.08488477021455765,
- -0.1231822818517685,
- 0.006159990560263395,
- 0.13331398367881775,
- -0.03267115727066994,
- 0.014449472539126873,
- -0.030722854658961296,
- -0.033940836787223816,
- 0.020969856530427933,
- 0.04026957228779793,
- -0.05138859897851944,
- -0.041888121515512466,
- -0.03533804044127464,
- -0.0316239669919014,
- -0.06734555214643478,
- -0.003819419303908944,
- -0.05102015659213066,
- -0.05551993101835251,
- 0.00043524891952984035,
- -0.036876484751701355,
- -0.0069203912280499935,
- 0.04070582240819931,
- -0.03268764540553093,
- -0.022637689486145973,
- -0.08804544806480408,
- 0.0016251371707767248,
- 0.024678010493516922,
- 0.11998579651117325,
- -0.11096172779798508,
- 0.003343867836520076,
- 0.028735581785440445
- ]
- },
- {
- "keyword": "iteration",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.00791137758642435,
- 0.03617728874087334,
- -0.006420393008738756,
- 0.033671144396066666,
- -0.10810549557209015,
- -0.007522031664848328,
- 0.07948771119117737,
- 0.003743907669559121,
- 0.012010807171463966,
- -0.05845152586698532,
- 0.048710521310567856,
- 0.008316060528159142,
- 0.051854461431503296,
- -0.025368353351950645,
- -0.05565783008933067,
- -0.005041986703872681,
- -0.0652693584561348,
- 0.030047690495848656,
- 0.0791366845369339,
- -0.10686949640512466,
- -0.065008744597435,
- 0.036932166665792465,
- -0.028814690187573433,
- 0.05507586523890495,
- -0.023541003465652466,
- 0.08037082105875015,
- -0.05342290177941322,
- 0.00031669551390223205,
- 0.0825517326593399,
- -0.04739857837557793,
- 0.04348120093345642,
- -0.02504843845963478,
- 0.009367234073579311,
- 0.000031168165151029825,
- 0.040036413818597794,
- 0.029724184423685074,
- -0.07756395637989044,
- 0.006620984990149736,
- 0.005379192531108856,
- 0.06575551629066467,
- -0.06371352821588516,
- -0.06275491416454315,
- 0.002518778434023261,
- -0.0703582689166069,
- 0.06612831354141235,
- -0.012958314269781113,
- -0.0729222446680069,
- 0.022363068535923958,
- 0.03448532521724701,
- -0.03593721613287926,
- -0.07106131315231323,
- -0.022665176540613174,
- -0.050381433218717575,
- -0.03815440833568573,
- 0.04641806334257126,
- -0.02017040364444256,
- 0.02015628106892109,
- 0.0012562033953145146,
- 0.04019901528954506,
- -0.048937950283288956,
- 0.09358416497707367,
- -0.0029320719186216593,
- -0.06510237604379654,
- 0.03013155609369278,
- 0.06452373415231705,
- -0.07801779359579086,
- 0.05452188104391098,
- -0.0472312793135643,
- -0.006426405161619186,
- 0.08125569671392441,
- 0.020405564457178116,
- 0.07655812799930573,
- 0.047062911093235016,
- 0.04947713762521744,
- 0.04100067541003227,
- 0.01087685115635395,
- 0.03726012259721756,
- -0.06951649487018585,
- 0.024629538878798485,
- -0.013068312779068947,
- -0.0377071313560009,
- 0.013764032162725925,
- 0.009129180572926998,
- -0.07615992426872253,
- -0.024767965078353882,
- -0.06513918936252594,
- 0.0034478572197258472,
- 0.030808420851826668,
- 0.06255359202623367,
- -0.002047163899987936,
- -0.05731423199176788,
- 0.0020446579437702894,
- -0.023547226563096046,
- -0.050284307450056076,
- -0.042438823729753494,
- 0.06765209138393402,
- 0.0590209923684597,
- -0.04776903614401817,
- -0.027837326750159264,
- 0.22126276791095734,
- -0.035294126719236374,
- 0.023777063935995102,
- 0.005211742129176855,
- -0.0824199914932251,
- -0.04370301961898804,
- -0.06452956795692444,
- 0.01791410520672798,
- -0.06272807717323303,
- 0.02265826426446438,
- -0.033635128289461136,
- 0.009790119715034962,
- -0.03575338423252106,
- 0.004150804132223129,
- 0.05482213944196701,
- 0.054343413561582565,
- -0.07214441895484924,
- 0.011293293908238411,
- -0.012297886423766613,
- -0.018228013068437576,
- 0.08027588576078415,
- 0.060482751578092575,
- -0.04271174594759941,
- -0.018485138192772865,
- 0.04392146319150925,
- -0.06707997620105743,
- -0.050446782261133194,
- 0.023996509611606598,
- -4.738709030358454e-33,
- 0.014570445753633976,
- -0.021412696689367294,
- 0.07124288380146027,
- 0.001856579794548452,
- -0.06311378628015518,
- -0.034230172634124756,
- 0.003093680366873741,
- -0.040319785475730896,
- -0.1036757156252861,
- 0.028299879282712936,
- 0.011826342903077602,
- -0.0017796833999454975,
- -0.006293509155511856,
- 0.047476332634687424,
- 0.0913313701748848,
- -0.09810710698366165,
- 0.07026533037424088,
- 0.006064349319785833,
- -0.07599158585071564,
- -0.05440346896648407,
- 0.009601789526641369,
- -0.06144146993756294,
- 0.011227530427277088,
- -0.026298904791474342,
- -0.06385331600904465,
- 0.0013619173550978303,
- 0.018628006801009178,
- -0.01732323132455349,
- -0.06654414534568787,
- 0.012851810082793236,
- 0.02703123725950718,
- 0.031894512474536896,
- -0.1370369791984558,
- 0.05840737372636795,
- 0.04338669031858444,
- 0.012241417542099953,
- 0.12420903146266937,
- -0.032172851264476776,
- 0.06752701103687286,
- -0.0007735671242699027,
- -0.02792721427977085,
- -0.03877408057451248,
- 0.05643049255013466,
- -0.008408354595303535,
- 0.01831144653260708,
- 0.04418037831783295,
- 0.027172286063432693,
- 0.025603249669075012,
- -0.025796977803111076,
- 0.07143530249595642,
- -0.03258229047060013,
- -0.00180744135286659,
- -0.09301209449768066,
- 0.016314134001731873,
- 0.03584694862365723,
- -0.00793799851089716,
- -0.01667594164609909,
- 0.034526973962783813,
- 0.04907478392124176,
- 0.04986415430903435,
- 0.07412409782409668,
- -0.04982740432024002,
- -0.04105024039745331,
- 0.042730435729026794,
- -0.06215799227356911,
- -0.0007590096793137491,
- 0.034538209438323975,
- -0.010200467891991138,
- 0.05127093568444252,
- 0.07208900898694992,
- -0.042850036174058914,
- -0.009922509081661701,
- 0.008188329637050629,
- -0.047902997583150864,
- 0.023995116353034973,
- -0.04259152337908745,
- 0.015858162194490433,
- -0.07222001254558563,
- -0.06305976957082748,
- -0.06945603340864182,
- -0.11899102479219437,
- 0.011445053853094578,
- -0.02414749003946781,
- -0.007375434506684542,
- 0.06013349071145058,
- 0.01694083958864212,
- 0.014033088460564613,
- -0.027727095410227776,
- -0.010620946995913982,
- -0.02223634533584118,
- -0.10455266386270523,
- -0.002013084013015032,
- 0.09529850631952286,
- 0.04979853704571724,
- -0.026268770918250084,
- 2.7713179308497776e-33,
- 0.01607488840818405,
- -0.0008865557028912008,
- 0.07529667019844055,
- -0.0016162003157660365,
- 0.06317712366580963,
- -0.04314431548118591,
- -0.022692060098052025,
- -0.04731377586722374,
- -0.02082803100347519,
- -0.03444094583392143,
- -0.037926264107227325,
- 0.062369439750909805,
- 0.01508255023509264,
- 0.01527809351682663,
- 0.06431108713150024,
- 0.05967552959918976,
- 0.02079051360487938,
- -0.004510899074375629,
- 0.01020040363073349,
- 0.01733395829796791,
- -0.03153232857584953,
- -0.07942864298820496,
- 0.02208825573325157,
- -0.03496795892715454,
- -0.04191776365041733,
- 0.01989886723458767,
- 0.0004030339769087732,
- 0.03152098134160042,
- 0.10261953622102737,
- -0.03927094116806984,
- 0.08644414693117142,
- -0.0780346617102623,
- 0.050303686410188675,
- 0.08023020625114441,
- -0.024620719254016876,
- 0.0950484648346901,
- 0.05048003047704697,
- -0.014032903127372265,
- 0.005021471530199051,
- 0.048164982348680496,
- 0.05405913293361664,
- -0.028124447911977768,
- 0.024991849437355995,
- 0.053443457931280136,
- 0.06003532558679581,
- -0.013573197647929192,
- 0.03098931536078453,
- 0.07141727954149246,
- 0.0037540756165981293,
- 0.038952600210905075,
- 0.021962057799100876,
- -0.044369325041770935,
- -0.0759945809841156,
- 0.016043156385421753,
- -0.03719564899802208,
- 0.06994564831256866,
- -0.00479753827676177,
- -0.02810095250606537,
- -0.004056045785546303,
- -0.04161477088928223,
- -0.08115292340517044,
- 0.016321707516908646,
- 0.08693811297416687,
- 0.0864907056093216,
- -0.009680401533842087,
- -0.061033062636852264,
- -0.04807398095726967,
- -0.008463392965495586,
- -0.04719212278723717,
- 0.08470041304826736,
- -0.020470265299081802,
- 0.045547038316726685,
- -0.03662586212158203,
- -0.04510490968823433,
- -0.05373122915625572,
- -0.07712002843618393,
- -0.13352268934249878,
- -0.05894513428211212,
- 0.004525717347860336,
- -0.059959180653095245,
- -0.06437323242425919,
- 0.024445461109280586,
- -0.03478328883647919,
- 0.004693548195064068,
- -0.02707999385893345,
- -0.03827744722366333,
- 0.06120796129107475,
- 0.03413236141204834,
- -0.023015761747956276,
- 0.05025739595293999,
- 0.03212320804595947,
- 0.008273744955658913,
- 0.09034792333841324,
- -0.00015006557805463672,
- 0.010420779697597027,
- -1.1835131985549197e-8,
- -0.09813673794269562,
- -0.040414027869701385,
- 0.007015714887529612,
- 0.056433044373989105,
- 0.15246811509132385,
- 0.0026613925583660603,
- 0.03789479285478592,
- -0.06029390171170235,
- 0.022196434438228607,
- -0.06678928434848785,
- 0.07860886305570602,
- -0.0059503414668142796,
- 0.09720179438591003,
- 0.06588544696569443,
- 0.01956416666507721,
- 0.029916398227214813,
- -0.01315728947520256,
- -0.03341197222471237,
- -0.020593900233507156,
- 0.053399451076984406,
- -0.0522802509367466,
- -0.005550996866077185,
- 0.0011263290653005242,
- -0.0549096018075943,
- -0.017938489094376564,
- -0.025221874937415123,
- -0.06815668940544128,
- 0.06309451162815094,
- 0.01497233472764492,
- -0.050288401544094086,
- 0.04152378439903259,
- 0.08011402189731598,
- 0.031995441764593124,
- 0.03923302888870239,
- -0.05917799472808838,
- 0.014420229010283947,
- 0.015167547389864922,
- 0.05575424060225487,
- -0.013056979514658451,
- -0.02538391202688217,
- -0.0072956569492816925,
- 0.004325420130044222,
- 0.02255583368241787,
- -0.00924023799598217,
- -0.039503805339336395,
- -0.09889213740825653,
- -0.08568084239959717,
- -0.06464772671461105,
- -0.020277591422200203,
- -0.09512066096067429,
- -0.1080731675028801,
- 0.06854069232940674,
- 0.01561647653579712,
- 0.027063265442848206,
- 0.11800215393304825,
- -0.020242368802428246,
- 0.03349155932664871,
- -0.005495596211403608,
- -0.03959451988339424,
- 0.10484256595373154,
- -0.010570650920271873,
- -0.00916870404034853,
- 0.02076115645468235,
- 0.017256218940019608
- ]
- },
- {
- "keyword": "cycle",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.047869108617305756,
- 0.055236902087926865,
- -0.01356193795800209,
- 0.047634609043598175,
- -0.026739070191979408,
- -0.013021273538470268,
- 0.0723145380616188,
- 0.0023698224686086178,
- 0.04865875840187073,
- -0.025581562891602516,
- 0.014666188508272171,
- 0.015765152871608734,
- 0.049711741507053375,
- -0.041461847722530365,
- 0.053845252841711044,
- 0.015578207559883595,
- -0.01161191612482071,
- 0.03911566361784935,
- 0.005119239445775747,
- -0.030218856409192085,
- 0.06025737524032593,
- -0.024053746834397316,
- -0.03102896735072136,
- 0.028477458283305168,
- -0.008600696921348572,
- 0.04803575202822685,
- -0.10467298328876495,
- 0.05270549654960632,
- 0.013903064653277397,
- -0.09656019508838654,
- -0.015286953188478947,
- 0.14386269450187683,
- -0.030937958508729935,
- -0.02088187448680401,
- 0.008185905404388905,
- -0.014227607287466526,
- -0.03874561935663223,
- 0.03293050453066826,
- 0.04815664142370224,
- -0.025142068043351173,
- 0.03396995738148689,
- -0.06399756669998169,
- 0.023502927273511887,
- -0.003366161370649934,
- 0.0033683583606034517,
- 0.03355784714221954,
- 0.032398615032434464,
- 0.025866955518722534,
- -0.03356795385479927,
- -0.0007293192320503294,
- 0.01213406678289175,
- -0.11288170516490936,
- -0.03470395505428314,
- 0.018842646852135658,
- 0.030558178201317787,
- 0.02641877345740795,
- 0.003998142667114735,
- -0.005842268001288176,
- 0.0085928775370121,
- -0.06961462646722794,
- 0.06139498949050903,
- -0.001353657804429531,
- -0.09803427010774612,
- 0.05896195396780968,
- 0.06203407794237137,
- -0.03301103040575981,
- 0.04227856174111366,
- -0.005287600215524435,
- -0.049778636544942856,
- -0.014489173889160156,
- -0.007840091362595558,
- 0.025719700381159782,
- 0.022550003603100777,
- 0.03567297011613846,
- 0.04065262898802757,
- 0.027888791635632515,
- 0.0912347063422203,
- -0.045648667961359024,
- 0.021504390984773636,
- -0.031301505863666534,
- -0.0494377464056015,
- -0.02914535067975521,
- 0.04258173704147339,
- -0.02116701938211918,
- -0.013199632987380028,
- -0.04813230410218239,
- 0.05901871994137764,
- -0.028304267674684525,
- -0.03108125552535057,
- 0.009954226203262806,
- -0.04957451671361923,
- 0.04118682071566582,
- 0.06237882375717163,
- -0.04247812181711197,
- -0.0826752558350563,
- 0.12940873205661774,
- 0.055904269218444824,
- 0.0011010679882019758,
- 0.042144227772951126,
- 0.23185333609580994,
- 0.004790880251675844,
- 0.043963637202978134,
- 0.008043886162340641,
- -0.023987291380763054,
- -0.05930548533797264,
- 0.02606279030442238,
- -0.06574892997741699,
- -0.022563576698303223,
- -0.021119438111782074,
- 0.004782548174262047,
- -0.03343531861901283,
- -0.01636248081922531,
- 0.0646795779466629,
- 0.01711919531226158,
- 0.021517165005207062,
- -0.03671595826745033,
- 0.010542137548327446,
- 0.0629248321056366,
- 0.035404179245233536,
- 0.09903635084629059,
- 0.0007640529656782746,
- -0.016764383763074875,
- 0.0003393171646166593,
- 0.018246106803417206,
- -0.016321904957294464,
- -0.07222450524568558,
- 0.06965819746255875,
- -5.865764565061217e-33,
- -0.03118036687374115,
- -0.08567441254854202,
- 0.11503283679485321,
- -0.0066132009960711,
- -0.004287813324481249,
- 0.029113253578543663,
- -0.048523250967264175,
- -0.10765951126813889,
- 0.007687827572226524,
- -0.05336516350507736,
- 0.013449745252728462,
- 0.006343993358314037,
- -0.04689963907003403,
- -0.05202725902199745,
- 0.06646381318569183,
- -0.03306913003325462,
- 0.012294123880565166,
- -0.02075989730656147,
- 0.004791718907654285,
- -0.01760789565742016,
- -0.09114595502614975,
- -0.007395855151116848,
- -0.036297716200351715,
- 0.0075694844126701355,
- -0.05961725115776062,
- 0.024578530341386795,
- 0.04706425219774246,
- -0.09141059964895248,
- -0.056014806032180786,
- 0.032508738338947296,
- 0.013307022862136364,
- 0.048796266317367554,
- -0.04312148690223694,
- 0.019192557781934738,
- -0.011115247383713722,
- -0.030944708734750748,
- 0.03601069748401642,
- 0.032543979585170746,
- -0.01204101275652647,
- 0.05301244184374809,
- 0.006326587405055761,
- -0.0726856216788292,
- -0.02802329696714878,
- 0.002892412943765521,
- 0.00781766977161169,
- 0.017635902389883995,
- 0.04653540626168251,
- 0.08150981366634369,
- -0.04115551337599754,
- 0.05700690299272537,
- -0.03632098808884621,
- -0.011646715924143791,
- -0.016822857782244682,
- -0.013297728262841702,
- -0.018809666857123375,
- 0.012139618396759033,
- 0.022826096042990685,
- -0.10958107560873032,
- -0.06895731389522552,
- 0.10801247507333755,
- 0.09886579215526581,
- 0.05644488334655762,
- -0.038029398769140244,
- 0.03062085248529911,
- -0.08667150139808655,
- 0.017432184889912605,
- 0.012266499921679497,
- -0.012788558378815651,
- -0.027767956256866455,
- 0.056579165160655975,
- -0.09754975140094757,
- -0.054373886436223984,
- 0.10817864537239075,
- 0.04201718792319298,
- 0.04766794666647911,
- -0.05158055201172829,
- 0.019673161208629608,
- 0.045063845813274384,
- -0.0877174511551857,
- -0.02432909794151783,
- -0.0016421967884525657,
- -0.01981496252119541,
- -0.06911269575357437,
- -0.028036419302225113,
- -0.006502161268144846,
- 0.028278974816203117,
- -0.04135860502719879,
- -0.02325964719057083,
- 0.01789276860654354,
- -0.018978502601385117,
- 0.018215151503682137,
- -0.085123211145401,
- 0.12837694585323334,
- 0.07009824365377426,
- -0.012241823598742485,
- 4.440727089896758e-33,
- 0.007647253107279539,
- -0.006003468297421932,
- 0.06030438840389252,
- 0.09395849704742432,
- 0.10065890848636627,
- -0.013140622526407242,
- 0.044323910027742386,
- -0.027322180569171906,
- -0.0725901797413826,
- 0.08446598052978516,
- 0.004392712377011776,
- -0.01422844547778368,
- 0.04177181050181389,
- 0.04900914058089256,
- 0.034268442541360855,
- -0.006798372603952885,
- 0.09389753639698029,
- -0.00575500400736928,
- -0.023019861429929733,
- 0.029909178614616394,
- -0.022641312330961227,
- 0.010081629268825054,
- -0.04421002045273781,
- -0.09022911638021469,
- -0.041279472410678864,
- 0.018208550289273262,
- -0.02730218693614006,
- 0.026913778856396675,
- 0.049064263701438904,
- 0.0808878019452095,
- -0.030567876994609833,
- -0.034256502985954285,
- 0.051817990839481354,
- 0.019145408645272255,
- -0.04470548778772354,
- 0.13554014265537262,
- -0.00249506626278162,
- -0.039737675338983536,
- -0.05584075674414635,
- -0.019884075969457626,
- 0.035651013255119324,
- -0.06955093890428543,
- -0.01824900694191456,
- 0.07715729624032974,
- 0.04581351950764656,
- 0.07667890191078186,
- 0.021919161081314087,
- 0.04609905183315277,
- 0.04923996329307556,
- 0.03441068157553673,
- 0.03417055681347847,
- 0.0329660102725029,
- -0.04027017951011658,
- -0.03604930266737938,
- 0.03360710293054581,
- 0.0080720204859972,
- 0.047123562544584274,
- 0.01715189963579178,
- 0.024857982993125916,
- 0.011928331106901169,
- -0.06453832238912582,
- 0.011666975915431976,
- -0.05554661154747009,
- -0.021397385746240616,
- -0.0661567747592926,
- -0.059126660227775574,
- -0.032510608434677124,
- -0.043327827006578445,
- 0.044334329664707184,
- 0.02343762293457985,
- -0.016992177814245224,
- 0.07238181680440903,
- -0.0731009840965271,
- -0.006961410865187645,
- -0.02491283416748047,
- 0.02401798963546753,
- -0.05661219358444214,
- -0.049238018691539764,
- -0.04779955372214317,
- -0.051901474595069885,
- -0.17892780900001526,
- -0.03528749197721481,
- -0.07961767911911011,
- 0.04612598940730095,
- -0.0780370682477951,
- -0.07825791090726852,
- 0.00672568753361702,
- -0.0823657438158989,
- -0.021482493728399277,
- 0.03400411084294319,
- -0.004098765552043915,
- 0.0597652792930603,
- 0.003437517210841179,
- 0.06301764398813248,
- 0.05372976139187813,
- -1.1806668531733067e-8,
- 0.012838327325880527,
- 0.01842498779296875,
- 0.039324574172496796,
- -0.011736367829144001,
- 0.1479979306459427,
- -0.015222596935927868,
- 0.11685742437839508,
- 0.03161279857158661,
- 0.029185401275753975,
- 0.06122954562306404,
- 0.06916790455579758,
- 0.03899307921528816,
- 0.11951837688684464,
- 0.03847905993461609,
- -0.003690081648528576,
- -0.001120935077778995,
- 0.005878595169633627,
- -0.015045219101011753,
- -0.023083925247192383,
- -0.035069044679403305,
- -0.015942422673106194,
- -0.056270938366651535,
- -0.04214493930339813,
- 0.004974872339516878,
- -0.020487559959292412,
- -0.027462298050522804,
- 0.04569949582219124,
- 0.09865935146808624,
- -0.008456708863377571,
- -0.09800112247467041,
- -0.0033494988456368446,
- 0.01171781588345766,
- -0.034173816442489624,
- -0.03758637234568596,
- -0.13923762738704681,
- -0.040252313017845154,
- -0.039641667157411575,
- 0.028889015316963196,
- 0.040350914001464844,
- -0.0033450378105044365,
- -0.017551640048623085,
- 0.013519613072276115,
- -0.010195375420153141,
- 0.0070259589701890945,
- -0.03399788588285446,
- -0.033619049936532974,
- -0.004632059019058943,
- -0.08172685652971268,
- -0.03560861945152283,
- -0.019538601860404015,
- -0.0674818903207779,
- -0.023763781413435936,
- 0.05885602906346321,
- 0.05083761364221573,
- 0.05991966277360916,
- 0.03904786705970764,
- 0.0140331806614995,
- -0.01876770704984665,
- -0.08647703379392624,
- 0.059540268033742905,
- 0.01552580576390028,
- 0.04247329756617546,
- 0.06432493776082993,
- -0.09042558819055557
- ]
- },
- {
- "keyword": "phase",
- "type": "project",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.0694555714726448,
- 0.031843483448028564,
- 0.01052269246429205,
- 0.06377453356981277,
- -0.01756412908434868,
- 0.013135097920894623,
- 0.10462339967489243,
- -0.021222975105047226,
- 0.03207148611545563,
- -0.0301851574331522,
- 0.02230614423751831,
- -0.05201392620801926,
- 0.04814806208014488,
- -0.03913114219903946,
- 0.07364396005868912,
- -0.061747170984745026,
- -0.03164474293589592,
- -0.0510215125977993,
- -0.04542924836277962,
- 0.0190776064991951,
- 0.036058202385902405,
- 0.01827843114733696,
- -0.06599430739879608,
- 0.02258989028632641,
- -0.04328664392232895,
- 0.09902889281511307,
- 0.010140951722860336,
- 0.04076986759901047,
- 0.08439530432224274,
- -0.09952092170715332,
- -0.03403720632195473,
- 0.17343270778656006,
- -0.12072821706533432,
- 0.02374735288321972,
- -0.03519677743315697,
- 0.03401031717658043,
- 0.08481314033269882,
- 0.0015245828544721007,
- 0.04277117922902107,
- -0.0411095917224884,
- 0.03206939995288849,
- -0.07994657754898071,
- -0.00016443569620605558,
- 0.03596664220094681,
- 0.07860803604125977,
- 0.01295930054038763,
- 0.06978185474872589,
- 0.006589739583432674,
- 0.0068908147513866425,
- -0.06501242518424988,
- -0.029851142317056656,
- -0.0203117486089468,
- -0.0647132471203804,
- 0.10368085652589798,
- -0.01939367689192295,
- 0.07393526285886765,
- 0.00577192148193717,
- -0.0017051148461177945,
- 0.034035634249448776,
- 0.06660869717597961,
- 0.016465073451399803,
- -0.004386942368000746,
- -0.031199457123875618,
- 0.019638849422335625,
- 0.09676559269428253,
- -0.013903611339628696,
- 0.02470998466014862,
- -0.010940256528556347,
- -0.019847892224788666,
- -0.006415519863367081,
- -0.003122851485386491,
- -0.007445062976330519,
- 0.05595609173178673,
- -0.04549664631485939,
- 0.07591257989406586,
- -0.003854915499687195,
- 0.036414019763469696,
- -0.06324002146720886,
- 0.03417358174920082,
- 0.07242213934659958,
- -0.04909849166870117,
- -0.06526104360818863,
- 0.0001714878890197724,
- 0.020257502794265747,
- -0.06310151517391205,
- -0.067581407725811,
- -0.005687027703970671,
- -0.038442857563495636,
- -0.015599320642650127,
- -0.012364162132143974,
- -0.10510772466659546,
- 0.02915997803211212,
- 0.011120904237031937,
- -0.02553967759013176,
- 0.047332748770713806,
- 0.059073980897665024,
- 0.01618591696023941,
- -0.012443352490663528,
- 0.09839378297328949,
- 0.21278657019138336,
- 0.03480371832847595,
- -0.017989613115787506,
- -0.0509512834250927,
- -0.06830098479986191,
- -0.03575938940048218,
- -0.06573081016540527,
- 0.028390884399414062,
- 0.04358353838324547,
- -0.009907829575240612,
- 0.030182383954524994,
- -0.051315564662218094,
- -0.015581769868731499,
- 0.1080460324883461,
- -0.05752822384238243,
- 0.05338767170906067,
- 0.024754857644438744,
- 0.0038287153001874685,
- 0.04461245611310005,
- 0.05274068936705589,
- -0.0778999999165535,
- 0.03521304205060005,
- -0.014994962140917778,
- 0.009276353754103184,
- 0.03678340092301369,
- -0.05913274362683296,
- -0.08282002806663513,
- 0.040104836225509644,
- -5.426789791400065e-33,
- 0.007749742362648249,
- -0.05309296399354935,
- 0.05400096997618675,
- 0.031227201223373413,
- -0.029676653444767,
- 0.01916731335222721,
- -0.01898159459233284,
- -0.016732241958379745,
- 0.0010359641164541245,
- 0.03432667255401611,
- -0.017545009031891823,
- 0.01696602813899517,
- -0.08636922389268875,
- -0.030479667708277702,
- 0.002814025152474642,
- -0.06021997705101967,
- -0.008619626052677631,
- 0.08569016307592392,
- -0.007183391135185957,
- 0.01788577064871788,
- 0.016505278646945953,
- 0.05033945292234421,
- -0.007525291759520769,
- -0.03881185129284859,
- -0.007116809021681547,
- 0.05415509268641472,
- 0.01507149264216423,
- -0.06601555645465851,
- -0.07375676184892654,
- 0.037390608340501785,
- 0.07896870374679565,
- 0.009896812960505486,
- -0.10266024619340897,
- 0.047769442200660706,
- -0.017785824835300446,
- -0.02006019651889801,
- 0.0165634173899889,
- -0.020127156749367714,
- 0.003556162817403674,
- -0.014271605759859085,
- -0.05707485228776932,
- -0.008024020120501518,
- 0.016639867797493935,
- -0.005888670217245817,
- 0.08258567750453949,
- -0.012915917672216892,
- 0.038076430559158325,
- 0.056024618446826935,
- -0.021636920049786568,
- -0.007200627122074366,
- 0.009677776135504246,
- -0.030468380078673363,
- -0.010403426364064217,
- 0.0034145195968449116,
- 0.044988129287958145,
- 0.10960569977760315,
- 0.027539843693375587,
- -0.024963216856122017,
- -0.06722426414489746,
- -0.010772289708256721,
- 0.04761934652924538,
- -0.04741381108760834,
- -0.06440193951129913,
- -0.05722777172923088,
- 0.010703387670218945,
- 0.02795456163585186,
- -0.0388624481856823,
- -0.03878483548760414,
- 0.042290445417165756,
- -0.031581681221723557,
- -0.028154879808425903,
- -0.00269818352535367,
- 0.10866321623325348,
- 0.02382987178862095,
- 0.02359052002429962,
- -0.02671637199819088,
- 0.06534689664840698,
- 0.09574081003665924,
- -0.06620349735021591,
- -0.01624937541782856,
- -0.09779085218906403,
- -0.02048720419406891,
- -0.06511583924293518,
- 0.008506889455020428,
- 0.007802807725965977,
- 0.043551843613386154,
- 0.03657089173793793,
- -0.027974270284175873,
- -0.05588162690401077,
- -0.04029913619160652,
- -0.06193503364920616,
- 0.013325336389243603,
- 0.07400063425302505,
- 0.08552665263414383,
- -0.028862955048680305,
- 4.0679664436494874e-33,
- -0.05822160840034485,
- -0.07936941832304001,
- -0.09352137893438339,
- 0.0769738107919693,
- 0.03689331188797951,
- -0.014211619272828102,
- 0.05240931734442711,
- 0.02497274987399578,
- 0.08681824058294296,
- 0.10291039943695068,
- 0.04544396698474884,
- -0.04721200466156006,
- 0.0024975764099508524,
- -0.001876317081041634,
- -0.02257505990564823,
- 0.008616944774985313,
- 0.09043514728546143,
- 0.009499768726527691,
- 0.05433804169297218,
- 0.04105343669652939,
- -0.06289433687925339,
- -0.011138408444821835,
- 0.014046501368284225,
- 0.050682973116636276,
- -0.017719902098178864,
- 0.01167411357164383,
- 0.0170780997723341,
- -0.00414673425257206,
- -0.03624740242958069,
- 0.10884705930948257,
- 0.0020437254570424557,
- -0.09169773012399673,
- -0.010119481943547726,
- 0.05155320465564728,
- -0.08265763521194458,
- 0.0813564881682396,
- 0.055069852620363235,
- -0.1296367347240448,
- -0.0708688497543335,
- -0.04669579491019249,
- 0.03605738654732704,
- -0.071338951587677,
- -0.03394008055329323,
- 0.06406736373901367,
- -0.04781864210963249,
- 0.0009359622490592301,
- 0.12144823372364044,
- 0.07272814214229584,
- -0.0197910126298666,
- 0.08172672986984253,
- -0.04808064550161362,
- -0.08073766529560089,
- -0.018903007730841637,
- -0.048897821456193924,
- -0.01608802005648613,
- -0.0058252946473658085,
- -0.05221201106905937,
- 0.025162413716316223,
- -0.057436633855104446,
- 0.03465734049677849,
- -0.04321149364113808,
- 0.025436025112867355,
- -0.09032586961984634,
- -0.011999846436083317,
- -0.038029853254556656,
- -0.014642356894910336,
- 0.002862693043425679,
- -0.017283126711845398,
- 0.07454387098550797,
- -0.021052049472928047,
- 0.0521526038646698,
- 0.09127955883741379,
- -0.02774377353489399,
- -0.021210212260484695,
- -0.014289909042418003,
- -0.05413689464330673,
- -0.04103375971317291,
- 0.005547520704567432,
- -0.07925133407115936,
- -0.03307092934846878,
- -0.09175053238868713,
- -0.01108265295624733,
- -0.10640018433332443,
- 0.006852833088487387,
- -0.00916666816920042,
- -0.011554011143743992,
- -0.011729501187801361,
- 0.09353498369455338,
- -0.006967966910451651,
- -0.010545812547206879,
- -0.03406030312180519,
- 0.08035021275281906,
- 0.0005847617867402732,
- 0.014216236770153046,
- 0.006974709685891867,
- -1.1827615331583274e-8,
- 0.05537346750497818,
- 0.05392620339989662,
- 0.023307181894779205,
- -0.06859053671360016,
- 0.029714196920394897,
- 0.02247394435107708,
- -0.052072618156671524,
- -0.01507699117064476,
- -0.024608731269836426,
- 0.057073578238487244,
- 0.034783124923706055,
- 0.0021511518862098455,
- 0.04265671223402023,
- -0.011985590681433678,
- 0.025590181350708008,
- -0.0016295794630423188,
- 0.0045768097043037415,
- 0.004109775181859732,
- -0.020699109882116318,
- 0.00016449906979687512,
- -0.009475430473685265,
- -0.060299672186374664,
- -0.01501550804823637,
- -0.03799848631024361,
- 0.012791305780410767,
- 0.02297857217490673,
- 0.040330030024051666,
- 0.009945239871740341,
- -0.014052310027182102,
- 0.05101385340094566,
- -0.02405778132379055,
- 0.018475128337740898,
- -0.1400609016418457,
- 0.07615555077791214,
- -0.10276099294424057,
- 0.016022831201553345,
- 0.03523387014865875,
- 0.04907621815800667,
- 0.004914909601211548,
- -0.02229469269514084,
- 0.014876834116876125,
- -0.009528248570859432,
- -0.008041579276323318,
- 0.00019693764625117183,
- 0.009715955704450607,
- 0.07047932595014572,
- -0.058163467794656754,
- 0.0005260513862594962,
- 0.013594183139503002,
- -0.03855414688587189,
- -0.05330672115087509,
- 0.10497762262821198,
- 0.0010665300069376826,
- 0.03557578846812248,
- 0.06259327381849289,
- 0.05254784971475601,
- -0.030773863196372986,
- -0.01187502034008503,
- -0.044937558472156525,
- 0.05333399400115013,
- 0.11660632491111755,
- 0.047430697828531265,
- -0.021853936836123466,
- -0.07868615537881851
- ]
- },
- {
- "keyword": "process",
- "type": "process",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.08661580085754395,
- 0.023609546944499016,
- -0.06598127633333206,
- -0.05922843515872955,
- 0.020267441868782043,
- -0.061358559876680374,
- 0.11054583638906479,
- 0.020903991535305977,
- 0.031564824283123016,
- 0.038088854402303696,
- 0.006397954188287258,
- 0.005811771377921104,
- 0.014452897012233734,
- -0.028596477583050728,
- -0.043580763041973114,
- -0.028824197128415108,
- -0.0233610887080431,
- -0.039298173040151596,
- -0.07545066624879837,
- -0.04520789533853531,
- 0.015307104215025902,
- -0.03307516127824783,
- -0.059914279729127884,
- -0.020070716738700867,
- -0.06633520126342773,
- 0.05588497966527939,
- 0.022529199719429016,
- -0.03074309602379799,
- 0.12131396681070328,
- -0.09928017109632492,
- 0.058201175183057785,
- 0.0550365075469017,
- 0.04344857111573219,
- -0.03946997597813606,
- 0.06537633389234543,
- 0.10278402268886566,
- -0.01256944052875042,
- -0.03950772434473038,
- 0.002087327418848872,
- -0.017917681485414505,
- 0.01645711064338684,
- -0.1003652811050415,
- -0.07321225851774216,
- 0.014452909119427204,
- 0.042630068957805634,
- 0.01543605700135231,
- -0.057690322399139404,
- -0.040127769112586975,
- -0.06766998767852783,
- -0.036067984998226166,
- -0.10205183923244476,
- -0.025522395968437195,
- -0.07159112393856049,
- 0.014151085168123245,
- -0.021149100735783577,
- 0.03004986234009266,
- 0.04666714370250702,
- -0.060231659561395645,
- -0.04828536882996559,
- -0.011459216475486755,
- 0.0011286602821201086,
- 0.020139027386903763,
- -0.10674324631690979,
- 0.049778785556554794,
- 0.07589827477931976,
- -0.009215757250785828,
- -0.0071390531957149506,
- -0.04738945886492729,
- 0.03591177612543106,
- -0.11159111559391022,
- 0.002692949026823044,
- 0.06710468232631683,
- -0.09038986265659332,
- 0.0023828637786209583,
- -0.024423561990261078,
- -0.08342546224594116,
- -0.037354476749897,
- -0.0466570220887661,
- 0.0231741052120924,
- -0.0003335817891638726,
- 0.047702256590127945,
- 0.03404706344008446,
- -0.068735770881176,
- 0.002331037539988756,
- -0.012690064497292042,
- 0.04907228425145149,
- 0.013666506856679916,
- -0.013667241670191288,
- 0.04165191575884819,
- 0.043515291064977646,
- -0.05844119191169739,
- 0.03909873589873314,
- -0.033245086669921875,
- -0.013371803797781467,
- 0.00848491583019495,
- 0.039756327867507935,
- 0.01958896778523922,
- -0.013621003367006779,
- 0.041194625198841095,
- 0.22554558515548706,
- 0.0029666542541235685,
- 0.06031914800405502,
- 0.006464838050305843,
- -0.08755018562078476,
- -0.023534975945949554,
- -0.0701955258846283,
- -0.04997428506612778,
- 0.0848744660615921,
- 0.029287725687026978,
- -0.006968680769205093,
- -0.06201988086104393,
- -0.07065463066101074,
- 0.03060966357588768,
- 0.09292729943990707,
- 0.06148378923535347,
- 0.033097170293331146,
- 0.032954148948192596,
- -0.000680528930388391,
- -0.02692788653075695,
- 0.04150968790054321,
- 0.06138395145535469,
- 0.05600450560450554,
- -0.0734446570277214,
- -0.025346068665385246,
- -0.07968921959400177,
- -0.08700346946716309,
- 0.07560867071151733,
- -6.323834142425523e-33,
- 0.0024992513936012983,
- -0.09286507964134216,
- 0.030692877247929573,
- 0.003587908111512661,
- -0.03310280293226242,
- 0.0032673964742571115,
- -0.05109001323580742,
- -0.024627387523651123,
- -0.008611878380179405,
- 0.0310484878718853,
- 0.02860550954937935,
- -0.0582316517829895,
- -0.05749816820025444,
- -0.0005303601501509547,
- 0.011038417927920818,
- -0.08935422450304031,
- 0.05190394073724747,
- 0.09830119460821152,
- -0.018178177997469902,
- 0.016751931980252266,
- -0.027257246896624565,
- 0.06894852966070175,
- -0.05455085635185242,
- 0.08087258040904999,
- 0.00834608357399702,
- 0.0023328380193561316,
- -0.10403893887996674,
- -0.043529100716114044,
- 0.009198839776217937,
- -0.0011217676801607013,
- 0.0738271176815033,
- 0.049063973128795624,
- -0.08315388858318329,
- 0.009996465407311916,
- 0.014376906678080559,
- 0.0004061308573000133,
- 0.05471980199217796,
- -0.00650652265176177,
- 0.06462369114160538,
- -0.10456304252147675,
- -0.02810719981789589,
- -0.026995882391929626,
- -0.004319371189922094,
- 0.054334480315446854,
- -0.01123140100389719,
- 0.000990777974948287,
- -0.030128315091133118,
- 0.0008603026508353651,
- 0.019081678241491318,
- 0.03214629366993904,
- 0.07135635614395142,
- 0.0030235282611101866,
- 0.08544819056987762,
- 0.03292060270905495,
- -0.01938796229660511,
- 0.04562241956591606,
- 0.008546407334506512,
- -0.014346207492053509,
- -0.02565072663128376,
- 0.04690902680158615,
- 0.07190845161676407,
- 0.06824847310781479,
- -0.11624550074338913,
- 0.045261550694704056,
- 0.07109441608190536,
- -0.07410557568073273,
- 0.028747787699103355,
- -0.05091221630573273,
- 0.1048068255186081,
- 0.021514486521482468,
- -0.155081644654274,
- 0.0020512451883405447,
- 0.09345531463623047,
- -0.036948852241039276,
- 0.03997417911887169,
- -0.04006543010473251,
- 0.0067728133872151375,
- 0.03533584624528885,
- -0.09414730966091156,
- -0.01843384839594364,
- -0.06875798106193542,
- -0.015378129668533802,
- -0.01709565334022045,
- -0.02039898745715618,
- 0.041536785662174225,
- 0.028520511463284492,
- -0.029849069193005562,
- -0.023386802524328232,
- -0.02721448615193367,
- 0.022280476987361908,
- -0.022263329476118088,
- 0.012259051203727722,
- -0.007371116429567337,
- 0.0715668797492981,
- -0.008749834261834621,
- 3.4225054343488463e-33,
- -0.010434212163090706,
- -0.06473328918218613,
- -0.026798980310559273,
- 0.074905164539814,
- 0.06047431379556656,
- -0.03749987483024597,
- -0.019977504387497902,
- -0.10205542296171188,
- 0.0267932191491127,
- 0.0583626814186573,
- -0.0873846709728241,
- -0.01640465296804905,
- 0.050280194729566574,
- 0.046141549944877625,
- -0.011470208875834942,
- -0.018588876351714134,
- 0.13580934703350067,
- 0.07056082785129547,
- 0.008567309007048607,
- 0.04738541319966316,
- -0.062020301818847656,
- 0.10764257609844208,
- 0.014898126944899559,
- -0.041080038994550705,
- -0.016556276008486748,
- 0.02034936286509037,
- 0.062480662018060684,
- -0.008385785855352879,
- 0.026336928829550743,
- 0.017677774652838707,
- -0.01603371649980545,
- -0.09424237161874771,
- -0.0385831780731678,
- 0.07725166529417038,
- -0.06179420277476311,
- -0.023112161085009575,
- 0.08268647640943527,
- 0.03786374256014824,
- 0.0017226793570443988,
- -0.035323768854141235,
- 0.07605050504207611,
- 0.011484635062515736,
- -0.008073636330664158,
- 0.07016621530056,
- 0.013293303549289703,
- 0.0215783528983593,
- 0.010952015407383442,
- -0.023101698607206345,
- -0.028470104560256004,
- -0.03733586519956589,
- 0.01314798928797245,
- 0.07539810985326767,
- -0.01614954136312008,
- 0.042497314512729645,
- -0.017209963873028755,
- 0.018572669476270676,
- 0.06597889959812164,
- -0.07266685366630554,
- -0.03619221970438957,
- 0.024452779442071915,
- 0.011799962259829044,
- 0.026964623481035233,
- -0.005077410489320755,
- -0.04720643535256386,
- 0.010334301739931107,
- 0.04844994843006134,
- -0.0020808170083910227,
- -0.0026054223999381065,
- 0.017524493858218193,
- 0.0034763976000249386,
- 0.08791045099496841,
- 0.08247269690036774,
- -0.0759323239326477,
- 0.004856133833527565,
- 0.01778235100209713,
- -0.04447684809565544,
- -0.07979035377502441,
- -0.07133486866950989,
- -0.06312084197998047,
- -0.034700214862823486,
- -0.07289477437734604,
- -0.0074166348204016685,
- -0.000025623588953749277,
- 0.013593611307442188,
- -0.015523618087172508,
- -0.06406700611114502,
- 0.07417444884777069,
- -0.02741582691669464,
- -0.054666668176651,
- -0.03970110043883324,
- 0.011735877953469753,
- 0.033583980053663254,
- 0.027210811153054237,
- -0.006350330542773008,
- -0.002390040783211589,
- -1.3038226498451877e-8,
- -0.010658256709575653,
- -0.07516603171825409,
- 0.06644122302532196,
- -0.0000063230181694962084,
- 0.08080843091011047,
- 0.07100110501050949,
- -0.0009014027309603989,
- 0.04241173341870308,
- 0.0231165774166584,
- 0.002237473614513874,
- -0.06483094394207001,
- 0.006322010420262814,
- -0.006163281854242086,
- 0.05478078871965408,
- 0.09490064531564713,
- -0.012173260562121868,
- -0.021250583231449127,
- 0.04039184749126434,
- -0.056472741067409515,
- -0.09163506329059601,
- 0.02827015519142151,
- -0.015421552583575249,
- -0.011336893774569035,
- 0.055744659155607224,
- -0.024863865226507187,
- -0.023528680205345154,
- 0.050220854580402374,
- 0.022584306076169014,
- -0.013232892379164696,
- 0.00652762595564127,
- 0.01612062379717827,
- 0.05434794723987579,
- 0.005925907753407955,
- 0.03415709361433983,
- 0.015556390397250652,
- -0.0320289246737957,
- 0.002833015052601695,
- 0.007432974874973297,
- 0.02176624909043312,
- -0.026468636468052864,
- -0.05793873220682144,
- 0.10207534581422806,
- -0.001087523065507412,
- 0.0029141141567379236,
- 0.008355680853128433,
- 0.006356284487992525,
- -0.061281852424144745,
- -0.08851377665996552,
- -0.022658968344330788,
- 0.022189397364854813,
- 0.009344537742435932,
- -0.004913192708045244,
- 0.03643204644322395,
- 0.06768997013568878,
- 0.060947176069021225,
- 0.03326815366744995,
- 0.031183812767267227,
- -0.05227024853229523,
- -0.022735947743058205,
- 0.03632389008998871,
- 0.09495268762111664,
- 0.06549683958292007,
- 0.09662619233131409,
- 0.029228592291474342
- ]
- },
- {
- "keyword": "procedure",
- "type": "process",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.009315653704106808,
- 0.11147210747003555,
- -0.0411878302693367,
- -0.0063542709685862064,
- -0.11389465630054474,
- -0.06574789434671402,
- 0.03130612149834633,
- 0.0736197978258133,
- -0.039951786398887634,
- -0.02639826387166977,
- 0.06828897446393967,
- -0.0006708887522108853,
- 0.022538527846336365,
- -0.017855815589427948,
- -0.06984259933233261,
- -0.013873504474759102,
- 0.013962510973215103,
- -0.005240126047283411,
- -0.005432416219264269,
- -0.011864476837217808,
- -0.01738143153488636,
- -0.0006884768954478204,
- -0.04854618385434151,
- 0.0020944143179804087,
- -0.021371014416217804,
- 0.009526962414383888,
- -0.0016607587458565831,
- -0.02635367587208748,
- 0.0761314406991005,
- -0.05358566343784332,
- 0.06154732033610344,
- 0.01246667094528675,
- -0.001458896673284471,
- -0.05008436739444733,
- 0.07036896795034409,
- 0.009119585156440735,
- -0.0230256337672472,
- -0.011183616705238819,
- 0.034124284982681274,
- 0.03528103232383728,
- 0.021281152963638306,
- -0.14197947084903717,
- -0.09962019324302673,
- -0.022189317271113396,
- 0.027524344623088837,
- 0.05181701108813286,
- -0.0787791758775711,
- 0.04247533157467842,
- -0.0011055468348786235,
- 0.002457842929288745,
- -0.08476832509040833,
- -0.019838420674204826,
- -0.05597668141126633,
- 0.06857044249773026,
- -0.02868499606847763,
- -0.017053140327334404,
- 0.012140420265495777,
- -0.03571784496307373,
- -0.007022175006568432,
- -0.01620844565331936,
- 0.025802334770560265,
- 0.03789351508021355,
- -0.08824717253446579,
- 0.08557159453630447,
- 0.06375575065612793,
- -0.07090756297111511,
- 0.035475295037031174,
- -0.1466015726327896,
- 0.06554581969976425,
- -0.001170483767054975,
- -0.014012890867888927,
- -0.02424570918083191,
- -0.05720033496618271,
- 0.07238440960645676,
- -0.03842761367559433,
- -0.04004453495144844,
- 0.03428402170538902,
- -0.042388565838336945,
- 0.036028675734996796,
- 0.008023701608181,
- 0.0015748400473967195,
- 0.08278653025627136,
- 0.009124919772148132,
- 0.006214831955730915,
- 0.014723002910614014,
- 0.02342229336500168,
- -0.011333376169204712,
- 0.010512431152164936,
- -0.01624864526093006,
- 0.012801817618310452,
- 0.02269968017935753,
- 0.023015782237052917,
- -0.05535898357629776,
- -0.06440456956624985,
- -0.03052622824907303,
- -0.000005254880306893028,
- -0.03282807394862175,
- -0.1038145199418068,
- 0.11491519957780838,
- 0.23948511481285095,
- -0.0269126258790493,
- -0.004387206397950649,
- -0.026043880730867386,
- -0.12231705337762833,
- -0.11096595227718353,
- -0.04145249351859093,
- -0.01675919070839882,
- -0.008605309762060642,
- 0.021199310198426247,
- -0.00750707695260644,
- -0.058958131819963455,
- -0.04575889930129051,
- 0.034141093492507935,
- -0.034264154732227325,
- -0.01687507890164852,
- 0.05326349288225174,
- 0.007165574934333563,
- 0.03841177374124527,
- 0.010196669027209282,
- -0.05169736593961716,
- 0.02899211458861828,
- 0.04465159401297569,
- 0.001364868599921465,
- -0.06589937955141068,
- -0.008522896096110344,
- -0.07063333690166473,
- 0.05185440555214882,
- -5.9667274075113585e-33,
- 0.015798060223460197,
- -0.02549404464662075,
- 0.00026843315572477877,
- 0.022113295271992683,
- -0.04491991177201271,
- 0.08303199708461761,
- -0.03454737365245819,
- -0.07141252607107162,
- -0.020275166258215904,
- 0.02050190232694149,
- 0.020412491634488106,
- -0.08245677500963211,
- -0.01768212392926216,
- -0.042140357196331024,
- -0.013828710652887821,
- -0.027583345770835876,
- 0.0035458612255752087,
- 0.14927417039871216,
- -0.0814291313290596,
- 0.05331208184361458,
- 0.00020390929421409965,
- -0.005256726872175932,
- 0.03658366575837135,
- 0.050863612443208694,
- 0.019092148169875145,
- 0.055599525570869446,
- -0.01461578905582428,
- -0.02918807975947857,
- 0.02031918615102768,
- 0.0059920200146734715,
- 0.044956304132938385,
- 0.0459950752556324,
- -0.05425528436899185,
- -0.0066098798997700214,
- 0.01980503275990486,
- 0.05491203814744949,
- 0.0015473841922357678,
- -0.03962203115224838,
- 0.06756755709648132,
- 0.0035573546774685383,
- -0.00962498877197504,
- -0.02748708240687847,
- 0.05119677633047104,
- 0.05639314651489258,
- 0.04431222751736641,
- -0.0022644668351858854,
- -0.0627642571926117,
- 0.031071675941348076,
- 0.09092780202627182,
- -0.03106248565018177,
- 0.05100703611969948,
- 0.02105676382780075,
- 0.009838199242949486,
- -0.05493265762925148,
- 0.003463197033852339,
- 0.07234804332256317,
- -0.006354952696710825,
- -0.010345729067921638,
- 0.0440826378762722,
- 0.02831106074154377,
- 0.07065213471651077,
- 0.04905111715197563,
- -0.11804760992527008,
- 0.06039728969335556,
- 0.013345777988433838,
- -0.07936519384384155,
- -0.04705578833818436,
- -0.021733462810516357,
- 0.08585326373577118,
- -0.10648219287395477,
- -0.10603613406419754,
- -0.012267221696674824,
- 0.07325848191976547,
- -0.0007950267754495144,
- -0.0756685808300972,
- -0.014732101000845432,
- 0.0652095377445221,
- -0.003570697270333767,
- -0.020842840895056725,
- -0.04788462445139885,
- -0.07022631913423538,
- 0.05560744181275368,
- -0.03755214437842369,
- 0.023406680673360825,
- 0.15672869980335236,
- 0.02280610240995884,
- -0.038716625422239304,
- 0.043179951608181,
- -0.004405259154736996,
- -0.012538440525531769,
- -0.08099683374166489,
- -0.024997247382998466,
- -0.043543923646211624,
- 0.013687440194189548,
- 0.07346223294734955,
- 3.4495902935597304e-33,
- 0.00420442083850503,
- -0.05683515593409538,
- 0.02400834672152996,
- 0.10132598876953125,
- -0.011088905856013298,
- -0.031374748796224594,
- -0.03077845834195614,
- -0.06368863582611084,
- -0.04513469338417053,
- 0.012700861319899559,
- -0.056026216596364975,
- -0.02087469957768917,
- -0.006136299576610327,
- -0.04889515042304993,
- -0.0374121256172657,
- 0.04177141562104225,
- 0.010612676851451397,
- -0.025705896317958832,
- -0.06712096184492111,
- 0.06586994975805283,
- 0.03622785210609436,
- 0.02897399663925171,
- 0.046018537133932114,
- -0.011959441006183624,
- -0.04903263971209526,
- 0.00043651231680996716,
- 0.10763920843601227,
- 0.018158990889787674,
- -0.022305965423583984,
- 0.01717332750558853,
- 0.006270187441259623,
- -0.10377199947834015,
- -0.07556907087564468,
- 0.025315115228295326,
- 0.0030574772972613573,
- 0.04509374126791954,
- 0.0967908650636673,
- 0.018412798643112183,
- -0.015723420307040215,
- -0.01289712730795145,
- 0.07356065511703491,
- 0.003981699235737324,
- -0.033878326416015625,
- 0.02918524108827114,
- -0.011894573457539082,
- 0.01569622941315174,
- 0.01005898043513298,
- -0.05214645713567734,
- 0.007784245535731316,
- -0.029516149312257767,
- -0.01962951570749283,
- 0.03296239301562309,
- -0.03252958506345749,
- -0.010136986151337624,
- -0.010488439351320267,
- -0.018932856619358063,
- 0.009636413305997849,
- -0.06003496050834656,
- 0.05667966231703758,
- 0.02154671773314476,
- -0.007750869262963533,
- 0.04090872034430504,
- 0.02826540358364582,
- 0.003973042592406273,
- -0.003048808081075549,
- 0.060263894498348236,
- 0.0006410722271539271,
- 0.004137184005230665,
- -0.02684314362704754,
- 0.06253032386302948,
- 0.0036370581947267056,
- 0.07004165649414062,
- -0.03767772018909454,
- -0.009725297801196575,
- 0.0378427729010582,
- -0.024794964119791985,
- -0.0762985423207283,
- -0.019685225561261177,
- -0.0479702465236187,
- 0.03647175431251526,
- -0.020616555586457253,
- -0.09455829858779907,
- -0.006508134305477142,
- 0.0663447454571724,
- 0.012880153022706509,
- -0.046646058559417725,
- 0.09346319735050201,
- -0.034239381551742554,
- -0.03504236042499542,
- -0.017769314348697662,
- -0.026884809136390686,
- 0.00729930866509676,
- 0.04092856124043465,
- -0.01539852749556303,
- 0.0013662739656865597,
- -1.36317073184955e-8,
- -0.07185819000005722,
- -0.07309267669916153,
- 0.05524748936295509,
- 0.017704203724861145,
- 0.04932001605629921,
- -0.025594206526875496,
- -0.051154494285583496,
- 0.02711639367043972,
- 0.024977046996355057,
- -0.11323448270559311,
- -0.03971050679683685,
- 0.06266728788614273,
- 0.08725298196077347,
- -0.008205841295421124,
- 0.09976544976234436,
- 0.003027366241440177,
- 0.021979402750730515,
- 0.07321403175592422,
- -0.08441656082868576,
- -0.08587269484996796,
- -0.04598069563508034,
- -0.046383488923311234,
- 0.011474859900772572,
- -0.03735491260886192,
- 0.04413880407810211,
- -0.004302322398871183,
- 0.07002004235982895,
- 0.07397839426994324,
- -0.0379764661192894,
- 0.0110483942553401,
- 0.00035419498453848064,
- -0.008361108601093292,
- 0.036094821989536285,
- -0.006209569983184338,
- 0.028867820277810097,
- -0.008713629096746445,
- 0.07435251027345657,
- 0.07418037205934525,
- 0.10082792490720749,
- -0.021352633833885193,
- 0.014260122552514076,
- 0.08501830697059631,
- 0.013303244486451149,
- 0.034563854336738586,
- -0.01799456588923931,
- 0.0224294550716877,
- -0.0987832173705101,
- -0.005695273634046316,
- -0.03534307703375816,
- -0.0009108922095037997,
- 0.021463636308908463,
- -0.031909044831991196,
- 0.05145801603794098,
- 0.07158982753753662,
- -0.018314385786652565,
- 0.013292661868035793,
- 0.07756491005420685,
- -0.051231734454631805,
- -0.017219016328454018,
- 0.049474187195301056,
- 0.02961229719221592,
- 0.13936346769332886,
- 0.10450493544340134,
- -0.07689293473958969
- ]
- },
- {
- "keyword": "method",
- "type": "process",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.01153668761253357,
- 0.09737449139356613,
- -0.017780035734176636,
- 0.008136196061968803,
- -0.10306308418512344,
- 0.01959557645022869,
- 0.09728584438562393,
- 0.04364422708749771,
- -0.022894952446222305,
- -0.009332351386547089,
- 0.07776987552642822,
- 0.005411705933511257,
- 0.007419846951961517,
- -0.016729824244976044,
- -0.043609749525785446,
- -0.027630630880594254,
- -0.00864281877875328,
- -0.00984227005392313,
- -0.034938275814056396,
- -0.04026079922914505,
- 0.05569837987422943,
- -0.03398844972252846,
- -0.06215517222881317,
- 0.01634644903242588,
- -0.02714488096535206,
- 0.008266293443739414,
- -0.018456917256116867,
- -0.017297320067882538,
- 0.09696429967880249,
- -0.06158595532178879,
- 0.070963554084301,
- 0.06357055902481079,
- -0.06075616925954819,
- -0.038495052605867386,
- -0.09781835973262787,
- 0.07385232299566269,
- 0.004212296102195978,
- 0.026798833161592484,
- 0.0014593692030757666,
- 0.0038447417318820953,
- -0.08254209160804749,
- -0.06040613725781441,
- -0.04978399723768234,
- -0.0240235086530447,
- 0.05585084483027458,
- 0.0209366362541914,
- -0.014066808857023716,
- 0.028257064521312714,
- 0.04747666046023369,
- -0.034248657524585724,
- -0.03860118240118027,
- 0.07239936292171478,
- -0.046361733227968216,
- -0.0306528452783823,
- 0.02877441979944706,
- -0.10917738080024719,
- -0.008390380069613457,
- 0.03132971376180649,
- 0.024893026798963547,
- -0.01697607897222042,
- 0.10032067447900772,
- 0.03494812920689583,
- -0.11930333077907562,
- 0.07585074007511139,
- 0.044600654393434525,
- -0.0635487288236618,
- 0.018411194905638695,
- -0.07332754880189896,
- -0.04015142470598221,
- 0.008429479785263538,
- 0.010311205871403217,
- 0.04463104531168938,
- -0.02516571618616581,
- 0.06584813445806503,
- 0.06952819973230362,
- -0.0034315353259444237,
- 0.03783382475376129,
- -0.04080873355269432,
- 0.02271108701825142,
- 0.0013599188532680273,
- 0.004872084595263004,
- 0.014959754422307014,
- 0.017841339111328125,
- 0.0531218983232975,
- 0.09134598821401596,
- 0.09280399233102798,
- -0.0495394766330719,
- -0.029627857729792595,
- -0.04285821318626404,
- -0.005569455213844776,
- -0.018207620829343796,
- 0.019439643248915672,
- -0.05849596858024597,
- -0.028918594121932983,
- -0.08356966823339462,
- 0.018585816025733948,
- -0.03237791359424591,
- -0.020434480160474777,
- 0.03075154684484005,
- 0.3044587969779968,
- -0.013816259801387787,
- -0.030052537098526955,
- -0.03479092940688133,
- -0.12223342806100845,
- -0.0046018981374800205,
- -0.061496950685977936,
- 0.016221217811107635,
- 0.003191026160493493,
- 0.07366057485342026,
- -0.005571621470153332,
- -0.07163975387811661,
- 0.005639213602989912,
- -0.08456497639417648,
- 0.04218777269124985,
- 0.0759221538901329,
- -0.06946785002946854,
- 0.010924874804913998,
- 0.012174317613244057,
- -0.008031806908547878,
- -0.05881841480731964,
- 0.09082098305225372,
- 0.028356216847896576,
- 0.02138225920498371,
- -0.019953599199652672,
- -0.0781140923500061,
- -0.0072489636950194836,
- 0.06320441514253616,
- -6.013336125863447e-33,
- 0.02690596878528595,
- 0.019242530688643456,
- 0.07014410942792892,
- 0.043721117079257965,
- -0.05205643177032471,
- 0.013491170480847359,
- -0.01808927021920681,
- -0.008907959796488285,
- -0.0058727264404296875,
- 0.03453408181667328,
- 0.021183963865041733,
- -0.02714953012764454,
- 0.01806570217013359,
- -0.04496205225586891,
- 0.13326387107372284,
- -0.003890840569511056,
- 0.010752731934189796,
- 0.04630499333143234,
- -0.07982462644577026,
- -0.011213243938982487,
- 0.0017710956744849682,
- 0.009958221577107906,
- 0.09616149216890335,
- 0.028930654749274254,
- -0.024593785405158997,
- -0.03835025429725647,
- 0.029018273577094078,
- -0.024951906874775887,
- -0.018660861998796463,
- 0.04584702476859093,
- 0.03953823074698448,
- 0.022158553823828697,
- -0.12132566422224045,
- 0.030675025656819344,
- -0.016891758888959885,
- 0.004517523106187582,
- 0.03862372785806656,
- -0.01632658764719963,
- -0.01780083030462265,
- -0.049022018909454346,
- -0.03126159682869911,
- -0.08229005336761475,
- 0.006646630819886923,
- -0.02088444121181965,
- 0.08914726972579956,
- 0.0642457976937294,
- -0.035614702850580215,
- 0.0033258858602494,
- 0.030045559629797935,
- 0.10454028844833374,
- 0.009593416005373001,
- 0.039056017994880676,
- 0.031158767640590668,
- 0.009822945110499859,
- -0.06236526742577553,
- 0.028911583125591278,
- -0.013568677008152008,
- 0.006556343752890825,
- 0.03009660169482231,
- -0.014529325067996979,
- 0.06752169877290726,
- -0.03664344176650047,
- -0.061132438480854034,
- 0.027960563078522682,
- -0.03839333355426788,
- 0.03834262862801552,
- -0.013093923218548298,
- -0.12112337350845337,
- -0.003219672478735447,
- -0.025807932019233704,
- -0.044450484216213226,
- 0.024605536833405495,
- 0.018481548875570297,
- 0.013455367647111416,
- -0.07240492105484009,
- -0.07484403997659683,
- 0.021041031926870346,
- 0.018012527376413345,
- 0.00037890265230089426,
- -0.08272746950387955,
- -0.06876933574676514,
- 0.01961279846727848,
- -0.02563617192208767,
- 0.03825821354985237,
- -0.01508519146591425,
- 0.08440861850976944,
- -0.011834678240120411,
- 0.03627665340900421,
- 0.02545204386115074,
- -0.02055962011218071,
- -0.13302123546600342,
- 0.02323095127940178,
- -0.01614915393292904,
- 0.004440065938979387,
- 0.02565983310341835,
- 4.317901521889261e-33,
- -0.02198995277285576,
- 0.028516674414277077,
- -0.0213642381131649,
- 0.047460269182920456,
- 0.025592759251594543,
- -0.042286600917577744,
- -0.008860806003212929,
- -0.03078242391347885,
- 0.027531536296010017,
- -0.006433825008571148,
- -0.02848273515701294,
- -0.0017479569651186466,
- 0.0031699282117187977,
- 0.042788635939359665,
- 0.06179370731115341,
- -0.016966700553894043,
- 0.022829072549939156,
- -0.012117532081902027,
- -0.056729815900325775,
- 0.05378878861665726,
- -0.11340539157390594,
- 0.00045206633512862027,
- -0.00018499098950996995,
- -0.10549924522638321,
- -0.01975562982261181,
- 0.008420823141932487,
- 0.038622964173555374,
- 0.024523843079805374,
- 0.012445867992937565,
- -0.03312884271144867,
- 0.05816641077399254,
- -0.09221439808607101,
- 0.006964652333408594,
- 0.0051824115216732025,
- -0.06596983969211578,
- 0.14068904519081116,
- 0.0760958343744278,
- 0.01351385097950697,
- 0.017848480492830276,
- 0.004491643514484167,
- 0.026908451691269875,
- 0.021178727969527245,
- 0.005215547978878021,
- -0.015087937004864216,
- -0.007432511541992426,
- 0.042148418724536896,
- 0.01120949350297451,
- 0.039339955896139145,
- 0.027294393628835678,
- 0.07769487053155899,
- 0.00016171237803064287,
- -0.09412224590778351,
- -0.07149576395750046,
- -0.004048060160130262,
- 0.0029992745257914066,
- 0.034636493772268295,
- 0.04844049736857414,
- -0.03566582873463631,
- -0.005707102362066507,
- 0.021279511973261833,
- -0.04225985333323479,
- 0.050685252994298935,
- 0.006986978463828564,
- 0.010907141491770744,
- -0.02798463962972164,
- -0.02345583774149418,
- -0.055068593472242355,
- 0.010317661799490452,
- -0.012423581443727016,
- 0.04822421818971634,
- 0.02690373733639717,
- 0.1257002204656601,
- 0.007546530570834875,
- -0.037159647792577744,
- -0.02355177327990532,
- -0.018721990287303925,
- -0.07677627354860306,
- -0.03064117021858692,
- -0.0040982309728860855,
- -0.07286764681339264,
- 0.017721964046359062,
- -0.10432037711143494,
- 0.022347629070281982,
- -0.045617859810590744,
- -0.03796752914786339,
- -0.04276309907436371,
- 0.0853966549038887,
- 0.0194503515958786,
- -0.030047116801142693,
- -0.028580492362380028,
- -0.04111931100487709,
- 0.041068997234106064,
- 0.003936510533094406,
- 0.04978983849287033,
- -0.017646297812461853,
- -1.4082444543817019e-8,
- -0.03718532249331474,
- -0.11865745484828949,
- 0.09884253889322281,
- 0.048982758074998856,
- 0.04641338810324669,
- 0.075649693608284,
- -0.03484337031841278,
- 0.0043404437601566315,
- 0.02463957853615284,
- -0.07359068840742111,
- -0.027689028531312943,
- 0.042279209941625595,
- 0.05051921308040619,
- 0.0502355583012104,
- 0.04391712322831154,
- -0.0934223085641861,
- -0.0083753177896142,
- 0.06765023618936539,
- -0.13615597784519196,
- -0.0265169907361269,
- -0.026047447696328163,
- -0.01215319149196148,
- 0.0002812645398080349,
- -0.01807190291583538,
- 0.05263715982437134,
- 0.032973211258649826,
- 0.004463463556021452,
- 0.08958305418491364,
- 0.035151805728673935,
- 0.05845872685313225,
- 0.01730933226644993,
- 0.08194329589605331,
- -0.07934600114822388,
- -0.022427845746278763,
- -0.014396455138921738,
- 0.047563884407281876,
- 0.03217093646526337,
- 0.05086132138967514,
- 0.018652193248271942,
- 0.017076753079891205,
- -0.025725699961185455,
- 0.007926439866423607,
- -0.008133153431117535,
- 0.00025620355154387653,
- 0.033123742789030075,
- -0.02507549151778221,
- -0.02120746299624443,
- -0.053353603929281235,
- -0.025785155594348907,
- 0.030116818845272064,
- -0.07457375526428223,
- 0.04279939457774162,
- -0.0162209365516901,
- 0.07484488189220428,
- 0.07065458595752716,
- -0.021712446585297585,
- 0.0333004929125309,
- -0.06917580217123032,
- -0.05942237004637718,
- 0.0947258397936821,
- 0.038661565631628036,
- 0.041106414049863815,
- 0.06996506452560425,
- 0.05761377513408661
- ]
- },
- {
- "keyword": "approach",
- "type": "process",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.05305895954370499,
- 0.1365433782339096,
- 0.004200478084385395,
- 0.006354812998324633,
- -0.041022855788469315,
- 0.028765976428985596,
- 0.10848572105169296,
- 0.06452293694019318,
- 0.017824696376919746,
- -0.022407233715057373,
- 0.035588689148426056,
- -0.05638323724269867,
- 0.016505328938364983,
- -0.0028582303784787655,
- 0.042888619005680084,
- -0.020518066361546516,
- 0.023418772965669632,
- -0.03496767580509186,
- -0.06255529820919037,
- -0.014523672871291637,
- -0.08834085613489151,
- -0.04015267640352249,
- -0.009046187624335289,
- -0.0005929938633926213,
- -0.04181783273816109,
- 0.06347140669822693,
- 0.03706565126776695,
- 0.031654879450798035,
- 0.056522730737924576,
- -0.03514996916055679,
- 0.04782891646027565,
- 0.07166685909032822,
- 0.012142043560743332,
- -0.0104241156950593,
- -0.02953014336526394,
- 0.0426228828728199,
- -0.009193875826895237,
- 0.014398171566426754,
- -0.01642829366028309,
- 0.014333979226648808,
- -0.06938540935516357,
- -0.05094558000564575,
- -0.007341097574681044,
- 0.01919659413397312,
- -0.008864742703735828,
- -0.07223951816558838,
- 0.018016712740063667,
- 0.01707593724131584,
- 0.0362052246928215,
- -0.031178563833236694,
- -0.09349951893091202,
- -0.003933597821742296,
- -0.013690097257494926,
- -0.04615555331110954,
- -0.00017381417274009436,
- -0.03998079523444176,
- -0.03655467927455902,
- -0.02560489811003208,
- 0.07479218393564224,
- -0.05134114623069763,
- 0.1208261102437973,
- -0.005367312580347061,
- -0.04401026666164398,
- 0.04734465107321739,
- -0.002381089376285672,
- -0.024817071855068207,
- 0.010646294802427292,
- -0.031799472868442535,
- -0.02601301483809948,
- 0.02550012432038784,
- 0.015092292800545692,
- 0.05427633598446846,
- -0.06098617613315582,
- 0.03968048468232155,
- -0.014805905520915985,
- -0.053213931620121,
- 0.04155805706977844,
- -0.059587590396404266,
- 0.06113072484731674,
- -0.021059909835457802,
- 0.008347458206117153,
- 0.00366023532114923,
- 0.0007218013633973897,
- 0.05450407415628433,
- 0.006606866605579853,
- 0.04684067517518997,
- -0.05968647077679634,
- -0.030272383242845535,
- -0.014148346148431301,
- 0.025678226724267006,
- -0.03688952326774597,
- -0.01355364266782999,
- -0.03173321112990379,
- 0.0017268985975533724,
- -0.01305899117141962,
- 0.03439983353018761,
- -0.011032091453671455,
- -0.06466681510210037,
- -0.013706686906516552,
- 0.2868278920650482,
- 0.01004268229007721,
- 0.05754369497299194,
- -0.03993036597967148,
- -0.09531906247138977,
- -0.0006917664431966841,
- -0.04610977694392204,
- 0.028417566791176796,
- 0.009681426919996738,
- 0.03449409827589989,
- -0.009442685171961784,
- -0.04988626018166542,
- -0.035141002386808395,
- -0.02522301860153675,
- 0.026805661618709564,
- 0.06127316877245903,
- -0.08749246597290039,
- 0.016170913353562355,
- 0.013906223699450493,
- -0.014773080125451088,
- -0.03007749654352665,
- 0.04803449660539627,
- -0.00786629505455494,
- -0.011375810950994492,
- 0.031425777822732925,
- -0.08975324779748917,
- -0.026752298697829247,
- 0.010551507584750652,
- -5.621819732564837e-33,
- -0.046641603112220764,
- 0.03267161548137665,
- 0.042478296905756,
- 0.035874806344509125,
- -0.0024267002008855343,
- 0.005086272489279509,
- 0.007026611361652613,
- -0.04132765904068947,
- 0.0038101060781627893,
- 0.03573537617921829,
- 0.03266410157084465,
- 0.0022533703595399857,
- 0.04793795943260193,
- -0.05589538812637329,
- 0.08422330021858215,
- -0.01373123936355114,
- 0.00209234282374382,
- 0.1179271712899208,
- -0.06225721165537834,
- -0.03244771063327789,
- -0.023716365918517113,
- -0.0029132666531950235,
- 0.09855867922306061,
- 0.043807271867990494,
- 0.00562080554664135,
- -0.03134785592556,
- 0.014836804941296577,
- -0.02754645235836506,
- -0.04783835634589195,
- 0.007343648932874203,
- 0.07816874980926514,
- 0.0787818655371666,
- -0.15130536258220673,
- -0.006249590311199427,
- 0.012591528706252575,
- -0.0029280332382768393,
- 0.0454854778945446,
- -0.05027451366186142,
- 0.03535234183073044,
- -0.0810432955622673,
- -0.09190237522125244,
- -0.015766926109790802,
- -0.019316498190164566,
- -0.019823681563138962,
- 0.0965590626001358,
- 0.1428815871477127,
- 0.05933625251054764,
- -0.016983285546302795,
- -0.07731592655181885,
- 0.03575262799859047,
- -0.008243141695857048,
- -0.02168654277920723,
- 0.008336668834090233,
- 0.011386118829250336,
- -0.0342293381690979,
- -0.002000998705625534,
- -0.025581885129213333,
- -0.0067571476101875305,
- 0.012193063274025917,
- -0.017887180671095848,
- 0.13346458971500397,
- -0.06796428561210632,
- -0.09979397803544998,
- -0.010885435156524181,
- 0.018408486619591713,
- -0.00925852544605732,
- -0.002683276543393731,
- -0.09820609539747238,
- -0.003482997650280595,
- 0.009548068046569824,
- -0.0547875352203846,
- 0.022400537505745888,
- 0.06965335458517075,
- 0.06153406575322151,
- -0.09350839257240295,
- -0.027257688343524933,
- -0.008311917074024677,
- 0.022438958287239075,
- 0.04586760327219963,
- -0.08931924402713776,
- -0.0817551538348198,
- 0.007642647717148066,
- -0.03051806427538395,
- 0.05546073243021965,
- 0.02532772161066532,
- 0.0829605981707573,
- 0.016567137092351913,
- -0.01881103776395321,
- -0.03871979936957359,
- 0.0321333184838295,
- -0.14063088595867157,
- 0.0776163637638092,
- 0.026868732646107674,
- 0.051874637603759766,
- 0.0634043738245964,
- 4.722040520463794e-33,
- 0.017585575580596924,
- 0.0664440169930458,
- -0.032813481986522675,
- -0.007776570040732622,
- 0.08634746074676514,
- -0.022718587890267372,
- 0.010920998640358448,
- -0.036934297531843185,
- 0.1129603311419487,
- 0.03010248951613903,
- -0.008088897913694382,
- 0.03342809900641441,
- 0.059710580855607986,
- 0.026070939376950264,
- -0.0028318343684077263,
- -0.011686846613883972,
- 0.13783575594425201,
- -0.06607865542173386,
- -0.014529121108353138,
- 0.028068765997886658,
- -0.08948025107383728,
- -0.051156289875507355,
- -0.026559526100754738,
- -0.02275322936475277,
- 0.0063117146492004395,
- 0.04933797940611839,
- 0.06985878944396973,
- 0.0028521516360342503,
- -0.06922482699155807,
- -0.03731071576476097,
- 0.003981463145464659,
- -0.08700452744960785,
- 0.04664504528045654,
- -0.027647100389003754,
- -0.03768138960003853,
- 0.09733077138662338,
- 0.06696384400129318,
- -0.01023140735924244,
- 0.0004526240809354931,
- 0.02577085606753826,
- 0.06380987167358398,
- 0.0026498252991586924,
- -0.029632683843374252,
- 0.043147746473550797,
- 0.01512362714856863,
- 0.02010389231145382,
- 0.03959086537361145,
- 0.03391493111848831,
- -0.04172239080071449,
- 0.05333678424358368,
- -0.05760194733738899,
- -0.03707967698574066,
- -0.06158969923853874,
- -0.06727588921785355,
- 0.02356233075261116,
- 0.01726388931274414,
- 0.07662957161664963,
- 0.0351313017308712,
- -0.03952384740114212,
- 0.00020551214402075857,
- -0.02149697206914425,
- 0.04049963876605034,
- 0.01610618084669113,
- 0.0485854297876358,
- -0.06322267651557922,
- -0.026199297979474068,
- -0.0451413169503212,
- 0.03392638638615608,
- -0.001804929692298174,
- 0.006227485369890928,
- 0.02594231255352497,
- 0.06476786732673645,
- -0.03209090977907181,
- 0.003207396250218153,
- 0.02413223870098591,
- -0.11035823076963425,
- -0.036966558545827866,
- -0.048531703650951385,
- -0.009158809669315815,
- -0.06267374008893967,
- -0.06196893751621246,
- -0.00606555538251996,
- 0.03543629124760628,
- 0.0053210752084851265,
- 0.004713224712759256,
- -0.0028161306399852037,
- 0.06453507393598557,
- -0.02790297195315361,
- 0.010552220046520233,
- -0.03781314566731453,
- -0.03932057321071625,
- 0.027646344155073166,
- 0.05343928933143616,
- 0.04730794578790665,
- -0.02135532908141613,
- -1.3523864694775511e-8,
- -0.0638217106461525,
- -0.08953503519296646,
- 0.09508620947599411,
- 0.06205711141228676,
- 0.07227781414985657,
- 0.08953063189983368,
- -0.09120840579271317,
- 0.04234373942017555,
- -0.022090787068009377,
- -0.02906915917992592,
- 0.011401208117604256,
- 0.03540264070034027,
- 0.031912222504615784,
- 0.10688934475183487,
- 0.05397443473339081,
- -0.013574209064245224,
- -0.01811535842716694,
- -0.011628098785877228,
- -0.161166250705719,
- 0.03776920214295387,
- -0.010251861996948719,
- 0.05108092352747917,
- 0.014538371004164219,
- -0.0032098935917019844,
- 0.03538544848561287,
- -0.008100994862616062,
- -0.0006868405034765601,
- 0.03481648862361908,
- 0.0008075426449067891,
- 0.04243475943803787,
- -0.021087907254695892,
- 0.05589946359395981,
- -0.10612081736326218,
- -0.004813993815332651,
- 0.01980232633650303,
- -0.01082797534763813,
- 0.0293949693441391,
- -0.004518916830420494,
- 0.0245487280189991,
- 0.033853188157081604,
- -0.03964584320783615,
- -0.03430725261569023,
- -0.00014739192556589842,
- -0.030026068910956383,
- -0.05163358151912689,
- 0.01515674777328968,
- -0.009228093549609184,
- -0.048899710178375244,
- -0.02301238849759102,
- -0.023538660258054733,
- -0.061029233038425446,
- -0.007730964105576277,
- -0.00813986361026764,
- 0.0757267102599144,
- 0.095657117664814,
- -0.04174116253852844,
- -0.0008487030281685293,
- 0.02361523173749447,
- -0.10846991837024689,
- 0.10365205258131027,
- 0.06946703791618347,
- -0.058352477848529816,
- 0.054210904985666275,
- 0.020685674622654915
- ]
- },
- {
- "keyword": "workflow",
- "type": "process",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.05063804239034653,
- 0.07581769675016403,
- -0.016213377937674522,
- -0.06795137375593185,
- -0.037259090691804886,
- -0.05830962210893631,
- 0.0829915925860405,
- -0.025739379227161407,
- 0.019340062513947487,
- -0.026327932253479958,
- -0.053140487521886826,
- -0.011906151659786701,
- -0.00610565859824419,
- -0.00850122980773449,
- -0.007154277991503477,
- 0.05020436644554138,
- -0.023082928732037544,
- -0.016220681369304657,
- -0.129779651761055,
- -0.14532405138015747,
- -0.004327492788434029,
- 0.0016363972099497914,
- -0.07638628780841827,
- 0.015918945893645287,
- -0.04252447932958603,
- 0.07411736249923706,
- -0.03527780622243881,
- 0.02956278808414936,
- 0.0190634373575449,
- -0.08896638453006744,
- -0.01950935274362564,
- 0.04036473482847214,
- 0.08250774443149567,
- 0.04977011680603027,
- -0.028557956218719482,
- 0.012131309136748314,
- -0.031340595334768295,
- 0.004567352589219809,
- -0.015832189470529556,
- -0.01973450370132923,
- -0.0021625992376357317,
- -0.09278039634227753,
- -0.06297660619020462,
- 0.0037973409052938223,
- -0.029057811945676804,
- -0.031007004901766777,
- 0.001935918815433979,
- 0.01755031943321228,
- -0.007558716461062431,
- 0.0200127512216568,
- -0.059844087809324265,
- -0.0986558049917221,
- -0.07764432579278946,
- 0.09425405412912369,
- 0.02807609923183918,
- 0.042150482535362244,
- 0.06985348463058472,
- -0.03005760721862316,
- -0.012695539742708206,
- -0.08449512720108032,
- -0.0020854396279901266,
- -0.010034777224063873,
- -0.020737312734127045,
- 0.013290904462337494,
- 0.048496928066015244,
- -0.0897342786192894,
- -0.052267640829086304,
- 0.010793952271342278,
- -0.009152974002063274,
- -0.03490689396858215,
- -0.053214360028505325,
- 0.04279681295156479,
- -0.06090081110596657,
- -0.0024438868276774883,
- -0.037024762481451035,
- -0.07428671419620514,
- 0.009617489762604237,
- -0.05420572683215141,
- 0.06003643199801445,
- -0.02190030738711357,
- 0.003674335777759552,
- 0.004540478345006704,
- -0.07646184414625168,
- 0.02522777020931244,
- 0.031279247254133224,
- -0.02480914443731308,
- 0.0052544488571584225,
- 0.06833682954311371,
- 0.05579852685332298,
- -0.008716259151697159,
- -0.02839851565659046,
- 0.006714693270623684,
- 0.05972270295023918,
- -0.055557772517204285,
- 0.010585278272628784,
- 0.0078039709478616714,
- 0.03418687731027603,
- -0.02545461244881153,
- -0.014968745410442352,
- 0.1834406703710556,
- 0.033855561167001724,
- 0.015802010893821716,
- 0.032410819083452225,
- -0.05574464425444603,
- 0.000219256806303747,
- -0.010778282769024372,
- 0.014848335646092892,
- 0.04698591306805611,
- -0.013507626950740814,
- -0.025817496702075005,
- -0.02619832009077072,
- 0.020873088389635086,
- 0.05686960741877556,
- 0.012302292510867119,
- -0.03536052256822586,
- 0.0375174880027771,
- -0.04131487011909485,
- 0.0675593838095665,
- -0.12263701856136322,
- 0.09768614172935486,
- 0.015050113201141357,
- 0.07291724532842636,
- 0.006097989156842232,
- -0.0023548309691250324,
- -0.08384475857019424,
- -0.059341248124837875,
- 0.02815590240061283,
- -2.4490008696031604e-33,
- 0.013732578605413437,
- -0.01223008893430233,
- 0.0047904415987432,
- 0.09587730467319489,
- 0.12240643054246902,
- -0.050500594079494476,
- 0.008821972645819187,
- 0.0015939155127853155,
- 0.02558799833059311,
- -0.043475668877363205,
- -0.044478803873062134,
- 0.07462652772665024,
- 0.006021425127983093,
- 0.02641022764146328,
- -0.046459682285785675,
- -0.09223102033138275,
- 0.0224034134298563,
- 0.10612934827804565,
- 0.06239122897386551,
- 0.05736484006047249,
- 0.047673407942056656,
- -0.1264033168554306,
- -0.018342725932598114,
- 0.0815410315990448,
- 0.05175346881151199,
- -0.011787213385105133,
- -0.04802660644054413,
- -0.01842433027923107,
- 0.08977742493152618,
- 0.00028274187934584916,
- 0.008482204750180244,
- -0.02940804697573185,
- 0.021075958386063576,
- 0.030677763745188713,
- -0.018726857379078865,
- 0.00806963536888361,
- 0.003009950742125511,
- -0.05660584196448326,
- 0.1532617062330246,
- -0.09361125528812408,
- -0.02078757807612419,
- -0.02455669827759266,
- -0.02348250336945057,
- -0.006279738154262304,
- 0.04176321625709534,
- 0.07457414269447327,
- 0.007148327771574259,
- 0.030134551227092743,
- 0.04631352424621582,
- 0.06757921725511551,
- 0.10466586798429489,
- -0.039774373173713684,
- 0.065341517329216,
- -0.025702515617012978,
- -0.007097328547388315,
- -0.009938159957528114,
- -0.007224336266517639,
- -0.0037528425455093384,
- 0.021055519580841064,
- 0.1066688746213913,
- 0.006889054551720619,
- 0.01419595442712307,
- -0.04517873004078865,
- 0.09471037238836288,
- 0.04441669210791588,
- -0.012939226813614368,
- 0.004917871672660112,
- -0.0009038857533596456,
- 0.12304819375276566,
- -0.025024406611919403,
- -0.10134011507034302,
- 0.05466887727379799,
- 0.057634975761175156,
- 0.08932992815971375,
- -0.009988192468881607,
- 0.01891404204070568,
- 0.008616889826953411,
- 0.009798577055335045,
- -0.08935282379388809,
- -0.03679807484149933,
- -0.08117294311523438,
- 0.02085786685347557,
- -0.051382020115852356,
- 0.016034159809350967,
- 0.08587966859340668,
- 0.0036946849431842566,
- -0.0181380994617939,
- 0.0319676548242569,
- -0.10432098805904388,
- 0.025897575542330742,
- -0.01968078501522541,
- 0.03195270895957947,
- 0.09621738642454147,
- 0.052338846027851105,
- 0.08236074447631836,
- 6.162785814397604e-34,
- -0.05468451604247093,
- -0.0018693445017561316,
- -0.05050366744399071,
- 0.06109931692481041,
- 0.05934524163603783,
- -0.0043515730649232864,
- -0.022768549621105194,
- -0.1036422923207283,
- 0.03099115565419197,
- 0.07451780885457993,
- -0.014333849772810936,
- -0.025999050587415695,
- 0.039214860647916794,
- -0.053310491144657135,
- -0.008897693827748299,
- -0.054374758154153824,
- 0.07808465510606766,
- -0.02614683099091053,
- -0.027096552774310112,
- 0.08508498966693878,
- -0.0713239461183548,
- 0.014770752750337124,
- -0.08575531840324402,
- -0.03951948136091232,
- -0.01973515935242176,
- 0.07643413543701172,
- 0.003084735246375203,
- -0.037288419902324677,
- -0.011828092858195305,
- -0.00826110877096653,
- -0.031192103400826454,
- -0.10884182155132294,
- -0.0619632862508297,
- 0.03186599537730217,
- 0.058024678379297256,
- -0.06066310778260231,
- -0.01669587567448616,
- 0.03695795685052872,
- 0.0718705952167511,
- 0.05029777064919472,
- 0.11216752231121063,
- -0.0071608093567192554,
- 0.021581197157502174,
- 0.02651132084429264,
- -0.05900783836841583,
- 0.012093961238861084,
- -0.0016421317122876644,
- 0.005047291982918978,
- -0.009075328707695007,
- -0.05338405445218086,
- -0.07562606781721115,
- -0.024048298597335815,
- -0.04530026391148567,
- -0.041811421513557434,
- 0.007740122731775045,
- 0.07307194918394089,
- 0.05973593145608902,
- -0.06734000146389008,
- -0.01235589012503624,
- 0.046477630734443665,
- -0.09835302829742432,
- 0.02308557741343975,
- 0.09401221573352814,
- 0.042031943798065186,
- -0.038221072405576706,
- -0.04343310371041298,
- 0.009726522490382195,
- -0.0700802206993103,
- -0.03395218402147293,
- 0.03541344404220581,
- 0.0034067921806126833,
- 0.047402672469615936,
- -0.020855320617556572,
- 0.024394579231739044,
- 0.07985315471887589,
- -0.06902945786714554,
- -0.02746165543794632,
- -0.06768611818552017,
- 0.030932271853089333,
- 0.004610460251569748,
- -0.0860617384314537,
- 0.03095260262489319,
- -0.005594238638877869,
- 0.019921163097023964,
- -0.05453886091709137,
- -0.036612674593925476,
- 0.0798783078789711,
- -0.049254439771175385,
- 0.041605640202760696,
- -0.028412533923983574,
- -0.04161252826452255,
- 0.020586373284459114,
- 0.01814867928624153,
- -0.06774280220270157,
- -0.06755343824625015,
- -1.4669468306749422e-8,
- 0.014127729460597038,
- -0.003957642707973719,
- 0.033513665199279785,
- -0.013035436160862446,
- 0.002326207933947444,
- -0.0093331104144454,
- -0.009209241718053818,
- 0.03795691952109337,
- 0.06488610059022903,
- -0.001842952216975391,
- 0.056943394243717194,
- -0.053877055644989014,
- 0.00037506542867049575,
- -0.0125882001593709,
- 0.05211606249213219,
- 0.007747052237391472,
- 0.05642329528927803,
- -0.0058813076466321945,
- -0.05517438426613808,
- -0.11447913944721222,
- 0.02195993810892105,
- -0.01323194894939661,
- 0.0353999026119709,
- 0.07252451032400131,
- 0.021311217918992043,
- -0.04043065384030342,
- 0.034277498722076416,
- 0.02973155304789543,
- 0.002686198567971587,
- -0.021022344008088112,
- 0.07243965566158295,
- 0.01596275344491005,
- 0.004263874143362045,
- 0.06047581508755684,
- 0.03392897546291351,
- -0.1410072296857834,
- -0.006316296756267548,
- -0.021500134840607643,
- 0.022491656243801117,
- 0.04927574843168259,
- 0.020353788509964943,
- -0.0033357013016939163,
- 0.014744523912668228,
- -0.03831591457128525,
- -0.03251708298921585,
- -0.02170420065522194,
- -0.028890635818243027,
- -0.08699255436658859,
- -0.06543174386024475,
- -0.03385881334543228,
- 0.039711348712444305,
- 0.011653524823486805,
- 0.08917611837387085,
- 0.06387888640165329,
- 0.0022380331065505743,
- 0.017122535035014153,
- 0.0495937280356884,
- -0.010144474916160107,
- 0.04111205413937569,
- -0.023231718689203262,
- -0.018472028896212578,
- 0.06482329219579697,
- -0.0009928527288138866,
- -0.002481073373928666
- ]
- },
- {
- "keyword": "pipeline",
- "type": "process",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.05779653787612915,
- 0.0375245027244091,
- -0.00318063679151237,
- -0.03443826735019684,
- -0.07603953778743744,
- -0.0676952451467514,
- -0.02323330007493496,
- 0.043741676956415176,
- -0.045488812029361725,
- -0.05510038882493973,
- -0.04689718410372734,
- -0.03425263240933418,
- -0.04152112826704979,
- -0.01500063855201006,
- -0.0426485650241375,
- 0.015150205232203007,
- -0.02919725328683853,
- 0.03465739265084267,
- -0.06849293410778046,
- -0.1430545449256897,
- 0.0018144439673051238,
- 0.06898411363363266,
- -0.041650284081697464,
- 0.0167065616697073,
- 0.016043560579419136,
- 0.031099986284971237,
- -0.07493656873703003,
- -0.029859570786356926,
- 0.002139622112736106,
- -0.10524535924196243,
- 0.005368323996663094,
- -0.03204932436347008,
- -0.026801809668540955,
- -0.029922135174274445,
- 0.06303620338439941,
- 0.06067544221878052,
- 0.03672512248158455,
- -0.00838486384600401,
- 0.009648718871176243,
- -0.008419783785939217,
- 0.043878912925720215,
- -0.1327156126499176,
- -0.019319023936986923,
- -0.02194363810122013,
- 0.00048397498903796077,
- -0.027250101789832115,
- -0.05825518071651459,
- -0.08550629764795303,
- -0.03563975542783737,
- 0.06621921062469482,
- -0.0560808964073658,
- -0.088685043156147,
- -0.05851542949676514,
- 0.056585632264614105,
- 0.016516797244548798,
- 0.05355171486735344,
- 0.014483267441391945,
- -0.05486953258514404,
- 0.012371729128062725,
- -0.024176837876439095,
- -0.04153258353471756,
- -0.025764044374227524,
- -0.030295372009277344,
- 0.1049712672829628,
- 0.05746841803193092,
- -0.015495089814066887,
- -0.016848541796207428,
- -0.01361444965004921,
- 0.03467043116688728,
- -0.02396533265709877,
- -0.013495526276528835,
- 0.011195778846740723,
- -0.10172750800848007,
- -0.06343983858823776,
- 0.01646147109568119,
- 0.024726973846554756,
- 0.05598101392388344,
- 0.0011951364576816559,
- 0.029267961159348488,
- -0.018319573253393173,
- 0.013751509599387646,
- -0.03342534601688385,
- -0.02896188758313656,
- 0.007384348660707474,
- -0.07210683077573776,
- 0.0843198299407959,
- 0.00027534205582924187,
- 0.01873738318681717,
- 0.02277698926627636,
- -0.03883928060531616,
- -0.09895311295986176,
- -0.03742795065045357,
- 0.061628516763448715,
- 0.052503928542137146,
- -0.06542310118675232,
- 0.008177398703992367,
- -0.02206556312739849,
- -0.03207962214946747,
- 0.042707718908786774,
- 0.19822518527507782,
- -0.037312597036361694,
- 0.0471605584025383,
- 0.027383258566260338,
- -0.0637279525399208,
- -0.03523687273263931,
- -0.06035495549440384,
- -0.04021669179201126,
- 0.0610070638358593,
- -0.041819553822278976,
- -0.05653708428144455,
- 0.017441974952816963,
- -0.06320603936910629,
- 0.018215278163552284,
- -0.0359322614967823,
- 0.0675872191786766,
- 0.023394089192152023,
- -0.017402535304427147,
- -0.0059450226835906506,
- -0.08688934892416,
- 0.08019959926605225,
- -0.013812731951475143,
- 0.005809879396110773,
- -0.07312922924757004,
- -0.0030082627199590206,
- 0.0016082850052043796,
- -0.042366188019514084,
- 0.018826017156243324,
- -4.364613830681015e-33,
- -0.0017623442690819502,
- -0.06998805701732635,
- 0.07513687014579773,
- -0.010086892172694206,
- 0.10352678596973419,
- 0.045849304646253586,
- 0.04606993496417999,
- -0.01707824505865574,
- -0.11336134374141693,
- 0.04834544286131859,
- 0.019105760380625725,
- 0.03062434494495392,
- -0.04551482945680618,
- -0.0039512584917247295,
- -0.05390152707695961,
- -0.11198339611291885,
- 0.04871625080704689,
- 0.0889853686094284,
- -0.023273557424545288,
- 0.010015164501965046,
- -0.004939291160553694,
- 0.03615070879459381,
- -0.06566900759935379,
- 0.0037572982255369425,
- 0.04483812674880028,
- -0.06136437878012657,
- 0.005470655858516693,
- -0.011011357419192791,
- -0.0580509789288044,
- 0.032167743891477585,
- -0.002290541073307395,
- 0.022839127108454704,
- 0.04394954815506935,
- -0.03873579949140549,
- -0.01449038740247488,
- -0.04449702054262161,
- 0.045966118574142456,
- -0.018717888742685318,
- 0.00585152069106698,
- 0.0354161262512207,
- -0.006145820487290621,
- 0.021244611591100693,
- -0.026804199442267418,
- 0.03404278680682182,
- -0.007788347080349922,
- -0.01382107101380825,
- -0.010377098806202412,
- -0.004108776804059744,
- -0.008513654582202435,
- 0.03754066303372383,
- 0.06912573426961899,
- 0.04526655748486519,
- 0.016861388459801674,
- 0.04205792024731636,
- 0.06529075652360916,
- -0.06741401553153992,
- -0.00008775060996413231,
- 0.028869835659861565,
- 0.058131661266088486,
- 0.04359324276447296,
- 0.007153169251978397,
- 0.10294032096862793,
- -0.05031494051218033,
- 0.06192407384514809,
- -0.014792523346841335,
- -0.013944610022008419,
- 0.07583785802125931,
- 0.030489791184663773,
- 0.09419111907482147,
- 0.06049086153507233,
- -0.1215171292424202,
- 0.021015066653490067,
- 0.0194206852465868,
- 0.007522195111960173,
- 0.056800104677677155,
- -0.009613708592951298,
- -0.02637544833123684,
- 0.020023664459586143,
- -0.028910530731081963,
- -0.014093955978751183,
- -0.07013595104217529,
- 0.02201915718615055,
- 0.0015716159250587225,
- 0.010774703696370125,
- 0.049269065260887146,
- 0.02384614571928978,
- -0.05279343202710152,
- -0.02294163592159748,
- -0.002907051704823971,
- 0.014405655674636364,
- -0.10589007288217545,
- 0.025906043127179146,
- 0.0016107030678540468,
- 0.0036513665691018105,
- 0.060734886676073074,
- 3.1333808438205965e-33,
- 0.06830870360136032,
- 0.030287092551589012,
- -0.05978768691420555,
- 0.1286141574382782,
- 0.06895899772644043,
- -0.032070986926555634,
- 0.09554357826709747,
- -0.06789281219244003,
- 0.016310593113303185,
- 0.03299689292907715,
- -0.03800641745328903,
- 0.03566109389066696,
- 0.043097034096717834,
- 0.03289751708507538,
- 0.0457073338329792,
- -0.03780896216630936,
- -0.008665482513606548,
- -0.1281723827123642,
- 0.01903480291366577,
- 0.04559175670146942,
- 0.0014858783688396215,
- -0.02209458127617836,
- -0.05501455441117287,
- 0.05046802759170532,
- -0.07032996416091919,
- 0.0754486694931984,
- -0.09796915203332901,
- -0.03139239922165871,
- 0.004587814677506685,
- 0.00537569634616375,
- -0.057543810456991196,
- -0.02889811247587204,
- -0.03407413884997368,
- -0.039085518568754196,
- -0.12371755391359329,
- 0.03918026015162468,
- 0.02025640197098255,
- 0.12352768331766129,
- 0.0688496083021164,
- -0.022989165037870407,
- 0.025729091838002205,
- 0.014420044608414173,
- -0.012494555674493313,
- 0.02092602290213108,
- -0.09344926476478577,
- 0.004593167919665575,
- 0.12390399724245071,
- -0.03223840892314911,
- -0.05737055838108063,
- 0.03324554115533829,
- -0.0807890072464943,
- 0.06285251677036285,
- -0.06170881167054176,
- 0.06329372525215149,
- 0.019994761794805527,
- 0.018092703074216843,
- 0.022087248042225838,
- -0.03344438225030899,
- -0.11759718507528305,
- 0.03495287895202637,
- 0.007091050501912832,
- 0.018888821825385094,
- 0.04339104890823364,
- -0.046333763748407364,
- -0.013884521089494228,
- -0.009934311732649803,
- 0.004214444663375616,
- -0.025151139125227928,
- 0.01279358472675085,
- 0.0015922107268124819,
- 0.04949578270316124,
- 0.02051338367164135,
- -0.004931432660669088,
- 0.06044650822877884,
- -0.000479754846310243,
- -0.06766438484191895,
- -0.07796795666217804,
- -0.029777025803923607,
- 0.008553998544812202,
- 0.11840979009866714,
- -0.06816072762012482,
- 0.02641553245484829,
- 0.009974769316613674,
- 0.10602666437625885,
- 0.1597025990486145,
- 0.007136697880923748,
- 0.0547129325568676,
- -0.015699487179517746,
- 0.031106581911444664,
- 0.00909740012139082,
- -0.005563568323850632,
- 0.0561254620552063,
- -0.057588621973991394,
- -0.020487239584326744,
- 0.006313403602689505,
- -1.0995306887195966e-8,
- -0.02105785347521305,
- 0.006250937469303608,
- -0.005719906184822321,
- 0.07105637341737747,
- 0.030681071802973747,
- -0.03127586841583252,
- 0.038512129336595535,
- 0.10646144300699234,
- 0.0009966896614059806,
- -0.021716654300689697,
- 0.05402263626456261,
- 0.03484954684972763,
- -0.032959047704935074,
- 0.06546588987112045,
- 0.09156827628612518,
- 0.00934411957859993,
- 0.009478316642343998,
- 0.008832309395074844,
- -0.04657726362347603,
- -0.0592510960996151,
- -0.025977877900004387,
- 0.018600404262542725,
- 0.01824944280087948,
- 0.00917636789381504,
- -0.04859321191906929,
- -0.026846997439861298,
- 0.04401133581995964,
- 0.03604762628674507,
- -0.012484634295105934,
- 0.03047724813222885,
- 0.02744816616177559,
- -0.009319974109530449,
- -0.024454956874251366,
- -0.015330519527196884,
- 0.08925509452819824,
- -0.0013618461089208722,
- -0.01943056657910347,
- 0.003694657003507018,
- -0.027280211448669434,
- 0.00722884526476264,
- 0.010375792160630226,
- 0.01777149736881256,
- 0.028642704710364342,
- -0.007749312091618776,
- -0.06892266869544983,
- 0.01528195757418871,
- -0.054839421063661575,
- -0.032376766204833984,
- -0.0372350849211216,
- 0.03852865472435951,
- 0.023269088938832283,
- -0.029753006994724274,
- 0.02899458073079586,
- 0.08948854357004166,
- 0.114421546459198,
- 0.02037586271762848,
- 0.057356711477041245,
- -0.0782666802406311,
- -0.06738560646772385,
- 0.09684097021818161,
- 0.07608049362897873,
- -0.005777844227850437,
- 0.09894020855426788,
- -0.09293125569820404
- ]
- },
- {
- "keyword": "sequence",
- "type": "process",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.06296356767416,
- 0.044846873730421066,
- 0.010084006004035473,
- 0.007477804087102413,
- -0.09814050048589706,
- 0.06385282427072525,
- 0.01418259460479021,
- 0.017023855820298195,
- 0.07380347698926926,
- -0.06284979730844498,
- -0.027221987023949623,
- -0.012761658988893032,
- -0.010976399295032024,
- 0.011448157019913197,
- -0.09893346577882767,
- 0.0005405435804277658,
- -0.015883950516581535,
- -0.024986261501908302,
- 0.08691097795963287,
- -0.07136444747447968,
- -0.014334176667034626,
- 0.04448441043496132,
- -0.031320732086896896,
- 0.0821315199136734,
- -0.01152834389358759,
- -0.004154095891863108,
- 0.03764418885111809,
- 0.07993362843990326,
- 0.03593000769615173,
- -0.0175111535936594,
- 0.05148622766137123,
- 0.023023899644613266,
- 0.0956435278058052,
- 0.006247463636100292,
- -0.013414849527180195,
- 0.014439885504543781,
- -0.03981033340096474,
- -0.0693550556898117,
- -0.013128436170518398,
- 0.0010215650545433164,
- -0.06158260256052017,
- -0.11870972812175751,
- 0.010277943685650826,
- -0.008746429346501827,
- 0.014440502971410751,
- -0.027110066264867783,
- -0.043254442512989044,
- 0.012350295670330524,
- 0.01727280020713806,
- -0.025650961324572563,
- -0.13956110179424286,
- 0.02915964648127556,
- -0.09487885981798172,
- 0.047984614968299866,
- -0.005086465738713741,
- -0.013480084016919136,
- -0.051887381821870804,
- 0.00002994741953443736,
- 0.032176051288843155,
- -0.0012019164860248566,
- 0.05524759739637375,
- -0.03963160887360573,
- -0.039442263543605804,
- -0.02568516507744789,
- 0.06029031425714493,
- -0.019100937992334366,
- 0.06803347915410995,
- -0.01170330960303545,
- 0.01734861545264721,
- 0.048851680010557175,
- -0.0564434714615345,
- 0.026042712852358818,
- 0.048972953110933304,
- 0.055333539843559265,
- 0.0044987318105995655,
- 0.02391158789396286,
- -0.0010007842211052775,
- -0.016193173825740814,
- 0.03303861990571022,
- -0.029809849336743355,
- -0.04843385890126228,
- 0.02395275980234146,
- 0.025962525978684425,
- 0.00833950936794281,
- -0.0816895067691803,
- -0.03262079507112503,
- 0.030386045575141907,
- 0.0567445382475853,
- -0.015694933012127876,
- 0.029837999492883682,
- -0.05207102745771408,
- -0.054154444485902786,
- 0.0875634104013443,
- 0.0036118330899626017,
- -0.057877760380506516,
- 0.060612257570028305,
- 0.06985943019390106,
- 0.009500506334006786,
- 0.04792793467640877,
- 0.21935757994651794,
- 0.027835628017783165,
- 0.1082446426153183,
- -0.06493479013442993,
- -0.06447538733482361,
- -0.03223634883761406,
- -0.025172414258122444,
- 0.0017748464597389102,
- -0.06340940296649933,
- 0.02875434048473835,
- -0.013582783751189709,
- 0.024069100618362427,
- -0.0016506571555510163,
- 0.04351405054330826,
- 0.042137350887060165,
- 0.02234525978565216,
- -0.021538250148296356,
- -0.044306088238954544,
- -0.012609593570232391,
- 0.0071002463810145855,
- 0.04705408960580826,
- 0.07907076179981232,
- -0.012919507920742035,
- -0.02897157520055771,
- 0.044082075357437134,
- -0.026890629902482033,
- -0.06775600463151932,
- 0.050031669437885284,
- -4.094465759736868e-33,
- 0.05974035710096359,
- -0.10251928120851517,
- 0.07206553220748901,
- 0.03686431422829628,
- -0.10477892309427261,
- -0.032517995685338974,
- -0.053474970161914825,
- -0.026737427338957787,
- -0.10187697410583496,
- 0.0804419070482254,
- 0.005082715302705765,
- -0.023258093744516373,
- -0.012925432063639164,
- 0.011306094005703926,
- 0.00023649443755857646,
- -0.04250984638929367,
- 0.08188223093748093,
- 0.024097496643662453,
- -0.03424841910600662,
- -0.008279400877654552,
- -0.07416892051696777,
- -0.043966423720121384,
- -0.00392198609188199,
- 0.042054563760757446,
- 0.05296901613473892,
- 0.028686977922916412,
- 0.018419822677969933,
- -0.0004945427644997835,
- 0.05967380851507187,
- -0.010573037900030613,
- 0.04463348537683487,
- 0.0007157824002206326,
- -0.018014952540397644,
- 0.008387100882828236,
- 0.05890970677137375,
- 0.05188220739364624,
- 0.05126010254025459,
- -0.04975547641515732,
- 0.1087086945772171,
- 0.008530285209417343,
- -0.03672002628445625,
- 0.009752821177244186,
- -0.032188717275857925,
- 0.03040357120335102,
- 0.01151617243885994,
- -0.0056538768112659454,
- 0.04231146350502968,
- -0.022776063531637192,
- -0.0071604433469474316,
- 0.042098600417375565,
- -0.016328824684023857,
- -0.06464769691228867,
- -0.057798467576503754,
- 0.01101734396070242,
- 0.00039590938831679523,
- 0.0014801082434132695,
- 0.029024239629507065,
- 0.014770952053368092,
- 0.0025447963271290064,
- 0.03051854483783245,
- 0.014721531420946121,
- 0.001324628246948123,
- 0.03820710629224777,
- 0.050986599177122116,
- -0.04933677241206169,
- -0.05147568881511688,
- -0.007107919082045555,
- 0.021584603935480118,
- -0.03050999529659748,
- 0.008496066555380821,
- -0.003045875346288085,
- -0.07208241522312164,
- -0.0036010846961289644,
- 0.004559736233204603,
- 0.016933336853981018,
- -0.03622603788971901,
- 0.01529388315975666,
- -0.03541511297225952,
- -0.16956022381782532,
- 0.06762807071208954,
- -0.038100238889455795,
- 0.029170095920562744,
- -0.0004874990554526448,
- -0.04519512504339218,
- -0.04631107300519943,
- 0.026887252926826477,
- 0.05134723335504532,
- 0.018269497901201248,
- 0.04731578007340431,
- -0.04529157653450966,
- -0.05197450518608093,
- -0.002084508305415511,
- 0.05293774977326393,
- 0.07437208294868469,
- 0.042267560958862305,
- 2.078468519834667e-33,
- 0.03625749796628952,
- 0.050008565187454224,
- -0.06754779815673828,
- -0.0033660854678601027,
- 0.028636595234274864,
- -0.06725992262363434,
- 0.02626880072057247,
- 0.03970561549067497,
- -0.07985703647136688,
- 0.045153725892305374,
- 0.04151604697108269,
- 0.03119271993637085,
- 0.10227888822555542,
- -0.011692892760038376,
- 0.033583901822566986,
- 0.027424918487668037,
- 0.035906244069337845,
- -0.0044417548924684525,
- -0.04762539267539978,
- 0.02438081055879593,
- 0.0252333153039217,
- -0.07524856179952621,
- -0.0682874396443367,
- -0.04859558865427971,
- -0.05449828505516052,
- -0.0005847993888892233,
- 0.09806667268276215,
- 0.027116384357213974,
- -0.042053576558828354,
- -0.06556568294763565,
- 0.03705710545182228,
- -0.06585527211427689,
- 0.05412502586841583,
- 0.01486876979470253,
- -0.05396312102675438,
- -0.015243473462760448,
- 0.07399609684944153,
- -0.01659654825925827,
- -0.06472916156053543,
- 0.002341973828151822,
- 0.09552563726902008,
- 0.04826482757925987,
- 0.09962984174489975,
- 0.10063613206148148,
- -0.027188608422875404,
- -0.04407484829425812,
- -0.00822313129901886,
- 0.023384207859635353,
- 0.01706414483487606,
- 0.009523921646177769,
- -0.10037542134523392,
- 0.04439737647771835,
- -0.04461148753762245,
- -0.06703026592731476,
- -0.040379565209150314,
- 0.028080247342586517,
- -0.012849662452936172,
- 0.07913491874933243,
- 0.034950029104948044,
- -0.034796830266714096,
- -0.0024840792175382376,
- 0.11313650757074356,
- 0.0541762113571167,
- -0.036770060658454895,
- 0.016546618193387985,
- -0.011164441704750061,
- -0.04630301147699356,
- -0.03406303748488426,
- 0.03644198179244995,
- -0.01752045936882496,
- 0.03308028355240822,
- 0.05096389725804329,
- 0.007760407868772745,
- 0.05119920149445534,
- -0.028866825625300407,
- -0.11617087572813034,
- -0.10899433493614197,
- -0.004459117539227009,
- -0.034882597625255585,
- -0.0021902674343436956,
- -0.051154155284166336,
- 0.047981005162000656,
- -0.02918113023042679,
- 0.0057619293220341206,
- -0.041320353746414185,
- 0.058498408645391464,
- 0.14477169513702393,
- 0.046824175864458084,
- -0.08307445794343948,
- -0.012359998188912868,
- 0.011014777235686779,
- -0.02769107185304165,
- 0.002686683088541031,
- -0.08468936383724213,
- -0.0027563865296542645,
- -1.2431213392005702e-8,
- -0.012085727415978909,
- -0.01629408821463585,
- 0.03470999002456665,
- 0.04578666388988495,
- 0.040376342833042145,
- -0.023307060822844505,
- -0.030250543728470802,
- 0.056154269725084305,
- 0.03266489505767822,
- -0.03201591596007347,
- 0.04643705487251282,
- 0.02601037360727787,
- -0.049126800149679184,
- 0.06811964511871338,
- 0.04430200532078743,
- 0.056333769112825394,
- -0.031353291124105453,
- -0.10072054713964462,
- -0.021543845534324646,
- 0.021009033545851707,
- -0.07354331016540527,
- 0.03578164801001549,
- 0.006903127767145634,
- 0.03752824291586876,
- 0.004204539116472006,
- -0.03786714747548103,
- -0.029607709497213364,
- 0.07825271785259247,
- -0.001015316229313612,
- -0.0867011547088623,
- 0.039458923041820526,
- 0.05188898369669914,
- -0.016395919024944305,
- -0.14138957858085632,
- -0.13911765813827515,
- 0.004450644366443157,
- -0.007279373239725828,
- 0.045224372297525406,
- 0.034874327480793,
- -0.05256234481930733,
- 0.010028050281107426,
- 0.015883924439549446,
- 0.012986713089048862,
- -0.05613796040415764,
- -0.08557901531457901,
- -0.12998682260513306,
- -0.03971441090106964,
- -0.05922488868236542,
- 0.004065415356308222,
- -0.061938609927892685,
- -0.07464879006147385,
- 0.007837115786969662,
- 0.05878903344273567,
- -0.03542778268456459,
- 0.1083177924156189,
- 0.020782213658094406,
- 0.03160028159618378,
- 0.011069010011851788,
- -0.036775633692741394,
- 0.14456424117088318,
- 0.04018564894795418,
- -0.00562211824581027,
- 0.03343968465924263,
- -0.026864785701036453
- ]
- },
- {
- "keyword": "algorithm",
- "type": "process",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.018823539838194847,
- 0.10436639934778214,
- -0.017324453219771385,
- -0.05351472273468971,
- -0.06364718824625015,
- -0.08095725625753403,
- 0.03575127199292183,
- -0.035103313624858856,
- -0.0416647344827652,
- -0.05132673680782318,
- -0.05839714780449867,
- 0.023894377052783966,
- 0.11783469468355179,
- -0.023181861266493797,
- -0.09905514866113663,
- 0.022680100053548813,
- -0.04695390164852142,
- 0.0422588549554348,
- 0.010840581730008125,
- -0.15269885957241058,
- 0.001338945352472365,
- -0.006941190455108881,
- -0.07070595026016235,
- -0.014423929154872894,
- 0.04575357958674431,
- 0.08699502795934677,
- 0.023558543995022774,
- -0.023435959592461586,
- 0.10116130113601685,
- -0.05928504094481468,
- 0.03945109248161316,
- -0.003754125442355871,
- 0.1184615045785904,
- 0.021543506532907486,
- -0.09665262699127197,
- -0.017124325037002563,
- -0.11172021180391312,
- -0.02676844596862793,
- 0.011260986328125,
- 0.0814603865146637,
- -0.08238734304904938,
- -0.04431062564253807,
- -0.005932890810072422,
- -0.02725140191614628,
- 0.011799545958638191,
- 0.07921016961336136,
- -0.11587727069854736,
- 0.05843980610370636,
- 0.022828424349427223,
- 0.026946837082505226,
- -0.1015082597732544,
- -0.013285637833178043,
- -0.08850317448377609,
- 0.019502539187669754,
- -0.013636057265102863,
- -0.028830360621213913,
- -0.010824101977050304,
- -0.05750506743788719,
- 0.024008208885788918,
- -0.041735436767339706,
- 0.06983698159456253,
- -0.016350263729691505,
- -0.021787235513329506,
- 0.009550178423523903,
- 0.10566830635070801,
- -0.015567953698337078,
- 0.028925184160470963,
- -0.07477065175771713,
- -0.01795455627143383,
- -0.008138062432408333,
- 0.01591929979622364,
- 0.10439158231019974,
- 0.06753505021333694,
- 0.06802894920110703,
- 0.010301832109689713,
- 0.011187604628503323,
- 0.05635042116045952,
- 0.01092628575861454,
- 0.0029817132744938135,
- 0.001984576927497983,
- -0.036426790058612823,
- -0.009878233075141907,
- 0.016271699219942093,
- 0.05331478640437126,
- 0.019132517278194427,
- -0.02655428647994995,
- -0.023428581655025482,
- 0.019869422540068626,
- 0.05790754407644272,
- 0.02985030971467495,
- -0.023411599919199944,
- 0.026451298967003822,
- -0.03267567604780197,
- -0.039666686207056046,
- -0.015579290688037872,
- 0.0687178447842598,
- -0.007315673399716616,
- 0.011730118654668331,
- 0.01407444104552269,
- 0.28718751668930054,
- -0.02669619210064411,
- -0.020393135026097298,
- -0.02150612510740757,
- -0.07322412729263306,
- 0.03739463537931442,
- 0.011787394993007183,
- 0.01028127409517765,
- -0.022235799580812454,
- 0.05315404385328293,
- -0.07084380090236664,
- 0.01818881183862686,
- 0.008183585479855537,
- 0.00027478087577037513,
- 0.004926119465380907,
- 0.008900242857635021,
- -0.011073313653469086,
- -0.0060629877261817455,
- 0.04270255193114281,
- -0.038250893354415894,
- 0.019351473078131676,
- -0.000048796737246448174,
- 0.008956165052950382,
- 0.023539749905467033,
- 0.003106344724074006,
- -0.00821114331483841,
- -0.005234707612544298,
- 0.02851618453860283,
- -5.189194097766064e-33,
- -0.08341950178146362,
- -0.019137967377901077,
- 0.06219884008169174,
- -0.06143598258495331,
- -0.043729886412620544,
- -0.027610518038272858,
- -0.03577397018671036,
- -0.07733654975891113,
- -0.01614968851208687,
- 0.010105484165251255,
- 0.019458414986729622,
- 0.020399466156959534,
- 0.0409199595451355,
- -0.00987648218870163,
- 0.15747836232185364,
- -0.10088817030191422,
- 0.13540759682655334,
- 0.013409197330474854,
- -0.06630326062440872,
- -0.06057887151837349,
- -0.011633923277258873,
- -0.030123205855488777,
- 0.04226609319448471,
- -0.020838219672441483,
- -0.013673181645572186,
- 0.04957390949130058,
- 0.009059407748281956,
- -0.09733075648546219,
- 0.04790142551064491,
- 0.029716135933995247,
- 0.02901674620807171,
- 0.06185922026634216,
- -0.0569763109087944,
- -0.008018436841666698,
- 0.05605478957295418,
- -0.017203858122229576,
- 0.05570496991276741,
- -0.014459836296737194,
- 0.06583546847105026,
- 0.022321492433547974,
- 0.01822969876229763,
- -0.014983882196247578,
- 0.06934365630149841,
- -0.0533456914126873,
- -0.0010916312457993627,
- 0.05851828306913376,
- -0.005370573606342077,
- 0.027952605858445168,
- 0.06045861542224884,
- 0.11262553930282593,
- -0.040444355458021164,
- -0.04360703378915787,
- -0.03035539761185646,
- 0.050440214574337006,
- -0.0060722543857991695,
- 0.01382900308817625,
- -0.015465427190065384,
- 0.0136738121509552,
- 0.018935073167085648,
- 0.06385378539562225,
- 0.08704111725091934,
- -0.023714914917945862,
- 0.029858198016881943,
- 0.019024021923542023,
- -0.016182510182261467,
- -0.025790652260184288,
- -0.001590798026882112,
- -0.07899302244186401,
- 0.04942973330616951,
- 0.09773989766836166,
- -0.04811020568013191,
- -0.029536863788962364,
- 0.050282351672649384,
- 0.03899908438324928,
- -0.05254439264535904,
- -0.050355616956949234,
- 0.07090548425912857,
- 0.00011223740875720978,
- -0.024476924911141396,
- -0.07254717499017715,
- -0.10467708110809326,
- 0.06307891011238098,
- 0.034892696887254715,
- -0.06890853494405746,
- 0.060121916234493256,
- -0.041066356003284454,
- -0.0564568005502224,
- -0.0035152798518538475,
- -0.039431482553482056,
- -0.01388482004404068,
- -0.11392306536436081,
- 0.04231439158320427,
- 0.04243140667676926,
- 0.08100660145282745,
- 0.011634647846221924,
- 3.216224175536782e-33,
- -0.06080150604248047,
- 0.02408725768327713,
- 0.06640397012233734,
- 0.05280943587422371,
- 0.020277012139558792,
- -0.0808071717619896,
- -0.058264605700969696,
- -0.04738238453865051,
- 0.039426933974027634,
- 0.07924963533878326,
- -0.04673711583018303,
- 0.03893725201487541,
- 0.06942950189113617,
- 0.00739437947049737,
- 0.02985864318907261,
- 0.018140343949198723,
- 0.018985511735081673,
- -0.03927642107009888,
- -0.021154675632715225,
- 0.04115041717886925,
- -0.03718775138258934,
- 0.008389853872358799,
- -0.07178711891174316,
- -0.08728732168674469,
- -0.001066321972757578,
- 0.04142032191157341,
- 0.050816480070352554,
- 0.01780177652835846,
- 0.015488896518945694,
- -0.004212123341858387,
- -0.058867309242486954,
- -0.0769137591123581,
- -0.07264415919780731,
- 0.012404331006109715,
- -0.042922478169202805,
- 0.057090140879154205,
- -0.007363236043602228,
- -0.01832173950970173,
- 0.0028152482118457556,
- -0.0007818391313776374,
- 0.028783803805708885,
- 0.036698948591947556,
- -0.013661892153322697,
- 0.005558334290981293,
- 0.00204147188924253,
- 0.021051213145256042,
- -0.021270666271448135,
- 0.07946614176034927,
- 0.0226847305893898,
- -0.02784256637096405,
- -0.04838348180055618,
- 0.009453422389924526,
- -0.01892874948680401,
- -0.013080799952149391,
- 0.044476065784692764,
- 0.06165987625718117,
- -0.080812968313694,
- 0.08261347562074661,
- 0.04825931414961815,
- 0.006957374978810549,
- -0.052780602127313614,
- 0.005250274669378996,
- -0.00365547277033329,
- 0.04495825618505478,
- -0.07292026281356812,
- -0.03098795749247074,
- -0.007568569388240576,
- -0.012288326397538185,
- -0.05573032423853874,
- 0.05455140396952629,
- 0.06737305968999863,
- 0.11285348236560822,
- -0.02697901241481304,
- 0.018136262893676758,
- -0.07555513083934784,
- -0.016252752393484116,
- -0.05319572985172272,
- 0.021443746984004974,
- 0.011450976133346558,
- -0.03739992156624794,
- -0.04079414904117584,
- 0.02141030877828598,
- -0.02843852899968624,
- 0.03760283812880516,
- -0.009622194804251194,
- -0.00397580536082387,
- 0.11412321031093597,
- -0.026147443801164627,
- -0.005701703019440174,
- 0.02598099410533905,
- -0.012759520672261715,
- 0.05162229388952255,
- 0.03514528274536133,
- -0.07620412111282349,
- -0.06845641136169434,
- -1.3038563118072943e-8,
- -0.05059988051652908,
- -0.11618578433990479,
- 0.012187579646706581,
- 0.00692307623103261,
- 0.11735185235738754,
- 0.018951479345560074,
- 0.05220466107130051,
- 0.006942865904420614,
- -0.05207408219575882,
- -0.12207728624343872,
- 0.056097302585840225,
- -0.016525601968169212,
- -0.018711386248469353,
- 0.0824960321187973,
- 0.022105272859334946,
- -0.019021380692720413,
- 0.003912494517862797,
- -0.03405247628688812,
- -0.0430569052696228,
- -0.017621668055653572,
- -0.020518220961093903,
- 0.0020512850023806095,
- 0.05076666921377182,
- 0.03599293529987335,
- 0.003315734677016735,
- -0.0191971343010664,
- 0.011488934978842735,
- -0.01663891412317753,
- 0.031510841101408005,
- 0.045968662947416306,
- 0.010920736007392406,
- 0.033534422516822815,
- -0.005082752089947462,
- -0.015066305175423622,
- 0.007050317246466875,
- 0.038180697709321976,
- -0.03749464824795723,
- 0.025268733501434326,
- -0.03601847216486931,
- -0.07600069791078568,
- -0.023180853575468063,
- 0.020724324509501457,
- 0.004224688280373812,
- -0.07684145867824554,
- 0.07890918850898743,
- 0.04083488509058952,
- 0.021282417699694633,
- -0.06200627237558365,
- -0.05661878362298012,
- -0.015358418226242065,
- -0.06057468801736832,
- -0.027987221255898476,
- 0.02922980859875679,
- -0.04501748085021973,
- 0.030108114704489708,
- -0.06230836361646652,
- 0.009688067249953747,
- -0.03670942410826683,
- 0.033960334956645966,
- -0.004046336282044649,
- 0.0126041816547513,
- 0.022027621045708656,
- 0.052457544952631,
- -0.04516280069947243
- ]
- },
- {
- "keyword": "logic",
- "type": "process",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- 0.1438058465719223,
- 0.045863401144742966,
- -0.038378141820430756,
- 0.04126298055052757,
- -0.0021431695204228163,
- 0.018810683861374855,
- 0.11922045797109604,
- 0.01888269931077957,
- 0.08808641135692596,
- 0.046331848949193954,
- 0.03650297597050667,
- -0.02304418943822384,
- 0.012476054020226002,
- 0.03810649737715721,
- 0.00684703653678298,
- 0.02096138708293438,
- -0.05345265194773674,
- -0.06726239621639252,
- -0.1529034674167633,
- -0.08774136006832123,
- 0.007981504313647747,
- -0.04623625427484512,
- -0.04068822041153908,
- 0.03919708728790283,
- -0.061227116733789444,
- 0.09949798136949539,
- -0.03419578820466995,
- 0.02098771184682846,
- 0.04572644084692001,
- -0.07630550116300583,
- -0.013393335044384003,
- 0.07152209430932999,
- -0.014749296009540558,
- 0.03306116163730621,
- -0.004636397119611502,
- -0.014866691082715988,
- 0.014114240184426308,
- 0.009284362196922302,
- 0.026018736883997917,
- -0.013688132166862488,
- -0.04862300306558609,
- -0.20712219178676605,
- -0.05389350652694702,
- -0.01767043210566044,
- 0.013908286578953266,
- 0.07775885611772537,
- -0.012129625305533409,
- 0.038815468549728394,
- 0.003201839281246066,
- 0.016019850969314575,
- -0.026729905977845192,
- 0.02824372984468937,
- -0.08445887267589569,
- -0.07386582344770432,
- 0.11208268254995346,
- 0.04762047529220581,
- -0.10976406186819077,
- -0.013179873116314411,
- -0.022012503817677498,
- -0.07565165311098099,
- 0.021300746127963066,
- -0.01584545709192753,
- -0.0627727285027504,
- 0.02904350496828556,
- 0.10699667781591415,
- 0.005691384896636009,
- -0.012042214162647724,
- 0.030105192214250565,
- -0.038200125098228455,
- -0.011419604532420635,
- 0.023454446345567703,
- 0.028958315029740334,
- 0.017472485080361366,
- 0.04625474661588669,
- 0.020914416760206223,
- -0.017204707488417625,
- 0.05187605693936348,
- -0.024147145450115204,
- 0.08695458620786667,
- -0.01588744856417179,
- -0.07824688404798508,
- -0.017976559698581696,
- -0.03198408707976341,
- 0.08892320096492767,
- 0.017567215487360954,
- 0.00022668488963972777,
- -0.01929900422692299,
- -0.01786445826292038,
- -0.03837866336107254,
- 0.010468835942447186,
- 0.008658983744680882,
- 0.022353732958436012,
- 0.11976996809244156,
- 0.06742741167545319,
- 0.0029839982744306326,
- 0.06330586969852448,
- -0.08208270370960236,
- -0.054960668087005615,
- -0.05551544949412346,
- 0.2452428638935089,
- -0.018098516389727592,
- 0.09566701203584671,
- -0.05014689266681671,
- -0.03933129832148552,
- 0.02349061891436577,
- -0.024803275242447853,
- -0.0008480322430841625,
- -0.006021470297127962,
- -0.016020838171243668,
- -0.03857304900884628,
- 0.013774625957012177,
- 0.024174615740776062,
- 0.042557235807180405,
- -0.005332606844604015,
- -0.05087551847100258,
- 0.042175065726041794,
- -0.0023913560435175896,
- 0.07961005717515945,
- 0.006157668307423592,
- -0.09896006435155869,
- -0.024740520864725113,
- 0.028852468356490135,
- 0.0003999490581918508,
- 0.08281043916940689,
- -0.004821707960218191,
- -0.10200531035661697,
- -0.04309222474694252,
- -5.245146526839251e-33,
- -0.013231463730335236,
- -0.04185130074620247,
- 0.08819165080785751,
- 0.006965640000998974,
- 0.004434104077517986,
- 0.05820700526237488,
- -0.05352583900094032,
- -0.019608058035373688,
- 0.007361105177551508,
- 0.0755239799618721,
- -0.06080682948231697,
- 0.005641087424010038,
- -0.01444725226610899,
- 0.009912879206240177,
- 0.10130206495523453,
- 0.028517810627818108,
- -0.06331358104944229,
- 0.023425137624144554,
- -0.028490230441093445,
- -0.028087308630347252,
- -0.03577720746397972,
- -0.017993874847888947,
- -0.036456990987062454,
- 0.10111698508262634,
- -0.07040567696094513,
- -0.017271941527724266,
- 0.017974136397242546,
- -0.020240701735019684,
- 0.005982497241348028,
- 0.00007083795935614035,
- -0.011501978151500225,
- -0.01106943003833294,
- 0.02301391027867794,
- 0.019076867029070854,
- -0.004847972188144922,
- -0.039356861263513565,
- -0.007823633030056953,
- -0.07964949309825897,
- 0.04652067646384239,
- -0.021650204434990883,
- -0.036690667271614075,
- -0.0024602236226201057,
- -0.029803937301039696,
- -0.02294209972023964,
- 0.014237266965210438,
- 0.014049550518393517,
- -0.02539730817079544,
- -0.01540600135922432,
- -0.07750777900218964,
- -0.010866262018680573,
- 0.07163887470960617,
- -0.014454512856900692,
- 0.04929450526833534,
- 0.03332280367612839,
- 0.026713702827692032,
- 0.01312839612364769,
- 0.024239037185907364,
- 0.012656903825700283,
- 0.01977195218205452,
- 0.053748827427625656,
- 0.07821663469076157,
- -0.013598410412669182,
- -0.008650294505059719,
- 0.06542330980300903,
- -0.039214689284563065,
- 0.027081571519374847,
- -0.05522402375936508,
- -0.07291015982627869,
- 0.055026475340127945,
- -0.005340020637959242,
- -0.053902897983789444,
- -0.0375889427959919,
- 0.05217749997973442,
- 0.05910550802946091,
- 0.03435202315449715,
- -0.03371557965874672,
- -0.022138312458992004,
- 0.04107621684670448,
- -0.00010551633022259921,
- -0.01575816236436367,
- -0.014421677216887474,
- -0.008752490393817425,
- -0.08086198568344116,
- 0.05031205341219902,
- 0.04458947107195854,
- 0.05147676542401314,
- -0.0006225820980034769,
- -0.07336565852165222,
- 0.01160518079996109,
- -0.0077592553570866585,
- -0.1015646755695343,
- -0.018973298370838165,
- 0.12425563484430313,
- -0.013953343965113163,
- -0.0037277608644217253,
- 4.380402189180497e-33,
- -0.04223714768886566,
- 0.003697733860462904,
- -0.026386123150587082,
- 0.011210259981453419,
- -0.011678735725581646,
- -0.053321827203035355,
- 0.02908805012702942,
- -0.05250220373272896,
- 0.021166497841477394,
- -0.01154023315757513,
- 0.026401367038488388,
- -0.056504156440496445,
- 0.03204572945833206,
- 0.008023533038794994,
- -0.036824796348810196,
- 0.030497152358293533,
- 0.04315236583352089,
- -0.08325573801994324,
- -0.03931811451911926,
- 0.0958954393863678,
- 0.011367389932274818,
- 0.013388815335929394,
- -0.1081564649939537,
- -0.05298346281051636,
- -0.043574996292591095,
- 0.0726529210805893,
- -0.01616724394261837,
- 0.0434202216565609,
- 0.00738768232986331,
- 0.013847908936440945,
- 0.0412314236164093,
- -0.08919210731983185,
- 0.019089849665760994,
- -0.03040250577032566,
- -0.04534967988729477,
- 0.005522842984646559,
- 0.04024485871195793,
- 0.027852186933159828,
- -0.0925348624587059,
- -0.03615691512823105,
- -0.04888167604804039,
- -0.05099273845553398,
- -0.03336624801158905,
- 0.04458184912800789,
- -0.04860201105475426,
- 0.016621707007288933,
- 0.030957099050283432,
- 0.0305508803576231,
- 0.005501450505107641,
- -0.017575852572917938,
- -0.06328463554382324,
- -0.02497500739991665,
- 0.004327681381255388,
- 0.007144540082663298,
- 0.010629489086568356,
- 0.04621407762169838,
- -0.02051023580133915,
- -0.0092215146869421,
- -0.044780801981687546,
- 0.023418372496962547,
- 0.021270807832479477,
- 0.016139693558216095,
- 0.015478179790079594,
- 0.06460514664649963,
- -0.05144701153039932,
- 0.01716371439397335,
- -0.014251829124987125,
- 0.04707449674606323,
- 0.04166582226753235,
- -0.011812672019004822,
- 0.10904034227132797,
- 0.07911676913499832,
- -0.10276366770267487,
- 0.030268587172031403,
- 0.0027474439702928066,
- 0.04447679594159126,
- -0.1578962206840515,
- 0.051967721432447433,
- -0.042512211948633194,
- 0.00010871667473111302,
- -0.07715198397636414,
- -0.11117833852767944,
- 0.04716060310602188,
- 0.05942905321717262,
- -0.07008437067270279,
- -0.018843166530132294,
- 0.04695401340723038,
- 0.0025258108507841825,
- -0.01861100271344185,
- 0.03498818352818489,
- -0.012870483100414276,
- 0.052483800798654556,
- 0.06764531880617142,
- 0.017827514559030533,
- -0.1118331030011177,
- -1.3573961510360277e-8,
- -0.03585754334926605,
- -0.00970684364438057,
- 0.06004951894283295,
- 0.03454463928937912,
- 0.07496549934148788,
- 0.007656785659492016,
- 0.009300717152655125,
- -0.014786879532039165,
- 0.016632746905088425,
- 0.03804359957575798,
- 0.019870981574058533,
- 0.04123268648982048,
- -0.06850646436214447,
- 0.03259648382663727,
- 0.06563430279493332,
- 0.022077511996030807,
- -0.007286440581083298,
- -0.045704957097768784,
- -0.022685669362545013,
- 0.02857806161046028,
- 0.04438968375325203,
- 0.06631999462842941,
- 0.011460764333605766,
- 0.06258279085159302,
- -0.001596812973730266,
- 0.04122190549969673,
- 0.02272169105708599,
- 0.09157770872116089,
- 0.050389330834150314,
- 0.07278531789779663,
- 0.01846051961183548,
- 0.018500667065382004,
- 0.031682781875133514,
- -0.006260514724999666,
- 0.09387418627738953,
- -0.00343089341185987,
- -0.057530876249074936,
- 0.004604999907314777,
- 0.005780702456831932,
- -0.07475464046001434,
- 0.0008272672421298921,
- -0.005410725716501474,
- -0.052789319306612015,
- -0.014668351970613003,
- 0.04662046581506729,
- -0.028513144701719284,
- -0.017551006749272346,
- -0.03676854819059372,
- -0.05592741817235947,
- 0.02746918424963951,
- 0.004390304442495108,
- 0.014201040379703045,
- -0.0120061244815588,
- 0.00826875027269125,
- 0.020233379676938057,
- -0.05823936685919762,
- 0.01680336706340313,
- 0.053234681487083435,
- -0.12298072129487991,
- 0.05296057090163231,
- 0.11774551123380661,
- 0.0022318772971630096,
- 0.05409038066864014,
- -0.0659160166978836
- ]
- },
- {
- "keyword": "routine",
- "type": "process",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.06335201859474182,
- 0.06993857026100159,
- 0.004735452588647604,
- 0.07523804157972336,
- -0.07773396372795105,
- 0.013806728646159172,
- 0.023229489102959633,
- -0.00025142787490040064,
- 0.00969101581722498,
- -0.06589861214160919,
- -0.0399717316031456,
- 0.06010133773088455,
- -0.04733540862798691,
- 0.011500121094286442,
- 0.036987997591495514,
- -0.018554160371422768,
- -0.028006669133901596,
- 0.04956002160906792,
- -0.04109536111354828,
- 0.01720007322728634,
- -0.09440024942159653,
- -0.0057877590879797935,
- 0.09735031425952911,
- 0.06624071300029755,
- -0.057391270995140076,
- 0.04848233982920647,
- 0.01931649073958397,
- -0.05396271497011185,
- -0.0010330550139769912,
- -0.07326919585466385,
- 0.04358120262622833,
- 0.03450799360871315,
- 0.022814001888036728,
- 0.01939345709979534,
- -0.06249576434493065,
- 0.043428048491477966,
- -0.017383627593517303,
- 0.03707769885659218,
- -0.023383991792798042,
- 0.04848933592438698,
- -0.00779220275580883,
- -0.10814391821622849,
- -0.030518583953380585,
- -0.04134972766041756,
- -0.00993190798908472,
- 0.0695277526974678,
- 0.028025498613715172,
- -0.019411640241742134,
- 0.03967240825295448,
- -0.016885841265320778,
- -0.015516486950218678,
- -0.027104776352643967,
- 0.0011766907991841435,
- 0.023961586877703667,
- 0.10072477906942368,
- 0.03959495201706886,
- 0.012252328917384148,
- -0.006553693674504757,
- 0.04876569285988808,
- -0.022166797891259193,
- 0.0036234455183148384,
- 0.0007441167836077511,
- -0.0831848755478859,
- 0.08792781084775925,
- 0.013483607210218906,
- 0.01813281886279583,
- -0.04502800107002258,
- -0.0088126752525568,
- 0.04421615228056908,
- 0.021909616887569427,
- -0.11325660347938538,
- -0.004280265420675278,
- 0.012595881707966328,
- 0.09062552452087402,
- 0.02738288789987564,
- 0.008953956887125969,
- 0.01477358303964138,
- -0.08136997371912003,
- 0.03629370406270027,
- -0.010810189880430698,
- -0.03843343257904053,
- -0.0435572974383831,
- 0.03808172792196274,
- 0.041195593774318695,
- 0.09185831993818283,
- -0.008353549055755138,
- 0.004585098475217819,
- 0.056980423629283905,
- -0.0050246017053723335,
- 0.01180387195199728,
- -0.025597291067242622,
- 0.014416303485631943,
- -0.00033381785033270717,
- -0.04246680811047554,
- -0.08917368948459625,
- 0.05894636735320091,
- -0.06574669480323792,
- -0.11393684893846512,
- 0.0005434408085420728,
- 0.24819742143154144,
- 0.029555490240454674,
- 0.04013199359178543,
- 0.11057725548744202,
- 0.053821463137865067,
- -0.06714654713869095,
- -0.0986996740102768,
- -0.011614920571446419,
- 0.0020815376192331314,
- -0.007622459437698126,
- 0.004456445574760437,
- 0.006288272328674793,
- -0.01534897368401289,
- 0.002398792654275894,
- 0.022612353786826134,
- 0.01823311299085617,
- 0.043410494923591614,
- -0.024598291143774986,
- 0.053161825984716415,
- -0.04286513477563858,
- 0.11398173868656158,
- 0.007304971106350422,
- -0.003387083299458027,
- 0.048127658665180206,
- -0.044528212398290634,
- -0.04651666432619095,
- 0.04233720526099205,
- 0.06645503640174866,
- -5.2925545813498984e-33,
- 0.06384598463773727,
- -0.06563964486122131,
- -0.0017587480833753943,
- 0.06102323904633522,
- -0.054924216121435165,
- -0.0019910538103431463,
- 0.0031979612540453672,
- -0.06794421374797821,
- 0.09281078726053238,
- 0.02312980405986309,
- 0.03480729088187218,
- 0.037549227476119995,
- -0.049193114042282104,
- 0.09014667570590973,
- -0.01062097493559122,
- 0.014152118004858494,
- 0.018705381080508232,
- 0.060109999030828476,
- 0.020919404923915863,
- 0.03956565260887146,
- -0.00352721125818789,
- -0.003603462828323245,
- 0.008792118169367313,
- 0.007777731399983168,
- 0.036590825766325,
- 0.049835868179798126,
- 0.048024389892816544,
- -0.02687104046344757,
- -0.09756850451231003,
- -0.0012467122869566083,
- 0.06291904300451279,
- 0.0831117033958435,
- -0.06894856691360474,
- -0.004000350367277861,
- -0.001634268555790186,
- -0.016969647258520126,
- -0.009609316475689411,
- -0.011929318308830261,
- 0.024283956736326218,
- -0.01887955516576767,
- 0.037532832473516464,
- -0.03942696005105972,
- 0.06094935163855553,
- -0.0026972920168191195,
- 0.043458305299282074,
- 0.001179806888103485,
- 0.025547929108142853,
- 0.03938017040491104,
- -0.014894293621182442,
- -0.03587355837225914,
- 0.016148658469319344,
- 0.006889220792800188,
- -0.03496222943067551,
- -0.10152100771665573,
- 0.005226182751357555,
- 0.020706739276647568,
- 0.0003296066424809396,
- -0.034059278666973114,
- 0.007589621003717184,
- 0.10024287551641464,
- 0.0652453601360321,
- 0.09281574934720993,
- -0.09004165232181549,
- 0.018583817407488823,
- -0.08871607482433319,
- 0.007422673050314188,
- -0.049470581114292145,
- -0.023393481969833374,
- 0.022293658927083015,
- 0.057783257216215134,
- 0.053261589258909225,
- 0.03365664929151535,
- 0.04328044131398201,
- 0.01206260547041893,
- 0.04518691450357437,
- -0.024648793041706085,
- 0.08048811554908752,
- -0.04858317971229553,
- -0.17688044905662537,
- 0.034320343285799026,
- 0.08150523155927658,
- 0.05221516266465187,
- 0.012934775091707706,
- 0.05472599342465401,
- 0.02759540267288685,
- 0.04312556982040405,
- 0.023474711924791336,
- -0.045498982071876526,
- -0.002891198731958866,
- 0.08302333950996399,
- -0.08688650280237198,
- -0.02459869533777237,
- -0.01118434313684702,
- 0.06297619640827179,
- -0.03172525763511658,
- 4.2577551493775305e-33,
- 0.052987031638622284,
- 0.017880156636238098,
- -0.02959713339805603,
- 0.04853515326976776,
- 0.075813889503479,
- 0.019783316180109978,
- -0.020587624981999397,
- -0.026501072570681572,
- -0.0477304607629776,
- 0.08575621992349625,
- -0.013352902606129646,
- -0.060336027294397354,
- -0.046134088188409805,
- -0.07272613048553467,
- 0.035798344761133194,
- -0.013294932432472706,
- -0.011722369119524956,
- 0.028141606599092484,
- -0.014734520576894283,
- 0.07750250399112701,
- 0.004355765413492918,
- -0.01926889829337597,
- -0.06746954470872879,
- -0.06908874213695526,
- 0.012329479679465294,
- 0.03272911533713341,
- -0.07518193125724792,
- 0.08848459273576736,
- -0.08724062144756317,
- 0.004849564749747515,
- -0.05270245298743248,
- -0.03215086832642555,
- 0.025879140943288803,
- -0.06396786868572235,
- -0.010235423222184181,
- 0.059792615473270416,
- -0.09030728787183762,
- 0.04269613325595856,
- -0.01644153520464897,
- 0.015266729518771172,
- -0.014345225878059864,
- 0.002742794109508395,
- 0.004519455600529909,
- 0.07282949239015579,
- 0.0378560908138752,
- -0.011402778327465057,
- -0.05568568408489227,
- -0.011292225681245327,
- -0.0783161148428917,
- 0.04824894666671753,
- -0.0501275397837162,
- -0.039555683732032776,
- -0.07479273527860641,
- -0.03972550109028816,
- 0.01429278776049614,
- 0.02510201930999756,
- -0.035304319113492966,
- -0.061113692820072174,
- -0.04199047386646271,
- 0.031308356672525406,
- -0.06442178785800934,
- 0.021848956122994423,
- -0.019337911158800125,
- 0.034021150320768356,
- 0.02656550332903862,
- 0.05730116367340088,
- -0.022989526391029358,
- -0.0672706812620163,
- -0.0032106158323585987,
- 0.023929938673973083,
- -0.09385519474744797,
- -0.037467896938323975,
- -0.010028252378106117,
- -0.022639324888586998,
- -0.02422374300658703,
- 0.005827463231980801,
- -0.06165372207760811,
- -0.12023412436246872,
- -0.023001452907919884,
- 0.06105516850948334,
- -0.10514681041240692,
- -0.07763566821813583,
- -0.030329495668411255,
- 0.037153683602809906,
- -0.13750103116035461,
- 0.08353324234485626,
- -0.03808596730232239,
- 0.03858601301908493,
- 0.0664118304848671,
- 0.01460922323167324,
- 0.025623571127653122,
- -0.007564104627817869,
- -0.06845573335886002,
- 0.0457836277782917,
- 0.07610620558261871,
- -1.257658421849328e-8,
- -0.032504964619874954,
- -0.0464710034430027,
- 0.033847976475954056,
- 0.0301247239112854,
- 0.037497807294130325,
- -0.04965362697839737,
- 0.0027100087609142065,
- -0.014743965119123459,
- -0.005366848781704903,
- -0.025797458365559578,
- 0.06079947575926781,
- -0.004117910750210285,
- 0.11719963699579239,
- -0.005288887303322554,
- 0.00769843440502882,
- -0.03888915851712227,
- 0.04654557257890701,
- 0.08458703756332397,
- -0.10641861706972122,
- -0.001249398454092443,
- 0.019298145547509193,
- -0.0562298521399498,
- -0.02015065774321556,
- 0.004933033138513565,
- 0.013902952894568443,
- -0.04675522819161415,
- -0.030465006828308105,
- 0.12897799909114838,
- -0.006244556978344917,
- 0.04384322836995125,
- 0.03210976719856262,
- 0.005064897704869509,
- -0.011093677021563053,
- 0.03356461226940155,
- -0.09162547439336777,
- -0.0293782539665699,
- 0.041957221925258636,
- -0.03231830522418022,
- -0.019394734874367714,
- 0.03925130143761635,
- -0.03677475079894066,
- -0.021689144894480705,
- 0.042770370841026306,
- 0.043028511106967926,
- -0.09085157513618469,
- -0.04958402365446091,
- 0.03095436841249466,
- -0.04480332136154175,
- 0.026960253715515137,
- -0.04331091418862343,
- 0.008625620976090431,
- -0.042302221059799194,
- 0.040602944791316986,
- 0.06539604812860489,
- 0.0192046407610178,
- 0.07084156572818756,
- 0.027582185342907906,
- -0.06236869469285011,
- -0.09010230749845505,
- -0.012705931439995766,
- -0.0011686072684824467,
- 0.04465591534972191,
- -0.029300853610038757,
- -0.07178710401058197
- ]
- },
- {
- "keyword": "operation",
- "type": "process",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.027413755655288696,
- 0.09197846055030823,
- -0.019005728885531425,
- 0.032067228108644485,
- -0.17246465384960175,
- -0.052624914795160294,
- 0.14069817960262299,
- -0.05532265082001686,
- -0.020457006990909576,
- 0.014564753510057926,
- 0.06546971946954727,
- 0.014800029806792736,
- 0.028845449909567833,
- 0.014233309775590897,
- -0.030346162617206573,
- 0.0044168331660330296,
- 0.013098965398967266,
- -0.020306836813688278,
- -0.1439102292060852,
- -0.027385370805859566,
- 0.011508531868457794,
- -0.022976426407694817,
- -0.008036286570131779,
- 0.01392857264727354,
- -0.006801831070333719,
- 0.006718741729855537,
- -0.08952196687459946,
- -0.0394679456949234,
- 0.04679747670888901,
- -0.09401669353246689,
- 0.005852795671671629,
- 0.02281685173511505,
- 0.0683998391032219,
- -0.056472450494766235,
- -0.01565493829548359,
- 0.04218409210443497,
- 0.055178094655275345,
- 0.004832484293729067,
- 0.054110243916511536,
- 0.00979201402515173,
- -0.04143977165222168,
- -0.14023511111736298,
- -0.022805778309702873,
- 0.0005519688711501658,
- 0.007593874353915453,
- 0.06870748847723007,
- 0.008443928323686123,
- -0.009789329022169113,
- 0.03401951119303703,
- 0.016595304012298584,
- -0.04510321840643883,
- 0.003992523532360792,
- -0.10295949876308441,
- 0.021288348361849785,
- 0.04700238257646561,
- -0.006586057599633932,
- 0.024403080344200134,
- -0.007637915201485157,
- -0.01562638208270073,
- -0.060090571641922,
- 0.008084158413112164,
- -0.0059511251747608185,
- -0.053458310663700104,
- 0.04322725534439087,
- 0.04264446720480919,
- -0.06624583154916763,
- 0.043172307312488556,
- -0.1028878316283226,
- -0.04812072589993477,
- -0.019667595624923706,
- 0.0466793030500412,
- -0.010689760558307171,
- -0.0019940948113799095,
- 0.041291654109954834,
- -0.01091677974909544,
- 0.01147439330816269,
- 0.1040741577744484,
- -0.03135537728667259,
- 0.007695971988141537,
- -0.03749920427799225,
- 0.04910428449511528,
- -0.01949962042272091,
- -0.022251715883612633,
- -0.00883939117193222,
- -0.013540808111429214,
- -0.008598776534199715,
- -0.019736185669898987,
- -0.013916442170739174,
- 0.06048087403178215,
- 0.04830314964056015,
- -0.004950118716806173,
- 0.028460485860705376,
- 0.03789198771119118,
- -0.07545436918735504,
- 0.04370349645614624,
- 0.00990359392017126,
- 0.006474930793046951,
- -0.01799605041742325,
- -0.09582021087408066,
- 0.22758646309375763,
- 0.016410240903496742,
- 0.04247452691197395,
- -0.07413680106401443,
- -0.09149179607629776,
- -0.036198940128088,
- -0.02621145360171795,
- -0.03551894798874855,
- 0.002693019574508071,
- -0.02590005286037922,
- -0.05553365871310234,
- 0.023004082962870598,
- 0.01092863641679287,
- -0.04109976813197136,
- -0.028588321059942245,
- -0.060353390872478485,
- 0.02907629683613777,
- -0.05020110309123993,
- -0.010019354522228241,
- 0.00016680850239936262,
- -0.03430388495326042,
- 0.016672246158123016,
- 0.0461374931037426,
- -0.030176842585206032,
- 0.020269008353352547,
- -0.046934615820646286,
- -0.04086974635720253,
- 0.09515248984098434,
- -6.713297461372025e-33,
- -0.03997472673654556,
- -0.11683588474988937,
- 0.015925748273730278,
- 0.06365052610635757,
- -0.031508706510066986,
- 0.062064532190561295,
- -0.08566918969154358,
- -0.05833958461880684,
- -0.010490700602531433,
- 0.08659248054027557,
- -0.04034954681992531,
- 0.020731652155518532,
- 0.015394026413559914,
- -0.01856074668467045,
- 0.062382277101278305,
- -0.04320702329277992,
- 0.10017295926809311,
- 0.047811269760131836,
- 0.014134232886135578,
- -0.017797378823161125,
- 0.0013209412572905421,
- 0.03501243516802788,
- -0.07373976707458496,
- 0.05079973116517067,
- 0.10309281945228577,
- -0.028438562527298927,
- -0.01418149471282959,
- -0.0480523556470871,
- -0.0009975112043321133,
- 0.038748182356357574,
- 0.034240905195474625,
- 0.07128314673900604,
- -0.04628334566950798,
- -0.01876254566013813,
- 0.016705792397260666,
- 0.036978211253881454,
- 0.027028171345591545,
- -0.05772723630070686,
- -0.0015785850118845701,
- -0.057482991367578506,
- -0.057470180094242096,
- -0.013760298490524292,
- -0.09915846586227417,
- 0.03670593723654747,
- -0.01860927790403366,
- 0.02996201068162918,
- -0.017307059839367867,
- 0.07199902832508087,
- 0.11568043380975723,
- 0.026197602972388268,
- -0.01067801658064127,
- 0.025772053748369217,
- -0.017317403107881546,
- -0.021430235356092453,
- 0.03749477118253708,
- 0.044508542865514755,
- 0.04349249228835106,
- 0.031071720644831657,
- 0.03635447844862938,
- 0.06821286678314209,
- -0.016029708087444305,
- 0.028845811262726784,
- -0.006945681758224964,
- 0.051950860768556595,
- -0.0422709658741951,
- -0.05539965257048607,
- -0.010061444714665413,
- -0.046666234731674194,
- -0.0020879972726106644,
- -0.030555645003914833,
- -0.11677920073270798,
- -0.0011515729129314423,
- 0.03770006075501442,
- 0.00308366771787405,
- -0.013078231364488602,
- -0.00961818266659975,
- 0.04885927587747574,
- -0.01233569998294115,
- -0.03528405353426933,
- -0.037091564387083054,
- -0.04222198948264122,
- 0.03380522504448891,
- 0.06951890140771866,
- 0.030670182779431343,
- 0.08981768041849136,
- 0.04099544510245323,
- -0.01714656874537468,
- -0.03617044538259506,
- -0.01000472903251648,
- 0.050282612442970276,
- -0.099131278693676,
- 0.011939797550439835,
- -0.003957719542086124,
- 0.04554373770952225,
- -0.005325144622474909,
- 4.383005541825584e-33,
- -0.06446247547864914,
- 0.01692419871687889,
- -0.04398732632398605,
- -0.015591288916766644,
- -0.007724294904619455,
- -0.02897496707737446,
- 0.012194478884339333,
- -0.09833289682865143,
- -0.05718279629945755,
- 0.0734017938375473,
- -0.04026661440730095,
- -0.007819117978215218,
- -0.036308422684669495,
- -0.04842325299978256,
- 0.025058139115571976,
- -0.015237598679959774,
- 0.03451823070645332,
- -0.015119989402592182,
- -0.01945633441209793,
- 0.09253433346748352,
- -0.04597155377268791,
- 0.05239744484424591,
- 0.06229463592171669,
- -0.03395766764879227,
- -0.028971826657652855,
- 0.06343332678079605,
- 0.03376465290784836,
- 0.087004154920578,
- 0.06963403522968292,
- -0.012462257407605648,
- 0.008393066935241222,
- -0.10516862571239471,
- -0.02596033364534378,
- 0.018436327576637268,
- -0.030379844829440117,
- 0.11075790226459503,
- 0.11056037992238998,
- 0.01426592469215393,
- 0.005437727086246014,
- -0.031092768535017967,
- 0.05980537086725235,
- -0.032764386385679245,
- 0.028213365003466606,
- 0.14353087544441223,
- -0.008879264816641808,
- -0.058982763439416885,
- 0.020370064303278923,
- -0.014747091569006443,
- 0.012451356276869774,
- 0.015706423670053482,
- 0.013809438794851303,
- -0.016835276037454605,
- -0.03868234530091286,
- 0.000620124046690762,
- -0.005950055550783873,
- 0.05428319051861763,
- 0.031516969203948975,
- -0.107791006565094,
- 0.010897637344896793,
- 0.03835596144199371,
- 0.02414255402982235,
- 0.02331935241818428,
- 0.04586716368794441,
- 0.03063778579235077,
- -0.08544223010540009,
- 0.04879903048276901,
- 0.047257762402296066,
- -0.0016591877210885286,
- -0.04903591051697731,
- 0.02687240019440651,
- 0.12029494345188141,
- 0.03877496346831322,
- -0.06655288487672806,
- -0.036051567643880844,
- -0.005190170835703611,
- -0.04554557427763939,
- -0.05503807216882706,
- -0.05659930408000946,
- -0.017838412895798683,
- 0.08505802601575851,
- 0.018945880234241486,
- 0.0016719494014978409,
- 0.023234771564602852,
- 0.04152520373463631,
- -0.09236101061105728,
- -0.05299806594848633,
- 0.1302071362733841,
- 0.022921105846762657,
- -0.03480440378189087,
- -0.007542669307440519,
- -0.06054946407675743,
- -0.001494375872425735,
- -0.07788511365652084,
- 0.010822681710124016,
- 0.03226855397224426,
- -1.2855718267701377e-8,
- -0.07024948298931122,
- 0.0013952492736279964,
- 0.08648129552602768,
- 0.022998882457613945,
- 0.06814335286617279,
- -0.04722834751009941,
- 0.011319312267005444,
- 0.014821820892393589,
- -0.04053303599357605,
- -0.026966096833348274,
- 0.0011642198078334332,
- 0.03533084690570831,
- 0.0016555942129343748,
- 0.006741901859641075,
- 0.07180321216583252,
- -0.012714114040136337,
- -0.04553210735321045,
- -0.049726635217666626,
- -0.05759758874773979,
- -0.02819036692380905,
- 0.005305124446749687,
- -0.027278808876872063,
- 0.09953049570322037,
- -0.0044103688560426235,
- -0.018162626773118973,
- 0.05170343443751335,
- -0.013663207180798054,
- 0.021859778091311455,
- 0.020497597754001617,
- 0.06055346131324768,
- 0.05814071744680405,
- 0.01305839978158474,
- 0.0442122258245945,
- 0.026270724833011627,
- -0.05027172341942787,
- -0.03289441019296646,
- 0.014700873754918575,
- 0.032210227102041245,
- 0.018987320363521576,
- -0.04766504094004631,
- -0.09229180216789246,
- -0.005606317892670631,
- 0.06721007078886032,
- 0.09367397427558899,
- -0.02860533446073532,
- 0.042026981711387634,
- -0.07472406327724457,
- -0.06683134287595749,
- -0.0355212427675724,
- -0.10332158952951431,
- 0.03372586891055107,
- -0.005984343588352203,
- 0.04807497188448906,
- 0.10258263349533081,
- -0.01463200245052576,
- 0.04718577489256859,
- 0.03392941504716873,
- -0.012858712114393711,
- -0.01366284117102623,
- 0.13624459505081177,
- 0.03626857325434685,
- 0.001352177350781858,
- 0.05052005872130394,
- -0.052047036588191986
- ]
- },
- {
- "keyword": "collection",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.06140681356191635,
- 0.0729464665055275,
- -0.05509323254227638,
- 0.022774694487452507,
- -0.04486503079533577,
- 0.021647052839398384,
- 0.08516734838485718,
- -0.005151555873453617,
- 0.056242506951093674,
- -0.0084544001147151,
- 0.05457805097103119,
- -0.07880507409572601,
- 0.02668229676783085,
- -0.0338590107858181,
- -0.08642224967479706,
- 0.01583944633603096,
- 0.006396086420863867,
- 0.0003254164766985923,
- 0.06933678686618805,
- 0.03339981660246849,
- -0.04942794889211655,
- 0.042460571974515915,
- 0.05336198955774307,
- 0.05024758726358414,
- -0.03675506263971329,
- 0.030208472162485123,
- -0.040364429354667664,
- -0.02829793468117714,
- 0.034619249403476715,
- -0.1038360521197319,
- -0.019497118890285492,
- 0.023098746314644814,
- 0.04131492227315903,
- 0.009043741971254349,
- 0.032805390655994415,
- -0.007739746943116188,
- 0.05231513828039169,
- 0.003110618330538273,
- 0.021727874875068665,
- -0.06331443786621094,
- -0.03896491602063179,
- 0.014157221652567387,
- -0.06947115808725357,
- -0.02721027098596096,
- -0.019378909841179848,
- 0.029524650424718857,
- 0.003122371155768633,
- 0.0061302585527300835,
- 0.05758127197623253,
- 0.023252837359905243,
- -0.03143348544836044,
- 0.013892112299799919,
- -0.05785224586725235,
- 0.03615523502230644,
- 0.04796366021037102,
- 0.07836965471506119,
- -0.003477292601019144,
- -0.05157818645238876,
- -0.05094491317868233,
- -0.005691139958798885,
- 0.052414461970329285,
- -0.031663332134485245,
- -0.12065991759300232,
- 0.009762326255440712,
- -0.029352590441703796,
- -0.053471751511096954,
- 0.05866507813334465,
- 0.1168578565120697,
- -0.0013809626689180732,
- -0.06627144664525986,
- 0.030948719009757042,
- 0.08270139247179031,
- 0.03825634717941284,
- 0.020157907158136368,
- 0.0788138210773468,
- 0.022742174565792084,
- 0.02556534856557846,
- -0.09558990597724915,
- 0.02967039868235588,
- 0.00825503095984459,
- -0.05443306639790535,
- -0.047167081385850906,
- -0.0575219951570034,
- -0.024566322565078735,
- 0.03285766392946243,
- -0.04630858823657036,
- -0.006189108360558748,
- -0.051122523844242096,
- -0.022030267864465714,
- 0.013964549638330936,
- -0.04677498713135719,
- 0.012958406470716,
- 0.14997288584709167,
- 0.003789094276726246,
- -0.07265222072601318,
- 0.00852716900408268,
- 0.10376042127609253,
- -0.005910864565521479,
- 0.048819076269865036,
- 0.2261233925819397,
- 0.0054273447021842,
- 0.04670058563351631,
- 0.035753048956394196,
- -0.05941067636013031,
- -0.06598494946956635,
- -0.038690172135829926,
- -0.050578974187374115,
- -0.01866302825510502,
- 0.006332528777420521,
- -0.04721568524837494,
- -0.044348664581775665,
- -0.024335447698831558,
- -0.09724734723567963,
- 0.0048809112049639225,
- -0.04275866225361824,
- -0.01732710190117359,
- -0.04544979706406593,
- 0.07348676770925522,
- -0.02562285028398037,
- -0.019080234691500664,
- 0.048259202390909195,
- 0.0018632535357028246,
- 0.023050222545862198,
- 0.01952255889773369,
- -0.019434243440628052,
- -0.07279349118471146,
- 0.0010049116099253297,
- -5.461850379781278e-33,
- 0.11911392211914062,
- -0.048116397112607956,
- -0.008236421272158623,
- 0.042067088186740875,
- 0.008943192660808563,
- 0.001757133868522942,
- -0.017125487327575684,
- 0.03448433429002762,
- -0.07211048901081085,
- -0.000058357385569252074,
- -0.0005119412089698017,
- 0.07774200290441513,
- -0.0066601731814444065,
- 0.025119559839367867,
- 0.07245630770921707,
- -0.0032970267347991467,
- 0.03495211899280548,
- 0.00030503448215313256,
- 0.048248402774333954,
- -0.04499421268701553,
- -0.06977792829275131,
- -0.012385576963424683,
- 0.04507945105433464,
- -0.016685446724295616,
- -0.016464609652757645,
- -0.02473176084458828,
- -0.06261704117059708,
- -0.0010130247101187706,
- -0.04831128194928169,
- 0.040488600730895996,
- -0.0021236781030893326,
- -0.0011647199280560017,
- 0.008975831791758537,
- 0.02278701774775982,
- 0.0320117250084877,
- 0.10691964626312256,
- 0.0022332221269607544,
- -0.06259169429540634,
- 0.05865078419446945,
- -0.039157237857580185,
- 0.07060258835554123,
- 0.04499780759215355,
- 0.025329485535621643,
- -0.014234043657779694,
- -0.05499706789851189,
- 0.04658614844083786,
- 0.03513762727379799,
- 0.02572372741997242,
- -0.024607915431261063,
- 0.10326716303825378,
- 0.0022871075198054314,
- -0.03493230417370796,
- -0.16132792830467224,
- 0.005760262254625559,
- -0.05213361606001854,
- -0.022463278844952583,
- -0.024128710851073265,
- 0.03492778167128563,
- 0.056739386171102524,
- 0.05209268257021904,
- 0.024851087480783463,
- 0.06643430143594742,
- 0.052526019513607025,
- 0.0874641090631485,
- 0.017485372722148895,
- 0.025311799719929695,
- -0.02427711710333824,
- 0.0007287016487680376,
- 0.012866707518696785,
- -0.027970246970653534,
- -0.04086475074291229,
- -0.0020482377149164677,
- 0.04305038973689079,
- 0.02715970389544964,
- 0.025660399347543716,
- -0.04184224456548691,
- 0.03198707476258278,
- 0.009993785992264748,
- -0.0948924571275711,
- -0.03844812884926796,
- -0.051528822630643845,
- -0.05541585013270378,
- -0.03349059447646141,
- 0.07278089225292206,
- -0.008919239044189453,
- 0.07493096590042114,
- 0.0025360528379678726,
- -0.03778110072016716,
- 0.08850472420454025,
- -0.005878341384232044,
- -0.09265691787004471,
- 0.0022781866136938334,
- 0.035425037145614624,
- -0.03869372233748436,
- -0.0428876169025898,
- 3.5226222882083806e-33,
- 0.02368192747235298,
- -0.016962936148047447,
- -0.018566854298114777,
- 0.010910755954682827,
- 0.0903177484869957,
- -0.06075510010123253,
- 0.018341191112995148,
- 0.011362961493432522,
- -0.02815058082342148,
- 0.010797836817800999,
- -0.017345139756798744,
- -0.044775623828172684,
- -0.00772558618336916,
- -0.007618082221597433,
- 0.08745713531970978,
- -0.006285384297370911,
- 0.0803612768650055,
- -0.1421160250902176,
- -0.011990636587142944,
- 0.005938021931797266,
- -0.09946154057979584,
- -0.0987582802772522,
- 0.010836315341293812,
- -0.06769255548715591,
- -0.05869520455598831,
- 0.0036451094783842564,
- -0.01031397096812725,
- -0.08981121331453323,
- -0.008174480870366096,
- -0.023738814517855644,
- 0.09411326050758362,
- -0.03955294191837311,
- -0.0038342925254255533,
- 0.020973829552531242,
- -0.03267447277903557,
- -0.001250944216735661,
- 0.052563633769750595,
- 0.009583179838955402,
- -0.008550292812287807,
- 0.0241452157497406,
- 0.02700994908809662,
- -0.004280685912817717,
- 0.028821386396884918,
- 0.11684096604585648,
- 0.016813592985272408,
- -0.08412939310073853,
- -0.0004938797210343182,
- 0.09404737502336502,
- 0.07527180761098862,
- 0.06924497336149216,
- -0.09059608727693558,
- -0.026128973811864853,
- 0.01861732453107834,
- -0.006207712460309267,
- 0.012704000808298588,
- -0.03074100986123085,
- 0.06488973647356033,
- -0.05711587518453598,
- 0.09494668245315552,
- 0.006128889042884111,
- -0.010576862841844559,
- 0.04198266193270683,
- -0.08087004721164703,
- 0.07180285453796387,
- 0.036801859736442566,
- -0.07238287478685379,
- -0.017929524183273315,
- -0.04133372753858566,
- -0.04736059904098511,
- 0.017812170088291168,
- -0.0038701025769114494,
- -0.03184198588132858,
- -0.037019990384578705,
- -0.026108423247933388,
- -0.08421161770820618,
- -0.04131343960762024,
- -0.06861472129821777,
- 0.017557036131620407,
- 0.014216463081538677,
- -0.009407659992575645,
- -0.08123867213726044,
- -0.009356215596199036,
- 0.019802602007985115,
- 0.018606603145599365,
- -0.010149676352739334,
- -0.02800959162414074,
- 0.10017882287502289,
- -0.03097708337008953,
- -0.061267562210559845,
- 0.020375054329633713,
- 0.056958042085170746,
- -0.014914164319634438,
- 0.06901043653488159,
- 0.048704247921705246,
- 0.019836455583572388,
- -1.2398886362063877e-8,
- -0.10321322828531265,
- 0.030247144401073456,
- -0.014581920579075813,
- 0.015198090113699436,
- 0.13291993737220764,
- -0.017274118959903717,
- -0.017516205087304115,
- 0.07820244878530502,
- 0.0007133428589440882,
- 0.04400021582841873,
- 0.038444213569164276,
- -0.009275895543396473,
- -0.0009983276249840856,
- 0.0267720278352499,
- 0.06635785847902298,
- 0.003549005836248398,
- -0.037966832518577576,
- 0.022572658956050873,
- -0.07940146327018738,
- 0.06902974098920822,
- 0.024237314239144325,
- -0.05475376546382904,
- 0.034422412514686584,
- -0.06346018612384796,
- -0.005447193048894405,
- 0.023351376876235008,
- -0.007546837441623211,
- 0.0545680858194828,
- 0.022611161693930626,
- 0.0424368679523468,
- 0.008808394894003868,
- 0.08974709361791611,
- 0.05227617919445038,
- -0.04238935932517052,
- 0.0946989431977272,
- -0.04049378260970116,
- -0.04301692917943001,
- 0.0009783561108633876,
- -0.052688512951135635,
- -0.04102839156985283,
- -0.013150912709534168,
- -0.023392949253320694,
- -0.02982202358543873,
- 0.0021164037752896547,
- -0.027163097634911537,
- -0.07900936901569366,
- 0.005234656855463982,
- -0.012161861173808575,
- 0.03497299924492836,
- 0.02748091146349907,
- -0.08041692525148392,
- -0.007700475864112377,
- 0.08338726311922073,
- 0.030323445796966553,
- 0.05227484926581383,
- 0.06660972535610199,
- 0.057874154299497604,
- -0.05060305818915367,
- 0.012677882798016071,
- 0.010456958785653114,
- 0.12038958072662354,
- -0.12313585728406906,
- -0.07297281920909882,
- 0.058205317705869675
- ]
- },
- {
- "keyword": "set",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.0146728390827775,
- 0.06323720514774323,
- -0.04388652741909027,
- 0.040361929684877396,
- -0.1068437397480011,
- 0.07022202014923096,
- 0.10686194151639938,
- 0.006788976490497589,
- 0.044776756316423416,
- -0.06252359598875046,
- -0.018460121005773544,
- -0.11100754141807556,
- 0.04392686486244202,
- -0.09836604446172714,
- -0.04036327451467514,
- -0.020725497975945473,
- -0.018017591908574104,
- -0.07065834850072861,
- -0.06970085203647614,
- 0.012079212814569473,
- -0.06789475679397583,
- -0.07341250032186508,
- 0.03903168439865112,
- 0.0062958248890936375,
- -0.016319293528795242,
- 0.04177207499742508,
- -0.004675338976085186,
- 0.019349833950400352,
- 0.0036434060893952847,
- -0.0672033429145813,
- 0.0022300975397229195,
- -0.015845656394958496,
- 0.03416305035352707,
- -0.02437705174088478,
- -0.02354319393634796,
- -0.000349468260537833,
- 0.016445085406303406,
- 0.026730606332421303,
- 0.016353752464056015,
- 0.05213687941431999,
- -0.07284342497587204,
- -0.06550277024507523,
- 0.03989074006676674,
- -0.0008201192249543965,
- -0.04182770103216171,
- 0.15551361441612244,
- 0.04271133616566658,
- 0.05745412036776543,
- 0.07681501656770706,
- -0.032550372183322906,
- -0.04110870137810707,
- 0.006080112420022488,
- -0.014487184584140778,
- 0.025063449516892433,
- 0.005566472187638283,
- 0.08725648373365402,
- -0.012134242802858353,
- 0.0587569922208786,
- -0.010706116445362568,
- -0.052984148263931274,
- 0.03745018690824509,
- -0.04059681296348572,
- -0.05037795379757881,
- 0.07076063007116318,
- 0.006959444377571344,
- -0.0015681821387261152,
- 0.019730044528841972,
- 0.053016312420368195,
- 0.0034704969730228186,
- -0.045202694833278656,
- 0.02364969253540039,
- 0.06786906719207764,
- 0.10112655907869339,
- -0.005578877869993448,
- 0.03478260710835457,
- 0.03863726556301117,
- 0.06237298995256424,
- -0.05587412044405937,
- 0.043500129133462906,
- 0.022037366405129433,
- -0.06713414192199707,
- -0.01389544177800417,
- 0.01106045302003622,
- 0.030613310635089874,
- 0.02133885584771633,
- -0.027728591114282608,
- 0.0011459554079920053,
- 0.04500138759613037,
- -0.024025416001677513,
- 0.0780121460556984,
- -0.11083080619573593,
- -0.02224464900791645,
- 0.11991067230701447,
- 0.010637159459292889,
- -0.08397525548934937,
- 0.07358737289905548,
- 0.09201914072036743,
- 0.020970270037651062,
- 0.0027541508898139,
- 0.20083403587341309,
- 0.055533599108457565,
- 0.02098829858005047,
- 0.022197796031832695,
- 0.035314686596393585,
- -0.04955904558300972,
- -0.02176213636994362,
- -0.01839587464928627,
- 0.014468446373939514,
- 0.02255619503557682,
- -0.08728440850973129,
- 0.04527154192328453,
- -0.03153623268008232,
- -0.0009904095204547048,
- 0.05474076792597771,
- 0.0003104878996964544,
- 0.0163522157818079,
- -0.0183015838265419,
- -0.001136228209361434,
- -0.01796916127204895,
- -0.0470007099211216,
- 0.03445562720298767,
- -0.044184502214193344,
- 0.027887022122740746,
- -0.040513865649700165,
- -0.053786639124155045,
- -0.06704093515872955,
- 0.01588931307196617,
- -5.4022046943946014e-33,
- 0.021592440083622932,
- -0.06925968825817108,
- -0.041669320315122604,
- -0.00019345455802977085,
- -0.018719328567385674,
- 0.04545192793011665,
- -0.021647511050105095,
- 0.0006593873840756714,
- -0.08147404342889786,
- 0.06675418466329575,
- -0.06311724334955215,
- 0.001503653940744698,
- 0.009418198838829994,
- 0.02910655550658703,
- 0.03112310916185379,
- -0.02435980550944805,
- 0.11821834743022919,
- -0.04960823059082031,
- 0.01959005557000637,
- -0.07890487462282181,
- -0.09749208390712738,
- 0.07468177378177643,
- 0.008820007555186749,
- -0.04888569563627243,
- 0.024406326934695244,
- -0.0008601067820563912,
- -0.029650691896677017,
- -0.03590653836727142,
- -0.0159212164580822,
- -0.010294434614479542,
- 0.054167211055755615,
- 0.07382500171661377,
- 0.008218049071729183,
- 0.04592156410217285,
- -0.0007070174324326217,
- 0.001779432874172926,
- -0.0147473169490695,
- -0.0033015424851328135,
- 0.06510286778211594,
- -0.10452644526958466,
- 0.07879370450973511,
- 0.0010193220805376768,
- -0.021716151386499405,
- 0.04305170848965645,
- -0.0073753707110881805,
- -0.011313778348267078,
- 0.03757850453257561,
- 0.07566718757152557,
- -0.014447943307459354,
- 0.04047233983874321,
- -0.031056364998221397,
- -0.015605103224515915,
- -0.13783510029315948,
- -0.07218963652849197,
- -0.06379493325948715,
- -0.03609631583094597,
- -0.011227206327021122,
- -0.02678169123828411,
- -0.03952958807349205,
- -0.010768353939056396,
- 0.07601799815893173,
- -0.013154974207282066,
- 0.03345616161823273,
- 0.05062079057097435,
- -0.08546049147844315,
- 0.01120098028331995,
- 0.009265664964914322,
- -0.046764254570007324,
- 0.05257711187005043,
- 0.026446877047419548,
- -0.05986403301358223,
- -0.00038540535024367273,
- 0.06347405910491943,
- 0.07708795368671417,
- -0.0045076338574290276,
- -0.013776710256934166,
- 0.011516587808728218,
- 0.06144256517291069,
- -0.06014767661690712,
- 0.07904061675071716,
- -0.016077153384685516,
- 0.05167461186647415,
- -0.07575001567602158,
- 0.016115086153149605,
- 0.059078723192214966,
- -0.00873534195125103,
- -0.011025087907910347,
- -0.011847888119518757,
- 0.03229863569140434,
- 0.005608194041997194,
- -0.10386481881141663,
- -0.033137548714876175,
- 0.019334403797984123,
- -0.021740848198533058,
- -0.07948767393827438,
- 4.803406035375805e-33,
- -0.02989181876182556,
- 0.02692505717277527,
- -0.07786987721920013,
- 0.09799961745738983,
- 0.06820846349000931,
- -0.04062354192137718,
- 0.056016068905591965,
- 0.010887105017900467,
- 0.027176247909665108,
- 0.06703611463308334,
- 0.040542203933000565,
- 0.01363379880785942,
- -0.014544377103447914,
- -0.08448313176631927,
- -0.027212655171751976,
- 0.04826851189136505,
- 0.052520669996738434,
- 0.034566737711429596,
- 0.025680705904960632,
- -0.05199628695845604,
- -0.07696742564439774,
- -0.04662507772445679,
- -0.040673717856407166,
- 0.043779172003269196,
- -0.012514234520494938,
- 0.023372681811451912,
- 0.016576535999774933,
- 0.009105713106691837,
- -0.05368763953447342,
- 0.023385845124721527,
- -0.040009018033742905,
- -0.029376931488513947,
- -0.06850124150514603,
- 0.056174177676439285,
- -0.023986145853996277,
- 0.027477938681840897,
- 0.09680585563182831,
- 0.0031881663016974926,
- -0.06526414304971695,
- 0.01551538985222578,
- 0.0988137498497963,
- 0.0026455060578882694,
- -0.02314017526805401,
- 0.18105448782444,
- 0.0035761843901127577,
- 0.02327282726764679,
- -0.03374594449996948,
- 0.06188569217920303,
- 0.04691950976848602,
- 0.020591607317328453,
- -0.04339402914047241,
- -0.08408624678850174,
- 0.008890111930668354,
- 0.010579116642475128,
- 0.0509980209171772,
- -0.0776882991194725,
- -0.040944211184978485,
- -0.0005651632673107088,
- 0.05887756124138832,
- 0.015898054465651512,
- -0.04262892156839371,
- 0.06921178847551346,
- -0.017019109800457954,
- 0.1285712718963623,
- 0.0505855493247509,
- 0.03693956881761551,
- -0.08163384348154068,
- -0.02725960500538349,
- -0.023589633405208588,
- 0.018067125231027603,
- -0.05672973394393921,
- -0.10002175718545914,
- 0.045155107975006104,
- -0.04367755353450775,
- -0.09122716635465622,
- -0.08344950526952744,
- -0.05156886205077171,
- -0.07560133934020996,
- 0.011067191138863564,
- 0.07592374086380005,
- -0.010427877306938171,
- -0.006321836728602648,
- -0.0024578399024903774,
- 0.03809762001037598,
- 0.02929714135825634,
- 0.045756470412015915,
- 0.07896845042705536,
- 0.07725293934345245,
- 0.0007484208908863366,
- -0.001168499467894435,
- 0.039279282093048096,
- 0.026713937520980835,
- 0.08595293760299683,
- 0.015005790628492832,
- -0.07032307237386703,
- -1.2301930141234152e-8,
- 0.014417460188269615,
- 0.05382072553038597,
- 0.023378310725092888,
- 0.01910526305437088,
- 0.015516409650444984,
- -0.006025809794664383,
- -0.0019028510432690382,
- 0.0586836077272892,
- -0.03535132855176926,
- -0.07262378185987473,
- 0.011129707098007202,
- 0.040113210678100586,
- 0.03363736346364021,
- 0.09251292049884796,
- 0.028501372784376144,
- -0.10850708931684494,
- -0.06516662985086441,
- 0.07316727936267853,
- -0.05401305481791496,
- 0.016820479184389114,
- 0.029008997604250908,
- -0.048172153532505035,
- 0.022093283012509346,
- 0.0006310669705271721,
- 0.0864432156085968,
- -0.05786420777440071,
- -0.03507527336478233,
- 0.0571107491850853,
- -0.03626164421439171,
- 0.0043699308298528194,
- 0.031709935516119,
- 0.022382032126188278,
- 0.07831727713346481,
- -0.002362417057156563,
- 0.00023715684073977172,
- -0.07230556756258011,
- -0.08661360293626785,
- 0.042336173355579376,
- -0.030144866555929184,
- -0.03061085380613804,
- -0.024308307096362114,
- -0.08441811800003052,
- -0.001135093392804265,
- -0.03704408183693886,
- -0.05633074790239334,
- -0.01755855418741703,
- 0.014759588055312634,
- 0.05259218439459801,
- -0.03035745769739151,
- 0.005236417520791292,
- -0.013150257989764214,
- 0.034555643796920776,
- 0.09479221701622009,
- -0.014975049532949924,
- 0.055072885006666183,
- 0.012780353426933289,
- 0.04058420658111572,
- -0.0073562744073569775,
- -0.0038442322984337807,
- 0.03211500495672226,
- -0.02965397946536541,
- -0.011666188947856426,
- -0.02924579754471779,
- 0.014932110905647278
- ]
- },
- {
- "keyword": "group",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.03330979496240616,
- -0.007593643385916948,
- -0.012247525155544281,
- 0.05946815386414528,
- -0.01688060723245144,
- 0.007011884823441505,
- 0.11604493856430054,
- -0.05595420300960541,
- 0.06112019345164299,
- -0.04303716868162155,
- 0.048792269080877304,
- -0.06679358333349228,
- 0.005882225930690765,
- -0.029719319194555283,
- -0.03582775965332985,
- -0.030666660517454147,
- -0.05753329396247864,
- 0.03189745545387268,
- -0.09360557794570923,
- -0.09762454032897949,
- -0.059578217566013336,
- -0.03522847965359688,
- 0.0034980899654328823,
- 0.023156695067882538,
- -0.016225866973400116,
- 0.02511662244796753,
- -0.029779672622680664,
- -0.0182080939412117,
- 0.04162042587995529,
- -0.10636109113693237,
- -0.04713413864374161,
- 0.0670238807797432,
- 0.10143323987722397,
- 0.01816229708492756,
- -0.04451056942343712,
- 0.09833992272615433,
- 0.015908265486359596,
- -0.013558312319219112,
- -0.007491705939173698,
- 0.037790555506944656,
- -0.05112747102975845,
- -0.022956397384405136,
- 0.017259450629353523,
- -0.0035007912665605545,
- -0.0009616522002033889,
- 0.04814634472131729,
- 0.024818265810608864,
- 0.012308115139603615,
- -0.007453551981598139,
- 0.07006973773241043,
- 0.07022684812545776,
- -0.0011965252924710512,
- -0.04797450453042984,
- 0.06267378479242325,
- 0.027019139379262924,
- -0.00120361871086061,
- -0.02632363699376583,
- -0.03769991174340248,
- -0.03149039298295975,
- -0.07286857813596725,
- 0.07164397090673447,
- -0.03872634470462799,
- -0.03438534587621689,
- 0.03973664715886116,
- -0.00869392603635788,
- -0.002864814829081297,
- 0.10331444442272186,
- 0.05862148106098175,
- -0.017483673989772797,
- -0.026701655238866806,
- 0.04098569229245186,
- -0.019910573959350586,
- 0.06376069039106369,
- 0.05745167285203934,
- 0.04390702769160271,
- 0.020556176081299782,
- 0.03878921642899513,
- -0.08572719246149063,
- 0.07231750339269638,
- -0.03572634980082512,
- 0.044185295701026917,
- 0.013281123712658882,
- -0.039147939532995224,
- 0.039132483303546906,
- 0.03941497579216957,
- -0.017813002690672874,
- -0.016018344089388847,
- 0.045477014034986496,
- -0.09149166196584702,
- 0.014336660504341125,
- -0.09144989401102066,
- 0.12772458791732788,
- 0.08314356207847595,
- -0.02219597063958645,
- -0.06963612139225006,
- 0.022690072655677795,
- 0.0918157771229744,
- -0.05494268611073494,
- 0.0018409809563308954,
- 0.28267350792884827,
- 0.024655891582369804,
- 0.07377815991640091,
- -0.04311474412679672,
- -0.04165641590952873,
- -0.06319312006235123,
- -0.05399591475725174,
- -0.0534173920750618,
- 0.0035860533826053143,
- -0.0033538879361003637,
- -0.00032030214788392186,
- -0.0381675623357296,
- -0.00044928168063052,
- -0.025002174079418182,
- -0.011668695136904716,
- -0.0666036382317543,
- -0.06886012852191925,
- 0.030554302036762238,
- 0.023360412567853928,
- 0.041206616908311844,
- -0.02189081348478794,
- 0.05456050857901573,
- 0.04123721271753311,
- 0.06573127210140228,
- 0.021356886252760887,
- 0.060207024216651917,
- 0.048441432416439056,
- -0.022735148668289185,
- -5.470385570794202e-33,
- -0.027125773951411247,
- -0.06040075048804283,
- 0.022338567301630974,
- 0.030737370252609253,
- -0.002322278916835785,
- -0.04052839055657387,
- -0.04469554126262665,
- 0.0432988665997982,
- -0.10492837429046631,
- -0.007861489430069923,
- -0.058303918689489365,
- -0.02414863370358944,
- 0.011846764013171196,
- -0.008192593231797218,
- 0.10717795789241791,
- -0.004376801662147045,
- 0.00692990655079484,
- -0.0016402811743319035,
- -0.03347041830420494,
- -0.01750360243022442,
- -0.11012528836727142,
- 0.11744528263807297,
- -0.00036548322532325983,
- 0.05941193178296089,
- -0.07119760662317276,
- 0.011729052290320396,
- -0.05632367730140686,
- -0.05704860761761665,
- -0.00849003903567791,
- 0.029410691931843758,
- 0.0471087209880352,
- 0.008271568454802036,
- -0.0518159344792366,
- 0.025034403428435326,
- -0.019449952989816666,
- 0.03952977806329727,
- 0.0512474961578846,
- -0.05787281319499016,
- 0.061671990901231766,
- 0.01811518333852291,
- 0.015669044107198715,
- 0.004930339753627777,
- 0.003595565678551793,
- -0.051739566028118134,
- 0.04719340428709984,
- 0.07034076750278473,
- 0.013399830088019371,
- 0.008954443968832493,
- -0.016185928136110306,
- 0.03458833694458008,
- -0.059870220720767975,
- -0.0723297968506813,
- -0.0658750832080841,
- -0.03895949572324753,
- -0.0046008252538740635,
- -0.054881501942873,
- 0.011027710512280464,
- 0.0447564572095871,
- 0.02272462472319603,
- 0.010983346030116081,
- 0.03319385275244713,
- 0.11855318397283554,
- -0.03606128692626953,
- 0.029424777254462242,
- -0.018031548708677292,
- -0.03806495666503906,
- 0.0629459097981453,
- 0.0069365170784294605,
- 0.04703235626220703,
- -0.02851567231118679,
- -0.011152641847729683,
- 0.01223495788872242,
- 0.05668480694293976,
- 0.11496374756097794,
- -0.020049896091222763,
- 0.0180708896368742,
- 0.05573093518614769,
- 0.065219447016716,
- -0.08719255775213242,
- -0.006191214546561241,
- -0.037435535341501236,
- -0.04597540199756622,
- -0.04123428091406822,
- -0.021732404828071594,
- -0.030377816408872604,
- 0.053746260702610016,
- -0.0037544439546763897,
- -0.08032230287790298,
- -0.026965105906128883,
- -0.016258681192994118,
- -0.13412727415561676,
- 0.023802166804671288,
- 0.1183042973279953,
- 0.07791589945554733,
- -0.07786811888217926,
- 3.804865093996535e-33,
- 0.013278081081807613,
- 0.06027355417609215,
- 0.017121924087405205,
- 0.02404017001390457,
- 0.09116042405366898,
- -0.03619014844298363,
- 0.037696391344070435,
- -0.06289441138505936,
- 0.008662317879498005,
- 0.11909645050764084,
- -0.011021899990737438,
- -0.004944225307554007,
- 0.08655402064323425,
- 0.004957833327353001,
- 0.03471756353974342,
- 0.009285710752010345,
- 0.047037672251462936,
- -0.02336558699607849,
- 0.01670149527490139,
- 0.010497530922293663,
- -0.023904014378786087,
- -0.05474156513810158,
- 0.00531736621633172,
- 0.08008670061826706,
- -0.008812354877591133,
- 0.015517590567469597,
- 0.06375569850206375,
- -0.015234685502946377,
- 0.024735797196626663,
- 0.06399457901716232,
- 0.09519058465957642,
- -0.06168926879763603,
- -0.06818342208862305,
- -0.010069603100419044,
- -0.028525862842798233,
- 0.047305312007665634,
- -0.007988877594470978,
- 0.06583715230226517,
- -0.07793490588665009,
- 0.034733280539512634,
- 0.03475964814424515,
- 0.03818585351109505,
- -0.030380217358469963,
- 0.08512003719806671,
- -0.015137809328734875,
- 0.02130686119198799,
- 0.08673015981912613,
- -0.013284166343510151,
- -0.10104893893003464,
- 0.09607722610235214,
- -0.09285180270671844,
- 0.0059929098933935165,
- -0.00945273507386446,
- -0.046133317053318024,
- 0.010116315446794033,
- 0.04289599508047104,
- 0.02042275480926037,
- -0.0771959125995636,
- -0.06920107454061508,
- 0.03572046756744385,
- -0.007364777382463217,
- -0.0006338909734040499,
- -0.04002971202135086,
- 0.03142667934298515,
- -0.007261117920279503,
- -0.03609924763441086,
- -0.04072783887386322,
- -0.02096700109541416,
- -0.05736818537116051,
- 0.023210572078824043,
- 0.017421172931790352,
- -0.03851613029837608,
- -0.03298785537481308,
- -0.002674488816410303,
- -0.023791661486029625,
- -0.019737033173441887,
- -0.09566859155893326,
- 0.01816963404417038,
- -0.037805940955877304,
- -0.011682756245136261,
- -0.024299487471580505,
- -0.027917247265577316,
- -0.025751421228051186,
- 0.0994393527507782,
- -0.0994868129491806,
- -0.02339228056371212,
- 0.08526008576154709,
- 0.10147202759981155,
- -0.027396438643336296,
- 0.035407837480306625,
- 0.009466231800615788,
- 0.00925226230174303,
- 0.06836743652820587,
- -0.009980165399610996,
- -0.04584896191954613,
- -1.2841436358712599e-8,
- -0.024862751364707947,
- 0.018403559923171997,
- 0.041735339909791946,
- -0.01663883402943611,
- 0.09085174649953842,
- -0.02230653166770935,
- -0.06853444874286652,
- 0.012590059079229832,
- 0.04038815572857857,
- 0.07689779251813889,
- 0.01345290057361126,
- -0.0026059942319989204,
- -0.008009068667888641,
- -0.01879352144896984,
- 0.0559556670486927,
- 0.014535599388182163,
- -0.09737162292003632,
- 0.0072010587900877,
- -0.03218812867999077,
- -0.03507239744067192,
- 0.013516657054424286,
- -0.08536465466022491,
- -0.017169466242194176,
- -0.06062571331858635,
- -0.010764074511826038,
- 0.008743376471102238,
- -0.0663435086607933,
- -0.011172323487699032,
- -0.04429561644792557,
- -0.06043096259236336,
- -0.023290596902370453,
- 0.05829446390271187,
- -0.05627509206533432,
- 0.04841587319970131,
- -0.035154636949300766,
- -0.016792379319667816,
- -0.08909884840250015,
- 0.053737469017505646,
- 0.047721266746520996,
- 0.0024634820874780416,
- 0.0037476092111319304,
- 0.0034826179035007954,
- 0.07098744809627533,
- 0.03002155013382435,
- -0.05363062024116516,
- -0.011781497858464718,
- 0.04393390938639641,
- -0.06621376425027847,
- -0.033616889268159866,
- -0.0641237124800682,
- 0.01037047803401947,
- -0.050698067992925644,
- -0.0052535878494381905,
- 0.05021008104085922,
- -0.00997663289308548,
- 0.028872666880488396,
- -0.011604116298258305,
- 0.040793806314468384,
- 0.0330430306494236,
- -0.028050469234585762,
- 0.055867571383714676,
- 0.007106362376362085,
- -0.025632785633206367,
- -0.026399197056889534
- ]
- },
- {
- "keyword": "batch",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.02560959942638874,
- -0.005171263590455055,
- -0.0759221687912941,
- 0.033581800758838654,
- -0.05011555552482605,
- 0.005861237179487944,
- 0.0877082571387291,
- 0.029311977326869965,
- -0.03717554360628128,
- -0.025836840271949768,
- 0.061829544603824615,
- 0.003548812586814165,
- 0.02581358328461647,
- -0.0478314571082592,
- -0.02004985138773918,
- 0.01685407944023609,
- 0.019069982692599297,
- 0.03949135169386864,
- -0.0683392584323883,
- -0.11980477720499039,
- -0.08289835602045059,
- -0.0252890195697546,
- 0.017077624797821045,
- 0.01640377566218376,
- 0.00011158949200762436,
- 0.03110700286924839,
- -0.005453464575111866,
- -0.09957701712846756,
- -0.05336374789476395,
- -0.09446074068546295,
- -0.007263639476150274,
- 0.058711227029561996,
- 0.08777087926864624,
- 0.008492296561598778,
- 0.15956318378448486,
- -0.006114077288657427,
- -0.058922071009874344,
- 0.046134103089571,
- 0.06437785178422928,
- -0.04242221266031265,
- 0.05190792307257652,
- -0.05745913088321686,
- -0.04074249789118767,
- 0.022852042689919472,
- 0.0049840789288282394,
- -0.035525619983673096,
- -0.06823408603668213,
- 0.011569000780582428,
- 0.05323551595211029,
- 0.022073300555348396,
- -0.0679498016834259,
- -0.04344198480248451,
- -0.03715309500694275,
- 0.014334678649902344,
- -0.013376354239881039,
- 0.042043328285217285,
- 0.08219671994447708,
- 0.06846467405557632,
- -0.018893754109740257,
- 0.039140742272138596,
- -0.03214956447482109,
- -0.09376280009746552,
- -0.07225008308887482,
- 0.013015606440603733,
- 0.08310359716415405,
- -0.0582626536488533,
- -0.019228586927056313,
- 0.021233852952718735,
- 0.0617426298558712,
- -0.023599175736308098,
- -0.043166741728782654,
- 0.05945342779159546,
- -0.0413937047123909,
- 0.049331292510032654,
- -0.06525862962007523,
- 0.03557397797703743,
- 0.12009970098733902,
- -0.014474344439804554,
- -0.016325846314430237,
- -0.010189528577029705,
- -0.08260463178157806,
- -0.06596747040748596,
- 0.027089323848485947,
- -0.07463297992944717,
- -0.010513092391192913,
- -0.010240359231829643,
- -0.020955711603164673,
- 0.02869199402630329,
- 0.009564290754497051,
- -0.002724973950535059,
- -0.038971200585365295,
- 0.015857908874750137,
- 0.03732580691576004,
- -0.018217450007796288,
- -0.07878760993480682,
- 0.08440978825092316,
- 0.03368699923157692,
- 0.03798285871744156,
- 0.008398577570915222,
- 0.206495001912117,
- 0.02770356647670269,
- -0.000014613800885854289,
- -0.014354867860674858,
- -0.0008441731915809214,
- -0.002917490666732192,
- -0.04110245406627655,
- 0.01733097992837429,
- 0.000010880857189476956,
- 0.015939565375447273,
- -0.033453453332185745,
- -0.022809909656643867,
- 0.03288181498646736,
- 0.09753936529159546,
- -0.07245386391878128,
- 0.007192645221948624,
- -0.0720941498875618,
- 0.04448309913277626,
- 0.01529479306191206,
- -0.0361357256770134,
- 0.04740361496806145,
- -0.012091260403394699,
- -0.02705509215593338,
- -0.010371162556111813,
- 0.0008967307512648404,
- -0.07027699053287506,
- -0.02913924865424633,
- 0.09600471705198288,
- -2.293598863385523e-33,
- 0.02081301249563694,
- -0.06760355085134506,
- 0.013402411714196205,
- -0.009940141811966896,
- 0.07847084105014801,
- 0.0263057891279459,
- 0.01830572448670864,
- -0.030791880562901497,
- -0.08895695954561234,
- -0.05944223329424858,
- -0.03154357150197029,
- -0.07789572328329086,
- -0.014305968768894672,
- 0.03461982309818268,
- -0.03566510230302811,
- -0.0714380145072937,
- 0.05271484702825546,
- 0.08874118328094482,
- 0.013182658702135086,
- -0.09093194454908371,
- -0.015223324298858643,
- 0.03210616111755371,
- -0.0007150860037654638,
- 0.014978988096117973,
- -0.004842319525778294,
- -0.0454021617770195,
- 0.045879803597927094,
- -0.03990483283996582,
- 0.011292238719761372,
- 0.006433567497879267,
- 0.018152909353375435,
- 0.021673401817679405,
- -0.07721025496721268,
- 0.0249494556337595,
- 0.010545494966208935,
- 0.059452541172504425,
- -0.018209343776106834,
- -0.01857391558587551,
- 0.05449272319674492,
- -0.013532860204577446,
- -0.06001575291156769,
- 0.05021240934729576,
- -0.035492654889822006,
- 0.004064291715621948,
- -0.06259925663471222,
- -0.0009571164846420288,
- -0.03532218188047409,
- 0.05034647881984711,
- 0.06477626413106918,
- 0.027489615604281425,
- 0.006858787965029478,
- -0.014731748029589653,
- -0.019008660688996315,
- -0.007815254852175713,
- -0.010985186323523521,
- -0.00966892670840025,
- 0.0019182428950443864,
- -0.0547265000641346,
- 0.09604911506175995,
- 0.025467567145824432,
- 0.05811947584152222,
- 0.048200931400060654,
- -0.05234484001994133,
- 0.07581529766321182,
- 0.02791302464902401,
- -0.07570351660251617,
- 0.06915614753961563,
- -0.005328482016921043,
- 0.025666462257504463,
- 0.06215420737862587,
- -0.04824062064290047,
- 0.038577426224946976,
- 0.07380823791027069,
- -0.015504064038395882,
- -0.0017142035067081451,
- -0.008184934966266155,
- 0.11444109678268433,
- 0.03741847351193428,
- -0.1042536199092865,
- 0.015115299262106419,
- -0.0009555410360917449,
- -0.028465943410992622,
- -0.13548924028873444,
- -0.027749482542276382,
- 0.050256237387657166,
- 0.0036665250081568956,
- -0.07027454674243927,
- -0.019504820927977562,
- 0.07816331088542938,
- -0.04319395869970322,
- -0.06857804954051971,
- -0.0041976324282586575,
- 0.032153576612472534,
- 0.015202207490801811,
- -0.010664334520697594,
- 1.3998428659709944e-33,
- 0.08740141987800598,
- 0.055693965405225754,
- 0.02868729643523693,
- 0.06743098050355911,
- 0.024022098630666733,
- -0.022147636860609055,
- 0.019207129254937172,
- -0.003099996829405427,
- -0.11999597400426865,
- 0.02353481948375702,
- -0.08069302886724472,
- 0.04445168003439903,
- -0.0008961093844845891,
- -0.03728220984339714,
- 0.0032416468020528555,
- 0.06552587449550629,
- 0.10623959451913834,
- 0.03887243568897247,
- -0.06878306716680527,
- -0.006032994017004967,
- -0.06267639249563217,
- -0.016586123034358025,
- -0.10892884433269501,
- 0.061895836144685745,
- 0.021960102021694183,
- 0.004448867402970791,
- -0.04154569283127785,
- 0.02477305755019188,
- -0.021428300067782402,
- -0.011907100677490234,
- 0.0014391582226380706,
- -0.011955329217016697,
- -0.03361206874251366,
- 0.03773531690239906,
- -0.02631441503763199,
- 0.06459129601716995,
- 0.09028899669647217,
- 0.12399964034557343,
- -0.0011498478706926107,
- 0.08484403789043427,
- 0.0381169319152832,
- 0.0211173165589571,
- -0.036826372146606445,
- 0.06982603669166565,
- -0.03162338584661484,
- 0.00493756914511323,
- -0.005370521452277899,
- -0.006937148980796337,
- -0.06759125739336014,
- 0.08311134576797485,
- -0.07468884438276291,
- -0.03324469178915024,
- -0.08517885953187943,
- -0.00024762231623753905,
- -0.009627966210246086,
- -0.1334444284439087,
- 0.03117399848997593,
- -0.027110900729894638,
- -0.026163429021835327,
- -0.025149738416075706,
- -0.01692814938724041,
- 0.002476415829733014,
- 0.009338044561445713,
- -0.058111824095249176,
- -0.06652217358350754,
- -0.013264494948089123,
- -0.022261381149291992,
- 0.043370604515075684,
- -0.07982995361089706,
- -0.04757210984826088,
- 0.06969596445560455,
- -0.017712853848934174,
- 0.04746713116765022,
- 0.0931229516863823,
- -0.04634101316332817,
- -0.019970310851931572,
- -0.027057431638240814,
- -0.046005140990018845,
- -0.07475122809410095,
- 0.042854275554418564,
- 0.00659325672313571,
- 0.011539604514837265,
- 0.01177265029400587,
- 0.01873781904578209,
- -0.0009149094694294035,
- 0.08139526844024658,
- 0.043403442949056625,
- 0.01700693927705288,
- 0.006672979332506657,
- 0.018563220277428627,
- -0.02673424780368805,
- 0.009691290557384491,
- 0.12809091806411743,
- 0.04346998408436775,
- 0.03171509876847267,
- -1.2105647151372523e-8,
- -0.019919006153941154,
- -0.06674596667289734,
- 0.09870632737874985,
- 0.12107053399085999,
- 0.050392378121614456,
- 0.025457408279180527,
- -0.0743674486875534,
- 0.07196253538131714,
- 0.03397013247013092,
- -0.01619826629757881,
- 0.0381317138671875,
- -0.006187907420098782,
- -0.027715470641851425,
- 0.016479531303048134,
- -0.02664032392203808,
- -0.04028399661183357,
- -0.017788751050829887,
- -0.040260132402181625,
- 0.035592980682849884,
- 0.05133697763085365,
- -0.051550786942243576,
- 0.015772704035043716,
- 0.08290913701057434,
- 0.036734867841005325,
- 0.043272677809000015,
- -0.0027558691799640656,
- 0.01937999203801155,
- 0.07804006338119507,
- -0.004511870909482241,
- -0.07239378988742828,
- 0.02156672812998295,
- 0.03739678114652634,
- 0.0383538119494915,
- -0.054772716015577316,
- -0.04397353529930115,
- -0.01730741187930107,
- 0.03666527196764946,
- -0.0055648102425038815,
- -0.04266790300607681,
- -0.048186566680669785,
- -0.0638364627957344,
- -0.028863176703453064,
- 0.03301266208291054,
- -0.015794511884450912,
- -0.04146948456764221,
- -0.043973181396722794,
- -0.07219251245260239,
- -0.03324854373931885,
- 0.005186961963772774,
- -0.03955256566405296,
- -0.050810519605875015,
- -0.02499360404908657,
- 0.05261562019586563,
- 0.10010386258363724,
- 0.037672895938158035,
- 0.0472048856317997,
- 0.00013076620234642178,
- -0.06202638894319534,
- 0.031952790915966034,
- 0.029529821127653122,
- 0.04820586368441582,
- 0.028264129534363747,
- 0.004541316069662571,
- -0.13796252012252808
- ]
- },
- {
- "keyword": "list",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.047229260206222534,
- -0.011537916027009487,
- -0.02148393541574478,
- 0.025553030893206596,
- 0.06171488016843796,
- 0.07488038390874863,
- 0.1253662407398224,
- 0.029219450429081917,
- -0.05158398300409317,
- 0.020317133516073227,
- 0.009635974653065205,
- -0.03451600670814514,
- 0.023407431319355965,
- 0.009546464309096336,
- -0.09270279854536057,
- -0.000903474458027631,
- 0.01438067015260458,
- 0.05952530354261398,
- 0.05543174967169762,
- -0.11062324047088623,
- 0.035823043435811996,
- 0.0869673639535904,
- -0.036969155073165894,
- 0.004959472455084324,
- -0.010227038525044918,
- 0.026006309315562248,
- -0.0389351025223732,
- -0.05682717263698578,
- -0.06892270594835281,
- -0.154694601893425,
- -0.06251709908246994,
- -0.008337605744600296,
- 0.10087252408266068,
- 0.0028203336987644434,
- 0.029222993180155754,
- -0.03767874091863632,
- 0.0116951959207654,
- 0.015145761892199516,
- -0.021753890439867973,
- 0.024717267602682114,
- -0.04253357648849487,
- -0.0688927099108696,
- -0.008950418792665005,
- -0.030640719458460808,
- 0.006755546201020479,
- 0.032729994505643845,
- 0.0107053117826581,
- -0.05026217922568321,
- 0.030336933210492134,
- -0.03284104913473129,
- -0.09917839616537094,
- 0.017868760973215103,
- -0.11121811717748642,
- -0.006667741108685732,
- 0.0017081891419366002,
- -0.010772534646093845,
- -0.045760657638311386,
- 0.0033906009048223495,
- -0.038396093994379044,
- -0.016231443732976913,
- 0.05209828168153763,
- -0.012372194789350033,
- -0.02737143263220787,
- 0.026152824983000755,
- -0.04691270738840103,
- -0.015245146118104458,
- 0.01543684583157301,
- 0.03563261032104492,
- -0.02900945022702217,
- -0.04561033844947815,
- 0.02201167494058609,
- 0.050287794321775436,
- -0.008858020417392254,
- -0.009085876867175102,
- 0.06440633535385132,
- -0.020585039630532265,
- 0.07249575108289719,
- -0.0689975842833519,
- -0.041146375238895416,
- -0.04247080907225609,
- -0.06938663870096207,
- -0.0389641709625721,
- -0.024182744324207306,
- -0.013862797990441322,
- -0.009740445762872696,
- -0.009864053688943386,
- -0.033750031143426895,
- 0.02128683589398861,
- -0.05369735136628151,
- 0.0222792886197567,
- -0.05943199619650841,
- -0.0043623968958854675,
- 0.08713147044181824,
- 0.002598086604848504,
- -0.015201784670352936,
- 0.07622775435447693,
- 0.11025143414735794,
- -0.06537073105573654,
- -0.0689956471323967,
- 0.21216127276420593,
- -0.016505826264619827,
- 0.02972361259162426,
- 0.013720229268074036,
- 0.028477082028985023,
- -0.04564446583390236,
- -0.0779615044593811,
- 0.02185046300292015,
- -0.07813768088817596,
- -0.006626111920922995,
- -0.06629984825849533,
- -0.01081160269677639,
- 0.012344326823949814,
- -0.0698254182934761,
- -0.062340714037418365,
- 0.003425909671932459,
- -0.09705433249473572,
- 0.021561719477176666,
- 0.041272230446338654,
- 0.019304905086755753,
- 0.05035996809601784,
- 0.026431741192936897,
- -0.031346336007118225,
- 0.02265162020921707,
- -0.029307110235095024,
- -0.021458184346556664,
- -0.017703630030155182,
- -0.049724601209163666,
- -6.031462983437096e-33,
- 0.0051527912728488445,
- -0.07991321384906769,
- 0.08561254292726517,
- 0.026148756965994835,
- -0.00048308767145499587,
- -0.027600247412919998,
- -0.021411161869764328,
- -0.015148093923926353,
- -0.028012093156576157,
- 0.002300153486430645,
- 0.04007825627923012,
- 0.052340369671583176,
- -0.022826267406344414,
- 0.05634748935699463,
- 0.10908735543489456,
- 0.04246975854039192,
- 0.03698514774441719,
- 0.06538213044404984,
- -0.06668498367071152,
- -0.07722700387239456,
- -0.043552275747060776,
- 0.009443680755794048,
- 0.015075125731527805,
- 0.019593100994825363,
- -0.01870662346482277,
- -0.00013031867274548858,
- -0.02804543450474739,
- -0.04526563361287117,
- -0.03997696191072464,
- 0.04196693003177643,
- -0.008892686106264591,
- 0.002885925117880106,
- 0.016072522848844528,
- 0.005077173002064228,
- 0.0221824049949646,
- 0.04697161912918091,
- -0.011383791454136372,
- -0.0714644342660904,
- 0.04823395237326622,
- -0.05651240423321724,
- 0.04084426537156105,
- 0.0039941612631082535,
- -0.05104750022292137,
- 0.037921831011772156,
- 0.019265448674559593,
- 0.027916982769966125,
- -0.006182981189340353,
- 0.040869906544685364,
- 0.11021697521209717,
- 0.08551226556301117,
- -0.023442333564162254,
- -0.0005796749610453844,
- -0.1779526174068451,
- -0.003867942839860916,
- -0.025070110335946083,
- -0.04874289035797119,
- 0.020479807630181313,
- 0.03704909235239029,
- 0.055575933307409286,
- 0.05691627040505409,
- 0.006995656993240118,
- 0.059954363852739334,
- -0.043793126940727234,
- -0.02361818589270115,
- -0.047034066170454025,
- 0.025060512125492096,
- 0.008751205168664455,
- -0.016455532982945442,
- 0.027946632355451584,
- 0.021366961300373077,
- -0.05989297479391098,
- -0.005177128128707409,
- 0.11481492966413498,
- 0.06489836424589157,
- -0.032088689506053925,
- 0.010675430297851562,
- 0.019191965460777283,
- -0.1270643025636673,
- -0.060222964733839035,
- -0.06048044189810753,
- -0.006234942004084587,
- -0.035352032631635666,
- -0.05447632446885109,
- 0.11145379394292831,
- -0.00851120799779892,
- -0.031426891684532166,
- 0.04835003986954689,
- -0.05229131504893303,
- 0.03459189832210541,
- -0.008040710352361202,
- -0.13885720074176788,
- 0.02381991222500801,
- 0.08807525783777237,
- -0.00893909577280283,
- -0.09509237110614777,
- 3.466491698272647e-33,
- 0.033855095505714417,
- 0.0328403003513813,
- -0.005682836752384901,
- -0.019549427554011345,
- 0.08491368591785431,
- -0.028189511969685555,
- 0.007670991122722626,
- -0.02381378784775734,
- 0.03141279146075249,
- 0.06459541618824005,
- -0.010634778998792171,
- -0.0034373945090919733,
- 0.05297180265188217,
- -0.038277819752693176,
- 0.034011464565992355,
- 0.02246999181807041,
- 0.025718003511428833,
- -0.033392976969480515,
- -0.06010463461279869,
- -0.011206945404410362,
- -0.07109248638153076,
- -0.0002079019759548828,
- -0.010532806627452374,
- 0.016745902597904205,
- -0.02912750467658043,
- 0.015340571291744709,
- -0.013669322244822979,
- -0.06424169987440109,
- 0.032713327556848526,
- 0.022079546004533768,
- 0.07763322442770004,
- -0.02843436226248741,
- 0.01578882336616516,
- 0.07244642823934555,
- -0.01702679507434368,
- 0.07707010209560394,
- 0.05382860079407692,
- 0.09070485830307007,
- -0.04193636402487755,
- 0.02287273108959198,
- 0.07344183325767517,
- 0.013325775973498821,
- 0.05036891996860504,
- 0.051364362239837646,
- -0.026234641671180725,
- -0.0745859146118164,
- -0.03359826281666756,
- 0.08117643743753433,
- 0.06843074411153793,
- 0.09794288873672485,
- -0.04594969004392624,
- 0.02109632082283497,
- -0.0668536126613617,
- -0.04932016134262085,
- 0.02416175790131092,
- 0.05175401642918587,
- -0.06510534137487411,
- 0.008822179399430752,
- 0.07775340229272842,
- 0.017944516614079475,
- -0.09100907295942307,
- 0.041681189090013504,
- -0.012947356328368187,
- 0.0664750337600708,
- 0.052493248134851456,
- -0.028595037758350372,
- -0.07773783802986145,
- -0.03024861216545105,
- -0.05397168919444084,
- -0.04628308489918709,
- -0.01817278377711773,
- -0.00911631342023611,
- -0.06453748047351837,
- -0.057513121515512466,
- -0.06007393077015877,
- -0.06972108781337738,
- -0.08804063498973846,
- 0.00881313718855381,
- -0.007643503602594137,
- 0.011437752284109592,
- -0.03455379605293274,
- -0.014060870744287968,
- 0.015127511695027351,
- -0.0018092109821736813,
- -0.011796515434980392,
- 0.009978373534977436,
- 0.06882728636264801,
- 0.060248956084251404,
- 0.0884237140417099,
- 0.03828367590904236,
- 0.013207809999585152,
- -0.0439002700150013,
- 0.08502619713544846,
- 0.07377234101295471,
- -0.006622866727411747,
- -1.373777092084083e-8,
- -0.08466295897960663,
- -0.0328931026160717,
- 0.0313415490090847,
- 0.023929715156555176,
- 0.06266312301158905,
- 0.007131773978471756,
- -0.005206518340855837,
- 0.04716916009783745,
- 0.055930353701114655,
- 0.06272205710411072,
- 0.05797330662608147,
- -0.03778752312064171,
- -0.0024470400530844927,
- 0.04687240719795227,
- 0.14640910923480988,
- -0.013068166561424732,
- -0.002336087403818965,
- 0.07427622377872467,
- 0.0031525958329439163,
- 0.038055405020713806,
- -0.05679613724350929,
- -0.03619186207652092,
- 0.0359104722738266,
- -0.022320827469229698,
- -0.026096701622009277,
- 0.01087377779185772,
- -0.03103552758693695,
- 0.025922873988747597,
- 0.03856433928012848,
- 0.1001962199807167,
- 0.044612787663936615,
- 0.010878212749958038,
- 0.04738030210137367,
- -0.09777362644672394,
- 0.06680333614349365,
- -0.004783991724252701,
- -0.06054666265845299,
- -0.04060933738946915,
- -0.026847101747989655,
- 0.0268191397190094,
- -0.0004789220402017236,
- -0.045586228370666504,
- 0.014259587973356247,
- 0.0672934427857399,
- 0.04122835025191307,
- -0.05045350641012192,
- -0.04882083460688591,
- -0.04716217890381813,
- -0.018385110422968864,
- -0.05703386291861534,
- -0.051556289196014404,
- 0.025617919862270355,
- 0.053178828209638596,
- -0.07389339059591293,
- 0.04900514334440231,
- 0.0536525696516037,
- 0.009049157612025738,
- -0.017158137634396553,
- 0.0334007628262043,
- -0.006157798692584038,
- 0.1075998991727829,
- -0.01314326748251915,
- 0.0390116311609745,
- 0.10756796598434448
- ]
- },
- {
- "keyword": "array",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.11333632469177246,
- 0.07059863954782486,
- -0.07348078489303589,
- 0.014613010920584202,
- -0.13182426989078522,
- -0.02936350367963314,
- 0.14144936203956604,
- -0.03766374662518501,
- 0.022714918479323387,
- -0.08057460933923721,
- -0.02304130606353283,
- 0.018212560564279556,
- 0.012227742932736874,
- -0.014427010901272297,
- -0.04925061762332916,
- 0.05771082639694214,
- -0.12211882323026657,
- -0.03790397197008133,
- -0.004393687471747398,
- -0.04027755185961723,
- -0.010158899240195751,
- -0.026544872671365738,
- -0.1376132071018219,
- 0.033326830714941025,
- -0.02595488540828228,
- 0.14714977145195007,
- -0.010096919722855091,
- 0.028180159628391266,
- -0.0174848772585392,
- 0.006835532374680042,
- -0.02360670268535614,
- -0.012503531761467457,
- 0.04573110118508339,
- -0.01655171997845173,
- -0.09068561345338821,
- -0.04575584828853607,
- -0.05842477083206177,
- 0.008733692578971386,
- 0.029663264751434326,
- 0.009786143898963928,
- -0.03323526307940483,
- -0.04943596199154854,
- -0.02953985519707203,
- 0.012259935960173607,
- -0.004899541847407818,
- -0.0024282631929963827,
- -0.027576470747590065,
- 0.00019586372945923358,
- 0.050198107957839966,
- -0.006367237772792578,
- -0.07340934872627258,
- -0.006165069527924061,
- -0.004952776245772839,
- 0.02321150153875351,
- 0.06842989474534988,
- -0.05717158690094948,
- -0.08925707638263702,
- 0.005069599486887455,
- 0.05162078142166138,
- -0.016654400154948235,
- 0.0475691519677639,
- -0.016248615458607674,
- -0.02092096395790577,
- 0.02523333951830864,
- -0.0035183995496481657,
- -0.06952731311321259,
- 0.03585578501224518,
- 0.0318913571536541,
- 0.057932477444410324,
- -0.033793192356824875,
- -0.02758188359439373,
- 0.05854509398341179,
- 0.10020015388727188,
- 0.017375027760863304,
- 0.012145891785621643,
- -0.019704189151525497,
- 0.0187789648771286,
- -0.11165636777877808,
- 0.0815599337220192,
- 0.048516444861888885,
- -0.05802071839570999,
- 0.01081013958901167,
- -0.006414187606424093,
- -0.01863936334848404,
- -0.019333619624376297,
- 0.042962003499269485,
- -0.07099834084510803,
- 0.0624210424721241,
- 0.013087710365653038,
- -0.05924620479345322,
- -0.03123805858194828,
- 0.0053405603393912315,
- 0.05212828516960144,
- 0.05474628880620003,
- 0.02042629010975361,
- -0.0345136895775795,
- 0.10778702050447464,
- -0.0922383964061737,
- -0.10101804882287979,
- 0.20786236226558685,
- -0.014910702593624592,
- 0.03200327232480049,
- -0.0008240817696787417,
- 0.005530353635549545,
- -0.0682872012257576,
- -0.016500812023878098,
- 0.03710242360830307,
- -0.04311705753207207,
- -0.1130836009979248,
- 0.02467617392539978,
- -0.02926885522902012,
- 0.023841314017772675,
- 0.04175489768385887,
- 0.029886923730373383,
- -0.029638972133398056,
- -0.06549485772848129,
- -0.03790350630879402,
- 0.042955800890922546,
- -0.023130500689148903,
- 0.039513085037469864,
- 0.0984625443816185,
- 0.035492248833179474,
- 0.025988664478063583,
- 0.03408660739660263,
- -0.016110338270664215,
- -0.02682485431432724,
- -0.04326023906469345,
- -4.999392535068559e-33,
- 0.029445085674524307,
- -0.0031946708913892508,
- 0.02156941220164299,
- 0.008911008015275002,
- -0.03539692610502243,
- -0.023780852556228638,
- -0.017558276653289795,
- 0.0492188036441803,
- -0.007355637848377228,
- 0.028896700590848923,
- -0.000426753016654402,
- 0.040256548672914505,
- 0.05657825991511345,
- 0.07507294416427612,
- 0.05438997223973274,
- 0.02226126752793789,
- 0.11734480410814285,
- 0.08021192997694016,
- 0.013397804461419582,
- -0.08550360053777695,
- -0.0714394822716713,
- 0.02923606149852276,
- 0.00821450725197792,
- 0.005662781186401844,
- -0.0057410914450883865,
- -0.04800994321703911,
- -0.0019145330879837275,
- -0.046315789222717285,
- -0.012330613099038601,
- 0.008376708254218102,
- 0.05280503258109093,
- 0.06796262413263321,
- -0.013781584799289703,
- -0.058993127197027206,
- 0.12302917242050171,
- -0.0066750627011060715,
- -0.014608709141612053,
- 0.04816175252199173,
- 0.003802143968641758,
- -0.018300851806998253,
- 0.003136750776320696,
- -0.02325141616165638,
- 0.08967158943414688,
- 0.008439789526164532,
- 0.031000206246972084,
- -0.021877869963645935,
- 0.009901240468025208,
- 0.01541641540825367,
- 0.018799688667058945,
- 0.025916915386915207,
- -0.08005586266517639,
- -0.027114208787679672,
- -0.061258360743522644,
- 0.0658964216709137,
- -0.021010709926486015,
- -0.03773844614624977,
- 0.04837248846888542,
- 0.07116128504276276,
- -0.04604572802782059,
- -0.025800710543990135,
- 0.0038995929062366486,
- 0.012562183663249016,
- 0.014121216721832752,
- 0.04730025678873062,
- -0.0731644406914711,
- -0.027264365926384926,
- -0.029478346928954124,
- 0.03083711490035057,
- 0.0835908055305481,
- 0.0763857290148735,
- -0.052278071641922,
- 0.010332241654396057,
- 0.035508252680301666,
- 0.02987949177622795,
- -0.054310400038957596,
- -0.05396289378404617,
- 0.054013051092624664,
- -0.03977646306157112,
- -0.041084107011556625,
- -0.08813781291246414,
- -0.05871586129069328,
- -0.03388218954205513,
- -0.034531474113464355,
- -0.01565583050251007,
- 0.01800687052309513,
- 0.04963121935725212,
- -0.045230623334646225,
- -0.05737924575805664,
- 0.0470450259745121,
- -0.019946541637182236,
- -0.09778398275375366,
- 0.024963947013020515,
- -0.016504855826497078,
- -0.12218049168586731,
- -0.003405085066333413,
- 2.7311615744577498e-33,
- 0.056541092693805695,
- 0.03498081862926483,
- -0.022546885535120964,
- -0.02429055981338024,
- -0.018404802307486534,
- -0.041328202933073044,
- 0.11374947428703308,
- -0.0036779369693249464,
- -0.03235244005918503,
- 0.03371954709291458,
- -0.039017267525196075,
- 0.022645380347967148,
- 0.009001458995044231,
- -0.020859653130173683,
- 0.10292817652225494,
- 0.012095102109014988,
- 0.026486601680517197,
- -0.029288368299603462,
- 0.0606110654771328,
- -0.07307261973619461,
- -0.05747821927070618,
- -0.012530023232102394,
- 0.02782810665667057,
- -0.040762849152088165,
- -0.0851411446928978,
- -0.030262909829616547,
- 0.05833861976861954,
- -0.015435738489031792,
- -0.0026255007833242416,
- -0.0036297559272497892,
- 0.021947002038359642,
- -0.07264724373817444,
- 0.020601151511073112,
- 0.0813855454325676,
- 0.07046174257993698,
- 0.04285423085093498,
- 0.0676669254899025,
- -0.017971089109778404,
- -0.0064098346047103405,
- -0.07845137268304825,
- 0.012277759611606598,
- -0.0056483144871890545,
- 0.0683518722653389,
- 0.05617009103298187,
- 0.023253874853253365,
- -0.028978584334254265,
- 0.05596756562590599,
- 0.07302834838628769,
- 0.008753926493227482,
- -0.08496459573507309,
- -0.05661233514547348,
- -0.07843074202537537,
- -0.022264380007982254,
- -0.06550166010856628,
- 0.06850770115852356,
- -0.00391533225774765,
- -0.010783674195408821,
- -0.001026175799779594,
- 0.07263331115245819,
- 0.059726282954216,
- -0.04294737055897713,
- -0.002404147759079933,
- 0.1040334478020668,
- 0.02671024762094021,
- -0.029651375487446785,
- -0.032951753586530685,
- -0.0555250309407711,
- 0.007433416321873665,
- -0.04726681485772133,
- 0.061738576740026474,
- 0.037790656089782715,
- 0.02585679292678833,
- -0.04617499187588692,
- 0.02037435583770275,
- -0.10995170474052429,
- -0.04602277651429176,
- -0.08008595556020737,
- 0.0004758519062306732,
- -0.04952302575111389,
- 0.03218301758170128,
- 0.03616375848650932,
- 0.0407133623957634,
- -0.01729409769177437,
- 0.018188443034887314,
- -0.03791489452123642,
- 0.029698571190238,
- 0.15118218958377838,
- -0.04451410472393036,
- -0.04577895998954773,
- 0.0025502501521259546,
- 0.07044003158807755,
- 0.10210607945919037,
- 0.011597899720072746,
- 0.004605017136782408,
- -0.024787679314613342,
- -1.1766355889619717e-8,
- -0.0004664553562179208,
- -0.014947271905839443,
- -0.04436727985739708,
- 0.009380258619785309,
- 0.03854544460773468,
- -0.06437191367149353,
- -0.015438335947692394,
- -0.038562025874853134,
- 0.005761532578617334,
- 0.003555407514795661,
- 0.12056136876344681,
- -0.02777227759361267,
- 0.03739078715443611,
- 0.047066085040569305,
- 0.04620053619146347,
- -0.07720628380775452,
- -0.034326646476984024,
- -0.01977868378162384,
- -0.0231633298099041,
- 0.030431177467107773,
- 0.007409500423818827,
- -0.0013941205106675625,
- -0.02387404441833496,
- -0.057172346860170364,
- 0.0788765624165535,
- -0.046729348599910736,
- -0.042886655777692795,
- 0.008795863017439842,
- 0.030223671346902847,
- 0.07733800262212753,
- 0.12547707557678223,
- 0.047152966260910034,
- 0.07222218066453934,
- -0.015274813398718834,
- 0.026229171082377434,
- 0.016892092302441597,
- 0.004227789118885994,
- 0.00795853603631258,
- 0.00885511003434658,
- -0.024918941780924797,
- -0.018688883632421494,
- 0.00932414922863245,
- -0.006420591846108437,
- -0.021812014281749725,
- -0.00008386063564103097,
- -0.06852465867996216,
- 0.0006385009037330747,
- 0.006370082031935453,
- 0.01600414700806141,
- -0.11633781343698502,
- -0.010336793959140778,
- 0.007044327910989523,
- 0.0330086313188076,
- -0.007957647554576397,
- -0.007333238609135151,
- -0.08823410421609879,
- -0.03149032965302467,
- 0.02013676054775715,
- 0.0905596986413002,
- 0.08527317643165588,
- 0.03172604739665985,
- 0.0019248644821345806,
- -0.04216396063566208,
- -0.04471449926495552
- ]
- },
- {
- "keyword": "series",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.05485061556100845,
- 0.04380296170711517,
- 0.005773461889475584,
- 0.0705655962228775,
- -0.12363211065530777,
- 0.011281903833150864,
- 0.07556603848934174,
- -0.0452793687582016,
- 0.11667881160974503,
- -0.02996860072016716,
- -0.0543125681579113,
- -0.04520166665315628,
- -0.0037654198240488768,
- 0.014759231358766556,
- -0.14167524874210358,
- -0.04752073809504509,
- -0.023381361737847328,
- -0.05063251778483391,
- 0.04156408831477165,
- -0.004434811882674694,
- 0.01538904756307602,
- 0.018519198521971703,
- -0.062475863844156265,
- 0.05426603928208351,
- 0.052299100905656815,
- -0.00321157556027174,
- 0.002696650568395853,
- 0.056865449994802475,
- 0.008351797237992287,
- -0.06716683506965637,
- 0.029006412252783775,
- 0.05566609650850296,
- 0.0732235535979271,
- -0.03215485438704491,
- -0.030350489541888237,
- -0.022698068991303444,
- -0.034134361892938614,
- -0.002808877034112811,
- -0.014078437350690365,
- 0.003935984801501036,
- -0.05627835914492607,
- -0.07588756084442139,
- 0.016581110656261444,
- -0.03692510351538658,
- -0.011604920960962772,
- -0.0258253775537014,
- -0.048350147902965546,
- 0.0021625207737088203,
- 0.05438913777470589,
- 0.016151471063494682,
- 0.002275388455018401,
- 0.03852342441678047,
- -0.09913128614425659,
- 0.03281958028674126,
- 0.05962042883038521,
- -0.020897377282381058,
- -0.09618600457906723,
- 0.0065927631221711636,
- 0.0102663803845644,
- -0.05477137863636017,
- 0.04737835004925728,
- -0.04089164361357689,
- -0.04628652706742287,
- 0.002417428884655237,
- 0.042780544608831406,
- 0.013639293611049652,
- 0.11670248955488205,
- 0.08523183315992355,
- 0.02177564799785614,
- -0.006005973555147648,
- -0.02511068992316723,
- 0.03438005596399307,
- 0.033639710396528244,
- 0.02749553509056568,
- 0.03219958394765854,
- 0.039129097014665604,
- 0.0016569087747484446,
- -0.09963284432888031,
- 0.032709233462810516,
- 0.009168651886284351,
- -0.020497838035225868,
- 0.021224940195679665,
- -0.04094306379556656,
- 0.003753089578822255,
- -0.03679795563220978,
- 0.020930394530296326,
- 0.03291766718029976,
- -0.026815008372068405,
- 0.003935982007533312,
- 0.03260281682014465,
- -0.00033984071342274547,
- -0.027565499767661095,
- 0.11458081752061844,
- -0.023128705099225044,
- -0.09163516759872437,
- 0.0094830971211195,
- 0.03945450484752655,
- -0.041552554816007614,
- 0.043462514877319336,
- 0.24809475243091583,
- 0.08931179344654083,
- -0.013430239632725716,
- -0.03130129724740982,
- -0.11286022514104843,
- 0.04925627261400223,
- 0.02426283247768879,
- 0.012156220152974129,
- -0.06239405646920204,
- 0.04966791346669197,
- 0.019617415964603424,
- -0.05317893624305725,
- -0.00897367112338543,
- -0.000401077326387167,
- -0.019995542243123055,
- -0.01220608688890934,
- -0.06836660206317902,
- -0.004039773717522621,
- -0.009582579135894775,
- -0.013525296933948994,
- 0.007183530367910862,
- 0.10711710900068283,
- 0.012857434339821339,
- -0.001632054103538394,
- 0.010074291378259659,
- -0.02550271339714527,
- -0.06154344230890274,
- 0.0071370601654052734,
- -4.518565754414318e-33,
- -0.02992403879761696,
- -0.09059072285890579,
- 0.03327464684844017,
- 0.09252370893955231,
- -0.03742625191807747,
- 0.022981707006692886,
- 0.00313755520619452,
- 0.036607496440410614,
- -0.05242479592561722,
- 0.06409478187561035,
- -0.026916852220892906,
- 0.11796341836452484,
- -0.037663280963897705,
- -0.06400947272777557,
- 0.09331465512514114,
- -0.04758625477552414,
- 0.13914237916469574,
- -0.04645741730928421,
- -0.01423889584839344,
- 0.0035882845986634493,
- -0.07195497304201126,
- -0.0020860752556473017,
- 0.06707136332988739,
- 0.05745869129896164,
- -0.025473130866885185,
- 0.013959184288978577,
- 0.03524387627840042,
- -0.05511616915464401,
- -0.028721775859594345,
- 0.0307313222438097,
- 0.0361558236181736,
- 0.008306807838380337,
- -0.013951032422482967,
- -0.022529788315296173,
- -0.02992171049118042,
- 0.04084571823477745,
- 0.10091453790664673,
- -0.05685693025588989,
- 0.06655722856521606,
- 0.04312256723642349,
- -0.01126809511333704,
- 0.03555319830775261,
- -0.09103906154632568,
- -0.022055091336369514,
- 0.006648258306086063,
- 0.042765554040670395,
- 0.09558197110891342,
- -0.010607020929455757,
- 0.03302500769495964,
- 0.05226404219865799,
- -0.027538897469639778,
- -0.08681866526603699,
- -0.06006412208080292,
- -0.00619017006829381,
- 0.00822239089757204,
- 0.02018059603869915,
- 0.01113139744848013,
- -0.0019528153352439404,
- 0.005601606797426939,
- -0.013610302470624447,
- -0.017695298418402672,
- 0.0204741433262825,
- -0.0243037361651659,
- 0.03614875674247742,
- -0.0640561655163765,
- -0.029111593961715698,
- 0.022852445021271706,
- 0.009077395312488079,
- -0.08708631247282028,
- -0.02769586071372032,
- -0.013479203917086124,
- 0.020581165328621864,
- 0.027020607143640518,
- 0.023910464718937874,
- 0.04472881928086281,
- -0.03764200583100319,
- 0.018960265442728996,
- 0.07824736833572388,
- -0.15003225207328796,
- 0.030645718798041344,
- -0.07899566739797592,
- -0.03224135562777519,
- 0.05501081421971321,
- 0.01223781332373619,
- -0.05078547075390816,
- 0.013706127181649208,
- -0.02149217203259468,
- 0.0637134239077568,
- 0.012517773546278477,
- -0.02911105565726757,
- 0.002822290640324354,
- -0.020164882764220238,
- 0.06606583297252655,
- 0.042503852397203445,
- -0.06670469045639038,
- 3.0810019175739093e-33,
- -0.00996333546936512,
- 0.001527141430415213,
- -0.05588645115494728,
- -0.019223280251026154,
- 0.0966329351067543,
- -0.003984479699283838,
- -0.002924945903941989,
- 0.016012810170650482,
- 0.007069447077810764,
- 0.06139839440584183,
- 0.012200555764138699,
- -0.039101943373680115,
- 0.03239966183900833,
- 0.017112500965595245,
- 0.045073144137859344,
- -0.015787072479724884,
- 0.07196827232837677,
- -0.07623688131570816,
- -0.022279612720012665,
- -0.030183114111423492,
- -0.06975127756595612,
- -0.03287314623594284,
- 0.0019362468738108873,
- -0.03128951042890549,
- -0.013030262663960457,
- 0.039068832993507385,
- 0.058700963854789734,
- 0.0030819103121757507,
- -0.04224805533885956,
- 0.04768040403723717,
- 0.07894517481327057,
- -0.05182686075568199,
- 0.09238126873970032,
- 0.0344417430460453,
- -0.03594255447387695,
- 0.10585538297891617,
- 0.08076822757720947,
- -0.000008602291927672923,
- -0.08919881284236908,
- 0.003299847710877657,
- 0.0540083609521389,
- 0.03905520215630531,
- 0.0756201446056366,
- 0.08164409548044205,
- -0.016037113964557648,
- -0.012703455053269863,
- 0.01959303207695484,
- 0.053397249430418015,
- 0.007971781305968761,
- 0.09261635690927505,
- -0.03325982391834259,
- -0.005493958946317434,
- -0.03798798471689224,
- -0.03185229003429413,
- -0.03966459259390831,
- -0.013128061778843403,
- 0.012461589649319649,
- 0.013571511022746563,
- -0.043481577187776566,
- -0.03997676447033882,
- -0.08440793305635452,
- -0.0070283724926412106,
- -0.0355960838496685,
- 0.008304103277623653,
- -0.03270363807678223,
- 0.025113975629210472,
- -0.037424471229314804,
- -0.0911063551902771,
- 0.02582479640841484,
- -0.03543628379702568,
- -0.04613766819238663,
- 0.08887085318565369,
- -0.010613705962896347,
- -0.017146943137049675,
- 0.012592094950377941,
- -0.06346495449542999,
- -0.10904913395643234,
- -0.020646635442972183,
- -0.02507493644952774,
- -0.024431750178337097,
- -0.1141275092959404,
- -0.014522446319460869,
- -0.010776249691843987,
- 0.031830109655857086,
- -0.022166552022099495,
- 0.06676766276359558,
- 0.08978632837533951,
- 0.03831249475479126,
- -0.015136165544390678,
- -0.009158068336546421,
- 0.03219042718410492,
- -0.016346875578165054,
- 0.04300219565629959,
- -0.11082356423139572,
- 0.006940873805433512,
- -1.1987885351061323e-8,
- -0.03452504798769951,
- -0.010760802775621414,
- 0.04202067106962204,
- -0.026499854400753975,
- 0.07418455183506012,
- 0.036990951746702194,
- -0.06757307797670364,
- 0.03165939077734947,
- -0.010295663960278034,
- 0.06736738234758377,
- 0.05154973641037941,
- 0.0006225047982297838,
- -0.018430300056934357,
- 0.04707556590437889,
- 0.06888573616743088,
- 0.03859185054898262,
- -0.05138089880347252,
- -0.02142786607146263,
- -0.05780000239610672,
- -0.002636656863614917,
- -0.02453252114355564,
- 0.005311442539095879,
- -0.007785521447658539,
- -0.034682970494031906,
- -0.011710582301020622,
- 0.019523994997143745,
- -0.06602095812559128,
- 0.08539209514856339,
- -0.0569891482591629,
- -0.020431602373719215,
- 0.09811289608478546,
- 0.09588105976581573,
- -0.05279975384473801,
- -0.006263659335672855,
- -0.053354837000370026,
- -0.03161782771348953,
- -0.016213076189160347,
- 0.05264195427298546,
- 0.037206146866083145,
- 0.04737062007188797,
- -0.03709055483341217,
- 0.04879191517829895,
- 0.03884900361299515,
- 0.005972765851765871,
- -0.09405496716499329,
- -0.10064198076725006,
- -0.003025839803740382,
- -0.022686321288347244,
- 0.01914871484041214,
- -0.10350760817527771,
- 0.03149046376347542,
- 0.02774875797331333,
- 0.0047495486214756966,
- 0.0016839252784848213,
- 0.10328809916973114,
- 0.004497728310525417,
- 0.017666084691882133,
- 0.03041176125407219,
- -0.07793793827295303,
- 0.07474111765623093,
- 0.12428227066993713,
- -0.051042333245277405,
- 0.010176938027143478,
- -0.002010980388149619
- ]
- },
- {
- "keyword": "dataset",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.011841228231787682,
- -0.03683340176939964,
- -0.021616650745272636,
- -0.0014347813557833433,
- -0.026187719777226448,
- -0.0010221228003501892,
- 0.06665961444377899,
- -0.014550083316862583,
- -0.0234534814953804,
- -0.01790354587137699,
- 0.11273326724767685,
- -0.06748924404382706,
- 0.022509565576910973,
- -0.08656337857246399,
- -0.08787135779857635,
- 0.025423983111977577,
- 0.04805999994277954,
- -0.002387581393122673,
- -0.0832643210887909,
- -0.04773933067917824,
- -0.06724658608436584,
- 0.0011074348585680127,
- 0.004144712351262569,
- 0.019371051341295242,
- 0.04154427349567413,
- 0.05342800170183182,
- 0.05046677961945534,
- 0.025868864730000496,
- 0.01591729000210762,
- -0.06445087492465973,
- -0.00697078974917531,
- 0.017605282366275787,
- 0.07671073824167252,
- 0.048590268939733505,
- -0.021062351763248444,
- 0.0019598372746258974,
- 0.017079688608646393,
- 0.06296391040086746,
- -0.06140507012605667,
- 0.015051538124680519,
- -0.001071794773451984,
- -0.01428269874304533,
- 0.047538138926029205,
- 0.020968206226825714,
- 0.00001578519368194975,
- 0.024102063849568367,
- -0.005477512255311012,
- -0.012489437125623226,
- 0.06514196842908859,
- 0.05159641057252884,
- -0.059271086007356644,
- 0.0033817726653069258,
- -0.04162526875734329,
- 0.08682004362344742,
- 0.006083368323743343,
- -0.05970486253499985,
- -0.020226307213306427,
- 0.03638632968068123,
- 0.005934982560575008,
- -0.01520699542015791,
- 0.020457131788134575,
- -0.0755644366145134,
- -0.04895167052745819,
- 0.036835066974163055,
- 0.04266514256596565,
- 0.010213757865130901,
- -0.019721580669283867,
- 0.0366567000746727,
- 0.005892313551157713,
- -0.12591497600078583,
- -0.06521032005548477,
- 0.03504488617181778,
- 0.002353057498112321,
- 0.048762865364551544,
- 0.0008408268913626671,
- -0.000014318737157736905,
- 0.006153908092528582,
- -0.0218534953892231,
- 0.10446623712778091,
- -0.0986766368150711,
- -0.03146118298172951,
- -0.02236897312104702,
- -0.00811927579343319,
- 0.08273705095052719,
- 0.0644439309835434,
- -0.06892259418964386,
- 0.005272761452943087,
- 0.07477900385856628,
- -0.06028912216424942,
- -0.0018843698780983686,
- -0.04760173708200455,
- 0.060163259506225586,
- 0.07854389399290085,
- 0.021010249853134155,
- -0.09869233518838882,
- 0.07070937007665634,
- 0.047671034932136536,
- -0.042666759341955185,
- 0.06565863639116287,
- 0.13487783074378967,
- -0.038902368396520615,
- 0.06037873029708862,
- -0.010100419633090496,
- 0.06186326593160629,
- -0.03465106338262558,
- -0.09747672826051712,
- -0.0035044776741415262,
- -0.024809395894408226,
- 0.03520295023918152,
- -0.04411311075091362,
- -0.0043684751726686954,
- -0.03412216901779175,
- -0.09379921853542328,
- -0.09717872738838196,
- 0.045283179730176926,
- -0.08669017255306244,
- -0.08669928461313248,
- 0.028569843620061874,
- -0.0943135917186737,
- 0.007489481009542942,
- -0.07043570280075073,
- -0.01878764107823372,
- 0.014196922071278095,
- -0.02427494525909424,
- 0.003205589484423399,
- -0.025946643203496933,
- -0.062494583427906036,
- -9.535006814660638e-34,
- 0.04939975216984749,
- -0.08797609806060791,
- 0.007608405314385891,
- -0.03458794578909874,
- -0.002112878253683448,
- -0.07919410616159439,
- -0.019421657547354698,
- -0.06822983175516129,
- -0.024711716920137405,
- 0.020016727969050407,
- -0.09065696597099304,
- 0.031251415610313416,
- -0.051362570375204086,
- 0.053477693349123,
- 0.07794596254825592,
- 0.013264046050608158,
- 0.02113107033073902,
- 0.04708147048950195,
- -0.03575382009148598,
- 0.02247151918709278,
- 0.025631414726376534,
- 0.016916366294026375,
- 0.07470754534006119,
- -0.037924669682979584,
- 0.035356421023607254,
- -0.01616736687719822,
- -0.022420573979616165,
- 0.01082644984126091,
- 0.008975005708634853,
- 0.045025475323200226,
- -0.025768369436264038,
- 0.06829029321670532,
- -0.016697071492671967,
- 0.029060687869787216,
- 0.01819624751806259,
- -0.044099800288677216,
- 0.00637808395549655,
- -0.019247598946094513,
- 0.1115965023636818,
- 0.0012220937060192227,
- 0.07743242383003235,
- -0.00013075619062874466,
- 0.06993644684553146,
- 0.0030687409453094006,
- -0.025927534326910973,
- 0.026750782504677773,
- 0.07631469517946243,
- 0.07155709713697433,
- 0.03894476592540741,
- 0.05772404745221138,
- -0.017920298501849174,
- -0.03513023629784584,
- -0.04567130655050278,
- 0.013218129053711891,
- -0.023914219811558723,
- 0.07311629503965378,
- -0.023942086845636368,
- -0.024510230869054794,
- 0.03397878631949425,
- 0.031084710732102394,
- -0.054763488471508026,
- 0.0793365091085434,
- 0.04040924832224846,
- 0.037544358521699905,
- -0.04986920207738876,
- -0.0004056010802742094,
- -0.020255818963050842,
- -0.06869766116142273,
- 0.043041158467531204,
- 0.02440762147307396,
- 0.008182992227375507,
- -0.011806310154497623,
- 0.023852620273828506,
- 0.048719923943281174,
- 0.044780898839235306,
- 0.038894060999155045,
- -0.007151321973651648,
- 0.06186218559741974,
- -0.17761917412281036,
- 0.040383175015449524,
- -0.03248991072177887,
- -0.031881898641586304,
- -0.05359474942088127,
- -0.014464852400124073,
- -0.03217673674225807,
- 0.07062466442584991,
- 0.01426547858864069,
- -0.049571454524993896,
- 0.0005951906787231565,
- -0.01037939079105854,
- -0.15397389233112335,
- 0.024365216493606567,
- -0.024021292105317116,
- -0.02432689443230629,
- -0.05392587184906006,
- 1.0534351500302283e-33,
- -0.02684735506772995,
- 0.06186211109161377,
- -0.029476191848516464,
- 0.06836441159248352,
- 0.032075997442007065,
- 0.024760203436017036,
- -0.01990140974521637,
- 0.022510366514325142,
- 0.03668268397450447,
- 0.11683370172977448,
- 0.05410068854689598,
- -0.03881999850273132,
- 0.038999080657958984,
- -0.08218605071306229,
- -0.012683400884270668,
- 0.05394583195447922,
- 0.015112307853996754,
- -0.04392823949456215,
- -0.038180410861968994,
- -0.04941076412796974,
- -0.07361894100904465,
- -0.03324796259403229,
- -0.08739305287599564,
- -0.009476645849645138,
- -0.03383736312389374,
- 0.003887567203491926,
- -0.03528009355068207,
- 0.02436661534011364,
- -0.03357771784067154,
- -0.022565672174096107,
- -0.028237517923116684,
- -0.09696562588214874,
- -0.050733525305986404,
- -0.029036369174718857,
- -0.10007627308368683,
- 0.010648209601640701,
- 0.1276548206806183,
- -0.03457742556929588,
- -0.03801986202597618,
- 0.021295346319675446,
- 0.05764276161789894,
- 0.060212910175323486,
- -0.08669287711381912,
- 0.1342272162437439,
- -0.018300700932741165,
- -0.05835724622011185,
- -0.047300759702920914,
- 0.0866951197385788,
- 0.0411730520427227,
- 0.0017529136966913939,
- -0.04628368839621544,
- 0.014848519116640091,
- 0.05472663789987564,
- -0.009374893270432949,
- 0.07919134944677353,
- -0.05413544178009033,
- 0.05647889897227287,
- 0.03373036906123161,
- -0.029309822246432304,
- 0.028334733098745346,
- -0.03582770749926567,
- -0.05321897193789482,
- -0.033002015203237534,
- 0.12187479436397552,
- -0.004837627988308668,
- -0.009719190187752247,
- -0.038012754172086716,
- -0.07517571747303009,
- -0.06215384230017662,
- 0.033157821744680405,
- 0.05899824574589729,
- -0.010680727660655975,
- 0.039667122066020966,
- -0.033483535051345825,
- -0.08065590262413025,
- -0.0210967268794775,
- -0.09514525532722473,
- -0.003085121978074312,
- 0.03322316333651543,
- 0.05904504656791687,
- 0.06728661805391312,
- -0.0657147690653801,
- 0.051913388073444366,
- 0.10984975099563599,
- 0.03027270920574665,
- 0.08539748191833496,
- 0.0714627131819725,
- -0.036341749131679535,
- -0.017132766544818878,
- 0.005768141709268093,
- -0.041407715529203415,
- -0.0358210988342762,
- -0.07107029855251312,
- 0.07914964109659195,
- 0.000768942991271615,
- -1.247707093199324e-8,
- -0.007178158964961767,
- -0.01832222379744053,
- 0.06868041306734085,
- -0.01192460861057043,
- 0.013351458124816418,
- 0.010757068172097206,
- -0.017333028838038445,
- 0.14126630127429962,
- 0.0027067838236689568,
- 0.0586891807615757,
- 0.0999603345990181,
- -0.0067952838726341724,
- -0.0374637246131897,
- 0.018824255093932152,
- -0.048062074929475784,
- -0.03553839027881622,
- 0.05626247823238373,
- 0.037424568086862564,
- -0.01693614572286606,
- 0.08226650953292847,
- 0.06066778302192688,
- 0.024711983278393745,
- 0.012161568738520145,
- -0.016523804515600204,
- 0.12608103454113007,
- -0.02529825270175934,
- 0.004530665464699268,
- 0.08284643292427063,
- -0.03565588966012001,
- 0.0250625591725111,
- -0.006269966717809439,
- -0.007001121994107962,
- 0.07037709653377533,
- -0.09173660725355148,
- 0.05005396157503128,
- -0.0004789606318809092,
- -0.02970946580171585,
- 0.014564412645995617,
- -0.05522745102643967,
- -0.05971263721585274,
- -0.003747473703697324,
- -0.0030832565389573574,
- -0.029933489859104156,
- -0.030380267649888992,
- 0.011378825642168522,
- 0.038916684687137604,
- 0.07022500038146973,
- -0.03566134348511696,
- 0.08843864500522614,
- 0.02602214924991131,
- -0.015018623322248459,
- 0.027805916965007782,
- 0.02162087894976139,
- 0.019149761646986008,
- 0.046479638665914536,
- 0.049682196229696274,
- 0.010118462145328522,
- -0.02633586898446083,
- 0.019055120646953583,
- 0.0187285915017128,
- -0.013578783720731735,
- -0.0014065697323530912,
- -0.05614829063415527,
- -0.009239760227501392
- ]
- },
- {
- "keyword": "data",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.03345324099063873,
- 0.08248463273048401,
- -0.024233784526586533,
- 0.02963411994278431,
- -0.05845005437731743,
- -0.016189448535442352,
- 0.1092028096318245,
- -0.03019382804632187,
- 0.01494411751627922,
- -0.017529042437672615,
- 0.1035151258111,
- 0.025160228833556175,
- 0.03177594020962715,
- -0.023555081337690353,
- -0.04662735387682915,
- 0.03532039001584053,
- 0.0065712593495845795,
- -0.029264938086271286,
- -0.11043380945920944,
- -0.0724056214094162,
- -0.009168259799480438,
- -0.00007216302765300497,
- -0.06020583212375641,
- 0.03024030290544033,
- 0.013641398400068283,
- 0.1360996812582016,
- -0.0240575410425663,
- 0.013650783337652683,
- 0.03770563378930092,
- -0.10126376152038574,
- 0.0019703209400177,
- -0.003087224904447794,
- 0.07595884799957275,
- 0.023531567305326462,
- -0.036253344267606735,
- -0.045427996665239334,
- 0.01943672075867653,
- 0.06287916749715805,
- -0.04948271065950394,
- 0.01162886805832386,
- 0.015303529798984528,
- -0.049716606736183167,
- 0.00616186298429966,
- 0.009770814329385757,
- -0.007301033474504948,
- 0.020481249317526817,
- 0.013963821344077587,
- -0.013573668897151947,
- -0.0012498664436861873,
- 0.08055941015481949,
- -0.08269994705915451,
- 0.038032665848731995,
- -0.02658143639564514,
- 0.053549669682979584,
- 0.03188558667898178,
- 0.005345627199858427,
- -0.0222652405500412,
- 0.001787280780263245,
- 0.024464795365929604,
- 0.011933872476220131,
- 0.036587294191122055,
- -0.01663907617330551,
- -0.060489170253276825,
- 0.057755377143621445,
- 0.07501161098480225,
- -0.0357782207429409,
- -0.045642342418432236,
- 0.03248431161046028,
- -0.04478665441274643,
- -0.0606064610183239,
- 0.0030597583390772343,
- 0.027298027649521828,
- -0.0009424351737834513,
- 0.02860081009566784,
- 0.05281849205493927,
- -0.06369364261627197,
- -0.05635269731283188,
- -0.0229323897510767,
- 0.0797133520245552,
- -0.04583517089486122,
- 0.0024419985711574554,
- -0.013418730348348618,
- -0.04590514302253723,
- 0.10783655196428299,
- 0.03929463401436806,
- -0.024895165115594864,
- 0.03237141668796539,
- 0.06105080991983414,
- -0.10250252485275269,
- -0.03711753338575363,
- -0.02212595008313656,
- 0.040378637611866,
- 0.007197292055934668,
- 0.06977406144142151,
- -0.07386164367198944,
- 0.07553873211145401,
- -0.0006346970330923796,
- -0.08049390465021133,
- 0.08392549306154251,
- 0.21664269268512726,
- -0.0016809703083708882,
- 0.0634961947798729,
- -0.04930679872632027,
- 0.10986845195293427,
- -0.06981809437274933,
- -0.12852877378463745,
- -0.013802596367895603,
- 0.016360338777303696,
- -0.02392282895743847,
- 0.03836866468191147,
- -0.04049046337604523,
- 0.0068855490535497665,
- -0.09241786599159241,
- -0.053324878215789795,
- 0.051475077867507935,
- -0.11995255947113037,
- -0.10561436414718628,
- 0.03608044609427452,
- -0.08423519879579544,
- -0.007425409741699696,
- 0.010081901215016842,
- -0.059912726283073425,
- -0.03276164457201958,
- 0.03463297337293625,
- -0.008436926640570164,
- -0.08556853234767914,
- -0.01772923953831196,
- -4.73398207370021e-33,
- 0.003818156663328409,
- -0.08755750209093094,
- 0.0622735433280468,
- 0.02290986105799675,
- -0.05863140523433685,
- -0.01356163714081049,
- -0.08092013746500015,
- -0.04196679964661598,
- 0.0073389820754528046,
- 0.09965572506189346,
- -0.0556374229490757,
- 0.026479970663785934,
- -0.012458576820790768,
- 0.013621431775391102,
- 0.0988796129822731,
- 0.029826147481799126,
- -0.018270939588546753,
- 0.05976102873682976,
- -0.019311945885419846,
- -0.023442793637514114,
- 0.016958575695753098,
- 0.02755817212164402,
- 0.041056420654058456,
- 0.032080210745334625,
- 0.058342285454273224,
- 0.0032679112628102303,
- -0.044800713658332825,
- -0.012650836259126663,
- 0.03081512823700905,
- 0.022223718464374542,
- -0.03880223631858826,
- 0.025696057826280594,
- 0.01017085649073124,
- -0.03375639766454697,
- 0.0039327447302639484,
- 0.020310504361987114,
- 0.04712473973631859,
- -0.05125575512647629,
- -0.005209995433688164,
- 0.014612159691751003,
- 0.08223854005336761,
- -0.0036002572160214186,
- 0.031389493495225906,
- -0.007645205594599247,
- -0.055214960128068924,
- 0.009945863857865334,
- 0.04078461602330208,
- -0.002515592845156789,
- -0.006711162626743317,
- 0.013362621888518333,
- 0.011445113457739353,
- 0.016740841791033745,
- -0.09659475088119507,
- -0.009250152856111526,
- -0.023852374404668808,
- 0.05798858776688576,
- -0.03393269330263138,
- -0.03242090344429016,
- -0.037748903036117554,
- 0.038751352578401566,
- -0.03014153428375721,
- -0.004145224113017321,
- 0.04234898090362549,
- -0.02587728016078472,
- -0.04579281806945801,
- 0.019992807880043983,
- -0.018644429743289948,
- -0.06933899223804474,
- 0.1007416844367981,
- 0.03234351426362991,
- -0.08328630030155182,
- -0.021783558651804924,
- 0.06474277377128601,
- 0.0066166166216135025,
- 0.03739690035581589,
- 0.045588377863168716,
- -0.017219820991158485,
- 0.001884443568997085,
- -0.06589841842651367,
- 0.004397578537464142,
- -0.022235039621591568,
- -0.11646170914173126,
- 0.011123173870146275,
- 0.003596703987568617,
- -0.0010530631989240646,
- 0.04760304093360901,
- 0.021224025636911392,
- -0.09241918474435806,
- -0.03175763785839081,
- -0.0005430324235931039,
- -0.07336841523647308,
- 0.025043724104762077,
- -0.04916973039507866,
- -0.03403045982122421,
- -0.014913013204932213,
- 3.414652764743369e-33,
- -0.05138052999973297,
- 0.047218963503837585,
- -0.03911638632416725,
- 0.097737155854702,
- 0.03980698063969612,
- 0.030037881806492805,
- 0.04637877270579338,
- -0.0005533193470910192,
- 0.05444856733083725,
- 0.056177426129579544,
- -0.007557440083473921,
- -0.06195995584130287,
- 0.06684234738349915,
- -0.054108988493680954,
- -0.017392894253134727,
- 0.07626111060380936,
- 0.05304158478975296,
- -0.07493898272514343,
- -0.011680688709020615,
- -0.03323981538414955,
- -0.09790541231632233,
- 0.017308499664068222,
- -0.06219875440001488,
- -0.038819849491119385,
- -0.05436497926712036,
- 0.047807130962610245,
- -0.005448242649435997,
- -0.025714484974741936,
- 0.04266582429409027,
- 0.028862418606877327,
- 0.0011098533868789673,
- -0.09578917920589447,
- -0.019943363964557648,
- -0.01637623831629753,
- -0.09076695144176483,
- 0.011005441658198833,
- 0.13601863384246826,
- -0.011511428281664848,
- -0.0521978884935379,
- 0.01646552048623562,
- 0.07079049944877625,
- 0.06834892183542252,
- -0.03794875368475914,
- 0.1063380017876625,
- 0.000043273481423966587,
- -0.05850826948881149,
- -0.029235253110527992,
- 0.08223072439432144,
- 0.06857939064502716,
- -0.0017041054088622332,
- 0.03023313730955124,
- 0.018626611679792404,
- -0.010389620438218117,
- -0.02309749461710453,
- 0.0010113258613273501,
- 0.017904000356793404,
- 0.037657495588064194,
- -0.005798545200377703,
- -0.009039103053510189,
- 0.018704354763031006,
- -0.06607667356729507,
- -0.02584712952375412,
- -0.019802771508693695,
- 0.122404083609581,
- -0.03878362476825714,
- -0.01665593683719635,
- -0.0065695480443537235,
- -0.08601488173007965,
- -0.046077802777290344,
- 0.02798985317349434,
- 0.0680350586771965,
- -0.0008988629560917616,
- -0.0031516405288130045,
- -0.004465665202587843,
- 0.02220826968550682,
- -0.04269365593791008,
- -0.12115523219108582,
- 0.04759049788117409,
- -0.02148875594139099,
- 0.05645157769322395,
- 0.025858189910650253,
- -0.061839956790208817,
- 0.008856896311044693,
- 0.1102491021156311,
- 0.039830729365348816,
- 0.028048081323504448,
- 0.0479094423353672,
- -0.06790671497583389,
- -0.01753941737115383,
- -0.030328825116157532,
- -0.05786615237593651,
- -0.013891230337321758,
- -0.10947200655937195,
- 0.06936412304639816,
- 0.013556013815104961,
- -1.252392323181084e-8,
- -0.02565428614616394,
- -0.11060205847024918,
- 0.055415596812963486,
- 0.048678502440452576,
- 0.060813430696725845,
- 0.0010456203017383814,
- -0.012331468053162098,
- 0.10969077795743942,
- 0.012051076628267765,
- 0.04865314066410065,
- 0.09678513556718826,
- 0.03743128105998039,
- -0.0727090910077095,
- -0.01003430038690567,
- 0.05864930525422096,
- 0.0016098619671538472,
- 0.02908165007829666,
- -0.07680946588516235,
- 0.008022378198802471,
- 0.043619316071271896,
- -0.001638634828850627,
- 0.056901298463344574,
- -0.07210338860750198,
- -0.001688539981842041,
- 0.1139301210641861,
- 0.011993173509836197,
- 0.01603814959526062,
- 0.12084156274795532,
- -0.006444670259952545,
- -0.009200631640851498,
- 0.02295204997062683,
- -0.05816205218434334,
- 0.07159662246704102,
- 0.008005429990589619,
- 0.06422752141952515,
- -0.05088375508785248,
- 0.05203213542699814,
- -0.0043128477409482,
- -0.04354625940322876,
- -0.04432501271367073,
- 0.03372723236680031,
- 0.0026865373365581036,
- -0.01955295540392399,
- -0.01941964030265808,
- 0.012660127133131027,
- 0.04147721081972122,
- 0.006159621756523848,
- -0.0035886664409190416,
- 0.007872654125094414,
- -0.02446763589978218,
- -0.008121393620967865,
- -0.006821444258093834,
- 0.023772375658154488,
- 0.01932741142809391,
- 0.0436408631503582,
- -0.00975774321705103,
- -0.0027548843063414097,
- 0.03062949888408184,
- -0.045259300619363785,
- 0.016411619260907173,
- 0.09781409800052643,
- -0.00432701176032424,
- -0.03719578683376312,
- -0.05704416334629059
- ]
- },
- {
- "keyword": "database",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.0489366315305233,
- -0.008919057436287403,
- -0.08253815770149231,
- 0.022091688588261604,
- -0.12972687184810638,
- 0.021152887493371964,
- 0.11597924679517746,
- 0.010500740259885788,
- 0.005320627707988024,
- -0.016196448355913162,
- 0.045451633632183075,
- -0.026275547221302986,
- 0.13207781314849854,
- -0.05180875211954117,
- -0.08894383162260056,
- 0.04365212842822075,
- -0.00408448139205575,
- 0.004096864722669125,
- -0.0024469720665365458,
- -0.014232821762561798,
- -0.12819363176822662,
- 0.002096639247611165,
- -0.040149688720703125,
- 0.08948086202144623,
- 0.00436864560469985,
- 0.048738058656454086,
- 0.00299984123557806,
- 0.06301289796829224,
- -0.020000681281089783,
- -0.12178295105695724,
- -0.03736406937241554,
- -0.0021629719994962215,
- 0.07904508709907532,
- 0.07226753979921341,
- -0.02718277834355831,
- -0.05882512032985687,
- 0.01255066879093647,
- -0.010068167001008987,
- -0.02824493497610092,
- -0.03086468204855919,
- -0.02239706553518772,
- -0.07530476897954941,
- -0.03641418367624283,
- 0.0775781199336052,
- 0.021096497774124146,
- 0.01294846460223198,
- -0.07633126527070999,
- 0.035101328045129776,
- 0.04851790890097618,
- 0.07041481137275696,
- -0.0639193132519722,
- 0.003349391045048833,
- -0.011323085986077785,
- 0.04127299413084984,
- 0.03424418345093727,
- 0.06611289829015732,
- 0.009682366624474525,
- 0.027026353403925896,
- -0.08285807818174362,
- 0.011440257541835308,
- 0.05561242252588272,
- 0.01023542694747448,
- -0.035743266344070435,
- 0.027666166424751282,
- 0.023897577077150345,
- -0.01053375843912363,
- -0.051994360983371735,
- 0.05148601904511452,
- 0.061876311898231506,
- -0.12426218390464783,
- -0.06746945530176163,
- 0.025320013985037804,
- -0.07555551826953888,
- 0.07656989246606827,
- -0.006725000217556953,
- -0.04290500283241272,
- 0.015432431362569332,
- -0.021921006962656975,
- 0.031687602400779724,
- 0.05864332243800163,
- -0.05108555778861046,
- 0.0016303870361298323,
- -0.04059533029794693,
- 0.002527435775846243,
- 0.044614292681217194,
- -0.08141720294952393,
- 0.06035099923610687,
- 0.01682169921696186,
- -0.03913263976573944,
- -0.06299273669719696,
- 0.023899151012301445,
- 0.03862761706113815,
- 0.08090081810951233,
- 0.0229285079985857,
- -0.08978477120399475,
- 0.026680735871195793,
- 0.03493710234761238,
- -0.062122244387865067,
- 0.10331248492002487,
- 0.18254077434539795,
- -0.01801724173128605,
- 0.07516904920339584,
- -0.05445735156536102,
- 0.02839118242263794,
- -0.0869201123714447,
- -0.06217338889837265,
- 0.005028043873608112,
- -0.011875654570758343,
- -0.019188789650797844,
- -0.0068614245392382145,
- -0.06461500376462936,
- 0.008501497097313404,
- -0.06649704277515411,
- -0.08250658214092255,
- -0.003029215382412076,
- -0.04861420765519142,
- -0.07309117913246155,
- -0.009097481146454811,
- -0.03411456197500229,
- -0.03261517360806465,
- 0.02114948444068432,
- 0.04727450758218765,
- -0.008909604512155056,
- -0.012269854545593262,
- -0.018546292558312416,
- -0.024267129600048065,
- -0.025771714746952057,
- -3.988688165894155e-33,
- 0.008187873288989067,
- -0.0036193744745105505,
- 0.04772985354065895,
- -0.02271381765604019,
- 0.012975692749023438,
- -0.005897676106542349,
- -0.02148306928575039,
- 0.03087153658270836,
- -0.07253412157297134,
- 0.09416991472244263,
- -0.05087821185588837,
- 0.04502797871828079,
- -0.010639582760632038,
- 0.005194745026528835,
- 0.10461929440498352,
- 0.056798093020915985,
- 0.03867185860872269,
- 0.09206961840391159,
- 0.035252124071121216,
- 0.0002395424380665645,
- -0.01038053072988987,
- -0.012287197634577751,
- 0.055932823568582535,
- 0.09082775563001633,
- 0.10340028256177902,
- 0.020419515669345856,
- -0.03992699459195137,
- 0.033747799694538116,
- 0.04194510355591774,
- 0.008615180850028992,
- 0.05461551249027252,
- -0.07250430434942245,
- -0.0900290235877037,
- -0.06113361939787865,
- 0.03348347917199135,
- 0.002277899067848921,
- -0.02229447104036808,
- -0.03616243973374367,
- 0.03291003406047821,
- 0.005574782844632864,
- -0.008695969358086586,
- 0.04642206057906151,
- 0.03451584652066231,
- -0.011734085157513618,
- -0.005300113931298256,
- 0.10705702751874924,
- 0.021140439435839653,
- 0.02414378896355629,
- -0.007672889158129692,
- 0.0010453653521835804,
- -0.01216077245771885,
- -0.02635839767754078,
- -0.08978278189897537,
- 0.06687154620885849,
- 0.011280443519353867,
- 0.052914608269929886,
- -0.012203238904476166,
- -0.04009098559617996,
- 0.05119846761226654,
- 0.02327427640557289,
- -0.02164977416396141,
- -0.017117368057370186,
- -0.0074192979373037815,
- -0.0323723740875721,
- 0.040626123547554016,
- 0.009872157126665115,
- -0.028154989704489708,
- -0.051663707941770554,
- 0.15964330732822418,
- 0.023019563406705856,
- -0.0608789287507534,
- -0.030931413173675537,
- 0.10545768588781357,
- 0.020577581599354744,
- -0.037690501660108566,
- 0.03369266539812088,
- -0.01144796796143055,
- -0.09270646423101425,
- -0.08204857259988785,
- 0.03841713070869446,
- -0.003348849480971694,
- -0.06128857284784317,
- -0.10418234765529633,
- -0.00023349071852862835,
- -0.010559233836829662,
- 0.03792461380362511,
- -0.017670392990112305,
- -0.08672626316547394,
- -0.03864454850554466,
- 0.03475719317793846,
- -0.035506732761859894,
- 0.060562167316675186,
- 0.05274660512804985,
- -0.0022183412220329046,
- -0.0076781390234827995,
- 2.766878419294508e-33,
- 0.01681138575077057,
- -0.012470167130231857,
- -0.04388178512454033,
- -0.010802382603287697,
- 0.07149557769298553,
- -0.016540322452783585,
- -0.008433445356786251,
- -0.0022869263775646687,
- -0.09707509726285934,
- 0.0010608455631881952,
- 0.02777412347495556,
- -0.030776601284742355,
- 0.0565653033554554,
- -0.02829820290207863,
- -0.015458418987691402,
- 0.05809929966926575,
- 0.04276923090219498,
- -0.04596535861492157,
- -0.05374034121632576,
- 0.06937696039676666,
- -0.07552231848239899,
- 0.08483443409204483,
- -0.06302633881568909,
- -0.03444097191095352,
- -0.02560480684041977,
- 0.010990039445459843,
- -0.05961628630757332,
- -0.06077840179204941,
- -0.017673121765255928,
- 0.06915757805109024,
- -0.017654001712799072,
- -0.08787844330072403,
- -0.002246938180178404,
- 0.021789010614156723,
- -0.06374155730009079,
- -0.0657842829823494,
- 0.036235082894563675,
- -0.03803073614835739,
- 0.04635028913617134,
- 0.04897144436836243,
- 0.027391161769628525,
- 0.06462402641773224,
- -0.008881395682692528,
- 0.04409179463982582,
- -0.04094113036990166,
- -0.013606668449938297,
- -0.10622970014810562,
- 0.06637503951787949,
- 0.03562024608254433,
- -0.016959695145487785,
- -0.05534167215228081,
- -0.040449369698762894,
- 0.024401860311627388,
- -0.06287485361099243,
- 0.09688027203083038,
- 0.0112071568146348,
- -0.015177879482507706,
- -0.019017541781067848,
- 0.04145005717873573,
- 0.052907079458236694,
- -0.03178759291768074,
- 0.053224872797727585,
- -0.0020858938805758953,
- 0.08538725227117538,
- -0.03173551708459854,
- -0.014891084283590317,
- -0.041941117495298386,
- 0.03392989933490753,
- -0.06020325794816017,
- 0.0016892163548618555,
- -0.02271207794547081,
- 0.021871797740459442,
- 0.04242107272148132,
- 0.10482675582170486,
- 0.010275566950440407,
- -0.00759448017925024,
- -0.1328180432319641,
- 0.026085704565048218,
- -0.0197015218436718,
- 0.029921164736151695,
- -0.019590020179748535,
- -0.0191517136991024,
- 0.029911193996667862,
- 0.03509112820029259,
- -0.01773715950548649,
- -0.061309706419706345,
- 0.05831155925989151,
- -0.06368636339902878,
- -0.02040483057498932,
- -0.0027159538585692644,
- -0.0742102563381195,
- 0.02947608381509781,
- -0.08783535659313202,
- 0.052835095673799515,
- 0.0004929590504616499,
- -1.0912579284649837e-8,
- -0.0016704520676285028,
- -0.04874075949192047,
- 0.058016326278448105,
- -0.02395990677177906,
- 0.11586672067642212,
- -0.08765564858913422,
- 0.0009634615271352232,
- 0.12944939732551575,
- 0.004535081796348095,
- 0.05814094841480255,
- 0.08148858696222305,
- 0.0012960913591086864,
- -0.054117001593112946,
- 0.04101910814642906,
- 0.0030954251997172832,
- -0.01676889881491661,
- 0.026636777445673943,
- -0.057672303169965744,
- -0.029692623764276505,
- 0.05283491685986519,
- 0.0014949823962524533,
- 0.054775357246398926,
- -0.02488160878419876,
- -0.02149116061627865,
- 0.0854017361998558,
- -0.007431020960211754,
- -0.02325214445590973,
- 0.13442164659500122,
- -0.01943107321858406,
- 0.008546330034732819,
- 0.06414501368999481,
- 0.014716590754687786,
- 0.09476097673177719,
- -0.018506499007344246,
- 0.03071110136806965,
- 0.013097374700009823,
- 0.03694326430559158,
- 0.018227042630314827,
- -0.07595283538103104,
- -0.05750595033168793,
- 0.0014901397516950965,
- -0.04704931005835533,
- 0.027735978364944458,
- 0.002171291969716549,
- -0.006521327421069145,
- 0.0011702269548550248,
- 0.04643121361732483,
- -0.036123812198638916,
- 0.006726214662194252,
- -0.008037297986447811,
- -0.011656288988888264,
- -0.041810233145952225,
- 0.07216712087392807,
- 0.03170965239405632,
- 0.0016234549693763256,
- 0.046679552644491196,
- 0.008074735291302204,
- -0.01861640438437462,
- 0.026893390342593193,
- -0.010769086889922619,
- 0.046211838722229004,
- 0.009751928970217705,
- 0.007871122099459171,
- -0.06518013030290604
- ]
- },
- {
- "keyword": "repository",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.0887097641825676,
- 0.004402465652674437,
- -0.04021504893898964,
- 0.01291381474584341,
- -0.03495071083307266,
- -0.03827637806534767,
- 0.06756770610809326,
- -0.024966293945908546,
- 0.020712248980998993,
- 0.046662792563438416,
- 0.038794320076704025,
- -0.019621869549155235,
- 0.03226110339164734,
- -0.0016791492234915495,
- -0.03892548382282257,
- 0.041336748749017715,
- 0.05375075712800026,
- 0.02224888652563095,
- 0.05197496339678764,
- -0.006408063229173422,
- -0.10585720092058182,
- -0.0007090534782037139,
- -0.002288215793669224,
- 0.037022318691015244,
- 0.0037020558957010508,
- 0.022091278806328773,
- -0.0489349365234375,
- 0.006961189676076174,
- -0.024761050939559937,
- -0.08444945514202118,
- 0.01852918602526188,
- -0.005961719900369644,
- 0.026682429015636444,
- -0.038955919444561005,
- 0.057661231607198715,
- 0.0905892550945282,
- -0.00414073932915926,
- 0.019715143367648125,
- -0.008547089993953705,
- 0.009399148635566235,
- -0.029819069430232048,
- 0.017507823184132576,
- -0.00403470266610384,
- 0.01419108361005783,
- -0.052228011190891266,
- 0.012390265241265297,
- -0.000536719337105751,
- -0.04648182913661003,
- -0.03149626404047012,
- -0.005310167092829943,
- -0.014616033062338829,
- -0.041450854390859604,
- -0.024767637252807617,
- -0.01644616387784481,
- 0.020667780190706253,
- -0.0077969906851649284,
- 0.009301465936005116,
- 0.09349772334098816,
- -0.016001228243112564,
- -0.0356026329100132,
- 0.12826238572597504,
- 0.011717863380908966,
- -0.12935520708560944,
- 0.01259519625455141,
- 0.06580044329166412,
- -0.002844082424417138,
- 0.04033857211470604,
- 0.047643404453992844,
- 0.055279552936553955,
- -0.15749505162239075,
- -0.05564962700009346,
- 0.04894787073135376,
- -0.02934378571808338,
- -0.01442504208534956,
- 0.017556963488459587,
- -0.010847523808479309,
- 0.019531844183802605,
- 0.014061792753636837,
- 0.12493909895420074,
- -0.031224045902490616,
- 0.025726009160280228,
- 0.03197863698005676,
- -0.021378381177783012,
- 0.009302741847932339,
- -0.02102855034172535,
- 0.00016408735245931894,
- 0.04708865284919739,
- 0.06275193393230438,
- 0.05357168987393379,
- -0.016902010887861252,
- -0.011049634777009487,
- -0.01993032544851303,
- 0.14331290125846863,
- -0.03414511680603027,
- -0.06036515533924103,
- -0.033323220908641815,
- 0.04478530213236809,
- -0.015249446034431458,
- 0.0209039356559515,
- 0.23980821669101715,
- 0.04515809938311577,
- 0.028821559622883797,
- -0.02264442853629589,
- -0.0004803926276508719,
- -0.031293902546167374,
- -0.0004451005661394447,
- -0.011218031868338585,
- 0.07241006195545197,
- 0.009981852024793625,
- 0.053384702652692795,
- -0.03478643298149109,
- 0.0033900593407452106,
- -0.017143363133072853,
- -0.058843210339546204,
- -0.01240470353513956,
- 0.009889253415167332,
- -0.04743318259716034,
- 0.025335082784295082,
- -0.04758470505475998,
- -0.08186060935258865,
- 0.0040572285652160645,
- 0.010359199717640877,
- -0.027573760598897934,
- -0.062474846839904785,
- -0.0372619703412056,
- -0.04374726861715317,
- 0.03444935008883476,
- -5.215744841731293e-33,
- 0.09406936168670654,
- 0.07079877704381943,
- -0.00428632739931345,
- 0.017369193956255913,
- 0.011958042159676552,
- -0.016158441081643105,
- 0.03138285502791405,
- -0.00689781503751874,
- -0.08939819782972336,
- -0.05137258768081665,
- -0.033194370567798615,
- -0.05487526208162308,
- -0.07224863022565842,
- 0.01108836941421032,
- 0.020778262987732887,
- -0.014897260814905167,
- -0.04584471881389618,
- 0.13384635746479034,
- 0.015360708348453045,
- -0.03971303999423981,
- -0.09741049259901047,
- 0.0013918151380494237,
- 0.020135240629315376,
- 0.07071392238140106,
- 0.06974710524082184,
- 0.00814791675657034,
- 0.02654433809220791,
- -0.01859818398952484,
- -0.0688849538564682,
- 0.007449305150657892,
- 0.05499064922332764,
- 0.012388227507472038,
- -0.027478160336613655,
- 0.03110613115131855,
- 0.027387335896492004,
- -0.02366250567138195,
- -0.016518443822860718,
- 0.004385390318930149,
- 0.02729658968746662,
- -0.038296036422252655,
- 0.0692627802491188,
- 0.023623809218406677,
- 0.0024529367219656706,
- 0.012694413773715496,
- 0.08807865530252457,
- -0.03525871783494949,
- 0.02704475447535515,
- -0.01814970374107361,
- 0.11990709602832794,
- 0.024400584399700165,
- 0.0036954726092517376,
- -0.013246508315205574,
- -0.08507747203111649,
- -0.0600428469479084,
- -0.012694044038653374,
- 0.036785051226615906,
- 0.028025763109326363,
- 0.042218584567308426,
- 0.07748284935951233,
- 0.01877680793404579,
- 0.05250367894768715,
- 0.044217612594366074,
- -0.04455806687474251,
- -0.07238846272230148,
- 0.011525517329573631,
- 0.05724295601248741,
- -0.08701183646917343,
- -0.0008607523050159216,
- 0.1020466685295105,
- 0.07028642296791077,
- -0.06996192038059235,
- -0.023646987974643707,
- 0.005256579723209143,
- 0.02224006876349449,
- -0.0654732882976532,
- -0.019732072949409485,
- -0.023742351680994034,
- 0.05001677945256233,
- -0.08823656290769577,
- 0.02576311118900776,
- -0.10208997875452042,
- -0.08034542202949524,
- -0.09415410459041595,
- 0.10310081392526627,
- 0.011696519330143929,
- 0.08178579062223434,
- -0.011532860808074474,
- 0.008750379085540771,
- 0.06302033364772797,
- 0.047299906611442566,
- 0.012068860232830048,
- -0.006894872523844242,
- 0.005402795970439911,
- -0.03687908500432968,
- 0.02464033104479313,
- 4.718080206527477e-33,
- -0.03068726323544979,
- -0.08296558260917664,
- -0.04165395349264145,
- 0.04456799477338791,
- 0.010532693937420845,
- -0.0010731841903179884,
- -0.04246775805950165,
- -0.056770652532577515,
- -0.054185010492801666,
- 0.06458470225334167,
- -0.06286764144897461,
- 0.031042354181408882,
- 0.03629487752914429,
- -0.028829285874962807,
- 0.05322045087814331,
- -0.0030443540308624506,
- 0.06899624317884445,
- -0.07747510075569153,
- -0.05377509444952011,
- 0.050752170383930206,
- -0.009027361869812012,
- -0.06576264649629593,
- 0.020067622885107994,
- -0.04740597680211067,
- 0.045693837106227875,
- 0.0035538743250072002,
- 0.06754356622695923,
- -0.01673845201730728,
- 0.03531016781926155,
- -0.00315916258841753,
- 0.04278094694018364,
- -0.042427923530340195,
- -0.15648286044597626,
- -0.059959329664707184,
- -0.05245644226670265,
- 0.028027737513184547,
- 0.04837949201464653,
- 0.04330873861908913,
- -0.08266018331050873,
- 0.01793924905359745,
- -0.0006457401905208826,
- -0.04786105453968048,
- -0.06675278395414352,
- 0.10928745567798615,
- 0.01878305710852146,
- -0.06068366393446922,
- -0.0423794724047184,
- 0.06865201890468597,
- 0.05494828149676323,
- 0.02514578029513359,
- -0.04169265180826187,
- -0.049561433494091034,
- 0.0626244843006134,
- -0.04025369882583618,
- 0.06734507530927658,
- 0.015396411530673504,
- -0.027064848691225052,
- 0.07145672291517258,
- 0.06582872569561005,
- -0.015498703345656395,
- -0.009120718576014042,
- 0.021489161998033524,
- -0.05796528607606888,
- 0.034907951951026917,
- -0.017533399164676666,
- 0.004329743795096874,
- -0.07409120351076126,
- 0.06455138325691223,
- -0.02721203863620758,
- 0.02850073203444481,
- 0.08022267371416092,
- 0.0066939243115484715,
- 0.06867750734090805,
- -0.0921337679028511,
- 0.001932891900651157,
- -0.046813108026981354,
- -0.06335863471031189,
- 0.07305432856082916,
- -0.015446036122739315,
- -0.0036902143619954586,
- -0.013842631131410599,
- -0.001785431057214737,
- 0.05968289077281952,
- 0.011268545873463154,
- 0.030308246612548828,
- -0.04797200486063957,
- 0.05422666668891907,
- -0.018098391592502594,
- -0.00920372735708952,
- -0.029489926993846893,
- 0.0004365436907391995,
- 0.022901708260178566,
- -0.058648668229579926,
- 0.03666623309254646,
- 0.01866738870739937,
- -1.1894893958697139e-8,
- 0.0375179760158062,
- 0.07974889129400253,
- -0.04642867669463158,
- 0.025755854323506355,
- 0.11623849719762802,
- -0.023970261216163635,
- -0.03327992558479309,
- 0.014145363122224808,
- 0.0005402927054092288,
- 0.06983479857444763,
- 0.021260490640997887,
- -0.019490418955683708,
- -0.009002411738038063,
- 0.08807684481143951,
- 0.03258640691637993,
- -0.045037493109703064,
- -0.07012154161930084,
- 0.0031717373058199883,
- -0.0955687090754509,
- -0.013177398592233658,
- -0.04481130838394165,
- -0.03565079718828201,
- 0.008322481997311115,
- -0.04425620287656784,
- 0.026677720248699188,
- -0.019504496827721596,
- 0.0379255972802639,
- 0.11478205770254135,
- 0.011844716966152191,
- -0.02862306497991085,
- 0.05703303590416908,
- 0.058649465441703796,
- -0.06376440078020096,
- -0.10827627778053284,
- 0.14392051100730896,
- -0.010881406255066395,
- -0.011852429248392582,
- 0.021557511761784554,
- 0.03602760657668114,
- -0.06719866394996643,
- -0.0162548515945673,
- -0.009789676405489445,
- 0.013425920158624649,
- 0.060189127922058105,
- -0.06162496283650398,
- 0.035139936953783035,
- 0.003936186898499727,
- -0.02761564590036869,
- -0.025564933195710182,
- 0.005579933989793062,
- -0.026485802605748177,
- -0.07968775928020477,
- 0.03744494542479515,
- 0.04699796438217163,
- -0.0021203537471592426,
- 0.059564538300037384,
- 0.047849684953689575,
- -0.053356535732746124,
- 0.012027307413518429,
- -0.015565691515803337,
- 0.11893463879823685,
- 0.04564623907208443,
- 0.07022927701473236,
- -0.06948428601026535
- ]
- },
- {
- "keyword": "archive",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.09163106232881546,
- 0.0930861160159111,
- -0.06516304612159729,
- 0.03698578476905823,
- 0.10485774278640747,
- 0.019486021250486374,
- -0.03791282698512077,
- -0.015081158839166164,
- 0.023928184062242508,
- 0.03945039212703705,
- 0.0158726554363966,
- 0.13163726031780243,
- -0.013057035394012928,
- -0.042717695236206055,
- -0.11505451798439026,
- 0.038217611610889435,
- -0.10491540282964706,
- 0.06975107640028,
- -0.024566778913140297,
- -0.012553862296044827,
- -0.031487587839365005,
- 0.04309172183275223,
- 0.06508336961269379,
- 0.0005694521823897958,
- 0.03532366827130318,
- 0.02685784548521042,
- -0.07329002022743225,
- -0.001026932499371469,
- 0.07867162674665451,
- -0.07725290954113007,
- -0.008832931518554688,
- -0.022041475400328636,
- 0.052882254123687744,
- 0.027156319469213486,
- 0.05373292788863182,
- 0.05818277224898338,
- 0.03924257680773735,
- 0.02660115249454975,
- 0.0412432961165905,
- -0.003601448144763708,
- -0.0336875282227993,
- 0.0037232874892652035,
- -0.03504302725195885,
- -0.040312569588422775,
- -0.05241730809211731,
- 0.016842905431985855,
- 0.023734888061881065,
- -0.04569476097822189,
- 0.02385418489575386,
- 0.040741413831710815,
- -0.028039071708917618,
- 0.013997809961438179,
- -0.03877359256148338,
- 0.011465932242572308,
- 0.058521758764982224,
- 0.02251361310482025,
- -0.01908365823328495,
- 0.0270079392939806,
- -0.07039989531040192,
- -0.05770699679851532,
- 0.03895190358161926,
- 0.011646841652691364,
- -0.10442084819078445,
- 0.04466809332370758,
- 0.009423330426216125,
- 0.02068605087697506,
- 0.04022368788719177,
- 0.10464344173669815,
- 0.02810577116906643,
- -0.12246762961149216,
- -0.1337524801492691,
- 0.021951690316200256,
- -0.08140801638364792,
- 0.055876027792692184,
- 0.02279031276702881,
- 0.012555817142128944,
- 0.06125766038894653,
- 0.024069510400295258,
- -0.022821776568889618,
- -0.01997479237616062,
- -0.019194727763533592,
- -0.12191551178693771,
- 0.019400306046009064,
- -0.013371160253882408,
- -0.023052649572491646,
- -0.0325453020632267,
- 0.054961878806352615,
- -0.020135708153247833,
- -0.0027348038274794817,
- 0.03911623731255531,
- -0.02574102208018303,
- 0.05960695073008537,
- 0.17465829849243164,
- -0.04921659454703331,
- -0.056057270616292953,
- 0.006961310748010874,
- 0.0547638013958931,
- 0.03314429149031639,
- 0.04751969128847122,
- 0.2415001094341278,
- 0.04067379608750343,
- 0.045667294412851334,
- 0.019925355911254883,
- -0.015504103153944016,
- -0.047236502170562744,
- -0.047813910990953445,
- 0.03329060226678848,
- 0.010178135707974434,
- 0.006337400060147047,
- 0.055607929825782776,
- -0.04489455744624138,
- 0.010996001772582531,
- -0.014053082093596458,
- -0.04268292710185051,
- 0.038672368973493576,
- -0.046856775879859924,
- -0.08976931869983673,
- 0.06934798508882523,
- -0.00475870119407773,
- -0.06929764896631241,
- 0.037659626454114914,
- -0.016682876273989677,
- 0.036926865577697754,
- -0.004091251641511917,
- -0.07020080089569092,
- -0.09967046976089478,
- 0.030803605914115906,
- -5.0953914852803686e-33,
- 0.07542522996664047,
- 0.024446332827210426,
- -0.0019261650741100311,
- 0.050638992339372635,
- 0.015911515802145004,
- -0.011544084176421165,
- 0.05465826764702797,
- -0.013044821098446846,
- -0.038823358714580536,
- -0.00020349895930849016,
- -0.031578537076711655,
- 0.08568435907363892,
- -0.044935207813978195,
- -0.030385762453079224,
- -0.006625853478908539,
- 0.05138109624385834,
- -0.013225255534052849,
- 0.081666499376297,
- 0.08028735220432281,
- -0.04832565784454346,
- -0.022663911804556847,
- 0.01716369390487671,
- 0.021588651463389397,
- 0.01584705337882042,
- 0.03705752640962601,
- -0.011015922762453556,
- 0.02279876172542572,
- -0.07738218456506729,
- -0.06874547153711319,
- 0.01031982060521841,
- -0.01772907003760338,
- 0.009827129542827606,
- -0.039676159620285034,
- -0.03333153948187828,
- 0.06846822798252106,
- 0.04346918687224388,
- -0.0057194712571799755,
- 0.03813284635543823,
- 0.009922058321535587,
- -0.023963427171111107,
- 0.09035889059305191,
- -0.0025489809922873974,
- 0.037752795964479446,
- -0.032636385411024094,
- 0.000517105043400079,
- -0.005349805112928152,
- 0.05080404132604599,
- 0.012990209273993969,
- 0.06580871343612671,
- -0.006171781104058027,
- 0.03449949622154236,
- 0.0007415064610540867,
- -0.10422569513320923,
- 0.000023545475414721295,
- -0.05480681359767914,
- 0.009798849001526833,
- -0.018307562917470932,
- 0.0003164259251207113,
- 0.058323003351688385,
- -0.017312560230493546,
- 0.04283452033996582,
- 0.06945538520812988,
- 0.02262573316693306,
- -0.025301065295934677,
- 0.031247448176145554,
- 0.0015978040173649788,
- -0.0814865231513977,
- -0.0062868050299584866,
- 0.06241777539253235,
- 0.045856643468141556,
- -0.0030280714854598045,
- -0.07417958229780197,
- 0.08377610146999359,
- -0.024933459237217903,
- -0.038894373923540115,
- 0.004527738783508539,
- -0.07772665470838547,
- 0.019284438341856003,
- -0.08732154965400696,
- -0.08148553967475891,
- -0.04044417291879654,
- -0.12135566771030426,
- -0.07726070284843445,
- -0.01967012509703636,
- 0.0691407173871994,
- -0.029490673914551735,
- 0.02419568970799446,
- 0.00903400033712387,
- 0.04543150216341019,
- 0.023459699004888535,
- -0.04609329253435135,
- 0.02732912078499794,
- -0.0001453011209378019,
- -0.07076920568943024,
- 0.0034266505390405655,
- 3.775566264644274e-33,
- 0.029436662793159485,
- -0.05460140481591225,
- -0.08581995964050293,
- 0.0020510624162852764,
- -0.0188820268958807,
- 0.010462434031069279,
- -0.0362226627767086,
- 0.03970904275774956,
- -0.045710645616054535,
- -0.013249524869024754,
- -0.0806804895401001,
- -0.022082673385739326,
- 0.054988447576761246,
- 0.007684267591685057,
- 0.04889755696058273,
- 0.0290352925658226,
- 0.045678891241550446,
- -0.0683952271938324,
- -0.10663832724094391,
- 0.023904448375105858,
- -0.10302998125553131,
- 0.015507805161178112,
- -0.0394509881734848,
- 0.06630058586597443,
- -0.027259426191449165,
- 0.02237977273762226,
- 0.08674576133489609,
- 0.013533031567931175,
- 0.008656141348183155,
- -0.02610490471124649,
- 0.0011041989782825112,
- -0.09146429598331451,
- -0.09109482169151306,
- -0.011956749483942986,
- -0.004798692185431719,
- -0.005208508111536503,
- 0.06769157201051712,
- 0.019355060532689095,
- -0.02199040725827217,
- 0.007823104038834572,
- 0.01721145026385784,
- 0.0760895311832428,
- -0.05275103822350502,
- 0.02705978788435459,
- 0.06480944901704788,
- -0.055329788476228714,
- -0.09450503438711166,
- 0.058482132852077484,
- 0.031031182035803795,
- 0.04370133578777313,
- 0.019566262140870094,
- -0.009172961115837097,
- -0.008537455461919308,
- -0.10190475732088089,
- 0.08846717327833176,
- 0.05401567742228508,
- -0.007714470848441124,
- 0.07386140525341034,
- 0.02869364619255066,
- 0.01596159301698208,
- -0.03011374920606613,
- 0.039168886840343475,
- -0.09291543066501617,
- -0.03370777517557144,
- -0.06133551150560379,
- -0.007331297732889652,
- -0.02020936645567417,
- -0.038762178272008896,
- -0.12352968752384186,
- 0.049518100917339325,
- 0.011574545875191689,
- -0.03458677977323532,
- 0.0014749269466847181,
- 0.04097016900777817,
- 0.030956119298934937,
- 0.003271604422479868,
- 0.024622930213809013,
- 0.06741546839475632,
- 0.004685205407440662,
- -0.03301897644996643,
- -0.06065131351351738,
- 0.05809653177857399,
- 0.000910713046323508,
- 0.019211420789361,
- 0.02795579470694065,
- -0.05720021203160286,
- 0.04873446002602577,
- 0.00467517226934433,
- -0.0031415345147252083,
- -0.09030427038669586,
- 0.01396190095692873,
- -0.02641916833817959,
- -0.07194988429546356,
- 0.030551325529813766,
- 0.08737634122371674,
- -1.2429275386693917e-8,
- -0.0649234876036644,
- 0.04350601136684418,
- 0.021394357085227966,
- 0.08848336338996887,
- 0.11512788385152817,
- 0.06271879374980927,
- 0.031017344444990158,
- 0.045114412903785706,
- -0.008014324121177197,
- -0.05548790842294693,
- 0.025062313303351402,
- -0.029457980766892433,
- -0.037306562066078186,
- 0.04126666486263275,
- -0.01468229666352272,
- -0.021836668252944946,
- -0.05132361128926277,
- -0.0407276451587677,
- -0.03455750644207001,
- 0.009510669857263565,
- -0.0020827502012252808,
- -0.023083390668034554,
- 0.025765907019376755,
- -0.006932171527296305,
- 0.027861567214131355,
- -0.009913570247590542,
- -0.016414420679211617,
- 0.012176022864878178,
- 0.002284048590809107,
- -0.00419608736410737,
- 0.0061206333339214325,
- 0.13132666051387787,
- -0.002173500834032893,
- -0.09340362995862961,
- 0.025578564032912254,
- -0.02079787850379944,
- 0.0032440379727631807,
- 0.00029432165320031345,
- 0.010276831686496735,
- -0.023787500336766243,
- 0.03416013717651367,
- 0.01228746585547924,
- 0.022676125168800354,
- 0.0008945674053393304,
- -0.00488255126401782,
- -0.033336229622364044,
- 0.008845515549182892,
- -0.01670512743294239,
- -0.02593867853283882,
- 0.0326952300965786,
- -0.02979087084531784,
- -0.06729461997747421,
- 0.060193803161382675,
- 0.07790020853281021,
- -0.0018426332389935851,
- -0.04476519674062729,
- 0.03996291384100914,
- 0.006751168519258499,
- 0.010726898908615112,
- 0.004508719313889742,
- 0.17734555900096893,
- 0.00010405198554508388,
- -0.013545921072363853,
- -0.041910137981176376
- ]
- },
- {
- "keyword": "library",
- "type": "collection",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.07281371206045151,
- -0.0390964075922966,
- -0.09329649806022644,
- 0.0019177899230271578,
- 0.027856113389134407,
- 0.0018885789904743433,
- 0.05041807144880295,
- 0.04452313110232353,
- 0.03422641381621361,
- -0.01705022156238556,
- -0.005574675276875496,
- 0.04503863677382469,
- 0.012923261150717735,
- -0.04800263047218323,
- -0.016099292784929276,
- 0.003032132051885128,
- -0.020979564636945724,
- 0.07380419224500656,
- -0.023351972922682762,
- -0.08606210350990295,
- -0.04024761915206909,
- 0.03689750283956528,
- 0.014317620545625687,
- 0.006358522456139326,
- 0.033335037529468536,
- 0.023615000769495964,
- -0.04254491627216339,
- -0.04957139492034912,
- -0.015947073698043823,
- -0.09313423186540604,
- -0.04401403293013573,
- -0.030667118728160858,
- 0.049357328563928604,
- -0.037352319806814194,
- 0.006494817323982716,
- 0.014395609498023987,
- 0.03975924476981163,
- -0.0483151413500309,
- -0.0021804538555443287,
- 0.024789229035377502,
- -0.1269378811120987,
- 0.021830964833498,
- -0.007607497274875641,
- 0.026371482759714127,
- -0.046376559883356094,
- 0.06425824016332626,
- 0.007352771237492561,
- -0.028049208223819733,
- 0.022320469841361046,
- 0.05407131463289261,
- -0.0434575155377388,
- 0.0009032285888679326,
- -0.058331746608018875,
- -0.02985905297100544,
- 0.05851989611983299,
- 0.04537520557641983,
- -0.024551380425691605,
- 0.030005745589733124,
- -0.0162973552942276,
- -0.01535120327025652,
- 0.050685569643974304,
- 0.0001715446705929935,
- -0.0737527385354042,
- 0.09291692078113556,
- 0.06661425530910492,
- 0.08826274424791336,
- 0.04825284704566002,
- 0.07956759631633759,
- 0.033385708928108215,
- -0.16340228915214539,
- -0.13049161434173584,
- 0.0030081875156611204,
- 0.005037264432758093,
- 0.08961096405982971,
- 0.07330180704593658,
- -0.05735014006495476,
- -0.04076024517416954,
- -0.011588416062295437,
- 0.09281082451343536,
- -0.05886983871459961,
- -0.06284409016370773,
- -0.01702229306101799,
- 0.005064088385552168,
- 0.03372572734951973,
- 0.05880039557814598,
- -0.024822810664772987,
- 0.04464791342616081,
- 0.003882884979248047,
- 0.044469911605119705,
- 0.0032209947239607573,
- 0.025984877720475197,
- -0.025905484333634377,
- 0.09054303914308548,
- 0.020084476098418236,
- -0.11635498702526093,
- 0.07858577370643616,
- 0.05681762844324112,
- -0.09274519979953766,
- 0.01760575920343399,
- 0.26032406091690063,
- -0.06973119080066681,
- 0.006508795544505119,
- 0.05797645077109337,
- 0.013394015841186047,
- -0.03366495668888092,
- -0.09882800281047821,
- -0.03035939857363701,
- 0.008407559245824814,
- -0.014085931703448296,
- 0.018451539799571037,
- 0.0042174505069851875,
- -0.020885122939944267,
- -0.05236542969942093,
- -0.07607238739728928,
- 0.0372539684176445,
- 0.0010567664867267013,
- 0.04040154069662094,
- 0.003089785808697343,
- 0.0357702262699604,
- 0.001878797309473157,
- -0.044623907655477524,
- 0.004293827340006828,
- 0.0005461651599034667,
- 0.008329878561198711,
- -0.08337417244911194,
- -0.0660770907998085,
- -0.05810566991567612,
- -4.4653893287189945e-33,
- 0.06528053432703018,
- -0.05027571693062782,
- 0.04171231389045715,
- 0.05312561243772507,
- -0.010608243755996227,
- -0.0875023752450943,
- 0.03676294535398483,
- -0.011958601884543896,
- -0.07124458998441696,
- -0.007035905495285988,
- 0.011317817494273186,
- 0.07057997584342957,
- -0.07606559991836548,
- 0.016374750062823296,
- 0.03797514736652374,
- 0.0024783608969300985,
- 0.03728373348712921,
- 0.07298853993415833,
- 0.026271745562553406,
- -0.014164256863296032,
- -0.0625172108411789,
- -0.0075278207659721375,
- 0.057393308728933334,
- 0.07632371038198471,
- 0.01334292721003294,
- 0.00920773670077324,
- 0.0027443491853773594,
- -0.0961822122335434,
- 0.059793636202812195,
- 0.0524371862411499,
- 0.01419870276004076,
- -0.0632672905921936,
- -0.04730675742030144,
- -0.041335031390190125,
- 0.06828118115663528,
- -0.039099059998989105,
- -0.08827419579029083,
- -0.041234903037548065,
- 0.04605695605278015,
- 0.002938095713034272,
- 0.013379927724599838,
- 0.00008686901128385216,
- -0.006855218205600977,
- -0.03117918036878109,
- 0.00615308340638876,
- 0.06424283981323242,
- 0.018897993490099907,
- 0.03799501806497574,
- 0.03471522405743599,
- -0.013639600947499275,
- -0.0030774010811001062,
- 0.0313861146569252,
- -0.08801981061697006,
- -0.014030507765710354,
- 0.00851206760853529,
- -0.012213255278766155,
- -0.009232942946255207,
- 0.09585221856832504,
- 0.022889019921422005,
- -0.001008870080113411,
- 0.06810986995697021,
- 0.12908586859703064,
- 0.002718727570027113,
- -0.03775593638420105,
- 0.04439474269747734,
- -0.01765315607190132,
- -0.08754575997591019,
- -0.06599868088960648,
- 0.045940738171339035,
- 0.002354862168431282,
- -0.07392951101064682,
- -0.002308845752850175,
- 0.09090005606412888,
- 0.010680628940463066,
- 0.0009389990591444075,
- 0.07666989415884018,
- -0.06033117696642876,
- 0.012613018043339252,
- -0.10897260904312134,
- -0.0421307235956192,
- -0.094363734126091,
- -0.04216067120432854,
- 0.017976917326450348,
- 0.014882461167871952,
- -0.02387702837586403,
- -0.04491927847266197,
- 0.053003810346126556,
- -0.060770321637392044,
- -0.0359468013048172,
- 0.035531554371118546,
- -0.05393437668681145,
- 0.02209065854549408,
- -0.035165008157491684,
- 0.009678170084953308,
- -0.027995295822620392,
- 3.263007748673555e-33,
- 0.03598937392234802,
- -0.10355113446712494,
- 0.019166050478816032,
- 0.011902879923582077,
- 0.03203967213630676,
- 0.05853909254074097,
- -0.06630931794643402,
- -0.026584964245557785,
- 0.05058932676911354,
- 0.04728008806705475,
- -0.019974462687969208,
- -0.045367930084466934,
- 0.09150627255439758,
- 0.05731554701924324,
- 0.025692343711853027,
- -0.03496954217553139,
- 0.037423718720674515,
- -0.051580168306827545,
- -0.04671517759561539,
- 0.06144045293331146,
- -0.10740768164396286,
- 0.05409300699830055,
- 0.020464882254600525,
- -0.04260195791721344,
- -0.022221943363547325,
- 0.03692874312400818,
- -0.05194313824176788,
- -0.034983426332473755,
- -0.025574037805199623,
- 0.025932474061846733,
- -0.004102393984794617,
- 0.005046484991908073,
- -0.0670677199959755,
- -0.03594730421900749,
- -0.08865804225206375,
- 0.0029455258045345545,
- 0.04413753002882004,
- 0.034269772469997406,
- 0.007173630408942699,
- -0.043974462896585464,
- 0.061710212379693985,
- 0.04516497626900673,
- -0.022027060389518738,
- -0.0003989466349594295,
- 0.0004384770290926099,
- -0.06451505422592163,
- -0.05393708497285843,
- 0.1091834083199501,
- 0.005986788310110569,
- -0.044396188110113144,
- 0.010639023967087269,
- -0.005236283876001835,
- 0.057940803468227386,
- -0.10813186317682266,
- 0.041188403964042664,
- 0.061535779386758804,
- 0.028432661667466164,
- 0.021583296358585358,
- 0.08074312657117844,
- 0.010954095982015133,
- -0.13885235786437988,
- 0.022184500470757484,
- -0.0745847076177597,
- 0.04781382903456688,
- -0.06888359785079956,
- -0.01060317549854517,
- -0.059662945568561554,
- -0.022317860275506973,
- -0.004974848125129938,
- -0.0049483743496239185,
- 0.03544586896896362,
- 0.0493268184363842,
- 0.023909159004688263,
- 0.07091092318296432,
- -0.06199421361088753,
- 0.012038524262607098,
- 0.03041989356279373,
- 0.06981148570775986,
- -0.009747961536049843,
- -0.007595542352646589,
- 0.018697364255785942,
- 0.02241852879524231,
- 0.0038972615730017424,
- 0.062431029975414276,
- 0.07925596088171005,
- 0.02095131017267704,
- 0.08893194794654846,
- -0.0197769645601511,
- -0.006567927543073893,
- -0.044293347746133804,
- -0.02153557352721691,
- 0.04162612184882164,
- -0.0469873882830143,
- 0.06212678179144859,
- 0.06361851096153259,
- -1.2931420378947678e-8,
- -0.047044701874256134,
- 0.0018554511480033398,
- -0.05836334452033043,
- -0.008411876857280731,
- 0.05951735004782677,
- 0.009846910834312439,
- 0.023437874391674995,
- 0.07371548563241959,
- -0.06707099080085754,
- 0.01417868584394455,
- 0.029680628329515457,
- -0.05070445314049721,
- -0.02494893968105316,
- 0.039086632430553436,
- -0.04094662144780159,
- -0.0014151157811284065,
- 0.02083093859255314,
- -0.03776900842785835,
- -0.044943712651729584,
- 0.06867171823978424,
- 0.07192705571651459,
- -0.01343411672860384,
- 0.07354327291250229,
- 0.022427285090088844,
- -0.039878200739622116,
- -0.00268118130043149,
- 0.07183057814836502,
- -0.025356628000736237,
- 0.03518516942858696,
- -0.041361112147569656,
- -0.02411697618663311,
- 0.08802851289510727,
- -0.003133459249511361,
- -0.07774484157562256,
- 0.08225560933351517,
- 0.03726043552160263,
- -0.0016543720848858356,
- -0.05516032129526138,
- -0.04117569699883461,
- 0.07272801548242569,
- -0.001309389597736299,
- -0.05138195678591728,
- 0.0019401649478822947,
- 0.0031638911459594965,
- 0.020981604233384132,
- -0.022758223116397858,
- 0.00907466933131218,
- 0.0027967204805463552,
- -0.011547213420271873,
- 0.045971181243658066,
- -0.033923741430044174,
- 0.0033247845713049173,
- 0.03737517073750496,
- 0.020210471004247665,
- -0.03975096717476845,
- 0.019730214029550552,
- 0.017472179606556892,
- -0.04396232217550278,
- -0.06337513029575348,
- 0.04569922387599945,
- 0.11251740902662277,
- 0.04330847039818764,
- 0.050387099385261536,
- -0.012057350017130375
- ]
- },
- {
- "keyword": "state",
- "type": "state",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.006277072709053755,
- 0.049087975174188614,
- 0.037723831832408905,
- 0.07827889919281006,
- -0.022461464628577232,
- -0.015220806933939457,
- 0.03575994446873665,
- -0.059026088565588,
- -0.052461206912994385,
- -0.010004675015807152,
- -0.006335249170660973,
- -0.09077185392379761,
- 0.05279317870736122,
- -0.042327024042606354,
- -0.05250762030482292,
- -0.00345224654302001,
- 0.014057731255888939,
- -0.05386129394173622,
- 0.005434312857687473,
- 0.00040589572745375335,
- 0.046505555510520935,
- 0.04261210933327675,
- -0.06574586778879166,
- 0.036089636385440826,
- 0.06300599873065948,
- 0.10090932995080948,
- 0.007840011268854141,
- -0.006882132962346077,
- 0.025556467473506927,
- -0.05049864947795868,
- -0.0011376248439773917,
- -0.04603351652622223,
- 0.003744789632037282,
- -0.06306076049804688,
- 0.038644034415483475,
- -0.0678987130522728,
- 0.0468687042593956,
- -0.005314829293638468,
- 0.04315914586186409,
- -0.017825782299041748,
- 0.041490256786346436,
- -0.0007507342379540205,
- 0.03482622280716896,
- 0.009358386509120464,
- -0.0271382387727499,
- 0.02624029666185379,
- 0.05505692586302757,
- -0.0008476678049191833,
- 0.039004288613796234,
- 0.0027855713851749897,
- -0.015774836763739586,
- 0.0608803890645504,
- 0.001160560641437769,
- 0.081557996571064,
- 0.016862107440829277,
- -0.007427201606333256,
- 0.021463440731167793,
- 0.08051241934299469,
- -0.1015293225646019,
- -0.008464323356747627,
- 0.03647935390472412,
- -0.004129515495151281,
- -0.06624597311019897,
- 0.02435605600476265,
- 0.05921434611082077,
- 0.09572618454694748,
- 0.00014268532686401159,
- -0.0056214663200080395,
- -0.09087710082530975,
- -0.1776149719953537,
- 0.014775164425373077,
- -0.0341341607272625,
- 0.02361023798584938,
- 0.015973014757037163,
- 0.10686266422271729,
- -0.03628094494342804,
- 0.0010484813246876001,
- -0.002893058117479086,
- 0.12663573026657104,
- -0.009239268489181995,
- -0.033280063420534134,
- -0.1027187928557396,
- -0.03027619607746601,
- 0.0037222327664494514,
- -0.015811733901500702,
- -0.03854695335030556,
- -0.02883947640657425,
- 0.04649704694747925,
- 0.0608874075114727,
- -0.005497939884662628,
- -0.042027801275253296,
- -0.044918663799762726,
- 0.04936126247048378,
- -0.034802138805389404,
- -0.06331013143062592,
- 0.017547283321619034,
- 0.0041307988576591015,
- 0.010642236098647118,
- -0.01664719358086586,
- 0.2671709358692169,
- 0.017485857009887695,
- 0.00464798416942358,
- 0.015951918438076973,
- 0.04041799157857895,
- 0.001400291919708252,
- 0.030911710113286972,
- -0.08503697067499161,
- 0.08677017688751221,
- -0.04551582410931587,
- 0.044016480445861816,
- 0.03268666937947273,
- 0.041768625378608704,
- 0.0037765849847346544,
- 0.054442502558231354,
- 0.00013306473556440324,
- 0.06290706247091293,
- 0.02383803017437458,
- 0.019848065450787544,
- 0.02586948499083519,
- -0.08338245749473572,
- -0.0836016982793808,
- -0.012552081607282162,
- -0.020475508645176888,
- 0.044674742966890335,
- -0.004991238936781883,
- -0.07155166566371918,
- -0.025970477610826492,
- -4.924121223681592e-33,
- 0.004192172084003687,
- -0.07836033403873444,
- 0.010778192430734634,
- 0.026309525594115257,
- -0.06761489063501358,
- 0.04054167866706848,
- 0.05304008722305298,
- -0.08012866973876953,
- -0.07146177440881729,
- -0.0034132811706513166,
- -0.005700881127268076,
- -0.007820364087820053,
- 0.055336687713861465,
- 0.019764717668294907,
- 0.0847051590681076,
- 0.0017110955668613315,
- -0.018736645579338074,
- 0.03806593269109726,
- -0.037440501153469086,
- 0.02334204502403736,
- -0.03481724485754967,
- 0.0674251988530159,
- -0.04343905672430992,
- -0.03157540410757065,
- -0.09561619162559509,
- 0.009008316323161125,
- -0.011331884190440178,
- 0.042916618287563324,
- -0.030839497223496437,
- 0.01772383786737919,
- 0.06038897484540939,
- 0.0422966443002224,
- 0.02642492949962616,
- 0.021590985357761383,
- 0.047063883394002914,
- -0.03733894228935242,
- -0.03604326769709587,
- -0.05514180287718773,
- -0.03344366326928139,
- -0.09797664731740952,
- 0.0393129326403141,
- -0.03612935543060303,
- 0.00751983979716897,
- 0.0740942656993866,
- 0.000020307737941038795,
- 0.003686320735141635,
- 0.005842386744916439,
- -0.03839397057890892,
- -0.03192201629281044,
- 0.003978412132710218,
- -0.05928695574402809,
- 0.030265362933278084,
- -0.08043122291564941,
- -0.040132228285074234,
- -0.03357519209384918,
- 0.005460355430841446,
- 0.020804278552532196,
- -0.0006375856464728713,
- 0.07304829359054565,
- -0.0036400295794010162,
- -0.06942548602819443,
- 0.10846971720457077,
- -0.07406393438577652,
- -0.04295044392347336,
- -0.03678172454237938,
- -0.07804784178733826,
- -0.004041904583573341,
- 0.00984754879027605,
- 0.04197213426232338,
- -0.06105273589491844,
- 0.03229878097772598,
- 0.035035550594329834,
- 0.047062210738658905,
- 0.06371723860502243,
- 0.054926663637161255,
- 0.009112280793488026,
- 0.09596932679414749,
- 0.018978286534547806,
- -0.0921432301402092,
- -0.003179105930030346,
- -0.07446447014808655,
- -0.0495796762406826,
- -0.08400997519493103,
- 0.06370887905359268,
- 0.09928259253501892,
- 0.04479348286986351,
- -0.09017367660999298,
- -0.0735015943646431,
- 0.0078974524512887,
- 0.062222350388765335,
- -0.11535865068435669,
- -0.00018567958613857627,
- 0.01904870755970478,
- 0.06363379210233688,
- -0.003802020801231265,
- 2.2856482971411412e-33,
- 0.011834031902253628,
- -0.07546981424093246,
- 0.02567918412387371,
- 0.05701714754104614,
- 0.012220715172588825,
- -0.04415678605437279,
- 0.042619843035936356,
- 0.03430607169866562,
- -0.006486944854259491,
- -0.05361353978514671,
- -0.07621380686759949,
- -0.015618063509464264,
- 0.1302829086780548,
- 0.07738904654979706,
- 0.03420640155673027,
- 0.07251547276973724,
- 0.07626510411500931,
- -0.006597709842026234,
- -0.02095596119761467,
- 0.001600717194378376,
- -0.06328943371772766,
- -0.04797256365418434,
- -0.06756565719842911,
- 0.004662865772843361,
- -0.06465037912130356,
- 0.029990628361701965,
- -0.003426972310990095,
- -0.011156892403960228,
- -0.020616551861166954,
- -0.044456955045461655,
- 0.012000449001789093,
- -0.07240799069404602,
- -0.07827053964138031,
- 0.09959232807159424,
- -0.11652390658855438,
- -0.0037693995982408524,
- 0.05851410701870918,
- -0.06743203848600388,
- -0.0033679697662591934,
- -0.019802594557404518,
- 0.033219221979379654,
- -0.025140242651104927,
- -0.0003531451220624149,
- 0.1328708380460739,
- -0.028466450050473213,
- 0.054415978491306305,
- -0.005278034135699272,
- 0.08465031534433365,
- -0.07151049375534058,
- 0.0021229092963039875,
- -0.11828064918518066,
- 0.015203574672341347,
- 0.027232125401496887,
- 0.01646851934492588,
- -0.02210051938891411,
- -0.012522376142442226,
- -0.04473084211349487,
- 0.10983803868293762,
- -0.06842982769012451,
- 0.007296692114323378,
- -0.0033546823542565107,
- 0.04152209311723709,
- -0.07513594627380371,
- 0.04223551228642464,
- -0.020588573068380356,
- 0.01434272713959217,
- 0.007032637018710375,
- -0.03659519553184509,
- 0.03760571777820587,
- -0.004414073191583157,
- 0.08214619010686874,
- 0.02772650495171547,
- -0.045204561203718185,
- 0.00596259068697691,
- 0.02138584852218628,
- -0.030479198321700096,
- 0.01661418378353119,
- 0.022685067728161812,
- -0.009111388586461544,
- 0.005669598467648029,
- -0.004665665328502655,
- -0.06265470385551453,
- -0.12775561213493347,
- 0.036254946142435074,
- -0.01803300715982914,
- 0.08827129006385803,
- 0.03601608797907829,
- -0.04201163351535797,
- 0.015705719590187073,
- 0.009542307816445827,
- -0.02875932864844799,
- 0.06597816199064255,
- -0.050945959985256195,
- -0.03710861876606941,
- 0.0001552483590785414,
- -1.311442510143479e-8,
- -0.0024025957100093365,
- 0.03159447759389877,
- -0.033031564205884933,
- 0.014630280435085297,
- 0.03360547125339508,
- 0.07191187143325806,
- 0.03122108243405819,
- 0.012700366787612438,
- 0.01805267296731472,
- -0.02259204350411892,
- 0.015105100348591805,
- 0.001282145967707038,
- -0.0018066702177748084,
- -0.05765434354543686,
- -0.005268686451017857,
- -0.0720820352435112,
- -0.051071230322122574,
- 0.03549136593937874,
- -0.014694811776280403,
- 0.009179573506116867,
- 0.011886159889400005,
- -0.01180260069668293,
- 0.015873150900006294,
- 0.0962447002530098,
- -0.048604466021060944,
- -0.01497739925980568,
- 0.10226694494485855,
- 0.03408104553818703,
- 0.03469989448785782,
- 0.048817552626132965,
- 0.016350947320461273,
- 0.10763853788375854,
- 0.008814250119030476,
- -0.05013203248381615,
- -0.044369783252477646,
- -0.09867661446332932,
- -0.06501907110214233,
- -0.030769040808081627,
- 0.03645658120512962,
- -0.04389242082834244,
- -0.01341394055634737,
- 0.023667937144637108,
- -0.00011304332292638719,
- 0.012311470694839954,
- -0.006434651091694832,
- 0.025026073679327965,
- 0.0073737092316150665,
- -0.04173511639237404,
- -0.004587650299072266,
- -0.0618894025683403,
- -0.06364699453115463,
- -0.03155049309134483,
- -0.016987396404147148,
- 0.05854131653904915,
- -0.0072731440886855125,
- -0.005873552989214659,
- 0.043310947716236115,
- -0.029007192701101303,
- -0.04535796120762825,
- 0.04143553227186203,
- 0.10260548442602158,
- -0.005367856007069349,
- 0.05483391135931015,
- 0.0018916205735877156
- ]
- },
- {
- "keyword": "status",
- "type": "state",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.06464970111846924,
- 0.0510651059448719,
- -0.08051393181085587,
- -0.002835835563018918,
- -0.028969373553991318,
- -0.011688919737935066,
- 0.09005580097436905,
- 0.0026392056606709957,
- -0.0964353084564209,
- 0.017115071415901184,
- 0.017479555681347847,
- -0.02705090306699276,
- -0.01893272064626217,
- 0.02110321633517742,
- -0.04213794320821762,
- 0.002097132382914424,
- 0.046873558312654495,
- -0.05249166861176491,
- -0.1596309393644333,
- 0.013193516992032528,
- -0.062905453145504,
- 0.00010172490146942437,
- -0.04967911168932915,
- 0.03642645105719566,
- -0.05527229234576225,
- 0.05905996635556221,
- -0.023500001057982445,
- -0.013743683695793152,
- 0.025119083002209663,
- -0.10897721350193024,
- 0.0033250448759645224,
- -0.01965281553566456,
- 0.09257665276527405,
- -0.02607935108244419,
- 0.030475979670882225,
- 0.0024677880574017763,
- 0.07091955840587616,
- -0.0926482081413269,
- 0.018342288210988045,
- -0.0779554694890976,
- 0.019210925325751305,
- -0.08091653138399124,
- -0.07325997948646545,
- -0.005293982569128275,
- 0.050595253705978394,
- 0.023324349895119667,
- 0.002472990658134222,
- 0.025707820430397987,
- 0.045548632740974426,
- 0.01600632071495056,
- 0.005648608785122633,
- -0.004492218140512705,
- 0.04691924899816513,
- 0.056257858872413635,
- 0.02752007357776165,
- 0.0499630868434906,
- -0.0454978309571743,
- 0.0028898539021611214,
- 0.025356002151966095,
- 0.0037076547741889954,
- 0.07910880446434021,
- 0.0027416087687015533,
- -0.007319672964513302,
- 0.0497906357049942,
- 0.016967201605439186,
- -0.01364217046648264,
- 0.007937728427350521,
- -0.11830957978963852,
- 0.0017073909984901547,
- -0.061304207891225815,
- 0.026075609028339386,
- 0.058523550629615784,
- -0.042898569256067276,
- -0.04070601239800453,
- 0.01232063677161932,
- -0.0388617068529129,
- 0.026126336306333542,
- -0.01809501089155674,
- 0.1094450056552887,
- -0.01991722360253334,
- 0.0003036469279322773,
- -0.07223521918058395,
- -0.03916662558913231,
- 0.01590079627931118,
- 0.04436137154698372,
- 0.023688971996307373,
- -0.019534427672624588,
- 0.06721014529466629,
- -0.037496168166399,
- 0.012766825966536999,
- -0.02506084367632866,
- 0.09274397045373917,
- 0.10783077031373978,
- -0.0016109433490782976,
- -0.09466303884983063,
- 0.01827182248234749,
- 0.05245452746748924,
- 0.029391920194029808,
- -0.09601285308599472,
- 0.23644810914993286,
- 0.046141382306814194,
- 0.05816414952278137,
- -0.04415454342961311,
- -0.060168128460645676,
- -0.012637652456760406,
- -0.009274816140532494,
- 0.03755383566021919,
- 0.08448003232479095,
- -0.024557799100875854,
- -0.016348974779248238,
- -0.05125753581523895,
- -0.012700446881353855,
- -0.041288524866104126,
- 0.01113833487033844,
- -0.03009275160729885,
- 0.025395503267645836,
- 0.027753790840506554,
- 0.06720700860023499,
- 0.04400084167718887,
- -0.04800936207175255,
- 0.07603492587804794,
- -0.0038108695298433304,
- 0.013702995143830776,
- -0.0768679827451706,
- -0.03607269003987312,
- -0.05610758438706398,
- 0.04611455649137497,
- -4.225171915340675e-33,
- -0.0036985608749091625,
- -0.006274587474763393,
- -0.0002998747513629496,
- 0.07915472239255905,
- -0.018031446263194084,
- -0.0009198299958370626,
- 0.030622921884059906,
- -0.04998384788632393,
- -0.011660687625408173,
- -0.02642972022294998,
- 0.00629795016720891,
- 0.011936343275010586,
- -0.04600469768047333,
- -0.048345670104026794,
- -0.018611803650856018,
- -0.08882077783346176,
- 0.1089828610420227,
- 0.025615839287638664,
- -0.04461963102221489,
- 0.02446792460978031,
- 0.00648246007040143,
- 0.0217810720205307,
- -0.031200526282191277,
- 0.08989203721284866,
- 0.03817005828022957,
- 0.07295646518468857,
- 0.02055787853896618,
- -0.038420528173446655,
- -0.04012821242213249,
- 0.023436948657035828,
- 0.02366919256746769,
- -0.02344782091677189,
- -0.009571104310452938,
- -0.031865742057561874,
- -0.0004593196790665388,
- -0.002917252480983734,
- -0.03701292723417282,
- -0.033202990889549255,
- 0.005836633965373039,
- -0.09069985896348953,
- -0.0348801352083683,
- -0.007877441123127937,
- -0.1129220575094223,
- -0.02870970591902733,
- 0.011617274954915047,
- -0.0026790283154696226,
- 0.07686974108219147,
- 0.06735539436340332,
- 0.07946992665529251,
- 0.03380391001701355,
- -0.04640386998653412,
- 0.017507394775748253,
- -0.12853628396987915,
- -0.0809217169880867,
- -0.04442526027560234,
- 0.05277420952916145,
- -0.03169313818216324,
- -0.006070283241569996,
- 0.030501224100589752,
- -0.03668317198753357,
- 0.13474805653095245,
- 0.06195148825645447,
- -0.06285081803798676,
- -0.08688504248857498,
- -0.0052628410048782825,
- 0.03829767554998398,
- -0.02276056632399559,
- -0.009738601744174957,
- -0.00862054992467165,
- -0.049992356449365616,
- -0.03520605340600014,
- 0.03864027559757233,
- 0.06931572407484055,
- 0.036660850048065186,
- 0.032837022095918655,
- -0.003608629573136568,
- 0.011031498201191425,
- 0.003639643546193838,
- -0.029235590249300003,
- 0.03375306352972984,
- -0.04263031855225563,
- -0.012767727486789227,
- -0.05457495152950287,
- 0.033259548246860504,
- 0.10976596176624298,
- 0.09771786630153656,
- -0.01272621750831604,
- -0.034074049443006516,
- -0.053409840911626816,
- 0.045503512024879456,
- -0.07192175835371017,
- 0.0449245385825634,
- 0.004594471305608749,
- 0.01917564496397972,
- -0.009675607085227966,
- 3.363508842249014e-33,
- -0.005224515218287706,
- 0.0016979248030111194,
- -0.1329798698425293,
- 0.04226241260766983,
- -0.018702691420912743,
- -0.031851474195718765,
- 0.01660325936973095,
- 0.06528785079717636,
- -0.06541749089956284,
- 0.03961824253201485,
- 0.03214600309729576,
- 0.004020616877824068,
- 0.0001637161331018433,
- 0.012785006314516068,
- 0.017512232065200806,
- 0.04758276790380478,
- 0.05861389636993408,
- 0.008776652626693249,
- 0.028657590970396996,
- 0.07222992181777954,
- -0.06425707042217255,
- -0.02764676697552204,
- -0.03458567336201668,
- 0.05403507873415947,
- -0.0707317665219307,
- 0.05928191915154457,
- 0.10843629390001297,
- 0.006272786296904087,
- -0.017900526523590088,
- -0.05435981974005699,
- 0.09097810089588165,
- -0.04298410937190056,
- -0.0837484821677208,
- 0.08157224208116531,
- 0.01651623100042343,
- -0.04001845791935921,
- 0.05073564499616623,
- -0.023853464052081108,
- -0.004858285654336214,
- 0.033800821751356125,
- 0.027685126289725304,
- 0.031134236603975296,
- -0.038863688707351685,
- 0.17004171013832092,
- 0.01652318425476551,
- 0.01243457943201065,
- 0.03866218030452728,
- -0.003132839687168598,
- -0.06709305197000504,
- 0.00005554187737288885,
- 0.0360516719520092,
- -0.010016988031566143,
- 0.01070172805339098,
- 0.09629599004983902,
- 0.05389847233891487,
- 0.01881987228989601,
- -0.0642947256565094,
- -0.005891428329050541,
- -0.10182347893714905,
- 0.00013626051077153534,
- 0.01042257435619831,
- 0.044590555131435394,
- -0.06300301849842072,
- -0.004157594405114651,
- 0.016273707151412964,
- -0.003441276727244258,
- 0.031122267246246338,
- -0.005136040970683098,
- 0.026465488597750664,
- -0.04057785123586655,
- 0.04214536398649216,
- -0.07793720066547394,
- -0.0038866864051669836,
- 0.021299531683325768,
- 0.0640248954296112,
- -0.018125589936971664,
- -0.06794100999832153,
- -0.02474321611225605,
- 0.021627318114042282,
- 0.07836366444826126,
- -0.10243698209524155,
- 0.0005827156128361821,
- -0.0207836776971817,
- -0.027507496997714043,
- 0.03020777739584446,
- -0.04585279896855354,
- 0.05392427742481232,
- 0.04304884746670723,
- 0.04111562296748161,
- -0.05674924701452255,
- 0.003812168026342988,
- 0.01531313918530941,
- -0.04329703748226166,
- -0.017237432301044464,
- -0.05072706937789917,
- -1.3248915742281042e-8,
- -0.011085420846939087,
- 0.0069574955850839615,
- -0.1028842031955719,
- -0.06330583244562149,
- 0.08220896124839783,
- 0.10173489153385162,
- -0.020449919626116753,
- -0.06997760385274887,
- 0.032269202172756195,
- 0.0719008594751358,
- -0.039088379591703415,
- -0.034137703478336334,
- -0.04948597773909569,
- -0.04611453786492348,
- 0.08822252601385117,
- -0.028843609616160393,
- -0.07234782725572586,
- 0.07270283997058868,
- -0.011578203178942204,
- 0.01481621153652668,
- -0.033729344606399536,
- -0.052069105207920074,
- 0.04067862033843994,
- 0.015240437351167202,
- 0.033025868237018585,
- -0.0008066435111686587,
- 0.011468645185232162,
- 0.04714956507086754,
- -0.017234425991773605,
- 0.03555697202682495,
- 0.004535357467830181,
- 0.06978661566972733,
- 0.02768298238515854,
- -0.05436567962169647,
- 0.03147388622164726,
- -0.05310268700122833,
- -0.05427198112010956,
- 0.034886494278907776,
- 0.038677796721458435,
- 0.006116893608123064,
- 0.016696346923708916,
- -0.023635724559426308,
- 0.01692616567015648,
- 0.01363159529864788,
- 0.016960736364126205,
- 0.045215439051389694,
- 0.003412055317312479,
- -0.05553071200847626,
- -0.033977944403886795,
- -0.08490032702684402,
- 0.013152234256267548,
- -0.04888962581753731,
- 0.040495965629816055,
- 0.06487813591957092,
- -0.009397399611771107,
- 0.027832645922899246,
- 0.025522947311401367,
- -0.013587245717644691,
- -0.02582687698304653,
- 0.0032590993214398623,
- 0.16559717059135437,
- -0.03872962296009064,
- -0.0026540213730186224,
- 0.061783961951732635
- ]
- },
- {
- "keyword": "condition",
- "type": "state",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.022415243089199066,
- 0.12860147655010223,
- 0.023008570075035095,
- 0.015458528883755207,
- -0.04576116427779198,
- 0.04802892357110977,
- 0.15417519211769104,
- 0.02160201407968998,
- -0.025301653891801834,
- -0.0011612445814535022,
- 0.062237173318862915,
- -0.10908184945583344,
- 0.057249974459409714,
- -0.008266523480415344,
- -0.015119614079594612,
- -0.01643836684525013,
- 0.04859687015414238,
- -0.05593963712453842,
- -0.10670114308595657,
- -0.01392658893018961,
- -0.04432728514075279,
- -0.0008305367082357407,
- -0.04937225952744484,
- 0.04613078758120537,
- -0.054958242923021317,
- 0.031155232340097427,
- 0.05553891137242317,
- -0.025588275864720345,
- 0.08183233439922333,
- -0.04557127505540848,
- -0.0408620648086071,
- 0.057465892285108566,
- -0.023035891354084015,
- -0.007902098819613457,
- 0.028619449585676193,
- -0.06887385994195938,
- -0.04259904474020004,
- -0.07498189061880112,
- -0.018450746312737465,
- -0.0019458802416920662,
- -0.05463937297463417,
- -0.12860645353794098,
- -0.007539201527833939,
- -0.021671444177627563,
- -0.0087125850841403,
- 0.050787169486284256,
- 0.0036378749646246433,
- 0.11730076372623444,
- 0.05005943775177002,
- -0.007125457748770714,
- -0.007092327810823917,
- -0.046377185732126236,
- -0.020475853234529495,
- -0.015314117074012756,
- 0.07252306491136551,
- -0.011274440214037895,
- -0.08988206833600998,
- -0.013281605206429958,
- -0.02109195664525032,
- 0.04897168278694153,
- 0.07752155512571335,
- -0.026364900171756744,
- -0.02083536423742771,
- 0.03701148182153702,
- 0.1363534927368164,
- 0.020272275432944298,
- -0.03321295231580734,
- -0.04524349048733711,
- -0.018687736243009567,
- 0.07883543521165848,
- 0.00963192991912365,
- 0.00018452720541972667,
- -0.03233197331428528,
- 0.01747451163828373,
- -0.02918989025056362,
- -0.010224065743386745,
- 0.06824404746294022,
- -0.11457739770412445,
- 0.05360674485564232,
- 0.0332290381193161,
- -0.04846711456775665,
- -0.03772028535604477,
- -0.055755991488695145,
- 0.012096571736037731,
- 0.002100178273394704,
- -0.01684577576816082,
- 0.013302295468747616,
- 0.025809498503804207,
- 0.015166339464485645,
- 0.006324571557343006,
- -0.006417548283934593,
- 0.006779899355024099,
- -0.03454054892063141,
- -0.04910203069448471,
- -0.03242170810699463,
- 0.020353123545646667,
- 0.010161702521145344,
- 0.020237985998392105,
- -0.028661785647273064,
- 0.27223506569862366,
- -0.04043412208557129,
- -0.0186881422996521,
- 0.0595872662961483,
- -0.0489393025636673,
- -0.011249014176428318,
- -0.020628727972507477,
- -0.005528376437723637,
- -0.022428438067436218,
- -0.05118246749043465,
- -0.001343033043667674,
- -0.005321020260453224,
- -0.01270030252635479,
- 0.07152475416660309,
- 0.0016165737761184573,
- 0.033031824976205826,
- -0.04127239063382149,
- 0.0734468623995781,
- 0.035623952746391296,
- -0.0027801545802503824,
- -0.0866161361336708,
- 0.06605354696512222,
- -0.008603041060268879,
- -0.011428036727011204,
- -0.024409452453255653,
- -0.07782008498907089,
- -0.10948021709918976,
- 0.053700823336839676,
- -3.337539967987442e-33,
- -0.010106743313372135,
- -0.072336845099926,
- -0.048371993005275726,
- -0.015822675079107285,
- -0.03555388003587723,
- 0.004009441006928682,
- -0.05220877379179001,
- 0.0017900895327329636,
- 0.012476779520511627,
- 0.0037071506958454847,
- 0.023185720667243004,
- -0.004169860389083624,
- -0.023522874340415,
- -0.055551677942276,
- -0.014697054401040077,
- -0.017882544547319412,
- 0.0880938246846199,
- -0.004813604522496462,
- 0.014310663565993309,
- -0.006209523417055607,
- -0.05296538397669792,
- -0.041039057075977325,
- -0.025497980415821075,
- 0.10134667903184891,
- 0.008189856074750423,
- -0.0650276467204094,
- 0.0014585956232622266,
- -0.10140108317136765,
- 0.0028245847206562757,
- -0.003812310518696904,
- 0.07461188733577728,
- 0.012774040922522545,
- -0.05925595015287399,
- -0.055513739585876465,
- 0.022111939266324043,
- 0.04339179769158363,
- -0.010736155323684216,
- 0.006060839165002108,
- 0.07503178715705872,
- 0.03739849105477333,
- -0.05801042914390564,
- -0.001712536672130227,
- 0.02459925413131714,
- -0.03387625142931938,
- 0.08766946196556091,
- -0.06897178292274475,
- 0.06790212541818619,
- 0.04239529371261597,
- -0.04249207675457001,
- 0.031899675726890564,
- -0.015576798468828201,
- -0.0016860869945958257,
- -0.11288587749004364,
- -0.02617921121418476,
- -0.033804088830947876,
- -0.018379926681518555,
- -0.028630724176764488,
- 0.0277298204600811,
- 0.007079155184328556,
- 0.06032440438866615,
- 0.038747310638427734,
- 0.022676769644021988,
- -0.03621155023574829,
- -0.039524927735328674,
- -0.031833864748477936,
- -0.012423116713762283,
- 0.006232989486306906,
- -0.052531156688928604,
- -0.04652440920472145,
- -0.08065913617610931,
- -0.0054292939603328705,
- -0.06566229462623596,
- 0.06374967098236084,
- -0.0009679006761871278,
- 0.0060699088498950005,
- -0.030438387766480446,
- 0.05198274180293083,
- 0.055768176913261414,
- -0.04390874132514,
- -0.06162627786397934,
- -0.08513123542070389,
- -0.006081064231693745,
- 0.06520762294530869,
- 0.024422308430075645,
- 0.046505190432071686,
- 0.04773815721273422,
- 0.021784156560897827,
- -0.02925383672118187,
- -0.030214941129088402,
- 0.0061230468563735485,
- -0.03204283490777016,
- -0.025907203555107117,
- 0.017825579270720482,
- 0.09402187913656235,
- 0.13158680498600006,
- 2.2633888422403827e-33,
- 0.006562212016433477,
- 0.0038897113408893347,
- -0.07082350552082062,
- -0.00686966348439455,
- 0.029776407405734062,
- 0.0009895386174321175,
- 0.059174347668886185,
- -0.02043323963880539,
- -0.05027258023619652,
- 0.024454981088638306,
- 0.04759396240115166,
- 0.027164479717612267,
- 0.04026665911078453,
- 0.00269438698887825,
- -0.020158473402261734,
- 0.10972324758768082,
- 0.006776015739887953,
- 0.015301141887903214,
- -0.007086284924298525,
- 0.03395802155137062,
- -0.06770983338356018,
- 0.03559362143278122,
- -0.010022075846791267,
- 0.06057528406381607,
- -0.07035531848669052,
- 0.030019529163837433,
- -0.014319801703095436,
- -0.039930108934640884,
- -0.09438411146402359,
- -0.014683788642287254,
- 0.020722685381770134,
- -0.10039591789245605,
- -0.04309249669313431,
- 0.006824202835559845,
- -0.06706096231937408,
- -0.039691176265478134,
- 0.06314221024513245,
- -0.02780819498002529,
- -0.033713746815919876,
- 0.06523583084344864,
- 0.046325284987688065,
- 0.019762111827731133,
- 0.08255142718553543,
- 0.16013050079345703,
- -0.0014961297856643796,
- -0.03320596367120743,
- 0.09046751260757446,
- -0.056852832436561584,
- 0.11391007900238037,
- -0.012226422317326069,
- 0.06898445636034012,
- -0.01768731325864792,
- 0.04730844870209694,
- 0.0577160008251667,
- -0.021134182810783386,
- -0.021348755806684494,
- -0.07888909429311752,
- -0.013984155841171741,
- -0.028096502646803856,
- -0.008845782838761806,
- -0.02296292595565319,
- 0.06293853372335434,
- -0.0429685078561306,
- -0.01419435441493988,
- 0.003951496444642544,
- -0.018650226294994354,
- 0.01738886721432209,
- 0.034399304538965225,
- 0.04281262308359146,
- 0.02776431292295456,
- 0.10283606499433517,
- -0.004031759686768055,
- -0.006043972447514534,
- -0.00965380109846592,
- -0.022423669695854187,
- 0.031183503568172455,
- -0.04167160391807556,
- 0.0392591692507267,
- 0.011169353500008583,
- 0.09011069685220718,
- -0.09777136892080307,
- 0.020452409982681274,
- -0.029005181044340134,
- 0.040114957839250565,
- -0.0707884132862091,
- -0.017562558874487877,
- 0.07196962088346481,
- -0.00018642695795278996,
- 0.005127632990479469,
- 0.02507500723004341,
- -0.006724895443767309,
- 0.044815581291913986,
- -0.018444456160068512,
- -0.15922318398952484,
- -0.0012107378570362926,
- -1.310163177947743e-8,
- -0.021229974925518036,
- -0.08943702280521393,
- 0.009004323743283749,
- -0.05961998552083969,
- 0.1076568216085434,
- 0.0049117011949419975,
- 0.05887492001056671,
- -0.055114392191171646,
- 0.026321005076169968,
- 0.04309118539094925,
- 0.024281898513436317,
- 0.054710131138563156,
- -0.00211249478161335,
- -0.00370003585703671,
- -0.012678395956754684,
- -0.041277945041656494,
- -0.045635852962732315,
- 0.03849618881940842,
- -0.010665475390851498,
- 0.014596677385270596,
- 0.0005052998894825578,
- -0.057974185794591904,
- 0.03378494083881378,
- 0.07052845507860184,
- -0.0434054359793663,
- 0.05664708465337753,
- 0.04571206867694855,
- -0.08141870051622391,
- 0.0233115516602993,
- 0.08810523897409439,
- 0.032387424260377884,
- 0.08190058916807175,
- 0.019625626504421234,
- -0.09572486579418182,
- -0.02327600307762623,
- -0.00022732569777872413,
- 0.024903221055865288,
- 0.03845347836613655,
- 0.0006897035054862499,
- -0.026096049696207047,
- 0.012156185694038868,
- 0.027048036456108093,
- -0.007631718646734953,
- 0.007233920972794294,
- 0.03466697037220001,
- -0.08099137246608734,
- 0.034080952405929565,
- -0.06888184696435928,
- -0.012682934291660786,
- -0.03131992369890213,
- -0.015352504327893257,
- -0.000022397274733521044,
- 0.045207321643829346,
- 0.06400341540575027,
- -0.05779261142015457,
- -0.03659855201840401,
- 0.017755238339304924,
- 0.0720677450299263,
- -0.06058654189109802,
- -0.0013303940650075674,
- 0.10542463511228561,
- 0.036136727780103683,
- -0.022679448127746582,
- 0.024274088442325592
- ]
- },
- {
- "keyword": "active",
- "type": "state",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- -0.023983130231499672,
- -0.07203296571969986,
- -0.06025441735982895,
- 0.052638959139585495,
- 0.00710676982998848,
- -0.05933206155896187,
- 0.09718554466962814,
- 0.02952270768582821,
- -0.02594578079879284,
- 0.05298641324043274,
- 0.01312860008329153,
- -0.03915197029709816,
- -0.021329352632164955,
- 0.01367263775318861,
- 0.08150875568389893,
- 0.04025987163186073,
- -0.008592020720243454,
- 0.0008517774986103177,
- -0.09189757704734802,
- -0.02048330567777157,
- -0.07611934095621109,
- -0.020609460771083832,
- -0.03470302000641823,
- 0.03908724710345268,
- 0.0035577588714659214,
- -0.02638547308743,
- 0.020382573828101158,
- 0.09322860091924667,
- -0.06612628698348999,
- -0.07562554627656937,
- -0.010628271847963333,
- -0.01602611318230629,
- 0.10944090783596039,
- -0.026471532881259918,
- 0.041620269417762756,
- -0.04884666949510574,
- -0.024474017322063446,
- -0.0054803029634058475,
- -0.033140067011117935,
- -0.048993486911058426,
- 0.01927143894135952,
- -0.1470368653535843,
- -0.022998586297035217,
- -0.024516617879271507,
- 0.010758204385638237,
- 0.06382158398628235,
- -0.048552047461271286,
- 0.002541068708524108,
- 0.03265642002224922,
- 0.021409228444099426,
- 0.017374180257320404,
- -0.018007230013608932,
- -0.01821335032582283,
- 0.014058934524655342,
- -0.007659676484763622,
- 0.08111543953418732,
- -0.05881848931312561,
- -0.02793433703482151,
- 0.03440568596124649,
- -0.03867903724312782,
- 0.08424601703882217,
- 0.005703917238861322,
- -0.09771373867988586,
- 0.02549140155315399,
- 0.018101003021001816,
- 0.002811553655192256,
- 0.05093243718147278,
- -0.069495290517807,
- -0.006108419504016638,
- -0.0681719034910202,
- 0.01583840511739254,
- 0.04012686386704445,
- -0.03799733147025108,
- -0.03482760116457939,
- 0.034835122525691986,
- -0.10264857113361359,
- 0.048702821135520935,
- -0.031070953235030174,
- 0.09165945649147034,
- -0.010256675072014332,
- 0.016710562631487846,
- -0.007459480315446854,
- -0.05030437558889389,
- -0.03600482642650604,
- -0.007914794608950615,
- 0.016867388039827347,
- -0.02975228987634182,
- -0.01016913540661335,
- -0.020789247006177902,
- 0.030757872387766838,
- -0.04266490787267685,
- 0.1522241085767746,
- 0.09659089893102646,
- 0.0009942244505509734,
- -0.10031276941299438,
- -0.0018155835568904877,
- 0.07801059633493423,
- 0.025448596104979515,
- -0.1332205981016159,
- 0.2838532328605652,
- 0.06011784076690674,
- 0.10176575183868408,
- -0.02075350470840931,
- -0.009150967933237553,
- -0.0021301470696926117,
- 0.0219113826751709,
- -0.03386754170060158,
- 0.0895465612411499,
- -0.02289409004151821,
- 0.01073170080780983,
- -0.047824960201978683,
- -0.0031862605828791857,
- 0.03377142176032066,
- 0.08287043869495392,
- 0.017702750861644745,
- 0.07253376394510269,
- -0.03726141154766083,
- 0.02490532398223877,
- 0.07583294063806534,
- -0.09273947775363922,
- 0.02106577344238758,
- -0.05833657830953598,
- 0.004344952758401632,
- -0.10993966460227966,
- -0.04714952036738396,
- -0.1022610291838646,
- -0.017158063128590584,
- -3.8512721415990606e-33,
- 0.05209137499332428,
- -0.06875067204236984,
- -0.0006533280247822404,
- 0.0984724834561348,
- -0.05163009464740753,
- 0.011755700223147869,
- 0.08536766469478607,
- -0.04071571305394173,
- -0.03945225849747658,
- 0.0548841618001461,
- 0.006478506606072187,
- 0.09573101252317429,
- 0.009993134997785091,
- 0.028858279809355736,
- 0.05282336100935936,
- -0.04693984240293503,
- 0.03780978545546532,
- 0.01942405290901661,
- -0.02865731716156006,
- 0.07206269353628159,
- -0.0019273438956588507,
- 0.028739934787154198,
- -0.03767247125506401,
- 0.1011376827955246,
- -0.05951615795493126,
- -0.021170509979128838,
- -0.0036196343135088682,
- -0.11005275696516037,
- -0.02229536697268486,
- 0.05455869063735008,
- 0.020816612988710403,
- -0.03541487082839012,
- -0.06647335737943649,
- 0.03660212829709053,
- -0.0215117409825325,
- 0.014366783201694489,
- -0.00989807490259409,
- -0.049439866095781326,
- -0.004266669973731041,
- -0.07635592669248581,
- 0.03907554969191551,
- 0.06662457436323166,
- 0.015036176890134811,
- -0.004117351025342941,
- 0.002527230652049184,
- 0.03178912401199341,
- 0.07859154045581818,
- 0.020723465830087662,
- 0.005333253648132086,
- 0.05770547315478325,
- -0.043728962540626526,
- -0.04570663720369339,
- -0.06052703037858009,
- -0.05344291776418686,
- -0.043846383690834045,
- -0.03138096258044243,
- -0.015115723945200443,
- 0.04550101235508919,
- 0.0028448477387428284,
- -0.00997277069836855,
- 0.11410614848136902,
- 0.07313106209039688,
- -0.021682720631361008,
- -0.001847660867497325,
- -0.03111783228814602,
- 0.04568149149417877,
- 0.03912085294723511,
- -0.04056302458047867,
- 0.005402528680860996,
- -0.07052227109670639,
- -0.006354159209877253,
- 0.05737469345331192,
- 0.1230834573507309,
- 0.0465657040476799,
- 0.07673267275094986,
- 0.009325298480689526,
- -0.002519035479053855,
- 0.012153438292443752,
- -0.04146415740251541,
- 0.07485824823379517,
- -0.02340562455356121,
- -0.041082385927438736,
- -0.09249322861433029,
- 0.05526334047317505,
- -0.03445497900247574,
- -0.0028564236126840115,
- -0.013787857256829739,
- -0.05076925829052925,
- -0.00679044472053647,
- 0.08594906330108643,
- -0.03126899525523186,
- 0.04040205106139183,
- 0.023555614054203033,
- 0.040928009897470474,
- -0.03000067174434662,
- 4.3358127497179306e-33,
- 0.016536757349967957,
- 0.05047686770558357,
- -0.058174017816782,
- 0.030065860599279404,
- -0.046675581485033035,
- 0.018823476508259773,
- 0.05857224017381668,
- 0.0030822246335446835,
- -0.011179417371749878,
- 0.015238570049405098,
- 0.0419781357049942,
- -0.014025957323610783,
- 0.0035504319239407778,
- 0.013040464371442795,
- 0.06287635862827301,
- 0.0498514398932457,
- -0.0020061503164470196,
- -0.001033163396641612,
- -0.044072382152080536,
- 0.032882530242204666,
- -0.11287537962198257,
- 0.033903349190950394,
- -0.09058698266744614,
- -0.009656679816544056,
- 0.013875726610422134,
- 0.021408354863524437,
- 0.04686276987195015,
- 0.018872013315558434,
- -0.01170165091753006,
- 0.007847720757126808,
- 0.01657562516629696,
- 0.01918521150946617,
- -0.053464289754629135,
- 0.0198463536798954,
- -0.02611563354730606,
- 0.12177171558141708,
- 0.09742815047502518,
- 0.041457172483205795,
- 0.04121026769280434,
- -0.03285516798496246,
- 0.04950569570064545,
- 0.011973503977060318,
- -0.04581878334283829,
- 0.10520412027835846,
- -0.029533879831433296,
- 0.05428067222237587,
- 0.006553124636411667,
- 0.012473628856241703,
- -0.0659513771533966,
- 0.07907602936029434,
- -0.022031866014003754,
- -0.015589972026646137,
- 0.05213749036192894,
- -0.05075688660144806,
- 0.013164208270609379,
- 0.03274427354335785,
- -0.05372054502367973,
- 0.014621318317949772,
- -0.011194037273526192,
- -0.023471219465136528,
- 0.02047870308160782,
- 0.04044944420456886,
- 0.011636779643595219,
- -0.021008282899856567,
- -0.03190610557794571,
- -0.03035350888967514,
- 0.009255962446331978,
- 0.02128824219107628,
- -0.002358051249757409,
- -0.07932973653078079,
- 0.012230896390974522,
- -0.017192132771015167,
- -0.027267154306173325,
- -0.00919097289443016,
- 0.006329129450023174,
- -0.06597816944122314,
- -0.033719442784786224,
- -0.03051004745066166,
- -0.015901291742920876,
- 0.03405258059501648,
- -0.09552401304244995,
- -0.022639991715550423,
- 0.012962895445525646,
- -0.01935894601047039,
- -0.04208571836352348,
- -0.014482044614851475,
- 0.006723011843860149,
- -0.006065107882022858,
- -0.003489315276965499,
- -0.036474257707595825,
- 0.005247070454061031,
- 0.059662170708179474,
- 0.04829947277903557,
- -0.05212690308690071,
- -0.0262902919203043,
- -1.2449397068792223e-8,
- 0.03214985132217407,
- 0.09840547293424606,
- 0.012577342800796032,
- -0.002434917725622654,
- 0.08455181866884232,
- 0.09421622008085251,
- -0.011635777540504932,
- 0.0030253659933805466,
- 0.014907807111740112,
- 0.018871018663048744,
- -0.0018466503825038671,
- 0.023081721737980843,
- 0.03509832173585892,
- -0.008656863123178482,
- 0.08839782327413559,
- -0.0615309476852417,
- -0.0642094835639,
- 0.029386404901742935,
- -0.10020620375871658,
- 0.011259638704359531,
- 0.01988419145345688,
- -0.01616733707487583,
- 0.008541545830667019,
- -0.012358496896922588,
- -0.0016518605407327414,
- -0.0030246851965785027,
- 0.03272412717342377,
- -0.008830823004245758,
- 0.04420716315507889,
- 0.018095025792717934,
- -0.0008619573200121522,
- 0.08331547677516937,
- -0.010633128695189953,
- -0.060891177505254745,
- -0.060197800397872925,
- -0.059061452746391296,
- -0.06414297968149185,
- -0.009102354757487774,
- -0.0043907780200243,
- 0.002825906965881586,
- -0.003465704619884491,
- -0.07092869281768799,
- 0.07254236191511154,
- -0.03252078965306282,
- -0.0077384342439472675,
- 0.05461149290204048,
- -0.00950226653367281,
- -0.04273846372961998,
- -0.00830479059368372,
- -0.058903999626636505,
- -0.03018234111368656,
- -0.07563001662492752,
- 0.1114959567785263,
- 0.0429266020655632,
- -0.040658894926309586,
- -0.02389252744615078,
- 0.030690228566527367,
- 0.07162345200777054,
- -0.01817544549703598,
- 0.03592899441719055,
- 0.12729081511497498,
- 0.008192600682377815,
- -0.049373868852853775,
- 0.02385738678276539
- ]
- },
- {
- "keyword": "inactive",
- "type": "state",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- -0.05243147537112236,
- -0.06083042174577713,
- -0.07206863909959793,
- 0.0779087096452713,
- 0.026359539479017258,
- -0.033076342195272446,
- 0.11501184105873108,
- 0.013596254400908947,
- 0.010671311058104038,
- -0.02862757258117199,
- 0.032275933772325516,
- -0.013334290124475956,
- -0.0360722579061985,
- 0.007801189087331295,
- 0.08633582293987274,
- 0.04224037379026413,
- -0.047166261821985245,
- -0.01337365247309208,
- -0.10129322111606598,
- -0.044280312955379486,
- -0.12295765429735184,
- -0.03620471432805061,
- -0.06460705399513245,
- 0.007009496446698904,
- -0.0026361579075455666,
- -0.03484391048550606,
- -0.04172522947192192,
- 0.058741457760334015,
- -0.06005901098251343,
- -0.042528316378593445,
- -0.014836836606264114,
- -0.014470254071056843,
- 0.10013212263584137,
- -0.054035842418670654,
- 0.0252836961299181,
- -0.057420764118433,
- 0.03619171306490898,
- 0.0023723093327134848,
- -0.05905452370643616,
- -0.03439211845397949,
- -0.02913014590740204,
- -0.04332864657044411,
- -0.04660974070429802,
- 0.0009400129201821983,
- -0.0044932919554412365,
- -0.0026209158822894096,
- -0.047031085938215256,
- -0.02241896092891693,
- 0.03307637199759483,
- 0.02143872156739235,
- 0.03743879497051239,
- -0.0186789408326149,
- 0.03475320339202881,
- 0.05955960974097252,
- 0.008479518815875053,
- 0.036975469440221786,
- -0.021007100120186806,
- 0.036243755370378494,
- 0.050916917622089386,
- -0.03162132576107979,
- 0.07915429025888443,
- 0.034971628338098526,
- -0.07540461421012878,
- 0.028657708317041397,
- -0.007014003582298756,
- -0.02565700374543667,
- 0.05861836299300194,
- -0.07310997694730759,
- 0.037792932242155075,
- -0.041889261454343796,
- -0.05208130553364754,
- 0.02680339850485325,
- -0.07642650604248047,
- -0.024456052109599113,
- 0.0672273114323616,
- -0.07752451300621033,
- 0.08413989096879959,
- -0.032371096312999725,
- 0.1015949472784996,
- -0.02109849452972412,
- 0.011022388935089111,
- -0.07522693276405334,
- -0.054948095232248306,
- 0.022928625345230103,
- -0.06455586105585098,
- 0.047133542597293854,
- -0.023264456540346146,
- 0.05104708671569824,
- -0.03304845839738846,
- 0.009479211643338203,
- 0.04729365184903145,
- 0.1607576310634613,
- 0.08288735896348953,
- -0.003918888047337532,
- -0.04358246922492981,
- -0.02699890546500683,
- 0.04381855949759483,
- 0.05534973368048668,
- -0.16780801117420197,
- 0.3025124669075012,
- 0.00006119215686339885,
- 0.09591726213693619,
- -0.026336438953876495,
- -0.008542940020561218,
- -0.03193067014217377,
- 0.0506877526640892,
- -0.0068741231225430965,
- 0.04635666683316231,
- -0.03311953321099281,
- -0.008100654929876328,
- -0.025818655267357826,
- -0.025730321183800697,
- 0.012149443849921227,
- 0.015843423083424568,
- -0.00017896390636451542,
- 0.06857681274414062,
- -0.0022576097398996353,
- 0.0004425485385581851,
- 0.02993391640484333,
- -0.04835785552859306,
- 0.003281769109889865,
- -0.03588221222162247,
- 0.010930788703262806,
- -0.07628580927848816,
- -0.05126648396253586,
- -0.02168063074350357,
- -0.009399734437465668,
- -4.47209111588662e-33,
- 0.02123563177883625,
- -0.09387717396020889,
- -0.012083984911441803,
- 0.08617094159126282,
- -0.019857725128531456,
- -0.0007647908059880137,
- 0.05054812505841255,
- -0.036305490881204605,
- -0.007145734038203955,
- -0.0692916139960289,
- 0.01523856446146965,
- 0.04514223337173462,
- -0.030753782019019127,
- -0.027610160410404205,
- 0.06191299855709076,
- 0.002312106778845191,
- 0.1391691118478775,
- 0.04974459484219551,
- -0.0052801016718149185,
- 0.05750595033168793,
- 0.057209305465221405,
- 0.006751095876097679,
- -0.05208802595734596,
- 0.09631875902414322,
- 0.015241233631968498,
- 0.07544568926095963,
- -0.017683055251836777,
- -0.03406078740954399,
- -0.07134945690631866,
- 0.03823746368288994,
- 0.06463885307312012,
- -0.012727552093565464,
- -0.08664093911647797,
- 0.02470753714442253,
- 0.002358980942517519,
- -0.014317850582301617,
- -0.02285202220082283,
- 0.012486306019127369,
- 0.05185404047369957,
- -0.028110750019550323,
- 0.02524944581091404,
- 0.041795916855335236,
- 0.057619377970695496,
- -0.043876755982637405,
- -0.02658180706202984,
- -0.0036331661976873875,
- 0.10635985434055328,
- 0.025201646611094475,
- 0.07983547449111938,
- 0.04516322910785675,
- 0.006676060147583485,
- -0.008806685917079449,
- -0.07469192147254944,
- -0.0672590434551239,
- -0.0900992751121521,
- -0.04035935178399086,
- -0.06918299943208694,
- 0.0139433853328228,
- -0.011280132457613945,
- -0.016819143667817116,
- 0.13544778525829315,
- 0.06880315393209457,
- -0.014855279587209225,
- -0.05989886820316315,
- 0.01660810224711895,
- 0.019016209989786148,
- -0.04120957851409912,
- -0.05806548520922661,
- 0.0006238404312171042,
- -0.07235795259475708,
- 0.028886497020721436,
- 0.013508746400475502,
- 0.08602459728717804,
- 0.05655301362276077,
- 0.041337691247463226,
- 0.01609145663678646,
- -0.004620453808456659,
- 0.003084765048697591,
- -0.06995023787021637,
- 0.07552497088909149,
- -0.009716230444610119,
- -0.07117867469787598,
- -0.11349684000015259,
- 0.05309033393859863,
- 0.008902238681912422,
- 0.01858144998550415,
- -0.05979924649000168,
- 0.025870703160762787,
- -0.02664697729051113,
- 0.078337661921978,
- -0.0425528883934021,
- 0.015284457243978977,
- -0.04321880266070366,
- -0.014421774074435234,
- -0.003235153155401349,
- 4.086650559013823e-33,
- 0.00025770216598175466,
- 0.04654529690742493,
- -0.050535354763269424,
- -0.012537886388599873,
- -0.011618981137871742,
- -0.007669457234442234,
- 0.007624405901879072,
- 0.05510120093822479,
- -0.02931428886950016,
- 0.0372626930475235,
- 0.002754055894911289,
- 0.00786527432501316,
- 0.04173688590526581,
- 0.012286926619708538,
- 0.04061446711421013,
- 0.03230948746204376,
- -0.0510452501475811,
- 0.03030850552022457,
- -0.07919582724571228,
- 0.05688009783625603,
- -0.04232846572995186,
- 0.023295562714338303,
- -0.09284000098705292,
- -0.013081804849207401,
- -0.03853846341371536,
- 0.05051605775952339,
- -0.011124050244688988,
- 0.038223907351493835,
- -0.06087794527411461,
- -0.026835300028324127,
- 0.06510510295629501,
- 0.0005824299878440797,
- -0.018626293167471886,
- 0.0171169713139534,
- -0.0199165977537632,
- 0.1034957617521286,
- 0.006302940659224987,
- 0.04562278091907501,
- -0.010059175081551075,
- -0.04998662695288658,
- 0.0047411262057721615,
- 0.07729840278625488,
- 0.00014720526814926416,
- 0.05447779595851898,
- -0.01012254785746336,
- 0.10418630391359329,
- 0.04387400299310684,
- 0.004058876074850559,
- -0.05642161890864372,
- 0.096351757645607,
- -0.006144593469798565,
- 0.03864655643701553,
- 0.06758435070514679,
- 0.03496876358985901,
- 0.038998208940029144,
- 0.004772672429680824,
- -0.055213458836078644,
- -0.015941236168146133,
- -0.0009911231463775039,
- -0.0048897904343903065,
- 0.062043484300374985,
- 0.0367828905582428,
- -0.009540927596390247,
- 0.009029803797602654,
- -0.004138019401580095,
- -0.006998848635703325,
- 0.022992409765720367,
- 0.031057292595505714,
- -0.03921756520867348,
- -0.09580205380916595,
- -0.0003090269456151873,
- -0.00791498925536871,
- -0.027720892801880836,
- -0.03788650408387184,
- -0.007982315495610237,
- 0.018841978162527084,
- -0.048966825008392334,
- -0.029307402670383453,
- -0.008588489145040512,
- 0.037030450999736786,
- -0.09708673506975174,
- -0.014281018637120724,
- -0.018445586785674095,
- -0.036841411143541336,
- -0.002254633931443095,
- -0.046727538108825684,
- 0.031678102910518646,
- 0.02533375285565853,
- 0.04302196204662323,
- -0.0007943794480524957,
- 0.07703837752342224,
- 0.014972465112805367,
- -0.014598723500967026,
- 0.01665637269616127,
- -0.004464756231755018,
- -1.107123370758245e-8,
- 0.05613972246646881,
- 0.04819303750991821,
- -0.0030008479952812195,
- -0.01378453429788351,
- 0.07034507393836975,
- 0.029116151854395866,
- 0.05790841579437256,
- -0.021049367263913155,
- 0.014566867612302303,
- 0.037545640021562576,
- -0.019007587805390358,
- -0.040064454078674316,
- 0.00837169773876667,
- -0.06578000634908676,
- 0.13281239569187164,
- -0.04218010604381561,
- -0.015135380439460278,
- 0.04343642666935921,
- -0.08066197484731674,
- -0.00828991923481226,
- -0.014565795660018921,
- -0.025669384747743607,
- -0.017759177833795547,
- 0.049917951226234436,
- 0.013662783429026604,
- 0.0059761772863566875,
- 0.06314550340175629,
- -0.035554736852645874,
- 0.015052744187414646,
- 0.06542076170444489,
- 0.011110448278486729,
- 0.11827217042446136,
- 0.03938515484333038,
- -0.05780414864420891,
- -0.03896906226873398,
- -0.09178174287080765,
- -0.07071376591920853,
- -0.007892847061157227,
- -0.07236520946025848,
- -0.04159407690167427,
- 0.029937002807855606,
- -0.017097707837820053,
- 0.008858746849000454,
- -0.026930933818221092,
- 0.04559175297617912,
- -0.0059171137399971485,
- -0.008592445403337479,
- -0.05643661692738533,
- -0.027214007452130318,
- -0.019582029432058334,
- -0.06214773654937744,
- -0.06813502311706543,
- 0.0736989751458168,
- 0.05011192709207535,
- -0.04935678467154503,
- 0.023853173479437828,
- 0.013510746881365776,
- 0.05193981155753136,
- -0.03494371473789215,
- -0.021512113511562347,
- 0.09637138992547989,
- -0.031858980655670166,
- -0.05679098516702652,
- -0.03559495136141777
- ]
- },
- {
- "keyword": "pending",
- "type": "state",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- -0.080946184694767,
- -0.047946102917194366,
- -0.05344662442803383,
- 0.06031617522239685,
- -0.014859739691019058,
- -0.053859684616327286,
- 0.027992676943540573,
- 0.006221913266927004,
- 0.0015333463670685887,
- 0.08465584367513657,
- -0.002861665328964591,
- 0.016042977571487427,
- -0.05388367548584938,
- 0.008173300884664059,
- -0.061111412942409515,
- -0.025089897215366364,
- -0.042917124927043915,
- -0.034841328859329224,
- -0.06176401302218437,
- 0.02957417629659176,
- -0.05535692349076271,
- -0.054204124957323074,
- -0.04113812744617462,
- -0.02074085921049118,
- 0.02979958988726139,
- 0.02905346266925335,
- -0.00771046569570899,
- 0.018107488751411438,
- -0.04505565017461777,
- -0.08976104855537415,
- -0.014076992869377136,
- 0.030286002904176712,
- 0.08809027075767517,
- -0.04876096174120903,
- 0.0637136772274971,
- -0.008318759500980377,
- 0.063982293009758,
- -0.0018513391260057688,
- 0.05892907828092575,
- -0.02765757031738758,
- 0.019261976704001427,
- -0.08105041086673737,
- -0.03705857694149017,
- 0.03246072679758072,
- 0.04368520900607109,
- -0.010188338346779346,
- -0.02943321131169796,
- 0.013544249348342419,
- 0.02445768192410469,
- -0.0038691216614097357,
- -0.022452333942055702,
- -0.051312029361724854,
- -0.031735219061374664,
- -0.0023949197493493557,
- -0.061411064118146896,
- -0.031085584312677383,
- -0.02707483060657978,
- -0.028879154473543167,
- 0.058839134871959686,
- -0.06073974072933197,
- 0.060075368732213974,
- 0.04321938008069992,
- -0.0859677791595459,
- 0.05129458010196686,
- 0.01109786331653595,
- 0.01394937839359045,
- 0.06626393646001816,
- -0.016575898975133896,
- -0.009032712318003178,
- -0.035003721714019775,
- 0.027851605787873268,
- 0.10617142915725708,
- -0.03323235362768173,
- -0.012427088804543018,
- 0.025772014632821083,
- -0.029382577165961266,
- 0.07400792092084885,
- -0.0838596448302269,
- 0.004398714285343885,
- -0.03774493187665939,
- -0.026761433109641075,
- -0.011360765434801579,
- -0.035646867007017136,
- 0.009086557663977146,
- 0.04093562811613083,
- 0.046527083963155746,
- 0.022352570667862892,
- 0.02806599996984005,
- -0.0662788525223732,
- 0.025473035871982574,
- 0.03484835475683212,
- 0.053997062146663666,
- 0.003339409362524748,
- 0.00017380007193423808,
- -0.06618161499500275,
- 0.04919326305389404,
- -0.004215707071125507,
- -0.04467588663101196,
- -0.1642553061246872,
- 0.23235324025154114,
- 0.06332944333553314,
- -0.00611332431435585,
- -0.05281154811382294,
- -0.04409677907824516,
- -0.019533799961209297,
- -0.001786642475053668,
- 0.030458848923444748,
- 0.06142366677522659,
- 0.006867983844131231,
- -0.033474650233983994,
- -0.008258107118308544,
- 0.00993288867175579,
- 0.00622297590598464,
- 0.012286166660487652,
- -0.05328796058893204,
- 0.04997401311993599,
- 0.07103533297777176,
- 0.03629813343286514,
- 0.06832809001207352,
- -0.058161791414022446,
- 0.054615624248981476,
- 0.004437948577105999,
- 0.04446401819586754,
- -0.14143139123916626,
- -0.014325872994959354,
- -0.04143112152814865,
- 0.05156976357102394,
- -2.6566695790911798e-33,
- -0.055997900664806366,
- -0.060205068439245224,
- -0.023253142833709717,
- 0.04638423025608063,
- 0.020960133522748947,
- -0.02794473245739937,
- 0.06657900661230087,
- -0.04875921458005905,
- -0.02518146112561226,
- -0.015158888883888721,
- -0.017135467380285263,
- 0.032775163650512695,
- -0.03869811072945595,
- -0.023492872714996338,
- -0.025947345420718193,
- -0.11666279286146164,
- 0.06704524159431458,
- 0.024597641080617905,
- 0.027819756418466568,
- 0.008894508704543114,
- 0.018326323479413986,
- 0.05302419885993004,
- -0.06861131638288498,
- 0.10641860216856003,
- 0.008736579678952694,
- -0.007579375058412552,
- -0.006069664843380451,
- -0.06132371723651886,
- 0.06357569247484207,
- 0.07443638890981674,
- 0.026822319254279137,
- -0.013072493486106396,
- -0.08190441876649857,
- -0.00812358409166336,
- 0.015374989248812199,
- 0.1018909141421318,
- -0.07509563118219376,
- -0.04271933063864708,
- -0.011938587762415409,
- -0.10142740607261658,
- 0.017698582261800766,
- 0.02705494873225689,
- -0.10768697410821915,
- 0.027775218710303307,
- -0.018452338874340057,
- -0.014566270634531975,
- 0.05858343467116356,
- 0.010698885656893253,
- 0.07586167007684708,
- 0.012252286076545715,
- -0.03442562744021416,
- 0.004879026673734188,
- -0.08694726973772049,
- -0.019482295960187912,
- -0.06441543996334076,
- 0.0435631237924099,
- 0.009900187142193317,
- -0.014564930461347103,
- 0.017299925908446312,
- 0.007104290649294853,
- 0.06609169393777847,
- 0.11904770880937576,
- -0.017838479951024055,
- -0.04078925400972366,
- -0.030829112976789474,
- -0.031932033598423004,
- 0.012596995569765568,
- -0.001026380923576653,
- -0.0024305477272719145,
- -0.01973900757730007,
- -0.029233688488602638,
- 0.04534486308693886,
- 0.17540380358695984,
- -0.05380717292428017,
- 0.11038756370544434,
- -0.0642491951584816,
- -0.03710445016622543,
- -0.009974939748644829,
- -0.07554731518030167,
- -0.004006873816251755,
- -0.025306513532996178,
- 0.00612203823402524,
- -0.032303765416145325,
- 0.09419436752796173,
- 0.03536833077669144,
- 0.059230122715234756,
- 0.03424843028187752,
- -0.02799169160425663,
- -0.010081588290631771,
- 0.028762973845005035,
- -0.08935042470693588,
- 0.021461179479956627,
- -0.008458469063043594,
- 0.02638668194413185,
- -0.002726951614022255,
- 2.1503619380019504e-33,
- 0.03328445181250572,
- 0.021364057436585426,
- -0.04499007388949394,
- -0.0058324201963841915,
- 0.07302377372980118,
- 0.03384024649858475,
- -0.030112572014331818,
- 0.062231410294771194,
- 0.01273305993527174,
- -0.06757400929927826,
- -0.01721586100757122,
- -0.03123774193227291,
- 0.032596006989479065,
- -0.01811276376247406,
- 0.0410805381834507,
- 0.015008586458861828,
- 0.022300537675619125,
- 0.09465987980365753,
- 0.05221044644713402,
- 0.05384054780006409,
- -0.0859263688325882,
- -0.07002662867307663,
- -0.01201412919908762,
- 0.07030124217271805,
- -0.02189115434885025,
- 0.06385575979948044,
- 0.07565434277057648,
- 0.04021496698260307,
- 0.003578489413484931,
- 0.01534680649638176,
- 0.04968388006091118,
- -0.01282545831054449,
- -0.0785006657242775,
- 0.10669086873531342,
- 0.033124081790447235,
- 0.07474175095558167,
- 0.0162346214056015,
- 0.029699819162487984,
- -0.014331498183310032,
- 0.01372428797185421,
- 0.060095954686403275,
- 0.018378887325525284,
- 0.0038246691692620516,
- 0.10668963193893433,
- 0.004076202400028706,
- -0.04065452143549919,
- 0.06612234562635422,
- -0.007142514456063509,
- -0.028763888403773308,
- 0.03950868174433708,
- -0.038819778710603714,
- 0.02341531403362751,
- 0.03125818818807602,
- 0.025152338668704033,
- 0.0362570658326149,
- -0.024475475773215294,
- 0.0016503764782100916,
- -0.035858239978551865,
- 0.03461792320013046,
- 0.03320809453725815,
- -0.0029307110235095024,
- 0.10546178370714188,
- -0.046341970562934875,
- -0.09708046168088913,
- 0.004721608478575945,
- 0.029862020164728165,
- 0.09360910207033157,
- 0.0353747233748436,
- 0.09123456478118896,
- -0.0916503369808197,
- -0.002647971035912633,
- -0.053874559700489044,
- -0.09016718715429306,
- 0.02700481377542019,
- 0.07486388832330704,
- -0.06492137163877487,
- 0.05651109293103218,
- -0.016352301463484764,
- -0.022105371579527855,
- 0.05761373043060303,
- -0.015512173064053059,
- -0.023917334154248238,
- 0.014225024729967117,
- -0.019441064447164536,
- -0.013279623351991177,
- -0.014744735322892666,
- 0.052683889865875244,
- 0.05816271901130676,
- 0.04354172199964523,
- -0.08140327036380768,
- -0.03897913917899132,
- 0.05632917955517769,
- 0.05227312818169594,
- -0.06561480462551117,
- -0.03604913502931595,
- -1.2837637619611542e-8,
- 0.041039250791072845,
- -0.02261320687830448,
- -0.04306522756814957,
- -0.058726683259010315,
- 0.1074448898434639,
- 0.054863590747117996,
- 0.034938521683216095,
- -0.012288853526115417,
- -0.004568679723888636,
- -0.00004077048652106896,
- -0.05789272114634514,
- -0.04562157392501831,
- -0.0032679231371730566,
- 0.013115037232637405,
- 0.045794617384672165,
- -0.03847607970237732,
- -0.045370347797870636,
- 0.012590296566486359,
- -0.05449897050857544,
- -0.0227651409804821,
- 0.02148534543812275,
- -0.020141642540693283,
- 0.0740387961268425,
- -0.034951090812683105,
- 0.004491823259741068,
- 0.024538805708289146,
- 0.05291366949677467,
- 0.0411541685461998,
- -0.05145156756043434,
- 0.01496367808431387,
- -0.021170426160097122,
- 0.09767517447471619,
- 0.014903762377798557,
- -0.09631311893463135,
- 0.020187783986330032,
- -0.0876920148730278,
- -0.06322275847196579,
- 0.024301815778017044,
- -0.030491024255752563,
- 0.013817795552313328,
- 0.015144305303692818,
- -0.031413957476615906,
- 0.05543472245335579,
- -0.042849063873291016,
- 0.06749173253774643,
- 0.06251713633537292,
- -0.06366768479347229,
- -0.06555768847465515,
- -0.025139281526207924,
- 0.04228920862078667,
- -0.01078789308667183,
- -0.10892096906900406,
- 0.0396137535572052,
- 0.06739211082458496,
- -0.020103629678487778,
- 0.06700300425291061,
- 0.012911282479763031,
- -0.0444830060005188,
- -0.03464988246560097,
- 0.01645713858306408,
- 0.10144522041082382,
- -0.07174570858478546,
- -0.0708068385720253,
- 0.0518539622426033
- ]
- },
- {
- "keyword": "completed",
- "type": "state",
- "typeCategory": "noun",
- "confidence": 0.7,
- "isCanonical": true,
- "embedding": [
- -0.029614318162202835,
- 0.018907073885202408,
- 0.023349935188889503,
- -0.03598564490675926,
- -0.020618941634893417,
- -0.013054922223091125,
- 0.07491839677095413,
- 0.008874456398189068,
- -0.05950606241822243,
- -0.021743912249803543,
- -0.006185284815728664,
- -0.08209080249071121,
- -0.038665786385536194,
- 0.02336355485022068,
- -0.09995393455028534,
- -0.011185707524418831,
- -0.02222360111773014,
- 0.015357851050794125,
- -0.019206510856747627,
- -0.0009484392940066755,
- -0.06625033169984818,
- 0.057576656341552734,
- 0.028506414964795113,
- 0.03176891431212425,
- 0.025753427296876907,
- 0.09930926561355591,
- 0.0005378297646529973,
- 0.04011332243680954,
- -0.020152486860752106,
- -0.07655823975801468,
- 0.019196800887584686,
- 0.008037387393414974,
- 0.09826912730932236,
- -0.00158005824778229,
- 0.04227031394839287,
- 0.0013557461788877845,
- -0.03592764586210251,
- -0.032312482595443726,
- 0.018931550905108452,
- -0.049454040825366974,
- 0.007845559157431126,
- -0.12289678305387497,
- -0.03342597186565399,
- 0.09944936633110046,
- -0.01006567757576704,
- 0.06831597536802292,
- -0.054469555616378784,
- -0.028667239472270012,
- -0.028647543862462044,
- 0.07318641245365143,
- -0.0458727590739727,
- -0.029497811570763588,
- -0.07637744396924973,
- -0.015286996029317379,
- -0.02645450085401535,
- 0.03135382756590843,
- -0.033665940165519714,
- -0.06307010352611542,
- 0.05748674273490906,
- -0.021842123940587044,
- 0.05576131120324135,
- 0.03845102712512016,
- -0.04511111602187157,
- 0.03995339572429657,
- -0.00020380095520522445,
- -0.047308892011642456,
- 0.042991138994693756,
- -0.05539349094033241,
- -0.00010192565969191492,
- -0.0029325897339731455,
- 0.028556521981954575,
- 0.052004385739564896,
- -0.013165946118533611,
- -0.02376040443778038,
- 0.008341710083186626,
- 0.022214623168110847,
- -0.017583779990673065,
- -0.04339361935853958,
- 0.028101539239287376,
- -0.05518525093793869,
- -0.021277964115142822,
- 0.012591732665896416,
- -0.03945138305425644,
- -0.01879769004881382,
- -0.007744103204458952,
- -0.01400802843272686,
- -0.05265675485134125,
- 0.01385500282049179,
- 0.01223469153046608,
- -0.033714134246110916,
- 0.024583816528320312,
- 0.017100390046834946,
- 0.04104626923799515,
- -0.023643838241696358,
- -0.06707103550434113,
- 0.019647948443889618,
- 0.0022041983902454376,
- -0.034779924899339676,
- 0.012091568671166897,
- 0.22133895754814148,
- 0.03511478379368782,
- -0.04872986301779747,
- -0.11165933310985565,
- -0.031119829043745995,
- 0.030423244461417198,
- 0.009134133346378803,
- 0.02324264496564865,
- 0.0699739083647728,
- -0.06160256639122963,
- -0.09269494563341141,
- -0.037855733186006546,
- -0.006245375610888004,
- 0.06180276721715927,
- 0.06871912628412247,
- -0.03195049241185188,
- 0.071706123650074,
- 0.011987876147031784,
- -0.04184022545814514,
- 0.06034492328763008,
- -0.020596539601683617,
- 0.05111921951174736,
- -0.004321330226957798,
- -0.017055077478289604,
- -0.159577414393425,
- -0.06797227263450623,
- -0.06479817628860474,
- 0.07751762866973877,
- -1.5683495219838885e-33,
- 0.01166700478643179,
- 0.03755415230989456,
- -0.012260477989912033,
- 0.032433487474918365,
- 0.08476684242486954,
- -0.003911363426595926,
- 0.04252322018146515,
- -0.012503812089562416,
- -0.015084564685821533,
- 0.02824885956943035,
- -0.025541065260767937,
- 0.020424211397767067,
- -0.06928983330726624,
- -0.0225791335105896,
- -0.0829908549785614,
- -0.03975560516119003,
- 0.0907185897231102,
- 0.044192228466272354,
- -0.0252300463616848,
- 0.01953611709177494,
- 0.03492577373981476,
- 0.05441420525312424,
- 0.004974029026925564,
- 0.08164458721876144,
- 0.03208765760064125,
- -0.05073036998510361,
- -0.0023864153772592545,
- -0.03752387315034866,
- 0.003335295943543315,
- 0.012784780003130436,
- 0.1261630356311798,
- -0.03046015277504921,
- -0.04123342037200928,
- 0.033872030675411224,
- -0.047967687249183655,
- 0.03942900523543358,
- -0.0033635718282312155,
- -0.09782455116510391,
- -0.06063175946474075,
- -0.05681982636451721,
- -0.009814263321459293,
- -0.004669228568673134,
- -0.11781512945890427,
- -0.049114689230918884,
- -0.029299670830368996,
- -0.064192034304142,
- 0.11034906655550003,
- 0.05415062978863716,
- 0.13455960154533386,
- 0.07720243185758591,
- -0.09685400128364563,
- -0.05225580185651779,
- -0.07745041698217392,
- -0.06660066545009613,
- -0.05355731397867203,
- 0.04206215590238571,
- -0.05006489157676697,
- 0.04087463766336441,
- -0.058274686336517334,
- -0.01609797589480877,
- 0.0016791211673989892,
- 0.011053097434341908,
- -0.0512050986289978,
- -0.10927021503448486,
- -0.0005759680643677711,
- -0.030783001333475113,
- 0.06646903604269028,
- -0.02204679511487484,
- -0.006140170618891716,
- -0.04594206437468529,
- -0.10451432317495346,
- 0.012951003387570381,
- 0.1906980723142624,
- 0.092412568628788,
- 0.11649687588214874,
- -0.037086259573698044,
- -0.04645674675703049,
- 0.046101439744234085,
- -0.010325347073376179,
- 0.03245169296860695,
- -0.07128673046827316,
- 0.006161147728562355,
- -0.0684986487030983,
- -0.012024994008243084,
- -0.018831927329301834,
- 0.0620233416557312,
- 0.019558759406208992,
- -0.10450653731822968,
- -0.05818552151322365,
- 0.03378802537918091,
- 0.016640353947877884,
- 0.05464116483926773,
- 0.044673699885606766,
- 0.04562545195221901,
- -0.08881422132253647,
- 1.149773432400342e-33,
- 0.029382169246673584,
- -0.037262044847011566,
- -0.024560505524277687,
- 0.015541024506092072,
- 0.015280744060873985,
- 0.005739890038967133,
- -0.023607177659869194,
- -0.050560835748910904,
- -0.03318915516138077,
- 0.029396671801805496,
- 0.004505215212702751,
- 0.0585600882768631,
- -0.036871083080768585,
- -0.06583792716264725,
- -0.06264297664165497,
- 0.015191130340099335,
- 0.06079937890172005,
- 0.0033069602213799953,
- -0.012266634963452816,
- 0.0650983452796936,
- -0.02696814201772213,
- -0.012346776202321053,
- -0.022555535659193993,
- -0.006164449732750654,
- 0.004102327860891819,
- 0.0630517452955246,
- 0.04768072068691254,
- 0.029385630041360855,
- 0.10584067553281784,
- 0.024389438331127167,
- 0.057053495198488235,
- -0.0024256631731987,
- -0.08475024998188019,
- 0.036114469170570374,
- 0.0016227017622441053,
- 0.03656196594238281,
- 0.07295007258653641,
- 0.041851889342069626,
- 0.012236164882779121,
- 0.047381531447172165,
- 0.1362680345773697,
- 0.023048264905810356,
- 0.023685894906520844,
- 0.10949604213237762,
- 0.05808909982442856,
- -0.049667321145534515,
- -0.055564187467098236,
- -0.023646950721740723,
- -0.025270327925682068,
- 0.003963293042033911,
- 0.010262575000524521,
- 0.04307752102613449,
- -0.03126440569758415,
- 0.012183163315057755,
- 0.05753389000892639,
- -0.0025560660287737846,
- 0.05198819190263748,
- -0.005808721296489239,
- 0.004097037483006716,
- -0.00923468079417944,
- -0.06613560020923615,
- -0.018337368965148926,
- 0.03175186738371849,
- 0.058741968125104904,
- 0.03677044436335564,
- -0.05253325775265694,
- 0.04102373868227005,
- 0.07515011727809906,
- 0.03376375883817673,
- -0.03108680061995983,
- -0.062290165573358536,
- 0.0060019236989319324,
- -0.055933136492967606,
- 0.007395471911877394,
- 0.10980714857578278,
- -0.06614428013563156,
- 0.06770430505275726,
- -0.006583466660231352,
- -0.007586829364299774,
- 0.062366783618927,
- -0.004741036798804998,
- 0.01763113960623741,
- -0.02399098314344883,
- -0.030453165993094444,
- 0.0002698389580473304,
- -0.03993796929717064,
- 0.03645682334899902,
- 0.05582549422979355,
- -0.0045954701490700245,
- -0.019497785717248917,
- -0.03590357303619385,
- 0.08244116604328156,
- 0.08869390189647675,
- -0.025250496342778206,
- 0.011901349760591984,
- -1.4289669003630934e-8,
- -0.007615264505147934,
- -0.02307833358645439,
- -0.09572135657072067,
- -0.04123901575803757,
- 0.07727915048599243,
- 0.13010048866271973,
- -0.01773749850690365,
- 0.0023102753330022097,
- 0.0663042739033699,
- 0.006088240537792444,
- -0.02706095762550831,
- -0.00045068387407809496,
- -0.0579814612865448,
- 0.02949605882167816,
- -0.020858190953731537,
- -0.06942174583673477,
- -0.0725499764084816,
- 0.08416423201560974,
- 0.03569864481687546,
- -0.013444234617054462,
- 0.016149235889315605,
- -0.039478253573179245,
- 0.0033673050347715616,
- 0.0033891298808157444,
- 0.02455410547554493,
- 0.04015590250492096,
- 0.0020888412836939096,
- 0.02724807895720005,
- -0.02421102672815323,
- 0.041682422161102295,
- -0.009193725883960724,
- 0.01882767677307129,
- 0.02989959344267845,
- -0.03758356347680092,
- 0.055579207837581635,
- 0.03407961502671242,
- -0.03179941698908806,
- 0.04210453853011131,
- -0.03347131982445717,
- 0.013358217664062977,
- 0.05228203162550926,
- -0.04246803745627403,
- 0.07140009105205536,
- -0.035814445465803146,
- 0.03624289482831955,
- -0.012450049631297588,
- -0.005916296038776636,
- -0.025993552058935165,
- -0.00433783745393157,
- 0.031553447246551514,
- 0.02458045817911625,
- -0.06948526948690414,
- 0.025074100121855736,
- -0.05067221447825432,
- -0.09314803034067154,
- 0.042429499328136444,
- 0.030901432037353516,
- 0.00814492255449295,
- 0.04965304955840111,
- 0.016778042539954185,
- 0.06563960760831833,
- 0.013390230014920235,
- -0.07108313590288162,
- 0.04269760102033615
- ]
- },
- {
- "keyword": "role",
- "type": "role",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.03595643490552902,
- 0.060495197772979736,
- 0.017953600734472275,
- 0.01708858832716942,
- -0.05437980219721794,
- -0.007468570489436388,
- 0.14897696673870087,
- -0.033483393490314484,
- -0.015930812805891037,
- -0.04253682121634483,
- -0.014770487323403358,
- -0.039387691766023636,
- -0.0005935875233262777,
- 0.06573045253753662,
- 0.004687415901571512,
- -0.02195129357278347,
- -0.017104187980294228,
- 0.05824386700987816,
- -0.09576642513275146,
- -0.04024139791727066,
- -0.09270185232162476,
- -0.08147165924310684,
- 0.0219343863427639,
- -0.051372263580560684,
- -0.05659040808677673,
- -0.05110982432961464,
- -0.01438644528388977,
- 0.0009988350793719292,
- -0.02348330430686474,
- -0.1329110562801361,
- 0.04274334758520126,
- 0.02438255026936531,
- 0.0712997168302536,
- 0.027112074196338654,
- -0.09068912267684937,
- 0.10108083486557007,
- 0.059141986072063446,
- -0.03139578178524971,
- 0.025649206712841988,
- -0.03467230126261711,
- 0.003696007188409567,
- -0.007269907742738724,
- -0.023049987852573395,
- -0.035363681614398956,
- 0.02983216941356659,
- -0.0349823534488678,
- 0.11010024696588516,
- -0.02382555976510048,
- -0.03790270537137985,
- -0.004992519970983267,
- -0.021481620147824287,
- -0.009848404675722122,
- -0.027483638375997543,
- 0.09036900848150253,
- 0.03801736980676651,
- 0.022416090592741966,
- -0.0004406725347507745,
- -0.0759369432926178,
- -0.026920370757579803,
- -0.044179484248161316,
- 0.0218433178961277,
- 0.03421196714043617,
- -0.05080762505531311,
- 0.02485531195998192,
- 0.014850250445306301,
- -0.05680202320218086,
- -0.0064859287813305855,
- -0.08643843233585358,
- -0.10163611173629761,
- -0.046775128692388535,
- 0.03147004917263985,
- -0.041132476180791855,
- 0.01821235381066799,
- -0.02850182168185711,
- 0.05967092141509056,
- -0.05234763026237488,
- 0.0320529043674469,
- -0.04909798130393028,
- 0.0691671222448349,
- -0.017234953120350838,
- 0.14023099839687347,
- 0.020496916025877,
- -0.026279227808117867,
- 0.09786562621593475,
- -0.050543349236249924,
- -0.020400913432240486,
- -0.004649582784622908,
- -0.005136895924806595,
- -0.023520635440945625,
- 0.04934338107705116,
- 0.017403818666934967,
- 0.004411668982356787,
- 0.10913633555173874,
- 0.017442837357521057,
- -0.05814756080508232,
- 0.04093975946307182,
- 0.044947054237127304,
- 0.0035870231222361326,
- -0.027588699012994766,
- 0.24318860471248627,
- -0.0033928812481462955,
- -0.018296979367733,
- -0.03235827013850212,
- -0.003609230276197195,
- -0.06796340644359589,
- -0.005053455475717783,
- -0.03222056105732918,
- 0.004487977363169193,
- -0.030925331637263298,
- -0.010643236339092255,
- -0.03950653225183487,
- -0.018886679783463478,
- -0.09013637900352478,
- 0.07235642522573471,
- 0.05562489852309227,
- 0.007968820631504059,
- -0.049451254308223724,
- 0.04817676171660423,
- -0.008824181742966175,
- -0.03898749127984047,
- 0.07789517194032669,
- 0.08587093651294708,
- 0.014332330785691738,
- 0.056557729840278625,
- -0.012115688063204288,
- 0.0008162118028849363,
- 0.01353479828685522,
- -6.541170558265086e-33,
- -0.021280987188220024,
- -0.027808502316474915,
- 0.043215472251176834,
- 0.05683720111846924,
- 0.017983971163630486,
- 0.025545448064804077,
- 0.03469819203019142,
- 0.03522491082549095,
- -0.0903649851679802,
- 0.013522551394999027,
- -0.039419934153556824,
- -0.014677799306809902,
- -0.008056302554905415,
- 0.021110588684678078,
- 0.028642501682043076,
- 0.07154617458581924,
- 0.007049594074487686,
- 0.05800953507423401,
- -0.03255239874124527,
- 0.01317251194268465,
- -0.057292837649583817,
- 0.10254131257534027,
- -0.06681619584560394,
- 0.024629969149827957,
- 0.03577655553817749,
- -0.040503837168216705,
- 0.0006851707585155964,
- -0.038302525877952576,
- 0.022716641426086426,
- 0.04675727337598801,
- 0.01973341964185238,
- -0.006636008154600859,
- -0.13256768882274628,
- -0.012053201906383038,
- 0.023474372923374176,
- -0.009712074883282185,
- -0.06723242998123169,
- -0.08590717613697052,
- 0.0072473580949008465,
- -0.006390856113284826,
- -0.02603299170732498,
- -0.021714551374316216,
- -0.03697926178574562,
- 0.021312059834599495,
- -0.08174538612365723,
- -0.05228084325790405,
- 0.04660053923726082,
- 0.07353421300649643,
- -0.02917681634426117,
- 0.1093372255563736,
- -0.040267787873744965,
- -0.017283083871006966,
- 0.050233907997608185,
- -0.041546642780303955,
- 0.04363538324832916,
- -0.008000741712749004,
- 0.06852908432483673,
- 0.01811729557812214,
- -0.019703375175595284,
- -0.08323458582162857,
- 0.07132422924041748,
- 0.055775612592697144,
- -0.07078348845243454,
- 0.09813105314970016,
- -0.016053128987550735,
- -0.045292291790246964,
- 0.04599188268184662,
- -0.06206691265106201,
- 0.12422928959131241,
- -0.05101810023188591,
- -0.12239806354045868,
- 0.0069424002431333065,
- 0.07014355063438416,
- 0.02403176575899124,
- -0.06970018148422241,
- -0.03899286314845085,
- -0.04231708496809006,
- -0.008451450616121292,
- -0.004927311558276415,
- 0.08268674463033676,
- -0.034484125673770905,
- -0.04056141525506973,
- 0.017976783215999603,
- 0.027654526755213737,
- -0.026785392314195633,
- -0.05782468244433403,
- 0.015560651198029518,
- -0.10884594172239304,
- 0.026374051347374916,
- 0.03189689293503761,
- -0.07385727018117905,
- -0.02044660411775112,
- 0.00817648135125637,
- 0.1102760061621666,
- -0.03571460396051407,
- 4.599425072071506e-33,
- 0.025595007464289665,
- -0.05408453941345215,
- 0.030456796288490295,
- -0.013919370248913765,
- 0.02016153372824192,
- -0.03092268481850624,
- 0.02066522277891636,
- -0.0048146797344088554,
- 0.0013957773335278034,
- 0.07614342123270035,
- -0.00487550999969244,
- -0.02053707093000412,
- 0.037773460149765015,
- 0.0409473180770874,
- 0.00987552385777235,
- 0.031970489770174026,
- -0.01576569490134716,
- 0.002930997172370553,
- -0.02921867184340954,
- 0.02486494369804859,
- -0.036260124295949936,
- 0.004584593698382378,
- 0.04254011809825897,
- 0.0401199646294117,
- -0.028676273301243782,
- 0.028101535513997078,
- 0.06775770336389542,
- 0.028282424435019493,
- -0.014740902930498123,
- 0.025809168815612793,
- 0.005398373119533062,
- -0.02398308552801609,
- -0.05443945527076721,
- -0.038733091205358505,
- -0.07043760269880295,
- 0.06629649549722672,
- 0.004493229556828737,
- 0.006987994536757469,
- -0.025008974596858025,
- 0.012561573646962643,
- 0.0662953332066536,
- 0.019026603549718857,
- 0.05958281084895134,
- 0.0308623518794775,
- -0.042408689856529236,
- 0.028741255402565002,
- 0.09956221282482147,
- -0.024295080453157425,
- 0.006268846336752176,
- 0.07142683118581772,
- -0.09099274128675461,
- 0.015615513548254967,
- 0.004536663647741079,
- 0.015307712368667126,
- 0.05158858001232147,
- 0.06302279233932495,
- 0.03383424133062363,
- -0.05053986236453056,
- 0.043197717517614365,
- -0.008198041468858719,
- -0.026830485090613365,
- 0.05354879051446915,
- -0.016328318044543266,
- 0.006457693874835968,
- 0.020924294367432594,
- -0.010966948233544827,
- -0.04666720703244209,
- 0.034524738788604736,
- 0.0011462257243692875,
- -0.04532722383737564,
- 0.06295250356197357,
- -0.08440232276916504,
- 0.0071684918366372585,
- 0.018041003495454788,
- -0.08095789700746536,
- -0.06661972403526306,
- -0.148908793926239,
- -0.019313517957925797,
- -0.0473269484937191,
- 0.013358443044126034,
- -0.05041029676795006,
- -0.08188972622156143,
- -0.003679643850773573,
- 0.05102849751710892,
- -0.06139573082327843,
- 0.08718717843294144,
- 0.03417501598596573,
- -0.022824063897132874,
- 0.03439538553357124,
- -0.07196401059627533,
- 0.045394569635391235,
- 0.031184600666165352,
- -0.02397913485765457,
- -0.011777217499911785,
- 0.0007857566233724356,
- -1.2532609616755508e-8,
- -0.031031619757413864,
- 0.02694612182676792,
- -0.020497025921940804,
- -0.04312428459525108,
- 0.01912735588848591,
- -0.0001160379106295295,
- -0.04254387319087982,
- -0.012767522595822811,
- 0.06261789798736572,
- 0.17535105347633362,
- 0.009419986046850681,
- -0.0661579892039299,
- 0.059675220400094986,
- -0.04733702540397644,
- 0.146046981215477,
- -0.01783415861427784,
- -0.03679470717906952,
- 0.08275045454502106,
- -0.04587849974632263,
- -0.006415514275431633,
- 0.05688584968447685,
- 0.0162905752658844,
- -0.048890549689531326,
- -0.014929126016795635,
- -0.025798887014389038,
- 0.0010382800828665495,
- -0.10112080723047256,
- 0.07095461338758469,
- -0.025407813489437103,
- 0.10373500734567642,
- 0.02412344515323639,
- 0.056928325444459915,
- -0.0663565993309021,
- -0.013972883112728596,
- -0.029880503192543983,
- -0.010704899206757545,
- -0.005734991282224655,
- -0.030185991898179054,
- -0.002533617662265897,
- 0.031723037362098694,
- 0.014454392716288567,
- 0.050336383283138275,
- 0.04087940603494644,
- 0.03417125716805458,
- -0.022487865760922432,
- 0.010579862631857395,
- 0.014264286495745182,
- -0.016775691881775856,
- 0.019424838945269585,
- -0.018767397850751877,
- -0.003475771052762866,
- -0.014491589739918709,
- -0.024790097028017044,
- 0.04044715315103531,
- 0.01892124116420746,
- 0.0344805046916008,
- 0.02095438353717327,
- 0.012334165163338184,
- -0.06510540097951889,
- 0.04918915033340454,
- 0.12349744141101837,
- 0.03389328345656395,
- 0.027014436200261116,
- 0.005374423693865538
- ]
- },
- {
- "keyword": "position",
- "type": "role",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.015227846801280975,
- 0.05710805952548981,
- -0.006209940649569035,
- -0.061424143612384796,
- -0.025386381894350052,
- 0.05081700533628464,
- 0.08671844750642776,
- 0.046937957406044006,
- 0.05462314561009407,
- 0.013984487392008305,
- 0.029044045135378838,
- 0.010935296304523945,
- 0.06173333153128624,
- -0.02328522689640522,
- -0.00614041555672884,
- -0.014529571868479252,
- 0.01683725230395794,
- 0.04376352205872536,
- -0.006110707763582468,
- 0.0151418661698699,
- -0.025792626664042473,
- -0.01559180673211813,
- 0.07221339643001556,
- -0.008750919252634048,
- -0.02910422533750534,
- -0.019119959324598312,
- -0.005677185487002134,
- 0.055030446499586105,
- 0.028202198445796967,
- -0.17921867966651917,
- 0.00006294014019658789,
- -0.0043191988952457905,
- 0.06050712987780571,
- 0.005409341771155596,
- -0.07258177548646927,
- 0.036867398768663406,
- -0.051943518221378326,
- -0.028198016807436943,
- 0.06356790661811829,
- -0.009820216335356236,
- -0.006759794428944588,
- -0.038644783198833466,
- -0.007515436038374901,
- -0.0584837980568409,
- 0.038938164710998535,
- 0.08229690045118332,
- 0.08082149922847748,
- 0.012263182550668716,
- 0.027304431423544884,
- -0.020333757624030113,
- -0.03891396149992943,
- -0.01461352501064539,
- 0.007847839966416359,
- 0.0937628373503685,
- 0.03178446367383003,
- 0.0733858123421669,
- -0.01846841163933277,
- -0.036090776324272156,
- 0.0508006252348423,
- 0.0012035147519782186,
- 0.12727002799510956,
- 0.008942808024585247,
- -0.037628330290317535,
- 0.02527027390897274,
- -0.011266154237091541,
- -0.09501630812883377,
- -0.02520437352359295,
- -0.008974374271929264,
- -0.08289461582899094,
- -0.024753164499998093,
- 0.038927629590034485,
- -0.021819142624735832,
- -0.01919407583773136,
- 0.007755900267511606,
- 0.03568499907851219,
- -0.04123441129922867,
- 0.0659482404589653,
- -0.02764553762972355,
- 0.08638845384120941,
- -0.01557912863790989,
- 0.025446632876992226,
- -0.04030289500951767,
- 0.016336165368556976,
- 0.06577522307634354,
- -0.04497065022587776,
- -0.056040648370981216,
- -0.020269935950636864,
- 0.041292931884527206,
- -0.0059252772480249405,
- -0.010695554316043854,
- -0.006536751054227352,
- -0.006484628655016422,
- 0.02054361253976822,
- 0.05151857063174248,
- -0.026091229170560837,
- 0.04520183056592941,
- 0.01861417479813099,
- 0.030113665387034416,
- -0.03634568676352501,
- 0.2854103446006775,
- 0.04261084273457527,
- 0.030775606632232666,
- -0.05979575589299202,
- 0.021395212039351463,
- 0.0024665514938533306,
- -0.0661923736333847,
- -0.12017705291509628,
- -0.012502637691795826,
- -0.009852726012468338,
- -0.06562183052301407,
- -0.04008806496858597,
- -0.033044300973415375,
- -0.088663749396801,
- 0.07483027875423431,
- -0.07289952039718628,
- -0.026201849803328514,
- -0.03189658373594284,
- 0.026445375755429268,
- 0.003992486745119095,
- -0.10406846553087234,
- 0.012396877631545067,
- 0.01576984114944935,
- -0.06841692328453064,
- 0.04343022406101227,
- -0.05521261692047119,
- -0.031210869550704956,
- 0.006088930647820234,
- -5.6567113436331195e-33,
- -0.007169909309595823,
- -0.07635458558797836,
- 0.03212245553731918,
- 0.07597300410270691,
- 0.030114982277154922,
- 0.01861543580889702,
- -0.03461665287613869,
- 0.049372103065252304,
- -0.009133352898061275,
- 0.04858976975083351,
- 0.02465890534222126,
- -0.038846053183078766,
- -0.003618680639192462,
- -0.001924243289977312,
- 0.059800900518894196,
- -0.026462044566869736,
- 0.022608181461691856,
- 0.047407809644937515,
- -0.146628737449646,
- 0.056271035224199295,
- -0.015881720930337906,
- 0.06252782046794891,
- -0.06352365761995316,
- 0.011233141645789146,
- 0.03415584936738014,
- 0.03715071082115173,
- -0.0523606576025486,
- -0.08471742272377014,
- -0.14850960671901703,
- 0.0011964900186285377,
- -0.0827232152223587,
- 0.031205087900161743,
- -0.0667845606803894,
- -0.04598952457308769,
- 0.038478560745716095,
- -0.017947418615221977,
- -0.029263682663440704,
- -0.04225485771894455,
- 0.015837537124753,
- -0.056741587817668915,
- -0.024826018139719963,
- 0.04381363093852997,
- -0.03474774584174156,
- 0.03022528998553753,
- 0.01037698332220316,
- 0.04833448678255081,
- 0.03154744580388069,
- 0.03238296881318092,
- -0.015443211421370506,
- 0.10892823338508606,
- -0.03608410060405731,
- 0.022347034886479378,
- 0.019189143553376198,
- -0.009663425385951996,
- 0.016428882256150246,
- 0.012495452538132668,
- 0.027478152886033058,
- 0.005804697051644325,
- -0.016344033181667328,
- -0.023013141006231308,
- 0.030563723295927048,
- 0.025584932416677475,
- -0.024765413254499435,
- -0.025301048532128334,
- -0.021660398691892624,
- -0.10968577861785889,
- -0.04135299474000931,
- -0.05969163402915001,
- 0.1075492575764656,
- 0.014728715643286705,
- -0.039719775319099426,
- -0.010952731594443321,
- 0.07060173153877258,
- 0.03411684185266495,
- -0.051130086183547974,
- -0.019030386582016945,
- -0.012165647000074387,
- 0.002664244268089533,
- -0.046486932784318924,
- -0.06791353970766068,
- 0.000551027653273195,
- 0.023266252130270004,
- 0.02700505591928959,
- 0.019304975867271423,
- 0.038254719227552414,
- -0.06308338046073914,
- 0.011217009276151657,
- -0.08727314323186874,
- 0.03976094722747803,
- 0.052026644349098206,
- -0.0987175703048706,
- -0.004038656130433083,
- 0.02002605050802231,
- 0.03766356036067009,
- -0.017128629609942436,
- 4.9334311389401045e-33,
- -0.040933962911367416,
- 0.013643477112054825,
- 0.05011485517024994,
- -0.013748056255280972,
- 0.012782816775143147,
- -0.02014879137277603,
- 0.08882041275501251,
- -0.009578832425177097,
- -0.058904558420181274,
- 0.09372154623270035,
- -0.07707542181015015,
- 0.025905361399054527,
- 0.01792309060692787,
- 0.0168912373483181,
- 0.006725177634507418,
- 0.07420449703931808,
- -0.010711328126490116,
- 0.001961234724149108,
- -0.09670668095350266,
- 0.017087046056985855,
- -0.010304827243089676,
- -0.012429498136043549,
- -0.028692392632365227,
- 0.06447842717170715,
- 0.00006393766670953482,
- 0.049110326915979385,
- 0.14871878921985626,
- -0.007653443608433008,
- -0.07813501358032227,
- -0.03837849199771881,
- -0.047574467957019806,
- -0.08561623841524124,
- -0.0037711120676249266,
- 0.023906929418444633,
- -0.032971758395433426,
- 0.05831696093082428,
- -0.041891470551490784,
- 0.009067194536328316,
- 0.027219871059060097,
- 0.07050017267465591,
- 0.07499083131551743,
- 0.014992373995482922,
- 0.039436224848032,
- 0.09829051792621613,
- 0.013203207403421402,
- 0.01850712299346924,
- 0.008042494766414165,
- 0.011427669785916805,
- 0.003572212066501379,
- 0.05572018772363663,
- -0.08845844864845276,
- 0.0838906392455101,
- -0.09052345901727676,
- 0.03084576688706875,
- 0.041633520275354385,
- 0.03941599279642105,
- -0.078919917345047,
- -0.030120158568024635,
- -0.028654443100094795,
- -0.03411036729812622,
- 0.014455882832407951,
- 0.08788120746612549,
- -0.008705818094313145,
- -0.006012442987412214,
- -0.025108840316534042,
- 0.08489962667226791,
- -0.05218743532896042,
- 0.02767879143357277,
- -0.05139317363500595,
- -0.028517264872789383,
- 0.01256607286632061,
- -0.02163730002939701,
- 0.011442521587014198,
- 0.039142947643995285,
- -0.04951750859618187,
- -0.005723584443330765,
- -0.029362909495830536,
- -0.00456224475055933,
- -0.022212496027350426,
- -0.013900887221097946,
- -0.10458037257194519,
- -0.037208594381809235,
- -0.025544453412294388,
- 0.045154836028814316,
- -0.027746951207518578,
- 0.10086839646100998,
- 0.05337909981608391,
- -0.019878655672073364,
- -0.0018044845201075077,
- -0.08561933040618896,
- 0.01457376778125763,
- 0.07656658440828323,
- -0.01925901509821415,
- -0.0326211042702198,
- 0.008370166644454002,
- -1.4042493390320487e-8,
- -0.11258792877197266,
- -0.006377317477017641,
- 0.019819913432002068,
- 0.032467786222696304,
- -0.013422921299934387,
- 0.04734562709927559,
- 0.05056319385766983,
- -0.053171370178461075,
- 0.033537913113832474,
- 0.006188348866999149,
- -0.02019905298948288,
- 0.020676448941230774,
- 0.051700491458177567,
- -0.06366956979036331,
- 0.0951094999909401,
- 0.03952508047223091,
- -0.04007350280880928,
- 0.014811533503234386,
- -0.07974760979413986,
- 0.0636829063296318,
- 0.028549356386065483,
- 0.07263100147247314,
- 0.027570638805627823,
- 0.044451117515563965,
- -0.011477457359433174,
- -0.030890239402651787,
- -0.05848414823412895,
- 0.1408783197402954,
- -0.01775888167321682,
- 0.059620704501867294,
- 0.06065581738948822,
- 0.03601086884737015,
- -0.006648413836956024,
- -0.03293891251087189,
- 0.03422684967517853,
- 0.03238251805305481,
- -0.02296503074467182,
- -0.009272381663322449,
- 0.014671855606138706,
- -0.03815257176756859,
- -0.0695917159318924,
- -0.025573043152689934,
- 0.036420922726392746,
- 0.06904661655426025,
- 0.024049511179327965,
- 0.017421891912817955,
- 0.03637908026576042,
- -0.011918941512703896,
- 0.006485356949269772,
- -0.07044398784637451,
- -0.017542604357004166,
- -0.0326799638569355,
- 0.041924986988306046,
- 0.06495072692632675,
- 0.040783945471048355,
- 0.047797683626413345,
- -0.044632356613874435,
- -0.05978584662079811,
- -0.13443726301193237,
- 0.09773813933134079,
- 0.011358637362718582,
- 0.026510827243328094,
- 0.021845029667019844,
- 0.03236394748091698
- ]
- },
- {
- "keyword": "title",
- "type": "role",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.07023361325263977,
- 0.06263098865747452,
- -0.05835959315299988,
- -0.009056536480784416,
- -0.06329890340566635,
- -0.06672780215740204,
- 0.09556924551725388,
- 0.010968276299536228,
- -0.008154400624334812,
- -0.022240838035941124,
- -0.021608129143714905,
- -0.04232082888484001,
- -0.005585760809481144,
- -0.012840770184993744,
- -0.09621112793684006,
- 0.0010193646885454655,
- -0.039937056601047516,
- 0.010217885486781597,
- -0.043253347277641296,
- -0.019681399688124657,
- -0.050375744700431824,
- 0.08101370930671692,
- -0.03620831295847893,
- 0.019604109227657318,
- -0.03324282541871071,
- 0.013902987353503704,
- -0.03910481929779053,
- 0.05770549178123474,
- -0.027056647464632988,
- -0.13049976527690887,
- 0.052289243787527084,
- 0.02872570790350437,
- 0.08376235514879227,
- 0.01234913244843483,
- -0.029937032610177994,
- -0.06849543005228043,
- -0.0755339041352272,
- 0.0036742163356393576,
- 0.038349587470293045,
- -0.04424614831805229,
- 0.05797095596790314,
- -0.045670218765735626,
- 0.014474942348897457,
- -0.06627219915390015,
- 0.01696745865046978,
- 0.00754134263843298,
- 0.032593272626399994,
- -0.07091488689184189,
- 0.0035220400895923376,
- 0.03482818230986595,
- -0.027022305876016617,
- -0.05768236145377159,
- -0.015582345426082611,
- 0.01206057146191597,
- 0.05115902051329613,
- 0.0005893869092687964,
- -0.009870486333966255,
- 0.05030135065317154,
- 0.018939539790153503,
- 0.057887524366378784,
- 0.09853456914424896,
- 0.0267795380204916,
- -0.07514232397079468,
- 0.040276311337947845,
- 0.0675920695066452,
- 0.01782912202179432,
- 0.03440997749567032,
- 0.007403472904115915,
- -0.04727105051279068,
- -0.017720382660627365,
- 0.054118286818265915,
- 0.030904602259397507,
- -0.0065514580346643925,
- 0.06484336405992508,
- 0.023436270654201508,
- 0.0006603976362384856,
- 0.0241834819316864,
- -0.025493355467915535,
- -0.00020753037824761122,
- -0.004758566152304411,
- -0.018089663237333298,
- 0.002663614694029093,
- -0.06870370358228683,
- -0.004270956385880709,
- 0.012787667103111744,
- 0.0883067399263382,
- -0.021293165162205696,
- -0.06832665950059891,
- -0.07740939408540726,
- 0.02695566974580288,
- -0.046670060604810715,
- -0.1041695699095726,
- 0.09252072125673294,
- 0.05488745868206024,
- -0.0790499895811081,
- 0.031991537660360336,
- -0.0068450989201664925,
- -0.06225923076272011,
- -0.04575708881020546,
- 0.2513863444328308,
- -0.004093185532838106,
- -0.020322438329458237,
- -0.05940965935587883,
- 0.07256580144166946,
- 0.07230525463819504,
- 0.00529454555362463,
- 0.04683835059404373,
- 0.07166916131973267,
- -0.0667009949684143,
- -0.08377594500780106,
- -0.05358831584453583,
- 0.038206685334444046,
- -0.04229127988219261,
- 0.0651060938835144,
- -0.0019038813188672066,
- 0.046781402081251144,
- 0.04100951552391052,
- 0.024862848222255707,
- 0.12452872842550278,
- -0.055731311440467834,
- 0.09212910383939743,
- -0.00792785920202732,
- 0.003584453137591481,
- -0.03433017432689667,
- -0.12433242052793503,
- -0.0684700533747673,
- 0.05389263853430748,
- -2.7763945970773914e-33,
- 0.03866814821958542,
- -0.014684857800602913,
- 0.06521198898553848,
- 0.10715652257204056,
- 0.07336053997278214,
- -0.009396168403327465,
- 0.005778267048299313,
- 0.015661580488085747,
- -0.024394510313868523,
- 0.08553231507539749,
- 0.02475893683731556,
- -0.07634288817644119,
- -0.07528077065944672,
- -0.08940686285495758,
- 0.024958455935120583,
- -0.046823650598526,
- -0.02032814547419548,
- 0.06740956008434296,
- -0.04630666971206665,
- -0.0038160255644470453,
- -0.021539388224482536,
- 0.09565039724111557,
- -0.01635759137570858,
- 0.019269539043307304,
- 0.02078039012849331,
- -0.02694735676050186,
- -0.06105832755565643,
- -0.040324583649635315,
- 0.032150883227586746,
- 0.030748389661312103,
- -0.008244091644883156,
- -0.005044545978307724,
- 0.013625312596559525,
- -0.06944336742162704,
- -0.012694556266069412,
- 0.003964007832109928,
- -0.021801475435495377,
- -0.066506028175354,
- 0.01862306520342827,
- -0.010450249537825584,
- -0.09481562674045563,
- -0.02063680998980999,
- -0.09747243672609329,
- -0.014963197521865368,
- 0.01137500163167715,
- 0.0389631912112236,
- 0.00911775417625904,
- 0.03190889209508896,
- 0.0132934944704175,
- 0.040988028049468994,
- -0.038157448172569275,
- -0.008069055154919624,
- -0.041968055069446564,
- -0.02727796882390976,
- -0.043001387268304825,
- 0.01716371439397335,
- 0.01629326120018959,
- 0.03815765678882599,
- -0.030168160796165466,
- -0.023279035463929176,
- 0.005951674189418554,
- 0.046851616352796555,
- -0.07984141260385513,
- 0.014305727556347847,
- 0.0033878227695822716,
- 0.021964125335216522,
- 0.06114688143134117,
- -0.09229103475809097,
- -0.03172123804688454,
- -0.04764774069190025,
- -0.0959019586443901,
- -0.04641854017972946,
- 0.011948373168706894,
- -0.019635343924164772,
- 0.05576951056718826,
- -0.07676908373832703,
- -0.046897802501916885,
- 0.07864397019147873,
- -0.03603236749768257,
- 0.00009896901610773057,
- -0.007014523260295391,
- -0.006339463405311108,
- 0.026749180629849434,
- 0.001258357078768313,
- -0.04347828030586243,
- -0.0014253108529374003,
- -0.020769493654370308,
- -0.0428633987903595,
- -0.024622062221169472,
- -0.018733752891421318,
- -0.06988845765590668,
- -0.028047719970345497,
- -0.07961118221282959,
- 0.049477674067020416,
- -0.012666714377701283,
- 1.666093162951708e-33,
- 0.05265440046787262,
- -0.013225632719695568,
- -0.05908019468188286,
- 0.045705828815698624,
- 0.0507134348154068,
- -0.062254223972558975,
- 0.01584983617067337,
- 0.10474111884832382,
- -0.061562731862068176,
- 0.002771635539829731,
- -0.06012573465704918,
- -0.016182461753487587,
- 0.011333823204040527,
- 0.08728548884391785,
- -0.021825216710567474,
- 0.012656101025640965,
- 0.07162614911794662,
- -0.06434710323810577,
- -0.097724549472332,
- 0.022393817082047462,
- -0.10512690246105194,
- 0.05517769232392311,
- 0.007464493624866009,
- 0.010975015349686146,
- 0.028058355674147606,
- 0.047678180038928986,
- 0.08110279589891434,
- 0.0560452938079834,
- 0.022112654522061348,
- 0.022816738113760948,
- 0.03225807845592499,
- -0.015510818921029568,
- -0.10224132984876633,
- 0.05571868643164635,
- -0.0057801371440291405,
- 0.08158337324857712,
- 0.09047578275203705,
- -0.027923792600631714,
- 0.03395342454314232,
- 0.11191453784704208,
- 0.04014638438820839,
- 0.03143448755145073,
- 0.029168063774704933,
- 0.05251945182681084,
- 0.007455424405634403,
- 0.0021414170041680336,
- 0.04253106936812401,
- 0.04780486971139908,
- 0.07032663375139236,
- 0.09080473333597183,
- -0.015973947942256927,
- 0.008769816718995571,
- -0.07717757672071457,
- 0.01573113352060318,
- -0.005167121533304453,
- 0.011644456535577774,
- -0.03892413154244423,
- -0.0046609919518232346,
- -0.04160059615969658,
- -0.05025327578186989,
- 0.009892644360661507,
- 0.04452062025666237,
- -0.09336286038160324,
- 0.01123472023755312,
- -0.05576762184500694,
- 0.02150046080350876,
- -0.04153016582131386,
- -0.06823216378688812,
- 0.00947238877415657,
- -0.03132650628685951,
- 0.04056091606616974,
- 0.006196241360157728,
- -0.06230989471077919,
- 0.04528197646141052,
- 0.010111212730407715,
- -0.008164765313267708,
- -0.004227209370583296,
- 0.015086935833096504,
- -0.0261005200445652,
- -0.05869185924530029,
- -0.026395659893751144,
- -0.062299229204654694,
- -0.03433610498905182,
- 0.05976508930325508,
- 0.010458961129188538,
- 0.023522229865193367,
- 0.08079276233911514,
- -0.010680652223527431,
- 0.04601724073290825,
- -0.008045476861298084,
- -0.026651371270418167,
- 0.006098608020693064,
- 0.033202897757291794,
- -0.019302932545542717,
- -0.017895162105560303,
- -1.4729538477809001e-8,
- -0.03841198608279228,
- -0.000056771830713842064,
- -0.013056416995823383,
- 0.015515513718128204,
- 0.08112399280071259,
- 0.12186010181903839,
- 0.025885658338665962,
- -0.05714743211865425,
- 0.0339832566678524,
- 0.016176855191588402,
- -0.059360094368457794,
- -0.025748377665877342,
- 0.05792993679642677,
- 0.022680601105093956,
- 0.09813736379146576,
- -0.041865795850753784,
- -0.04283473268151283,
- 0.08348562568426132,
- -0.018847469240427017,
- 0.016812922433018684,
- 0.010659643448889256,
- 0.004103776998817921,
- 0.01571236178278923,
- -0.11385628581047058,
- -0.018600987270474434,
- 0.04509493336081505,
- -0.07570135593414307,
- 0.06047959625720978,
- 0.0211328137665987,
- 0.042427852749824524,
- 0.0036436044611036777,
- 0.12470966577529907,
- -0.03216379135847092,
- 0.01505982130765915,
- 0.11717687547206879,
- 0.05000394955277443,
- 0.05261681601405144,
- 0.02964058704674244,
- 0.014580762945115566,
- 0.017387986183166504,
- -0.01890093833208084,
- -0.0014747994719073176,
- 0.09336510300636292,
- 0.02466067299246788,
- -0.026272490620613098,
- 0.03361934795975685,
- -0.06664040684700012,
- 0.04494350776076317,
- -0.02348501607775688,
- -0.0044038002379238605,
- 0.016535796225070953,
- -0.07376594841480255,
- -0.007880938239395618,
- -0.00014861163799650967,
- 0.018064457923173904,
- 0.06727681308984756,
- 0.017133183777332306,
- -0.04647736996412277,
- -0.081635020673275,
- -0.03174300864338875,
- 0.11447824537754059,
- 0.011358210816979408,
- 0.02233900874853134,
- 0.024457262828946114
- ]
- },
- {
- "keyword": "permission",
- "type": "role",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- 0.016812942922115326,
- 0.07771648466587067,
- -0.06815356016159058,
- -0.045400649309158325,
- -0.007717534899711609,
- -0.0045764693059027195,
- 0.10030331462621689,
- -0.04358537122607231,
- -0.03294549509882927,
- -0.033199895173311234,
- 0.01789470762014389,
- 0.024833977222442627,
- -0.007590580265969038,
- 0.025326164439320564,
- -0.033934153616428375,
- -0.016861002892255783,
- 0.0270304623991251,
- -0.057046033442020416,
- -0.12765644490718842,
- -0.023901183158159256,
- -0.005388380493968725,
- -0.03968873247504234,
- 0.016710994765162468,
- -0.011816653423011303,
- -0.002101102378219366,
- 0.02039020135998726,
- -0.060311660170555115,
- 0.039758093655109406,
- 0.0787544846534729,
- -0.04118835926055908,
- 0.011530213989317417,
- -0.04020508751273155,
- 0.08168482780456543,
- -0.011060420423746109,
- -0.05341549217700958,
- -0.023127907887101173,
- 0.05111711844801903,
- -0.07141106575727463,
- 0.015655500814318657,
- 0.017863159999251366,
- -0.042074915021657944,
- -0.046200353652238846,
- -0.0013600648380815983,
- 0.01897577941417694,
- 0.00408532889559865,
- 0.08896293491125107,
- 0.08108995109796524,
- -0.014565604738891125,
- 0.0482122078537941,
- 0.032363880425691605,
- 0.0725652426481247,
- 0.035716719925403595,
- -0.02194386161863804,
- -0.02869247831404209,
- -0.01324080303311348,
- 0.0010361801832914352,
- 0.05850886553525925,
- 0.01794533245265484,
- -0.01466323621571064,
- -0.04751996323466301,
- -0.016118071973323822,
- 0.009339094161987305,
- -0.02030758000910282,
- 0.01815931312739849,
- 0.018903739750385284,
- 0.0014778714394196868,
- 0.00045156117994338274,
- -0.00989491306245327,
- -0.024100160226225853,
- -0.07773302495479584,
- 0.04735757037997246,
- 0.027387717738747597,
- 0.0010309910867363214,
- 0.04539980739355087,
- 0.08099625259637833,
- -0.07903365045785904,
- -0.01938512548804283,
- 0.009603990241885185,
- 0.027248593047261238,
- -0.08280427753925323,
- 0.007346418686211109,
- 0.037171270698308945,
- 0.010565071366727352,
- 0.013706552796065807,
- -0.11173995584249496,
- 0.05685088410973549,
- 0.03450584411621094,
- 0.04886007308959961,
- 0.05980586260557175,
- 0.03646194934844971,
- 0.05312752351164818,
- 0.04061935096979141,
- 0.060179729014635086,
- -0.01508419867604971,
- -0.0789332464337349,
- -0.04917973279953003,
- -0.0069229481741786,
- -0.0008480391115881503,
- -0.07843735069036484,
- 0.2124030441045761,
- -0.01910044066607952,
- -0.04425303265452385,
- -0.10047794133424759,
- 0.008534666150808334,
- 0.03413251414895058,
- 0.025245793163776398,
- 0.02513743005692959,
- 0.03744914010167122,
- -0.043141767382621765,
- -0.004606320522725582,
- -0.056158144026994705,
- 0.003794819815084338,
- -0.03267186880111694,
- 0.02529405802488327,
- 0.05354398488998413,
- -0.021252891048789024,
- -0.046180643141269684,
- -0.015870889648795128,
- 0.02630535326898098,
- -0.03598546236753464,
- 0.05861697718501091,
- 0.015799110755324364,
- 0.04398054629564285,
- 0.021996188908815384,
- 0.00046735256910324097,
- -0.09745614975690842,
- -0.03774886950850487,
- -5.9638827111823685e-33,
- 0.007506228983402252,
- 0.02414902113378048,
- 0.005818724632263184,
- 0.05017109215259552,
- 0.10223601758480072,
- 0.011793417856097221,
- -0.045466434210538864,
- -0.022540442645549774,
- -0.11113163828849792,
- 0.04360845685005188,
- 0.06703934818506241,
- 0.03540005162358284,
- 0.018149442970752716,
- -0.08827385306358337,
- 0.146707683801651,
- 0.06889420747756958,
- 0.11977523565292358,
- -0.011194873601198196,
- 0.007068920880556107,
- 0.008045493625104427,
- 0.005118473898619413,
- -0.0313510037958622,
- -0.007689067628234625,
- 0.10424917191267014,
- -0.0448480062186718,
- -0.012107609771192074,
- -0.05632685869932175,
- -0.03498760983347893,
- 0.13987401127815247,
- 0.023242026567459106,
- 0.038036249577999115,
- -0.0184086412191391,
- -0.02659454755485058,
- -0.0301382914185524,
- 0.008416304364800453,
- 0.02131536789238453,
- 0.01908830739557743,
- 0.0038268505595624447,
- 0.03178764134645462,
- -0.025489645078778267,
- -0.0064479210413992405,
- -0.10451274365186691,
- -0.046309102326631546,
- -0.023825988173484802,
- -0.051504381000995636,
- -0.020202821120619774,
- -0.00533414026722312,
- -0.007636126130819321,
- -0.03691357374191284,
- 0.10323607176542282,
- -0.036179736256599426,
- 0.005387620534747839,
- -0.021677514538168907,
- -0.05143367871642113,
- 0.05025368928909302,
- -0.006542436312884092,
- -0.06788213551044464,
- 0.023624753579497337,
- 0.020717130973935127,
- -0.08720249682664871,
- 0.06768099963665009,
- 0.1123703271150589,
- -0.0035491865128278732,
- 0.04093213751912117,
- -0.050513289868831635,
- -0.1025659516453743,
- 0.010816609486937523,
- -0.0483383908867836,
- 0.07424694299697876,
- -0.026323184370994568,
- -0.13228408992290497,
- -0.012162724509835243,
- 0.027652064338326454,
- -0.005239249672740698,
- -0.05777371674776077,
- -0.00021491592633537948,
- -0.015073505230247974,
- 0.031752631068229675,
- -0.02406558394432068,
- 0.04303199425339699,
- -0.03808768838644028,
- -0.05887087807059288,
- 0.0017051872564479709,
- 0.00018468068446964025,
- -0.035353515297174454,
- -0.008368004113435745,
- -0.08305081725120544,
- -0.014730839990079403,
- 0.015303725376725197,
- 0.05907214805483818,
- -0.012588558718562126,
- 0.045614272356033325,
- 0.02326846495270729,
- 0.03366284444928169,
- -0.09202715009450912,
- 3.237920127833115e-33,
- -0.01622968167066574,
- -0.06314817070960999,
- -0.06348590552806854,
- -0.05305085331201553,
- 0.026656590402126312,
- -0.020017188042402267,
- -0.021023627370595932,
- -0.03395825996994972,
- -0.017884373664855957,
- 0.027856474742293358,
- -0.028137976303696632,
- 0.0008637378341518342,
- 0.08520770072937012,
- 0.00307105272077024,
- 0.020932642742991447,
- -0.02892126329243183,
- 0.01753704994916916,
- 0.00910204742103815,
- -0.07562383264303207,
- -0.02847432531416416,
- -0.11689388751983643,
- 0.026118634268641472,
- 0.0761014074087143,
- 0.03204754739999771,
- -0.014937058091163635,
- 0.014893600717186928,
- -0.04272576421499252,
- 0.011855833232402802,
- 0.03728743642568588,
- 0.012111913412809372,
- 0.05196579173207283,
- -0.0643230602145195,
- -0.0880441889166832,
- -0.00880571361631155,
- -0.0511862151324749,
- -0.05013926699757576,
- -0.002891219686716795,
- 0.06955943256616592,
- -0.019827570766210556,
- 0.04150047525763512,
- 0.0557577945291996,
- 0.02352210506796837,
- 0.08734693378210068,
- 0.031030770391225815,
- -0.08659834414720535,
- 0.036561012268066406,
- 0.04690863937139511,
- -0.07679840177297592,
- 0.03512047976255417,
- 0.04595009610056877,
- 0.06537994742393494,
- -0.01786595582962036,
- 0.1887790560722351,
- -0.016205329447984695,
- 0.01937362365424633,
- 0.040755752474069595,
- 0.06209524720907211,
- -0.04485051706433296,
- 0.1686011552810669,
- -0.029225924983620644,
- 0.058193814009428024,
- 0.038987450301647186,
- -0.10904143750667572,
- 0.020822320133447647,
- -0.06242899224162102,
- -0.04076699540019035,
- -0.06097162514925003,
- 0.044564735144376755,
- 0.05413636937737465,
- 0.04674435779452324,
- 0.003955191932618618,
- -0.060481153428554535,
- -0.007240333594381809,
- -0.029604176059365273,
- 0.0506494976580143,
- -0.009160853922367096,
- -0.04789360612630844,
- -0.0025410375092178583,
- -0.09114689379930496,
- -0.0075757731683552265,
- 0.03152550756931305,
- -0.010453499853610992,
- -0.004394344054162502,
- 0.03578905761241913,
- -0.017471957951784134,
- -0.05982294678688049,
- 0.055861491709947586,
- -0.06348088383674622,
- 0.00009451816731598228,
- -0.05088610574603081,
- 0.06008417159318924,
- 0.051808394491672516,
- -0.034595392644405365,
- 0.027357790619134903,
- 0.016832975670695305,
- -1.2640102298178135e-8,
- 0.020694587379693985,
- -0.07224021106958389,
- 0.03380180895328522,
- 0.032343197613954544,
- 0.04083966836333275,
- 0.0041674599051475525,
- -0.04823581501841545,
- -0.0014493393246084452,
- 0.024097392335534096,
- 0.07682930678129196,
- 0.022845527157187462,
- 0.01454113144427538,
- -0.06904792040586472,
- 0.03164077550172806,
- -0.023782014846801758,
- -0.02806415967643261,
- -0.052356526255607605,
- -0.039412882179021835,
- 0.009711179882287979,
- 0.015010555274784565,
- -0.0431637279689312,
- -0.05851282924413681,
- 0.01117668766528368,
- -0.0234676543623209,
- -0.023979611694812775,
- -0.018810603767633438,
- -0.012968053109943867,
- -0.029843734577298164,
- -0.09522572159767151,
- 0.08952832967042923,
- -0.002220490947365761,
- 0.017916593700647354,
- -0.03166278824210167,
- 0.04161568358540535,
- -0.043904710561037064,
- -0.04823901504278183,
- -0.02018245868384838,
- -0.010921986773610115,
- 0.0004469173727557063,
- -0.06080915406346321,
- 0.008227863349020481,
- 0.07275611907243729,
- 0.07117560505867004,
- 0.0699257105588913,
- -0.026381421834230423,
- -0.055903658270835876,
- 0.0905771255493164,
- -0.07333163917064667,
- -0.022226417437195778,
- -0.035123929381370544,
- 0.004123697057366371,
- -0.03203237056732178,
- 0.012355935759842396,
- 0.08779353648424149,
- 0.014604245312511921,
- 0.10154454410076141,
- 0.02375400997698307,
- 0.024646639823913574,
- -0.018842702731490135,
- 0.037328701466321945,
- 0.05548962205648422,
- 0.16822630167007446,
- -0.008189431391656399,
- -0.029956834390759468
- ]
- },
- {
- "keyword": "access",
- "type": "role",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- -0.020020177587866783,
- 0.06677073240280151,
- -0.07382598519325256,
- -0.004660192411392927,
- -0.05872071161866188,
- 0.0225291196256876,
- 0.13312798738479614,
- -0.054605189710855484,
- 0.02270006202161312,
- -0.0016220307443290949,
- -0.03597082942724228,
- 0.019702794030308723,
- 0.03250294551253319,
- -0.0750272274017334,
- -0.012046897783875465,
- 0.026183152571320534,
- 0.029084131121635437,
- -0.022944848984479904,
- -0.06445498019456863,
- 0.007032749243080616,
- -0.03343748301267624,
- 0.015024308115243912,
- -0.02223007194697857,
- -0.00707249017432332,
- -0.007514727767556906,
- 0.0038437850307673216,
- -0.05897903814911842,
- 0.06193030998110771,
- 0.08834438025951385,
- -0.115224689245224,
- -0.046496860682964325,
- -0.027630655094981194,
- 0.03170972689986229,
- -0.002532435115426779,
- 0.019684690982103348,
- -0.08365381509065628,
- 0.010390331037342548,
- 0.011913643218576908,
- 0.04483329504728317,
- -0.01972522959113121,
- -0.05546189844608307,
- -0.05007774755358696,
- -0.01418245304375887,
- 0.024490082636475563,
- -0.006625079549849033,
- 0.06354276090860367,
- -0.0055170813575387,
- 0.0033140606246888638,
- 0.07911483198404312,
- 0.022625969722867012,
- -0.04046221449971199,
- -0.013795619830489159,
- 0.007187880575656891,
- 0.030326342210173607,
- -0.030937999486923218,
- 0.04730803519487381,
- 0.015430341474711895,
- -0.012962991371750832,
- -0.026608271524310112,
- -0.013683238066732883,
- -0.008559765294194221,
- 0.010539066977798939,
- -0.020724689587950706,
- 0.047321975231170654,
- -0.04982712119817734,
- -0.0495135672390461,
- -0.02364446595311165,
- 0.039715684950351715,
- -0.04788562282919884,
- -0.05789085850119591,
- -0.015731744468212128,
- 0.0723433643579483,
- -0.0389849878847599,
- 0.024431642144918442,
- 0.08487771451473236,
- -0.018118318170309067,
- -0.003540055127814412,
- -0.03528909757733345,
- 0.13163122534751892,
- -0.03934290632605553,
- 0.028710637241601944,
- 0.059062112122774124,
- -0.045496854931116104,
- -0.003989361692219973,
- -0.04782343655824661,
- 0.026482941582798958,
- 0.0053389971144497395,
- 0.0685858204960823,
- 0.02616160549223423,
- 0.018812941387295723,
- 0.03080401010811329,
- 0.01179055217653513,
- 0.06766407936811447,
- 0.016473351046442986,
- 0.007158746011555195,
- -0.0797915905714035,
- 0.08953596651554108,
- -0.0006809059414081275,
- -0.07035447657108307,
- 0.2155763953924179,
- 0.0027485545724630356,
- 0.060724806040525436,
- -0.06950031965970993,
- -0.032127056270837784,
- -0.02610611729323864,
- -0.014946411363780499,
- 0.06572041660547256,
- 0.08233504742383957,
- 0.06649603694677353,
- -0.012757781893014908,
- -0.04175744950771332,
- -0.05241446942090988,
- -0.08206359297037125,
- 0.022167420014739037,
- 0.008603985421359539,
- -0.012382011860609055,
- -0.10863631963729858,
- -0.014975158497691154,
- 0.06950601935386658,
- 0.011074650101363659,
- 0.03735292702913284,
- 0.02422291412949562,
- -0.015526305884122849,
- -0.02143709734082222,
- -0.0394558385014534,
- -0.09381119161844254,
- -0.025683177635073662,
- -5.4697092942004944e-33,
- 0.013344941660761833,
- -0.00704398937523365,
- -0.03588298708200455,
- 0.00407436303794384,
- 0.043386172503232956,
- -0.03594989329576492,
- -0.011733249761164188,
- -0.043186839669942856,
- -0.12777213752269745,
- 0.007791846990585327,
- -0.0284542515873909,
- 0.13621237874031067,
- -0.021060889586806297,
- -0.09983747452497482,
- 0.13781222701072693,
- 0.017350835725665092,
- 0.10146111249923706,
- 0.0848572850227356,
- 0.007329276762902737,
- 0.029150577262043953,
- -0.040295328944921494,
- -0.013194744475185871,
- 0.0126128438860178,
- 0.11707669496536255,
- -0.003192519536241889,
- 0.005643955431878567,
- -0.051010213792324066,
- -0.02676106058061123,
- 0.08141890168190002,
- 0.028461843729019165,
- 0.025280365720391273,
- -0.017850900068879128,
- -0.011563443578779697,
- -0.004428717773407698,
- 0.034265127032995224,
- -0.037673305720090866,
- 0.014868371188640594,
- -0.043313320726156235,
- 0.031187165528535843,
- -0.06393301486968994,
- -0.10094412416219711,
- -0.07451911270618439,
- -0.04471535608172417,
- -0.035520460456609726,
- -0.06247125193476677,
- -0.005694708786904812,
- 0.02484705112874508,
- 0.051581159234046936,
- -0.03375309705734253,
- 0.12239420413970947,
- -0.060543593019247055,
- 0.019359569996595383,
- -0.15165510773658752,
- 0.00824326928704977,
- -0.03310178220272064,
- -0.007046463433653116,
- -0.07029004395008087,
- 0.0013398744631558657,
- 0.007917785085737705,
- -0.043362341821193695,
- 0.043784499168395996,
- 0.09917552769184113,
- 0.05170147866010666,
- 0.03313574939966202,
- -0.09929981827735901,
- -0.051274772733449936,
- -0.0007730912766419351,
- -0.05785162001848221,
- 0.08006836473941803,
- -0.0015036363620311022,
- -0.09310711175203323,
- -0.04677272588014603,
- 0.04962735250592232,
- 0.071027010679245,
- -0.06484424322843552,
- 0.0355132520198822,
- -0.01946125738322735,
- 0.07369943708181381,
- -0.015096219256520271,
- 0.05854340270161629,
- -0.015016262419521809,
- -0.028773022815585136,
- -0.038902029395103455,
- 0.10651151835918427,
- -0.019423337653279305,
- 0.0175994373857975,
- -0.0165341105312109,
- -0.07319367676973343,
- -0.014399576000869274,
- 0.039905108511447906,
- -0.0864911898970604,
- 0.0036800396628677845,
- 0.0878991037607193,
- 0.012912203557789326,
- -0.047771234065294266,
- 3.551892832227825e-33,
- -0.004421752877533436,
- -0.060575664043426514,
- -0.0340261273086071,
- -0.0706254169344902,
- 0.004665140528231859,
- -0.027015067636966705,
- 0.016147051006555557,
- -0.049331676214933395,
- 0.009754165075719357,
- 0.04514550045132637,
- 0.007257857359945774,
- 0.042095016688108444,
- 0.09484925866127014,
- -0.05860445275902748,
- 0.05256980285048485,
- -0.026481902226805687,
- 0.11021483689546585,
- -0.030044985935091972,
- -0.07084079086780548,
- 0.0884142592549324,
- -0.08698055893182755,
- 0.028766734525561333,
- 0.06336144357919693,
- -0.03344271704554558,
- -0.027514897286891937,
- 0.0508967787027359,
- 0.021779818460345268,
- 0.02324393205344677,
- -0.03169283643364906,
- 0.01446235179901123,
- -0.016456466168165207,
- -0.02742892876267433,
- -0.003740576095879078,
- 0.06268513202667236,
- -0.04639338329434395,
- 0.008366805501282215,
- 0.08928754180669785,
- 0.04379550740122795,
- -0.06437025964260101,
- -0.013203244656324387,
- 0.05668930336833,
- 0.007844656705856323,
- 0.029010577127337456,
- 0.0827459916472435,
- 0.014389379881322384,
- 0.04798765480518341,
- -0.07622166723012924,
- -0.027581878006458282,
- -0.04166364297270775,
- 0.027917319908738136,
- 0.04504597187042236,
- -0.05201283469796181,
- 0.07481656968593597,
- -0.028007853776216507,
- -0.02207602933049202,
- 0.06505903601646423,
- 0.03485562652349472,
- -0.0525260865688324,
- 0.08899024873971939,
- 0.019854379817843437,
- 0.04928920790553093,
- 0.016452573239803314,
- -0.09397248178720474,
- 0.07092110067605972,
- -0.052209123969078064,
- -0.027076123282313347,
- -0.04364252835512161,
- 0.00082971784286201,
- -0.0036545810289680958,
- 0.05624005198478699,
- -0.0183694027364254,
- -0.08371330052614212,
- 0.030603161081671715,
- 0.01304069347679615,
- 0.04005526378750801,
- 0.045852649956941605,
- -0.07607799023389816,
- 0.03069293312728405,
- -0.08242049813270569,
- 0.027954647317528725,
- -0.01217876747250557,
- -0.010894210077822208,
- -0.01393708772957325,
- 0.015320775099098682,
- 0.0028073745779693127,
- -0.03206145763397217,
- 0.037999946624040604,
- -0.05439715459942818,
- 0.015585578978061676,
- -0.06514844298362732,
- -0.043577443808317184,
- 0.00794355757534504,
- -0.040569841861724854,
- 0.030429407954216003,
- -0.010868710465729237,
- -1.1940570310287058e-8,
- 0.028048954904079437,
- -0.013692725449800491,
- 0.08190583437681198,
- 0.020114433020353317,
- 0.06857181340456009,
- -0.012440989725291729,
- -0.09194192290306091,
- 0.06693367660045624,
- 0.01222331915050745,
- 0.12804101407527924,
- 0.016968807205557823,
- -0.00683972192928195,
- -0.006806292571127415,
- -0.016881849616765976,
- 0.009935186244547367,
- 0.026117954403162003,
- -0.03786562383174896,
- -0.07358045130968094,
- -0.01356947049498558,
- -0.014910737052559853,
- -0.01874001882970333,
- -0.025299882516264915,
- 0.09937950223684311,
- 0.03153745457530022,
- 0.013050236739218235,
- 0.01228758692741394,
- -0.06274446099996567,
- 0.016146359965205193,
- -0.03645215183496475,
- 0.00997528899461031,
- 0.008829005993902683,
- 0.0777866467833519,
- -0.010920300148427486,
- 0.01804637350142002,
- -0.06578853726387024,
- -0.003723910078406334,
- -0.03008393384516239,
- -0.00047054816968739033,
- -0.0165996216237545,
- 0.043735165148973465,
- 0.007612572982907295,
- -0.03285408765077591,
- 0.0769827589392662,
- 0.006143277045339346,
- -0.09196546673774719,
- -0.0017663788748905063,
- 0.0457586944103241,
- -0.04704967513680458,
- 0.007493459619581699,
- -0.030169138684868813,
- -0.03170575946569443,
- -0.03794199600815773,
- 0.02738068252801895,
- 0.04225097969174385,
- 0.045541055500507355,
- 0.07229828834533691,
- 0.019519468769431114,
- -0.015857337042689323,
- -0.0927877351641655,
- 0.06248258426785469,
- 0.07763112336397171,
- 0.05765809863805771,
- -0.027888521552085876,
- 0.04193195328116417
- ]
- },
- {
- "keyword": "privilege",
- "type": "role",
- "typeCategory": "noun",
- "confidence": 0.75,
- "isCanonical": true,
- "embedding": [
- 0.0009386734454892576,
- 0.10120358318090439,
- -0.0202244333922863,
- 0.02188969776034355,
- -0.057118773460388184,
- 0.029251717031002045,
- 0.15752924978733063,
- -0.028116248548030853,
- 0.0005163787864148617,
- -0.005951364059001207,
- -0.020431146025657654,
- 0.0003437552077230066,
- 0.020619487389922142,
- 0.000009395849701832049,
- -0.014838180504739285,
- -0.005439399741590023,
- 0.08323460072278976,
- 0.008496823720633984,
- -0.15510229766368866,
- -0.07808548957109451,
- -0.049517594277858734,
- -0.03776421770453453,
- 0.005530219990760088,
- 0.004475014749914408,
- -0.03267602249979973,
- 0.012332983314990997,
- -0.017025230452418327,
- -0.02899717353284359,
- 0.05657890811562538,
- -0.06269185245037079,
- -0.025336438789963722,
- -0.05006592720746994,
- 0.08183776587247849,
- 0.013026322238147259,
- -0.08712583035230637,
- 0.05946328118443489,
- 0.07010845094919205,
- -0.05566977709531784,
- 0.032608769834041595,
- -0.06982045620679855,
- -0.040022846311330795,
- -0.08953994512557983,
- -0.02637425996363163,
- 0.031152011826634407,
- -0.027417635545134544,
- 0.010633179917931557,
- 0.09279251843690872,
- 0.030342085286974907,
- -0.00961693748831749,
- -0.0217504370957613,
- 0.13068507611751556,
- 0.04093866050243378,
- 0.029278380796313286,
- -0.02493009902536869,
- -0.029432646930217743,
- -0.0014079395914450288,
- 0.011072182096540928,
- -0.03384840488433838,
- 0.021540721878409386,
- 0.004477759823203087,
- -0.08051043003797531,
- 0.003744180081412196,
- -0.04446034133434296,
- 0.07134942710399628,
- 0.06445542722940445,
- -0.06405652314424515,
- 0.0528377927839756,
- -0.0012949202209711075,
- -0.0863802507519722,
- -0.0395163968205452,
- -0.011644591577351093,
- 0.039759326726198196,
- 0.010309859178960323,
- 0.025431988760828972,
- 0.0836036205291748,
- -0.03031781315803528,
- 0.024121791124343872,
- -0.04015480354428291,
- 0.04662061110138893,
- -0.04775555059313774,
- 0.04689342901110649,
- 0.10754181444644928,
- -0.019536079838871956,
- 0.10402382165193558,
- -0.00592674408107996,
- -0.0024605055805295706,
- 0.03666810318827629,
- -0.005885338876396418,
- 0.031188972294330597,
- 0.031096061691641808,
- 0.027765639126300812,
- 0.017038773745298386,
- 0.09971405565738678,
- -0.03324248269200325,
- -0.06837009638547897,
- -0.044663913547992706,
- -0.010190892964601517,
- -0.07593944668769836,
- -0.08892345428466797,
- 0.24221396446228027,
- -0.04938988387584686,
- -0.0013204608112573624,
- -0.010225229896605015,
- 0.021707413718104362,
- -0.016179613769054413,
- -0.03826690465211868,
- 0.01960376650094986,
- 0.07515710592269897,
- -0.04496587812900543,
- 0.05853595212101936,
- 0.0019789780490100384,
- -0.002466043457388878,
- 0.028020720928907394,
- 0.04289762303233147,
- 0.03287871927022934,
- 0.02535673789680004,
- -0.021490924060344696,
- -0.01798924058675766,
- 0.028272736817598343,
- -0.030745618045330048,
- 0.004897088743746281,
- -0.006927829701453447,
- 0.029582401737570763,
- 0.052577946335077286,
- -0.006195202004164457,
- -0.059998974204063416,
- -0.05602484196424484,
- -6.797587018481706e-33,
- -0.0002542029251344502,
- -0.05293293669819832,
- 0.023638935759663582,
- 0.007275968324393034,
- 0.061937365680933,
- 0.025066904723644257,
- 0.00951329991221428,
- -0.06974801421165466,
- -0.08050640672445297,
- 0.035051245242357254,
- 0.05025492608547211,
- 0.002508998615667224,
- 0.04328396916389465,
- -0.03151034563779831,
- 0.09071733057498932,
- 0.14060090482234955,
- 0.021370932459831238,
- 0.014969042502343655,
- 0.006622733548283577,
- 0.03417192026972771,
- 0.011541806161403656,
- 0.0478963740170002,
- 0.02988520823419094,
- 0.12779055535793304,
- -0.05581585317850113,
- -0.026281461119651794,
- -0.029109321534633636,
- -0.06861034780740738,
- 0.09750417619943619,
- 0.018967967480421066,
- -0.06004754453897476,
- 0.023860471323132515,
- 0.03719974681735039,
- -0.0019383900798857212,
- -0.014170653186738491,
- 0.02014641836285591,
- 0.02306504175066948,
- -0.03422516584396362,
- 0.07504939287900925,
- -0.07572636008262634,
- -0.022355036810040474,
- -0.03934069350361824,
- 0.012956686317920685,
- -0.03785385563969612,
- 0.009755654260516167,
- -0.037378646433353424,
- 0.07815835624933243,
- 0.006993213668465614,
- -0.07684484869241714,
- 0.10841404646635056,
- -0.022314665839076042,
- 0.01648629456758499,
- 0.022583631798624992,
- -0.05008950084447861,
- 0.023487232625484467,
- -0.011069564148783684,
- 0.006314453203231096,
- 0.04612661525607109,
- -0.02761692926287651,
- -0.0644548088312149,
- -0.0052596209570765495,
- 0.07711193710565567,
- -0.0464913547039032,
- -0.008689538575708866,
- 0.004034073557704687,
- -0.12475860863924026,
- -0.0053435214795172215,
- -0.003115006722509861,
- 0.04096446931362152,
- 0.040282297879457474,
- -0.02406596951186657,
- -0.020474698394536972,
- 0.001234510913491249,
- 0.05357559397816658,
- -0.08262594044208527,
- 0.0334622785449028,
- 0.0695558488368988,
- 0.018773842602968216,
- 0.031655408442020416,
- 0.001315465895459056,
- -0.03481471538543701,
- -0.06260944157838821,
- 0.0036108747590333223,
- -0.022050319239497185,
- 0.02352353371679783,
- -0.024186067283153534,
- 0.03119657188653946,
- -0.021730000153183937,
- 0.04047280177474022,
- -0.01818564161658287,
- -0.05617174878716469,
- -0.026849428191781044,
- 0.02049914374947548,
- -0.021474434062838554,
- -0.12109542638063431,
- 4.419948390536051e-33,
- -0.014181810431182384,
- -0.07547357678413391,
- -0.039863161742687225,
- 0.020423198118805885,
- 0.01824161224067211,
- -0.035687241703271866,
- -0.053347885608673096,
- -0.06803294271230698,
- -0.09153073281049728,
- 0.0014936389634385705,
- -0.052172861993312836,
- 0.012968585826456547,
- 0.04863589629530907,
- 0.04157225415110588,
- 0.06448739767074585,
- -0.040341053158044815,
- 0.008754734881222248,
- 0.007499153260141611,
- -0.04413927346467972,
- 0.021419618278741837,
- -0.0019395184936001897,
- 0.050943996757268906,
- 0.1001645103096962,
- 0.11085695028305054,
- -0.06144070625305176,
- 0.002257965737953782,
- 0.026156878098845482,
- 0.0016981321386992931,
- -0.053936149924993515,
- 0.02436901070177555,
- 0.008714273571968079,
- -0.054976820945739746,
- -0.11873598396778107,
- -0.0025071061681956053,
- -0.07804463058710098,
- -0.02602624148130417,
- 0.06920037418603897,
- 0.052593015134334564,
- -0.03548664227128029,
- 0.04188041388988495,
- -0.021424036473035812,
- -0.03592749685049057,
- 0.007786781061440706,
- 0.027409611269831657,
- -0.0479985810816288,
- 0.07949302345514297,
- -0.012995838187634945,
- 0.028631454333662987,
- 0.027642754837870598,
- -0.002201582072302699,
- -0.047042522579431534,
- -0.031220313161611557,
- 0.12994858622550964,
- 0.05832591652870178,
- -0.027873622253537178,
- -0.1090608686208725,
- 0.07596368342638016,
- -0.033490072935819626,
- 0.112632617354393,
- -0.004402550403028727,
- 0.0477890819311142,
- 0.03515640273690224,
- -0.05663590505719185,
- 0.03808647766709328,
- -0.03944939747452736,
- -0.03938048705458641,
- -0.0405878983438015,
- -0.006054641678929329,
- -0.03180341050028801,
- 0.08937195688486099,
- 0.04111696407198906,
- -0.021803103387355804,
- -0.021021157503128052,
- -0.07121624797582626,
- -0.05365145206451416,
- 0.03510769456624985,
- -0.057638708502054214,
- 0.021425260230898857,
- -0.08278156816959381,
- -0.02837529592216015,
- 0.002520923037081957,
- -0.06454037129878998,
- 0.000060042773839086294,
- -0.007502835243940353,
- -0.027678286656737328,
- -0.004400411155074835,
- 0.016357988119125366,
- -0.05533286929130554,
- 0.03781483322381973,
- -0.038617830723524094,
- -0.023013627156615257,
- 0.010884345509111881,
- -0.15311165153980255,
- 0.028335662558674812,
- -0.011643124744296074,
- -1.2978053298695613e-8,
- -0.0016803562175482512,
- -0.010118228383362293,
- -0.009045083075761795,
- 0.020012710243463516,
- 0.005915862042456865,
- 0.03726675733923912,
- -0.10495664179325104,
- 0.013875913806259632,
- 0.08380862325429916,
- 0.10827194154262543,
- 0.016872873529791832,
- -0.02817359007894993,
- -0.005687587428838015,
- -0.0024506421759724617,
- 0.09071513265371323,
- 0.038157302886247635,
- 0.0056869094260036945,
- -0.013267404399812222,
- -0.03086746670305729,
- -0.0035269346553832293,
- -0.016227085143327713,
- -0.032342568039894104,
- 0.047855980694293976,
- 0.021473413333296776,
- 0.009926704689860344,
- -0.0024645733647048473,
- -0.03226086497306824,
- -0.054654140025377274,
- -0.05686982721090317,
- 0.04172380641102791,
- 0.02213958092033863,
- -0.012951543554663658,
- -0.023960931226611137,
- -0.01049268338829279,
- 0.02475258894264698,
- -0.025850234553217888,
- -0.05783025920391083,
- -0.025692036375403404,
- 0.009036697447299957,
- 0.0025487642269581556,
- -0.032402247190475464,
- 0.05636478215456009,
- 0.09323367476463318,
- 0.015267224051058292,
- -0.09473748505115509,
- -0.02816016785800457,
- 0.00938232522457838,
- 0.06709898263216019,
- 0.004477553069591522,
- 0.013964898884296417,
- 0.013713259249925613,
- -0.029306933283805847,
- -0.00569160096347332,
- 0.04074911028146744,
- 0.04462435096502304,
- 0.012635968625545502,
- 0.059287331998348236,
- 0.027014633640646935,
- -0.047804318368434906,
- 0.04851635545492172,
- 0.13953690230846405,
- 0.08551260083913803,
- 0.021832391619682312,
- -0.05801030993461609
- ]
- },
- {
- "keyword": "hypothesis",
- "type": "hypothesis",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.023177126422524452,
- 0.06588223576545715,
- 0.030764039605855942,
- 0.050829652696847916,
- 0.032679732888936996,
- 0.04685770720243454,
- 0.05727683752775192,
- 0.04518536850810051,
- 0.0212160162627697,
- 0.09884317964315414,
- 0.06417251378297806,
- -0.04724778234958649,
- 0.01434012595564127,
- 0.044264037162065506,
- 0.022875655442476273,
- -0.030401548370718956,
- 0.039036236703395844,
- -0.043303780257701874,
- -0.09516220539808273,
- -0.07052735984325409,
- -0.0587274394929409,
- -0.03292682021856308,
- 0.09175507724285126,
- 0.05646088719367981,
- -0.015338177792727947,
- 0.05066550150513649,
- 0.010221119038760662,
- 0.03359898924827576,
- 0.06637953221797943,
- -0.06521861255168915,
- -0.05662040039896965,
- 0.05447333678603172,
- 0.07768110185861588,
- -0.05339289829134941,
- 0.04431408271193504,
- 0.014322178438305855,
- 0.022229883819818497,
- 0.020964527502655983,
- -0.01868925802409649,
- 0.0603688508272171,
- -0.0267473254352808,
- -0.1056457981467247,
- 0.012028354220092297,
- -0.015970924869179726,
- -0.05329341068863869,
- 0.043735116720199585,
- 0.04032214358448982,
- 0.0478811040520668,
- -0.057564131915569305,
- 0.027921847999095917,
- -0.013501555658876896,
- 0.014242110773921013,
- -0.059825606644153595,
- -0.036690983921289444,
- -0.029236001893877983,
- -0.028223246335983276,
- -0.009714941494166851,
- -0.045840512961149216,
- 0.03001605160534382,
- 0.027996020391583443,
- 0.041689857840538025,
- -0.021612253040075302,
- -0.042856279760599136,
- -0.008219577372074127,
- 0.18000063300132751,
- 0.009788496419787407,
- -0.003174623241648078,
- -0.061233289539813995,
- -0.03794713318347931,
- 0.0341661274433136,
- 0.08885307610034943,
- 0.03526315838098526,
- -0.10437238216400146,
- 0.03705602511763573,
- 0.036543067544698715,
- 0.005623949691653252,
- 0.00348765030503273,
- -0.001846312079578638,
- 0.054425813257694244,
- -0.03560403361916542,
- -0.025398558005690575,
- -0.062269456684589386,
- -0.0567665658891201,
- 0.05243579298257828,
- 0.010248024947941303,
- 0.020214751362800598,
- 0.002789488760754466,
- -0.03664233162999153,
- -0.14321698248386383,
- -0.028801212087273598,
- -0.039018310606479645,
- -0.048798445612192154,
- -0.08663053810596466,
- -0.002388028195127845,
- -0.07447514683008194,
- 0.06012982502579689,
- -0.01912187598645687,
- -0.05315743386745453,
- 0.06096917390823364,
- 0.23468130826950073,
- -0.011210680939257145,
- 0.01217260304838419,
- 0.008449660614132881,
- -0.05838850140571594,
- -0.010525080375373363,
- -0.026540540158748627,
- 0.03828505426645279,
- -0.06213776022195816,
- 0.08684041351079941,
- 0.013012849725782871,
- -0.03147246688604355,
- -0.04619976133108139,
- -0.013763632625341415,
- 0.06161464378237724,
- 0.005383502226322889,
- -0.11960814893245697,
- -0.02697710692882538,
- 0.03840675204992294,
- -0.13991136848926544,
- -0.08698906004428864,
- 0.06851482391357422,
- 0.015941202640533447,
- 0.059415120631456375,
- 0.025145379826426506,
- 0.04231586307287216,
- -0.005490346346050501,
- -0.06565572321414948,
- -4.96295478158696e-33,
- 0.040778301656246185,
- -0.05584854632616043,
- 0.037188246846199036,
- 0.040615446865558624,
- 0.0054192752577364445,
- 0.008991893380880356,
- -0.06931567937135696,
- 0.004305264446884394,
- 0.009811845608055592,
- -0.04941165819764137,
- -0.05092950910329819,
- -0.02323535643517971,
- 0.01971285045146942,
- -0.04364907369017601,
- 0.016485139727592468,
- 0.03128828480839729,
- 0.014368649572134018,
- -0.02805977500975132,
- -0.019088946282863617,
- -0.043929632753133774,
- -0.007284518331289291,
- 0.0022029923275113106,
- -0.008489919826388359,
- -0.0584496334195137,
- 0.03458454832434654,
- -0.008777647279202938,
- -0.04029384255409241,
- -0.03400995582342148,
- -0.05852455273270607,
- -0.008877969346940517,
- 0.044865094125270844,
- -0.008252996951341629,
- -0.14329437911510468,
- 0.036947060376405716,
- -0.08413349092006683,
- -0.04051277041435242,
- 0.023201752454042435,
- -0.0963277742266655,
- 0.042477622628211975,
- 0.04609987139701843,
- -0.0054990071803331375,
- 0.004228445701301098,
- -0.007676443085074425,
- -0.03680816665291786,
- 0.11012980341911316,
- -0.004543802700936794,
- -0.0005206217174418271,
- 0.021832583472132683,
- 0.000828584423288703,
- 0.01704603247344494,
- 0.007159451022744179,
- -0.0020142709836363792,
- 0.007401824463158846,
- -0.07429920881986618,
- 0.07600562274456024,
- 0.021006032824516296,
- -0.080506831407547,
- 0.05203121155500412,
- 0.026425205171108246,
- -0.0017645582556724548,
- 0.02046094462275505,
- 0.05673729628324509,
- -0.06663312017917633,
- 0.054266393184661865,
- 0.007358654867857695,
- 0.11381865292787552,
- -0.0196818970143795,
- -0.003798732068389654,
- 0.044987279921770096,
- 0.027579648420214653,
- 0.04275533929467201,
- 0.0035903367679566145,
- -0.07647242397069931,
- -0.01817498542368412,
- -0.03503461554646492,
- -0.037232622504234314,
- -0.005053659901022911,
- 0.011919514276087284,
- 0.022287622094154358,
- -0.02533658966422081,
- 0.03453519567847252,
- -0.1162649393081665,
- 0.014474264346063137,
- -0.0189219918102026,
- -0.03713604807853699,
- 0.019692135974764824,
- 0.03231630101799965,
- -0.01786184124648571,
- 0.00040121047641150653,
- -0.03373638167977333,
- 0.010487672872841358,
- -0.003807676723226905,
- -0.0133277028799057,
- 0.007309658918529749,
- -0.013403244316577911,
- 2.4862921421860513e-33,
- -0.08111923187971115,
- 0.058439817279577255,
- 0.008267042227089405,
- 0.022179897874593735,
- 0.013977467082440853,
- 0.08199194818735123,
- 0.02342373877763748,
- -0.08912872523069382,
- -0.10433715581893921,
- 0.014366356655955315,
- 0.0690464973449707,
- 0.0018506525084376335,
- -0.046189770102500916,
- -0.040170058608055115,
- -0.05985845997929573,
- -0.03688959777355194,
- 0.05978640913963318,
- 0.021713970229029655,
- -0.023823589086532593,
- 0.00867471843957901,
- -0.05759718269109726,
- -0.020821398124098778,
- -0.005872328300029039,
- -0.04094035178422928,
- -0.01820649392902851,
- 0.010973176918923855,
- 0.01500733382999897,
- 0.01322642806917429,
- -0.03674791753292084,
- 0.011282439343631268,
- 0.006347467191517353,
- -0.06048642098903656,
- -0.04037872329354286,
- -0.0065008713863790035,
- -0.03474642336368561,
- 0.0840921401977539,
- 0.05522843450307846,
- 0.015693485736846924,
- -0.039796605706214905,
- 0.01581512577831745,
- 0.009812470525503159,
- -0.0018421676941215992,
- 0.018713023513555527,
- -0.029049472883343697,
- -0.023893248289823532,
- -0.02444159798324108,
- 0.07188399881124496,
- 0.05726885423064232,
- 0.08814819157123566,
- 0.003899498376995325,
- 0.0042474959045648575,
- 0.04907562583684921,
- -0.009809000417590141,
- -0.017077362164855003,
- -0.034395504742860794,
- 0.055252306163311005,
- -0.02590513601899147,
- -0.020436210557818413,
- 0.004656944423913956,
- 0.02778535522520542,
- 0.03731302171945572,
- 0.04600765183568001,
- -0.04728600010275841,
- 0.08628174662590027,
- 0.02706252597272396,
- -0.04107927531003952,
- -0.0835774838924408,
- 0.01665474846959114,
- 0.12217491120100021,
- -0.012014110572636127,
- 0.020527275279164314,
- 0.027873074635863304,
- -0.0028116197790950537,
- -0.048875901848077774,
- -0.008268354460597038,
- 0.049402907490730286,
- -0.07672132551670074,
- -0.033016692847013474,
- -0.017255475744605064,
- 0.018787967041134834,
- -0.07483012974262238,
- -0.07682397216558456,
- 0.022130349650979042,
- -0.04408768564462662,
- 0.03498320281505585,
- -0.026257090270519257,
- -0.036470603197813034,
- 0.007887480780482292,
- 0.005933386739343405,
- 0.050760041922330856,
- -0.011322352103888988,
- 0.02350408025085926,
- -0.08440131694078445,
- -0.026653140783309937,
- 0.008094030432403088,
- -1.2847881869504363e-8,
- 0.028217623010277748,
- -0.008820565417408943,
- 0.14017319679260254,
- 0.016479693353176117,
- 0.08626534044742584,
- 0.0492962971329689,
- -0.029305949807167053,
- -0.03486419841647148,
- -0.03264346346259117,
- 0.040299318730831146,
- -0.004533388651907444,
- 0.08115741610527039,
- -0.02069387584924698,
- 0.08938486874103546,
- 0.026492491364479065,
- -0.02879730798304081,
- -0.033399682492017746,
- -0.05624394863843918,
- -0.021198555827140808,
- -0.030627824366092682,
- -0.012604204006493092,
- -0.00161351275164634,
- -0.011997408233582973,
- 0.01749717816710472,
- -0.0016240649856626987,
- 0.016739143058657646,
- 0.002837334992364049,
- 0.07106902450323105,
- -0.023208416998386383,
- 0.03171076253056526,
- 0.019767245277762413,
- 0.004924661945551634,
- -0.0493638701736927,
- -0.07765989005565643,
- 0.09845013916492462,
- -0.01254745852202177,
- 0.03382563591003418,
- 0.09539629518985748,
- 0.0444868728518486,
- -0.14494377374649048,
- -0.05699078366160393,
- 0.021656712517142296,
- -0.04343058913946152,
- 0.08313586562871933,
- 0.0661950558423996,
- -0.0074005587957799435,
- -0.020176876336336136,
- -0.0824083611369133,
- -0.04491380602121353,
- 0.010958070866763592,
- 0.016758395358920097,
- 0.08021968603134155,
- 0.03170962631702423,
- -0.023179413750767708,
- 0.013845901004970074,
- 0.04608229547739029,
- 0.016209637746214867,
- -0.001741338986903429,
- -0.1222534328699112,
- -0.01897677220404148,
- 0.20333541929721832,
- 0.030120356008410454,
- 0.07001395523548126,
- -0.06523784250020981
- ]
- },
- {
- "keyword": "theory",
- "type": "hypothesis",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.03215190768241882,
- 0.06567870080471039,
- -0.03227657824754715,
- 0.06143234297633171,
- -0.020189661532640457,
- 0.025882136076688766,
- 0.14206945896148682,
- 0.02155268006026745,
- 0.04113242030143738,
- 0.07349362224340439,
- 0.021400341764092445,
- 0.05934444069862366,
- 0.013348071835935116,
- 0.07778741419315338,
- 0.030252015218138695,
- -0.06647655367851257,
- 0.024508904665708542,
- -0.042694732546806335,
- -0.1359620988368988,
- -0.04668055847287178,
- -0.04673445224761963,
- -0.09129054099321365,
- -0.02651233784854412,
- 0.035147055983543396,
- -0.03007259964942932,
- 0.090999074280262,
- -0.012361184693872929,
- 0.03366261348128319,
- 0.03861922398209572,
- -0.10041680932044983,
- -0.0896415114402771,
- 0.033449504524469376,
- -0.013368855230510235,
- 0.003984067589044571,
- -0.021032582968473434,
- 0.0021715189795941114,
- 0.042480889707803726,
- 0.038325898349285126,
- 0.05834025889635086,
- 0.04133247956633568,
- -0.05695675313472748,
- -0.02996770665049553,
- 0.037177812308073044,
- -0.01832207664847374,
- 0.03877659887075424,
- 0.026194246485829353,
- 0.03862011805176735,
- -0.019165480509400368,
- -0.04392782226204872,
- -0.050377435982227325,
- -0.02533605508506298,
- -0.006860304158180952,
- -0.06628851592540741,
- 0.019036361947655678,
- 0.022828852757811546,
- -0.014061054214835167,
- -0.06193394586443901,
- -0.042826518416404724,
- -0.00915194395929575,
- -0.03566669672727585,
- 0.04473351687192917,
- -0.015543834306299686,
- -0.06022891029715538,
- 0.03363687917590141,
- 0.1988004893064499,
- 0.026978174224495888,
- 0.05061250925064087,
- 0.034016452729701996,
- -0.06855546683073044,
- -0.05229692533612251,
- 0.012925232760608196,
- 0.0847415030002594,
- -0.08209958672523499,
- 0.05133729800581932,
- 0.13078056275844574,
- -0.015217281877994537,
- 0.06717398762702942,
- 0.07049094140529633,
- 0.024510499089956284,
- 0.05538363754749298,
- 0.01873336173593998,
- -0.003213783958926797,
- -0.02154243178665638,
- 0.04305066540837288,
- -0.020653288811445236,
- -0.0020877066999673843,
- -0.03758348152041435,
- -0.1042751744389534,
- -0.08451898396015167,
- -0.023768547922372818,
- -0.012657076120376587,
- -0.05274749547243118,
- -0.01898953504860401,
- 0.017906559631228447,
- -0.026511121541261673,
- 0.03861507773399353,
- -0.013633441179990768,
- -0.05910602957010269,
- 0.020178992301225662,
- 0.23449687659740448,
- -0.0019630317110568285,
- 0.014003201387822628,
- -0.02127472311258316,
- -0.01844857633113861,
- 0.07616793364286423,
- -0.04115254431962967,
- 0.03083317168056965,
- -0.0812498927116394,
- 0.06730014085769653,
- 0.04644109308719635,
- -0.04063217714428902,
- -0.048755306750535965,
- 0.03271815553307533,
- 0.03294484317302704,
- -0.023446323350071907,
- -0.045644719153642654,
- 0.021392859518527985,
- 0.026461642235517502,
- -0.03306656330823898,
- -0.041990965604782104,
- 0.042883481830358505,
- 0.006524909287691116,
- -0.05891336873173714,
- 0.03917888551950455,
- -0.02960287593305111,
- -0.01914924755692482,
- -0.0759061649441719,
- -4.83182728472678e-33,
- -0.02327517420053482,
- -0.01842990703880787,
- 0.057424359023571014,
- 0.027943935245275497,
- 0.07238026708364487,
- -0.020634982734918594,
- -0.07721496373414993,
- -0.024711741134524345,
- 0.04000835493206978,
- 0.02741316333413124,
- -0.0823744535446167,
- 0.01288661640137434,
- 0.018692605197429657,
- -0.03679864853620529,
- 0.0211280919611454,
- 0.0036633058916777372,
- 0.030110685154795647,
- 0.009403210133314133,
- 0.0004137821670155972,
- -0.0460209958255291,
- -0.04383831471204758,
- 0.038321301341056824,
- -0.023898929357528687,
- -0.017506340518593788,
- -0.00697372667491436,
- 0.03174324333667755,
- 0.008945794776082039,
- -0.03943687677383423,
- -0.060385651886463165,
- 0.023584410548210144,
- -0.01617094874382019,
- 0.10544978827238083,
- -0.11604589968919754,
- 0.034904953092336655,
- -0.007258431054651737,
- -0.005778093356639147,
- 0.056502021849155426,
- -0.08492883294820786,
- 0.025556005537509918,
- -0.06779000163078308,
- -0.06952600181102753,
- 0.026017820462584496,
- -0.027380172163248062,
- -0.09810352325439453,
- 0.08670082688331604,
- 0.04698209464550018,
- 0.11550947278738022,
- -0.056346140801906586,
- -0.03149263560771942,
- 0.02987077459692955,
- 0.002031756564974785,
- -0.019429946318268776,
- -0.0960562452673912,
- 0.007781803607940674,
- 0.04213305935263634,
- 0.075290746986866,
- -0.0043334574438631535,
- -0.005994576960802078,
- -0.051239509135484695,
- 0.007243407890200615,
- 0.021355850622057915,
- -0.00929065141826868,
- -0.021362196654081345,
- -0.039098843932151794,
- -0.05950912833213806,
- 0.03630061075091362,
- -0.013543987646698952,
- -0.1279350072145462,
- 0.03131750971078873,
- -0.07557471096515656,
- -0.010779969394207,
- 0.019683700054883957,
- -0.045977603644132614,
- -0.009250898845493793,
- -0.00044727232307195663,
- -0.02797771245241165,
- -0.011892247945070267,
- 0.010696711018681526,
- -0.03286577761173248,
- 0.04629606381058693,
- -0.1269543468952179,
- -0.04584226384758949,
- 0.02422969788312912,
- -0.024215448647737503,
- -0.011027094908058643,
- -0.02453453280031681,
- 0.003816073527559638,
- -0.008711162954568863,
- 0.027240188792347908,
- 0.01619289070367813,
- -0.11307621002197266,
- -0.006620754022151232,
- 0.07914243638515472,
- 0.030544854700565338,
- 0.011834091506898403,
- 2.64170774005712e-33,
- -0.06890727579593658,
- -0.06165911257266998,
- -0.07456985116004944,
- 0.013601472601294518,
- 0.0842057317495346,
- -0.018125995993614197,
- -0.047248419374227524,
- -0.00891696847975254,
- -0.060900770127773285,
- -0.012563727796077728,
- 0.05039060488343239,
- -0.019856318831443787,
- 0.018688764423131943,
- 0.009766611270606518,
- -0.009123940020799637,
- -0.01912844367325306,
- 0.09477025270462036,
- -0.007286159787327051,
- 0.030376730486750603,
- 0.03781919553875923,
- -0.03550553321838379,
- -0.053704652935266495,
- -0.02685506083071232,
- -0.0632743164896965,
- -0.020040009170770645,
- 0.013106080703437328,
- -0.021206092089414597,
- 0.03885427862405777,
- -0.02167424000799656,
- 0.07275162637233734,
- -0.00890657864511013,
- -0.05180596932768822,
- -0.01927759312093258,
- 0.03470407798886299,
- -0.10311181098222733,
- 0.0813925638794899,
- -0.029590463265776634,
- 0.05394718050956726,
- 0.02535267546772957,
- 0.017446912825107574,
- 0.06436190754175186,
- 0.05068187788128853,
- 0.03238070011138916,
- -0.007489476818591356,
- 0.003136193845421076,
- -0.04049016535282135,
- 0.06852858513593674,
- 0.09058020263910294,
- 0.02528003230690956,
- 0.05304339528083801,
- -0.04582969471812248,
- -0.02819984033703804,
- 0.025054417550563812,
- -0.05285792425274849,
- -0.03461476415395737,
- 0.11105310916900635,
- 0.023291680961847305,
- 0.026835640892386436,
- 0.0057404497638344765,
- 0.02773408591747284,
- 0.019126273691654205,
- -0.002509793033823371,
- -0.05063024163246155,
- 0.0778379887342453,
- -0.05746438354253769,
- -0.013093509711325169,
- -0.09248455613851547,
- 0.004340790212154388,
- 0.07406315952539444,
- 0.0032180408015847206,
- -0.0019102373626083136,
- 0.005695089232176542,
- -0.05982580780982971,
- 0.08324768394231796,
- -0.01959902234375477,
- -0.010224398225545883,
- -0.10091743618249893,
- -0.03569629788398743,
- -0.045732952654361725,
- -0.005214239936321974,
- -0.07819274067878723,
- -0.0422438383102417,
- 0.05170606076717377,
- -0.012041819281876087,
- -0.003507661633193493,
- -0.00749167799949646,
- 0.012266192585229874,
- 0.017344633117318153,
- 0.034972045570611954,
- -0.048802345991134644,
- -0.0067777857184410095,
- -0.013774612918496132,
- 0.026609471067786217,
- -0.010159516707062721,
- -0.009687644429504871,
- -1.2378828628811789e-8,
- 0.01200710516422987,
- -0.01804746687412262,
- 0.06361282616853714,
- 0.03661917895078659,
- 0.03033287078142166,
- 0.061742350459098816,
- 0.023956723511219025,
- -0.030053552240133286,
- -0.07121515274047852,
- 0.08933500200510025,
- -0.005757570266723633,
- 0.10146419703960419,
- -0.04952528700232506,
- 0.11128625273704529,
- 0.049153171479701996,
- 0.0006623509107157588,
- -0.00323453894816339,
- -0.010387357324361801,
- -0.07312409579753876,
- 0.044050365686416626,
- 0.07159982621669769,
- 0.018814682960510254,
- 0.04776729270815849,
- -0.022884797304868698,
- 0.035050515085458755,
- 0.07421018928289413,
- -0.04310094192624092,
- 0.03843085840344429,
- 0.005905285011976957,
- 0.0508028008043766,
- -0.007292946334928274,
- 0.0731288269162178,
- -0.018533218652009964,
- -0.02920491434633732,
- 0.027149178087711334,
- -0.042851969599723816,
- 0.007632243447005749,
- -0.024695586413145065,
- 0.007497550919651985,
- -0.06957730650901794,
- -0.014800045639276505,
- 0.013818889856338501,
- -0.054848745465278625,
- -0.0014086844166740775,
- 0.02615230344235897,
- 0.031925637274980545,
- -0.047964081168174744,
- -0.0405815951526165,
- -0.031948018819093704,
- 0.10242439061403275,
- 0.045632947236299515,
- 0.07035460323095322,
- 0.01451402623206377,
- 0.036121759563684464,
- 0.057466957718133926,
- -0.030777430161833763,
- 0.025666698813438416,
- 0.05222358554601669,
- -0.0841609314084053,
- 0.06627285480499268,
- 0.13291949033737183,
- -0.0037429314106702805,
- 0.08946723490953445,
- 0.01719081588089466
- ]
- },
- {
- "keyword": "conjecture",
- "type": "hypothesis",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.09230486303567886,
- -0.01341161411255598,
- -0.01086428202688694,
- 0.06511382013559341,
- -0.005170275457203388,
- 0.018931467086076736,
- 0.08679064363241196,
- 0.015817340463399887,
- -0.016020946204662323,
- 0.0338468961417675,
- -0.01054039504379034,
- -0.05205806344747543,
- 0.0495765246450901,
- 0.021470820531249046,
- -0.055871978402137756,
- -0.0020028010476380587,
- -0.06310971826314926,
- -0.026580478996038437,
- -0.025666020810604095,
- -0.029921187087893486,
- -0.0854647234082222,
- -0.032727308571338654,
- -0.02137538231909275,
- 0.07531161606311798,
- 0.08997800946235657,
- -0.008565354160964489,
- 0.030767830088734627,
- 0.026289183646440506,
- 0.057547975331544876,
- -0.07484886795282364,
- -0.018040992319583893,
- 0.049462173134088516,
- -0.0020394132006913424,
- -0.08797498047351837,
- 0.04754287004470825,
- -0.03295593708753586,
- 0.035921163856983185,
- 0.046526115387678146,
- 0.04008706659078598,
- 0.04259553179144859,
- -0.014806784689426422,
- -0.11210108548402786,
- 0.016667187213897705,
- -0.005833259783685207,
- -0.04160923510789871,
- 0.06790801137685776,
- -0.02738233283162117,
- 0.08968964219093323,
- -0.1045227199792862,
- -0.04413991793990135,
- -0.03431084007024765,
- -0.07086828351020813,
- -0.025409962981939316,
- -0.03320161998271942,
- -0.006588231306523085,
- -0.10594823211431503,
- -0.020023146644234657,
- -0.03831768035888672,
- 0.010348353534936905,
- 0.033269621431827545,
- 0.022463606670498848,
- -0.0029714093543589115,
- -0.0028131715953350067,
- -0.014857875183224678,
- 0.16855135560035706,
- 0.04908245429396629,
- 0.020658813416957855,
- -0.023265158757567406,
- -0.04945951700210571,
- 0.055545493960380554,
- 0.061983078718185425,
- 0.051597218960523605,
- 0.009327100589871407,
- 0.053308211266994476,
- 0.05286320298910141,
- 0.04986291378736496,
- 0.020706690847873688,
- -0.0067861685529351234,
- 0.009985598735511303,
- -0.05298522859811783,
- 0.03611379861831665,
- -0.018041465431451797,
- -0.0735863670706749,
- 0.018383122980594635,
- 0.0012350690085440874,
- -0.05331924557685852,
- -0.022779814898967743,
- -0.008717215619981289,
- -0.07282193750143051,
- 0.04154939204454422,
- -0.02853146381676197,
- 0.0009087108192034066,
- 0.04325119033455849,
- 0.06398996710777283,
- -0.10496329516172409,
- 0.054679058492183685,
- -0.027815934270620346,
- 0.041089970618486404,
- 0.045800041407346725,
- 0.2179211527109146,
- -0.03526075929403305,
- 0.051321614533662796,
- -0.03161986917257309,
- -0.031241893768310547,
- 0.035318534821271896,
- 0.031161339953541756,
- 0.03661607578396797,
- -0.0697195753455162,
- -0.009022856131196022,
- 0.017620833590626717,
- 0.009471610188484192,
- -0.08154662698507309,
- 0.033913753926754,
- 0.044387686997652054,
- 0.014702116139233112,
- -0.011917280964553356,
- 0.01976378634572029,
- 0.024418571963906288,
- -0.06036871671676636,
- 0.004064684268087149,
- 0.0766676664352417,
- 0.025523889809846878,
- -0.010739832185208797,
- 0.00535642821341753,
- 0.0313107892870903,
- 0.06290215253829956,
- 0.010830089449882507,
- -4.4000406590209065e-33,
- 0.061428170651197433,
- -0.03648876026272774,
- 0.045268405228853226,
- 0.07873493432998657,
- 0.009256908670067787,
- -0.01993579789996147,
- -0.12899252772331238,
- -0.03826434910297394,
- 0.00006226204277481884,
- 0.0016665105940774083,
- -0.008710747584700584,
- 0.028644541278481483,
- 0.09115201979875565,
- -0.06344056129455566,
- 0.02369997836649418,
- 0.019671641290187836,
- 0.11128196120262146,
- -0.02058589830994606,
- -0.07525204867124557,
- -0.06521455198526382,
- 0.03283719718456268,
- -0.061415091156959534,
- -0.02740580216050148,
- -0.017780642956495285,
- 0.08859090507030487,
- 0.008911498822271824,
- 0.04813182353973389,
- -0.06485307216644287,
- 0.04398506507277489,
- -0.008025587536394596,
- 0.004324508830904961,
- -0.03160937502980232,
- -0.022532790899276733,
- 0.12558278441429138,
- -0.012677684426307678,
- 0.020744726061820984,
- 0.03194751590490341,
- -0.07431554794311523,
- -0.04648226499557495,
- 0.04860719293355942,
- -0.1017509326338768,
- -0.020364833995699883,
- -0.05608809366822243,
- -0.022431008517742157,
- 0.06780781596899033,
- -0.03296247124671936,
- 0.09121599793434143,
- -0.07811964303255081,
- -0.13275165855884552,
- 0.08871307969093323,
- -0.03414881229400635,
- 0.014329156838357449,
- -0.05638908967375755,
- -0.016885096207261086,
- 0.06945974379777908,
- -0.04009312018752098,
- -0.023836884647607803,
- -0.051069922745227814,
- 0.05232340469956398,
- 0.08592269569635391,
- 0.017821334302425385,
- -0.002578858518972993,
- -0.08558233827352524,
- -0.03925294801592827,
- -0.07745923846960068,
- 0.08449165523052216,
- 0.07802799344062805,
- -0.018534505739808083,
- 0.027301309630274773,
- 0.0397222675383091,
- 0.01456371694803238,
- -0.008966109715402126,
- -0.006553408224135637,
- -0.03161287680268288,
- 0.09554088860750198,
- -0.04727649316191673,
- -0.011991708539426327,
- -0.016393927857279778,
- -0.08851656317710876,
- -0.0040484704077243805,
- -0.06589538604021072,
- -0.07971217483282089,
- 0.04626919701695442,
- -0.06549390405416489,
- -0.0679444819688797,
- 0.009716007858514786,
- -0.04532082378864288,
- -0.01684107817709446,
- 0.01635252870619297,
- 0.011968079023063183,
- -0.04765956103801727,
- 0.0014512196648865938,
- 0.04501284658908844,
- 0.020968405529856682,
- 0.006210204679518938,
- 3.208896804969328e-33,
- -0.09147345274686813,
- -0.0341203548014164,
- -0.07114745676517487,
- 0.03341143950819969,
- -0.0046204268001019955,
- -0.05539505556225777,
- -0.009822760708630085,
- 0.027896009385585785,
- -0.04371003434062004,
- -0.06856204569339752,
- 0.09762770682573318,
- -0.022744933143258095,
- 0.03562694415450096,
- 0.03678588941693306,
- 0.08802257478237152,
- -0.016040438786149025,
- 0.025617608800530434,
- 0.09240124374628067,
- -0.007029187399893999,
- 0.012761253863573074,
- 0.026278827339410782,
- -0.06979839503765106,
- -0.011936873197555542,
- -0.08457079529762268,
- -0.027514368295669556,
- 0.08590833842754364,
- -0.04680950939655304,
- -0.04801783710718155,
- 0.059129130095243454,
- 0.0715547576546669,
- -0.0070266276597976685,
- -0.043818000704050064,
- -0.08615991473197937,
- -0.05429752916097641,
- -0.023566797375679016,
- 0.0623868927359581,
- 0.002781326649710536,
- -0.016143295913934708,
- -0.033984821289777756,
- 0.017713027074933052,
- -0.003824161598458886,
- 0.004045020788908005,
- 0.08739965409040451,
- 0.05987570434808731,
- 0.010418228805065155,
- 0.02272653952240944,
- 0.04942644387483597,
- 0.034120120108127594,
- 0.1009119302034378,
- -0.046152494847774506,
- -0.0529806949198246,
- 0.016181563958525658,
- 0.027134915813803673,
- 0.04248756542801857,
- 0.028486883267760277,
- 0.010025568306446075,
- 0.018859704956412315,
- 0.021162647753953934,
- -0.021225588396191597,
- -0.007563999388366938,
- 0.047247499227523804,
- 0.09094423055648804,
- 0.010579274967312813,
- 0.0678212121129036,
- -0.019657224416732788,
- -0.06011104956269264,
- -0.04523541033267975,
- -0.028873944655060768,
- 0.024702485650777817,
- 0.052543800324201584,
- 0.05153921991586685,
- -0.0010306817712262273,
- -0.14104653894901276,
- -0.03251666575670242,
- -0.011031105183064938,
- 0.09760791808366776,
- -0.04147440195083618,
- 0.0688747838139534,
- -0.0495942160487175,
- 0.030814001336693764,
- 0.07669650763273239,
- 0.016282645985484123,
- 0.023843394592404366,
- -0.005601799581199884,
- 0.02919642999768257,
- -0.008799324743449688,
- 0.07581213116645813,
- 0.09002610296010971,
- -0.00660359300673008,
- -0.0021802783012390137,
- 0.005774589721113443,
- 0.028188763186335564,
- 0.01603619195520878,
- -0.01573924534022808,
- 0.052516333758831024,
- -1.1657743215209848e-8,
- -0.009430351667106152,
- -0.004947048146277666,
- -0.03825885429978371,
- 0.03926202654838562,
- 0.05223216488957405,
- -0.003951561637222767,
- 0.003308485262095928,
- 0.020118987187743187,
- -0.014690995216369629,
- 0.11518150568008423,
- 0.04287898913025856,
- 0.011060872115194798,
- -0.004271996207535267,
- 0.04153801128268242,
- -0.010969733819365501,
- 0.01149054430425167,
- -0.06424755603075027,
- -0.030544400215148926,
- -0.02575559914112091,
- -0.043424058705568314,
- -0.020067723467946053,
- -0.022440437227487564,
- 0.014087654650211334,
- 0.00998735148459673,
- -0.0269088726490736,
- 0.03275352716445923,
- 0.0539754293859005,
- -0.029127079993486404,
- -0.020671304315328598,
- -0.047856301069259644,
- -0.01093430444598198,
- -0.002697637304663658,
- 0.03590027987957001,
- -0.04506628215312958,
- -0.01076219417154789,
- 0.007959558628499508,
- 0.0097228167578578,
- 0.06148826703429222,
- -0.0031624615658074617,
- -0.09729216992855072,
- -0.07193117588758469,
- -0.0901806578040123,
- -0.03403698652982712,
- -0.037701383233070374,
- 0.04728534817695618,
- -0.05649188160896301,
- 0.022215278819203377,
- -0.09121665358543396,
- -0.0753013864159584,
- 0.018423663452267647,
- -0.04377283155918121,
- -0.018274793401360512,
- 0.10247951745986938,
- -0.019173938781023026,
- 0.09139615297317505,
- 0.014000453054904938,
- -0.019551290199160576,
- -0.012602735310792923,
- -0.0623805895447731,
- 0.020745931193232536,
- 0.08085671067237854,
- -0.03770991414785385,
- 0.03998405858874321,
- 0.041457414627075195
- ]
- },
- {
- "keyword": "experiment",
- "type": "experiment",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.00579537870362401,
- 0.03760723024606705,
- 0.026828177273273468,
- 0.06083705276250839,
- 0.022688332945108414,
- -0.06838887929916382,
- 0.047826748341321945,
- 0.021181302145123482,
- 0.04354121536016464,
- 0.013598785735666752,
- 0.06064921244978905,
- -0.04529527947306633,
- -0.0163637213408947,
- 0.0252347644418478,
- -0.06679988652467728,
- 0.01621285080909729,
- 0.07352510839700699,
- 0.00926606822758913,
- -0.10569747537374496,
- -0.004475830588489771,
- -0.006663708481937647,
- -0.08353876322507858,
- 0.0655999481678009,
- 0.0078025637194514275,
- -0.1168731302022934,
- 0.07813894003629684,
- -0.020930560305714607,
- 0.03421097248792648,
- 0.04432722181081772,
- -0.06950438767671585,
- 0.04868370294570923,
- 0.03578204661607742,
- -0.027123674750328064,
- -0.03601786494255066,
- 0.008119405247271061,
- -0.0244157612323761,
- -0.010554906912147999,
- -0.015741262584924698,
- 0.02579852007329464,
- -0.021539749577641487,
- -0.027009647339582443,
- -0.0843672826886177,
- 0.04768574610352516,
- 0.03981310501694679,
- 0.02756235934793949,
- 0.024194389581680298,
- 0.023529380559921265,
- 0.019436905160546303,
- -0.04619250074028969,
- 0.017725283280014992,
- -0.04207253083586693,
- -0.054492365568876266,
- -0.04410598799586296,
- -0.07819106429815292,
- 0.012310133315622807,
- -0.014468980021774769,
- -0.020358430221676826,
- -0.029595624655485153,
- 0.02596832439303398,
- -0.02651699259877205,
- 0.09126454591751099,
- 0.035491883754730225,
- -0.125036358833313,
- 0.02909156121313572,
- 0.045291755348443985,
- -0.02682792954146862,
- -0.051072441041469574,
- -0.04168056696653366,
- 0.025210389867424965,
- -0.041132401674985886,
- 0.08401638269424438,
- 0.02833995781838894,
- 0.0012055494589731097,
- 0.027921145781874657,
- 0.007595117669552565,
- -0.07998969405889511,
- -0.03746941313147545,
- -0.03142543137073517,
- 0.06423623859882355,
- 0.0500120148062706,
- -0.053831372410058975,
- -0.14037685096263885,
- -0.054268818348646164,
- 0.058957479894161224,
- -0.03502132371068001,
- 0.018804281949996948,
- 0.10610981285572052,
- 0.0026283867191523314,
- -0.1093008741736412,
- 0.010557577013969421,
- -0.02653018943965435,
- 0.030199576169252396,
- -0.07427206635475159,
- 0.004963252693414688,
- -0.05221349373459816,
- 0.005900923628360033,
- -0.00028577278135344386,
- -0.096830815076828,
- -0.013021562248468399,
- 0.25106585025787354,
- 0.007846254855394363,
- 0.057701874524354935,
- -0.03621027618646622,
- 0.02514430694282055,
- -0.0415731817483902,
- -0.05229815095663071,
- -0.01607758365571499,
- -0.03121192753314972,
- 0.07420549541711807,
- 0.07203187793493271,
- -0.008096401579678059,
- -0.021298101171851158,
- -0.008081676438450813,
- 0.12671391665935516,
- 0.026128968223929405,
- -0.012875775806605816,
- -0.028719350695610046,
- 0.039155468344688416,
- -0.040760383009910583,
- 0.018702875822782516,
- 0.11598389595746994,
- -0.0338047556579113,
- -0.012616347521543503,
- -0.03569162264466286,
- 0.024942627176642418,
- 0.006476334296166897,
- 0.08844628185033798,
- -7.367206601635232e-33,
- 0.01109183020889759,
- -0.11650214344263077,
- 0.0028669119346886873,
- 0.03171174228191376,
- 0.013195805251598358,
- 0.014637606218457222,
- -0.0422905832529068,
- 0.018567975610494614,
- 0.019585207104682922,
- 0.058494437485933304,
- 0.035580575466156006,
- -0.03826909884810448,
- -0.007855373434722424,
- 0.07773874700069427,
- 0.02856656163930893,
- -0.012445960193872452,
- 0.02985081821680069,
- 0.029582686722278595,
- -0.02791949175298214,
- -0.01737275905907154,
- -0.06398328393697739,
- -0.002939022844657302,
- -0.03519843891263008,
- 0.0016645456198602915,
- -0.014575057663023472,
- -0.01544545404613018,
- -0.05262939631938934,
- -0.027656525373458862,
- 0.0020649742800742388,
- 0.0066453092731535435,
- 0.0287170372903347,
- 0.05570252612233162,
- -0.04714684933423996,
- 0.02702327072620392,
- -0.05878341570496559,
- -0.0117377620190382,
- 0.027546493336558342,
- -0.0012386073358356953,
- -0.02713857963681221,
- -0.024834103882312775,
- 0.007534358650445938,
- -0.011492782272398472,
- 0.05127786472439766,
- 0.022302865982055664,
- 0.04708719253540039,
- -0.01138889417052269,
- -0.027671996504068375,
- 0.010515889152884483,
- 0.06569031625986099,
- 0.02766106091439724,
- 0.04549212008714676,
- -0.0064379554241895676,
- -0.016795584931969643,
- -0.011433460749685764,
- 0.05014275386929512,
- 0.0513012520968914,
- 0.023466167971491814,
- 0.028235826641321182,
- -0.08544527739286423,
- 0.03688720241189003,
- -0.0030608130618929863,
- 0.07214276492595673,
- -0.035159192979335785,
- 0.04047892615199089,
- 0.024820493534207344,
- 0.03239632770419121,
- -0.019761838018894196,
- -0.11258294433355331,
- 0.023203713819384575,
- 0.026909641921520233,
- -0.09225814789533615,
- -0.038393981754779816,
- -0.014498450793325901,
- 0.0200540479272604,
- -0.05184825137257576,
- -0.0731617733836174,
- -0.014959987252950668,
- 0.057141486555337906,
- 0.02236056700348854,
- -0.056876033544540405,
- 0.12437586486339569,
- -0.07070770114660263,
- 0.03984881564974785,
- -0.047504715621471405,
- -0.08152215927839279,
- 0.03149256482720375,
- -0.05707147344946861,
- -0.07999002933502197,
- -0.00774228572845459,
- -0.01708793453872204,
- 0.05239337682723999,
- -0.01707414723932743,
- 0.04765365272760391,
- -0.021169060841202736,
- 0.03776131197810173,
- 4.9035445624124325e-33,
- -0.07652854919433594,
- -0.0028737334068864584,
- -0.030490072444081306,
- 0.10954368114471436,
- 0.09060174971818924,
- 0.046093929558992386,
- 0.07269024848937988,
- -0.059024836868047714,
- -0.054455455392599106,
- 0.06545072048902512,
- -0.01051134429872036,
- 0.030704617500305176,
- 0.019736941903829575,
- 0.04762858897447586,
- -0.007661573588848114,
- 0.031386084854602814,
- 0.060280799865722656,
- 0.020748412236571312,
- 0.00906060729175806,
- 0.0189663153141737,
- -0.07068849354982376,
- 0.059055790305137634,
- 0.036516059190034866,
- -0.048842206597328186,
- 0.019977835938334465,
- 0.03453516960144043,
- 0.11783217638731003,
- -0.06772831082344055,
- -0.021686425432562828,
- -0.04463331773877144,
- -0.01850171759724617,
- -0.045557718724012375,
- 0.01700010895729065,
- 0.01973884180188179,
- 0.04194371774792671,
- 0.0665723979473114,
- 0.16711823642253876,
- -0.019852207973599434,
- -0.016863321885466576,
- -0.06906672567129135,
- 0.008085639216005802,
- 0.07837390154600143,
- 0.04138273000717163,
- 0.0676024928689003,
- 0.006326658651232719,
- 0.05217714235186577,
- -0.003797898767516017,
- -0.008824524469673634,
- -0.0016942797228693962,
- 0.03661860153079033,
- -0.026585746556520462,
- 0.02569330483675003,
- -0.05096668377518654,
- -0.04407129064202309,
- 0.002160392003133893,
- -0.013560842722654343,
- 0.047090016305446625,
- -0.022457748651504517,
- 0.03329707309603691,
- 0.07206210494041443,
- 0.000766822777222842,
- 0.002986329607665539,
- -0.051940545439720154,
- 0.012228608131408691,
- -0.0620422400534153,
- 0.028807014226913452,
- -0.062169842422008514,
- 0.08671694248914719,
- 0.03857792168855667,
- -0.02716691419482231,
- 0.11526855081319809,
- 0.06564503908157349,
- -0.043712910264730453,
- -0.07753701508045197,
- 0.04528803378343582,
- -0.01877601630985737,
- -0.08705045282840729,
- -0.029415618628263474,
- -0.08301325142383575,
- 0.02141447365283966,
- -0.0862312763929367,
- -0.007769383490085602,
- 0.010033243335783482,
- 0.004038078244775534,
- -0.0006492253160104156,
- -0.04261163994669914,
- -0.020424790680408478,
- -0.007935776375234127,
- -0.041920438408851624,
- 0.02161547541618347,
- 0.0034369989298284054,
- -0.001195255434140563,
- 0.010157437063753605,
- -0.03228965774178505,
- 0.06474731862545013,
- -1.3599176895695564e-8,
- 0.01708502694964409,
- -0.05780894309282303,
- 0.10947956144809723,
- 0.024765662848949432,
- -0.0016934655141085386,
- 0.02253378927707672,
- -0.004975863266736269,
- -0.002715889597311616,
- -0.052783723920583725,
- -0.101321741938591,
- -0.002009745454415679,
- 0.06962534785270691,
- 0.01946539618074894,
- 0.14936251938343048,
- 0.08272985368967056,
- -0.07080449908971786,
- -0.07016006857156754,
- -0.025945797562599182,
- -0.07814957201480865,
- 0.02387346513569355,
- -0.010038593783974648,
- 0.05517281964421272,
- 0.03383861109614372,
- -0.0655316486954689,
- -0.026680057868361473,
- 0.03269941732287407,
- 0.018250038847327232,
- 0.0690593346953392,
- -0.0001907619007397443,
- -0.010420866310596466,
- 0.06870853155851364,
- -0.007891821675002575,
- -0.02799108996987343,
- -0.0617700032889843,
- 0.01235976442694664,
- -0.004426503553986549,
- -0.03747294470667839,
- -0.013230734504759312,
- 0.015462462790310383,
- 0.0025896409060806036,
- -0.060366105288267136,
- -0.029048508033156395,
- -0.03426090627908707,
- 0.05392353609204292,
- -0.028123240917921066,
- -0.01526906993240118,
- -0.08496709913015366,
- -0.062215935438871384,
- -0.022561317309737206,
- 0.05541668087244034,
- 0.03548901900649071,
- -0.006993367336690426,
- 0.0026017024647444487,
- -0.010848935693502426,
- 0.057370856404304504,
- 0.014515431597828865,
- 0.013266959227621555,
- 0.0056172506883740425,
- -0.1118662878870964,
- 0.05243903398513794,
- 0.16189853847026825,
- 0.032411035150289536,
- 0.0017825531540438533,
- -0.04344899207353592
- ]
- },
- {
- "keyword": "study",
- "type": "experiment",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.0617615170776844,
- 0.057870153337717056,
- -0.018592288717627525,
- 0.06628479808568954,
- -0.038447313010692596,
- -0.020623300224542618,
- 0.00818244181573391,
- 0.08129166811704636,
- 0.009586346335709095,
- 0.02599683776497841,
- 0.0010080523788928986,
- -0.0024804084096103907,
- -0.03368538245558739,
- 0.03908603638410568,
- -0.03844405338168144,
- -0.07740700244903564,
- -0.07373471558094025,
- -0.02109416201710701,
- -0.011935032904148102,
- -0.03919655829668045,
- -0.10119619965553284,
- -0.02478495053946972,
- 0.04059808328747749,
- 0.010198711417615414,
- -0.017640572041273117,
- 0.08025802671909332,
- -0.025920961052179337,
- -0.009870418347418308,
- 0.044978681951761246,
- -0.05032729730010033,
- -0.03539855033159256,
- 0.0894831046462059,
- 0.03181673213839531,
- 0.031303003430366516,
- -0.04136210307478905,
- 0.027744045481085777,
- 0.006080919876694679,
- 0.03948168084025383,
- 0.04725787043571472,
- 0.015244788490235806,
- -0.03509026765823364,
- -0.010765892453491688,
- 0.06278543919324875,
- -0.01607043854892254,
- 0.03140870854258537,
- -0.05107109993696213,
- -0.011088746599853039,
- -0.02381051518023014,
- -0.013081967830657959,
- 0.06274791061878204,
- -0.1223079189658165,
- -0.007034749258309603,
- 0.007450821343809366,
- -0.04721373692154884,
- -0.032293882220983505,
- 0.017560629174113274,
- 0.004999611992388964,
- -0.02556496113538742,
- -0.006970751099288464,
- -0.04286649078130722,
- 0.06168306991457939,
- -0.005343275144696236,
- -0.11029242724180222,
- -0.007036110851913691,
- 0.0029576520901173353,
- -0.010047392919659615,
- -0.006778961978852749,
- 0.04662605747580528,
- -0.016036363318562508,
- 0.048566702753305435,
- 0.04260212928056717,
- 0.009362582117319107,
- -0.0228540301322937,
- 0.08652076125144958,
- 0.08531343191862106,
- -0.014253279194235802,
- -0.024168306961655617,
- 0.019256658852100372,
- 0.10675613582134247,
- -0.032277557998895645,
- 0.05222499743103981,
- 0.0036891973577439785,
- -0.020426124334335327,
- 0.02911563403904438,
- 0.005426112096756697,
- -0.005088557489216328,
- 0.04246452823281288,
- 0.0327477902173996,
- -0.04507210850715637,
- 0.035181924700737,
- 0.041129350662231445,
- 0.0010155518539249897,
- -0.06714766472578049,
- 0.012285713106393814,
- -0.01277531124651432,
- 0.0095460694283247,
- 0.026966623961925507,
- -0.04197274520993233,
- 0.04923226684331894,
- 0.2546866834163666,
- 0.032867901027202606,
- 0.1127835139632225,
- -0.00532945990562439,
- 0.028536854311823845,
- -0.09856422990560532,
- -0.06729970127344131,
- 0.004876391962170601,
- -0.012126972898840904,
- 0.0709734633564949,
- 0.006663234438747168,
- 0.0016250164480879903,
- 0.02530728280544281,
- -0.028093844652175903,
- 0.07324513047933578,
- 0.11963336914777756,
- -0.0062278397381305695,
- 0.026485690847039223,
- 0.04174529388546944,
- 0.07521399110555649,
- 0.08697858452796936,
- 0.011732863262295723,
- 0.02902708202600479,
- -0.04056903347373009,
- -0.06040717288851738,
- 0.008917481638491154,
- -0.12365986406803131,
- -0.026188740506768227,
- -5.919635634449479e-33,
- 0.012388660572469234,
- -0.09409301728010178,
- -0.017331553623080254,
- 0.05920824781060219,
- -0.02912439964711666,
- -0.02077234536409378,
- 0.030744032934308052,
- 0.02899171970784664,
- -0.0010833203559741378,
- 0.0573575459420681,
- 0.03307143598794937,
- -0.014566585421562195,
- 0.024191556498408318,
- 0.09315382689237595,
- 0.06344299018383026,
- 0.02039186842739582,
- -0.07130606472492218,
- 0.0847012996673584,
- -0.0967750996351242,
- 0.016210678964853287,
- -0.016915161162614822,
- -0.061909954994916916,
- 0.0546841137111187,
- -0.020583132281899452,
- -0.053366996347904205,
- -0.02973661571741104,
- -0.012764392420649529,
- -0.11156716197729111,
- 0.01065816543996334,
- 0.016358841210603714,
- 0.036756083369255066,
- 0.015007833950221539,
- -0.1170140728354454,
- -0.034822218120098114,
- -0.002802051603794098,
- 0.030488895252346992,
- 0.05723557993769646,
- -0.047113291919231415,
- -0.0070059592835605145,
- -0.03916030004620552,
- -0.008543340489268303,
- 0.020866284146904945,
- 0.07093078643083572,
- -0.03476486727595329,
- 0.006789504550397396,
- 0.08827583491802216,
- 0.015555763617157936,
- 0.014669426716864109,
- -0.019809789955615997,
- -0.0004752667446155101,
- -0.018474049866199493,
- -0.05687673017382622,
- -0.07519829273223877,
- -0.11284781247377396,
- 0.017223099246621132,
- 0.07611260563135147,
- 0.006643263157457113,
- -0.03137921541929245,
- 0.01021481677889824,
- 0.004672992043197155,
- 0.0673365592956543,
- 0.09365125000476837,
- -0.04587710648775101,
- -0.008799534291028976,
- 0.0017591302748769522,
- 0.013002434745430946,
- -0.052584871649742126,
- -0.0396047867834568,
- 0.11345010250806808,
- -0.0606648325920105,
- -0.13897638022899628,
- -0.034458182752132416,
- 0.035485003143548965,
- 0.0052379402332007885,
- -0.04047955945134163,
- -0.0698949545621872,
- 0.011732111684978008,
- 0.06451281160116196,
- 0.027338214218616486,
- 0.010934251360595226,
- 0.0726240947842598,
- -0.06113801524043083,
- 0.05309028923511505,
- -0.06183670088648796,
- -0.013716081157326698,
- 0.026607738807797432,
- 0.028522271662950516,
- -0.09764201939105988,
- 0.016004808247089386,
- -0.026781393215060234,
- -0.0438506156206131,
- 0.014300791546702385,
- 0.04193215072154999,
- 0.031959258019924164,
- -0.01963823288679123,
- 4.7666898366698555e-33,
- -0.04039379209280014,
- 0.01242379005998373,
- -0.060776274651288986,
- 0.08660292625427246,
- 0.07185458391904831,
- -0.012844649143517017,
- 0.040596164762973785,
- -0.008812140673398972,
- 0.04331405833363533,
- 0.052592840045690536,
- -0.0161882396787405,
- -0.009677227586507797,
- 0.03359540179371834,
- 0.06531895697116852,
- 0.01367780938744545,
- -0.028314799070358276,
- 0.019539162516593933,
- -0.05868145078420639,
- -0.08285952359437943,
- 0.059708692133426666,
- -0.09408454596996307,
- 0.0122647350654006,
- 0.029380962252616882,
- -0.06449992209672928,
- -0.033664245158433914,
- 0.013001042418181896,
- 0.08935397118330002,
- -0.001499183475971222,
- -0.011230475269258022,
- -0.010410896502435207,
- 0.07616641372442245,
- -0.010495244525372982,
- -0.060881391167640686,
- -0.018290024250745773,
- -0.015232531353831291,
- 0.07610444724559784,
- 0.10568921267986298,
- 0.07482873648405075,
- -0.054630596190690994,
- 0.019982147961854935,
- 0.0855516642332077,
- 0.04815571755170822,
- 0.01383285690099001,
- 0.027936071157455444,
- 0.025984928011894226,
- 0.011376001872122288,
- -0.00013369598309509456,
- 0.06373518705368042,
- 0.04278065636754036,
- 0.020708605647087097,
- -0.017579419538378716,
- 0.04790447652339935,
- -0.00002288034011144191,
- -0.09248500317335129,
- 0.030710134655237198,
- -0.041947510093450546,
- 0.05805772542953491,
- -0.02960819937288761,
- -0.07939911633729935,
- 0.010347133502364159,
- 0.00022862110927235335,
- 0.04791104793548584,
- -0.047240469604730606,
- 0.06412755697965622,
- -0.025630639865994453,
- -0.008328180760145187,
- -0.05020207539200783,
- 0.004383552819490433,
- 0.04198107868432999,
- 0.02618836611509323,
- -0.010919345542788506,
- 0.025899045169353485,
- -0.07764269411563873,
- -0.04124056175351143,
- 0.030305128544569016,
- -0.021685121580958366,
- -0.09107521176338196,
- -0.03160938620567322,
- -0.007432855665683746,
- -0.01309238187968731,
- -0.0576639361679554,
- -0.042137261480093,
- -0.03643717244267464,
- 0.08742286264896393,
- -0.029170773923397064,
- -0.008142382837831974,
- 0.029373805969953537,
- -0.007490932941436768,
- -0.03517232462763786,
- -0.09248266369104385,
- -0.05517711862921715,
- -0.0191495381295681,
- -0.026926321908831596,
- -0.08342401683330536,
- 0.03202543780207634,
- -1.2729950427115e-8,
- -0.023958241567015648,
- -0.08380615711212158,
- 0.08132462203502655,
- 0.04634590446949005,
- -0.013309119269251823,
- -0.00921654049307108,
- -0.06859258562326431,
- -0.026868024840950966,
- -0.041681308299303055,
- 0.036120835691690445,
- -0.019073255360126495,
- 0.02167607471346855,
- -0.03643709793686867,
- 0.033948931843042374,
- 0.014633353799581528,
- -0.06328976154327393,
- 0.06223979592323303,
- 0.05506502836942673,
- -0.06240316480398178,
- 0.006558348424732685,
- -0.02392696589231491,
- 0.0010413561249151826,
- 0.013229340314865112,
- 0.04570555314421654,
- -0.00565234012901783,
- 0.02354993112385273,
- 0.09810720384120941,
- 0.08590494841337204,
- -0.0066604106687009335,
- 0.016215115785598755,
- 0.010762173682451248,
- 0.08556561917066574,
- 0.00324241048656404,
- -0.11788822710514069,
- 0.04302331805229187,
- -0.047463852912187576,
- 0.024920817464590073,
- -0.030203331261873245,
- 0.050033241510391235,
- 0.013521106913685799,
- -0.06797263771295547,
- -0.06151854991912842,
- 0.050516121089458466,
- 0.028692835941910744,
- -0.011895126663148403,
- -0.01046094112098217,
- -0.03734048828482628,
- 0.009993446059525013,
- 0.041914213448762894,
- -0.04054028168320656,
- -0.02955719642341137,
- -0.0030395998619496822,
- 0.02661401592195034,
- 0.0008921289700083435,
- 0.032918836921453476,
- 0.0736357569694519,
- -0.0032512075267732143,
- -0.009458493441343307,
- -0.14442962408065796,
- 0.04715212807059288,
- 0.19165708124637604,
- 0.004564891569316387,
- 0.032320912927389145,
- -0.005451601929962635
- ]
- },
- {
- "keyword": "trial",
- "type": "experiment",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.014803574420511723,
- 0.10571553558111191,
- -0.0038314301054924726,
- -0.01763378083705902,
- 0.04127424582839012,
- 0.041831258684396744,
- 0.04864851012825966,
- 0.01837223209440708,
- 0.050049617886543274,
- 0.03161400184035301,
- 0.03646663948893547,
- 0.014918182976543903,
- -0.027239874005317688,
- -0.05876106023788452,
- -0.014646858908236027,
- -0.025217384099960327,
- 0.06222307309508324,
- 0.05093541368842125,
- 0.0062192510813474655,
- 0.011434345506131649,
- -0.10911251604557037,
- -0.05168197676539421,
- 0.05131743475794792,
- 0.04011797159910202,
- -0.07728317379951477,
- 0.04144981876015663,
- -0.040804773569107056,
- 0.023405395448207855,
- 0.06018676608800888,
- -0.08262408524751663,
- 0.06208524480462074,
- 0.012661096639931202,
- -0.005249094683676958,
- 0.009495525620877743,
- 0.0648706927895546,
- -0.06138264015316963,
- -0.03116985224187374,
- -0.02484704926609993,
- -0.005590658634901047,
- 0.02142750658094883,
- 0.006400684360414743,
- -0.08072556555271149,
- -0.07018833607435226,
- 0.014399252831935883,
- -0.018379367887973785,
- 0.0052670021541416645,
- -0.02644299529492855,
- 0.08619341999292374,
- 0.032528091222047806,
- 0.07201533019542694,
- -0.0354975089430809,
- -0.04667316749691963,
- -0.02832481637597084,
- -0.01279316283762455,
- -0.013729026541113853,
- -0.0702480673789978,
- 0.06674495339393616,
- -0.02126375213265419,
- 0.03302197530865669,
- -0.04164980724453926,
- 0.03645455092191696,
- -0.010949032381176949,
- -0.151926189661026,
- 0.04026168957352638,
- -0.017193829640746117,
- 0.016479354351758957,
- 0.009692449122667313,
- 0.020532166585326195,
- 0.03488055244088173,
- -0.06607838720083237,
- -0.011284098960459232,
- 0.0361718088388443,
- 0.03045947104692459,
- 0.0332244373857975,
- -0.002710968255996704,
- 0.008586443960666656,
- -0.02493482083082199,
- -0.05669720098376274,
- 0.0468515120446682,
- -0.04408189281821251,
- 0.008786722086369991,
- 0.005021329503506422,
- -0.07183214277029037,
- 0.04586731269955635,
- -0.009116997942328453,
- -0.04346363991498947,
- -0.013981265015900135,
- 0.00593634694814682,
- 0.04946355149149895,
- -0.035713039338588715,
- 0.04068835824728012,
- -0.047627612948417664,
- 0.03596130758523941,
- 0.023465624079108238,
- -0.03888837993144989,
- 0.03869057446718216,
- 0.015020008198916912,
- -0.022173037752509117,
- -0.018202366307377815,
- 0.2608226537704468,
- 0.02390950173139572,
- -0.000390410132240504,
- -0.045878816395998,
- -0.03162531554698944,
- 0.0034654149785637856,
- -0.028050027787685394,
- -0.0282606054097414,
- -0.030715439468622208,
- 0.029216868802905083,
- -0.0014100060798227787,
- 0.01953960210084915,
- -0.016123613342642784,
- 0.04507023096084595,
- 0.06435148417949677,
- 0.02432410418987274,
- 0.07392245531082153,
- -0.04725842550396919,
- 0.016781629994511604,
- -0.009964583441615105,
- 0.04823955520987511,
- 0.038243938237428665,
- 0.0636419728398323,
- -0.03219537064433098,
- -0.03645791858434677,
- -0.03839288279414177,
- -0.05321192368865013,
- -0.021723929792642593,
- -6.668778551570508e-33,
- -0.007661896757781506,
- -0.019894715398550034,
- -0.013316268101334572,
- -0.012694225646555424,
- -0.015389369800686836,
- 0.029840007424354553,
- -0.01915038749575615,
- 0.009381148032844067,
- -0.008612117730081081,
- 0.09220202267169952,
- -0.05063323676586151,
- -0.11435281485319138,
- -0.014935651794075966,
- -0.025018977001309395,
- 0.06730940192937851,
- -0.025795649737119675,
- -0.08943917602300644,
- 0.03325342386960983,
- -0.0115489661693573,
- 0.010148689150810242,
- -0.04529162496328354,
- -0.007007948588579893,
- 0.01929199881851673,
- 0.06532364338636398,
- -0.09890127927064896,
- -0.047602035105228424,
- -0.052720069885253906,
- -0.08427271246910095,
- 0.046295907348394394,
- 0.011374011635780334,
- -0.012895608320832253,
- 0.06742513179779053,
- 0.06313171237707138,
- 0.07126777619123459,
- 0.02926979586482048,
- 0.023862263187766075,
- -0.016083378344774246,
- -0.046173352748155594,
- 0.009838913567364216,
- 0.07329299300909042,
- -0.03729744255542755,
- 0.003244034480303526,
- 0.055034562945365906,
- -0.04859521612524986,
- -0.003474900498986244,
- -0.03268519043922424,
- -0.02816534973680973,
- -0.06250601261854172,
- -0.032077010720968246,
- 0.03268340975046158,
- 0.03444672375917435,
- -0.004204543307423592,
- -0.051104895770549774,
- -0.03604330122470856,
- 0.0248918067663908,
- 0.07459568977355957,
- -0.00018384707800578326,
- 0.018446458503603935,
- 0.005975303240120411,
- 0.04929407685995102,
- 0.07183099538087845,
- 0.0559941790997982,
- -0.029866065829992294,
- 0.11226250231266022,
- -0.05888867378234863,
- -0.06018376350402832,
- -0.018609873950481415,
- -0.10263253003358841,
- 0.045340295881032944,
- -0.010809208266437054,
- -0.06847788393497467,
- -0.007465752307325602,
- 0.09409063309431076,
- 0.03208823502063751,
- -0.04779849946498871,
- -0.032191112637519836,
- 0.0836692824959755,
- 0.04972369223833084,
- -0.02969786897301674,
- -0.009574524126946926,
- -0.014190792106091976,
- -0.012194180861115456,
- -0.037731021642684937,
- 0.08608298003673553,
- 0.01978500746190548,
- 0.025485973805189133,
- -0.03021204099059105,
- -0.08740467578172684,
- 0.021584810689091682,
- 0.037596140056848526,
- 0.031186435371637344,
- -0.036039624363183975,
- 0.03587830066680908,
- -0.038790855556726456,
- 0.0044777486473321915,
- 5.464457405846211e-33,
- -0.06150364875793457,
- -0.06076475977897644,
- -0.0161544531583786,
- 0.04127226397395134,
- 0.049295004457235336,
- 0.003711207304149866,
- 0.006480388343334198,
- -0.05119618400931358,
- -0.020125646144151688,
- 0.053723182529211044,
- -0.15400144457817078,
- 0.03851655498147011,
- 0.05012785643339157,
- 0.07853381335735321,
- -0.03850080817937851,
- 0.009130778722465038,
- 0.0462743416428566,
- -0.03957326337695122,
- 0.007700387854129076,
- -0.0045623937621712685,
- 0.012106630019843578,
- 0.013342893682420254,
- 0.06329753994941711,
- -0.05673539265990257,
- -0.05201870948076248,
- 0.0019396308343857527,
- 0.07321249693632126,
- -0.017784137278795242,
- -0.04150472581386566,
- 0.022473225370049477,
- 0.029623212292790413,
- -0.0036639003083109856,
- -0.10145837068557739,
- 0.048726655542850494,
- 0.00425280537456274,
- 0.09158407151699066,
- 0.2171032875776291,
- -0.04510033130645752,
- -0.06405243277549744,
- -0.011520405299961567,
- 0.013754800893366337,
- 0.0007289308123290539,
- 0.0021455897949635983,
- 0.07188592851161957,
- 0.009186552837491035,
- 0.05395694077014923,
- -0.07419304549694061,
- -0.006728289183229208,
- 0.06243486329913139,
- 0.0017007235437631607,
- -0.04285179451107979,
- 0.032023631036281586,
- 0.03188610449433327,
- -0.03945005685091019,
- -0.04377369210124016,
- -0.08328459411859512,
- -0.025098219513893127,
- -0.01782022789120674,
- 0.0008082532440312207,
- 0.0556778721511364,
- 0.008517674170434475,
- 0.04374777153134346,
- -0.03207358717918396,
- 0.05700301006436348,
- 0.027288217097520828,
- 0.05743071436882019,
- 0.012497049756348133,
- -0.0029050761368125677,
- -0.010034941136837006,
- 0.027211111038923264,
- -0.030307255685329437,
- 0.024297315627336502,
- -0.12944726645946503,
- -0.0642952099442482,
- 0.016958367079496384,
- 0.03547889366745949,
- -0.05707200989127159,
- 0.03494992107152939,
- -0.07645320147275925,
- -0.11712300777435303,
- 0.034343741834163666,
- -0.0931042730808258,
- -0.035464633256196976,
- 0.0330168716609478,
- -0.06004655361175537,
- 0.05535362660884857,
- 0.002187170786783099,
- 0.01506583672016859,
- 0.0028910115361213684,
- 0.09078744053840637,
- 0.017233697697520256,
- -0.06950017809867859,
- 0.09228638559579849,
- 0.005210516508668661,
- 0.023668888956308365,
- -1.263114146610178e-8,
- -0.031069394201040268,
- -0.005920132622122765,
- 0.059639159590005875,
- 0.005389390513300896,
- 0.0072890473529696465,
- -0.015867359936237335,
- -0.03289007768034935,
- -0.0009130268008448184,
- -0.013680403120815754,
- 0.015750136226415634,
- -0.021690016612410545,
- 0.01981784589588642,
- -0.015905089676380157,
- 0.08071581274271011,
- 0.030046580359339714,
- -0.013164518401026726,
- 0.018860245123505592,
- 0.0364956371486187,
- -0.06946437805891037,
- 0.023441089317202568,
- -0.05800844356417656,
- 0.053513120859861374,
- 0.02053843066096306,
- -0.06518040597438812,
- -0.028796253725886345,
- -0.04123422130942345,
- 0.08387044072151184,
- 0.12415279448032379,
- 0.029346531257033348,
- -0.00030300248181447387,
- 0.013773169368505478,
- 0.08474121242761612,
- -0.04465813189744949,
- -0.052362579852342606,
- -0.00669100321829319,
- -0.07826964557170868,
- -0.059071045368909836,
- 0.04017072543501854,
- 0.003427638905122876,
- -0.027839485555887222,
- -0.03186057507991791,
- 0.0354374423623085,
- 0.0560748390853405,
- -0.044606175273656845,
- 0.010682648979127407,
- -0.019193241372704506,
- -0.06906574964523315,
- 0.05107210576534271,
- 0.014942819252610207,
- -0.03982875496149063,
- -0.031022651121020317,
- -0.041739556938409805,
- 0.00201010936871171,
- 0.053095754235982895,
- 0.09332387894392014,
- 0.05140336602926254,
- 0.06834717094898224,
- 0.03080104850232601,
- -0.08440038561820984,
- -0.011114655062556267,
- 0.20588189363479614,
- 0.0719074234366417,
- 0.06545114517211914,
- -0.071480393409729
- ]
- },
- {
- "keyword": "test",
- "type": "experiment",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.015031197108328342,
- 0.03973270580172539,
- -0.023383665829896927,
- 0.06372781097888947,
- -0.005140500143170357,
- -0.04947058856487274,
- 0.07868458330631256,
- 0.035753034055233,
- -0.0020702846813946962,
- -0.007041486445814371,
- 0.017928356304764748,
- -0.08162286877632141,
- 0.0034197147469967604,
- 0.03026498109102249,
- -0.013932868838310242,
- -0.06677456945180893,
- 0.014973308891057968,
- -0.030131028965115547,
- -0.07880387455224991,
- 0.005995114799588919,
- -0.05333753302693367,
- -0.02613862231373787,
- -0.033209558576345444,
- 0.027369415387511253,
- -0.020306305959820747,
- 0.021272193640470505,
- -0.06863574683666229,
- 0.031516097486019135,
- 0.026471778750419617,
- -0.053510960191488266,
- 0.041897159069776535,
- 0.040461257100105286,
- 0.03285153582692146,
- 0.027963858097791672,
- 0.06092594936490059,
- 0.035764068365097046,
- 0.02528250403702259,
- 0.014801057055592537,
- 0.010077081620693207,
- -0.004219775553792715,
- -0.0045211659744381905,
- -0.12538959085941315,
- 0.03192499279975891,
- -0.014995817095041275,
- 0.03108406998217106,
- 0.03502446785569191,
- -0.014378046616911888,
- 0.06186140701174736,
- -0.05602116137742996,
- 0.015304068103432655,
- -0.022410355508327484,
- -0.04056478291749954,
- -0.028835607692599297,
- -0.04897454380989075,
- -0.022156743332743645,
- 0.02543075755238533,
- -0.007838749326765537,
- -0.016752518713474274,
- 0.045232608914375305,
- 0.037561770528554916,
- 0.04920760542154312,
- -0.024873962625861168,
- -0.029924990609288216,
- 0.05860094353556633,
- 0.018553467467427254,
- 0.0234692320227623,
- 0.009016805328428745,
- -0.024819940328598022,
- -0.04987916722893715,
- -0.030387455597519875,
- -0.013402343727648258,
- 0.022430380806326866,
- 0.029705528169870377,
- 0.06515287607908249,
- 0.07267002761363983,
- -0.006978041026741266,
- 0.0028868145309388638,
- -0.06788481026887894,
- 0.058064062148332596,
- -0.014649871736764908,
- -0.06996753066778183,
- -0.030399909242987633,
- -0.051427487283945084,
- 0.051127124577760696,
- 0.013110253028571606,
- 0.07990209758281708,
- 0.10344330221414566,
- 0.029609445482492447,
- -0.11970685422420502,
- 0.008730487897992134,
- 0.01138425711542368,
- 0.04499659687280655,
- -0.016210461035370827,
- 0.00020769782713614404,
- -0.03799275681376457,
- 0.009316722862422466,
- 0.0068366508930921555,
- -0.016138853505253792,
- -0.02950529381632805,
- 0.2584070563316345,
- 0.044436488300561905,
- 0.03167024627327919,
- -0.010677437297999859,
- -0.02601459249854088,
- -0.07020294666290283,
- -0.0347587987780571,
- -0.013007431291043758,
- -0.05743783712387085,
- 0.0769428238272667,
- 0.023601343855261803,
- -0.061764348298311234,
- -0.011029780842363834,
- 0.03526032343506813,
- 0.03945118188858032,
- 0.03209483623504639,
- -0.05764372646808624,
- -0.06919007748365402,
- 0.06026722863316536,
- -0.030656306073069572,
- 0.025526419281959534,
- 0.056578412652015686,
- 0.004317745100706816,
- -0.0021457725670188665,
- -0.010170374996960163,
- 0.031531188637018204,
- -0.034276045858860016,
- 0.07365193963050842,
- -4.5897367945688224e-33,
- 0.0217299647629261,
- -0.12263764441013336,
- 0.05520788952708244,
- 0.09948453307151794,
- -0.05177105590701103,
- 0.03312036022543907,
- -0.009393049404025078,
- 0.05373648181557655,
- -0.002519214991480112,
- 0.06467607617378235,
- 0.008059355430305004,
- -0.005559640936553478,
- -0.025301603600382805,
- 0.020993435755372047,
- 0.1097211018204689,
- 0.11197400093078613,
- -0.027234220877289772,
- 0.00504051148891449,
- -0.049331776797771454,
- 0.02748444303870201,
- -0.027815522626042366,
- -0.04101397469639778,
- 0.012629940174520016,
- -0.03747296333312988,
- -0.07384078949689865,
- -0.04554004222154617,
- -0.0007244092412292957,
- -0.018936550244688988,
- 0.031460557132959366,
- 0.0006879517459310591,
- -0.040185730904340744,
- 0.019813604652881622,
- -0.0733238235116005,
- 0.07790341228246689,
- -0.02386779710650444,
- -0.011907421052455902,
- 0.018087584525346756,
- -0.027770400047302246,
- 0.016352668404579163,
- -0.018042083829641342,
- -0.040330056101083755,
- -0.010214593261480331,
- -0.0011112522333860397,
- 0.04711846262216568,
- 0.03269528970122337,
- -0.02438316121697426,
- -0.024005291983485222,
- -0.020213734358549118,
- 0.04799261316657066,
- -0.0009767597075551748,
- -0.01376874465495348,
- 0.015160707756876945,
- -0.07444394379854202,
- -0.029434559866786003,
- -0.023691367357969284,
- 0.0476769357919693,
- 0.01874539814889431,
- -0.06580651551485062,
- -0.030311372131109238,
- 0.05402035638689995,
- 0.07341842353343964,
- 0.02346353977918625,
- -0.04887795075774193,
- 0.052370134741067886,
- -0.03216472268104553,
- -0.02807675488293171,
- -0.06266658008098602,
- -0.09543617814779282,
- 0.04784439504146576,
- 0.04679865762591362,
- -0.035385798662900925,
- -0.07512225955724716,
- 0.02640899270772934,
- 0.03426362946629524,
- -0.028636164963245392,
- -0.03691946715116501,
- -0.006887534167617559,
- 0.07998950779438019,
- -0.018850766122341156,
- -0.057161346077919006,
- 0.09591411054134369,
- -0.07021894305944443,
- 0.034596361219882965,
- -0.052426353096961975,
- 0.011588295921683311,
- 0.006111068185418844,
- -0.0029863857198506594,
- -0.11347904056310654,
- 0.005037401802837849,
- -0.07056428492069244,
- -0.020478028804063797,
- 0.029613427817821503,
- 0.009584547020494938,
- -0.013709910213947296,
- 0.07456492632627487,
- 3.943845995146162e-33,
- -0.02476346865296364,
- 0.02974938414990902,
- -0.05263158679008484,
- 0.14134101569652557,
- 0.051754169166088104,
- -0.03242621570825577,
- 0.14276644587516785,
- -0.013135640881955624,
- -0.06459381431341171,
- 0.1234283521771431,
- 0.0224454328417778,
- -0.040650494396686554,
- 0.05906892567873001,
- 0.0021510336082428694,
- -0.004161688964813948,
- 0.025434384122490883,
- 0.04589233919978142,
- -0.08103016763925552,
- -0.04622483253479004,
- -0.02373233065009117,
- -0.0896615982055664,
- 0.0601566918194294,
- 0.0024178826715797186,
- -0.0025175027549266815,
- -0.10536583513021469,
- 0.02550225891172886,
- 0.04931063950061798,
- -0.03936217725276947,
- -0.004265218507498503,
- -0.03715590387582779,
- 0.08064169436693192,
- 0.008934678509831429,
- -0.04869379103183746,
- 0.06283915787935257,
- 0.059939030557870865,
- 0.02869473025202751,
- 0.15490712225437164,
- -0.01752118393778801,
- -0.02337666042149067,
- 0.05498550832271576,
- 0.057972248643636703,
- 0.053548503667116165,
- 0.041057288646698,
- 0.10155554115772247,
- -0.03387531265616417,
- 0.06063975393772125,
- 0.010195114649832249,
- -0.05018787086009979,
- 0.033957019448280334,
- 0.03836309164762497,
- -0.06515567749738693,
- 0.019159696996212006,
- 0.00909053348004818,
- -0.03391219675540924,
- -0.009248773567378521,
- -0.03154886141419411,
- -0.054644931107759476,
- 0.012228365056216717,
- -0.026367023587226868,
- 0.005063236225396395,
- -0.06704775989055634,
- 0.07896340638399124,
- -0.028663549572229385,
- 0.052697427570819855,
- -0.07285698503255844,
- -0.023121427744627,
- -0.04552410542964935,
- 0.06088455021381378,
- 0.060525666922330856,
- 0.031195461750030518,
- 0.015246973372995853,
- 0.021149659529328346,
- -0.04746187478303909,
- -0.010208230465650558,
- 0.035553447902202606,
- -0.02060100995004177,
- -0.11714451014995575,
- 0.00897850003093481,
- -0.007264834828674793,
- -0.050776440650224686,
- -0.06900405883789062,
- -0.07810905575752258,
- -0.05317222326993942,
- 0.07827998697757721,
- -0.052368082106113434,
- 0.05363554134964943,
- 0.04014499858021736,
- 0.046057093888521194,
- -0.04671239107847214,
- 0.011785201728343964,
- 0.05128901079297066,
- 0.02560451067984104,
- -0.014257402159273624,
- -0.052798040211200714,
- -0.0030002291314303875,
- -1.4230669975745514e-8,
- -0.045651182532310486,
- -0.0858198031783104,
- 0.04566488042473793,
- 0.012617352418601513,
- -0.028320612385869026,
- 0.007216209080070257,
- -0.02611558884382248,
- -0.027357354760169983,
- -0.025997653603553772,
- 0.029181811958551407,
- 0.05521538853645325,
- 0.030487077310681343,
- -0.03650935739278793,
- 0.07847344875335693,
- 0.04621957242488861,
- -0.09006711095571518,
- -0.03849629685282707,
- 0.04629986360669136,
- -0.011651420034468174,
- 0.03947019577026367,
- -0.08114439994096756,
- 0.03366031125187874,
- 0.010896449908614159,
- 0.04888380318880081,
- -0.0413401797413826,
- 0.0529516376554966,
- 0.04239329695701599,
- 0.13303232192993164,
- -0.0012180762132629752,
- -0.008694487623870373,
- 0.06070486083626747,
- 0.042398978024721146,
- -0.04008278623223305,
- -0.07806911319494247,
- 0.0005587838822975755,
- 0.03463922068476677,
- -0.013519225642085075,
- 0.0009195073507726192,
- 0.031932927668094635,
- 0.03707339987158775,
- -0.0729997307062149,
- 0.009550630114972591,
- 0.04198652505874634,
- -0.04952099919319153,
- -0.05606188625097275,
- -0.08057477325201035,
- -0.0295295137912035,
- -0.0409681536257267,
- -0.01987297460436821,
- -0.08689642697572708,
- -0.03091476298868656,
- 0.007373028434813023,
- 0.018751561641693115,
- 0.010001727379858494,
- 0.035906966775655746,
- -0.02590862847864628,
- 0.0074271815828979015,
- 0.013473661616444588,
- -0.12806586921215057,
- 0.07308223098516464,
- 0.19682852923870087,
- -0.014192593283951283,
- 0.056975509971380234,
- -0.043156255036592484
- ]
- },
- {
- "keyword": "regulation",
- "type": "regulation",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.0381171815097332,
- 0.03634222224354744,
- -0.030110454186797142,
- -0.017630310729146004,
- 0.11891024559736252,
- 0.10072093456983566,
- 0.10815625637769699,
- -0.012545927427709103,
- 0.0282369926571846,
- 0.02281520515680313,
- 0.04353178292512894,
- 0.01322612538933754,
- -0.0075007095001637936,
- 0.015289682894945145,
- 0.011521655134856701,
- -0.005302956327795982,
- -0.021484345197677612,
- 0.026939304545521736,
- -0.15918223559856415,
- -0.0669713169336319,
- 0.06555760651826859,
- -0.007347244303673506,
- -0.017319194972515106,
- 0.07442392408847809,
- -0.051236871629953384,
- 0.03221197426319122,
- -0.10773146897554398,
- 0.00037848533247597516,
- 0.02576003037393093,
- -0.08677957206964493,
- -0.056674156337976456,
- -0.04311412200331688,
- 0.05482127144932747,
- -0.06252151727676392,
- 0.008915282785892487,
- -0.0060636429116129875,
- 0.013388152234256268,
- -0.0531986728310585,
- 0.019956346601247787,
- -0.024177873507142067,
- -0.021578801795840263,
- -0.061426132917404175,
- -0.07768532633781433,
- -0.000055881475418573245,
- 0.0008293002028949559,
- 0.05222991853952408,
- 0.06497559696435928,
- 0.00048495864029973745,
- -0.08965767174959183,
- 0.019520051777362823,
- 0.06066477671265602,
- -0.008501728996634483,
- -0.021171661093831062,
- 0.00026171939680352807,
- 0.06553913652896881,
- -0.07537975907325745,
- -0.005927333142608404,
- -0.08252528309822083,
- 0.05214802175760269,
- -0.03521662950515747,
- 0.01489658746868372,
- -0.10719866305589676,
- -0.09904246777296066,
- 0.028763283044099808,
- 0.07098019123077393,
- -0.0252015870064497,
- -0.08586463332176208,
- 0.0016751106595620513,
- -0.034848541021347046,
- -0.018560253083705902,
- -0.08431383967399597,
- -0.04397168755531311,
- 0.00260610762052238,
- 0.03656097501516342,
- 0.034469664096832275,
- -0.04044647887349129,
- -0.024901237338781357,
- 0.06173567846417427,
- 0.14302286505699158,
- -0.05251338705420494,
- 0.0607927106320858,
- -0.04991171509027481,
- 0.03456993028521538,
- 0.012280888855457306,
- 0.006898585706949234,
- -0.059290919452905655,
- 0.00870143249630928,
- -0.014236299321055412,
- 0.014955182559788227,
- 0.058326464146375656,
- -0.01134813204407692,
- -0.006829940248280764,
- 0.12755735218524933,
- -0.02055305615067482,
- -0.09539283812046051,
- -0.01519940048456192,
- -0.03197764605283737,
- -0.04060197249054909,
- 0.02348184399306774,
- 0.23894768953323364,
- 0.03667698800563812,
- 0.0622749887406826,
- -0.08708587288856506,
- 0.02325884811580181,
- -0.025910576805472374,
- -0.051220063120126724,
- -0.01932009682059288,
- 0.05724097415804863,
- 0.03852969780564308,
- 0.07586831599473953,
- -0.021152861416339874,
- 0.03668979927897453,
- 0.028933661058545113,
- -0.014008661732077599,
- 0.010061047971248627,
- 0.06820559501647949,
- -0.01590253785252571,
- -0.013905740343034267,
- 0.066810742020607,
- -0.01861569844186306,
- -0.059998512268066406,
- 0.036662839353084564,
- -0.0009557520388625562,
- 0.0005368730635382235,
- 0.009764798916876316,
- -0.004991557914763689,
- -0.08930344879627228,
- -6.306034953902166e-33,
- -0.031187180429697037,
- -0.048368293792009354,
- -0.018731843680143356,
- 0.0019325962057337165,
- -0.018608149141073227,
- 0.006188414059579372,
- -0.07476971298456192,
- -0.0013552660821005702,
- -0.08154737204313278,
- 0.060884181410074234,
- 0.021472139284014702,
- -0.05831415206193924,
- -0.035449326038360596,
- 0.009632671251893044,
- 0.05750919133424759,
- -0.0558963380753994,
- -0.020180003717541695,
- 0.023724649101495743,
- 0.0936983972787857,
- 0.06320380419492722,
- -0.02960282936692238,
- -0.025395287200808525,
- -0.032045524567365646,
- 0.03361888229846954,
- 0.023440664634108543,
- -0.03522298112511635,
- -0.056672245264053345,
- -0.027444109320640564,
- 0.04171659052371979,
- 0.03423304110765457,
- -0.00842379778623581,
- 0.01544912438839674,
- 0.06770399212837219,
- -0.013616370968520641,
- -0.006138453260064125,
- -0.07024022191762924,
- 0.010687747970223427,
- -0.04415250942111015,
- 0.011905893683433533,
- -0.025501810014247894,
- -0.00881918240338564,
- -0.0015050722286105156,
- -0.04452328756451607,
- -0.00634540943428874,
- 0.005368827376514673,
- 0.04890390485525131,
- 0.02046307362616062,
- -0.01214365940541029,
- -0.06995857506990433,
- 0.04171803966164589,
- -0.010336353443562984,
- 0.07412648946046829,
- -0.03827216103672981,
- -0.1107974648475647,
- 0.0489099882543087,
- -0.0650554746389389,
- -0.09014970809221268,
- 0.002259754342958331,
- -0.058428939431905746,
- -0.020459605380892754,
- 0.041988346725702286,
- 0.08427251875400543,
- -0.04101065173745155,
- 0.06537112593650818,
- -0.017746170982718468,
- 0.020953891798853874,
- 0.0186756644397974,
- 0.0002867130097001791,
- 0.02962832897901535,
- -0.02802092768251896,
- -0.05043627321720123,
- 0.024516917765140533,
- -0.018013576045632362,
- 0.028515782207250595,
- -0.014320455491542816,
- -0.0371883399784565,
- -0.022485120221972466,
- 0.04605433717370033,
- -0.08364599943161011,
- -0.04080217704176903,
- -0.060704104602336884,
- 0.04728563874959946,
- 0.03222980722784996,
- 0.03363558277487755,
- -0.0029279873706400394,
- -0.0727800577878952,
- 0.05823453888297081,
- -0.023651326075196266,
- 0.02828909456729889,
- -0.004537039902061224,
- -0.08553998172283173,
- -0.02603122778236866,
- 0.01341290958225727,
- 0.12277742475271225,
- 0.06954691559076309,
- 3.7398433586647696e-33,
- -0.0074159433133900166,
- 0.014647024683654308,
- -0.01976456120610237,
- -0.010434344410896301,
- -0.008184638805687428,
- 0.028655070811510086,
- -0.050856951624155045,
- -0.07860442250967026,
- 0.06676787883043289,
- 0.0351935438811779,
- -0.032096993178129196,
- -0.044406481087207794,
- 0.011827142909169197,
- 0.030041253194212914,
- 0.024084730073809624,
- -0.09316997975111008,
- -0.036679044365882874,
- -0.004539984744042158,
- -0.06479918211698532,
- -0.00915469229221344,
- -0.019608361646533012,
- -0.034914638847112656,
- 0.002874063327908516,
- 0.04686227813363075,
- -0.08393657207489014,
- 0.044689908623695374,
- -0.12659262120723724,
- 0.020837435498833656,
- 0.0495784655213356,
- 0.044314906001091,
- -0.06440116465091705,
- 0.016950393095612526,
- -0.016103671863675117,
- 0.04302096739411354,
- -0.08384507149457932,
- -0.053799986839294434,
- -0.0069086309522390366,
- 0.034579310566186905,
- 0.0031276799272745848,
- -0.01712396927177906,
- 0.07077217102050781,
- 0.003516377182677388,
- -0.0019304854795336723,
- 0.07750147581100464,
- -0.0027389114256948233,
- -0.0013414949644356966,
- 0.12631410360336304,
- -0.04947745054960251,
- 0.031682055443525314,
- 0.026892922818660736,
- -0.06639330089092255,
- -0.04238270968198776,
- 0.0008929510950110853,
- -0.013699189759790897,
- -0.02143910899758339,
- 0.02822222001850605,
- 0.1079467236995697,
- -0.03291338309645653,
- -0.002547820331528783,
- 0.008502411656081676,
- 0.017706086859107018,
- 0.10505469143390656,
- -0.05661032348871231,
- 0.07512599974870682,
- 0.033927302807569504,
- 0.0017392404843121767,
- 0.007177429739385843,
- -0.00033888203324750066,
- 0.12021256238222122,
- 0.004305197391659021,
- 0.011506697162985802,
- -0.02252173237502575,
- -0.11711756139993668,
- 0.0566515251994133,
- -0.029296644032001495,
- 0.031216083094477654,
- -0.05040388181805611,
- -0.04186103120446205,
- -0.06411587446928024,
- 0.07509554922580719,
- -0.05975940823554993,
- 0.016500022262334824,
- 0.006234879605472088,
- 0.01691397838294506,
- 0.03897484019398689,
- -0.014998236671090126,
- 0.05721154063940048,
- -0.050554897636175156,
- 0.021980706602334976,
- -0.0047421869821846485,
- -0.02959340251982212,
- -0.001620136434212327,
- -0.06085158884525299,
- -0.009947456419467926,
- -0.04918460175395012,
- -1.2532746396232142e-8,
- -0.01865408569574356,
- -0.0264570415019989,
- -0.016597099602222443,
- 0.032206758856773376,
- -0.0043548899702727795,
- 0.04597482085227966,
- 0.0482613705098629,
- -0.025438746437430382,
- 0.006130819674581289,
- 0.08449609577655792,
- 0.042444098740816116,
- 0.016061507165431976,
- 0.010812659747898579,
- -0.02236400917172432,
- 0.041125789284706116,
- -0.013068473897874355,
- -0.012484690174460411,
- 0.06675790250301361,
- -0.01719145104289055,
- 0.07599172741174698,
- -0.005327502265572548,
- 0.03320600092411041,
- 0.041155461221933365,
- 0.0003649814461823553,
- -0.0229120384901762,
- -0.033378537744283676,
- 0.0821012333035469,
- 0.09555001556873322,
- 0.06030568480491638,
- 0.09135071188211441,
- 0.0635610893368721,
- 0.08517693728208542,
- -0.010604404844343662,
- -0.04676986113190651,
- -0.12038050591945648,
- -0.08647089451551437,
- -0.012894563376903534,
- -0.00799099262803793,
- 0.03227221220731735,
- -0.020848112180829048,
- -0.044396497309207916,
- -0.00681959418579936,
- 0.06024469807744026,
- 0.021899813786149025,
- 0.007168773096054792,
- 0.02473231591284275,
- -0.0157815869897604,
- -0.018848709762096405,
- 0.05611424893140793,
- -0.02632509544491768,
- 0.028844812884926796,
- -0.011430429294705391,
- 0.1155349612236023,
- 0.04589114710688591,
- 0.04937973991036415,
- -0.03145245462656021,
- -0.035863298922777176,
- 0.01677703484892845,
- -0.09706368297338486,
- 0.009696275927126408,
- 0.0543452613055706,
- 0.06343381106853485,
- 0.0957261249423027,
- -0.07573167979717255
- ]
- },
- {
- "keyword": "rule",
- "type": "regulation",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.004023534245789051,
- 0.07606448233127594,
- 0.002894932869821787,
- 0.01427021250128746,
- -0.031698569655418396,
- -0.06527305394411087,
- 0.1364196091890335,
- 0.011224589310586452,
- 0.018119260668754578,
- 0.026866743341088295,
- 0.016074901446700096,
- -0.002664779545739293,
- 0.05252734199166298,
- 0.07310077548027039,
- -0.03696082532405853,
- -0.004240779206156731,
- -0.06042015925049782,
- -0.03197631239891052,
- -0.18987566232681274,
- -0.02380615472793579,
- 0.018565373495221138,
- 0.062193818390369415,
- -0.04313967749476433,
- -0.0682469829916954,
- -0.018873047083616257,
- 0.019488941878080368,
- 0.030111240223050117,
- 0.04087470471858978,
- 0.013927251100540161,
- -0.08791181445121765,
- -0.06740830838680267,
- -0.005524993874132633,
- 0.04332377389073372,
- -0.030534416437149048,
- -0.026517286896705627,
- 0.007616214454174042,
- 0.012186786159873009,
- 0.009798760525882244,
- 0.006260432302951813,
- -0.03993162885308266,
- 0.03845459222793579,
- -0.08247304707765579,
- -0.06781364977359772,
- 0.07528207451105118,
- 0.05576011911034584,
- 0.058629803359508514,
- 0.05482519418001175,
- -0.028358418494462967,
- 0.011325822211802006,
- -0.004040355794131756,
- -0.01335152518004179,
- 0.003214638913050294,
- -0.030822070315480232,
- 0.07508178055286407,
- 0.07938174903392792,
- 0.06129441037774086,
- -0.06586593389511108,
- -0.022475216537714005,
- 0.0059806271456182,
- -0.030329059809446335,
- 0.07768447697162628,
- -0.06322580575942993,
- -0.06837714463472366,
- 0.033852674067020416,
- 0.023212164640426636,
- -0.05859992280602455,
- -0.010974024422466755,
- -0.07091441750526428,
- -0.02323884703218937,
- 0.0024798221420496702,
- -0.061556506901979446,
- 0.03752148523926735,
- -0.016347641125321388,
- 0.04193737357854843,
- -0.028476879000663757,
- 0.03524702414870262,
- 0.021888114511966705,
- -0.008662723004817963,
- 0.06898802518844604,
- -0.01751384139060974,
- -0.0626547783613205,
- -0.057354699820280075,
- 0.0129633704200387,
- -0.025983238592743874,
- 0.0228100772947073,
- 0.05824710428714752,
- 0.033227138221263885,
- -0.06236822158098221,
- -0.05964406207203865,
- 0.06395550072193146,
- 0.013218945823609829,
- 0.009276207536458969,
- 0.06489326804876328,
- 0.010106155648827553,
- -0.10373435169458389,
- -0.024587752297520638,
- -0.017520887777209282,
- 0.005655811168253422,
- -0.038423117250204086,
- 0.274928480386734,
- -0.0028795229736715555,
- 0.040105704218149185,
- -0.08917615562677383,
- 0.007220104336738586,
- 0.026802334934473038,
- -0.019822681322693825,
- -0.05768602341413498,
- 0.036573439836502075,
- 0.0035805769730359316,
- -0.010609856806695461,
- -0.07502292841672897,
- 0.04712392017245293,
- 0.01424541138112545,
- -0.015836665406823158,
- -0.012079107575118542,
- -0.05811509117484093,
- -0.02996542677283287,
- 0.013029871508479118,
- 0.06346332281827927,
- -0.11903116106987,
- 0.07012233138084412,
- 0.04104962572455406,
- 0.08007237315177917,
- 0.008002001792192459,
- -0.028489606454968452,
- -0.04779781401157379,
- -0.011489647440612316,
- -5.337113898769725e-33,
- -0.03628329932689667,
- -0.034050386399030685,
- -0.06094275042414665,
- -0.017234886065125465,
- -0.00024048725026659667,
- -0.002850963268429041,
- -0.054706208407878876,
- 0.006285247392952442,
- -0.004557858686894178,
- 0.05058170109987259,
- 0.003139007603749633,
- -0.03254122659564018,
- -0.03729961812496185,
- -0.05350375175476074,
- 0.12136568129062653,
- 0.027327295392751694,
- 0.033716827630996704,
- -0.002918815705925226,
- -0.0588909275829792,
- 0.05667911469936371,
- 0.022157078608870506,
- 0.01562744565308094,
- 0.008005681447684765,
- 0.07832564413547516,
- -0.05900828167796135,
- -0.031180594116449356,
- 0.01832626760005951,
- -0.046342093497514725,
- 0.06459210067987442,
- 0.02892613597214222,
- -0.032755669206380844,
- -0.0812002494931221,
- 0.02641327679157257,
- -0.004047844558954239,
- 0.005364722106605768,
- -0.04116053879261017,
- 0.008586571551859379,
- -0.029452070593833923,
- 0.028373965993523598,
- -0.007581254933029413,
- -0.08986559510231018,
- -0.011505053378641605,
- -0.1037171334028244,
- 0.019304562360048294,
- -0.060066647827625275,
- 0.12322809547185898,
- 0.10604144632816315,
- -0.03262275457382202,
- -0.0496927946805954,
- 0.01578584499657154,
- 0.040528763085603714,
- -0.00754546606913209,
- 0.06695698201656342,
- 0.08564779162406921,
- -0.039275895804166794,
- 0.04105052724480629,
- 0.01325487345457077,
- 0.03381101414561272,
- -0.0682516023516655,
- 0.03938796743750572,
- 0.10515014082193375,
- 0.06760186702013016,
- -0.02524043247103691,
- 0.020963555201888084,
- -0.04957504943013191,
- -0.003041764721274376,
- -0.0198204442858696,
- -0.04470588639378548,
- -0.02465883269906044,
- -0.012542015872895718,
- -0.007300481665879488,
- 0.0525636188685894,
- -0.07617182284593582,
- 0.06486427783966064,
- 0.025367971509695053,
- -0.08395116776227951,
- -0.021223971620202065,
- 0.10458109527826309,
- 0.04800966754555702,
- -0.11392595618963242,
- -0.061406344175338745,
- -0.013166396878659725,
- 0.005785055458545685,
- 0.029540639370679855,
- 0.013157500885426998,
- 0.035699840635061264,
- -0.01274988055229187,
- -0.010161787271499634,
- -0.013818955980241299,
- -0.04851099103689194,
- -0.09928484261035919,
- -0.008755302987992764,
- 0.08184494078159332,
- 0.016658974811434746,
- 0.0003155582817271352,
- 3.4927507727020785e-33,
- -0.08259393274784088,
- -0.024306554347276688,
- -0.049109235405921936,
- 0.027820367366075516,
- 0.024739058688282967,
- 0.0017355000600218773,
- -0.03676842525601387,
- 0.02239128202199936,
- 0.0487273670732975,
- 0.04758816957473755,
- -0.04066593572497368,
- -0.009011673741042614,
- 0.07375098019838333,
- -0.0012389709008857608,
- 0.017116831615567207,
- 0.021613381803035736,
- 0.023491378873586655,
- -0.08305907249450684,
- -0.06688056141138077,
- -0.004075970500707626,
- -0.07385461032390594,
- -0.04565999284386635,
- -0.04180184379220009,
- 0.0011070604668930173,
- -0.08792110532522202,
- 0.0161641463637352,
- -0.008639384992420673,
- 0.039545342326164246,
- -0.054918598383665085,
- -0.009921553544700146,
- 0.01148128416389227,
- -0.04417430981993675,
- 0.015801209956407547,
- -0.06882982701063156,
- 0.008950729854404926,
- -0.007482488173991442,
- 0.0012014909880235791,
- -0.035817284137010574,
- 0.026822105050086975,
- 0.11979236453771591,
- -0.009811561554670334,
- 0.05193163454532623,
- 0.03885623812675476,
- 0.061578065156936646,
- -0.015117833390831947,
- 0.023011045530438423,
- 0.09157071262598038,
- 0.024213390424847603,
- 0.021547488868236542,
- 0.016436805948615074,
- -0.0990690141916275,
- -0.0022142701782286167,
- -0.033737849444150925,
- -0.04005317762494087,
- -0.0486266203224659,
- 0.06520325690507889,
- 0.04302215203642845,
- 0.02700515277683735,
- -0.034916892647743225,
- -0.016034269705414772,
- -0.007609603460878134,
- 0.03730626031756401,
- -0.06150870770215988,
- -0.021860681474208832,
- 0.022074498236179352,
- -0.007107389625161886,
- -0.03803572058677673,
- 0.021493637934327126,
- 0.07831189781427383,
- -0.011462180875241756,
- -0.07377030700445175,
- 0.07908841222524643,
- -0.13331185281276703,
- 0.10147710889577866,
- -0.026568453758955002,
- -0.0035042071249336004,
- -0.06471721827983856,
- 0.02241719700396061,
- -0.00003566916348063387,
- 0.0025710095651447773,
- -0.055815525352954865,
- -0.05633154138922691,
- -0.05919073522090912,
- 0.018980709835886955,
- 0.05331839993596077,
- 0.009120115078985691,
- 0.059104643762111664,
- 0.03511916100978851,
- -0.0021030528005212545,
- -0.061976440250873566,
- -0.008936190977692604,
- 0.041681841015815735,
- 0.00813070684671402,
- 0.018907751888036728,
- -0.0743490606546402,
- -1.397800630797974e-8,
- -0.014281176961958408,
- -0.03292256221175194,
- 0.051754944026470184,
- 0.07041670382022858,
- 0.022209296002984047,
- 0.013205242343246937,
- 0.02964102476835251,
- -0.0362807996571064,
- 0.007151203695684671,
- 0.06355591863393784,
- -0.01764746382832527,
- 0.0007095274049788713,
- 0.04600383713841438,
- 0.01913752593100071,
- 0.08142790198326111,
- 0.0020826770924031734,
- -0.027306342497467995,
- 0.01507685985416174,
- -0.06624185293912888,
- 0.057362813502550125,
- -0.07498742640018463,
- -0.0143077177926898,
- 0.07136943191289902,
- 0.028153596445918083,
- -0.008013198152184486,
- 0.030779408290982246,
- 0.016829118132591248,
- 0.0892055481672287,
- -0.00752510828897357,
- 0.06260305643081665,
- 0.018447112292051315,
- 0.10924074798822403,
- -0.028253678232431412,
- -0.010266431607306004,
- 0.07171357423067093,
- -0.025871923193335533,
- 0.002085733925923705,
- -0.04670259729027748,
- 0.04109494388103485,
- 0.09125036746263504,
- -0.0025299289263784885,
- -0.06202758848667145,
- 0.08560498803853989,
- -0.016193857416510582,
- -0.03474714979529381,
- 0.02932819537818432,
- 0.0024946785997599363,
- -0.09728647023439407,
- -0.021985838189721107,
- 0.06545126438140869,
- 0.07329517602920532,
- -0.024239303544163704,
- 0.05390908196568489,
- 0.014184145256876945,
- 0.09821926802396774,
- -0.014530609361827374,
- -0.014481469057500362,
- 0.010180932469666004,
- -0.06870107352733612,
- 0.016662389039993286,
- 0.08793316781520844,
- 0.03698360547423363,
- 0.055451296269893646,
- -0.013997838832437992
- ]
- },
- {
- "keyword": "law",
- "type": "regulation",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04423340782523155,
- 0.0748203843832016,
- -0.03267664089798927,
- 0.02060883305966854,
- 0.05110236629843712,
- 0.02970140054821968,
- 0.06959288567304611,
- 0.015818459913134575,
- -0.020849725231528282,
- 0.09256327152252197,
- 0.043330587446689606,
- 0.0059451269917190075,
- -0.03567298501729965,
- 0.0005400239606387913,
- 0.040199294686317444,
- -0.018269935622811317,
- 0.008699669502675533,
- -0.024409571662545204,
- -0.13153956830501556,
- 0.03608797863125801,
- -0.009368017315864563,
- 0.06397401541471481,
- -0.0039102016016840935,
- 0.037407420575618744,
- -0.06929375976324081,
- 0.05006014183163643,
- -0.05212114006280899,
- -0.0006134825525805354,
- -0.03467994183301926,
- -0.10234386473894119,
- -0.01382328663021326,
- 0.03276613727211952,
- 0.05700787156820297,
- 0.0663924440741539,
- -0.05720246583223343,
- -0.05237898975610733,
- -0.002866547554731369,
- -0.040946535766124725,
- -0.01506475917994976,
- 0.04790116846561432,
- 0.027065902948379517,
- -0.052494026720523834,
- -0.018822964280843735,
- 0.02979370392858982,
- 0.01999385468661785,
- 0.058367375284433365,
- 0.05057596415281296,
- 0.03542383387684822,
- 0.030534464865922928,
- 0.0079722935333848,
- -0.08759805560112,
- 0.0025051787961274385,
- -0.028784623369574547,
- 0.08934988081455231,
- 0.022090891376137733,
- -0.08848369866609573,
- 0.016344062983989716,
- 0.01554472092539072,
- -0.0171787291765213,
- -0.04282591864466667,
- 0.12943921983242035,
- 0.04531925544142723,
- -0.03377644345164299,
- -0.006108571775257587,
- 0.0010532120941206813,
- -0.020090268924832344,
- 0.03492176532745361,
- 0.09461966902017593,
- -0.05885470286011696,
- -0.06252735108137131,
- 0.0094749815762043,
- -0.0035144740249961615,
- -0.020591819658875465,
- 0.08188534528017044,
- 0.01605323888361454,
- -0.07008621096611023,
- 0.02011822909116745,
- 0.017608487978577614,
- 0.11984271556138992,
- -0.09463393688201904,
- -0.08643706142902374,
- -0.05526875704526901,
- -0.086760014295578,
- -0.01985299028456211,
- -0.038876764476299286,
- -0.03760828822851181,
- 0.01913091540336609,
- 0.05867358669638634,
- 0.06363287568092346,
- 0.015727398917078972,
- -0.014280413277447224,
- -0.058879222720861435,
- 0.1246659979224205,
- 0.02111114375293255,
- -0.054700080305337906,
- 0.04210653901100159,
- -0.007183707784861326,
- -0.07996703684329987,
- 0.008702084422111511,
- 0.2536340653896332,
- -0.018947124481201172,
- 0.057320479303598404,
- -0.0674288272857666,
- 0.03554866090416908,
- 0.06442204117774963,
- 0.02736853063106537,
- 0.01626325026154518,
- 0.01976672373712063,
- 0.006353790406137705,
- 0.017104245722293854,
- 0.03752206265926361,
- 0.0634237676858902,
- 0.0037858106661587954,
- 0.012390151619911194,
- 0.05087978020310402,
- 0.09278973191976547,
- 0.0111312260851264,
- 0.0781518742442131,
- 0.02876417152583599,
- -0.045016996562480927,
- -0.00660869712010026,
- 0.07374793291091919,
- -0.08517388999462128,
- -0.004699379671365023,
- -0.04130776971578598,
- -0.07644566893577576,
- 0.0035054581239819527,
- -6.403051441411406e-33,
- -0.04615938663482666,
- -0.08462485671043396,
- 0.015141386538743973,
- 0.008733537979424,
- 0.016345879063010216,
- -0.04433562606573105,
- -0.05427633598446846,
- 0.014531624503433704,
- -0.03919345140457153,
- 0.06360296905040741,
- -0.01794012263417244,
- -0.02784832939505577,
- -0.0013751061633229256,
- -0.016494713723659515,
- 0.06363339722156525,
- 0.07152201980352402,
- -0.08423823118209839,
- 0.006767078768461943,
- 0.013256915844976902,
- 0.024449069052934647,
- -0.007511603645980358,
- 0.003315683687105775,
- -0.005368813406676054,
- 0.03394569829106331,
- -0.07756714522838593,
- -0.026827450841665268,
- -0.005888429004698992,
- -0.06804535537958145,
- 0.07377453148365021,
- 0.0010013459250330925,
- 0.06412988901138306,
- 0.08113853633403778,
- 0.06904057413339615,
- -0.007458241656422615,
- 0.0039848824962973595,
- 0.04199232533574104,
- -0.050241440534591675,
- -0.03042851947247982,
- 0.027303574606776237,
- -0.040535829961299896,
- -0.07555545121431351,
- -0.03345590457320213,
- 0.017712868750095367,
- -0.020106039941310883,
- -0.0433688759803772,
- -0.002367611275985837,
- -0.028659025207161903,
- -0.06580997258424759,
- -0.027964752167463303,
- 0.05278879031538963,
- 0.004220093134790659,
- -0.04870579019188881,
- 0.028281928971409798,
- -0.06630636006593704,
- 0.01584498956799507,
- 0.028428638353943825,
- -0.08620602637529373,
- 0.07885349541902542,
- -0.041712623089551926,
- 0.004725239239633083,
- 0.03673121705651283,
- 0.11766532808542252,
- 0.04326704144477844,
- 0.09234081953763962,
- -0.035589657723903656,
- -0.06403546780347824,
- -0.04109722375869751,
- -0.019951144233345985,
- 0.06190086528658867,
- -0.08419659733772278,
- -0.0344349667429924,
- 0.05386480316519737,
- -0.05397115275263786,
- 0.02036573551595211,
- -0.001379455323331058,
- 0.016372498124837875,
- 0.080301433801651,
- -0.08144019544124603,
- -0.014203378930687904,
- -0.03728451952338219,
- -0.10737594962120056,
- 0.03975554555654526,
- 0.02821003645658493,
- -0.006280107889324427,
- 0.023725008592009544,
- 0.04739195480942726,
- -0.030766846612095833,
- -0.07396789640188217,
- 0.0389275997877121,
- 0.043634962290525436,
- -0.09224948287010193,
- -0.07125219702720642,
- 0.043756868690252304,
- 0.03194862976670265,
- 0.04549445956945419,
- 4.586853894673431e-33,
- -0.060970257967710495,
- -0.06234380975365639,
- -0.040158577263355255,
- 0.07241804897785187,
- -0.030883703380823135,
- -0.011028235778212547,
- -0.030526122078299522,
- -0.04606321454048157,
- -0.054179947823286057,
- 0.046365976333618164,
- -0.12260085344314575,
- -0.11436384171247482,
- 0.041101716458797455,
- 0.08521818369626999,
- 0.04026589170098305,
- -0.004125957377254963,
- 0.049167416989803314,
- -0.07336271554231644,
- -0.049790650606155396,
- 0.04435945302248001,
- -0.020589884370565414,
- -0.05690397322177887,
- 0.005256194621324539,
- -0.015251168049871922,
- -0.07351882755756378,
- 0.00304719852283597,
- -0.0323040708899498,
- 0.013623255304992199,
- 0.0010668861214071512,
- -0.022873880341649055,
- -0.009141769260168076,
- 0.006906968541443348,
- -0.10695991665124893,
- -0.003317850874736905,
- -0.025871949270367622,
- -0.015150693245232105,
- 0.06999681890010834,
- -0.037423498928546906,
- -0.059601571410894394,
- -0.056721147149801254,
- 0.02837233431637287,
- -0.030476903542876244,
- 0.07232401520013809,
- 0.07673981040716171,
- -0.04422391578555107,
- -0.025103481486439705,
- 0.05521930754184723,
- 0.04416276514530182,
- 0.020859338343143463,
- -0.025149300694465637,
- -0.03885774686932564,
- -0.029978761449456215,
- 0.049032144248485565,
- -0.009081722237169743,
- -0.02058715745806694,
- -0.03320113569498062,
- -0.03639570623636246,
- 0.020406395196914673,
- -0.046227943152189255,
- 0.01887388713657856,
- 0.060093317180871964,
- 0.004103523213416338,
- -0.0509975366294384,
- 0.0644243136048317,
- -0.060299962759017944,
- 0.03374788910150528,
- -0.011984754353761673,
- -0.011259688064455986,
- 0.08907153457403183,
- -0.039072539657354355,
- 0.08540308475494385,
- -0.00301046553067863,
- -0.14313003420829773,
- -0.006845253054052591,
- 0.0054326364770531654,
- -0.00011047832958865911,
- -0.006727809552103281,
- -0.017580389976501465,
- -0.06516800820827484,
- -0.04987248033285141,
- 0.016244111582636833,
- -0.016727058216929436,
- -0.05135193094611168,
- 0.05614360049366951,
- -0.019851095974445343,
- 0.008309013210237026,
- 0.057003796100616455,
- 0.001274184905923903,
- 0.01848519779741764,
- 0.08985906839370728,
- -0.0024157713633030653,
- 0.018020782619714737,
- 0.00593161303550005,
- 0.019709445536136627,
- -0.02773262746632099,
- -1.3357666084345965e-8,
- -0.0006802083225920796,
- 0.027297349646687508,
- 0.0507955364882946,
- -0.022939415648579597,
- -0.052008241415023804,
- 0.016563743352890015,
- 0.014273365959525108,
- -0.010560169816017151,
- -0.024505868554115295,
- 0.023527735844254494,
- -0.02237430401146412,
- 0.04302321374416351,
- 0.05741772800683975,
- 0.04176081344485283,
- 0.00005576546027441509,
- -0.03433893248438835,
- 0.0413849800825119,
- -0.005169573239982128,
- 0.004260571673512459,
- 0.09652654081583023,
- -0.04572216793894768,
- -0.03136593475937843,
- 0.06208815798163414,
- 0.05324162170290947,
- 0.033097315579652786,
- 0.0022509547416120768,
- 0.07799004763364792,
- 0.027891824021935463,
- 0.06129300221800804,
- 0.04897225275635719,
- 0.029611779376864433,
- 0.09579498320817947,
- -0.03296056389808655,
- -0.07806260883808136,
- 0.007516802754253149,
- -0.07677245140075684,
- 0.015264504589140415,
- -0.03214649483561516,
- 0.016583474352955818,
- -0.05327920615673065,
- -0.04010848328471184,
- 0.026243889704346657,
- 0.08907773345708847,
- -0.03181885927915573,
- 0.0272180438041687,
- -0.02073475532233715,
- -0.010580966249108315,
- 0.02080410346388817,
- 0.07133788615465164,
- -0.047531384974718094,
- -0.02046969346702099,
- -0.057614173740148544,
- -0.008526948280632496,
- 0.0348287969827652,
- 0.009280260652303696,
- 0.019890207797288895,
- 0.060995519161224365,
- 0.03656507655978203,
- -0.09774216264486313,
- 0.03985428437590599,
- 0.1323072761297226,
- 0.017196636646986008,
- 0.06622574478387833,
- -0.015269162133336067
- ]
- },
- {
- "keyword": "statute",
- "type": "regulation",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.04275260865688324,
- 0.13898923993110657,
- 0.007532342802733183,
- 0.03488226234912872,
- 0.012913079932332039,
- 0.06300082802772522,
- 0.10801882296800613,
- -0.005714636296033859,
- -0.0016580830560997128,
- 0.012762071564793587,
- 0.00730865728110075,
- -0.10560868680477142,
- 0.037096090614795685,
- 0.03938470780849457,
- 0.0025433339178562164,
- 0.020768433809280396,
- -0.001280314172618091,
- 0.05024021118879318,
- -0.004353764932602644,
- 0.06016192585229874,
- 0.03405994549393654,
- 0.04039546847343445,
- -0.006107018794864416,
- 0.05297429487109184,
- -0.017551345750689507,
- 0.08089406788349152,
- -0.048734840005636215,
- -0.0093266936019063,
- 0.035023804754018784,
- -0.04259755462408066,
- -0.037761036306619644,
- 0.0005877804942429066,
- 0.024554766714572906,
- -0.02699907496571541,
- 0.02792947180569172,
- -0.029465150088071823,
- 0.09230027347803116,
- 0.007294944953173399,
- -0.012440643273293972,
- 0.0008225556812249124,
- 0.01850084215402603,
- -0.03769288584589958,
- -0.04668088257312775,
- 0.03221908211708069,
- -0.021846190094947815,
- 0.10928598046302795,
- 0.03518195077776909,
- 0.053121909499168396,
- -0.033031463623046875,
- 0.044135287404060364,
- -0.06013505533337593,
- 0.05930720642209053,
- -0.028541339561343193,
- 0.07906622439622879,
- 0.017509888857603073,
- -0.02008596435189247,
- 0.010606908239424229,
- 0.03556676581501961,
- 0.02702377736568451,
- -0.030802052468061447,
- 0.08926190435886383,
- 0.02249949425458908,
- -0.06173583120107651,
- 0.025606747716665268,
- 0.04053335636854172,
- 0.03838443011045456,
- 0.05372125655412674,
- -0.06287382543087006,
- -0.0715268924832344,
- 0.01906953565776348,
- -0.008263119496405125,
- 0.01728128455579281,
- -0.07163240760564804,
- 0.05014334246516228,
- -0.00806577131152153,
- -0.024350879713892937,
- -0.0025274092331528664,
- -0.025060631334781647,
- 0.06850650161504745,
- -0.06606519967317581,
- -0.07586373388767242,
- 0.0014477457152679563,
- -0.04695061594247818,
- -0.04994054511189461,
- 0.0034864323679357767,
- -0.01082935556769371,
- -0.0023934689816087484,
- -0.04412161558866501,
- -0.026225201785564423,
- 0.028478393331170082,
- 0.00030804218840785325,
- -0.03904934599995613,
- 0.08885031193494797,
- 0.0034796351101249456,
- -0.031084515154361725,
- -0.04148983210325241,
- -0.027561891824007034,
- -0.04463872313499451,
- 0.04696572199463844,
- 0.26982706785202026,
- -0.03497869893908501,
- 0.04266130179166794,
- -0.03578857704997063,
- -0.021976562216877937,
- 0.01718326471745968,
- 0.03670448064804077,
- -0.003094341605901718,
- -0.04026390239596367,
- -0.0031492626294493675,
- -0.009081614203751087,
- 0.05289379879832268,
- 0.0010408159578219056,
- -0.02685439959168434,
- 0.032274600118398666,
- 0.02732572704553604,
- 0.065785713493824,
- -0.06548033654689789,
- 0.038929205387830734,
- 0.03696415200829506,
- -0.03253805637359619,
- -0.0024768232833594084,
- 0.049249883741140366,
- 0.0048420606181025505,
- 0.009298725984990597,
- -0.046803805977106094,
- -0.12998458743095398,
- 0.003759636776521802,
- -5.771768730691605e-33,
- 0.001231689820997417,
- -0.015985874459147453,
- -0.0010005078511312604,
- -0.019289899617433548,
- 0.02656789869070053,
- -0.0318608283996582,
- -0.05588923394680023,
- -0.0010076957987621427,
- 0.0056752911768853664,
- 0.03700439631938934,
- -0.00480418698862195,
- 0.017975056543946266,
- -0.016472985967993736,
- -0.03770952299237251,
- 0.09782267361879349,
- 0.05595597252249718,
- 0.03455283120274544,
- -0.023436924442648888,
- 0.01976410299539566,
- 0.014933306723833084,
- -0.021168701350688934,
- -0.00882877130061388,
- -0.0007592204492539167,
- 0.049195438623428345,
- -0.05065951123833656,
- 0.008161739446222782,
- 0.00861726887524128,
- -0.0020066832657903433,
- 0.009786178357899189,
- 0.024697137996554375,
- 0.07959728688001633,
- 0.03206147998571396,
- 0.08201752603054047,
- 0.007681283634155989,
- 0.05422162637114525,
- 0.022911611944437027,
- 0.018537180498242378,
- -0.00920257717370987,
- 0.049429114907979965,
- -0.07491783052682877,
- -0.0202321894466877,
- -0.0005793904419988394,
- 0.009164423681795597,
- 0.016198743134737015,
- -0.07863025367259979,
- 0.024006985127925873,
- 0.024957185611128807,
- -0.037854570895433426,
- -0.02286207303404808,
- 0.05230985954403877,
- 0.04877167195081711,
- -0.05731263756752014,
- -0.07146549969911575,
- -0.04588936269283295,
- -0.03357115760445595,
- -0.016997579485177994,
- -0.08217905461788177,
- 0.09320642054080963,
- -0.00926138460636139,
- -0.026488171890378,
- 0.043397579342126846,
- 0.10560905933380127,
- -0.01659085415303707,
- 0.011339869350194931,
- -0.0519089512526989,
- 0.0000683854304952547,
- -0.017749445512890816,
- -0.024444304406642914,
- 0.0725836232304573,
- -0.09469730406999588,
- -0.07100409269332886,
- 0.00420402130112052,
- -0.012235991656780243,
- 0.0026234062388539314,
- -0.003996363840997219,
- -0.020427782088518143,
- 0.06345085054636002,
- -0.05816594138741493,
- -0.032553695142269135,
- 0.020804163068532944,
- -0.14278842508792877,
- 0.00908698420971632,
- -0.0023277460131794214,
- 0.01039330568164587,
- 0.07433552294969559,
- 0.033174630254507065,
- -0.006474098190665245,
- -0.08935258537530899,
- 0.04263532534241676,
- 0.03416689857840538,
- 0.013622920028865337,
- -0.07772628217935562,
- 0.031184276565909386,
- 0.08650447428226471,
- -0.04361752048134804,
- 3.2694222744091984e-33,
- -0.057746510952711105,
- -0.059932343661785126,
- -0.0014651375822722912,
- 0.1502477377653122,
- -0.0047020073980093,
- -0.10074280202388763,
- -0.018879856914281845,
- 0.006211793050169945,
- -0.08988983929157257,
- -0.06679390370845795,
- -0.09456825256347656,
- -0.09941720217466354,
- -0.013152727857232094,
- 0.08221665769815445,
- 0.09358326345682144,
- 0.011357988230884075,
- 0.08897358179092407,
- -0.048365116119384766,
- -0.03765721619129181,
- 0.032953206449747086,
- -0.02429879456758499,
- -0.055093925446271896,
- 0.03171487897634506,
- -0.0878140777349472,
- -0.09380806982517242,
- 0.03357035666704178,
- -0.011584621854126453,
- -0.03764786571264267,
- -0.011179335415363312,
- -0.03386358916759491,
- 0.023881696164608,
- 0.014814385212957859,
- -0.11895594000816345,
- 0.0010590841993689537,
- -0.034857653081417084,
- -0.014639684930443764,
- 0.09964469820261002,
- -0.04975397139787674,
- -0.016113203018903732,
- 0.01807265728712082,
- 0.03652578964829445,
- 0.01613784395158291,
- 0.022320684045553207,
- 0.13353167474269867,
- 0.0010264331940561533,
- -0.006686417385935783,
- 0.08041796833276749,
- 0.028088372200727463,
- 0.004525984637439251,
- -0.03682582452893257,
- -0.10524415969848633,
- -0.011214351281523705,
- 0.08763620257377625,
- -0.07702353596687317,
- -0.06608716398477554,
- -0.03742678835988045,
- 0.0009585960069671273,
- -0.016354890540242195,
- -0.012174009345471859,
- -0.010001352056860924,
- 0.046860210597515106,
- 0.04632125049829483,
- -0.0780448168516159,
- 0.026704903692007065,
- 0.019183529540896416,
- 0.016571201384067535,
- -0.047613631933927536,
- -0.016020946204662323,
- 0.015440662391483784,
- 0.024592408910393715,
- -0.01634817384183407,
- -0.03456103801727295,
- -0.17967256903648376,
- -0.019315006211400032,
- -0.024748018011450768,
- -0.0719609186053276,
- -0.05711023509502411,
- 0.010219128802418709,
- -0.0649687722325325,
- -0.066169872879982,
- -0.02781192772090435,
- -0.03880208730697632,
- -0.10155283659696579,
- 0.03762928396463394,
- 0.05955539643764496,
- -0.03646507114171982,
- 0.05798546224832535,
- -0.013516008853912354,
- -0.02152414433658123,
- 0.09164417535066605,
- 0.03533656895160675,
- 0.00993943028151989,
- -0.057451482862234116,
- 0.06750888377428055,
- -0.014298633672297001,
- -1.3646810792522501e-8,
- -0.08611904084682465,
- 0.05761270597577095,
- 0.006992114242166281,
- -0.03579516336321831,
- 0.05863026902079582,
- -0.008281293325126171,
- 0.05656543746590614,
- -0.07673339545726776,
- 0.03947451338171959,
- 0.021480772644281387,
- 0.011985519900918007,
- 0.025364497676491737,
- 0.0033470129128545523,
- 0.015798280015587807,
- 0.006494924891740084,
- -0.021325044333934784,
- -0.043215181678533554,
- -0.07251417636871338,
- -0.03248174116015434,
- 0.08692362904548645,
- -0.03808172792196274,
- -0.03323564678430557,
- 0.03468369320034981,
- 0.004164951853454113,
- -0.011246482841670513,
- -0.013674071989953518,
- 0.06846112757921219,
- 0.07168588787317276,
- 0.0384800061583519,
- 0.06211021542549133,
- 0.0028900224715471268,
- 0.13298998773097992,
- -0.017295660451054573,
- -0.039671387523412704,
- 0.022035451605916023,
- -0.06518331915140152,
- -0.004303083289414644,
- 0.008562573231756687,
- 0.03142215311527252,
- -0.10588834434747696,
- -0.005933181382715702,
- 0.02343331277370453,
- -0.00634889816865325,
- 0.03429790586233139,
- 0.04728926345705986,
- -0.004346456378698349,
- -0.0014223090838640928,
- 0.017176195979118347,
- -0.04865054413676262,
- 0.000519324850756675,
- -0.01888558454811573,
- -0.012724773027002811,
- 0.010272571817040443,
- 0.07078852504491806,
- -0.029534241184592247,
- -0.009209233336150646,
- 0.05800091102719307,
- 0.013673956505954266,
- -0.05867115035653114,
- -0.022395091131329536,
- 0.1094193160533905,
- 0.002055591903626919,
- 0.09848131239414215,
- -0.06551338732242584
- ]
- },
- {
- "keyword": "interface",
- "type": "interface",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.07484488189220428,
- -0.0033549827057868242,
- 0.006698374170809984,
- 0.034478217363357544,
- -0.061018090695142746,
- 0.024442829191684723,
- 0.14511319994926453,
- 0.03458123281598091,
- -0.06050503998994827,
- -0.022997206076979637,
- 0.03778265416622162,
- -0.050446607172489166,
- 0.01510527916252613,
- 0.003389359451830387,
- -0.05268311873078346,
- -0.03868889808654785,
- 0.04468460753560066,
- -0.07516703009605408,
- 0.0021060327999293804,
- 0.010851621627807617,
- 0.05272462218999863,
- 0.038182832300662994,
- -0.03842998668551445,
- -0.023413946852087975,
- -0.04038989543914795,
- 0.03899974748492241,
- 0.06145714223384857,
- 0.0073053278028965,
- 0.04396772012114525,
- -0.10582182556390762,
- -0.03959741070866585,
- 0.051217641681432724,
- -0.04525425285100937,
- -0.026735778898000717,
- -0.15794284641742706,
- -0.07689888775348663,
- 0.004613332916051149,
- -0.04320027306675911,
- -0.008676357567310333,
- -0.04395132511854172,
- -0.06017101928591728,
- -0.0720844492316246,
- -0.007218129932880402,
- -0.007185188587754965,
- 0.06843923777341843,
- -0.051745761185884476,
- -0.04888508468866348,
- -0.03590250760316849,
- 0.036121711134910583,
- -0.010583827272057533,
- -0.02294611744582653,
- 0.0013893656432628632,
- 0.026703089475631714,
- -0.0390610434114933,
- 0.09017565101385117,
- 0.07059670239686966,
- -0.022776981815695763,
- 0.03455837070941925,
- -0.042340412735939026,
- 0.010557006113231182,
- 0.041496530175209045,
- -0.0022153081372380257,
- 0.006920908112078905,
- 0.04030460864305496,
- 0.06368785351514816,
- -0.00492612412199378,
- -0.009906724095344543,
- 0.018262451514601707,
- -0.017070237547159195,
- -0.10172847658395767,
- -0.06770176440477371,
- -0.011732157319784164,
- 0.011685810983181,
- 0.02595176361501217,
- 0.04306084290146828,
- -0.0970282256603241,
- -0.007486241403967142,
- -0.03217775747179985,
- 0.033218320459127426,
- -0.007560968864709139,
- 0.02162434346973896,
- 0.027593325823545456,
- -0.036429256200790405,
- 0.02888518199324608,
- 0.014969325624406338,
- 0.0027143030893057585,
- 0.00030911638168618083,
- -0.02024092711508274,
- 0.024710018187761307,
- 0.035750120878219604,
- -0.02983427792787552,
- -0.007536724209785461,
- -0.001368861529044807,
- -0.0344095416367054,
- 0.025620514526963234,
- -0.02065287157893181,
- 0.012697452679276466,
- -0.1208513155579567,
- -0.07039859890937805,
- 0.22959792613983154,
- -0.03006376326084137,
- -0.03102203458547592,
- -0.04894305020570755,
- 0.03227556124329567,
- 0.021948594599962234,
- -0.025880347937345505,
- -0.018830982968211174,
- -0.04786985367536545,
- -0.07774044573307037,
- 0.0028264787979424,
- -0.015267944894731045,
- -0.04655918851494789,
- -0.11095274239778519,
- -0.03322317823767662,
- 0.04876094311475754,
- 0.05891423672437668,
- 0.019778933376073837,
- 0.0009197972831316292,
- 0.06861066818237305,
- -0.035630740225315094,
- -0.017035190016031265,
- 0.05705873295664787,
- -0.06413298100233078,
- 0.05974147096276283,
- -0.004025081172585487,
- -0.022624995559453964,
- 0.06255599111318588,
- -5.13191115602454e-33,
- -0.0403955839574337,
- -0.04507993161678314,
- -0.0066429381258785725,
- 0.08610112965106964,
- 0.02461402304470539,
- -0.034953489899635315,
- 0.0005544982268474996,
- -0.007050263229757547,
- -0.043826378881931305,
- -0.01290946640074253,
- -0.021958744153380394,
- 0.12211992591619492,
- -0.0732702910900116,
- 0.06854226440191269,
- 0.11837981641292572,
- 0.017933841794729233,
- 0.08604148030281067,
- 0.133820042014122,
- -0.014290391467511654,
- -0.03434748575091362,
- 0.01787087693810463,
- 0.01573384366929531,
- 0.03385835886001587,
- -0.017322029918432236,
- 0.04873531311750412,
- 0.08204228430986404,
- -0.00722058629617095,
- -0.008139058016240597,
- 0.03546501323580742,
- 0.0020647654309868813,
- 0.02993539534509182,
- 0.008895264938473701,
- 0.005662277340888977,
- -0.05264562368392944,
- -0.015071090310811996,
- -0.02045772410929203,
- -0.03968114033341408,
- -0.04510620981454849,
- 0.02015773206949234,
- -0.01569020189344883,
- -0.06437128782272339,
- -0.015684083104133606,
- -0.017672566697001457,
- -0.05337360128760338,
- 0.04142427071928978,
- 0.0650593638420105,
- 0.06648235768079758,
- 0.07093550264835358,
- -0.00045656898873858154,
- 0.07060364633798599,
- -0.024784021079540253,
- 0.01408553309738636,
- -0.035659968852996826,
- -0.003698298940435052,
- 0.009965485893189907,
- -0.014587166719138622,
- 0.008386346511542797,
- 0.10500604659318924,
- 0.016272608190774918,
- 0.051916226744651794,
- -0.06593780964612961,
- 0.030399808660149574,
- -0.050659582018852234,
- 0.06329160928726196,
- -0.003861362813040614,
- 0.08933469653129578,
- -0.025674309581518173,
- -0.054619017988443375,
- 0.015341436490416527,
- -0.016403021290898323,
- -0.14226101338863373,
- -0.033413514494895935,
- -0.021007105708122253,
- 0.0893457755446434,
- 0.04371590167284012,
- 0.008789013139903545,
- -0.06284905970096588,
- -0.014362270943820477,
- -0.03043910302221775,
- -0.021478919312357903,
- -0.10779643058776855,
- -0.02298705093562603,
- -0.011397681199014187,
- 0.004478841088712215,
- 0.010810526087880135,
- -0.06186853349208832,
- 0.03348046541213989,
- -0.0029716757126152515,
- 0.08012501895427704,
- -0.0013039918849244714,
- -0.08547396957874298,
- 0.04140421003103256,
- 0.018611444160342216,
- 0.04460814595222473,
- 0.03602924570441246,
- 2.7874288156117663e-33,
- 0.04801928997039795,
- -0.011050280183553696,
- -0.06058821082115173,
- -0.029854189604520798,
- -0.024266786873340607,
- -0.008298723958432674,
- 0.07845379412174225,
- -0.03012724779546261,
- -0.03423123434185982,
- 0.045862600207328796,
- 0.01124496292322874,
- 0.044740401208400726,
- 0.07718370109796524,
- -0.03315039351582527,
- -0.019530801102519035,
- -0.028943849727511406,
- -0.04626184329390526,
- -0.03647885471582413,
- -0.02766072005033493,
- 0.05423671007156372,
- -0.07370930165052414,
- 0.020781060680747032,
- 0.06648547202348709,
- -0.1537712812423706,
- -0.09182581305503845,
- 0.04942397400736809,
- 0.02344573847949505,
- 0.10242252796888351,
- -0.04800622537732124,
- 0.01479673944413662,
- 0.021984361112117767,
- -0.08435311913490295,
- 0.04690602421760559,
- 0.0127995191141963,
- 0.04578053951263428,
- 0.07450047135353088,
- 0.09087082743644714,
- -0.012581497430801392,
- -0.02996118552982807,
- -0.033239468932151794,
- 0.03928130120038986,
- 0.006763617508113384,
- -0.02766651101410389,
- 0.08667236566543579,
- -0.023563506081700325,
- -0.04031790420413017,
- -0.14400073885917664,
- 0.022705024108290672,
- -0.04221723601222038,
- -0.012847105041146278,
- -0.030363300815224648,
- -0.006351221352815628,
- 0.08185619115829468,
- -0.13130618631839752,
- -0.009119500406086445,
- 0.042642682790756226,
- -0.009442153386771679,
- 0.009989208541810513,
- 0.018745973706245422,
- 0.04999522492289543,
- 0.05940712243318558,
- -0.036749567836523056,
- -0.028978418558835983,
- 0.05000441521406174,
- 0.014539225958287716,
- -0.05308134853839874,
- -0.020351335406303406,
- -0.0522635243833065,
- 0.026176225394010544,
- -0.013331501744687557,
- 0.1465957909822464,
- 0.01472569815814495,
- 0.051406681537628174,
- -0.049948763102293015,
- 0.013441862538456917,
- -0.011388319544494152,
- 0.038653746247291565,
- -0.025347920134663582,
- -0.01161271333694458,
- -0.06922964751720428,
- -0.03910769522190094,
- -0.030738042667508125,
- 0.08719814568758011,
- 0.05586717650294304,
- -0.04449658468365669,
- 0.050660647451877594,
- -0.005543415434658527,
- 0.06363929808139801,
- 0.07076988369226456,
- 0.011828482151031494,
- -0.04163343831896782,
- 0.07380091398954391,
- -0.014244276098906994,
- 0.0667353942990303,
- -0.023703396320343018,
- -1.124349502390487e-8,
- -0.02109377458691597,
- 0.006905504036694765,
- 0.04515803977847099,
- -0.020366325974464417,
- 0.018187791109085083,
- 0.02563469298183918,
- -0.06589561700820923,
- -0.04115112125873566,
- 0.0004110201552975923,
- 0.046477217227220535,
- -0.033678021281957626,
- 0.042558781802654266,
- -0.04392905533313751,
- 0.06524040549993515,
- 0.14415453374385834,
- -0.013919709250330925,
- -0.04059840738773346,
- -0.05716719105839729,
- -0.06502590328454971,
- -0.018231024965643883,
- 0.041235122829675674,
- -0.01686909981071949,
- -0.012723763473331928,
- -0.020042387768626213,
- 0.031834762543439865,
- 0.010948294773697853,
- 0.017233284190297127,
- 0.03460213914513588,
- -0.05795898661017418,
- 0.09933125227689743,
- 0.05142094939947128,
- 0.022626657038927078,
- -0.023650670424103737,
- 0.07352492958307266,
- 0.003789541544392705,
- 0.0580875538289547,
- -0.002861929591745138,
- 0.030303461477160454,
- -0.005123952869325876,
- -0.029543880373239517,
- -0.0014426845591515303,
- -0.04020749777555466,
- -0.06468061357736588,
- -0.04755228012800217,
- 0.09384585171937943,
- 0.062476299703121185,
- 0.009784037247300148,
- -0.0476732961833477,
- 0.06136634945869446,
- 0.04760890081524849,
- -0.11715580523014069,
- 0.007434516679495573,
- -0.011133660562336445,
- 0.04560166597366333,
- 0.02321973815560341,
- 0.015660665929317474,
- -0.025158897042274475,
- -0.01427587028592825,
- -0.036733031272888184,
- 0.04472450911998749,
- 0.04553823173046112,
- 0.006301478017121553,
- 0.04011499881744385,
- 0.004337189253419638
- ]
- },
- {
- "keyword": "api",
- "type": "interface",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- -0.11253100633621216,
- 0.032534122467041016,
- -0.07668435573577881,
- 0.0010841269977390766,
- -0.03751404955983162,
- -0.04290898144245148,
- 0.020612824708223343,
- 0.01719869300723076,
- 0.00986137893050909,
- -0.06063005328178406,
- -0.007333850488066673,
- -0.03808249160647392,
- 0.057547442615032196,
- -0.027784528210759163,
- 0.07934531569480896,
- 0.014088710770010948,
- 0.05979914218187332,
- -0.018414855003356934,
- -0.04032231494784355,
- -0.0972786545753479,
- 0.03157562389969826,
- 0.061822354793548584,
- -0.09372789412736893,
- 0.01219881046563387,
- -0.01603020541369915,
- 0.004371638409793377,
- -0.005189083516597748,
- -0.05742497742176056,
- 0.014385450631380081,
- 0.03254722058773041,
- -0.055404018610715866,
- -0.0478300042450428,
- -0.059522900730371475,
- 0.053520966321229935,
- -0.08198270946741104,
- 0.0028426756616681814,
- -0.005131945945322514,
- -0.0903780460357666,
- 0.0194573812186718,
- -0.022582318633794785,
- -0.05533800646662712,
- -0.04260467737913132,
- -0.11381756514310837,
- -0.03951956331729889,
- 0.003792541567236185,
- -0.004135933704674244,
- -0.02424198016524315,
- 0.012935536913573742,
- -0.021476393565535545,
- 0.08551088720560074,
- -0.05983267351984978,
- -0.03086436167359352,
- -0.024178769439458847,
- -0.03303506225347519,
- 0.0168975368142128,
- -0.028547128662467003,
- -0.04311075061559677,
- 0.051893990486860275,
- -0.07255858182907104,
- 0.0024684204254299402,
- 0.08475282788276672,
- -0.06322368234395981,
- -0.027556180953979492,
- 0.08480162918567657,
- 0.021887050941586494,
- 0.0058126975782215595,
- -0.042068738490343094,
- -0.012818308547139168,
- 0.06687142699956894,
- -0.20351670682430267,
- -0.08964985609054565,
- -0.027740152552723885,
- -0.01813957653939724,
- 0.056798338890075684,
- 0.03965996205806732,
- -0.07471059262752533,
- 0.015157371759414673,
- -0.0011894649360328913,
- 0.02678164467215538,
- -0.05707607418298721,
- -0.0228346586227417,
- 0.03495294228196144,
- -0.012094380334019661,
- 0.1459875851869583,
- 0.016868533566594124,
- 0.06362412869930267,
- 0.03977860137820244,
- 0.08770698308944702,
- 0.038106027990579605,
- 0.00800284743309021,
- -0.024784766137599945,
- -0.032751716673374176,
- 0.02588295191526413,
- -0.03968251496553421,
- 0.028647881001234055,
- 0.05113592743873596,
- -0.029554562643170357,
- -0.11622121185064316,
- -0.08422527462244034,
- 0.24800610542297363,
- -0.04815516993403435,
- 0.0110812708735466,
- -0.07438002526760101,
- -0.01706882007420063,
- 0.03505603224039078,
- -0.0357828214764595,
- -0.0389598123729229,
- -0.014881635084748268,
- -0.014105779118835926,
- 0.06531266123056412,
- -0.041362352669239044,
- 0.02775225043296814,
- -0.015250717289745808,
- -0.043364640325307846,
- -0.031940970569849014,
- 0.08758816868066788,
- -0.02770237997174263,
- 0.00805283896625042,
- 0.09703163802623749,
- 0.006359309423714876,
- 0.04509800300002098,
- 0.00612518098205328,
- -0.009341098368167877,
- -0.0018553059780970216,
- 0.026269854977726936,
- -0.04051985964179039,
- 0.0832904502749443,
- -4.8484855090458705e-33,
- 0.03266635909676552,
- -0.012778451666235924,
- 0.07137998193502426,
- 0.0013980549992993474,
- 0.00797765888273716,
- 0.010518256574869156,
- 0.056889936327934265,
- 0.011239890940487385,
- -0.018748903647065163,
- -0.08014117926359177,
- -0.02229367569088936,
- 0.08801320940256119,
- 0.0033772799652069807,
- 0.02558104693889618,
- 0.05318346247076988,
- -0.015114136040210724,
- 0.011746066622436047,
- 0.07497559487819672,
- 0.026665782555937767,
- 0.02037176676094532,
- -0.06087727099657059,
- -0.049769699573516846,
- 0.0439925454556942,
- 0.04463626444339752,
- 0.028548765927553177,
- 0.06625708192586899,
- -0.04550396651029587,
- 0.003586771199479699,
- -0.000625313026830554,
- 0.022192247211933136,
- 0.024778705090284348,
- -0.015080264769494534,
- -0.06802251935005188,
- -0.02311977930366993,
- 0.0072046490386128426,
- -0.04280702769756317,
- -0.054657142609357834,
- -0.04041000083088875,
- -0.017100710421800613,
- -0.024819595739245415,
- -0.022874509915709496,
- 0.013885597698390484,
- -0.04102126508951187,
- -0.018800046294927597,
- -0.04836835712194443,
- 0.034204281866550446,
- -0.07274538278579712,
- -0.021384669467806816,
- 0.012633636593818665,
- 0.015126644633710384,
- 0.0034695134963840246,
- 0.11372353136539459,
- -0.010501425713300705,
- -0.05266303941607475,
- 0.012333021499216557,
- -0.053071122616529465,
- 0.01101907342672348,
- -0.031177852302789688,
- -0.028545813634991646,
- -0.016721703112125397,
- 0.03510886803269386,
- -0.03177032247185707,
- 0.024690067395567894,
- 0.04361347109079361,
- -0.047218795865774155,
- -0.009833008050918579,
- 0.005872149486094713,
- -0.01609738916158676,
- 0.04821049049496651,
- 0.0604187436401844,
- -0.024455957114696503,
- 0.04332052543759346,
- 0.05147787928581238,
- 0.013579959981143475,
- -0.06686320900917053,
- -0.028052140027284622,
- 0.09639092534780502,
- -0.013228502124547958,
- -0.03882412239909172,
- -0.019040850922465324,
- 0.02917587384581566,
- -0.043736208230257034,
- -0.0049580419436097145,
- 0.026032110676169395,
- -0.03594420477747917,
- 0.029029252007603645,
- -0.003788310568779707,
- -0.07462949305772781,
- 0.00897862110286951,
- 0.02662743628025055,
- -0.09346642345190048,
- 0.022371022030711174,
- -0.07681888341903687,
- 0.04999746009707451,
- 0.01163578499108553,
- 1.871337231670164e-33,
- 0.02024175226688385,
- -0.07288675010204315,
- -0.008875408209860325,
- -0.04376162216067314,
- -0.03354567289352417,
- -0.026135599240660667,
- 0.029441460967063904,
- 0.08277326077222824,
- 0.006540968548506498,
- 0.14720505475997925,
- -0.028700584545731544,
- -0.0017678423319011927,
- 0.019350847229361534,
- 0.05194944515824318,
- 0.06098473444581032,
- 0.03342990204691887,
- -0.05481545254588127,
- -0.050005510449409485,
- -0.010722458362579346,
- 0.03999745100736618,
- -0.1130719855427742,
- 0.03786543756723404,
- 0.0031629048753529787,
- -0.07933284342288971,
- -0.049639176577329636,
- 0.016539311036467552,
- -0.08250865340232849,
- 0.04102093353867531,
- -0.04089919477701187,
- -0.03421216830611229,
- 0.0283163134008646,
- -0.08070671558380127,
- -0.05310816690325737,
- 0.004047143738716841,
- -0.02251104637980461,
- 0.020764697343111038,
- 0.09935960918664932,
- 0.09005086869001389,
- 0.0018782875267788768,
- -0.04683029651641846,
- 0.08360695838928223,
- -0.0932081937789917,
- -0.005154093727469444,
- 0.04081321135163307,
- -0.007302867714315653,
- -0.039382800459861755,
- -0.06497947126626968,
- 0.08278670161962509,
- -0.062446463853120804,
- -0.008083993569016457,
- 0.05279340222477913,
- 0.01984047144651413,
- 0.020287582650780678,
- -0.04983675852417946,
- -0.010891017504036427,
- 0.062175434082746506,
- 0.03762059658765793,
- -0.02120852656662464,
- 0.02524080127477646,
- -0.03611772134900093,
- -0.06310314685106277,
- -0.06377524882555008,
- -0.034275345504283905,
- 0.11343830078840256,
- -0.037771135568618774,
- -0.0309283584356308,
- -0.025313924998044968,
- -0.0005211926763877273,
- -0.027156678959727287,
- 0.04881007596850395,
- 0.034353118389844894,
- -0.017048263922333717,
- -0.007898852229118347,
- 0.017977094277739525,
- 0.04293878749012947,
- -0.009785674512386322,
- -0.041828054934740067,
- -0.005937883630394936,
- -0.021934874355793,
- 0.025370454415678978,
- -0.03769585117697716,
- -0.043166518211364746,
- 0.08222748339176178,
- 0.12006814777851105,
- 0.024118205532431602,
- -0.04164974018931389,
- 0.07897407561540604,
- 0.014026718214154243,
- -0.011205905117094517,
- 0.033891916275024414,
- -0.03817547857761383,
- 0.06888776272535324,
- -0.08603076636791229,
- 0.06322615593671799,
- 0.012886938638985157,
- -1.2647960900835642e-8,
- -0.022785034030675888,
- -0.018101578578352928,
- -0.00416872464120388,
- 0.09056483209133148,
- -0.05057591199874878,
- 0.04488901421427727,
- -0.03576197847723961,
- 0.039209432899951935,
- 0.017073914408683777,
- 0.05062247812747955,
- -0.04942672699689865,
- -0.03316958248615265,
- -0.026145583018660545,
- 0.017165200784802437,
- -0.005669205449521542,
- -0.016314910724759102,
- -0.009836137294769287,
- 0.05541887506842613,
- -0.00004847381933359429,
- 0.02021474950015545,
- -0.023803941905498505,
- 0.018279554322361946,
- 0.050441138446331024,
- -0.07207706570625305,
- 0.04587168991565704,
- -0.051785413175821304,
- 0.05770604684948921,
- 0.110219307243824,
- -0.031236492097377777,
- -0.02219424955546856,
- -0.021881358698010445,
- 0.01801995560526848,
- 0.07873407006263733,
- -0.0542096346616745,
- 0.034039463847875595,
- 0.020455332472920418,
- -0.015538256615400314,
- -0.011578598991036415,
- -0.0014375185128301382,
- -0.01073925755918026,
- 0.04409657046198845,
- 0.0006928532384335995,
- 0.016530130058526993,
- -0.008599299006164074,
- 0.10616225004196167,
- 0.032191310077905655,
- 0.05642726644873619,
- -0.07624507695436478,
- 0.07325103133916855,
- -0.006911456119269133,
- -0.0646231397986412,
- -0.014677688479423523,
- 0.04339470714330673,
- 0.03222687914967537,
- -0.05111785605549812,
- 0.0038728336803615093,
- -0.07276853173971176,
- -0.06126376986503601,
- 0.02734573930501938,
- 0.05542735755443573,
- 0.08944899588823318,
- 0.1469365656375885,
- 0.09803996235132217,
- 0.01704806461930275
- ]
- },
- {
- "keyword": "endpoint",
- "type": "interface",
- "typeCategory": "noun",
- "confidence": 0.85,
- "isCanonical": true,
- "embedding": [
- 0.0050547169521451,
- 0.014142421074211597,
- -0.04191099479794502,
- -0.05902152508497238,
- -0.05488118156790733,
- 0.013701416552066803,
- 0.01627621240913868,
- 0.05285805091261864,
- 0.018237685784697533,
- -0.01585197262465954,
- 0.010233115404844284,
- -0.0137664545327425,
- -0.03110123611986637,
- 0.040979061275720596,
- 0.040976837277412415,
- -0.020116692408919334,
- 0.04286745935678482,
- -0.04501485079526901,
- 0.04048537835478783,
- 0.033220622688531876,
- 0.04900535196065903,
- 0.04984838142991066,
- -0.018961405381560326,
- 0.008088300004601479,
- -0.02081657387316227,
- 0.0033782548271119595,
- -0.03925288841128349,
- -0.0006775963702239096,
- -0.026244547218084335,
- -0.11627942323684692,
- 0.030121972784399986,
- -0.049955639988183975,
- -0.018133360892534256,
- 0.005415560677647591,
- -0.002803729847073555,
- 0.03801218792796135,
- -0.009289865382015705,
- -0.00789501890540123,
- -0.04136387258768082,
- -0.06864380836486816,
- 0.0031217015348374844,
- -0.021259285509586334,
- -0.013519635424017906,
- 0.07632990181446075,
- 0.07910045981407166,
- -0.0246539656072855,
- -0.0037201019003987312,
- 0.005933081265538931,
- 0.05573483929038048,
- -0.00564011512324214,
- -0.0024619977921247482,
- -0.014796482399106026,
- -0.06888570636510849,
- -0.0037903408519923687,
- 0.033646464347839355,
- -0.0029904916882514954,
- 0.037005674093961716,
- -0.01691718026995659,
- -0.015051926486194134,
- 0.011814133264124393,
- 0.07871884107589722,
- -0.04431638866662979,
- -0.05781394988298416,
- 0.030854087322950363,
- 0.09999554604291916,
- -0.06668496131896973,
- 0.014265511184930801,
- 0.0002480076509527862,
- -0.0019002890912815928,
- -0.05864569917321205,
- -0.07948976010084152,
- -0.027264868840575218,
- -0.06817290186882019,
- 0.03455093502998352,
- 0.02275567315518856,
- 0.058981772512197495,
- -0.020016878843307495,
- -0.00812568236142397,
- 0.05129194259643555,
- -0.03146364539861679,
- 0.03142314776778221,
- -0.024905260652303696,
- 0.008056776598095894,
- 0.09497196972370148,
- 0.02261032536625862,
- -0.015377424657344818,
- -0.030744444578886032,
- 0.0761638805270195,
- 0.04534570500254631,
- 0.021681759506464005,
- -0.0057955048978328705,
- -0.07077775150537491,
- -0.04780606925487518,
- -0.014213687740266323,
- 0.024117084220051765,
- -0.032061029225587845,
- -0.01366035733371973,
- -0.07508308440446854,
- -0.00771747063845396,
- 0.12158356606960297,
- 0.012649046257138252,
- -0.01954767107963562,
- 0.035479653626680374,
- -0.0026591732166707516,
- 0.04804263263940811,
- 0.002851859200745821,
- 0.0543041005730629,
- 0.05908990278840065,
- -0.007094896864145994,
- -0.03531156852841377,
- -0.1019638255238533,
- -0.09037578850984573,
- -0.02097267284989357,
- -0.10860901325941086,
- 0.058341387659311295,
- 0.007802027277648449,
- -0.004364612977951765,
- 0.02051667496562004,
- 0.018435977399349213,
- -0.04338039830327034,
- 0.006289697252213955,
- 0.027124717831611633,
- -0.04520207270979881,
- 0.07839161157608032,
- -0.03782600909471512,
- -0.06575529277324677,
- 0.039100777357816696,
- -2.5785710201194933e-33,
- 0.03313753381371498,
- 0.006914607249200344,
- 0.09179028123617172,
- 0.03777541592717171,
- 0.03949975222349167,
- 0.030749334022402763,
- 0.01963379979133606,
- 0.021204635500907898,
- -0.02551906183362007,
- 0.009898261167109013,
- -0.06707156449556351,
- 0.01175598707050085,
- 0.003895987058058381,
- 0.019363688305020332,
- 0.11284144967794418,
- 0.010768778622150421,
- 0.03656768798828125,
- 0.13992202281951904,
- -0.03082060068845749,
- 0.021800447255373,
- 0.007220793981105089,
- -0.06601027399301529,
- 0.015011186711490154,
- -0.040178410708904266,
- 0.04373205825686455,
- 0.059613186866045,
- -0.047663841396570206,
- 0.028807383030653,
- 0.024841390550136566,
- 0.004822687245905399,
- 0.009036886505782604,
- -0.02814311347901821,
- 0.010368498973548412,
- 0.016790663823485374,
- 0.016961146146059036,
- -0.011073226109147072,
- -0.03540109470486641,
- -0.057539645582437515,
- 0.037779953330755234,
- -0.10091692209243774,
- 0.017949189990758896,
- 0.016297658905386925,
- -0.09868571907281876,
- 0.036417052149772644,
- -0.06238418444991112,
- -0.026177896186709404,
- 0.04233675077557564,
- 0.019125865772366524,
- 0.07223022729158401,
- -0.027548156678676605,
- -0.023002097383141518,
- 0.05644435063004494,
- -0.03343452140688896,
- -0.03626612573862076,
- 0.027623459696769714,
- 0.0023132176138460636,
- 0.02277088724076748,
- 0.014643917791545391,
- -0.01453953143209219,
- 0.013301445171236992,
- 0.0009726356947794557,
- 0.08020950108766556,
- -0.06398158520460129,
- -0.05040266364812851,
- -0.021979408338665962,
- -0.10162541270256042,
- 0.020621633157134056,
- -0.05302608758211136,
- 0.086854949593544,
- 0.043324217200279236,
- -0.07394711673259735,
- -0.03305881842970848,
- 0.1332632601261139,
- 0.061197053641080856,
- -0.07578720897436142,
- 0.02230972796678543,
- -0.07432213425636292,
- 0.04605467990040779,
- 0.05206926167011261,
- -0.05467093735933304,
- -0.04058939963579178,
- -0.008861740119755268,
- -0.1000942587852478,
- -0.01196219865232706,
- 0.055179934948682785,
- 0.011195133440196514,
- -0.003607196733355522,
- -0.11180269718170166,
- -0.028295964002609253,
- 0.06361730396747589,
- -0.04066450148820877,
- 0.023402560502290726,
- -0.012719529680907726,
- 0.1736389547586441,
- -0.04539865627884865,
- 2.1980221727850477e-33,
- -0.09238895773887634,
- -0.05426439270377159,
- -0.09115643054246902,
- 0.037904705852270126,
- 0.0008588642813265324,
- 0.01176096685230732,
- 0.029344631358981133,
- -0.01163825485855341,
- 0.0267756599932909,
- 0.17691008746623993,
- 0.033913373947143555,
- -0.04288717731833458,
- 0.10678385198116302,
- 0.001955342013388872,
- 0.05142193287611008,
- 0.019293932244181633,
- 0.055090926587581635,
- -0.06009390205144882,
- -0.0013731915969401598,
- -0.023321177810430527,
- -0.026260271668434143,
- -0.01808510348200798,
- -0.019562728703022003,
- -0.11917285621166229,
- 0.07893478125333786,
- 0.062819704413414,
- -0.010369240306317806,
- -0.04849044978618622,
- -0.07955730706453323,
- -0.01827198639512062,
- 0.041318606585264206,
- -0.07150738686323166,
- 0.027152350172400475,
- -0.009248516522347927,
- 0.003916155081242323,
- 0.08473475277423859,
- 0.041083164513111115,
- 0.028927737846970558,
- 0.0695967748761177,
- -0.031040487810969353,
- 0.11529307812452316,
- -0.05354701355099678,
- 0.054429665207862854,
- 0.0793505534529686,
- 0.05051090568304062,
- -0.010768557898700237,
- -0.0481928288936615,
- 0.0653451532125473,
- 0.004289809614419937,
- 0.029478907585144043,
- -0.07563779503107071,
- 0.011881835758686066,
- -0.05371677130460739,
- -0.048905856907367706,
- -0.05763617530465126,
- 0.020889785140752792,
- 0.018048958852887154,
- -0.048501450568437576,
- -0.023790504783391953,
- -0.072098508477211,
- -0.01536167785525322,
- 0.007651634514331818,
- -0.020811906084418297,
- 0.017344914376735687,
- 0.04067278653383255,
- -0.06202166900038719,
- -0.016442859545350075,
- -0.05902943015098572,
- -0.11072518676519394,
- -0.04184612259268761,
- 0.010102507658302784,
- -0.015680886805057526,
- -0.02272936888039112,
- -0.02259301207959652,
- -0.012540638446807861,
- -0.00661482335999608,
- -0.043607745319604874,
- -0.07427917420864105,
- -0.00494783278554678,
- -0.023787591606378555,
- -0.06175016239285469,
- 0.021686937659978867,
- 0.024971170350909233,
- 0.08264025300741196,
- -0.011911259964108467,
- -0.03449688106775284,
- 0.04823372885584831,
- 0.041511934250593185,
- -0.00498914672061801,
- 0.03604228422045708,
- -0.0636715292930603,
- 0.04560074955224991,
- -0.03621361404657364,
- 0.032546356320381165,
- -0.02991214022040367,
- -1.1876305272551235e-8,
- -0.16984295845031738,
- 0.0027938513085246086,
- 0.06665542721748352,
- 0.0029663480818271637,
- -0.04114046320319176,
- 0.06211501359939575,
- 0.04584601894021034,
- 0.09074106067419052,
- 0.06037567928433418,
- 0.05408473685383797,
- -0.02213919349014759,
- -0.060027334839105606,
- -0.023972731083631516,
- 0.07864387333393097,
- 0.019649479538202286,
- -0.00519214803352952,
- 0.041994236409664154,
- 0.027841433882713318,
- -0.007344869896769524,
- -0.10943644493818283,
- -0.060016486793756485,
- 0.01847377046942711,
- -0.0035715268459171057,
- -0.10626797378063202,
- -0.031282711774110794,
- 0.029794447124004364,
- 0.018429379910230637,
- 0.14675794541835785,
- -0.00022992886079009622,
- -0.07782027870416641,
- 0.08199973404407501,
- -0.01820339448750019,
- -0.005798807367682457,
- 0.043578535318374634,
- 0.006858528591692448,
- 0.0700296014547348,
- -0.006995102856308222,
- 0.11148176342248917,
- 0.0032216107938438654,
- 0.11274515092372894,
- 0.030513424426317215,
- 0.046560756862163544,
- 0.015554938465356827,
- 0.06642062216997147,
- -0.006510669365525246,
- 0.05516355112195015,
- 0.06632617115974426,
- 0.04226429760456085,
- -0.051772698760032654,
- -0.041353147476911545,
- 0.012673120945692062,
- -0.062045738101005554,
- -0.028699856251478195,
- -0.02190866880118847,
- 0.05272491276264191,
- 0.01722254417836666,
- 0.0071513596922159195,
- -0.044752705842256546,
- 0.01439499668776989,
- 0.12331879884004593,
- -0.004243099130690098,
- 0.03976353630423546,
- -0.04285607859492302,
- 0.06810828298330307
- ]
- },
- {
- "keyword": "resource",
- "type": "resource",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- -0.007864885032176971,
- 0.06370580196380615,
- -0.08581309020519257,
- 0.028404247015714645,
- 0.021454984322190285,
- -0.020150134339928627,
- 0.11830941587686539,
- 0.00891924649477005,
- -0.00782422162592411,
- -0.01066000945866108,
- -0.006539950612932444,
- 0.022357363253831863,
- 0.035081833600997925,
- 0.019291285425424576,
- -0.0528562068939209,
- -0.00111188436858356,
- 0.046746768057346344,
- 0.0228820089250803,
- -0.09350951761007309,
- -0.018768442794680595,
- 0.04570816084742546,
- 0.006651037838310003,
- 0.04695464298129082,
- -0.0272442065179348,
- -0.0074370671063661575,
- 0.019327763468027115,
- -0.010888079181313515,
- 0.020299898460507393,
- 0.10720962285995483,
- -0.11262521892786026,
- -0.011316356249153614,
- 0.0010481226490810513,
- 0.04049108549952507,
- -0.006345213390886784,
- 0.011288686655461788,
- 0.0403624065220356,
- 0.013921316713094711,
- -0.019553611055016518,
- 0.030292708426713943,
- 0.022429080680012703,
- 0.013084444217383862,
- 0.0034931041300296783,
- 0.008459486067295074,
- -0.00219992664642632,
- -0.014815385453402996,
- 0.07313881814479828,
- 0.01356789842247963,
- -0.06047036871314049,
- -0.026166629046201706,
- 0.019873270764946938,
- -0.09430667757987976,
- 0.0140861039981246,
- -0.02349928580224514,
- -0.03942848742008209,
- 0.0642148107290268,
- -0.03526243939995766,
- 0.02223188988864422,
- 0.05108790844678879,
- -0.013043462298810482,
- 0.010661465115845203,
- 0.12881891429424286,
- -0.011038782075047493,
- -0.11970596760511398,
- 0.026627808809280396,
- 0.07477188110351562,
- -0.03897270932793617,
- 0.025027258321642876,
- 0.10711420327425003,
- -0.05083632096648216,
- -0.18905802071094513,
- -0.011769210919737816,
- 0.018390584737062454,
- -0.01721838302910328,
- 0.0858241394162178,
- 0.07569267600774765,
- 0.014038318768143654,
- 0.04511498659849167,
- 0.025718793272972107,
- 0.05625453218817711,
- -0.15232595801353455,
- -0.053688738495111465,
- 0.013034236617386341,
- 0.007132618688046932,
- 0.024665556848049164,
- 0.08345052599906921,
- 0.045395564287900925,
- 0.013860829174518585,
- 0.013153462670743465,
- 0.01661130040884018,
- 0.04506773501634598,
- -0.010981276631355286,
- 0.021062340587377548,
- 0.06298845261335373,
- 0.0034486448857933283,
- 0.00998376589268446,
- 0.08736851066350937,
- 0.027269653975963593,
- -0.10575801879167557,
- -0.040977593511343,
- 0.22821733355522156,
- 0.001833006739616394,
- 0.024767016991972923,
- 0.030298637226223946,
- -0.0009029049542732537,
- -0.09297885745763779,
- -0.041448984295129776,
- -0.07700390368700027,
- 0.13200803101062775,
- -0.06432731449604034,
- -0.04011387377977371,
- -0.07230845838785172,
- 0.007534392643719912,
- -0.12852339446544647,
- -0.019949886947870255,
- 0.03919839486479759,
- 0.010376201011240482,
- 0.020368436351418495,
- 0.007215334102511406,
- 0.03302868828177452,
- -0.027453197166323662,
- 0.023067118600010872,
- -0.03567768260836601,
- -0.009628350846469402,
- 0.01960304006934166,
- -0.05202913284301758,
- -0.12938186526298523,
- -0.06503685563802719,
- -4.592510961236763e-33,
- 0.09255381673574448,
- -0.0009504705085419118,
- 0.012411150150001049,
- 0.041754964739084244,
- 0.020931337028741837,
- -0.047038622200489044,
- -0.012981127947568893,
- 0.008752787485718727,
- -0.04849553108215332,
- -0.004270252771675587,
- -0.021864552050828934,
- 0.0778895914554596,
- -0.08705765008926392,
- -0.0004752395034302026,
- -0.0022057872265577316,
- -0.02054295502603054,
- 0.027027592062950134,
- 0.1644427329301834,
- 0.027729466557502747,
- 0.0038757387083023787,
- -0.01778070442378521,
- 0.057737383991479874,
- 0.027429286390542984,
- 0.0198146291077137,
- 0.017725175246596336,
- 0.0033115255646407604,
- -0.010053528472781181,
- -0.07157919555902481,
- -0.0005785360117442906,
- 0.022903161123394966,
- 0.017416933551430702,
- 0.012816726230084896,
- 0.006368208210915327,
- -0.04091953858733177,
- 0.022637248039245605,
- -0.03965698927640915,
- -0.008743887767195702,
- -0.022727161645889282,
- 0.0014792871661484241,
- 0.03239920735359192,
- -0.014843638986349106,
- -0.009751642122864723,
- -0.03743583336472511,
- -0.032889485359191895,
- 0.011469634249806404,
- -0.03384220972657204,
- 0.017164675518870354,
- -0.042529813945293427,
- -0.01106642372906208,
- -0.013009629212319851,
- 0.054603539407253265,
- 0.03157353773713112,
- -0.023546850308775902,
- -0.021571071818470955,
- -0.03223961219191551,
- -0.015890860930085182,
- -0.01433165930211544,
- 0.0462704561650753,
- 0.004941968712955713,
- 0.0035204761661589146,
- 0.02848627232015133,
- 0.10037641227245331,
- -0.04580650478601456,
- -0.014652734622359276,
- -0.05596660077571869,
- -0.01677655428647995,
- -0.04042263329029083,
- -0.04272980988025665,
- 0.017938705161213875,
- -0.02859211340546608,
- -0.056238554418087006,
- -0.031193235889077187,
- 0.1327841728925705,
- -0.005995321553200483,
- -0.024488529190421104,
- -0.036014385521411896,
- -0.017086615785956383,
- 0.024396896362304688,
- -0.11084812879562378,
- -0.0010792844695970416,
- -0.0531940720975399,
- -0.03381924703717232,
- 0.008291443809866905,
- 0.035501595586538315,
- -0.06771516799926758,
- -0.014650792814791203,
- 0.03889213502407074,
- -0.07175399363040924,
- 0.036232415586709976,
- -0.018485603854060173,
- -0.04818671569228172,
- 0.01498409640043974,
- -0.060693513602018356,
- 0.005071669351309538,
- -0.007125192321836948,
- 4.072561157193264e-33,
- 0.017466846853494644,
- -0.007253192365169525,
- -0.024413522332906723,
- 0.07836353778839111,
- 0.0204179510474205,
- 0.0006560629699379206,
- -0.0027970264200121164,
- 0.014106093905866146,
- -0.011526882648468018,
- 0.0067540500313043594,
- -0.03885791078209877,
- -0.023551277816295624,
- 0.03663891553878784,
- 0.027583209797739983,
- -0.04254988953471184,
- -0.04343816637992859,
- 0.02824787050485611,
- -0.05986052006483078,
- -0.08949629962444305,
- 0.05071088671684265,
- -0.10921044647693634,
- 0.0792471319437027,
- -0.02956370823085308,
- -0.031774166971445084,
- -0.017345402389764786,
- 0.03468497097492218,
- 0.03929606080055237,
- -0.04036884754896164,
- -0.050246693193912506,
- 0.010446572676301003,
- 0.026591965928673744,
- -0.05540724843740463,
- -0.08965956419706345,
- -0.03274114802479744,
- -0.10054212063550949,
- 0.028299011290073395,
- 0.05005320906639099,
- 0.03574258089065552,
- -0.03602522611618042,
- 0.022048575803637505,
- 0.10637027025222778,
- 0.00013779313303530216,
- 0.03312494978308678,
- 0.04839198663830757,
- 0.004959930665791035,
- -0.04169588163495064,
- 0.006733509711921215,
- -0.021849986165761948,
- 0.00907706469297409,
- -0.007806070614606142,
- 0.07820641994476318,
- 0.0046151177957654,
- 0.0490107499063015,
- -0.10288961231708527,
- 0.018923448398709297,
- -0.0026877340860664845,
- 0.031054310500621796,
- 0.017505716532468796,
- 0.017607007175683975,
- -0.030065272003412247,
- -0.03715931251645088,
- 0.04095559939742088,
- -0.14764630794525146,
- 0.05853317305445671,
- -0.011849792674183846,
- -0.01679248921573162,
- -0.037882234901189804,
- -0.0417359285056591,
- -0.0021936059929430485,
- -0.016596466302871704,
- 0.030617730692029,
- 0.06150860711932182,
- 0.03129018470644951,
- 0.04431729391217232,
- 0.0004702908336184919,
- 0.0006912412936799228,
- -0.06618127971887589,
- 0.03457916900515556,
- -0.005015634000301361,
- -0.01884370669722557,
- -0.0747743770480156,
- -0.06837807595729828,
- -0.0623302087187767,
- 0.06371055543422699,
- 0.024063946679234505,
- 0.11690935492515564,
- 0.011074177920818329,
- -0.012331238947808743,
- -0.04464877396821976,
- -0.04308633133769035,
- -0.12242285907268524,
- -0.03014816902577877,
- -0.04032587260007858,
- 0.14479516446590424,
- -0.0259071197360754,
- -1.3754516636765857e-8,
- -0.03356796130537987,
- 0.06542547047138214,
- 0.08596327900886536,
- 0.03254466503858566,
- 0.027438215911388397,
- 0.03223397582769394,
- 0.01908603124320507,
- 0.06294470280408859,
- 0.04527272656559944,
- 0.1619247943162918,
- -0.020124223083257675,
- -0.011646660044789314,
- 0.08397560566663742,
- 0.044350214302539825,
- 0.033899690955877304,
- -0.03708849102258682,
- -0.004722149111330509,
- -0.0018525858176872134,
- -0.025811199098825455,
- -0.035837262868881226,
- -0.0041326191276311874,
- 0.031933750957250595,
- 0.005671890452504158,
- 0.017329728230834007,
- 0.072441466152668,
- 0.020368458703160286,
- -0.013603362254798412,
- 0.11533290892839432,
- -0.06155393272638321,
- -0.030187873169779778,
- 0.0069976551458239555,
- 0.029587823897600174,
- 0.057878341525793076,
- -0.03582074120640755,
- 0.05680140107870102,
- 0.053492221981287,
- -0.07473034411668777,
- -0.025222908705472946,
- 0.005502458196133375,
- 0.023296840488910675,
- 0.017387378960847855,
- -0.015282849781215191,
- 0.05657088756561279,
- 0.02391870878636837,
- 0.0428064726293087,
- 0.026090050116181374,
- -0.05136112496256828,
- 0.011788479052484035,
- -0.05947641283273697,
- -0.03723320737481117,
- -0.013415023684501648,
- -0.04204150289297104,
- 0.0027096611447632313,
- 0.02263614907860756,
- 0.018627680838108063,
- 0.040518611669540405,
- 0.050993870943784714,
- 0.0148987527936697,
- -0.000352603878127411,
- 0.05896013230085373,
- 0.11812436580657959,
- 0.05518282204866409,
- -0.01152558159083128,
- 0.018031436949968338
- ]
- },
- {
- "keyword": "asset",
- "type": "resource",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.02725600264966488,
- 0.10207489132881165,
- -0.03848206251859665,
- -0.024087756872177124,
- 0.03195854276418686,
- -0.04631974175572395,
- 0.2005111128091812,
- 0.020710619166493416,
- 0.03748975694179535,
- -0.021896464750170708,
- 0.014261886477470398,
- -0.040687695145606995,
- 0.0015350965550169349,
- 0.016639022156596184,
- 0.020282795652747154,
- -0.02704789489507675,
- -0.001692173769697547,
- 0.030392400920391083,
- -0.09729009866714478,
- 0.08572052419185638,
- -0.0929357036948204,
- -0.004709284286946058,
- 0.0072832913137972355,
- -0.01033488567918539,
- 0.03229120373725891,
- -0.002066378016024828,
- 0.025560876354575157,
- 0.023908643051981926,
- 0.03809624910354614,
- -0.13614660501480103,
- 0.07225493341684341,
- 0.026299038901925087,
- 0.004618484526872635,
- -0.006325074937194586,
- 0.05523575842380524,
- 0.08737775683403015,
- -0.005337256006896496,
- -0.001049392274580896,
- -0.04544719308614731,
- 0.015772620216012,
- 0.021033165976405144,
- -0.05166725069284439,
- -0.002181827323511243,
- -0.03659467026591301,
- 0.043311722576618195,
- -0.01671537570655346,
- 0.037652388215065,
- -0.0027133445255458355,
- 0.05312131345272064,
- 0.020278241485357285,
- -0.08455339074134827,
- -0.0521061010658741,
- -0.07512416690587997,
- -0.006642995402216911,
- -0.002848619595170021,
- 0.06965610384941101,
- -0.01805562898516655,
- 0.047145865857601166,
- -0.01962856389582157,
- -0.009790318086743355,
- 0.06851623952388763,
- 0.0028553868178278208,
- -0.00936161633580923,
- 0.03164546936750412,
- 0.11814527958631516,
- 0.00838398840278387,
- 0.017263425514101982,
- 0.015764880925416946,
- -0.11488904803991318,
- -0.06063247472047806,
- 0.1025514006614685,
- -0.05764634534716606,
- -0.03316756710410118,
- -0.0679873675107956,
- 0.040666837245225906,
- -0.00797053799033165,
- 0.052481379359960556,
- -0.012912905775010586,
- 0.059959299862384796,
- -0.06671465188264847,
- -0.002822884824126959,
- -0.0644523873925209,
- -0.02190171554684639,
- 0.04982419312000275,
- 0.027067657560110092,
- 0.05808466672897339,
- -0.011709041893482208,
- 0.017539892345666885,
- 0.014759720303118229,
- 0.025744061917066574,
- -0.059115443378686905,
- -0.04848075658082962,
- 0.12201178818941116,
- 0.04944127798080444,
- -0.002345686312764883,
- 0.04773285239934921,
- -0.010709713213145733,
- -0.04912012070417404,
- -0.0659298300743103,
- 0.26587462425231934,
- -0.013574033044278622,
- 0.04315704107284546,
- 0.05854880437254906,
- 0.03150786831974983,
- -0.09847436845302582,
- -0.003637663321569562,
- -0.012754302471876144,
- 0.044931236654520035,
- 0.016391927376389503,
- 0.005119469482451677,
- -0.05392847955226898,
- 0.010170254856348038,
- -0.07289472967386246,
- -0.012594303116202354,
- 0.04317183047533035,
- -0.011663813143968582,
- -0.05600916966795921,
- -0.01841229572892189,
- 0.042837273329496384,
- -0.06350051611661911,
- 0.08163603395223618,
- 0.057641178369522095,
- -0.007032041437923908,
- 0.051591821014881134,
- -0.08258990943431854,
- -0.07837451249361038,
- 0.006214080844074488,
- -5.9182547959292475e-33,
- -0.030685769394040108,
- -0.0188680998980999,
- 0.04914679378271103,
- 0.02791445329785347,
- -0.08444397896528244,
- -0.015943944454193115,
- -0.013769115321338177,
- -0.014748080633580685,
- -0.06866175681352615,
- 0.044063419103622437,
- 0.01618359051644802,
- 0.08429957181215286,
- -0.03244342282414436,
- 0.039738863706588745,
- 0.08006763458251953,
- 0.03218882903456688,
- -0.056103918701410294,
- 0.10174507647752762,
- 0.12628242373466492,
- -0.006429259665310383,
- -0.032730162143707275,
- 0.05924990028142929,
- -0.023850906640291214,
- 0.026971373707056046,
- -0.0010535635519772768,
- -0.03188929706811905,
- 0.013544132933020592,
- -0.060057319700717926,
- -0.04177410155534744,
- 0.04477263242006302,
- -0.0011673147091642022,
- 0.018224339932203293,
- 0.02309807948768139,
- -0.059351883828639984,
- -0.03978686407208443,
- -0.03245983272790909,
- -0.07161542028188705,
- -0.03561553731560707,
- -0.020205320790410042,
- 0.03292441368103027,
- 0.011718591675162315,
- -0.024453330785036087,
- -0.04639521613717079,
- 0.021384602412581444,
- -0.003758259117603302,
- 0.0003018054994754493,
- 0.08729366958141327,
- 0.02733563631772995,
- -0.03685780242085457,
- 0.0013810102827847004,
- -0.0082704434171319,
- -0.01637274958193302,
- -0.022052722051739693,
- 0.010405058041214943,
- -0.04070882126688957,
- -0.021364836022257805,
- -0.03138844296336174,
- 0.007558078039437532,
- -0.060227345675230026,
- -0.06991039216518402,
- 0.11046866327524185,
- 0.05413900315761566,
- -0.03276015818119049,
- 0.0013525368412956595,
- -0.0790790542960167,
- 0.0418088324368,
- 0.049100857228040695,
- 0.04595039039850235,
- 0.026436515152454376,
- 0.0004102619714103639,
- -0.10847145318984985,
- -0.010768421925604343,
- 0.12502628564834595,
- 0.022356370463967323,
- 0.03531938046216965,
- -0.027017200365662575,
- -0.04285386577248573,
- 0.05113690719008446,
- -0.06083432957530022,
- 0.07291992753744125,
- -0.05686579644680023,
- 0.027876529842615128,
- -0.0037215235643088818,
- 0.05158625543117523,
- -0.02855154126882553,
- 0.03652331233024597,
- 0.047259826213121414,
- -0.11108651012182236,
- 0.017219047993421555,
- 0.025237122550606728,
- -0.04813592880964279,
- -0.006609985139220953,
- -0.025338230654597282,
- 0.0492531880736351,
- -0.02488490752875805,
- 4.948314366789453e-33,
- -0.01964302733540535,
- -0.03651416674256325,
- -0.049002744257450104,
- 0.09101501107215881,
- 0.03504137322306633,
- -0.08345886319875717,
- 0.057056449353694916,
- 0.002754814922809601,
- -0.05164412409067154,
- 0.04757310450077057,
- -0.004355311393737793,
- -0.06825029104948044,
- -0.02744808793067932,
- -0.058677684515714645,
- 0.012413722462952137,
- 0.02467263489961624,
- 0.0778987929224968,
- -0.0857560932636261,
- -0.0124097540974617,
- 0.004262148402631283,
- -0.04938315972685814,
- 0.014876187779009342,
- 0.12116561084985733,
- 0.010921663604676723,
- -0.033616263419389725,
- 0.10271359980106354,
- 0.01012901309877634,
- -0.04170161858201027,
- 0.00979637261480093,
- 0.01127572450786829,
- -0.0005177301936782897,
- 0.03490449860692024,
- 0.013310074806213379,
- -0.01397637091577053,
- -0.045164551585912704,
- 0.048233769834041595,
- 0.010652309283614159,
- -0.022478563711047173,
- -0.015862811356782913,
- 0.01961180754005909,
- 0.04022768884897232,
- -0.03417081758379936,
- 0.05979786068201065,
- 0.10052694380283356,
- 0.028720099478960037,
- -0.01841549389064312,
- 0.07925719767808914,
- 0.007557516451925039,
- 0.10501349717378616,
- 0.020241647958755493,
- 0.03136032074689865,
- 0.022524911910295486,
- 0.0058132498525083065,
- -0.057732801884412766,
- -0.025176847353577614,
- 0.03300466760993004,
- 0.05124945193529129,
- -0.0009754605707712471,
- -0.017797624692320824,
- 0.024870555847883224,
- 0.01982227899134159,
- 0.05399492010474205,
- -0.047651536762714386,
- 0.07489795982837677,
- -0.0648413598537445,
- -0.00954985897988081,
- -0.07016153633594513,
- -0.047074344009160995,
- -0.04681849852204323,
- -0.03413624316453934,
- 0.041380953043699265,
- -0.012484272941946983,
- 0.0037091057747602463,
- 0.04245597869157791,
- -0.05267118662595749,
- -0.04459884390234947,
- -0.03323940187692642,
- -0.030179345980286598,
- 0.037737954407930374,
- -0.05573296919465065,
- -0.09976402670145035,
- -0.05659312382340431,
- -0.09445507079362869,
- 0.05309797078371048,
- 0.0006926209898665547,
- 0.015959883108735085,
- -0.09744612127542496,
- -0.0252362247556448,
- 0.008552287705242634,
- -0.05120581388473511,
- -0.07436733692884445,
- 0.05052626132965088,
- -0.02284764125943184,
- 0.09113717079162598,
- -0.03162895515561104,
- -1.2518808212291788e-8,
- -0.014370548538863659,
- 0.03687562048435211,
- 0.024359818547964096,
- -0.026163527742028236,
- 0.006354996468871832,
- -0.011745584197342396,
- -0.04238312318921089,
- 0.00996982492506504,
- 0.041130512952804565,
- 0.09857301414012909,
- 0.04941094294190407,
- -0.04409134387969971,
- -0.008998922072350979,
- 0.0490715466439724,
- -0.020501932129263878,
- -0.05143886059522629,
- -0.03355420380830765,
- 0.001941030379384756,
- -0.04041444882750511,
- -0.10577541589736938,
- 0.0828668549656868,
- -0.021244868636131287,
- 0.005211769137531519,
- -0.0930253192782402,
- -0.03534191474318504,
- -0.03475359454751015,
- -0.052338920533657074,
- 0.05369703471660614,
- -0.003578633302822709,
- -0.008265813812613487,
- -0.01747428998351097,
- 0.035555679351091385,
- 0.0062244003638625145,
- -0.023362012580037117,
- 0.024476798251271248,
- 0.01349989790469408,
- 0.030431218445301056,
- 0.03399240970611572,
- -0.021229146048426628,
- 0.08651892840862274,
- -0.052446361631155014,
- -0.06815542280673981,
- 0.05682048201560974,
- -0.015937162563204765,
- -0.01303561870008707,
- 0.02347487211227417,
- -0.04529405012726784,
- 0.014508058317005634,
- 0.022790398448705673,
- -0.03004232794046402,
- -0.012691352516412735,
- -0.05641931667923927,
- -0.016451187431812286,
- 0.05807795748114586,
- 0.023554274812340736,
- -0.0424981489777565,
- 0.04405020922422409,
- -0.01007874682545662,
- -0.055920276790857315,
- 0.015388778410851955,
- 0.12010158598423004,
- -0.06429112702608109,
- -0.05112463980913162,
- 0.020716989412903786
- ]
- },
- {
- "keyword": "capacity",
- "type": "resource",
- "typeCategory": "noun",
- "confidence": 0.8,
- "isCanonical": true,
- "embedding": [
- 0.028052205219864845,
- -0.008539288304746151,
- -0.10262241214513779,
- 0.06106185168027878,
- -0.042903024703264236,
- -0.018551528453826904,
- 0.05827874690294266,
- 0.024017585441470146,
- 0.004803824238479137,
- 0.015620417892932892,
- -0.06829224526882172,
- -0.036619801074266434,
- 0.017212415114045143,
- -0.017239628359675407,
- -0.05514415726065636,
- 0.019632048904895782,
- 0.05569418519735336,
- -0.08033069223165512,
- -0.1164156123995781,
- 0.027539992704987526,
- 0.06898906826972961,
- -0.03717998415231705,
- 0.03621826320886612,
- 0.00824930239468813,
- -0.06431407481431961,
- 0.07934454083442688,
- -0.07195866107940674,
- 0.004190257750451565,
- 0.05866406485438347,
- -0.10746628791093826,
- 0.007026488892734051,
- 0.004942499101161957,
- 0.062166448682546616,
- -0.04187117889523506,
- 0.026252461597323418,
- 0.03238341584801674,
- 0.02224767580628395,
- -0.03719242662191391,
- 0.03493638336658478,
- 0.004057443235069513,
- 0.019230792298913002,
- -0.010247335769236088,
- 0.014398285187780857,
- 0.034323789179325104,
- 0.014053832739591599,
- 0.052400801330804825,
- -0.008565422147512436,
- 0.004334216471761465,
- 0.026287296786904335,
- 0.04447564482688904,
- 0.025707341730594635,
- 0.041661087423563004,
- -0.055186621844768524,
- 0.00345293409191072,
- 0.051202479749917984,
- -0.041796453297138214,
- -0.04934214428067207,
- 0.011319119483232498,
- -0.07609347999095917,
- 0.030172929167747498,
- 0.022613879293203354,
- 0.0012084244517609477,
- -0.0077192522585392,
- -0.018732832744717598,
- 0.06641657650470734,
- -0.007405199110507965,
- -0.0625118836760521,
- 0.05702534690499306,
- -0.0665675550699234,
- 0.037318989634513855,
- 0.038714464753866196,
- 0.06359661370515823,
- -0.039073679596185684,
- 0.028098726645112038,
- 0.04027891904115677,
- -0.08116155117750168,
- 0.04099104925990105,
- 0.015009059570729733,
- 0.07084886729717255,
- 0.007742211688309908,
- 0.005682884715497494,
- 0.0016456667799502611,
- -0.06170398369431496,
- 0.007964849472045898,
- -0.01733117550611496,
- -0.04344596713781357,
- 0.015527856536209583,
- 0.05436375364661217,
- -0.06325222551822662,
- 0.04483569413423538,
- 0.011324266903102398,
- 0.06672152131795883,
- 0.031153827905654907,
- 0.028529411181807518,
- -0.09201058000326157,
- 0.05249965935945511,
- -0.08643288165330887,
- -0.0464596264064312,
- -0.01880868710577488,
- 0.19173729419708252,
- 0.023075133562088013,
- 0.09362072497606277,
- 0.07804273813962936,
- -0.04223206639289856,
- -0.07108981162309647,
- -0.05222517251968384,
- -0.01775096170604229,
- 0.1465911716222763,
- 0.000749234517570585,
- 0.07188281416893005,
- 0.058014120906591415,
- -0.0018220421625301242,
- -0.015088525600731373,
- 0.07572343945503235,
- 0.043423306196928024,
- 0.0636332780122757,
- -0.05727806314826012,
- 0.034748345613479614,
- 0.06214987859129906,
- -0.005459538660943508,
- 0.02298363856971264,
- -0.022351181134581566,
- -0.012070409022271633,
- -0.05934639275074005,
- -0.053967081010341644,
- -0.056210070848464966,
- -0.03552839159965515,
- -5.4248237770983147e-33,
- 0.010519793257117271,
- -0.05744543671607971,
- 0.014765782281756401,
- 0.07221096754074097,
- -0.02514437958598137,
- 0.02006477862596512,
- -0.03311432525515556,
- 0.033365074545145035,
- -0.04953939467668533,
- -0.01425677165389061,
- -0.029759813100099564,
- 0.07871349900960922,
- -0.056897081434726715,
- 0.006590943317860365,
- 0.11592964082956314,
- -0.027404582127928734,
- 0.025441469624638557,
- 0.122343048453331,
- -0.03228970244526863,
- -0.07397451996803284,
- -0.0061867209151387215,
- -0.0382818803191185,
- 0.00526397954672575,
- 0.08063632994890213,
- 0.015196949243545532,
- 0.009348642081022263,
- 0.018574101850390434,
- -0.011484066024422646,
- -0.015835322439670563,
- 0.010664140805602074,
- -0.007750879507511854,
- -0.0064168148674070835,
- 0.0002588601200841367,
- -0.032314542680978775,
- 0.017819849774241447,
- -0.018168628215789795,
- 0.018302129581570625,
- -0.038447894155979156,
- -0.011413169093430042,
- -0.04100169613957405,
- -0.024569043889641762,
- 0.041787173599004745,
- 0.04958811402320862,
- 0.029568517580628395,
- -0.11570926755666733,
- 0.051916979253292084,
- 0.032226480543613434,
- -0.03850122168660164,
- -0.09818869829177856,
- 0.09825610369443893,
- -0.029613543301820755,
- -0.01202677097171545,
- -0.09085848182439804,
- 0.0537208653986454,
- 0.04828295856714249,
- -0.002593637676909566,
- 0.004168498329818249,
- 0.07159113138914108,
- 0.0013170423917472363,
- 0.04823077470064163,
- 0.038351286202669144,
- 0.050554536283016205,
- -0.013168448582291603,
- 0.007790553383529186,
- 0.024006685242056847,
- 0.06621827930212021,
- -0.003437518374994397,
- -0.03136150911450386,
- 0.05652400478720665,
- -0.04399406537413597,
- -0.026432180777192116,
- -0.14173923432826996,
- 0.08627478778362274,
- 0.03461885824799538,
- -0.04507916793227196,
- -0.09132079035043716,
- 0.044782210141420364,
- -0.0013195766368880868,
- -0.03995280712842941,
- 0.04570977762341499,
- -0.09221038967370987,
- -0.05295468494296074,
- 0.012482629157602787,
- 0.0047481004148721695,
- -0.04885919392108917,
- -0.011265408247709274,
- -0.003834799164906144,
- 0.008686698041856289,
- 0.02517165243625641,
- 0.01410764828324318,
- -0.053118377923965454,
- -0.0031584680546075106,
- 0.010016249492764473,
- -0.0930662676692009,
- -0.0852980688214302,
- 4.03436714168314e-33,
- 0.0033267030958086252,
- 0.01502402126789093,
- -0.0885523185133934,
- 0.07892733812332153,
- 0.006066375412046909,
- -0.019247500225901604,
- -0.014538947492837906,
- 0.028069747611880302,
- -0.003587778890505433,
- -0.05079276114702225,
- -0.04187488183379173,
- 0.0050622932612895966,
- 0.11192591488361359,
- 0.05873151868581772,
- -0.042590077966451645,
- -0.04408464953303337,
- 0.04055703803896904,
- -0.009831830859184265,
- 0.06235479563474655,
- 0.005080568604171276,
- -0.03246019408106804,
- -0.05449935048818588,
- 0.10146596282720566,
- 0.04239773005247116,
- -0.028212053701281548,
- 0.0658944845199585,
- -0.07470716536045074,
- -0.05303715914487839,
- 0.000020678246073657647,
- -0.039579860866069794,
- 0.04317940026521683,
- -0.15750055015087128,
- -0.04425244405865669,
- 0.07828754931688309,
- -0.01899121329188347,
- 0.008332107216119766,
- 0.09147894382476807,
- 0.09213364869356155,
- -0.025955533608794212,
- 0.039688676595687866,
- 0.09993252903223038,
- -0.04420064017176628,
- 0.004368992988020182,
- 0.09643658250570297,
- 0.00043401552829891443,
- 0.003874070243909955,
- 0.053369756788015366,
- -0.08432074636220932,
- 0.10776697844266891,
- -0.02613513357937336,
- 0.010153314098715782,
- -0.053850043565034866,
- 0.012945564463734627,
- -0.0033060223795473576,
- -0.0021596751175820827,
- -0.05315225571393967,
- 0.0018485335167497396,
- 0.027583405375480652,
- -0.02150895819067955,
- -0.08501417189836502,
- 0.017375526949763298,
- 0.01717735268175602,
- -0.07842323929071426,
- 0.0351584367454052,
- -0.02400677278637886,
- -0.05502237007021904,
- -0.035410843789577484,
- -0.08799982070922852,
- -0.049277111887931824,
- 0.033995240926742554,
- 0.0744001492857933,
- 0.0035431121941655874,
- 0.04011698439717293,
- 0.019044868648052216,
- -0.10615941882133484,
- -0.022189952433109283,
- -0.04542993754148483,
- -0.01499141938984394,
- 0.006894449703395367,
- 0.033832255750894547,
- -0.13104148209095,
- 0.052084729075431824,
- 0.03463703766465187,
- 0.008426634594798088,
- 0.04180951789021492,
- 0.046037085354328156,
- 0.06981579959392548,
- -0.025130383670330048,
- -0.0702180340886116,
- 0.04853563755750656,
- 0.0009911085944622755,
- 0.06966093182563782,
- -0.07752277702093124,
- 0.009285266511142254,
- -0.02954016998410225,
- -1.1885111561582562e-8,
- 0.01905323565006256,
- 0.0376930758357048,
- -0.01623701862990856,
- -0.003379879053682089,
- 0.04111674800515175,
- -0.05745759606361389,
- 0.007997776381671429,
- 0.04591275379061699,
- 0.05383827164769173,
- 0.15565167367458344,
- 0.053049735724925995,
- -0.007229993119835854,
- -0.025393769145011902,
- 0.02871200256049633,
- 0.024669663980603218,
- 0.011328570544719696,
- -0.11183784902095795,
- 0.004060562700033188,
- -0.028603224083781242,
- 0.017983024939894676,
- 0.0662815123796463,
- -0.010600389912724495,
- 0.00017836298502516001,
- 0.0010404913919046521,
- 0.017897864803671837,
- -0.03960306569933891,
- 0.008195719681680202,
- 0.0022280362900346518,
- -0.04289349168539047,
- -0.009641881100833416,
- 0.04751186817884445,
- 0.022669145837426186,
- -0.052002955228090286,
- -0.05762769654393196,
- 0.02170778252184391,
- -0.06759343296289444,
- -0.08720821887254715,
- -0.006906153634190559,
- 0.05028950423002243,
- -0.027246564626693726,
- -0.03059159219264984,
- -0.09098175168037415,
- 0.05138441547751427,
- 0.0002849377051461488,
- 0.08547571301460266,
- -0.0015655690804123878,
- -0.09704586118459702,
- 0.035340938717126846,
- -0.08233526349067688,
- -0.054747071117162704,
- 0.007597748655825853,
- 0.014003795571625233,
- -0.0064767710864543915,
- 0.03960559144616127,
- 0.015387373976409435,
- 0.04158457741141319,
- 0.017828291282057762,
- 0.014031694270670414,
- -0.02005195803940296,
- 0.018598895519971848,
- 0.06297917664051056,
- 0.036094896495342255,
- 0.02389770932495594,
- 0.0016929790144786239
- ]
- },
- {
- "keyword": "related to",
- "type": "relatedTo",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.07891866564750671,
- 0.03001488745212555,
- -0.07474097609519958,
- 0.0348336324095726,
- 0.0021181402262300253,
- 0.011602162383496761,
- 0.1127299815416336,
- 0.03689531609416008,
- -0.020846780389547348,
- -0.03825799375772476,
- 0.05474414676427841,
- 0.014581291936337948,
- 0.0577390119433403,
- 0.019000932574272156,
- -0.03280108422040939,
- -0.05873532220721245,
- 0.01317882351577282,
- 0.006045452319085598,
- -0.1516379863023758,
- -0.05395348742604256,
- -0.11160802096128464,
- -0.012889860197901726,
- 0.04823371022939682,
- 0.028591405600309372,
- -0.08983751386404037,
- 0.04194425046443939,
- -0.04309016466140747,
- -0.02535107731819153,
- 0.06498623639345169,
- -0.022357778623700142,
- -0.010978271253407001,
- 0.05133308842778206,
- -0.014461216516792774,
- -0.02450050227344036,
- -0.027893494814634323,
- 0.013473603874444962,
- 0.02854856848716736,
- 0.03604988008737564,
- 0.03575124964118004,
- -0.036347001791000366,
- -0.07032280415296555,
- 0.01838873326778412,
- 0.03477025404572487,
- -0.04312147945165634,
- 0.018340978771448135,
- 0.04987078905105591,
- -0.04795610532164574,
- -0.04123269021511078,
- 0.030433008447289467,
- 0.09435977786779404,
- -0.08842097967863083,
- -0.035283125936985016,
- -0.004551783204078674,
- -0.05307186022400856,
- 0.028912950307130814,
- 0.06987642496824265,
- -0.05439887195825577,
- 0.013302664272487164,
- -0.016912031918764114,
- 0.04335493594408035,
- 0.12504328787326813,
- -0.02834485098719597,
- -0.08385408669710159,
- 0.0007016087183728814,
- -0.01838102377951145,
- -0.0271068774163723,
- 0.022903479635715485,
- 0.07749095559120178,
- -0.05542655661702156,
- -0.08570532500743866,
- 0.03695636987686157,
- 0.004016219638288021,
- -0.0364924818277359,
- 0.09858614951372147,
- -0.011213025078177452,
- 0.0808129608631134,
- 0.030344100669026375,
- 0.03169254586100578,
- -0.026498885825276375,
- -0.09029927104711533,
- 0.020257065072655678,
- 0.08161847293376923,
- -0.06157178059220314,
- -0.04819587618112564,
- -0.07472806423902512,
- -0.03430173546075821,
- 0.02572406455874443,
- -0.07231290638446808,
- 0.051784805953502655,
- 0.02771916799247265,
- -0.013135773129761219,
- 0.009235633537173271,
- 0.021231049671769142,
- 0.027767593041062355,
- -0.04070977121591568,
- 0.019477013498544693,
- 0.06388591974973679,
- -0.05691738426685333,
- -0.06244196742773056,
- 0.16656461358070374,
- 0.016952797770500183,
- 0.05620403587818146,
- -0.05829208344221115,
- 0.01048216875642538,
- -0.021475952118635178,
- -0.01500224880874157,
- -0.011191687546670437,
- 0.011457030661404133,
- 0.056406170129776,
- -0.02983931452035904,
- -0.07110662013292313,
- 0.03660467639565468,
- -0.053098056465387344,
- 0.03447946533560753,
- 0.02027387171983719,
- -0.024220680817961693,
- 0.05494074895977974,
- 0.03083224967122078,
- 0.026176128536462784,
- -0.07564260065555573,
- 0.022196536883711815,
- 0.05288222059607506,
- -0.10295020788908005,
- 0.01229896955192089,
- -0.008096406236290932,
- -0.11623483151197433,
- -0.0834650844335556,
- -6.029885984297071e-33,
- 0.023573942482471466,
- -0.01614082045853138,
- 0.0595916286110878,
- -0.018417924642562866,
- 0.03326879069209099,
- -0.04481155797839165,
- -0.05347194895148277,
- 0.08127665519714355,
- -0.09251975268125534,
- 0.0017296279547736049,
- -0.09261689335107803,
- 0.023206142708659172,
- -0.06733309477567673,
- -0.08598489314317703,
- 0.06363118439912796,
- -0.0005919061950407922,
- -0.024762840941548347,
- 0.08721587806940079,
- -0.07792162895202637,
- -0.04594309628009796,
- -0.07649160176515579,
- 0.08252928406000137,
- -0.03903313726186752,
- 0.06209826096892357,
- -0.012126843445003033,
- -0.025233449414372444,
- 0.030076054856181145,
- -0.040280625224113464,
- 0.03837595134973526,
- 0.03577464446425438,
- 0.035747937858104706,
- 0.07254911214113235,
- -0.012528176419436932,
- -0.05717882513999939,
- 0.002298724604770541,
- 0.018797874450683594,
- 0.010530294850468636,
- -0.09198887646198273,
- -0.006889118812978268,
- 0.04590911045670509,
- 0.008009507320821285,
- 0.004985010251402855,
- -0.018709493800997734,
- -0.03135668486356735,
- 0.01982809044420719,
- 0.04133758321404457,
- 0.02659652568399906,
- -0.04196779802441597,
- 0.09819478541612625,
- -0.03618048503994942,
- -0.05080704763531685,
- -0.03617991507053375,
- -0.03772754222154617,
- -0.016839269548654556,
- 0.01692172884941101,
- -0.04947976768016815,
- -0.0036218578461557627,
- 0.03456377610564232,
- 0.07573875039815903,
- 0.05952552333474159,
- 0.06392427533864975,
- 0.057005926966667175,
- -0.027767309918999672,
- 0.028018834069371223,
- -0.05539039149880409,
- 0.019404098391532898,
- 0.01904294453561306,
- 0.00025307812029495835,
- 0.04506419599056244,
- 0.008715135045349598,
- -0.06567469239234924,
- 0.024749336764216423,
- 0.05014955997467041,
- 0.02859647013247013,
- -0.0329003781080246,
- 0.026574376970529556,
- -0.0008599834400229156,
- 0.009332725778222084,
- -0.07141011208295822,
- 0.10315396636724472,
- -0.07562919706106186,
- 0.010720880702137947,
- 0.008372214622795582,
- 0.0030471431091427803,
- -0.019576216116547585,
- 0.007028911728411913,
- 0.015674231573939323,
- -0.049267347902059555,
- 0.01300504058599472,
- -0.023405689746141434,
- -0.03541913628578186,
- 0.00814572162926197,
- -0.0296012032777071,
- 0.03754403814673424,
- -0.02019638568162918,
- 3.0745063929306546e-33,
- -0.055306363850831985,
- -0.01853846199810505,
- -0.046256475150585175,
- -0.0004360905440989882,
- 0.04268195480108261,
- -0.008604470640420914,
- 0.08621196448802948,
- 0.004840584006160498,
- -0.018934275954961777,
- 0.007844875566661358,
- -0.051450882107019424,
- -0.04009704664349556,
- 0.014526499435305595,
- 0.06258165091276169,
- 0.05942044034600258,
- -0.010565487667918205,
- 0.05441111698746681,
- 0.027462193742394447,
- -0.07512780278921127,
- 0.021870503202080727,
- -0.033750634640455246,
- -0.0102426428347826,
- -0.02885621413588524,
- -0.03908253461122513,
- -0.054330285638570786,
- 0.06474564969539642,
- 0.07592388987541199,
- 0.0679861530661583,
- -0.11067035049200058,
- -0.022122902795672417,
- 0.0009991457918658853,
- -0.010225184261798859,
- -0.07040195167064667,
- -0.04429325833916664,
- -0.0069630928337574005,
- 0.14571566879749298,
- 0.015610489062964916,
- 0.014690734446048737,
- -0.05909598246216774,
- -0.05593205615878105,
- 0.09813013672828674,
- 0.02772454358637333,
- -0.023030973970890045,
- 0.14678329229354858,
- -0.011316384188830853,
- -0.015499372966587543,
- 0.00025213611661456525,
- 0.03456592187285423,
- 0.09085206687450409,
- 0.007738908287137747,
- -0.006381911691278219,
- 0.004154891241341829,
- 0.045742467045784,
- -0.025915613397955894,
- 0.022449713200330734,
- 0.002705599181354046,
- 0.04000244662165642,
- 0.033073216676712036,
- -0.04194832965731621,
- -0.037260040640830994,
- 0.009140186943113804,
- 0.04899150878190994,
- -0.021609622985124588,
- 0.0305329579859972,
- 0.0009037535055540502,
- 0.056536950170993805,
- -0.07354004681110382,
- -0.05207054689526558,
- 0.08281619846820831,
- -0.03377015143632889,
- -0.023110942915081978,
- -0.025987012311816216,
- -0.011448819190263748,
- 0.0407845713198185,
- -0.06185290589928627,
- -0.047783005982637405,
- -0.07326114177703857,
- -0.036269549280405045,
- -0.0072746891528368,
- -0.0428895428776741,
- -0.06260790675878525,
- 0.001951913582161069,
- -0.08371911197900772,
- 0.0540894977748394,
- -0.04029488563537598,
- -0.013812561519443989,
- 0.052115168422460556,
- 0.016687091439962387,
- 0.004961957689374685,
- -0.005144084803760052,
- -0.035932522267103195,
- -0.0026354442816227674,
- -0.060661353170871735,
- -0.01854705438017845,
- 0.0013368884101510048,
- -1.3667817100326829e-8,
- 0.028512198477983475,
- -0.06785819679498672,
- -0.0019378659781068563,
- -0.028592148795723915,
- 0.06559380143880844,
- 0.049001965671777725,
- 0.055463798344135284,
- 0.044900767505168915,
- -0.06226351112127304,
- 0.10248742252588272,
- 0.05355709046125412,
- -0.020564280450344086,
- 0.0037025106139481068,
- 0.06042228266596794,
- 0.069583460688591,
- -0.03349855914711952,
- -0.01564933732151985,
- -0.015571056865155697,
- -0.021657707169651985,
- 0.07901743799448013,
- -0.02927829883992672,
- 0.027134494855999947,
- 0.07777205854654312,
- 0.03911469876766205,
- 0.014033474959433079,
- -0.008626498281955719,
- 0.11480512470006943,
- 0.05544568598270416,
- 0.07213199138641357,
- -0.0567382350564003,
- -0.020595047622919083,
- -0.03454006463289261,
- -0.052415717393159866,
- -0.12761738896369934,
- -0.0024841809645295143,
- -0.018706433475017548,
- 0.009990622289478779,
- -0.05224435776472092,
- 0.02525978907942772,
- 0.018835337832570076,
- 0.005037486553192139,
- -0.05596965551376343,
- 0.07350633293390274,
- 0.05474806949496269,
- 0.06911680847406387,
- 0.041498079895973206,
- 0.0573640875518322,
- -0.006724420469254255,
- -0.008892172016203403,
- -0.08455337584018707,
- -0.11801543831825256,
- 0.04116017743945122,
- -0.05292888730764389,
- 0.057845186442136765,
- -0.04328498616814613,
- 0.014807370491325855,
- -0.0637035071849823,
- -0.007064205128699541,
- -0.013334309682250023,
- 0.029268702492117882,
- 0.12099651992321014,
- 0.0315353125333786,
- 0.14281675219535828,
- 0.015719201415777206
- ]
- },
- {
- "keyword": "related",
- "type": "relatedTo",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06483972072601318,
- 0.03960647061467171,
- -0.047705188393592834,
- -0.010010822676122189,
- -0.021761015057563782,
- 0.0042659807950258255,
- 0.09443847090005875,
- 0.04725995287299156,
- -0.027805395424365997,
- -0.06702592968940735,
- 0.046614084392786026,
- 0.014674867503345013,
- 0.048720505088567734,
- 0.03478512540459633,
- -0.07255133986473083,
- -0.04007366672158241,
- -0.017675602808594704,
- -0.008265843614935875,
- -0.1345462203025818,
- -0.049817368388175964,
- -0.0759013369679451,
- -0.037204936146736145,
- 0.037078119814395905,
- 0.0009388411999680102,
- -0.06660811603069305,
- 0.04654468968510628,
- -0.02924494445323944,
- -0.02621779404580593,
- 0.07672321051359177,
- -0.038433559238910675,
- -0.02916126698255539,
- 0.050616733729839325,
- -0.002981493016704917,
- -0.031029418110847473,
- -0.03659200295805931,
- 0.006223819684237242,
- -0.012152171693742275,
- 0.05038490891456604,
- 0.052543338388204575,
- -0.04319809377193451,
- -0.05202598124742508,
- 0.00971243903040886,
- 0.047579821199178696,
- -0.017334308475255966,
- 0.0372273251414299,
- 0.07272262871265411,
- -0.04403751343488693,
- 0.01102276798337698,
- 0.014704410918056965,
- 0.09626898914575577,
- -0.07352864742279053,
- -0.005339193157851696,
- -0.028715431690216064,
- -0.03534999117255211,
- 0.051226045936346054,
- 0.05454687029123306,
- -0.06551531702280045,
- 0.009981020353734493,
- -0.03475157916545868,
- 0.05539552494883537,
- 0.0904218927025795,
- -0.014906062744557858,
- -0.08204895257949829,
- -0.012554011307656765,
- -0.07393039762973785,
- -0.008208032697439194,
- 0.02356402948498726,
- 0.0032527486328035593,
- -0.03771389648318291,
- -0.05679237097501755,
- 0.038083091378211975,
- 0.03895648196339607,
- -0.05023609474301338,
- 0.09324361383914948,
- -0.044370442628860474,
- 0.08683189749717712,
- 0.0025634407065808773,
- 0.013776274397969246,
- -0.028979258611798286,
- -0.06801321357488632,
- -0.02164122834801674,
- 0.12012698501348495,
- -0.05772025138139725,
- -0.029301030561327934,
- -0.058342065662145615,
- -0.04908457770943642,
- 0.026837226003408432,
- -0.046102553606033325,
- 0.032963234931230545,
- 0.041205015033483505,
- -0.039236102253198624,
- 0.015880633145570755,
- 0.03432566300034523,
- 0.012746155261993408,
- -0.04305519908666611,
- 0.008287688717246056,
- 0.060124609619379044,
- -0.05618130788207054,
- -0.10050579905509949,
- 0.25095027685165405,
- 0.009264488704502583,
- 0.06076221168041229,
- -0.0649620071053505,
- 0.007739685941487551,
- -0.04743240401148796,
- -0.026917167007923126,
- -0.024660995230078697,
- 0.031957052648067474,
- 0.03614664822816849,
- -0.02059170790016651,
- -0.1109176054596901,
- 0.04124276712536812,
- -0.06304731220006943,
- 0.040818147361278534,
- 0.002843716414645314,
- 0.02341720461845398,
- 0.06753213703632355,
- 0.027068106457591057,
- 0.030940856784582138,
- -0.06822074949741364,
- 0.016723928973078728,
- 0.05287797749042511,
- -0.0914384126663208,
- 0.01806383579969406,
- 0.003803880652412772,
- -0.1187395378947258,
- -0.09207383543252945,
- -4.4442451240835786e-33,
- 0.022191129624843597,
- -0.01781236007809639,
- 0.03976159915328026,
- -0.024909913539886475,
- 0.06594093143939972,
- -0.021070687100291252,
- -0.04156412184238434,
- 0.08179005980491638,
- -0.08234342187643051,
- -0.010812725871801376,
- -0.07185515016317368,
- 0.06477756053209305,
- -0.054552800953388214,
- -0.06315043568611145,
- 0.07419703155755997,
- -0.0011744705261662602,
- 0.016564395278692245,
- 0.09805572032928467,
- -0.05562422797083855,
- -0.03805305063724518,
- -0.0713508129119873,
- 0.07285211980342865,
- -0.013472328893840313,
- 0.059341344982385635,
- -0.04569529742002487,
- 0.00020833859161939472,
- 0.0509873628616333,
- -0.007708884309977293,
- 0.02665492706000805,
- 0.010101868771016598,
- 0.043662264943122864,
- 0.0634901374578476,
- -0.04253385215997696,
- -0.06920424103736877,
- -0.003025634214282036,
- -0.012255517765879631,
- 0.033720482140779495,
- -0.13944773375988007,
- 0.0005782250664196908,
- 0.03430590778589249,
- 0.019340405240654945,
- 0.025783391669392586,
- -0.062086667865514755,
- -0.03494987636804581,
- 0.013051284477114677,
- 0.01742224581539631,
- 0.05704721435904503,
- -0.046710703521966934,
- 0.03374812752008438,
- 0.0009979505557566881,
- -0.06791456043720245,
- -0.06383273750543594,
- -0.0173356793820858,
- -0.02204110287129879,
- -0.017093447968363762,
- -0.04402073845267296,
- 0.027962593361735344,
- 0.004220050293952227,
- 0.05584793537855148,
- 0.05449944734573364,
- 0.10038363188505173,
- 0.062035106122493744,
- -0.0235894825309515,
- 0.0021449325140565634,
- -0.028737610206007957,
- 0.022580360993742943,
- 0.05098610743880272,
- -0.004279813729226589,
- 0.06261450052261353,
- -0.015207217074930668,
- -0.05101342871785164,
- 0.0540001317858696,
- 0.042027611285448074,
- -0.016676612198352814,
- -0.008575495332479477,
- 0.030600516125559807,
- -0.006630719639360905,
- 0.0119239566847682,
- -0.012981374748051167,
- 0.06683486700057983,
- -0.06146000698208809,
- 0.010004743933677673,
- 0.05607886612415314,
- 0.008586741052567959,
- -0.0591750293970108,
- 0.027822304517030716,
- 0.015760594978928566,
- -0.02397926338016987,
- 0.01880238763988018,
- -0.019858263432979584,
- -0.007910685613751411,
- 0.001400890527293086,
- 0.01887952722609043,
- 0.04058194160461426,
- 0.0010514701716601849,
- 2.7724820375990763e-33,
- -0.02245812676846981,
- -0.03420399874448776,
- -0.028983352705836296,
- 0.003412491176277399,
- 0.061705272644758224,
- -0.008212356828153133,
- 0.08704697340726852,
- -0.01117127388715744,
- 0.009337788447737694,
- 0.014830121770501137,
- -0.027605189010500908,
- -0.028450211510062218,
- 0.019364669919013977,
- 0.03808218613266945,
- 0.06192389875650406,
- -0.006357049103826284,
- 0.03951907157897949,
- 0.0485338531434536,
- -0.02935936115682125,
- 0.022305047139525414,
- -0.026337970048189163,
- 0.0009327858570031822,
- -0.03956752270460129,
- -0.019976099953055382,
- -0.033888235688209534,
- 0.06027771160006523,
- 0.09167122840881348,
- 0.07152494043111801,
- -0.06314576417207718,
- 0.004459991119801998,
- -0.021183758974075317,
- -0.010201998986303806,
- -0.05111062526702881,
- -0.07196546345949173,
- 0.021506594493985176,
- 0.13994164764881134,
- -0.005667780991643667,
- 0.008741605095565319,
- -0.037851668894290924,
- -0.11492705345153809,
- 0.12344864755868912,
- 0.052906300872564316,
- -0.01202278770506382,
- 0.12859387695789337,
- -0.015572398900985718,
- -0.03784633427858353,
- 0.017521057277917862,
- 0.031153250485658646,
- 0.0924757868051529,
- 0.014883901923894882,
- -0.047436635941267014,
- -0.0032550697214901447,
- 0.03613206371665001,
- -0.011989007703959942,
- 0.031054310500621796,
- 0.003924696706235409,
- 0.04519152268767357,
- 0.013692821376025677,
- -0.04710877314209938,
- -0.010887795127928257,
- 0.022629300132393837,
- 0.06544406712055206,
- -0.04779052734375,
- 0.049761101603507996,
- -0.020385362207889557,
- 0.014377397485077381,
- -0.052666764706373215,
- -0.07317763566970825,
- 0.08971107006072998,
- -0.06651541590690613,
- -0.031379714608192444,
- -0.014030756428837776,
- -0.03349192813038826,
- 0.03326922282576561,
- -0.026334788650274277,
- -0.04327757656574249,
- -0.07717317342758179,
- 0.0012393760262057185,
- -0.003148646792396903,
- 0.011267407797276974,
- -0.06737727671861649,
- 0.027809154242277145,
- -0.07294024527072906,
- 0.03612614423036575,
- -0.049201276153326035,
- -0.040726449340581894,
- 0.050235338509082794,
- 0.012276630848646164,
- -0.004006320610642433,
- -0.03925514966249466,
- -0.05327412486076355,
- -0.014915180392563343,
- -0.01898724026978016,
- 0.006976588163524866,
- 0.008392722345888615,
- -1.3268903309437974e-8,
- 0.028132515028119087,
- -0.07051725685596466,
- -0.004840378183871508,
- -0.010412299074232578,
- 0.06749014556407928,
- 0.07130643725395203,
- 0.01410063449293375,
- 0.02274703048169613,
- -0.07947474718093872,
- 0.09151846915483475,
- 0.05004551634192467,
- -0.001594330882653594,
- 0.004909913055598736,
- 0.024339979514479637,
- 0.04695143923163414,
- -0.040910713374614716,
- -0.02129274047911167,
- 0.0009969096863642335,
- -0.020876701921224594,
- 0.07335340231657028,
- -0.014007947407662868,
- 0.0176387969404459,
- 0.08430598676204681,
- 0.06542397290468216,
- -0.023642385378479958,
- 0.00357048399746418,
- 0.09474360942840576,
- 0.08091624826192856,
- 0.06454569846391678,
- -0.03944303095340729,
- -0.043430306017398834,
- -0.05077512934803963,
- -0.07598952203989029,
- -0.1354646235704422,
- -0.002383619314059615,
- 0.007771094795316458,
- 0.0007509482093155384,
- -0.028279852122068405,
- 0.032559964805841446,
- 0.03298700973391533,
- -0.03444298356771469,
- -0.07406442612409592,
- 0.06223398447036743,
- 0.026581473648548126,
- 0.06497938930988312,
- 0.003040906973183155,
- 0.06364728510379791,
- -0.0365193672478199,
- -0.01890237256884575,
- -0.06738609820604324,
- -0.115496926009655,
- 0.0038760339375585318,
- -0.027519848197698593,
- 0.04945431649684906,
- -0.018301280215382576,
- 0.003772526513785124,
- -0.051311787217855453,
- -0.004094574134796858,
- 0.02528763934969902,
- 0.06836654245853424,
- 0.13090932369232178,
- 0.03696875646710396,
- 0.12354491651058197,
- 0.019862782210111618
- ]
- },
- {
- "keyword": "connected to",
- "type": "relatedTo",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.004468639846891165,
- -0.04367031902074814,
- -0.08189515769481659,
- 0.09587714821100235,
- -0.01138892862945795,
- 0.051260679960250854,
- 0.10136841982603073,
- -0.040745437145233154,
- 0.10495921969413757,
- 0.021486351266503334,
- 0.01979379914700985,
- -0.04524925723671913,
- 0.0301334448158741,
- 0.035774171352386475,
- -0.03233453631401062,
- -0.004662996623665094,
- -0.044445063918828964,
- 0.0026884351391345263,
- -0.09533467143774033,
- -0.01596684381365776,
- -0.09274158626794815,
- -0.019898828119039536,
- -0.051100391894578934,
- -0.0032633019145578146,
- -0.0023459268268197775,
- 0.007039420772343874,
- -0.007399535737931728,
- 0.00805239100009203,
- -0.017967145889997482,
- -0.03292595222592354,
- -0.010640657506883144,
- -0.019125796854496002,
- -0.06925103813409805,
- -0.0348287969827652,
- 0.03473599627614021,
- -0.004677372518926859,
- 0.09109754860401154,
- -0.008482982404530048,
- 0.006451090797781944,
- -0.04369380325078964,
- -0.018137279897928238,
- -0.13074567914009094,
- 0.02331111766397953,
- -0.00821609515696764,
- 0.004966541193425655,
- 0.054864414036273956,
- -0.003425315720960498,
- -0.03868349269032478,
- 0.013841703534126282,
- 0.046177033334970474,
- -0.04430731013417244,
- -0.004469756502658129,
- -0.013835296034812927,
- 0.02107004076242447,
- 0.01182625163346529,
- 0.11551149189472198,
- -0.00995247159153223,
- 0.0038797780871391296,
- -0.019814392551779747,
- -0.0034536467865109444,
- 0.09732697904109955,
- -0.004183762241154909,
- -0.03397487476468086,
- 0.01867637038230896,
- 0.05080544576048851,
- -0.032226502895355225,
- 0.0413646437227726,
- 0.0933414101600647,
- -0.06108503043651581,
- -0.04014579579234123,
- 0.058160193264484406,
- 0.05931639298796654,
- 0.016363754868507385,
- 0.022822506725788116,
- 0.0503728911280632,
- 0.0114000104367733,
- 0.06859111040830612,
- -0.05514029413461685,
- 0.083034947514534,
- -0.11224036663770676,
- 0.04816178232431412,
- 0.10213276743888855,
- -0.03088647872209549,
- -0.004685133695602417,
- -0.022011971101164818,
- 0.007980543188750744,
- 0.010431827045977116,
- -0.037347737699747086,
- -0.0501764751970768,
- 0.014120308682322502,
- -0.04073438420891762,
- 0.051216717809438705,
- 0.034145671874284744,
- -0.002033617813140154,
- -0.06445418298244476,
- 0.008576419204473495,
- 0.046400345861911774,
- -0.02110658772289753,
- -0.05194830149412155,
- 0.18094120919704437,
- 0.0036423346027731895,
- 0.07784643024206161,
- -0.03822033479809761,
- -0.046943265944719315,
- 0.009352789260447025,
- 0.021421577781438828,
- 0.008470859378576279,
- 0.045959919691085815,
- 0.06877358257770538,
- -0.06341330707073212,
- -0.01896669529378414,
- -0.01735066808760166,
- -0.0073048691265285015,
- 0.05066083371639252,
- 0.01567690260708332,
- -0.0461723729968071,
- -0.037185925990343094,
- 0.002813252154737711,
- 0.06283705681562424,
- 0.011015132069587708,
- 0.00393740925937891,
- 0.013443407602608204,
- -0.030685069039463997,
- -0.020620787516236305,
- -0.02320692129433155,
- -0.0789724588394165,
- -0.038345009088516235,
- -4.410717821146219e-33,
- 0.06974562257528305,
- -0.009656653739511967,
- 0.043201252818107605,
- -0.04999824985861778,
- -0.00846097245812416,
- -0.003756357356905937,
- -0.01676712930202484,
- 0.04439712315797806,
- -0.12164697051048279,
- -0.022267106920480728,
- -0.09621062129735947,
- 0.04579365253448486,
- -0.01157104317098856,
- 0.024385688826441765,
- 0.07988055050373077,
- -0.01886674202978611,
- 0.0873546376824379,
- 0.0029134079813957214,
- -0.07031209021806717,
- -0.05892555043101311,
- -0.11053512245416641,
- 0.023326002061367035,
- -0.015397404320538044,
- 0.045806992799043655,
- 0.04124818742275238,
- -0.015642384067177773,
- -0.005675339139997959,
- -0.03787767142057419,
- 0.06131618842482567,
- 0.03178535774350166,
- -0.021276215091347694,
- 0.04819836840033531,
- 0.011642619036138058,
- -0.0017028660513460636,
- 0.006811589002609253,
- -0.034719549119472504,
- -0.0042276461608707905,
- -0.025464341044425964,
- -0.04994365945458412,
- -0.013942517340183258,
- 0.0524756982922554,
- -0.055524859577417374,
- -0.015970569103956223,
- 0.020332111045718193,
- 0.00491617526859045,
- 0.07622796297073364,
- 0.06866088509559631,
- 0.02449345774948597,
- -0.003299178322777152,
- 0.04566962644457817,
- -0.04216109961271286,
- -0.05222644284367561,
- -0.06586191058158875,
- -0.0023619348648935556,
- -0.02939002774655819,
- -0.04709663242101669,
- -0.037496160715818405,
- 0.0446556955575943,
- 0.0049104876816272736,
- -0.031661394983530045,
- 0.05266669765114784,
- 0.025623369961977005,
- -0.03750332444906235,
- 0.0141282444819808,
- 0.020226869732141495,
- 0.07700169086456299,
- 0.020012931898236275,
- -0.016482945531606674,
- 0.0438430979847908,
- -0.021674638614058495,
- -0.12011857330799103,
- 0.027415616437792778,
- 0.009043949656188488,
- 0.07996358722448349,
- -0.041084807366132736,
- -0.052560873329639435,
- -0.07148715853691101,
- -0.0029147237073630095,
- -0.06752844154834747,
- 0.09587191045284271,
- -0.023081088438630104,
- -0.06831295043230057,
- -0.04701628535985947,
- 0.04413484036922455,
- 0.015570996329188347,
- -0.017036452889442444,
- -0.06010308861732483,
- -0.13469897210597992,
- 0.025725753977894783,
- 0.03823401406407356,
- -0.032129134982824326,
- 0.038634292781353,
- 0.07276864349842072,
- 0.03949284553527832,
- -0.03195887431502342,
- 3.091731609603024e-33,
- -0.05308828130364418,
- 0.018302174285054207,
- 0.019515791907906532,
- 0.04755048453807831,
- 0.05468042567372322,
- -0.03875894472002983,
- 0.05482044443488121,
- -0.11584442108869553,
- -0.02419876679778099,
- 0.0556371696293354,
- 0.05753433331847191,
- -0.02984435483813286,
- 0.035517748445272446,
- -0.010742278769612312,
- 0.07997994869947433,
- 0.0019293338991701603,
- 0.08066131919622421,
- -0.0037361306603997946,
- -0.07341857999563217,
- 0.009111320599913597,
- -0.0214544627815485,
- -0.05591192469000816,
- 0.052963074296712875,
- -0.07970742136240005,
- -0.044487033039331436,
- 0.057634733617305756,
- 0.11309599876403809,
- 0.009715424850583076,
- -0.05939200520515442,
- 0.037115201354026794,
- 0.07978244870901108,
- 0.025549842044711113,
- -0.09718522429466248,
- -0.007282292935997248,
- -0.05532808601856232,
- 0.142118901014328,
- 0.07532758265733719,
- -0.025310074910521507,
- -0.05997388809919357,
- -0.10042762011289597,
- 0.04014625772833824,
- 0.009471445344388485,
- -0.03732302039861679,
- 0.18577100336551666,
- 0.023123662918806076,
- 0.009133503772318363,
- -0.03727758675813675,
- -0.000326373556163162,
- -0.04937014356255531,
- 0.057583291083574295,
- -0.04812438786029816,
- -0.011625977233052254,
- 0.038092490285634995,
- -0.05638911575078964,
- 0.011360382661223412,
- 0.011760162189602852,
- -0.006370007526129484,
- -0.01670949161052704,
- 0.030098263174295425,
- -0.04562835022807121,
- -0.014492586255073547,
- -0.011836085468530655,
- -0.018010269850492477,
- 0.02358134835958481,
- -0.00800621323287487,
- -0.00021817332890350372,
- -0.009000285528600216,
- 0.0607667975127697,
- 0.024180864915251732,
- 0.04396562650799751,
- -0.08188382536172867,
- 0.022464096546173096,
- 0.04734016954898834,
- 0.018335262313485146,
- -0.03231118991971016,
- -0.057247504591941833,
- -0.09562017768621445,
- -0.055794406682252884,
- -0.015782134607434273,
- -0.045493341982364655,
- -0.05875829979777336,
- 0.02602294087409973,
- 0.023278409615159035,
- -0.02220562845468521,
- 0.06677081435918808,
- -0.03455694764852524,
- 0.08582132309675217,
- 0.05164465308189392,
- 0.008216764777898788,
- -0.038042642176151276,
- -0.017159080132842064,
- 0.04807211831212044,
- -0.023472445085644722,
- -0.06614124774932861,
- -0.06347079575061798,
- -1.2572042962233354e-8,
- 0.04883354529738426,
- 0.046389807015657425,
- -0.014013717882335186,
- -0.013966230675578117,
- 0.06808199733495712,
- 0.007961667142808437,
- 0.015633488073945045,
- 0.07371307164430618,
- -0.00006770555046387017,
- 0.15394382178783417,
- 0.008817610330879688,
- 0.009306353516876698,
- -0.05414249747991562,
- 0.12328337877988815,
- 0.11644218116998672,
- -0.03151912987232208,
- -0.05039263516664505,
- -0.06839191168546677,
- -0.06865449994802475,
- 0.027838783338665962,
- 0.013191928155720234,
- -0.014680509455502033,
- -0.01687505841255188,
- 0.049588657915592194,
- 0.02974116988480091,
- -0.0657280832529068,
- 0.031617600470781326,
- 0.09787363559007645,
- -0.004348192363977432,
- -0.011583133600652218,
- 0.03802879527211189,
- -0.0011522111017256975,
- -0.0541534461081028,
- -0.003975179512053728,
- -0.057160619646310806,
- -0.048434700816869736,
- -0.04560051113367081,
- 0.011188758537173271,
- -0.059530727565288544,
- -0.06839989125728607,
- 0.05620693415403366,
- -0.007471166551113129,
- 0.03660023584961891,
- 0.029814744368195534,
- -0.019502434879541397,
- 0.03306356444954872,
- 0.12416575103998184,
- -0.02591991424560547,
- -0.03280608728528023,
- -0.011718619614839554,
- -0.05826174095273018,
- -0.03610827028751373,
- 0.021916786208748817,
- -0.007711730431765318,
- -0.031072763726115227,
- -0.005992202553898096,
- -0.022936027497053146,
- 0.04039360210299492,
- -0.09798423945903778,
- 0.06772767007350922,
- 0.046959757804870605,
- 0.040458399802446365,
- 0.07283496856689453,
- -0.03684520348906517
- ]
- },
- {
- "keyword": "associated with",
- "type": "relatedTo",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.02975158765912056,
- -0.005325197707861662,
- -0.0485323891043663,
- 0.021544286981225014,
- 0.031810272485017776,
- 0.037196844816207886,
- 0.18484283983707428,
- -0.016712622717022896,
- -0.007073139771819115,
- -0.05923621356487274,
- 0.09343920648097992,
- -0.03406025096774101,
- 0.06257885694503784,
- 0.015920424833893776,
- -0.060843903571367264,
- 0.045429714024066925,
- -0.011052566580474377,
- 0.0004699022974818945,
- -0.12390227615833282,
- -0.06651704013347626,
- -0.21536885201931,
- 0.002731838496401906,
- 0.08140358328819275,
- 0.03098658099770546,
- -0.033048100769519806,
- 0.048992257565259933,
- -0.0026242746971547604,
- 0.0030605478677898645,
- -0.027760101482272148,
- -0.015372689813375473,
- -0.004474703688174486,
- 0.025195397436618805,
- 0.04348743334412575,
- -0.023574018850922585,
- -0.006978242192417383,
- 0.05637160688638687,
- 0.029265139251947403,
- 0.017085595056414604,
- 0.012382143177092075,
- -0.030018674209713936,
- -0.04636310786008835,
- -0.02052605338394642,
- 0.07486981898546219,
- 0.01456349715590477,
- 0.01893671415746212,
- 0.02740652672946453,
- 0.003601292846724391,
- 0.019282376393675804,
- -0.06961837410926819,
- 0.04684748500585556,
- -0.004809482488781214,
- -0.051428280770778656,
- -0.0019200134556740522,
- -0.01996770314872265,
- 0.011631044559180737,
- 0.08905930817127228,
- -0.036133937537670135,
- -0.04177698865532875,
- -0.023678595200181007,
- 0.006146232131868601,
- 0.08156336098909378,
- -0.00481173861771822,
- -0.044272854924201965,
- 0.0718861073255539,
- -0.029473112896084785,
- -0.07432953268289566,
- 0.01659098081290722,
- 0.08809296786785126,
- -0.05466349050402641,
- -0.07557950913906097,
- 0.0556473545730114,
- -0.012361600063741207,
- -0.05337755009531975,
- 0.08679737150669098,
- 0.014287459664046764,
- 0.04627620056271553,
- 0.045562054961919785,
- 0.0015499484725296497,
- 0.05025911331176758,
- -0.10987724363803864,
- 0.0604548305273056,
- 0.05052882805466652,
- -0.00963593553751707,
- -0.020278489217162132,
- 0.012518233619630337,
- 0.0142150167375803,
- 0.015320343896746635,
- -0.0369388572871685,
- -0.02138121984899044,
- 0.037957023829221725,
- -0.021171193569898605,
- -0.01948413997888565,
- 0.06281905621290207,
- -0.007866736501455307,
- 0.03625207394361496,
- 0.006042906083166599,
- 0.06143053248524666,
- -0.05832706391811371,
- -0.05283584073185921,
- 0.2234276384115219,
- -0.041078947484493256,
- 0.056164342910051346,
- -0.07085439562797546,
- 0.05119682848453522,
- -0.03520892933011055,
- -0.05115425959229469,
- -0.05135124549269676,
- -0.007330757100135088,
- -0.004722234793007374,
- -0.004627071786671877,
- -0.03566346690058708,
- 0.000051681050535989925,
- -0.0792122408747673,
- 0.01602119579911232,
- -0.03129464387893677,
- -0.022768186405301094,
- 0.04610205814242363,
- 0.04000607132911682,
- 0.10080929100513458,
- -0.08624902367591858,
- -0.006419219076633453,
- 0.05185068026185036,
- -0.08157318085432053,
- 0.026106389239430428,
- -0.009121181443333626,
- -0.052865169942379,
- -0.06413162499666214,
- -5.408716933098157e-33,
- 0.01951148733496666,
- 0.03677210584282875,
- -0.0025811009109020233,
- -0.002497336594387889,
- -0.0008607259369455278,
- -0.011315424926578999,
- -0.08137808740139008,
- 0.01656498573720455,
- -0.05336737260222435,
- -0.032718904316425323,
- -0.03868577256798744,
- 0.10676807165145874,
- -0.046128690242767334,
- -0.028975462540984154,
- 0.034352295100688934,
- 0.04433618485927582,
- 0.020797060802578926,
- 0.0955883264541626,
- -0.02736511081457138,
- -0.01843857765197754,
- -0.08706597238779068,
- 0.18540866672992706,
- -0.048909109085798264,
- 0.02942594140768051,
- -0.05748405307531357,
- -0.010061279870569706,
- 0.008906956762075424,
- -0.014532067812979221,
- -0.03377234935760498,
- 0.050175365060567856,
- 0.03267699107527733,
- 0.05572529882192612,
- -0.08784618228673935,
- -0.06555109471082687,
- -0.003148950170725584,
- 0.018514610826969147,
- -0.012505591847002506,
- -0.13587941229343414,
- -0.001345170894637704,
- 0.021777711808681488,
- -0.015513413585722446,
- 0.030611034482717514,
- 0.0029078428633511066,
- -0.05649486556649208,
- -0.029351452365517616,
- 0.05164516344666481,
- 0.06358418613672256,
- -0.004073626361787319,
- 0.04173713177442551,
- 0.06663412600755692,
- -0.03882856294512749,
- -0.04909888282418251,
- -0.11889638006687164,
- -0.016785243526101112,
- -0.029426749795675278,
- -0.09073254466056824,
- -0.013503437861800194,
- 0.04183632507920265,
- 0.08606060594320297,
- -0.03737754747271538,
- 0.07465916872024536,
- 0.0593620166182518,
- -0.04683060571551323,
- 0.0007414936553686857,
- -0.050293561071157455,
- -0.008877511136233807,
- 0.01784239150583744,
- -0.031879108399152756,
- 0.04535672813653946,
- 0.04145859554409981,
- -0.06424029171466827,
- -0.008353954181075096,
- 0.0023121251724660397,
- 0.02254733070731163,
- -0.06931860744953156,
- 0.014339329674839973,
- -0.00925501249730587,
- 0.014460168778896332,
- -0.03371201455593109,
- 0.04980748891830444,
- -0.09766058623790741,
- -0.010152065195143223,
- -0.032001931220293045,
- 0.0447046272456646,
- -0.01030497346073389,
- 0.012203368358314037,
- 0.04841632395982742,
- -0.06546706706285477,
- 0.016675973311066628,
- 0.014094643294811249,
- -0.04597419872879982,
- 0.034804269671440125,
- 0.006731769535690546,
- 0.08349859714508057,
- -0.035846393555402756,
- 2.632992735142719e-33,
- -0.010093417018651962,
- -0.01710437797009945,
- 0.05683470144867897,
- -0.032848943024873734,
- 0.06815087050199509,
- -0.06845983862876892,
- 0.05662285163998604,
- -0.1067093163728714,
- 0.008625803515315056,
- 0.016934944316744804,
- -0.0020105065777897835,
- -0.06799960881471634,
- -0.007287654560059309,
- 0.031057044863700867,
- 0.07267650216817856,
- -0.013910658657550812,
- 0.07115636020898819,
- 0.027339069172739983,
- -0.03979148715734482,
- 0.019507044926285744,
- -0.017999764531850815,
- -0.055990707129240036,
- 0.06742745637893677,
- -0.0514252632856369,
- 0.005627232138067484,
- 0.02797577530145645,
- 0.06449175626039505,
- -0.004251690115779638,
- -0.12879331409931183,
- -0.06485332548618317,
- -0.011585956439375877,
- 0.006359944585710764,
- -0.08059483766555786,
- 0.00045172800309956074,
- -0.04294748976826668,
- 0.07952360063791275,
- 0.015133005566895008,
- 0.004183363169431686,
- -0.05885379761457443,
- -0.08781707286834717,
- 0.07059367746114731,
- 0.04671422019600868,
- -0.049072183668613434,
- 0.16371850669384003,
- 0.009659302420914173,
- 0.009434099309146404,
- 0.014924012124538422,
- 0.012610145844519138,
- 0.04103884845972061,
- -0.0017205220647156239,
- -0.04391167312860489,
- 0.02808368392288685,
- 0.1254526674747467,
- -0.007903293706476688,
- 0.019318116828799248,
- 0.027771875262260437,
- 0.08257018029689789,
- -0.03557942062616348,
- -0.012501315213739872,
- -0.049556199461221695,
- 0.014047166332602501,
- 0.018386496230959892,
- -0.030710943043231964,
- 0.06472659856081009,
- 0.0290931798517704,
- -0.037128303200006485,
- -0.036323923617601395,
- -0.020055221393704414,
- 0.002097175922244787,
- 0.014723231084644794,
- -0.004089703317731619,
- -0.06959626823663712,
- -0.07299265265464783,
- 0.013645502738654613,
- -0.07032642513513565,
- -0.04035652056336403,
- -0.07326123118400574,
- -0.021338067948818207,
- -0.03735942021012306,
- 0.018759548664093018,
- -0.08508814871311188,
- 0.027977706864476204,
- -0.009678679518401623,
- 0.02074294164776802,
- -0.048532307147979736,
- 0.012468176893889904,
- 0.021696409210562706,
- 0.04181443154811859,
- 0.012318217195570469,
- -0.02490689419209957,
- 0.022084137424826622,
- 0.025501875206828117,
- -0.04280957579612732,
- 0.045795779675245285,
- -0.04671024903655052,
- -1.4892219013518115e-8,
- -0.05701262503862381,
- -0.019478950649499893,
- -0.013177689164876938,
- 0.01696840114891529,
- 0.06905218958854675,
- -0.00557131739333272,
- 0.016529055312275887,
- 0.08272094279527664,
- -0.020710615441203117,
- 0.1306021362543106,
- 0.04327201098203659,
- 0.015902327373623848,
- -0.026709116995334625,
- 0.05006704479455948,
- 0.07808458060026169,
- -0.04370176047086716,
- -0.037169795483350754,
- -0.0004845742369070649,
- -0.04939969256520271,
- 0.08322837203741074,
- 0.003759401384741068,
- 0.02408822439610958,
- 0.05918173864483833,
- -0.01664784364402294,
- -0.016840554773807526,
- 0.01608620211482048,
- 0.007969478145241737,
- 0.051081202924251556,
- 0.05591230094432831,
- -0.03528650850057602,
- -0.00688678864389658,
- -0.009089753031730652,
- -0.0383639931678772,
- -0.10868238657712936,
- -0.04347638413310051,
- -0.014719324186444283,
- 0.01746712252497673,
- -0.04921102523803711,
- -0.002173742512241006,
- -0.022150959819555283,
- 0.03829152137041092,
- -0.02572527527809143,
- 0.03233315423130989,
- 0.051827166229486465,
- 0.03149973228573799,
- 0.030482672154903412,
- 0.02254079282283783,
- 0.00004221456038067117,
- -0.02020059898495674,
- -0.010518008843064308,
- -0.07534106075763702,
- 0.015959670767188072,
- -0.0035949130542576313,
- 0.05650333687663078,
- -0.04210411012172699,
- 0.010239530354738235,
- -0.0040915054269135,
- 0.02500101737678051,
- -0.02780977450311184,
- -0.03897138684988022,
- 0.057965073734521866,
- -0.03205452859401703,
- 0.04382582753896713,
- -0.025621768087148666
- ]
- },
- {
- "keyword": "linked to",
- "type": "relatedTo",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06694912910461426,
- -0.0512903667986393,
- -0.0927659198641777,
- 0.0794263407588005,
- 0.03104384057223797,
- 0.05679377540946007,
- 0.08739831298589706,
- 0.07740812748670578,
- -0.022306306287646294,
- -0.011576971039175987,
- 0.05227714776992798,
- 0.006443575490266085,
- 0.035597577691078186,
- 0.04221170023083687,
- -0.030687987804412842,
- 0.013583086431026459,
- 0.01885015144944191,
- 0.04936022683978081,
- -0.04069845378398895,
- -0.03940419480204582,
- -0.09561610221862793,
- 0.02128954418003559,
- 0.026951255276799202,
- 0.03024202771484852,
- 0.04594371095299721,
- -0.03246443346142769,
- -0.0164613239467144,
- -0.006801239214837551,
- 0.009219911880791187,
- -0.07502943277359009,
- -0.02307342179119587,
- 0.03306058049201965,
- -0.1296977549791336,
- -0.0816258043050766,
- 0.03845452889800072,
- -0.012283924035727978,
- 0.04218024015426636,
- -0.003314599161967635,
- -0.019600311294198036,
- -0.03930319473147392,
- 0.00762356910854578,
- -0.00653526047244668,
- -0.008440159261226654,
- 0.006798668298870325,
- -0.01328564528375864,
- 0.08172926306724548,
- -0.0294230654835701,
- -0.03316530957818031,
- -0.01832565665245056,
- 0.06818581372499466,
- -0.10221807658672333,
- 0.006042033433914185,
- 0.03498620539903641,
- -0.07524418085813522,
- 0.03823906555771828,
- 0.079305000603199,
- -0.05824926495552063,
- -0.020712967962026596,
- -0.00678971828892827,
- 0.0006238565547391772,
- 0.15439152717590332,
- -0.021232759580016136,
- -0.09373212605714798,
- 0.01907130889594555,
- 0.05789344012737274,
- -0.05001725256443024,
- 0.03142360970377922,
- 0.10872545838356018,
- -0.06838736683130264,
- -0.098720982670784,
- -0.01112167164683342,
- 0.02246835082769394,
- 0.0083017498254776,
- 0.06392478197813034,
- 0.003588929772377014,
- 0.09567530453205109,
- 0.056027092039585114,
- -0.01659502647817135,
- -0.015854764729738235,
- -0.12839843332767487,
- 0.0023730257526040077,
- 0.09022922813892365,
- -0.02135712280869484,
- -0.0630563423037529,
- 0.025236425921320915,
- -0.003722910303622484,
- 0.02238280326128006,
- -0.050382718443870544,
- -0.026758842170238495,
- 0.04163018614053726,
- 0.04665142670273781,
- 0.056503716856241226,
- 0.08897403627634048,
- -0.009949678555130959,
- -0.00010269120684824884,
- 0.026161454617977142,
- 0.04655977711081505,
- 0.014124473556876183,
- -0.035300541669130325,
- 0.16464194655418396,
- -0.026424432173371315,
- 0.06146810203790665,
- -0.028704620897769928,
- -0.021715529263019562,
- -0.030190788209438324,
- -0.005197060294449329,
- 0.014667375944554806,
- 0.11953851580619812,
- 0.012427255511283875,
- -0.0749763697385788,
- -0.049609869718551636,
- 0.0465855598449707,
- -0.057079192250967026,
- -0.01963721215724945,
- -0.013888302259147167,
- -0.08304552733898163,
- 0.006240555550903082,
- 0.028136281296610832,
- 0.1237378716468811,
- -0.0728420615196228,
- 0.05105234310030937,
- 0.008837488479912281,
- -0.03193409740924835,
- -0.0253780297935009,
- -0.04595169052481651,
- -0.07830575853586197,
- -0.043486956506967545,
- -3.6779421934924526e-33,
- 0.10588329285383224,
- 0.004607859067618847,
- 0.04272867739200592,
- -0.07593319565057755,
- 0.021648680791258812,
- -0.04462737217545509,
- 0.001956039573997259,
- 0.02548503316938877,
- -0.10887362062931061,
- -0.03677956014871597,
- -0.11513170599937439,
- 0.006697976496070623,
- -0.06505917757749557,
- -0.03787202760577202,
- 0.021047182381153107,
- -0.06847703456878662,
- 0.055797677487134933,
- 0.12166044116020203,
- -0.05895064026117325,
- -0.05514538288116455,
- -0.010875417850911617,
- 0.08476033806800842,
- -0.015447110868990421,
- 0.08678895980119705,
- 0.0531097911298275,
- 0.016842136159539223,
- 0.007358463015407324,
- -0.08898599445819855,
- 0.09644583612680435,
- 0.06879986077547073,
- -0.012552249245345592,
- 0.022094756364822388,
- 0.02693892829120159,
- -0.03129898011684418,
- 0.05460499972105026,
- -0.018784813582897186,
- -0.015314009040594101,
- -0.07249671220779419,
- -0.07292616367340088,
- 0.009316024370491505,
- 0.07588057219982147,
- -0.015449208207428455,
- -0.00888971146196127,
- -0.02647789567708969,
- -0.004136830568313599,
- 0.02621498331427574,
- 0.01305774599313736,
- -0.00813597347587347,
- 0.09565335512161255,
- 0.0032781471963971853,
- -0.02193344198167324,
- -0.01959936134517193,
- -0.03423435613512993,
- -0.029181240126490593,
- -0.0181884802877903,
- -0.03344016894698143,
- -0.05458347871899605,
- -0.0010717182885855436,
- 0.01369329821318388,
- 0.043559759855270386,
- 0.035818882286548615,
- 0.0886063203215599,
- -0.07199053466320038,
- -0.06721600890159607,
- -0.14282438158988953,
- 0.014252870343625546,
- -0.003659695852547884,
- -0.02276884950697422,
- -0.005843083839863539,
- -0.04648212343454361,
- -0.022895341739058495,
- 0.03460182249546051,
- 0.11480440199375153,
- 0.04352538660168648,
- -0.05385058745741844,
- -0.028916338458657265,
- -0.04605404660105705,
- -0.03941470757126808,
- -0.06238142028450966,
- 0.05985119193792343,
- -0.009218734689056873,
- -0.01900038681924343,
- -0.054025981575250626,
- 0.03255561739206314,
- 0.0669882521033287,
- 0.010260162875056267,
- -0.06322813779115677,
- -0.11446700245141983,
- -0.03706147149205208,
- -0.04791222885251045,
- 0.0038123123813420534,
- 0.02442966215312481,
- 0.04362356290221214,
- 0.052022770047187805,
- -0.009593119844794273,
- 1.9724861328355218e-33,
- -0.009664824232459068,
- -0.004497417714446783,
- 0.05174209177494049,
- 0.02976837195456028,
- 0.02768375165760517,
- 0.0076518915593624115,
- 0.03946550190448761,
- -0.0029866355471313,
- 0.019908586516976357,
- 0.013954357244074345,
- 0.01209503598511219,
- 0.018069349229335785,
- 0.01420306321233511,
- 0.027755435556173325,
- 0.03181273862719536,
- -0.01819322071969509,
- 0.04649798572063446,
- -0.0025961364153772593,
- -0.03262622654438019,
- -0.018652744591236115,
- 0.02367239072918892,
- -0.0062678903341293335,
- -0.03541969507932663,
- -0.01791360415518284,
- -0.030196167528629303,
- 0.06733015924692154,
- 0.08703943341970444,
- 0.013507005758583546,
- -0.06733599305152893,
- 0.05327216908335686,
- 0.07762333005666733,
- 0.01229835394769907,
- -0.08632712066173553,
- 0.004465126432478428,
- -0.03733733296394348,
- 0.14137829840183258,
- 0.08724956959486008,
- 0.02995460107922554,
- -0.020457571372389793,
- -0.04964129626750946,
- 0.11087225377559662,
- -0.010130145587027073,
- -0.03265447914600372,
- 0.07041049748659134,
- 0.0173701960593462,
- 0.016603507101535797,
- -0.05705404281616211,
- -0.006698563229292631,
- 0.026818174868822098,
- 0.0580093078315258,
- -0.04122762754559517,
- 0.003219383768737316,
- 0.05064324289560318,
- -0.07737638056278229,
- -0.025451580062508583,
- -0.034821007400751114,
- -0.011923068203032017,
- 0.007674304768443108,
- 0.07704773545265198,
- -0.09082107990980148,
- -0.05062341317534447,
- -0.008683273568749428,
- -0.047676846385002136,
- 0.024696195498108864,
- -0.02316492237150669,
- -0.011380596086382866,
- -0.03558233007788658,
- -0.008294953964650631,
- 0.03818165883421898,
- -0.031162763014435768,
- -0.03115558810532093,
- 0.016246555373072624,
- 0.004523718263953924,
- -0.012836073525249958,
- -0.05016084387898445,
- -0.05617700144648552,
- -0.0387224517762661,
- 0.0044416096061468124,
- -0.030550241470336914,
- -0.0650196447968483,
- -0.0072681233286857605,
- -0.02155821956694126,
- -0.028586357831954956,
- 0.05227607861161232,
- 0.013268474489450455,
- -0.029427947476506233,
- 0.0907529890537262,
- 0.014291939325630665,
- -0.031427789479494095,
- -0.009938949719071388,
- -0.101779043674469,
- -0.07417009770870209,
- 0.003617206122726202,
- 0.031071990728378296,
- -0.047732677310705185,
- -1.5057636915116746e-8,
- 0.04310072958469391,
- 0.06807145476341248,
- 0.010819063521921635,
- -0.004548507742583752,
- 0.07771196961402893,
- 0.044761158525943756,
- 0.03933853283524513,
- 0.030193446204066277,
- 0.013427982106804848,
- 0.0736510157585144,
- -0.03503841906785965,
- -0.03752845898270607,
- -0.006030845455825329,
- 0.06436685472726822,
- 0.06733234971761703,
- -0.06512625515460968,
- -0.07423554360866547,
- 0.01673455908894539,
- -0.03229139372706413,
- -0.004259257577359676,
- -0.04636349901556969,
- 0.024666907265782356,
- 0.10672145336866379,
- 0.011231211945414543,
- 0.01851058378815651,
- -0.021508440375328064,
- 0.01657852530479431,
- 0.1375669687986374,
- 0.08800047636032104,
- -0.07050991803407669,
- 0.02086983248591423,
- 0.02268890291452408,
- -0.002869701711460948,
- -0.08757976442575455,
- 0.004014325328171253,
- -0.018060754984617233,
- -0.02922786958515644,
- -0.01891639083623886,
- -0.015471048653125763,
- -0.027039211243391037,
- 0.023830268532037735,
- -0.07713860273361206,
- 0.06465449929237366,
- 0.04868078604340553,
- 0.0500507652759552,
- 0.04785029590129852,
- -0.021283118054270744,
- -0.03691359609365463,
- -0.05500742048025131,
- 0.009090306237339973,
- 0.00019306382455397397,
- -0.02047017216682434,
- 0.03656869754195213,
- 0.014415032230317593,
- -0.011156437918543816,
- -0.008631096221506596,
- -0.006938677281141281,
- 0.013069219887256622,
- -0.04928017035126686,
- 0.05730590969324112,
- 0.039563123136758804,
- 0.015429387800395489,
- 0.05069354176521301,
- 0.05858548358082771
- ]
- },
- {
- "keyword": "connection",
- "type": "relatedTo",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.07301322370767593,
- -0.02751017175614834,
- -0.06099742650985718,
- 0.010656079277396202,
- -0.09173598885536194,
- 0.02646324411034584,
- 0.09363961219787598,
- -0.04119774326682091,
- 0.05146849527955055,
- -0.02973037399351597,
- 0.027704540640115738,
- -0.03647463396191597,
- -0.026002345606684685,
- 0.0034816772677004337,
- -0.027435187250375748,
- 0.017136940732598305,
- -0.022337235510349274,
- -0.04549063742160797,
- -0.0765380784869194,
- 0.0023238889407366514,
- -0.11206624656915665,
- -0.07702816277742386,
- -0.08092549443244934,
- -0.013104768469929695,
- 0.010404852218925953,
- -0.0030495966784656048,
- 0.025234367698431015,
- 0.06821456551551819,
- 0.021435316652059555,
- -0.07147209346294403,
- -0.028024250641465187,
- -0.03382505476474762,
- -0.013218882493674755,
- -0.025978539139032364,
- -0.02042282372713089,
- -0.016763409599661827,
- 0.03585638850927353,
- 0.0473225861787796,
- -0.06531767547130585,
- 0.0070425462909042835,
- 0.03367963433265686,
- -0.10144121944904327,
- -0.03516363725066185,
- -0.008026676252484322,
- 0.01832772046327591,
- 0.060368068516254425,
- -0.023492703214287758,
- 0.018332641571760178,
- 0.030583184212446213,
- 0.013605376705527306,
- -0.06476923078298569,
- 0.054980888962745667,
- -0.061220575124025345,
- 0.037507083266973495,
- 0.04159492999315262,
- 0.07160348445177078,
- -0.010559297166764736,
- 0.07125607877969742,
- -0.046750757843256,
- 0.057098422199487686,
- 0.09258823096752167,
- 0.017632508650422096,
- -0.060946665704250336,
- 0.04161791130900383,
- -0.004592514131218195,
- -0.04650198668241501,
- 0.06287159025669098,
- 0.06903374195098877,
- -0.02328462339937687,
- -0.04806757718324661,
- -0.05159168317914009,
- 0.0639958381652832,
- -0.03845300152897835,
- -0.01879022642970085,
- 0.025649378076195717,
- 0.02347567118704319,
- 0.07926352322101593,
- -0.06023229658603668,
- 0.06259006261825562,
- -0.01038903184235096,
- 0.02757210284471512,
- 0.08644143491983414,
- -0.06744790077209473,
- -0.014861472882330418,
- 0.0004607139271683991,
- -0.027618832886219025,
- 0.020602410659193993,
- 0.001523277722299099,
- -0.05402370169758797,
- -0.024259431287646294,
- -0.026186563074588776,
- 0.021462460979819298,
- 0.0008047764422371984,
- 0.007147001102566719,
- -0.057718511670827866,
- 0.052342288196086884,
- 0.04176824912428856,
- -0.0434001162648201,
- -0.07654989510774612,
- 0.23778113722801208,
- -0.000671283807605505,
- 0.0322917215526104,
- -0.0484943650662899,
- -0.003556419163942337,
- -0.015603634528815746,
- -0.020833462476730347,
- -0.017413761466741562,
- 0.07017360627651215,
- 0.06453491747379303,
- -0.011429332196712494,
- -0.04303032532334328,
- -0.030006591230630875,
- -0.06573185324668884,
- -0.009576769545674324,
- -0.007675147615373135,
- 0.040711939334869385,
- -0.020049946382641792,
- 0.03741903975605965,
- 0.06613656878471375,
- 0.029635341838002205,
- 0.0171623844653368,
- -0.018096815794706345,
- -0.07270607352256775,
- -0.020632553845643997,
- -0.03106011636555195,
- -0.07131200283765793,
- 0.024683069437742233,
- -4.8633404515624025e-33,
- 0.02616608701646328,
- -0.008013187907636166,
- 0.04114305227994919,
- 0.02378368377685547,
- -0.002067658118903637,
- 0.035118505358695984,
- -5.373287876864197e-7,
- -0.0368623249232769,
- -0.07589860260486603,
- 0.055806465446949005,
- -0.11956151574850082,
- -0.004416753072291613,
- -0.027050036936998367,
- 0.006102667655795813,
- 0.05705356225371361,
- -0.009718602523207664,
- 0.07579804956912994,
- 0.027948344126343727,
- 0.06529679149389267,
- 0.01171707920730114,
- -0.0754542127251625,
- -0.0639737993478775,
- 0.04163931682705879,
- 0.03154657036066055,
- 0.06246761232614517,
- -0.022049007937312126,
- 0.000160230731125921,
- -0.031335484236478806,
- 0.051788508892059326,
- 0.012042098678648472,
- 0.056132566183805466,
- -0.006590539589524269,
- -0.018578946590423584,
- -0.016305692493915558,
- 0.02663719281554222,
- -0.08306466788053513,
- -0.024904385209083557,
- -0.0649416595697403,
- -0.012600582093000412,
- 0.042163606733083725,
- 0.007324807345867157,
- -0.01389219705015421,
- -0.10742300003767014,
- 0.01185481809079647,
- -0.03751175105571747,
- 0.0063967015594244,
- 0.047613661736249924,
- 0.020629296079277992,
- 0.010398977436125278,
- 0.06823310256004333,
- -0.06520884484052658,
- -0.023448912426829338,
- -0.06752990931272507,
- 0.011046110652387142,
- -0.029225986450910568,
- 0.023880725726485252,
- -0.032348521053791046,
- 0.06684720516204834,
- -0.03270214796066284,
- -0.026310056447982788,
- 0.055490393191576004,
- 0.041230715811252594,
- -0.07385725528001785,
- -0.03407517820596695,
- 0.10740312933921814,
- 0.03590638190507889,
- 0.04310540109872818,
- 0.009576053358614445,
- 0.013630074448883533,
- -0.0183167215436697,
- -0.13591398298740387,
- 0.033921077847480774,
- 0.058111030608415604,
- 0.000851907825563103,
- -0.025393107905983925,
- -0.0029510336462408304,
- -0.05001154914498329,
- 0.04358191043138504,
- -0.014888248406350613,
- 0.06311581283807755,
- -0.04448076710104942,
- -0.016615325585007668,
- -0.009548656642436981,
- 0.09127680957317352,
- -0.0023276330903172493,
- 0.07465727627277374,
- -0.007371622137725353,
- -0.13294446468353271,
- 0.04583251103758812,
- 0.06802316009998322,
- -0.036490026861429214,
- 0.041583068668842316,
- 0.10882610827684402,
- 0.03252454847097397,
- -0.016638094559311867,
- 3.859224728224358e-33,
- -0.10230360180139542,
- -0.04604855924844742,
- -0.019858337938785553,
- 0.025566283613443375,
- 0.06274018436670303,
- 0.009633975103497505,
- 0.08425571769475937,
- -0.022202054038643837,
- -0.03230130299925804,
- 0.04894503951072693,
- 0.11707727611064911,
- 0.01912633702158928,
- 0.07895056158304214,
- -0.04085416719317436,
- 0.033354610204696655,
- -0.025582218542695045,
- 0.038525015115737915,
- -0.015243329107761383,
- -0.008584611117839813,
- 0.02602723427116871,
- -0.02643364854156971,
- -0.007970698177814484,
- 0.0053975144401192665,
- -0.12316512316465378,
- -0.01290804147720337,
- -0.02633327804505825,
- 0.021073615178465843,
- -0.004772457294166088,
- -0.05608585104346275,
- 0.09639564901590347,
- 0.07698071002960205,
- 0.007425172254443169,
- -0.04406195506453514,
- 0.0781460851430893,
- -0.06687367707490921,
- 0.13122187554836273,
- 0.11824005842208862,
- 0.011832252144813538,
- 0.002768059493973851,
- -0.03066699579358101,
- 0.05404968559741974,
- 0.01513083279132843,
- -0.02710612304508686,
- 0.10260284692049026,
- 0.018977966159582138,
- -0.005958615802228451,
- -0.08974914997816086,
- -0.02353919856250286,
- -0.07948969304561615,
- 0.052535440772771835,
- -0.007963372394442558,
- 0.041937973350286484,
- -0.028423670679330826,
- -0.004644207190722227,
- -0.027561580762267113,
- 0.0578928217291832,
- -0.006830830592662096,
- -0.027660900726914406,
- -0.009812147356569767,
- -0.011331349611282349,
- 0.04223698750138283,
- -0.04787186533212662,
- -0.07580577582120895,
- 0.05497482791543007,
- 0.016561094671487808,
- 0.03331109881401062,
- 0.026454469189047813,
- -0.009056970477104187,
- 0.07612310349941254,
- 0.0055807060562074184,
- -0.019408825784921646,
- 0.004807660356163979,
- 0.00808272697031498,
- 0.015305936336517334,
- -0.025642286986112595,
- -0.0534927062690258,
- -0.1417524218559265,
- 0.0004778263682965189,
- -0.04772063344717026,
- 0.07864927500486374,
- -0.04082698002457619,
- 0.07890371233224869,
- -0.001432946533896029,
- -0.01454712450504303,
- 0.06301764398813248,
- -0.01764960028231144,
- 0.059435658156871796,
- 0.10179712623357773,
- 0.021608591079711914,
- -0.050749365240335464,
- -0.0192375760525465,
- 0.043326858431100845,
- -0.059348706156015396,
- -0.028553174808621407,
- -0.0535520538687706,
- -1.1891180484724373e-8,
- 0.011204654350876808,
- -0.012824207544326782,
- -0.03456101194024086,
- -0.08075648546218872,
- 0.09880953282117844,
- 0.05745778605341911,
- -0.05545511096715927,
- 0.026050454005599022,
- -0.013347398489713669,
- 0.1292337030172348,
- -0.017210543155670166,
- 0.024108853191137314,
- -0.07010188698768616,
- 0.07151968032121658,
- 0.0803038626909256,
- -0.034757062792778015,
- -0.03346952795982361,
- -0.016229599714279175,
- -0.009044782258570194,
- -0.029268698766827583,
- 0.06372147053480148,
- 0.01892615109682083,
- 0.008810913190245628,
- 0.07709207385778427,
- 0.030992865562438965,
- -0.07274515926837921,
- 0.06270557641983032,
- 0.1358635127544403,
- -0.05090629681944847,
- -0.028489312157034874,
- -0.027136001735925674,
- 0.012041209265589714,
- -0.04069937765598297,
- -0.0207776241004467,
- -0.034592241048812866,
- 0.013608153909444809,
- -0.06604620069265366,
- 0.04270821064710617,
- -0.04325232282280922,
- 0.029593104496598244,
- 0.04915885999798775,
- -0.04194609448313713,
- 0.06726192682981491,
- 0.0026210681535303593,
- 0.023671088740229607,
- 0.028367681428790092,
- 0.022588200867176056,
- 0.025667639449238777,
- -0.00359747395850718,
- -0.010383940301835537,
- -0.05702286958694458,
- -0.013302926905453205,
- -0.0030036759562790394,
- -0.015675486996769905,
- 0.00828537531197071,
- -0.044636812061071396,
- -0.006354085635393858,
- 0.010584135539829731,
- -0.1118205338716507,
- 0.07552698254585266,
- 0.018935127183794975,
- 0.07229103147983551,
- 0.03343648836016655,
- -0.08347490429878235
- ]
- },
- {
- "keyword": "association",
- "type": "relatedTo",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.018749795854091644,
- -0.009861625730991364,
- -0.01603281870484352,
- 0.04023095965385437,
- -0.0028494633734226227,
- 0.06271937489509583,
- 0.14111453294754028,
- -0.052594590932130814,
- -0.012319068424403667,
- -0.04844140633940697,
- 0.04709940031170845,
- -0.056962355971336365,
- 0.02228664420545101,
- 0.017833862453699112,
- -0.04442105069756508,
- 0.09640306234359741,
- -0.03032834269106388,
- 0.030987396836280823,
- -0.11565649509429932,
- -0.06784394383430481,
- -0.10446277260780334,
- 0.007503119297325611,
- 0.07225391268730164,
- 0.037874773144721985,
- -0.037903718650341034,
- 0.008576581254601479,
- 0.016120687127113342,
- -0.009915580973029137,
- -0.051319949328899384,
- -0.07070299237966537,
- -0.0011568238260224462,
- 0.030731506645679474,
- 0.06542478501796722,
- -0.004197133705019951,
- 0.002715523587539792,
- -0.014346567913889885,
- 0.024038635194301605,
- 0.04454989731311798,
- -0.003885838435962796,
- 0.016083581373095512,
- -0.031296778470277786,
- -0.03502507135272026,
- 0.05932911857962608,
- 0.0031181322410702705,
- 0.0022007350344210863,
- 0.0722094178199768,
- 0.01880795881152153,
- 0.05700794979929924,
- -0.054682180285453796,
- 0.0635211169719696,
- 0.03439900279045105,
- -0.014990348368883133,
- -0.022907450795173645,
- 0.0013226011069491506,
- 0.04460740089416504,
- 0.05469709634780884,
- -0.05295071750879288,
- -0.01507154293358326,
- -0.04297500103712082,
- 0.0006669381400570273,
- 0.0386517159640789,
- -0.0010424356441944838,
- -0.04946785420179367,
- 0.03308474272489548,
- 0.043926823884248734,
- -0.02299499325454235,
- -0.0008377442718483508,
- 0.07196475565433502,
- -0.05242253839969635,
- -0.046014901250600815,
- 0.0391613207757473,
- 0.020511025562882423,
- -0.07739120721817017,
- 0.04111264646053314,
- 0.06664372235536575,
- -0.00977177545428276,
- 0.018574308604002,
- -0.041194137185811996,
- 0.06282199174165726,
- -0.04179228097200394,
- -0.03735880181193352,
- 0.02994527481496334,
- 0.014485553838312626,
- -0.028013940900564194,
- 0.06863456219434738,
- 0.027975672855973244,
- -0.003924201242625713,
- -0.06778509169816971,
- -0.044966015964746475,
- 0.06062969192862511,
- -0.0633719190955162,
- -0.03238696977496147,
- 0.09711100906133652,
- -0.0322323776781559,
- 0.017263729125261307,
- 0.010093209333717823,
- 0.07393213361501694,
- -0.11505962163209915,
- -0.035675205290317535,
- 0.25500863790512085,
- -0.05017628148198128,
- 0.056303899735212326,
- -0.07001516968011856,
- 0.030791208148002625,
- -0.05020492523908615,
- -0.034397318959236145,
- -0.029632555320858955,
- -0.0013657397357746959,
- 0.01778169721364975,
- 0.012188964523375034,
- -0.053114697337150574,
- -0.01326579600572586,
- -0.03265130892395973,
- -0.00197129650041461,
- -0.0670563355088234,
- 0.033239275217056274,
- 0.00816862378269434,
- 0.045930180698633194,
- 0.06270123273134232,
- -0.07036101073026657,
- 0.039295583963394165,
- 0.023663194850087166,
- -0.0249943844974041,
- 0.035635411739349365,
- -0.009013090282678604,
- -0.03779727593064308,
- -0.0801737904548645,
- -4.496284258994481e-33,
- 0.030896518379449844,
- -0.01922081597149372,
- -0.020855214446783066,
- -0.027608131989836693,
- -0.003441627137362957,
- -0.03996602073311806,
- -0.09748969227075577,
- -0.013096085749566555,
- -0.06036100164055824,
- 0.02781563624739647,
- -0.029433095827698708,
- 0.18967823684215546,
- 0.01162438653409481,
- 0.00856063887476921,
- 0.06596110016107559,
- 0.053492963314056396,
- 0.055978257209062576,
- 0.11161376535892487,
- 0.019720138981938362,
- -0.02587990276515484,
- -0.10602950304746628,
- 0.13756611943244934,
- -0.034563787281513214,
- 0.07631250470876694,
- -0.026368511840701103,
- -0.003284247126430273,
- -0.02307046763598919,
- -0.025261126458644867,
- 0.019054144620895386,
- 0.027752012014389038,
- 0.027051804587244987,
- 0.03990885615348816,
- -0.045354586094617844,
- -0.1003502756357193,
- 0.02712426334619522,
- 0.0012353671481832862,
- 0.03159751743078232,
- -0.0799993947148323,
- 0.0066282679326832294,
- -0.015095993876457214,
- -0.014407356269657612,
- 0.017658894881606102,
- -0.02132343128323555,
- -0.056165579706430435,
- -0.03629370406270027,
- 0.013967680744826794,
- 0.04334134981036186,
- -0.03899054974317551,
- -0.036437585949897766,
- 0.1410563439130783,
- 0.0022366445045918226,
- -0.11684565246105194,
- -0.009604786522686481,
- 0.006384798791259527,
- -0.027671389281749725,
- -0.06978049129247665,
- -0.029535865411162376,
- 0.06335192918777466,
- 0.03441070020198822,
- -0.042960114777088165,
- 0.06794531643390656,
- 0.07089772075414658,
- -0.020714998245239258,
- 0.030501091852784157,
- -0.10654322057962418,
- -0.031069742515683174,
- 0.03756106644868851,
- -0.08431822806596756,
- 0.07314267754554749,
- 0.02175174281001091,
- -0.031404007226228714,
- 0.056669846177101135,
- -0.12419582158327103,
- 0.017034055665135384,
- -0.014271173626184464,
- -0.01766708865761757,
- -0.03330131620168686,
- 0.024439658969640732,
- -0.02498718909919262,
- 0.014527186751365662,
- -0.08310972154140472,
- -0.01892857812345028,
- 0.003960893489420414,
- 0.007895599119365215,
- -0.0744251236319542,
- 0.008914131671190262,
- 0.020433703437447548,
- -0.06388331949710846,
- -0.011277379468083382,
- -0.019817538559436798,
- -0.02851499430835247,
- 0.0507390983402729,
- 0.04907546937465668,
- 0.10231267660856247,
- 0.06211920455098152,
- 2.512134099791933e-33,
- -0.00323411263525486,
- -0.0010424217907711864,
- 0.04636317864060402,
- -0.04528023675084114,
- 0.07976137846708298,
- -0.06282036751508713,
- 0.08091212809085846,
- -0.108517587184906,
- 0.026551615446805954,
- 0.05436020717024803,
- -0.03144172951579094,
- -0.048719391226768494,
- 0.05513525754213333,
- 0.016242532059550285,
- 0.12053004652261734,
- -0.050566449761390686,
- 0.023462459444999695,
- 0.044785648584365845,
- -0.009557344950735569,
- 0.01325503084808588,
- -0.06399023532867432,
- -0.02749643474817276,
- 0.05990607291460037,
- -0.07323947548866272,
- 0.017812227830290794,
- -0.0019908868707716465,
- 0.002839823020622134,
- -0.0020531676709651947,
- -0.04180198907852173,
- -0.036259401589632034,
- -0.003459956031292677,
- -0.03497753664851189,
- -0.03573352470993996,
- 0.021585755050182343,
- -0.04192341864109039,
- 0.04956592991948128,
- 0.02343725971877575,
- -0.030274419113993645,
- -0.021177388727664948,
- -0.09981248527765274,
- 0.06505939364433289,
- 0.019835125654935837,
- 0.03585395589470863,
- 0.11937691271305084,
- -0.00877492967993021,
- -0.014149408787488937,
- 0.0553031861782074,
- 0.019952841103076935,
- 0.03698514401912689,
- 0.016030414029955864,
- -0.07484794408082962,
- -0.022863171994686127,
- 0.11891758441925049,
- -0.06074713170528412,
- 0.029298460111021996,
- 0.06386728584766388,
- 0.09717398136854172,
- -0.04420948028564453,
- -0.04958786442875862,
- -0.004177459049969912,
- 0.032805901020765305,
- 0.050061192363500595,
- -0.03592266887426376,
- 0.13270467519760132,
- 0.00660189101472497,
- -0.07319038361310959,
- -0.023712027817964554,
- -0.004807703197002411,
- -0.005716884508728981,
- 0.023954030126333237,
- 0.03812909126281738,
- -0.033394526690244675,
- -0.08983971178531647,
- 0.0018604419892653823,
- -0.047447267919778824,
- -0.05472654476761818,
- -0.034575898200273514,
- 0.01870371215045452,
- -0.04397451505064964,
- 0.002598629565909505,
- -0.07995466887950897,
- 0.042015865445137024,
- 0.02045939490199089,
- 0.01676018349826336,
- -0.040787894278764725,
- -0.003299484495073557,
- 0.05948983132839203,
- 0.05163663253188133,
- 0.018319863826036453,
- 0.0480649396777153,
- 0.018101288005709648,
- -0.006675417535007,
- -0.004505041521042585,
- 0.01656133122742176,
- -0.07671349495649338,
- -1.1756563722542523e-8,
- -0.06983978301286697,
- -0.05428478494286537,
- 0.031711287796497345,
- 0.01874777488410473,
- 0.03742988407611847,
- -0.017879344522953033,
- -0.05103776231408119,
- 0.0720072016119957,
- -0.010596441105008125,
- 0.09616350382566452,
- 0.017473163083195686,
- 0.05684257671236992,
- -0.02232283540070057,
- 0.011264191009104252,
- 0.09686620533466339,
- -0.048453863710165024,
- 0.014389095827937126,
- -0.015150067396461964,
- -0.07576052844524384,
- 0.05350378528237343,
- 0.01151839829981327,
- -0.006127163767814636,
- 0.020954787731170654,
- -0.018934067338705063,
- -0.04741857200860977,
- -0.005325542762875557,
- 0.010149016976356506,
- 0.017629938200116158,
- 0.0023969945032149553,
- -0.01736626960337162,
- 0.006368959788233042,
- 0.030286138877272606,
- -0.03201843798160553,
- -0.052179377526044846,
- -0.07693808525800705,
- 0.0018634183797985315,
- 0.0005664139171130955,
- -0.015683209523558617,
- -0.025277558714151382,
- -0.04012562334537506,
- -0.01187078282237053,
- 0.004842342343181372,
- 0.04024457558989525,
- 0.025087561458349228,
- -0.005696356296539307,
- 0.009133361279964447,
- 0.04689556360244751,
- -0.10636139661073685,
- -0.0030882637947797775,
- 0.0003270185843575746,
- -0.055843155831098557,
- -0.031087983399629593,
- 0.011902942322194576,
- 0.005780186038464308,
- -0.05923399329185486,
- 0.010197998955845833,
- 0.012061629444360733,
- 0.04749917984008789,
- 0.020899176597595215,
- -0.05101308971643448,
- 0.11298146098852158,
- -0.016445953398942947,
- 0.0030376550275832415,
- 0.02440476417541504
- ]
- },
- {
- "keyword": "link",
- "type": "relatedTo",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.0289839506149292,
- -0.05226976051926613,
- -0.048325661569833755,
- 0.01989945024251938,
- 0.05770796537399292,
- -0.031603023409843445,
- -0.0018319168593734503,
- 0.09806296229362488,
- -0.030291873961687088,
- 0.006752233486622572,
- 0.051508259028196335,
- 0.010251994244754314,
- -0.049391597509384155,
- -0.017732009291648865,
- -0.16205422580242157,
- -0.00587530666962266,
- -0.10467980802059174,
- 0.03637498617172241,
- -0.09808722138404846,
- -0.01848367415368557,
- -0.024005131796002388,
- 0.054004788398742676,
- -0.017385179176926613,
- 0.04912908747792244,
- -0.029024407267570496,
- 0.03052556701004505,
- -0.005099376663565636,
- 0.05230996012687683,
- 0.03792598843574524,
- -0.047734640538692474,
- -0.039249222725629807,
- 0.03615402802824974,
- 0.01593143492937088,
- 0.0049865879118442535,
- 0.012011191807687283,
- -0.009546768851578236,
- -0.009583857841789722,
- -0.021639103069901466,
- -0.012662474066019058,
- -0.05700894072651863,
- 0.06836103647947311,
- -0.004407010041177273,
- 0.010045409202575684,
- -0.008175220340490341,
- -0.003909229300916195,
- 0.06605391204357147,
- -0.039375193417072296,
- -0.018283383920788765,
- 0.009375270456075668,
- 0.041146714240312576,
- -0.12117193639278412,
- 0.07481790333986282,
- -0.040603745728731155,
- -0.11519376933574677,
- -0.056944914162158966,
- -0.02710924670100212,
- -0.03177269920706749,
- 0.03202579915523529,
- 0.01573452353477478,
- 0.03880641981959343,
- 0.15582269430160522,
- 0.030425485223531723,
- -0.05709061399102211,
- 0.02352994494140148,
- -0.016045812517404556,
- 0.015692006796598434,
- -0.0019462112104520202,
- -0.004588539246469736,
- -0.07256339490413666,
- -0.0842122882604599,
- -0.031268030405044556,
- 0.026504989713430405,
- -0.00474822660908103,
- 0.04968779906630516,
- 0.07790152728557587,
- -0.0033442203421145678,
- 0.09718165546655655,
- 0.0014318431494757533,
- -0.052925340831279755,
- -0.07879579812288284,
- -0.04837644845247269,
- 0.008446580730378628,
- -0.018455393612384796,
- 0.02075440250337124,
- 0.05146491900086403,
- 0.021577557548880577,
- -0.003293127752840519,
- -0.045016609132289886,
- -0.027462774887681007,
- 0.025373416021466255,
- -0.06280803680419922,
- 0.07524067908525467,
- 0.017503179609775543,
- -0.028199760243296623,
- -0.014309165067970753,
- -0.022145915776491165,
- 0.005438142456114292,
- 0.012067530304193497,
- -0.07681629806756973,
- 0.3341066241264343,
- 0.005399012938141823,
- -0.024690527468919754,
- 0.04227721691131592,
- 0.010493408888578415,
- -0.0459631010890007,
- 0.033064164221286774,
- 0.013818909414112568,
- 0.11201564967632294,
- -0.010016054846346378,
- -0.07018153369426727,
- -0.07880562543869019,
- 0.027688050642609596,
- -0.018287602812051773,
- -0.01820727437734604,
- -0.013136536814272404,
- -0.015071273781359196,
- 0.025198912248015404,
- 0.045080386102199554,
- 0.033816561102867126,
- -0.08648554980754852,
- 0.0879257470369339,
- -0.02901151403784752,
- -0.031030310317873955,
- 0.023033136501908302,
- -0.053847648203372955,
- -0.01628798618912697,
- 0.016083678230643272,
- 1.4730709294039419e-33,
- 0.09935801476240158,
- -0.030243350192904472,
- 0.07793905586004257,
- -0.009182481095194817,
- 0.06985866278409958,
- -0.04866422340273857,
- 0.03891172260046005,
- 0.013781591318547726,
- -0.008503643795847893,
- 0.07874316722154617,
- -0.07838273048400879,
- 0.0034528791438788176,
- -0.08482243120670319,
- 0.044071733951568604,
- -0.014370960183441639,
- -0.023886971175670624,
- -0.002195874461904168,
- 0.04321147873997688,
- -0.04241359606385231,
- -0.0005336974863894284,
- -0.053311705589294434,
- 0.009803028777241707,
- 0.0060552991926670074,
- -0.026560740545392036,
- 0.07784891128540039,
- 0.04426753893494606,
- 0.013013238087296486,
- -0.0794917494058609,
- -0.005112393759191036,
- 0.02637614496052265,
- -0.06048073247075081,
- 0.06876519322395325,
- 0.034821972250938416,
- 0.010821903124451637,
- 0.05159635841846466,
- -0.005236671771854162,
- -0.018214398995041847,
- 0.01240184810012579,
- -0.025799471884965897,
- 0.07937522232532501,
- -0.014764524064958096,
- -0.015687067061662674,
- -0.030884461477398872,
- -0.05564526841044426,
- -0.024186749011278152,
- -0.06936406344175339,
- -0.0489158108830452,
- -0.024620044976472855,
- 0.026020674034953117,
- -0.005855013150721788,
- 0.06137649342417717,
- 0.006850900128483772,
- -0.07027499377727509,
- 0.00028205581475049257,
- -0.08393402397632599,
- 0.03549859672784805,
- -0.009952603839337826,
- 0.056259796023368835,
- -0.016262950375676155,
- -0.005956676788628101,
- -0.01739085465669632,
- 0.05722924694418907,
- -0.027094727382063866,
- -0.04108786955475807,
- -0.06776297092437744,
- -0.027486728504300117,
- -0.01866992563009262,
- -0.039637114852666855,
- 0.0060907467268407345,
- -0.0453031025826931,
- -0.026319783180952072,
- -0.0026885229162871838,
- 0.02651352807879448,
- -0.057951509952545166,
- -0.0484626442193985,
- -0.04584180563688278,
- -0.0013189136516302824,
- 0.04369503632187843,
- -0.032305408269166946,
- 0.024103259667754173,
- -0.04224973917007446,
- -0.06183850020170212,
- 0.034527067095041275,
- 0.012734901160001755,
- -0.0017336159944534302,
- -0.034869685769081116,
- -0.008265863172709942,
- -0.1379746049642563,
- -0.019346799701452255,
- -0.05139797180891037,
- 0.010873083025217056,
- 0.0028967505786567926,
- 0.03139913082122803,
- 0.03131330385804176,
- 0.002705320483073592,
- -1.5579653150913198e-33,
- 0.02661316655576229,
- 0.035461295396089554,
- 0.016958562657237053,
- 0.05444356054067612,
- 0.09464994817972183,
- 0.02961202710866928,
- 0.09122331440448761,
- 0.052562978118658066,
- 0.04123999923467636,
- -0.0009639468044042587,
- 0.06971241533756256,
- 0.02422020211815834,
- 0.015838198363780975,
- -0.008653153665363789,
- 0.0016361313173547387,
- -0.029999999329447746,
- 0.013187429867684841,
- 0.048691026866436005,
- -0.07124930620193481,
- 0.0188154224306345,
- -0.007868369109928608,
- -0.025212541222572327,
- 0.005638839211314917,
- 0.015247127041220665,
- 0.018563084304332733,
- 0.014918471686542034,
- 0.10566127300262451,
- 0.048264577984809875,
- -0.002266461728140712,
- 0.008121629245579243,
- 0.00840090587735176,
- -0.0004427511303219944,
- -0.10516329854726791,
- 0.053570423275232315,
- -0.003842890029773116,
- 0.04654759168624878,
- 0.07034992426633835,
- -0.030696982517838478,
- 0.013702486641705036,
- 0.006756129674613476,
- 0.08143255114555359,
- -0.013741923496127129,
- -0.030431903898715973,
- 0.017820313572883606,
- -0.015304097905755043,
- -0.08910928666591644,
- 0.07905644178390503,
- 0.0361897349357605,
- -0.009324916638433933,
- 0.030442627146840096,
- -0.033089421689510345,
- 0.03139915317296982,
- 0.024156443774700165,
- -0.047051336616277695,
- 0.003197607584297657,
- -0.04530627280473709,
- 0.03495531156659126,
- 0.013111631385982037,
- 0.051086362451314926,
- -0.031855788081884384,
- -0.030270691961050034,
- 0.011268962174654007,
- -0.05823451653122902,
- 0.013213636353611946,
- 0.0007776847342029214,
- 0.03224863111972809,
- -0.049041613936424255,
- -0.0048028468154370785,
- 0.005225785076618195,
- 0.019541332498192787,
- 0.02909914404153824,
- -0.007110892329365015,
- -0.08047842979431152,
- 0.023579256609082222,
- 0.05683059245347977,
- -0.03876977413892746,
- 0.0006384958396665752,
- 0.09565233439207077,
- -0.06653643399477005,
- -0.003452683100476861,
- 0.04777535796165466,
- -0.014571077190339565,
- -0.053156282752752304,
- -0.02626083604991436,
- 0.05551392212510109,
- -0.006181012839078903,
- 0.08626066893339157,
- 0.08931827545166016,
- -0.027323255315423012,
- -0.024827565997838974,
- -0.10170593857765198,
- 0.007757334504276514,
- -0.0127358203753829,
- 0.05759627744555473,
- 0.031999338418245316,
- -1.899707058328204e-8,
- -0.006361245643347502,
- 0.02323894016444683,
- 0.01421672385185957,
- -0.027403846383094788,
- 0.09623360633850098,
- 0.07177025824785233,
- 0.07789601385593414,
- -0.0208059623837471,
- -0.0077574774622917175,
- 0.004402026999741793,
- 0.037293095141649246,
- -0.011571573093533516,
- 0.039143163710832596,
- 0.09197011590003967,
- 0.027298441156744957,
- -0.04178176820278168,
- -0.12718665599822998,
- 0.1391395628452301,
- 0.001646273536607623,
- -0.019444664940238,
- 0.004612514283508062,
- -0.014215104281902313,
- 0.056863658130168915,
- -0.05280478298664093,
- 0.03087923862040043,
- 0.018786797299981117,
- -0.04987824335694313,
- 0.09988385438919067,
- -0.06380954384803772,
- -0.047878481447696686,
- 0.01932479254901409,
- 0.06083715334534645,
- -0.008743594400584698,
- -0.05713088810443878,
- 0.04016946256160736,
- 0.07481514662504196,
- -0.07178259640932083,
- -0.01582612842321396,
- -0.025624563917517662,
- -0.033751215785741806,
- 0.03542245924472809,
- -0.0831790491938591,
- 0.111979641020298,
- 0.002181949559599161,
- -0.015374308452010155,
- -0.000208152923732996,
- -0.09004649519920349,
- -0.04021988436579704,
- -0.045071907341480255,
- 0.11339033395051956,
- 0.01804935187101364,
- -0.021827692165970802,
- 0.015519068576395512,
- 0.006407235749065876,
- 0.038802362978458405,
- 0.03395233303308487,
- 0.024734579026699066,
- -0.08328661322593689,
- -0.02582119032740593,
- 0.07915154099464417,
- 0.11498302966356277,
- 0.06794264912605286,
- -0.028295960277318954,
- 0.023567043244838715
- ]
- },
- {
- "keyword": "relationship",
- "type": "relatedTo",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.07083650678396225,
- 0.0707155391573906,
- -0.02242058515548706,
- 0.032295092940330505,
- -0.11476590484380722,
- 0.0405249297618866,
- 0.09439648687839508,
- -0.01742635667324066,
- 0.08433189988136292,
- -0.06370110809803009,
- 0.0198819637298584,
- -0.08560501784086227,
- 0.03022206760942936,
- 0.051207032054662704,
- -0.010211726650595665,
- 0.01483086682856083,
- -0.02524237148463726,
- -0.038759343326091766,
- -0.13549450039863586,
- -0.008673309348523617,
- -0.07649245113134384,
- -0.04567071050405502,
- -0.03099602647125721,
- 0.009020398370921612,
- -0.055695079267024994,
- 0.014031601138412952,
- 0.03217709809541702,
- -0.01322442851960659,
- -0.028275199234485626,
- -0.04231945425271988,
- 0.014411027543246746,
- 0.02800428681075573,
- 0.07162190228700638,
- -0.04111069068312645,
- -0.05552401393651962,
- 0.00447221752256155,
- -0.02896755188703537,
- 0.05370509624481201,
- 0.005714223254472017,
- -0.07100781798362732,
- -0.056997038424015045,
- -0.004152292385697365,
- 0.03506620228290558,
- 0.030143197625875473,
- -0.01244265679270029,
- 0.025911269709467888,
- 0.08636235445737839,
- 0.015619744546711445,
- -0.04763168841600418,
- 0.019628049805760384,
- -0.13872891664505005,
- 0.014470338821411133,
- -0.08975158631801605,
- 0.06786730140447617,
- 0.11775678396224976,
- 0.08188880234956741,
- 0.0010914620943367481,
- -0.02105768956243992,
- -0.042389560490846634,
- 0.02799656055867672,
- 0.03384323790669441,
- 0.03896607831120491,
- -0.022150540724396706,
- -0.005718988366425037,
- 0.021065548062324524,
- 0.032484021037817,
- -0.06377615034580231,
- 0.010840821079909801,
- -0.05065581575036049,
- 0.04727237671613693,
- -0.014406567439436913,
- 0.0021575402934104204,
- -0.06900910288095474,
- 0.03266895189881325,
- -0.007082461845129728,
- 0.0007451012497767806,
- 0.02352241985499859,
- -0.043750833719968796,
- 0.07965033501386642,
- -0.025068184360861778,
- -0.010365042835474014,
- 0.0013306279433891177,
- -0.02521676942706108,
- -0.013499255292117596,
- -0.0545496828854084,
- -0.03963766619563103,
- 0.03266394883394241,
- -0.043849293142557144,
- -0.03001202829182148,
- 0.007766475901007652,
- -0.006696788128465414,
- -0.03361652418971062,
- 0.06663002073764801,
- 0.011976556852459908,
- -0.1113877147436142,
- 0.023623837158083916,
- 0.013369699940085411,
- -0.039101772010326385,
- -0.05776333063840866,
- 0.27000483870506287,
- 0.0050415173172950745,
- 0.11089502274990082,
- -0.07046841830015182,
- 0.050339359790086746,
- -0.01169871911406517,
- 0.061189204454422,
- -0.027673466131091118,
- 0.0012666048714891076,
- -0.004753097426146269,
- -0.005354196764528751,
- -0.015731438994407654,
- -0.03650650754570961,
- -0.1363939642906189,
- 0.046189066022634506,
- 0.053380828350782394,
- -0.05868144333362579,
- 0.038986656814813614,
- -0.006711082998663187,
- 0.08002050966024399,
- -0.03991464525461197,
- 0.0019247360760346055,
- -0.00028721033595502377,
- -0.03918656334280968,
- 0.036164287477731705,
- -0.08214369416236877,
- -0.15917330980300903,
- 0.011893763206899166,
- -4.482472935056289e-33,
- 0.03651077672839165,
- -0.03697976842522621,
- 0.041527748107910156,
- 0.016860036179423332,
- -0.026610326021909714,
- 0.025461377575993538,
- -0.02490372024476528,
- 0.053089842200279236,
- -0.049003716558218,
- 0.05471166595816612,
- -0.038613203912973404,
- 0.1002776101231575,
- -0.029695745557546616,
- 0.014841879718005657,
- 0.09316138923168182,
- 0.03254041448235512,
- -0.002898894250392914,
- 0.055551670491695404,
- -0.03456033021211624,
- 0.01886044628918171,
- -0.07691021263599396,
- 0.03131946921348572,
- -0.08446681499481201,
- 0.04596264287829399,
- 0.02217162773013115,
- -0.0674082562327385,
- 0.011999951675534248,
- 0.0139812882989645,
- -0.04565967619419098,
- -0.014376012608408928,
- -0.009604331105947495,
- 0.09516827762126923,
- 0.039786189794540405,
- -0.0964658111333847,
- 0.003251687390729785,
- -0.0678500235080719,
- 0.020624050870537758,
- -0.05527471750974655,
- -0.020655862987041473,
- -0.00877772644162178,
- 0.053098998963832855,
- 0.009701443836092949,
- -0.08388250321149826,
- 0.0008908702875487506,
- -0.06826923787593842,
- 0.05041716620326042,
- 0.06668978929519653,
- -0.019453110173344612,
- -0.056299470365047455,
- 0.03452538698911667,
- -0.07796920835971832,
- 0.018666695803403854,
- -0.03161567822098732,
- 0.01834690012037754,
- -0.08756712079048157,
- 0.0028863991610705853,
- 0.050163667649030685,
- 0.011206498369574547,
- -0.04327840730547905,
- -0.01485192310065031,
- 0.07540322840213776,
- -0.029368584975600243,
- -0.022319167852401733,
- -0.030838752165436745,
- 0.019965756684541702,
- -0.01500334870070219,
- 0.03338445723056793,
- -0.05318991839885712,
- 0.0015856922836974263,
- -0.01771748811006546,
- -0.10462597757577896,
- 0.034292854368686676,
- -0.020186850801110268,
- -0.01033350732177496,
- -0.02279376983642578,
- 0.012552954256534576,
- -0.008467074483633041,
- -0.013449426740407944,
- -0.004777886439114809,
- -0.009537378326058388,
- -0.07612966001033783,
- 0.010997348465025425,
- 0.05623876303434372,
- -0.008051758632063866,
- -0.08860126882791519,
- 0.011345259845256805,
- -0.0054286178201437,
- -0.03011690080165863,
- 0.07521948963403702,
- 0.11230884492397308,
- -0.049063555896282196,
- 0.016490433365106583,
- 0.003070508362725377,
- 0.06663790345191956,
- 0.09832224994897842,
- 2.866426076748855e-33,
- 0.03246660530567169,
- 0.05402999371290207,
- -0.039176858961582184,
- -0.011346681043505669,
- 0.13035264611244202,
- -0.023395854979753494,
- 0.058442678302526474,
- -0.015846101567149162,
- -0.019830970093607903,
- 0.10322262346744537,
- -0.004158884286880493,
- -0.08240759372711182,
- 0.12411670386791229,
- 0.08024407923221588,
- 0.08974917978048325,
- 0.018299318850040436,
- 0.08151201903820038,
- -0.05363266170024872,
- 0.02719164453446865,
- 0.035779524594545364,
- 0.002296647522598505,
- -0.010330645367503166,
- 0.0006152683636173606,
- -0.05174149572849274,
- -0.04690421745181084,
- 0.019276868551969528,
- 0.08912986516952515,
- -0.042112693190574646,
- -0.03362567722797394,
- -0.019119594246149063,
- 0.02525191940367222,
- -0.01625540852546692,
- -0.04826375097036362,
- -0.019523920491337776,
- 0.02334010601043701,
- 0.03091556578874588,
- -0.008920975960791111,
- -0.05672109127044678,
- 0.020880239084362984,
- -0.044943667948246,
- 0.03528154268860817,
- -0.021743109449744225,
- 0.04031774029135704,
- 0.09577658772468567,
- 0.032250188291072845,
- -0.004028947092592716,
- 0.0745651125907898,
- -0.004889834206551313,
- 0.10030269622802734,
- 0.03728029504418373,
- -0.04159871116280556,
- -0.00800990592688322,
- -0.0024041070137172937,
- -0.04998908191919327,
- 0.06582228094339371,
- -0.030676616355776787,
- 0.07493867725133896,
- 0.010769412852823734,
- -0.007581481710076332,
- 0.011267771013081074,
- 0.015170424245297909,
- 0.030341798439621925,
- -0.03672926872968674,
- 0.07781816273927689,
- -0.005768504925072193,
- 0.03235846012830734,
- -0.03528406471014023,
- 0.013241427019238472,
- 0.03443022444844246,
- -0.04018814116716385,
- 0.0027323015965521336,
- -0.010911810211837292,
- -0.011630924418568611,
- 0.05945985019207001,
- 0.008477043360471725,
- -0.09167376160621643,
- -0.1246238499879837,
- -0.10420452058315277,
- 0.03864692151546478,
- -0.03539610654115677,
- -0.05833769589662552,
- 0.06350129097700119,
- 0.030223576352000237,
- 0.01248258538544178,
- -0.069298654794693,
- -0.019460948184132576,
- 0.04850359633564949,
- 0.006241242401301861,
- 0.027710042893886566,
- -0.031123578548431396,
- 0.020854946225881577,
- -0.004692352842539549,
- -0.08705329149961472,
- -0.030092330649495125,
- -0.04441413655877113,
- -1.3510028651353423e-8,
- -0.055587463080883026,
- -0.023721007630228996,
- -0.019871849566698074,
- -0.03877417743206024,
- 0.040862224996089935,
- 0.045997243374586105,
- 0.11395967751741409,
- -0.0005663703195750713,
- -0.037534210830926895,
- 0.10373019427061081,
- -0.01899660751223564,
- 0.016687145456671715,
- 0.01080338191241026,
- 0.0847722515463829,
- 0.01657399907708168,
- -0.02396681345999241,
- 0.051615480333566666,
- -0.05119270458817482,
- -0.02736227959394455,
- 0.04637641832232475,
- 0.02139407768845558,
- -0.012772856280207634,
- -0.020160647109150887,
- 0.04401977360248566,
- -0.025218313559889793,
- 0.009108196943998337,
- 0.02049217000603676,
- 0.05923875421285629,
- 0.012138158082962036,
- -0.011396176181733608,
- 0.02654162421822548,
- 0.000688489992171526,
- 0.007230190560221672,
- -0.08151916414499283,
- 0.034041982144117355,
- -0.03147205710411072,
- -0.01739194616675377,
- -0.008543651551008224,
- 0.01659032516181469,
- 0.005627055652439594,
- -0.03481624275445938,
- 0.0051819998770952225,
- 0.0031720087863504887,
- 0.06826268881559372,
- -0.0027091754600405693,
- 0.009238571859896183,
- 0.08637914806604385,
- -0.08795373886823654,
- -0.06791521608829498,
- -0.006245152093470097,
- -0.04787520691752434,
- 0.002726454520598054,
- 0.00075586570892483,
- -0.0034210255835205317,
- -0.05601872131228447,
- -0.028687220066785812,
- -0.0021559239830821753,
- 0.04733897000551224,
- 0.000947101681958884,
- 0.013567272573709488,
- 0.09965793788433075,
- -0.010671080090105534,
- 0.03370868042111397,
- 0.0032055338378995657
- ]
- },
- {
- "keyword": "contains",
- "type": "contains",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.01652875915169716,
- 0.05374881625175476,
- 0.07961241900920868,
- 0.0018350266618654132,
- 0.11258648335933685,
- 0.039539121091365814,
- 0.16460230946540833,
- -0.04417135939002037,
- 0.020771680399775505,
- -0.027164719998836517,
- -0.030259910970926285,
- -0.13814279437065125,
- 0.08836862444877625,
- -0.015266936272382736,
- 0.043521516025066376,
- -0.019450997933745384,
- 0.039863310754299164,
- -0.03897036612033844,
- -0.051222048699855804,
- -0.06206679344177246,
- -0.056162092834711075,
- 0.028830889612436295,
- 0.027611296623945236,
- 0.04700706899166107,
- -0.055960558354854584,
- 0.1006522998213768,
- -0.040212444961071014,
- -0.07681901752948761,
- 0.08402832597494125,
- -0.03920476511120796,
- -0.034157540649175644,
- 0.04501691833138466,
- 0.025342220440506935,
- 0.04772742837667465,
- 0.00986225251108408,
- -0.020601527765393257,
- -0.03197307512164116,
- -0.0317775122821331,
- 0.019155219197273254,
- -0.02153957635164261,
- -0.04950208589434624,
- -0.050638239830732346,
- 0.06504449248313904,
- 0.03217992186546326,
- 0.03591592237353325,
- 0.0307309590280056,
- -0.01869274117052555,
- -0.002372641582041979,
- 0.045105136930942535,
- -0.05851602181792259,
- -0.10846268385648727,
- -0.0443006195127964,
- -0.07395792007446289,
- -0.0001372799015371129,
- 0.03143569454550743,
- -0.03809494152665138,
- -0.02047399990260601,
- -0.013523442670702934,
- -0.004997435491532087,
- -0.034792475402355194,
- 0.0861576721072197,
- -0.007362085860222578,
- -0.06363165378570557,
- -0.007567933760583401,
- 0.09017474204301834,
- -0.02087211236357689,
- -0.011421555653214455,
- 0.0057378532364964485,
- -0.038876961916685104,
- 0.021604061126708984,
- 0.05060771852731705,
- 0.03847118467092514,
- -0.004465177655220032,
- 0.11571803689002991,
- -0.03629056736826897,
- 0.054154615849256516,
- 0.060052290558815,
- -0.09429754316806793,
- 0.08803732693195343,
- -0.002686623716726899,
- -0.08292239904403687,
- -0.06760574877262115,
- -0.03252486512064934,
- 0.01461626123636961,
- 0.05522101745009422,
- -0.023500725626945496,
- -0.017982034012675285,
- -0.08900999277830124,
- -0.09337189793586731,
- -0.011097708716988564,
- 0.0024098935537040234,
- -0.0737089142203331,
- 0.05401865765452385,
- -0.037856459617614746,
- 0.02920224331319332,
- 0.02941695600748062,
- 0.03632158786058426,
- 0.039343368262052536,
- 0.03038283996284008,
- 0.19713258743286133,
- -0.008289595134556293,
- 0.09687086939811707,
- 0.01660500466823578,
- -0.04404027387499809,
- -0.09600852429866791,
- -0.022943077608942986,
- 0.017468782141804695,
- 0.056624047458171844,
- 0.04036673158407211,
- -0.08470038324594498,
- -0.005963114555925131,
- -0.021861817687749863,
- 0.02028387039899826,
- 0.048671651631593704,
- 0.046034105122089386,
- -0.05131058394908905,
- 0.16464293003082275,
- 0.021624501794576645,
- -0.037269704043865204,
- 0.04205460846424103,
- -0.03279786556959152,
- 0.01992623880505562,
- 0.022512545809149742,
- -0.0010549577418714762,
- -0.0287336278706789,
- -0.05874324589967728,
- -0.047518450766801834,
- -4.735641724786777e-33,
- -0.015693429857492447,
- -0.07278306037187576,
- -0.0041362750343978405,
- -0.05134398117661476,
- -0.03993447870016098,
- 0.022777417674660683,
- -0.0034114315640181303,
- -0.010634955950081348,
- -0.053489431738853455,
- 0.07213953137397766,
- -0.08362888544797897,
- 0.01391684077680111,
- -0.05566166713833809,
- 0.020161913707852364,
- 0.07542417198419571,
- -0.024745523929595947,
- 0.013796360231935978,
- 0.015689462423324585,
- -0.04493041709065437,
- -0.052307866513729095,
- -0.07961057871580124,
- -0.03323341906070709,
- -0.005305920261889696,
- -0.016078047454357147,
- -0.04768640920519829,
- -0.06232617422938347,
- -0.003015283029526472,
- -0.09380806982517242,
- 0.06859639286994934,
- 0.0020698453299701214,
- 0.041639965027570724,
- 0.007092357613146305,
- -0.028467677533626556,
- 0.10808590054512024,
- 0.012683355249464512,
- 0.025663601234555244,
- -0.008051041513681412,
- -0.023516986519098282,
- 0.016498317942023277,
- -0.06516050547361374,
- -0.05415473133325577,
- -0.02924763225018978,
- -0.006376874633133411,
- -0.04107147827744484,
- 0.03613552078604698,
- -0.0008589320932514966,
- -0.05883488431572914,
- 0.044066958129405975,
- -0.014088345691561699,
- -0.01269595418125391,
- 0.0863613709807396,
- 0.04227045178413391,
- -0.07885343581438065,
- -0.045670170336961746,
- 0.013584878295660019,
- 0.002249854151159525,
- 0.05741386115550995,
- 0.09869878739118576,
- 0.09067345410585403,
- 0.05460704490542412,
- 0.023002125322818756,
- 0.014976822771131992,
- -0.07404230535030365,
- 0.025642884895205498,
- -0.03173690661787987,
- 0.037903327494859695,
- -0.002359907841309905,
- -0.023422984406352043,
- 0.05132036283612251,
- 0.004561225418001413,
- -0.03361291438341141,
- -0.023647570982575417,
- 0.07811369001865387,
- 0.0885935053229332,
- -0.009214943274855614,
- -0.061751604080200195,
- 0.0051733278669416904,
- 0.011608084663748741,
- -0.03130073472857475,
- -0.02658930793404579,
- -0.07210201770067215,
- -0.08273369818925858,
- 0.01038131583482027,
- 0.06754259765148163,
- -0.02286534197628498,
- 0.06965039670467377,
- 0.02395770326256752,
- -0.0830225944519043,
- 0.018702328205108643,
- -0.04493160918354988,
- -0.015465114265680313,
- -0.04600390046834946,
- -0.08389825373888016,
- -0.016442516818642616,
- -0.001309145474806428,
- 3.181223096557079e-33,
- -0.0007972880848683417,
- -0.018800022080540657,
- 0.017289843410253525,
- -0.0238381065428257,
- 0.013204596936702728,
- -0.08362682908773422,
- 0.042977288365364075,
- -0.0520959347486496,
- 0.09123307466506958,
- -0.010821142233908176,
- 0.05785303935408592,
- -0.03498820960521698,
- -0.05251366272568703,
- -0.03376179561018944,
- -0.05747145041823387,
- 0.06017875671386719,
- 0.07562308758497238,
- 0.002232384169474244,
- -0.011398285627365112,
- 0.050078120082616806,
- -0.037603553384542465,
- -0.017789890989661217,
- -0.011601339094340801,
- 0.07215621322393417,
- -0.008302674628794193,
- 0.050036944448947906,
- 0.04196855425834656,
- -0.01067877747118473,
- -0.004677054472267628,
- -0.0029049229342490435,
- 0.02385682985186577,
- -0.03737260028719902,
- -0.05856279283761978,
- -0.000915986078325659,
- -0.08154215663671494,
- -0.03374449536204338,
- 0.026970332488417625,
- 0.030731013044714928,
- -0.038011543452739716,
- 0.06030314415693283,
- 0.06175116449594498,
- -0.016515256837010384,
- -0.018374942243099213,
- 0.21913035213947296,
- 0.014850749634206295,
- -0.0037175051402300596,
- 0.010631362907588482,
- 0.04447221755981445,
- 0.05962079018354416,
- 0.037767764180898666,
- 0.0314471535384655,
- -0.018045037984848022,
- -0.018609875813126564,
- 0.02175593376159668,
- 0.04490260034799576,
- 0.01019549835473299,
- -0.06134486198425293,
- -0.03794688358902931,
- -0.07400393486022949,
- -0.040875356644392014,
- -0.05383913218975067,
- 0.08420204371213913,
- -0.004340690560638905,
- 0.01565295085310936,
- -0.0036709466949105263,
- -0.05443543195724487,
- -0.020799526944756508,
- 0.05207529291510582,
- 0.0345277264714241,
- -0.016026413068175316,
- 0.03559686243534088,
- -0.023599693551659584,
- -0.059614673256874084,
- -0.022366667166352272,
- -0.06659679114818573,
- 0.01320489589124918,
- -0.06290062516927719,
- 0.0030670901760458946,
- 0.03215082734823227,
- 0.011320807971060276,
- -0.03785029053688049,
- -0.036008939146995544,
- -0.024676840752363205,
- 0.052499204874038696,
- -0.048111673444509506,
- 0.038563404232263565,
- 0.02223116159439087,
- 0.007412750739604235,
- -0.060383256524801254,
- -0.023608887568116188,
- 0.07170175015926361,
- 0.03334273397922516,
- 0.009033369831740856,
- -0.0008928694878704846,
- -0.007889038883149624,
- -1.2476791155791034e-8,
- -0.013022759929299355,
- 0.010425846092402935,
- -0.06512448191642761,
- -0.035013481974601746,
- 0.09485886991024017,
- 0.09651298075914383,
- 0.07487145811319351,
- -0.028864527121186256,
- -0.006435059010982513,
- 0.04892837628722191,
- 0.025424884632229805,
- -0.018699483945965767,
- -0.03273668512701988,
- 0.06055259704589844,
- 0.01121593452990055,
- -0.07622599601745605,
- -0.038503844290971756,
- 0.02771652117371559,
- -0.0817064419388771,
- 0.04501768946647644,
- 0.013578743673861027,
- -0.003303531091660261,
- 0.008403098210692406,
- -0.020379170775413513,
- -0.009418838657438755,
- 0.01396755687892437,
- -0.03122228942811489,
- -0.06870831549167633,
- 0.02355928160250187,
- 0.07691733539104462,
- 0.06272517144680023,
- 0.03857436403632164,
- -0.00972653552889824,
- -0.08068208396434784,
- 0.008707640692591667,
- 0.004721926990896463,
- 0.01606898196041584,
- -0.03700483590364456,
- -0.03944041579961777,
- 0.019335785880684853,
- 0.014502909034490585,
- -0.05324636772274971,
- 0.018802721053361893,
- -0.005597678944468498,
- -0.005782392807304859,
- -0.06413428485393524,
- 0.02626132406294346,
- -0.05433157458901405,
- -0.027226688340306282,
- 0.030154673382639885,
- -0.036355167627334595,
- -0.03231709077954292,
- 0.052018191665410995,
- 0.0677388608455658,
- 0.004439618904143572,
- 0.00496011134237051,
- 0.005097587592899799,
- 0.022877447307109833,
- -0.020370015874505043,
- -0.02828422375023365,
- 0.10368148237466812,
- -0.024566730484366417,
- 0.18145610392093658,
- 0.08248303830623627
- ]
- },
- {
- "keyword": "includes",
- "type": "contains",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.0161123163998127,
- 0.062494389712810516,
- 0.08956875652074814,
- 0.04932738468050957,
- 0.06388749182224274,
- 0.025038907304406166,
- 0.07340935617685318,
- -0.023125268518924713,
- -0.03677528724074364,
- -0.062139421701431274,
- 0.007049953565001488,
- -0.07888439297676086,
- 0.017292732372879982,
- -0.005156029015779495,
- 0.038445845246315,
- -0.0222791638225317,
- 0.005944362375885248,
- 0.034816984087228775,
- -0.0612889900803566,
- -0.1047905832529068,
- -0.10737572610378265,
- 0.028435833752155304,
- 0.044908441603183746,
- 0.025970052927732468,
- 0.007322211284190416,
- 0.031062066555023193,
- -0.0421665720641613,
- 0.009790930896997452,
- 0.030859148129820824,
- -0.0455143116414547,
- 0.00045680379844270647,
- 0.01763688027858734,
- 0.04656725376844406,
- -0.014012825675308704,
- -0.03243415430188179,
- -0.03317134082317352,
- 0.008042124100029469,
- -0.013193597085773945,
- -0.0055326297879219055,
- 0.0044503286480903625,
- -0.04054129123687744,
- 0.028355518355965614,
- 0.04518090561032295,
- 0.09279263764619827,
- 0.049897436052560806,
- -0.03432801365852356,
- 0.01642599143087864,
- -0.04390078783035278,
- 0.003813628340139985,
- 0.038509733974933624,
- 0.002471098443493247,
- 0.0025413059629499912,
- -0.04629477486014366,
- 0.05423107370734215,
- 0.025660833343863487,
- 0.019885504618287086,
- -0.054927680641412735,
- 0.008991993963718414,
- -0.022586723789572716,
- -0.011119780130684376,
- -0.034630630165338516,
- 0.012506174854934216,
- -0.09285266697406769,
- 0.015170970931649208,
- 0.0057517774403095245,
- -0.04075229540467262,
- -0.048329781740903854,
- 0.03221491351723671,
- -0.09187233448028564,
- 0.026941558346152306,
- -0.03170741721987724,
- 0.010612603276968002,
- 0.025942914187908173,
- 0.042209334671497345,
- 0.013953407295048237,
- 0.04373388737440109,
- 0.07576954364776611,
- -0.022078020498156548,
- 0.04534614458680153,
- -0.0563451312482357,
- -0.04815404489636421,
- -0.001061617978848517,
- -0.04306545853614807,
- -0.062117818742990494,
- 0.10162731260061264,
- 0.016168422996997833,
- 0.04085685685276985,
- -0.043122317641973495,
- -0.0787564069032669,
- 0.019718248397111893,
- 0.0014860618393868208,
- -0.10919717699289322,
- 0.01774481311440468,
- -0.013645871542394161,
- 0.02080041542649269,
- 0.012904899194836617,
- 0.12416176497936249,
- -0.08098256587982178,
- -0.020862137898802757,
- 0.2261490821838379,
- -0.040081508457660675,
- -0.011350019834935665,
- 0.047040313482284546,
- -0.004899336490780115,
- -0.07007662951946259,
- -0.025743458420038223,
- -0.0076151383109390736,
- 0.03471851721405983,
- 0.00254995608702302,
- -0.037091903388500214,
- -0.02264377847313881,
- -0.030535317957401276,
- -0.019508644938468933,
- -0.02269604429602623,
- 0.04292194917798042,
- -0.0627618283033371,
- 0.08924072235822678,
- 0.008133579045534134,
- 0.10296972095966339,
- -0.03222605213522911,
- 0.000007740301953162998,
- -0.03738241270184517,
- 0.0720672607421875,
- 0.04439949616789818,
- -0.05507831647992134,
- -0.100335992872715,
- 0.006192023400217295,
- -4.609928848780072e-33,
- 0.0449717752635479,
- -0.05365212261676788,
- -0.05580567196011543,
- -0.005031869746744633,
- -0.013443266972899437,
- 0.019276130944490433,
- 0.03732818365097046,
- 0.0007254651864059269,
- -0.07866544276475906,
- 0.048901449888944626,
- -0.04173924773931503,
- 0.060640450567007065,
- -0.02590952441096306,
- 0.09328759461641312,
- 0.06311815232038498,
- 0.049993615597486496,
- 0.04519686475396156,
- 0.11793509125709534,
- -0.02366405725479126,
- -0.0375913642346859,
- -0.12430256605148315,
- 0.07413818687200546,
- -0.007251106668263674,
- 0.06200407072901726,
- -0.04698098823428154,
- -0.010888808406889439,
- 0.02185717038810253,
- -0.06094233691692352,
- -0.008316305465996265,
- 0.017504021525382996,
- 0.02531333453953266,
- 0.008549240417778492,
- -0.03500180318951607,
- 0.02952539175748825,
- 0.0370977520942688,
- 0.08162057399749756,
- 0.002217821776866913,
- -0.0778643861413002,
- 0.023020192980766296,
- -0.016011754050850868,
- -0.0035787245724350214,
- -0.008342385292053223,
- -0.038527052849531174,
- -0.08071713149547577,
- -0.03572510927915573,
- 0.006905667949467897,
- -0.050565194338560104,
- 0.05686858668923378,
- 0.06932930648326874,
- 0.02801966667175293,
- -0.03585895895957947,
- -0.005002789199352264,
- -0.04016844555735588,
- -0.011623462662100792,
- -0.07202814519405365,
- -0.03456855192780495,
- 0.008031275123357773,
- 0.0027307355776429176,
- 0.09969959408044815,
- 0.027661576867103577,
- 0.020696274936199188,
- 0.024768153205513954,
- -0.0626504197716713,
- -0.007656387519091368,
- -0.036797039210796356,
- -0.0030148702207952738,
- 0.06267687678337097,
- 0.0028816256672143936,
- 0.003743822453543544,
- -0.028833050280809402,
- -0.15155966579914093,
- 0.02067170850932598,
- 0.13606640696525574,
- 0.09077395498752594,
- 0.0022423388436436653,
- -0.02220124565064907,
- -0.0023033844772726297,
- -0.02244528755545616,
- -0.004968966357409954,
- 0.05990564823150635,
- -0.0893627405166626,
- -0.03320349007844925,
- -0.03567400574684143,
- 0.01865011639893055,
- 0.02996574342250824,
- 0.039005860686302185,
- 0.03116539865732193,
- -0.09005454927682877,
- -0.01726694591343403,
- -0.021395238116383553,
- -0.056826937943696976,
- -0.010913302190601826,
- -0.032311566174030304,
- 0.005739755928516388,
- -0.041035912930965424,
- 3.396007954971389e-33,
- -0.012682454660534859,
- 0.035010822117328644,
- 0.03501760587096214,
- -0.08921947330236435,
- 0.017282167449593544,
- -0.024947917088866234,
- 0.01202748529613018,
- -0.09801997989416122,
- 0.07534647732973099,
- 0.0050534773617982864,
- -0.017220553010702133,
- -0.028148364275693893,
- 0.03519126772880554,
- -0.0024438558612018824,
- -0.011888840235769749,
- 0.029370427131652832,
- 0.06303718686103821,
- -0.0706072524189949,
- 0.04900717735290527,
- 0.022055143490433693,
- -0.03770114853978157,
- -0.01678435504436493,
- 0.04346075281500816,
- -0.0018186669331043959,
- -0.02721160277724266,
- 0.08986338973045349,
- 0.024235770106315613,
- 0.06958410888910294,
- -0.052952513098716736,
- 0.0019671935588121414,
- 0.06754133850336075,
- -0.01913328282535076,
- -0.09103245288133621,
- 0.02040313370525837,
- -0.09508636593818665,
- 0.00008734461880521849,
- 0.04791925475001335,
- 0.0794769823551178,
- 0.03106330893933773,
- 0.010898544453084469,
- 0.12731404602527618,
- -0.0448201484978199,
- -0.03797769546508789,
- 0.20235967636108398,
- -0.0478399395942688,
- -0.008913201279938221,
- 0.017089061439037323,
- 0.004190901760011911,
- -0.0015749275917187333,
- 0.05450752004981041,
- -0.06271151453256607,
- 0.026538347825407982,
- -0.06020045652985573,
- -0.0105115482583642,
- -0.047253016382455826,
- 0.024677418172359467,
- 0.020019911229610443,
- 0.005140963941812515,
- 0.06511800736188889,
- -0.04763590916991234,
- 0.008059745654463768,
- 0.051110897213220596,
- 0.0030138730071485043,
- -0.063981793820858,
- -0.02916843257844448,
- -0.03154757618904114,
- 0.012563194148242474,
- -0.023281626403331757,
- 0.0244057048112154,
- -0.031156091019511223,
- -0.11382213979959488,
- 0.04267023876309395,
- -0.01913968287408352,
- -0.02069680392742157,
- -0.030277660116553307,
- 0.025068772956728935,
- -0.0415080301463604,
- 0.006646452005952597,
- 0.08032363653182983,
- -0.03996887803077698,
- -0.06749778240919113,
- -0.03409530222415924,
- 0.016788985580205917,
- -0.04364655539393425,
- 0.026370350271463394,
- -0.09158299118280411,
- -0.01949886791408062,
- 0.02489064820110798,
- -0.016622032970190048,
- -0.03538132458925247,
- 0.06455832719802856,
- 0.04075082764029503,
- 0.06922560185194016,
- 0.08012973517179489,
- -0.004158667754381895,
- -1.2605473109772447e-8,
- 0.02467096410691738,
- 0.05390795320272446,
- -0.08787516504526138,
- -0.03631683066487312,
- 0.13505536317825317,
- 0.022108044475317,
- 0.012381060980260372,
- 0.07329738885164261,
- -0.04053555428981781,
- 0.03855697810649872,
- 0.10446655750274658,
- -0.09416832029819489,
- 0.009671355597674847,
- 0.015050769783556461,
- 0.00435051741078496,
- -0.05183779448270798,
- -0.07234979420900345,
- 0.07926860451698303,
- -0.0845506340265274,
- 0.004087000619620085,
- -0.01667916588485241,
- -0.006183236371725798,
- 0.027860647067427635,
- -0.011999120004475117,
- 0.05495942384004593,
- 0.002196522895246744,
- -0.05113598331809044,
- 0.02229171432554722,
- 0.04239601269364357,
- 0.09876132756471634,
- 0.01994997262954712,
- -0.002271226141601801,
- 0.013954196125268936,
- -0.08405663073062897,
- 0.07530517131090164,
- 0.0027538586873561144,
- -0.021417010575532913,
- -0.033720120787620544,
- -0.00071636465145275,
- 0.023192789405584335,
- -0.030070530250668526,
- -0.08161773532629013,
- 0.04356452077627182,
- 0.00845531839877367,
- 0.006301689427345991,
- -0.06738900393247604,
- -0.10726326704025269,
- -0.04262698069214821,
- -0.02095099911093712,
- 0.024327924475073814,
- -0.017273878678679466,
- 0.0039934683591127396,
- 0.06368168443441391,
- 0.038315389305353165,
- -0.007223305758088827,
- 0.06718643754720688,
- 0.04623810201883316,
- -0.0024118132423609495,
- 0.016395319253206253,
- -0.0025359850842505693,
- 0.04679543152451515,
- -0.07655854523181915,
- 0.07038380205631256,
- 0.051520150154829025
- ]
- },
- {
- "keyword": "has",
- "type": "contains",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.0006833545630797744,
- 0.11332176625728607,
- -0.004539480898529291,
- 0.004458650015294552,
- 0.03839967027306557,
- 0.006763805635273457,
- 0.08758579194545746,
- 0.02063366211950779,
- -0.06480664759874344,
- 0.0022729302290827036,
- 0.0025956418830901384,
- -0.004899258725345135,
- 0.018543941900134087,
- -0.00882894080132246,
- 0.006091488990932703,
- 0.001305685844272375,
- 0.02729460969567299,
- -0.03838018327951431,
- 0.005869490094482899,
- -0.07263921946287155,
- -0.03601033240556717,
- -0.01562148705124855,
- 0.13267730176448822,
- 0.004812320694327354,
- 0.03279554843902588,
- -0.011503678746521473,
- -0.02077587880194187,
- 0.02367769554257393,
- -0.006319023203104734,
- -0.06590767204761505,
- 0.05329514294862747,
- 0.013120529241859913,
- 0.00019014478311873972,
- 0.04209762066602707,
- -0.03292512521147728,
- 0.07577908039093018,
- -0.0271206796169281,
- 0.002493073930963874,
- -0.007728444878011942,
- -0.009418835863471031,
- -0.019472748041152954,
- -0.07572425901889801,
- 0.03301301226019859,
- 0.0009400800336152315,
- 0.09498392045497894,
- 0.007884440943598747,
- 0.07283037900924683,
- -0.004250340163707733,
- 0.11965319514274597,
- -0.024016082286834717,
- -0.06081930175423622,
- -0.0979233831167221,
- 0.014842206612229347,
- -0.017772065475583076,
- -0.007737976964563131,
- 0.03107646107673645,
- -0.011127112433314323,
- 0.03586161136627197,
- 0.00812937505543232,
- -0.00005789106944575906,
- 0.09675577282905579,
- -0.006252787075936794,
- -0.10112752765417099,
- 0.03186758980154991,
- -0.04826035350561142,
- 0.0747988149523735,
- -0.05493408069014549,
- 0.056781988590955734,
- -0.11956793814897537,
- 0.06570859253406525,
- 0.004287094343453646,
- 0.015037658624351025,
- 0.020069114863872528,
- 0.011037438176572323,
- -0.046755868941545486,
- 0.02216951735317707,
- 0.061055898666381836,
- 0.00008792773587629199,
- 0.00573749840259552,
- 0.01079630572348833,
- -0.021598806604743004,
- 0.06626631319522858,
- -0.018395598977804184,
- 0.06586066633462906,
- -0.05592189356684685,
- -0.013186585158109665,
- 0.039875101298093796,
- -0.09954936057329178,
- -0.13482515513896942,
- 0.02973020076751709,
- 0.040996383875608444,
- 0.06373132020235062,
- 0.0792287290096283,
- -0.013754447922110558,
- 0.02350235916674137,
- 0.008889048360288143,
- 0.03967203572392464,
- 0.03708942234516144,
- -0.12699183821678162,
- 0.1651402860879898,
- 0.03201356157660484,
- 0.06239508092403412,
- 0.05673589929938316,
- -0.0696960985660553,
- 0.05625631660223007,
- -0.028882086277008057,
- 0.027751676738262177,
- 0.023767463862895966,
- -0.09172137826681137,
- -0.045747317373752594,
- 0.022656794637441635,
- -0.028810182586312294,
- 0.06463392823934555,
- 0.021995095536112785,
- 0.0021677648182958364,
- -0.03694143891334534,
- 0.02667606994509697,
- 0.06712695211172104,
- -0.0341009758412838,
- -0.04501156881451607,
- 0.07123660296201706,
- 0.011243298649787903,
- 0.0686892494559288,
- 0.032992422580718994,
- 0.034573495388031006,
- -0.19909130036830902,
- -0.04825877025723457,
- -4.710495696570781e-33,
- 0.008663568645715714,
- -0.08008083701133728,
- -0.0473184771835804,
- 0.04620533064007759,
- 0.07300271838903427,
- 0.017049619928002357,
- -0.00037685336428694427,
- 0.0200127512216568,
- 0.0038247716147452593,
- 0.0384865365922451,
- 0.0741724818944931,
- 0.01857738010585308,
- -0.050484251230955124,
- -0.011780130676925182,
- 0.10989915579557419,
- 0.07385385036468506,
- 0.033303484320640564,
- -0.01639813557267189,
- 0.030400538817048073,
- 0.02914826199412346,
- 0.052373554557561874,
- 0.04916239529848099,
- -0.012103714980185032,
- 0.0479496568441391,
- -0.009075085632503033,
- 0.014881663024425507,
- -0.011221323162317276,
- -0.039682913571596146,
- 0.024253878742456436,
- 0.011504827998578548,
- -0.05653470754623413,
- -0.015863345935940742,
- -0.05029415711760521,
- -0.01012786477804184,
- -0.016482936218380928,
- 0.05892624333500862,
- 0.018502771854400635,
- -0.07997215539216995,
- -0.029444970190525055,
- 0.03606262803077698,
- -0.03531162440776825,
- -0.01997792162001133,
- -0.10322201997041702,
- -0.07638376206159592,
- 0.05096195265650749,
- -0.03717797249555588,
- 0.02025585062801838,
- 0.012688769958913326,
- -0.11158601939678192,
- 0.005251224618405104,
- 0.004867813549935818,
- -0.022956715896725655,
- -0.13422459363937378,
- -0.08576885610818863,
- -0.03277695178985596,
- 0.004289309959858656,
- 0.04708699882030487,
- -0.01243280153721571,
- 0.041695479303598404,
- 0.051567673683166504,
- -0.03248303011059761,
- 0.09452594071626663,
- -0.11029399186372757,
- -0.035607874393463135,
- 0.03348003327846527,
- -0.013827222399413586,
- -0.023127123713493347,
- -0.0025266073644161224,
- 0.03460076078772545,
- -0.016655893996357918,
- 0.016773467883467674,
- 0.047461606562137604,
- 0.040919553488492966,
- -0.016590308398008347,
- -0.017153386026620865,
- -0.08693652600049973,
- 0.022792240604758263,
- 0.03771572187542915,
- 0.05568087846040726,
- -0.01289196778088808,
- 0.0269966721534729,
- -0.06397805362939835,
- -0.008422942832112312,
- 0.04795343801379204,
- 0.04366573691368103,
- 0.019488507881760597,
- 0.051364146173000336,
- -0.10800187289714813,
- -0.007257412187755108,
- -0.0754394680261612,
- -0.04611930996179581,
- -0.05283734202384949,
- -0.02375653199851513,
- 0.03743264824151993,
- -0.022206423804163933,
- 2.8471375001488075e-33,
- -0.13568176329135895,
- 0.005514757242053747,
- -0.04037150740623474,
- 0.04689594730734825,
- 0.013520368374884129,
- -0.0030492446385324,
- 0.01668509654700756,
- 0.0847281962633133,
- 0.0334639847278595,
- -0.04827478155493736,
- 0.08103451877832413,
- -0.012454277835786343,
- -0.07988595217466354,
- 0.012112626805901527,
- 0.07915028929710388,
- 0.02422991953790188,
- 0.036819640547037125,
- -0.0203316118568182,
- 0.0577203594148159,
- -0.022440867498517036,
- -0.127092182636261,
- -0.04870627075433731,
- 0.0034001751337200403,
- 0.059836260974407196,
- -0.08755964785814285,
- 0.043417274951934814,
- 0.00483299233019352,
- -0.03252042084932327,
- -0.060319822281599045,
- -0.08613316714763641,
- 0.10379745811223984,
- 0.01266161072999239,
- -0.07698632776737213,
- 0.025178557261824608,
- 0.025797203183174133,
- 0.04903055354952812,
- 0.015359326265752316,
- -0.0049202414229512215,
- -0.008753539994359016,
- -0.023143675178289413,
- -0.016527028754353523,
- -0.0008851459715515375,
- -0.018609507009387016,
- 0.057490427047014236,
- -0.02193734049797058,
- 0.034644145518541336,
- 0.02654082514345646,
- -0.05991356819868088,
- 0.10485631972551346,
- 0.06841802597045898,
- 0.0013215808430686593,
- 0.001990977441892028,
- -0.11788475513458252,
- -0.009470802731812,
- 0.0008743204525671899,
- -0.07466015964746475,
- -0.06782777607440948,
- 0.010204095393419266,
- 0.012141457758843899,
- -0.0003124913782812655,
- -0.0031567856203764677,
- -0.010733776725828648,
- -0.05203871801495552,
- -0.043204933404922485,
- 0.0618920773267746,
- 0.030034935101866722,
- -0.010512886568903923,
- -0.05801880359649658,
- -0.04419483616948128,
- 0.015231345780193806,
- -0.034726910293102264,
- -0.0906936302781105,
- -0.12534797191619873,
- 0.06002669781446457,
- -0.0028922283090651035,
- 0.015499195083975792,
- -0.05202486738562584,
- -0.05977464094758034,
- -0.07459249347448349,
- 0.042557522654533386,
- -0.09252555668354034,
- -0.07363651692867279,
- 0.03827710822224617,
- -0.004031070973724127,
- 0.01535564661026001,
- 0.014033112674951553,
- -0.008055973798036575,
- 0.020915310829877853,
- 0.037296224385499954,
- 0.050713762640953064,
- -0.03395310416817665,
- 0.023972537368535995,
- 0.05327192321419716,
- -0.026758980005979538,
- -0.03206503391265869,
- -1.2874535215701144e-8,
- -0.014185981824994087,
- -0.028886035084724426,
- -0.0260314904153347,
- 0.024831004440784454,
- 0.11183266341686249,
- 0.03434211388230324,
- 0.07176614552736282,
- -0.0022097500041127205,
- -0.007906138896942139,
- -0.0024884387385100126,
- -0.0056976741179823875,
- 0.09862362593412399,
- -0.051146794110536575,
- 0.020164621993899345,
- 0.057215359061956406,
- -0.028401117771863937,
- 0.04543367773294449,
- 0.0443868525326252,
- -0.04153132811188698,
- 0.06745807081460953,
- -0.05484238266944885,
- 0.015443755313754082,
- 0.06722123920917511,
- -0.06304899603128433,
- 0.013332650996744633,
- 0.0022200800012797117,
- -0.0568314865231514,
- -0.002823375165462494,
- 0.07453072816133499,
- 0.03812498226761818,
- 0.012884559109807014,
- 0.043953798711299896,
- -0.029376352205872536,
- 0.010890851728618145,
- -0.0035429305862635374,
- -0.038181789219379425,
- 0.010037962347269058,
- 0.02124209888279438,
- 0.01309681311249733,
- 0.01361199002712965,
- 0.00180459872353822,
- 0.05704884231090546,
- -0.018590956926345825,
- 0.012269739992916584,
- -0.04391336813569069,
- 0.007569578476250172,
- -0.03440653905272484,
- 0.057231925427913666,
- -0.03804990276694298,
- -0.024526633322238922,
- 0.003620071802288294,
- 0.0509781539440155,
- 0.037644993513822556,
- 0.05282442644238472,
- 0.012477749958634377,
- -0.047736018896102905,
- 0.013910869136452675,
- -0.016087306663393974,
- 0.05787332355976105,
- 0.027805021032691002,
- 0.1413416862487793,
- -0.04925103858113289,
- 0.015230507589876652,
- 0.0422806441783905
- ]
- },
- {
- "keyword": "comprises",
- "type": "contains",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.04108568653464317,
- 0.04456513375043869,
- 0.037030305713415146,
- 0.059365637600421906,
- -0.02911846712231636,
- -0.04389629885554314,
- 0.07014043629169464,
- -0.023463593795895576,
- 0.010710581205785275,
- -0.07178160548210144,
- 0.04733230173587799,
- -0.13619816303253174,
- 0.01808003894984722,
- -0.04399687796831131,
- 0.01399882324039936,
- -0.06459861248731613,
- -0.005377608817070723,
- -0.011267918162047863,
- 0.01865667663514614,
- -0.03278772532939911,
- -0.10329727083444595,
- -0.02013249881565571,
- -0.02212008275091648,
- 0.059218816459178925,
- 0.08324630558490753,
- 0.039345744997262955,
- -0.027752839028835297,
- -0.018526384606957436,
- 0.11075476557016373,
- -0.05397285148501396,
- -0.02687491476535797,
- 0.062236517667770386,
- 0.06905560940504074,
- -0.03765522316098213,
- 0.034895412623882294,
- 0.02828114479780197,
- 0.035936515778303146,
- 0.037560537457466125,
- -0.022975459694862366,
- 0.02407459355890751,
- -0.0793943852186203,
- -0.003878558287397027,
- 0.021650174632668495,
- 0.0007627932936884463,
- 0.008963216096162796,
- 0.03846092149615288,
- -0.022570529952645302,
- 0.07775428891181946,
- 0.04771486297249794,
- -0.0029074260964989662,
- -0.04316835105419159,
- -0.03511127457022667,
- -0.0575421079993248,
- 0.05752023309469223,
- 0.03891485556960106,
- -0.012322965078055859,
- -0.08165064454078674,
- 0.00443601980805397,
- -0.023821866139769554,
- -0.059765372425317764,
- -0.025619016960263252,
- -0.02761802077293396,
- -0.015639062970876694,
- -0.010863988660275936,
- 0.05137716606259346,
- -0.011224634014070034,
- 0.0221799798309803,
- -0.0196125078946352,
- -0.08613751828670502,
- 0.0497610867023468,
- 0.031105630099773407,
- 0.0036348088178783655,
- 0.023079920560121536,
- 0.030449600890278816,
- -0.03519764915108681,
- 0.05206066370010376,
- 0.036488551646471024,
- -0.07112304121255875,
- 0.05363754555583,
- -0.05757521837949753,
- -0.04180816933512688,
- 0.08073414117097855,
- -0.031223023310303688,
- -0.05721300095319748,
- 0.05183705314993858,
- -0.00036953992093913257,
- 0.07310420274734497,
- -0.025838403031229973,
- -0.02042512223124504,
- -0.014567716047167778,
- -0.025698404759168625,
- 0.033767469227313995,
- 0.0737714171409607,
- -0.0275726318359375,
- -0.007427678443491459,
- 0.0024171648547053337,
- 0.024678250774741173,
- 0.020514193922281265,
- 0.11601737886667252,
- 0.2191246598958969,
- -0.009024092927575111,
- 0.06349015235900879,
- 0.04827975109219551,
- -0.07162114977836609,
- -0.13300670683383942,
- -0.019222013652324677,
- -0.03886988013982773,
- -0.015616617165505886,
- 0.018372420221567154,
- 0.00558298546820879,
- 0.029016820713877678,
- -0.02488345094025135,
- -0.019090082496404648,
- -0.04417426139116287,
- 0.02912929095327854,
- -0.09124547988176346,
- 0.06937137246131897,
- -0.011973315849900246,
- 0.005735297687351704,
- 0.008691785857081413,
- 0.0584380179643631,
- 0.02740062214434147,
- 0.035140976309776306,
- 0.031238112598657608,
- 0.041778549551963806,
- -0.08174213767051697,
- 0.0569743774831295,
- -5.641413019341137e-33,
- -0.01060880534350872,
- -0.04931884631514549,
- -0.013254711404442787,
- 0.04836207255721092,
- 0.01682082936167717,
- 0.01988339051604271,
- 0.026753831654787064,
- 0.018438125029206276,
- -0.12160411477088928,
- -0.050456661731004715,
- -0.03384596109390259,
- 0.0029285529162734747,
- 0.025293972343206406,
- 0.013508914038538933,
- 0.07978527247905731,
- -0.017188047990202904,
- 0.08438742160797119,
- 0.03839230537414551,
- -0.006141049787402153,
- -0.03338349238038063,
- -0.06272703409194946,
- 0.016983719542622566,
- 0.009510193020105362,
- 0.07694356143474579,
- 0.03053998574614525,
- -0.08653215318918228,
- 0.041273269802331924,
- 0.0234729815274477,
- -0.05346298962831497,
- -0.0007076857145875692,
- 0.08706715703010559,
- -0.025188373401761055,
- -0.08279991149902344,
- 0.035182930529117584,
- 0.011857754550874233,
- 0.02955903485417366,
- 0.004626539070159197,
- -0.026212623342871666,
- 0.01792238838970661,
- -0.017435356974601746,
- 0.0508493147790432,
- -0.005334631074219942,
- 0.10104307532310486,
- -0.025162551552057266,
- -0.05480566993355751,
- 0.01764984242618084,
- 0.04322243854403496,
- 0.12551665306091309,
- 0.027836747467517853,
- 0.01573151722550392,
- -0.03018643893301487,
- 0.013255845755338669,
- -0.013395645655691624,
- -0.00007602651749039069,
- -0.07641737908124924,
- 0.020120248198509216,
- -0.04596443474292755,
- 0.06613558530807495,
- 0.0577361173927784,
- -0.014647191390395164,
- -0.034336693584918976,
- 0.031842220574617386,
- -0.0786694809794426,
- 0.05928036943078041,
- -0.048348139971494675,
- 0.018378201872110367,
- -0.020493825897574425,
- 0.0093687754124403,
- 0.10562153905630112,
- -0.03926409035921097,
- -0.03667761757969856,
- -0.017868317663669586,
- 0.057533878833055496,
- 0.05229979008436203,
- -0.009963622316718102,
- -0.021694308146834373,
- 0.032366231083869934,
- -0.08085287362337112,
- -0.03660313040018082,
- 0.0541815422475338,
- -0.09267357736825943,
- 0.024720419198274612,
- -0.010993433184921741,
- 0.024093694984912872,
- 0.00462194811552763,
- 0.08529622852802277,
- 0.054309796541929245,
- -0.04323304444551468,
- 0.017646411433815956,
- -0.01228356920182705,
- -0.09823353588581085,
- -0.07190973311662674,
- 0.03721780329942703,
- -0.03258657082915306,
- 0.008855486288666725,
- 3.0822982674376755e-33,
- 0.1049390435218811,
- 0.004208499100059271,
- 0.02127947099506855,
- -0.0436076782643795,
- -0.02501138672232628,
- -0.025075795128941536,
- 0.024272119626402855,
- -0.08648055791854858,
- -0.0746171697974205,
- -0.050236109644174576,
- 0.05374994874000549,
- -0.043945226818323135,
- -0.04633621498942375,
- -0.017601214349269867,
- -0.028580090031027794,
- 0.02378857508301735,
- 0.012362075969576836,
- -0.10798341035842896,
- 0.027687599882483482,
- 0.017234131693840027,
- -0.0691356286406517,
- -0.12019536644220352,
- 0.09067270159721375,
- -0.04399929195642471,
- -0.014849018305540085,
- 0.0611729770898819,
- 0.03321949765086174,
- 0.049879543483257294,
- 0.005967995151877403,
- 0.038770753890275955,
- 0.011809918098151684,
- -0.05370427295565605,
- -0.07438758760690689,
- -0.015241994522511959,
- -0.0797896757721901,
- -0.006150382570922375,
- 0.05457095801830292,
- 0.003408073913305998,
- 0.012552399188280106,
- 0.002824084833264351,
- 0.04366076737642288,
- 0.020377034321427345,
- 0.010247454047203064,
- 0.17329759895801544,
- 0.02890937775373459,
- -0.05079251155257225,
- 0.10347066819667816,
- 0.043384283781051636,
- -0.0525958426296711,
- 0.013339737430214882,
- -0.04655959829688072,
- 0.0007421637419611216,
- -0.057124439626932144,
- 0.008414668962359428,
- -0.008907734416425228,
- 0.017730364575982094,
- 0.05043801665306091,
- -0.06655916571617126,
- 0.021527661010622978,
- -0.05572953075170517,
- -0.004053013399243355,
- 0.04936864227056503,
- 0.04044423997402191,
- 0.034487415105104446,
- 0.01138309109956026,
- -0.06686385720968246,
- -0.03843628242611885,
- 0.016704808920621872,
- 0.03279378265142441,
- -0.0526428185403347,
- 0.011292915791273117,
- -0.01718887686729431,
- 0.02011571265757084,
- -0.12014804780483246,
- -0.06570041924715042,
- 0.03751487284898758,
- 0.00858371052891016,
- 0.00632607564330101,
- 0.044933050870895386,
- 0.0013939429773017764,
- 0.03630972281098366,
- 0.015046383254230022,
- 0.024297233670949936,
- -0.014319372363388538,
- -0.07046589255332947,
- -0.09449311345815659,
- 0.09492988884449005,
- 0.008426978252828121,
- -0.07539794594049454,
- 0.05643024295568466,
- 0.019557509571313858,
- 0.07100018858909607,
- 0.07893045991659164,
- 0.04561444744467735,
- 0.07827004045248032,
- -1.1440445923938114e-8,
- -0.03448808565735817,
- -0.04774714633822441,
- -0.07409369200468063,
- -0.05667411908507347,
- 0.12783630192279816,
- -0.09078358858823776,
- 0.0036076100077480078,
- 0.05802982300519943,
- 0.020237505435943604,
- 0.04800764471292496,
- 0.05061927065253258,
- -0.07224889099597931,
- -0.044519077986478806,
- -0.02212398871779442,
- 0.05186619609594345,
- 0.007463911082595587,
- -0.07288262248039246,
- 0.02832466922700405,
- -0.09340155124664307,
- -0.01963791251182556,
- -0.00474424846470356,
- -0.051879268139600754,
- -0.012436047196388245,
- -0.0013201633701100945,
- -0.02536853402853012,
- 0.03333147615194321,
- -0.0760846808552742,
- -0.025054363533854485,
- -0.008755210787057877,
- 0.029525255784392357,
- 0.006551298778504133,
- 0.09506047517061234,
- 0.0471344031393528,
- -0.061811838299036026,
- 0.06026754900813103,
- -0.07072728127241135,
- -0.00003380760972504504,
- 0.0102040134370327,
- -0.012459401972591877,
- -0.03494541719555855,
- -0.013745897449553013,
- -0.0533846952021122,
- -0.005471993703395128,
- -0.02716115489602089,
- 0.02009040303528309,
- -0.10455413162708282,
- -0.09908102452754974,
- 0.044586993753910065,
- -0.0021443713922053576,
- 0.011229322291910648,
- -0.0179299283772707,
- 0.0005813451134599745,
- 0.042907536029815674,
- 0.055609896779060364,
- 0.020234910771250725,
- -0.010862153023481369,
- 0.032489944249391556,
- -0.03856368362903595,
- 0.017451418563723564,
- 0.027753038331866264,
- -0.007725628558546305,
- -0.039207279682159424,
- 0.10308241844177246,
- -0.0790286660194397
- ]
- },
- {
- "keyword": "encompasses",
- "type": "contains",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.022575613111257553,
- 0.0972253829240799,
- 0.025910137221217155,
- 0.04559522494673729,
- 0.007289306726306677,
- -0.02145426534116268,
- 0.09927599132061005,
- 0.014284628443419933,
- 0.028388027101755142,
- -0.04387493431568146,
- 0.011091047897934914,
- -0.08808287978172302,
- 0.018569914624094963,
- -0.0018599373288452625,
- 0.0012793435016646981,
- -0.007806652225553989,
- -0.0010517409536987543,
- -0.006769149098545313,
- -0.022262688726186752,
- -0.05031808093190193,
- -0.04462577402591705,
- 0.06035077944397926,
- -0.037912338972091675,
- 0.004558185581117868,
- -0.0265220757573843,
- 0.021873125806450844,
- -0.002025772351771593,
- -0.01152766216546297,
- 0.0576888807117939,
- -0.04217774048447609,
- -0.04488789290189743,
- 0.07498236000537872,
- -0.049266546964645386,
- 0.025307293981313705,
- 0.039571136236190796,
- 0.01641026884317398,
- 0.026435790583491325,
- 0.05446932092308998,
- 0.012777703814208508,
- -0.02539418451488018,
- -0.03487086296081543,
- 0.038131438195705414,
- 0.027817122638225555,
- 0.02178061008453369,
- 0.0023313190322369337,
- -0.0371469110250473,
- 0.013485241681337357,
- -0.0034694711212068796,
- -0.030279600992798805,
- -0.04789608716964722,
- -0.03139296919107437,
- -0.07889364659786224,
- -0.03678658977150917,
- -0.026589855551719666,
- 0.009188836440443993,
- 0.03967651352286339,
- -0.07573774456977844,
- -0.046075742691755295,
- 0.013835727237164974,
- -0.020447561517357826,
- -0.07965905964374542,
- -0.049515578895807266,
- -0.0013375167036429048,
- 0.028443126007914543,
- -0.046143583953380585,
- 0.001606595586054027,
- -0.011087697930634022,
- 0.08381474018096924,
- -0.05591046065092087,
- 0.023624710738658905,
- 0.039785273373126984,
- 0.008935132063925266,
- 0.009995310567319393,
- 0.04756802320480347,
- 0.04291576147079468,
- -0.059489332139492035,
- -0.003758844453841448,
- -0.012564812786877155,
- 0.10375923663377762,
- -0.023540815338492393,
- 0.014390158466994762,
- -0.017230762168765068,
- -0.05515668913722038,
- -0.049365803599357605,
- 0.07672148197889328,
- 0.04235173016786575,
- -0.022951515391469002,
- -0.09618736058473587,
- -0.04321222007274628,
- 0.021767672151327133,
- -0.011341583915054798,
- -0.13294006884098053,
- 0.07345569133758545,
- 0.03468974307179451,
- 0.0067187207750976086,
- -0.09215430170297623,
- 0.04171288013458252,
- -0.07094478607177734,
- 0.06978949904441833,
- 0.22065362334251404,
- -0.02659287117421627,
- 0.05019168183207512,
- 0.053232572972774506,
- 0.003984377253800631,
- -0.06283514946699142,
- -0.0874718502163887,
- -0.004054516088217497,
- 0.028752926737070084,
- 0.0045920368283987045,
- -0.05252121016383171,
- -0.009800219908356667,
- -0.0678081288933754,
- -0.005318467039614916,
- -0.021553494036197662,
- 0.0628785490989685,
- -0.04859296604990959,
- 0.06787126511335373,
- -0.02671511471271515,
- 0.026178522035479546,
- -0.05066518485546112,
- -0.03601156920194626,
- 0.03031967580318451,
- 0.02431882731616497,
- 0.02945701964199543,
- 0.03189055994153023,
- -0.021881436929106712,
- 0.006962853483855724,
- -6.372503281969412e-33,
- -0.04941467568278313,
- -0.03932839259505272,
- -0.033858053386211395,
- 0.022087672725319862,
- 0.007741858251392841,
- -0.01313677616417408,
- 0.011924507096409798,
- -0.021572861820459366,
- -0.07305005937814713,
- 0.052793439477682114,
- 0.017835721373558044,
- 0.11011295020580292,
- -0.030641179531812668,
- 0.01607285998761654,
- 0.11049492657184601,
- -0.0315251499414444,
- 0.013760899193584919,
- 0.18613378703594208,
- -0.10713623464107513,
- -0.0016259199474006891,
- -0.08558524399995804,
- 0.09095815569162369,
- -0.02704528346657753,
- 0.004148278851062059,
- -0.03736921399831772,
- -0.04599318280816078,
- -0.033739782869815826,
- -0.047118473798036575,
- -0.017538437619805336,
- 0.017764050513505936,
- 0.009418264031410217,
- 0.02538267895579338,
- -0.05675511807203293,
- 0.019905367866158485,
- 0.00044819634058512747,
- 0.05053653568029404,
- 0.000993437715806067,
- -0.024789122864603996,
- -0.03251270949840546,
- -0.036388058215379715,
- -0.055755000561475754,
- -0.023358413949608803,
- 0.06488536298274994,
- -0.018505379557609558,
- 0.01805415190756321,
- 0.07420571148395538,
- 0.038626253604888916,
- 0.06163443624973297,
- -0.013866635039448738,
- -0.021943718194961548,
- 0.020804041996598244,
- -0.01318443939089775,
- -0.05511343479156494,
- -0.028970176354050636,
- 0.017398495227098465,
- -0.02372339926660061,
- -0.038421813398599625,
- 0.0816066712141037,
- 0.03335827589035034,
- 0.0010912698926404119,
- 0.06842106580734253,
- -0.03750535845756531,
- -0.14213116466999054,
- 0.0011969255283474922,
- 0.05350521579384804,
- -0.03309304639697075,
- 0.009347190149128437,
- -0.04637769237160683,
- 0.08835931122303009,
- 0.03125953674316406,
- -0.06548310071229935,
- 0.000027688080081134103,
- 0.09452345222234726,
- 0.0839981958270073,
- 0.06334599107503891,
- -0.03334522247314453,
- 0.038894474506378174,
- 0.04503702372312546,
- -0.04147065430879593,
- 0.04232211038470268,
- -0.1255507469177246,
- 0.021150778979063034,
- -0.012224281206727028,
- 0.0074808234348893166,
- 0.053655751049518585,
- 0.03459525853395462,
- 0.02141708880662918,
- -0.09529099613428116,
- 0.0038647279143333435,
- -0.06670739501714706,
- -0.0873132273554802,
- 0.04056306183338165,
- -0.007460393477231264,
- 0.021806005388498306,
- -0.05464072898030281,
- 3.8913256422353915e-33,
- 0.06173345446586609,
- 0.03337503597140312,
- 0.00621875561773777,
- -0.018724005669355392,
- 0.0003473312535788864,
- -0.0423663891851902,
- 0.011388055048882961,
- 0.04731922224164009,
- -0.008360980078577995,
- -0.10837608575820923,
- -0.050986725836992264,
- 0.0050332797691226006,
- -0.02852211520075798,
- -0.00696147046983242,
- -0.02757064811885357,
- -0.06251400709152222,
- 0.0966789722442627,
- -0.14028233289718628,
- -0.03811001032590866,
- 0.034950580447912216,
- -0.04811818152666092,
- -0.07707828283309937,
- 0.04231308400630951,
- -0.03682364523410797,
- -0.009246531873941422,
- 0.1054125726222992,
- 0.06373947113752365,
- 0.02475152350962162,
- -0.01749080792069435,
- -0.04906975477933884,
- 0.005070003215223551,
- -0.07758811861276627,
- -0.04307050630450249,
- -0.022910451516509056,
- -0.05891462787985802,
- -0.0032923398539423943,
- 0.08598900586366653,
- -0.025662822648882866,
- -0.023439394310116768,
- 0.03421612083911896,
- 0.011756949126720428,
- 0.00021178230235818774,
- 0.0008253083797171712,
- 0.11010390520095825,
- 0.006397719960659742,
- -0.018960265442728996,
- 0.06263358891010284,
- 0.10388658195734024,
- -0.009408392012119293,
- 0.0011213816469535232,
- -0.08637364208698273,
- 0.02314493991434574,
- 0.02964365854859352,
- -0.0006487367209047079,
- -0.005513975862413645,
- -0.08958886563777924,
- 0.07208284735679626,
- -0.0725661963224411,
- -0.015612715855240822,
- -0.003304049139842391,
- 0.004029421601444483,
- 0.020535441115498543,
- -0.01608840934932232,
- 0.06619351357221603,
- -0.04710797220468521,
- -0.038940660655498505,
- -0.038325272500514984,
- -0.006906447932124138,
- -0.07112742215394974,
- -0.004156028386205435,
- -0.018294807523489,
- -0.06485798209905624,
- -0.0690285712480545,
- -0.0745585635304451,
- -0.011265132576227188,
- -0.06071685999631882,
- 0.013252933509647846,
- -0.0013700175331905484,
- 0.023319873958826065,
- -0.04605414718389511,
- -0.04482550173997879,
- -0.04488079994916916,
- 0.011151974089443684,
- -0.0036675373557955027,
- 0.0889483094215393,
- -0.022444548085331917,
- -0.0026975630316883326,
- -0.0019234134815633297,
- 0.038809068500995636,
- 0.013046781532466412,
- 0.06988325715065002,
- -0.03878659009933472,
- -0.035776183009147644,
- 0.015798294916749,
- -0.03850856423377991,
- -1.1850215919650964e-8,
- -0.047928791493177414,
- 0.05543046444654465,
- -0.05768188461661339,
- -0.009889941662549973,
- 0.06708116084337234,
- 0.010745392180979252,
- 0.025719165802001953,
- 0.04291364178061485,
- -0.0350751131772995,
- 0.06044949218630791,
- -0.02689945697784424,
- -0.01006070151925087,
- -0.04123147949576378,
- 0.052940648049116135,
- 0.046222224831581116,
- -0.08912245184183121,
- -0.030756492167711258,
- 0.03613128513097763,
- -0.051067132502794266,
- 0.04376702755689621,
- -0.04264020919799805,
- -0.022565318271517754,
- -0.03909333422780037,
- -0.0630287304520607,
- 0.01201445609331131,
- -0.013678022660315037,
- -0.10945219546556473,
- -0.040161848068237305,
- 0.04523780569434166,
- 0.058743447065353394,
- 0.012633257545530796,
- 0.17584313452243805,
- 0.006806734949350357,
- 0.03136926889419556,
- 0.03924618288874626,
- -0.05210314691066742,
- 0.021661411970853806,
- -0.023769257590174675,
- -0.01082625426352024,
- 0.07516244798898697,
- 0.03887308016419411,
- -0.012508112005889416,
- 0.08780591189861298,
- 0.03709230571985245,
- 0.03328317776322365,
- -0.024090459570288658,
- 0.03403180465102196,
- 0.07472357898950577,
- 0.06797437369823456,
- -0.003524236148223281,
- 0.01185581274330616,
- 0.017057815566658974,
- 0.05218852683901787,
- 0.0709519013762474,
- 0.05681740492582321,
- -0.030098970979452133,
- 0.029556844383478165,
- -0.008087020367383957,
- -0.055468250066041946,
- 0.060910679399967194,
- 0.14544816315174103,
- -0.02445579320192337,
- 0.06114749610424042,
- 0.08054239302873611
- ]
- },
- {
- "keyword": "holding",
- "type": "contains",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.036258578300476074,
- 0.06474602967500687,
- 0.006564168259501457,
- -0.0030182008631527424,
- -0.02759217470884323,
- 0.03946864604949951,
- 0.17001277208328247,
- 0.012087599374353886,
- 0.044066183269023895,
- 0.001314690220169723,
- -0.025815242901444435,
- -0.04088854417204857,
- 0.0061093103140592575,
- -0.036688726395368576,
- -0.015722671523690224,
- 0.034685324877500534,
- -0.041422005742788315,
- -0.044070906937122345,
- -0.050410982221364975,
- 0.08044154942035675,
- -0.038364436477422714,
- 0.00851491093635559,
- -0.04507768154144287,
- -0.0005688262754119933,
- -0.015593286603689194,
- 0.09092196822166443,
- -0.08081033825874329,
- -0.011917042545974255,
- 0.10212581604719162,
- -0.07139742374420166,
- -0.043981004506349564,
- -0.03941207379102707,
- 0.0007368983351625502,
- -0.011341199278831482,
- -0.14105643332004547,
- 0.05743648484349251,
- -0.09716962277889252,
- -0.05772697553038597,
- 0.0032342621125280857,
- 0.0369051955640316,
- -0.04648299887776375,
- -0.13464811444282532,
- -0.014759900979697704,
- -0.00576730677857995,
- 0.056439634412527084,
- 0.0546097457408905,
- -0.012641666457057,
- 0.07973480969667435,
- 0.05922403931617737,
- 0.018557606264948845,
- -0.019092926755547523,
- -0.007206606213003397,
- 0.00324120931327343,
- 0.0288461372256279,
- 0.06556179374456406,
- 0.07129135727882385,
- 0.08952607214450836,
- -0.004756059963256121,
- -0.014553007669746876,
- -0.014036058448255062,
- 0.10861025005578995,
- 0.03374975174665451,
- -0.06710085272789001,
- 0.04297049716114998,
- -0.01790192537009716,
- -0.05197539180517197,
- -0.005820152815431356,
- 0.049392521381378174,
- -0.050101857632398605,
- 0.04106849804520607,
- 0.09366974234580994,
- 0.026945414021611214,
- 0.008998693898320198,
- 0.037093911319971085,
- 0.048910267651081085,
- -0.014093931764364243,
- -0.006426675710827112,
- -0.112029068171978,
- 0.04933891072869301,
- -0.015364048071205616,
- -0.0017600326100364327,
- -0.12745481729507446,
- -0.022603416815400124,
- 0.043257251381874084,
- -0.1006016731262207,
- -0.009061364457011223,
- 0.02956460788846016,
- 0.03698213770985603,
- 0.002008963143453002,
- 0.015915684401988983,
- -0.05094368755817413,
- 0.03678152337670326,
- 0.0286673903465271,
- -0.003974983002990484,
- -0.07952998578548431,
- -0.006791808642446995,
- -0.011047101579606533,
- 0.033392634242773056,
- -0.13251428306102753,
- 0.23242981731891632,
- 0.058557167649269104,
- 0.12033932656049728,
- -0.03889733552932739,
- 0.035748038440942764,
- -0.023562557995319366,
- -0.020224789157509804,
- -0.0045759608037769794,
- 0.01807866245508194,
- 0.023668741807341576,
- -0.05102725699543953,
- 0.036759018898010254,
- 0.01075655035674572,
- -0.038306742906570435,
- 0.12987840175628662,
- -0.037914592772722244,
- -0.0558549165725708,
- -0.018275802955031395,
- 0.03473459184169769,
- 0.06343058496713638,
- -0.03414713963866234,
- 0.014838811941444874,
- 0.021137535572052002,
- -0.01949634589254856,
- -0.04340681433677673,
- -0.0326249860227108,
- -0.04767414927482605,
- 0.015856487676501274,
- -5.728434498790526e-33,
- -0.008377359248697758,
- -0.08291767537593842,
- -0.03999118134379387,
- 0.05720536410808563,
- -0.06437965482473373,
- 0.024820173159241676,
- -0.01739388145506382,
- -0.01593625359237194,
- -0.12417576462030411,
- -0.008559527806937695,
- 0.05118894949555397,
- 0.040554288774728775,
- -0.007425245828926563,
- -0.06353934109210968,
- 0.03756030276417732,
- -0.06075935810804367,
- 0.07925201952457428,
- 0.05755623057484627,
- 0.022348470985889435,
- 0.04177306964993477,
- -0.01889403909444809,
- 0.04715164750814438,
- 0.016209596768021584,
- 0.026891592890024185,
- 0.0033078519627451897,
- -0.00910811498761177,
- -0.07710392028093338,
- -0.03243795409798622,
- -0.0014696092111989856,
- -0.009090064093470573,
- 0.057856712490320206,
- 0.011944284662604332,
- -0.07005207985639572,
- -0.023389901965856552,
- -0.0370103195309639,
- -0.09567705541849136,
- 0.07063225656747818,
- -0.05371047183871269,
- 0.035669539123773575,
- -0.13659800589084625,
- -0.020603802055120468,
- 0.03941253200173378,
- -0.04936714842915535,
- 0.0032015207689255476,
- -0.05579311400651932,
- -0.058285169303417206,
- 0.04644598811864853,
- 0.013747479766607285,
- -0.15435470640659332,
- 0.023133065551519394,
- 0.07100525498390198,
- -0.025433383882045746,
- -0.1311774104833603,
- 0.009790956042706966,
- -0.03293009102344513,
- -0.01274883933365345,
- -0.014526977203786373,
- 0.05187937244772911,
- -0.03683498501777649,
- 0.02653055638074875,
- 0.04906017333269119,
- 0.06844525784254074,
- -0.06713573634624481,
- 0.002763523254543543,
- -0.069949209690094,
- 0.047838903963565826,
- 0.018150635063648224,
- 0.0009589808760210872,
- -0.00586758553981781,
- 0.003559200558811426,
- -0.06990912556648254,
- -0.052166253328323364,
- -0.0009369198232889175,
- 0.03238821402192116,
- 0.014132696203887463,
- -0.03440847992897034,
- 0.031698230654001236,
- 0.018241500481963158,
- 0.002615700475871563,
- 0.03264272212982178,
- -0.02971908636391163,
- -0.04112931713461876,
- 0.04164976254105568,
- 0.034416764974594116,
- -0.05064767226576805,
- -0.020123714581131935,
- -0.0012336020590737462,
- -0.06914409250020981,
- -0.011144271120429039,
- 0.029222629964351654,
- -0.09845184534788132,
- -0.021015694364905357,
- 0.0609818771481514,
- -0.0022017552983015776,
- -0.022939074784517288,
- 4.105408877459054e-33,
- 0.028442973271012306,
- 0.013467973098158836,
- -0.01823168434202671,
- 0.07266031205654144,
- 0.02732235938310623,
- -0.0552556999027729,
- 0.007706472184509039,
- -0.040035463869571686,
- -0.06807366013526917,
- -0.12584342062473297,
- 0.019132021814584732,
- 0.02912246063351631,
- 0.008336552418768406,
- 0.03476416692137718,
- 0.0034426995553076267,
- 0.01036050170660019,
- 0.05578022450208664,
- 0.016158979386091232,
- -0.02865578420460224,
- 0.0061332788318395615,
- -0.011971035972237587,
- -0.09446505457162857,
- 0.05528505891561508,
- 0.06696654856204987,
- -0.05673161894083023,
- 0.04882330447435379,
- 0.0039404332637786865,
- -0.056975606828927994,
- -0.06913017481565475,
- -0.05736770108342171,
- -0.0036287729162722826,
- -0.07899001985788345,
- 0.027849668636918068,
- 0.036387812346220016,
- -0.004580019507557154,
- 0.011052378453314304,
- 0.006622265093028545,
- 0.059950172901153564,
- -0.008791514672338963,
- 0.058722592890262604,
- 0.07774010300636292,
- 0.038046929985284805,
- 0.01795727014541626,
- 0.09463363140821457,
- 0.024986758828163147,
- 0.03771341219544411,
- -0.030625376850366592,
- 0.059324849396944046,
- -0.0057455142959952354,
- 0.03977208212018013,
- -0.0402509830892086,
- -0.04936369135975838,
- -0.054277949035167694,
- 0.04871097579598427,
- 0.046507641673088074,
- 0.037255190312862396,
- -0.0663849264383316,
- -0.0024224254302680492,
- -0.0383482463657856,
- -0.03906731307506561,
- -0.04029778018593788,
- 0.037275802344083786,
- -0.04465112090110779,
- 0.044020507484674454,
- 0.01949327625334263,
- 0.009993894957005978,
- -0.011349683627486229,
- -0.011160919442772865,
- -0.03285449370741844,
- -0.024947790428996086,
- -0.012273892760276794,
- 0.012857322581112385,
- 0.05777892470359802,
- 0.03701125457882881,
- -0.00715261697769165,
- 0.03850303217768669,
- -0.09607211500406265,
- 0.039586085826158524,
- 0.03419462591409683,
- 0.062382154166698456,
- -0.10528593510389328,
- 0.009842315688729286,
- -0.03386412188410759,
- 0.01812785305082798,
- 0.023946257308125496,
- 0.10992427170276642,
- 0.09313638508319855,
- 0.016085749492049217,
- -0.017975375056266785,
- -0.03203156217932701,
- 0.03275800868868828,
- 0.08175378292798996,
- 0.08347980678081512,
- -0.03964264318346977,
- -0.02170327864587307,
- -1.2309858909986815e-8,
- 0.007427779491990805,
- 0.03318145498633385,
- 0.06481197476387024,
- -0.0416470542550087,
- 0.060593344271183014,
- 0.10913652181625366,
- 0.0062036640010774136,
- -0.06353901326656342,
- 0.03926125168800354,
- 0.02592536248266697,
- 0.004315780941396952,
- 0.052508071064949036,
- -0.0001975992345251143,
- 0.005358288995921612,
- -0.027742693200707436,
- 0.005698322784155607,
- -0.021786728873848915,
- -0.005746669135987759,
- -0.05559103563427925,
- 0.04752810299396515,
- 0.021005278453230858,
- -0.028851117938756943,
- 0.08635661751031876,
- 0.052049584686756134,
- 0.010361319407820702,
- -0.04530814662575722,
- -0.008092634379863739,
- 0.03500055894255638,
- -0.011133410036563873,
- -0.0005138303386047482,
- 0.02217152528464794,
- 0.03609839826822281,
- 0.022056421265006065,
- -0.01754234917461872,
- 0.018143443390727043,
- -0.019890187308192253,
- -0.024488171562552452,
- 0.03675075247883797,
- 0.07838220149278641,
- 0.02446001023054123,
- -0.006794022861868143,
- -0.013749869540333748,
- 0.011521678417921066,
- 0.010428414680063725,
- 0.00942657794803381,
- 0.05785436928272247,
- 0.045227281749248505,
- 0.0014688201481476426,
- -0.0001558592775836587,
- -0.05273137986660004,
- -0.015957238152623177,
- -0.04723605141043663,
- 0.0036662938073277473,
- 0.11692351847887039,
- 0.04895118623971939,
- 0.03567298501729965,
- -0.015450374223291874,
- 0.04103826731443405,
- -0.03054289147257805,
- 0.019215771928429604,
- 0.022206244990229607,
- -0.09141546487808228,
- -0.036830537021160126,
- 0.08693917840719223
- ]
- },
- {
- "keyword": "containing",
- "type": "contains",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.002655572723597288,
- 0.08672221004962921,
- 0.0642913430929184,
- 0.020768919959664345,
- 0.10450464487075806,
- 0.004815243650227785,
- 0.18045824766159058,
- -0.053866464644670486,
- 0.00451573496684432,
- -0.03429700434207916,
- 0.0007145720301195979,
- -0.0792926698923111,
- 0.08157707005739212,
- -0.012468504719436169,
- 0.050753142684698105,
- -0.04615489020943642,
- 0.042545754462480545,
- -0.01792379468679428,
- -0.09610824286937714,
- 0.005094841122627258,
- -0.039973098784685135,
- 0.020241757854819298,
- 0.010139942169189453,
- 0.047487158328294754,
- -0.04334266111254692,
- 0.11271142214536667,
- -0.03472873568534851,
- -0.0402253158390522,
- 0.1179007962346077,
- -0.04269411414861679,
- -0.007767760194838047,
- 0.06030365452170372,
- 0.02101903408765793,
- 0.027992160990834236,
- 0.007584010250866413,
- 0.01698083057999611,
- -0.01563597284257412,
- -0.04198528453707695,
- 0.018256163224577904,
- -0.01842089556157589,
- -0.061933327466249466,
- -0.028997786343097687,
- 0.02133471518754959,
- 0.04341762885451317,
- 0.0640849620103836,
- 0.011837558820843697,
- -0.00432718638330698,
- -0.020024480298161507,
- 0.0035194677766412497,
- -0.059237003326416016,
- -0.12319853156805038,
- -0.05389987677335739,
- -0.08602777123451233,
- 0.007095281966030598,
- 0.013238910585641861,
- -0.00007618479139637202,
- -0.013379723764955997,
- -0.031939875334501266,
- -0.029622046276926994,
- -0.021221773698925972,
- 0.08213221281766891,
- -0.0026476806960999966,
- -0.08177553117275238,
- 0.007303230930119753,
- 0.06725572049617767,
- -0.06787984818220139,
- -0.04342774674296379,
- 0.06467268615961075,
- -0.0854349434375763,
- 0.03913598880171776,
- 0.0540875680744648,
- 0.041518792510032654,
- -0.012906893156468868,
- 0.10703837126493454,
- -0.023724904283881187,
- 0.014882163144648075,
- 0.052283819764852524,
- -0.046861618757247925,
- 0.08347079902887344,
- -0.029673267155885696,
- 0.00395200727507472,
- -0.05538899824023247,
- 0.0007660938426852226,
- 0.016017761081457138,
- 0.0008491920307278633,
- 0.037685003131628036,
- 0.013100597076117992,
- -0.073456771671772,
- -0.11574643850326538,
- -0.018537776544690132,
- 0.03755154460668564,
- -0.08524511009454727,
- 0.07809638231992722,
- -0.026714829728007317,
- -0.0005915921065025032,
- -0.014621763490140438,
- 0.02756129764020443,
- -0.009312140755355358,
- 0.0378497838973999,
- 0.27372896671295166,
- -0.01753939874470234,
- 0.06243367865681648,
- -0.0062279780395329,
- -0.01611240766942501,
- -0.08287900686264038,
- -0.017475508153438568,
- -0.028949040919542313,
- 0.04241739585995674,
- 0.007280134130269289,
- -0.03972742706537247,
- -0.009857670404016972,
- 0.006756994873285294,
- -0.035458777099847794,
- 0.011083340272307396,
- 0.014970574527978897,
- -0.04791869595646858,
- 0.16071844100952148,
- 0.03148139640688896,
- 0.01729743741452694,
- 0.026997920125722885,
- -0.030936334282159805,
- 0.029146352782845497,
- 0.03996311500668526,
- -0.015415641479194164,
- -0.032956160604953766,
- -0.10388322919607162,
- 0.014150936156511307,
- -5.833191983941916e-33,
- -0.004801688250154257,
- -0.06060577183961868,
- -0.03738170862197876,
- 0.015469110570847988,
- -0.023413686081767082,
- 0.025904199108481407,
- 0.003957055043429136,
- -0.015173311345279217,
- -0.04706060141324997,
- 0.07504197210073471,
- -0.07596301287412643,
- -0.009882060810923576,
- -0.05615093186497688,
- 0.04919353872537613,
- 0.00904066115617752,
- -0.013811918906867504,
- -0.005821250379085541,
- 0.10113267600536346,
- -0.006481667049229145,
- -0.044262804090976715,
- -0.10270321369171143,
- -0.03086862340569496,
- -0.020412081852555275,
- -0.008849041536450386,
- -0.04982342571020126,
- -0.025003468617796898,
- -0.012824180535972118,
- -0.10580266267061234,
- 0.023439709097146988,
- 0.0036455325316637754,
- 0.08279941976070404,
- -0.023618800565600395,
- -0.02530265972018242,
- 0.04384881258010864,
- 0.04380190372467041,
- 0.09775474667549133,
- -0.007771707605570555,
- -0.045582305639982224,
- 0.0223921537399292,
- -0.04044080525636673,
- 0.019692184403538704,
- -0.030414514243602753,
- 0.05051037669181824,
- -0.009073073044419289,
- 0.0016300191637128592,
- 0.016255952417850494,
- -0.009643405675888062,
- 0.029424602165818214,
- -0.039795685559511185,
- -0.015544367954134941,
- 0.04535921663045883,
- 0.0810282826423645,
- -0.01958356611430645,
- -0.025698430836200714,
- -0.023651251569390297,
- -0.005125558935105801,
- -0.0009979774476960301,
- 0.03195023536682129,
- 0.09870341420173645,
- 0.029322560876607895,
- 0.036994244903326035,
- 0.011126959696412086,
- -0.08570151031017303,
- 0.0703122690320015,
- -0.017683807760477066,
- 0.00005266537482384592,
- -0.006386491470038891,
- -0.02096978947520256,
- 0.058234263211488724,
- -0.045246049761772156,
- -0.11904357373714447,
- 0.005725505296140909,
- 0.08285396546125412,
- 0.03409932181239128,
- -0.011858813464641571,
- -0.08014186471700668,
- -0.020746884867548943,
- 0.009839543141424656,
- -0.037497881799936295,
- -0.035855140537023544,
- -0.061844147741794586,
- -0.05937856063246727,
- 0.015609484165906906,
- 0.07695943862199783,
- -0.016879525035619736,
- 0.08206229656934738,
- 0.05926511064171791,
- -0.08352970331907272,
- 0.04012708738446236,
- -0.018169855698943138,
- 0.002827673451974988,
- -0.06624571233987808,
- -0.07477642595767975,
- -0.002301057567819953,
- 0.019530683755874634,
- 4.703517668230712e-33,
- 0.04989313706755638,
- 0.03148186579346657,
- -0.001986679621040821,
- -0.06282366812229156,
- 0.011217436753213406,
- -0.030995748937129974,
- 0.06630479544401169,
- -0.06877703219652176,
- 0.06330809742212296,
- -0.00386991910636425,
- -0.0008733199210837483,
- -0.02042098343372345,
- -0.016808828338980675,
- -0.05718182399868965,
- -0.03955892473459244,
- 0.024725643917918205,
- 0.055649954825639725,
- -0.004438165109604597,
- -0.0025654404889792204,
- 0.03412117063999176,
- -0.06621599942445755,
- -0.047469671815633774,
- 0.005539644043892622,
- 0.008798300288617611,
- 0.003617962822318077,
- 0.04060487449169159,
- 0.06015082076191902,
- 0.02163829654455185,
- -0.02484220080077648,
- 0.03664132207632065,
- 0.014367000199854374,
- -0.0739702358841896,
- -0.060376446694135666,
- -0.022143857553601265,
- -0.11185958981513977,
- -0.05577794089913368,
- 0.01996746100485325,
- 0.05676129832863808,
- -0.014401629567146301,
- 0.028958404436707497,
- 0.07582539319992065,
- 0.016310064122080803,
- -0.08348405361175537,
- 0.20988990366458893,
- 0.02035108022391796,
- -0.03952296823263168,
- -0.05136314034461975,
- 0.036451056599617004,
- 0.07261225581169128,
- 0.04408314451575279,
- -0.013853156007826328,
- -0.015164281241595745,
- -0.04284992814064026,
- -0.024638712406158447,
- 0.025539547204971313,
- 0.07458249479532242,
- -0.057825587689876556,
- -0.019205430522561073,
- -0.04742880538105965,
- -0.0368959866464138,
- -0.006998956203460693,
- 0.08809815347194672,
- -0.05092658847570419,
- -0.01046320702880621,
- 0.027886413037776947,
- -0.037662845104932785,
- -0.014982749707996845,
- 0.0389273464679718,
- 0.028192320838570595,
- -0.06263615936040878,
- -0.0026523845735937357,
- 0.012097214348614216,
- -0.03009163960814476,
- 0.0029226525221019983,
- -0.016700400039553642,
- 0.03349010646343231,
- -0.006848329212516546,
- 0.005670452956110239,
- 0.03769344463944435,
- 0.049331437796354294,
- -0.01576284132897854,
- 0.010167175903916359,
- -0.011334064416587353,
- 0.03305883705615997,
- 0.027444183826446533,
- -0.030553903430700302,
- 0.018813716247677803,
- -0.02701796032488346,
- -0.06256851553916931,
- -0.05206173285841942,
- 0.03353538364171982,
- 0.05086805671453476,
- -0.008811013773083687,
- 0.027085473760962486,
- -0.013303440064191818,
- -1.3474320326167799e-8,
- 0.017724743112921715,
- -0.0006729537271894515,
- -0.05505620688199997,
- -0.03862111270427704,
- 0.09761595726013184,
- 0.11887028068304062,
- 0.08617831021547318,
- -0.009949211031198502,
- -0.027534589171409607,
- 0.028103947639465332,
- 0.02852463535964489,
- -0.017471369355916977,
- -0.07046002149581909,
- 0.013240369036793709,
- 0.01659928262233734,
- -0.04860825464129448,
- -0.04951018840074539,
- -0.00700395368039608,
- -0.10968330502510071,
- 0.022183414548635483,
- 0.006847796496003866,
- 0.011368956416845322,
- 0.025553569197654724,
- -0.006194932386279106,
- 0.026978766545653343,
- 0.022389981895685196,
- 0.010716872289776802,
- -0.01863761804997921,
- -0.0018354193307459354,
- 0.07805009931325912,
- 0.03708351403474808,
- 0.0752732902765274,
- -0.02096986025571823,
- -0.08398126065731049,
- -0.007337562739849091,
- 0.010538730770349503,
- 0.030847230926156044,
- -0.011050548404455185,
- -0.005567664746195078,
- -0.036843519657850266,
- -0.01480818446725607,
- -0.020987428724765778,
- 0.021579843014478683,
- -0.02654261514544487,
- 0.07687129825353622,
- -0.06157463416457176,
- 0.0011838938808068633,
- -0.07602352648973465,
- -0.03324579447507858,
- 0.03268907219171524,
- -0.018432848155498505,
- -0.07448048144578934,
- 0.0643896609544754,
- 0.0844026654958725,
- 0.015987982973456383,
- -0.001020760159008205,
- 0.004318261053413153,
- 0.014085044153034687,
- -0.04550442844629288,
- -0.0005207991343922913,
- 0.04222601279616356,
- 0.018044032156467438,
- 0.15400651097297668,
- 0.043465208262205124
- ]
- },
- {
- "keyword": "including",
- "type": "contains",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.02821120247244835,
- -0.0015956914285197854,
- 0.06305088847875595,
- -0.01332148164510727,
- 0.031865715980529785,
- 0.0346018485724926,
- 0.042333342134952545,
- -0.008975155651569366,
- -0.021012069657444954,
- -0.016427267342805862,
- 0.035954952239990234,
- -0.01653207093477249,
- 0.020336419343948364,
- 0.026918159797787666,
- 0.03371873497962952,
- -0.05516844242811203,
- 0.03018283285200596,
- 0.03975474461913109,
- -0.06998846679925919,
- -0.09862285852432251,
- -0.028891459107398987,
- 0.04088223725557327,
- 0.0762057974934578,
- -0.00028405559714883566,
- 0.01032667700201273,
- 0.012019002810120583,
- -0.05974855273962021,
- -0.010384054854512215,
- 0.04946541041135788,
- -0.02467317134141922,
- -0.016763193532824516,
- -0.013768961653113365,
- 0.07839503884315491,
- -0.05845075100660324,
- -0.06315471976995468,
- 0.029839204624295235,
- 0.06143229827284813,
- 0.0007167510339058936,
- -0.03174322471022606,
- 0.0033980216830968857,
- -0.09013902395963669,
- -0.018349260091781616,
- 0.007202472072094679,
- 0.07933839410543442,
- 0.07326851040124893,
- -0.08067098259925842,
- 0.08932974934577942,
- -0.0867815837264061,
- 0.0771893784403801,
- 0.08552324771881104,
- 0.05364345759153366,
- 0.0168797355145216,
- 0.029299527406692505,
- 0.02955959178507328,
- 0.030439550057053566,
- -0.0074305362068116665,
- -0.032214488834142685,
- 0.02347632683813572,
- 0.010382400825619698,
- 0.0018686795374378562,
- -0.08131148666143417,
- 0.02219993621110916,
- -0.0841996893286705,
- -0.013507241383194923,
- -0.04358179122209549,
- -0.04833931848406792,
- -0.000521066423971206,
- 0.049856312572956085,
- -0.09070893377065659,
- 0.08939064294099808,
- -0.007017882540822029,
- 0.0495273619890213,
- 0.0512903556227684,
- -0.010623829439282417,
- 0.0833301916718483,
- 0.06440561264753342,
- 0.02597467415034771,
- -0.005823489278554916,
- 0.011608422733843327,
- -0.005230031441897154,
- 0.0067859794944524765,
- 0.012365520000457764,
- -0.008508116006851196,
- -0.04605270177125931,
- 0.05738126114010811,
- 0.019281208515167236,
- 0.03801560029387474,
- -0.08649630099534988,
- -0.09088512510061264,
- 0.04680058732628822,
- 0.0467909574508667,
- -0.05584777519106865,
- 0.027217065915465355,
- -0.010791504755616188,
- -0.009657126851379871,
- 0.04969931021332741,
- 0.06948888301849365,
- -0.10625480115413666,
- -0.042754899710416794,
- 0.20680780708789825,
- -0.041581280529499054,
- -0.011710520833730698,
- 0.05368312448263168,
- 0.008459089323878288,
- -0.026756061241030693,
- -0.02848259173333645,
- -0.008036071434617043,
- 0.042669836431741714,
- -0.009833291172981262,
- 0.01489283051341772,
- -0.023827776312828064,
- 0.027483057230710983,
- -0.00426050741225481,
- -0.007295942399650812,
- 0.057267650961875916,
- -0.005727666430175304,
- 0.07182088494300842,
- 0.02064148709177971,
- 0.030751749873161316,
- -0.014828103594481945,
- 0.013169098645448685,
- 0.018474889919161797,
- 0.06440838426351547,
- 0.05505162104964256,
- 0.005604593548923731,
- -0.10807950049638748,
- -0.05526158958673477,
- -4.0699526617603924e-33,
- -0.0015461492585018277,
- -0.029535455629229546,
- 0.0045137228444218636,
- -0.04395543783903122,
- -0.03990994766354561,
- 0.04313752055168152,
- 0.06914830207824707,
- -0.014329918660223484,
- -0.034167367964982986,
- 0.016351625323295593,
- -0.066839799284935,
- 0.061011090874671936,
- -0.058647338300943375,
- 0.05998693406581879,
- 0.11158884316682816,
- 0.10127709060907364,
- -0.027534930035471916,
- 0.1188998743891716,
- -0.02366946078836918,
- 0.013505236245691776,
- -0.07640866935253143,
- 0.017044993117451668,
- 0.01860933192074299,
- 0.08453730493783951,
- -0.03233577683568001,
- 0.020858662202954292,
- 0.03011435456573963,
- -0.06273885816335678,
- -0.031049493700265884,
- 0.0062681445851922035,
- 0.01309035625308752,
- 0.0011743594659492373,
- -0.04215649515390396,
- 0.06029396131634712,
- 0.026443002745509148,
- 0.06545434147119522,
- 0.025032024830579758,
- -0.07872913032770157,
- -0.013736575841903687,
- -0.005000661592930555,
- 0.012694125063717365,
- -0.02221737615764141,
- -0.0904749259352684,
- -0.05533351004123688,
- 0.006191276013851166,
- 0.04755543917417526,
- -0.06682910025119781,
- -0.003967334516346455,
- -0.0767529308795929,
- 0.0317101776599884,
- -0.024655001237988472,
- -0.002393904607743025,
- 0.010484770871698856,
- -0.0011178571730852127,
- -0.027336444705724716,
- -0.030501848086714745,
- 0.04080554470419884,
- -0.08459113538265228,
- 0.08837767690420151,
- 0.013156727887690067,
- -0.04805474355816841,
- 0.015300623141229153,
- -0.04408298432826996,
- -0.06146058812737465,
- -0.06477909535169601,
- 0.02410237304866314,
- 0.05218474939465523,
- 0.007785497233271599,
- -0.021900054067373276,
- 0.024169117212295532,
- -0.08093564957380295,
- 0.05193119868636131,
- 0.08362928032875061,
- 0.013181408867239952,
- -0.05227173492312431,
- -0.01776903122663498,
- 0.10586649924516678,
- 0.0057607488706707954,
- 0.044733792543411255,
- 0.04256167262792587,
- -0.031887996941804886,
- -0.05773407220840454,
- 0.017954137176275253,
- 0.021284492686390877,
- 0.09251987934112549,
- 0.024284575134515762,
- 0.07168575376272202,
- -0.08112705498933792,
- -0.010429478250443935,
- 0.024907618761062622,
- -0.10435310006141663,
- -0.04530152678489685,
- 0.02881958894431591,
- 0.0049228123389184475,
- -0.060177192091941833,
- 3.612163733672345e-33,
- -0.0722922533750534,
- -0.005854456219822168,
- 0.08225683867931366,
- 0.0037883634213358164,
- -0.0729062482714653,
- -0.02075350098311901,
- 0.04671501740813255,
- -0.005864585284143686,
- 0.09782101213932037,
- 0.035950917750597,
- -0.02870994806289673,
- 0.016719920560717583,
- -0.010161505080759525,
- 0.05751417949795723,
- 0.010858791880309582,
- 0.013476422056555748,
- 0.03517826274037361,
- -0.04064072668552399,
- 0.02365376055240631,
- -0.018010208383202553,
- -0.053847718983888626,
- -0.0053838100284338,
- 0.015109986998140812,
- 0.04441295564174652,
- -0.006676841992884874,
- 0.09085663408041,
- -0.018114730715751648,
- 0.04284704849123955,
- -0.03547845408320427,
- 0.005174779333174229,
- 0.03602676838636398,
- 0.002939727157354355,
- -0.10056235641241074,
- 0.02613409236073494,
- -0.05795898288488388,
- 0.009190969169139862,
- 0.013048280961811543,
- 0.05529894679784775,
- -0.014566199854016304,
- 0.07396996021270752,
- 0.1016567200422287,
- -0.021587654948234558,
- -0.025355812162160873,
- 0.13041220605373383,
- -0.003933884669095278,
- 0.015207917429506779,
- -0.025665519759058952,
- 0.03331826627254486,
- 0.006313170772045851,
- 0.05032261461019516,
- -0.0544775128364563,
- 0.04475045204162598,
- -0.1125357374548912,
- -0.005938591435551643,
- -0.08209612965583801,
- 0.08416534215211868,
- 0.003549320390447974,
- -0.036933522671461105,
- 0.054305512458086014,
- -0.05574982985854149,
- -0.0381423719227314,
- -0.0005995346000418067,
- -0.05010506138205528,
- -0.06465600430965424,
- -0.021053584292531013,
- -0.025976303964853287,
- 0.007985211908817291,
- -0.031563956290483475,
- -0.017918726429343224,
- -0.09300622344017029,
- -0.11918070912361145,
- -0.007214915938675404,
- -0.02801014482975006,
- 0.018913572654128075,
- -0.057239510118961334,
- 0.06572888046503067,
- -0.07567809522151947,
- -0.00797206349670887,
- 0.05183412879705429,
- -0.020728107541799545,
- -0.0519864596426487,
- -0.03691954165697098,
- -0.0007263065199367702,
- -0.04156523197889328,
- 0.0260207150131464,
- -0.11436828970909119,
- -0.0194511990994215,
- -0.05192452669143677,
- 0.022843264043331146,
- -0.032676149159669876,
- 0.0169359240680933,
- -0.05557674914598465,
- -0.040882132947444916,
- 0.026323800906538963,
- -0.005157558713108301,
- -1.4014352345270709e-8,
- 0.030788762494921684,
- 0.11026322841644287,
- 0.01132404338568449,
- -0.019523220136761665,
- 0.10124549269676208,
- 0.07938331365585327,
- 0.05009295791387558,
- 0.03584158420562744,
- 0.01604495756328106,
- 0.06016127020120621,
- 0.08795371651649475,
- -0.07393593341112137,
- 0.045159678906202316,
- 0.011900770477950573,
- 0.028853997588157654,
- -0.03765728697180748,
- -0.013392920605838299,
- -0.009129113517701626,
- -0.07880328595638275,
- 0.04908902943134308,
- -0.07296149432659149,
- 0.01917251944541931,
- 0.00013076342293061316,
- 0.0037163894157856703,
- 0.02719022147357464,
- -0.04791960120201111,
- -0.030346503481268883,
- 0.040907640010118484,
- 0.032332148402929306,
- 0.10241460055112839,
- -0.010030229575932026,
- -0.11217016726732254,
- -0.014816653914749622,
- -0.0685969665646553,
- -0.009755074977874756,
- -0.035854581743478775,
- -0.04307243973016739,
- -0.013779970817267895,
- 0.055563922971487045,
- -0.042689040303230286,
- -0.045594602823257446,
- -0.0315476693212986,
- 0.0700656920671463,
- 0.01395791582763195,
- 0.019996028393507004,
- -0.05078939348459244,
- -0.11924188584089279,
- -0.06072014942765236,
- 0.0011319973273202777,
- -0.03577550873160362,
- -0.044529736042022705,
- 0.06452541053295135,
- 0.08484826982021332,
- 0.0026061227545142174,
- 0.062206219881772995,
- 0.08202169835567474,
- 0.040577616542577744,
- -0.012961686588823795,
- 0.03378572687506676,
- 0.006354350596666336,
- 0.03538938984274864,
- -0.09656832367181778,
- 0.11794516444206238,
- 0.04776393622159958
- ]
- },
- {
- "keyword": "part of",
- "type": "partOf",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.022892341017723083,
- 0.09756245464086533,
- 0.10362919420003891,
- 0.04894853010773659,
- 0.060438185930252075,
- -0.054957613348960876,
- 0.11306358873844147,
- -0.009718028828501701,
- 0.014435880817472935,
- -0.03938664495944977,
- -0.02856658399105072,
- -0.01689128205180168,
- -0.0015890641370788217,
- -0.047639258205890656,
- 0.05368872359395027,
- -0.09293247759342194,
- 0.0022758275736123323,
- 0.020891599357128143,
- -0.11268500983715057,
- 0.013461681082844734,
- -0.1292080581188202,
- 0.08538300544023514,
- 0.0007141289534047246,
- -0.004901982378214598,
- 0.05803196504712105,
- 0.027402494102716446,
- -0.02289123833179474,
- 0.058996450155973434,
- 0.04218592494726181,
- -0.0014432603493332863,
- 0.017201747745275497,
- 0.06387864798307419,
- 0.0010285481112077832,
- 0.02357376180589199,
- -0.011043716222047806,
- 0.037169501185417175,
- 0.06845089048147202,
- -0.021291689947247505,
- 0.05145015940070152,
- -0.04491402581334114,
- 0.016949862241744995,
- -0.06925849616527557,
- -0.03161243721842766,
- 0.08802323043346405,
- 0.024561995640397072,
- 0.037353526800870895,
- 0.05828232318162918,
- -0.044592857360839844,
- 0.010681056417524815,
- -0.010887978598475456,
- -0.015937134623527527,
- -0.009128778241574764,
- -0.006029635202139616,
- 0.022540580481290817,
- -0.008040379732847214,
- 0.04479758441448212,
- 0.03889551758766174,
- -0.06343129277229309,
- 0.006926603149622679,
- -0.005116407759487629,
- 0.09386139363050461,
- 0.027111606672406197,
- -0.09058815240859985,
- 0.04635828360915184,
- 0.032237567007541656,
- -0.10524391382932663,
- 0.059192392975091934,
- 0.0007029288099147379,
- -0.06475906074047089,
- -0.03194086253643036,
- 0.026768913492560387,
- 0.011172669008374214,
- 0.03866056352853775,
- 0.04165080562233925,
- -0.005780869163572788,
- 0.02233865298330784,
- 0.07201339304447174,
- -0.003914829343557358,
- 0.05836215615272522,
- -0.0004187194281257689,
- 0.06027458980679512,
- 0.0005789955612272024,
- -0.0354270376265049,
- -0.012255101464688778,
- 0.00919647142291069,
- -0.028251053765416145,
- 0.074586883187294,
- -0.06200750917196274,
- -0.05886520817875862,
- 0.03151167556643486,
- -0.024080147966742516,
- -0.05897745490074158,
- 0.13644194602966309,
- 0.001428141607902944,
- -0.016844378784298897,
- -0.018400687724351883,
- 0.0010742292506620288,
- 0.03649290278553963,
- 0.07223357260227203,
- 0.1792038083076477,
- -0.059670332819223404,
- 0.03603237122297287,
- 0.031131241470575333,
- -0.07190734148025513,
- -0.059771426022052765,
- -0.0032993971835821867,
- -0.09037906676530838,
- 0.06630243360996246,
- 0.0123831732198596,
- -0.028881467878818512,
- -0.04992415010929108,
- -0.04252077266573906,
- 0.08015831559896469,
- 0.01551487110555172,
- 0.06124597042798996,
- -0.06568624824285507,
- 0.0666431188583374,
- 0.0036835200153291225,
- 0.06748002022504807,
- -0.010363101027905941,
- 0.02007131278514862,
- 0.02221490442752838,
- -0.0028294390067458153,
- 0.04454834759235382,
- -0.022828368470072746,
- -0.14243638515472412,
- 0.005690593738108873,
- -4.280307008498056e-33,
- 0.029727905988693237,
- -0.0766938254237175,
- 0.005399361252784729,
- 0.017146261408925056,
- -0.013156995177268982,
- 0.05341768637299538,
- 0.034181639552116394,
- -0.02390408329665661,
- -0.07438377290964127,
- 0.051343806087970734,
- -0.022732064127922058,
- -0.027575351297855377,
- -0.02812255173921585,
- -0.016283128410577774,
- 0.12863999605178833,
- 0.0008391399751417339,
- -0.05094826966524124,
- 0.051138535141944885,
- -0.09815939515829086,
- -0.05908084660768509,
- -0.09230326116085052,
- 0.08411015570163727,
- -0.046286992728710175,
- 0.05882924050092697,
- -0.03283711522817612,
- -0.056168366223573685,
- 0.011189987882971764,
- -0.0832429900765419,
- -0.02798181213438511,
- 0.03062676452100277,
- -0.03080563247203827,
- 0.09006717056035995,
- -0.056875862181186676,
- -0.028359893709421158,
- 0.02240682952105999,
- -0.03767558932304382,
- 0.011560012586414814,
- -0.05154133215546608,
- -0.09754567593336105,
- -0.02360560931265354,
- -0.04256610944867134,
- -0.005642414093017578,
- 0.056551557034254074,
- -0.023431790992617607,
- -0.056962162256240845,
- -0.024837316945195198,
- -0.05612877011299133,
- 0.046050820499658585,
- 0.00284165283665061,
- 0.029584597796201706,
- -0.04021560028195381,
- -0.01933627761900425,
- 0.011980658397078514,
- -0.05935318022966385,
- -0.028038885444402695,
- 0.008693579584360123,
- -0.021412665024399757,
- -0.07100845873355865,
- 0.03931472823023796,
- -0.02099991962313652,
- -0.011301585473120213,
- 0.0696987584233284,
- -0.04527284577488899,
- -0.01807803474366665,
- -0.07264596223831177,
- 0.000545447925105691,
- 0.04536858946084976,
- -0.057652875781059265,
- 0.036917589604854584,
- -0.01896926574409008,
- -0.14419914782047272,
- -0.017052313312888145,
- 0.07427604496479034,
- 0.04948883876204491,
- -0.013811565935611725,
- -0.035286203026771545,
- 0.030676890164613724,
- 0.03652188554406166,
- -0.08451137691736221,
- 0.07305803894996643,
- -0.04830425605177879,
- -0.028951046988368034,
- -0.060436878353357315,
- 0.053115036338567734,
- 0.01505573932081461,
- 0.045662764459848404,
- 0.055159274488687515,
- -0.09494578093290329,
- -0.019462259486317635,
- -0.019121317192912102,
- -0.1325550377368927,
- -0.009145138785243034,
- 0.020732970908284187,
- 0.01834951713681221,
- 0.017930040135979652,
- 1.8015066224175815e-33,
- -0.0766763985157013,
- -0.05373598262667656,
- 0.07230198383331299,
- -0.020736491307616234,
- -0.02551315911114216,
- -0.03018670342862606,
- 0.015800978988409042,
- 0.03168895095586777,
- -0.013384785503149033,
- 0.1189698800444603,
- -0.12058382481336594,
- -0.03619661182165146,
- -0.03650795668363571,
- 0.00965605117380619,
- 0.0029636931139975786,
- 0.008994399569928646,
- 0.09131278842687607,
- 0.016113029792904854,
- 0.022053465247154236,
- 0.037611961364746094,
- -0.02943815477192402,
- -0.019923368468880653,
- 0.06370265781879425,
- -0.03910451382398605,
- -0.021287450566887856,
- 0.04684023559093475,
- 0.03684515133500099,
- 0.08587639778852463,
- -0.07426925748586655,
- 0.032176412642002106,
- 0.02062373422086239,
- -0.06241645663976669,
- -0.07598260790109634,
- -0.015074392780661583,
- -0.05787448585033417,
- 0.0706477239727974,
- 0.04771748557686806,
- 0.057726405560970306,
- 0.0651284009218216,
- 0.014387859031558037,
- 0.10409627854824066,
- -0.01784755103290081,
- 0.012311688624322414,
- 0.14440211653709412,
- 0.0028374672401696444,
- -0.034043435007333755,
- 0.08687952160835266,
- 0.05707922205328941,
- -0.04276574030518532,
- 0.03575843572616577,
- -0.06710858643054962,
- -0.008348274976015091,
- 0.044676780700683594,
- 0.015501908957958221,
- -0.003158884821459651,
- -0.007458290085196495,
- -0.014886393211781979,
- -0.01470279786735773,
- 0.010431714355945587,
- -0.03626620024442673,
- -0.05262349545955658,
- 0.0591190941631794,
- -0.0062714372761547565,
- -0.03537097945809364,
- 0.07816877961158752,
- -0.007866403087973595,
- -0.024230768904089928,
- 0.005754812154918909,
- 0.06279473006725311,
- -0.04159621521830559,
- 0.018236767500638962,
- 0.09066415578126907,
- -0.021214045584201813,
- -0.017798151820898056,
- -0.002091344678774476,
- 0.00799452792853117,
- -0.03812243416905403,
- -0.015691429376602173,
- 0.009227417409420013,
- -0.040586140006780624,
- -0.05437478795647621,
- -0.1148596853017807,
- -0.03175077959895134,
- -0.03946996107697487,
- -0.03830352798104286,
- -0.03472452238202095,
- 0.006629663519561291,
- -0.022575512528419495,
- -0.015310327522456646,
- -0.08715558052062988,
- -0.0013242585118860006,
- 0.056550852954387665,
- 0.029037026688456535,
- -0.01425234042108059,
- 0.044255197048187256,
- -1.396290016941748e-8,
- 0.040338680148124695,
- 0.03109125606715679,
- -0.08354316651821136,
- -0.04330052435398102,
- 0.06944966316223145,
- 0.11460259556770325,
- -0.019889360293745995,
- 0.03428107872605324,
- 0.023220641538500786,
- 0.06943447887897491,
- 0.07981782406568527,
- -0.0156696867197752,
- -0.0309141818434,
- 0.016776787117123604,
- -0.03493209928274155,
- -0.021364687010645866,
- -0.0064377617090940475,
- 0.05818197503685951,
- -0.08900931477546692,
- 0.053421273827552795,
- 0.008344714529812336,
- -0.0067914752289652824,
- -0.0021371657494455576,
- -0.04322761669754982,
- -0.013849090784788132,
- -0.006525047589093447,
- -0.0241306833922863,
- 0.05158352479338646,
- -0.034825608134269714,
- 0.010370106436312199,
- 0.007278270088136196,
- 0.07226995378732681,
- -0.028938325121998787,
- -0.009304085746407509,
- 0.06621237844228745,
- -0.02888381853699684,
- -0.00482150400057435,
- -0.016647664830088615,
- 0.000620695180259645,
- -0.04036056250333786,
- -0.010132314637303352,
- -0.07749052345752716,
- 0.11684856563806534,
- 0.03242972865700722,
- -0.005626965314149857,
- 0.0003056308487430215,
- -0.05857020244002342,
- 0.014370182529091835,
- 0.009136293083429337,
- -0.0033953823149204254,
- -0.0789293572306633,
- 0.040236957371234894,
- -0.013906355015933514,
- 0.015530112199485302,
- 0.023207781836390495,
- -0.003067364916205406,
- 0.00898497924208641,
- -0.06993912160396576,
- -0.08342951536178589,
- 0.028647007420659065,
- 0.04976532235741615,
- 0.07742006331682205,
- 0.020004864782094955,
- 0.031943295150995255
- ]
- },
- {
- "keyword": "belongs to",
- "type": "partOf",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.01820758543908596,
- -0.02579866535961628,
- 0.01893552765250206,
- -0.010790265165269375,
- 0.04200807213783264,
- -0.011856917291879654,
- 0.12466277927160263,
- -0.050810687243938446,
- 0.02675812505185604,
- -0.01924924924969673,
- -0.029125573113560677,
- -0.07120450586080551,
- 0.09960576146841049,
- -0.026437392458319664,
- -0.00834509078413248,
- -0.006816720124334097,
- -0.02920861542224884,
- -0.0051154582761228085,
- -0.09993578493595123,
- -0.04544885456562042,
- -0.06666290014982224,
- 0.023260241374373436,
- 0.02258242480456829,
- 0.022322017699480057,
- -0.02846905216574669,
- 0.06524692475795746,
- -0.0042848363518714905,
- 0.03649081289768219,
- 0.0037018803413957357,
- -0.035887930542230606,
- -0.018365750089287758,
- 0.019389942288398743,
- -0.05268188565969467,
- 0.029157070443034172,
- 0.03584400191903114,
- 0.011277367360889912,
- 0.05880335345864296,
- -0.03951171785593033,
- 0.03345055505633354,
- -0.03760548681020737,
- -0.013154168613255024,
- -0.024271365255117416,
- 0.042919427156448364,
- -0.012796495109796524,
- 0.01899983361363411,
- 0.06670328229665756,
- 0.025828510522842407,
- -0.0461488775908947,
- 0.030654551461338997,
- 0.055081505328416824,
- -0.039594847708940506,
- -0.025002947077155113,
- -0.02277437224984169,
- 0.07906083017587662,
- 0.0033453761134296656,
- 0.08532033115625381,
- 0.0033117267303168774,
- 0.005783772096037865,
- -0.010175191797316074,
- -0.00041044590761885047,
- 0.07277434319257736,
- 0.029278241097927094,
- -0.012438095174729824,
- 0.003719621803611517,
- -0.018614087253808975,
- -0.025582319125533104,
- -0.006726144813001156,
- 0.06767705827951431,
- -0.10228320956230164,
- -0.0030011169146746397,
- 0.07034870982170105,
- 0.04201752692461014,
- -0.03826211020350456,
- 0.13428550958633423,
- 0.02654774859547615,
- -0.013613511808216572,
- 0.07071417570114136,
- -0.028483688831329346,
- 0.09568633884191513,
- -0.07662663608789444,
- 0.014421524479985237,
- 0.03045562468469143,
- -0.043911948800086975,
- 0.03703057020902634,
- -0.008282195776700974,
- -0.003119522472843528,
- 0.02448086254298687,
- -0.07182254642248154,
- -0.0941493958234787,
- 0.008443114347755909,
- -0.035205114632844925,
- -0.04459163174033165,
- 0.14120511710643768,
- 0.022551702335476875,
- -0.06911597400903702,
- -0.013452436774969101,
- 0.054942063987255096,
- 0.03433355316519737,
- -0.03912390395998955,
- 0.20163673162460327,
- -0.03415224328637123,
- 0.02509325183928013,
- -0.03628766909241676,
- 0.014543313533067703,
- 0.010975439101457596,
- 0.0116599565371871,
- 0.025591641664505005,
- 0.06971243768930435,
- 0.06663381308317184,
- -0.06438452750444412,
- -0.02640715055167675,
- 0.039355047047138214,
- -0.11127720773220062,
- 0.061950430274009705,
- 0.04919490963220596,
- -0.12856020033359528,
- -0.03199567645788193,
- -0.0011370825814083219,
- -0.005599473603069782,
- -0.049603287130594254,
- 0.000496978813316673,
- 0.022150445729494095,
- -0.0214593093842268,
- 0.03846472501754761,
- -0.017117008566856384,
- -0.10786057263612747,
- -0.03623020276427269,
- -6.597802937351827e-33,
- 0.028960546478629112,
- 0.034854575991630554,
- -0.01691490225493908,
- 0.00849892944097519,
- 0.00002750333078438416,
- 0.03695596754550934,
- -0.021385878324508667,
- 0.05450465530157089,
- -0.10613454878330231,
- 0.020756911486387253,
- -0.05105193331837654,
- 0.05916433408856392,
- -0.036128487437963486,
- -0.05154094099998474,
- 0.12541113793849945,
- 0.04338274151086807,
- -0.04848760738968849,
- 0.00014158053090795875,
- -0.03778942674398422,
- -0.051619429141283035,
- -0.06009794771671295,
- 0.13952776789665222,
- -0.053144533187150955,
- 0.030010730028152466,
- -0.010367639362812042,
- 0.0583735927939415,
- -0.056243591010570526,
- -0.07610984891653061,
- -0.037806976586580276,
- 0.04588231071829796,
- -0.004303154535591602,
- 0.00027538574067875743,
- -0.054631929844617844,
- -0.056277092546224594,
- 0.0001334692060481757,
- -0.004696421325206757,
- 0.04781395569443703,
- -0.01213181670755148,
- -0.012349426746368408,
- -0.00875176303088665,
- 0.021624909713864326,
- -0.041845329105854034,
- 0.005788280628621578,
- 0.04172087833285332,
- 0.02946280688047409,
- 0.03533807769417763,
- 0.08309783041477203,
- 0.011690391227602959,
- 0.06776966154575348,
- 0.070988729596138,
- 0.003757375990971923,
- -0.07228202372789383,
- -0.015965107828378677,
- 0.0025529060512781143,
- -0.03130216896533966,
- -0.10517352819442749,
- 0.021974196657538414,
- 0.02385011874139309,
- 0.03930557891726494,
- -0.07795462012290955,
- 0.07605874538421631,
- 0.024346835911273956,
- -0.05865982919931412,
- 0.07182146608829498,
- 0.0003322568954899907,
- 0.047270774841308594,
- -0.016154885292053223,
- -0.07484157383441925,
- 0.051535412669181824,
- -0.03232878819108009,
- -0.05169249325990677,
- 0.02582656964659691,
- -0.057655006647109985,
- 0.09777579456567764,
- -0.04088239744305611,
- -0.035658665001392365,
- -0.01953940838575363,
- 0.0064786579459905624,
- -0.06481029838323593,
- 0.019502896815538406,
- -0.03971681743860245,
- -0.017684318125247955,
- -0.04401974380016327,
- 0.02428307570517063,
- 0.06739813089370728,
- -0.04073256254196167,
- -0.015619765035808086,
- -0.1959686428308487,
- -0.002430310007184744,
- 0.046747077256441116,
- 0.06314049661159515,
- 0.006048307754099369,
- -0.023654090240597725,
- 0.07943359762430191,
- -0.05697052925825119,
- 3.804891909961413e-33,
- -0.0351606048643589,
- -0.020404022186994553,
- 0.046380724757909775,
- 0.03683667257428169,
- 0.03975918889045715,
- -0.06826630234718323,
- 0.07878410071134567,
- -0.0024267593398690224,
- -0.0437820740044117,
- 0.013860941864550114,
- -0.025821436196565628,
- -0.020504266023635864,
- 0.04625021666288376,
- 0.015599632635712624,
- 0.03858877345919609,
- 0.038978978991508484,
- 0.06019776314496994,
- -0.026698492467403412,
- -0.09766645729541779,
- -0.03564377874135971,
- -0.07943069189786911,
- 0.06920380890369415,
- -0.0031723235733807087,
- 0.004885196220129728,
- -0.03271588310599327,
- 0.08615768700838089,
- 0.03971870616078377,
- 0.03206463158130646,
- -0.016853176057338715,
- -0.09234758466482162,
- 0.025416206568479538,
- -0.021853366866707802,
- -0.06700585037469864,
- -0.048612866550683975,
- -0.022539760917425156,
- 0.04084094986319542,
- 0.004090346861630678,
- -0.048523079603910446,
- -0.02562778629362583,
- 0.017115896567702293,
- 0.022954246029257774,
- 0.016735097393393517,
- -0.0007364205666817725,
- 0.18429109454154968,
- 0.028583457693457603,
- 0.011871455237269402,
- 0.03783202916383743,
- -0.011112328618764877,
- 0.08325129747390747,
- 0.023956837132573128,
- 0.010646926239132881,
- -0.037924617528915405,
- 0.06529972702264786,
- -0.004977855831384659,
- 0.08139722794294357,
- 0.04712698981165886,
- -0.03501300513744354,
- 0.025273840874433517,
- 0.018061498180031776,
- -0.04281110316514969,
- 0.0017078717937693,
- 0.0721178725361824,
- -0.028133951127529144,
- 0.08388260751962662,
- -0.051969289779663086,
- -0.06282292306423187,
- -0.07868541032075882,
- 0.06058550626039505,
- -0.03691404312849045,
- -0.025861449539661407,
- -0.04723595455288887,
- -0.0698903501033783,
- -0.04329250007867813,
- -0.027359366416931152,
- -0.057933371514081955,
- -0.029657110571861267,
- -0.022273339331150055,
- 0.07376717776060104,
- -0.03286277875304222,
- -0.07668443024158478,
- -0.07106027752161026,
- -0.06346879154443741,
- -0.007699067238718271,
- 0.018884435296058655,
- 0.016569504514336586,
- -0.0026872893795371056,
- 0.12207317352294922,
- -0.06309428066015244,
- 0.0342344231903553,
- -0.05387308821082115,
- 0.05056636407971382,
- 0.04959091171622276,
- -0.0344025120139122,
- -0.09009277075529099,
- -0.04056188836693764,
- -1.4180469243285643e-8,
- -0.013719192706048489,
- 0.043315254151821136,
- -0.013246022164821625,
- 0.027760185301303864,
- 0.003152277087792754,
- 0.05110796540975571,
- 0.058508120477199554,
- -0.004886437673121691,
- 0.003277565585449338,
- 0.11152027547359467,
- -0.0022942647337913513,
- 0.00914035551249981,
- 0.027975110337138176,
- 0.005509966053068638,
- 0.031215505674481392,
- -0.023521913215517998,
- -0.05587049201130867,
- -0.031306978315114975,
- -0.06581255048513412,
- 0.06685812026262283,
- -0.032706521451473236,
- -0.007899590767920017,
- 0.005159531254321337,
- -0.050024375319480896,
- -0.057441599667072296,
- -0.05585375055670738,
- -0.009574316442012787,
- -0.05552297830581665,
- 0.048792652785778046,
- 0.07207492738962173,
- -0.006813188549131155,
- 0.07885466516017914,
- -0.039461586624383926,
- -0.015824569389224052,
- -0.06379449367523193,
- -0.08171945810317993,
- 0.024578966200351715,
- -0.0005420547095127404,
- 0.004069115500897169,
- -0.072243832051754,
- -0.018055206164717674,
- -0.0019181318348273635,
- -0.027850978076457977,
- 0.08290651440620422,
- -0.009980822913348675,
- -0.0005493824719451368,
- 0.07439307123422623,
- -0.05622929334640503,
- -0.015848511829972267,
- 0.00016469070396851748,
- -0.026130270212888718,
- -0.045180968940258026,
- -0.01304715871810913,
- 0.04787837713956833,
- -0.007013867609202862,
- -0.006293552927672863,
- -0.03624827042222023,
- 0.024737797677516937,
- -0.06272844225168228,
- -0.004555700812488794,
- 0.047868434339761734,
- 0.07068967074155807,
- 0.06706235557794571,
- 0.04629585146903992
- ]
- },
- {
- "keyword": "component of",
- "type": "partOf",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.012936911545693874,
- 0.025276103988289833,
- 0.0057355379685759544,
- 0.030849017202854156,
- 0.04739246517419815,
- 0.047094255685806274,
- 0.1650192141532898,
- -0.016034791246056557,
- 0.050893619656562805,
- -0.035702865570783615,
- 0.05821526050567627,
- -0.06136176362633705,
- 0.03920040652155876,
- -0.003823715029284358,
- 0.027359027415513992,
- -0.04984187334775925,
- 0.005120862275362015,
- 0.02095676027238369,
- -0.09493691474199295,
- 0.01610266976058483,
- -0.10094758123159409,
- 0.02971162460744381,
- -0.007842661812901497,
- -0.00354743585921824,
- -0.007174267433583736,
- 0.09031198918819427,
- 0.07024763524532318,
- -0.027269575744867325,
- 0.09014300256967545,
- -0.0594349130988121,
- 0.0424325168132782,
- 0.059811994433403015,
- -0.04227389767765999,
- 0.004554094281047583,
- -0.04443126544356346,
- 0.04845985770225525,
- 0.04763907566666603,
- -0.010271795094013214,
- -0.0251469686627388,
- -0.045121725648641586,
- 0.0299230869859457,
- -0.045277029275894165,
- -0.03872225806117058,
- 0.018667401745915413,
- 0.031055141240358353,
- 0.02629842795431614,
- 0.026513317599892616,
- -0.06906557828187943,
- 0.005857622716575861,
- -0.015399467200040817,
- -0.0811929926276207,
- -0.0496579185128212,
- 0.0010027632815763354,
- 0.054013852030038834,
- -0.01934175193309784,
- 0.04996838793158531,
- -0.001694166217930615,
- -0.009604726918041706,
- -0.01653309352695942,
- -0.04444718733429909,
- -0.006127392873167992,
- 0.015143118798732758,
- -0.009438981302082539,
- 0.0408315546810627,
- 0.08823808282613754,
- -0.04914476349949837,
- -0.0472826324403286,
- -0.04314066842198372,
- -0.07853370904922485,
- -0.03962553292512894,
- 0.027204398065805435,
- -0.01474811788648367,
- 0.059433355927467346,
- 0.03329573571681976,
- 0.02102125622332096,
- 0.00007416182052111253,
- 0.002959046047180891,
- -0.05596806854009628,
- 0.09802711755037308,
- -0.019724516198039055,
- 0.11681421101093292,
- 0.10196258872747421,
- -0.04313819855451584,
- -0.010544996708631516,
- 0.03608943894505501,
- 0.05742055922746658,
- 0.048091500997543335,
- -0.08687857538461685,
- -0.06938488781452179,
- -0.02199641242623329,
- -0.026512648910284042,
- 0.0015625862870365381,
- 0.13856366276741028,
- 0.029541602358222008,
- 0.020494459196925163,
- 0.0412096232175827,
- -0.00736248679459095,
- 0.0203945804387331,
- 0.054515235126018524,
- 0.17336316406726837,
- 0.024764468893408775,
- 0.0185807216912508,
- -0.014979448169469833,
- 0.004686741624027491,
- -0.10217339545488358,
- -0.03515029326081276,
- -0.0756673589348793,
- 0.0389217883348465,
- 0.056772153824567795,
- -0.0316421240568161,
- -0.04274402931332588,
- -0.008818826638162136,
- -0.035057421773672104,
- -0.058359578251838684,
- 0.013253265991806984,
- -0.10245449841022491,
- 0.010871859267354012,
- -0.02367299422621727,
- 0.026430174708366394,
- -0.048974018543958664,
- 0.03318173438310623,
- 0.00037631983286701143,
- -0.013685429468750954,
- -0.00842222012579441,
- -0.03509516268968582,
- -0.1113671213388443,
- 0.0151224285364151,
- -4.768698462641823e-33,
- 0.006343315355479717,
- 0.019734855741262436,
- -0.031617555767297745,
- 0.016524987295269966,
- -0.017526723444461823,
- 0.052293214946985245,
- 0.03498062863945961,
- 0.017344065010547638,
- -0.030420226976275444,
- 0.020515764132142067,
- -0.06710927933454514,
- 0.01913534291088581,
- -0.06065067648887634,
- 0.011625496670603752,
- 0.08676116913557053,
- -0.022901806980371475,
- -0.014067471027374268,
- 0.07418255507946014,
- -0.03350415453314781,
- -0.10367325693368912,
- -0.07845290005207062,
- 0.09417934715747833,
- -0.010662507265806198,
- 0.044782835990190506,
- 0.021139662712812424,
- -0.042118631303310394,
- -0.007157579995691776,
- -0.06570953875780106,
- -0.1495683789253235,
- 0.015794966369867325,
- 0.02221851423382759,
- 0.06030774116516113,
- -0.04501303285360336,
- 0.04524953290820122,
- -0.015674639493227005,
- -0.022707683965563774,
- -0.037651676684617996,
- -0.046142980456352234,
- -0.08118820935487747,
- -0.028849683701992035,
- -0.02342396043241024,
- -0.0015446593752130866,
- 0.07243302464485168,
- 0.0030232153367251158,
- 0.008478089235723019,
- -0.0028490321710705757,
- 0.0003735675127245486,
- 0.09688735008239746,
- 0.0632617175579071,
- 0.0342586375772953,
- 0.010366407223045826,
- 0.03283318877220154,
- 0.08634953200817108,
- -0.04215879365801811,
- 0.028610102832317352,
- 0.05176025629043579,
- -0.00775877432897687,
- 0.07126781344413757,
- 0.04539557546377182,
- -0.0279171671718359,
- -0.049716390669345856,
- 0.0627778097987175,
- -0.010077599436044693,
- 0.0380624420940876,
- -0.10188831388950348,
- 0.046466439962387085,
- -0.01134090218693018,
- -0.07844781875610352,
- 0.025248389691114426,
- 0.0005469575989991426,
- -0.06907028704881668,
- -0.012838640250265598,
- 0.019812235608696938,
- 0.03653932735323906,
- -0.020021608099341393,
- -0.05376069247722626,
- -0.07113371789455414,
- -0.02108597941696644,
- -0.11743373423814774,
- 0.05516316369175911,
- -0.17425797879695892,
- 0.020744746550917625,
- -0.06726332753896713,
- 0.06573287397623062,
- 0.002452149987220764,
- 0.009517406113445759,
- 0.04216744750738144,
- -0.07945035398006439,
- 0.022803612053394318,
- 0.03532124310731888,
- -0.06200291961431503,
- -0.02335299551486969,
- -0.031964827328920364,
- 0.02725300006568432,
- 0.03705801069736481,
- 2.4377706741199843e-33,
- -0.04501795768737793,
- 0.007118722423911095,
- 0.03551121801137924,
- -0.005339636467397213,
- -0.0011486149160191417,
- -0.08407839387655258,
- 0.0007876811432652175,
- -0.06108963489532471,
- -0.05420301854610443,
- 0.10636571049690247,
- 0.03650914505124092,
- -0.0053196800872683525,
- -0.0217906404286623,
- -0.030374735593795776,
- -0.013013068586587906,
- 0.11880092322826385,
- 0.056055039167404175,
- -0.001399388536810875,
- 0.010721186175942421,
- -0.03333084285259247,
- -0.07249163091182709,
- -0.007276427932083607,
- 0.045437030494213104,
- -0.04621000587940216,
- 0.01028508972376585,
- 0.05615256354212761,
- 0.08345768600702286,
- 0.03283379599452019,
- -0.032050736248493195,
- 0.0073974174447357655,
- -0.006485559977591038,
- -0.022532029077410698,
- -0.048061951994895935,
- -0.03277413547039032,
- -0.06727011501789093,
- 0.018928496167063713,
- 0.05259082093834877,
- -0.07417472451925278,
- -0.029241444543004036,
- -0.05569099262356758,
- 0.0752389207482338,
- 0.03271658346056938,
- 0.02471112832427025,
- 0.13612018525600433,
- -0.03494558483362198,
- -0.06041441857814789,
- 0.09546707570552826,
- -0.004114571493119001,
- 0.03200491517782211,
- 0.06812863796949387,
- -0.04400554299354553,
- -0.07573726773262024,
- 0.058167390525341034,
- -0.010753142647445202,
- 0.02633662149310112,
- 0.05171087756752968,
- 0.015566729940474033,
- -0.013551452197134495,
- 0.08395148813724518,
- -0.03876277059316635,
- 0.03249640390276909,
- 0.034934498369693756,
- -0.0053708236664533615,
- -0.01283145323395729,
- 0.10156846791505814,
- -0.02994586154818535,
- -0.017926573753356934,
- 0.047767896205186844,
- 0.058394402265548706,
- -0.042538128793239594,
- 0.06958308070898056,
- 0.03928029164671898,
- -0.028501160442829132,
- -0.004610346630215645,
- -0.022454023361206055,
- -0.02181929722428322,
- -0.03731353208422661,
- 0.021718788892030716,
- 0.03126775473356247,
- -0.026421861723065376,
- -0.0005079155089333653,
- -0.0643123909831047,
- 0.016157042235136032,
- -0.07699369639158249,
- -0.016893930733203888,
- -0.05438636988401413,
- 0.017264721915125847,
- 0.02319568768143654,
- 0.004754448309540749,
- -0.02035827748477459,
- -0.023198915645480156,
- 0.08731074631214142,
- -0.05041541904211044,
- 0.0385100282728672,
- -0.01548113115131855,
- -1.3615603755567918e-8,
- -0.010413720272481441,
- -0.03779233247041702,
- -0.09598180651664734,
- -0.08746007084846497,
- 0.07038412243127823,
- -0.015430680476129055,
- 0.029528191313147545,
- 0.02695775218307972,
- -0.030988525599241257,
- 0.11465057730674744,
- 0.09474779665470123,
- -0.022816531360149384,
- -0.034669745713472366,
- 0.020524585619568825,
- 0.07446068525314331,
- -0.024000506848096848,
- -0.0707336962223053,
- -0.0037833862006664276,
- -0.10107268393039703,
- -0.012125479988753796,
- 0.051951829344034195,
- 0.006652695592492819,
- -0.0042314850725233555,
- 0.043790776282548904,
- 0.01646309532225132,
- -0.07091884315013885,
- 0.022793205454945564,
- 0.02055867575109005,
- 0.04149806126952171,
- 0.04176976531744003,
- -0.017993619665503502,
- 0.05861884355545044,
- -0.014617319218814373,
- -0.03640370815992355,
- -0.01700800471007824,
- 0.03534426540136337,
- 0.011577597819268703,
- -0.016923299059271812,
- 0.032323554158210754,
- -0.0088639622554183,
- -0.04153672233223915,
- -0.11645790189504623,
- 0.019652090966701508,
- 0.021220428869128227,
- -0.044359322637319565,
- 0.04784929007291794,
- -0.11717481911182404,
- 0.004224726464599371,
- -0.02604585513472557,
- -0.016884097829461098,
- -0.08142872154712677,
- -0.0018400975968688726,
- -0.059454191476106644,
- 0.050919704139232635,
- -0.0002748090191744268,
- -0.030696582049131393,
- 0.03512006253004074,
- -0.06075490638613701,
- 0.008229602128267288,
- -0.014674327336251736,
- -0.007367741782218218,
- 0.08932256698608398,
- 0.06541922688484192,
- -0.03734993562102318
- ]
- },
- {
- "keyword": "element of",
- "type": "partOf",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.008927418850362301,
- 0.09781434386968613,
- 0.020073067396879196,
- 0.08516911417245865,
- -0.0072413245216012,
- -0.03832093998789787,
- 0.2177402824163437,
- -0.06590921431779861,
- 0.06489744037389755,
- -0.04024685546755791,
- -0.004132102709263563,
- -0.06054556369781494,
- 0.05246035009622574,
- -0.10659169405698776,
- 0.027203518897294998,
- -0.020010149106383324,
- -0.02343921549618244,
- 0.044658299535512924,
- -0.08799675852060318,
- -0.012002731673419476,
- -0.04095068946480751,
- -0.026670049875974655,
- -0.0057929502800107,
- 0.04903469979763031,
- -0.018144039437174797,
- 0.12130726128816605,
- -0.00426230113953352,
- -0.025479592382907867,
- 0.07303464412689209,
- -0.07253165543079376,
- -0.025419486686587334,
- 0.04850475490093231,
- 0.042828578501939774,
- 0.007996845990419388,
- -0.015967141836881638,
- 0.009952894411981106,
- 0.0268603153526783,
- 0.005448013078421354,
- -0.03935721516609192,
- 0.040987689048051834,
- -0.04166976734995842,
- -0.029522977769374847,
- 0.06175779551267624,
- 0.024782417342066765,
- -0.008213773369789124,
- 0.007353721186518669,
- 0.028378335759043694,
- -0.05235421657562256,
- 0.04979546740651131,
- 0.017696863040328026,
- -0.04252983257174492,
- -0.04645825922489166,
- -0.046956490725278854,
- 0.027051417157053947,
- -0.027206620201468468,
- 0.053976163268089294,
- 0.07262212038040161,
- 0.008999992161989212,
- -0.014750954695045948,
- -0.0573183074593544,
- -0.03165677562355995,
- -0.02432279661297798,
- -0.000018687247575144283,
- 0.041980355978012085,
- 0.080220527946949,
- 0.01108416449278593,
- -0.002224010182544589,
- -0.05725627392530441,
- -0.10357808321714401,
- -0.022836901247501373,
- 0.07248793542385101,
- 0.011943655088543892,
- 0.057456593960523605,
- 0.08596838265657425,
- -0.021563149988651276,
- 0.052538398653268814,
- 0.04347101226449013,
- -0.10201388597488403,
- 0.05238397419452667,
- 0.03798731043934822,
- -0.009111529216170311,
- 0.01387612521648407,
- -0.05123862624168396,
- -0.017924226820468903,
- 0.027286237105727196,
- 0.05717265605926514,
- 0.041209276765584946,
- -0.08650357276201248,
- -0.07240863144397736,
- -0.002423821482807398,
- -0.00980579387396574,
- 0.03558116778731346,
- 0.09345592558383942,
- 0.024075310677289963,
- 0.057625964283943176,
- 0.13853751122951508,
- 0.055339835584163666,
- -0.018874313682317734,
- -0.03264110907912254,
- 0.1679653525352478,
- 0.0890168622136116,
- 0.07413801550865173,
- -0.05312662944197655,
- -0.023533491417765617,
- -0.11147758364677429,
- -0.025997145101428032,
- -0.023438697680830956,
- -0.027920786291360855,
- -0.010047989897429943,
- -0.013084561564028263,
- 0.008541510440409184,
- -0.05039561912417412,
- -0.03406979516148567,
- -0.013428037986159325,
- -0.006367977242916822,
- -0.05768199637532234,
- 0.047860804945230484,
- -0.021492619067430496,
- -0.0042844172567129135,
- -0.02776423655450344,
- 0.06714670360088348,
- 0.005543554667383432,
- -0.018009042367339134,
- 0.004929221700876951,
- 0.0025102728977799416,
- -0.07768196612596512,
- 0.005055633839219809,
- -4.2278046553445325e-33,
- 0.0019533925224095583,
- 0.03421776741743088,
- 0.016986586153507233,
- -0.0038039758801460266,
- -0.046051882207393646,
- -0.017117993906140327,
- -0.0134886484593153,
- 0.02770196460187435,
- -0.07210548222064972,
- 0.025546209886670113,
- -0.04028647392988205,
- 0.04632815346121788,
- 0.013819615356624126,
- -0.10770034044981003,
- 0.11025477200746536,
- -0.00913990382105112,
- 0.030017247423529625,
- 0.03594113141298294,
- 0.05970996618270874,
- -0.07600963860750198,
- -0.11399494856595993,
- 0.05600447207689285,
- -0.028892844915390015,
- -0.006657840218394995,
- -0.0552322193980217,
- -0.011033295653760433,
- -0.000009380831215821672,
- -0.12287019193172455,
- -0.1289387196302414,
- -0.003578047500923276,
- -0.01543517503887415,
- 0.08486819267272949,
- -0.007077262736856937,
- 0.06503884494304657,
- 0.0039160228334367275,
- 0.03779086470603943,
- -0.026084862649440765,
- 0.0045698159374296665,
- -0.03651980683207512,
- -0.07977357506752014,
- 0.019064944237470627,
- -0.002242224058136344,
- 0.08802361786365509,
- 0.036958251148462296,
- 0.057233214378356934,
- -0.014173495583236217,
- -0.002333202166482806,
- 0.030799027532339096,
- -0.0019060923950746655,
- 0.0338050052523613,
- 0.022368475794792175,
- -0.003016004804521799,
- 0.01795063726603985,
- -0.037020646035671234,
- -0.02181554026901722,
- 0.027205277234315872,
- 0.019824698567390442,
- 0.10880905389785767,
- 0.025680603459477425,
- 0.0008660366293042898,
- 0.015105708502233028,
- 0.07906048744916916,
- 0.028124883770942688,
- 0.0747300237417221,
- -0.12895122170448303,
- -0.009337707422673702,
- -0.033428288996219635,
- -0.010158400982618332,
- 0.025874296203255653,
- 0.01685861498117447,
- -0.05586715415120125,
- 0.018297046422958374,
- 0.07618605345487595,
- 0.07527739554643631,
- 0.018761243671178818,
- -0.02391238883137703,
- -0.019718080759048462,
- -0.1086188554763794,
- -0.07606960088014603,
- 0.09971020370721817,
- -0.11841295659542084,
- 0.02921808511018753,
- -0.06652127206325531,
- -0.02188090793788433,
- 0.012077870778739452,
- 0.03180249407887459,
- 0.006622430868446827,
- -0.06635696440935135,
- 0.04268759489059448,
- 0.026779042556881905,
- -0.031081581488251686,
- -0.05106712877750397,
- 0.017585093155503273,
- -0.055204033851623535,
- -0.03121701441705227,
- 1.3371214261469942e-33,
- -0.07082120329141617,
- -0.025052160024642944,
- 0.04262465238571167,
- -0.025066448375582695,
- 0.022514818236231804,
- -0.15477807819843292,
- -0.032893043011426926,
- -0.0477655790746212,
- -0.02595040388405323,
- 0.05384077876806259,
- 0.05605144053697586,
- -0.015916723757982254,
- -0.022044379264116287,
- -0.10235945135354996,
- 0.030759958550333977,
- 0.07647299766540527,
- 0.04869743809103966,
- -0.04790445417165756,
- 0.045576754957437515,
- -0.010647807270288467,
- -0.027295224368572235,
- -0.05650489777326584,
- 0.028021223843097687,
- -0.029235221445560455,
- -0.01846478506922722,
- -0.009840223006904125,
- 0.06214854493737221,
- 0.009371310472488403,
- 0.029964419081807137,
- -0.05505512282252312,
- 0.014104132540524006,
- -0.04429057985544205,
- 0.033609941601753235,
- 0.002278623403981328,
- -0.034670181572437286,
- 0.0012334318598732352,
- 0.09753725677728653,
- -0.030498158186674118,
- 0.008152679540216923,
- -0.01529292855411768,
- 0.003183673834428191,
- 0.01910950243473053,
- 0.053713228553533554,
- 0.10628971457481384,
- 0.05171799287199974,
- -0.047136686742305756,
- 0.08677418529987335,
- -0.004184403922408819,
- -0.00863389577716589,
- 0.03882971033453941,
- -0.02664894424378872,
- -0.09721642732620239,
- 0.022837171331048012,
- -0.02885812520980835,
- 0.08817360550165176,
- 0.020606203004717827,
- -0.052812762558460236,
- 0.017490701749920845,
- 0.014885121956467628,
- 0.03353274613618851,
- 0.025034571066498756,
- 0.05696326866745949,
- 0.02323337085545063,
- 0.07454980909824371,
- -0.00963397417217493,
- -0.010027204640209675,
- -0.08950269967317581,
- 0.0442347414791584,
- -0.09457361698150635,
- 0.0280341487377882,
- 0.023283518850803375,
- 0.002101597608998418,
- -0.07701746374368668,
- -0.0037311818450689316,
- -0.0750138983130455,
- -0.03307228535413742,
- 0.05517968907952309,
- 0.047747571021318436,
- 0.002278959611430764,
- -0.06556886434555054,
- 0.03734537959098816,
- 0.03674323111772537,
- -0.045602500438690186,
- -0.009478055872023106,
- -0.04615474119782448,
- -0.01693866401910782,
- 0.029685594141483307,
- 0.05169828236103058,
- 0.012773387134075165,
- -0.032616399228572845,
- 0.026144811883568764,
- 0.04120549559593201,
- -0.04253625497221947,
- -0.00940757617354393,
- -0.003011897439137101,
- -1.4559219607690466e-8,
- -0.07853779941797256,
- -0.05324750021100044,
- -0.016805030405521393,
- -0.045808520168066025,
- 0.12820148468017578,
- 0.021873757243156433,
- 0.0865868479013443,
- -0.03907950595021248,
- -0.02858462743461132,
- 0.02392435632646084,
- 0.07330647855997086,
- -0.000619422469753772,
- -0.00748806819319725,
- 0.011224417015910149,
- 0.06761997193098068,
- -0.006537804380059242,
- -0.03216595947742462,
- -0.06485854089260101,
- -0.033011216670274734,
- 0.02435235120356083,
- 0.04473528638482094,
- -0.020334962755441666,
- 0.0069811902940273285,
- -0.0635090246796608,
- -0.048668961971998215,
- -0.0013532497687265277,
- -0.020804116502404213,
- -0.08754446357488632,
- 0.04012700542807579,
- -0.0030586833599954844,
- 0.002751073567196727,
- -0.003086704295128584,
- 0.008430407382547855,
- 0.0034859543666243553,
- 0.013149828650057316,
- -0.0019461222691461444,
- 0.0351981483399868,
- -0.03351873904466629,
- 0.03788655996322632,
- -0.0386650376021862,
- -0.04489671438932419,
- -0.06467632949352264,
- 0.0012563657946884632,
- -0.029778549447655678,
- -0.028351841494441032,
- -0.012885802425444126,
- -0.14923787117004395,
- 0.02965516969561577,
- 0.013972162269055843,
- -0.030540503561496735,
- -0.07279250025749207,
- -0.04565326124429703,
- -0.007688892539590597,
- 0.0041953399777412415,
- 0.046732015907764435,
- -0.01934799738228321,
- -0.00186252617277205,
- -0.004516949877142906,
- -0.0552653931081295,
- -0.024427564814686775,
- 0.02848896197974682,
- 0.02107062377035618,
- 0.08292127400636673,
- 0.03180472180247307
- ]
- },
- {
- "keyword": "member of",
- "type": "partOf",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.05288407579064369,
- -0.023639580234885216,
- 0.025469670072197914,
- 0.02180822566151619,
- 0.007711528334766626,
- -0.005532528273761272,
- 0.18164794147014618,
- -0.04528622329235077,
- -0.0002997547562699765,
- -0.034106142818927765,
- 0.011632720939815044,
- -0.05007406696677208,
- 0.08667013049125671,
- -0.06746672093868256,
- -0.005992318037897348,
- -0.051025696098804474,
- -0.03965933993458748,
- 0.06875989586114883,
- -0.05024212598800659,
- -0.052159830927848816,
- -0.13376496732234955,
- -0.0390663743019104,
- 0.013895301148295403,
- 0.06324679404497147,
- 0.04017017409205437,
- -0.012176301330327988,
- -0.011353055946528912,
- -0.022303152829408646,
- 0.006803190801292658,
- -0.03260572627186775,
- -0.04259810969233513,
- 0.02806990034878254,
- 0.04564445838332176,
- 0.02471339702606201,
- -0.006729685235768557,
- 0.017259662970900536,
- 0.07646654546260834,
- -0.006152763031423092,
- 0.021516483277082443,
- -0.011139404959976673,
- -0.06879247725009918,
- 0.022440264001488686,
- -0.01828603632748127,
- 0.03077107109129429,
- 0.008641257882118225,
- 0.0158704724162817,
- 0.03749500587582588,
- -0.03315054252743721,
- -0.03580022230744362,
- 0.012432881630957127,
- 0.04556025192141533,
- -0.034858640283346176,
- -0.020122647285461426,
- 0.0009150053956545889,
- 0.03566717356443405,
- 0.027279082685709,
- -0.007670784834772348,
- -0.08847460895776749,
- -0.004572167061269283,
- -0.03000834211707115,
- 0.007145418785512447,
- -0.015843095257878304,
- -0.03767048195004463,
- 0.024165363982319832,
- -0.022089600563049316,
- -0.054247692227363586,
- 0.011172058060765266,
- 0.024729344993829727,
- -0.029894880950450897,
- -0.09567778557538986,
- 0.04084553197026253,
- 0.020141277462244034,
- 0.021095210686326027,
- 0.07753336429595947,
- 0.03077644295990467,
- 0.028528306633234024,
- 0.04142474755644798,
- -0.002577003324404359,
- 0.07737908512353897,
- 0.010958551429212093,
- 0.07713893800973892,
- 0.023937106132507324,
- -0.0149080203846097,
- -0.0019663262646645308,
- 0.034673817455768585,
- -0.0018267948180437088,
- 0.04726988449692726,
- -0.06980445235967636,
- -0.07278744876384735,
- 0.0031075128354132175,
- 0.03481637313961983,
- 0.05206315964460373,
- 0.1436328887939453,
- -0.019845521077513695,
- -0.0017733783461153507,
- 0.005601037759333849,
- 0.004441493656486273,
- 0.04582536220550537,
- -0.05023958534002304,
- 0.23335862159729004,
- -0.027425935491919518,
- 0.05018739029765129,
- -0.03964153677225113,
- -0.057582780718803406,
- -0.06933038681745529,
- 0.012393869459629059,
- 0.01496945321559906,
- 0.014261707663536072,
- 0.05159933865070343,
- -0.01358356699347496,
- -0.033471494913101196,
- 0.009425738826394081,
- -0.08073996752500534,
- -0.005035033915191889,
- 0.026511341333389282,
- -0.06455044448375702,
- -0.0013178496155887842,
- 0.02103116549551487,
- -0.02087358385324478,
- -0.08802878856658936,
- 0.015366168692708015,
- 0.03938804566860199,
- -0.027867097407579422,
- 0.03926742449402809,
- 0.014941933564841747,
- -0.041503917425870895,
- -0.03875572979450226,
- -5.989000821407533e-33,
- -0.034077923744916916,
- 0.06940754503011703,
- 0.03243820369243622,
- -0.02966993860900402,
- 0.008510679006576538,
- 0.032448720186948776,
- -0.027341140434145927,
- 0.021058326587080956,
- -0.06958387047052383,
- -0.03037954680621624,
- -0.01239801850169897,
- 0.00134649605024606,
- 0.028187476098537445,
- -0.07268019020557404,
- 0.11103382706642151,
- -0.03822721540927887,
- -0.022047316655516624,
- -0.015724413096904755,
- -0.03828776627779007,
- -0.03732519969344139,
- -0.048640795052051544,
- 0.11099610477685928,
- 0.014727454632520676,
- 0.06489556282758713,
- -0.04643110930919647,
- -0.02987711876630783,
- -0.044908419251441956,
- -0.04130754992365837,
- -0.023878488689661026,
- 0.0538797490298748,
- 0.025884199887514114,
- 0.029278578236699104,
- -0.0779120996594429,
- -0.009097871370613575,
- -0.008768100291490555,
- 0.011058044619858265,
- 0.021522704511880875,
- -0.059845320880413055,
- -0.036043718457221985,
- -0.04537851735949516,
- -0.030447490513324738,
- -0.02051454782485962,
- 0.07103452831506729,
- -0.025329023599624634,
- -0.023610053583979607,
- 0.0416279062628746,
- 0.03211892768740654,
- 0.007202974054962397,
- 0.05831126868724823,
- 0.05258788540959358,
- -0.026420554146170616,
- -0.020748501643538475,
- -0.04667039215564728,
- 0.0032100235112011433,
- 0.009252958931028843,
- -0.07269999384880066,
- 0.009944911114871502,
- 0.03672029450535774,
- -0.007972999475896358,
- -0.02891375496983528,
- 0.011055944487452507,
- 0.09512671828269958,
- -0.011417204514145851,
- 0.043833259493112564,
- -0.17029255628585815,
- -0.045063912868499756,
- -0.004315813072025776,
- -0.08209384232759476,
- 0.07557211071252823,
- -0.02308368869125843,
- -0.04846813157200813,
- 0.03074592724442482,
- 0.0005727170500904322,
- 0.025462908670306206,
- -0.12220153212547302,
- -0.022617334499955177,
- 0.024428104981780052,
- 0.0591161847114563,
- -0.07481592148542404,
- 0.08023180067539215,
- -0.09065383672714233,
- -0.03577515482902527,
- -0.0069486298598349094,
- 0.016121437773108482,
- -0.01076720654964447,
- -0.039372365921735764,
- 0.021021179854869843,
- -0.08657137304544449,
- 0.00610445998609066,
- 0.05262060463428497,
- -0.06398080289363861,
- -0.038825299590826035,
- 0.13634291291236877,
- 0.09688688814640045,
- -0.04675937071442604,
- 2.445658241214002e-33,
- -0.01005620788782835,
- -0.035200685262680054,
- 0.06754209846258163,
- -0.09693215042352676,
- 0.06885781139135361,
- -0.020676279440522194,
- 0.02259918861091137,
- 0.007042825687676668,
- -0.11435725539922714,
- 0.023651663213968277,
- 0.009205112233757973,
- 0.018302064388990402,
- -0.053452473133802414,
- 0.03194313123822212,
- 0.0507953017950058,
- 0.00025086416280828416,
- 0.04405469074845314,
- -0.051152825355529785,
- -0.010262081399559975,
- -0.0052093565464019775,
- -0.07370885461568832,
- -0.012419791892170906,
- 0.05164362117648125,
- 0.013905209489166737,
- 0.002446743892505765,
- 0.04578211531043053,
- 0.10340490192174911,
- 0.08627403527498245,
- -0.0541059635579586,
- -0.012186187319457531,
- 0.03289182484149933,
- -0.020255789160728455,
- -0.08343150466680527,
- -0.029132887721061707,
- -0.022278588265180588,
- 0.06076992303133011,
- 0.027813980355858803,
- 0.023121604695916176,
- -0.050302401185035706,
- -0.007127244956791401,
- 0.07332231104373932,
- 0.025354404002428055,
- 0.018322326242923737,
- 0.03955053165555,
- 0.03322973474860191,
- -0.032416198402643204,
- 0.08273330330848694,
- -0.011699061840772629,
- -0.0635288804769516,
- 0.07696977257728577,
- -0.10117118805646896,
- -0.07020311802625656,
- 0.12182902544736862,
- -0.0293942391872406,
- 0.056927893310785294,
- 0.04248972237110138,
- -0.015068702399730682,
- -0.033139824867248535,
- 0.08737098425626755,
- 0.007723663002252579,
- -0.008126452565193176,
- 0.018024520948529243,
- 0.004034155048429966,
- 0.06648047268390656,
- -0.0021790058817714453,
- -0.0676349475979805,
- -0.05449808016419411,
- 0.09462620317935944,
- -0.03368652984499931,
- 0.03299422934651375,
- -0.015830494463443756,
- -0.035993535071611404,
- -0.07064744830131531,
- 0.030664701014757156,
- -0.08196807652711868,
- -0.06398186832666397,
- -0.10214102268218994,
- -0.0024698609486222267,
- -0.03269398957490921,
- -0.029864495620131493,
- -0.062224507331848145,
- -0.050275418907403946,
- 0.00724491011351347,
- 0.0791020318865776,
- 0.0075617581605911255,
- -0.03064609132707119,
- 0.08570968359708786,
- 0.01796061545610428,
- 0.03460315242409706,
- 0.013168980367481709,
- 0.06453573703765869,
- -0.057339515537023544,
- 0.03301221877336502,
- -0.03364843875169754,
- -0.0075508602894842625,
- -1.3744300808582466e-8,
- -0.06735514849424362,
- -0.00437507126480341,
- -0.015787241980433464,
- 0.06360073387622833,
- 0.11889567226171494,
- -0.0019740592688322067,
- -0.01159890741109848,
- -0.05078281834721565,
- 0.021651556715369225,
- 0.11940757930278778,
- 0.04883765056729317,
- -0.0317264162003994,
- 0.017905930057168007,
- -0.03712305426597595,
- 0.12496624141931534,
- -0.04856746271252632,
- -0.09585484117269516,
- 0.027338150888681412,
- -0.08151554316282272,
- -0.021790020167827606,
- -0.040147364139556885,
- 0.02697683311998844,
- 0.013452085666358471,
- -0.030990786850452423,
- -0.018957069143652916,
- 0.017610717564821243,
- -0.01628834754228592,
- 0.008596992120146751,
- 0.004049964714795351,
- 0.04069513827562332,
- -0.048951517790555954,
- 0.12148325890302658,
- -0.07830183953046799,
- -0.010897833853960037,
- 0.026043612509965897,
- -0.04305553063750267,
- -0.055992960929870605,
- -0.005770133808255196,
- 0.010066665709018707,
- 0.05106847360730171,
- 0.005882084835320711,
- 0.0029836504254490137,
- 0.04256515949964523,
- 0.05754489824175835,
- 0.022858651354908943,
- 0.05033748969435692,
- -0.023653864860534668,
- 0.031270451843738556,
- 0.03475222364068031,
- -0.02123955823481083,
- 0.0035767557565122843,
- 0.035319797694683075,
- -0.059333011507987976,
- 0.1111641675233841,
- -0.010510371997952461,
- -0.03831014409661293,
- -0.04933767765760422,
- 0.03055417351424694,
- -0.07204251736402512,
- -0.09558717161417007,
- 0.013002155348658562,
- -0.016262196004390717,
- -0.004954868927598,
- 0.0064155338332057
- ]
- },
- {
- "keyword": "within",
- "type": "partOf",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.010343151167035103,
- -0.019369173794984818,
- -0.021958252415060997,
- -0.010546448640525341,
- 0.071670301258564,
- -0.0888320803642273,
- 0.07254819571971893,
- 0.013840007595717907,
- 0.006676614284515381,
- -0.035418711602687836,
- 0.03216637670993805,
- -0.06701453030109406,
- 0.0686955451965332,
- -0.027048688381910324,
- 0.09155096858739853,
- -0.03920598328113556,
- 0.10948632657527924,
- -0.022258784621953964,
- -0.06071105971932411,
- -0.07860998809337616,
- -0.060809411108493805,
- 0.04586542770266533,
- -0.0024785809218883514,
- -0.00544863473623991,
- -0.031177334487438202,
- 0.02390182949602604,
- -0.028354162350296974,
- 0.06133047863841057,
- 0.09684488922357559,
- -0.04530181363224983,
- 0.02402733452618122,
- 0.0733485221862793,
- -0.003894680179655552,
- -0.01033581793308258,
- 0.03350476548075676,
- 0.06394610553979874,
- 0.018987907096743584,
- 0.016096604987978935,
- 0.053154777735471725,
- -0.05205652862787247,
- -0.026147451251745224,
- -0.014120286330580711,
- -0.011947202496230602,
- -0.008906450122594833,
- -0.0033884330186992884,
- -0.05094233527779579,
- -0.05217816308140755,
- -0.07674024254083633,
- 0.059168070554733276,
- -0.0007622222183272243,
- -0.08167243748903275,
- -0.02196662686765194,
- -0.019912157207727432,
- 0.0734538584947586,
- -0.10854782164096832,
- -0.008683291263878345,
- 0.03201288729906082,
- -0.042896319180727005,
- 0.02221234329044819,
- -0.03657650947570801,
- 0.12007378786802292,
- 0.015663601458072662,
- -0.03674059361219406,
- -0.0004783010226674378,
- -0.0061253695748746395,
- -0.04171479493379593,
- 0.003946536686271429,
- 0.13500690460205078,
- -0.026334920898079872,
- -0.11575174331665039,
- 0.0639580637216568,
- 0.014384514652192593,
- -0.03109622374176979,
- 0.003348076017573476,
- 0.05373014882206917,
- -0.03567245230078697,
- 0.02336135320365429,
- -0.0491783544421196,
- 0.018918825313448906,
- -0.03990112990140915,
- 0.04792579263448715,
- 0.08604803681373596,
- -0.05776871740818024,
- 0.014977249316871166,
- 0.014164941385388374,
- -0.011639614589512348,
- 0.02152835763990879,
- -0.03387625515460968,
- -0.0027829385362565517,
- 0.034036386758089066,
- -0.038648758083581924,
- 0.0004366456705611199,
- -0.06920216977596283,
- 0.03756006434559822,
- -0.023159746080636978,
- -0.07271333038806915,
- -0.005880615673959255,
- -0.04835987091064453,
- 0.060958486050367355,
- 0.23345470428466797,
- 0.009908189997076988,
- 0.008326253853738308,
- -0.04331780970096588,
- 0.01584535837173462,
- -0.006160397082567215,
- -0.05810732766985893,
- -0.06882111728191376,
- -0.022473005577921867,
- -0.022842343896627426,
- -0.003426935523748398,
- -0.02980193868279457,
- -0.030289432033896446,
- 0.04838191345334053,
- 0.002744770608842373,
- 0.03363286703824997,
- 0.008087951689958572,
- 0.04454671964049339,
- 0.021162666380405426,
- 0.126587375998497,
- 0.1123678907752037,
- -0.003674804698675871,
- 0.018710607662796974,
- -0.03569585457444191,
- 0.00720573216676712,
- 0.008266852237284184,
- -0.08173205703496933,
- 0.004808064084500074,
- -6.216698117923641e-33,
- 0.029848651960492134,
- -0.07710062712430954,
- 0.005049997474998236,
- 0.067190982401371,
- 0.006792006082832813,
- 0.03932442516088486,
- 0.019249774515628815,
- -0.045607492327690125,
- -0.08467880636453629,
- -0.010679311119019985,
- -0.016833990812301636,
- 0.003925465978682041,
- 0.003106762422248721,
- -0.04711262881755829,
- 0.1264839768409729,
- 0.005237133242189884,
- -0.006136822048574686,
- -0.021295670419931412,
- -0.10292427986860275,
- -0.012461774051189423,
- -0.08336716145277023,
- -0.047686949372291565,
- -0.008879799395799637,
- -0.009266876615583897,
- -0.0019511728314682841,
- 0.06306866556406021,
- -0.0362398736178875,
- -0.04090642184019089,
- 0.01515499223023653,
- 0.03242490068078041,
- 0.05581289157271385,
- 0.03256390616297722,
- -0.041563261300325394,
- 0.05205210670828819,
- 0.055628180503845215,
- 0.13666698336601257,
- -0.0015910386573523283,
- -0.0319286473095417,
- -0.0162882748991251,
- -0.03804071247577667,
- -0.02475498802959919,
- -0.03755192086100578,
- 0.026969965547323227,
- -0.006074969656765461,
- -0.009605544619262218,
- 0.046253859996795654,
- 0.08235600590705872,
- 0.03642876446247101,
- -0.04319582134485245,
- -0.008480866439640522,
- -0.014850814826786518,
- -0.016064822673797607,
- -0.01727975904941559,
- -0.011345840990543365,
- 0.0035247919149696827,
- 0.030886037275195122,
- -0.007416679989546537,
- -0.014092622324824333,
- 0.07193394005298615,
- 0.006067506968975067,
- -0.019523367285728455,
- 0.03360500559210777,
- -0.0879470482468605,
- 0.01643304154276848,
- -0.04613053798675537,
- -0.06735693663358688,
- -0.03129969909787178,
- 0.0231647826731205,
- 0.13101817667484283,
- 0.02554166503250599,
- -0.14030835032463074,
- 0.041978076100349426,
- 0.058019205927848816,
- 0.019984357059001923,
- -0.018383974209427834,
- -0.022101832553744316,
- -0.07160453498363495,
- 0.04348808899521828,
- -0.02640376426279545,
- -0.014128198847174644,
- -0.0406072624027729,
- 0.009043180383741856,
- -0.08201125264167786,
- 0.09624554216861725,
- 0.08690650761127472,
- 0.03815675526857376,
- 0.02182738110423088,
- -0.04098068177700043,
- -0.06887844204902649,
- 0.03447167947888374,
- -0.08913826942443848,
- 0.0049450290389359,
- -0.006843354552984238,
- 0.008043392561376095,
- -0.05853922665119171,
- 3.904389425234858e-33,
- 0.06303822994232178,
- 0.005557589698582888,
- 0.0759519413113594,
- -0.04168359562754631,
- -0.02490687556564808,
- 0.0005309872794896364,
- 0.00811782106757164,
- 0.024585265666246414,
- 0.007665644865483046,
- 0.028967441990971565,
- -0.06515578180551529,
- 0.009862066246569157,
- 0.06141066551208496,
- -0.03371550142765045,
- 0.00763287115842104,
- 0.023280518129467964,
- 0.1035081297159195,
- 0.015320001170039177,
- 0.049726832658052444,
- 0.0028313437942415476,
- 0.06094306707382202,
- -0.0634351298213005,
- 0.035885270684957504,
- 0.0843607559800148,
- -0.09709024429321289,
- 0.07264897972345352,
- 0.04682484641671181,
- 0.07894503325223923,
- -0.1130833625793457,
- -0.008724409155547619,
- -0.07686257362365723,
- -0.04956827685236931,
- -0.026251986622810364,
- 0.07871734350919724,
- -0.0910286158323288,
- 0.0331832692027092,
- 0.06988883018493652,
- -0.08466959744691849,
- -0.04407758265733719,
- -0.010300514288246632,
- 0.014708752743899822,
- 0.038948867470026016,
- -0.061352215707302094,
- 0.1266748607158661,
- -0.06131433695554733,
- -0.018556859344244003,
- -0.089329294860363,
- -0.009470884688198566,
- -0.053849250078201294,
- 0.09667409211397171,
- -0.0862371176481247,
- -0.032383427023887634,
- 0.012428510934114456,
- 0.0005162663874216378,
- -0.05030127614736557,
- 0.026910778135061264,
- -0.070314422249794,
- 0.03657340258359909,
- 0.02021288126707077,
- -0.005892791785299778,
- -0.00009892055095406249,
- 0.00002116083305736538,
- -0.01337452046573162,
- 0.04041743651032448,
- -0.04486672207713127,
- 0.009366452693939209,
- -0.017491741105914116,
- 0.035033438354730606,
- 0.06714987754821777,
- -0.030196983367204666,
- -0.02507733181118965,
- 0.005347174592316151,
- -0.05459187552332878,
- -0.1050357073545456,
- -0.023607203736901283,
- 0.001106807729229331,
- 0.0009392817737534642,
- -0.026321016252040863,
- -0.012045042589306831,
- -0.01203903928399086,
- -0.10356289148330688,
- -0.04642971232533455,
- -0.03661832585930824,
- 0.026528766378760338,
- 0.023599106818437576,
- -0.028720993548631668,
- 0.017336277291178703,
- 0.03269915282726288,
- -0.0050186701118946075,
- -0.08743573725223541,
- 0.026671333238482475,
- 0.049919839948415756,
- 0.014464729465544224,
- -0.10443075746297836,
- -0.008044502697885036,
- -1.2738445853699432e-8,
- 0.011069349944591522,
- 0.02470414526760578,
- -0.034676291048526764,
- 0.02713238261640072,
- 0.048103611916303635,
- 0.07024691998958588,
- 0.03665484860539436,
- 0.044720880687236786,
- -0.011900482699275017,
- 0.11843264847993851,
- 0.04309855028986931,
- -0.021718908101320267,
- 0.0591626912355423,
- 0.0007233973010443151,
- -0.03863038495182991,
- 0.0019727328326553106,
- -0.029866758733987808,
- -0.02689732424914837,
- -0.028912948444485664,
- -0.0007754313410259783,
- 0.03373550623655319,
- 0.07028624415397644,
- 0.06143859773874283,
- 0.009418834000825882,
- -0.015938352793455124,
- 0.014007498510181904,
- -0.09371280670166016,
- -0.004703611135482788,
- 0.05219804495573044,
- 0.08416417241096497,
- 0.016312558203935623,
- 0.05248838663101196,
- -0.01795898750424385,
- 0.005905334372073412,
- -0.07438354194164276,
- -0.008002681657671928,
- 0.0617825947701931,
- 0.040166225284338,
- -0.04520758241415024,
- -0.09545940160751343,
- -0.04958060011267662,
- -0.046681128442287445,
- 0.024728424847126007,
- -0.04819042235612869,
- -0.006330587901175022,
- -0.008121263235807419,
- 0.03993910178542137,
- 0.03650027513504028,
- 0.02501087449491024,
- -0.019713377580046654,
- -0.02489204704761505,
- 0.015024865046143532,
- 0.027574796229600906,
- 0.06403747200965881,
- 0.09194035828113556,
- -0.0054414947517216206,
- -0.0003678243374451995,
- -0.01106317713856697,
- -0.10556536167860031,
- 0.06125963106751442,
- -0.006390437949448824,
- -0.023597687482833862,
- 0.030392294749617577,
- 0.059904295951128006
- ]
- },
- {
- "keyword": "inside",
- "type": "partOf",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.0028300343547016382,
- 0.02930726669728756,
- -0.07591808587312698,
- 0.03607451915740967,
- 0.028121590614318848,
- -0.07348290085792542,
- 0.09928299486637115,
- -0.014386877417564392,
- 0.09511284530162811,
- 0.0011263106716796756,
- 0.021041981875896454,
- -0.03491993993520737,
- 0.024690765887498856,
- -0.009178210981190205,
- 0.06482720375061035,
- -0.01212382037192583,
- 0.019627178087830544,
- -0.046369634568691254,
- -0.07473217695951462,
- -0.06872045248746872,
- -0.05384267121553421,
- 0.046445246785879135,
- -0.010419627651572227,
- -0.005568603985011578,
- -0.03150730952620506,
- 0.06707748770713806,
- -0.04984986409544945,
- 0.02424738183617592,
- 0.06932257115840912,
- -0.12295263260602951,
- 0.003452611155807972,
- 0.0027617188170552254,
- 0.021961908787488937,
- -0.020943298935890198,
- 0.04674569144845009,
- 0.023013707250356674,
- 0.053006090223789215,
- 0.0006720916135236621,
- 0.09401312470436096,
- -0.08746301382780075,
- 0.01006054226309061,
- -0.08700858056545258,
- -0.013044765219092369,
- -0.05239154398441315,
- 0.019405633211135864,
- -0.002224629744887352,
- -0.006871204357594252,
- -0.04465475678443909,
- 0.09609682112932205,
- 0.008983360603451729,
- -0.07505131512880325,
- 0.017079558223485947,
- -0.03514576703310013,
- 0.12216582149267197,
- -0.02544637955725193,
- 0.0427858866751194,
- 0.0054861255921423435,
- -0.002177793998271227,
- 0.020185545086860657,
- -0.00041699098073877394,
- 0.14593887329101562,
- -0.00515095004811883,
- -0.007424822077155113,
- 0.06046072766184807,
- 0.024635279551148415,
- -0.03432216867804527,
- 0.02103092148900032,
- 0.12881818413734436,
- -0.028975114226341248,
- -0.06759320199489594,
- 0.06128396466374397,
- 0.060354653745889664,
- 0.0013296108227223158,
- -0.02484319917857647,
- 0.05560905858874321,
- -0.07035937160253525,
- -0.0027533741667866707,
- -0.08296051621437073,
- 0.03711914271116257,
- 0.02054237201809883,
- 0.05334855616092682,
- 0.037660617381334305,
- -0.04222850874066353,
- 0.014964609406888485,
- -0.017507391050457954,
- 0.018658099696040154,
- 0.050830356776714325,
- -0.0028446766082197428,
- -0.07985313981771469,
- 0.03691167011857033,
- -0.07999427616596222,
- 0.025261038914322853,
- -0.03527833893895149,
- 0.015482488088309765,
- -0.04405674710869789,
- -0.019551070407032967,
- -0.029795857146382332,
- 0.014961499720811844,
- -0.00016565210535191,
- 0.25025343894958496,
- 0.04027172923088074,
- 0.035299163311719894,
- 0.04677436128258705,
- 0.006379274185746908,
- -0.013453084975481033,
- -0.05262671411037445,
- -0.037852413952350616,
- 0.039472565054893494,
- 0.0140221593901515,
- -0.01992710679769516,
- -0.05885213613510132,
- -0.01888042315840721,
- 0.08304312080144882,
- 0.023794472217559814,
- 0.036030884832143784,
- -0.04320221394300461,
- 0.0836939662694931,
- 0.028166862204670906,
- 0.10516005009412766,
- 0.07315187156200409,
- -0.0076432423666119576,
- 0.006573578342795372,
- 0.015580658800899982,
- -0.02232937514781952,
- -0.04454803094267845,
- -0.11068694293498993,
- -0.008886562660336494,
- -6.324263197863573e-33,
- 0.01705997809767723,
- -0.083891361951828,
- 0.018288470804691315,
- 0.06291844695806503,
- -0.017693964764475822,
- 0.04896262660622597,
- 0.02935163304209709,
- 0.024412725120782852,
- -0.059516541659832,
- 0.007950549013912678,
- 0.024155601859092712,
- -0.014529388397932053,
- -0.04155094176530838,
- 0.0037602686788886786,
- 0.1447509229183197,
- 0.011286317370831966,
- -0.01806642673909664,
- -0.003397637279704213,
- -0.11318756639957428,
- -0.04796276241540909,
- -0.05720328167080879,
- 0.003945872653275728,
- -0.02311037853360176,
- 0.03285390883684158,
- -0.012739282101392746,
- 0.043446071445941925,
- -0.0011537371901795268,
- -0.07972385734319687,
- -0.04465731233358383,
- 0.024616215378046036,
- 0.06778048723936081,
- 0.03516480699181557,
- -0.059912294149398804,
- 0.06146690994501114,
- 0.032158154994249344,
- 0.04112926870584488,
- 0.02254199981689453,
- -0.028328849002718925,
- -0.00461928267031908,
- -0.049083027988672256,
- -0.017153393477201462,
- -0.02820245735347271,
- 0.024209672585129738,
- 0.02217913419008255,
- -0.04521798714995384,
- 0.028531687334179878,
- 0.09347737580537796,
- 0.06021811068058014,
- -0.04822622239589691,
- -0.020716216415166855,
- 0.016472892835736275,
- -0.010549397207796574,
- -0.06444387882947922,
- 0.03642316535115242,
- -0.013624683953821659,
- 0.02495548315346241,
- 0.031964078545570374,
- -0.042066629976034164,
- 0.04833920672535896,
- -0.01012520119547844,
- 0.009959552437067032,
- 0.06630600988864899,
- -0.04520082846283913,
- 0.025660770013928413,
- -0.057961005717515945,
- -0.033409737050533295,
- -0.03493224084377289,
- 0.018082793802022934,
- 0.10301133245229721,
- -0.02644486166536808,
- -0.11472579091787338,
- 0.017145833000540733,
- 0.06511761993169785,
- 0.021880406886339188,
- 0.020619353279471397,
- -0.04618356004357338,
- -0.05730551853775978,
- -0.00041246082400903106,
- -0.04868925362825394,
- -0.030003616586327553,
- -0.0008681238978169858,
- 0.0000998458854155615,
- -0.03146286681294441,
- 0.10828360170125961,
- 0.043073803186416626,
- 0.056285444647073746,
- 0.006756017915904522,
- -0.0569586344063282,
- 0.005447584204375744,
- 0.06936083734035492,
- -0.06844170391559601,
- 0.002831825753673911,
- 0.053885091096162796,
- 0.028967268764972687,
- -0.06501977890729904,
- 5.1717126600594134e-33,
- 0.07749432325363159,
- 0.0007439586333930492,
- 0.015282930806279182,
- -0.0032925372943282127,
- -0.02303188107907772,
- 0.00016660393157508224,
- -0.0034861385356634855,
- 0.013759272173047066,
- 0.05895734205842018,
- 0.03133527189493179,
- -0.00040434443508274853,
- 0.021189436316490173,
- 0.09686020761728287,
- -0.0004068873240612447,
- 0.05167258530855179,
- 0.008242694661021233,
- 0.0817071795463562,
- 0.057188957929611206,
- 0.004879846703261137,
- -0.025315426290035248,
- 0.035777825862169266,
- -0.027035992592573166,
- 0.018558742478489876,
- 0.06921752542257309,
- -0.06500737369060516,
- 0.06917429715394974,
- 0.05593223497271538,
- 0.08777781575918198,
- -0.03957417979836464,
- -0.010443899780511856,
- -0.05858076736330986,
- -0.02992563508450985,
- -0.011220205575227737,
- 0.09910151362419128,
- -0.06219993904232979,
- 0.021119963377714157,
- 0.06948903948068619,
- -0.08705262839794159,
- -0.03328512981534004,
- -0.03530179709196091,
- 0.051547300070524216,
- 0.05641523748636246,
- -0.06248106434941292,
- 0.1573486477136612,
- -0.038868628442287445,
- -0.035685207694768906,
- -0.07485807687044144,
- -0.011964837089180946,
- -0.01821809634566307,
- 0.05348516255617142,
- -0.08179334551095963,
- -0.018330227583646774,
- -0.03942770138382912,
- -0.031029241159558296,
- -0.015561257489025593,
- 0.02226831763982773,
- -0.09886180609464645,
- 0.016347447410225868,
- 0.02090422436594963,
- 0.014485668390989304,
- -0.010695080272853374,
- 0.05166848003864288,
- -0.051686082035303116,
- 0.0343530997633934,
- -0.10739341378211975,
- 0.024160243570804596,
- -0.045064326375722885,
- 0.014445608481764793,
- 0.02362891659140587,
- -0.019688617438077927,
- 0.012401646003127098,
- -0.004581357818096876,
- -0.07457128912210464,
- -0.021372811868786812,
- -0.035748228430747986,
- 0.028536340221762657,
- -0.010046069510281086,
- -0.04435097053647041,
- -0.01028775330632925,
- -0.004926867317408323,
- -0.1047084853053093,
- -0.053390901535749435,
- -0.05476329103112221,
- 0.014041139744222164,
- 0.00211342959664762,
- -0.08173603564500809,
- 0.052028585225343704,
- 0.029394865036010742,
- -0.06414289772510529,
- -0.07166733592748642,
- 0.00799156166613102,
- 0.06825316697359085,
- 0.0324314720928669,
- -0.07636559754610062,
- 0.019491838291287422,
- -1.2429368645427985e-8,
- 0.0038081579841673374,
- -0.018501531332731247,
- 0.016587823629379272,
- 0.029323097318410873,
- 0.0053803520277142525,
- 0.031940072774887085,
- 0.022725902497768402,
- 0.01372955460101366,
- 0.018933651968836784,
- 0.07187002897262573,
- -0.00740673067048192,
- 0.004379199352115393,
- 0.04657340422272682,
- -0.001716766506433487,
- -0.04460543394088745,
- 0.029170867055654526,
- -0.06384339183568954,
- 0.0006445244653150439,
- -0.04241308569908142,
- 0.007393552456051111,
- 0.04241616278886795,
- 0.023464161902666092,
- 0.05391651764512062,
- 0.015560125932097435,
- -0.036372750997543335,
- -0.013748899102210999,
- -0.03692876920104027,
- 0.008846751414239407,
- 0.005590986460447311,
- 0.1479697972536087,
- -0.047443732619285583,
- 0.08427998423576355,
- -0.03455163910984993,
- 0.016886429861187935,
- -0.09222052991390228,
- -0.04275556281208992,
- 0.0534469336271286,
- 0.04544899985194206,
- -0.02970089204609394,
- -0.07225179672241211,
- -0.055175162851810455,
- -0.11648661643266678,
- -0.00510203093290329,
- -0.11466044187545776,
- -0.01453117560595274,
- -0.0010043244110420346,
- 0.03544686362147331,
- 0.03779445216059685,
- -0.05610131472349167,
- 0.0224296934902668,
- -0.0067913285456597805,
- -0.008097964338958263,
- 0.02900104783475399,
- 0.05181945115327835,
- 0.0723203718662262,
- -0.0032983857672661543,
- -0.01602480374276638,
- -0.015038513578474522,
- -0.10937689244747162,
- 0.08164703845977783,
- -0.006636899895966053,
- 0.05521087720990181,
- 0.027685387060046196,
- 0.014908083714544773
- ]
- },
- {
- "keyword": "subset of",
- "type": "partOf",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.026570037007331848,
- 0.07162351161241531,
- 0.04475947469472885,
- 0.04809240996837616,
- 0.027285810559988022,
- 0.012685883790254593,
- 0.18921373784542084,
- -0.0019670038018375635,
- 0.02032398246228695,
- -0.05028839409351349,
- -0.002022119704633951,
- -0.0832914263010025,
- 0.06468713283538818,
- -0.136579230427742,
- 0.052240341901779175,
- -0.0210117157548666,
- 0.041678473353385925,
- -0.02867313288152218,
- 0.014482025057077408,
- -0.047044284641742706,
- -0.10251130908727646,
- -0.07601526379585266,
- -0.004212607629597187,
- 0.03658326342701912,
- 0.020142799243330956,
- 0.065446637570858,
- -0.02913636900484562,
- 0.032275814563035965,
- -0.02730236016213894,
- 0.04656270518898964,
- -0.08004385232925415,
- 0.050292085856199265,
- -0.031223319470882416,
- -0.02338235080242157,
- 0.026999766007065773,
- -0.0011923961574211717,
- -0.00009228140697814524,
- 0.07625676691532135,
- 0.04113388806581497,
- 0.07503692060709,
- -0.040810178965330124,
- -0.03692097216844559,
- 0.06918788701295853,
- 0.006039936561137438,
- -0.057510435581207275,
- 0.057108841836452484,
- -0.06644688546657562,
- 0.04447928071022034,
- 0.04023652896285057,
- -0.0767621248960495,
- -0.048181354999542236,
- -0.033575039356946945,
- -0.06089922785758972,
- -0.035035740584135056,
- 0.05434111878275871,
- -0.03276865556836128,
- -0.01466500572860241,
- -0.00433898763731122,
- -0.015517134219408035,
- -0.0444779172539711,
- 0.03219202905893326,
- -0.041547421365976334,
- -0.013414355926215649,
- 0.015360488556325436,
- 0.02126695029437542,
- 0.02103927545249462,
- -0.03221682459115982,
- 0.07163407653570175,
- -0.02341768518090248,
- -0.029796713963150978,
- 0.044302064925432205,
- 0.022987954318523407,
- 0.07068148255348206,
- 0.07575971633195877,
- -0.061599183827638626,
- -0.014545292593538761,
- 0.05299030989408493,
- -0.03008377179503441,
- 0.1057245209813118,
- -0.01644199527800083,
- -0.03764260560274124,
- 0.044393736869096756,
- -0.04546273872256279,
- 0.008600343950092793,
- 0.036468397825956345,
- -0.021768512204289436,
- 0.07667229324579239,
- -0.14473341405391693,
- -0.07663717120885849,
- 0.06056321784853935,
- -0.07864300906658173,
- -0.09316956996917725,
- 0.11146894842386246,
- 0.06104115769267082,
- -0.006749747321009636,
- -0.016984039917588234,
- 0.05470950901508331,
- -0.012265175580978394,
- 0.05038855969905853,
- 0.15091648697853088,
- 0.006718261167407036,
- 0.10615082830190659,
- 0.0424911305308342,
- 0.03211558237671852,
- -0.10445456951856613,
- -0.02883228287100792,
- 0.0014363292139023542,
- -0.011123585514724255,
- 0.033505842089653015,
- -0.03472663834691048,
- 0.0127573786303401,
- -0.03965693712234497,
- 0.05222133919596672,
- -0.0007242002757266164,
- 0.03362077847123146,
- -0.06075194105505943,
- 0.07496126741170883,
- -0.004369533155113459,
- -0.044795189052820206,
- 0.07281950116157532,
- -0.00966657791286707,
- 0.033185601234436035,
- 0.014876008033752441,
- -0.05055296793580055,
- 0.04763234779238701,
- -0.061728596687316895,
- 0.03163011744618416,
- -3.228105852029703e-33,
- 0.012974629178643227,
- -0.08203345537185669,
- -0.02346617728471756,
- 0.02372225932776928,
- -0.013639459386467934,
- 0.007935229688882828,
- 0.012341925874352455,
- -0.044229526072740555,
- -0.045744094997644424,
- 0.0246246550232172,
- -0.012891623191535473,
- -0.005322931334376335,
- 0.010302776470780373,
- 0.020987818017601967,
- 0.06673911958932877,
- -0.0024666201788932085,
- 0.07095785439014435,
- 0.027958622202277184,
- -0.03488112613558769,
- -0.07787469774484634,
- -0.10939647257328033,
- 0.003962707240134478,
- 0.002220606431365013,
- -0.011438988149166107,
- 0.01678301952779293,
- -0.03050132468342781,
- 0.0086668087169528,
- -0.04203074425458908,
- -0.05680636316537857,
- 0.015098451636731625,
- 0.019658194854855537,
- 0.07706494629383087,
- 0.00691232830286026,
- 0.025368252769112587,
- 0.04231622442603111,
- 0.035351116210222244,
- 0.03110194392502308,
- 0.014078698121011257,
- 0.024670682847499847,
- -0.053921736776828766,
- 0.04165325313806534,
- -0.02505483105778694,
- 0.12755639851093292,
- 0.05428825691342354,
- 0.004088630899786949,
- 0.0101198460906744,
- -0.019475502893328667,
- 0.026637254282832146,
- -0.07921191304922104,
- 0.0050604441203176975,
- 0.007154623046517372,
- 0.022782621905207634,
- -0.07546920329332352,
- -0.0006248371209949255,
- -0.039959367364645004,
- -0.042939163744449615,
- 0.013077830895781517,
- 0.0589948408305645,
- 0.04974907264113426,
- 0.032769594341516495,
- 0.0005948509788140655,
- -0.058894362300634384,
- -0.05638853833079338,
- 0.03570723906159401,
- -0.08080393821001053,
- 0.012952052988111973,
- -0.02507113106548786,
- -0.0940762609243393,
- 0.05565636232495308,
- 0.020639561116695404,
- -0.039418525993824005,
- -0.010328183881938457,
- 0.04966230317950249,
- 0.06850682199001312,
- -0.05468178912997246,
- -0.002768520498648286,
- 0.059977076947689056,
- 0.010538057424128056,
- -0.12903836369514465,
- 0.04142659530043602,
- -0.02197706326842308,
- -0.0016544496174901724,
- -0.044251035898923874,
- -0.029744604602456093,
- 0.03336721286177635,
- 0.03403336554765701,
- -0.00648332666605711,
- -0.07001883536577225,
- 0.05917086452245712,
- -0.054450199007987976,
- -0.19021211564540863,
- -0.035994887351989746,
- 0.02362401783466339,
- -0.06684386730194092,
- -0.03697264939546585,
- 2.1565426505643755e-33,
- 0.01347766537219286,
- 0.026547156274318695,
- -0.006744699086993933,
- -0.08111480623483658,
- 0.038211479783058167,
- -0.08986838161945343,
- 0.04723671078681946,
- -0.014155438169836998,
- -0.01964077539741993,
- 0.08482888340950012,
- 0.04706771299242973,
- 0.02280508354306221,
- 0.0551915168762207,
- -0.0853736400604248,
- -0.04113664850592613,
- 0.04906236007809639,
- 0.04740788787603378,
- -0.03787854313850403,
- 0.011892618611454964,
- 0.017261624336242676,
- -0.0337701216340065,
- -0.14239495992660522,
- 0.09218671917915344,
- -0.004856059327721596,
- 0.03558892011642456,
- 0.03204070404171944,
- -0.017536558210849762,
- 0.04162028059363365,
- -0.061535026878118515,
- -0.04131782054901123,
- 0.020482109859585762,
- -0.01034636702388525,
- -0.053047921508550644,
- 0.045605409890413284,
- -0.01968833990395069,
- 0.00009544970089336857,
- 0.06461374461650848,
- -0.0007904416415840387,
- 0.026355629786849022,
- -0.05835579335689545,
- 0.06793153285980225,
- 0.0047010756097733974,
- 0.015444635413587093,
- 0.142544224858284,
- 0.054287154227495193,
- -0.011160614900290966,
- 0.06167879328131676,
- 0.004820926580578089,
- -0.02444205991923809,
- 0.011406414210796356,
- -0.14796082675457,
- -0.07712022960186005,
- 0.017570210620760918,
- 0.03820694237947464,
- 0.02923707291483879,
- -0.020986109972000122,
- 0.010216797702014446,
- 0.029513735324144363,
- 0.04844305291771889,
- -0.008490565232932568,
- -0.010279078036546707,
- 0.02172759920358658,
- 0.051987942308187485,
- 0.07105249911546707,
- 0.0028470512479543686,
- -0.03316427022218704,
- -0.05251685902476311,
- 0.023432550951838493,
- -0.03307238593697548,
- -0.010844634845852852,
- -0.017527874559164047,
- 0.001727299066260457,
- -0.002190002938732505,
- -0.03220093622803688,
- -0.1072106808423996,
- -0.032820750027894974,
- -0.008502018637955189,
- -0.01630496233701706,
- 0.04266759753227234,
- 0.062385499477386475,
- 0.013513091951608658,
- -0.01291312649846077,
- -0.004238761495798826,
- 0.014340595342218876,
- -0.012917816638946533,
- 0.05187295377254486,
- 0.03994479775428772,
- 0.024158062413334846,
- -0.04658215865492821,
- -0.08002198487520218,
- 0.053767696022987366,
- -0.03393131121993065,
- 0.02016099914908409,
- -0.025600949302315712,
- -0.04230615124106407,
- -1.3220533112701105e-8,
- 0.03606827184557915,
- -0.059660907834768295,
- 0.0014816165203228593,
- 0.06873993575572968,
- 0.05074825882911682,
- -0.02639845572412014,
- 0.006016101688146591,
- 0.079975426197052,
- -0.015388652682304382,
- -0.005053699482232332,
- 0.05972519516944885,
- 0.018393564969301224,
- -0.0392509363591671,
- 0.07339246571063995,
- 0.02516588754951954,
- -0.064986951649189,
- -0.03315602242946625,
- 0.06197462975978851,
- -0.05943315848708153,
- 0.04344172403216362,
- 0.03410353139042854,
- -0.017528798431158066,
- 0.04023756459355354,
- 0.0337623655796051,
- 0.07389777898788452,
- -0.014096989296376705,
- -0.037484053522348404,
- -0.15104573965072632,
- -0.006395670119673014,
- 0.010212400928139687,
- 0.026444777846336365,
- 0.0875176265835762,
- 0.09851280599832535,
- -0.01892552338540554,
- 0.007497231476008892,
- -0.023700755089521408,
- -0.02720535919070244,
- 0.035795122385025024,
- -0.035535044968128204,
- -0.02537950500845909,
- -0.006218362599611282,
- -0.13320094347000122,
- 0.01144337933510542,
- -0.04484570026397705,
- -0.06356555968523026,
- -0.08200877904891968,
- 0.0027593611739575863,
- -0.01682237908244133,
- 0.03878262639045715,
- 0.004734779242426157,
- -0.047845613211393356,
- 0.013691968284547329,
- 0.0706307664513588,
- -0.025746848434209824,
- 0.010512110777199268,
- 0.02402043342590332,
- -0.025683065876364708,
- 0.005423385184258223,
- -0.011301184073090553,
- 0.010204505175352097,
- -0.06370638310909271,
- 0.020756272599101067,
- 0.027603184804320335,
- 0.025024056434631348
- ]
- },
- {
- "keyword": "located at",
- "type": "locatedAt",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.022621188312768936,
- 0.03300611302256584,
- -0.05696091428399086,
- 0.01726166158914566,
- 0.07649797201156616,
- 0.067855603992939,
- 0.04194103553891182,
- -0.02320447936654091,
- 0.042890455573797226,
- 0.0020510340109467506,
- 0.03669712319970131,
- -0.00021463345910888165,
- 0.05046560987830162,
- -0.08353546261787415,
- 0.01647735945880413,
- -0.0009968522936105728,
- 0.0606955960392952,
- -0.010953351855278015,
- 0.07858982682228088,
- -0.05016340687870979,
- 0.005971991922706366,
- 0.02984853833913803,
- 0.04776619002223015,
- 0.035152509808540344,
- 0.08202546089887619,
- 0.02301195077598095,
- -0.029828764498233795,
- -0.008188555017113686,
- -0.018295081332325935,
- -0.04353947192430496,
- 0.016090964898467064,
- 0.005182380322366953,
- 0.04547689110040665,
- 0.006160310469567776,
- 0.02206771820783615,
- 0.04611019045114517,
- 0.04426274821162224,
- 0.06780534237623215,
- 0.11071165651082993,
- -0.05153999477624893,
- 0.01941077411174774,
- -0.041426561772823334,
- -0.006854164879769087,
- -0.004197472240775824,
- 0.005666867829859257,
- 0.044893354177474976,
- 0.04576592147350311,
- -0.07819846272468567,
- 0.028238331899046898,
- 0.012046687304973602,
- -0.010405831038951874,
- -0.0576116181910038,
- 0.04268547147512436,
- -0.04954750835895538,
- -0.07560890913009644,
- 0.08923204243183136,
- -0.049963582307100296,
- -0.046269021928310394,
- 0.0018497224664315581,
- -0.02402035892009735,
- 0.09914030879735947,
- -0.01898285001516342,
- -0.042710792273283005,
- 0.09076521545648575,
- 0.03156306594610214,
- -0.02696148119866848,
- 0.03677768632769585,
- 0.033477481454610825,
- -0.016799796372652054,
- -0.16681300103664398,
- 0.04762767255306244,
- -0.03657718747854233,
- 0.017851976677775383,
- 0.012844882905483246,
- 0.09867523610591888,
- 0.013538063503801823,
- 0.03456047922372818,
- 0.060765739530324936,
- 0.06896834075450897,
- -0.014814171008765697,
- 0.035001788288354874,
- -0.052597250789403915,
- 0.02447006106376648,
- 0.05432950705289841,
- -0.031775880604982376,
- -0.02332932874560356,
- 0.008987816981971264,
- 0.02167356386780739,
- 0.03197626769542694,
- -0.013301723636686802,
- 0.02204444445669651,
- -0.00581298628821969,
- -0.06876103579998016,
- 0.039222102612257004,
- -0.03548811003565788,
- 0.012802015990018845,
- 0.028025096282362938,
- 0.029147353023290634,
- 0.06002240628004074,
- 0.14325033128261566,
- 0.020400213077664375,
- 0.032366134226322174,
- -0.04299923777580261,
- 0.0031948587857186794,
- 0.009783530607819557,
- -0.027254251763224602,
- -0.06374996900558472,
- 0.027914322912693024,
- -0.04267292842268944,
- -0.014839000068604946,
- -0.0052446043118834496,
- 0.016456764191389084,
- -0.001963884336873889,
- 0.025776483118534088,
- 0.026983162388205528,
- 0.0000758142996346578,
- 0.010738852433860302,
- -0.009119958616793156,
- 0.03559225797653198,
- -0.09434458613395691,
- -0.08299422264099121,
- 0.011074287816882133,
- -0.07976941764354706,
- 0.030125245451927185,
- -0.019127817824482918,
- -0.046547431498765945,
- -0.08581797033548355,
- -4.81517383585349e-33,
- -0.08032290637493134,
- -0.021945111453533173,
- 0.0216167401522398,
- -0.04344245046377182,
- -0.0011147370096296072,
- -0.02307509072124958,
- 0.023789677768945694,
- 0.035110924392938614,
- -0.02224845625460148,
- 0.03873184323310852,
- -0.030068401247262955,
- -0.02859397791326046,
- -0.020337164402008057,
- -0.077400803565979,
- 0.015198970213532448,
- -0.03920819237828255,
- 0.06500869244337082,
- -0.07049166411161423,
- -0.06462395936250687,
- -0.039870698004961014,
- -0.04672139510512352,
- 0.008911396376788616,
- -0.016957396641373634,
- -0.0028323116712272167,
- -0.023270495235919952,
- 0.009765702299773693,
- -0.007728254422545433,
- -0.027529947459697723,
- -0.05320791155099869,
- 0.051459185779094696,
- -0.031675368547439575,
- -0.0017724689096212387,
- -0.03534356877207756,
- 0.020522920414805412,
- -0.013030808418989182,
- -0.01507523749023676,
- -0.07362788170576096,
- 0.04816168546676636,
- -0.0227136742323637,
- 0.019994964823126793,
- 0.05597584322094917,
- 0.040905680507421494,
- -0.014900327660143375,
- 0.043632011860609055,
- 0.041856423020362854,
- 0.08903216570615768,
- 0.05200982466340065,
- 0.0486525297164917,
- 0.12891855835914612,
- 0.03102758899331093,
- -0.0983278751373291,
- -0.0365423820912838,
- -0.1001223474740982,
- 0.03160902485251427,
- 0.005638266447931528,
- 0.02014806866645813,
- -0.03536557778716087,
- 0.050548311322927475,
- 0.019707242026925087,
- -0.032911304384469986,
- 0.09251754730939865,
- 0.028017766773700714,
- -0.07844598591327667,
- -0.029736045747995377,
- -0.055973365902900696,
- -0.07694049179553986,
- -0.0513637401163578,
- -0.07299687713384628,
- 0.08750356733798981,
- 0.06490164995193481,
- -0.014233425259590149,
- -0.016844214871525764,
- 0.10284437239170074,
- 0.08614246547222137,
- -0.0457257442176342,
- 0.003623889060690999,
- -0.05794192850589752,
- 0.05814671516418457,
- -0.027401801198720932,
- 0.04814649000763893,
- -0.07191774994134903,
- 0.03602009266614914,
- -0.059064190834760666,
- 0.14251135289669037,
- 0.07176894694566727,
- -0.04445326328277588,
- -0.006817040499299765,
- -0.06954901665449142,
- -0.029758771881461143,
- 0.030877886340022087,
- -0.08770611882209778,
- -0.0597095713019371,
- 0.03119554929435253,
- 0.042885590344667435,
- -0.06408391892910004,
- 2.761913792372207e-33,
- 0.001544686732813716,
- 0.0016143439570441842,
- 0.045750267803668976,
- 0.038660623133182526,
- -0.030495481565594673,
- 0.0413198322057724,
- 0.06747645139694214,
- 0.03387440741062164,
- -0.03984268009662628,
- 0.09049434214830399,
- -0.040785178542137146,
- 0.013246826827526093,
- 0.01748237945139408,
- 0.02580253779888153,
- 0.04284079745411873,
- 0.08970247209072113,
- 0.07706763595342636,
- 0.03119218349456787,
- -0.08625087141990662,
- -0.035369403660297394,
- -0.007413107436150312,
- -0.007154559716582298,
- 0.005048061721026897,
- 0.00975890178233385,
- -0.08372928947210312,
- 0.028652777895331383,
- 0.09056942909955978,
- -0.04715919494628906,
- -0.11752841621637344,
- 0.019996056333184242,
- -0.047484442591667175,
- -0.0476897694170475,
- -0.05562598258256912,
- 0.05939638614654541,
- -0.07856447994709015,
- 0.016861040145158768,
- 0.0418420173227787,
- 0.0773211345076561,
- -0.061376288533210754,
- -0.007840719074010849,
- 0.10256415605545044,
- -0.02019892819225788,
- -0.11060909926891327,
- 0.16327761113643646,
- 0.059397418051958084,
- 0.03642161563038826,
- -0.00040158876799978316,
- -0.013398551382124424,
- 0.01318126916885376,
- 0.01044461876153946,
- -0.06147971376776695,
- -0.08056600391864777,
- 0.1318436861038208,
- -0.04483456537127495,
- -0.018539996817708015,
- 0.02109050191938877,
- 0.043738558888435364,
- 0.02506539784371853,
- -0.029183760285377502,
- -0.05953999608755112,
- 0.029286308214068413,
- 0.05692112073302269,
- -0.07643243670463562,
- 0.02332223393023014,
- 0.004989088512957096,
- 0.05121169611811638,
- -0.02655012719333172,
- 0.006288392469286919,
- -0.04274702072143555,
- -0.010859048925340176,
- -0.037101056426763535,
- -0.0033082247246056795,
- -0.06686127185821533,
- -0.029653314501047134,
- -0.06174900382757187,
- 0.004160355310887098,
- -0.030497146770358086,
- -0.03988753259181976,
- 0.0070253945887088776,
- -0.037680529057979584,
- -0.04477284103631973,
- -0.01008679810911417,
- -0.12718486785888672,
- 0.03957858681678772,
- -0.03614245727658272,
- 0.07033123075962067,
- 0.10482040792703629,
- -0.024439506232738495,
- 0.028445646166801453,
- -0.08054664731025696,
- -0.03821048140525818,
- 0.12232951074838638,
- -0.060753293335437775,
- -0.09046359360218048,
- -0.03001597709953785,
- -1.3230956774634706e-8,
- -0.015524007380008698,
- 0.01373974047601223,
- 0.004604454152286053,
- 0.03874339535832405,
- 0.05188636854290962,
- 0.04375310242176056,
- 0.02032732404768467,
- 0.00811840407550335,
- -0.0023657495621591806,
- -0.03145159035921097,
- -0.04768700897693634,
- -0.006040923297405243,
- 0.01764172501862049,
- -0.030487867072224617,
- 0.06702970713376999,
- -0.038720984011888504,
- -0.04121239483356476,
- -0.010323205031454563,
- -0.05649973079562187,
- 0.016227614134550095,
- -0.01215636357665062,
- 0.09872154891490936,
- 0.037045709788799286,
- 0.05671563372015953,
- 0.03057491034269333,
- 0.020482592284679413,
- -0.04776950925588608,
- 0.013804934918880463,
- 0.07395581901073456,
- 0.02329554222524166,
- -0.003600024152547121,
- -0.00030157697619870305,
- -0.007884244434535503,
- -0.018908115103840828,
- -0.013560120947659016,
- -0.05472159385681152,
- 0.004520806018263102,
- -0.044574663043022156,
- -0.006144921761006117,
- -0.047655437141656876,
- -0.05119162052869797,
- -0.11119453608989716,
- 0.04177936539053917,
- 0.017596298828721046,
- -0.006642746273428202,
- 0.07470890134572983,
- 0.019776109606027603,
- 0.05816842243075371,
- -0.019921759143471718,
- -0.020909074693918228,
- -0.1127636581659317,
- 0.011479012668132782,
- -0.031342629343271255,
- 0.02007639966905117,
- 0.018516775220632553,
- -0.009681307710707188,
- -0.018746260553598404,
- -0.14443078637123108,
- -0.10551127046346664,
- 0.02902228571474552,
- 0.050900764763355255,
- 0.0018626548117026687,
- -0.010872578248381615,
- 0.014863496646285057
- ]
- },
- {
- "keyword": "positioned at",
- "type": "locatedAt",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.020705945789813995,
- 0.061853569000959396,
- -0.06121920794248581,
- -0.0304473415017128,
- 0.03341198340058327,
- 0.04205655679106712,
- 0.0723784863948822,
- 0.03175506740808487,
- 0.11574512720108032,
- 0.031056422740221024,
- 0.031247854232788086,
- -0.004967494867742062,
- 0.07925151288509369,
- -0.052371516823768616,
- -0.025650562718510628,
- -0.007879373617470264,
- -0.01602419652044773,
- 0.024564474821090698,
- 0.04030078276991844,
- 0.0017035574419423938,
- -0.042928941547870636,
- 0.011276652105152607,
- 0.07519636303186417,
- 0.023637868463993073,
- 0.01580171287059784,
- 0.0019359405850991607,
- 0.009118819609284401,
- 0.038763005286455154,
- 0.021018700674176216,
- -0.09269540756940842,
- -0.033001240342855453,
- -0.04403256997466087,
- 0.039232950657606125,
- 0.024392254650592804,
- -0.04849110543727875,
- 0.021208876743912697,
- -0.005809267051517963,
- 0.029125457629561424,
- 0.033276405185461044,
- -0.050169989466667175,
- 0.002071875147521496,
- -0.10545554757118225,
- -0.020927758887410164,
- -0.027076538652181625,
- 0.0640980675816536,
- 0.04188074544072151,
- 0.06833632290363312,
- -0.004223760217428207,
- 0.02166394703090191,
- -0.010038553737103939,
- -0.07080551236867905,
- -0.08175273984670639,
- 0.04486750066280365,
- 0.004095911514014006,
- -0.08092796057462692,
- 0.08144079148769379,
- -0.041278038173913956,
- -0.10445716232061386,
- 0.0770629495382309,
- -0.03810753673315048,
- 0.16675610840320587,
- -0.01962999999523163,
- -0.040558960288763046,
- 0.07782356441020966,
- -0.006257270462810993,
- -0.038650184869766235,
- 0.021998092532157898,
- -0.004461656790226698,
- -0.05191117897629738,
- -0.053071290254592896,
- 0.050245366990566254,
- -0.046400584280490875,
- 0.04722318798303604,
- -0.007186659146100283,
- 0.050602905452251434,
- -0.07128116488456726,
- 0.05244898423552513,
- -0.02722381241619587,
- 0.06692591309547424,
- -0.06469778716564178,
- 0.04735199734568596,
- -0.017683561891317368,
- 0.044395554810762405,
- 0.03522804379463196,
- -0.05656483396887779,
- -0.045018259435892105,
- -0.0133028794080019,
- 0.05565807223320007,
- -0.025500299409031868,
- -0.01720339246094227,
- -0.021638771519064903,
- 0.008885296061635017,
- -0.041717663407325745,
- 0.08063047379255295,
- -0.047698963433504105,
- 0.005536132492125034,
- 0.05127093940973282,
- -0.011534432880580425,
- -0.006834740284830332,
- 0.22084073722362518,
- 0.02881397120654583,
- 0.05243320018053055,
- -0.056918274611234665,
- 0.03034270368516445,
- -0.0017107053427025676,
- -0.05677846819162369,
- -0.08711234480142593,
- 0.002001723740249872,
- -0.02690277062356472,
- -0.01946313865482807,
- -0.031928807497024536,
- -0.03402003273367882,
- -0.05927228555083275,
- 0.07716438919305801,
- -0.035295143723487854,
- -0.02594389021396637,
- -0.0033874837681651115,
- -0.018931828439235687,
- 0.06317474693059921,
- -0.13964281976222992,
- -0.02691187709569931,
- -0.00605876324698329,
- -0.08597453683614731,
- 0.000924810825381428,
- -0.01312105730175972,
- -0.059611640870571136,
- -0.019217578694224358,
- -3.803611355802986e-33,
- -0.00021534477127715945,
- -0.050893384963274,
- -0.007295391522347927,
- 0.04533335193991661,
- 0.03129199147224426,
- -0.012697769328951836,
- -0.022981993854045868,
- 0.05599105730652809,
- -0.014788631349802017,
- 0.08488363027572632,
- 0.010819051414728165,
- -0.0482584573328495,
- -0.0507795624434948,
- 0.0008383776294067502,
- 0.03416837379336357,
- -0.08580593764781952,
- 0.0612247958779335,
- -0.013397380709648132,
- -0.14158214628696442,
- 0.0052277022041380405,
- -0.04845666140317917,
- 0.009190525859594345,
- -0.03871550410985947,
- 0.0008442085818387568,
- -0.03198684751987457,
- 0.05347299203276634,
- -0.038083549588918686,
- -0.0788026973605156,
- -0.14011092483997345,
- 0.029820747673511505,
- -0.043053243309259415,
- -0.0015525821363553405,
- -0.0648454949259758,
- -0.02800883539021015,
- -0.004397115670144558,
- -0.01989015005528927,
- -0.0342370830476284,
- -0.020401742309331894,
- 0.02162434160709381,
- -0.031573109328746796,
- -0.013392527587711811,
- 0.06262122839689255,
- 0.005778018850833178,
- 0.00008335107850143686,
- 0.030885865911841393,
- 0.09941928833723068,
- 0.02872215211391449,
- 0.04298841208219528,
- -0.0020824994426220655,
- 0.07204306870698929,
- -0.052425261586904526,
- -0.007920810021460056,
- -0.06136581301689148,
- 0.012421307153999805,
- 0.011908174492418766,
- -0.01049995981156826,
- 0.005165233742445707,
- 0.011002771556377411,
- -0.010158245451748371,
- -0.0501704104244709,
- 0.07139380276203156,
- 0.01578637957572937,
- -0.10289948433637619,
- -0.0739748552441597,
- -0.05713419243693352,
- -0.0582280308008194,
- -0.02269672602415085,
- -0.015186091884970665,
- 0.10657688975334167,
- 0.07974807173013687,
- -0.02947261370718479,
- 0.02435620315372944,
- 0.10681035369634628,
- 0.06250216066837311,
- -0.05024893954396248,
- 0.0031942257191985846,
- -0.026235302910208702,
- -0.0005973153747618198,
- 0.0052385032176971436,
- 0.01731506735086441,
- -0.03584715351462364,
- 0.011074421927332878,
- -0.000506887910887599,
- 0.06755334138870239,
- -0.0038462067022919655,
- -0.07166439294815063,
- -0.006188422441482544,
- -0.08312831819057465,
- -0.017610980197787285,
- 0.01916167140007019,
- -0.0976012572646141,
- -0.012870639562606812,
- 0.07698865979909897,
- 0.05517814680933952,
- -0.05268177390098572,
- 2.2470597563395226e-33,
- -0.0268490519374609,
- 0.010453611612319946,
- 0.05282668396830559,
- 0.007729796692728996,
- -0.029730333015322685,
- -0.020213885232806206,
- 0.0903424397110939,
- 0.011305240914225578,
- -0.07139506936073303,
- 0.08198510855436325,
- -0.050559673458337784,
- 0.044536296278238297,
- 0.05012991279363632,
- 0.04527340829372406,
- 0.0709795132279396,
- 0.06945641338825226,
- 0.04720911383628845,
- 0.03550031781196594,
- -0.037304095923900604,
- 0.010119986720383167,
- -0.018590083345770836,
- 0.017974158748984337,
- 0.029747439548373222,
- 0.035155437886714935,
- -0.041541267186403275,
- 0.0653546005487442,
- 0.1335541158914566,
- -0.015782317146658897,
- -0.11542419344186783,
- 0.009186986833810806,
- -0.03693618252873421,
- -0.030501002445816994,
- 0.012617806904017925,
- -0.01572233811020851,
- -0.02884785830974579,
- 0.06370154023170471,
- 0.00038808112731203437,
- 0.02956303395330906,
- -0.016106992959976196,
- 0.03324444964528084,
- 0.10894403606653214,
- 0.025559499859809875,
- -0.052443958818912506,
- 0.1250738948583603,
- 0.06400418281555176,
- 0.021904736757278442,
- -0.02222268655896187,
- -0.009607830084860325,
- 0.0008825005497783422,
- 0.03313099965453148,
- -0.07386563718318939,
- -0.03980991244316101,
- 0.07304991036653519,
- -0.03498004749417305,
- 0.004124239087104797,
- 0.03611265495419502,
- -0.05068414285778999,
- 0.008699282072484493,
- -0.033612944185733795,
- -0.0450957827270031,
- 0.02877616137266159,
- 0.06728286296129227,
- -0.015418222174048424,
- -0.01110482681542635,
- -0.029023464769124985,
- 0.08931197226047516,
- -0.042328253388404846,
- 0.04950457438826561,
- -0.09083499759435654,
- -0.010994869284331799,
- 0.020679539069533348,
- -0.013203662820160389,
- -0.043849147856235504,
- -0.0047574732452631,
- -0.03161465376615524,
- -0.032623596489429474,
- 0.01728050410747528,
- 0.01079908013343811,
- 0.009921444579958916,
- -0.0219022948294878,
- -0.07669638842344284,
- -0.007676226086914539,
- -0.026784831658005714,
- 0.002007970819249749,
- -0.014650176279246807,
- 0.05739355832338333,
- 0.06623540818691254,
- 0.025102030485868454,
- -0.010450370609760284,
- -0.08038369566202164,
- -0.010590570978820324,
- 0.11079132556915283,
- -0.008046982809901237,
- -0.03470892831683159,
- 0.0004462441138457507,
- -1.5699146871384073e-8,
- -0.033980466425418854,
- -0.023528441786766052,
- 0.02382725290954113,
- -0.005612997338175774,
- 0.005703313276171684,
- 0.10028067231178284,
- 0.05507483333349228,
- -0.06818472594022751,
- 0.03163177892565727,
- -0.06617093831300735,
- -0.037830453366041183,
- 0.042739856988191605,
- 0.0483059287071228,
- -0.03622635081410408,
- 0.0704229474067688,
- 0.006310119293630123,
- -0.11320363730192184,
- 0.01808270253241062,
- -0.0925481766462326,
- 0.05699891224503517,
- 0.021796459332108498,
- 0.06129510700702667,
- 0.024341026321053505,
- 0.06203281506896019,
- 0.011443071998655796,
- -0.012432876043021679,
- -0.0545346662402153,
- 0.07736039906740189,
- 0.041154131293296814,
- 0.04839577153325081,
- 0.07965971529483795,
- -0.012827573344111443,
- -0.0020943223498761654,
- -0.0337391160428524,
- -0.016460802406072617,
- -0.03637522831559181,
- 0.018988823518157005,
- 0.01851288042962551,
- 0.007667418569326401,
- -0.03586774691939354,
- -0.08087068051099777,
- -0.11637265980243683,
- 0.0403812900185585,
- 0.044731322675943375,
- 0.02187044732272625,
- 0.055790308862924576,
- 0.025141051039099693,
- 0.037151943892240524,
- 0.011592156253755093,
- -0.05124629661440849,
- -0.05798026919364929,
- -0.04590887576341629,
- 0.031435661017894745,
- 0.03958873450756073,
- 0.03835611417889595,
- 0.013955529779195786,
- -0.008342950604856014,
- -0.04833782836794853,
- -0.1310494840145111,
- 0.10047246515750885,
- 0.02748297154903412,
- -0.0032927540596574545,
- -0.022309385240077972,
- 0.0339752621948719
- ]
- },
- {
- "keyword": "situated at",
- "type": "locatedAt",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.04664736986160278,
- 0.012727662920951843,
- -0.04183061048388481,
- -0.025095898658037186,
- 0.011275616474449635,
- -0.005369068589061499,
- 0.06059606000781059,
- -0.0015973721165210009,
- 0.025489887222647667,
- 0.009599628858268261,
- 0.043317943811416626,
- -0.08275897800922394,
- 0.05831354483962059,
- -0.055028509348630905,
- 0.06437765061855316,
- -0.0185227133333683,
- 0.05766632407903671,
- -0.038714487105607986,
- 0.09489515423774719,
- -0.049852386116981506,
- -0.061197541654109955,
- -0.014087770134210587,
- 0.06309192627668381,
- 0.030364088714122772,
- 0.04041086882352829,
- 0.04426563158631325,
- 0.011360302567481995,
- 0.04792601242661476,
- 0.03932848200201988,
- -0.038117438554763794,
- 0.02490255795419216,
- 0.04962938278913498,
- -0.001085454598069191,
- 0.021303484216332436,
- 0.003611551597714424,
- 0.10253242403268814,
- 0.024189542979002,
- 0.02518605813384056,
- 0.07440075278282166,
- -0.04080408811569214,
- -0.01337059773504734,
- -0.047512415796518326,
- 0.05516226962208748,
- -0.05074061080813408,
- 0.03597116097807884,
- 0.025155222043395042,
- 0.0448414571583271,
- -0.05732716619968414,
- -0.004043074324727058,
- -0.022671090438961983,
- -0.09366699308156967,
- -0.04836300387978554,
- 0.03067636489868164,
- -0.06077789142727852,
- -0.0954282134771347,
- 0.07914186269044876,
- -0.03410656005144119,
- -0.054523639380931854,
- 0.03688947483897209,
- -0.06910128146409988,
- 0.1621735692024231,
- -0.007484414614737034,
- -0.06309033930301666,
- 0.07877451181411743,
- 0.012941057793796062,
- -0.007889341562986374,
- 0.021855982020497322,
- 0.025270400568842888,
- 0.014546196907758713,
- -0.11405931413173676,
- 0.06567829847335815,
- -0.057423848658800125,
- 0.05782611295580864,
- -0.017340898513793945,
- 0.05695987492799759,
- -0.03883291035890579,
- -0.01439722627401352,
- 0.007204026449471712,
- 0.07309383898973465,
- -0.05253349989652634,
- 0.05626830831170082,
- 0.037009526044130325,
- 0.03708590939640999,
- 0.0703640803694725,
- -0.03695611283183098,
- -0.053162332624197006,
- -0.0057515534572303295,
- 0.07963430136442184,
- -0.008826878853142262,
- -0.040714580565690994,
- 0.004860299173742533,
- 0.01446184515953064,
- -0.08908470720052719,
- 0.046184491366147995,
- 0.0497114434838295,
- -0.012300006113946438,
- 0.027251753956079483,
- 0.0005733048892579973,
- 0.061126887798309326,
- 0.15372318029403687,
- -0.01415856834501028,
- 0.05579299107193947,
- -0.056936148554086685,
- 0.026482760906219482,
- -0.01677335985004902,
- -0.024085788056254387,
- -0.0720570832490921,
- -0.0011918579693883657,
- -0.016926191747188568,
- -0.007367316633462906,
- -0.01650722697377205,
- -0.020774131640791893,
- -0.03132211044430733,
- 0.015578924678266048,
- -0.003380932379513979,
- 0.031056908890604973,
- 0.017991062253713608,
- -0.013638317584991455,
- 0.024631043896079063,
- -0.06682043522596359,
- -0.04137912020087242,
- -0.0005912508349865675,
- -0.057382915169000626,
- -0.005831635557115078,
- 0.0214995164424181,
- -0.04229123890399933,
- 0.05248057842254639,
- -5.211694529008741e-33,
- -0.051955729722976685,
- -0.022440006956458092,
- -0.0018878219416365027,
- 0.034243788570165634,
- 0.04201916977763176,
- -0.019914358854293823,
- -0.03593843802809715,
- 0.02039383165538311,
- 0.004199975170195103,
- 0.018301302567124367,
- 0.046967457979917526,
- -0.051902011036872864,
- -0.009565477259457111,
- -0.052306003868579865,
- 0.10561245679855347,
- -0.030953802168369293,
- 0.08762436360120773,
- -0.06125560775399208,
- -0.08164524286985397,
- 0.00429132953286171,
- -0.0198836587369442,
- -0.03367999196052551,
- -0.04571458697319031,
- -0.02131728082895279,
- -0.02608356811106205,
- 0.03475067764520645,
- 0.011507104150950909,
- -0.012823309749364853,
- -0.09834140539169312,
- 0.03626587241888046,
- 0.010087279602885246,
- -0.010975189507007599,
- -0.07769607752561569,
- 0.06534618884325027,
- 0.027322685346007347,
- -0.013081605546176434,
- -0.04140400514006615,
- -0.013542341999709606,
- 0.00094748439732939,
- -0.004419130273163319,
- -0.00933888554573059,
- 0.04105623811483383,
- 0.021454447880387306,
- 0.0071625011041760445,
- 0.01749853603541851,
- 0.07851384580135345,
- -0.0252836886793375,
- 0.03539884462952614,
- 0.06994379311800003,
- 0.06807190924882889,
- -0.05528371408581734,
- 0.01952376589179039,
- -0.071473129093647,
- 0.00530741224065423,
- 0.028948135673999786,
- -0.010697312653064728,
- -0.04031269624829292,
- 0.042528364807367325,
- 0.05279729142785072,
- -0.0023614142555743456,
- 0.07168547809123993,
- 0.0294940248131752,
- -0.0780235305428505,
- -0.03451164439320564,
- -0.01252354308962822,
- -0.09996413439512253,
- -0.010360779240727425,
- -0.05815025046467781,
- 0.1308576911687851,
- 0.04112023115158081,
- -0.0317700169980526,
- 0.0028546287212520838,
- 0.07422399520874023,
- 0.10796816647052765,
- -0.06313804537057877,
- 0.04808655381202698,
- -0.0724216029047966,
- 0.014292408712208271,
- -0.046662744134664536,
- 0.10696493089199066,
- -0.036656830459833145,
- 0.024822929874062538,
- -0.01901593618094921,
- 0.06746100634336472,
- 0.0714043378829956,
- -0.0430622436106205,
- 0.008968524634838104,
- -0.12561319768428802,
- -0.047980885952711105,
- 0.034208592027425766,
- -0.10385129600763321,
- -0.0401279591023922,
- 0.024467088282108307,
- 0.058708176016807556,
- -0.057607632130384445,
- 3.0284824830181003e-33,
- 0.030689893290400505,
- -0.03395550325512886,
- 0.004694483242928982,
- -0.030564168468117714,
- -0.0370170921087265,
- -0.011343439109623432,
- 0.08924109488725662,
- -0.010477816686034203,
- -0.04270629957318306,
- 0.0798187181353569,
- -0.09930175542831421,
- 0.031022921204566956,
- 0.06880225986242294,
- 0.000378203927539289,
- 0.02888534776866436,
- 0.0550365224480629,
- 0.07916781306266785,
- 0.015851199626922607,
- -0.04790573939681053,
- 0.028678979724645615,
- 0.022545162588357925,
- -0.03278777375817299,
- 0.011434303596615791,
- -0.038254063576459885,
- -0.018981948494911194,
- 0.08075208961963654,
- 0.06413275003433228,
- -0.03777213767170906,
- -0.1343652456998825,
- -0.0043215095065534115,
- -0.07551681250333786,
- -0.022451922297477722,
- -0.03360059857368469,
- 0.01462596096098423,
- -0.0468188114464283,
- 0.04795587807893753,
- -0.004187929444015026,
- -0.010799556970596313,
- -0.08248681575059891,
- 0.0018500668229535222,
- 0.0970020443201065,
- 0.031081266701221466,
- -0.1160820946097374,
- 0.13196392357349396,
- 0.08713056892156601,
- 0.01865224726498127,
- -0.029545504599809647,
- 0.04053322225809097,
- -0.012481150217354298,
- 0.006345430854707956,
- 0.0013665694277733564,
- -0.020041178911924362,
- 0.11364296078681946,
- -0.04142184928059578,
- 0.06015793979167938,
- 0.03897695988416672,
- 0.0023182625882327557,
- 0.0017268178053200245,
- -0.03417200967669487,
- -0.026603400707244873,
- 0.06793342530727386,
- 0.004054694436490536,
- -0.05011525750160217,
- 0.04426106810569763,
- 0.021821115165948868,
- 0.02398231066763401,
- -0.04947309568524361,
- 0.07582315057516098,
- -0.08266521245241165,
- -0.0036278446204960346,
- -0.04081486538052559,
- -0.06479762494564056,
- -0.08573152869939804,
- -0.07791159301996231,
- -0.015567726455628872,
- 0.00046008112258277833,
- 0.04864513874053955,
- 0.01892659440636635,
- -0.005280043464154005,
- -0.04939684271812439,
- -0.05251653864979744,
- 0.007407492492347956,
- -0.06332731992006302,
- 0.008602011948823929,
- -0.028493734076619148,
- 0.05277134105563164,
- 0.04668663442134857,
- -0.016797462478280067,
- 0.005353625863790512,
- -0.09330447018146515,
- -0.0031813597306609154,
- 0.12695622444152832,
- -0.05714483931660652,
- -0.06451819092035294,
- -0.025007398799061775,
- -1.3694523737228792e-8,
- -0.0306815505027771,
- 0.023733822628855705,
- -0.04124053940176964,
- 0.03119029477238655,
- -0.011713249608874321,
- -0.034422293305397034,
- 0.042510826140642166,
- -0.002567879157140851,
- 0.00007893166912253946,
- 0.01630512624979019,
- -0.07808542251586914,
- -0.006345672532916069,
- 0.02543305605649948,
- 0.012195799499750137,
- 0.01933431252837181,
- 0.002766229212284088,
- -0.07347982376813889,
- 0.030572613701224327,
- -0.08393704891204834,
- 0.016975440084934235,
- 0.0778849795460701,
- 0.05533174052834511,
- 0.021764026954770088,
- 0.03712696209549904,
- -0.03683733195066452,
- 0.01395641639828682,
- -0.04431035742163658,
- -0.04884111508727074,
- 0.07865940034389496,
- 0.0400397889316082,
- 0.021619044244289398,
- 0.0025090831331908703,
- -0.030344318598508835,
- -0.01633061282336712,
- -0.08473735302686691,
- -0.038236431777477264,
- 0.06588317453861237,
- 0.026169415563344955,
- 0.010014966130256653,
- -0.09526613354682922,
- -0.06064022332429886,
- -0.14209304749965668,
- -0.004709158092737198,
- 0.050890449434518814,
- 0.04199201986193657,
- 0.05005623772740364,
- 0.034269776195287704,
- 0.0751643255352974,
- 0.006090393289923668,
- -0.03536396846175194,
- -0.12822577357292175,
- 0.007407456170767546,
- -0.03085441142320633,
- -0.0007069724961183965,
- 0.04074777662754059,
- 0.00932981539517641,
- 0.017286790534853935,
- -0.08204335719347,
- -0.0798284038901329,
- 0.056413810700178146,
- 0.01144616212695837,
- 0.0035457564517855644,
- -0.06327565014362335,
- 0.035077568143606186
- ]
- },
- {
- "keyword": "found at",
- "type": "locatedAt",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.052577536553144455,
- 0.0221046544611454,
- -0.037684742361307144,
- 0.04952145740389824,
- 0.07763879746198654,
- -0.002782137133181095,
- 0.03595951572060585,
- 0.03377131000161171,
- 0.026272552087903023,
- -0.024804916232824326,
- 0.06386565417051315,
- -0.023846451193094254,
- 0.07004917412996292,
- -0.03644339740276337,
- -0.05135330930352211,
- 0.013089791871607304,
- -0.0008108075126074255,
- -0.07720914483070374,
- 0.025951746851205826,
- -0.014149841852486134,
- -0.09241444617509842,
- 0.08689258247613907,
- 0.02143658697605133,
- 0.00962549913674593,
- 0.08634551614522934,
- 0.041752517223358154,
- -0.01850963942706585,
- 0.00203472888097167,
- 0.015650901943445206,
- -0.042922887951135635,
- -0.018300939351320267,
- 0.05865048989653587,
- 0.05250443518161774,
- -0.008937472477555275,
- 0.05766976997256279,
- 0.038769204169511795,
- 0.012817971408367157,
- 0.04122590646147728,
- 0.06751441210508347,
- -0.02050412818789482,
- 0.005608764942735434,
- -0.06474308669567108,
- 0.02522500418126583,
- -0.0015844263834878802,
- 0.009102129377424717,
- 0.07001978904008865,
- 0.009782594628632069,
- -0.07558470219373703,
- 0.07521761208772659,
- 0.0031719356775283813,
- -0.06511799991130829,
- -0.05930348485708237,
- 0.01938234455883503,
- -0.07294551283121109,
- -0.06545485556125641,
- 0.020459793508052826,
- -0.018837912008166313,
- -0.05410412698984146,
- 0.014477347955107689,
- -0.012179301120340824,
- 0.13310156762599945,
- -0.0010498261544853449,
- -0.08559682220220566,
- 0.04683231934905052,
- 0.020202001556754112,
- 0.024956226348876953,
- 0.048623763024806976,
- -0.021937143057584763,
- 0.026778163388371468,
- -0.0980212390422821,
- 0.0417354442179203,
- -0.0013586626155301929,
- 0.03172684833407402,
- 0.08099684119224548,
- 0.029951753094792366,
- -0.03231588378548622,
- 0.09968993067741394,
- -0.04245828464627266,
- 0.0621364563703537,
- -0.007483720313757658,
- -0.04498186334967613,
- 0.009262093342840672,
- -0.02106429636478424,
- 0.012862076051533222,
- 0.008676007390022278,
- -0.07688814401626587,
- 0.07550796866416931,
- 0.02445738948881626,
- -0.017083171755075455,
- 0.008429409936070442,
- -0.03959597274661064,
- 0.08983872085809708,
- -0.08752641826868057,
- -0.03661582991480827,
- -0.038618844002485275,
- -0.020307842642068863,
- 0.06228775903582573,
- 0.03260264918208122,
- 0.015950018540024757,
- 0.13670006394386292,
- 0.027223069220781326,
- 0.04476260393857956,
- -0.03557942062616348,
- 0.010695704258978367,
- 0.027815233916044235,
- 0.02068372443318367,
- -0.08204200118780136,
- 0.054536934942007065,
- 0.034593403339385986,
- -0.01040608063340187,
- -0.06262145191431046,
- -0.002958194585517049,
- 0.043493762612342834,
- 0.04032116010785103,
- 0.0829773023724556,
- 0.006530672777444124,
- 0.012378348037600517,
- -0.046549465507268906,
- 0.018513530492782593,
- -0.10866458714008331,
- -0.038913410156965256,
- -0.021183937788009644,
- -0.06022786721587181,
- 0.0034810765646398067,
- -0.033529072999954224,
- -0.0374772734940052,
- -0.06466297805309296,
- -4.533548164599517e-33,
- 0.006496828980743885,
- -0.014895210042595863,
- 0.02789628505706787,
- -0.06755111366510391,
- 0.013360797427594662,
- -0.0017446203855797648,
- 0.07244030386209488,
- 0.051430594176054,
- -0.018814178183674812,
- 0.06475194543600082,
- -0.025333227589726448,
- 0.0032398237381130457,
- -0.04118417948484421,
- -0.007277834229171276,
- 0.011284667067229748,
- 0.016203653067350388,
- 0.07094372808933258,
- -0.06970220059156418,
- -0.034894805401563644,
- -0.054021261632442474,
- -0.057521332055330276,
- 0.03334646299481392,
- 0.030571796000003815,
- -0.008617745712399483,
- -0.07378575950860977,
- -0.03466835618019104,
- 0.02471114695072174,
- -0.12922729551792145,
- -0.005853905808180571,
- 0.0299741942435503,
- 0.00886547937989235,
- -0.025811754167079926,
- -0.018153931945562363,
- 0.09083178639411926,
- -0.043862055987119675,
- -0.0400799997150898,
- -0.033278144896030426,
- -0.004270424600690603,
- -0.03819718211889267,
- 0.053152672946453094,
- 0.01695031300187111,
- 0.025047412142157555,
- -0.006549609359353781,
- 0.000283218891127035,
- 0.042882733047008514,
- 0.08486676961183548,
- 0.028240805491805077,
- 0.01270962506532669,
- 0.08835692703723907,
- 0.015386249870061874,
- -0.07723931968212128,
- -0.023825742304325104,
- -0.028403813019394875,
- 0.062112051993608475,
- -0.007198491599410772,
- 0.019097207114100456,
- 0.02209744043648243,
- 0.04017533361911774,
- -0.007623015902936459,
- -0.02189752086997032,
- 0.1362752914428711,
- 0.035871416330337524,
- -0.109824039041996,
- -0.00428405124694109,
- -0.07782214879989624,
- -0.03751266747713089,
- -0.04293419048190117,
- -0.047364555299282074,
- 0.0636262446641922,
- 0.04646351560950279,
- 0.033308256417512894,
- 0.009519122540950775,
- 0.10223143547773361,
- 0.09075833112001419,
- 0.02166260965168476,
- -0.07513102144002914,
- -0.06457377970218658,
- 0.01800198294222355,
- 0.040927156805992126,
- 0.029036076739430428,
- -0.044531311839818954,
- -0.04008299112319946,
- -0.06398966163396835,
- 0.08978088945150375,
- 0.038706086575984955,
- -0.02267049439251423,
- -0.05024266988039017,
- -0.18229715526103973,
- -0.012558446265757084,
- 0.03647786006331444,
- -0.046389948576688766,
- 0.012985327281057835,
- 0.02712813951075077,
- 0.00980258360505104,
- -0.021838292479515076,
- 3.1767180144575526e-33,
- -0.011171809397637844,
- -0.003392999991774559,
- -0.01373636070638895,
- 0.039069466292858124,
- -0.023181181401014328,
- 0.035139694809913635,
- 0.04051988199353218,
- 0.00916203111410141,
- 0.04210161790251732,
- 0.08552272617816925,
- -0.06656409054994583,
- 0.007005372084677219,
- 0.0410631038248539,
- 0.010048411786556244,
- 0.15502625703811646,
- 0.07567422837018967,
- 0.08444052934646606,
- 0.029049521312117577,
- -0.022441206499934196,
- -0.02029629983007908,
- -0.029668059200048447,
- -0.00007426426600432023,
- -0.028026936575770378,
- 0.0013805649941787124,
- -0.07075806707143784,
- 0.04008331149816513,
- 0.061955634504556656,
- -0.08614636212587357,
- -0.0891527608036995,
- 0.012747601605951786,
- 0.019280804321169853,
- -0.011655166745185852,
- -0.03798844292759895,
- 0.0020061933901160955,
- -0.009956171736121178,
- 0.017431139945983887,
- 0.030044501647353172,
- 0.06724109500646591,
- -0.04405553266406059,
- 0.01788121648132801,
- 0.06139178201556206,
- -0.024059537798166275,
- -0.056245606392621994,
- 0.12860696017742157,
- 0.05244506150484085,
- 0.018778802827000618,
- -0.011766883544623852,
- -0.007422442082315683,
- 0.021257368847727776,
- 0.03750484436750412,
- 0.007161709945648909,
- -0.10304747521877289,
- 0.07599028944969177,
- -0.08093766868114471,
- -0.04359912872314453,
- -0.050424423068761826,
- 0.009003113955259323,
- 0.09142781794071198,
- -0.029214024543762207,
- -0.07055244594812393,
- -0.012772522866725922,
- 0.04836881533265114,
- -0.0871477797627449,
- 0.05886479467153549,
- 0.011194481514394283,
- 0.010871697217226028,
- -0.05684765428304672,
- 0.022228781133890152,
- -0.06663437932729721,
- -0.02990943379700184,
- -0.08886414766311646,
- -0.029998956248164177,
- -0.04379259794950485,
- -0.02253338135778904,
- -0.06361594796180725,
- -0.03958260267972946,
- -0.05923237279057503,
- 0.004070797935128212,
- -0.026302915066480637,
- 0.012213633395731449,
- -0.07268811017274857,
- -0.012757641263306141,
- -0.005674450658261776,
- 0.025121130049228668,
- -0.042450565844774246,
- -0.0277086328715086,
- 0.10514956712722778,
- 0.05424589291214943,
- -0.041729576885700226,
- -0.02101740427315235,
- -0.06916927546262741,
- 0.10250700265169144,
- -0.03899979591369629,
- -0.02383662760257721,
- -0.02609509974718094,
- -1.3878837634706542e-8,
- -0.002412391360849142,
- 0.023419350385665894,
- 0.04093698039650917,
- 0.022790586575865746,
- 0.09864037483930588,
- 0.11438988894224167,
- -0.0068890186958014965,
- 0.013281604275107384,
- -0.001177433761768043,
- -0.031180428341031075,
- -0.03724409267306328,
- -0.019502321258187294,
- 0.022430993616580963,
- 0.036619883030653,
- 0.09262801706790924,
- -0.11240492016077042,
- -0.04108143970370293,
- -0.02898590825498104,
- -0.061453040689229965,
- 0.06787184625864029,
- -0.020841816440224648,
- 0.09079970419406891,
- 0.05168958380818367,
- 0.06285440176725388,
- -0.01762431114912033,
- 0.014110663905739784,
- -0.031179411336779594,
- 0.058984722942113876,
- 0.03625328838825226,
- -0.012798874638974667,
- -0.03204072639346123,
- 0.024936771020293236,
- -0.01724604330956936,
- -0.01893177628517151,
- 0.009595329873263836,
- -0.0508408360183239,
- -0.026050442829728127,
- -0.04519382864236832,
- -0.04196867346763611,
- 0.009678815491497517,
- -0.031485360115766525,
- -0.13393378257751465,
- 0.061298321932554245,
- -0.05052216351032257,
- -0.0029587799217551947,
- 0.1195702776312828,
- 0.022407207638025284,
- 0.02272065542638302,
- -0.02567184530198574,
- -0.03625582903623581,
- -0.03066750057041645,
- 0.050417859107255936,
- -0.025994865223765373,
- 0.066111721098423,
- 0.06619284301996231,
- -0.040538888424634933,
- -0.0013867240631952882,
- -0.0651542916893959,
- -0.03310618922114372,
- -0.02441147342324257,
- 0.09908000379800797,
- -0.06350947916507721,
- -0.01864740625023842,
- 0.05519004911184311
- ]
- },
- {
- "keyword": "based at",
- "type": "locatedAt",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.06665192544460297,
- -0.018001720309257507,
- -0.0865258201956749,
- -0.026730267331004143,
- 0.07513035088777542,
- -0.008531409315764904,
- 0.112022764980793,
- -0.034095119684934616,
- 0.0726374015212059,
- 0.03122364543378353,
- -0.02643871121108532,
- 0.00725216930732131,
- 0.06660589575767517,
- -0.016631141304969788,
- -0.026476508006453514,
- 0.030906131491065025,
- 0.04753720015287399,
- -0.027676157653331757,
- -0.004194566514343023,
- -0.003878943156450987,
- -0.03773095831274986,
- -0.021079057827591896,
- -0.008670024573802948,
- 0.014644211158156395,
- 0.08186350762844086,
- 0.06360762566328049,
- -0.009195523336529732,
- 0.0017608602065593004,
- -0.024816546589136124,
- -0.06977075338363647,
- 0.042472124099731445,
- -0.05433613434433937,
- 0.04168126732110977,
- -0.04442284256219864,
- -0.08505435287952423,
- -0.015690606087446213,
- -0.004563222173601389,
- 0.02706943452358246,
- 0.031746383756399155,
- 0.01313058566302061,
- 0.019144311547279358,
- -0.027847981080412865,
- 0.07056298106908798,
- 0.003335563000291586,
- 0.029058480635285378,
- 0.041307561099529266,
- 0.009262572973966599,
- -0.022070644423365593,
- -0.04227568209171295,
- -0.007279430981725454,
- -0.08631262928247452,
- -0.03089173324406147,
- 0.07791553437709808,
- -0.13075685501098633,
- -0.05043132230639458,
- 0.03070976957678795,
- -0.0616917721927166,
- 0.03556687757372856,
- 0.035926543176174164,
- -0.03450004756450653,
- 0.013847689144313335,
- 0.046242669224739075,
- -0.07741927355527878,
- 0.067036934196949,
- 0.0593600831925869,
- -0.0016559044597670436,
- 0.039358846843242645,
- -0.02296934463083744,
- -0.00312646571546793,
- -0.0789564847946167,
- 0.07095889002084732,
- -0.01195622980594635,
- 0.013868686743080616,
- 0.06328720599412918,
- 0.04221685975790024,
- 0.04569366201758385,
- 0.043545495718717575,
- 0.019583160057663918,
- 0.09951578825712204,
- -0.03547687083482742,
- -0.004119267221540213,
- -0.03831028193235397,
- -0.039623942226171494,
- 0.007975311018526554,
- -0.00285551929846406,
- 0.0006899966392666101,
- 0.040147218853235245,
- 0.0008663347689434886,
- 0.02097976766526699,
- -0.0009512431570328772,
- 0.05323684960603714,
- 0.022482428699731827,
- 0.041660819202661514,
- 0.0382409393787384,
- -0.03153211623430252,
- 0.05844259634613991,
- 0.029875898733735085,
- -0.03377527743577957,
- 0.050899773836135864,
- 0.182902991771698,
- -0.009502196684479713,
- 0.03555390238761902,
- -0.08750305324792862,
- 0.008138587698340416,
- 0.07177773863077164,
- -0.03171638399362564,
- -0.01103169098496437,
- 0.011036775074899197,
- 0.005280982702970505,
- -0.024422701448202133,
- -0.05273522436618805,
- 0.0007996123749762774,
- -0.08500973135232925,
- 0.07222849130630493,
- 0.05498864874243736,
- -0.022243306040763855,
- 0.035710372030735016,
- 0.021320123225450516,
- 0.04587540775537491,
- -0.13872030377388,
- 0.034635983407497406,
- 0.0284897368401289,
- -0.09724321216344833,
- 0.039540693163871765,
- -0.02157144621014595,
- 0.004938262049108744,
- -0.011242141015827656,
- -4.644093490060768e-33,
- -0.0393558144569397,
- -0.06936332583427429,
- 0.052029892802238464,
- 0.020291978493332863,
- 0.008412984199821949,
- -0.033485814929008484,
- 0.021112795919179916,
- 0.043484754860401154,
- -0.06900813430547714,
- 0.059048548340797424,
- -0.01053165178745985,
- 0.03376498445868492,
- -0.06959225982427597,
- -0.052305418998003006,
- 0.08643262833356857,
- 0.00758065190166235,
- 0.03560847043991089,
- -0.0949750542640686,
- -0.03592631593346596,
- -0.0103421276435256,
- -0.017208445817232132,
- 0.0456913523375988,
- -0.023744989186525345,
- -0.06557515263557434,
- -0.03551865369081497,
- -0.02154143899679184,
- -0.04103124514222145,
- -0.016547750681638718,
- -0.09279125183820724,
- 0.04748054966330528,
- 0.046973928809165955,
- -0.021673548966646194,
- -0.13258324563503265,
- 0.0047753783874213696,
- -0.04284771904349327,
- -0.047569580376148224,
- -0.14567747712135315,
- 0.026348374783992767,
- -0.004005828872323036,
- 0.06255462020635605,
- 0.04046064242720604,
- 0.015860186889767647,
- 0.020331937819719315,
- 0.007572512608021498,
- 0.032854098826646805,
- 0.09682444483041763,
- -0.02893969416618347,
- 0.0375777892768383,
- 0.033555008471012115,
- 0.04438449814915657,
- -0.014116378501057625,
- -0.022859591990709305,
- -0.05653822422027588,
- 0.009154748171567917,
- 0.032851435244083405,
- -0.05073864385485649,
- -0.013370403088629246,
- 0.07190389931201935,
- 0.03811797872185707,
- -0.043001361191272736,
- 0.07143165916204453,
- 0.015909705311059952,
- -0.08471917361021042,
- 0.04868912696838379,
- -0.11605928093194962,
- 0.020138997584581375,
- -0.0072877854108810425,
- -0.0815863236784935,
- 0.03528326749801636,
- 0.01616886630654335,
- -0.010067665949463844,
- 0.041702982038259506,
- 0.07328913360834122,
- 0.0965079739689827,
- -0.07723594456911087,
- -0.00948308315128088,
- -0.03672775253653526,
- 0.08886973559856415,
- -0.0038212337531149387,
- 0.06363536417484283,
- -0.055888108909130096,
- 0.06279885023832321,
- -0.015133865177631378,
- 0.05529996007680893,
- 0.006937354803085327,
- -0.03256905823945999,
- 0.00888778455555439,
- -0.04389999434351921,
- -0.014972264878451824,
- 0.0331687368452549,
- -0.037128180265426636,
- -0.032261162996292114,
- 0.02693694643676281,
- 0.026225406676530838,
- -0.05292632430791855,
- 3.5713186110591324e-33,
- -0.08911454677581787,
- 0.02771838940680027,
- 0.014500828459858894,
- 0.010074852965772152,
- -0.007845098152756691,
- -0.022382188588380814,
- 0.06461398303508759,
- 0.025119701400399208,
- 0.026937080547213554,
- 0.08053695410490036,
- -0.021170485764741898,
- -0.050559721887111664,
- 0.04384029656648636,
- -0.010231392458081245,
- 0.02319849282503128,
- -0.05002136901021004,
- 0.10317111015319824,
- -0.09409533441066742,
- -0.0872889906167984,
- 0.010395900346338749,
- -0.06121570244431496,
- -0.016270410269498825,
- -0.12278618663549423,
- 0.01341825257986784,
- -0.04175614193081856,
- 0.05196515843272209,
- 0.016572188585996628,
- 0.045955460518598557,
- -0.06251391023397446,
- -0.00048574904212728143,
- 0.009494180791079998,
- -0.0654345452785492,
- -0.010674919933080673,
- 0.014481374993920326,
- -0.0924866572022438,
- -0.01345207542181015,
- -0.032472237944602966,
- 0.04881618916988373,
- -0.05033336952328682,
- 0.017109690234065056,
- 0.06933863461017609,
- -0.010581041686236858,
- -0.10588773339986801,
- 0.09138186275959015,
- 0.06802948564291,
- 0.047754332423210144,
- 0.025829549878835678,
- 0.03316811844706535,
- 0.005552906543016434,
- 0.005918528884649277,
- -0.04571900516748428,
- -0.03220047801733017,
- 0.08261450380086899,
- -0.0012487878557294607,
- -0.011150971055030823,
- 0.007371935993432999,
- 0.056311700493097305,
- 0.033612512052059174,
- -0.08233453333377838,
- -0.045851971954107285,
- -0.02170438878238201,
- 0.025179404765367508,
- 0.012135952711105347,
- 0.06053454428911209,
- -0.01799062080681324,
- 0.0317763090133667,
- -0.0770019143819809,
- 0.017570946365594864,
- 0.0031190041918307543,
- -0.05998795107007027,
- -0.015499820001423359,
- -0.05609642341732979,
- -0.026755305007100105,
- -0.008255988359451294,
- -0.0389140360057354,
- -0.033604223281145096,
- -0.05306567624211311,
- -0.012969518080353737,
- 0.025208285078406334,
- -0.017818352207541466,
- -0.07561654597520828,
- -0.03841334953904152,
- -0.05444090813398361,
- 0.08243253827095032,
- -0.016848493367433548,
- 0.1637086719274521,
- 0.006608310155570507,
- -0.07053522765636444,
- 0.043341994285583496,
- -0.031764622777700424,
- 0.06186599284410477,
- 0.050646115094423294,
- -0.03607296198606491,
- 0.004480201285332441,
- -0.0021605179645121098,
- -1.349549627605029e-8,
- -0.011981590650975704,
- 0.013897903263568878,
- 0.04506378248333931,
- 0.06527730822563171,
- 0.04559995234012604,
- 0.06361664086580276,
- 0.05221199244260788,
- -0.05791119113564491,
- 0.024769563227891922,
- -0.0018491015071049333,
- -0.03284713998436928,
- -0.004776286892592907,
- 0.0042069097980856895,
- -0.006805866956710815,
- 0.10286165028810501,
- -0.047274310141801834,
- -0.02239743061363697,
- 0.021213455125689507,
- -0.08093076944351196,
- 0.0585026890039444,
- -0.008512342348694801,
- 0.08351336419582367,
- -0.01417798176407814,
- 0.019634898751974106,
- 0.04020466282963753,
- 0.020650822669267654,
- -0.0738234594464302,
- 0.0493331104516983,
- 0.018105044960975647,
- 0.08896540850400925,
- 0.05475880578160286,
- 0.02052829973399639,
- -0.05759423226118088,
- 0.005906359292566776,
- -0.020290372893214226,
- -0.05297396332025528,
- 0.038239672780036926,
- -0.006645060144364834,
- 0.06530987471342087,
- 0.03558267652988434,
- -0.02652161568403244,
- -0.022481773048639297,
- 0.016705472022294998,
- 0.01861882023513317,
- 0.030679484829306602,
- 0.03848722577095032,
- -0.04095001891255379,
- -0.001932111568748951,
- 0.005870821885764599,
- -0.041423872113227844,
- -0.05353166535496712,
- 0.002573109697550535,
- -0.03963739424943924,
- 0.019499151036143303,
- 0.12161007523536682,
- -0.042105648666620255,
- -0.02963138185441494,
- -0.0799248144030571,
- -0.13107436895370483,
- -0.015420881099998951,
- 0.11289259046316147,
- -0.09420599043369293,
- 0.08460941910743713,
- 0.12045150250196457
- ]
- },
- {
- "keyword": "location",
- "type": "locatedAt",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.03190566599369049,
- 0.03640325739979744,
- -0.006352653726935387,
- 0.0038156535010784864,
- 0.006062420550733805,
- 0.00046405880129896104,
- 0.08092434704303741,
- -0.006083681248128414,
- -0.02174331806600094,
- -0.016300121322274208,
- 0.08744146674871445,
- -0.05085214227437973,
- 0.029888713732361794,
- -0.002214612439274788,
- 0.0069267661310732365,
- 0.004734333138912916,
- 0.054005444049835205,
- -0.009900350123643875,
- -0.003646601689979434,
- -0.04578617215156555,
- -0.036738522350788116,
- 0.023288238793611526,
- 0.053341832011938095,
- 0.03628147765994072,
- 0.023059502243995667,
- 0.02111714892089367,
- -0.0047589573077857494,
- 0.052180513739585876,
- 0.06771860271692276,
- -0.10917894542217255,
- 0.010279976762831211,
- 0.011616530828177929,
- 0.03682371973991394,
- -0.004312620963901281,
- 0.017745880410075188,
- 0.02245573326945305,
- 0.009145000018179417,
- -0.00988167803734541,
- 0.04334349185228348,
- -0.048584625124931335,
- 0.03435852378606796,
- -0.02975383773446083,
- 0.030814308673143387,
- -0.059588659554719925,
- -0.03065318427979946,
- 0.003970353398472071,
- 0.08676061779260635,
- 0.005148585420101881,
- 0.07231983542442322,
- 0.014214592054486275,
- -0.0068673440255224705,
- -0.01638820581138134,
- -0.026278048753738403,
- 0.05958770215511322,
- -0.013858319260179996,
- 0.053991999477148056,
- -0.05525147542357445,
- 0.03594766557216644,
- 0.026683570817112923,
- -0.012289087288081646,
- 0.13720498979091644,
- -0.00977996364235878,
- -0.08244102448225021,
- 0.037458017468452454,
- 0.02792363427579403,
- 0.009206824004650116,
- -0.009985070675611496,
- 0.03862375393509865,
- 0.01102246344089508,
- -0.13620953261852264,
- 0.03109942562878132,
- 0.001331557403318584,
- -0.0783650130033493,
- -0.010922077111899853,
- 0.04871813580393791,
- -0.023007910698652267,
- 0.012724794447422028,
- -0.014448709785938263,
- 0.03519439324736595,
- -0.03199230134487152,
- 0.025189736858010292,
- -0.02851409651339054,
- 0.011531670577824116,
- 0.04611232876777649,
- 0.02086356095969677,
- -0.02339792624115944,
- 0.033169571310281754,
- 0.04766443744301796,
- 0.0673753172159195,
- -0.03989940136671066,
- 0.028304748237133026,
- 0.029899045825004578,
- -0.015988970175385475,
- -0.0002899463870562613,
- -0.10300396382808685,
- -0.017625240609049797,
- 0.011942076496779919,
- 0.050002571195364,
- 0.052500609308481216,
- 0.22850987315177917,
- 0.01689966581761837,
- 0.005999990738928318,
- -0.005545140244066715,
- 0.017230525612831116,
- 0.03303653374314308,
- -0.026145117357373238,
- -0.12889976799488068,
- 0.0573650561273098,
- -0.0436653308570385,
- 0.013385004363954067,
- -0.048243556171655655,
- 0.001882878364995122,
- -0.07609567046165466,
- 0.01451913919299841,
- -0.02392585203051567,
- 0.02915586531162262,
- 0.03169890120625496,
- 0.03386557847261429,
- -0.011948809027671814,
- -0.02849242277443409,
- -0.030644146725535393,
- -0.043655216693878174,
- -0.036811232566833496,
- 0.019188744947314262,
- -0.05003036558628082,
- -0.07014244794845581,
- -0.013508922420442104,
- -4.78611377879124e-33,
- 0.03635308891534805,
- -0.033856991678476334,
- 0.022786201909184456,
- 0.0696670338511467,
- 0.037263423204422,
- 0.018328020349144936,
- -0.01520455814898014,
- -0.014331982471048832,
- -0.044891297817230225,
- 0.06273798644542694,
- -0.021595358848571777,
- -0.01356541458517313,
- -0.031588681042194366,
- -0.02081330306828022,
- 0.141579270362854,
- -0.007029099389910698,
- 0.05580642819404602,
- 0.014119679108262062,
- -0.0819009318947792,
- 0.04720141738653183,
- -0.014576015062630177,
- -0.010367963463068008,
- -0.044532787054777145,
- 0.056728143244981766,
- -0.04693927615880966,
- -0.01929367147386074,
- -0.029634768143296242,
- 0.012465275824069977,
- -0.022317422553896904,
- 0.026702571660280228,
- -0.04231918975710869,
- -0.0021694956813007593,
- 0.01978205516934395,
- -0.019201282411813736,
- 0.04108571261167526,
- -0.018679296597838402,
- -0.02632465772330761,
- -0.05339278653264046,
- -0.011105936951935291,
- -0.01042729802429676,
- -0.0037293543573468924,
- 0.04229249060153961,
- -0.06307528913021088,
- 0.05718422681093216,
- 0.057373370975255966,
- 0.014340147376060486,
- 0.002331552794203162,
- 0.027903428301215172,
- 0.07015907764434814,
- 0.05259375646710396,
- -0.09700868278741837,
- 0.03498581051826477,
- -0.10338173061609268,
- -0.014432639814913273,
- 0.0273737870156765,
- 0.029649222269654274,
- -0.052626289427280426,
- -0.01185368001461029,
- 0.11369717866182327,
- -0.03369748219847679,
- 0.07931627333164215,
- 0.12925297021865845,
- -0.02967268042266369,
- -0.0572485476732254,
- 0.021988485008478165,
- -0.11523996293544769,
- 0.013566377572715282,
- -0.05868159607052803,
- 0.06295160949230194,
- 0.009403318166732788,
- -0.019654495641589165,
- -0.008077493868768215,
- 0.1631442904472351,
- 0.09272390604019165,
- -0.021578634157776833,
- -0.009432538412511349,
- -0.0640590637922287,
- 0.07421872019767761,
- -0.05012902617454529,
- -0.030135734006762505,
- -0.056415244936943054,
- -0.0017638897988945246,
- -0.08361121267080307,
- 0.153179332613945,
- 0.05267670005559921,
- -0.005092091858386993,
- -0.050465863198041916,
- -0.11662784218788147,
- -0.0165594220161438,
- -0.002938764402642846,
- -0.12764085829257965,
- 0.003347911639139056,
- -0.03796818107366562,
- -0.01135366689413786,
- -0.03313228487968445,
- 3.709116671018244e-33,
- -0.0462748259305954,
- -0.1144275888800621,
- 0.04196600243449211,
- 0.0015588642563670874,
- 0.012882157228887081,
- 0.019968051463365555,
- 0.0596940778195858,
- 0.0023039213847368956,
- -0.0025056039448827505,
- 0.09579366445541382,
- -0.16734527051448822,
- -0.011974787339568138,
- 0.12662170827388763,
- 0.04259738698601723,
- -0.019386284053325653,
- 0.08988485485315323,
- 0.06407865136861801,
- 0.005063822492957115,
- -0.05321114882826805,
- 0.001111094607040286,
- -0.02006322331726551,
- -0.0763658881187439,
- -0.029736533761024475,
- -0.029127392917871475,
- -0.038883522152900696,
- 0.015246506780385971,
- 0.038732197135686874,
- -0.001452685217373073,
- -0.06192157045006752,
- -0.06744640320539474,
- -0.024378713220357895,
- -0.07250460237264633,
- -0.03555778041481972,
- 0.0353192500770092,
- -0.057331543415784836,
- 0.12510691583156586,
- -0.006545929703861475,
- 0.028200672939419746,
- -0.00375852407887578,
- 0.01318101305514574,
- 0.06064218655228615,
- -0.012783586047589779,
- 0.012362250126898289,
- 0.16052363812923431,
- -0.012726478278636932,
- 0.028518330305814743,
- -0.008499953895807266,
- 0.03800181299448013,
- 0.049467191100120544,
- 0.005453696008771658,
- 0.004664850886911154,
- 0.05955469235777855,
- -0.003364656353369355,
- 0.02001861296594143,
- -0.009646564722061157,
- 0.03831610083580017,
- -0.01867244392633438,
- 0.01816321723163128,
- -0.05068501830101013,
- -0.014866670593619347,
- -0.005698053166270256,
- 0.041103545576334,
- -0.07868435978889465,
- 0.025533191859722137,
- -0.017292561009526253,
- 0.046137649565935135,
- -0.009885389357805252,
- 0.021875128149986267,
- -0.01477610319852829,
- -0.01648836024105549,
- 0.030469823628664017,
- -0.02476217783987522,
- -0.02667926251888275,
- 0.017303237691521645,
- -0.0587988942861557,
- 0.0007870267727412283,
- 0.025386029854416847,
- 0.020375898107886314,
- 0.003298330120742321,
- -0.07698643952608109,
- -0.007897527888417244,
- -0.03842975199222565,
- -0.12097061425447464,
- 0.045698147267103195,
- -0.0010849253740161657,
- 0.014316845685243607,
- 0.0369018130004406,
- -0.007271196227520704,
- -0.01051593292504549,
- -0.09288989752531052,
- -0.06141363084316254,
- 0.08583758026361465,
- -0.10589368641376495,
- -0.030997850000858307,
- -0.0634295716881752,
- -1.3508224760983012e-8,
- -0.035134825855493546,
- 0.04335324838757515,
- -0.005903848446905613,
- 0.04220212996006012,
- -0.0013112628366798162,
- 0.025185251608490944,
- 0.0787874162197113,
- 0.08238888531923294,
- 0.04524233564734459,
- 0.08591552823781967,
- -0.06146635860204697,
- 0.016903279349207878,
- 0.026735076680779457,
- -0.019292712211608887,
- -0.010525355115532875,
- -0.0012234312016516924,
- -0.03486340120434761,
- 0.015823427587747574,
- -0.03879125788807869,
- 0.019135599955916405,
- -0.0008166130282916129,
- 0.0237579345703125,
- 0.06261741369962692,
- 0.009947131387889385,
- -0.012627867050468922,
- -0.03082788735628128,
- 0.037523917853832245,
- 0.09526170045137405,
- 0.009530999697744846,
- -0.013191803358495235,
- 0.00894700363278389,
- 0.049387820065021515,
- -0.01771135814487934,
- -0.02607131190598011,
- -0.0052443379536271095,
- 0.0001817736483644694,
- -0.09193547815084457,
- 0.015329506248235703,
- -0.022090306505560875,
- -0.07136403024196625,
- -0.009547240100800991,
- -0.09813764691352844,
- 0.0529932901263237,
- 0.013551591895520687,
- -0.01541786640882492,
- -0.01404382474720478,
- 0.06710360944271088,
- -0.03322208300232887,
- -0.01924957148730755,
- 0.0008785181562416255,
- -0.11020336300134659,
- -0.03506329655647278,
- -0.007751669269055128,
- 0.030030345544219017,
- 0.04765864834189415,
- 0.02955206297338009,
- -0.02611902356147766,
- -0.09143278747797012,
- -0.054390739649534225,
- 0.11024604737758636,
- 0.05482029169797897,
- 0.07114937156438828,
- -0.0757521390914917,
- 0.049866702407598495
- ]
- },
- {
- "keyword": "position",
- "type": "locatedAt",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.015227846801280975,
- 0.05710805952548981,
- -0.006209940649569035,
- -0.061424143612384796,
- -0.025386381894350052,
- 0.05081700533628464,
- 0.08671844750642776,
- 0.046937957406044006,
- 0.05462314561009407,
- 0.013984487392008305,
- 0.029044045135378838,
- 0.010935296304523945,
- 0.06173333153128624,
- -0.02328522689640522,
- -0.00614041555672884,
- -0.014529571868479252,
- 0.01683725230395794,
- 0.04376352205872536,
- -0.006110707763582468,
- 0.0151418661698699,
- -0.025792626664042473,
- -0.01559180673211813,
- 0.07221339643001556,
- -0.008750919252634048,
- -0.02910422533750534,
- -0.019119959324598312,
- -0.005677185487002134,
- 0.055030446499586105,
- 0.028202198445796967,
- -0.17921867966651917,
- 0.00006294014019658789,
- -0.0043191988952457905,
- 0.06050712987780571,
- 0.005409341771155596,
- -0.07258177548646927,
- 0.036867398768663406,
- -0.051943518221378326,
- -0.028198016807436943,
- 0.06356790661811829,
- -0.009820216335356236,
- -0.006759794428944588,
- -0.038644783198833466,
- -0.007515436038374901,
- -0.0584837980568409,
- 0.038938164710998535,
- 0.08229690045118332,
- 0.08082149922847748,
- 0.012263182550668716,
- 0.027304431423544884,
- -0.020333757624030113,
- -0.03891396149992943,
- -0.01461352501064539,
- 0.007847839966416359,
- 0.0937628373503685,
- 0.03178446367383003,
- 0.0733858123421669,
- -0.01846841163933277,
- -0.036090776324272156,
- 0.0508006252348423,
- 0.0012035147519782186,
- 0.12727002799510956,
- 0.008942808024585247,
- -0.037628330290317535,
- 0.02527027390897274,
- -0.011266154237091541,
- -0.09501630812883377,
- -0.02520437352359295,
- -0.008974374271929264,
- -0.08289461582899094,
- -0.024753164499998093,
- 0.038927629590034485,
- -0.021819142624735832,
- -0.01919407583773136,
- 0.007755900267511606,
- 0.03568499907851219,
- -0.04123441129922867,
- 0.0659482404589653,
- -0.02764553762972355,
- 0.08638845384120941,
- -0.01557912863790989,
- 0.025446632876992226,
- -0.04030289500951767,
- 0.016336165368556976,
- 0.06577522307634354,
- -0.04497065022587776,
- -0.056040648370981216,
- -0.020269935950636864,
- 0.041292931884527206,
- -0.0059252772480249405,
- -0.010695554316043854,
- -0.006536751054227352,
- -0.006484628655016422,
- 0.02054361253976822,
- 0.05151857063174248,
- -0.026091229170560837,
- 0.04520183056592941,
- 0.01861417479813099,
- 0.030113665387034416,
- -0.03634568676352501,
- 0.2854103446006775,
- 0.04261084273457527,
- 0.030775606632232666,
- -0.05979575589299202,
- 0.021395212039351463,
- 0.0024665514938533306,
- -0.0661923736333847,
- -0.12017705291509628,
- -0.012502637691795826,
- -0.009852726012468338,
- -0.06562183052301407,
- -0.04008806496858597,
- -0.033044300973415375,
- -0.088663749396801,
- 0.07483027875423431,
- -0.07289952039718628,
- -0.026201849803328514,
- -0.03189658373594284,
- 0.026445375755429268,
- 0.003992486745119095,
- -0.10406846553087234,
- 0.012396877631545067,
- 0.01576984114944935,
- -0.06841692328453064,
- 0.04343022406101227,
- -0.05521261692047119,
- -0.031210869550704956,
- 0.006088930647820234,
- -5.6567113436331195e-33,
- -0.007169909309595823,
- -0.07635458558797836,
- 0.03212245553731918,
- 0.07597300410270691,
- 0.030114982277154922,
- 0.01861543580889702,
- -0.03461665287613869,
- 0.049372103065252304,
- -0.009133352898061275,
- 0.04858976975083351,
- 0.02465890534222126,
- -0.038846053183078766,
- -0.003618680639192462,
- -0.001924243289977312,
- 0.059800900518894196,
- -0.026462044566869736,
- 0.022608181461691856,
- 0.047407809644937515,
- -0.146628737449646,
- 0.056271035224199295,
- -0.015881720930337906,
- 0.06252782046794891,
- -0.06352365761995316,
- 0.011233141645789146,
- 0.03415584936738014,
- 0.03715071082115173,
- -0.0523606576025486,
- -0.08471742272377014,
- -0.14850960671901703,
- 0.0011964900186285377,
- -0.0827232152223587,
- 0.031205087900161743,
- -0.0667845606803894,
- -0.04598952457308769,
- 0.038478560745716095,
- -0.017947418615221977,
- -0.029263682663440704,
- -0.04225485771894455,
- 0.015837537124753,
- -0.056741587817668915,
- -0.024826018139719963,
- 0.04381363093852997,
- -0.03474774584174156,
- 0.03022528998553753,
- 0.01037698332220316,
- 0.04833448678255081,
- 0.03154744580388069,
- 0.03238296881318092,
- -0.015443211421370506,
- 0.10892823338508606,
- -0.03608410060405731,
- 0.022347034886479378,
- 0.019189143553376198,
- -0.009663425385951996,
- 0.016428882256150246,
- 0.012495452538132668,
- 0.027478152886033058,
- 0.005804697051644325,
- -0.016344033181667328,
- -0.023013141006231308,
- 0.030563723295927048,
- 0.025584932416677475,
- -0.024765413254499435,
- -0.025301048532128334,
- -0.021660398691892624,
- -0.10968577861785889,
- -0.04135299474000931,
- -0.05969163402915001,
- 0.1075492575764656,
- 0.014728715643286705,
- -0.039719775319099426,
- -0.010952731594443321,
- 0.07060173153877258,
- 0.03411684185266495,
- -0.051130086183547974,
- -0.019030386582016945,
- -0.012165647000074387,
- 0.002664244268089533,
- -0.046486932784318924,
- -0.06791353970766068,
- 0.000551027653273195,
- 0.023266252130270004,
- 0.02700505591928959,
- 0.019304975867271423,
- 0.038254719227552414,
- -0.06308338046073914,
- 0.011217009276151657,
- -0.08727314323186874,
- 0.03976094722747803,
- 0.052026644349098206,
- -0.0987175703048706,
- -0.004038656130433083,
- 0.02002605050802231,
- 0.03766356036067009,
- -0.017128629609942436,
- 4.9334311389401045e-33,
- -0.040933962911367416,
- 0.013643477112054825,
- 0.05011485517024994,
- -0.013748056255280972,
- 0.012782816775143147,
- -0.02014879137277603,
- 0.08882041275501251,
- -0.009578832425177097,
- -0.058904558420181274,
- 0.09372154623270035,
- -0.07707542181015015,
- 0.025905361399054527,
- 0.01792309060692787,
- 0.0168912373483181,
- 0.006725177634507418,
- 0.07420449703931808,
- -0.010711328126490116,
- 0.001961234724149108,
- -0.09670668095350266,
- 0.017087046056985855,
- -0.010304827243089676,
- -0.012429498136043549,
- -0.028692392632365227,
- 0.06447842717170715,
- 0.00006393766670953482,
- 0.049110326915979385,
- 0.14871878921985626,
- -0.007653443608433008,
- -0.07813501358032227,
- -0.03837849199771881,
- -0.047574467957019806,
- -0.08561623841524124,
- -0.0037711120676249266,
- 0.023906929418444633,
- -0.032971758395433426,
- 0.05831696093082428,
- -0.041891470551490784,
- 0.009067194536328316,
- 0.027219871059060097,
- 0.07050017267465591,
- 0.07499083131551743,
- 0.014992373995482922,
- 0.039436224848032,
- 0.09829051792621613,
- 0.013203207403421402,
- 0.01850712299346924,
- 0.008042494766414165,
- 0.011427669785916805,
- 0.003572212066501379,
- 0.05572018772363663,
- -0.08845844864845276,
- 0.0838906392455101,
- -0.09052345901727676,
- 0.03084576688706875,
- 0.041633520275354385,
- 0.03941599279642105,
- -0.078919917345047,
- -0.030120158568024635,
- -0.028654443100094795,
- -0.03411036729812622,
- 0.014455882832407951,
- 0.08788120746612549,
- -0.008705818094313145,
- -0.006012442987412214,
- -0.025108840316534042,
- 0.08489962667226791,
- -0.05218743532896042,
- 0.02767879143357277,
- -0.05139317363500595,
- -0.028517264872789383,
- 0.01256607286632061,
- -0.02163730002939701,
- 0.011442521587014198,
- 0.039142947643995285,
- -0.04951750859618187,
- -0.005723584443330765,
- -0.029362909495830536,
- -0.00456224475055933,
- -0.022212496027350426,
- -0.013900887221097946,
- -0.10458037257194519,
- -0.037208594381809235,
- -0.025544453412294388,
- 0.045154836028814316,
- -0.027746951207518578,
- 0.10086839646100998,
- 0.05337909981608391,
- -0.019878655672073364,
- -0.0018044845201075077,
- -0.08561933040618896,
- 0.01457376778125763,
- 0.07656658440828323,
- -0.01925901509821415,
- -0.0326211042702198,
- 0.008370166644454002,
- -1.4042493390320487e-8,
- -0.11258792877197266,
- -0.006377317477017641,
- 0.019819913432002068,
- 0.032467786222696304,
- -0.013422921299934387,
- 0.04734562709927559,
- 0.05056319385766983,
- -0.053171370178461075,
- 0.033537913113832474,
- 0.006188348866999149,
- -0.02019905298948288,
- 0.020676448941230774,
- 0.051700491458177567,
- -0.06366956979036331,
- 0.0951094999909401,
- 0.03952508047223091,
- -0.04007350280880928,
- 0.014811533503234386,
- -0.07974760979413986,
- 0.0636829063296318,
- 0.028549356386065483,
- 0.07263100147247314,
- 0.027570638805627823,
- 0.044451117515563965,
- -0.011477457359433174,
- -0.030890239402651787,
- -0.05848414823412895,
- 0.1408783197402954,
- -0.01775888167321682,
- 0.059620704501867294,
- 0.06065581738948822,
- 0.03601086884737015,
- -0.006648413836956024,
- -0.03293891251087189,
- 0.03422684967517853,
- 0.03238251805305481,
- -0.02296503074467182,
- -0.009272381663322449,
- 0.014671855606138706,
- -0.03815257176756859,
- -0.0695917159318924,
- -0.025573043152689934,
- 0.036420922726392746,
- 0.06904661655426025,
- 0.024049511179327965,
- 0.017421891912817955,
- 0.03637908026576042,
- -0.011918941512703896,
- 0.006485356949269772,
- -0.07044398784637451,
- -0.017542604357004166,
- -0.0326799638569355,
- 0.041924986988306046,
- 0.06495072692632675,
- 0.040783945471048355,
- 0.047797683626413345,
- -0.044632356613874435,
- -0.05978584662079811,
- -0.13443726301193237,
- 0.09773813933134079,
- 0.011358637362718582,
- 0.026510827243328094,
- 0.021845029667019844,
- 0.03236394748091698
- ]
- },
- {
- "keyword": "whereabouts",
- "type": "locatedAt",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.008535999804735184,
- 0.0028594101313501596,
- -0.029045814648270607,
- -0.009739287197589874,
- 0.010183037258684635,
- 0.04109225794672966,
- -0.008880460634827614,
- -0.02550574019551277,
- -0.03236804157495499,
- -0.06582088768482208,
- 0.04717269912362099,
- -0.1025402620434761,
- 0.021776996552944183,
- -0.0496053472161293,
- 0.03312692418694496,
- 0.014602678827941418,
- 0.03147419914603233,
- -0.04991479218006134,
- -0.02374420128762722,
- -0.036706406623125076,
- -0.07660488784313202,
- 0.027485597878694534,
- 0.05870172753930092,
- 0.03214971348643303,
- -0.025968147441744804,
- 0.009353825822472572,
- 0.05044516548514366,
- -0.012362959794700146,
- 0.027687735855579376,
- -0.0699295848608017,
- 0.04374408721923828,
- 0.018375512212514877,
- 0.03510474041104317,
- 0.012771210633218288,
- 0.10426069051027298,
- 0.058669015765190125,
- 0.004808168858289719,
- -0.01896095648407936,
- 0.0642341896891594,
- -0.07882121205329895,
- 0.019413329660892487,
- -0.007820439524948597,
- -0.006789236795157194,
- -0.04039331525564194,
- 0.02437836118042469,
- 0.010114218108355999,
- 0.026310499757528305,
- -0.04304516315460205,
- 0.09968250244855881,
- -0.01665501669049263,
- -0.025443924590945244,
- 0.006349320989102125,
- 0.02182796411216259,
- 0.06428661942481995,
- 0.011795557104051113,
- 0.05796017497777939,
- 0.010531768202781677,
- -0.03551068529486656,
- -0.006365803070366383,
- -0.015742484480142593,
- 0.1418614685535431,
- 0.023496225476264954,
- -0.04543568193912506,
- 0.006619933061301708,
- -0.06215798482298851,
- -0.018178412690758705,
- 0.007981667295098305,
- -0.005055663641542196,
- 0.067999467253685,
- -0.08467361330986023,
- 0.03558468818664551,
- 0.006405760068446398,
- -0.05791311338543892,
- 0.024082092568278313,
- 0.04916113615036011,
- -0.011989978142082691,
- 0.06826414167881012,
- 0.0031126951798796654,
- 0.05982445925474167,
- -0.03318946808576584,
- 0.03545740246772766,
- -0.0015159184113144875,
- -0.017046384513378143,
- 0.0723300650715828,
- 0.00976563710719347,
- -0.009821983985602856,
- 0.01922650821506977,
- 0.028539910912513733,
- 0.11119760572910309,
- -0.0057417419739067554,
- -0.0018021807773038745,
- 0.031001880764961243,
- -0.07123840600252151,
- -0.01579609140753746,
- -0.07196544855833054,
- -0.08394714444875717,
- 0.03163287788629532,
- 0.05509427562355995,
- -0.031655196100473404,
- 0.23360256850719452,
- 0.022753039374947548,
- 0.0306386835873127,
- -0.014411553740501404,
- -0.027243083342909813,
- -0.06262505054473877,
- 0.02327214553952217,
- -0.04289662465453148,
- 0.11146462708711624,
- -0.04080047830939293,
- -0.00880899466574192,
- 0.016447359696030617,
- 0.006018109619617462,
- -0.058620549738407135,
- 0.06346004456281662,
- 0.09713546186685562,
- 0.026199886575341225,
- 0.04711967706680298,
- 0.007638042327016592,
- -0.009623726829886436,
- -0.025144511833786964,
- -0.04829305410385132,
- -0.009295551106333733,
- -0.025372924283146858,
- -0.00642372015863657,
- -0.0038970690220594406,
- -0.07935769110918045,
- -0.042517226189374924,
- -5.0453499560818945e-33,
- 0.031185299158096313,
- 0.009114603511989117,
- 0.052884187549352646,
- 0.031666360795497894,
- 0.03175190091133118,
- 0.017511099576950073,
- -0.0013213929487392306,
- -0.04007742926478386,
- -0.023882398381829262,
- 0.0216703861951828,
- -0.01266599539667368,
- 0.01912400871515274,
- 0.016111023724079132,
- -0.03946791961789131,
- -0.006408790126442909,
- -0.00921928696334362,
- 0.04177241772413254,
- 0.02411705069243908,
- -0.05261256918311119,
- -0.006950028240680695,
- 0.005308762192726135,
- -0.04032179340720177,
- -0.043383389711380005,
- 0.058686546981334686,
- -0.02675546146929264,
- 0.01183460745960474,
- -0.028057847172021866,
- -0.04517969489097595,
- 0.08622725307941437,
- 0.014373170211911201,
- -0.05380403622984886,
- 0.009996814653277397,
- -0.016945166513323784,
- -0.011434278450906277,
- 0.025800077244639397,
- 0.0505511648952961,
- -0.07516121119260788,
- -0.05877131223678589,
- -0.04286104068160057,
- -0.005067694932222366,
- 0.03894716501235962,
- 0.04597848281264305,
- -0.003818022320047021,
- 0.0075004068203270435,
- 0.013218162581324577,
- -0.04250150918960571,
- 0.03876383975148201,
- 0.004426814150065184,
- 0.11296015232801437,
- -0.00368158589117229,
- -0.07202263921499252,
- 0.034266725182533264,
- -0.1293274164199829,
- 0.004059264436364174,
- 0.01782018505036831,
- -0.008394412696361542,
- -0.075264573097229,
- -0.03318585455417633,
- 0.10554100573062897,
- -0.07054735720157623,
- 0.08738216012716293,
- 0.12256027013063431,
- -0.0911453366279602,
- -0.03823057934641838,
- 0.031851641833782196,
- -0.12170965224504471,
- -0.03084656037390232,
- -0.08846704661846161,
- 0.05342160537838936,
- -0.0607447512447834,
- -0.004214175045490265,
- -0.02984609641134739,
- 0.12160339951515198,
- 0.05060963332653046,
- -0.024231718853116035,
- -0.018142208456993103,
- -0.05330304428935051,
- -0.016763366758823395,
- -0.007430483121424913,
- 0.006085770670324564,
- 0.007071776315569878,
- 0.015811515972018242,
- -0.09991872310638428,
- 0.1042654886841774,
- 0.09630127251148224,
- -0.03332655504345894,
- -0.0606716014444828,
- -0.16699562966823578,
- -0.07580635696649551,
- 0.023041624575853348,
- -0.07686246186494827,
- 0.006389014422893524,
- -0.04830865189433098,
- -0.05647072568535805,
- -0.05444083362817764,
- 1.9955421688299548e-33,
- 0.0491984523832798,
- -0.10919269919395447,
- 0.013145983219146729,
- -0.046981509774923325,
- -0.02210206724703312,
- 0.0005079602124169469,
- 0.0842171236872673,
- 0.02944580651819706,
- -0.04679924249649048,
- 0.013450311496853828,
- -0.09872443974018097,
- -0.012244651094079018,
- 0.06824710220098495,
- -0.008467039093375206,
- -0.01050423365086317,
- 0.13304631412029266,
- 0.10046631842851639,
- 0.05477192997932434,
- 0.03254987299442291,
- -0.0019518296467140317,
- -0.024318454787135124,
- -0.05364729464054108,
- -0.0157307218760252,
- 0.016178714111447334,
- -0.056806616485118866,
- 0.03170616552233696,
- 0.04570654779672623,
- -0.021704932674765587,
- -0.1348663717508316,
- -0.06610672175884247,
- -0.04305028170347214,
- -0.06878212094306946,
- -0.026495400816202164,
- 0.08897475898265839,
- -0.033429794013500214,
- 0.04568128660321236,
- 0.0015557599253952503,
- 0.019682349637150764,
- -0.02853114902973175,
- 0.002501099370419979,
- -0.02253844402730465,
- 0.019978370517492294,
- 0.011428900994360447,
- 0.16594688594341278,
- 0.03525280952453613,
- 0.023373238742351532,
- -0.03254384547472,
- 0.07125850021839142,
- 0.02323252148926258,
- 0.007106010336428881,
- 0.04422233626246452,
- 0.02372276596724987,
- -0.025294845923781395,
- 0.0705554336309433,
- 0.04330688714981079,
- 0.049278318881988525,
- -0.06432094424962997,
- -0.00975867547094822,
- -0.012185938656330109,
- -0.01286849845200777,
- 0.011082789860665798,
- 0.056884244084358215,
- -0.08296642452478409,
- 0.02372295781970024,
- 0.009378061629831791,
- 0.031134895980358124,
- -0.031574517488479614,
- 0.0325004905462265,
- 0.011402333155274391,
- -0.08026552945375443,
- 0.007510370574891567,
- -0.04427067190408707,
- -0.012091129086911678,
- -0.015627792105078697,
- -0.028372077271342278,
- 0.04705405607819557,
- 0.0023949022870510817,
- -0.08922842144966125,
- 0.011196746490895748,
- -0.016639595851302147,
- 0.02232196368277073,
- -0.01821989007294178,
- -0.052728090435266495,
- -0.03907809406518936,
- -0.0353957861661911,
- -0.0831989273428917,
- 0.08178721368312836,
- 0.027632679790258408,
- 0.04326670244336128,
- -0.07547104358673096,
- -0.02251754328608513,
- 0.08212998509407043,
- -0.055084358900785446,
- -0.08378355950117111,
- -0.02113051898777485,
- -1.4391114966372243e-8,
- 0.0032753944396972656,
- 0.07298227399587631,
- -0.020186234265565872,
- 0.025466876104474068,
- 0.061279308050870895,
- 0.061026785522699356,
- 0.1145416647195816,
- 0.0662514790892601,
- 0.017642643302679062,
- 0.0773075744509697,
- 0.010535898618400097,
- 0.004816601984202862,
- 0.03704394772648811,
- -0.037408094853162766,
- -0.024227119982242584,
- -0.04916809871792793,
- -0.06437426805496216,
- -0.01799132116138935,
- -0.006282658316195011,
- 0.011439509689807892,
- -0.023435991257429123,
- 0.032373469322919846,
- 0.048903483897447586,
- 0.0006773432833142579,
- -0.02039271779358387,
- -0.030789775773882866,
- 0.002376615535467863,
- 0.02205277606844902,
- 0.032999973744153976,
- -0.05884161219000816,
- -0.0038292063400149345,
- 0.07717052102088928,
- -0.006772918626666069,
- -0.05748734623193741,
- 0.04240627586841583,
- -0.06709365546703339,
- -0.09246497601270676,
- 0.011275554075837135,
- -0.045023396611213684,
- -0.039376989006996155,
- -0.046199698001146317,
- -0.06502465158700943,
- 0.016766676679253578,
- 0.01044345460832119,
- 0.04296625033020973,
- 0.0025743430014699697,
- 0.01518796943128109,
- -0.01576174423098564,
- -0.019523395225405693,
- 0.002113783499225974,
- -0.0897086039185524,
- -0.041460055857896805,
- 0.0441160574555397,
- 0.04757709801197052,
- 0.04971041530370712,
- 0.03140485659241676,
- -0.07509313523769379,
- -0.07361087203025818,
- -0.03521159663796425,
- 0.04295399785041809,
- 0.061649300158023834,
- 0.02067415788769722,
- -0.0455617755651474,
- 0.015443937852978706
- ]
- },
- {
- "keyword": "references",
- "type": "references",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07413080334663391,
- -0.005079841241240501,
- -0.07876362651586533,
- 0.07996386289596558,
- -0.018540432676672935,
- 0.0086885467171669,
- 0.09775342792272568,
- 0.05924642086029053,
- 0.0017449705628678203,
- -0.010217521339654922,
- -0.030015869066119194,
- 0.02040771208703518,
- -0.004267371725291014,
- -0.043614212423563004,
- -0.07875948399305344,
- 0.019202880561351776,
- 0.07860979437828064,
- -0.02502298168838024,
- -0.030633963644504547,
- -0.02644617296755314,
- -0.004281850066035986,
- 0.01275070384144783,
- 0.005380899179726839,
- -0.001430146163329482,
- 0.007594090886414051,
- 0.005338548216968775,
- -0.0963280126452446,
- 0.031458307057619095,
- 0.027375690639019012,
- -0.08432271331548691,
- -0.1014510840177536,
- 0.12736086547374725,
- -0.05661362409591675,
- -0.06594472378492355,
- -0.028707614168524742,
- 0.0854959562420845,
- 0.04725506901741028,
- 0.06386859714984894,
- 0.0848628357052803,
- 0.009295100346207619,
- 0.011423550546169281,
- 0.04397886246442795,
- 0.011089500039815903,
- -0.016649864614009857,
- -0.010258220136165619,
- 0.030865618959069252,
- 0.03743702173233032,
- -0.0467660129070282,
- -0.020472649484872818,
- 0.05271041765809059,
- -0.1107015535235405,
- 0.025481516495347023,
- -0.018651392310857773,
- 0.001015702378936112,
- 0.04451026767492294,
- -0.032320134341716766,
- 0.0252407044172287,
- -0.00292401947081089,
- 0.03400208801031113,
- -0.014471731148660183,
- 0.081367127597332,
- 0.0005276970332488418,
- -0.07988114655017853,
- 0.012878946028649807,
- 0.003389015095308423,
- 0.023938897997140884,
- -0.011194665916264057,
- 0.02901557832956314,
- -0.12089753895998001,
- -0.049493614584207535,
- -0.0981292575597763,
- 0.024950195103883743,
- -0.05661487579345703,
- 0.019927069544792175,
- 0.06816231459379196,
- 0.027573194354772568,
- 0.022596169263124466,
- -0.010186959058046341,
- 0.07603995501995087,
- -0.09036827832460403,
- -0.06270250678062439,
- -0.061117023229599,
- 0.009705345146358013,
- -0.014277471229434013,
- -0.010037271305918694,
- 0.03977755084633827,
- 0.028860509395599365,
- -0.06825222074985504,
- -0.03691413998603821,
- 0.029035840183496475,
- 0.017197733744978905,
- -0.013662505894899368,
- 0.028369281440973282,
- -0.024979006499052048,
- 0.037415701895952225,
- 0.02377237379550934,
- -0.015659091994166374,
- -0.04036787897348404,
- -0.016459299251437187,
- 0.2463950663805008,
- -0.017783120274543762,
- 0.09391238540410995,
- 0.022902794182300568,
- 0.029052583500742912,
- -0.052939169108867645,
- -0.04184406250715256,
- 0.007740959990769625,
- 0.05093478783965111,
- 0.07363220304250717,
- -0.03752521425485611,
- -0.10900445282459259,
- 0.019814560189843178,
- -0.03500014916062355,
- -0.015842802822589874,
- -0.007340712007135153,
- -0.06748609244823456,
- 0.07332653552293777,
- -0.04498465731739998,
- 0.004693919792771339,
- -0.039516206830739975,
- -0.03833071142435074,
- 0.03023264929652214,
- -0.037606120109558105,
- 0.0401809923350811,
- -0.06972824037075043,
- -0.07957833260297775,
- -0.0687703862786293,
- -5.144956571924775e-33,
- 0.0383959598839283,
- 0.006940596736967564,
- -0.000752223888412118,
- 0.09339291602373123,
- 0.00170252681709826,
- -0.08152537792921066,
- -0.025814397260546684,
- 0.025598283857107162,
- -0.012544326484203339,
- -0.004188270308077335,
- -0.014163772575557232,
- 0.07177933305501938,
- -0.06704342365264893,
- -0.02604520507156849,
- 0.030515920370817184,
- 0.007174134254455566,
- -0.05187312513589859,
- 0.11867423355579376,
- -0.019721781834959984,
- -0.06516040116548538,
- -0.037760451436042786,
- 0.06523787975311279,
- 0.045268576592206955,
- 0.06319846957921982,
- 0.06020062789320946,
- 0.006785385776311159,
- -0.024905076250433922,
- -0.04650571569800377,
- -0.016388602554798126,
- 0.03377547115087509,
- 0.013185596093535423,
- 0.04673127457499504,
- 0.0037573366425931454,
- -0.03893963247537613,
- 0.031620126217603683,
- 0.03500935807824135,
- -0.05562685430049896,
- -0.002218935638666153,
- 0.04721153900027275,
- 0.0012818814720958471,
- -0.005360036622732878,
- -0.015199960209429264,
- -0.06092825531959534,
- 0.010817191563546658,
- 0.02489396370947361,
- -0.03474274277687073,
- 0.017469234764575958,
- 0.002804022980853915,
- -0.01660778559744358,
- -0.005411909427493811,
- 0.006079539190977812,
- 0.011985694989562035,
- -0.10917314887046814,
- -0.00010010174446506426,
- -0.005852688569575548,
- -0.012830772437155247,
- 0.020305851474404335,
- -0.0027738348580896854,
- -0.04554828628897667,
- 0.07358133792877197,
- -0.0036381862591952085,
- 0.11776039749383926,
- -0.07660326361656189,
- 0.0037563780788332224,
- 0.03404906392097473,
- 0.07804564386606216,
- -0.04010521620512009,
- -0.053671471774578094,
- 0.02991919405758381,
- -0.012080228887498379,
- -0.008592219091951847,
- -0.007329477462917566,
- 0.02043115347623825,
- 0.021279381588101387,
- -0.03530154004693031,
- -0.02614288032054901,
- -0.055278342217206955,
- 0.0002693597343750298,
- -0.10855500400066376,
- -0.015602110885083675,
- -0.023314760997891426,
- 0.05771974101662636,
- -0.03703141212463379,
- 0.015171973966062069,
- -0.06782977283000946,
- -0.012547633610665798,
- 0.008492229506373405,
- -0.1303102970123291,
- 0.01509081944823265,
- -0.045309968292713165,
- -0.05295882001519203,
- -0.03375927731394768,
- 0.018457898870110512,
- -0.009325537830591202,
- -0.05710436776280403,
- 4.0871990005968785e-33,
- -0.0013346396153792739,
- -0.04836386442184448,
- 0.04855390638113022,
- 0.12466432899236679,
- 0.061710175126791,
- 0.02720719948410988,
- 0.012793215923011303,
- 0.05094313248991966,
- 0.030135398730635643,
- 0.00314694014377892,
- -0.04840226471424103,
- -0.057918429374694824,
- 0.09083747118711472,
- 0.035311006009578705,
- 0.021549167111516,
- -0.09126385301351547,
- 0.03878624364733696,
- -0.00042983287130482495,
- -0.03138192743062973,
- -0.008781415410339832,
- 0.011898817494511604,
- -0.04454929754137993,
- -0.008278470486402512,
- -0.03942301869392395,
- -0.0574413500726223,
- 0.07187442481517792,
- 0.03472955524921417,
- -0.0802140086889267,
- -0.04217361658811569,
- -0.027060076594352722,
- -0.004410046152770519,
- 0.024067632853984833,
- -0.04582950845360756,
- 0.00851536076515913,
- -0.03755456209182739,
- 0.08643750101327896,
- 0.05840734392404556,
- 0.04395867884159088,
- -0.012485964223742485,
- -0.058045871555805206,
- 0.1316806524991989,
- 0.08080480247735977,
- -0.010524884797632694,
- 0.06467590481042862,
- -0.04624161124229431,
- -0.0113316485658288,
- 0.03098011575639248,
- 0.055205121636390686,
- 0.008311779238283634,
- -0.00744806369766593,
- -0.09506333619356155,
- -0.036174509674310684,
- -0.02546039968729019,
- -0.04868398234248161,
- -0.01993214339017868,
- -0.02479802630841732,
- 0.03036860190331936,
- 0.06151844188570976,
- 0.08142153173685074,
- -0.014583487063646317,
- -0.03959885612130165,
- 0.05053357779979706,
- -0.07771099358797073,
- 0.08374420553445816,
- -0.04675088822841644,
- -0.033626433461904526,
- -0.0744507759809494,
- -0.021150151267647743,
- 0.08553873747587204,
- -0.024841714650392532,
- 0.03450336307287216,
- 0.05732244625687599,
- -0.0005877998773939908,
- 0.0348334014415741,
- -0.0549321174621582,
- -0.027842363342642784,
- -0.010830378159880638,
- 0.05617905035614967,
- -0.07488109916448593,
- -0.017821399495005608,
- -0.044335659593343735,
- -0.012950633652508259,
- -0.030509723350405693,
- 0.13134923577308655,
- 0.038376279175281525,
- 0.038242973387241364,
- 0.04318908974528313,
- -0.04522072523832321,
- -0.0568201057612896,
- -0.030892712995409966,
- -0.0760064497590065,
- -0.05764337629079819,
- 0.0038216032553464174,
- 0.03616422787308693,
- -0.06947407126426697,
- -1.4891513799852873e-8,
- 0.004983136896044016,
- 0.14146080613136292,
- 0.03443343937397003,
- 0.04960530996322632,
- 0.03171617537736893,
- 0.01261336449533701,
- 0.021253785118460655,
- 0.046352874487638474,
- -0.015306775458157063,
- 0.09806554019451141,
- 0.007348969578742981,
- 0.041918814182281494,
- 0.053164586424827576,
- 0.021858179941773415,
- 0.08152911067008972,
- -0.011286488734185696,
- 0.005023409146815538,
- -0.009109589271247387,
- -0.017461467534303665,
- 0.010804624296724796,
- -0.0280943363904953,
- 0.0026685530319809914,
- 0.07734984904527664,
- -0.00354719627648592,
- 0.11171133816242218,
- -0.006036651320755482,
- 0.003978736232966185,
- 0.0836372822523117,
- 0.037053871899843216,
- 0.0701075866818428,
- -0.0057056057266891,
- 0.10578352957963943,
- -0.019093262031674385,
- -0.10480747371912003,
- 0.01076603028923273,
- -0.022508371621370316,
- 0.034999947994947433,
- -0.07105255126953125,
- 0.04386365786194801,
- -0.029715314507484436,
- 0.009269577451050282,
- 0.002446782775223255,
- -0.059452030807733536,
- -0.011267228983342648,
- 0.026198208332061768,
- -0.007055257447063923,
- 0.022960240021348,
- 0.01775396429002285,
- -0.012431669048964977,
- 0.01525068748742342,
- -0.00981384888291359,
- 0.005504126660525799,
- 0.08719068020582199,
- 0.04357937350869179,
- 0.006918283179402351,
- 0.0018212377326563,
- 0.006344158668071032,
- -0.016327086836099625,
- -0.047195300459861755,
- 0.02153519168496132,
- 0.16058175265789032,
- 0.058708686381578445,
- 0.08285097777843475,
- 0.01691269688308239
- ]
- },
- {
- "keyword": "cites",
- "type": "references",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.02810986340045929,
- 0.0034990774001926184,
- -0.03345298394560814,
- 0.007013088092207909,
- 0.004761962220072746,
- 0.010772379115223885,
- 0.12379875034093857,
- 0.060986388474702835,
- 0.009313574992120266,
- -0.017567139118909836,
- 0.024613341316580772,
- 0.04204500466585159,
- 0.013631483539938927,
- -0.009438618086278439,
- -0.03666292130947113,
- 0.07432591170072556,
- 0.058749813586473465,
- -0.02194506861269474,
- 0.049510251730680466,
- -0.025805627927184105,
- -0.02946857362985611,
- 0.07418321073055267,
- 0.01763167232275009,
- -0.030926626175642014,
- 0.02239324152469635,
- 0.008495059795677662,
- -0.06939802318811417,
- 0.015276823192834854,
- 0.053219571709632874,
- -0.04488615691661835,
- -0.013956681825220585,
- 0.17669986188411713,
- 0.09400401264429092,
- -0.02794400230050087,
- -0.02765726111829281,
- -0.02170111984014511,
- -0.03169689700007439,
- 0.026082027703523636,
- 0.011383469216525555,
- 0.0042435238137841225,
- 0.014798417687416077,
- 0.04253676161170006,
- 0.055842429399490356,
- 0.01020265556871891,
- -0.07936184853315353,
- -0.002351748989894986,
- -0.018311038613319397,
- -0.01880674995481968,
- -0.010536381974816322,
- 0.08026058971881866,
- -0.04679840803146362,
- 0.004675150848925114,
- 0.007052008993923664,
- -0.025225553661584854,
- -0.0032071087043732405,
- -0.035427384078502655,
- -0.02448817528784275,
- 0.01629069074988365,
- -0.031109457835555077,
- -0.048244643956422806,
- 0.057008109986782074,
- -0.016900774091482162,
- -0.12865693867206573,
- -0.04549657180905342,
- -0.014598073437809944,
- 0.038427747786045074,
- 0.05608946084976196,
- -0.04425782710313797,
- -0.0669277161359787,
- -0.08277395367622375,
- 0.04694380611181259,
- 0.0044850981794297695,
- -0.04183227941393852,
- 0.009896362200379372,
- 0.03523413836956024,
- 0.048719022423028946,
- 0.018504511564970016,
- -0.030578088015317917,
- 0.025804167613387108,
- -0.11535701900720596,
- -0.05673964321613312,
- -0.005055552814155817,
- -0.01708315499126911,
- -0.020880406722426414,
- 0.035053543746471405,
- 0.004127684514969587,
- 0.024548286572098732,
- -0.0302718635648489,
- -0.017527122050523758,
- 0.030475124716758728,
- -0.007786276750266552,
- 0.04095049202442169,
- 0.08396069705486298,
- -0.03206456080079079,
- 0.0061982967890799046,
- 0.06060338020324707,
- -0.0006222373922355473,
- 0.019306013360619545,
- 0.033459071069955826,
- 0.22565317153930664,
- -0.036122649908065796,
- 0.08812494575977325,
- -0.02567346766591072,
- -0.01119623426347971,
- -0.08033474534749985,
- 0.010801891796290874,
- -0.05834465101361275,
- 0.05493931472301483,
- 0.05751527473330498,
- 0.034461647272109985,
- -0.03392031416296959,
- -0.016568945720791817,
- -0.024211887270212173,
- 0.007614354137331247,
- 0.024918774142861366,
- -0.013567188754677773,
- 0.015081260353326797,
- 0.0018545736093074083,
- 0.012718666344881058,
- -0.03808624669909477,
- -0.004954383708536625,
- 0.026527687907218933,
- -0.040789760649204254,
- 0.014899146743118763,
- -0.09136585146188736,
- -0.04480938985943794,
- -0.012406186200678349,
- -5.703600343919482e-33,
- 0.09153168648481369,
- 0.0015618354082107544,
- 0.02602546103298664,
- 0.011502026580274105,
- 0.019668402150273323,
- -0.036021362990140915,
- -0.04558314010500908,
- -0.01982088014483452,
- -0.1297391653060913,
- -0.07630197703838348,
- -0.055015336722135544,
- 0.04181927815079689,
- -0.04205944761633873,
- 0.025449102744460106,
- 0.05797578766942024,
- -0.0019841513130813837,
- 0.010389076545834541,
- 0.07471717149019241,
- 0.024782905355095863,
- -0.06330664455890656,
- -0.022635003551840782,
- 0.00018315052147954702,
- -0.0034860786981880665,
- 0.004923313856124878,
- 0.02581269107758999,
- -0.025666220113635063,
- -0.02965943142771721,
- -0.0285837072879076,
- 0.07541775703430176,
- 0.03672459349036217,
- 0.01695132628083229,
- 0.002333773300051689,
- -0.040109556168317795,
- 0.024744724854826927,
- 0.0433143712580204,
- 0.05063319578766823,
- -0.007949301972985268,
- -0.0034508772660046816,
- -0.014261952601373196,
- 0.015254315920174122,
- 0.03424818813800812,
- 0.048763666301965714,
- -0.009321779012680054,
- -0.008732861839234829,
- -0.008880957961082458,
- 0.028580987825989723,
- -0.04452113062143326,
- 0.037554189562797546,
- 0.05928746610879898,
- 0.03155531361699104,
- 0.00036046706372871995,
- -0.008840629830956459,
- -0.1147553026676178,
- -0.017856547608971596,
- -0.003091690829023719,
- 0.012648341245949268,
- -0.018451722338795662,
- 0.0013032497372478247,
- 0.09266304224729538,
- 0.06270870566368103,
- 0.016255956143140793,
- 0.08599257469177246,
- -0.12943629920482635,
- 0.07621803134679794,
- 0.00209976127371192,
- 0.012474119663238525,
- 0.026136185973882675,
- -0.030565964058041573,
- 0.016585486009716988,
- 0.06377580016851425,
- -0.00150217954069376,
- -0.028023071587085724,
- 0.10373614728450775,
- 0.021963486447930336,
- -0.04212610423564911,
- -0.031688183546066284,
- -0.006159292068332434,
- 0.014814555644989014,
- -0.0624990351498127,
- 0.021685156971216202,
- -0.035484835505485535,
- -0.054331984370946884,
- -0.052864234894514084,
- -0.006732933223247528,
- -0.033582597970962524,
- 0.04757154360413551,
- -0.04974338039755821,
- -0.10118883103132248,
- 0.0019209441961720586,
- -0.01318337395787239,
- -0.04652873054146767,
- 0.031036637723445892,
- -0.021017419174313545,
- -0.02717004157602787,
- -0.08485347777605057,
- 4.362298106809895e-33,
- -0.0374533049762249,
- -0.0825413167476654,
- 0.09038370847702026,
- 0.11676119267940521,
- -0.018057791516184807,
- -0.02515016868710518,
- -0.052510250359773636,
- -0.011563885025680065,
- -0.009223921224474907,
- -0.03164554759860039,
- 0.029133614152669907,
- -0.083371102809906,
- 0.055785488337278366,
- 0.009668851271271706,
- 0.07116781175136566,
- -0.012706614099442959,
- 0.0029423218220472336,
- -0.0888369008898735,
- -0.09270831942558289,
- 0.05243146792054176,
- -0.0020571749191731215,
- -0.11903765052556992,
- -0.032244324684143066,
- 0.012992789968848228,
- -0.049177803099155426,
- -0.0013880152255296707,
- -0.0045056273229420185,
- -0.11437351256608963,
- -0.018174149096012115,
- 0.019757984206080437,
- 0.02393803372979164,
- 0.030029764398932457,
- -0.1737658679485321,
- -0.03399796783924103,
- -0.053246643394231796,
- 0.12085024267435074,
- -0.04774633049964905,
- 0.060180433094501495,
- -0.031726449728012085,
- -0.009072546847164631,
- 0.04027646780014038,
- 0.01011115312576294,
- -0.005636877845972776,
- 0.0756915956735611,
- -0.025895247235894203,
- 0.018731964752078056,
- 0.017207754775881767,
- 0.0810149535536766,
- 0.039799876511096954,
- -0.020575053989887238,
- -0.03903287649154663,
- 0.05754080042243004,
- -0.04440212622284889,
- -0.058598220348358154,
- 0.021389178931713104,
- -0.014763278886675835,
- 0.055406320840120316,
- 0.005641831550747156,
- 0.06998838484287262,
- -0.045596420764923096,
- 0.022775795310735703,
- 0.0224522203207016,
- -0.09818664193153381,
- 0.07032261788845062,
- 0.0026314021088182926,
- -0.05391358211636543,
- -0.04850524663925171,
- -0.028208311647176743,
- 0.04170228913426399,
- 0.010701610706746578,
- 0.059172943234443665,
- -0.03925173729658127,
- 0.05270877853035927,
- -0.047824468463659286,
- -0.03407086804509163,
- 0.023241596296429634,
- -0.053783174604177475,
- 0.07013635337352753,
- -0.049996938556432724,
- 0.03821951523423195,
- 0.00984896719455719,
- -0.009606696665287018,
- 0.02805640920996666,
- 0.0949733704328537,
- 0.048853326588869095,
- 0.03072056733071804,
- -0.00007404851203318685,
- -0.04463530704379082,
- -0.11235592514276505,
- 0.014283811673521996,
- -0.05179072916507721,
- -0.0613163486123085,
- -0.049109749495983124,
- 0.03213168680667877,
- -0.020226307213306427,
- -1.3562061695893135e-8,
- -0.054973773658275604,
- 0.10189228504896164,
- 0.028988763689994812,
- 0.06991436332464218,
- 0.09848601371049881,
- -0.023624157533049583,
- 0.043474894016981125,
- 0.0600866861641407,
- 0.033073388040065765,
- 0.10917540639638901,
- -0.05835096538066864,
- -0.07316311448812485,
- -0.00722841639071703,
- 0.04631124809384346,
- 0.07729706913232803,
- -0.03117441013455391,
- -0.011678701266646385,
- -0.0011967651080340147,
- -0.024832433089613914,
- 0.010921821929514408,
- -0.07611227035522461,
- -0.009919005446135998,
- 0.05268668010830879,
- -0.045494694262742996,
- 0.011379517614841461,
- -0.009746715426445007,
- -0.005390073172748089,
- 0.11814875155687332,
- 0.05022692307829857,
- 0.03796317055821419,
- 0.0294562429189682,
- 0.06416509300470352,
- -0.03664066269993782,
- -0.10020554065704346,
- 0.10915613174438477,
- -0.05044815316796303,
- 0.006550596095621586,
- -0.04790456220507622,
- -0.0012762682745233178,
- -0.004643384832888842,
- -0.022546030580997467,
- -0.002637875732034445,
- 0.02605474926531315,
- 0.033594999462366104,
- -0.04845257103443146,
- -0.042897097766399384,
- 0.0854254812002182,
- 0.01935071498155594,
- 0.007284912746399641,
- 0.003495113691315055,
- -0.06388578563928604,
- -0.07621181756258011,
- 0.09083713591098785,
- 0.03422008082270622,
- 0.02184681035578251,
- 0.010960962623357773,
- 0.028336558490991592,
- -0.0058701676316559315,
- 0.017820898443460464,
- -0.037263065576553345,
- 0.1498611867427826,
- -0.043402910232543945,
- 0.08966261893510818,
- 0.06681501120328903
- ]
- },
- {
- "keyword": "refers to",
- "type": "references",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.0242175180464983,
- 0.08158402889966965,
- -0.0023231017403304577,
- 0.022623058408498764,
- -0.026788583025336266,
- 0.024456650018692017,
- 0.21424126625061035,
- 0.05506483092904091,
- -0.015619190409779549,
- -0.05989327281713486,
- -0.0017934878123924136,
- -0.04463345929980278,
- 0.08192837983369827,
- -0.035948388278484344,
- 0.0033478611148893833,
- -0.021258845925331116,
- 0.016389181837439537,
- -0.04878651723265648,
- -0.01390382181853056,
- 0.020199209451675415,
- 0.05645264685153961,
- 0.11614865809679031,
- -0.02074470743536949,
- 0.0032410924322903156,
- -0.026984330266714096,
- -0.020123301073908806,
- -0.06606434285640717,
- -0.005552111659198999,
- 0.1108485534787178,
- 0.04447328671813011,
- -0.05395181104540825,
- 0.1478230059146881,
- -0.06411203742027283,
- 0.05392433702945709,
- 0.007804347667843103,
- 0.007984698750078678,
- -0.0008647045469842851,
- 0.03142046555876732,
- -0.002676429459825158,
- -0.03005145490169525,
- -0.013890739530324936,
- 0.030289987102150917,
- -0.005182395223528147,
- -0.012294288724660873,
- 0.04015267267823219,
- 0.03573809936642647,
- 0.05321010574698448,
- -0.04190906137228012,
- -0.024325277656316757,
- 0.003376513021066785,
- -0.09558479487895966,
- 0.01922347955405712,
- 0.0032697878777980804,
- -0.013535317033529282,
- 0.03722406178712845,
- -0.05804383382201195,
- 0.022425180301070213,
- -0.040728501975536346,
- 0.014153963886201382,
- -0.0017829518765211105,
- 0.03594215586781502,
- -0.06899921596050262,
- -0.023819411173462868,
- -0.013195060193538666,
- -0.036957625299692154,
- -0.043611109256744385,
- 0.033824190497398376,
- -0.018239954486489296,
- -0.05024587735533714,
- 0.027903717011213303,
- -0.04746684432029724,
- 0.02051975391805172,
- 0.055158112198114395,
- 0.03444332629442215,
- 0.01066930964589119,
- -0.031615450978279114,
- 0.011975008063018322,
- -0.005342130083590746,
- 0.05376642197370529,
- -0.022125916555523872,
- -0.05472154542803764,
- 0.010362129658460617,
- -0.011263352818787098,
- -0.04977184161543846,
- -0.011303872801363468,
- -0.0007543926476500928,
- 0.014458912424743176,
- -0.06268292665481567,
- -0.02124372310936451,
- 0.05267830193042755,
- -0.061664655804634094,
- -0.10889739543199539,
- 0.07786217331886292,
- 0.04433228448033333,
- 0.0050460644997656345,
- -0.02752324938774109,
- 0.06223023682832718,
- -0.04415438696742058,
- -0.032042909413576126,
- 0.16360680758953094,
- 0.0013950520660728216,
- 0.10825866460800171,
- -0.06022607162594795,
- -0.04204170033335686,
- -0.12386471033096313,
- -0.07392279803752899,
- -0.043985988944768906,
- 0.015136436559259892,
- -0.0027469678316265345,
- -0.06203967705368996,
- -0.09157891571521759,
- -0.04812079295516014,
- -0.03503365442156792,
- 0.013120033778250217,
- 0.01231951080262661,
- -0.039792463183403015,
- 0.024417700245976448,
- -0.022701943293213844,
- 0.006646796595305204,
- -0.034108784049749374,
- 0.01612253673374653,
- 0.05763627216219902,
- -0.028169075027108192,
- 0.03791957348585129,
- -0.06412460654973984,
- -0.11058902740478516,
- 0.0152751374989748,
- -7.800193333604898e-33,
- 0.008748138323426247,
- 0.004750830586999655,
- -0.024131400510668755,
- 0.012086937204003334,
- -0.03005068749189377,
- 0.013581810519099236,
- -0.024181095883250237,
- 0.05477983504533768,
- -0.11028741300106049,
- 0.009519524872303009,
- 0.03824348375201225,
- 0.006330135744065046,
- -0.05551138147711754,
- -0.016160205006599426,
- 0.03799218311905861,
- 0.033311087638139725,
- -0.021721621975302696,
- 0.12808574736118317,
- -0.05740167945623398,
- -0.041070353239774704,
- -0.08542444556951523,
- 0.13119645416736603,
- -0.022027742117643356,
- 0.037462279200553894,
- -0.004968814551830292,
- -0.020825987681746483,
- -0.05439529940485954,
- -0.020350834354758263,
- 0.0143068116158247,
- 0.01396846305578947,
- 0.009045332670211792,
- 0.016614457592368126,
- -0.049226224422454834,
- 0.01927172765135765,
- 0.004583654925227165,
- 0.006441668141633272,
- 0.041471920907497406,
- -0.025277892127633095,
- -0.032158054411411285,
- -0.014715032652020454,
- 0.014316380023956299,
- 0.003810678841546178,
- 0.00769486790522933,
- -0.01626722514629364,
- 0.061673667281866074,
- 0.05670544505119324,
- 0.011733041144907475,
- 0.05612513795495033,
- 0.016383202746510506,
- 0.00673102168366313,
- -0.02433127909898758,
- -0.022539235651493073,
- 0.003725216258317232,
- -0.005744024645537138,
- 0.0435960628092289,
- -0.005389286205172539,
- -0.043869055807590485,
- 0.041093610227108,
- -0.02811167575418949,
- -0.00783133041113615,
- 0.05565698817372322,
- -0.056518275290727615,
- -0.06745246052742004,
- 0.05175920948386192,
- -0.0046094683930277824,
- 0.006820515729486942,
- 0.014476878568530083,
- 0.021389273926615715,
- 0.06338264793157578,
- 0.03338966891169548,
- -0.03632183372974396,
- 0.02867143414914608,
- 0.08648223429918289,
- 0.08709145337343216,
- -0.0007997479406185448,
- 0.01209326647222042,
- 0.031791578978300095,
- 0.07160723954439163,
- -0.10261078923940659,
- 0.040738336741924286,
- -0.08193624764680862,
- 0.02212815172970295,
- -0.11588896811008453,
- -0.03736402466893196,
- 0.016173334792256355,
- 0.05147985741496086,
- 0.004989238455891609,
- -0.13122454285621643,
- -0.013379578478634357,
- -0.05141586437821388,
- -0.0242956280708313,
- 0.04652373492717743,
- -0.09862447530031204,
- 0.08915817737579346,
- -0.10978525131940842,
- 3.1440767403871254e-33,
- -0.028581472113728523,
- 0.051503490656614304,
- -0.03773818910121918,
- 0.06262582540512085,
- 0.03159017860889435,
- -0.07405821979045868,
- 0.018241001293063164,
- 0.04413391649723053,
- 0.04861032962799072,
- -0.018279101699590683,
- -0.06924491375684738,
- -0.0490005761384964,
- -0.07510785013437271,
- 0.058585382997989655,
- 0.0484280101954937,
- -0.054845359176397324,
- 0.09610779583454132,
- -0.05426085367798805,
- -0.08293602615594864,
- 0.044283606112003326,
- -0.04565684124827385,
- -0.0659933015704155,
- 0.0003020712756551802,
- -0.02477487549185753,
- -0.057208940386772156,
- 0.04089449718594551,
- 0.0836464986205101,
- -0.0016620224341750145,
- -0.08081261068582535,
- -0.058232445269823074,
- 0.017536239698529243,
- -0.003870478132739663,
- -0.027920348569750786,
- -0.02929437719285488,
- -0.014608168043196201,
- 0.02336767129600048,
- 0.1340039074420929,
- -0.017285088077187538,
- -0.043062977492809296,
- 0.057253606617450714,
- 0.08316103368997574,
- -0.006305355578660965,
- -0.013170872814953327,
- 0.08522141724824905,
- 0.001439226558431983,
- 0.012228199280798435,
- 0.07411805540323257,
- 0.03060338832437992,
- 0.0860649049282074,
- -0.036150671541690826,
- -0.05127943307161331,
- -0.0464952252805233,
- -0.017713312059640884,
- -0.03053944930434227,
- -0.04055100306868553,
- -0.0029959441162645817,
- -0.012657943181693554,
- -0.06652973592281342,
- -0.03341572359204292,
- -0.032890647649765015,
- 0.0033710759598761797,
- -0.007584557868540287,
- -0.059149663895368576,
- 0.09424348920583725,
- 0.0011430587619543076,
- -0.035346150398254395,
- -0.10553482919931412,
- -0.07501666992902756,
- 0.030038142576813698,
- 0.032779231667518616,
- -0.03557731211185455,
- -0.01521086785942316,
- -0.016543073579669,
- -0.07169852405786514,
- -0.04957389459013939,
- -0.09653590619564056,
- -0.06155478209257126,
- -0.030861761420965195,
- -0.004953868221491575,
- -0.10611578822135925,
- -0.040832169353961945,
- -0.02159901335835457,
- -0.0547628253698349,
- -0.029117077589035034,
- 0.0160580612719059,
- -0.1187017485499382,
- 0.0772336944937706,
- 0.08174140751361847,
- -0.022176163271069527,
- 0.03740276023745537,
- 0.003422890091314912,
- -0.03154780715703964,
- 0.0062143271788954735,
- 0.04465002566576004,
- -0.09287843108177185,
- -1.6304010586054574e-8,
- -0.0028042790945619345,
- 0.06266249716281891,
- -0.0456065759062767,
- 0.030490349978208542,
- 0.06038858741521835,
- 0.04370441287755966,
- 0.028060929849743843,
- -0.015809593722224236,
- -0.024320080876350403,
- 0.056709256023168564,
- -0.01965581439435482,
- -0.06873465329408646,
- -0.01472832728177309,
- 0.05335068702697754,
- 0.07186565548181534,
- -0.030852455645799637,
- 0.014171631075441837,
- -0.024294214323163033,
- -0.03648388385772705,
- 0.05588281527161598,
- -0.0313100591301918,
- -0.0040361820720136166,
- -0.04557067155838013,
- 0.0570160411298275,
- 0.019745858386158943,
- -0.017822284251451492,
- 0.04460514336824417,
- 0.05004282668232918,
- 0.05171611160039902,
- 0.014096050523221493,
- 0.0002975731622427702,
- 0.10853172838687897,
- 0.024313440546393394,
- -0.05548625439405441,
- -0.059033073484897614,
- -0.050023727118968964,
- 0.03544410690665245,
- -0.03126678243279457,
- 0.11036299914121628,
- -0.005076611880213022,
- 0.004414875991642475,
- -0.001832606503739953,
- 0.015603373758494854,
- 0.05351340025663376,
- 0.008420998230576515,
- 0.0568859800696373,
- 0.0015331021277233958,
- 0.048338960856199265,
- 0.021992316469550133,
- -0.04805925115942955,
- -0.052793409675359726,
- 0.06247561797499657,
- 0.03373738378286362,
- 0.07827851176261902,
- 0.0791078433394432,
- 0.037548162043094635,
- 0.013033514842391014,
- -0.0028560045175254345,
- 0.02263817749917507,
- -0.03935740888118744,
- 0.07777213305234909,
- 0.022137632593512535,
- 0.07169804722070694,
- 0.03950727358460426
- ]
- },
- {
- "keyword": "mentions",
- "type": "references",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.09984555095434189,
- 0.013509685173630714,
- -0.0482819527387619,
- -0.041878171265125275,
- 0.04513280838727951,
- 0.02722327969968319,
- 0.16648662090301514,
- 0.09477301687002182,
- -0.03228621184825897,
- -0.04325525835156441,
- -0.05286777392029762,
- -0.06550208479166031,
- 0.04734344780445099,
- 0.06081624701619148,
- 0.024326790124177933,
- -0.001794530195184052,
- 0.00611121766269207,
- -0.04760349541902542,
- 0.02686500921845436,
- -0.0690777376294136,
- 0.002666554879397154,
- 0.01026253029704094,
- 0.07452057301998138,
- -0.0007050995482131839,
- -0.03222987800836563,
- -0.00903327390551567,
- -0.04848643019795418,
- -0.0046167983673512936,
- 0.008540768176317215,
- -0.06178527697920799,
- -0.0662875548005104,
- 0.07900051772594452,
- -0.0025494834408164024,
- 0.01665850356221199,
- -0.08442430943250656,
- 0.025064654648303986,
- -0.0545073077082634,
- -0.027878178283572197,
- -0.005107962992042303,
- -0.06348322331905365,
- -0.020671019330620766,
- 0.04832693189382553,
- 0.015415357425808907,
- 0.051479823887348175,
- -0.03499023616313934,
- 0.02523091807961464,
- 0.06428620219230652,
- 0.0341014564037323,
- -0.012069711461663246,
- 0.02558533474802971,
- -0.03774888068437576,
- 0.010225602425634861,
- 0.036128345876932144,
- 0.056285399943590164,
- 0.020640088245272636,
- -0.04618564993143082,
- -0.024387545883655548,
- -0.026868212968111038,
- 0.015208004973828793,
- -0.016098473221063614,
- 0.01871565356850624,
- -0.05522751808166504,
- -0.0716693103313446,
- -0.06784822791814804,
- -0.017326634377241135,
- -0.04843081906437874,
- -0.010869581252336502,
- 0.09029139578342438,
- -0.10595231503248215,
- 0.04116501659154892,
- 0.016510404646396637,
- 0.03811775520443916,
- 0.020411962643265724,
- -0.05607970431447029,
- 0.01297198049724102,
- 0.04757340997457504,
- -0.03337317705154419,
- -0.03858133777976036,
- 0.051387861371040344,
- -0.04622901976108551,
- -0.08304699510335922,
- 0.052589356899261475,
- -0.024235155433416367,
- 0.011468635872006416,
- -0.005134609993547201,
- -0.006938249804079533,
- 0.03203544020652771,
- -0.08449815958738327,
- -0.10049641877412796,
- 0.02464374154806137,
- -0.005582993384450674,
- 0.019773973152041435,
- 0.01176407653838396,
- 0.0030233098659664392,
- -0.009321646764874458,
- 0.05257660150527954,
- 0.061499860137701035,
- -0.047827281057834625,
- -0.06755519658327103,
- 0.2276938110589981,
- 0.01335531659424305,
- 0.10501009225845337,
- 0.018336666747927666,
- -0.02420756407082081,
- -0.03915073350071907,
- -0.005925633013248444,
- -0.01557350903749466,
- 0.06359674781560898,
- 0.03560999780893326,
- -0.03923662006855011,
- 0.0300130695104599,
- 0.029673945158720016,
- -0.041427940130233765,
- 0.009946309961378574,
- 0.04202298820018768,
- -0.05428983271121979,
- 0.1730201095342636,
- 0.004261618480086327,
- 0.03333042189478874,
- -0.06603559851646423,
- -0.0061122579500079155,
- -0.01718735508620739,
- 0.0011943549616262317,
- 0.013056090101599693,
- -0.049206655472517014,
- -0.008849634788930416,
- -0.017187563702464104,
- -5.667064510127987e-33,
- 0.10397028923034668,
- -0.001325533608905971,
- -0.025541335344314575,
- -0.0017981280107051134,
- 0.06404692679643631,
- 0.03265713155269623,
- -0.05524327978491783,
- 0.028217678889632225,
- -0.052881788462400436,
- -0.018172351643443108,
- 0.0024142712354660034,
- -0.07710926234722137,
- 0.0354277528822422,
- 0.011537051759660244,
- 0.044175196439027786,
- -0.018632445484399796,
- 0.01609627716243267,
- 0.08126455545425415,
- -0.07015003263950348,
- -0.011151785962283611,
- -0.011674285866320133,
- 0.10709770023822784,
- -0.05441548302769661,
- 0.028330765664577484,
- 0.008118923753499985,
- -0.0064749098382890224,
- 0.01449646893888712,
- -0.06208793446421623,
- 0.06945528090000153,
- 0.008521096780896187,
- -0.007152891252189875,
- 0.013177407905459404,
- -0.06592016667127609,
- 0.07056783139705658,
- -0.01259333174675703,
- -0.004013972822576761,
- 0.004420896526426077,
- -0.093476302921772,
- -0.0007294020615518093,
- -0.0750621035695076,
- 0.07773928344249725,
- 0.04417306184768677,
- -0.07448167353868484,
- -0.07311412692070007,
- -0.015022077597677708,
- 0.013958405703306198,
- 0.011107644997537136,
- 0.07239380478858948,
- 0.0032188615296036005,
- 0.012424218468368053,
- 0.011568632908165455,
- 0.00865708477795124,
- -0.08401917666196823,
- -0.033283673226833344,
- -0.03873126208782196,
- -0.045130062848329544,
- -0.010535202920436859,
- -0.059831686317920685,
- 0.04938181862235069,
- 0.01670774444937706,
- 0.03157150372862816,
- 0.010956766083836555,
- 0.0018294212641194463,
- -0.034617338329553604,
- -0.024578211829066277,
- -0.041213665157556534,
- 0.022230159491300583,
- 0.021206321194767952,
- 0.03232476860284805,
- -0.03197575733065605,
- -0.08038309216499329,
- 0.08741367608308792,
- 0.15129278600215912,
- 0.04667627066373825,
- -0.0010583909461274743,
- 0.011639506556093693,
- 0.03272988274693489,
- 0.04750431329011917,
- -0.08141858875751495,
- 0.04403761401772499,
- -0.0197139885276556,
- -0.07387567311525345,
- -0.04580530896782875,
- 0.003138322150334716,
- -0.03282025828957558,
- 0.05953225865960121,
- 0.038385722786188126,
- -0.05930239334702492,
- -0.020607871934771538,
- -0.05501154065132141,
- -0.035757966339588165,
- 0.026937685906887054,
- 0.03726601600646973,
- 0.057988788932561874,
- -0.09090739488601685,
- 4.6621950010374775e-33,
- -0.024468690156936646,
- 0.03883092477917671,
- 0.0239364393055439,
- -0.011368007399141788,
- 0.056903768330812454,
- -0.06542249023914337,
- 0.0014517055824398994,
- 0.06345200538635254,
- -0.003889859654009342,
- -0.021271897479891777,
- -0.03143397346138954,
- -0.06268871575593948,
- -0.05566463991999626,
- 0.03567923977971077,
- 0.0991581603884697,
- 0.01228260900825262,
- 0.03659048676490784,
- -0.003805805230513215,
- -0.0523785725235939,
- -0.013012625277042389,
- -0.042921245098114014,
- -0.06907907128334045,
- -0.030103901401162148,
- -0.029025012627243996,
- -0.013023313134908676,
- 0.030823087319731712,
- 0.14255739748477936,
- 0.005830089561641216,
- -0.0497005321085453,
- -0.017878953367471695,
- 0.08397199958562851,
- 0.0412723533809185,
- -0.05409140884876251,
- -0.02781897783279419,
- -0.009346000850200653,
- 0.028638144955039024,
- 0.004036664497107267,
- 0.043727125972509384,
- 0.004364343360066414,
- 0.046937987208366394,
- 0.1301240175962448,
- -0.01676836609840393,
- -0.000778097368311137,
- 0.18189737200737,
- -0.05422743037343025,
- -0.03126769885420799,
- 0.03704424202442169,
- 0.013240478001534939,
- -0.005508915521204472,
- 0.05938754603266716,
- -0.05557342618703842,
- 0.008323834277689457,
- -0.03125685080885887,
- -0.028730325400829315,
- -0.0022593329194933176,
- 0.014877328649163246,
- 0.006796823814511299,
- 0.024486970156431198,
- 0.07447826117277145,
- -0.025582022964954376,
- -0.017491718754172325,
- 0.009440326131880283,
- 0.002007723320275545,
- 0.06434783339500427,
- 0.02722029946744442,
- -0.03904012218117714,
- -0.0762639045715332,
- -0.09706315398216248,
- 0.026666849851608276,
- -0.038719065487384796,
- -0.07661367952823639,
- 0.047198571264743805,
- -0.032811231911182404,
- -0.021016402170062065,
- 0.0060728853568434715,
- -0.014798694290220737,
- -0.01994120143353939,
- -0.03252849727869034,
- 0.017197109758853912,
- -0.039634235203266144,
- -0.03570761904120445,
- 0.009086908772587776,
- -0.02107691764831543,
- -0.01827024109661579,
- 0.01225867960602045,
- -0.017786182463169098,
- 0.07617052644491196,
- 0.08878596127033234,
- -0.0529666393995285,
- 0.0018798699602484703,
- -0.017000751569867134,
- -0.010222912766039371,
- 0.07409960776567459,
- -0.051447756588459015,
- -0.04867499694228172,
- -1.3239487728355925e-8,
- -0.05460439622402191,
- 0.06694448739290237,
- 0.019754789769649506,
- 0.036712221801280975,
- 0.06457986682653427,
- 0.07900958508253098,
- 0.009940125048160553,
- 0.08543772250413895,
- 0.02080679126083851,
- 0.07938039302825928,
- -0.00987518671900034,
- -0.025878263637423515,
- -0.01659715175628662,
- -0.022485826164484024,
- 0.06254827231168747,
- -0.06634160876274109,
- 0.0007696136017329991,
- 0.018041467294096947,
- -0.07855471968650818,
- -0.032630808651447296,
- -0.09167308360338211,
- 0.015547513030469418,
- 0.04613915830850601,
- 0.009586893953382969,
- -0.014066499657928944,
- -0.02469756454229355,
- 0.06375966221094131,
- 0.09248166531324387,
- 0.05872425064444542,
- 0.06962291896343231,
- -0.012432744726538658,
- 0.08542364090681076,
- 0.03297938406467438,
- -0.03363226726651192,
- -0.005819035228341818,
- -0.01725664921104908,
- -0.051576919853687286,
- -0.03621676564216614,
- 0.02365223690867424,
- -0.034112486988306046,
- 0.01826353743672371,
- -0.07905738800764084,
- -0.0008064634166657925,
- 0.00799426157027483,
- 0.03866700083017349,
- 0.009270901791751385,
- -0.029429348185658455,
- -0.14103540778160095,
- -0.032498735934495926,
- -0.06041782721877098,
- -0.043164968490600586,
- -0.014694394543766975,
- 0.0716971904039383,
- 0.07640045881271362,
- 0.0283096581697464,
- 0.09812338650226593,
- 0.004069974180310965,
- -0.01575646363198757,
- 0.041995104402303696,
- -0.043232694268226624,
- 0.1366138756275177,
- 0.029022160917520523,
- -0.03429992124438286,
- 0.05529234930872917
- ]
- },
- {
- "keyword": "points to",
- "type": "references",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.06661779433488846,
- 0.005682224873453379,
- -0.02724696509540081,
- 0.025995023548603058,
- 0.012012993916869164,
- -0.009667539037764072,
- 0.10456020385026932,
- 0.020157666876912117,
- -0.007730933837592602,
- 0.011038955301046371,
- 0.04567719250917435,
- -0.027188539505004883,
- 0.033841077238321304,
- 0.06145566701889038,
- 0.01777745597064495,
- 0.02771989442408085,
- 0.07683718949556351,
- -0.03398384526371956,
- -0.07961210608482361,
- -0.010441926307976246,
- -0.11936143040657043,
- 0.11785061657428741,
- -0.02247968129813671,
- 0.05630635470151901,
- 0.02615017257630825,
- 0.04627379775047302,
- -0.025232382118701935,
- 0.04115253686904907,
- -0.04873964935541153,
- -0.031144268810749054,
- -0.02654053270816803,
- -0.009069913066923618,
- -0.08350144326686859,
- 0.0473652109503746,
- -0.021534204483032227,
- 0.006684947293251753,
- 0.10058111697435379,
- 0.018482578918337822,
- 0.014675977639853954,
- -0.013850047253072262,
- 0.033489830791950226,
- -0.04521200805902481,
- 0.01505944225937128,
- 0.022950807586312294,
- 0.04039718955755234,
- 0.001527171116322279,
- -0.026896577328443527,
- -0.03405013307929039,
- 0.003373462939634919,
- 0.014745038002729416,
- 0.016394563019275665,
- 0.0321400985121727,
- -0.025256769731640816,
- -0.11437629163265228,
- -0.030532795935869217,
- -0.05624006688594818,
- -0.061464618891477585,
- -0.03600345179438591,
- 0.042507003992795944,
- -0.01846250332891941,
- 0.09205787628889084,
- 0.007303948048502207,
- -0.0618579238653183,
- 0.007410378195345402,
- 0.016748493537306786,
- -0.042639486491680145,
- -0.002763334196060896,
- -0.004538109991699457,
- -0.09784595668315887,
- 0.016650481149554253,
- -0.03362726420164108,
- 0.05029201880097389,
- 0.03299019858241081,
- 0.059998054057359695,
- 0.028889141976833344,
- 0.053593967109918594,
- 0.025779930874705315,
- -0.1104145422577858,
- -0.008056169375777245,
- -0.11629285663366318,
- 0.015199498273432255,
- 0.05599052459001541,
- -0.04212836176156998,
- 0.014920588582754135,
- -0.10341957956552505,
- -0.05469988286495209,
- -0.007662776857614517,
- -0.1443338543176651,
- 0.013395107351243496,
- 0.07691247761249542,
- -0.028408970683813095,
- 0.05193383991718292,
- 0.03394199162721634,
- 0.0314762108027935,
- -0.025385573506355286,
- 0.05323513224720955,
- 0.008518978953361511,
- 0.0024910971987992525,
- -0.0407223105430603,
- 0.18504120409488678,
- 0.014586380682885647,
- 0.057054150849580765,
- -0.012134991586208344,
- -0.02185961790382862,
- -0.0162971094250679,
- -0.03037266433238983,
- -0.06246813014149666,
- 0.03981288895010948,
- -0.023866137489676476,
- -0.10900141298770905,
- -0.01795385591685772,
- -0.03344477340579033,
- 0.022782539948821068,
- 0.025039035826921463,
- 0.02483420819044113,
- -0.01481608022004366,
- -0.048588573932647705,
- 0.026657193899154663,
- 0.08811452239751816,
- -0.06417126953601837,
- 0.047786206007003784,
- 0.030788147822022438,
- -0.00490117073059082,
- -0.022033805027604103,
- -0.07644765824079514,
- -0.03315427899360657,
- 0.02572479285299778,
- -1.5344197040668686e-33,
- 0.05010882392525673,
- 0.03393087536096573,
- 0.06668636202812195,
- -0.00490983622148633,
- 0.015394014306366444,
- 0.02880115620791912,
- -0.00495676975697279,
- 0.04632590338587761,
- -0.0123325539752841,
- 0.052415668964385986,
- -0.014638111926615238,
- -0.16186432540416718,
- -0.11693408340215683,
- -0.032428987324237823,
- 0.0911896750330925,
- -0.014785907231271267,
- -0.014720934443175793,
- 0.06570151448249817,
- -0.05583251640200615,
- -0.011288108304142952,
- 0.05066833272576332,
- 0.034427396953105927,
- -0.037022557109594345,
- -0.017680415883660316,
- -0.0036385965067893267,
- 0.008031794801354408,
- 0.027911953628063202,
- -0.08472403883934021,
- 0.025377001613378525,
- 0.005660119466483593,
- -0.02936355397105217,
- 0.03309241682291031,
- -0.04379348084330559,
- 0.009562639519572258,
- -0.06209569424390793,
- -0.016939707100391388,
- 0.03185633197426796,
- -0.041108813136816025,
- -0.024582037702202797,
- -0.011998796835541725,
- 0.0548727884888649,
- -0.03282787650823593,
- -0.06978631019592285,
- 0.026005815714597702,
- 0.027139103040099144,
- 0.04615340009331703,
- 0.05953863263130188,
- 0.0036948067136108875,
- 0.09950229525566101,
- 0.01760851964354515,
- -0.07738876342773438,
- -0.0058447555638849735,
- -0.054312460124492645,
- -0.01063595898449421,
- -0.06242989003658295,
- -0.04406815394759178,
- 0.048398736864328384,
- -0.044601041823625565,
- 0.0008998705889098346,
- 0.00980295054614544,
- 0.029055004939436913,
- -0.0031975277233868837,
- -0.08723626285791397,
- -0.0008924251305870712,
- -0.12342909723520279,
- 0.032348427921533585,
- 0.04488148167729378,
- 0.0005856595234945416,
- 0.06435071676969528,
- 0.06045135483145714,
- -0.061012640595436096,
- 0.01613207720220089,
- 0.05179829150438309,
- 0.008298986591398716,
- 0.028379615396261215,
- -0.04102136194705963,
- 0.017817936837673187,
- -0.02088761143386364,
- 0.0034819957800209522,
- -0.010647565126419067,
- -0.022853711619973183,
- -0.061839278787374496,
- -0.020335962995886803,
- -0.0022116017062216997,
- 0.018181269988417625,
- -0.04136953130364418,
- 0.001009817817248404,
- -0.13686591386795044,
- -0.09384217858314514,
- -0.0281891580671072,
- 0.012093588709831238,
- 0.024419425055384636,
- 0.003085971577093005,
- -0.015595084987580776,
- -0.11576955765485764,
- -1.0816042650265016e-34,
- -0.06749531626701355,
- 0.02396954596042633,
- -0.037771616131067276,
- 0.07904314994812012,
- 0.0441468209028244,
- -0.057094912976026535,
- -0.00988802034407854,
- 0.0275262501090765,
- 0.020261500030755997,
- 0.0179167278110981,
- -0.022817647084593773,
- 0.011396612040698528,
- 0.01616988517343998,
- -0.02582992985844612,
- 0.01997319422662258,
- 0.03073297068476677,
- 0.06437147408723831,
- -0.056396882981061935,
- -0.023487579077482224,
- 0.000252651545451954,
- -0.11861424148082733,
- 0.022483494132757187,
- -0.03897051885724068,
- -0.03228520601987839,
- -0.06453163176774979,
- 0.06995468586683273,
- 0.0360538549721241,
- 0.029430147260427475,
- -0.04267767071723938,
- 0.052512381225824356,
- 0.04779351130127907,
- 0.013977648690342903,
- -0.11586298048496246,
- -0.08262141048908234,
- 0.02568906918168068,
- 0.1198025718331337,
- 0.08500217646360397,
- 0.08289192616939545,
- 0.04048154875636101,
- 0.09517762064933777,
- 0.009859391488134861,
- 0.026513122022151947,
- 0.03288067877292633,
- 0.03408346325159073,
- 0.0469619482755661,
- 0.008730239234864712,
- 0.04397881403565407,
- -0.010594773106276989,
- 0.05285431072115898,
- 0.07647497951984406,
- -0.09845292568206787,
- 0.037444230169057846,
- -0.005462816916406155,
- -0.010389636270701885,
- -0.03280990943312645,
- -0.04995161294937134,
- 0.032431576400995255,
- -0.004000949673354626,
- 0.05828158184885979,
- -0.05133232846856117,
- -0.05929683893918991,
- 0.04454612731933594,
- -0.02454121597111225,
- -0.009035849012434483,
- 0.016855748370289803,
- 0.08085119724273682,
- -0.056551992893218994,
- 0.013246431946754456,
- 0.03359420597553253,
- -0.0574655756354332,
- 0.03319209814071655,
- -0.01812553219497204,
- 0.013368737883865833,
- 0.09898801892995834,
- 0.027812540531158447,
- -0.036299217492341995,
- 0.04832511767745018,
- 0.003717286977916956,
- -0.020346693694591522,
- -0.11301568150520325,
- -0.012667126022279263,
- -0.07669062167406082,
- -0.08541592210531235,
- 0.08871772885322571,
- 0.03277427703142166,
- -0.004983002319931984,
- 0.045082997530698776,
- 0.0451347716152668,
- 0.012535633519291878,
- -0.008400067687034607,
- -0.1033177450299263,
- 0.0731738731265068,
- 0.02247975766658783,
- -0.017486825585365295,
- -0.011175631545484066,
- -1.6564408511499096e-8,
- -0.07007167488336563,
- 0.11177477240562439,
- -0.010510046035051346,
- 0.01285826787352562,
- -0.028373118489980698,
- 0.03580082580447197,
- -0.0038595048245042562,
- 0.030572157353162766,
- 0.06477198004722595,
- 0.005047682207077742,
- 0.029300760477781296,
- 0.051872458308935165,
- -0.0038745617493987083,
- 0.04879932478070259,
- 0.11378876864910126,
- 0.011947599239647388,
- 0.01057946402579546,
- 0.008931758813560009,
- -0.052308205515146255,
- 0.0030215440783649683,
- -0.05026962235569954,
- -0.0066805873066186905,
- 0.04513557255268097,
- -0.0018033805536106229,
- 0.03777313604950905,
- -0.010971163399517536,
- 0.013492632657289505,
- 0.14950940012931824,
- 0.10783478617668152,
- 0.03689437732100487,
- 0.036397017538547516,
- -0.03638136759400368,
- -0.00983528420329094,
- -0.0008564695017412305,
- 0.051653165370225906,
- -0.03205675631761551,
- 0.0005666015786118805,
- -0.08493394404649734,
- 0.00474984897300601,
- -0.07047852128744125,
- 0.006525720469653606,
- -0.06315755844116211,
- 0.03721730411052704,
- -0.024995405226945877,
- -0.02619917318224907,
- -0.016427824273705482,
- 0.023647043853998184,
- 0.005938518326729536,
- -0.02367222122848034,
- -0.046785350888967514,
- 0.018199998885393143,
- -0.02176806330680847,
- 0.011676035821437836,
- 0.013518836349248886,
- 0.03516748920083046,
- 0.01585891842842102,
- -0.023035064339637756,
- 0.030651012435555458,
- -0.008158354088664055,
- 0.10817494243383408,
- 0.16286586225032806,
- -0.0060256365686655045,
- 0.017437707632780075,
- 0.05095010995864868
- ]
- },
- {
- "keyword": "citation",
- "type": "references",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.03611680865287781,
- 0.09940963238477707,
- -0.022878922522068024,
- 0.04920447617769241,
- 0.033351022750139236,
- 0.025273960083723068,
- 0.08018689602613449,
- 0.05188183858990669,
- 0.040890034288167953,
- 0.029141457751393318,
- 0.020618708804249763,
- 0.06868451088666916,
- -0.014733295887708664,
- -0.022525625303387642,
- -0.03753676638007164,
- 0.05366663262248039,
- 0.018271438777446747,
- -0.007465580943971872,
- -0.007410459686070681,
- 0.011465050280094147,
- 0.004688615910708904,
- 0.08322310447692871,
- 0.022838624194264412,
- 0.019094005227088928,
- 0.03757288306951523,
- 0.03672376647591591,
- -0.11058326065540314,
- 0.007791830692440271,
- 0.014013064093887806,
- 0.022742461413145065,
- -0.012472194619476795,
- 0.1284857541322708,
- 0.08882507681846619,
- -0.03577471151947975,
- -0.015643542632460594,
- 0.040425240993499756,
- 0.04409842938184738,
- 0.09333698451519012,
- 0.09109482169151306,
- 0.04543479159474373,
- 0.01657705567777157,
- -0.04284951835870743,
- 0.006782587617635727,
- -0.022221142426133156,
- -0.048518843948841095,
- 0.01645071431994438,
- -0.0064632040448486805,
- -0.0017687245272099972,
- -0.05821499601006508,
- 0.10079053044319153,
- -0.06622958183288574,
- -0.004335777368396521,
- -0.03060816414654255,
- -0.07520746439695358,
- 0.041644781827926636,
- 0.015502638183534145,
- 0.02801535278558731,
- 0.02110275998711586,
- 0.012468734756112099,
- -0.05947765335440636,
- 0.050253674387931824,
- -0.010779790580272675,
- -0.06091095134615898,
- 0.04595475271344185,
- 0.04738214612007141,
- 0.012336404994130135,
- 0.04361980780959129,
- -0.0415058396756649,
- -0.1260857731103897,
- -0.021175764501094818,
- 0.0452440120279789,
- -0.009862902574241161,
- -0.06476637721061707,
- -0.0026255680713802576,
- -0.01719691790640354,
- -0.019505253061652184,
- 0.045386798679828644,
- 0.05058123543858528,
- 0.07238583266735077,
- -0.06540783494710922,
- -0.04508564621210098,
- -0.06495654582977295,
- 0.010386155918240547,
- -0.038942690938711166,
- -0.006845408584922552,
- 0.016048884019255638,
- 0.008328614756464958,
- 0.02808018960058689,
- -0.013394813053309917,
- 0.057880301028490067,
- 0.017200583592057228,
- -0.03947499766945839,
- 0.09107862412929535,
- -0.09225691854953766,
- 0.011991397477686405,
- 0.00284116854891181,
- -0.06885511428117752,
- -0.05346323549747467,
- 0.05402129516005516,
- 0.2183181792497635,
- 0.0019180544186383486,
- 0.08885669708251953,
- -0.043915726244449615,
- -0.02638719417154789,
- 0.0010741549776867032,
- -0.044845353811979294,
- -0.01898450404405594,
- 0.005421722773462534,
- 0.011821536347270012,
- 0.04211321473121643,
- -0.011118286289274693,
- -0.028533563017845154,
- 0.06385469436645508,
- 0.018194135278463364,
- 0.00219952454790473,
- -0.024808956310153008,
- -0.024567073211073875,
- -0.048392925411462784,
- 0.023757215589284897,
- 0.008968641050159931,
- -0.019294483587145805,
- 0.02142660692334175,
- -0.0732322633266449,
- 0.036910682916641235,
- -0.11332500725984573,
- -0.12178889662027359,
- -0.0473877489566803,
- -5.5018664115351766e-33,
- 0.019054915755987167,
- -0.009476696141064167,
- 0.03178655728697777,
- 0.01015648152679205,
- 0.007265460677444935,
- -0.041612621396780014,
- -0.04282383620738983,
- -0.07037120312452316,
- -0.03912622109055519,
- -0.09196113795042038,
- -0.0033924723975360394,
- 0.03300759568810463,
- 0.017929429188370705,
- -0.022566886618733406,
- -0.013591607101261616,
- 0.018379168584942818,
- -0.04720696434378624,
- 0.14884082973003387,
- 0.0029988400638103485,
- -0.07169513404369354,
- -0.017978228628635406,
- -0.05170294642448425,
- -0.00869639590382576,
- 0.05511694774031639,
- 0.0035752139519900084,
- -0.06235374137759209,
- -0.02498508058488369,
- -0.041458453983068466,
- -0.08098092675209045,
- 0.02571476250886917,
- -0.001438540406525135,
- 0.01031920500099659,
- 0.008035831153392792,
- -0.08200950175523758,
- 0.06776318699121475,
- 0.03235427290201187,
- 0.03212643787264824,
- 0.044974006712436676,
- -0.014277596957981586,
- -0.03807767108082771,
- -0.06438995152711868,
- 0.0145167987793684,
- -0.022422442212700844,
- 0.05265592038631439,
- 0.03825010731816292,
- 0.02522777020931244,
- 0.040607474744319916,
- 0.001801813836209476,
- 0.035328853875398636,
- 0.03161897882819176,
- -0.015201430767774582,
- 0.011100903153419495,
- -0.047205664217472076,
- -0.027485905215144157,
- 0.0035603251308202744,
- 0.04914143308997154,
- -0.051678236573934555,
- 0.03444499149918556,
- -0.0342542827129364,
- 0.012446328997612,
- -0.011966271325945854,
- 0.12069718539714813,
- -0.12487006187438965,
- 0.0469079315662384,
- 0.07538607716560364,
- 0.08298671990633011,
- -0.012455056421458721,
- -0.023969918489456177,
- 0.012879687361419201,
- 0.08262110501527786,
- 0.10201258957386017,
- 0.0017106498125940561,
- -0.07569463551044464,
- -0.008676906116306782,
- -0.048756297677755356,
- -0.04078279063105583,
- -0.04961639642715454,
- 0.019627070054411888,
- -0.025601934641599655,
- -0.020331036299467087,
- -0.07210521399974823,
- 0.017158368602395058,
- -0.034332551062107086,
- -0.05055289715528488,
- 0.02970123663544655,
- 0.03246670588850975,
- 0.001903441036120057,
- -0.04429754987359047,
- -0.030233707278966904,
- -0.02312726154923439,
- -0.0015572751872241497,
- -0.011853928677737713,
- -0.05198746919631958,
- -0.00923693273216486,
- 0.01312918122857809,
- 3.79331218857986e-33,
- -0.06589712202548981,
- -0.0037205044645816088,
- 0.10409004986286163,
- 0.07447314262390137,
- 0.023511601611971855,
- 0.012312358245253563,
- -0.02284432202577591,
- -0.03778722509741783,
- -0.010842179879546165,
- 0.004121436737477779,
- 0.03752071410417557,
- -0.067521832883358,
- 0.050210509449243546,
- 0.08071873337030411,
- 0.05709259212017059,
- -0.037846870720386505,
- 0.05748418718576431,
- -0.013804524205625057,
- -0.11149866878986359,
- 0.006087148562073708,
- 0.07354767620563507,
- -0.12968900799751282,
- -0.01922399178147316,
- 0.007745254319161177,
- -0.055933550000190735,
- 0.0004050804127473384,
- 0.02323230542242527,
- -0.11941087990999222,
- -0.05610547214746475,
- -0.035301174968481064,
- 0.03417731449007988,
- 0.035763323307037354,
- -0.1262926161289215,
- 0.019638920202851295,
- 0.003192299045622349,
- 0.06787104904651642,
- 0.00841413252055645,
- 0.005260073579847813,
- -0.048923224210739136,
- -0.08350203186273575,
- 0.06340979039669037,
- 0.05571964010596275,
- 0.01486018393188715,
- -0.01842968352138996,
- 0.00847348477691412,
- -0.02379334345459938,
- 0.04790715128183365,
- 0.044098641723394394,
- 0.05478495731949806,
- -0.003688508179038763,
- -0.12709687650203705,
- 0.000052013641834491864,
- 0.03338043391704559,
- -0.004372239578515291,
- -0.06080406531691551,
- -0.04301769658923149,
- 0.06309206783771515,
- 0.016195638105273247,
- 0.00512334331870079,
- -0.04578588530421257,
- 0.024525582790374756,
- 0.09446446597576141,
- -0.0741157978773117,
- 0.06235986948013306,
- -0.04550108313560486,
- -0.10191178321838379,
- -0.05644218251109123,
- 0.01507987454533577,
- 0.01431000605225563,
- -0.009576904587447643,
- 0.04175163432955742,
- 0.003930490463972092,
- -0.013388344086706638,
- -0.010644394904375076,
- -0.023097725585103035,
- 0.0035649510100483894,
- -0.0012223756639286876,
- 0.08349205553531647,
- -0.07234799116849899,
- -0.0014478039229288697,
- -0.000529622018802911,
- 0.03910693898797035,
- 0.004081565886735916,
- 0.07373937964439392,
- 0.015413641929626465,
- -0.05603034794330597,
- 0.026295863091945648,
- -0.07272675633430481,
- -0.1001187190413475,
- 0.03267883509397507,
- -0.043896373361349106,
- -0.05738835409283638,
- -0.09983085840940475,
- 0.0499860942363739,
- -0.049620091915130615,
- -1.3858329594995666e-8,
- -0.01738402433693409,
- 0.07640339434146881,
- 0.012312334962189198,
- 0.08736387640237808,
- 0.052170801907777786,
- 0.03476102650165558,
- 0.04700328782200813,
- -0.029436811804771423,
- 0.007853894494473934,
- 0.03659728169441223,
- -0.01644892618060112,
- -0.013781729154288769,
- -0.0029998463578522205,
- 0.060046352446079254,
- 0.002479174640029669,
- -0.041058249771595,
- 0.020927073433995247,
- -0.08231429755687714,
- 0.017288977280259132,
- 0.016861991956830025,
- -0.009117026813328266,
- -0.016163256019353867,
- 0.03041437268257141,
- 0.009223381988704205,
- 0.05323405563831329,
- 0.013600639998912811,
- -0.015721842646598816,
- -0.015248584561049938,
- 0.011735938489437103,
- 0.0014790756395086646,
- 0.02479521930217743,
- 0.10749422013759613,
- -0.062427327036857605,
- -0.08264394849538803,
- 0.08374970406293869,
- -0.07493943721055984,
- 0.028076443821191788,
- -0.0032443003728985786,
- 0.014884766191244125,
- -0.0034197731874883175,
- -0.0407535694539547,
- 0.0087890001013875,
- -0.01753929816186428,
- 0.01370133925229311,
- -0.03450910374522209,
- -0.027080995962023735,
- -0.017636613920331,
- 0.05287638306617737,
- -0.02402809076011181,
- 0.007405989803373814,
- 0.03145074471831322,
- -0.04758370667695999,
- 0.07858764380216599,
- -0.019267382100224495,
- 0.01875050738453865,
- 0.014670658856630325,
- 0.03510843962430954,
- -0.038477811962366104,
- -0.039226580411195755,
- -0.03112056851387024,
- 0.19766734540462494,
- 0.03346063569188118,
- 0.14275886118412018,
- -0.017122305929660797
- ]
- },
- {
- "keyword": "reference",
- "type": "references",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.01152399368584156,
- 0.07383186370134354,
- -0.03462719917297363,
- 0.10436702519655228,
- -0.029875600710511208,
- -0.06174745410680771,
- 0.14918848872184753,
- 0.07595954835414886,
- 0.025211425498127937,
- 0.0006400183774530888,
- 0.011864803731441498,
- 0.02176353894174099,
- 0.013493763282895088,
- -0.05400591343641281,
- -0.10553383082151413,
- 0.03141086921095848,
- 0.04562681168317795,
- -0.01714535616338253,
- -0.03037400357425213,
- 0.023959793150424957,
- -0.0418938472867012,
- 0.0609615333378315,
- 0.007432402577251196,
- 0.017878659069538116,
- -0.012028768658638,
- 0.02198038622736931,
- -0.06380603462457657,
- 0.06608398258686066,
- 0.05690229684114456,
- -0.039659690111875534,
- -0.06847409904003143,
- 0.11767344921827316,
- -0.01580372080206871,
- -0.0026543792337179184,
- -0.0335540808737278,
- 0.04347456991672516,
- 0.022740839049220085,
- 0.07238341122865677,
- 0.0021381310652941465,
- -0.02525869756937027,
- -0.0012123127235099673,
- -0.037135690450668335,
- -0.005178309045732021,
- -0.042981646955013275,
- -0.027179356664419174,
- 0.05057423189282417,
- 0.00899997167289257,
- -0.018526162952184677,
- 0.04010508581995964,
- 0.06068842113018036,
- -0.13471439480781555,
- 0.021987643092870712,
- -0.006376638077199459,
- -0.03406549245119095,
- -0.015275169163942337,
- 0.029034994542598724,
- -0.054187923669815063,
- -0.06183229386806488,
- 0.024107271805405617,
- 0.008834689855575562,
- 0.11819883435964584,
- 0.018815619871020317,
- -0.04773405194282532,
- -0.019125303253531456,
- -0.036993835121393204,
- -0.005441940389573574,
- 0.024434184655547142,
- -0.012849913910031319,
- -0.14879001677036285,
- 0.005864635109901428,
- -0.09170854836702347,
- 0.04112565889954567,
- -0.030581848695874214,
- 0.059808745980262756,
- 0.045615304261446,
- -0.018392466008663177,
- 0.05608299374580383,
- -0.045120641589164734,
- 0.021270500496029854,
- -0.03439953178167343,
- -0.0774504691362381,
- -0.038337647914886475,
- -0.030153414234519005,
- 0.017514759674668312,
- -0.028031570836901665,
- 0.03694147616624832,
- 0.04898146539926529,
- -0.07338376343250275,
- -0.04785553365945816,
- -0.0007628544117324054,
- -0.03501896932721138,
- -0.005535705015063286,
- 0.06988850980997086,
- -0.009042378515005112,
- 0.05529876425862312,
- -0.03982190415263176,
- -0.0013386757345870137,
- -0.012160358019173145,
- -0.08636347949504852,
- 0.20456641912460327,
- -0.029063966125249863,
- 0.07764230668544769,
- -0.0697183683514595,
- -0.0012283115647733212,
- -0.03715715557336807,
- -0.012559446506202221,
- -0.01608406752347946,
- 0.04504872113466263,
- 0.02716764621436596,
- -0.06519488990306854,
- -0.12709271907806396,
- -0.03137720376253128,
- -0.012736279517412186,
- 0.06406455487012863,
- -0.009786873124539852,
- -0.06024863198399544,
- 0.05059361830353737,
- -0.031424786895513535,
- -0.050696201622486115,
- -0.04644560441374779,
- 0.02896290272474289,
- 0.04858165979385376,
- -0.06195184588432312,
- 0.037851329892873764,
- -0.05172507464885712,
- -0.10836401581764221,
- -0.010640566237270832,
- -2.4023539476846703e-33,
- 0.0337795689702034,
- -0.06025971099734306,
- -0.022952282801270485,
- 0.07749183475971222,
- 0.045927293598651886,
- -0.030362633988261223,
- 0.023087037727236748,
- 0.007475013844668865,
- -0.0387885682284832,
- 0.03264668211340904,
- 0.0051988400518894196,
- 0.015039144083857536,
- -0.0800672248005867,
- -0.04851720854640007,
- 0.020584678277373314,
- 0.04087378457188606,
- -0.007838277146220207,
- 0.11344245821237564,
- -0.024748466908931732,
- -0.033544450998306274,
- -0.02075468935072422,
- 0.03737766295671463,
- 0.004820775240659714,
- 0.017693230882287025,
- 0.043480511754751205,
- 0.006645466201007366,
- -0.03712209686636925,
- -0.008433199487626553,
- -0.00626137712970376,
- -0.00009507925278740004,
- -0.004907066933810711,
- 0.032841868698596954,
- 0.03546670451760292,
- 0.011396127752959728,
- 0.012162321247160435,
- -0.05004538968205452,
- -0.029488861560821533,
- 0.01972566545009613,
- 0.014988015405833721,
- 0.01944003626704216,
- -0.033551476895809174,
- -0.01940268464386463,
- -0.04076678305864334,
- 0.011026705615222454,
- 0.02372625470161438,
- -0.02972615882754326,
- 0.03696339949965477,
- 0.005401921458542347,
- -0.03908809646964073,
- -0.06069944426417351,
- 0.053687695413827896,
- -0.004517060704529285,
- -0.04880707710981369,
- 0.015317641198635101,
- -0.09120040386915207,
- 0.020618708804249763,
- 0.007988241501152515,
- -0.017274241894483566,
- -0.03678235039114952,
- 0.05882077291607857,
- 0.0029303974006325006,
- 0.06178094819188118,
- -0.08082962036132812,
- 0.024559330195188522,
- 0.033788636326789856,
- 0.05735592171549797,
- 0.0077013494446873665,
- -0.041968803852796555,
- 0.057983241975307465,
- -0.04483351856470108,
- 0.04676460102200508,
- -0.00800245814025402,
- 0.046977851539850235,
- 0.04999508336186409,
- -0.012125212699174881,
- -0.046710025519132614,
- -0.001970351906493306,
- 0.05804022029042244,
- -0.07288739830255508,
- -0.01742458902299404,
- -0.0141732944175601,
- -0.008356393314898014,
- 0.0175687987357378,
- 0.01841060444712639,
- 0.017503343522548676,
- -0.007787594571709633,
- -0.018266642466187477,
- -0.1519927680492401,
- -0.026839667931199074,
- -0.04568253085017204,
- -0.03785650059580803,
- 0.018235741183161736,
- 0.020203622058033943,
- -0.022500328719615936,
- -0.06713417917490005,
- 1.750079662924068e-33,
- 0.016369890421628952,
- 0.014350258745253086,
- 0.009742776863276958,
- 0.10137316584587097,
- 0.08729924261569977,
- -0.002526060910895467,
- 0.07308204472064972,
- 0.07792730629444122,
- 0.016566280275583267,
- 0.04703739285469055,
- -0.06813887506723404,
- -0.03154050558805466,
- 0.08661749213933945,
- -0.018706925213336945,
- 0.050895802676677704,
- -0.03755675256252289,
- 0.0723285973072052,
- 0.017656492069363594,
- -0.07532192021608353,
- -0.009291638620197773,
- -0.031951360404491425,
- -0.06490124762058258,
- -0.027839509770274162,
- 0.010454503819346428,
- -0.10322819650173187,
- 0.06127973645925522,
- 0.11274910718202591,
- -0.056362003087997437,
- -0.010428065434098244,
- -0.02954687736928463,
- 0.01974470354616642,
- -0.010419868864119053,
- -0.05614915117621422,
- -0.010490071959793568,
- 0.021391624584794044,
- 0.10278039425611496,
- 0.05938997119665146,
- 0.026869500055909157,
- -0.04103386029601097,
- 0.013759361580014229,
- 0.10164490342140198,
- 0.05901522934436798,
- -0.06721083074808121,
- 0.07580976188182831,
- -0.0756140649318695,
- 0.021452855318784714,
- 0.09085147082805634,
- 0.04486354440450668,
- 0.06294433027505875,
- 0.006297234911471605,
- -0.10332106053829193,
- -0.0253402478992939,
- -0.05721135810017586,
- -0.05873703211545944,
- -0.07409051060676575,
- -0.03396505489945412,
- -0.0003693343314807862,
- 0.04490610584616661,
- 0.03812694177031517,
- -0.019524909555912018,
- -0.041451942175626755,
- 0.038647521287202835,
- -0.020304100587964058,
- 0.012763341888785362,
- 0.00976476538926363,
- -0.021967120468616486,
- -0.07065118849277496,
- -0.00640273280441761,
- 0.0596717968583107,
- -0.016810746863484383,
- 0.003002007259055972,
- 0.058196309953927994,
- -0.040603529661893845,
- 0.03939574956893921,
- 0.03603566810488701,
- -0.02807195670902729,
- -0.06443461775779724,
- 0.0839172825217247,
- -0.07596627622842789,
- -0.03123101219534874,
- -0.08244118839502335,
- -0.03266458958387375,
- -0.04870644584298134,
- 0.10280264914035797,
- 0.006425543688237667,
- 0.014962534420192242,
- 0.048336055129766464,
- -0.022925253957509995,
- -0.04338719695806503,
- 0.0027704329695552588,
- -0.07589739561080933,
- -0.04090932756662369,
- -0.008559366688132286,
- -0.00433837017044425,
- -0.01696447655558586,
- -1.4736553310967793e-8,
- 0.005856979172676802,
- 0.14122933149337769,
- 0.0456591434776783,
- 0.01412931177765131,
- 0.07656150311231613,
- 0.023514274507761,
- -0.024737335741519928,
- -0.013251197524368763,
- 0.01331411488354206,
- 0.09451532363891602,
- -0.00762543361634016,
- -0.004702407401055098,
- 0.059257108718156815,
- 0.0359930582344532,
- 0.07453054934740067,
- -0.01862369477748871,
- 0.05158539116382599,
- -0.0028557507321238518,
- -0.0008036869112402201,
- 0.06652681529521942,
- -0.04578198865056038,
- 0.026188882067799568,
- 0.05641208216547966,
- 0.026825251057744026,
- 0.09621323645114899,
- 0.01285269483923912,
- -0.0022308221086859703,
- 0.12690038979053497,
- -0.015927251428365707,
- 0.04634905233979225,
- 0.006643110420554876,
- 0.12548790872097015,
- -0.09262210875749588,
- -0.08472003787755966,
- -0.036459971219301224,
- 0.01809709146618843,
- -0.005351237487047911,
- -0.051099713891744614,
- 0.01915142871439457,
- 0.04842350259423256,
- -0.011556241661310196,
- -0.020236436277627945,
- 0.04408097267150879,
- -0.014409977942705154,
- -0.03187531232833862,
- -0.02802070789039135,
- 0.02218795195221901,
- -0.014763576909899712,
- 0.04445144906640053,
- -0.03377414494752884,
- -0.02072295732796192,
- 0.0427912138402462,
- 0.04793868958950043,
- 0.034836456179618835,
- 0.10440965741872787,
- -0.03944922983646393,
- -0.005294848699122667,
- -0.03859980031847954,
- -0.053153857588768005,
- 0.017601177096366882,
- 0.15769460797309875,
- -0.030848421156406403,
- 0.03426364064216614,
- 0.03602113202214241
- ]
- },
- {
- "keyword": "pointer",
- "type": "references",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.003934245556592941,
- 0.029582912102341652,
- 0.0019389791414141655,
- -0.03694621101021767,
- -0.08351943641901016,
- 0.023678995668888092,
- 0.17986352741718292,
- 0.07002057135105133,
- 0.040556978434324265,
- -0.015204506926238537,
- 0.02725948952138424,
- -0.015631193295121193,
- -0.006082800216972828,
- 0.026552345603704453,
- -0.014049654826521873,
- -0.01010891143232584,
- -0.07116838544607162,
- 0.0007779606967233121,
- 0.03501123934984207,
- 0.00863948930054903,
- -0.03009541891515255,
- 0.034132473170757294,
- -0.07919983565807343,
- 0.01778464950621128,
- -0.017614474520087242,
- 0.04833482950925827,
- 0.003457933897152543,
- -0.045299381017684937,
- 0.010954352095723152,
- -0.10724156349897385,
- -0.02386845462024212,
- -0.022656865417957306,
- -0.022609708830714226,
- 0.01603572815656662,
- -0.01514056883752346,
- 0.017191745340824127,
- -0.02270859107375145,
- -0.046209610998630524,
- -0.010012713260948658,
- 0.0056385258212685585,
- 0.015031872317194939,
- -0.015829402953386307,
- 0.027719462290406227,
- 0.02872621826827526,
- 0.03621283918619156,
- 0.04550979286432266,
- 0.023272696882486343,
- 0.008403412066400051,
- 0.008848712779581547,
- -0.013467173092067242,
- -0.0997404083609581,
- -0.009014773182570934,
- -0.0372229665517807,
- -0.014206042513251305,
- 0.040621720254421234,
- 0.03756937384605408,
- 0.07776612788438797,
- 0.060144536197185516,
- -0.018705472350120544,
- 0.02549263834953308,
- -0.01299883984029293,
- -0.021914955228567123,
- -0.013892618007957935,
- -0.029275808483362198,
- 0.10206788778305054,
- -0.08464425057172775,
- -0.004123612307012081,
- -0.001433810917660594,
- -0.05804795026779175,
- 0.04797346144914627,
- -0.02768932841718197,
- 0.0469023697078228,
- 0.013843382708728313,
- 0.02615823596715927,
- 0.026002364233136177,
- -0.0014323517680168152,
- -0.047912489622831345,
- -0.02958637848496437,
- 0.06564167886972427,
- -0.051663223654031754,
- 0.01562030054628849,
- -0.0009330902830697596,
- -0.025600291788578033,
- 0.020105889067053795,
- 0.04690767452120781,
- 0.011876457370817661,
- -0.04001559317111969,
- -0.0007084457320161164,
- -0.018829913809895515,
- 0.046286407858133316,
- 0.007787670474499464,
- -0.03670442849397659,
- -0.06791800260543823,
- -0.05846450477838516,
- -0.013760426081717014,
- -0.023710759356617928,
- 0.038242075592279434,
- -0.15324918925762177,
- -0.05116475000977516,
- 0.2273150384426117,
- 0.020199818536639214,
- 0.07514011114835739,
- 0.02721295692026615,
- -0.03183070570230484,
- -0.07915700972080231,
- -0.010319389402866364,
- -0.059298161417245865,
- -0.06592772901058197,
- -0.06294936686754227,
- -0.029329515993595123,
- -0.03385527804493904,
- -0.05495789647102356,
- -0.06215149536728859,
- 0.015037422068417072,
- -0.02595031075179577,
- -0.04266158863902092,
- -0.005413680803030729,
- -0.014723282307386398,
- 0.07624766230583191,
- -0.06587792187929153,
- -0.02615756168961525,
- -0.02125529944896698,
- -0.04977637529373169,
- 0.09006345272064209,
- -0.12498950213193893,
- -0.0720907673239708,
- -0.012926284223794937,
- -4.75348021890249e-33,
- -0.022648019716143608,
- 0.009305857121944427,
- -0.02655753679573536,
- -0.013335109688341618,
- -0.06454575806856155,
- -0.019742527976632118,
- -0.019701529294252396,
- 0.015033969655632973,
- -0.020579038187861443,
- -0.061438437551259995,
- 0.04089953377842903,
- -0.12998221814632416,
- 0.05552631989121437,
- 0.05937537923455238,
- 0.09844058007001877,
- -0.022804904729127884,
- 0.04222338646650314,
- 0.08946703374385834,
- -0.11157345771789551,
- -0.027620619162917137,
- 0.00610695406794548,
- 0.11692791432142258,
- -0.06076354160904884,
- -0.03217661380767822,
- -0.006803452968597412,
- -0.001368996687233448,
- -0.034405168145895004,
- -0.07178197056055069,
- -0.03951456770300865,
- -0.004265150520950556,
- -0.04244915023446083,
- 0.010559797286987305,
- -0.033906739205121994,
- -0.013285915367305279,
- 0.05008919909596443,
- 0.008499466814100742,
- -0.014715857803821564,
- -0.07315677404403687,
- 0.04279077798128128,
- -0.08408807963132858,
- 0.004312360659241676,
- 0.006544690579175949,
- -0.007424203213304281,
- -0.0005209658993408084,
- -0.014375130645930767,
- 0.053748149424791336,
- -0.029758702963590622,
- 0.005626550875604153,
- -0.027497638016939163,
- -0.0671401172876358,
- 0.03678152337670326,
- -0.017909038811922073,
- -0.07032093405723572,
- -0.0019456131849437952,
- 0.03593810647726059,
- -0.017445797100663185,
- -0.030273355543613434,
- -0.0058957659639418125,
- 0.0043122610077261925,
- 0.02415108121931553,
- 0.08833596110343933,
- 0.09118584543466568,
- -0.03072458505630493,
- 0.02208501286804676,
- -0.10354407876729965,
- 0.00002616174242575653,
- -0.0378950759768486,
- -0.029927734285593033,
- 0.15816889703273773,
- 0.04331626370549202,
- -0.04524105787277222,
- 0.0006716697826050222,
- 0.11328549683094025,
- 0.03227236866950989,
- -0.06156572327017784,
- 0.05939092859625816,
- -0.043424755334854126,
- -0.006882473826408386,
- -0.05194210261106491,
- -0.009607864543795586,
- -0.08730555325746536,
- 0.004185388330370188,
- 0.0024075449910014868,
- -0.0237174890935421,
- 0.0034063910134136677,
- -0.08831154555082321,
- 0.06043625250458717,
- -0.06310540437698364,
- -0.024390004575252533,
- 0.04695047810673714,
- 0.03339475393295288,
- 0.02315196394920349,
- -0.02983243204653263,
- 0.017054608091711998,
- -0.08225588500499725,
- 2.4671168905882627e-33,
- -0.003191524650901556,
- 0.019150180742144585,
- 0.012947122566401958,
- 0.04201190546154976,
- -0.09020727127790451,
- -0.039512358605861664,
- 0.015184838324785233,
- -0.09452276676893234,
- -0.002010772004723549,
- 0.03871879354119301,
- -0.06635906547307968,
- 0.008316787891089916,
- 0.06563811004161835,
- 0.011569422669708729,
- 0.13397885859012604,
- 0.03381172940135002,
- -0.0263495035469532,
- 0.014980376698076725,
- -0.033420078456401825,
- 0.01133794616907835,
- -0.013395773246884346,
- -0.04573525860905647,
- 0.0758054256439209,
- -0.03427121788263321,
- -0.004169678781181574,
- 0.0264168381690979,
- 0.06090369448065758,
- -0.006980006117373705,
- -0.02769186533987522,
- 0.0011425293050706387,
- -0.01291272509843111,
- -0.00851374864578247,
- -0.02275320701301098,
- -0.004670473746955395,
- 0.02998107112944126,
- 0.03436297923326492,
- 0.04224938154220581,
- -0.04486459121108055,
- -0.020901083946228027,
- 0.004286728799343109,
- 0.125518798828125,
- 0.007258106954395771,
- 0.08569858968257904,
- 0.09301264584064484,
- 0.04773280769586563,
- -0.00940522737801075,
- 0.017108768224716187,
- 0.08740682154893875,
- 0.0025848462246358395,
- 0.04470577463507652,
- -0.040525004267692566,
- 0.015360034070909023,
- 0.03114732727408409,
- -0.08730737864971161,
- -0.07798685133457184,
- 0.06980597227811813,
- 0.05217445269227028,
- 0.006062178406864405,
- 0.06729665398597717,
- 0.027796301990747452,
- -0.014738165773451328,
- -0.030847663059830666,
- -0.055514488369226456,
- 0.06293435394763947,
- 0.038204945623874664,
- -0.027787622064352036,
- -0.004929352551698685,
- -0.0348745696246624,
- -0.003653446212410927,
- -0.013467677868902683,
- 0.032612062990665436,
- 0.14162105321884155,
- -0.00020726337970700115,
- -0.014560573734343052,
- -0.06389793008565903,
- 0.05523443967103958,
- -0.04560166224837303,
- -0.03796413168311119,
- -0.04716428369283676,
- -0.03381036967039108,
- -0.05485013499855995,
- 0.048791516572237015,
- -0.0028064160142093897,
- 0.054553210735321045,
- 0.0446571484208107,
- 0.06536784023046494,
- -0.0205556470900774,
- -0.005361902993172407,
- -0.03146831691265106,
- -0.0615641213953495,
- 0.009753182530403137,
- 0.06319397687911987,
- -0.014367877505719662,
- -0.017583057284355164,
- -0.08207954466342926,
- -1.1131101373962338e-8,
- -0.09093615412712097,
- 0.022886019200086594,
- 0.023772817105054855,
- 0.07980785518884659,
- 0.07783734053373337,
- -0.04453820362687111,
- -0.04556397721171379,
- -0.01065544132143259,
- 0.009995720349252224,
- 0.0781579315662384,
- -0.033982280641794205,
- -0.05927325785160065,
- -0.008334382437169552,
- -0.024147842079401016,
- 0.11792789399623871,
- 0.0025370714720338583,
- -0.03299114480614662,
- -0.005864209961146116,
- -0.05550507828593254,
- -0.00009281509119318798,
- 0.03109889104962349,
- 0.020695673301815987,
- -0.01751626841723919,
- 0.01705227792263031,
- -0.04419688507914543,
- 0.005933189764618874,
- 0.054503027349710464,
- 0.1372942328453064,
- 0.0558566078543663,
- -0.021359825506806374,
- 0.15552829205989838,
- 0.05660942569375038,
- 0.01668250560760498,
- 0.00803606677800417,
- 0.04166027903556824,
- 0.02718593180179596,
- 0.032019682228565216,
- 0.033038463443517685,
- -0.0050257351249456406,
- 0.03912406787276268,
- -0.055640023201704025,
- -0.0026297676376998425,
- -0.000817764550447464,
- 0.03534127399325371,
- 0.03109150007367134,
- 0.010448826476931572,
- -0.03389553353190422,
- -0.02842836268246174,
- -0.024151107296347618,
- -0.0482814759016037,
- -0.04774091765284538,
- 0.05306311324238777,
- 0.017743008211255074,
- 0.06184259057044983,
- 0.040600936859846115,
- 0.0033607245422899723,
- -0.006268168333917856,
- -0.0220018420368433,
- -0.10481159389019012,
- 0.08015227317810059,
- 0.06721600145101547,
- 0.0951763466000557,
- 0.04581749811768532,
- 0.08131265640258789
- ]
- },
- {
- "keyword": "precedes",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.05637939274311066,
- 0.003253340721130371,
- 0.09841937571763992,
- 0.030248316004872322,
- -0.054483406245708466,
- 0.10827374458312988,
- 0.013765768148005009,
- -0.0379401296377182,
- 0.06819839775562286,
- 0.05680276080965996,
- 0.062069572508335114,
- 0.009538097307085991,
- -0.005391165614128113,
- -0.007884711027145386,
- -0.018213815987110138,
- -0.01044412050396204,
- 0.04183368384838104,
- -0.06507551670074463,
- -0.0028662802651524544,
- 0.005253718700259924,
- -0.017146112397313118,
- 0.0600011870265007,
- -0.030022675171494484,
- 0.004115946590900421,
- 0.0300588421523571,
- -0.06104292720556259,
- -0.060361720621585846,
- 0.01294336561113596,
- 0.12292840331792831,
- 0.008156596682965755,
- 0.033881109207868576,
- -0.015053422190248966,
- 0.07328297942876816,
- 0.003533560549840331,
- -0.06998822093009949,
- 0.054370053112506866,
- 0.03563586249947548,
- 0.005417275708168745,
- 0.05150443688035011,
- 0.06069852039217949,
- -0.010718143545091152,
- -0.09703432768583298,
- -0.021175380796194077,
- 0.024413034319877625,
- 0.014003596268594265,
- -0.0075662946328520775,
- -0.040878619998693466,
- 0.02200762927532196,
- -0.0306853074580431,
- -0.03592824563384056,
- -0.025666682049632072,
- -0.03604526072740555,
- -0.055461984127759933,
- -0.035474956035614014,
- 0.056079085916280746,
- 0.046501774340867996,
- -0.012809066101908684,
- -0.04552152752876282,
- 0.01721302419900894,
- -0.07599733024835587,
- -0.019569355994462967,
- -0.03469834104180336,
- -0.08225344121456146,
- -0.012601679190993309,
- 0.03063639998435974,
- 0.08452076464891434,
- 0.03737908974289894,
- 0.011994498781859875,
- 0.040987707674503326,
- 0.12183713167905807,
- 0.08663488179445267,
- 0.04628416895866394,
- 0.07148101180791855,
- 0.08748171478509903,
- -0.06009524688124657,
- 0.020448807626962662,
- 0.03222736343741417,
- -0.010959393344819546,
- 0.0014584821183234453,
- -0.04537006840109825,
- -0.030058130621910095,
- -0.04160568118095398,
- 0.00818223599344492,
- -0.0046499138697981834,
- 0.051550861448049545,
- -0.015138598158955574,
- -0.012220053002238274,
- -0.05271969363093376,
- 0.005269802641123533,
- -0.044238507747650146,
- -0.05497332662343979,
- -0.0911230817437172,
- 0.00007642997661605477,
- 0.0898306593298912,
- -0.14160467684268951,
- 0.02277229353785515,
- -0.025094272568821907,
- -0.033435478806495667,
- 0.03356510028243065,
- 0.12194527685642242,
- 0.04882500320672989,
- 0.060472045093774796,
- -0.08865990489721298,
- 0.07863696664571762,
- 0.029586181044578552,
- -0.06562826782464981,
- -0.07781982421875,
- -0.004092996474355459,
- 0.010134936310350895,
- 0.03366561606526375,
- 0.03278482332825661,
- -0.068528912961483,
- -0.01650948077440262,
- 0.0008098282851278782,
- -0.039261337369680405,
- 0.057216107845306396,
- 0.02003614977002144,
- -0.024823134765028954,
- 0.05016809329390526,
- -0.08931850641965866,
- 0.07728102803230286,
- 0.07305052131414413,
- 0.05660192668437958,
- -0.04169248417019844,
- -0.019838204607367516,
- -0.11128291487693787,
- -0.039480727165937424,
- -5.076428557349697e-33,
- 0.03794685751199722,
- -0.15300504863262177,
- 0.03447349742054939,
- 0.0410810261964798,
- -0.03502080217003822,
- 0.038564398884773254,
- -0.08590541779994965,
- -0.054409753531217575,
- -0.048553790897130966,
- 0.07393951714038849,
- -0.05268749222159386,
- -0.009466119110584259,
- -0.054578106850385666,
- -0.07345692813396454,
- -0.04223688691854477,
- -0.05436613783240318,
- 0.029109392315149307,
- -0.042553890496492386,
- 0.014813224785029888,
- 0.038657139986753464,
- -0.03745672106742859,
- -0.06822890788316727,
- -0.012911476194858551,
- -0.04667793586850166,
- 0.013899633660912514,
- 0.03807858005166054,
- -0.06446976959705353,
- -0.04322796314954758,
- 0.06086060032248497,
- 0.026946838945150375,
- -0.007436584215611219,
- -0.04598371312022209,
- -0.02593495137989521,
- -0.01359234843403101,
- -0.0732269287109375,
- 0.06140318140387535,
- -0.041113000363111496,
- -0.057237785309553146,
- 0.023706939071416855,
- -0.031460534781217575,
- -0.024684574455022812,
- 0.026968948543071747,
- -0.036726173013448715,
- -0.03223292529582977,
- 0.0550718754529953,
- -0.07835987210273743,
- -0.05393487215042114,
- 0.008478168398141861,
- 0.03929537534713745,
- 0.06941305100917816,
- -0.00009525258064968511,
- -0.007069016806781292,
- -0.0020778535399585962,
- -0.020578809082508087,
- -0.0814998671412468,
- 0.012331780046224594,
- 0.06424260139465332,
- 0.031071584671735764,
- -0.03714699670672417,
- 0.0003143057692795992,
- 0.01313762180507183,
- -0.018253454938530922,
- -0.07525080442428589,
- 0.01982797309756279,
- -0.0761311799287796,
- -0.07049603015184402,
- 0.02848699502646923,
- -0.03898480162024498,
- 0.06189616024494171,
- -0.04508645087480545,
- -0.08275854587554932,
- -0.0448780283331871,
- -0.05803197622299194,
- 0.016346070915460587,
- 0.03228457644581795,
- 0.04349111020565033,
- 0.015263290144503117,
- -0.017231624573469162,
- 0.04241491109132767,
- -0.005764711182564497,
- -0.014666665345430374,
- -0.00942409597337246,
- 0.0030867515597492456,
- 0.03003854677081108,
- 0.054408904165029526,
- 0.002836496103554964,
- 0.05243834853172302,
- -0.060738567262887955,
- 0.03579898178577423,
- 0.000417679751990363,
- -0.005953366402536631,
- 0.03838738426566124,
- 0.05441264808177948,
- 0.06264051049947739,
- -0.06362640112638474,
- 2.109180513801807e-33,
- 0.09094663709402084,
- -0.02211122401058674,
- -0.04428684338927269,
- 0.06228874996304512,
- 0.027486946433782578,
- -0.024485962465405464,
- 0.019150836393237114,
- -0.044815633445978165,
- -0.021515287458896637,
- -0.05685210973024368,
- -0.017945054918527603,
- -0.010538493283092976,
- 0.11011800169944763,
- 0.023763960227370262,
- 0.07044204324483871,
- 0.025360198691487312,
- 0.0821511521935463,
- -0.01653994992375374,
- 0.043005794286727905,
- 0.01440783217549324,
- -0.02046797424554825,
- -0.04061747342348099,
- -0.05920134857296944,
- -0.05847349017858505,
- -0.034711338579654694,
- 0.04926195368170738,
- 0.07423757761716843,
- -0.001112830126658082,
- -0.0891730785369873,
- 0.028423557057976723,
- 0.012678850442171097,
- -0.0884808674454689,
- 0.05603718012571335,
- -0.010914869606494904,
- -0.00548388808965683,
- 0.05793861299753189,
- -0.030020585283637047,
- -0.007323706056922674,
- 0.009691925719380379,
- 0.0033076824620366096,
- 0.05247655510902405,
- -0.06098898872733116,
- 0.012789767235517502,
- 0.07154661417007446,
- -0.08102146536111832,
- -0.010527366772294044,
- 0.014067817479372025,
- 0.13642480969429016,
- -0.009028872475028038,
- 0.04304211959242821,
- -0.06556624919176102,
- 0.06509391218423843,
- -0.0460398830473423,
- 0.014703077264130116,
- -0.006084142252802849,
- -0.005618968512862921,
- -0.044884804636240005,
- -0.05849354341626167,
- 0.04960145801305771,
- 0.026425911113619804,
- -0.0014958679676055908,
- 0.02081300877034664,
- 0.038749851286411285,
- -0.04887178912758827,
- 0.02971649169921875,
- -0.01535975094884634,
- -0.038221850991249084,
- 0.079417884349823,
- -0.01804800145328045,
- -0.06293277442455292,
- 0.02290618047118187,
- 0.07355103641748428,
- -0.17485392093658447,
- -0.09965240210294724,
- -0.015445269644260406,
- -0.029002750292420387,
- -0.05426928028464317,
- 0.05548353120684624,
- 0.05205083265900612,
- -0.04888441786170006,
- -0.11367426812648773,
- 0.018192611634731293,
- -0.012958653271198273,
- 0.08072873950004578,
- -0.07038792967796326,
- 0.03698566183447838,
- 0.13335181772708893,
- 0.01954403892159462,
- 0.0338311605155468,
- 0.030711544677615166,
- 0.05387219786643982,
- 0.07728733122348785,
- 0.06986497342586517,
- -0.04319257289171219,
- -0.037286579608917236,
- -1.4667098646725663e-8,
- -0.05795738101005554,
- 0.003048680489882827,
- -0.006764094345271587,
- -0.029531490057706833,
- 0.02466675266623497,
- -0.03719112277030945,
- 0.007801912724971771,
- -0.01646340824663639,
- -0.05059822276234627,
- -0.039904750883579254,
- 0.0029790843836963177,
- 0.08842769265174866,
- 0.026544669643044472,
- -0.04868244379758835,
- 0.05142654851078987,
- -0.0168371070176363,
- 0.0052058813162148,
- -0.026401454582810402,
- -0.10675658285617828,
- 0.00581612391397357,
- -0.036881059408187866,
- 0.045855339616537094,
- -0.00268066069111228,
- -0.1616232544183731,
- 0.04220564663410187,
- -0.015171272680163383,
- 0.0049606673419475555,
- 0.03924510255455971,
- -0.0037670875899493694,
- 0.08573311567306519,
- 0.01853053644299507,
- 0.06814505159854889,
- 0.0020958506502211094,
- -0.03737511858344078,
- 0.04592742770910263,
- 0.025751130655407906,
- 0.06912025809288025,
- -0.012601897120475769,
- 0.0036292627919465303,
- -0.055896252393722534,
- -0.01125827245414257,
- -0.024242641404271126,
- 0.011232119984924793,
- 0.03675680607557297,
- -0.0559077151119709,
- -0.026156798005104065,
- -0.0011423112591728568,
- 0.021729817613959312,
- -0.007199906278401613,
- -0.0738723948597908,
- -0.03880743682384491,
- 0.023168690502643585,
- 0.04860656335949898,
- 0.0692591592669487,
- 0.058248214423656464,
- 0.0208125039935112,
- -0.006126906722784042,
- 0.020486367866396904,
- -0.04792146012187004,
- 0.06671961396932602,
- 0.08327307552099228,
- -0.019781338050961494,
- 0.09969411045312881,
- 0.03221997246146202
- ]
- },
- {
- "keyword": "comes before",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.01732565462589264,
- -0.007878008298575878,
- 0.04530201107263565,
- 0.02507929317653179,
- -0.0023411645088344812,
- -0.02373390458524227,
- 0.03538382053375244,
- -0.013133189640939236,
- 0.08212805539369583,
- -0.016246063634753227,
- 0.04422406852245331,
- 0.031511563807725906,
- 0.024638863280415535,
- -0.023386524990200996,
- 0.022079773247241974,
- -0.011085662059485912,
- 0.06390468776226044,
- -0.028953619301319122,
- -0.11739015579223633,
- -0.037027645856142044,
- -0.03218778595328331,
- 0.013690708205103874,
- -0.0714181512594223,
- -0.022098900750279427,
- -0.030703537166118622,
- -0.08751779794692993,
- 0.014520365744829178,
- 0.02903987281024456,
- 0.16046938300132751,
- -0.02108851447701454,
- 0.052435945719480515,
- 0.030190609395503998,
- 0.021085791289806366,
- 0.04322471469640732,
- -0.05304703861474991,
- 0.03507336601614952,
- 0.06770015507936478,
- 0.012477359734475613,
- 0.01469738781452179,
- 0.0671258419752121,
- -0.0288535226136446,
- -0.0883513018488884,
- -0.019150808453559875,
- 0.07325480133295059,
- 0.05153663083910942,
- -0.014201758429408073,
- 0.029968585819005966,
- -0.04912635311484337,
- 0.015497783198952675,
- 0.03283185511827469,
- -0.03462395817041397,
- 0.0029123318381607533,
- -0.03091777116060257,
- 0.03584205359220505,
- 0.09141026437282562,
- 0.045281022787094116,
- 0.0498448871076107,
- -0.04960578680038452,
- -0.03439614921808243,
- 0.03671417757868767,
- -0.026468859985470772,
- -0.03757747262716293,
- -0.09046918898820877,
- 0.037348270416259766,
- 0.033662647008895874,
- -0.010943333618342876,
- 0.058343857526779175,
- 0.06704536080360413,
- 0.0321851447224617,
- 0.08205634355545044,
- -0.06895451247692108,
- 0.04439885541796684,
- -0.008932611905038357,
- 0.05598090961575508,
- -0.040801532566547394,
- 0.012802858836948872,
- -0.01923244632780552,
- -0.004999866243451834,
- 0.02827732264995575,
- -0.02995087206363678,
- -0.00548552256077528,
- 0.1048661544919014,
- 0.016062717884778976,
- 0.01825520396232605,
- 0.016832171007990837,
- 0.03399636968970299,
- 0.0605195127427578,
- -0.09299425035715103,
- -0.051142603158950806,
- 0.0037509705871343613,
- -0.040809549391269684,
- -0.08108299970626831,
- -0.04690765589475632,
- 0.04150097444653511,
- -0.11920040100812912,
- -0.05819915607571602,
- -0.007982266135513783,
- -0.05034209042787552,
- 0.014307601377367973,
- 0.16652943193912506,
- 0.0395178347826004,
- 0.0042868549935519695,
- -0.01848440058529377,
- -0.004525098484009504,
- 0.05010567232966423,
- -0.09182464331388474,
- -0.028426505625247955,
- 0.023810407146811485,
- 0.01597452536225319,
- 0.059932105243206024,
- 0.019071657210588455,
- -0.015569270588457584,
- 0.0006996482261456549,
- 0.0133961271494627,
- -0.05834842473268509,
- -0.04350648820400238,
- -0.0002549750788602978,
- 0.01740150712430477,
- 0.05816984921693802,
- -0.03322412446141243,
- 0.10246293246746063,
- 0.03784305974841118,
- 0.0207317303866148,
- 0.018470624461770058,
- -0.027067815884947777,
- -0.08299606293439865,
- 0.03858916461467743,
- -4.06114159691701e-33,
- -0.0026105346623808146,
- -0.019984202459454536,
- 0.02581462636590004,
- 0.003906513564288616,
- -0.01960645243525505,
- 0.04225704446434975,
- 0.01931615173816681,
- -0.039566125720739365,
- -0.1126759797334671,
- 0.016530809924006462,
- -0.06984340399503708,
- -0.08639122545719147,
- -0.025464482605457306,
- -0.039190005511045456,
- -0.032211560755968094,
- -0.021885691210627556,
- 0.04458266869187355,
- -0.07084229588508606,
- 0.005479974672198296,
- 0.011648667976260185,
- -0.05681581422686577,
- -0.0273746270686388,
- 0.012025918811559677,
- 0.0167752206325531,
- -0.020911093801259995,
- 0.04133966192603111,
- -0.008853543549776077,
- -0.08389296382665634,
- 0.012099852785468102,
- 0.0412006750702858,
- -0.03945738449692726,
- -0.01732655055820942,
- -0.12402064353227615,
- -0.016498185694217682,
- 0.036605361849069595,
- 0.06436444073915482,
- -0.0232097040861845,
- -0.04273824766278267,
- -0.01716603897511959,
- -0.09075272083282471,
- -0.023834653198719025,
- 0.018999528139829636,
- -0.04145916551351547,
- -0.01815665513277054,
- 0.033764950931072235,
- 0.0055794804356992245,
- -0.0006724977283738554,
- -0.022613372653722763,
- 0.026458600535988808,
- -0.02713354490697384,
- -0.030362844467163086,
- -0.07122970372438431,
- 0.08913900703191757,
- 0.030099093914031982,
- -0.00819416157901287,
- -0.04389507696032524,
- 0.038419533520936966,
- -0.01891341805458069,
- -0.05893180891871452,
- 0.07742980867624283,
- 0.01250714436173439,
- 0.020804669708013535,
- -0.0356454961001873,
- 0.03974303975701332,
- -0.044826168566942215,
- -0.07878994196653366,
- 0.049127329140901566,
- -0.04047929868102074,
- -0.010289720259606838,
- -0.011538312770426273,
- -0.06713389605283737,
- 0.020898304879665375,
- -0.01667427085340023,
- 0.0381341353058815,
- -0.03874606639146805,
- -0.030798770487308502,
- 0.016599850729107857,
- 0.03415341302752495,
- -0.0011808902490884066,
- -0.028001930564641953,
- -0.047253333032131195,
- 0.021481886506080627,
- 0.016258129850029945,
- 0.0281857680529356,
- 0.027681896463036537,
- 0.05076050013303757,
- 0.09037431329488754,
- -0.013428769074380398,
- -0.010205722413957119,
- 0.011852907948195934,
- 0.004808555822819471,
- -0.01582285761833191,
- 0.06410211324691772,
- 0.011671381071209908,
- -0.05395699292421341,
- 2.8811632861593125e-33,
- 0.05509013310074806,
- -0.030758589506149292,
- 0.06833386421203613,
- 0.04970621317625046,
- 0.039367545396089554,
- -0.06671636551618576,
- 0.030477561056613922,
- -0.012837640941143036,
- -0.0023099551908671856,
- 0.03139401972293854,
- 0.02583232894539833,
- -0.052162013947963715,
- 0.048943471163511276,
- -0.014569954015314579,
- 0.15624047815799713,
- 0.07376349717378616,
- 0.1455739140510559,
- -0.11127107590436935,
- 0.02971050888299942,
- 0.034919749945402145,
- 0.037433236837387085,
- 0.018411343917250633,
- 0.008994730189442635,
- -0.05333852395415306,
- -0.030586570501327515,
- 0.03384410962462425,
- 0.13342364132404327,
- 0.08540820330381393,
- -0.10084935277700424,
- -0.007781296037137508,
- 0.014079832471907139,
- -0.024369649589061737,
- -0.0033026745077222586,
- 0.05142112076282501,
- -0.010537780821323395,
- 0.029885422438383102,
- 0.09463892877101898,
- -0.019454877823591232,
- -0.0013998686335980892,
- 0.10370203107595444,
- 0.023949602618813515,
- -0.003560243174433708,
- 0.02346484735608101,
- 0.09723162651062012,
- -0.04801466688513756,
- -0.06015249714255333,
- 0.008026782423257828,
- 0.0819164365530014,
- 0.04955209419131279,
- 0.08295068889856339,
- -0.051315490156412125,
- 0.028354628011584282,
- -0.016024401411414146,
- -0.033962272107601166,
- -0.03295092284679413,
- -0.0325641930103302,
- -0.01969415694475174,
- 0.026170914992690086,
- -0.03545582666993141,
- -0.0037909718230366707,
- -0.031329840421676636,
- 0.03040779009461403,
- -0.030393604189157486,
- -0.07869037985801697,
- -0.008579744957387447,
- -0.024140970781445503,
- 0.007817509584128857,
- 0.037046197801828384,
- 0.01909618079662323,
- -0.04382644221186638,
- -0.057273004204034805,
- 0.056626997888088226,
- -0.13930471241474152,
- -0.058747299015522,
- -0.0761990025639534,
- 0.03324488177895546,
- -0.07405535131692886,
- 0.03576737642288208,
- 0.011767086572945118,
- -0.0699983760714531,
- -0.09151307493448257,
- -0.018394215032458305,
- 0.003629454178735614,
- 0.04190759360790253,
- 0.03727446869015694,
- -0.10907299816608429,
- 0.15127858519554138,
- -0.0483817420899868,
- -0.024705035611987114,
- -0.017691701650619507,
- 0.024020401760935783,
- 0.0064887190237641335,
- 0.03716113418340683,
- 0.029518067836761475,
- -0.020285164937376976,
- -1.369382029992039e-8,
- -0.015473400242626667,
- 0.006957212928682566,
- 0.05170941725373268,
- 0.04764402285218239,
- 0.07063274830579758,
- 0.06903105229139328,
- -0.005701933056116104,
- 0.003352862549945712,
- -0.0884568840265274,
- -0.030433611944317818,
- 0.0418069027364254,
- 0.027476303279399872,
- 0.09825829416513443,
- 0.01470241416245699,
- 0.09953700751066208,
- -0.01907879114151001,
- -0.070283442735672,
- -0.07261643558740616,
- -0.07177144289016724,
- -0.029551172628998756,
- -0.04883580282330513,
- -0.011660040356218815,
- 0.018392998725175858,
- -0.023175116628408432,
- 0.0516710989177227,
- -0.026511630043387413,
- -0.04639784246683121,
- 0.059737227857112885,
- 0.02528437413275242,
- 0.05832931399345398,
- -0.001601740368641913,
- 0.09042764455080032,
- -0.08421610295772552,
- -0.050066493451595306,
- 0.02326628752052784,
- 0.01381420437246561,
- 0.022274795919656754,
- -0.005552695598453283,
- 0.05144859850406647,
- -0.06999252736568451,
- -0.10597717761993408,
- 0.028723152354359627,
- 0.00021505920449271798,
- -0.014992697164416313,
- -0.10716523975133896,
- 0.026673588901758194,
- -0.031245512887835503,
- -0.055387843400239944,
- -0.0005681507755070925,
- -0.08313192427158356,
- -0.005280191544443369,
- 0.010844452306628227,
- 0.03262803331017494,
- 0.02580351009964943,
- 0.07547842711210251,
- 0.06188870221376419,
- 0.02309243008494377,
- -0.01054342556744814,
- 0.02634602040052414,
- 0.06571894884109497,
- 0.022675130516290665,
- 0.0023943043779581785,
- 0.16757816076278687,
- 0.000540418375749141
- ]
- },
- {
- "keyword": "happens before",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.003662046045064926,
- -0.047957681119441986,
- 0.0156661719083786,
- 0.056332532316446304,
- -0.03860463574528694,
- -0.07081710547208786,
- 0.05872149392962456,
- 0.03707163780927658,
- 0.11868845671415329,
- -0.024025367572903633,
- 0.029817981645464897,
- 0.09757854789495468,
- -0.0015812383498996496,
- 0.05758027359843254,
- -0.020693998783826828,
- 0.012333857826888561,
- 0.007961541414260864,
- -0.060345906764268875,
- -0.15121406316757202,
- 0.0029996559023857117,
- -0.01082151010632515,
- -0.02522273361682892,
- -0.07272259145975113,
- 0.04471195116639137,
- 0.08317670226097107,
- -0.12624254822731018,
- 0.005462929140776396,
- 0.04339878633618355,
- 0.08844085037708282,
- -0.00835898146033287,
- 0.011863062158226967,
- 0.06642331928014755,
- 0.07219653576612473,
- 0.017074674367904663,
- -0.020934393629431725,
- 0.06781067699193954,
- 0.021534129977226257,
- 0.034718841314315796,
- -0.00813328567892313,
- -0.010213791392743587,
- 0.006509826984256506,
- -0.11094727367162704,
- -0.04364927113056183,
- -0.013129555620253086,
- 0.03610845282673836,
- -0.02172764576971531,
- 0.07545571774244308,
- 0.014800356701016426,
- 0.039958033710718155,
- 0.03146225959062576,
- -0.033286288380622864,
- -0.02511349879205227,
- -0.020415231585502625,
- -0.07306816428899765,
- -0.0019686033483594656,
- 0.05455225333571434,
- -0.01791265420615673,
- 0.047204963862895966,
- 0.04247264564037323,
- 0.002322826301679015,
- 0.041020430624485016,
- -0.0007401014445349574,
- -0.05018770322203636,
- -0.025873465463519096,
- 0.03701435402035713,
- 0.013247895985841751,
- 0.020886754617094994,
- 0.07211901992559433,
- 0.06953120231628418,
- 0.05087333545088768,
- 0.028519462794065475,
- 0.0817880854010582,
- -0.0681135430932045,
- 0.005909003783017397,
- 0.012249620631337166,
- 0.05136050656437874,
- -0.009171079844236374,
- -0.023070424795150757,
- 0.003570565255358815,
- -0.020902834832668304,
- -0.03213103488087654,
- 0.05614198371767998,
- -0.06089465692639351,
- 0.05067327246069908,
- 0.01773819886147976,
- 0.024047857150435448,
- -0.008167198859155178,
- -0.0863395482301712,
- -0.04415532574057579,
- 0.04738524183630943,
- -0.0000020994364149373723,
- -0.0010039135813713074,
- 0.09336883574724197,
- 0.05262013152241707,
- -0.06677260249853134,
- -0.07902422547340393,
- 0.03280077129602432,
- 0.018997451290488243,
- -0.0005607609637081623,
- 0.2203608751296997,
- -0.028157906606793404,
- 0.015005813911557198,
- -0.016856947913765907,
- -0.019033649936318398,
- 0.08209045231342316,
- -0.031111767515540123,
- -0.051716044545173645,
- 0.026004016399383545,
- -0.033967163413763046,
- 0.037462156265974045,
- 0.007196866907179356,
- -0.04827561601996422,
- 0.056725744158029556,
- 0.05795678868889809,
- -0.07166726142168045,
- -0.064063161611557,
- -0.005303394515067339,
- 0.012224828824400902,
- -0.04783472791314125,
- -0.03716365620493889,
- -0.0021184918005019426,
- 0.0537748783826828,
- 0.019511455669999123,
- -0.025433199480175972,
- -0.03110174462199211,
- -0.08107343316078186,
- 0.05622165650129318,
- 4.799469047655512e-34,
- 0.006714957300573587,
- -0.1758395880460739,
- -0.07874106615781784,
- 0.022035997360944748,
- -0.0031467291992157698,
- -0.01415962353348732,
- 0.03242182359099388,
- -0.026051508262753487,
- -0.04346230626106262,
- -0.02076311968266964,
- 0.011547851376235485,
- -0.06480928510427475,
- 0.020136050879955292,
- -0.0687878206372261,
- -0.009598801843822002,
- -0.007936420850455761,
- 0.012996301986277103,
- 0.05063430592417717,
- 0.028428178280591965,
- 0.014041926711797714,
- 0.02394934557378292,
- 0.013660384342074394,
- 0.010173795744776726,
- 0.034129854291677475,
- 0.004472143482416868,
- 0.1582717001438141,
- -0.04733246564865112,
- -0.06594331562519073,
- 0.053206559270620346,
- -0.013976292684674263,
- -0.04293472319841385,
- -0.02516944520175457,
- -0.07937157154083252,
- 0.03259149566292763,
- 0.006495940499007702,
- 0.07178295403718948,
- 0.09079134464263916,
- -0.0051809619180858135,
- -0.04611935093998909,
- -0.058565977960824966,
- -0.035169295966625214,
- 0.020871160551905632,
- -0.08749867975711823,
- 0.004841491114348173,
- -0.017322979867458344,
- -0.0320962592959404,
- 0.0043680500239133835,
- 0.040377017110586166,
- 0.01510535180568695,
- -0.05320141837000847,
- -0.029186390340328217,
- -0.009406032040715218,
- 0.00653444230556488,
- 0.03282998502254486,
- -0.050037238746881485,
- 0.005259550642222166,
- 0.025208694860339165,
- -0.05759480595588684,
- -0.023137269541621208,
- 0.06073416396975517,
- 0.07336854934692383,
- 0.01646457426249981,
- -0.038493562489748,
- -0.014697534032166004,
- -0.058944910764694214,
- -0.06704570353031158,
- 0.04748799651861191,
- -0.024373693391680717,
- 0.02830078825354576,
- -0.016492092981934547,
- 0.019180262461304665,
- 0.03220169618725777,
- 0.06782060116529465,
- 0.0010725745232775807,
- 0.025122936815023422,
- -0.049532972276210785,
- -0.01767854019999504,
- 0.1080649122595787,
- -0.04726021736860275,
- -0.03927921876311302,
- 0.03312249109148979,
- -0.15670126676559448,
- -0.005016572307795286,
- -0.017999982461333275,
- 0.009832344949245453,
- 0.013948057778179646,
- 0.07338912039995193,
- -0.0722058117389679,
- -0.06970668584108353,
- 0.03274321183562279,
- 0.006845788098871708,
- 0.06191723793745041,
- 0.09250599890947342,
- 0.0020826978143304586,
- -0.08443507552146912,
- -1.3641814897739156e-33,
- -0.0034740816336125135,
- 0.03225833922624588,
- -0.03315384313464165,
- 0.06211968511343002,
- 0.04016146436333656,
- -0.06840076297521591,
- 0.04380161687731743,
- 0.06449702382087708,
- -0.03565942123532295,
- 0.024320656433701515,
- 0.008312180638313293,
- -0.08062394708395004,
- 0.0716303139925003,
- -0.025294825434684753,
- 0.08915900439023972,
- 0.019132133573293686,
- 0.09076754748821259,
- -0.06731456518173218,
- -0.030956678092479706,
- 0.08761026710271835,
- 0.008973417803645134,
- 0.04119732603430748,
- 0.018600113689899445,
- -0.013288858346641064,
- -0.007309334352612495,
- 0.03910881653428078,
- 0.12789690494537354,
- -0.00898928102105856,
- -0.058999404311180115,
- -0.05183177441358566,
- 0.07034042477607727,
- 0.026223618537187576,
- -0.050797101110219955,
- 0.03707659989595413,
- 0.035373419523239136,
- 0.052624065428972244,
- 0.0056527224369347095,
- -0.028035147115588188,
- -0.01222395058721304,
- 0.018115727230906487,
- 0.0695367231965065,
- -0.02658669278025627,
- 0.04444292560219765,
- 0.06340986490249634,
- -0.025041701272130013,
- -0.08702099323272705,
- 0.04073648899793625,
- -0.017873093485832214,
- 0.07440489530563354,
- 0.0002173644897993654,
- -0.09685671329498291,
- 0.007352106273174286,
- 0.03355629742145538,
- -0.06098112091422081,
- -0.022082218900322914,
- -0.00621417909860611,
- -0.006588712800294161,
- 0.05391392111778259,
- 0.06035007908940315,
- 0.03819352015852928,
- 0.03404877707362175,
- -0.03005366027355194,
- -0.0758916363120079,
- -0.08821703493595123,
- -0.005531902424991131,
- 0.02486419677734375,
- -0.05414540320634842,
- 0.034892886877059937,
- 0.04120267555117607,
- -0.037757594138383865,
- -0.03887138143181801,
- 0.044022101908922195,
- -0.1429896056652069,
- -0.06642254441976547,
- -0.010551334358751774,
- 0.033736199140548706,
- -0.10920017957687378,
- 0.08154147863388062,
- -0.0318608321249485,
- -0.055929094552993774,
- -0.0952899307012558,
- -0.0009388371836394072,
- 0.011616148054599762,
- 0.049336791038513184,
- 0.008375439792871475,
- -0.03342554718255997,
- 0.07493188232183456,
- -0.014176152646541595,
- 0.002519558882340789,
- -0.06979383528232574,
- -0.042426496744155884,
- -0.047819312661886215,
- 0.038656555116176605,
- 0.07087202370166779,
- -0.003598499810323119,
- -1.5986016066449338e-8,
- -0.04427555575966835,
- 0.03919893130660057,
- 0.014329047873616219,
- 0.05276967212557793,
- 0.06518939882516861,
- 0.056539300829172134,
- 0.0018236520700156689,
- 0.02820133976638317,
- -0.02809244953095913,
- -0.07719320803880692,
- -0.03883136063814163,
- 0.016212623566389084,
- 0.04172852635383606,
- -0.04675542190670967,
- -0.00028275942895561457,
- -0.036088477820158005,
- -0.07719642668962479,
- -0.06481699645519257,
- -0.04847675934433937,
- -0.007866601459681988,
- -0.039869897067546844,
- 0.02986602485179901,
- -0.004468206781893969,
- 0.04688018560409546,
- -0.01092772837728262,
- 0.007139038760215044,
- -0.05949664115905762,
- 0.09113942831754684,
- 0.007430212572216988,
- 0.04877445846796036,
- -0.05036713927984238,
- 0.06607306003570557,
- -0.008437596261501312,
- -0.04922381788492203,
- -0.01961435377597809,
- -0.041408438235521317,
- 0.019192105159163475,
- -0.0015039033023640513,
- 0.0426056869328022,
- -0.04636841267347336,
- -0.033631253987550735,
- 0.008008936420083046,
- 0.0004800708848051727,
- 0.02365054376423359,
- -0.019580673426389694,
- 0.027665557339787483,
- 0.011440984904766083,
- -0.00846597459167242,
- 0.07185699790716171,
- -0.0804973766207695,
- 0.018646009266376495,
- 0.0450466088950634,
- 0.015354020521044731,
- -0.026819143444299698,
- 0.12580087780952454,
- 0.017475003376603127,
- -0.009882456623017788,
- -0.031801555305719376,
- 0.021469589322805405,
- 0.022707749158143997,
- 0.11759813129901886,
- -0.040176309645175934,
- -0.0006314401398412883,
- -0.02154681272804737
- ]
- },
- {
- "keyword": "leads to",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.013826403766870499,
- 0.009867996908724308,
- -0.02110271155834198,
- 0.0394577831029892,
- 0.030224455520510674,
- 0.07572316378355026,
- -0.03583105280995369,
- -0.007537623401731253,
- 0.034298427402973175,
- 0.007588896434754133,
- 0.0013373119290918112,
- 0.007650625426322222,
- 0.008989803493022919,
- 0.049951858818531036,
- 0.04922129958868027,
- 0.011056007817387581,
- -0.023404791951179504,
- -0.02152126096189022,
- -0.08249169588088989,
- -0.0330129936337471,
- -0.08982379734516144,
- 0.0680319294333458,
- -0.004997302778065205,
- -0.043365322053432465,
- -0.07286830246448517,
- -0.0046646748669445515,
- -0.007769939489662647,
- -0.04868828132748604,
- -0.008145504631102085,
- -0.041009657084941864,
- 0.02803802862763405,
- -0.052219927310943604,
- -0.0024705487303435802,
- 0.015299760736525059,
- 0.029228510335087776,
- 0.04384160414338112,
- 0.029867613688111305,
- -0.029956987127661705,
- -0.04624345153570175,
- -0.023523323237895966,
- 0.03802202269434929,
- -0.08875304460525513,
- 0.03140582889318466,
- 0.08209228515625,
- 0.02149265632033348,
- -0.00036512420047074556,
- 0.028676889836788177,
- -0.09537908434867859,
- 0.022351287305355072,
- -0.038659051060676575,
- -0.07731929421424866,
- 0.013514096848666668,
- -0.03825375810265541,
- 0.02134230174124241,
- 0.0077292476780712605,
- 0.05215911194682121,
- 0.028190867975354195,
- -0.0158605445176363,
- 0.034102924168109894,
- -0.01713160239160061,
- 0.07747366279363632,
- -0.04110186919569969,
- -0.1064561977982521,
- -0.047031451016664505,
- 0.002827725373208523,
- -0.037374164909124374,
- 0.0588376447558403,
- 0.03179987892508507,
- -0.06418479979038239,
- 0.08165798336267471,
- 0.06710202246904373,
- 0.0197958555072546,
- 0.01768026128411293,
- 0.00715473061427474,
- 0.009212602861225605,
- 0.06404446065425873,
- 0.011494800448417664,
- -0.059599850326776505,
- 0.05699712038040161,
- -0.11618910729885101,
- 0.05459314584732056,
- 0.022482020780444145,
- -0.030834456905722618,
- 0.060711219906806946,
- 0.004033220000565052,
- -0.0007359785959124565,
- 0.002509223995730281,
- -0.08761616051197052,
- -0.02616140805184841,
- 0.0665527954697609,
- -0.04907646030187607,
- -0.028844190761446953,
- -0.007349125575274229,
- 0.03587944433093071,
- -0.0755024328827858,
- 0.03234616667032242,
- 0.028711488470435143,
- -0.05528869479894638,
- -0.030451426282525063,
- 0.17684930562973022,
- 0.02664981409907341,
- 0.033813949674367905,
- -0.08615653961896896,
- -0.05808274820446968,
- 0.06975375860929489,
- 0.0017502097180113196,
- -0.0057920850813388824,
- 0.02080288529396057,
- 0.020111091434955597,
- 0.04362798482179642,
- 0.031766265630722046,
- -0.020768610760569572,
- -0.0014924845891073346,
- 0.07210192084312439,
- 0.03465865179896355,
- -0.05500778555870056,
- -0.05512993782758713,
- 0.0377931073307991,
- 0.005232018884271383,
- 0.005328446161001921,
- 0.06317674368619919,
- 0.04881875962018967,
- -0.003705468727275729,
- 0.030388249084353447,
- -0.024691827595233917,
- -0.04764533415436745,
- -0.03538135811686516,
- -5.470914175910087e-33,
- 0.024719588458538055,
- 0.025411566719412804,
- 0.05631846562027931,
- 0.03978217765688896,
- -0.028063317760825157,
- 0.011249611154198647,
- -0.026807978749275208,
- -0.005430496297776699,
- -0.07049024850130081,
- 0.05220123007893562,
- -0.10863892734050751,
- 0.04561495780944824,
- -0.009614885784685612,
- 0.03742946684360504,
- -0.0063304416835308075,
- -0.037068746984004974,
- 0.011817819438874722,
- 0.062329843640327454,
- -0.10286697745323181,
- -0.03440137580037117,
- -0.03597588092088699,
- 0.05788314715027809,
- -0.005225515924394131,
- 0.019523050636053085,
- 0.02684192918241024,
- -0.017784317955374718,
- -0.02354961633682251,
- -0.06083010137081146,
- 0.029448386281728745,
- 0.020043684169650078,
- 0.030668575316667557,
- -0.06260281056165695,
- -0.10031858831644058,
- -0.002872442826628685,
- -0.02998613566160202,
- -0.0011755876475945115,
- -0.04079329967498779,
- -0.058311451226472855,
- -0.008857493288815022,
- 0.005709534976631403,
- -0.025474270805716515,
- -0.03631052374839783,
- -0.07021734118461609,
- 0.035568468272686005,
- 0.07228020578622818,
- 0.05705007165670395,
- 0.038665592670440674,
- -0.008482297882437706,
- 0.017689602449536324,
- 0.041988130658864975,
- -0.07385741919279099,
- -0.031326599419116974,
- 0.04023778811097145,
- 0.032851774245500565,
- -0.02722747251391411,
- -0.029233649373054504,
- 0.03962809219956398,
- -0.022612066939473152,
- 0.020803386345505714,
- -0.04055922478437424,
- 0.1110977828502655,
- 0.04218871518969536,
- -0.14450672268867493,
- 0.08017296344041824,
- -0.05924859270453453,
- 0.027890406548976898,
- 0.08031721413135529,
- -0.05690843611955643,
- -0.016428109258413315,
- 0.022792072966694832,
- -0.07131453603506088,
- 0.020797796547412872,
- -0.04361782222986221,
- 0.029361611232161522,
- -0.041082631796598434,
- 0.0377681627869606,
- -0.0371050201356411,
- -0.03498537465929985,
- 0.08603528141975403,
- -0.05654304847121239,
- -0.04054445028305054,
- -0.07887919247150421,
- 0.008676549419760704,
- 0.02255689911544323,
- 0.06627731025218964,
- 0.028774576261639595,
- -0.05431034043431282,
- -0.16248299181461334,
- 0.03299587592482567,
- 0.0010453799040988088,
- 0.0678817555308342,
- 0.009717089124023914,
- -0.04107523337006569,
- 0.12757055461406708,
- -0.09279908984899521,
- 3.6326379065277924e-33,
- -0.05667630955576897,
- 0.02458357810974121,
- -0.010092081502079964,
- 0.030789237469434738,
- 0.025417199358344078,
- -0.07227680832147598,
- 0.006341281812638044,
- -0.011121612042188644,
- 0.09699123352766037,
- 0.025571957230567932,
- -0.0465431734919548,
- 0.008735871873795986,
- 0.04147195443511009,
- 0.07641609013080597,
- 0.04998137056827545,
- -0.030602365732192993,
- 0.1175699234008789,
- -0.030272653326392174,
- -0.02207072079181671,
- -0.04887254908680916,
- -0.0661010593175888,
- 0.026422353461384773,
- -0.021397728472948074,
- -0.053132545202970505,
- -0.0136064812541008,
- 0.03833619877696037,
- 0.07562294602394104,
- 0.004559473134577274,
- -0.09685977548360825,
- -0.003745862515643239,
- 0.07682144641876221,
- -0.04210452362895012,
- -0.0828971117734909,
- -0.015488208271563053,
- -0.020348098129034042,
- 0.12243165820837021,
- 0.057723890990018845,
- 0.03192349150776863,
- -0.020563820376992226,
- 0.07741182297468185,
- 0.010877758264541626,
- -0.0006216174806468189,
- 0.09420146048069,
- 0.0932970643043518,
- -0.028058171272277832,
- 0.07393401116132736,
- 0.003845943370833993,
- 0.030136682093143463,
- 0.03175019845366478,
- 0.025952789932489395,
- -0.022740457206964493,
- 0.05022863298654556,
- 0.015953199937939644,
- 0.027874300256371498,
- -0.024240555241703987,
- 0.024403737857937813,
- -0.007538014557212591,
- -0.008296051062643528,
- -0.04687442630529404,
- -0.07526734471321106,
- -0.08322200179100037,
- 0.04857897758483887,
- -0.003437405452132225,
- -0.053697921335697174,
- 0.05074576660990715,
- -0.0412161648273468,
- -0.01771792769432068,
- -0.04110689088702202,
- 0.0702175721526146,
- 0.004681633785367012,
- 0.04746521636843681,
- 0.010257409885525703,
- -0.06389285624027252,
- -0.00915980152785778,
- -0.04530225694179535,
- -0.03674200177192688,
- -0.046895582228899,
- -0.04666993021965027,
- -0.0007301159203052521,
- -0.11642316728830338,
- -0.044788625091314316,
- -0.044303566217422485,
- 0.02502783015370369,
- -0.04113541916012764,
- -0.02231493778526783,
- -0.07616221904754639,
- 0.1330382525920868,
- -0.009340193122625351,
- 0.0009336775983683765,
- 0.033672865480184555,
- 0.018042851239442825,
- 0.04488864913582802,
- 0.06221296638250351,
- 0.023474955931305885,
- -0.0415031872689724,
- -1.3478127058874634e-8,
- -0.07448875904083252,
- 0.016466977074742317,
- -0.013964656740427017,
- 0.030139967799186707,
- 0.07860058546066284,
- 0.04988393187522888,
- 0.05467936396598816,
- 0.0733858048915863,
- 0.038630783557891846,
- 0.03169756755232811,
- -0.0052552735432982445,
- 0.026577051728963852,
- 0.03278854489326477,
- 0.10566780716180801,
- 0.1285533905029297,
- -0.021634135395288467,
- -0.024173302575945854,
- -0.049595169723033905,
- -0.045172858983278275,
- -0.03442699462175369,
- -0.09455055743455887,
- -0.025033723562955856,
- 0.02253980189561844,
- 0.018288031220436096,
- -0.023830467835068703,
- -0.039849646389484406,
- -0.06836109608411789,
- 0.13289692997932434,
- 0.005503358785063028,
- 0.02559613808989525,
- 0.05037891864776611,
- 0.018476219847798347,
- -0.04716363921761513,
- 0.0470852330327034,
- -0.029718544334173203,
- -0.0056507219560444355,
- -0.006949036382138729,
- 0.0009906174382194877,
- 0.013888529501855373,
- -0.030988410115242004,
- -0.009270387701690197,
- 0.006872796919196844,
- 0.006968153640627861,
- 0.05454793572425842,
- -0.102920301258564,
- -0.02746676653623581,
- 0.1349485218524933,
- 0.007339992560446262,
- -0.04420118033885956,
- -0.07808037102222443,
- -0.007882256992161274,
- -0.028561759740114212,
- -0.009470739401876926,
- 0.01949167624115944,
- 0.08376237004995346,
- 0.045948006212711334,
- -0.03194033354520798,
- 0.018621832132339478,
- -0.0074034747667610645,
- 0.08508452773094177,
- 0.08360738307237625,
- -0.058386340737342834,
- 0.11171352118253708,
- 0.04218864068388939
- ]
- },
- {
- "keyword": "prior to",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.026790091767907143,
- -0.02392861619591713,
- 0.018711186945438385,
- 0.0697173997759819,
- -0.022877123206853867,
- 0.037854764610528946,
- -0.004147943574935198,
- 0.04379616677761078,
- 0.042124584317207336,
- 0.03790060430765152,
- -0.030902346596121788,
- 0.07129908353090286,
- -0.019543081521987915,
- 0.03419925272464752,
- -0.013364293612539768,
- 0.017982225865125656,
- 0.039953067898750305,
- -0.045924436300992966,
- -0.07232124358415604,
- -0.012813329696655273,
- -0.12090475857257843,
- -0.02629319578409195,
- -0.002327358815819025,
- -0.026834502816200256,
- 0.0745493471622467,
- -0.053536076098680496,
- -0.0053694345988333225,
- 0.08710739016532898,
- 0.13137277960777283,
- -0.00035144094727002084,
- -0.04199844226241112,
- 0.006142172031104565,
- 0.030318008735775948,
- 0.044114306569099426,
- -0.04404030367732048,
- 0.009133851155638695,
- 0.016086677089333534,
- -0.022934455424547195,
- 0.04529580846428871,
- 0.011210216209292412,
- -0.05309196189045906,
- -0.10426918417215347,
- -0.03950416296720505,
- -0.04010597616434097,
- -0.0018601898336783051,
- -0.019866030663251877,
- 0.029504593461751938,
- 0.016535382717847824,
- 0.06850359588861465,
- 0.037911780178546906,
- -0.04233962669968605,
- -0.027551088482141495,
- -0.021896397694945335,
- -0.0018006650498136878,
- 0.0004267017066013068,
- 0.03527047857642174,
- -0.016483640298247337,
- -0.007392569445073605,
- 0.025168487802147865,
- -0.018939198926091194,
- -0.020934967324137688,
- -0.04409542679786682,
- -0.08863109350204468,
- 0.043096236884593964,
- 0.06767356395721436,
- 0.004740908741950989,
- 0.02234192192554474,
- 0.039828792214393616,
- 0.07490759342908859,
- 0.040194641798734665,
- -0.0027605751529335976,
- 0.047029390931129456,
- -0.026923667639493942,
- 0.011702639050781727,
- 0.008211643435060978,
- 0.01434484962373972,
- 0.04374563694000244,
- -0.08109989762306213,
- 0.02887846902012825,
- -0.12654881179332733,
- 0.0007036066963337362,
- 0.05530483275651932,
- -0.04564126580953598,
- 0.020240753889083862,
- 0.028604811057448387,
- 0.020913995802402496,
- -0.001487788395024836,
- 0.03383330628275871,
- -0.0127936489880085,
- 0.025125974789261818,
- 0.07644637674093246,
- -0.04775664582848549,
- -0.01872527413070202,
- 0.007820863276720047,
- -0.14135025441646576,
- 0.0089271804317832,
- 0.010126760229468346,
- -0.0671239122748375,
- 0.0424669124186039,
- 0.23414309322834015,
- 0.026839502155780792,
- 0.02698049135506153,
- -0.11428838223218918,
- 0.040215082466602325,
- 0.033474233001470566,
- -0.11068283021450043,
- -0.06804732233285904,
- 0.03994540125131607,
- -0.026512915268540382,
- -0.013442381285130978,
- -0.02283349819481373,
- -0.02427264302968979,
- 0.04285658523440361,
- 0.03717479109764099,
- -0.09757105261087418,
- 0.030021119862794876,
- -0.00492488918825984,
- 0.035830575972795486,
- 0.07993729412555695,
- -0.10103531181812286,
- 0.05942272022366524,
- 0.0950343981385231,
- 0.06421680003404617,
- -0.005971344653517008,
- -0.07743123918771744,
- -0.09846542775630951,
- -0.035124991089105606,
- -5.5663679906167034e-33,
- 0.05783303081989288,
- -0.08427462726831436,
- 0.007946723140776157,
- 0.028333479538559914,
- -0.09211812168359756,
- 0.02838531881570816,
- 0.02134220488369465,
- -0.06815017014741898,
- -0.060640688985586166,
- 0.04303588718175888,
- -0.03119376115500927,
- -0.009278970770537853,
- -0.04383360594511032,
- -0.05741037800908089,
- 0.026917312294244766,
- -0.003811208065599203,
- -0.03471394255757332,
- 0.07147418707609177,
- -0.022265005856752396,
- 0.044595278799533844,
- -0.02811868116259575,
- -0.0819852277636528,
- -0.02928953617811203,
- 0.03085281141102314,
- 0.04810139909386635,
- 0.10214049369096756,
- 0.01913735829293728,
- -0.028170127421617508,
- 0.05844036489725113,
- 0.044022854417562485,
- -0.038055598735809326,
- 0.007743419613689184,
- -0.10457421094179153,
- -0.0307916272431612,
- -0.012460758909583092,
- 0.06642574816942215,
- -0.014197277836501598,
- -0.044637300074100494,
- 0.004218641202896833,
- -0.08520389348268509,
- 0.04064449295401573,
- 0.04138578101992607,
- -0.047562126070261,
- -0.033533088862895966,
- -0.0027229466941207647,
- -0.06588759273290634,
- 0.015364434570074081,
- 0.02359362691640854,
- 0.05086514353752136,
- -0.04033863544464111,
- -0.04755675420165062,
- -0.04470812901854515,
- -0.029196135699748993,
- -0.06732691824436188,
- -0.0037600367795675993,
- -0.028637956827878952,
- 0.013968994840979576,
- -0.09479875862598419,
- 0.027402503415942192,
- 0.06528954952955246,
- 0.05562838166952133,
- 0.03287229314446449,
- -0.07399971783161163,
- 0.0224989652633667,
- -0.10249660909175873,
- -0.03611617907881737,
- 0.0486978180706501,
- -0.010024959221482277,
- 0.01693948172032833,
- -0.11572424322366714,
- 0.0015670886496081948,
- -0.007581498008221388,
- 0.00954371690750122,
- -0.017233187332749367,
- 0.058706142008304596,
- -0.01166137307882309,
- 0.08837519586086273,
- 0.040850453078746796,
- -0.043938785791397095,
- -0.01079087145626545,
- -0.00026855585747398436,
- 0.0024448323529213667,
- -0.0841648206114769,
- 0.08385540544986725,
- 0.06043272465467453,
- 0.07314065843820572,
- 0.035432834178209305,
- -0.013949004001915455,
- 0.04763384535908699,
- 0.0043008821085095406,
- -0.034917693585157394,
- 0.00030151248211041093,
- 0.0026004642713814974,
- 0.06530392915010452,
- -0.012819402851164341,
- 3.540849430143834e-33,
- -0.01101897656917572,
- 0.01768318936228752,
- 0.008844435214996338,
- 0.05927954614162445,
- 0.04139456897974014,
- -0.05491706728935242,
- 0.009376173838973045,
- 0.026907367631793022,
- -0.04974197968840599,
- -0.0683913454413414,
- -0.006432284601032734,
- -0.009982948191463947,
- 0.08617260307073593,
- -0.005105155985802412,
- 0.07757518440485,
- 0.048996638506650925,
- 0.09180749952793121,
- -0.042442962527275085,
- -0.023114580661058426,
- -0.01821606047451496,
- -0.042891353368759155,
- -0.06963261216878891,
- -0.07106518745422363,
- -0.003677988424897194,
- -0.03647996112704277,
- 0.016778841614723206,
- 0.1307111233472824,
- 0.052171215415000916,
- -0.12189687043428421,
- -0.0537395216524601,
- 0.0298165250569582,
- -0.031057083979249,
- -0.019623173400759697,
- 0.021552255377173424,
- -0.05258753523230553,
- 0.09316670894622803,
- 0.08547887206077576,
- 0.058726776391267776,
- -0.025561705231666565,
- 0.058747921139001846,
- 0.03646499663591385,
- -0.002186264842748642,
- -0.02791808545589447,
- 0.10599196702241898,
- -0.02397780679166317,
- -0.03064984641969204,
- 0.04132276028394699,
- 0.03215450420975685,
- 0.08000727742910385,
- 0.05600743368268013,
- -0.05832721292972565,
- 0.07294891774654388,
- 0.017584189772605896,
- -0.054363589733839035,
- -0.02916894108057022,
- 0.00915546901524067,
- 0.035400327295064926,
- -0.030976509675383568,
- 0.02128962054848671,
- 0.008899595588445663,
- -0.010570082813501358,
- 0.048016101121902466,
- 0.0313134603202343,
- -0.06455660611391068,
- -0.07554616779088974,
- 0.014559369534254074,
- -0.04908650740981102,
- 0.03293569013476372,
- -0.03946450725197792,
- -0.0729292705655098,
- -0.0009021472069434822,
- 0.03417022526264191,
- -0.03002152405679226,
- -0.03409145772457123,
- -0.03302740678191185,
- -0.08613968640565872,
- 0.011045827530324459,
- 0.08418337255716324,
- 0.03212510421872139,
- -0.019344642758369446,
- -0.0982617661356926,
- 0.016440510749816895,
- -0.05518319457769394,
- 0.08101055026054382,
- 0.0035319591406732798,
- -0.022832097485661507,
- 0.07756070047616959,
- -0.05376358702778816,
- 0.027646232396364212,
- -0.07569821923971176,
- -0.027119291946291924,
- -0.0021013470832258463,
- 0.012767805717885494,
- -0.07056966423988342,
- -0.0661456510424614,
- -1.4072742082760215e-8,
- -0.01916487142443657,
- -0.020102383568882942,
- -0.0040400028228759766,
- 0.043244920670986176,
- 0.07983329892158508,
- 0.0010217811213806272,
- -0.013245108537375927,
- 0.02755819819867611,
- -0.020932279527187347,
- -0.07888148725032806,
- 0.10644225776195526,
- 0.025009088218212128,
- 0.04768143594264984,
- -0.060242753475904465,
- 0.027040710672736168,
- -0.024080712348222733,
- 0.010754425078630447,
- -0.03694363683462143,
- -0.10015518218278885,
- 0.021713189780712128,
- -0.006006298121064901,
- 0.01585516519844532,
- 0.025910237804055214,
- -0.0003304381389170885,
- 0.06234195828437805,
- -0.02979067899286747,
- 0.09413192421197891,
- 0.06012832745909691,
- 0.007678544614464045,
- 0.08263200521469116,
- -0.015954740345478058,
- 0.07509706914424896,
- -0.026117905974388123,
- -0.09013161063194275,
- -0.03282967209815979,
- -0.039163656532764435,
- 0.022458208724856377,
- -0.06283867359161377,
- 0.018478505313396454,
- -0.019929969683289528,
- -0.04423043504357338,
- -0.05000850185751915,
- 0.026959490031003952,
- 0.06316683441400528,
- 0.0014237810391932726,
- -0.007418014574795961,
- -0.010565803386271,
- -0.030812885612249374,
- 0.032310280948877335,
- -0.053694456815719604,
- -0.056143615394830704,
- 0.01792912930250168,
- 0.08997863531112671,
- 0.04304654523730278,
- 0.0389338843524456,
- 0.020383302122354507,
- 0.03584553301334381,
- -0.017490562051534653,
- -0.040988825261592865,
- 0.032945290207862854,
- 0.06048966199159622,
- 0.004335714969784021,
- 0.05281089246273041,
- 0.03977150097489357
- ]
- },
- {
- "keyword": "preceding",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.020818538963794708,
- 0.0406867079436779,
- 0.08476325869560242,
- -0.023557467386126518,
- -0.012420250102877617,
- 0.07262448966503143,
- 0.03544638305902481,
- 0.007633518893271685,
- 0.05565795302391052,
- 0.0026863764505833387,
- 0.05170335993170738,
- 0.04757900536060333,
- -0.003928729332983494,
- -0.01663433015346527,
- -0.04212647303938866,
- -0.06410535424947739,
- 0.01598290726542473,
- -0.02248283289372921,
- 0.009060146287083626,
- -0.05601036921143532,
- -0.04314066097140312,
- 0.050084009766578674,
- -0.061327118426561356,
- 0.009316734038293362,
- 0.05566107854247093,
- -0.006433077622205019,
- -0.0018049597274512053,
- 0.06962093710899353,
- 0.13947837054729462,
- 0.006169623229652643,
- -0.07861876487731934,
- 0.029733704403042793,
- 0.09001460671424866,
- -0.030852731317281723,
- -0.0172051340341568,
- -0.03654928505420685,
- 0.0070501877926290035,
- -0.005357487127184868,
- 0.052112728357315063,
- 0.04511495679616928,
- -0.05153166875243187,
- -0.062258411198854446,
- 0.011140354909002781,
- -0.00396611588075757,
- 0.006801552139222622,
- -0.03429151326417923,
- -0.02645414136350155,
- -0.02233065478503704,
- -0.023709025233983994,
- 0.003187173046171665,
- -0.011197102256119251,
- -0.010614300146698952,
- -0.05055566132068634,
- 0.03774423524737358,
- 0.020438669249415398,
- -0.026389330625534058,
- -0.03731564059853554,
- -0.04023415595293045,
- 0.008954111486673355,
- -0.0470120832324028,
- 0.06742745637893677,
- -0.009610715322196484,
- -0.05881712585687637,
- 0.020615439862012863,
- 0.07211405783891678,
- -0.028723644092679024,
- 0.05152389034628868,
- -0.03660663217306137,
- -0.06170913949608803,
- 0.10889875143766403,
- 0.04500318318605423,
- 0.012466582469642162,
- -0.017994841560721397,
- 0.04096086323261261,
- -0.03185848891735077,
- -0.008893344551324844,
- 0.006676211021840572,
- 0.02841835655272007,
- 0.03261502832174301,
- -0.11470558494329453,
- 0.041407156735658646,
- 0.03991537168622017,
- -0.030041703954339027,
- 0.022253163158893585,
- -0.006974345073103905,
- -0.003984509035944939,
- -0.0022013878915458918,
- -0.07331082969903946,
- -0.05730122700333595,
- 0.03962676227092743,
- 0.01675477623939514,
- -0.05435917526483536,
- 0.027338670566678047,
- 0.050608374178409576,
- -0.07408607751131058,
- -0.04458175227046013,
- 0.017248189076781273,
- -0.0747835710644722,
- 0.09657865017652512,
- 0.2691541314125061,
- 0.02692500688135624,
- 0.06324181705713272,
- -0.05143582075834274,
- -0.00179926713462919,
- 0.023643672466278076,
- -0.04879986494779587,
- -0.0914430245757103,
- -0.001175916288048029,
- -0.043724074959754944,
- 0.030771363526582718,
- -0.01905219443142414,
- -0.028339721262454987,
- 0.0032938169315457344,
- -0.022854303941130638,
- -0.008461902849376202,
- 0.028540225699543953,
- 0.1056266576051712,
- 0.05432591214776039,
- 0.04729204252362251,
- -0.024830229580402374,
- 0.10285267978906631,
- 0.04500651732087135,
- 0.01971788890659809,
- 0.03535594791173935,
- -0.07019511610269547,
- -0.09751493483781815,
- -0.008995410986244678,
- -5.300242681746261e-33,
- 0.0472823902964592,
- -0.10704642534255981,
- 0.04843365401029587,
- 0.0003749934840016067,
- -0.043502986431121826,
- 0.050118740648031235,
- -0.05139753967523575,
- -0.046096302568912506,
- -0.09820400178432465,
- 0.013942484743893147,
- -0.07448174059391022,
- 0.004385416861623526,
- 0.004509970545768738,
- -0.0991356372833252,
- -0.03516610711812973,
- -0.03219860792160034,
- 0.039183903485536575,
- 0.0296789538115263,
- -0.026287462562322617,
- 0.008657289668917656,
- -0.05214337632060051,
- -0.006348082795739174,
- -0.003808808047324419,
- -0.005568297114223242,
- 0.041222456842660904,
- 0.049400705844163895,
- 0.009250413626432419,
- -0.09381371736526489,
- -0.008184748701751232,
- 0.00120787404011935,
- -0.0061422777362167835,
- -0.023432886227965355,
- -0.0677301213145256,
- -0.04158805310726166,
- -0.019528495147824287,
- 0.10655483603477478,
- 0.08033327758312225,
- -0.09769035875797272,
- 0.08051980286836624,
- -0.049037788063287735,
- -0.013959012925624847,
- 0.029942726716399193,
- -0.03232400491833687,
- -0.03505130112171173,
- 0.021084843203425407,
- -0.004511252511292696,
- 0.0065527502447366714,
- 0.02249176613986492,
- 0.043115537613630295,
- 0.04408349096775055,
- -0.03573611378669739,
- -0.015478311106562614,
- 0.020996984094381332,
- -0.056044429540634155,
- -0.04450187832117081,
- -0.035420868545770645,
- -0.03896832466125488,
- 0.011279587633907795,
- 0.011412582360208035,
- 0.027491210028529167,
- 0.05576997995376587,
- 0.012094434350728989,
- -0.07439838349819183,
- 0.09348727762699127,
- -0.0746702328324318,
- -0.022735679522156715,
- -0.005312448833137751,
- -0.025848006829619408,
- 0.05729899927973747,
- -0.038607582449913025,
- -0.07020928710699081,
- -0.040412258356809616,
- 0.019083548337221146,
- 0.029411667957901955,
- 0.05082843452692032,
- -0.023990284651517868,
- -0.007837225683033466,
- 0.03577782213687897,
- -0.016170891001820564,
- -0.05478312820196152,
- -0.08682215213775635,
- 0.00396913755685091,
- -0.015079843811690807,
- 0.029504382982850075,
- -0.0008455273346044123,
- 0.042622629553079605,
- 0.08415517210960388,
- -0.02244667150080204,
- 0.039620108902454376,
- -0.036363910883665085,
- -0.05619356408715248,
- -0.01767113246023655,
- -0.05807173624634743,
- 0.11990376561880112,
- 0.01420745998620987,
- 3.596760716914742e-33,
- 0.03146068751811981,
- 0.035812824964523315,
- 0.04393309727311134,
- -0.022511692717671394,
- 0.0158702302724123,
- -0.0550222285091877,
- 0.04997139424085617,
- -0.03368636965751648,
- -0.021022235974669456,
- -0.02665066160261631,
- 0.03846272826194763,
- -0.03447086736559868,
- -0.004303196910768747,
- -0.016179511323571205,
- 0.030783692374825478,
- 0.06540735065937042,
- 0.018192876130342484,
- -0.08097878098487854,
- -0.03886827826499939,
- 0.028757639229297638,
- -0.009552223607897758,
- -0.03146173432469368,
- -0.01355260144919157,
- -0.032516613602638245,
- -0.034362372010946274,
- 0.02916501648724079,
- 0.1189245656132698,
- 0.08826319128274918,
- -0.11048568785190582,
- -0.03680180758237839,
- 0.020106974989175797,
- -0.0687420442700386,
- 0.05490227788686752,
- 0.027611777186393738,
- -0.04336478188633919,
- 0.05617881566286087,
- 0.06749650090932846,
- -0.0494917668402195,
- -0.022471191361546516,
- 0.06252781301736832,
- 0.05530674755573273,
- 0.05803569033741951,
- 0.10934507846832275,
- 0.09015104919672012,
- 0.004066876135766506,
- 0.0035022608935832977,
- 0.01131594181060791,
- 0.060577984899282455,
- 0.05248172581195831,
- 0.025270838290452957,
- -0.07690417766571045,
- 0.035651400685310364,
- -0.008137584663927555,
- 0.005862520541995764,
- -0.04251478239893913,
- 0.07540154457092285,
- 0.010615666396915913,
- -0.006347774527966976,
- -0.01642141118645668,
- -0.03343582525849342,
- 0.02303355559706688,
- 0.033909931778907776,
- 0.04505379870533943,
- -0.0843886286020279,
- 0.023521577939391136,
- -0.017614521086215973,
- -0.055580731481313705,
- -0.014806291088461876,
- 0.0448770634829998,
- -0.12919270992279053,
- -0.026430994272232056,
- 0.08179683238267899,
- -0.08576284348964691,
- -0.09012629836797714,
- 0.02336196042597294,
- -0.018832387402653694,
- -0.06935080885887146,
- 0.03697584569454193,
- 0.017913546413183212,
- -0.07101384550333023,
- -0.08913613110780716,
- 0.040955569595098495,
- 0.0018348506418988109,
- 0.035994838923215866,
- -0.047850169241428375,
- -0.01643112115561962,
- 0.07196594774723053,
- -0.023204222321510315,
- 0.013326124288141727,
- -0.012942064553499222,
- 0.0093819759786129,
- 0.01988675259053707,
- 0.0013628302840515971,
- -0.04601554200053215,
- -0.018707843497395515,
- -1.3023426781444414e-8,
- -0.060618482530117035,
- -0.021372545510530472,
- -0.04474574699997902,
- 0.03647659346461296,
- 0.12033238261938095,
- -0.0079570934176445,
- 0.052647337317466736,
- -0.021237917244434357,
- -0.0022743544541299343,
- -0.018588319420814514,
- 0.04780082777142525,
- 0.004828290082514286,
- 0.05966014042496681,
- -0.06725125759840012,
- 0.023657429963350296,
- -0.006706188898533583,
- 0.00462274020537734,
- -0.10434363782405853,
- -0.09486955404281616,
- -0.012612360529601574,
- -0.014497634954750538,
- 0.07764112204313278,
- -0.031478848308324814,
- -0.010205734521150589,
- -0.004092381801456213,
- 0.05380828678607941,
- -0.014364246279001236,
- -0.02630852721631527,
- 0.012337266467511654,
- 0.04682118073105812,
- 0.05622503161430359,
- 0.13633665442466736,
- -0.009400743991136551,
- -0.08407716453075409,
- -0.0768985003232956,
- 0.050784654915332794,
- 0.04700649902224541,
- 0.014015543274581432,
- 0.0028866075444966555,
- -0.06086219102144241,
- -0.04199324548244476,
- -0.07186837494373322,
- 0.020487738773226738,
- -0.017117222771048546,
- 0.0067236111499369144,
- -0.0750911682844162,
- -0.018400946632027626,
- -0.01198405958712101,
- -0.02179819345474243,
- -0.09967224299907684,
- 0.009962784126400948,
- -0.018918493762612343,
- 0.08406689763069153,
- 0.05603225529193878,
- 0.07384683936834335,
- 0.027197906747460365,
- 0.013195526786148548,
- 0.048247065395116806,
- -0.06332054734230042,
- 0.0797359049320221,
- 0.07277406007051468,
- -0.020921116694808006,
- 0.09629566222429276,
- 0.06788408011198044
- ]
- },
- {
- "keyword": "earlier than",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.01619054190814495,
- 0.023412223905324936,
- -0.0141966687515378,
- 0.02422729879617691,
- 0.0043787225149571896,
- 0.010325152426958084,
- -0.028478890657424927,
- 0.10519414395093918,
- 0.035132382065057755,
- 0.008442698046565056,
- 0.026325445622205734,
- 0.10129810869693756,
- 0.028987377882003784,
- 0.0930614173412323,
- 0.0356856994330883,
- 0.02577253244817257,
- 0.06236008182168007,
- -0.10877324640750885,
- -0.03470968082547188,
- -0.06336022913455963,
- -0.018515922129154205,
- 0.007517123129218817,
- -0.012486450374126434,
- 0.005839756689965725,
- 0.08627615869045258,
- -0.045015741139650345,
- -0.02706187032163143,
- 0.011597302742302418,
- 0.08879999071359634,
- 0.02023918926715851,
- -0.010277981869876385,
- -0.07067874819040298,
- 0.039894767105579376,
- 0.005113325547426939,
- -0.05522384122014046,
- -0.018376285210251808,
- 0.0477127879858017,
- 0.02331588789820671,
- 0.007451174780726433,
- -0.006710459943860769,
- -0.06562049686908722,
- -0.11759994924068451,
- -0.048370636999607086,
- -0.002771529136225581,
- -0.02667432650923729,
- 0.03269936516880989,
- 0.044189270585775375,
- -0.0028147862758487463,
- 0.057863686233758926,
- 0.016291126608848572,
- -0.052549153566360474,
- 0.033757828176021576,
- 0.019268983975052834,
- -0.07507321983575821,
- 0.028362546116113663,
- 0.11357381194829941,
- -0.05533516779541969,
- 0.03906978294253349,
- 0.05582953616976738,
- 0.009808187372982502,
- -0.011360599659383297,
- -0.052655305713415146,
- -0.07031187415122986,
- -0.0075995479710400105,
- 0.020698998123407364,
- -0.011665317229926586,
- 0.061291955411434174,
- -0.06045966222882271,
- 0.05005452036857605,
- 0.06120318919420242,
- -0.0062461248598992825,
- 0.04254944622516632,
- -0.014628167264163494,
- -0.0996742993593216,
- 0.03181752189993858,
- 0.05634026601910591,
- 0.01110315416008234,
- 0.04187586158514023,
- 0.015074161812663078,
- -0.12829425930976868,
- -0.07209271937608719,
- 0.030404239892959595,
- -0.01639474369585514,
- 0.07509788125753403,
- -0.002153334440663457,
- 0.01283276453614235,
- -0.052315354347229004,
- 0.013761459849774837,
- -0.03676632046699524,
- -0.0057748151011765,
- 0.0659089982509613,
- 0.05273794010281563,
- 0.017044590786099434,
- 0.07633310556411743,
- -0.05446987971663475,
- -0.04326979070901871,
- 0.012626067735254765,
- 0.037138402462005615,
- 0.061354078352451324,
- 0.2317674458026886,
- 0.001747740083374083,
- 0.02274034544825554,
- -0.0186550822108984,
- 0.008659346029162407,
- 0.09307495504617691,
- -0.04546067491173744,
- -0.046678073704242706,
- 0.048573195934295654,
- -0.051607754081487656,
- 0.006324097514152527,
- -0.030902933329343796,
- -0.022643037140369415,
- -0.0005624449113383889,
- -0.01134080346673727,
- -0.02840658836066723,
- -0.03032838925719261,
- 0.019965728744864464,
- 0.015427890233695507,
- 0.02245846949517727,
- -0.05923546478152275,
- 0.060710445046424866,
- 0.04920369014143944,
- 0.002449258230626583,
- -0.016801055520772934,
- -0.060238756239414215,
- 0.021731004118919373,
- -0.016179941594600677,
- -1.8022280820753986e-33,
- 0.010734567418694496,
- -0.059436410665512085,
- -0.006948146503418684,
- -0.05490417033433914,
- -0.03647947683930397,
- -0.014153998345136642,
- 0.05916754901409149,
- -0.08074727654457092,
- -0.042032547295093536,
- -0.027369357645511627,
- -0.048211853951215744,
- -0.0829896330833435,
- -0.08884943276643753,
- -0.1279793381690979,
- -0.005037201102823019,
- -0.0562671534717083,
- -0.0012496032286435366,
- -0.03416195884346962,
- 0.020101720467209816,
- -0.01792011223733425,
- -0.0031410958617925644,
- -0.16119109094142914,
- -0.007947825826704502,
- 0.03358188271522522,
- 0.025321410968899727,
- 0.03478292375802994,
- -0.03402508795261383,
- -0.03468490391969681,
- -0.006838616915047169,
- 0.016876855865120888,
- 0.0014820675132796168,
- -0.05085686594247818,
- -0.08027517795562744,
- 0.0022650491446256638,
- 0.022895244881510735,
- 0.06416110694408417,
- 0.010826872661709785,
- -0.09883404523134232,
- 0.01785920187830925,
- -0.12855704128742218,
- 0.07637149840593338,
- 0.06084131449460983,
- -0.02864140458405018,
- -0.09652861952781677,
- 0.06051584333181381,
- 0.04156016930937767,
- -0.023459553718566895,
- 0.02707594260573387,
- 0.005650028120726347,
- -0.0076000080443918705,
- 0.033708635717630386,
- 0.0255353432148695,
- -0.0627644881606102,
- -0.02850094810128212,
- 0.0287568811327219,
- -0.016112247481942177,
- 0.021977189928293228,
- -0.051669493317604065,
- 0.03507857397198677,
- 0.04328373819589615,
- 0.0764496698975563,
- 0.059747692197561264,
- 0.029067305848002434,
- -0.09076263010501862,
- -0.04572931304574013,
- -0.018266143277287483,
- 0.09367317706346512,
- -0.002628323854878545,
- -0.0092276306822896,
- -0.005242594517767429,
- 0.02228444442152977,
- 0.06401218473911285,
- -0.04361550882458687,
- -0.0262743029743433,
- 0.028125274926424026,
- -0.036698825657367706,
- 0.04351070523262024,
- 0.020348871126770973,
- 0.030104825273156166,
- 0.05404474958777428,
- 0.01954384334385395,
- 0.011125213466584682,
- -0.03546562418341637,
- 0.08266862481832504,
- 0.014771874994039536,
- -0.014005723409354687,
- 0.08392076939344406,
- 0.08112891018390656,
- 0.05728708952665329,
- -0.03890931233763695,
- -0.0739961639046669,
- -0.027428505942225456,
- 0.05259948968887329,
- 0.038168203085660934,
- -0.022053372114896774,
- 2.1503852642179745e-33,
- 0.024623891338706017,
- 0.004543199669569731,
- -0.003416248830035329,
- 0.049424707889556885,
- -0.01668725535273552,
- -0.062238000333309174,
- 0.051159560680389404,
- 0.10803718864917755,
- -0.06532982736825943,
- 0.005423882510513067,
- 0.02080666273832321,
- 0.0308950487524271,
- 0.127596914768219,
- -0.03859900310635567,
- 0.12822765111923218,
- 0.0688098892569542,
- 0.07422657310962677,
- -0.017925843596458435,
- -0.012381955981254578,
- 0.006999074947088957,
- -0.052221138030290604,
- 0.04761751741170883,
- 0.0021900373976677656,
- 0.028987085446715355,
- -0.028949281200766563,
- 0.011600080877542496,
- 0.15215003490447998,
- 0.05188879743218422,
- -0.06769367307424545,
- -0.07197753340005875,
- 0.0288599394261837,
- -0.041847921907901764,
- 0.01058234740048647,
- 0.056408826261758804,
- -0.015153161250054836,
- 0.029277943074703217,
- -0.046703699976205826,
- -0.020978813990950584,
- -0.0241109449416399,
- 0.006096878554672003,
- -0.007140604313462973,
- 0.02254144288599491,
- -0.0832352563738823,
- 0.14557290077209473,
- -0.03145510330796242,
- -0.018753066658973694,
- 0.02160380594432354,
- 0.017159366980195045,
- 0.0683329626917839,
- 0.07695087045431137,
- -0.03768816962838173,
- 0.03361276909708977,
- 0.0443122461438179,
- -0.0005080894334241748,
- -0.01622694730758667,
- -0.029196256771683693,
- 0.02218089997768402,
- -0.024903247132897377,
- 0.012337325140833855,
- -0.0017526280134916306,
- 0.02163311466574669,
- 0.03245888277888298,
- -0.004211022984236479,
- -0.03995966166257858,
- -0.05765240639448166,
- 0.011107731610536575,
- -0.05782245099544525,
- 0.021368926391005516,
- 0.010276615619659424,
- -0.016916317865252495,
- 0.023440362885594368,
- -0.0039222631603479385,
- -0.09133788198232651,
- 0.021949490532279015,
- -0.0727984607219696,
- -0.02142481878399849,
- -0.05785895138978958,
- 0.038811832666397095,
- 0.02021799609065056,
- -0.10427246987819672,
- -0.12178447097539902,
- 0.007632796186953783,
- -0.001501785241998732,
- -0.0018609019462019205,
- 0.007187738083302975,
- -0.00045465712901204824,
- 0.06068596988916397,
- -0.045283012092113495,
- 0.04729383811354637,
- -0.058878958225250244,
- 0.0032268783543258905,
- -0.0599120631814003,
- -0.0051288544200360775,
- 0.042191602289676666,
- -0.03077658638358116,
- -1.4577145712735273e-8,
- 0.03154006600379944,
- 0.06660144031047821,
- -0.009568753652274609,
- 0.030518068000674248,
- 0.040887750685214996,
- 0.09360796958208084,
- 0.03532237559556961,
- -0.01668514870107174,
- -0.014073633588850498,
- -0.07697725296020508,
- 0.09547587484121323,
- -0.012968258932232857,
- 0.06481269747018814,
- -0.019052062183618546,
- 0.051394928246736526,
- -0.03160688653588295,
- -0.054648205637931824,
- -0.09456367790699005,
- 0.004482479766011238,
- -0.0099805798381567,
- -0.015945138409733772,
- 0.017291808500885963,
- 0.008319446817040443,
- -0.08981280028820038,
- 0.03173162415623665,
- 0.006296210456639528,
- -0.09164635837078094,
- 0.06908635050058365,
- -0.07534392923116684,
- 0.048846159130334854,
- 0.037224821746349335,
- 0.12531302869319916,
- -0.014454927295446396,
- -0.061888571828603745,
- -0.0212971493601799,
- 0.009087987244129181,
- 0.010415665805339813,
- 0.06678670644760132,
- -0.02658332884311676,
- -0.007889722473919392,
- -0.049607016146183014,
- -0.04851697385311127,
- -0.028351325541734695,
- -0.011025729589164257,
- 0.030851801857352257,
- 0.03395787253975868,
- -0.047477979212999344,
- -0.020137734711170197,
- 0.02082407847046852,
- -0.08392976224422455,
- -0.027146458625793457,
- 0.020752403885126114,
- 0.03672029450535774,
- -0.006011010147631168,
- 0.09605111926794052,
- -0.008037952706217766,
- -0.006870667450129986,
- -0.04876985028386116,
- -0.07748446613550186,
- 0.03884958475828171,
- 0.07588393241167068,
- -0.021672282367944717,
- 0.011526799760758877,
- 0.025088991969823837
- ]
- },
- {
- "keyword": "before",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.043283965438604355,
- 0.0011160755529999733,
- -0.03382445126771927,
- 0.05012377351522446,
- -0.033575884997844696,
- 0.03159027546644211,
- 0.06597558408975601,
- 0.023230653256177902,
- 0.009306306019425392,
- -0.01439144928008318,
- 0.028781648725271225,
- 0.11645013093948364,
- 0.025121962651610374,
- 0.02251533977687359,
- -0.013599845580756664,
- 0.029365723952651024,
- 0.021946927532553673,
- -0.04199451580643654,
- -0.06021448224782944,
- -0.04749399423599243,
- 0.018182585015892982,
- -0.007552689407020807,
- -0.020893462002277374,
- 0.006289794575423002,
- 0.0498063750565052,
- -0.06852516531944275,
- -0.0010723568266257644,
- 0.08185324817895889,
- 0.1550789773464203,
- -0.04313668608665466,
- -0.011636059731245041,
- -0.025505078956484795,
- 0.060487352311611176,
- 0.0444260910153389,
- -0.060871727764606476,
- 0.0720323771238327,
- 0.05052335187792778,
- -0.012508810497820377,
- 0.02867925353348255,
- 0.030494065955281258,
- -0.03440393880009651,
- -0.13363862037658691,
- -0.04937713220715523,
- -0.054454606026411057,
- 0.05139760300517082,
- -0.00945472251623869,
- 0.08672819286584854,
- 0.009358048439025879,
- 0.08935835212469101,
- 0.024055643007159233,
- -0.02003522403538227,
- -0.027509639039635658,
- 0.017189709469676018,
- -0.02039073407649994,
- 0.0116705521941185,
- 0.07173797488212585,
- -0.01449799444526434,
- 0.05978795886039734,
- -0.002109346678480506,
- 0.010177511721849442,
- 0.03342816233634949,
- 0.004098911304026842,
- -0.09769055992364883,
- 0.007005002815276384,
- 0.026244886219501495,
- 0.0026491647586226463,
- 0.019098592922091484,
- 0.03494466841220856,
- 0.04585469514131546,
- 0.0640384778380394,
- 0.015450824983417988,
- 0.0457487627863884,
- 0.005863983649760485,
- -0.06286205351352692,
- 0.017303740605711937,
- 0.02788575552403927,
- -0.014338508248329163,
- -0.03214103356003761,
- -0.0013225468574091792,
- -0.0848926454782486,
- -0.04670706391334534,
- 0.07236416637897491,
- -0.06377474963665009,
- 0.06260239332914352,
- -0.009654604829847813,
- 0.028589727357029915,
- -0.01721159741282463,
- -0.09208524972200394,
- -0.07921695709228516,
- 0.01358191017061472,
- 0.01964636519551277,
- 0.05510564148426056,
- 0.027296114712953568,
- 0.022671960294246674,
- -0.07082900404930115,
- -0.045533813536167145,
- 0.003652834566310048,
- -0.007626629900187254,
- -0.015862373635172844,
- 0.28051453828811646,
- 0.03874649479985237,
- 0.006837644148617983,
- 0.02399863861501217,
- 0.024395287036895752,
- 0.0828574150800705,
- -0.06621378660202026,
- -0.05718183144927025,
- 0.06553702801465988,
- 0.0011961470590904355,
- 0.0661417543888092,
- 0.007479692809283733,
- -0.017187844961881638,
- 0.029380319640040398,
- 0.014086504466831684,
- -0.035671401768922806,
- -0.0621919147670269,
- -0.005325557664036751,
- 0.026981212198734283,
- 0.01330949179828167,
- -0.04199540987610817,
- 0.10378576815128326,
- 0.0787777304649353,
- 0.016047419980168343,
- -0.013878840021789074,
- -0.038221366703510284,
- -0.06871742010116577,
- 0.023178808391094208,
- -3.44867744872792e-33,
- 0.025907577946782112,
- -0.08272770792245865,
- 0.010066336020827293,
- 0.03802848979830742,
- -0.05943997949361801,
- 0.04807913675904274,
- 0.07410738617181778,
- -0.07073646783828735,
- -0.07189048826694489,
- 0.020920369774103165,
- 0.013205359689891338,
- 0.002536322455853224,
- -0.026160020381212234,
- -0.08262615650892258,
- 0.019537726417183876,
- -0.001860335236415267,
- -0.001109933597035706,
- -0.05081385001540184,
- -0.01247404981404543,
- 0.03521763160824776,
- -0.04339087754487991,
- -0.031001722440123558,
- 0.018881909549236298,
- 0.07228806614875793,
- 0.019642047584056854,
- 0.07278186827898026,
- -0.02941037528216839,
- -0.10147415846586227,
- 0.04839838296175003,
- 0.03295338898897171,
- -0.04279026761651039,
- -0.02485155500471592,
- -0.12153689563274384,
- -0.003253389848396182,
- -0.03075738623738289,
- 0.07743684947490692,
- 0.017186421900987625,
- -0.09489404410123825,
- -0.0329580083489418,
- -0.0898049920797348,
- 0.02081333100795746,
- 0.04211850464344025,
- -0.02839656174182892,
- -0.02435295656323433,
- 0.034293994307518005,
- 0.033736687153577805,
- -0.025239011272788048,
- 0.009478908963501453,
- -0.031128764152526855,
- -0.027184002101421356,
- 0.02345120906829834,
- -0.014978787861764431,
- -0.0047537838108837605,
- 0.01813066564500332,
- -0.021881213411688805,
- -0.005427625495940447,
- 0.004493054933845997,
- -0.10717346519231796,
- 0.008776546455919743,
- 0.016026485711336136,
- 0.02275753766298294,
- 0.02123953402042389,
- -0.01152441743761301,
- -0.022087249904870987,
- -0.06737297773361206,
- -0.012184444814920425,
- 0.04070993512868881,
- -0.02056894078850746,
- -0.015787050127983093,
- -0.08325102180242538,
- 0.00018930257647298276,
- 0.03967483341693878,
- -0.011563210748136044,
- 0.06396271288394928,
- 0.031226078048348427,
- -0.06673137843608856,
- 0.02694648690521717,
- 0.06287285685539246,
- -0.02158917300403118,
- -0.0080575505271554,
- 0.02088579721748829,
- -0.022286152467131615,
- -0.03652555122971535,
- 0.018536094576120377,
- 0.056627947837114334,
- 0.031239818781614304,
- 0.05532053858041763,
- -0.018314847722649574,
- -0.004497652407735586,
- -0.011513619683682919,
- -0.012968209572136402,
- 0.03585132956504822,
- 0.03335466980934143,
- 0.004946273285895586,
- -0.01838354393839836,
- 2.611685798008111e-33,
- -0.004478266462683678,
- 0.051970016211271286,
- -0.00770464027300477,
- 0.08060076832771301,
- -0.014378520660102367,
- -0.07953198254108429,
- 0.0932576134800911,
- 0.07514484971761703,
- -0.05077281594276428,
- -0.034615132957696915,
- -0.029773034155368805,
- -0.08776411414146423,
- 0.0961499735713005,
- -0.04035958647727966,
- 0.0986928939819336,
- 0.08139579743146896,
- 0.11006473004817963,
- -0.08813346922397614,
- 0.0014294511638581753,
- -0.00969224888831377,
- -0.10120193660259247,
- 0.0020407771226018667,
- -0.0091460095718503,
- 0.04364394769072533,
- -0.016458649188280106,
- 0.04099680110812187,
- 0.14077793061733246,
- 0.04390242323279381,
- -0.011651840060949326,
- -0.05209428817033768,
- 0.06004658713936806,
- -0.006831582169979811,
- -0.013549940660595894,
- 0.06845185905694962,
- 0.019507722929120064,
- 0.07780449837446213,
- 0.035303305834531784,
- -0.02315148152410984,
- -0.0301430094987154,
- 0.007640168536454439,
- 0.02211569994688034,
- 0.03625231608748436,
- -0.07598768174648285,
- 0.0932919830083847,
- -0.04738523066043854,
- -0.06836124509572983,
- 0.013912494294345379,
- 0.02056492678821087,
- 0.09902373701334,
- 0.0684504508972168,
- -0.04853697866201401,
- 0.030514659360051155,
- -0.0029412221629172564,
- -0.04163440689444542,
- -0.020790614187717438,
- -0.003938769455999136,
- -0.03880660608410835,
- 0.04237403720617294,
- 0.048487674444913864,
- -0.014452729374170303,
- -0.021250078454613686,
- -0.028155097737908363,
- -0.03518996760249138,
- -0.024876920506358147,
- -0.07295206934213638,
- 0.045075349509716034,
- -0.051457375288009644,
- 0.04647280275821686,
- 0.022342782467603683,
- -0.08020149171352386,
- -0.08203363418579102,
- 0.007141073700040579,
- -0.1331002414226532,
- -0.007476506754755974,
- -0.10283961147069931,
- -0.015275198966264725,
- -0.055154819041490555,
- 0.018198026344180107,
- -0.01283976249396801,
- -0.07680932432413101,
- -0.14242039620876312,
- -0.011651916429400444,
- -0.03624466806650162,
- -0.02462177723646164,
- 0.030107032507658005,
- -0.03446049615740776,
- 0.09277389943599701,
- 0.017441801726818085,
- 0.008966951631009579,
- -0.06647215783596039,
- 0.0006863485323265195,
- -0.041176240891218185,
- -0.006006663199514151,
- 0.021318858489394188,
- -0.006944332271814346,
- -1.267930116455318e-8,
- -0.022987546399235725,
- 0.03111695684492588,
- 0.007700769696384668,
- 0.07309796661138535,
- 0.026560693979263306,
- 0.06446248292922974,
- -0.003897702554240823,
- 0.01587819866836071,
- -0.022756926715373993,
- -0.0895887091755867,
- 0.06248514726758003,
- 0.050874631851911545,
- 0.01901443488895893,
- -0.007264282554388046,
- 0.0319015271961689,
- -0.06896519660949707,
- -0.04190542548894882,
- -0.06706595420837402,
- -0.06263460218906403,
- 0.03450857475399971,
- -0.020951762795448303,
- 0.028031323105096817,
- -0.003952035214751959,
- -0.04342735931277275,
- 0.034503430128097534,
- 0.004466702695935965,
- -0.03590579330921173,
- 0.0647878423333168,
- -0.009987130761146545,
- 0.04878174141049385,
- -0.030259722843766212,
- 0.09331303834915161,
- -0.04936337471008301,
- -0.023557156324386597,
- -0.06665195524692535,
- -0.07595871388912201,
- -0.0010831664549186826,
- 0.02871061861515045,
- -0.0009719674126245081,
- -0.014255505986511707,
- -0.03622321039438248,
- 0.03823254257440567,
- 0.016086550429463387,
- -0.037574347108602524,
- -0.0323297381401062,
- 0.06188478693366051,
- -0.039853665977716446,
- -0.005231872666627169,
- 0.037830594927072525,
- -0.08889751881361008,
- -0.030805911868810654,
- 0.06749711185693741,
- 0.041242681443691254,
- 0.014827209524810314,
- 0.11825212091207504,
- 0.011075850576162338,
- 0.03618285059928894,
- -0.013950769789516926,
- -0.049367792904376984,
- 0.0589635968208313,
- 0.12263098359107971,
- 0.021323254331946373,
- 0.028390657156705856,
- 0.015524858608841896
- ]
- },
- {
- "keyword": "succeeds",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.015330012887716293,
- 0.07295273244380951,
- 0.054889339953660965,
- 0.00056850491091609,
- -0.04583309590816498,
- -0.04723498597741127,
- 0.07284315675497055,
- 0.011923876591026783,
- -0.0074042268097400665,
- -0.032637886703014374,
- 0.016044728457927704,
- -0.00561129255220294,
- 0.058357030153274536,
- 0.046414755284786224,
- -0.013131672516465187,
- 0.04096483439207077,
- -0.014132091775536537,
- 0.025252116844058037,
- -0.02109176479279995,
- -0.029525157064199448,
- -0.1298391968011856,
- 0.0231937263160944,
- -0.017639579251408577,
- -0.02402411215007305,
- -0.0405568890273571,
- 0.04676369950175285,
- -0.06525002419948578,
- -0.02412640117108822,
- -0.013176696375012398,
- -0.058236781507730484,
- 0.025905927643179893,
- -0.09373105317354202,
- -0.025933025404810905,
- -0.006568216253072023,
- 0.06974978744983673,
- 0.05168642848730087,
- -0.015843568369746208,
- -0.02100524492561817,
- -0.031400639563798904,
- -0.05420784279704094,
- 0.0034966496750712395,
- -0.08198019117116928,
- 0.0013364702463150024,
- 0.04701565206050873,
- -0.022450322285294533,
- 0.003598492592573166,
- 0.010582773946225643,
- 0.02357434295117855,
- -0.01847393438220024,
- -0.026374975219368935,
- -0.06205885857343674,
- 0.03213625028729439,
- 0.015918374061584473,
- -0.023386402055621147,
- 0.007583923172205687,
- 0.061171628534793854,
- -0.03599994629621506,
- 0.04848041385412216,
- 0.05650470033288002,
- -0.05580691620707512,
- 0.10165008157491684,
- 0.06357673555612564,
- -0.09858619421720505,
- 0.03687664866447449,
- 0.0576917864382267,
- -0.016954386606812477,
- 0.016313187777996063,
- -0.11036936193704605,
- -0.11212437599897385,
- 0.02105746790766716,
- 0.0399189330637455,
- 0.015424595214426517,
- -0.04153715446591377,
- 0.09753882139921188,
- 0.01734016463160515,
- 0.011684012599289417,
- 0.010897667147219181,
- -0.019546426832675934,
- 0.08794133365154266,
- 0.012981670908629894,
- -0.04936815798282623,
- 0.021009620279073715,
- -0.015440684743225574,
- 0.031260862946510315,
- -0.014928548596799374,
- 0.0045033604837954044,
- 0.02814127504825592,
- -0.0012780504766851664,
- -0.025418857112526894,
- -0.057447463274002075,
- -0.06059107184410095,
- -0.0257108137011528,
- 0.028790904209017754,
- 0.006758145522326231,
- -0.03827428072690964,
- -0.008794473484158516,
- 0.03715886175632477,
- -0.048400331288576126,
- -0.05996955931186676,
- 0.2793179452419281,
- -0.008419627323746681,
- 0.01670927368104458,
- -0.01777753233909607,
- -0.11808060109615326,
- 0.036143966019153595,
- -0.03503750264644623,
- -0.03843999654054642,
- 0.026262741535902023,
- 0.0005992621299810708,
- -0.00905404333025217,
- -0.05232498049736023,
- -0.06259976327419281,
- 0.013277508318424225,
- 0.10062725096940994,
- 0.05783044174313545,
- 0.044057976454496384,
- -0.020964263007044792,
- 0.06776102632284164,
- -0.020815392956137657,
- -0.06385553628206253,
- -0.01923307590186596,
- 0.036025289446115494,
- 0.030273905023932457,
- 0.01057602372020483,
- -0.026373248547315598,
- -0.05924717336893082,
- 0.05276591703295708,
- -7.170731537102917e-33,
- -0.008395051583647728,
- -0.06219921261072159,
- 0.02845345251262188,
- 0.11829253286123276,
- 0.017526349052786827,
- 0.029676703736186028,
- -0.02579565905034542,
- 0.02858908474445343,
- -0.015871599316596985,
- -0.029379840940237045,
- -0.03634290397167206,
- 0.01431023795157671,
- 0.01936226338148117,
- 0.007599689066410065,
- 0.09340554475784302,
- 0.05336293205618858,
- 0.08339245617389679,
- -0.02321651019155979,
- -0.02852264605462551,
- 0.04058530181646347,
- -0.015904268249869347,
- 0.01988958939909935,
- 0.058616772294044495,
- 0.001474099699407816,
- -0.04981221631169319,
- -0.04029460996389389,
- 0.030802879482507706,
- -0.01933799311518669,
- 0.018652617931365967,
- 0.03556402772665024,
- 0.022851621732115746,
- -0.049445074051618576,
- -0.07908876985311508,
- 0.033244602382183075,
- -0.0418761745095253,
- 0.0075021362863481045,
- -0.009555719792842865,
- -0.06718646734952927,
- -0.027568189427256584,
- -0.0058578080497682095,
- -0.06895547360181808,
- -0.03277595713734627,
- -0.10110795497894287,
- 0.01327540073543787,
- 0.07522208243608475,
- 0.013481981121003628,
- 0.09704361855983734,
- -0.009049598127603531,
- 0.10707592964172363,
- 0.028573472052812576,
- 0.010179867967963219,
- 0.016609663143754005,
- -0.017094451934099197,
- -0.01662546955049038,
- 0.02334381453692913,
- -0.023240111768245697,
- 0.008588758297264576,
- 0.029175929725170135,
- 0.0049855452962219715,
- -0.026093697175383568,
- 0.06352183222770691,
- -0.049186453223228455,
- -0.14536221325397491,
- 0.04240426793694496,
- -0.07668377459049225,
- 0.019826630130410194,
- 0.06106077507138252,
- -0.08277928084135056,
- -0.005134352017194033,
- 0.016228241845965385,
- -0.021020986139774323,
- -0.033977359533309937,
- 0.08883903920650482,
- 0.044760242104530334,
- -0.0039902846328914165,
- -0.04420394077897072,
- -0.014071691781282425,
- -0.019140738993883133,
- 0.06988154351711273,
- -0.022455407306551933,
- 0.04826691746711731,
- -0.04870154336094856,
- -0.04120819270610809,
- -0.0012113776756450534,
- 0.09475808590650558,
- 0.04643379896879196,
- 0.02192896045744419,
- -0.13924148678779602,
- -0.02929762564599514,
- -0.01554079633206129,
- -0.02847362495958805,
- -0.009203902445733547,
- 0.003649325342848897,
- 0.089619942009449,
- -0.07340466976165771,
- 5.959251998124098e-33,
- 0.0059675718657672405,
- -0.005699244327843189,
- 0.0015693225432187319,
- 0.0669725239276886,
- -0.013593437150120735,
- -0.02484859898686409,
- -0.001973670208826661,
- -0.0334571972489357,
- -0.02554032951593399,
- 0.015432658605277538,
- 0.061405520886182785,
- 0.026162000373005867,
- 0.01576511561870575,
- 0.0806041955947876,
- -0.04093338921666145,
- -0.04623166471719742,
- 0.0830613523721695,
- -0.10675360262393951,
- -0.04866859316825867,
- 0.02666652575135231,
- 0.005285173654556274,
- 0.013627407141029835,
- 0.014979301951825619,
- 0.018669337034225464,
- -0.01560299750417471,
- 0.05161692947149277,
- 0.05615577846765518,
- 0.03762701898813248,
- -0.05065548047423363,
- -0.054106924682855606,
- 0.1359468549489975,
- -0.001406409777700901,
- -0.10881320387125015,
- -0.03807005286216736,
- 0.052057500928640366,
- 0.07184901833534241,
- 0.08881235122680664,
- 0.020033996552228928,
- -0.04044094681739807,
- 0.014621581882238388,
- 0.07236097007989883,
- -0.043442826718091965,
- 0.017122553661465645,
- 0.09106241166591644,
- 0.002236811676993966,
- 0.04569912701845169,
- 0.11519397795200348,
- -0.03354986011981964,
- 0.03252461552619934,
- 0.02685760147869587,
- 0.009573881514370441,
- 0.01335869450122118,
- 0.003014105139300227,
- -0.004503669682890177,
- 0.04574679210782051,
- -0.005068539176136255,
- 0.029065769165754318,
- -0.03956836462020874,
- -0.03280661255121231,
- -0.010604328475892544,
- -0.06103305518627167,
- -0.011103549040853977,
- 0.015710817649960518,
- 0.057666145265102386,
- 0.007438968401402235,
- -0.04224976897239685,
- -0.050103992223739624,
- 0.0816112607717514,
- 0.08626969158649445,
- 0.02601964958012104,
- 0.0652405172586441,
- 0.06647603213787079,
- -0.05294177308678627,
- -0.05626342445611954,
- 0.03778071701526642,
- 0.018804796040058136,
- -0.04986828938126564,
- 0.006369643844664097,
- -0.02373404987156391,
- -0.019792303442955017,
- -0.040463533252477646,
- -0.08931844681501389,
- 0.043354760855436325,
- -0.017663978040218353,
- 0.04979105293750763,
- -0.018146391957998276,
- 0.031189579516649246,
- -0.07775284349918365,
- 0.029106667265295982,
- 0.01625167578458786,
- 0.050365425646305084,
- -0.023894723504781723,
- 0.03368954360485077,
- -0.007111136335879564,
- 0.04543088749051094,
- -1.4159523331613855e-8,
- -0.07231293618679047,
- -0.00225460366345942,
- -0.03957067430019379,
- 0.015703147277235985,
- 0.018554359674453735,
- 0.06380811333656311,
- -0.02275926247239113,
- -0.025985507294535637,
- -0.031584855169057846,
- -0.041775960475206375,
- -0.020640388131141663,
- 0.032956238836050034,
- 0.031342290341854095,
- 0.0486927293241024,
- 0.07624161243438721,
- -0.09022262692451477,
- -0.031669650226831436,
- 0.09412606805562973,
- -0.04501897841691971,
- -0.02580745704472065,
- -0.020006120204925537,
- -0.0037789703346788883,
- -0.013636642135679722,
- -0.0497717522084713,
- -0.0574488565325737,
- -0.0017485604621469975,
- -0.0908249095082283,
- 0.11156588792800903,
- -0.04991563409566879,
- -0.004321451298892498,
- 0.010407346300780773,
- -0.07217953354120255,
- -0.03568350523710251,
- -0.014538576826453209,
- -0.009979530237615108,
- -0.008735486306250095,
- 0.07504601776599884,
- 0.01649339683353901,
- 0.04407324269413948,
- -0.08022528141736984,
- 0.007835354655981064,
- 0.05821429565548897,
- 0.026875967159867287,
- 0.037249498069286346,
- -0.12480369955301285,
- 0.001236305688507855,
- 0.04004007577896118,
- 0.029245702549815178,
- 0.004438087344169617,
- -0.021133217960596085,
- 0.021653853356838226,
- 0.010286692529916763,
- 0.0054995222017169,
- 0.05452976003289223,
- 0.06004253402352333,
- -0.07281709462404251,
- -0.007640218362212181,
- -0.027481036260724068,
- -0.06733720749616623,
- 0.010108767077326775,
- 0.19923730194568634,
- 0.012389175593852997,
- 0.0690157413482666,
- -0.026475241407752037
- ]
- },
- {
- "keyword": "comes after",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.001302059506997466,
- 0.019713614135980606,
- -0.003695777617394924,
- -0.005887530744075775,
- -0.003770887153223157,
- -0.04918234422802925,
- 0.03331703692674637,
- -0.025020545348525047,
- 0.08808694034814835,
- -0.010649428702890873,
- 0.08828049898147583,
- -0.06977509707212448,
- 0.0023690308444201946,
- 0.002684780163690448,
- 0.024786490947008133,
- -0.013001417741179466,
- 0.0571821853518486,
- -0.03527076542377472,
- -0.12872755527496338,
- -0.058017853647470474,
- -0.07248847931623459,
- 0.04656766727566719,
- -0.05005355924367905,
- -0.05323482304811478,
- -0.03611000254750252,
- -0.00770645821467042,
- -0.01765602082014084,
- -0.01716240681707859,
- 0.06713561713695526,
- -0.04480988532304764,
- -0.006526756100356579,
- -0.033990055322647095,
- 0.03911086171865463,
- 0.008321206085383892,
- -0.028159290552139282,
- 0.049530278891325,
- 0.05943259224295616,
- -0.010859821923077106,
- -0.016525106504559517,
- 0.049088869243860245,
- -0.0033815023489296436,
- -0.12067302316427231,
- -0.007484825327992439,
- 0.06353079527616501,
- 0.06994020938873291,
- -0.0440189503133297,
- 0.021280279383063316,
- -0.052462171763181686,
- 0.04134277254343033,
- 0.02235831320285797,
- -0.04388691112399101,
- -0.0060088117606937885,
- -0.03949912637472153,
- 0.0817900076508522,
- 0.012118987739086151,
- 0.04217146709561348,
- 0.04756828770041466,
- -0.05917716026306152,
- -0.03919290006160736,
- -0.034255992621183395,
- -0.015440537594258785,
- -0.013992350548505783,
- -0.08179501444101334,
- 0.06663348525762558,
- 0.054816026240587234,
- -0.0009870026260614395,
- 0.043378524482250214,
- 0.03369593992829323,
- -0.025814713910222054,
- 0.09025049209594727,
- 0.00659952824935317,
- 0.02378714270889759,
- -0.02498984895646572,
- 0.07423288375139236,
- 0.023232366889715195,
- 0.030796745792031288,
- 0.013532479293644428,
- -0.02518870122730732,
- 0.05224616825580597,
- 0.031486090272665024,
- -0.017148204147815704,
- 0.011270241811871529,
- 0.03402852267026901,
- 0.0010087284026667476,
- -0.023886756971478462,
- -0.044452913105487823,
- 0.04234541580080986,
- -0.024354133754968643,
- -0.016575029119849205,
- 0.05330274626612663,
- -0.10500460118055344,
- -0.016904110088944435,
- -0.014253413304686546,
- 0.011715998873114586,
- -0.08015254884958267,
- -0.01304332073777914,
- 0.03909182921051979,
- -0.04511946067214012,
- -0.030670715495944023,
- 0.14496470987796783,
- -0.009571273811161518,
- 0.02266748435795307,
- -0.021058106794953346,
- -0.02981957048177719,
- 0.02893691323697567,
- -0.059281665831804276,
- -0.03756319358944893,
- 0.011350465938448906,
- 0.03061249852180481,
- 0.0291222482919693,
- 0.014520924538373947,
- -0.021173609420657158,
- 0.012883367948234081,
- 0.025137079879641533,
- 0.04474695771932602,
- -0.0034437247086316347,
- 0.010981226339936256,
- 0.03621659055352211,
- 0.09766388684511185,
- -0.04738647863268852,
- 0.07942185550928116,
- 0.026542892679572105,
- -0.07009969651699066,
- 0.07516773045063019,
- -0.046871431171894073,
- -0.06390036642551422,
- 0.039103683084249496,
- -4.556844258580907e-33,
- -0.0021742600947618484,
- -0.01708635874092579,
- 0.02201887033879757,
- -0.008071242831647396,
- -0.016569772735238075,
- 0.0389726459980011,
- 0.010610559023916721,
- -0.03305986151099205,
- -0.11018306761980057,
- -0.01014533918350935,
- -0.10760114341974258,
- -0.06321703642606735,
- -0.01398115511983633,
- 0.008630543015897274,
- -0.047362662851810455,
- -0.011459614150226116,
- 0.06736565381288528,
- -0.08807358890771866,
- -0.08107642829418182,
- 0.004757784307003021,
- -0.06534454226493835,
- 0.025460470467805862,
- 0.00007679664850002155,
- 0.07006080448627472,
- -0.02766050398349762,
- 0.03229716792702675,
- 0.006656577344983816,
- -0.037168800830841064,
- -0.030021928250789642,
- 0.0427299328148365,
- 0.03047136217355728,
- -0.05611224099993706,
- -0.08162877708673477,
- 0.02620001882314682,
- 0.04821131378412247,
- 0.007898536510765553,
- -0.010529819875955582,
- -0.04347760230302811,
- -0.010344532318413258,
- -0.07207581400871277,
- -0.02672775834798813,
- -0.009817139245569706,
- -0.061667539179325104,
- 0.03485417366027832,
- -0.02236161008477211,
- 0.002450337167829275,
- -0.00619274890050292,
- 0.02325071580708027,
- 0.0468735508620739,
- -0.011018918827176094,
- -0.028019558638334274,
- -0.03842949494719505,
- 0.06213995814323425,
- 0.05097547546029091,
- -0.04609213396906853,
- -0.007569035515189171,
- 0.019291836768388748,
- 0.01404763013124466,
- -0.03726032003760338,
- 0.011979954317212105,
- 0.06526754796504974,
- 0.07756989449262619,
- -0.047397028654813766,
- 0.07852848619222641,
- 0.008965655229985714,
- -0.0634155347943306,
- 0.052609339356422424,
- -0.04986613616347313,
- 0.005613851360976696,
- 0.0009310623863711953,
- -0.07365714758634567,
- 0.015072360634803772,
- 0.010577809065580368,
- 0.02260487899184227,
- -0.03709870204329491,
- 0.018924519419670105,
- -0.0644780844449997,
- -0.05252484977245331,
- 0.026884591206908226,
- 0.014549551531672478,
- -0.05120308697223663,
- 0.0191821102052927,
- -0.025908565148711205,
- 0.025862589478492737,
- 0.08333402872085571,
- 0.08475062996149063,
- 0.026085995137691498,
- -0.0917462408542633,
- 0.038388628512620926,
- -0.0018690836150199175,
- -0.003625380340963602,
- -0.007821754552423954,
- 0.12561210989952087,
- 0.09707873314619064,
- -0.0317118763923645,
- 3.128676295023415e-33,
- 0.04228323698043823,
- -0.023458393290638924,
- 0.0381203256547451,
- 0.047553353011608124,
- 0.07459063827991486,
- -0.08482563495635986,
- 0.01814667321741581,
- 0.011766127310693264,
- 0.023502804338932037,
- 0.0644829124212265,
- 0.01728990487754345,
- -0.00959768146276474,
- 0.025896254926919937,
- 0.023053117096424103,
- 0.15309305489063263,
- 0.07569115608930588,
- 0.14530670642852783,
- -0.09593842178583145,
- -0.008801796473562717,
- 0.03097856044769287,
- 0.036184489727020264,
- -0.039314668625593185,
- 0.02341914176940918,
- -0.07055523246526718,
- -0.04998615011572838,
- 0.02980075590312481,
- 0.08247874677181244,
- -0.008349061943590641,
- -0.11223766952753067,
- -0.0045389095321297646,
- 0.07450532168149948,
- -0.07402104139328003,
- -0.02400662936270237,
- 0.0851931944489479,
- -0.009620153345167637,
- 0.05917492136359215,
- 0.12184584140777588,
- 0.0056116823107004166,
- -0.01863386668264866,
- 0.08089646697044373,
- 0.11133816093206406,
- -0.061061955988407135,
- 0.023347551003098488,
- 0.11409561336040497,
- -0.013551097363233566,
- -0.01709946244955063,
- -0.018702184781432152,
- 0.07986151427030563,
- 0.008627803064882755,
- 0.0612931102514267,
- -0.02484927512705326,
- 0.03107834793627262,
- 0.02210843935608864,
- 0.010175518691539764,
- -0.029229192063212395,
- -0.03719918802380562,
- 0.013444764539599419,
- 0.03398628532886505,
- -0.0655001699924469,
- -0.06763210147619247,
- -0.06814511865377426,
- 0.05137992277741432,
- 0.014580072835087776,
- -0.020623374730348587,
- 0.03305842727422714,
- -0.06373993307352066,
- -0.020702222362160683,
- -0.026821143925189972,
- 0.0030529561918228865,
- -0.008566133677959442,
- -0.04220917820930481,
- 0.06550778448581696,
- -0.12285295128822327,
- -0.04980368912220001,
- -0.05469030514359474,
- -0.00753743527457118,
- -0.06423800438642502,
- -0.0461573600769043,
- 0.0505063459277153,
- -0.08369439095258713,
- -0.09812980145215988,
- -0.03997267037630081,
- 0.03345987945795059,
- -0.007545684464275837,
- 0.04132448881864548,
- -0.15095895528793335,
- 0.1790258288383484,
- -0.037909697741270065,
- -0.042541928589344025,
- -0.028773481026291847,
- 0.06104316562414169,
- 0.062432389706373215,
- 0.0820319727063179,
- 0.022010445594787598,
- -0.023427605628967285,
- -1.415494654821714e-8,
- -0.016253607347607613,
- -0.002183159114792943,
- 0.035860951989889145,
- 0.030911386013031006,
- 0.10672155767679214,
- 0.07069995254278183,
- -0.047309789806604385,
- 0.033164042979478836,
- -0.030925491824746132,
- -0.08597720414400101,
- -0.016980482265353203,
- -0.04330800473690033,
- 0.08704299479722977,
- 0.05609986558556557,
- 0.06238818168640137,
- -0.05260056257247925,
- -0.024851558730006218,
- -0.03965506702661514,
- -0.000543683476280421,
- -0.009143677540123463,
- -0.06704419106245041,
- -0.056318655610084534,
- 0.011573370546102524,
- 0.007240499835461378,
- 0.04013691842556,
- -0.0011876410571858287,
- -0.06789547204971313,
- 0.07207269221544266,
- 0.0303681381046772,
- 0.04791601374745369,
- 0.029407357797026634,
- 0.026345007121562958,
- -0.07272462546825409,
- -0.009214755147695541,
- -0.017743995413184166,
- -0.02188136801123619,
- 0.052333295345306396,
- 0.0011405731784179807,
- 0.07184763997793198,
- -0.10051105916500092,
- -0.04683489352464676,
- 0.0208759643137455,
- 0.023532193154096603,
- 0.01689382828772068,
- -0.0819498673081398,
- -0.041067417711019516,
- 0.02077256515622139,
- -0.059200674295425415,
- -0.005403291899710894,
- -0.013473407365381718,
- 0.028872866183519363,
- -0.03797821328043938,
- 0.02466239593923092,
- 0.0038615998346358538,
- 0.041042085736989975,
- 0.006854270584881306,
- 0.008047840557992458,
- -0.011458665132522583,
- 0.00874803401529789,
- 0.04913448542356491,
- 0.051142316311597824,
- -0.05018200725317001,
- 0.13109442591667175,
- 0.013625399209558964
- ]
- },
- {
- "keyword": "follows",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.012861544266343117,
- 0.04069747403264046,
- 0.039660967886447906,
- 0.0780327245593071,
- -0.04679484665393829,
- 0.05329516530036926,
- 0.07676687091588974,
- -0.05139448121190071,
- -0.02779996208846569,
- 0.05290516838431358,
- 0.03130755573511124,
- 0.003320547053590417,
- 0.006007244344800711,
- 0.03600813075900078,
- 0.01654616743326187,
- -0.009624739177525043,
- 0.038803569972515106,
- -0.04373834654688835,
- -0.07976524531841278,
- -0.06263813376426697,
- -0.06613128632307053,
- 0.025344038382172585,
- -0.0010719823185354471,
- -0.0142136225476861,
- -0.08327531069517136,
- 0.0865655466914177,
- 0.04489114135503769,
- 0.019880617037415504,
- -0.011741125956177711,
- -0.09941700100898743,
- -0.03668661043047905,
- -0.020159246399998665,
- 0.013135476037859917,
- -0.014383122324943542,
- 0.002190654631704092,
- 0.06746877729892731,
- 0.05691875144839287,
- -0.043960437178611755,
- -0.014800871722400188,
- 0.03385978937149048,
- -0.04490043967962265,
- -0.14255587756633759,
- -0.02787180058658123,
- 0.04710814356803894,
- -0.0041451058350503445,
- 0.03608844056725502,
- -0.00017329004185739905,
- -0.014487224631011486,
- 0.005309277214109898,
- -0.0065695433877408504,
- -0.07217045873403549,
- -0.04142971709370613,
- -0.05053981766104698,
- 0.014261514879763126,
- 0.021674539893865585,
- 0.011970140039920807,
- -0.024738263338804245,
- -0.020460251718759537,
- 0.054088227450847626,
- -0.05696913227438927,
- 0.14577898383140564,
- 0.01000435184687376,
- -0.08302902430295944,
- 0.09628787636756897,
- 0.07507585734128952,
- -0.007782121654599905,
- 0.038939379155635834,
- -0.045531414449214935,
- -0.060180921107530594,
- 0.03490010276436806,
- 0.007228911854326725,
- 0.023290175944566727,
- -0.039530761539936066,
- 0.08725021779537201,
- 0.001311207190155983,
- -0.0382782481610775,
- 0.02047796919941902,
- -0.05349504575133324,
- 0.067830391228199,
- -0.02721121720969677,
- -0.07600525766611099,
- -0.0359555184841156,
- 0.004002362489700317,
- 0.05115264654159546,
- -0.016646040603518486,
- 0.001956995576620102,
- 0.02410348504781723,
- -0.11637236177921295,
- -0.015183034352958202,
- 0.021871961653232574,
- -0.03541090339422226,
- 0.002944314619526267,
- -0.01071131695061922,
- 0.03856206685304642,
- -0.09044694900512695,
- -0.03612232208251953,
- 0.010240123607218266,
- -0.06545206159353256,
- -0.017978675663471222,
- 0.27331462502479553,
- 0.047404736280441284,
- 0.045704711228609085,
- 0.021872980520129204,
- -0.01666317507624626,
- -0.026187986135482788,
- -0.02885606326162815,
- -0.044467367231845856,
- -0.03122732974588871,
- 0.005218536593019962,
- 0.029232125729322433,
- -0.025501204654574394,
- -0.006322270724922419,
- -0.002007346833124757,
- 0.06539593636989594,
- 0.06571125984191895,
- -0.022913020104169846,
- 0.008615263737738132,
- 0.02298538014292717,
- -0.013929860666394234,
- -0.013161459006369114,
- 0.08290252089500427,
- 0.016997603699564934,
- -0.042195066809654236,
- 0.023726779967546463,
- -0.00970491860061884,
- -0.09037631005048752,
- 0.007367103360593319,
- -7.026742295334818e-33,
- 0.033723507076501846,
- -0.030910693109035492,
- 0.03866538032889366,
- 0.018293490633368492,
- 0.018442261964082718,
- -0.04251709580421448,
- -0.060425788164138794,
- 0.03966965898871422,
- -0.07533817738294601,
- -0.021155966445803642,
- -0.05638406053185463,
- -0.0027036152314394712,
- -0.06362231075763702,
- 0.03788430243730545,
- 0.0003510549431666732,
- -0.057873811572790146,
- 0.1472875326871872,
- 0.0027190283872187138,
- -0.021481918171048164,
- -0.025712087750434875,
- -0.06282878667116165,
- 0.056296687573194504,
- -0.00009909670916385949,
- 0.027684321627020836,
- 0.03133092075586319,
- -0.07764019817113876,
- 0.029933979734778404,
- -0.083133265376091,
- 0.008310540579259396,
- 0.046361710876226425,
- 0.05344674363732338,
- -0.026205027475953102,
- -0.034320127218961716,
- -0.03521472588181496,
- 0.016356023028492928,
- 0.01399249117821455,
- -0.012614806182682514,
- -0.0452323779463768,
- 0.024152148514986038,
- -0.04649873450398445,
- 0.01946455053985119,
- -0.025653650984168053,
- -0.04659377411007881,
- 0.0008353785378858447,
- 0.01568119414150715,
- 0.08741793036460876,
- 0.031906869262456894,
- 0.05908598378300667,
- 0.08006516844034195,
- -0.011392073705792427,
- -0.019990544766187668,
- -0.044206652790308,
- -0.01293880119919777,
- 0.01113519910722971,
- 0.0117123331874609,
- -0.03744455799460411,
- -0.03331158310174942,
- 0.005591795314103365,
- -0.02365552820265293,
- 0.024782340973615646,
- 0.08485836535692215,
- 0.0833917185664177,
- -0.11075812578201294,
- 0.06030810996890068,
- -0.07056296616792679,
- -0.000349323614500463,
- -0.006712459959089756,
- -0.07571160793304443,
- -0.002551620127633214,
- 0.028247227892279625,
- -0.10254377871751785,
- 0.0015606597298756242,
- 0.031055519357323647,
- 0.05708006024360657,
- -0.011335570365190506,
- 0.012836216017603874,
- -0.054432712495326996,
- -0.07274053245782852,
- -0.047024425119161606,
- 0.005797785706818104,
- -0.0637308657169342,
- -0.00019766073091886938,
- -0.024993497878313065,
- 0.056392982602119446,
- 0.09086568653583527,
- 0.00021164154168218374,
- 0.0388694703578949,
- -0.1603100299835205,
- -0.021954229101538658,
- 0.023647470399737358,
- -0.0044458904303610325,
- 0.023881616070866585,
- 0.024997150525450706,
- 0.0924164280295372,
- -0.03981589153409004,
- 5.326510205041339e-33,
- 0.013365671969950199,
- -0.014459159225225449,
- 0.010407411493360996,
- 0.11163634061813354,
- 0.017040379345417023,
- 0.000009341863915324211,
- -0.017432741820812225,
- 0.0035522424150258303,
- 0.05888830125331879,
- 0.05573822557926178,
- 0.020465118810534477,
- 0.007167282979935408,
- -0.05935446172952652,
- 0.02133125253021717,
- 0.006025905720889568,
- 0.01602010615170002,
- 0.15614821016788483,
- -0.031939465552568436,
- -0.059996094554662704,
- 0.027631159871816635,
- -0.10401023924350739,
- -0.025157026946544647,
- -0.007073417771607637,
- -0.03224923834204674,
- -0.08790148049592972,
- 0.02315334416925907,
- 0.06334090977907181,
- 0.08360349386930466,
- -0.017343446612358093,
- 0.008875695057213306,
- 0.0581938773393631,
- -0.058873262256383896,
- -0.015811549499630928,
- -0.019828537479043007,
- -0.014951060526072979,
- 0.10128531605005264,
- 0.07541171461343765,
- -0.00032933050533756614,
- -0.06675458699464798,
- 0.021807106211781502,
- 0.048370420932769775,
- 0.026657434180378914,
- 0.04688790440559387,
- 0.10684885829687119,
- 0.06719132512807846,
- 0.013248542323708534,
- 0.13805070519447327,
- -0.0016455526929348707,
- -0.08503824472427368,
- 0.01287794578820467,
- -0.0796787440776825,
- -0.0046967798843979836,
- -0.008893747813999653,
- 0.002695502247661352,
- -0.016512546688318253,
- 0.014810184948146343,
- -0.014721139334142208,
- 0.004966274369508028,
- -0.037348970770835876,
- -0.061943888664245605,
- -0.015048511326313019,
- 0.0747828409075737,
- -0.01018596813082695,
- 0.007831952534615993,
- 0.0580444373190403,
- -0.0502355583012104,
- -0.03173864632844925,
- 0.059646494686603546,
- 0.07175074517726898,
- -0.028144974261522293,
- 0.002987120533362031,
- 0.03842842951416969,
- -0.06976698338985443,
- -0.038431111723184586,
- 0.010777324438095093,
- -0.09925582259893417,
- -0.0409223698079586,
- 0.00852285884320736,
- 0.02810291387140751,
- 0.08478999882936478,
- 0.04957858473062515,
- -0.014116262085735798,
- -0.01861170493066311,
- -0.003752689575776458,
- 0.012082133442163467,
- -0.03916119784116745,
- 0.015772199258208275,
- -0.032704997807741165,
- 0.014794303104281425,
- 0.04936757683753967,
- 0.025690855458378792,
- 0.03498385474085808,
- 0.04241970553994179,
- -0.07786055654287338,
- -0.06610046327114105,
- -1.4113496149548155e-8,
- -0.06218695268034935,
- -0.061270106583833694,
- 0.04806819558143616,
- 0.05719133839011192,
- 0.10338038206100464,
- 0.092221200466156,
- 0.02276076376438141,
- 0.015392838045954704,
- -0.010586441494524479,
- 0.04492795839905739,
- -0.0046343617141246796,
- 0.037067316472530365,
- 0.06060057878494263,
- 0.06293564289808273,
- 0.08691934496164322,
- -0.03905860707163811,
- -0.05320624262094498,
- -0.004049850627779961,
- -0.0681041032075882,
- 0.019089603796601295,
- -0.03323155269026756,
- -0.035364456474781036,
- 0.02693033590912819,
- 0.007796125952154398,
- 0.04580210521817207,
- 0.015054437331855297,
- -0.053356561809778214,
- 0.014388860203325748,
- 0.04002739116549492,
- 0.07602514326572418,
- 0.010987876914441586,
- 0.03262069448828697,
- -0.005109689198434353,
- 0.0087146470323205,
- -0.009966631419956684,
- -0.023123886436223984,
- 0.022886715829372406,
- -0.015746010467410088,
- 0.026373241096735,
- -0.05048416182398796,
- 0.03134865686297417,
- 0.03639070689678192,
- 0.07710765302181244,
- 0.02307037264108658,
- -0.0615709163248539,
- -0.058290351182222366,
- 0.010133432224392891,
- -0.03360147774219513,
- -0.04569651558995247,
- -0.05678931251168251,
- -0.021400103345513344,
- -0.05345877632498741,
- 0.03691961243748665,
- 0.029008783400058746,
- -0.009806889109313488,
- -0.02278522588312626,
- -0.020782729610800743,
- 0.026877809315919876,
- -0.04344765096902847,
- 0.05230486020445824,
- 0.1517760306596756,
- 0.021620551124215126,
- 0.10026215016841888,
- 0.024975204840302467
- ]
- },
- {
- "keyword": "happens after",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.002844930160790682,
- -0.035026710480451584,
- -0.030364008620381355,
- 0.009401659481227398,
- -0.0063654170371592045,
- -0.12365759909152985,
- 0.029447127133607864,
- 0.028720898553729057,
- 0.08397460728883743,
- -0.02428547292947769,
- 0.0367681123316288,
- 0.016639642417430878,
- 0.015088040381669998,
- 0.07197394222021103,
- 0.01541636511683464,
- 0.051064860075712204,
- -0.002466210862621665,
- -0.05264299362897873,
- -0.17309585213661194,
- -0.024638252332806587,
- -0.03530222922563553,
- -0.012868022546172142,
- -0.07238826900720596,
- 0.024404475465416908,
- 0.025533346459269524,
- -0.04950233921408653,
- -0.0034181629307568073,
- -0.019228467717766762,
- 0.031210994347929955,
- -0.021889857947826385,
- -0.03451497107744217,
- 0.0036511956714093685,
- 0.10252783447504044,
- -0.005165404640138149,
- -0.014461413957178593,
- 0.07810668647289276,
- 0.028087874874472618,
- 0.04572932422161102,
- -0.005642405245453119,
- -0.018254751339554787,
- 0.03325822576880455,
- -0.09525543451309204,
- -0.0621391162276268,
- 0.0019894063007086515,
- 0.052104637026786804,
- -0.030511682853102684,
- 0.01038286928087473,
- -0.0028586373664438725,
- 0.05729661136865616,
- -0.019915660843253136,
- -0.02700861170887947,
- -0.03619072213768959,
- -0.021147657185792923,
- -0.026293843984603882,
- -0.025526976212859154,
- 0.0680210217833519,
- 0.023829642683267593,
- 0.015884658321738243,
- 0.02656501531600952,
- -0.0388607494533062,
- 0.03400050848722458,
- 0.007007362321019173,
- -0.09726744890213013,
- 0.013346350751817226,
- 0.08120457828044891,
- 0.017712565138936043,
- 0.0214734748005867,
- 0.03880758583545685,
- 0.020138703286647797,
- 0.04396354407072067,
- 0.0521051399409771,
- 0.04900834709405899,
- -0.038896530866622925,
- 0.02907082810997963,
- 0.041710007935762405,
- 0.09144512563943863,
- 0.0015775770880281925,
- -0.014070689678192139,
- 0.0313476100564003,
- 0.08292559534311295,
- -0.08131759613752365,
- 0.009201141074299812,
- -0.01781129464507103,
- 0.02703098952770233,
- -0.00898121576756239,
- -0.06074916943907738,
- -0.002734290435910225,
- 0.012372498400509357,
- -0.024374153465032578,
- 0.07199112325906754,
- -0.038219016045331955,
- 0.016418004408478737,
- 0.0722702220082283,
- 0.01797414943575859,
- -0.08070331811904907,
- -0.0727519541978836,
- 0.03850382938981056,
- 0.059549953788518906,
- -0.007616029586642981,
- 0.172745481133461,
- -0.05483641475439072,
- 0.006125051528215408,
- -0.026297379285097122,
- 0.010858176276087761,
- 0.033380791544914246,
- -0.014821896329522133,
- -0.06567462533712387,
- 0.02439391426742077,
- 0.007797235623002052,
- 0.013447331264615059,
- -0.008139858022332191,
- -0.026852145791053772,
- 0.07734115421772003,
- 0.04702494665980339,
- 0.020373497158288956,
- 0.0011654295958578587,
- 0.018215609714388847,
- 0.03323623165488243,
- -0.018824338912963867,
- -0.0767241045832634,
- -0.0553777813911438,
- 0.052920009940862656,
- -0.030625490471720695,
- -0.016290729865431786,
- -0.06473882496356964,
- -0.05334259942173958,
- 0.09103624522686005,
- -1.2592327112840286e-33,
- -0.06858492642641068,
- -0.15955401957035065,
- -0.09855769574642181,
- 0.009748026728630066,
- 0.006956768687814474,
- -0.05361691862344742,
- 0.04848311468958855,
- -0.03637547418475151,
- -0.05538142845034599,
- -0.02713286504149437,
- -0.017374739050865173,
- -0.0848018079996109,
- 0.03373079001903534,
- -0.03489702194929123,
- -0.026009393855929375,
- -0.03555776923894882,
- 0.07109387218952179,
- 0.018349191173911095,
- -0.06576640903949738,
- -0.004512065555900335,
- 0.02595262974500656,
- 0.08214627206325531,
- -0.010103403590619564,
- 0.06895709037780762,
- -0.013357858173549175,
- 0.08792486786842346,
- -0.024331294000148773,
- -0.057704851031303406,
- 0.017714910209178925,
- 0.0121223209425807,
- -0.0062171695753932,
- -0.03449328616261482,
- -0.07207818329334259,
- 0.036877118051052094,
- 0.018311262130737305,
- 0.05073380470275879,
- 0.09998812526464462,
- -0.008403290994465351,
- -0.03946836665272713,
- -0.0039002839475870132,
- -0.0020580426789820194,
- 0.017348136752843857,
- -0.13199718296527863,
- 0.0035811313427984715,
- 0.008473598398268223,
- -0.01722828298807144,
- 0.0318395271897316,
- 0.07214924693107605,
- 0.037899743765592575,
- -0.014017511159181595,
- -0.02809971757233143,
- 0.002644026419147849,
- 0.01800287328660488,
- 0.021683121100068092,
- -0.053446996957063675,
- 0.05017755553126335,
- 0.0222795233130455,
- -0.06307444721460342,
- -0.004284463822841644,
- 0.013580381870269775,
- 0.05403493717312813,
- 0.06692119687795639,
- -0.04399185627698898,
- 0.007783960085362196,
- -0.014571014791727066,
- -0.04934794828295708,
- 0.08183471113443375,
- -0.027640437707304955,
- -0.03661893308162689,
- 0.003785582259297371,
- 0.026935111731290817,
- 0.049400076270103455,
- 0.09868808090686798,
- 0.0131080849096179,
- 0.015781378373503685,
- -0.021129760891199112,
- -0.04646572098135948,
- -0.005284697283059359,
- -0.03345809131860733,
- 0.04434223100543022,
- 0.0010138610377907753,
- -0.1477123498916626,
- -0.03539634495973587,
- 0.004060482140630484,
- 0.061524052172899246,
- 0.04498400539159775,
- 0.0749894455075264,
- -0.14612308144569397,
- -0.03412007540464401,
- -0.012038682587444782,
- -0.016179172322154045,
- 0.01593749411404133,
- 0.14242587983608246,
- 0.06386879831552505,
- -0.05705182999372482,
- 2.1342865476592267e-34,
- -0.012821721844375134,
- 0.012281290255486965,
- -0.06523692607879639,
- 0.06472334265708923,
- 0.07421113550662994,
- -0.053171563893556595,
- 0.03275550529360771,
- 0.07634755223989487,
- -0.019635049626231194,
- 0.04750163480639458,
- -0.005473010707646608,
- -0.027648594230413437,
- 0.020714081823825836,
- 0.02690618485212326,
- 0.08494730293750763,
- -0.008827479556202888,
- 0.08532335609197617,
- -0.10573618859052658,
- -0.036365095525979996,
- 0.08384902030229568,
- -0.0028931056149303913,
- 0.030225077643990517,
- 0.030477559193968773,
- -0.021357951685786247,
- -0.03449012711644173,
- 0.049531031399965286,
- 0.09110133349895477,
- -0.05949537083506584,
- -0.06650309264659882,
- -0.004137889947742224,
- 0.12988269329071045,
- -0.0379616916179657,
- -0.09008116275072098,
- 0.037788838148117065,
- 0.0244359839707613,
- 0.06328033655881882,
- 0.022802837193012238,
- -0.033931098878383636,
- 0.007597032468765974,
- 0.025647345930337906,
- 0.14407703280448914,
- -0.04941432550549507,
- 0.042138952761888504,
- 0.09715329855680466,
- -0.02650071308016777,
- -0.06646279245615005,
- 0.0872282162308693,
- 0.031133683398365974,
- 0.04620182141661644,
- 0.011226468719542027,
- -0.020201781764626503,
- 0.05716342478990555,
- 0.08086149394512177,
- -0.0681358128786087,
- -0.022002210840582848,
- -0.0453418493270874,
- 0.02262575551867485,
- 0.06137008219957352,
- -0.0005017867079004645,
- -0.020699013024568558,
- 0.0079490439966321,
- 0.01255172211676836,
- -0.028627553954720497,
- -0.020378176122903824,
- 0.002023074310272932,
- -0.03475060313940048,
- -0.057768434286117554,
- -0.03600792586803436,
- 0.05135131999850273,
- -0.02599669247865677,
- 0.02334056980907917,
- 0.03626386448740959,
- -0.118199922144413,
- -0.07289572060108185,
- -0.004211299121379852,
- 0.008965346030890942,
- -0.0871170312166214,
- 0.023535221815109253,
- 0.018083063885569572,
- -0.08194490522146225,
- -0.11153563857078552,
- -0.04566725715994835,
- 0.01775304600596428,
- -0.044708315283060074,
- -0.00421413779258728,
- -0.074025459587574,
- 0.1141759529709816,
- -0.027894943952560425,
- 0.008634029887616634,
- -0.060380976647138596,
- -0.04369104281067848,
- -0.009815673343837261,
- 0.0794125646352768,
- 0.03851402923464775,
- -0.006011195946484804,
- -1.4896456512758505e-8,
- -0.031480658799409866,
- 0.04237903282046318,
- 0.03907938301563263,
- 0.04055175185203552,
- 0.08040719479322433,
- 0.06346657127141953,
- -0.01861538738012314,
- 0.0338418073952198,
- -0.046139199286699295,
- -0.1086413562297821,
- -0.025263870134949684,
- -0.037189140915870667,
- 0.025089891627430916,
- 0.009689764119684696,
- -0.02747945301234722,
- -0.05311468988656998,
- 0.011183018796145916,
- -0.06443703919649124,
- -0.020659953355789185,
- -0.02669794112443924,
- -0.0945655107498169,
- 0.004460739903151989,
- 0.02791743166744709,
- 0.048992324620485306,
- -0.005516760516911745,
- 0.03986698016524315,
- -0.06381538510322571,
- 0.10752157121896744,
- 0.02327856980264187,
- 0.01568429544568062,
- -0.013678770512342453,
- -0.005775862839072943,
- -0.03051850013434887,
- -0.02375054359436035,
- 0.0026400641072541475,
- -0.07286404818296432,
- 0.037722840905189514,
- -0.02186729945242405,
- 0.07291903346776962,
- -0.035966236144304276,
- 0.0014517571544274688,
- 0.02425936982035637,
- 0.030890224501490593,
- 0.026568636298179626,
- 0.0032230368815362453,
- -0.04178796336054802,
- 0.04290274158120155,
- -0.03606165200471878,
- 0.028050661087036133,
- 0.01112102810293436,
- 0.020260974764823914,
- 0.04365473613142967,
- 0.004731354769319296,
- -0.03660960495471954,
- 0.0928938090801239,
- 0.008308839052915573,
- 0.008326230570673943,
- -0.012083686888217926,
- 0.048509422689676285,
- 0.0074456073343753815,
- 0.09524501860141754,
- -0.029993662610650063,
- -0.016260281205177307,
- -0.03446006029844284
- ]
- },
- {
- "keyword": "subsequent to",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.006135372444987297,
- 0.02427002601325512,
- 0.08123503625392914,
- 0.017963724210858345,
- 0.014365529641509056,
- 0.079230897128582,
- 0.05535383149981499,
- -0.007251123432070017,
- 0.08271104842424393,
- -0.024087661877274513,
- 0.06739571690559387,
- 0.04371634125709534,
- 0.05662699043750763,
- 0.01853201352059841,
- 0.0019200744573026896,
- -0.00908638071268797,
- 0.06420690566301346,
- -0.013682262971997261,
- -0.031575992703437805,
- -0.027248425409197807,
- -0.15795521438121796,
- 0.024445734918117523,
- 0.012631984427571297,
- -0.014766531996428967,
- 0.04416690766811371,
- -0.015852218493819237,
- -0.008138680830597878,
- 0.05571230500936508,
- 0.055097635835409164,
- 0.004642419051378965,
- -0.07811818271875381,
- 0.03297730162739754,
- -0.01795700564980507,
- 0.0038226491305977106,
- -0.009228421375155449,
- 0.008064933121204376,
- 0.02809722349047661,
- 0.0004414144204929471,
- 0.04873232543468475,
- 0.006490081083029509,
- -0.03759833797812462,
- -0.040188152343034744,
- -0.00633038766682148,
- -0.05424972251057625,
- -0.0047100563533604145,
- -0.05882676690816879,
- -0.0014446376590058208,
- -0.03454409912228584,
- -0.025445332750678062,
- -0.013751786202192307,
- -0.06109671667218208,
- -0.022678934037685394,
- 0.02449708990752697,
- 0.00864682998508215,
- 0.0014870327431708574,
- 0.05118238180875778,
- -0.02939637564122677,
- -0.007555214688181877,
- 0.015186615288257599,
- -0.06081509590148926,
- 0.10194609314203262,
- 0.01575213298201561,
- -0.11489105969667435,
- 0.034006353467702866,
- 0.06211922690272331,
- 0.015901941806077957,
- 0.03226945549249649,
- 0.013254414312541485,
- -0.014054856263101101,
- 0.09378979355096817,
- 0.033485278487205505,
- 0.0362699031829834,
- -0.018797675147652626,
- 0.06827321648597717,
- 0.018856244161725044,
- 0.010933158919215202,
- 0.06161132827401161,
- -0.014226432889699936,
- 0.057941701263189316,
- -0.14632289111614227,
- -0.006921818945556879,
- 0.04339439049363136,
- -0.016537949442863464,
- -0.0035749413073062897,
- -0.020009249448776245,
- -0.07581448554992676,
- -0.014102637767791748,
- -0.0882369726896286,
- -0.03528495877981186,
- 0.029956724494695663,
- 0.008643628098070621,
- -0.060634613037109375,
- 0.0568636879324913,
- 0.05028112977743149,
- -0.057265955954790115,
- 0.00028150464640930295,
- -0.003455110127106309,
- -0.09802386909723282,
- 0.07905887812376022,
- 0.17271482944488525,
- 0.02657407335937023,
- 0.01157362200319767,
- -0.09942161291837692,
- 0.03701228275895119,
- 0.007372249383479357,
- -0.1005968227982521,
- -0.061730485409498215,
- -0.019658125936985016,
- 0.017866497859358788,
- 0.006948603317141533,
- 0.006009196862578392,
- 0.006879035383462906,
- -0.03573710843920708,
- -0.0030418552923947573,
- -0.026114627718925476,
- 0.010719811543822289,
- -0.026329878717660904,
- 0.058182764798402786,
- 0.03589346259832382,
- -0.018524738028645515,
- 0.057696327567100525,
- 0.07203441858291626,
- -0.012136394158005714,
- 0.038306381553411484,
- -0.05275508761405945,
- -0.09445672482252121,
- 0.006657580845057964,
- -4.6999239615950573e-33,
- 0.08145595341920853,
- -0.06746278703212738,
- 0.027868742123246193,
- -0.05579515919089317,
- -0.06028076261281967,
- 0.030793946236371994,
- -0.04855962470173836,
- -0.04633452743291855,
- -0.1114111840724945,
- -0.006742734927684069,
- -0.09114157408475876,
- -0.0008659763261675835,
- -0.027812112122774124,
- -0.03282564878463745,
- -0.015115480870008469,
- -0.0493251271545887,
- 0.012246598489582539,
- 0.07578042149543762,
- 0.005414022598415613,
- 0.015942059457302094,
- -0.0780022144317627,
- 0.06331993639469147,
- -0.002483946969732642,
- 0.011407924816012383,
- 0.02524142526090145,
- 0.02970692701637745,
- -0.006924525834619999,
- -0.050260577350854874,
- 0.0003080710885114968,
- 0.0364244170486927,
- -0.020303284749388695,
- -0.000417320552514866,
- -0.0536719374358654,
- -0.06841610372066498,
- -0.024868426844477654,
- 0.03750407323241234,
- 0.04695238173007965,
- -0.0597652904689312,
- 0.03217841312289238,
- -0.06834625452756882,
- 0.06313466280698776,
- 0.011107826605439186,
- 0.018059447407722473,
- -0.01971636898815632,
- 0.035952113568782806,
- -0.00016718760889489204,
- -0.053154829889535904,
- 0.06241338327527046,
- 0.08649715781211853,
- 0.004969361703842878,
- 0.0001665138261159882,
- 0.01955803669989109,
- -0.0019872605334967375,
- -0.0323428250849247,
- -0.03486953675746918,
- -0.09249739348888397,
- -0.04999085143208504,
- 0.0049857934936881065,
- 0.058789316564798355,
- 0.07728695869445801,
- 0.07388050109148026,
- -0.005381695926189423,
- -0.08070496469736099,
- 0.0991106927394867,
- -0.07654839009046555,
- 0.00043088605161756277,
- -0.0006422778242267668,
- -0.07026927918195724,
- -0.00023221346782520413,
- -0.055169761180877686,
- -0.057065535336732864,
- -0.01473403163254261,
- -0.010266585275530815,
- -0.022571880370378494,
- 0.006609627511352301,
- -0.05567711591720581,
- 0.009001143276691437,
- -0.03125374764204025,
- -0.011062714271247387,
- -0.00484014255926013,
- -0.06080179288983345,
- 0.003083367133513093,
- -0.045191459357738495,
- 0.03259282186627388,
- 0.09698214381933212,
- 0.016058476641774178,
- 0.03563723340630531,
- -0.04843391105532646,
- 0.06993908435106277,
- 0.022648129612207413,
- 0.01915632374584675,
- 0.01585855521261692,
- -0.01383122056722641,
- 0.07294236123561859,
- -0.004656905308365822,
- 2.7557446510822978e-33,
- 0.014206184074282646,
- 0.007491028402000666,
- 0.03411883860826492,
- -0.01755482703447342,
- 0.07227344065904617,
- -0.07073137164115906,
- 0.004944317042827606,
- -0.019642207771539688,
- -0.053854264318943024,
- -0.027474157512187958,
- 0.0071993484161794186,
- -0.026119796559214592,
- 0.10005425661802292,
- -0.005468307062983513,
- 0.013237878680229187,
- 0.09248066693544388,
- 0.09658171236515045,
- -0.1023053228855133,
- -0.02890678495168686,
- -0.0035257169511169195,
- 0.04383234307169914,
- -0.03041606955230236,
- -0.022126097232103348,
- -0.018909452483057976,
- -0.046756595373153687,
- 0.014118162915110588,
- 0.11172284930944443,
- 0.10080333799123764,
- -0.13672740757465363,
- -0.0438850037753582,
- 0.04380503669381142,
- -0.026553208008408546,
- -0.01812042109668255,
- -0.029593711718916893,
- 0.02454293705523014,
- 0.10944300144910812,
- 0.09115811437368393,
- 0.00892279390245676,
- -0.07070617377758026,
- 0.0731830969452858,
- 0.06586232781410217,
- 0.008549136109650135,
- 0.04688388481736183,
- 0.09132256358861923,
- 0.019298439845442772,
- 0.03824738413095474,
- 0.012855361215770245,
- 0.05392887443304062,
- 0.028315497562289238,
- 0.06479597091674805,
- -0.06124198064208031,
- 0.051178187131881714,
- -0.009635712020099163,
- -0.03154660761356354,
- -0.02577507682144642,
- 0.028538545593619347,
- 0.02092730440199375,
- 0.037895187735557556,
- -0.022326292470097542,
- -0.057198088616132736,
- -0.024627547711133957,
- 0.0007932009757496417,
- 0.041337624192237854,
- -0.04469457268714905,
- 0.02906375750899315,
- 0.03406775742769241,
- -0.05082232877612114,
- -0.01187458448112011,
- 0.002251203404739499,
- -0.05999166518449783,
- -0.04718009755015373,
- 0.05210459977388382,
- -0.01858837530016899,
- -0.005740804132074118,
- -0.047378357499837875,
- -0.10666928440332413,
- -0.034593258053064346,
- 0.0041503808461129665,
- 0.028196003288030624,
- -0.10426442325115204,
- -0.12448481470346451,
- -0.020884333178400993,
- 0.04433358460664749,
- 0.0615089125931263,
- -0.05881548672914505,
- -0.06646832823753357,
- 0.07039709389209747,
- -0.04527505114674568,
- 0.04299817234277725,
- -0.027257302775979042,
- 0.0012870795326307416,
- -0.03414733707904816,
- -0.006999093573540449,
- -0.07180208712816238,
- -0.021087924018502235,
- -1.3945672172610557e-8,
- -0.0706099271774292,
- -0.009675069712102413,
- -0.024119408801198006,
- 0.06144944950938225,
- 0.11601132154464722,
- 0.017710208892822266,
- 0.06844333559274673,
- -0.0048974500969052315,
- -0.04315692186355591,
- -0.044004764407873154,
- 0.018086524680256844,
- 0.06628820300102234,
- 0.10670295357704163,
- 0.003118852386251092,
- 0.07234645634889603,
- -0.05864237993955612,
- 0.0418412871658802,
- -0.13173240423202515,
- -0.09101911634206772,
- 0.009318536147475243,
- -0.032577477395534515,
- 0.0974273681640625,
- 0.040220942348241806,
- -0.0234490018337965,
- -0.03279817849397659,
- 0.022058051079511642,
- -0.016168979927897453,
- 0.031792014837265015,
- 0.09409449249505997,
- -0.00185263785533607,
- 0.052287064492702484,
- -0.01750154048204422,
- -0.044086575508117676,
- -0.09047894924879074,
- -0.04588019847869873,
- -0.044936079531908035,
- 0.04690317437052727,
- 0.009856601245701313,
- 0.01943765953183174,
- -0.02837710827589035,
- -0.008152833208441734,
- -0.09325897693634033,
- 0.015311598777770996,
- 0.09660451114177704,
- -0.03782464563846588,
- -0.06675796955823898,
- -0.015646712854504585,
- -0.043329689651727676,
- 0.014478417113423347,
- -0.06607291847467422,
- -0.018376260995864868,
- -0.025167016312479973,
- 0.042168453335762024,
- 0.044951654970645905,
- 0.07899816334247589,
- 0.020868264138698578,
- -0.009752083569765091,
- -0.010413057170808315,
- -0.07338941097259521,
- 0.05062128230929375,
- 0.0848456472158432,
- 0.03562207520008087,
- 0.09385666251182556,
- 0.032230399549007416
- ]
- },
- {
- "keyword": "succeeding",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.01615568809211254,
- 0.08690590411424637,
- 0.0561775341629982,
- -0.030275490134954453,
- -0.02705320343375206,
- 0.000853536301292479,
- -0.01253531314432621,
- 0.052297916263341904,
- -0.04880610480904579,
- -0.027930848300457,
- 0.02266683429479599,
- 0.0514950156211853,
- 0.05184302106499672,
- 0.0231579951941967,
- 0.018185609951615334,
- -0.012756548821926117,
- -0.007598705589771271,
- 0.026152437552809715,
- -0.04896374046802521,
- -0.059206005185842514,
- -0.10407648235559464,
- 0.015561191365122795,
- -0.0028269991744309664,
- -0.044706013053655624,
- -0.05693449825048447,
- 0.04018550366163254,
- -0.06537431478500366,
- -0.027517007663846016,
- 0.11722633242607117,
- -0.051869120448827744,
- 0.03552825748920441,
- -0.05699510499835014,
- -0.01583634316921234,
- 0.02217482030391693,
- -0.028591958805918694,
- 0.011693115346133709,
- 0.005185879301279783,
- 0.02010306715965271,
- -0.00461813248693943,
- -0.005924356169998646,
- -0.01926209218800068,
- -0.07630658149719238,
- -0.01142509188503027,
- -0.018228968605399132,
- 0.029551763087511063,
- -0.017307493835687637,
- 0.03304651007056236,
- 0.0234618429094553,
- -0.029159752652049065,
- -0.016893016174435616,
- -0.08201274275779724,
- 0.013496868312358856,
- 0.024306420236825943,
- -0.02326083369553089,
- 0.012465623207390308,
- 0.057166874408721924,
- -0.0215552169829607,
- 0.04064270108938217,
- 0.02083655633032322,
- -0.08533614128828049,
- 0.12142815440893173,
- 0.04735925793647766,
- -0.11539402604103088,
- -0.005446662660688162,
- 0.025735747069120407,
- -0.04659554362297058,
- 0.03706279769539833,
- -0.031022759154438972,
- -0.0904838815331459,
- 0.1471898853778839,
- 0.05845912545919418,
- -0.03112022578716278,
- -0.042174406349658966,
- 0.05859988182783127,
- 0.05781230330467224,
- -0.006446785293519497,
- -0.031111322343349457,
- -0.00815493706613779,
- 0.05996605008840561,
- -0.0025926504749804735,
- 0.04326646029949188,
- -0.026883479207754135,
- 0.007860012352466583,
- 0.016562607139348984,
- -0.057047341018915176,
- -0.045348405838012695,
- 0.03135158121585846,
- -0.06889630854129791,
- 0.03358692675828934,
- -0.015141264535486698,
- -0.030439451336860657,
- -0.028586668893694878,
- -0.026686979457736015,
- 0.014448260888457298,
- -0.06514736264944077,
- 0.034919142723083496,
- -0.017606329172849655,
- -0.10781154036521912,
- -0.026205159723758698,
- 0.23657982051372528,
- 0.0022856961004436016,
- 0.04359101876616478,
- -0.005961540155112743,
- -0.10586699843406677,
- 0.03777439519762993,
- -0.09129422903060913,
- -0.037902310490608215,
- 0.0245662871748209,
- -0.003948620054870844,
- 0.011956186965107918,
- -0.01117740012705326,
- 0.010900316759943962,
- -0.06432019174098969,
- 0.03813210129737854,
- 0.07300641387701035,
- 0.06252364814281464,
- 0.019180063158273697,
- 0.10047076642513275,
- -0.05323072522878647,
- 0.003916343208402395,
- 0.07344656437635422,
- 0.05173547565937042,
- -0.0018669835990294814,
- 0.018592407926917076,
- -0.05118660628795624,
- -0.061766017228364944,
- -0.029912086203694344,
- -6.904509984632501e-33,
- 0.024560892954468727,
- -0.10211604088544846,
- 0.018776727840304375,
- 0.08432703465223312,
- -0.04422704875469208,
- 0.040196504443883896,
- -0.0074687860906124115,
- -0.051921162754297256,
- 0.00717033538967371,
- -0.03920299932360649,
- -0.07783421874046326,
- 0.026087826117873192,
- 0.028128162026405334,
- -0.02559303119778633,
- 0.11714091151952744,
- -0.04576309397816658,
- -0.06326982378959656,
- -0.04908156022429466,
- -0.010236596688628197,
- 0.02184373140335083,
- -0.020198483020067215,
- -0.050514984875917435,
- 0.034963466227054596,
- -0.020474882796406746,
- 0.03355657681822777,
- 0.017702393233776093,
- 0.019475923851132393,
- -0.04248690977692604,
- -0.016457613557577133,
- 0.018237508833408356,
- 0.05492835119366646,
- -0.015363438054919243,
- -0.12056402117013931,
- -0.007946308702230453,
- -0.03292549028992653,
- -0.06996407359838486,
- 0.0027471999637782574,
- -0.08787216246128082,
- 0.03723522648215294,
- -0.009028253145515919,
- -0.0795084536075592,
- 0.016996070742607117,
- -0.07974283397197723,
- -0.013160880655050278,
- 0.05554436147212982,
- 0.030594367533922195,
- 0.1043408066034317,
- -0.03286617249250412,
- -0.032089896500110626,
- 0.010750970803201199,
- 0.01812194474041462,
- -0.006588398013263941,
- 0.009244296699762344,
- -0.017222415655851364,
- 0.021386899054050446,
- -0.04515378922224045,
- -0.01718759350478649,
- -0.008951266296207905,
- 0.019819844514131546,
- -0.03081110492348671,
- 0.06240144744515419,
- -0.007008407264947891,
- -0.14268410205841064,
- 0.07204408198595047,
- -0.07377868890762329,
- 0.002863686066120863,
- 0.08045805245637894,
- -0.057937294244766235,
- -0.023155484348535538,
- -0.0014986790483817458,
- 0.006109882146120071,
- -0.02737029828131199,
- -0.0190153606235981,
- -0.03815452381968498,
- 0.054824575781822205,
- -0.01466783694922924,
- -0.01057155430316925,
- -0.015258724801242352,
- 0.13306468725204468,
- -0.01676049642264843,
- 0.03166024014353752,
- -0.012353182770311832,
- -0.020676182582974434,
- -0.04173554107546806,
- 0.08443639427423477,
- 0.04811958968639374,
- 0.04060777649283409,
- -0.12248868495225906,
- 0.017740244045853615,
- 0.017943626269698143,
- -0.012298358604311943,
- -0.022046709433197975,
- 0.0068188016302883625,
- 0.14411324262619019,
- -0.02044295333325863,
- 5.101021368536838e-33,
- 0.005849649664014578,
- -0.015278599224984646,
- 0.02070353552699089,
- 0.060341976583004,
- -0.01449159998446703,
- -0.005753819365054369,
- 0.020437784492969513,
- -0.07858189195394516,
- -0.00450890464708209,
- -0.005592036060988903,
- 0.009939330630004406,
- 0.0238591730594635,
- 0.027077406644821167,
- 0.09548965841531754,
- -0.05467301607131958,
- -0.10212776809930801,
- 0.061335887759923935,
- -0.04406943544745445,
- -0.00616446090862155,
- -0.005782285239547491,
- 0.007900726981461048,
- 0.07328014075756073,
- 0.012358649633824825,
- -0.024873165413737297,
- -0.013079195283353329,
- 0.039198216050863266,
- 0.10125796496868134,
- 0.012473220005631447,
- -0.07095927000045776,
- -0.07769353687763214,
- 0.09328442811965942,
- -0.04309578239917755,
- -0.005945563782006502,
- 0.01777477376163006,
- 0.0358896404504776,
- 0.13831207156181335,
- 0.062453318387269974,
- -0.001802453538402915,
- -0.04201941937208176,
- 0.032776910811662674,
- 0.04143136367201805,
- -0.03792126849293709,
- 0.008301577530801296,
- 0.04684339463710785,
- -0.004681878257542849,
- 0.04159058257937431,
- 0.07944638282060623,
- 0.0036464999429881573,
- 0.02734944224357605,
- 0.05228693410754204,
- 0.044337134808301926,
- 0.0033090764191001654,
- -0.045799341052770615,
- -0.0036110717337578535,
- -0.02970597706735134,
- 0.002504895441234112,
- 0.023968584835529327,
- -0.04989824816584587,
- -0.02275301329791546,
- 0.018003104254603386,
- -0.06799223273992538,
- -0.002369929337874055,
- 0.07212784886360168,
- 0.036456089466810226,
- 0.01833534613251686,
- -0.040221329778432846,
- -0.0649060383439064,
- 0.06769789755344391,
- 0.07784318923950195,
- 0.007287486456334591,
- 0.02216344326734543,
- 0.029396329075098038,
- -0.09973440319299698,
- -0.04991839453577995,
- -0.04685632139444351,
- 0.04675544425845146,
- -0.0880112498998642,
- 0.00635206513106823,
- -0.01959478110074997,
- -0.04001821577548981,
- -0.09385397285223007,
- -0.028537407517433167,
- 0.01437995582818985,
- -0.028413165360689163,
- -0.05173474922776222,
- -0.007279232144355774,
- 0.02701636217534542,
- -0.03239491209387779,
- 0.046621955931186676,
- -0.017828090116381645,
- -0.011485147289931774,
- -0.05142275616526604,
- 0.022117305546998978,
- -0.002716396003961563,
- 0.06177350506186485,
- -1.314688891085325e-8,
- -0.030631329864263535,
- -0.02840784192085266,
- -0.011572513729333878,
- 0.011367115192115307,
- 0.031272225081920624,
- 0.06699854880571365,
- -0.0522543340921402,
- 0.05708649381995201,
- 0.002438661176711321,
- -0.0015714160399511456,
- 0.043022844940423965,
- 0.05781545490026474,
- 0.05760573968291283,
- 0.07387477159500122,
- 0.05472526699304581,
- 0.01677905209362507,
- 0.05571776628494263,
- 0.001130396849475801,
- -0.04975993186235428,
- -0.02854791469871998,
- -0.020011721178889275,
- 0.02177402935922146,
- -0.01777227222919464,
- -0.050947654992341995,
- -0.05314985662698746,
- -0.008426628075540066,
- -0.04000930115580559,
- 0.10132879763841629,
- -0.039485953748226166,
- 0.011111187748610973,
- 0.07502522319555283,
- -0.041775017976760864,
- -0.027425911277532578,
- 0.0075736031867563725,
- -0.0340651273727417,
- 0.019130775704979897,
- 0.04118996858596802,
- -0.008810117840766907,
- 0.059481844305992126,
- -0.05816729739308357,
- 0.010198201984167099,
- 0.03927389904856682,
- 0.04970782250165939,
- 0.06549876928329468,
- -0.10488803684711456,
- -0.02993856556713581,
- -0.009469716809689999,
- 0.055426690727472305,
- -0.0038271949160844088,
- -0.06777987629175186,
- 0.05552597716450691,
- -0.007329965475946665,
- -0.03444593399763107,
- 0.03795459121465683,
- 0.09891313314437866,
- -0.018519997596740723,
- -0.020913835614919662,
- 0.05844702571630478,
- -0.11246974021196365,
- 0.07465140521526337,
- 0.1411355584859848,
- 0.004690622910857201,
- 0.07679563760757446,
- 0.08391246199607849
- ]
- },
- {
- "keyword": "later than",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.01468065194785595,
- 0.046196721494197845,
- -0.011414209380745888,
- 0.049707893282175064,
- 0.013377445749938488,
- -0.029505731537938118,
- -0.008446418680250645,
- 0.05257914960384369,
- 0.05465970188379288,
- 0.01978607103228569,
- 0.06310826539993286,
- 0.03563985228538513,
- 0.03620823100209236,
- 0.08886446803808212,
- 0.08061427623033524,
- 0.05052391067147255,
- 0.09752442687749863,
- -0.04476415365934372,
- -0.09025465697050095,
- -0.027494849637150764,
- -0.07001639157533646,
- -0.0017768320394679904,
- -0.021661611273884773,
- 0.016606159508228302,
- 0.07383748143911362,
- -0.02240031398832798,
- 0.023506702855229378,
- -0.014215429313480854,
- 0.025089828297495842,
- 0.04021764546632767,
- -0.03693317249417305,
- -0.03853049501776695,
- -0.034702468663454056,
- -0.02127017453312874,
- -0.07591009140014648,
- 0.011024747043848038,
- 0.035495027899742126,
- -0.007007977459579706,
- 0.04075568914413452,
- -0.01628255285322666,
- -0.0228599701076746,
- -0.11532279849052429,
- -0.08709866553544998,
- 0.043606940656900406,
- -0.019103385508060455,
- -0.024368559941649437,
- 0.05927291885018349,
- -0.03292032331228256,
- -0.016593487933278084,
- 0.004910983610898256,
- -0.07772256433963776,
- -0.017947962507605553,
- 0.008092375472187996,
- -0.07160134613513947,
- 0.029116559773683548,
- 0.08029646426439285,
- -0.016727006062865257,
- 0.0034179785288870335,
- -0.0213578213006258,
- -0.002954245312139392,
- -0.04909585788846016,
- -0.04123026132583618,
- -0.05737725645303726,
- 0.003016758244484663,
- 0.04949849843978882,
- 0.005283880513161421,
- 0.0619773268699646,
- -0.02055720053613186,
- 0.037527766078710556,
- 0.08125127851963043,
- -0.006939793936908245,
- 0.038973286747932434,
- -0.07547567784786224,
- -0.06729096174240112,
- 0.031851235777139664,
- -0.0032373308204114437,
- 0.037424486130476,
- 0.020051809027791023,
- 0.06552978605031967,
- -0.03927313908934593,
- -0.0561210960149765,
- 0.0017639452125877142,
- -0.01648332178592682,
- 0.023502375930547714,
- -0.03174872323870659,
- -0.02818608656525612,
- 0.030302265658974648,
- -0.0041002677753567696,
- -0.03680642694234848,
- -0.034193068742752075,
- 0.012771201319992542,
- -0.003829472465440631,
- 0.021425234153866768,
- 0.05314931273460388,
- -0.04331168904900551,
- -0.02114545740187168,
- -0.031289469450712204,
- -0.017460795119404793,
- 0.0012962796026840806,
- 0.20348790287971497,
- -0.023304231464862823,
- -0.007505974732339382,
- 0.020150642842054367,
- -0.012693585827946663,
- 0.010999283753335476,
- -0.03346974775195122,
- -0.007449530065059662,
- 0.0611833892762661,
- -0.021060913801193237,
- 0.009332510642707348,
- 0.021279731765389442,
- -0.03616679087281227,
- -0.02127835340797901,
- -0.03810358792543411,
- 0.02950333245098591,
- 0.009500695392489433,
- 0.032048825174570084,
- 0.027015982195734978,
- 0.04578222334384918,
- -0.0164516381919384,
- 0.032765794545412064,
- 0.049765367060899734,
- -0.004034008365124464,
- -0.012046894058585167,
- -0.016883155331015587,
- -0.049727730453014374,
- -0.0259063970297575,
- -2.9765006534568002e-33,
- -0.03277796879410744,
- -0.031066961586475372,
- -0.052491895854473114,
- -0.011329514905810356,
- -0.006872478406876326,
- 0.004454365465790033,
- 0.05818969011306763,
- -0.05391117185354233,
- -0.03565767779946327,
- -0.053318630903959274,
- -0.0746956467628479,
- -0.1213734894990921,
- -0.0710856094956398,
- -0.09596316516399384,
- 0.0045859720557928085,
- -0.049174580723047256,
- -0.0036815721541643143,
- -0.049493324011564255,
- 0.031235897913575172,
- 0.015212812460958958,
- -0.01086796447634697,
- -0.11777559667825699,
- -0.017245778813958168,
- 0.02620316855609417,
- 0.06256285309791565,
- -0.028710441663861275,
- -0.018099065870046616,
- -0.056460198014974594,
- 0.007316673174500465,
- 0.013441955670714378,
- -0.009527684189379215,
- 0.010296283289790154,
- -0.0729396790266037,
- -0.016411304473876953,
- 0.032575275748968124,
- 0.0599573589861393,
- 0.0013840089086443186,
- -0.09466215968132019,
- 0.004600199405103922,
- -0.11508306860923767,
- 0.05568177253007889,
- 0.049648456275463104,
- -0.05367252603173256,
- -0.05413374304771423,
- 0.058479346334934235,
- -0.0027703107334673405,
- -0.022128382697701454,
- 0.030445646494627,
- -0.037659090012311935,
- -0.01433502696454525,
- 0.057779062539339066,
- 0.024099076166749,
- -0.05863168463110924,
- -0.03800361603498459,
- 0.04021454602479935,
- -0.003780798753723502,
- -0.0026017888449132442,
- -0.0644092708826065,
- 0.03804066404700279,
- 0.07942118495702744,
- 0.05559259280562401,
- 0.05373585596680641,
- -0.03458010032773018,
- -0.09174507856369019,
- -0.006063962820917368,
- 0.010544502176344395,
- 0.06990940123796463,
- 0.008139724843204021,
- 0.06813248991966248,
- -0.06589128077030182,
- 0.001264244900085032,
- 0.07562439888715744,
- -0.046987272799015045,
- -0.013063128106296062,
- -0.006091643590480089,
- -0.037290651351213455,
- 0.024517705664038658,
- -0.010977056808769703,
- 0.04404480755329132,
- 0.06699942797422409,
- 0.03249711915850639,
- -0.03685826435685158,
- -0.05602676793932915,
- 0.09967488795518875,
- 0.10659274458885193,
- 0.035192616283893585,
- 0.14360353350639343,
- -0.027849674224853516,
- 0.05480761453509331,
- 0.014905021525919437,
- -0.13393086194992065,
- -0.008915647864341736,
- 0.03987504169344902,
- 0.013115378096699715,
- -0.05423317477107048,
- 3.277858650428256e-33,
- 0.05900480970740318,
- -0.0492730438709259,
- -0.02614729106426239,
- 0.05651815980672836,
- 0.042850639671087265,
- -0.0931459292769432,
- 0.0612792894244194,
- 0.09118136018514633,
- -0.11338735371828079,
- 0.004926102701574564,
- -0.012311217375099659,
- 0.03508647158741951,
- 0.1639956831932068,
- -0.03908316045999527,
- 0.07382743060588837,
- 0.07598727941513062,
- 0.08977728337049484,
- -0.07552088052034378,
- -0.053694453090429306,
- 0.013924055732786655,
- -0.0641733855009079,
- 0.035930242389440536,
- 0.022551314905285835,
- 0.057828910648822784,
- -0.07030817866325378,
- 0.028940251097083092,
- 0.11320388317108154,
- 0.022845327854156494,
- -0.09117594361305237,
- 0.0007664005970582366,
- 0.0452168732881546,
- -0.10508407652378082,
- 0.012185929343104362,
- 0.023666031658649445,
- 0.019357914105057716,
- 0.03740189969539642,
- -0.001042817486450076,
- -0.07528775930404663,
- -0.025762759149074554,
- -0.007828650064766407,
- 0.03744249418377876,
- -0.029690302908420563,
- -0.01883956789970398,
- 0.1077708750963211,
- -0.015168669633567333,
- -0.004926527850329876,
- 0.05550670996308327,
- 0.05771523714065552,
- 0.055898699909448624,
- 0.10821112245321274,
- 0.02565695531666279,
- 0.06641439348459244,
- -0.009228013455867767,
- -0.0007561279344372451,
- -0.024150995537638664,
- -0.02703624591231346,
- -0.027607904747128487,
- -0.003184410510584712,
- 0.017698531970381737,
- 0.020527690649032593,
- -0.028212828561663628,
- -0.0011060090037062764,
- 0.04543197527527809,
- -0.03464767336845398,
- -0.027027225121855736,
- 0.004007789306342602,
- -0.057013723999261856,
- 0.029517201706767082,
- 0.047967031598091125,
- 0.05503322184085846,
- 0.0781053677201271,
- -0.01672617346048355,
- -0.13484127819538116,
- 0.01452659536153078,
- -0.01822325401008129,
- -0.04735151678323746,
- 0.0013643607962876558,
- 0.03125503286719322,
- 0.026006340980529785,
- -0.10543345659971237,
- -0.11280187219381332,
- -0.00868441816419363,
- 0.04209000989794731,
- -0.058171700686216354,
- -0.009901372715830803,
- -0.018902329728007317,
- 0.06963997334241867,
- -0.02854004129767418,
- 0.07560066878795624,
- -0.014562997035682201,
- 0.0165531225502491,
- -0.041313536465168,
- 0.06768561154603958,
- 0.01444652583450079,
- -0.0063596866093575954,
- -1.469234156559196e-8,
- 0.021317586302757263,
- 0.011259621009230614,
- 0.02588348649442196,
- -0.00041751840035431087,
- -0.01843162439763546,
- 0.12497351318597794,
- 0.00977748166769743,
- -0.02622278407216072,
- -0.016083423048257828,
- -0.03328131139278412,
- 0.09112032502889633,
- -0.022088419646024704,
- 0.09156530350446701,
- 0.041076838970184326,
- 0.051283396780490875,
- 0.0029835347086191177,
- 0.011510380543768406,
- -0.1432647705078125,
- -0.0032923612743616104,
- 0.021499251946806908,
- -0.03974063694477081,
- 0.008470989763736725,
- 0.04904336482286453,
- -0.02358430065214634,
- -0.014673711732029915,
- -0.011408310383558273,
- -0.043936967849731445,
- 0.1008199006319046,
- -0.08549744635820389,
- 0.09757040441036224,
- 0.010227439925074577,
- 0.08684991300106049,
- -0.0036346428096294403,
- 0.028096280992031097,
- 0.041399821639060974,
- -0.07832688093185425,
- 0.03262529894709587,
- 0.05084025859832764,
- -0.003885218407958746,
- 0.021112894639372826,
- -0.061872873455286026,
- -0.006707390304654837,
- -0.029062824323773384,
- 0.054444607347249985,
- 0.044869598001241684,
- -0.020963117480278015,
- -0.04081166908144951,
- -0.07773180305957794,
- 0.019525274634361267,
- -0.07574043422937393,
- -0.003641015151515603,
- 0.010058927349746227,
- 0.041046611964702606,
- 0.03138560801744461,
- 0.09691508859395981,
- 0.007911392487585545,
- -0.00872395746409893,
- -0.031135505065321922,
- -0.018339652568101883,
- 0.0018462593434378505,
- 0.10832597315311432,
- -0.06731810420751572,
- 0.0517355240881443,
- 0.014010944403707981
- ]
- },
- {
- "keyword": "after",
- "type": "precedes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.036088235676288605,
- 0.034555621445178986,
- -0.07914715260267258,
- 0.023534098640084267,
- -0.0185035802423954,
- 0.003104486735537648,
- 0.020244251936674118,
- 0.01774054579436779,
- -0.00006827347533544526,
- -0.022629065439105034,
- 0.06865870207548141,
- 0.011622949503362179,
- -0.029724158346652985,
- 0.07691291719675064,
- 0.027114074677228928,
- 0.05002826824784279,
- 0.003629545448347926,
- -0.01128112617880106,
- -0.08105088770389557,
- -0.08571019023656845,
- -0.055507026612758636,
- 0.046474676579236984,
- 0.018225394189357758,
- -0.03077186457812786,
- 0.0434902049601078,
- 0.01833568699657917,
- -0.01840347796678543,
- -0.0151831591501832,
- 0.034403879195451736,
- -0.05305442586541176,
- -0.038822855800390244,
- -0.05352151766419411,
- 0.10210300236940384,
- -0.015102175064384937,
- 0.006371429190039635,
- 0.06308465451002121,
- 0.014201696962118149,
- -0.04816403612494469,
- 0.04013461247086525,
- 0.005668324418365955,
- 0.0122606186196208,
- -0.1117309182882309,
- -0.030925843864679337,
- 0.010173738934099674,
- 0.052160244435071945,
- -0.028280260041356087,
- 0.018974248319864273,
- -0.006877016741782427,
- 0.0776265561580658,
- -0.028018375858664513,
- 0.02053034119307995,
- -0.044714104384183884,
- -0.03514464572072029,
- -0.014430643990635872,
- -0.009812199510633945,
- 0.0701371356844902,
- 0.024353407323360443,
- 0.005192163400352001,
- -0.007041137665510178,
- -0.04036806896328926,
- 0.05912979692220688,
- 0.05303027853369713,
- -0.14161023497581482,
- 0.09757473319768906,
- 0.052548352628946304,
- -0.023676441982388496,
- 0.01984259858727455,
- 0.006830359343439341,
- -0.018351327627897263,
- 0.09945723414421082,
- 0.06131225824356079,
- 0.016298647969961166,
- -0.013882221654057503,
- -0.05451410263776779,
- 0.05986098200082779,
- 0.014883280731737614,
- 0.042323626577854156,
- -0.011592335067689419,
- 0.04774302616715431,
- 0.043012309819459915,
- -0.041750598698854446,
- 0.005391323938965797,
- 0.011091796681284904,
- 0.022309666499495506,
- -0.06265753507614136,
- -0.04474235698580742,
- 0.01124256569892168,
- 0.02063264511525631,
- -0.02421438694000244,
- 0.023620426654815674,
- -0.05589982867240906,
- 0.08798915147781372,
- -0.014053587801754475,
- 0.013995302841067314,
- -0.08019277453422546,
- -0.01388024352490902,
- 0.043124932795763016,
- -0.014311102218925953,
- -0.004415703937411308,
- 0.25821003317832947,
- -0.016614675521850586,
- -0.014237281866371632,
- -0.011193403042852879,
- 0.054648902267217636,
- 0.017225800082087517,
- -0.09149330854415894,
- -0.08429322391748428,
- 0.022664247080683708,
- 0.01579652912914753,
- 0.02006456069648266,
- -0.014791405759751797,
- -0.013933481648564339,
- 0.024842550978064537,
- -0.033194947987794876,
- 0.06987424194812775,
- 0.0583023726940155,
- 0.010171930305659771,
- 0.07767263054847717,
- 0.08838354796171188,
- -0.07551712542772293,
- 0.05115234851837158,
- 0.07697321474552155,
- -0.04359383508563042,
- -0.021119374781847,
- -0.04309222847223282,
- -0.07028558850288391,
- 0.04580423980951309,
- -5.400621817782822e-33,
- -0.017407985404133797,
- -0.042825810611248016,
- 0.015821723267436028,
- -0.04000752419233322,
- 0.006847413722425699,
- 0.03162344917654991,
- 0.056832022964954376,
- -0.06594516336917877,
- -0.06118403375148773,
- -0.024978922680020332,
- -0.025872306898236275,
- -0.010026296600699425,
- -0.05680349841713905,
- -0.08817020058631897,
- -0.018114792183041573,
- -0.01715756021440029,
- 0.05286851525306702,
- -0.10874518752098083,
- -0.040377531200647354,
- -0.012255660258233547,
- -0.052908867597579956,
- 0.008016366511583328,
- 0.0017360455822199583,
- 0.09011300653219223,
- -0.017013296484947205,
- -0.025553904473781586,
- 0.04268931224942207,
- -0.08608680963516235,
- -0.03267689049243927,
- 0.05070040374994278,
- -0.018589049577713013,
- -0.010848949663341045,
- -0.12806658446788788,
- 0.013794083148241043,
- -0.0264752097427845,
- 0.04694939777255058,
- 0.04378506913781166,
- -0.07135143876075745,
- -0.07442489266395569,
- -0.024200769141316414,
- 0.04255271703004837,
- 0.011555091477930546,
- -0.05819987505674362,
- 0.016141025349497795,
- 0.021484211087226868,
- 0.03900983929634094,
- -0.037592850625514984,
- 0.03518349304795265,
- 0.026432069018483162,
- 0.004887411370873451,
- -0.03285521641373634,
- 0.015732673928141594,
- -0.0017274278216063976,
- -0.02189231850206852,
- -0.031806256622076035,
- 0.0157069843262434,
- 0.005793306976556778,
- -0.07131501287221909,
- 0.024766432121396065,
- -0.02676587738096714,
- 0.030024170875549316,
- 0.05770374462008476,
- -0.018297798931598663,
- -0.004866152070462704,
- -0.028466681018471718,
- 0.014562392607331276,
- 0.010389613918960094,
- -0.0010946723632514477,
- -0.010321799665689468,
- -0.03495994955301285,
- -0.0015279540093615651,
- 0.040685996413230896,
- 0.021998632699251175,
- 0.08954700082540512,
- -0.022575970739126205,
- -0.04203024506568909,
- -0.06892169266939163,
- -0.013283646665513515,
- -0.021473094820976257,
- 0.05693161115050316,
- 0.019982799887657166,
- -0.04050816595554352,
- -0.06091305613517761,
- 0.03637595474720001,
- 0.10816904902458191,
- 0.09396102279424667,
- 0.044580817222595215,
- -0.11050477623939514,
- 0.020045770332217216,
- -0.06421220302581787,
- -0.0695689469575882,
- 0.025391660630702972,
- 0.09805089980363846,
- 0.08483149111270905,
- -0.11311449110507965,
- 3.439616591334988e-33,
- 0.04424014315009117,
- -0.014095686376094818,
- -0.05339021980762482,
- 0.05657007917761803,
- 0.007329410873353481,
- -0.07170448452234268,
- 0.06389809399843216,
- 0.0851006805896759,
- -0.04561024159193039,
- 0.01964867301285267,
- -0.010569167323410511,
- -0.01164752896875143,
- 0.04614224284887314,
- -0.01455163024365902,
- 0.04723626375198364,
- 0.04800844565033913,
- 0.08200650662183762,
- -0.0820726677775383,
- -0.06434114277362823,
- 0.013051742687821388,
- -0.03881088271737099,
- 0.00012491733650676906,
- 0.009525388479232788,
- 0.0004733116365969181,
- -0.08145757764577866,
- 0.053052015602588654,
- 0.10911738872528076,
- -0.02943551354110241,
- -0.08754897117614746,
- 0.05946855619549751,
- 0.11673146486282349,
- -0.05851216986775398,
- -0.06126750260591507,
- 0.03966213017702103,
- 0.03446340560913086,
- 0.05617256462574005,
- 0.05894317850470543,
- 0.009633387438952923,
- -0.022564934566617012,
- 0.04888547956943512,
- 0.11664187163114548,
- -0.01361258514225483,
- -0.0067550428211688995,
- 0.13311217725276947,
- 0.01717505045235157,
- -0.01171144749969244,
- 0.07822061330080032,
- 0.026559727266430855,
- 0.008998140692710876,
- 0.08472895622253418,
- 0.05431384593248367,
- 0.07897309958934784,
- 0.03622240200638771,
- -0.05768358334898949,
- -0.0032023973762989044,
- -0.013476502150297165,
- -0.01769719272851944,
- 0.011150741949677467,
- 0.049220483750104904,
- -0.05945109203457832,
- -0.041588637977838516,
- 0.02144237793982029,
- -0.008078621700406075,
- 0.04335277900099754,
- -0.009950085543096066,
- 0.0018337679794058204,
- -0.07058540731668472,
- -0.038394514471292496,
- 0.013522244989871979,
- -0.0577007532119751,
- 0.012537559494376183,
- -0.008398089557886124,
- -0.13586010038852692,
- 0.006613434292376041,
- -0.0700782835483551,
- -0.06381167471408844,
- -0.010947481729090214,
- -0.013053864240646362,
- 0.03193982318043709,
- -0.04143180325627327,
- -0.15755057334899902,
- -0.052900563925504684,
- 0.018039610236883163,
- -0.055516794323921204,
- 0.0007994890329428017,
- -0.07640067487955093,
- 0.10468123108148575,
- 0.02287798747420311,
- 0.024039924144744873,
- -0.05779151991009712,
- 0.03666604682803154,
- 0.024360662326216698,
- 0.028348520398139954,
- -0.026958279311656952,
- -0.001618789043277502,
- -1.485698852832229e-8,
- -0.004851347766816616,
- -0.00887094996869564,
- 0.024230876937508583,
- 0.03281477093696594,
- 0.09174078702926636,
- 0.1087154746055603,
- -0.0851067379117012,
- 0.011474179103970528,
- -0.033781908452510834,
- -0.1311875432729721,
- 0.05743994191288948,
- 0.005218299571424723,
- -0.01086400169879198,
- 0.013119894079864025,
- 0.0141983637586236,
- -0.06218550726771355,
- 0.004416735842823982,
- -0.060561440885066986,
- 0.01127396710216999,
- 0.018691683188080788,
- -0.08214141428470612,
- 0.0026833845768123865,
- 0.01815285161137581,
- -0.03855428099632263,
- 0.054396405816078186,
- 0.03143148496747017,
- -0.019031058996915817,
- 0.0652383416891098,
- 0.01842488721013069,
- 0.043761588633060455,
- -0.04380369186401367,
- -0.017433233559131622,
- -0.04973764345049858,
- 0.02918587066233158,
- -0.024265853688120842,
- -0.06734046339988708,
- 0.04696829989552498,
- 0.024369122460484505,
- 0.01715891622006893,
- 0.007993814535439014,
- -0.033502161502838135,
- -0.030689535662531853,
- 0.040660928934812546,
- -0.04488843306899071,
- -0.010474814102053642,
- -0.028537487611174583,
- -0.027866503223776817,
- -0.04235938936471939,
- 0.038692671805620193,
- -0.027516227215528488,
- -0.03696731477975845,
- -0.003946329466998577,
- -0.016986465081572533,
- 0.02388482354581356,
- 0.032249800860881805,
- 0.012420776300132275,
- 0.011646918021142483,
- -0.0296020545065403,
- -0.04100564867258072,
- 0.04756392911076546,
- 0.1355966180562973,
- -0.006556610111147165,
- 0.019303103908896446,
- 0.0382298119366169
- ]
- },
- {
- "keyword": "causes",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.05084386095404625,
- 0.026126375421881676,
- 0.0751357227563858,
- 0.08435835689306259,
- 0.07588262110948563,
- 0.010784461162984371,
- 0.05196324363350868,
- 0.06684815883636475,
- 0.003956096712499857,
- 0.03552199527621269,
- -0.021159734576940536,
- -0.04357706755399704,
- 0.0004059873754158616,
- -0.01391526497900486,
- -0.03235303610563278,
- -0.03260282799601555,
- -0.07367733865976334,
- -0.07939238101243973,
- -0.08396231383085251,
- 0.021138975396752357,
- -0.054772961884737015,
- -0.0033967227209359407,
- -0.026293400675058365,
- -0.0047200084663927555,
- -0.15155763924121857,
- -0.012035398744046688,
- 0.015637250617146492,
- -0.04837038740515709,
- 0.08990831673145294,
- -0.07205830514431,
- 0.006459530908614397,
- 0.04385518655180931,
- 0.003106631338596344,
- 0.0006951094255782664,
- -0.005209074355661869,
- 0.029119236394762993,
- 0.01386979315429926,
- 0.0311137568205595,
- -0.023224471136927605,
- 0.005749206058681011,
- 0.005895780399441719,
- -0.08659806102514267,
- -0.0016525747487321496,
- -0.004913017153739929,
- -0.012086768634617329,
- -0.018667837604880333,
- 0.04481500759720802,
- 0.048742011189460754,
- -0.012077201157808304,
- -0.0017694761045277119,
- -0.04412050172686577,
- -0.04525160416960716,
- 0.03650151938199997,
- -0.027155734598636627,
- 0.04171944782137871,
- -0.12184343487024307,
- 0.030644485726952553,
- 0.03674919158220291,
- 0.0046958401799201965,
- 0.010911012068390846,
- 0.04151097685098648,
- 0.0013130304869264364,
- -0.10567881911993027,
- 0.02539432980120182,
- 0.1187654435634613,
- 0.054065853357315063,
- 0.02760450914502144,
- 0.02484932541847229,
- -0.02057192288339138,
- 0.11315856128931046,
- 0.07332833856344223,
- -0.014951368793845177,
- -0.05941890552639961,
- 0.010251112282276154,
- 0.06293021887540817,
- 0.021141426637768745,
- -0.06743614375591278,
- -0.04050493612885475,
- 0.03663530573248863,
- 0.02894691936671734,
- 0.08989851176738739,
- 0.04080444201827049,
- -0.018635205924510956,
- 0.01694544591009617,
- 0.09756163507699966,
- -0.05578915774822235,
- 0.08099967986345291,
- -0.06323739141225815,
- -0.04659942537546158,
- 0.07102170586585999,
- -0.02529202215373516,
- -0.06940572708845139,
- 0.10347650200128555,
- 0.04022936895489693,
- -0.012177575379610062,
- 0.05607536807656288,
- 0.02784750610589981,
- -0.08927150815725327,
- 0.008486059494316578,
- 0.17176198959350586,
- 0.00013942093937657773,
- 0.0001578385999891907,
- 0.026895076036453247,
- 0.10680653154850006,
- 0.06505448371171951,
- -0.06862793862819672,
- 0.001907562487758696,
- -0.0301901176571846,
- -0.012120501138269901,
- -0.019032958894968033,
- 0.02252562716603279,
- 0.026893511414527893,
- 0.03925183042883873,
- -0.08915334939956665,
- 0.06749480217695236,
- -0.03844247758388519,
- 0.08295410126447678,
- -0.014083960093557835,
- -0.07540775835514069,
- -0.020522212609648705,
- -0.012308379635214806,
- 0.0015720970695838332,
- -0.08374911546707153,
- 0.03509988635778427,
- -0.0843186303973198,
- -0.11195343732833862,
- -0.1134634017944336,
- -5.20807253704027e-33,
- 0.04345857724547386,
- -0.08505801111459732,
- -0.03283834829926491,
- 0.03131864219903946,
- 0.015705518424510956,
- 0.017462577670812607,
- -0.03254431486129761,
- -0.041351355612277985,
- 0.017385583370923996,
- 0.021031254902482033,
- 0.00662829726934433,
- -0.04366565868258476,
- 0.017880776897072792,
- -0.06008883938193321,
- 0.0628863200545311,
- -0.00906949583441019,
- -0.07514303922653198,
- -0.000048100908315973356,
- -0.04501347988843918,
- 0.008153721690177917,
- -0.030349167063832283,
- -0.03605135157704353,
- -0.00342310662381351,
- -0.013859190046787262,
- -0.05936209112405777,
- 0.01383010670542717,
- -0.050443943589925766,
- -0.05149829015135765,
- 0.028197428211569786,
- 0.011637928895652294,
- 0.05390961840748787,
- 0.00007592481415485963,
- -0.015170409344136715,
- -0.006085173226892948,
- -0.042269811034202576,
- -0.01936335861682892,
- -0.03271013870835304,
- -0.0382087305188179,
- -0.006802616640925407,
- -0.016443602740764618,
- -0.081732839345932,
- 0.011939897201955318,
- -0.04200008139014244,
- 0.01991400122642517,
- 0.0839250460267067,
- -0.007682749070227146,
- 0.016386305913329124,
- -0.05988426133990288,
- -0.09557335078716278,
- 0.04323358088731766,
- -0.024896545335650444,
- 0.036172717809677124,
- -0.0014772363938391209,
- 0.007931728847324848,
- 0.018301459029316902,
- -0.0034825741313397884,
- 0.02145780809223652,
- -0.0558391697704792,
- -0.0020523807033896446,
- 0.022786004468798637,
- 0.03151587396860123,
- 0.0336926132440567,
- -0.017274172976613045,
- 0.1085057407617569,
- -0.007991096936166286,
- -0.0810200646519661,
- 0.06138446182012558,
- -0.06524290144443512,
- -0.0568387471139431,
- 0.007006378844380379,
- -0.030885132029652596,
- -0.017581969499588013,
- -0.02390659786760807,
- -0.031218212097883224,
- -0.012514387257397175,
- 0.01537408772855997,
- -0.04347929731011391,
- 0.017742380499839783,
- -0.05940578877925873,
- -0.01654599979519844,
- -0.05386042222380638,
- -0.02082083374261856,
- 0.05231354758143425,
- -0.03883055970072746,
- -0.016526976600289345,
- 0.07089846581220627,
- -0.029351623728871346,
- -0.05440649390220642,
- -0.021821778267621994,
- 0.0001266138715436682,
- 0.06369281560182571,
- -0.004930019378662109,
- 0.0620829202234745,
- 0.05847031995654106,
- -0.04332737252116203,
- 2.302746229815836e-33,
- -0.09388107806444168,
- -0.024707913398742676,
- -0.045819517225027084,
- -0.06326353549957275,
- 0.03501668572425842,
- -0.01897035911679268,
- -0.022680770605802536,
- 0.011187096126377583,
- 0.011978533118963242,
- 0.018344508484005928,
- -0.048034295439720154,
- -0.05392419919371605,
- 0.00861321110278368,
- 0.0570472814142704,
- -0.000848019786644727,
- -0.06866180151700974,
- 0.0188458189368248,
- 0.06585594266653061,
- -0.003989509306848049,
- -0.052706412971019745,
- -0.029109599068760872,
- 0.041041553020477295,
- -0.03182606399059296,
- -0.1082383468747139,
- -0.06309772282838821,
- 0.058156441897153854,
- -0.026431208476424217,
- 0.047562044113874435,
- -0.008742676116526127,
- 0.05344085395336151,
- 0.0394175760447979,
- 0.0895143523812294,
- -0.05809846520423889,
- 0.05243288353085518,
- 0.006685210857540369,
- 0.13198699057102203,
- 0.0170669537037611,
- 0.00018787424778565764,
- -0.012869928032159805,
- -0.013114992529153824,
- 0.06922747939825058,
- 0.01002610381692648,
- 0.11694607138633728,
- 0.07003955543041229,
- 0.04265977814793587,
- 0.0004988227738067508,
- 0.015957871451973915,
- 0.033101361244916916,
- 0.12741108238697052,
- 0.008625551126897335,
- -0.01631970889866352,
- 0.0035856899339705706,
- 0.04712497815489769,
- 0.055932167917490005,
- -0.018415840342640877,
- -0.02717364951968193,
- -0.06353498995304108,
- -0.025343311950564384,
- -0.02149241417646408,
- 0.047095879912376404,
- 0.003878197632730007,
- 0.06858465820550919,
- -0.05068592727184296,
- -0.030752073973417282,
- 0.04228873923420906,
- -0.03201884776353836,
- -0.01169277261942625,
- -0.019763467833399773,
- 0.13333795964717865,
- -0.013306580483913422,
- 0.004026222974061966,
- 0.041001468896865845,
- -0.152507945895195,
- -0.014465676620602608,
- -0.06596826016902924,
- 0.04120328649878502,
- -0.1281139999628067,
- 0.05503905937075615,
- -0.0014050588943064213,
- -0.04498562961816788,
- -0.04722856357693672,
- -0.032742708921432495,
- 0.04854610934853554,
- 0.04602359980344772,
- -0.11348767578601837,
- 0.004550975281745195,
- 0.03588517755270004,
- 0.003328415099531412,
- 0.0342475064098835,
- -0.010336940176784992,
- -0.01724369078874588,
- -0.0026489964220672846,
- -0.05521153658628464,
- 0.03398294746875763,
- 0.007283854763954878,
- -1.185194342667728e-8,
- 0.017587369307875633,
- -0.061729203909635544,
- -0.053785111755132675,
- -0.007919560186564922,
- 0.04306550323963165,
- -0.002852220321074128,
- -0.022903980687260628,
- 0.07214414328336716,
- 0.029120370745658875,
- 0.03563937544822693,
- -0.08153499662876129,
- 0.08492448925971985,
- -0.018535982817411423,
- 0.05015918239951134,
- 0.023288091644644737,
- -0.02451232261955738,
- -0.03166923671960831,
- 0.06868109852075577,
- -0.0018418491818010807,
- -0.0782155841588974,
- 0.008493823930621147,
- -0.041101615875959396,
- 0.027618641033768654,
- 0.040815599262714386,
- -0.016104353591799736,
- -0.03297549486160278,
- 0.05757501348853111,
- 0.05466323345899582,
- -0.014944428578019142,
- -0.03187040984630585,
- 0.04727083817124367,
- 0.007300048600882292,
- -0.05110343545675278,
- 0.018318792805075645,
- -0.032894790172576904,
- 0.010796412825584412,
- -0.023219136521220207,
- -0.09039237350225449,
- 0.013133935630321503,
- -0.09074690192937851,
- 0.03512154892086983,
- 0.07557191699743271,
- 0.09034249931573868,
- -0.007390917744487524,
- -0.03859829902648926,
- 0.0020316129084676504,
- -0.017481807619333267,
- 0.06372636556625366,
- 0.06157856062054634,
- 0.03639537841081619,
- -0.10951869189739227,
- 0.0009091402171179652,
- 0.043731074780225754,
- 0.054454728960990906,
- 0.028026260435581207,
- 0.04134223610162735,
- 0.04938172549009323,
- 0.033111851662397385,
- 0.04089380428195,
- 0.011608394794166088,
- 0.12570510804653168,
- 0.06557074934244156,
- 0.12301571667194366,
- 0.00880980584770441
- ]
- },
- {
- "keyword": "results in",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.007451784797012806,
- 0.08218704164028168,
- -0.05317861586809158,
- 0.05621648579835892,
- -0.016244633123278618,
- -0.011553692631423473,
- 0.03526529297232628,
- 0.09422013908624649,
- 0.024176565930247307,
- 0.02723313868045807,
- 0.060981765389442444,
- -0.04040835052728653,
- 0.06418824940919876,
- -0.0005423808470368385,
- -0.02070005238056183,
- 0.01960737630724907,
- 0.034278661012649536,
- -0.04819613695144653,
- -0.11149138957262039,
- -0.08274484425783157,
- -0.032345451414585114,
- 0.028157658874988556,
- -0.043319351971149445,
- -0.005148281343281269,
- -0.004135566297918558,
- 0.009033620357513428,
- -0.09214012324810028,
- 0.008088053204119205,
- 0.07200819253921509,
- -0.06270784884691238,
- -0.04022481292486191,
- 0.03753088787198067,
- 0.061972539871931076,
- 0.017497936263680458,
- 0.008135486394166946,
- 0.024321939796209335,
- 0.02944161370396614,
- 0.004117026925086975,
- 0.015559474937617779,
- -0.0945039764046669,
- 0.043033041059970856,
- -0.12188872694969177,
- 0.03794100135564804,
- -0.007888233289122581,
- 0.02002396620810032,
- -0.015730634331703186,
- -0.04549151286482811,
- -0.014513966627418995,
- -0.0023454411420971155,
- 0.03239373862743378,
- -0.10307523608207703,
- 0.040088951587677,
- -0.035013869404792786,
- 0.024690940976142883,
- -0.03681252896785736,
- -0.019168954342603683,
- -0.037162575870752335,
- -0.02021210454404354,
- 0.011476382613182068,
- -0.06296512484550476,
- 0.12265234440565109,
- -0.02977714315056801,
- -0.13245700299739838,
- 0.029206683859229088,
- 0.08125125616788864,
- -0.08188631385564804,
- 0.011008817702531815,
- -0.001816079020500183,
- -0.05728619545698166,
- -0.081295445561409,
- 0.07615259289741516,
- 0.025670582428574562,
- -0.00015102486941032112,
- 0.08656851202249527,
- 0.07487145811319351,
- 0.004719432443380356,
- -0.05966878682374954,
- -0.07272465527057648,
- 0.04362734407186508,
- 0.00020033067266922444,
- -0.020811550319194794,
- -0.07083681225776672,
- -0.050420716404914856,
- 0.018899960443377495,
- 0.039679206907749176,
- -0.026739798486232758,
- 0.0013993012253195047,
- -0.039043575525283813,
- 0.03949872776865959,
- -0.0025148692075163126,
- 0.011616126634180546,
- 0.033128973096609116,
- -0.05195830389857292,
- -0.0037526870146393776,
- -0.09857721626758575,
- -0.0067955744452774525,
- 0.0730724185705185,
- 0.048491090536117554,
- 0.054860275238752365,
- 0.16683301329612732,
- 0.009223567321896553,
- 0.06336667388677597,
- -0.06761609762907028,
- -0.06127512827515602,
- -0.03427911177277565,
- -0.029815560206770897,
- -0.022190768271684647,
- 0.03778761997818947,
- 0.05481940880417824,
- -0.04840110242366791,
- -0.055518653243780136,
- 0.008801400661468506,
- 0.042824696749448776,
- 0.06091542914509773,
- 0.027045125141739845,
- -0.004093530587852001,
- 0.03557589277625084,
- 0.06312243640422821,
- 0.047451604157686234,
- 0.03667613863945007,
- -0.004127243999391794,
- 0.0190045814961195,
- -0.033833980560302734,
- -0.019229287281632423,
- -0.06219321861863136,
- -0.0020703694317489862,
- 0.000991030945442617,
- -3.914018193336031e-33,
- 0.003716771025210619,
- -0.08536356687545776,
- 0.013356704264879227,
- 0.04774625971913338,
- -0.022817805409431458,
- -0.025525832548737526,
- -0.03491252660751343,
- -0.0016759773716330528,
- -0.04684846103191376,
- 0.002813066355884075,
- -0.10252481698989868,
- -0.0253068208694458,
- 0.07144362479448318,
- 0.04533280432224274,
- 0.040819354355335236,
- 0.02011091448366642,
- 0.03028871677815914,
- 0.0349331758916378,
- -0.127200648188591,
- 0.057419322431087494,
- -0.06662852317094803,
- 0.022088447585701942,
- 0.03294519707560539,
- 0.011194605380296707,
- -0.024543972685933113,
- 0.048880841583013535,
- 0.015554705634713173,
- -0.08269725739955902,
- -0.049503546208143234,
- 0.020258359611034393,
- 0.03514662757515907,
- 0.04738195240497589,
- -0.06546083837747574,
- 0.01178715843707323,
- 0.020267190411686897,
- 0.04719352349638939,
- 0.03441379591822624,
- -0.07728032767772675,
- 0.022809090092778206,
- -0.01852603070437908,
- -0.08902496099472046,
- -0.020406704396009445,
- -0.03770100325345993,
- -0.023151027038693428,
- 0.029846616089344025,
- 0.003150885459035635,
- 0.03978240489959717,
- 0.0239725261926651,
- 0.0653347298502922,
- -0.008725413121283054,
- -0.03593044728040695,
- 0.032484110444784164,
- -0.06306979805231094,
- -0.013619396835565567,
- 0.013354510068893433,
- 0.02088126726448536,
- 0.02271829918026924,
- -0.03251953050494194,
- 0.0022826644126325846,
- 0.019873501732945442,
- 0.04055727273225784,
- 0.06551667302846909,
- -0.06587573885917664,
- -0.054621364921331406,
- -0.07320085167884827,
- 0.028647396713495255,
- 0.03250548988580704,
- -0.06340770423412323,
- 0.005213810596615076,
- 0.03586218133568764,
- -0.07958115637302399,
- 0.026163242757320404,
- 0.057115428149700165,
- 0.044707488268613815,
- 0.0766720250248909,
- -0.056800082325935364,
- -0.03915935009717941,
- -0.06342475116252899,
- -0.03106006793677807,
- 0.012996061705052853,
- 0.07765714824199677,
- -0.028727605938911438,
- -0.026054881513118744,
- 0.044395752251148224,
- 0.07036977261304855,
- 0.0735488161444664,
- -0.038204632699489594,
- -0.14475883543491364,
- 0.02662406675517559,
- -0.006903666537255049,
- -0.04125399887561798,
- 0.015673648566007614,
- 0.027212655171751976,
- -0.006809350103139877,
- -0.019690265879034996,
- 2.356823378057477e-33,
- -0.0417037196457386,
- 0.06577552109956741,
- -0.01481468416750431,
- -0.03719429671764374,
- 0.08977919071912766,
- 0.0012524762423709035,
- 0.0768394023180008,
- -0.021921176463365555,
- 0.027450986206531525,
- 0.042182303965091705,
- 0.048533353954553604,
- -0.011564354412257671,
- 0.03545844554901123,
- 0.0030841135885566473,
- -0.00409662164747715,
- -0.0491832010447979,
- 0.03226139396429062,
- -0.07732269912958145,
- -0.05560082197189331,
- 0.04985829442739487,
- -0.028814582154154778,
- 0.041123732924461365,
- -0.00814629066735506,
- 0.06317645311355591,
- -0.015362330712378025,
- 0.04507613927125931,
- 0.10417617857456207,
- -0.024639952927827835,
- -0.03569465130567551,
- -0.05029580742120743,
- 0.03802749887108803,
- -0.04466457664966583,
- -0.13630400598049164,
- 0.015210962854325771,
- -0.015875032171607018,
- 0.0732356384396553,
- 0.1425836682319641,
- -0.01224831584841013,
- -0.015269368886947632,
- 0.014191280119121075,
- 0.0871233120560646,
- -0.0169072188436985,
- 0.009693878702819347,
- 0.16224221885204315,
- -0.026606960222125053,
- -0.04098129644989967,
- -0.03627955913543701,
- -0.0011645470513030887,
- 0.0638875812292099,
- 0.06997472792863846,
- -0.02992778830230236,
- 0.004779068753123283,
- -0.04463208094239235,
- -0.027880501002073288,
- 0.024066297337412834,
- -0.13434894382953644,
- 0.006352451629936695,
- 0.020055944100022316,
- -0.02443799190223217,
- 0.019064784049987793,
- -0.16701219975948334,
- 0.051861342042684555,
- -0.029385000467300415,
- 0.08214804530143738,
- -0.037444956600666046,
- 0.015394468791782856,
- -0.047594357281923294,
- 0.06030898168683052,
- 0.08805035799741745,
- 0.015740130096673965,
- -0.00014393008314073086,
- -0.00618721591308713,
- -0.022955626249313354,
- -0.021315107122063637,
- 0.03489028289914131,
- 0.03397393599152565,
- -0.005489415489137173,
- 0.007310263812541962,
- 0.007244758773595095,
- 0.01858031377196312,
- -0.09947355836629868,
- 0.009511423297226429,
- -0.004357850644737482,
- 0.026369057595729828,
- -0.02790083922445774,
- -0.010460983961820602,
- 0.059365492314100266,
- 0.010302779264748096,
- -0.00961514562368393,
- -0.006340544670820236,
- 0.0015284479595720768,
- 0.0330139584839344,
- 0.01128818653523922,
- 0.05277051776647568,
- 0.04803425818681717,
- -1.2888560441126629e-8,
- -0.018148433417081833,
- 0.020619455724954605,
- 0.05312230437994003,
- 0.03948168084025383,
- 0.026571078225970268,
- 0.09089667350053787,
- -0.029767174273729324,
- 0.06197302043437958,
- -0.035123031586408615,
- -0.0035657230764627457,
- -0.01376139186322689,
- 0.004801524803042412,
- -0.05925340950489044,
- 0.021308287978172302,
- 0.09811554104089737,
- -0.0348682664334774,
- -0.07086437940597534,
- 0.05181422084569931,
- -0.06951350718736649,
- -0.07345141470432281,
- -0.008641657419502735,
- 0.058961302042007446,
- 0.01153804361820221,
- -0.04363948851823807,
- -0.05204661563038826,
- 0.011484337970614433,
- -0.08115074038505554,
- 0.1470046043395996,
- -0.09855293482542038,
- 0.03355318307876587,
- 0.000359366211341694,
- 0.0375007726252079,
- -0.014916514046490192,
- -0.03476845100522041,
- 0.07867220789194107,
- -0.05228018760681152,
- 0.012539554387331009,
- 0.022383885458111763,
- 0.06431165337562561,
- -0.027872437611222267,
- 0.013617908582091331,
- -0.05117715522646904,
- 0.04403148218989372,
- 0.0018017611000686884,
- -0.06526550650596619,
- 0.04277164116501808,
- 0.06363683193922043,
- 0.0020411142613738775,
- -0.007162030320614576,
- 0.011349467560648918,
- -0.020785188302397728,
- -0.03662564232945442,
- 0.00870240107178688,
- -0.007811319548636675,
- 0.04506634548306465,
- 0.01280333660542965,
- 0.03235507756471634,
- -0.0687982514500618,
- -0.07060644775629044,
- 0.10287123173475266,
- 0.09345022588968277,
- -0.05504365265369415,
- 0.02614189125597477,
- 0.03608718886971474
- ]
- },
- {
- "keyword": "leads to",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.013826403766870499,
- 0.009867996908724308,
- -0.02110271155834198,
- 0.0394577831029892,
- 0.030224455520510674,
- 0.07572316378355026,
- -0.03583105280995369,
- -0.007537623401731253,
- 0.034298427402973175,
- 0.007588896434754133,
- 0.0013373119290918112,
- 0.007650625426322222,
- 0.008989803493022919,
- 0.049951858818531036,
- 0.04922129958868027,
- 0.011056007817387581,
- -0.023404791951179504,
- -0.02152126096189022,
- -0.08249169588088989,
- -0.0330129936337471,
- -0.08982379734516144,
- 0.0680319294333458,
- -0.004997302778065205,
- -0.043365322053432465,
- -0.07286830246448517,
- -0.0046646748669445515,
- -0.007769939489662647,
- -0.04868828132748604,
- -0.008145504631102085,
- -0.041009657084941864,
- 0.02803802862763405,
- -0.052219927310943604,
- -0.0024705487303435802,
- 0.015299760736525059,
- 0.029228510335087776,
- 0.04384160414338112,
- 0.029867613688111305,
- -0.029956987127661705,
- -0.04624345153570175,
- -0.023523323237895966,
- 0.03802202269434929,
- -0.08875304460525513,
- 0.03140582889318466,
- 0.08209228515625,
- 0.02149265632033348,
- -0.00036512420047074556,
- 0.028676889836788177,
- -0.09537908434867859,
- 0.022351287305355072,
- -0.038659051060676575,
- -0.07731929421424866,
- 0.013514096848666668,
- -0.03825375810265541,
- 0.02134230174124241,
- 0.0077292476780712605,
- 0.05215911194682121,
- 0.028190867975354195,
- -0.0158605445176363,
- 0.034102924168109894,
- -0.01713160239160061,
- 0.07747366279363632,
- -0.04110186919569969,
- -0.1064561977982521,
- -0.047031451016664505,
- 0.002827725373208523,
- -0.037374164909124374,
- 0.0588376447558403,
- 0.03179987892508507,
- -0.06418479979038239,
- 0.08165798336267471,
- 0.06710202246904373,
- 0.0197958555072546,
- 0.01768026128411293,
- 0.00715473061427474,
- 0.009212602861225605,
- 0.06404446065425873,
- 0.011494800448417664,
- -0.059599850326776505,
- 0.05699712038040161,
- -0.11618910729885101,
- 0.05459314584732056,
- 0.022482020780444145,
- -0.030834456905722618,
- 0.060711219906806946,
- 0.004033220000565052,
- -0.0007359785959124565,
- 0.002509223995730281,
- -0.08761616051197052,
- -0.02616140805184841,
- 0.0665527954697609,
- -0.04907646030187607,
- -0.028844190761446953,
- -0.007349125575274229,
- 0.03587944433093071,
- -0.0755024328827858,
- 0.03234616667032242,
- 0.028711488470435143,
- -0.05528869479894638,
- -0.030451426282525063,
- 0.17684930562973022,
- 0.02664981409907341,
- 0.033813949674367905,
- -0.08615653961896896,
- -0.05808274820446968,
- 0.06975375860929489,
- 0.0017502097180113196,
- -0.0057920850813388824,
- 0.02080288529396057,
- 0.020111091434955597,
- 0.04362798482179642,
- 0.031766265630722046,
- -0.020768610760569572,
- -0.0014924845891073346,
- 0.07210192084312439,
- 0.03465865179896355,
- -0.05500778555870056,
- -0.05512993782758713,
- 0.0377931073307991,
- 0.005232018884271383,
- 0.005328446161001921,
- 0.06317674368619919,
- 0.04881875962018967,
- -0.003705468727275729,
- 0.030388249084353447,
- -0.024691827595233917,
- -0.04764533415436745,
- -0.03538135811686516,
- -5.470914175910087e-33,
- 0.024719588458538055,
- 0.025411566719412804,
- 0.05631846562027931,
- 0.03978217765688896,
- -0.028063317760825157,
- 0.011249611154198647,
- -0.026807978749275208,
- -0.005430496297776699,
- -0.07049024850130081,
- 0.05220123007893562,
- -0.10863892734050751,
- 0.04561495780944824,
- -0.009614885784685612,
- 0.03742946684360504,
- -0.0063304416835308075,
- -0.037068746984004974,
- 0.011817819438874722,
- 0.062329843640327454,
- -0.10286697745323181,
- -0.03440137580037117,
- -0.03597588092088699,
- 0.05788314715027809,
- -0.005225515924394131,
- 0.019523050636053085,
- 0.02684192918241024,
- -0.017784317955374718,
- -0.02354961633682251,
- -0.06083010137081146,
- 0.029448386281728745,
- 0.020043684169650078,
- 0.030668575316667557,
- -0.06260281056165695,
- -0.10031858831644058,
- -0.002872442826628685,
- -0.02998613566160202,
- -0.0011755876475945115,
- -0.04079329967498779,
- -0.058311451226472855,
- -0.008857493288815022,
- 0.005709534976631403,
- -0.025474270805716515,
- -0.03631052374839783,
- -0.07021734118461609,
- 0.035568468272686005,
- 0.07228020578622818,
- 0.05705007165670395,
- 0.038665592670440674,
- -0.008482297882437706,
- 0.017689602449536324,
- 0.041988130658864975,
- -0.07385741919279099,
- -0.031326599419116974,
- 0.04023778811097145,
- 0.032851774245500565,
- -0.02722747251391411,
- -0.029233649373054504,
- 0.03962809219956398,
- -0.022612066939473152,
- 0.020803386345505714,
- -0.04055922478437424,
- 0.1110977828502655,
- 0.04218871518969536,
- -0.14450672268867493,
- 0.08017296344041824,
- -0.05924859270453453,
- 0.027890406548976898,
- 0.08031721413135529,
- -0.05690843611955643,
- -0.016428109258413315,
- 0.022792072966694832,
- -0.07131453603506088,
- 0.020797796547412872,
- -0.04361782222986221,
- 0.029361611232161522,
- -0.041082631796598434,
- 0.0377681627869606,
- -0.0371050201356411,
- -0.03498537465929985,
- 0.08603528141975403,
- -0.05654304847121239,
- -0.04054445028305054,
- -0.07887919247150421,
- 0.008676549419760704,
- 0.02255689911544323,
- 0.06627731025218964,
- 0.028774576261639595,
- -0.05431034043431282,
- -0.16248299181461334,
- 0.03299587592482567,
- 0.0010453799040988088,
- 0.0678817555308342,
- 0.009717089124023914,
- -0.04107523337006569,
- 0.12757055461406708,
- -0.09279908984899521,
- 3.6326379065277924e-33,
- -0.05667630955576897,
- 0.02458357810974121,
- -0.010092081502079964,
- 0.030789237469434738,
- 0.025417199358344078,
- -0.07227680832147598,
- 0.006341281812638044,
- -0.011121612042188644,
- 0.09699123352766037,
- 0.025571957230567932,
- -0.0465431734919548,
- 0.008735871873795986,
- 0.04147195443511009,
- 0.07641609013080597,
- 0.04998137056827545,
- -0.030602365732192993,
- 0.1175699234008789,
- -0.030272653326392174,
- -0.02207072079181671,
- -0.04887254908680916,
- -0.0661010593175888,
- 0.026422353461384773,
- -0.021397728472948074,
- -0.053132545202970505,
- -0.0136064812541008,
- 0.03833619877696037,
- 0.07562294602394104,
- 0.004559473134577274,
- -0.09685977548360825,
- -0.003745862515643239,
- 0.07682144641876221,
- -0.04210452362895012,
- -0.0828971117734909,
- -0.015488208271563053,
- -0.020348098129034042,
- 0.12243165820837021,
- 0.057723890990018845,
- 0.03192349150776863,
- -0.020563820376992226,
- 0.07741182297468185,
- 0.010877758264541626,
- -0.0006216174806468189,
- 0.09420146048069,
- 0.0932970643043518,
- -0.028058171272277832,
- 0.07393401116132736,
- 0.003845943370833993,
- 0.030136682093143463,
- 0.03175019845366478,
- 0.025952789932489395,
- -0.022740457206964493,
- 0.05022863298654556,
- 0.015953199937939644,
- 0.027874300256371498,
- -0.024240555241703987,
- 0.024403737857937813,
- -0.007538014557212591,
- -0.008296051062643528,
- -0.04687442630529404,
- -0.07526734471321106,
- -0.08322200179100037,
- 0.04857897758483887,
- -0.003437405452132225,
- -0.053697921335697174,
- 0.05074576660990715,
- -0.0412161648273468,
- -0.01771792769432068,
- -0.04110689088702202,
- 0.0702175721526146,
- 0.004681633785367012,
- 0.04746521636843681,
- 0.010257409885525703,
- -0.06389285624027252,
- -0.00915980152785778,
- -0.04530225694179535,
- -0.03674200177192688,
- -0.046895582228899,
- -0.04666993021965027,
- -0.0007301159203052521,
- -0.11642316728830338,
- -0.044788625091314316,
- -0.044303566217422485,
- 0.02502783015370369,
- -0.04113541916012764,
- -0.02231493778526783,
- -0.07616221904754639,
- 0.1330382525920868,
- -0.009340193122625351,
- 0.0009336775983683765,
- 0.033672865480184555,
- 0.018042851239442825,
- 0.04488864913582802,
- 0.06221296638250351,
- 0.023474955931305885,
- -0.0415031872689724,
- -1.3478127058874634e-8,
- -0.07448875904083252,
- 0.016466977074742317,
- -0.013964656740427017,
- 0.030139967799186707,
- 0.07860058546066284,
- 0.04988393187522888,
- 0.05467936396598816,
- 0.0733858048915863,
- 0.038630783557891846,
- 0.03169756755232811,
- -0.0052552735432982445,
- 0.026577051728963852,
- 0.03278854489326477,
- 0.10566780716180801,
- 0.1285533905029297,
- -0.021634135395288467,
- -0.024173302575945854,
- -0.049595169723033905,
- -0.045172858983278275,
- -0.03442699462175369,
- -0.09455055743455887,
- -0.025033723562955856,
- 0.02253980189561844,
- 0.018288031220436096,
- -0.023830467835068703,
- -0.039849646389484406,
- -0.06836109608411789,
- 0.13289692997932434,
- 0.005503358785063028,
- 0.02559613808989525,
- 0.05037891864776611,
- 0.018476219847798347,
- -0.04716363921761513,
- 0.0470852330327034,
- -0.029718544334173203,
- -0.0056507219560444355,
- -0.006949036382138729,
- 0.0009906174382194877,
- 0.013888529501855373,
- -0.030988410115242004,
- -0.009270387701690197,
- 0.006872796919196844,
- 0.006968153640627861,
- 0.05454793572425842,
- -0.102920301258564,
- -0.02746676653623581,
- 0.1349485218524933,
- 0.007339992560446262,
- -0.04420118033885956,
- -0.07808037102222443,
- -0.007882256992161274,
- -0.028561759740114212,
- -0.009470739401876926,
- 0.01949167624115944,
- 0.08376237004995346,
- 0.045948006212711334,
- -0.03194033354520798,
- 0.018621832132339478,
- -0.0074034747667610645,
- 0.08508452773094177,
- 0.08360738307237625,
- -0.058386340737342834,
- 0.11171352118253708,
- 0.04218864068388939
- ]
- },
- {
- "keyword": "brings about",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.0814209133386612,
- 0.05067422240972519,
- 0.061567749828100204,
- -0.009084832854568958,
- 0.08717852830886841,
- -0.028250357136130333,
- 0.08279270678758621,
- 0.036909639835357666,
- -0.030945299193263054,
- -0.010567125864326954,
- -0.011317440308630466,
- -0.07800812274217606,
- 0.04527049884200096,
- -0.013092074543237686,
- 0.06319418549537659,
- 0.032651305198669434,
- 0.049818072468042374,
- -0.06040919944643974,
- -0.17263349890708923,
- 0.02246827445924282,
- -0.11603759974241257,
- 0.006177559029310942,
- 0.061158131808042526,
- -0.014328211545944214,
- -0.014433917589485645,
- -0.030527479946613312,
- 0.03081582672894001,
- 0.04174171760678291,
- 0.12087754160165787,
- -0.0028804035391658545,
- -0.021760819479823112,
- 0.042129646986722946,
- -0.02491784282028675,
- 0.017382312566041946,
- -0.06223587319254875,
- 0.025991147384047508,
- 0.03701389953494072,
- -0.014221003279089928,
- -0.06918616592884064,
- -0.03212010860443115,
- 0.05280153080821037,
- -0.049418266862630844,
- 0.07647134363651276,
- 0.09048081934452057,
- 0.046561215072870255,
- -0.04929172620177269,
- 0.0640832856297493,
- -0.021345989778637886,
- 0.06037994474172592,
- 0.019206015393137932,
- -0.011202813126146793,
- 0.048989612609148026,
- -0.0017081133555620909,
- -0.07154589146375656,
- 0.05117664858698845,
- 0.06139855831861496,
- 0.01383555680513382,
- -0.0058657508343458176,
- -0.07994101941585541,
- 0.022837337106466293,
- 0.06345012038946152,
- -0.042498890310525894,
- -0.10764935612678528,
- -0.020801011472940445,
- -0.08831802755594254,
- -0.05341600254178047,
- 0.027556737884879112,
- 0.07106655836105347,
- -0.05978796258568764,
- 0.02071189507842064,
- -0.042130474001169205,
- 0.04763493686914444,
- 0.0521932952105999,
- 0.062102723866701126,
- 0.01458781585097313,
- 0.024702761322259903,
- -0.03558240830898285,
- -0.02464517392218113,
- 0.044032689183950424,
- 0.0020360457710921764,
- 0.03468889743089676,
- 0.025281252339482307,
- -0.02310401201248169,
- 0.047725845128297806,
- 0.0007449581753462553,
- -0.03177499771118164,
- 0.04293597489595413,
- -0.1607854813337326,
- -0.04570482298731804,
- 0.030847052112221718,
- 0.013919543474912643,
- -0.05656954646110535,
- 0.0033920397982001305,
- -0.07358172535896301,
- -0.0232615377753973,
- -0.06977317482233047,
- 0.00666147330775857,
- 0.004264225717633963,
- -0.04371575638651848,
- 0.15934407711029053,
- 0.009234573692083359,
- 0.10957105457782745,
- 0.045682307332754135,
- 0.0062185549177229404,
- -0.024335790425539017,
- 0.016531623899936676,
- -0.0762728601694107,
- 0.05129624903202057,
- -0.02032763883471489,
- 0.04019256308674812,
- -0.038668617606163025,
- -0.021534210070967674,
- -0.008647729642689228,
- 0.04389600828289986,
- 0.0737309381365776,
- 0.029556427150964737,
- 0.05948304384946823,
- 0.029521701857447624,
- 0.070409394800663,
- -0.06744647771120071,
- 0.07079261541366577,
- 0.06200891733169556,
- 0.031397152692079544,
- 0.02945229783654213,
- -0.019226577132940292,
- -0.12251404672861099,
- 0.019435947760939598,
- -2.8810393082394992e-33,
- 0.03927174210548401,
- -0.020744161680340767,
- 0.00795503705739975,
- 0.060547031462192535,
- 0.042684365063905716,
- 0.03084983117878437,
- -0.05278927460312843,
- -0.009573804214596748,
- 0.007858346216380596,
- 0.051856864243745804,
- -0.04708339646458626,
- 0.012526453472673893,
- 0.014844431541860104,
- 0.04401298239827156,
- 0.013378528878092766,
- 0.02141394279897213,
- -0.02302572876214981,
- -0.02596963383257389,
- -0.008804085664451122,
- -0.023947566747665405,
- -0.04627414792776108,
- 0.06990854442119598,
- 0.007739358115941286,
- -0.024473194032907486,
- -0.003633396467193961,
- -0.011564352549612522,
- 0.062183134257793427,
- -0.07300359010696411,
- -0.034279175102710724,
- -0.010376261547207832,
- 0.02904374897480011,
- 0.021717308089137077,
- -0.06932247430086136,
- -0.025627916678786278,
- -0.0008670150418765843,
- 0.05495800822973251,
- -0.028041241690516472,
- -0.07503341138362885,
- 0.007917242124676704,
- 0.0026463393587619066,
- -0.014196294359862804,
- -0.023346832022070885,
- -0.03513628616929054,
- -0.013602165505290031,
- 0.0296011995524168,
- 0.047383781522512436,
- 0.03830154612660408,
- -0.0366300567984581,
- -0.051172465085983276,
- -0.07947979122400284,
- 0.034563109278678894,
- -0.06924036890268326,
- 0.004696613177657127,
- 0.04990750551223755,
- -0.057668812572956085,
- -0.01586638018488884,
- 0.014890749007463455,
- 0.026045138016343117,
- 0.03704756870865822,
- 0.020822716876864433,
- 0.046397581696510315,
- 0.028228837996721268,
- -0.08156584203243256,
- -0.015337927266955376,
- -0.035928741097450256,
- -0.035274069756269455,
- 0.036232348531484604,
- -0.036948174238204956,
- -0.06752654165029526,
- 0.04963571950793266,
- -0.13338389992713928,
- 0.08000047504901886,
- 0.03377992659807205,
- -0.020223360508680344,
- -0.007857421413064003,
- -0.003087870078161359,
- 0.0802527666091919,
- -0.03969728201627731,
- 0.0321333184838295,
- 0.005566734354943037,
- -0.09153177589178085,
- -0.1477862298488617,
- 0.05948425084352493,
- -0.01921636424958706,
- -0.017573796212673187,
- 0.07571130245923996,
- 0.026948314160108566,
- -0.12115556746721268,
- -0.06148548051714897,
- -0.049045030027627945,
- 0.015521862544119358,
- 0.001826895517297089,
- 0.0024155715946108103,
- 0.038426123559474945,
- -0.0018020605202764273,
- 1.7445015748874316e-33,
- -0.027893537655472755,
- 0.015782691538333893,
- 0.020298684015870094,
- 0.012452295050024986,
- 0.014041190035641193,
- -0.05627204105257988,
- 0.03012305311858654,
- 0.022083815187215805,
- -0.020444177091121674,
- -0.013622540980577469,
- -0.00884202215820551,
- -0.05811890587210655,
- -0.03175981342792511,
- 0.010518714785575867,
- 0.11421141773462296,
- 0.05483904480934143,
- 0.05748502165079117,
- 0.02264118380844593,
- -0.006900827866047621,
- 0.002225027419626713,
- -0.022160006687045097,
- 0.056233931332826614,
- -0.044040266424417496,
- -0.11545269191265106,
- -0.0066804722882807255,
- 0.025334643200039864,
- 0.049740709364414215,
- 0.03354548290371895,
- -0.06509736180305481,
- 0.010219177231192589,
- 0.016674237325787544,
- 0.03984281048178673,
- -0.13208995759487152,
- -0.06696125864982605,
- 0.04041782021522522,
- 0.03707437962293625,
- 0.08840236812829971,
- 0.06354910880327225,
- 0.028505267575383186,
- 0.043358273804187775,
- 0.016767041757702827,
- -0.026923153549432755,
- -0.0005805680411867797,
- 0.10796762257814407,
- 0.041249778121709824,
- -0.012501830235123634,
- 0.004879639018326998,
- 0.009647246450185776,
- -0.00001480287392041646,
- 0.03831830248236656,
- -0.062174636870622635,
- -0.028290586546063423,
- -0.03438461571931839,
- -0.007303684484213591,
- 0.006973607465624809,
- 0.0017484513809904456,
- 0.02781178243458271,
- -0.017631249502301216,
- -0.05122191458940506,
- -0.035068102180957794,
- -0.07056260854005814,
- 0.0565895140171051,
- -0.008706135675311089,
- -0.05338876694440842,
- 0.019238421693444252,
- 0.02678787149488926,
- -0.00012596286251209676,
- -0.05600126087665558,
- 0.051399022340774536,
- 0.01167200319468975,
- -0.017538510262966156,
- 0.09292994439601898,
- -0.08942056447267532,
- -0.04083975777029991,
- -0.08371034264564514,
- 0.008681610226631165,
- -0.030983254313468933,
- -0.040763843804597855,
- 0.0513499490916729,
- -0.017359158024191856,
- -0.04305059462785721,
- -0.06553420424461365,
- 0.03428875282406807,
- -0.0508970245718956,
- 0.0455109067261219,
- -0.05313495546579361,
- 0.12307512760162354,
- 0.00010018916509579867,
- -0.02494846098124981,
- -0.019187698140740395,
- -0.025243626907467842,
- 0.09248467534780502,
- 0.011804111301898956,
- -0.038021448999643326,
- -0.03492235392332077,
- -1.4048652019482688e-8,
- -0.011909193359315395,
- 0.05037356913089752,
- -0.02381194196641445,
- 0.01807699166238308,
- 0.13067181408405304,
- 0.05469368025660515,
- 0.02833361178636551,
- 0.06501408666372299,
- -0.07882627099752426,
- 0.014308948069810867,
- 0.011881254613399506,
- 0.015305065549910069,
- 0.024531712755560875,
- 0.09398513287305832,
- 0.042301472276449203,
- -0.06560833752155304,
- 0.02535354346036911,
- 0.02780683897435665,
- -0.05813596025109291,
- -0.018155420199036598,
- -0.05696713551878929,
- -0.010492471978068352,
- 0.04310091957449913,
- 0.0856868103146553,
- -0.00314704654738307,
- 0.007766128983348608,
- -0.03379685431718826,
- 0.07051049172878265,
- 0.02587158977985382,
- 0.04504357650876045,
- 0.04031705856323242,
- 0.03190924972295761,
- -0.05161958932876587,
- -0.002647914458066225,
- -0.0749831572175026,
- 0.002793141407892108,
- 0.029065584763884544,
- -0.07456392049789429,
- -0.036837127059698105,
- -0.07675469666719437,
- -0.08659899234771729,
- -0.027415355667471886,
- 0.06658700108528137,
- 0.02682538889348507,
- -0.04214088246226311,
- 0.008483807556331158,
- 0.011725787073373795,
- -0.08806602656841278,
- -0.013839978724718094,
- -0.033928047865629196,
- 0.037576768547296524,
- 0.011654575355350971,
- 0.0122603140771389,
- 0.07348772138357162,
- 0.12290315330028534,
- 0.03393752872943878,
- -0.004762554075568914,
- 0.05712076276540756,
- 0.047703735530376434,
- 0.057630397379398346,
- 0.011692926287651062,
- -0.03901275619864464,
- 0.10321997851133347,
- 0.0897265151143074
- ]
- },
- {
- "keyword": "triggers",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.018986456096172333,
- 0.011978567577898502,
- 0.0008329781703650951,
- 0.02544284611940384,
- 0.05855444818735123,
- 0.05113987997174263,
- 0.08701629936695099,
- 0.027861256152391434,
- 0.03640469163656235,
- -0.006323520559817553,
- 0.03805600851774216,
- -0.041812967509031296,
- 0.0458303727209568,
- -0.0693066269159317,
- 0.018035223707556725,
- 0.019752511754631996,
- 0.011671184562146664,
- -0.018588460981845856,
- -0.05565107986330986,
- -0.04052848368883133,
- -0.09220772236585617,
- -0.04144370183348656,
- -0.002093113027513027,
- 0.04097594693303108,
- -0.10267055034637451,
- 0.013892944902181625,
- -0.02274356223642826,
- 0.015946337953209877,
- 0.0018215484451502562,
- -0.05669071897864342,
- 0.006004680413752794,
- -0.055886249989271164,
- 0.012358788400888443,
- -0.04010068625211716,
- -0.048526689410209656,
- -0.023123187944293022,
- 0.05249832570552826,
- 0.06092656031250954,
- 0.0010274896631017327,
- 0.017257248982787132,
- -0.008154692128300667,
- -0.10060903429985046,
- 0.041993312537670135,
- 0.03314677253365517,
- -0.00146354956086725,
- 0.023165453225374222,
- 0.020480476319789886,
- 0.072816863656044,
- -0.0874858871102333,
- -0.012949837371706963,
- -0.03682028502225876,
- -0.07276637107133865,
- -0.04463797062635422,
- 0.0005300670163705945,
- 0.05803165212273598,
- -0.06203514337539673,
- 0.05852743238210678,
- 0.022836608812212944,
- 0.06361745297908783,
- -0.08058000355958939,
- -0.06908232718706131,
- 0.008107155561447144,
- -0.0960196852684021,
- 0.018504804000258446,
- 0.0397748127579689,
- 0.053252145648002625,
- -0.03504641726613045,
- -0.04670257121324539,
- 0.06596019119024277,
- 0.06088492274284363,
- 0.0007161427056416869,
- 0.027289841324090958,
- 0.005473406985402107,
- 0.044705964624881744,
- 0.018045339733362198,
- 0.057548876851797104,
- -0.01772405207157135,
- 0.0019264615839347243,
- 0.017010077834129333,
- -0.03648415580391884,
- 0.00019492892897687852,
- 0.006673022639006376,
- 0.03812764585018158,
- 0.026691820472478867,
- 0.03475874289870262,
- -0.032701436430215836,
- 0.03508981689810753,
- -0.02783733792603016,
- -0.019025269895792007,
- 0.0044989073649048805,
- 0.005407334305346012,
- -0.06490109860897064,
- 0.10464417934417725,
- -0.01723242551088333,
- -0.08635322749614716,
- 0.056252941489219666,
- -0.0469009205698967,
- -0.018762437626719475,
- 0.0012507373467087746,
- 0.2249239683151245,
- -0.006440590135753155,
- -0.0017548867035657167,
- -0.09021753072738647,
- 0.05668463930487633,
- -0.007029968313872814,
- 0.0006122374907135963,
- -0.07796011865139008,
- -0.019460221752524376,
- -0.02628551609814167,
- -0.026903051882982254,
- -0.06479370594024658,
- -0.06526505947113037,
- 0.013761607930064201,
- -0.06440708041191101,
- 0.03027923032641411,
- 0.05131968483328819,
- -0.018788665533065796,
- 0.041451677680015564,
- 0.015635117888450623,
- -0.05878059193491936,
- 0.06122129037976265,
- -0.014473909512162209,
- -0.045167215168476105,
- 0.027730757370591164,
- -0.05844861641526222,
- -0.0187368243932724,
- -0.045075688511133194,
- -5.8304185519579445e-33,
- 0.1184241995215416,
- 0.002794796135276556,
- -0.0392078272998333,
- 0.05544876679778099,
- 0.0031440218444913626,
- -0.004575977101922035,
- -0.006804203148931265,
- -0.006773240398615599,
- -0.0033017329405993223,
- 0.02545197866857052,
- 0.009390571154654026,
- 0.0050828163512051105,
- -0.08039797842502594,
- -0.0015821820124983788,
- 0.09780928492546082,
- -0.016250332817435265,
- 0.008389115333557129,
- 0.03844330087304115,
- -0.009558935649693012,
- -0.013345987536013126,
- -0.05314430966973305,
- -0.0845673680305481,
- -0.03311487287282944,
- 0.08817847818136215,
- 0.009687417186796665,
- 0.12191014736890793,
- -0.08525491505861282,
- 0.07781820744276047,
- 0.015772048383951187,
- 0.005466016009449959,
- 0.0002638589940033853,
- 0.033862654119729996,
- -0.003830587025731802,
- -0.05853349715471268,
- -0.05627547577023506,
- -0.022528937086462975,
- -0.07383649796247482,
- -0.08076416701078415,
- -0.014286883175373077,
- -0.0672137513756752,
- 0.023441899567842484,
- 0.0016120191430673003,
- -0.04791343957185745,
- -0.0027336159255355597,
- 0.012406930327415466,
- -0.0022518299520015717,
- -0.038049615919589996,
- 0.017263026908040047,
- -0.03522723540663719,
- -0.03422842174768448,
- 0.10225892066955566,
- 0.040396831929683685,
- 0.0539274588227272,
- -0.01267850399017334,
- -0.02114640548825264,
- 0.07817619293928146,
- 0.010653338395059109,
- -0.10017130523920059,
- -0.008347236551344395,
- 0.04754810780286789,
- 0.020529955625534058,
- -0.06447475403547287,
- 0.0011735655134543777,
- 0.06128934025764465,
- 0.054525379091501236,
- 0.038911618292331696,
- 0.07143601775169373,
- -0.10770688205957413,
- 0.05211957171559334,
- 0.04257398471236229,
- -0.046249061822891235,
- -0.004793940577656031,
- -0.007494613993912935,
- -0.030778968706727028,
- -0.035615552216768265,
- 0.008004182949662209,
- -0.04382581636309624,
- -0.03133798763155937,
- -0.0610332190990448,
- -0.024494219571352005,
- 0.045239612460136414,
- -0.11988221853971481,
- -0.037149976938962936,
- 0.0662521943449974,
- 0.009350706823170185,
- -0.011363889090716839,
- 0.004533280152827501,
- -0.04701939970254898,
- -0.08004538714885712,
- 0.05561935156583786,
- -0.0074268365278840065,
- -0.021525738760828972,
- 0.09590162336826324,
- 0.05642467364668846,
- -0.03534894064068794,
- 4.283047747045395e-33,
- -0.02378462627530098,
- -0.020921632647514343,
- -0.07311919331550598,
- 0.025878626853227615,
- -0.004608521703630686,
- 0.012864329852163792,
- 0.007392408791929483,
- -0.0661599412560463,
- 0.03471016883850098,
- 0.057843562215566635,
- 0.005649237893521786,
- -0.05789152532815933,
- 0.07523806393146515,
- 0.0821077898144722,
- -0.034349460154771805,
- -0.037011854350566864,
- 0.11544987559318542,
- -0.02292204275727272,
- -0.033606551587581635,
- -0.01562892645597458,
- 0.028538472950458527,
- -0.01855297200381756,
- -0.0055341944098472595,
- 0.01500481367111206,
- -0.033152803778648376,
- 0.008017480373382568,
- 0.021762924268841743,
- 0.007223248947411776,
- -0.1304370015859604,
- 0.0538804717361927,
- -0.02765333279967308,
- 0.039735667407512665,
- -0.0057487511076033115,
- 0.08513854444026947,
- -0.0013245397713035345,
- 0.013749750331044197,
- 0.026598460972309113,
- -0.03003084473311901,
- -0.01792803220450878,
- -0.021197466179728508,
- 0.07781311124563217,
- 0.047990500926971436,
- 0.03867911547422409,
- 0.08626261353492737,
- -0.049220431596040726,
- 0.07000935077667236,
- 0.016314983367919922,
- 0.1103605255484581,
- 0.02746596373617649,
- 0.05865062400698662,
- -0.13275732100009918,
- 0.0021615144796669483,
- -0.0063901301473379135,
- 0.006021351553499699,
- -0.038911983370780945,
- 0.016103127971291542,
- 0.029838012531399727,
- -0.10848338156938553,
- 0.019198888912796974,
- 0.06824550032615662,
- -0.037182994186878204,
- -0.0025314022786915302,
- -0.08381228148937225,
- 0.050760090351104736,
- 0.008251898922026157,
- -0.04047485440969467,
- 0.010045919567346573,
- -0.10054529458284378,
- 0.07720761001110077,
- 0.005554764531552792,
- 0.10948445647954941,
- 0.04118034243583679,
- -0.024177636951208115,
- -0.04325110837817192,
- -0.10094740986824036,
- -0.0003707633586600423,
- -0.0838409811258316,
- -0.03192305564880371,
- -0.111394964158535,
- -0.01856251060962677,
- -0.01986122317612171,
- -0.10349227488040924,
- 0.05678179860115051,
- 0.023393405601382256,
- -0.05734505131840706,
- 0.10080800205469131,
- 0.04328010976314545,
- 0.07807726413011551,
- 0.05092652887105942,
- -0.014434700831770897,
- -0.0922318696975708,
- 0.01550417672842741,
- 0.03346219286322594,
- 0.019388506188988686,
- -0.05325453355908394,
- -1.2500593449260577e-8,
- -0.04432814195752144,
- 0.03438599035143852,
- -0.00850939191877842,
- 0.08673367649316788,
- 0.05975602567195892,
- 0.01984507404267788,
- -0.042386796325445175,
- 0.0510704405605793,
- -0.01170844305306673,
- -0.04172082990407944,
- -0.024226658046245575,
- 0.01025459822267294,
- 0.02730567753314972,
- 0.021224135532975197,
- 0.09453611820936203,
- -0.0372200608253479,
- 0.03349115327000618,
- 0.07063180953264236,
- -0.049152836203575134,
- -0.02805611491203308,
- 0.02666364796459675,
- 0.04806799069046974,
- -0.005131014157086611,
- 0.03149723261594772,
- 0.02421346679329872,
- -0.03484738990664482,
- 0.06829995661973953,
- 0.15301337838172913,
- 0.07247460633516312,
- 0.02955094911158085,
- 0.06040366739034653,
- -0.03781390190124512,
- 0.045731253921985626,
- -0.018012603744864464,
- -0.004829376470297575,
- 0.03274338319897652,
- 0.035111356526613235,
- -0.03556925058364868,
- 0.02730697952210903,
- -0.05320200324058533,
- 0.023968370631337166,
- 0.06329108029603958,
- -0.008717650547623634,
- -0.02041570097208023,
- -0.13542357087135315,
- 0.016303619369864464,
- -0.0020119117107242346,
- -0.0103013776242733,
- -0.015393389388918877,
- 0.03455919399857521,
- -0.02952253445982933,
- -0.040518857538700104,
- 0.051876142621040344,
- 0.0506962351500988,
- 0.07834035158157349,
- -0.02751276083290577,
- -0.010083114728331566,
- -0.002954123541712761,
- -0.012549307197332382,
- 0.011343556456267834,
- 0.10197611153125763,
- 0.031202835962176323,
- 0.05347878485918045,
- -0.028503037989139557
- ]
- },
- {
- "keyword": "influences",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.04175882413983345,
- -0.009727529250085354,
- 0.028019612655043602,
- 0.06578845530748367,
- 0.0523083359003067,
- 0.02509254962205887,
- 0.10775165259838104,
- -0.007975856773555279,
- 0.030063077807426453,
- 0.03391861915588379,
- 0.02852613851428032,
- 0.00834042951464653,
- 0.03780876845121384,
- -0.001129116746596992,
- 0.003153620520606637,
- 0.010480574332177639,
- 0.0312177874147892,
- -0.06155402585864067,
- -0.18867895007133484,
- -0.03934576362371445,
- -0.11122602224349976,
- -0.1098690778017044,
- 0.059193987399339676,
- -0.029228730127215385,
- -0.0015923811588436365,
- 0.0448271818459034,
- -0.03399582952260971,
- 0.04042690619826317,
- 0.07553422451019287,
- -0.11700957268476486,
- -0.04620720446109772,
- 0.11238237470388412,
- 0.031105289235711098,
- -0.06191062182188034,
- -0.07779864966869354,
- 0.01872340589761734,
- 0.09251918643712997,
- 0.03205673396587372,
- -0.0005589348147623241,
- 0.054239314049482346,
- 0.014447124674916267,
- -0.005595429800450802,
- 0.10286708921194077,
- 0.00643450953066349,
- -0.02338254824280739,
- -0.03199203312397003,
- 0.06353363394737244,
- 0.06408451497554779,
- -0.020801279693841934,
- 0.04988811910152435,
- 0.022111572325229645,
- -0.08985840529203415,
- -0.0033000437542796135,
- -0.010901479050517082,
- 0.04176725074648857,
- -0.0332450233399868,
- -0.005651903338730335,
- 0.09668157249689102,
- -0.006043227389454842,
- -0.0160952340811491,
- 0.017717059701681137,
- 0.006531203165650368,
- -0.12243837118148804,
- -0.02574184164404869,
- 0.060816988348960876,
- 0.032911453396081924,
- -0.013318180106580257,
- 0.05951261147856712,
- -0.10019075125455856,
- -0.07724051922559738,
- 0.11048709601163864,
- -0.009532535448670387,
- 0.025545187294483185,
- -0.020163895562291145,
- 0.02092483453452587,
- -0.05131477117538452,
- 0.003096807049587369,
- 0.021386466920375824,
- 0.0839700922369957,
- -0.06046496704220772,
- 0.08578146994113922,
- -0.005829488392919302,
- -0.04667391628026962,
- 0.043150823563337326,
- -0.017294161021709442,
- -0.0174583550542593,
- 0.08459974080324173,
- -0.0896506980061531,
- -0.03948468342423439,
- 0.12128042429685593,
- 0.03657814860343933,
- 0.003712158650159836,
- 0.019329668954014778,
- -0.055450957268476486,
- -0.04383678361773491,
- 0.019454682245850563,
- 0.0015039826976135373,
- 0.00118560204282403,
- -0.005718764383345842,
- 0.2272135317325592,
- -0.01881730742752552,
- 0.05071202665567398,
- -0.04065331444144249,
- 0.0774666890501976,
- 0.0004654985968954861,
- -0.028860628604888916,
- -0.05024964362382889,
- 0.05058843269944191,
- 0.05504155158996582,
- 0.06665456295013428,
- -0.05861937254667282,
- 0.05705321207642555,
- -0.039750292897224426,
- 0.0020810842979699373,
- 0.059484414756298065,
- -0.0652918592095375,
- 0.04799745976924896,
- -0.0005637730937451124,
- -0.027196666225790977,
- -0.09993433207273483,
- -0.002242205897346139,
- 0.009653247892856598,
- 0.021310321986675262,
- 0.0231196116656065,
- -0.06089549511671066,
- -0.04137773811817169,
- -0.09735303372144699,
- -5.0363041597103324e-33,
- -0.015121263451874256,
- -0.06810753792524338,
- 0.023218924179673195,
- 0.0448494628071785,
- 0.047767702490091324,
- 0.01169063150882721,
- -0.026388581842184067,
- -0.016705749556422234,
- -0.0850633829832077,
- 0.00661966810002923,
- -0.036064326763153076,
- 0.07004515826702118,
- -0.018578914925456047,
- -0.03499671071767807,
- 0.1456746608018875,
- 0.03077280893921852,
- -0.04653147980570793,
- 0.02537350542843342,
- -0.052170101553201675,
- -0.0069495998322963715,
- -0.07856155931949615,
- 0.0968676432967186,
- -0.014941818080842495,
- 0.0032980674877762794,
- -0.048529528081417084,
- -0.09810923784971237,
- -0.03397664427757263,
- 0.012419762089848518,
- 0.03925193473696709,
- 0.0069089061580598354,
- 0.028567904606461525,
- -0.03078431636095047,
- -0.025647008791565895,
- -0.10355158150196075,
- -0.004606334492564201,
- 0.016836900264024734,
- -0.014632240869104862,
- -0.04797479510307312,
- 0.05286353453993797,
- 0.021436093375086784,
- -0.033689938485622406,
- -0.01202099584043026,
- -0.033464424312114716,
- 0.027351556345820427,
- -0.020694438368082047,
- 0.07584668695926666,
- 0.041184891015291214,
- -0.01053512841463089,
- -0.033886924386024475,
- 0.024385705590248108,
- -0.0023119477555155754,
- -0.013474524021148682,
- 0.0393984317779541,
- -0.036835189908742905,
- 0.06049149110913277,
- -0.024366628378629684,
- -0.014468811452388763,
- 0.007095072418451309,
- 0.006265863310545683,
- -0.04507754370570183,
- 0.07055606693029404,
- 0.08369918167591095,
- 0.004139923956245184,
- -0.012117097154259682,
- 0.04105836898088455,
- 0.03298160433769226,
- 0.00903293676674366,
- -0.06991906464099884,
- 0.027759559452533722,
- -0.02043331414461136,
- -0.08539487421512604,
- 0.029000461101531982,
- 0.011086320504546165,
- 0.005563823506236076,
- -0.008605790324509144,
- -0.014984194189310074,
- -0.11060544848442078,
- 0.012315344996750355,
- 0.04432397708296776,
- 0.07025577872991562,
- -0.03585460036993027,
- -0.024935457855463028,
- 0.020218659192323685,
- -0.003003552556037903,
- -0.027731096372008324,
- 0.01570427417755127,
- 0.005777707789093256,
- -0.09579624980688095,
- -0.014620043337345123,
- -0.021587662398815155,
- -0.057994529604911804,
- -0.052906882017850876,
- 0.05493796244263649,
- 0.003245820291340351,
- -0.002383731072768569,
- 4.417845357674033e-33,
- -0.12121957540512085,
- -0.020610110834240913,
- 0.053579241037368774,
- 0.026693781837821007,
- 0.06731123477220535,
- -0.013416964560747147,
- -0.02681903913617134,
- -0.002433029469102621,
- 0.08338337391614914,
- 0.011909215711057186,
- -0.030032850801944733,
- -0.032588303089141846,
- 0.04018964618444443,
- 0.042325686663389206,
- 0.03827071934938431,
- -0.0580882728099823,
- 0.0461466908454895,
- 0.03241348639130592,
- -0.04139922186732292,
- -0.041754379868507385,
- -0.03220212087035179,
- -0.051673032343387604,
- 0.004825895186513662,
- 0.00552626047283411,
- -0.03465912491083145,
- 0.03731494024395943,
- -0.06667687743902206,
- 0.026332924142479897,
- -0.027093075215816498,
- -0.007749086711555719,
- -0.010107007808983326,
- 0.008896885439753532,
- 0.003410518867895007,
- 0.00003261595338699408,
- -0.05546654760837555,
- 0.12768252193927765,
- -0.04991891235113144,
- 0.018326884135603905,
- -0.07535353302955627,
- -0.04630172252655029,
- -0.003101958194747567,
- 0.038098644465208054,
- 0.0775507315993309,
- 0.06830307841300964,
- -0.019231481477618217,
- 0.0660456120967865,
- 0.04408131167292595,
- 0.06017082557082176,
- 0.0228084959089756,
- 0.035269882529973984,
- -0.02981385961174965,
- 0.0457327775657177,
- -0.00004153967893216759,
- 0.044667474925518036,
- 0.0032174107618629932,
- -0.0014038252411410213,
- 0.08675190061330795,
- 0.01985025964677334,
- 0.0718654915690422,
- -0.0029654279351234436,
- -0.05813591182231903,
- 0.06511818617582321,
- -0.05293434485793114,
- -0.028922511264681816,
- -0.06593135744333267,
- 0.00013394661073107272,
- -0.03485402837395668,
- -0.01243765838444233,
- 0.06173553690314293,
- -0.05997171998023987,
- -0.03558297082781792,
- 0.022315746173262596,
- -0.06619220227003098,
- 0.007080625742673874,
- -0.10209732502698898,
- -0.03277077153325081,
- -0.03835216909646988,
- 0.011793180368840694,
- -0.04188743606209755,
- -0.06515897810459137,
- -0.019206423312425613,
- -0.0365721695125103,
- 0.0029432475566864014,
- 0.012169181369245052,
- -0.010378176346421242,
- 0.1055368036031723,
- 0.00975051335990429,
- -0.04659691080451012,
- 0.05618671700358391,
- 0.01780824549496174,
- 0.012686729431152344,
- 0.009751318022608757,
- -0.03318021818995476,
- -0.0256661307066679,
- -0.04445168375968933,
- -1.1999053306510632e-8,
- -0.010354987345635891,
- -0.03263140469789505,
- 0.04928937554359436,
- 0.08332934230566025,
- 0.04098987579345703,
- -0.006325045600533485,
- 0.0885719358921051,
- 0.05191603675484657,
- -0.012556683272123337,
- 0.12675563991069794,
- -0.016052735969424248,
- 0.05791833996772766,
- 0.0074743302538990974,
- 0.010021165944635868,
- 0.06900348514318466,
- -0.06606575101613998,
- 0.002475221175700426,
- 0.011009412817656994,
- -0.06932421028614044,
- -0.0011611146619543433,
- 0.05668645724654198,
- -0.009858054108917713,
- 0.0736217349767685,
- 0.024948762729763985,
- 0.03343074768781662,
- -0.03811006247997284,
- 0.0027128560468554497,
- 0.0038331763353198767,
- 0.006864029448479414,
- 0.05737027898430824,
- 0.03492477163672447,
- 0.03010910004377365,
- -0.06609514355659485,
- -0.05281013250350952,
- -0.03997131064534187,
- -0.06262654066085815,
- -0.048202063888311386,
- -0.06813114881515503,
- -0.0030948431231081486,
- 0.035515982657670975,
- -0.023888660594820976,
- -0.06179775670170784,
- 0.053950000554323196,
- 0.030961504206061363,
- -0.04427078738808632,
- 0.0027228393591940403,
- -0.004794376902282238,
- -0.010636293329298496,
- -0.03006717935204506,
- -0.006043079774826765,
- -0.012200210243463516,
- -0.01515312772244215,
- -0.0033189121168106794,
- 0.048559706658124924,
- 0.0325150303542614,
- -0.028211107477545738,
- -0.005732344929128885,
- 0.061256129294633865,
- -0.05212578549981117,
- 0.024848662316799164,
- 0.14673613011837006,
- 0.07168447226285934,
- 0.09013991802930832,
- 0.010661174543201923
- ]
- },
- {
- "keyword": "affects",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.019869446754455566,
- 0.02893070876598358,
- 0.0870463103055954,
- 0.08004054427146912,
- 0.025464223697781563,
- 0.015683161094784737,
- 0.08622708916664124,
- 0.06362956017255783,
- 0.007181093096733093,
- -0.004839083645492792,
- -0.0053599015809595585,
- -0.024289408698678017,
- 0.014729337766766548,
- -0.02055462636053562,
- 0.013678970746695995,
- 0.007954264990985394,
- 0.039065320044755936,
- -0.02382892183959484,
- -0.09335216879844666,
- 0.020222436636686325,
- -0.06775261461734772,
- 0.03131084516644478,
- -0.018014557659626007,
- 0.019383933395147324,
- -0.09684925526380539,
- 0.06494845449924469,
- -0.06594818830490112,
- 0.02879224717617035,
- 0.0646391361951828,
- -0.12881137430667877,
- -0.012424813583493233,
- 0.16433832049369812,
- 0.056341979652643204,
- -0.01463278103619814,
- -0.1431502401828766,
- -0.004364361520856619,
- 0.04524882510304451,
- 0.03531338647007942,
- -0.011678840965032578,
- -0.06057671085000038,
- 0.0009139380999840796,
- -0.02638663351535797,
- 0.0766577199101448,
- -0.0016140829538926482,
- -0.015795232728123665,
- -0.06374622136354446,
- 0.07059504091739655,
- 0.016555093228816986,
- 0.029302015900611877,
- 0.017903655767440796,
- 0.01480595488101244,
- -0.1338385045528412,
- 0.03305266797542572,
- -0.0029064614791423082,
- 0.02569865994155407,
- -0.08754262328147888,
- -0.03050883114337921,
- 0.0818355455994606,
- 0.02128978632390499,
- -0.02443028800189495,
- 0.0156975369900465,
- 0.01741648279130459,
- -0.06026437133550644,
- -0.0036236895248293877,
- 0.06831575185060501,
- 0.04755070433020592,
- 0.027216613292694092,
- -0.01366247795522213,
- -0.05156707018613815,
- 0.010542387142777443,
- 0.07208175957202911,
- -0.018071262165904045,
- 0.038531865924596786,
- -0.1142340749502182,
- 0.009945287369191647,
- -0.03247865289449692,
- -0.04945975914597511,
- -0.007828019559383392,
- 0.11470802873373032,
- 0.02088320069015026,
- 0.034179721027612686,
- -0.08046635240316391,
- -0.07304647564888,
- 0.042470574378967285,
- 0.008083153516054153,
- -0.03788852319121361,
- 0.044735316187143326,
- -0.04591761529445648,
- -0.08630044758319855,
- 0.09898296743631363,
- 0.02459622360765934,
- 0.01893749088048935,
- 0.12006638199090958,
- -0.005181021057069302,
- -0.0962168350815773,
- -0.0022000744938850403,
- -0.022381257265806198,
- -0.0435212142765522,
- -0.039566971361637115,
- 0.23555035889148712,
- -0.009221517480909824,
- 0.033781372010707855,
- -0.041065435856580734,
- 0.09917570650577545,
- -0.03859492763876915,
- -0.03314756974577904,
- -0.060826778411865234,
- -0.012739181518554688,
- -0.0324392169713974,
- 0.044072531163692474,
- -0.035516157746315,
- 0.004589764401316643,
- -0.019275404512882233,
- -0.03645508736371994,
- 0.04419594630599022,
- -0.09219533950090408,
- 0.05348914489150047,
- -0.016317663714289665,
- -0.06787042319774628,
- -0.0797276571393013,
- 0.060596223920583725,
- -0.08471807092428207,
- -0.03590460121631622,
- 0.03742215782403946,
- -0.04186654090881348,
- 0.010235798545181751,
- -0.009826337918639183,
- -5.5349551081428855e-33,
- -0.0061294822953641415,
- -0.13042601943016052,
- 0.03896490857005119,
- 0.025701278820633888,
- 0.0375804677605629,
- 0.04323171451687813,
- 0.0078319376334548,
- -0.02705628052353859,
- -0.025549432262778282,
- 0.00774877704679966,
- 0.011037533171474934,
- 0.06626233458518982,
- 0.032506510615348816,
- 0.07527410984039307,
- 0.14507122337818146,
- -0.006920147687196732,
- -0.03859797120094299,
- 0.013818271458148956,
- -0.04365227743983269,
- 0.010533821769058704,
- -0.0935291200876236,
- 0.0056104655377566814,
- -0.07441068440675735,
- 0.05866314843297005,
- -0.03610698878765106,
- -0.005456467159092426,
- -0.02618623897433281,
- 0.022582871839404106,
- 0.01657276228070259,
- -0.0029397481121122837,
- 0.0468156561255455,
- -0.021379854530096054,
- -0.0288058053702116,
- -0.02910391427576542,
- -0.040348120033741,
- 0.013751000165939331,
- -0.03873860836029053,
- -0.025908850133419037,
- -0.02194259874522686,
- -0.03792957589030266,
- -0.022886155173182487,
- 0.06206677481532097,
- -0.05344632640480995,
- 0.012725217267870903,
- 0.02884165570139885,
- 0.06478874385356903,
- 0.010658282786607742,
- 0.03836079314351082,
- -0.009362041018903255,
- 0.014764266088604927,
- -0.006525477860122919,
- -0.007122278679162264,
- 0.01155041716992855,
- -0.03170263022184372,
- 0.02328656241297722,
- 0.011004254221916199,
- -0.011673612520098686,
- -0.04188554361462593,
- -0.006723488215357065,
- 0.03100747801363468,
- 0.06666053086519241,
- -0.017917219549417496,
- 0.029613127931952477,
- -0.026112275198101997,
- 0.10308397561311722,
- 0.015396487899124622,
- -0.0027734944596886635,
- -0.062194835394620895,
- -0.037708647549152374,
- 0.0042480966076254845,
- -0.06143102049827576,
- 0.010751151479780674,
- 0.10065679997205734,
- 0.013357240706682205,
- -0.027818702161312103,
- -0.006346328649669886,
- -0.06949195265769958,
- 0.01630990393459797,
- 0.004325164016336203,
- 0.09000072628259659,
- -0.00021666909742634743,
- -0.05396362021565437,
- 0.042513925582170486,
- -0.03245079517364502,
- 0.015515211038291454,
- 0.021769089624285698,
- -0.02416219189763069,
- -0.08460555970668793,
- -0.029465550556778908,
- -0.020973779261112213,
- -0.01905135065317154,
- 0.013191095553338528,
- 0.0535992756485939,
- 0.03489057347178459,
- -0.018539046868681908,
- 3.366991244263325e-33,
- -0.13882488012313843,
- 0.014072965830564499,
- -0.02035500854253769,
- 0.017969422042369843,
- -0.012155908159911633,
- 0.015348970890045166,
- 0.0036167798098176718,
- 0.07608268409967422,
- 0.11352548748254776,
- -0.0021533912513405085,
- -0.026308324187994003,
- -0.03790734335780144,
- -0.09614431858062744,
- 0.012267022393643856,
- 0.07473666965961456,
- 0.00007341659511439502,
- 0.05044257640838623,
- 0.03548659756779671,
- -0.03220459446310997,
- -0.01616070792078972,
- -0.04764798283576965,
- -0.0027107507921755314,
- 0.027783526107668877,
- -0.05036190152168274,
- -0.02775142900645733,
- 0.0054477215744555,
- 0.007793051656335592,
- -0.019473817199468613,
- -0.02078850008547306,
- -0.004348190501332283,
- 0.0018969009397551417,
- 0.02745526283979416,
- -0.03587457537651062,
- 0.03222799301147461,
- -0.03207169473171234,
- 0.07368051260709763,
- -0.005790583789348602,
- -0.02280912548303604,
- -0.07716165482997894,
- -0.04043871536850929,
- 0.01206153817474842,
- 0.012898461893200874,
- 0.043076563626527786,
- 0.11143773794174194,
- 0.049652472138404846,
- 0.033777233213186264,
- -0.0031831373926252127,
- 0.06354553252458572,
- 0.022446483373641968,
- 0.07160676270723343,
- 0.04833098128437996,
- 0.037684593349695206,
- 0.0018399504479020834,
- 0.028803475201129913,
- 0.04989996924996376,
- -0.060829710215330124,
- 0.03167426213622093,
- -0.09097915887832642,
- 0.021369585767388344,
- 0.03589882329106331,
- -0.06343496590852737,
- 0.019455814734101295,
- -0.07738266885280609,
- -0.008508562110364437,
- -0.07527817040681839,
- -0.005986571777611971,
- -0.04930853471159935,
- -0.03671491518616676,
- 0.09497909247875214,
- -0.05473916605114937,
- 0.0197682473808527,
- -0.05350403115153313,
- -0.014007034711539745,
- -0.07955747097730637,
- -0.10772482305765152,
- -0.05710148066282272,
- -0.05467623099684715,
- 0.0014678387669846416,
- -0.05322984233498573,
- -0.040605466812849045,
- -0.03354329988360405,
- -0.015543480403721333,
- 0.05132162943482399,
- -0.04452433064579964,
- -0.10189694911241531,
- 0.0066300383768975735,
- -0.019809365272521973,
- 0.024384550750255585,
- 0.03299723193049431,
- 0.07855445891618729,
- -0.05590297654271126,
- 0.04252757504582405,
- -0.018269864842295647,
- 0.04680616036057472,
- -0.0018895362736657262,
- -1.1570676861083484e-8,
- 0.00745795015245676,
- -0.03806987404823303,
- 0.03283359855413437,
- 0.06425756961107254,
- -0.025766147300601006,
- 0.023880720138549805,
- 0.030950577929615974,
- 0.07469623535871506,
- -0.047229669988155365,
- 0.08988510072231293,
- 0.01057262159883976,
- 0.08755140751600266,
- 0.03270852938294411,
- 0.07317841798067093,
- 0.053142961114645004,
- -0.03629910573363304,
- -0.034127429127693176,
- 0.031897030770778656,
- -0.09823453426361084,
- 0.008667035959661007,
- -0.016080811619758606,
- -0.0382588692009449,
- 0.07226894795894623,
- -0.02147090807557106,
- 0.03370693325996399,
- -0.08824723958969116,
- -0.0018298113718628883,
- 0.04207998141646385,
- 0.001569335232488811,
- -0.00752129266038537,
- 0.0743987113237381,
- 0.013256721198558807,
- -0.04002563655376434,
- -0.006923112086951733,
- -0.004409691318869591,
- -0.0685046836733818,
- -0.005955989472568035,
- -0.009126704186201096,
- 0.016486400738358498,
- 0.06817225366830826,
- -0.0656556561589241,
- -0.059530097991228104,
- 0.05728106200695038,
- 0.04761042073369026,
- -0.018847206607460976,
- -0.06179000437259674,
- 0.003229478606954217,
- -0.04962592571973801,
- 0.0173651110380888,
- 0.022401362657546997,
- 0.009102931246161461,
- 0.06304697692394257,
- 0.02553701400756836,
- 0.04365268349647522,
- 0.03855331242084503,
- 0.0134620051831007,
- 0.0275867972522974,
- 0.016182448714971542,
- 0.032801687717437744,
- 0.01634332165122032,
- 0.15641652047634125,
- 0.000659169745631516,
- 0.054980821907520294,
- 0.011604671366512775
- ]
- },
- {
- "keyword": "impacts",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.05869133770465851,
- 0.06802288442850113,
- 0.037219226360321045,
- 0.0460384227335453,
- 0.08141549676656723,
- 0.06528735905885696,
- 0.093708336353302,
- 0.07243309915065765,
- 0.035655125975608826,
- -0.00024048653722275048,
- 0.04856211692094803,
- -0.01946498267352581,
- -0.007740827742964029,
- 0.037619754672050476,
- -0.03085479885339737,
- 0.015305559150874615,
- 0.039906296879053116,
- -0.000823971931822598,
- -0.10604827851057053,
- 0.00987656693905592,
- -0.03216170147061348,
- 0.008088055066764355,
- -0.03364846855401993,
- 0.01877998374402523,
- -0.008978928439319134,
- 0.043536923825740814,
- -0.07174620032310486,
- 0.062219154089689255,
- 0.049088116735219955,
- -0.11782367527484894,
- -0.005695353262126446,
- 0.0807766392827034,
- 0.05405017361044884,
- 0.0015307795256376266,
- -0.05735427513718605,
- 0.03731552138924599,
- 0.09257081896066666,
- 0.006662276107817888,
- 0.02070031873881817,
- -0.051100954413414,
- -0.0033091974910348654,
- -0.10745523869991302,
- 0.04671163484454155,
- -0.04370938986539841,
- -0.00006782535638194531,
- -0.10922819375991821,
- 0.08359518647193909,
- 0.0035825639497488737,
- -0.05085734277963638,
- 0.025461679324507713,
- 0.04806177690625191,
- -0.09174247086048126,
- 0.013221632689237595,
- -0.016272669658064842,
- 0.02775540016591549,
- -0.08300042897462845,
- 0.005576092749834061,
- -0.027065927162766457,
- -0.003611856373026967,
- -0.035115987062454224,
- -0.0026488795410841703,
- -0.01835745945572853,
- -0.04883022606372833,
- 0.044690001755952835,
- 0.06754495203495026,
- -0.021176442503929138,
- -0.005178335588425398,
- -0.013426979072391987,
- -0.08455701172351837,
- 0.04107116535305977,
- 0.07391297072172165,
- -0.05784289538860321,
- -0.004849445540457964,
- -0.08495880663394928,
- 0.015501833520829678,
- -0.04039589688181877,
- -0.04321923479437828,
- 0.061997175216674805,
- 0.11269637197256088,
- -0.003841735888272524,
- 0.07905252277851105,
- -0.05877547338604927,
- -0.07177593559026718,
- 0.0006026963819749653,
- 0.019512144848704338,
- 0.025764742866158485,
- 0.04592461884021759,
- -0.012193338945508003,
- -0.01921321637928486,
- 0.07752406597137451,
- 0.016781309619545937,
- -0.020840302109718323,
- 0.12362784147262573,
- 0.028168676421046257,
- -0.08632359653711319,
- -0.013786778785288334,
- -0.07506196200847626,
- -0.12457165867090225,
- 0.03945209085941315,
- 0.21139107644557953,
- 0.005399195943027735,
- 0.07809126377105713,
- -0.05849554389715195,
- -0.006005722563713789,
- -0.050659503787755966,
- -0.020061207935214043,
- -0.06870190799236298,
- -0.03852834552526474,
- -0.0014518977841362357,
- 0.055339302867650986,
- 0.012422122061252594,
- 0.00036359511432237923,
- -0.03800785541534424,
- -0.005381269380450249,
- 0.0057762362994253635,
- -0.04397435486316681,
- 0.0260295607149601,
- -0.023168817162513733,
- 0.004976171068847179,
- -0.09508353471755981,
- 0.040632009506225586,
- -0.009565094485878944,
- -0.03604932874441147,
- 0.0019119064090773463,
- -0.039183929562568665,
- -0.040131404995918274,
- -0.047622598707675934,
- -5.186938250638439e-33,
- -0.046428315341472626,
- -0.07974611967802048,
- -0.06011594086885452,
- 0.023817498236894608,
- 0.03970310837030411,
- -0.04947949945926666,
- -0.04097146540880203,
- -0.0320662297308445,
- -0.030880693346261978,
- -0.05892886221408844,
- 0.012820914387702942,
- 0.0774301216006279,
- 0.10155162215232849,
- 0.041905224323272705,
- 0.10964887589216232,
- -0.025927206501364708,
- -0.03184102848172188,
- 0.061567116528749466,
- -0.024308333173394203,
- 0.05736711621284485,
- -0.08675117790699005,
- 0.017309198155999184,
- -0.05824611335992813,
- 0.10476434230804443,
- 0.02428712323307991,
- 0.0009719522786326706,
- -0.02625870332121849,
- 0.016975516453385353,
- -0.07217811793088913,
- -0.0016296544345095754,
- 0.032484278082847595,
- -0.026018286123871803,
- -0.04963206499814987,
- -0.04242388904094696,
- 0.00653869891539216,
- 0.08283745497465134,
- -0.023364834487438202,
- -0.05180796608328819,
- -0.036159269511699677,
- -0.011238803155720234,
- -0.062470581382513046,
- 0.021868392825126648,
- -0.0753704160451889,
- 0.028552668169140816,
- 0.0036697182804346085,
- 0.047194670885801315,
- 0.06604935973882675,
- 0.027251925319433212,
- -0.0019072424620389938,
- -0.02307501994073391,
- -0.025459403172135353,
- -0.009080087766051292,
- -0.0015827411552891135,
- -0.007588962092995644,
- -0.007276694290339947,
- 0.02885827235877514,
- -0.02695784717798233,
- -0.08125770092010498,
- -0.010314569808542728,
- -0.02683309093117714,
- 0.02440505102276802,
- -0.03953945264220238,
- -0.01106950268149376,
- -0.02341374009847641,
- 0.085820771753788,
- 0.019190581515431404,
- 0.027872774749994278,
- -0.032478805631399155,
- -0.004240419249981642,
- 0.003417450236156583,
- -0.02589539624750614,
- 0.011972790583968163,
- 0.07575881481170654,
- -0.039223361760377884,
- 0.012539100833237171,
- -0.016316218301653862,
- -0.07919853180646896,
- 0.007345553021878004,
- 0.03532446548342705,
- 0.05659569427371025,
- -0.03846687078475952,
- -0.010297073982656002,
- 0.05274457857012749,
- -0.09224257618188858,
- 0.06118941307067871,
- 0.04814574494957924,
- 0.05443541705608368,
- -0.08669646829366684,
- -0.027209697291254997,
- -0.010920672677457333,
- -0.05883689224720001,
- 0.008716084994375706,
- 0.0002869953168556094,
- 0.02756681852042675,
- 0.005872824229300022,
- 2.9266115711819485e-33,
- -0.06911537796258926,
- 0.08256102353334427,
- -0.003106215037405491,
- 0.06316889077425003,
- -0.01590334065258503,
- -0.015448421239852905,
- -0.00816215481609106,
- 0.015234098769724369,
- 0.022654879838228226,
- -0.07979639619588852,
- -0.056779880076646805,
- 0.011058256030082703,
- -0.08305749297142029,
- 0.004683286417275667,
- 0.03880691155791283,
- -0.04633292183279991,
- 0.04466432332992554,
- -0.04731294512748718,
- -0.06463665515184402,
- -0.023690352216362953,
- 0.04998975247144699,
- -0.04537336528301239,
- 0.0198217760771513,
- -0.014988795854151249,
- -0.05906563997268677,
- 0.0255820881575346,
- -0.018929816782474518,
- -0.08839977532625198,
- 0.01750396378338337,
- -0.01849261485040188,
- 0.024114711210131645,
- 0.022177575156092644,
- -0.02594536915421486,
- 0.05211765319108963,
- -0.020536236464977264,
- 0.0973961129784584,
- 0.04693805053830147,
- -0.024399759247899055,
- -0.04533340409398079,
- -0.08611486852169037,
- 0.05714808776974678,
- 0.025453628972172737,
- -0.02672630175948143,
- 0.06886492669582367,
- 0.004407640080899,
- -0.023644670844078064,
- 0.0365968719124794,
- 0.12148068845272064,
- 0.01609136164188385,
- -0.0014096993254497647,
- 0.030566120520234108,
- 0.027895253151655197,
- -0.0468655563890934,
- 0.05719488859176636,
- 0.03858906030654907,
- 0.00011039819219149649,
- 0.18641512095928192,
- -0.1281260848045349,
- -0.02484091930091381,
- 0.051825474947690964,
- -0.0817137137055397,
- 0.08155262470245361,
- -0.06012760102748871,
- 0.07213824987411499,
- -0.03540249913930893,
- -0.02420807257294655,
- -0.050622858107089996,
- -0.009014640003442764,
- 0.025250641629099846,
- -0.018925726413726807,
- 0.00022759842977393419,
- 0.051025327295064926,
- -0.005481219384819269,
- -0.09691155701875687,
- -0.04786421358585358,
- -0.014833934605121613,
- -0.02500254660844803,
- 0.03799354285001755,
- -0.05316702648997307,
- 0.048867568373680115,
- -0.05023093521595001,
- -0.015071982517838478,
- 0.026229778304696083,
- -0.013902534730732441,
- -0.03855707496404648,
- 0.04474084824323654,
- -0.043192341923713684,
- -0.03480709344148636,
- 0.020597515627741814,
- 0.05143709480762482,
- -0.07876183837652206,
- 0.07942096889019012,
- -0.04384053498506546,
- 0.01189118530601263,
- -0.01033687125891447,
- -1.2360439782810317e-8,
- -0.012876568362116814,
- 0.023183193057775497,
- -0.028204893693327904,
- 0.0620458759367466,
- -0.036591704934835434,
- 0.008590862154960632,
- 0.008705603890120983,
- 0.045227453112602234,
- -0.022744398564100266,
- 0.062026966363191605,
- -0.006307828705757856,
- 0.013117358088493347,
- 0.04491329938173294,
- 0.07138165086507797,
- 0.04133361205458641,
- -0.008235427550971508,
- -0.013391098938882351,
- 0.0010040304623544216,
- -0.10295963287353516,
- -0.00004588963929563761,
- 0.016414636746048927,
- -0.007180765736848116,
- 0.06730592250823975,
- 0.017983995378017426,
- 0.02766881324350834,
- -0.011828616261482239,
- -0.02108866348862648,
- 0.075239397585392,
- -0.0038243168964982033,
- 0.006895702797919512,
- 0.023983342573046684,
- 0.07043583691120148,
- -0.05146581679582596,
- 0.003956584259867668,
- 0.051678430289030075,
- -0.05041920393705368,
- -0.01172398217022419,
- 0.025908546522259712,
- 0.05991104990243912,
- 0.10702620446681976,
- -0.0560331866145134,
- -0.06468851119279861,
- 0.05204174295067787,
- 0.04029951989650726,
- -0.045144885778427124,
- -0.03482789546251297,
- -0.12051890045404434,
- -0.033573467284440994,
- -0.00628588767722249,
- -0.0017563108121976256,
- 0.015438702888786793,
- -0.002583967288956046,
- 0.01619432121515274,
- 0.09085752815008163,
- 0.06472702324390411,
- -0.026105022057890892,
- 0.03192008286714554,
- -0.02247215062379837,
- 0.0074151684530079365,
- 0.02150651253759861,
- 0.15189257264137268,
- -0.07366424798965454,
- 0.032992035150527954,
- 0.02645735628902912
- ]
- },
- {
- "keyword": "produces",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.03749672323465347,
- 0.003109057666733861,
- -0.06658919155597687,
- 0.0439186692237854,
- 0.006497072521597147,
- -0.01995568536221981,
- 0.051178913563489914,
- 0.0034223953261971474,
- 0.011004007421433926,
- -0.02159246988594532,
- 0.009669768624007702,
- -0.1185462549328804,
- 0.028385668992996216,
- -0.043902456760406494,
- -0.021856795996427536,
- 0.00931077916175127,
- 0.037407804280519485,
- -0.044967394322156906,
- -0.0676121637225151,
- -0.058555200695991516,
- 0.02612987905740738,
- 0.014356179162859917,
- 0.007664569653570652,
- 0.053602706640958786,
- 0.010462150909006596,
- 0.02383205108344555,
- -0.0381256602704525,
- 0.022793952375650406,
- 0.06030214950442314,
- -0.11201213300228119,
- -0.038309112191200256,
- 0.018929218873381615,
- 0.05639256536960602,
- -0.04654420167207718,
- 0.02081766165792942,
- 0.020930500701069832,
- 0.017465826123952866,
- -0.0003323906857986003,
- 0.02413102425634861,
- 0.011161170899868011,
- 0.0216047465801239,
- -0.09103673696517944,
- 0.009459620341658592,
- 0.010379369370639324,
- 0.0011424118420109153,
- 0.021181076765060425,
- 0.04363767057657242,
- -0.0053356303833425045,
- -0.004259237553924322,
- 0.003020073287189007,
- -0.030803639441728592,
- 0.04441424086689949,
- -0.0826338455080986,
- -0.06311167776584625,
- 0.0062138913199305534,
- -0.010774830356240273,
- -0.030398698523640633,
- -0.024233710020780563,
- -0.03027922473847866,
- 0.0008900713874027133,
- 0.01456959918141365,
- -0.0047673871740698814,
- -0.06331440061330795,
- -0.03303484246134758,
- 0.06827789545059204,
- -0.01039692759513855,
- -0.020792311057448387,
- 0.0003006330516654998,
- -0.061072058975696564,
- -0.041875291615724564,
- 0.011691688559949398,
- 0.03842197358608246,
- -0.03985320031642914,
- 0.009267223998904228,
- 0.027883587405085564,
- 0.023264795541763306,
- 0.055936288088560104,
- -0.06306329369544983,
- 0.06849512457847595,
- 0.0460667610168457,
- 0.07596655189990997,
- 0.02013092301785946,
- -0.09091177582740784,
- 0.008678278885781765,
- 0.010976559482514858,
- -0.014309963211417198,
- 0.06278058141469955,
- 0.03640920668840408,
- 0.02379417046904564,
- 0.049261968582868576,
- -0.06690555810928345,
- 0.005187176167964935,
- 0.05143876373767853,
- -0.013815113343298435,
- -0.0971469059586525,
- 0.031683240085840225,
- 0.05496818944811821,
- 0.016329137608408928,
- 0.023582439869642258,
- 0.17795716226100922,
- -0.0007569677545689046,
- 0.05877763777971268,
- 0.04291415587067604,
- -0.1198505386710167,
- -0.03864075988531113,
- -0.03699805587530136,
- -0.1022440642118454,
- 0.12473826110363007,
- -0.008934501558542252,
- 0.049374137073755264,
- 0.04443388804793358,
- 0.04913574457168579,
- -0.10963317006826401,
- 0.04003453627228737,
- 0.02360847033560276,
- 0.03415624424815178,
- 0.002342495834454894,
- -0.005430574528872967,
- -0.009808089584112167,
- -0.02275661751627922,
- 0.01707560196518898,
- 0.024906139820814133,
- 0.006467006169259548,
- 0.09375430643558502,
- -0.07382889091968536,
- -0.06949618458747864,
- 0.04691798985004425,
- -5.0702788851849736e-33,
- -0.016601858660578728,
- -0.10000504553318024,
- 0.06357456743717194,
- 0.03779110312461853,
- -0.019214127212762833,
- 0.07251101732254028,
- -0.05031327158212662,
- -0.023498550057411194,
- 0.03580767288804054,
- -0.02434825710952282,
- -0.0818365141749382,
- -0.028840668499469757,
- -0.013737858273088932,
- 0.0575072355568409,
- 0.08476004004478455,
- -0.043429385870695114,
- 0.024131998419761658,
- -0.012910174205899239,
- -0.056874118745326996,
- 0.05770871788263321,
- -0.10368550568819046,
- 0.0761767253279686,
- -0.0160061065107584,
- 0.04691532254219055,
- -0.017528047785162926,
- 0.02227677032351494,
- 0.02354532852768898,
- -0.0262990053743124,
- -0.07934205234050751,
- -0.007192043587565422,
- 0.09390448778867722,
- 0.025239797309041023,
- 0.014786064624786377,
- -0.004728207364678383,
- -0.07582412660121918,
- -0.014238221570849419,
- -0.046827830374240875,
- -0.05757294222712517,
- -0.01274633128196001,
- 0.041183020919561386,
- 0.0026481994427740574,
- 0.060217879712581635,
- -0.01444992981851101,
- 0.025951389223337173,
- -0.011915760114789009,
- 0.03703819960355759,
- 0.01680106669664383,
- 0.05214500427246094,
- 0.02644476108253002,
- -0.0012249769642949104,
- -0.03293314948678017,
- 0.03758435323834419,
- 0.06351364403963089,
- 0.0010353383840993047,
- 0.07711485028266907,
- -0.02166561223566532,
- 0.029664667323231697,
- -0.036655522882938385,
- 0.08781132847070694,
- 0.005148717667907476,
- -0.032986439764499664,
- 0.14475375413894653,
- -0.07661201059818268,
- 0.0669235810637474,
- -0.05859200283885002,
- -0.028276538476347923,
- 0.08173990249633789,
- -0.04807800427079201,
- 0.03408994525671005,
- 0.0135488361120224,
- -0.017026549205183983,
- -0.03814416378736496,
- 0.05280888080596924,
- -0.060554828494787216,
- 0.024573378264904022,
- 0.016808226704597473,
- -0.04380298778414726,
- 0.013467967510223389,
- 0.009983327239751816,
- -0.0037216830532997847,
- 0.010580591857433319,
- 0.011456101201474667,
- 0.014177488163113594,
- -0.0769139900803566,
- 0.026064557954669,
- 0.043311018496751785,
- -0.07086799293756485,
- -0.024421794340014458,
- 0.08221928030252457,
- 0.07300552725791931,
- -0.01383151113986969,
- -0.04471632093191147,
- 0.009604514576494694,
- 0.029011324048042297,
- -0.07366307824850082,
- 4.3152886183525735e-33,
- 0.0408686138689518,
- 0.009553556330502033,
- -0.010900912806391716,
- -0.0025688624009490013,
- -0.06341931223869324,
- -0.05520690232515335,
- -0.00872138049453497,
- -0.08907121419906616,
- -0.08485615253448486,
- 0.02389369159936905,
- -0.04481782019138336,
- -0.0015406545717269182,
- 0.01792708970606327,
- 0.04638799652457237,
- -0.020325856283307076,
- -0.009568764828145504,
- 0.12353193759918213,
- -0.03409223258495331,
- -0.01957988366484642,
- -0.01755993254482746,
- -0.007701512426137924,
- 0.02170673757791519,
- 0.028363298624753952,
- -0.012896304950118065,
- -0.024134362116456032,
- 0.041656333953142166,
- -0.003920773975551128,
- 0.0834517776966095,
- -0.02197284996509552,
- -0.0453176349401474,
- 0.03857172653079033,
- -0.08815328031778336,
- 0.0029884520918130875,
- -0.024052349850535393,
- -0.04314722493290901,
- 0.036931052803993225,
- -0.0006172691355459392,
- 0.013393635861575603,
- 0.07737088948488235,
- -0.00029056501807644963,
- 0.05188944563269615,
- 0.0056107137352228165,
- 0.02247432805597782,
- 0.17349377274513245,
- -0.04679526388645172,
- -0.034646108746528625,
- 0.03680557385087013,
- -0.04605056717991829,
- 0.1150921881198883,
- 0.026177339255809784,
- 0.021221166476607323,
- 0.030680982396006584,
- -0.08670131117105484,
- -0.05696184188127518,
- -0.07319935411214828,
- -0.05890583619475365,
- 0.013986991718411446,
- -0.030968327075242996,
- -0.042446427047252655,
- -0.015455888584256172,
- -0.05558832734823227,
- -0.009801068343222141,
- 0.033748600631952286,
- -0.02828148379921913,
- -0.01839935965836048,
- 0.03293702006340027,
- -0.008761766366660595,
- 0.06024856120347977,
- 0.07757696509361267,
- 0.030816666781902313,
- 0.054478228092193604,
- 0.025515221059322357,
- -0.06228023022413254,
- -0.05710582435131073,
- -0.05636082589626312,
- 0.04709465056657791,
- -0.08305390924215317,
- -0.017573721706867218,
- 0.07007281482219696,
- -0.024620799347758293,
- -0.03699316829442978,
- -0.03579145297408104,
- 0.03619103133678436,
- 0.019563408568501472,
- -0.02059490606188774,
- -0.07662853598594666,
- 0.052565257996320724,
- -0.06334907561540604,
- 0.009805153124034405,
- 0.07081595808267593,
- 0.04974622279405594,
- 0.03994278982281685,
- -0.08722609281539917,
- 0.0933329239487648,
- 0.05754423514008522,
- -1.2788764713889123e-8,
- 0.0038053211756050587,
- -0.04654880240559578,
- 0.00917517114430666,
- 0.04657284915447235,
- 0.04141997918486595,
- 0.029048319905996323,
- 0.043540582060813904,
- -0.023110903799533844,
- 0.05392766371369362,
- 0.02312449738383293,
- -0.04438810795545578,
- -0.03603862226009369,
- -0.003424280323088169,
- 0.0615667961537838,
- 0.15653836727142334,
- -0.035876356065273285,
- -0.038555387407541275,
- 0.0961206778883934,
- -0.08603093028068542,
- -0.08687523007392883,
- -0.02229255437850952,
- -0.0008181489538401365,
- 0.04633523151278496,
- 0.05194775015115738,
- -0.05870292708277702,
- -0.07215851545333862,
- -0.025623423978686333,
- 0.006291309837251902,
- 0.04393654316663742,
- 0.0588817335665226,
- 0.04992580786347389,
- 0.02805783413350582,
- -0.06804609298706055,
- -0.021077914163470268,
- -0.004838891327381134,
- -0.09217127412557602,
- -0.07258116453886032,
- -0.026348700746893883,
- 0.061022963374853134,
- -0.02188066393136978,
- -0.06774981319904327,
- 0.03177395835518837,
- 0.0058810412883758545,
- 0.025093169882893562,
- -0.049279071390628815,
- -0.04550950229167938,
- -0.026625139638781548,
- -0.08746440708637238,
- -0.013891964219510555,
- 0.013569178991019726,
- 0.04516362398862839,
- -0.00969331432133913,
- 0.12367657572031021,
- 0.02753276377916336,
- 0.03781420364975929,
- -0.06157425418496132,
- -0.009933914989233017,
- -0.007658305112272501,
- 0.019203955307602882,
- 0.00622677942737937,
- 0.09686621278524399,
- 0.006377527490258217,
- 0.2039966732263565,
- 0.04875563085079193
- ]
- },
- {
- "keyword": "causation",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.029825914651155472,
- 0.03564890846610069,
- 0.0650341734290123,
- 0.0499088428914547,
- 0.07134925574064255,
- 0.0683177039027214,
- 0.06066132336854935,
- 0.039257295429706573,
- 0.0629422664642334,
- 0.060003943741321564,
- 0.08187998831272125,
- -0.027685826644301414,
- 0.05059177801012993,
- 0.015419060364365578,
- -0.06195114552974701,
- -0.024993598461151123,
- -0.021417221054434776,
- -0.02795674093067646,
- -0.0699358657002449,
- 0.005944298580288887,
- -0.036048103123903275,
- -0.05073525011539459,
- -0.03964750096201897,
- 0.05599768087267876,
- -0.04788108915090561,
- 0.05022798106074333,
- -0.008321160450577736,
- 0.05771017074584961,
- 0.051745276898145676,
- -0.07875137776136398,
- -0.0014086873270571232,
- 0.0743444636464119,
- -0.09148771315813065,
- -0.057989418506622314,
- 0.005986963864415884,
- 0.013832209631800652,
- -0.0006824351730756462,
- 0.07057806849479675,
- 0.008913143537938595,
- 0.036082033067941666,
- -0.028584912419319153,
- -0.06631139665842056,
- 0.002841547131538391,
- 0.025024687871336937,
- 0.025134297087788582,
- 0.00919764768332243,
- 0.02723742090165615,
- 0.047000281512737274,
- -0.024008123204112053,
- -0.0055356742814183235,
- -0.04719363898038864,
- -0.025441696867346764,
- 0.004624329041689634,
- -0.07671116292476654,
- 0.06480853259563446,
- -0.09524640440940857,
- 0.017036354169249535,
- -0.024608401581645012,
- 0.014362403191626072,
- -0.03198840841650963,
- 0.021584853529930115,
- 0.024676546454429626,
- -0.11748144775629044,
- 0.024298444390296936,
- 0.07927850633859634,
- 0.039252590388059616,
- -0.02450958825647831,
- 0.05390988662838936,
- -0.0644235834479332,
- 0.12247919291257858,
- 0.05913881957530975,
- 0.020074591040611267,
- -0.013685685582458973,
- 0.018824072554707527,
- 0.028925081714987755,
- 0.016902988776564598,
- 0.061831213533878326,
- -0.03217408433556557,
- 0.058957912027835846,
- -0.006962606217712164,
- 0.022857703268527985,
- 0.029601184651255608,
- 0.03233465179800987,
- -0.045108895748853683,
- 0.04952230304479599,
- -0.032991476356983185,
- 0.0510142520070076,
- -0.059154387563467026,
- -0.0827067494392395,
- 0.07590904831886292,
- -0.00954967550933361,
- -0.07250736653804779,
- 0.1071535050868988,
- 0.045741476118564606,
- -0.08080798387527466,
- 0.06062154844403267,
- -0.043208491057157516,
- -0.07073374092578888,
- 0.035930484533309937,
- 0.13514390587806702,
- -0.042461708188056946,
- 0.03541777655482292,
- -0.07849971204996109,
- 0.028456738218665123,
- 0.07918817549943924,
- -0.060705821961164474,
- -0.06013529747724533,
- -0.06834153831005096,
- 0.022885272279381752,
- 0.05196462571620941,
- 0.024842454120516777,
- 0.009906759485602379,
- -0.01799912378191948,
- -0.0013259960105642676,
- 0.031151816248893738,
- 0.006095007061958313,
- 0.014401981607079506,
- -0.027957359328866005,
- -0.05031784251332283,
- -0.09325718879699707,
- 0.05400411784648895,
- -0.02066577598452568,
- -0.011515235528349876,
- -0.02043985202908516,
- -0.04267803952097893,
- -0.13669869303703308,
- -0.03175872936844826,
- -2.3254266586309828e-33,
- 0.05469288304448128,
- -0.11046390235424042,
- 0.028807610273361206,
- 0.03576597943902016,
- 0.016919082030653954,
- 0.012084738351404667,
- -0.07665015757083893,
- -0.0371735543012619,
- 0.028339512646198273,
- -0.08636573702096939,
- -0.0054420726373791695,
- -0.030735474079847336,
- -0.038185134530067444,
- -0.09351885318756104,
- 0.04916728287935257,
- 0.06255079060792923,
- -0.13195748627185822,
- 0.04145461320877075,
- -0.01722835563123226,
- -0.023967208340764046,
- -0.04097355902194977,
- -0.03688425198197365,
- -0.023744307458400726,
- 0.025458889082074165,
- -0.013810518197715282,
- -0.025545038282871246,
- -0.007553847972303629,
- 0.032954249531030655,
- -0.034332986921072006,
- 0.0164363794028759,
- 0.0486023873090744,
- -0.06176242604851723,
- -0.0023006009869277477,
- 0.0269505325704813,
- -0.03417545184493065,
- -0.07069528102874756,
- -0.04710778966546059,
- -0.06510096788406372,
- -0.03261368349194527,
- 0.0019478736212477088,
- -0.05397988483309746,
- 0.009452643804252148,
- 0.02864839695394039,
- -0.013187478296458721,
- 0.05627745762467384,
- -0.0805826187133789,
- 0.01200902834534645,
- -0.03623000159859657,
- -0.024469751864671707,
- 0.07796607166528702,
- 0.027050809934735298,
- 0.01921328529715538,
- 0.055532511323690414,
- -0.014982025139033794,
- -0.006106717977672815,
- 0.024560820311307907,
- -0.012641433626413345,
- -0.003842019010335207,
- -0.06054048240184784,
- 0.0027292191516608,
- 0.054926007986068726,
- 0.014474350027740002,
- -0.02387295290827751,
- 0.03305497020483017,
- -0.013687427155673504,
- 0.04435275122523308,
- 0.06490559130907059,
- -0.1114603579044342,
- -0.03454171121120453,
- 0.01861068233847618,
- -0.07731141895055771,
- -0.02967914752662182,
- -0.0719216838479042,
- 0.03906223177909851,
- 0.015152829699218273,
- -0.029982786625623703,
- -0.030702145770192146,
- 0.025453368201851845,
- 0.03371291980147362,
- -0.07587834447622299,
- -0.04092918336391449,
- -0.06595680862665176,
- 0.02557891607284546,
- 0.06676961481571198,
- -0.06856609880924225,
- 0.08966129273176193,
- -0.031355999410152435,
- -0.06660512834787369,
- 0.018633121624588966,
- 0.023552002385258675,
- 0.025832410901784897,
- -0.0239757988601923,
- 0.1421055644750595,
- 0.032479725778102875,
- -0.06758632510900497,
- -3.011612164620633e-34,
- -0.08660600334405899,
- -0.011230926029384136,
- 0.041430242359638214,
- -0.002293808152899146,
- 0.028430040925741196,
- -0.0042804572731256485,
- 0.01164731103926897,
- -0.0964851826429367,
- -0.05176661163568497,
- -0.002399119781330228,
- -0.02736545167863369,
- 0.050418224185705185,
- 0.06124190613627434,
- 0.06978558003902435,
- -0.037654809653759,
- 0.038365695625543594,
- 0.06494612246751785,
- -0.004721686244010925,
- -0.04546249285340309,
- -0.05747624486684799,
- 0.01005516666918993,
- -0.005917713046073914,
- 0.054506175220012665,
- -0.10858485102653503,
- -0.0319293811917305,
- 0.024962350726127625,
- 0.06804764270782471,
- -0.0015176236629486084,
- 0.015918144956231117,
- -0.004865317605435848,
- -0.00044010012061335146,
- 0.056584905833005905,
- -0.008343914523720741,
- 0.012211276218295097,
- 0.00467850174754858,
- 0.08627873659133911,
- 0.07073462009429932,
- -0.04071277752518654,
- -0.05521472916007042,
- -0.017935020849108696,
- 0.07218478620052338,
- 0.05123242735862732,
- 0.0647764652967453,
- 0.005343313794583082,
- -0.02459268644452095,
- 0.0684063732624054,
- 0.04063254967331886,
- 0.056691724807024,
- 0.13300147652626038,
- 0.008001670241355896,
- -0.011430314742028713,
- -0.008432110771536827,
- 0.00427215825766325,
- 0.052392978221178055,
- -0.06004529818892479,
- -0.002226241398602724,
- 0.07619690150022507,
- -0.04551943764090538,
- -0.034890517592430115,
- 0.07756196707487106,
- -0.03145017474889755,
- 0.007128261495381594,
- -0.07209423184394836,
- 0.018538419157266617,
- 0.003713279729709029,
- -0.030997663736343384,
- -0.06230912357568741,
- 0.04636130854487419,
- 0.09293854981660843,
- -0.06387583911418915,
- 0.04879143834114075,
- 0.060263849794864655,
- -0.1649780422449112,
- -0.10163433849811554,
- -0.05631621554493904,
- 0.06638683378696442,
- -0.03555700182914734,
- -0.007145007606595755,
- -0.029505901038646698,
- -0.06497755646705627,
- -0.06772256642580032,
- -0.025612860918045044,
- 0.061771344393491745,
- -0.02217194065451622,
- -0.07499964535236359,
- 0.0018051706720143557,
- 0.043375175446271896,
- -0.02281935326755047,
- 0.02162468247115612,
- 0.052024003118276596,
- -0.07766708731651306,
- 0.0033590521197766066,
- -0.028620921075344086,
- 0.010782035067677498,
- -0.00048639439046382904,
- -1.524884218895295e-8,
- 0.06968823820352554,
- 0.02571285329759121,
- 0.05347141996026039,
- 0.011811232194304466,
- 0.06491834670305252,
- -0.054347481578588486,
- 0.01294544618576765,
- -0.022266114130616188,
- 0.015337847173213959,
- 0.03398463502526283,
- -0.015027082525193691,
- 0.07079572975635529,
- 0.006901619955897331,
- 0.06769479811191559,
- 0.004430364817380905,
- -0.008127639070153236,
- -0.04281361773610115,
- -0.016876600682735443,
- -0.07345572859048843,
- -0.0013736126711592078,
- 0.036293551325798035,
- -0.02936948463320732,
- -0.05635214224457741,
- 0.04130694642663002,
- 0.026218609884381294,
- 0.022932404652237892,
- -0.01655575819313526,
- 0.13282644748687744,
- -0.010976538062095642,
- 0.0012702661333605647,
- 0.045924752950668335,
- 0.039721954613924026,
- -0.08459433168172836,
- -0.09687448292970657,
- 0.0013159546069800854,
- -0.026782816275954247,
- 0.03143369033932686,
- -0.0510641410946846,
- 0.03374340385198593,
- -0.05061684548854828,
- 0.033117007464170456,
- 0.023839445784687996,
- 0.010136457160115242,
- 0.08643577247858047,
- 0.0023410487920045853,
- -0.027007723227143288,
- -0.01964298076927662,
- -0.02907390333712101,
- -0.019694330170750618,
- -0.04501979053020477,
- -0.024103378877043724,
- -0.020512253046035767,
- 0.060047753155231476,
- 0.019252406433224678,
- 0.04784499853849411,
- 0.026423953473567963,
- 0.02521096169948578,
- 0.05047996714711189,
- -0.04008948802947998,
- 0.015359319746494293,
- 0.1488388478755951,
- 0.005954546853899956,
- 0.11540606617927551,
- -0.030211681500077248
- ]
- },
- {
- "keyword": "consequence",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.03978060930967331,
- 0.12800201773643494,
- 0.05507694184780121,
- -0.0052785249426960945,
- 0.0051581598818302155,
- 0.06934505701065063,
- 0.05442298948764801,
- 0.03604407235980034,
- 0.05294105410575867,
- 0.019540579989552498,
- 0.10295465588569641,
- -0.02199580706655979,
- 0.02199879288673401,
- 0.033776551485061646,
- -0.019293958321213722,
- -0.04605603218078613,
- 0.02520255744457245,
- 0.02380429580807686,
- -0.06564714014530182,
- -0.010791612789034843,
- -0.032377198338508606,
- 0.023044142872095108,
- 0.0012507140636444092,
- 0.07642544060945511,
- -0.05593825504183769,
- 0.0330759696662426,
- -0.03961005434393883,
- -0.009702802635729313,
- 0.0932094007730484,
- -0.10229327529668808,
- -0.03526509925723076,
- 0.08388572931289673,
- 0.03243047371506691,
- -0.019528910517692566,
- -0.036995042115449905,
- 0.010694576427340508,
- 0.05677330866456032,
- -0.04084096848964691,
- 0.03781973943114281,
- -0.04814177379012108,
- 0.0019616030622273684,
- -0.08618403226137161,
- -0.04568837583065033,
- 0.0075968243181705475,
- -0.001679872744716704,
- -0.019195400178432465,
- 0.04338008165359497,
- 0.028390660881996155,
- -0.056098129600286484,
- 0.002793487161397934,
- 0.04699566215276718,
- -0.03374786674976349,
- -0.03677034378051758,
- 0.010171111673116684,
- 0.01462643500417471,
- -0.05257080867886543,
- 0.040387868881225586,
- -0.004373225383460522,
- -0.03214043751358986,
- -0.053932372480630875,
- 0.02938365750014782,
- -0.03255559131503105,
- -0.12692449986934662,
- 0.008725605905056,
- 0.11057914793491364,
- 0.0001106243216781877,
- 0.023258136585354805,
- -0.03929498419165611,
- -0.0055936225689947605,
- 0.041591063141822815,
- 0.04203233867883682,
- -0.0432019978761673,
- 0.0586845800280571,
- -0.027337251231074333,
- -0.014894035644829273,
- -0.0019564670510590076,
- 0.004746302962303162,
- 0.04167363792657852,
- 0.06484947353601456,
- -0.0011680745519697666,
- -0.010240284726023674,
- 0.02198403887450695,
- -0.05651020258665085,
- 0.003965569660067558,
- -0.049264419823884964,
- -0.05706169828772545,
- 0.02232666313648224,
- -0.058637432754039764,
- -0.001195566146634519,
- 0.03975512832403183,
- 0.02230144292116165,
- -0.07204066962003708,
- 0.13398538529872894,
- -0.03828416392207146,
- -0.08841972798109055,
- -0.006161172408610582,
- -0.04334201663732529,
- -0.1414073258638382,
- 0.02573864907026291,
- 0.23665063083171844,
- -0.0423593707382679,
- 0.06137837842106819,
- -0.07585003972053528,
- -0.026580415666103363,
- 0.07573046535253525,
- -0.01843878999352455,
- 0.015885520726442337,
- -0.025071490556001663,
- 0.03391261398792267,
- 0.013813368044793606,
- 0.021853715181350708,
- -0.012330938130617142,
- 0.07238578051328659,
- 0.006375490687787533,
- 0.05191085860133171,
- 0.049834758043289185,
- -0.025628045201301575,
- 0.022245464846491814,
- -0.061273492872714996,
- -0.1099010556936264,
- 0.03957292437553406,
- -0.008034436032176018,
- -0.005285905208438635,
- 0.01870591938495636,
- -0.05943416431546211,
- -0.09367072582244873,
- -0.024977004155516624,
- -6.109602133698084e-33,
- 0.04546792805194855,
- -0.06125630810856819,
- -0.012812060303986073,
- -0.038674138486385345,
- 0.025164443999528885,
- -0.005259364377707243,
- -0.04051419347524643,
- -0.03914835304021835,
- -0.06613761186599731,
- 0.0006344583234749734,
- -0.017306232824921608,
- -0.03971078246831894,
- -0.0008219156297855079,
- -0.051730263978242874,
- 0.05577836185693741,
- 0.04021858051419258,
- -0.015764158219099045,
- 0.006592245306819677,
- 0.06758393347263336,
- 0.06704762578010559,
- -0.024027394130825996,
- -0.04873377084732056,
- -0.0294713843613863,
- 0.04457707330584526,
- -0.06019555404782295,
- -0.05854882299900055,
- -0.03446243330836296,
- -0.05674304813146591,
- -0.036054857075214386,
- -0.02573244459927082,
- 0.06881258636713028,
- 0.024124687537550926,
- 0.03743196278810501,
- 0.029701033607125282,
- 0.0005634021945297718,
- 0.01933039352297783,
- -0.07515091449022293,
- -0.04100809618830681,
- 0.023282039910554886,
- 0.011422895826399326,
- -0.02165571227669716,
- -0.0075821648351848125,
- -0.0025621214881539345,
- -0.03425002843141556,
- 0.05827014520764351,
- -0.061349134892225266,
- 0.0037786050233989954,
- -0.030751338228583336,
- -0.04062892124056816,
- -0.013404815457761288,
- -0.0010488659609109163,
- 0.03556260094046593,
- -0.028338881209492683,
- -0.011232402175664902,
- -0.01515623927116394,
- 0.03259189426898956,
- -0.010705121792852879,
- 0.0421525239944458,
- -0.02361290343105793,
- 0.03559756278991699,
- 0.02909112721681595,
- 0.03163309395313263,
- -0.050175853073596954,
- 0.11946340650320053,
- -0.03518591821193695,
- -0.0021189088001847267,
- -0.0027655826415866613,
- -0.07029136270284653,
- -0.036180876195430756,
- -0.017984280362725258,
- -0.07441499084234238,
- -0.030792206525802612,
- 0.010188283398747444,
- 0.026022495701909065,
- -0.006060157902538776,
- -0.0001606077275937423,
- -0.03976301848888397,
- -0.055535975843667984,
- 0.030922340229153633,
- -0.0400843620300293,
- -0.055646128952503204,
- -0.0687602236866951,
- 0.0027745813131332397,
- 0.03258088603615761,
- 0.11693985760211945,
- 0.0569135881960392,
- 0.03196106106042862,
- -0.09614676237106323,
- 0.05968799814581871,
- -0.009234165772795677,
- -0.03789115324616432,
- -0.029324447736144066,
- 0.04678765684366226,
- 0.018860626965761185,
- 0.03422802314162254,
- 4.201170157406807e-33,
- 0.0027015681844204664,
- 0.018192416056990623,
- -0.09646747261285782,
- 0.013950122520327568,
- 0.030123615637421608,
- 0.04970330744981766,
- 0.035823218524456024,
- -0.04974792152643204,
- -0.09202106297016144,
- -0.04118572920560837,
- -0.015563145279884338,
- 0.03525107726454735,
- -0.0286242812871933,
- 0.08254072070121765,
- 0.0650978833436966,
- -0.003709485288709402,
- 0.03454674407839775,
- -0.05339295044541359,
- -0.06884795427322388,
- 0.016249308362603188,
- 0.04264681413769722,
- -0.026899417862296104,
- -0.03127603977918625,
- -0.026785966008901596,
- -0.10207150876522064,
- -0.013993910513818264,
- 0.03270316869020462,
- -0.022089648991823196,
- -0.04833339527249336,
- 0.046334587037563324,
- 0.072605662047863,
- 0.03731459751725197,
- -0.0649862214922905,
- 0.009008682332932949,
- 0.07934606820344925,
- 0.022012781351804733,
- 0.118531733751297,
- -0.07278729975223541,
- -0.09028833359479904,
- -0.023454170674085617,
- 0.033823542296886444,
- 0.028376121073961258,
- 0.014575067907571793,
- 0.053953006863594055,
- 0.023774076253175735,
- -0.021043794229626656,
- -0.014517564326524734,
- 0.021174168214201927,
- 0.037407610565423965,
- 0.007381866220384836,
- 0.004723389632999897,
- -0.009696600027382374,
- 0.0478663370013237,
- 0.04873554781079292,
- 0.006350735202431679,
- 0.013527012430131435,
- 0.048004861921072006,
- -0.05806576833128929,
- 0.0568866990506649,
- 0.05012483149766922,
- -0.01617339998483658,
- 0.038308899849653244,
- -0.028050396591424942,
- 0.03756599873304367,
- 0.004637240432202816,
- -0.024340670555830002,
- -0.06357445567846298,
- 0.06388328969478607,
- 0.12059006094932556,
- 0.01783660426735878,
- 0.07217089831829071,
- 0.03319023549556732,
- -0.08167095482349396,
- -0.07680550217628479,
- -0.022747186943888664,
- 0.028963128104805946,
- -0.04427827149629593,
- 0.0692976713180542,
- -0.06726782023906708,
- 0.02031661942601204,
- 0.02723628282546997,
- -0.040425579994916916,
- 0.05896276235580444,
- 0.026857709512114525,
- -0.04870757833123207,
- -0.009720264934003353,
- 0.06867420673370361,
- -0.0299889724701643,
- 0.0018482240848243237,
- 0.0020174290984869003,
- -0.01227052416652441,
- -0.008477582596242428,
- -0.05945457145571709,
- -0.06109558045864105,
- -0.01067336369305849,
- -1.2400375837273714e-8,
- -0.0865655392408371,
- -0.00651195552200079,
- -0.031982701271772385,
- 0.1143600344657898,
- -0.01877043955028057,
- 0.03088356740772724,
- -0.04782964661717415,
- 0.0006640353822149336,
- -0.0379314199090004,
- 0.0231865756213665,
- -0.018843475729227066,
- 0.03330002725124359,
- 0.014451097697019577,
- 0.09230856597423553,
- 0.052252817898988724,
- 0.06549090147018433,
- -0.016498954966664314,
- -0.00781521387398243,
- -0.07711135596036911,
- -0.019712403416633606,
- -0.030491048470139503,
- 0.008806793950498104,
- 0.036456432193517685,
- -0.04820653796195984,
- -0.007310428190976381,
- -0.03685856610536575,
- 0.034209784120321274,
- 0.1194356232881546,
- 0.008370746858417988,
- 0.009561004117131233,
- 0.12451246380805969,
- 0.028902310878038406,
- -0.05410676449537277,
- -0.031720612198114395,
- 0.05752155929803848,
- -0.06015236675739288,
- 0.005069900769740343,
- 0.005382293835282326,
- 0.09060535579919815,
- 0.07517287880182266,
- -0.0035965130664408207,
- 0.05049244686961174,
- 0.047282468527555466,
- 0.08921831846237183,
- 0.042523887008428574,
- -0.08058328926563263,
- -0.034388404339551926,
- 0.005964726209640503,
- -0.051492203027009964,
- 0.00855946633964777,
- -0.028101852163672447,
- 0.03863851726055145,
- 0.0016325275646522641,
- 0.051050785928964615,
- 0.08787620067596436,
- -0.0111314058303833,
- 0.06424114853143692,
- -0.018283484503626823,
- -0.0962696373462677,
- 0.06274189800024033,
- 0.15926657617092133,
- 0.021528342738747597,
- 0.12773765623569489,
- -0.13127754628658295
- ]
- },
- {
- "keyword": "effect",
- "type": "causes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.003717423416674137,
- 0.06809061765670776,
- 0.07165107131004333,
- 0.056048683822155,
- 0.028875164687633514,
- 0.008264667354524136,
- 0.060311298817396164,
- 0.040957748889923096,
- 0.04425989091396332,
- -0.02701639011502266,
- 0.031944289803504944,
- 0.0052016731351614,
- 0.011942495591938496,
- -0.02244379185140133,
- 0.00026368635008111596,
- 0.04249187558889389,
- 0.054213762283325195,
- 0.018438072875142097,
- -0.16496269404888153,
- -0.006545794662088156,
- 0.03529858961701393,
- -0.021369343623518944,
- -0.042400095611810684,
- 0.012397011741995811,
- -0.07382184267044067,
- 0.06222163513302803,
- -0.05261452868580818,
- 0.07493167370557785,
- 0.06966707855463028,
- -0.09477124363183975,
- -0.03649231418967247,
- 0.0922786295413971,
- 0.0394122414290905,
- -0.010231470689177513,
- -0.1240849420428276,
- 0.013512331992387772,
- 0.015232620760798454,
- 0.0711614340543747,
- -0.006383751984685659,
- -0.032136980444192886,
- -0.020836539566516876,
- -0.08354499191045761,
- 0.04096810519695282,
- -0.005895794369280338,
- 0.018444206565618515,
- -0.03931359946727753,
- 0.07395853102207184,
- 0.019232729449868202,
- -0.018057920038700104,
- 0.03243294730782509,
- 0.008966604247689247,
- -0.10189006477594376,
- 0.011649003252387047,
- -0.001201643142849207,
- -0.00024975603446364403,
- -0.035147473216056824,
- -0.012253948487341404,
- 0.0012848962796851993,
- 0.00572959054261446,
- -0.04330860823392868,
- 0.02835891768336296,
- 0.007039757911115885,
- -0.04137629270553589,
- 0.025381196290254593,
- 0.07149491459131241,
- 0.0021663056686520576,
- 0.010848422534763813,
- -0.052531518042087555,
- -0.05926261842250824,
- -0.013975383713841438,
- 0.10948588699102402,
- -0.05088101327419281,
- -0.026279019191861153,
- -0.07017702609300613,
- -0.0036986374761909246,
- -0.03519224748015404,
- -0.03576609864830971,
- 0.03782443329691887,
- 0.10734128952026367,
- 0.026549553498625755,
- 0.06641527265310287,
- -0.10787872225046158,
- -0.06756143271923065,
- 0.003691619960591197,
- -0.05502138286828995,
- -0.02560015767812729,
- 0.05986865982413292,
- -0.07888896018266678,
- -0.11974124610424042,
- 0.10952545702457428,
- -0.0036730419378727674,
- -0.014445437118411064,
- 0.03894909843802452,
- -0.03520286828279495,
- -0.08401196449995041,
- -0.019428018480539322,
- -0.06905557960271835,
- -0.04737711697816849,
- -0.026868747547268867,
- 0.28036534786224365,
- -0.00130974140483886,
- 0.022062690928578377,
- -0.09188485890626907,
- 0.006666221655905247,
- -0.03853200003504753,
- -0.01024585124105215,
- -0.045424580574035645,
- -0.003074983134865761,
- -0.018623191863298416,
- 0.02445310726761818,
- -0.026188062503933907,
- 0.0025231356266885996,
- -0.05029730498790741,
- -0.035923175513744354,
- 0.05975083261728287,
- -0.008693809621036053,
- 0.014239029958844185,
- 0.0026074452325701714,
- -0.055862996727228165,
- -0.0843854695558548,
- 0.08317723870277405,
- -0.046330101788043976,
- -0.06325423717498779,
- 0.06261587142944336,
- -0.037914954125881195,
- -0.042470403015613556,
- 0.004325480200350285,
- -5.783186086915951e-33,
- 0.005625179968774319,
- -0.08309175819158554,
- 0.010053558275103569,
- 0.029342414811253548,
- 0.06353042274713516,
- -0.013042895123362541,
- -0.01774808019399643,
- -0.05790067836642265,
- -0.03715759143233299,
- -0.01733217015862465,
- 0.000840969558339566,
- 0.009019585326313972,
- 0.058185774832963943,
- 0.046130742877721786,
- 0.05276741459965706,
- 0.017299296334385872,
- -0.012415330857038498,
- 0.018308287486433983,
- 0.0019261931302025914,
- 0.0529743954539299,
- -0.06504245102405548,
- 0.05316390469670296,
- -0.06839100271463394,
- 0.04410084709525108,
- -0.04215478524565697,
- -0.005359258968383074,
- -0.041412461549043655,
- 0.00821122620254755,
- -0.02921941503882408,
- 0.008826000615954399,
- 0.020897341892123222,
- 0.033364951610565186,
- -0.03855038806796074,
- -0.05749792233109474,
- -0.016167515888810158,
- 0.0022074643056839705,
- 0.004040801897644997,
- -0.036631740629673004,
- 0.05293290317058563,
- 0.012409227900207043,
- -0.0631323903799057,
- 0.03590543568134308,
- -0.049197714775800705,
- 0.02869313582777977,
- 0.03215903416275978,
- 0.04833510145545006,
- 0.03450831398367882,
- 0.054231733083724976,
- -0.01139562763273716,
- 0.03665454685688019,
- 0.05406646057963371,
- -0.020230451598763466,
- 0.01138399075716734,
- -0.0066742198541760445,
- 0.01938776671886444,
- 0.05518149212002754,
- -0.020953698083758354,
- -0.025092465803027153,
- -0.030701667070388794,
- 0.020961837843060493,
- 0.06379841268062592,
- 0.023067988455295563,
- 0.003915289416909218,
- 0.028201982378959656,
- 0.06011230871081352,
- 0.009597517549991608,
- 0.07234419882297516,
- -0.09833317250013351,
- -0.039137229323387146,
- 0.008754069916903973,
- -0.06139660254120827,
- 0.0022460944019258022,
- 0.04407603666186333,
- -0.025057196617126465,
- -0.0002458250382915139,
- -0.05493900552392006,
- -0.060808200389146805,
- 0.003608603263273835,
- 0.004081393126398325,
- 0.02550049126148224,
- -0.0021650511771440506,
- -0.07892856746912003,
- 0.015324958600103855,
- -0.04219294339418411,
- 0.00027202203636989,
- 0.030256086960434914,
- 0.012928016483783722,
- -0.09970688074827194,
- -0.017834579572081566,
- -0.0923900455236435,
- 0.00477005448192358,
- 0.031616538763046265,
- 0.05394000560045242,
- 0.03450803831219673,
- -0.016233867034316063,
- 4.539170701016294e-33,
- -0.0922190472483635,
- 0.014954590238630772,
- -0.06478308141231537,
- 0.03695667162537575,
- 0.06177108362317085,
- 0.042095571756362915,
- 0.07392586022615433,
- 0.057877153158187866,
- 0.011584702879190445,
- 0.05122958868741989,
- 0.0020605423487722874,
- -0.010818464681506157,
- -0.007497475016862154,
- 0.039934247732162476,
- 0.04139994457364082,
- -0.021514976397156715,
- 0.10647772252559662,
- 0.01997016929090023,
- -0.07160543650388718,
- 0.035786472260951996,
- -0.031110210344195366,
- -0.046598054468631744,
- 0.048261772841215134,
- -0.03828240558505058,
- -0.03218125179409981,
- 0.011468457989394665,
- 0.0033090871293097734,
- -0.03951437771320343,
- -0.0013627855805680156,
- 0.014462430961430073,
- 0.013094826601445675,
- 0.02854519709944725,
- -0.03681408613920212,
- 0.05344299226999283,
- 0.004267789423465729,
- 0.1423707902431488,
- 0.032117296010255814,
- -0.07981105893850327,
- -0.06505873054265976,
- -0.1196277067065239,
- 0.04729566350579262,
- 0.006972952280193567,
- 0.022883208468556404,
- 0.06701640784740448,
- -0.0021456177346408367,
- 0.041270654648542404,
- 0.037402912974357605,
- 0.060449570417404175,
- 0.03630417212843895,
- 0.06646891683340073,
- -0.022560544312000275,
- 0.02066887728869915,
- -0.01092886459082365,
- 0.023203836753964424,
- -0.00018354508210904896,
- -0.07788415253162384,
- 0.06123899295926094,
- -0.07506509125232697,
- 0.016008658334612846,
- 0.05396430939435959,
- -0.08895599097013474,
- 0.04722842946648598,
- -0.08659232407808304,
- -0.0683007463812828,
- -0.025094715878367424,
- -0.04625207185745239,
- -0.06573935598134995,
- 0.016469599679112434,
- 0.09778092056512833,
- -0.028349529951810837,
- 0.08069819957017899,
- 0.027842305600643158,
- -0.08112361282110214,
- -0.03792518749833107,
- -0.079832062125206,
- -0.054367322474718094,
- -0.03340891748666763,
- 0.05209833383560181,
- -0.09797865152359009,
- 0.01487741805613041,
- -0.10164731740951538,
- -0.03690512478351593,
- 0.014590148814022541,
- -0.03763608634471893,
- -0.0598183311522007,
- -0.0023744096979498863,
- -0.0010661787819117308,
- 0.008940285071730614,
- 0.00606150645762682,
- 0.03381062671542168,
- -0.07323715090751648,
- 0.044269859790802,
- -0.0026910470332950354,
- -0.004799429327249527,
- 0.016169242560863495,
- -1.3057608327926573e-8,
- -0.01901414431631565,
- -0.029642339795827866,
- 0.07326164096593857,
- 0.06377732008695602,
- 0.017320740967988968,
- 0.006348879542201757,
- 0.02941299043595791,
- 0.0678444430232048,
- -0.06407682597637177,
- -0.03166096657514572,
- 0.0006973596755415201,
- 0.0875646248459816,
- 0.08440053462982178,
- 0.08513753116130829,
- 0.0563117153942585,
- 0.006193174980580807,
- -0.018079770728945732,
- 0.015303337946534157,
- -0.03002997301518917,
- 0.04608875513076782,
- -0.03767691180109978,
- 0.0030204015783965588,
- 0.03149555251002312,
- 0.0055038719438016415,
- -0.019911810755729675,
- -0.020833468064665794,
- 0.031502965837717056,
- 0.10899214446544647,
- -0.013449757359921932,
- 0.014506428502500057,
- 0.06936512142419815,
- 0.023304475471377373,
- -0.06017737463116646,
- 0.006089518778026104,
- 0.017925549298524857,
- -0.006178935989737511,
- -0.027489185333251953,
- -0.012267587706446648,
- 0.030190065503120422,
- 0.1078733503818512,
- -0.047001421451568604,
- -0.02532324567437172,
- 0.031401608139276505,
- 0.06596129387617111,
- 0.013434035703539848,
- 0.01659093052148819,
- 0.023154379799962044,
- -0.09771355241537094,
- -0.008355891332030296,
- 0.03456713259220123,
- -0.014957409352064133,
- 0.05131955072283745,
- 0.0014618516433984041,
- 0.03501996397972107,
- 0.11689136177301407,
- 0.008659464307129383,
- -0.011788458563387394,
- 0.038310736417770386,
- -0.029989780858159065,
- 0.012770316563546658,
- 0.18436148762702942,
- 0.009268266148865223,
- 0.024602897465229034,
- -0.01323624700307846
- ]
- },
- {
- "keyword": "depends on",
- "type": "dependsOn",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.0528826080262661,
- -0.021280307322740555,
- 0.04363415017724037,
- -0.007289860863238573,
- -0.006957105826586485,
- -0.045564815402030945,
- 0.0882110670208931,
- -0.022077826783061028,
- 0.02231714315712452,
- -0.03091113455593586,
- -0.0009084660559892654,
- -0.04521912336349487,
- 0.0077479626052081585,
- 0.015130397863686085,
- 0.028540506958961487,
- -0.001223804079927504,
- 0.1118168830871582,
- -0.06253533810377121,
- -0.09901657700538635,
- -0.001865530270151794,
- -0.027519043534994125,
- -0.030648596584796906,
- -0.00790016446262598,
- -0.05647307634353638,
- 0.0025282225105911493,
- -0.04450276494026184,
- 0.06485683470964432,
- 0.006774605251848698,
- 0.018081916496157646,
- -0.035499148070812225,
- -0.05750850588083267,
- -0.002992338500916958,
- 0.10569637268781662,
- -0.025189829990267754,
- -0.053146686404943466,
- 0.02346857264637947,
- 0.04845542833209038,
- 0.02049531601369381,
- 0.013392121531069279,
- -0.0014883598778396845,
- 0.015795422717928886,
- -0.017040304839611053,
- -0.013374808244407177,
- 0.022993961349129677,
- 0.0636504516005516,
- 0.022798314690589905,
- 0.034639641642570496,
- -0.04505007714033127,
- 0.017358887940645218,
- -0.0073058828711509705,
- 0.016371674835681915,
- -0.03021683357656002,
- 0.05439581722021103,
- 0.04458655044436455,
- -0.0062204631976783276,
- 0.036023981869220734,
- -0.049259401857852936,
- 0.09191348403692245,
- 0.028427211567759514,
- 0.01947219856083393,
- -0.020577426999807358,
- 0.012244787067174911,
- -0.030862512066960335,
- 0.017971394583582878,
- 0.09680495411157608,
- -0.05858641490340233,
- 0.038658395409584045,
- -0.04726850241422653,
- 0.011458218097686768,
- -0.02047227881848812,
- -0.05096551403403282,
- 0.06069022789597511,
- 0.00305138505063951,
- 0.007202542386949062,
- -0.005147494841367006,
- -0.015221619047224522,
- -0.004827916156500578,
- -0.12076972424983978,
- 0.012878567911684513,
- 0.019420858472585678,
- -0.0012893684906885028,
- -0.03299250826239586,
- -0.057436924427747726,
- -0.014157062396407127,
- -0.06226389855146408,
- -0.041702136397361755,
- 0.03802028298377991,
- 0.01139031257480383,
- -0.03379974141716957,
- 0.04138576611876488,
- 0.06065216287970543,
- -0.03285107761621475,
- 0.1423899084329605,
- -0.06266302615404129,
- -0.009712283499538898,
- 0.01341188419610262,
- 0.020829806104302406,
- 0.027158914133906364,
- -0.0761091560125351,
- 0.1713484525680542,
- -0.03947270289063454,
- -0.02447315864264965,
- -0.0769575908780098,
- 0.011966565623879433,
- 0.0023231441155076027,
- -0.004404002334922552,
- -0.06791309267282486,
- 0.01763588935136795,
- -0.041313979774713516,
- 0.018282407894730568,
- -0.033081576228141785,
- 0.044469598680734634,
- 0.038787439465522766,
- 0.014608333818614483,
- 0.008563706651329994,
- -0.0675300657749176,
- 0.02491036243736744,
- 0.03293449059128761,
- -0.03505577892065048,
- -0.028332991525530815,
- 0.003998264670372009,
- -0.051634665578603745,
- 0.07831695675849915,
- 0.05461036041378975,
- -0.12334644049406052,
- -0.10693159699440002,
- -0.044379811733961105,
- -3.1951563780341694e-33,
- 0.013571886345744133,
- -0.024872122332453728,
- -0.060417547821998596,
- -0.023582199588418007,
- 0.008752872236073017,
- 0.03945542126893997,
- 0.07510334253311157,
- -0.0804152563214302,
- 0.03352966159582138,
- 0.02006388083100319,
- 0.0101627791300416,
- 0.045042071491479874,
- -0.04108300060033798,
- -0.028027134016156197,
- 0.1323137879371643,
- 0.03415483608841896,
- 0.027109825983643532,
- 0.010343839414417744,
- -0.18337218463420868,
- 0.0033209538087248802,
- -0.002846189308911562,
- -0.016000621020793915,
- -0.001534998882561922,
- 0.0007832061965018511,
- 0.01062712911516428,
- -0.09814547747373581,
- -0.02956216409802437,
- -0.07785524427890778,
- -0.014468004927039146,
- -0.02039991319179535,
- 0.00621999055147171,
- -0.0038920536171644926,
- -0.06762272119522095,
- 0.0338740237057209,
- -0.03650389984250069,
- -0.0007375024142675102,
- 0.007835966534912586,
- -0.0040728626772761345,
- -0.0471770279109478,
- -0.014977579936385155,
- -0.025563228875398636,
- 0.0750240832567215,
- 0.03976565599441528,
- 0.015217958949506283,
- 0.046671584248542786,
- -0.028689635917544365,
- 0.04747644439339638,
- -0.0488860085606575,
- -0.121457539498806,
- -0.05932627618312836,
- -0.021663501858711243,
- -0.0575329028069973,
- 0.012878231704235077,
- 0.043703898787498474,
- -0.019785815849900246,
- 0.030276482924818993,
- -0.005083369556814432,
- -0.016900207847356796,
- 0.045781783759593964,
- 0.008490918204188347,
- 0.05447171628475189,
- 0.08266895264387131,
- -0.04449235647916794,
- 0.02591641992330551,
- 0.039834074676036835,
- 0.12225312739610672,
- 0.03443629667162895,
- 0.0027208582032471895,
- -0.00401630625128746,
- -0.02390878275036812,
- 0.0028443164192140102,
- 0.018148433417081833,
- 0.08491946011781693,
- 0.01502183172851801,
- 0.06167000159621239,
- 0.02391692064702511,
- 0.008633679710328579,
- -0.01775323413312435,
- 0.039517320692539215,
- 0.04784867540001869,
- 0.04904688894748688,
- 0.01893245056271553,
- -0.01797681860625744,
- 0.034674860537052155,
- 0.11071942001581192,
- 0.012703961692750454,
- -0.01574748009443283,
- -0.0547461062669754,
- 0.0019598500803112984,
- 0.03678445518016815,
- -0.020901339128613472,
- 0.0021454645320773125,
- 0.09826916456222534,
- -0.03476237505674362,
- -0.034787848591804504,
- 1.7945045331775193e-33,
- -0.13442032039165497,
- -0.04681563749909401,
- 0.0989147201180458,
- 0.08894731849431992,
- -0.00422181561589241,
- -0.0006011917139403522,
- 0.01354989130049944,
- 0.052959077060222626,
- -0.07279601693153381,
- 0.05680588632822037,
- -0.06895026564598083,
- -0.032245174050331116,
- 0.0922122374176979,
- 0.03391638770699501,
- 0.10956737399101257,
- -0.03121832385659218,
- -0.011459225788712502,
- -0.08726109564304352,
- 0.02166864648461342,
- 0.011726758442819118,
- -0.03462618589401245,
- 0.0035734702832996845,
- 0.011160376481711864,
- 0.0019758420530706644,
- -0.0693962499499321,
- 0.07993245869874954,
- 0.03380294889211655,
- -0.03355482220649719,
- -0.09880483150482178,
- -0.02194789983332157,
- 0.0914418026804924,
- -0.07686027884483337,
- -0.08428127318620682,
- 0.0641322061419487,
- -0.0037285767029970884,
- 0.021932369098067284,
- 0.06943287700414658,
- 0.119089774787426,
- -0.00018121511675417423,
- 0.07065604627132416,
- -0.0021127432119101286,
- -0.031971272081136703,
- 0.007496134843677282,
- 0.11250167340040207,
- -0.013488933444023132,
- -0.03142155706882477,
- 0.06339656561613083,
- 0.04998326301574707,
- 0.051231615245342255,
- 0.014124675653874874,
- -0.04180033132433891,
- 0.033709507435560226,
- 0.06273393332958221,
- -0.011073853820562363,
- 0.009797578677535057,
- -0.09473419934511185,
- -0.06336791813373566,
- 0.0046265884302556515,
- -0.05761474743485451,
- -0.007601071149110794,
- -0.05202643573284149,
- 0.045570552349090576,
- -0.08102133870124817,
- -0.03899772837758064,
- 0.052765075117349625,
- 0.013082912191748619,
- -0.011388417333364487,
- -0.0636386051774025,
- 0.0763443186879158,
- -0.07358252257108688,
- 0.053425997495651245,
- -0.09047478437423706,
- -0.046189725399017334,
- -0.052376437932252884,
- -0.03421980142593384,
- 0.04328915476799011,
- 0.053233854472637177,
- -0.00929274782538414,
- -0.03016081638634205,
- -0.005777630023658276,
- -0.10967443138360977,
- -0.06339722871780396,
- 0.027458494529128075,
- -0.058167338371276855,
- 0.012432697229087353,
- -0.05478794127702713,
- 0.044378794729709625,
- 0.021940037608146667,
- -0.01404864713549614,
- -0.004726387560367584,
- -0.02570783533155918,
- 0.0018931973027065396,
- 0.07078437507152557,
- -0.055669985711574554,
- -0.013477316126227379,
- -1.6207811981416853e-8,
- -0.033003803342580795,
- 0.04722015559673309,
- 0.05427766591310501,
- 0.01210533082485199,
- 0.026091111823916435,
- -0.004332682117819786,
- -0.023392271250486374,
- -0.014406184665858746,
- -0.01278001070022583,
- -0.004015340469777584,
- 0.06530436873435974,
- -0.011573865078389645,
- 0.037985581904649734,
- 0.04336266219615936,
- -0.02802194282412529,
- -0.01966025121510029,
- -0.0026462567038834095,
- -0.003298696130514145,
- -0.08589878678321838,
- 0.11043284088373184,
- -0.014371434226632118,
- 0.026751510798931122,
- -0.008954119868576527,
- 0.06424868851900101,
- -0.044003475457429886,
- -0.046742718666791916,
- 0.02960108406841755,
- 0.08108410239219666,
- 0.015180544927716255,
- 0.08292966336011887,
- 0.0358077771961689,
- 0.08318798989057541,
- -0.07059074938297272,
- 0.0683085024356842,
- 0.02578842267394066,
- -0.12230309844017029,
- 0.012470629997551441,
- -0.04088038578629494,
- -0.007041472010314465,
- 0.06896086782217026,
- -0.0308974776417017,
- -0.0328531377017498,
- 0.05359421297907829,
- 0.08346738666296005,
- 0.04328487440943718,
- -0.0683465227484703,
- 0.004762616008520126,
- -0.09677963703870773,
- -0.04704369977116585,
- -0.03045334666967392,
- -0.032171353697776794,
- 0.021664010360836983,
- 0.023762021213769913,
- -0.02962520532310009,
- 0.14220789074897766,
- 0.053694091737270355,
- 0.030835656449198723,
- 0.033434998244047165,
- 0.0078093814663589,
- -0.012678194791078568,
- 0.039540261030197144,
- -0.06788195669651031,
- 0.012386911548674107,
- -0.08242875337600708
- ]
- },
- {
- "keyword": "relies on",
- "type": "dependsOn",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.01221127063035965,
- -0.024729425087571144,
- 0.02468394860625267,
- 0.04422378912568092,
- 0.015171156264841557,
- -0.004266052972525358,
- 0.11579900234937668,
- -0.04467512667179108,
- 0.02574762888252735,
- -0.022112129256129265,
- -0.026008402928709984,
- 0.006835210602730513,
- -0.04923008754849434,
- 0.05299752205610275,
- 0.02962516061961651,
- 0.03960037976503372,
- 0.11120106279850006,
- -0.01830451376736164,
- -0.08309289813041687,
- -0.0034224209375679493,
- -0.09952830523252487,
- -0.044721946120262146,
- -0.07038916647434235,
- 0.006955312564969063,
- -0.10312056541442871,
- -0.009949094615876675,
- -0.056159548461437225,
- 0.010979002341628075,
- 0.03167324885725975,
- -0.05628231167793274,
- 0.026517733931541443,
- -0.0070351362228393555,
- 0.01947850175201893,
- 0.007429587189108133,
- -0.1335892528295517,
- -0.017563609406352043,
- 0.02292826399207115,
- 0.02314062975347042,
- -0.04513400048017502,
- 0.001715918886475265,
- -0.04340982437133789,
- -0.04448133334517479,
- 0.04800417274236679,
- -0.027441781014204025,
- -0.01686737686395645,
- -0.05984675884246826,
- 0.026003504171967506,
- -0.00995871052145958,
- -0.006106085143983364,
- -0.0027162027545273304,
- -0.06055134907364845,
- -0.012044119648635387,
- 0.03444097563624382,
- -0.014523426070809364,
- 0.032561518251895905,
- 0.041325099766254425,
- 0.046264685690402985,
- 0.06940199434757233,
- 0.038497570902109146,
- -0.07498575747013092,
- 0.0383913591504097,
- 0.04997125640511513,
- -0.021115360781550407,
- 0.006951522082090378,
- 0.07120359688997269,
- 0.05631357431411743,
- 0.040259383618831635,
- -0.05825715512037277,
- -0.020271308720111847,
- 0.002780500566586852,
- 0.004654735326766968,
- 0.02643124759197235,
- -0.01439188327640295,
- 0.0232264194637537,
- 0.002598108956590295,
- 0.03384802117943764,
- 0.015481196343898773,
- -0.12880365550518036,
- 0.113986536860466,
- -0.0335884653031826,
- -0.018310146406292915,
- -0.019502468407154083,
- 0.01994236931204796,
- 0.048652272671461105,
- 0.03277026489377022,
- -0.034162990748882294,
- 0.048799626529216766,
- -0.0024077228736132383,
- -0.029784023761749268,
- -0.010538984090089798,
- 0.020674483850598335,
- 0.002833511447533965,
- 0.1115623190999031,
- -0.04211742430925369,
- 0.0030003583524376154,
- 0.04937857389450073,
- 0.005165093578398228,
- -0.011125806719064713,
- -0.16070154309272766,
- 0.1880207359790802,
- -0.007299093995243311,
- 0.05489455908536911,
- -0.0670003816485405,
- 0.03617677465081215,
- -0.0002620391023810953,
- -0.007358120288699865,
- -0.015943827107548714,
- 0.015025491826236248,
- 0.025012221187353134,
- -0.011471820995211601,
- 0.0010969910072162747,
- 0.008517488837242126,
- -0.05225300416350365,
- 0.06181037053465843,
- 0.010789992287755013,
- -0.0430544838309288,
- 0.04624619334936142,
- -0.027423571795225143,
- 0.006388301495462656,
- -0.01966221071779728,
- 0.06276502460241318,
- -0.01012912392616272,
- 0.013505055569112301,
- -0.02935708500444889,
- -0.07237205654382706,
- -0.0517793707549572,
- 0.05388880893588066,
- -4.379934195492076e-33,
- 0.007422888185828924,
- -0.04145316407084465,
- 0.06823710352182388,
- 0.014515947550535202,
- -0.0404406413435936,
- 0.011012757197022438,
- 0.03445363789796829,
- -0.034793607890605927,
- -0.05727868154644966,
- -0.040487274527549744,
- 0.03336989879608154,
- 0.0453406497836113,
- -0.06949442625045776,
- 0.03830249235033989,
- 0.2088497132062912,
- 0.03849704563617706,
- 0.04979138448834419,
- -0.08805298060178757,
- -0.029301902279257774,
- 0.018991975113749504,
- 0.02289782650768757,
- -0.0015848168404772878,
- 0.009306535124778748,
- -0.03985050320625305,
- 0.016295768320560455,
- -0.0009644436067901552,
- -0.013906227424740791,
- 0.0709095224738121,
- -0.0401226170361042,
- 0.03008236736059189,
- 0.04613647237420082,
- -0.04167373478412628,
- -0.09124565869569778,
- -0.025001147761940956,
- -0.03045930340886116,
- -0.025421131402254105,
- -0.1089276522397995,
- 0.01084835920482874,
- -0.017195958644151688,
- -0.005053895991295576,
- 0.008931802585721016,
- 0.0027150926180183887,
- 0.029776420444250107,
- 0.0013978355564177036,
- 0.009171518497169018,
- 0.042084839195013046,
- 0.0410107858479023,
- 0.016689877957105637,
- 0.11443844437599182,
- 0.005823616404086351,
- 0.06207549199461937,
- 0.028075093403458595,
- -0.0038206190802156925,
- 0.008596720173954964,
- 0.03137039765715599,
- -0.015145774930715561,
- -0.02935348078608513,
- -0.033822230994701385,
- 0.046340443193912506,
- -0.045449595898389816,
- 0.07841695100069046,
- -0.065233513712883,
- -0.05574217811226845,
- 0.00226355018094182,
- 0.024045951664447784,
- 0.07536283135414124,
- 0.009088197723031044,
- -0.08405572175979614,
- -0.051320694386959076,
- 0.0007301044533960521,
- -0.07542000710964203,
- 0.007302860263735056,
- 0.0376318134367466,
- 0.005312521010637283,
- -0.02399282716214657,
- 0.016181839630007744,
- -0.017212139442563057,
- -0.05935945734381676,
- 0.039196863770484924,
- 0.05356649309396744,
- 0.007531712297350168,
- -0.07202695310115814,
- 0.054395005106925964,
- 0.05780549347400665,
- -0.022821901366114616,
- -0.030931714922189713,
- 0.0025823675096035004,
- -0.09052227437496185,
- -0.0015068937791511416,
- 0.04924418032169342,
- 0.05791264399886131,
- -0.02589837647974491,
- 0.019070595502853394,
- -0.04100940376520157,
- -0.04695028439164162,
- 3.308378157195449e-33,
- -0.09666623920202255,
- -0.04032798856496811,
- 0.08846626430749893,
- 0.040947411209344864,
- -0.015078890137374401,
- -0.00879191979765892,
- -0.10045558214187622,
- -0.0314786471426487,
- -0.08122000843286514,
- 0.0004898501210846007,
- -0.04530087858438492,
- -0.07010455429553986,
- -0.048553820699453354,
- 0.02281120792031288,
- 0.06487143039703369,
- 0.006680135615170002,
- 0.004605880007147789,
- -0.040306344628334045,
- -0.06603936105966568,
- -0.005036135204136372,
- 0.05926322937011719,
- 0.011510279029607773,
- 0.00039053126238286495,
- 0.010064524598419666,
- -0.06470747292041779,
- 0.09751579165458679,
- -0.024775423109531403,
- -0.028045864775776863,
- -0.08477585017681122,
- -0.04229196906089783,
- 0.017415275797247887,
- 0.009014991112053394,
- -0.0507732518017292,
- -0.022933799773454666,
- -0.03651920706033707,
- 0.09321806579828262,
- -0.06451041251420975,
- 0.08701594173908234,
- -0.09815482050180435,
- -0.0012548633385449648,
- 0.04050969332456589,
- 0.05652390420436859,
- -0.05830242112278938,
- 0.09793407469987869,
- 0.0036736922338604927,
- 0.034036312252283096,
- 0.03704342246055603,
- 0.05244666710495949,
- 0.0519876703619957,
- 0.05467468127608299,
- -0.016042036935687065,
- -0.010952773503959179,
- -0.0166702289134264,
- 0.028912514448165894,
- 0.0029850038699805737,
- 0.000910657225176692,
- 0.015006798319518566,
- -0.010686258785426617,
- -0.03156546875834465,
- 0.006223088130354881,
- -0.05777840316295624,
- -0.004926974419504404,
- -0.01813589036464691,
- 0.05522344261407852,
- 0.019122101366519928,
- -0.0483156219124794,
- -0.023455584421753883,
- 0.0278696920722723,
- 0.13358531892299652,
- 0.027473023161292076,
- -0.0061877090483903885,
- -0.04159747064113617,
- 0.08850531280040741,
- -0.15010185539722443,
- -0.010724536143243313,
- 0.10383573919534683,
- -0.12985803186893463,
- -0.003963602241128683,
- -0.020455539226531982,
- -0.03731037676334381,
- -0.026799213141202927,
- -0.11015293002128601,
- 0.023124882951378822,
- -0.018078694120049477,
- 0.044851191341876984,
- 0.024622544646263123,
- 0.030974483117461205,
- -0.017660172656178474,
- 0.019297031685709953,
- 0.03218231350183487,
- 0.05399793013930321,
- 0.025894181802868843,
- -0.0721459612250328,
- 0.05722568929195404,
- 0.05040934681892395,
- -1.3758561401289171e-8,
- -0.0233259629458189,
- -0.0001241934805875644,
- 0.09310894459486008,
- -0.019239477813243866,
- -0.01310573611408472,
- 0.008312763646245003,
- 0.10934818536043167,
- -0.04679792746901512,
- -0.017238793894648552,
- 0.019276153296232224,
- -0.0033398086670786142,
- 0.021206451579928398,
- 0.04182098060846329,
- 0.06321730464696884,
- 0.10473320633172989,
- 0.005366478580981493,
- -0.03696686774492264,
- 0.07183320820331573,
- -0.09615427255630493,
- -0.0028142337687313557,
- -0.038605354726314545,
- -0.035143133252859116,
- -0.027279574424028397,
- 0.08473782986402512,
- -0.015243824571371078,
- -0.02426539734005928,
- -0.033172160387039185,
- 0.06801949441432953,
- -0.026068849489092827,
- 0.08712238818407059,
- 0.09043148905038834,
- 0.06904689222574234,
- -0.074641153216362,
- -0.025214960798621178,
- -0.08685221523046494,
- -0.006131959613412619,
- 0.05129015073180199,
- -0.0514664389193058,
- 0.022899964824318886,
- -0.05869206041097641,
- -0.009598120115697384,
- -0.0016011898405849934,
- 0.009303691796958447,
- 0.06833570450544357,
- -0.039082497358322144,
- -0.02160148322582245,
- -0.003080780850723386,
- -0.03670835494995117,
- -0.03295325115323067,
- -0.02093522623181343,
- -0.008539860136806965,
- -0.03652703016996384,
- 0.01262980792671442,
- 0.06277450919151306,
- 0.12963728606700897,
- -0.024676300585269928,
- 0.017577562481164932,
- 0.03357047215104103,
- -0.03191196918487549,
- -0.004497216548770666,
- 0.10345354676246643,
- -0.008595087565481663,
- 0.11711343377828598,
- -0.02519839257001877
- ]
- },
- {
- "keyword": "contingent on",
- "type": "dependsOn",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.10882225632667542,
- -0.028463739901781082,
- -0.007009156513959169,
- 0.0012120753526687622,
- 0.07896986603736877,
- -0.010520080104470253,
- 0.13463717699050903,
- 0.01979810558259487,
- 0.08051185309886932,
- 0.04259360581636429,
- 0.025535238906741142,
- -0.032859791070222855,
- 0.029015017673373222,
- 0.01716875471174717,
- -0.020195646211504936,
- 0.001057792454957962,
- 0.06887074559926987,
- -0.06184079125523567,
- -0.09857885539531708,
- 0.07687679678201675,
- -0.11522697657346725,
- -0.02379697561264038,
- -0.027559498324990273,
- -0.020509513095021248,
- 0.0041960361413657665,
- -0.025240357965230942,
- 0.03620615229010582,
- 0.08564123511314392,
- 0.03334007412195206,
- -0.02783600613474846,
- -0.08657150715589523,
- 0.04570963233709335,
- 0.035735923796892166,
- -0.07311875373125076,
- -0.04756840690970421,
- -0.02122315764427185,
- -0.007272485643625259,
- 0.025994716212153435,
- 0.0021115050185471773,
- -0.03080185130238533,
- -0.010423846542835236,
- -0.0655578225851059,
- 0.008904345333576202,
- 0.039560265839099884,
- -0.00976740662008524,
- -0.04286948963999748,
- -0.00915537029504776,
- -0.03504344820976257,
- -0.06225624680519104,
- 0.07909666001796722,
- 0.06802647560834885,
- -0.028178419917821884,
- 0.04140392690896988,
- -0.04221588745713234,
- 0.03035156987607479,
- 0.0337698757648468,
- -0.0652618333697319,
- -0.011906960047781467,
- -0.0018743540858849883,
- -0.05187447369098663,
- 0.023523136973381042,
- -0.05162801593542099,
- -0.11959052830934525,
- 0.019942400977015495,
- 0.055216044187545776,
- -0.008307267911732197,
- 0.01003984920680523,
- -0.008045150898396969,
- 0.03811776638031006,
- -0.06843483448028564,
- 0.004233932122588158,
- 0.060050562024116516,
- 0.059165384620428085,
- 0.08127707242965698,
- -0.014783086255192757,
- -0.010976399295032024,
- 0.030771823599934578,
- -0.0684446468949318,
- 0.04132729396224022,
- -0.053653158247470856,
- -0.016382619738578796,
- 0.04347515106201172,
- -0.030084826052188873,
- -0.021210629492998123,
- -0.06069581210613251,
- -0.009229782037436962,
- 0.035528432577848434,
- 0.029666448011994362,
- -0.016449790447950363,
- -0.0331110842525959,
- -0.01986384205520153,
- -0.014970609918236732,
- 0.11656249314546585,
- -0.024865029379725456,
- -0.08019386231899261,
- 0.03962656483054161,
- -0.01799926720559597,
- -0.0015840064734220505,
- -0.03507894277572632,
- 0.20193076133728027,
- -0.00711842579767108,
- -0.026581136509776115,
- -0.1044880673289299,
- 0.017422156408429146,
- -0.021930217742919922,
- -0.003267180873081088,
- -0.031051550060510635,
- 0.006894494406878948,
- -0.03525053709745407,
- -0.02699856087565422,
- 0.006717663258314133,
- 0.019484607502818108,
- 0.02956428937613964,
- 0.03796997666358948,
- -0.042095497250556946,
- 0.07694384455680847,
- 0.013259711675345898,
- -0.0019524723757058382,
- 0.10610125958919525,
- -0.12510459125041962,
- -0.00270603084936738,
- -0.015790140256285667,
- 0.048316143453121185,
- -0.02665875107049942,
- -0.0762052983045578,
- -0.14943522214889526,
- 0.03638491779565811,
- -5.462222864553695e-33,
- 0.018988575786352158,
- -0.015945391729474068,
- -0.01528533548116684,
- -0.07125435769557953,
- 0.07047624886035919,
- 0.023411687463521957,
- 0.013243328779935837,
- -0.034407466650009155,
- -0.033279869705438614,
- -0.14905975759029388,
- 0.012676362879574299,
- 0.04960741102695465,
- -0.039531681686639786,
- -0.07622067630290985,
- 0.11656295508146286,
- 0.0063540143892169,
- 0.04164606332778931,
- 0.006052861455827951,
- 0.018358206376433372,
- 0.014408734627068043,
- -0.04034392535686493,
- 0.04390818625688553,
- -0.0645444244146347,
- 0.0021296371705830097,
- -0.05283477157354355,
- -0.06173045188188553,
- 0.0021325626876205206,
- -0.020543474704027176,
- -0.058830566704273224,
- 0.02043672651052475,
- 0.050027843564748764,
- 0.00011202174937352538,
- -0.07732351124286652,
- -0.01770922727882862,
- 0.007288857828825712,
- 0.0028854291886091232,
- -0.10695400834083557,
- -0.02466326393187046,
- -0.022234370931982994,
- 0.008921477012336254,
- 0.04423266276717186,
- 0.010171845555305481,
- 0.07337766885757446,
- 0.012670864351093769,
- 0.04049087315797806,
- -0.04272019863128662,
- 0.0688357800245285,
- 0.01105178240686655,
- 0.03583473712205887,
- -0.011468210257589817,
- 0.052451375871896744,
- -0.007233832031488419,
- -0.011619457975029945,
- -0.021174142137169838,
- -0.004092202987521887,
- -0.007607198320329189,
- -0.06439094990491867,
- 0.03831272944808006,
- 0.07218331098556519,
- 0.061555616557598114,
- 0.05902508273720741,
- 0.05934737250208855,
- 0.00233081285841763,
- -0.009191524237394333,
- 0.013798564672470093,
- 0.10249346494674683,
- 0.10544860363006592,
- -0.007053013425320387,
- -0.06401019543409348,
- -0.04325760155916214,
- -0.06055280193686485,
- -0.016117408871650696,
- 0.07104027271270752,
- -0.009453943930566311,
- 0.039365608245134354,
- -0.01308497879654169,
- 0.08462794870138168,
- 0.0406961515545845,
- 0.04918787255883217,
- 0.041241247206926346,
- -0.08791976422071457,
- 0.039896219968795776,
- -0.09322533756494522,
- -0.0024424174334853888,
- 0.08243788033723831,
- 0.022596944123506546,
- 0.03317824378609657,
- -0.0446326769888401,
- -0.015506742522120476,
- 0.060266293585300446,
- -0.02471666783094406,
- 0.026232831180095673,
- 0.0004262998700141907,
- -0.011150086298584938,
- -0.08179083466529846,
- 4.098748967277677e-33,
- -0.07436001300811768,
- -0.03932492062449455,
- 0.06395810842514038,
- 0.05210001394152641,
- 0.048867855221033096,
- 0.04066513478755951,
- 0.007841314189136028,
- -0.028953945264220238,
- -0.03735138848423958,
- 0.00022397750581149012,
- -0.027445781975984573,
- -0.03466016799211502,
- 0.006897458340972662,
- 0.0027728548739105463,
- 0.012340312823653221,
- 0.023291774094104767,
- -0.02216748706996441,
- -0.03298152610659599,
- -0.08039510250091553,
- 0.05151720345020294,
- 0.054344624280929565,
- -0.009683034382760525,
- -0.03860201686620712,
- -0.033248040825128555,
- -0.016434717923402786,
- 0.12190007418394089,
- -0.03133528307080269,
- 0.00637098541483283,
- -0.11031601577997208,
- 0.026045342907309532,
- 0.06119934841990471,
- 0.00028973366715945303,
- -0.14679370820522308,
- -0.021405823528766632,
- 0.004363605752587318,
- 0.03455518186092377,
- 0.05269346758723259,
- 0.11830952763557434,
- -0.06968528777360916,
- 0.05970141291618347,
- 0.02209273725748062,
- -0.008133476600050926,
- -0.048373449593782425,
- 0.12413880974054337,
- 0.01158183254301548,
- 0.002775018336251378,
- 0.06033926457166672,
- 0.02022535353899002,
- 0.07927145063877106,
- -0.0008379351929761469,
- -0.038339901715517044,
- 0.07094714045524597,
- 0.0048062182031571865,
- 0.08821146935224533,
- -0.02241172455251217,
- -0.03415897116065025,
- 0.040314044803380966,
- -0.03419079631567001,
- 0.06132783740758896,
- -0.03250895068049431,
- -0.040992919355630875,
- -0.00815102644264698,
- 0.0017543877474963665,
- -0.022672126069664955,
- 0.10007227212190628,
- 0.0019727053586393595,
- -0.023325681686401367,
- -0.011361174285411835,
- 0.0969901978969574,
- -0.01724250800907612,
- 0.0237246323376894,
- 0.011045265942811966,
- -0.006700045894831419,
- -0.06635729223489761,
- -0.0055350735783576965,
- 0.030105194076895714,
- 0.07051809877157211,
- 0.040177322924137115,
- 0.02993456833064556,
- 0.03532562777400017,
- -0.09897959977388382,
- -0.05821225419640541,
- -0.03178684413433075,
- -0.012903115712106228,
- 0.04247909411787987,
- 0.00449209101498127,
- -0.012421302497386932,
- 0.007399897091090679,
- 0.03530367463827133,
- -0.022855643182992935,
- 0.021320363506674767,
- 0.003487169975414872,
- 0.007919024676084518,
- -0.012959620915353298,
- -0.02557467482984066,
- -1.6116047163450276e-8,
- 0.051930077373981476,
- 0.029689691960811615,
- -0.0025827446952462196,
- 0.041538432240486145,
- 0.026595406234264374,
- -0.004579723346978426,
- -0.010957900434732437,
- -0.049047160893678665,
- -0.019604118540883064,
- 0.023098524659872055,
- 0.05543544143438339,
- -0.0307584498077631,
- 0.0008364937384612858,
- 0.04426738992333412,
- 0.010861849412322044,
- 0.0014786266256123781,
- -0.11393388360738754,
- -0.00026624140446074307,
- -0.09802228957414627,
- 0.0941527858376503,
- 0.034220341593027115,
- 0.002237466396763921,
- -0.042721763253211975,
- 0.10639249533414841,
- -0.019978439435362816,
- -0.04719569534063339,
- -0.005311305169016123,
- 0.06841892004013062,
- -0.03458518534898758,
- 0.0030527112539857626,
- 0.01711483672261238,
- 0.02325110137462616,
- -0.05505646392703056,
- -0.017270950600504875,
- 0.09075119346380234,
- 0.0068016801960766315,
- 0.011237523518502712,
- -0.07200223952531815,
- 0.058937303721904755,
- -0.031868722289800644,
- 0.05634104087948799,
- -0.04640911519527435,
- -0.007505364250391722,
- 0.06141376495361328,
- 0.012769749388098717,
- -0.09482686966657639,
- 0.021328335627913475,
- -0.03322765976190567,
- -0.059782739728689194,
- 0.0047009228728711605,
- -0.01402376126497984,
- -0.04613857343792915,
- 0.009191462770104408,
- 0.0013158343499526381,
- 0.09214356541633606,
- 0.06884518265724182,
- 0.025426559150218964,
- -0.03778176009654999,
- 0.0011162570444867015,
- 0.009227283298969269,
- 0.13392332196235657,
- -0.08431704342365265,
- 0.0239266250282526,
- -0.05987769365310669
- ]
- },
- {
- "keyword": "conditional on",
- "type": "dependsOn",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.03157469257712364,
- 0.08602328598499298,
- 0.04759437218308449,
- 0.01787978783249855,
- 0.06251272559165955,
- 0.004085364751517773,
- 0.1572112888097763,
- -0.015429077669978142,
- 0.055231112986803055,
- -0.006205853074789047,
- -0.005793645046651363,
- -0.07419385761022568,
- -0.00914253480732441,
- 0.06815964728593826,
- 0.010291341692209244,
- 0.007139268796890974,
- 0.032634079456329346,
- -0.019790172576904297,
- -0.12382041662931442,
- -0.00907847285270691,
- -0.03265884518623352,
- -0.01601172238588333,
- -0.07663046568632126,
- 0.0033856723457574844,
- 0.013922879472374916,
- 0.054884422570466995,
- 0.05620622634887695,
- 0.0037133635487407446,
- 0.014973183162510395,
- -0.0387551411986351,
- -0.040160976350307465,
- 0.04064915329217911,
- -0.04230956360697746,
- 0.03548453375697136,
- 0.011193851940333843,
- -0.08687733858823776,
- -0.05871028080582619,
- -0.004838868975639343,
- 0.023697268217802048,
- 0.0401875302195549,
- -0.06712345033884048,
- -0.13812948763370514,
- -0.007218771148473024,
- 0.00499426806345582,
- -0.02737862430512905,
- -0.013606516644358635,
- -0.019905660301446915,
- 0.08429946005344391,
- -0.03681441396474838,
- 0.01464638952165842,
- 0.04182213917374611,
- -0.09889956563711166,
- -0.03334948420524597,
- -0.04446256160736084,
- 0.06127338483929634,
- 0.018369410187005997,
- -0.05521271377801895,
- -0.025578510016202927,
- -0.019310815259814262,
- -0.012592822313308716,
- -0.07371333241462708,
- -0.04840544983744621,
- 0.02042754739522934,
- 0.005734782665967941,
- 0.08747448772192001,
- 0.04755874350667,
- -0.0749705508351326,
- 0.0440988652408123,
- -0.006334180478006601,
- 0.051723912358284,
- 0.020107168704271317,
- 0.0200126301497221,
- 0.06431812047958374,
- 0.021300414577126503,
- -0.018440868705511093,
- -0.027135252952575684,
- 0.09519698470830917,
- -0.057016823440790176,
- 0.011461968533694744,
- -0.034795328974723816,
- -0.085818812251091,
- -0.07297796756029129,
- -0.020623117685317993,
- -0.030261822044849396,
- 0.015286058187484741,
- 0.005374827887862921,
- 0.018089115619659424,
- 0.03987464681267738,
- 0.030418245121836662,
- 0.017031777650117874,
- -0.010971776209771633,
- 0.008117646910250187,
- 0.07820992171764374,
- -0.03511953353881836,
- -0.07291006296873093,
- 0.046376410871744156,
- -0.031235255300998688,
- -0.031650617718696594,
- -0.0332438200712204,
- 0.21013504266738892,
- -0.01687602885067463,
- 0.0006675212061963975,
- 0.009298702701926231,
- -0.06749733537435532,
- 0.04231424257159233,
- -0.01648903079330921,
- 0.011045821011066437,
- 0.0009023575694300234,
- 0.03202715143561363,
- -0.058709241449832916,
- 0.02561905048787594,
- 0.047003861516714096,
- 0.12809836864471436,
- 0.029926056042313576,
- -0.055900562554597855,
- -0.012470421381294727,
- 0.08412694931030273,
- 0.012803991325199604,
- -0.02724546380341053,
- -0.14799758791923523,
- 0.008258964866399765,
- 0.03375473991036415,
- 0.03525420278310776,
- 0.002138033276423812,
- -0.037087079137563705,
- -0.11222877353429794,
- 0.05832891911268234,
- -2.986997083325674e-33,
- -0.0010204612044617534,
- -0.11173293739557266,
- -0.02224799059331417,
- 0.011480932123959064,
- 0.017970144748687744,
- -0.009930568747222424,
- -0.0026700329035520554,
- -0.009698105975985527,
- -0.030359260737895966,
- -0.05045665055513382,
- 0.056552350521087646,
- 0.0005506702000275254,
- -0.027499882504343987,
- -0.022122977301478386,
- 0.0728597566485405,
- 0.015586106106638908,
- 0.06679361313581467,
- -0.07117155194282532,
- -0.0011206303024664521,
- -0.006075371988117695,
- -0.017559073865413666,
- -0.02785814180970192,
- -0.06736435741186142,
- 0.06267745792865753,
- -0.018990110605955124,
- -0.06167420744895935,
- -0.04708530381321907,
- -0.03350994363427162,
- 0.041607365012168884,
- -0.014437644742429256,
- 0.007518740836530924,
- -0.020675523206591606,
- -0.06053456664085388,
- -0.013548197224736214,
- -0.0070764473639428616,
- 0.01104340236634016,
- -0.05595231056213379,
- -0.01431157998740673,
- 0.015901202335953712,
- 0.0390072800219059,
- -0.0494115985929966,
- -0.008828090503811836,
- 0.03933238610625267,
- -0.07838398218154907,
- 0.003210317576304078,
- -0.07189251482486725,
- 0.05881664529442787,
- 0.040635429322719574,
- 0.012742497026920319,
- -0.016925109550356865,
- 0.06317798793315887,
- -0.020167388021945953,
- 0.02375839836895466,
- 0.022208910435438156,
- 0.028313785791397095,
- -0.004028256982564926,
- -0.05270656198263168,
- 0.05460096895694733,
- 0.009981540963053703,
- -0.011042540892958641,
- 0.09470396488904953,
- -0.03464585542678833,
- 0.006425815634429455,
- -0.0177424605935812,
- -0.11139485985040665,
- 0.01735502853989601,
- -0.004558139014989138,
- -0.030820103362202644,
- 0.007488967385143042,
- -0.03923450782895088,
- -0.02864251472055912,
- 0.004888188559561968,
- 0.05871214717626572,
- -0.002116728574037552,
- 0.011334042996168137,
- 0.023896271362900734,
- -0.024165229871869087,
- 0.0779092088341713,
- 0.024926304817199707,
- -0.08073357492685318,
- -0.03394220769405365,
- 0.05380907282233238,
- 0.004379087593406439,
- 0.050355058163404465,
- 0.034932028502225876,
- 0.037124618887901306,
- 0.06758661568164825,
- -0.060212668031454086,
- -0.1307399719953537,
- 0.06596950441598892,
- -0.009216499514877796,
- -0.026018014177680016,
- 0.09232158958911896,
- 0.019282713532447815,
- 0.11108492314815521,
- 2.1592012881781493e-33,
- -0.029516685754060745,
- 0.08057954162359238,
- 0.05092563480138779,
- -0.01627146638929844,
- 0.010882901027798653,
- -0.012888386845588684,
- 0.055307213217020035,
- -0.10598225146532059,
- -0.06583164632320404,
- -0.009072077460587025,
- 0.060984984040260315,
- 0.023974254727363586,
- 0.07304082810878754,
- -0.02375597320497036,
- -0.043104302138090134,
- 0.12245389819145203,
- 0.007381920702755451,
- -0.04070817679166794,
- -0.004281301517039537,
- 0.07156278938055038,
- -0.02062750980257988,
- -0.05607382208108902,
- 0.02215767465531826,
- 0.04671844094991684,
- -0.039514146745204926,
- 0.06291388720273972,
- 0.05018514022231102,
- 0.03150387480854988,
- -0.12817901372909546,
- 0.03379018232226372,
- -0.024597814306616783,
- -0.03606075048446655,
- 0.010447081178426743,
- -0.0018524780170992017,
- -0.0029417157638818026,
- -0.024302413687109947,
- 0.05007604882121086,
- -0.03367048129439354,
- -0.02829192578792572,
- 0.0472741574048996,
- 0.04567112773656845,
- -0.024526696652173996,
- -0.04822605103254318,
- 0.04977595433592796,
- -0.04892747849225998,
- 0.007328017149120569,
- 0.11084490269422531,
- 0.04704760015010834,
- 0.05137303099036217,
- -0.02692851796746254,
- 0.0363585501909256,
- 0.05349303036928177,
- 0.018033495172858238,
- 0.02971593476831913,
- -0.032582275569438934,
- -0.02786395698785782,
- -0.030382251366972923,
- -0.08865916728973389,
- 0.038892824202775955,
- 0.05567799508571625,
- -0.032769471406936646,
- -0.024460522457957268,
- 0.0274205282330513,
- -0.00966553296893835,
- -0.05557416379451752,
- -0.045828379690647125,
- -0.0284871868789196,
- 0.05394318699836731,
- 0.06506439298391342,
- 0.046022165566682816,
- 0.11733486503362656,
- 0.052609141916036606,
- -0.026338065043091774,
- -0.028043149039149284,
- 0.00031260572723113,
- 0.04134625941514969,
- 0.05768964812159538,
- 0.00834774412214756,
- -0.028782952576875687,
- 0.03218188136816025,
- -0.09096863865852356,
- -0.06994815170764923,
- -0.012367884628474712,
- 0.008862623944878578,
- -0.025247355923056602,
- 0.08388838171958923,
- 0.010712409391999245,
- 0.006902992259711027,
- 0.03905998542904854,
- 0.01084811333566904,
- -0.019997136667370796,
- 0.014234482310712337,
- 0.04693140834569931,
- -0.06176799535751343,
- -0.055973805487155914,
- -1.4377252277597563e-8,
- 0.07365822046995163,
- -0.051104940474033356,
- 0.01945893093943596,
- -0.03741992264986038,
- 0.001687577459961176,
- 0.04906560108065605,
- 0.02431987226009369,
- -0.07403852790594101,
- 0.002171669853851199,
- -0.0002627675421535969,
- 0.05908557027578354,
- 0.07083026319742203,
- 0.02855437435209751,
- 0.008404519408941269,
- -0.004312071017920971,
- -0.001166376518085599,
- -0.017042839899659157,
- -0.015884896740317345,
- -0.03789205476641655,
- 0.10140594094991684,
- 0.05392571911215782,
- -0.02775018848478794,
- -0.0692911297082901,
- 0.07753961533308029,
- 0.03316172957420349,
- -0.006134070921689272,
- -0.010534617118537426,
- 0.001183948596008122,
- 0.013624466024339199,
- 0.06777302175760269,
- 0.08302941918373108,
- 0.03191981464624405,
- -0.12004657834768295,
- -0.022937221452593803,
- -0.0021055194083601236,
- -0.052017491310834885,
- 0.09811782836914062,
- -0.015094972215592861,
- 0.015122129581868649,
- 0.06728912144899368,
- 0.016692301258444786,
- -0.04506019875407219,
- -0.05303141847252846,
- 0.012695830315351486,
- -0.008516055531799793,
- -0.08107591420412064,
- 0.061409592628479004,
- -0.17621324956417084,
- -0.03652815520763397,
- -0.05035834386944771,
- 0.0021318872459232807,
- -0.06171254813671112,
- 0.041932541877031326,
- 0.0108770951628685,
- 0.05821015313267708,
- -0.04688184708356857,
- 0.04029640555381775,
- 0.09631510823965073,
- -0.09126216173171997,
- 0.020334040746092796,
- 0.04763885214924812,
- -0.026672368869185448,
- -0.049000032246112823,
- -0.06821367144584656
- ]
- },
- {
- "keyword": "dependency",
- "type": "dependsOn",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.07200328260660172,
- 0.018663456663489342,
- 0.035408198833465576,
- 0.01987522840499878,
- 0.05024554207921028,
- 0.026855608448386192,
- 0.10923540592193604,
- -0.03767596557736397,
- -0.020476317033171654,
- -0.023749778047204018,
- 0.06809103488922119,
- -0.038070086389780045,
- -0.034999649971723557,
- 0.05444076284766197,
- 0.030812030658125877,
- 0.033955540508031845,
- 0.03622441738843918,
- -0.0795195922255516,
- -0.04982508718967438,
- 0.031069723889231682,
- -0.026570778340101242,
- -0.055571652948856354,
- -0.08489657193422318,
- 0.012065978720784187,
- -0.04479201138019562,
- 0.04919080063700676,
- -0.028567809611558914,
- -0.020408423617482185,
- 0.07111259549856186,
- -0.08511655777692795,
- 0.02312077023088932,
- 0.0921826958656311,
- 0.01666969060897827,
- -0.02637590654194355,
- -0.0846601277589798,
- 0.07405438274145126,
- 0.04212118312716484,
- 0.01592656597495079,
- -0.008583328686654568,
- 0.02217712625861168,
- -0.03168083354830742,
- 0.03883077949285507,
- 0.06931761652231216,
- 0.004391727037727833,
- 0.0030671400018036366,
- -0.09102269262075424,
- 0.02722269669175148,
- -0.023001736029982567,
- -0.017381154000759125,
- -0.06352546066045761,
- -0.004057391546666622,
- -0.0010851877741515636,
- -0.021657731384038925,
- -0.020531579852104187,
- 0.07895763218402863,
- 0.03559521585702896,
- 0.07378966361284256,
- 0.0506921149790287,
- -0.05862325802445412,
- -0.020168153569102287,
- -0.023676009848713875,
- 0.05797269567847252,
- -0.06729213893413544,
- 0.024019841104745865,
- 0.07857111841440201,
- 0.005039586219936609,
- 0.0038657356053590775,
- -0.06589177250862122,
- -0.01847584918141365,
- -0.011259877122938633,
- -0.05173711106181145,
- -0.03674158826470375,
- 0.08560280501842499,
- -0.0450747050344944,
- -0.02217741496860981,
- -0.018138233572244644,
- 0.029745401814579964,
- -0.022272244095802307,
- 0.08402499556541443,
- -0.09833420068025589,
- -0.016008075326681137,
- 0.07763762027025223,
- 0.01574590615928173,
- 0.03078172542154789,
- 0.010487709194421768,
- -0.016834182664752007,
- 0.06344915926456451,
- -0.061335764825344086,
- 0.00415141461417079,
- 0.036673612892627716,
- 0.03356354683637619,
- -0.055380500853061676,
- 0.12059135735034943,
- -0.0073927342891693115,
- -0.018758010119199753,
- 0.03302323818206787,
- -0.005423044785857201,
- -0.06877795606851578,
- -0.08807429671287537,
- 0.24565424025058746,
- -0.03543847054243088,
- 0.031815532594919205,
- -0.0267232283949852,
- 0.05570114776492119,
- -0.007531886454671621,
- 0.01128093246370554,
- -0.07995849847793579,
- -0.033228058367967606,
- 0.006516469642519951,
- -0.000004635988716472639,
- -0.023633018136024475,
- 0.0031038923189044,
- -0.06598107516765594,
- -0.06926616281270981,
- -0.008343718014657497,
- -0.04173202067613602,
- 0.03384082391858101,
- -0.09049491584300995,
- 0.011527664959430695,
- -0.00442808261141181,
- 0.02516966126859188,
- 0.022323492914438248,
- 0.03632942959666252,
- -0.02719382382929325,
- -0.05914551392197609,
- -0.053448695689439774,
- 0.052680544555187225,
- -4.3192412181072134e-33,
- 0.03524160012602806,
- -0.06529619544744492,
- -0.030317118391394615,
- 0.05939219519495964,
- 0.02676296792924404,
- -0.001099503948353231,
- 0.011983605101704597,
- 0.029373833909630775,
- -0.06877557933330536,
- -0.07640291750431061,
- 0.015711260959506035,
- 0.0331457145512104,
- -0.05650553107261658,
- 0.004965388681739569,
- 0.10222254693508148,
- 0.00008640122541692108,
- 0.03512246906757355,
- -0.0039013519417494535,
- 0.06445812433958054,
- -0.016140799969434738,
- -0.0358518548309803,
- 0.01893174834549427,
- -0.01370036881417036,
- -0.03288349509239197,
- 0.05000049248337746,
- -0.027609093114733696,
- -0.0019262300338596106,
- -0.019540080800652504,
- -0.057772424072027206,
- 0.01327800564467907,
- 0.07884664088487625,
- 0.002035063225775957,
- -0.06989835947751999,
- -0.05370239168405533,
- -0.03543328866362572,
- -0.07302124798297882,
- -0.10024037212133408,
- 0.04387717694044113,
- -0.050734974443912506,
- -0.10271285474300385,
- 0.06003212183713913,
- 0.048525746911764145,
- 0.038803670555353165,
- 0.011324260383844376,
- 0.08285418897867203,
- -0.04122062772512436,
- 0.043220266699790955,
- 0.029554998502135277,
- 0.10115808993577957,
- 0.002077317563816905,
- 0.033026888966560364,
- 0.0053414530120790005,
- 0.027914676815271378,
- 0.006132558919489384,
- -0.009809774346649647,
- -0.01575491763651371,
- 0.007687653414905071,
- 0.013003388419747353,
- 0.09194362163543701,
- -0.059063564985990524,
- 0.01902724802494049,
- -0.06798213720321655,
- -0.049957841634750366,
- 0.10194730758666992,
- 0.10859358310699463,
- 0.0714615061879158,
- -0.053123243153095245,
- -0.1024068295955658,
- 0.010649134404957294,
- 0.008890840224921703,
- -0.07144030183553696,
- -0.04199310392141342,
- -0.00674192700535059,
- 0.03499765321612358,
- 0.007851135917007923,
- 0.04389741271734238,
- -0.03702142834663391,
- -0.06974224746227264,
- -0.10147138684988022,
- 0.023531721904873848,
- -0.07456101477146149,
- -0.06291244924068451,
- 0.049078166484832764,
- 0.025134293362498283,
- -0.06510423868894577,
- 0.0026685968041419983,
- 0.008104558102786541,
- -0.008878123015165329,
- 0.03058890625834465,
- 0.0688771978020668,
- 0.010760565288364887,
- -0.017284369096159935,
- -0.030482379719614983,
- -0.016668245196342468,
- 0.03758921101689339,
- 2.7017176450215593e-33,
- -0.005446424707770348,
- 0.06484686583280563,
- 0.04146401211619377,
- -0.018264073878526688,
- 0.07024405151605606,
- 0.029741933569312096,
- -0.08687455207109451,
- -0.07421456277370453,
- -0.036859579384326935,
- 0.1436176598072052,
- -0.06807154417037964,
- -0.03951644524931908,
- 0.09565481543540955,
- 0.04194990172982216,
- -0.0168586615473032,
- 0.08812936395406723,
- -0.004576543811708689,
- -0.03008192963898182,
- -0.049664780497550964,
- 0.025040168315172195,
- -0.023385977372527122,
- 0.05706566572189331,
- 0.011486896313726902,
- -0.08433619141578674,
- 0.009103957563638687,
- 0.05369233712553978,
- -0.010303424671292305,
- 0.01335277408361435,
- -0.07874953746795654,
- 0.028858894482254982,
- 0.01713298261165619,
- 0.020087886601686478,
- -0.057326141744852066,
- -0.07944144308567047,
- -0.03685522451996803,
- 0.03262342885136604,
- -0.05212687700986862,
- 0.01846415176987648,
- -0.0987129956483841,
- -0.03254161775112152,
- 0.030296502634882927,
- -0.020708929747343063,
- -0.04840535670518875,
- 0.06364116072654724,
- 0.006223174277693033,
- -0.02504013292491436,
- 0.03965802490711212,
- 0.006948752794414759,
- 0.056557923555374146,
- -0.008077788166701794,
- -0.031680796295404434,
- 0.02739092893898487,
- -0.005224823020398617,
- 0.02726377360522747,
- 0.005345666781067848,
- 0.03689780458807945,
- 0.050753187388181686,
- 0.03288865461945534,
- 0.05255083739757538,
- 0.007772642187774181,
- 0.0010266670724377036,
- 0.017583362758159637,
- -0.023523768410086632,
- -0.07580415159463882,
- 0.009390573017299175,
- -0.04395991936326027,
- -0.025476528331637383,
- 0.05397460237145424,
- 0.09513842314481735,
- -0.02011248469352722,
- 0.03832308575510979,
- 0.04609724134206772,
- 0.06797558069229126,
- -0.06703689694404602,
- -0.028630437329411507,
- 0.06602554023265839,
- -0.011739948764443398,
- -0.01512992288917303,
- -0.01230251882225275,
- -0.019952481612563133,
- -0.003683661110699177,
- -0.05277872085571289,
- 0.05765238776803017,
- 0.005908227991312742,
- -0.06322672218084335,
- -0.05362670496106148,
- 0.10960688441991806,
- -0.08607973903417587,
- 0.005784754641354084,
- -0.0003376088570803404,
- 0.0804939717054367,
- 0.04197727143764496,
- -0.08793239295482635,
- 0.02884571999311447,
- 0.03273531049489975,
- -1.161872997812452e-8,
- 0.04167238995432854,
- -0.0475299134850502,
- 0.0063008819706737995,
- -0.015370414592325687,
- 0.06159530207514763,
- -0.013630709610879421,
- 0.04451558738946915,
- 0.02163952961564064,
- -0.031936634331941605,
- 0.08379770070314407,
- -0.025442874059081078,
- 0.04658256843686104,
- 0.00892407912760973,
- 0.060081351548433304,
- 0.051630400121212006,
- -0.006374789401888847,
- -0.016405735164880753,
- -0.010148703120648861,
- -0.12211886048316956,
- 0.000047706536861369386,
- 0.00007920357893453911,
- -0.053193364292383194,
- -0.0029591359198093414,
- 0.055132389068603516,
- -0.026456747204065323,
- -0.05675273761153221,
- 0.029541177675127983,
- 0.035899948328733444,
- -0.002721761353313923,
- 0.06085659936070442,
- 0.06152670457959175,
- 0.062035802751779556,
- -0.061136644333601,
- -0.08442387729883194,
- 0.0038810884580016136,
- 0.022549200803041458,
- -0.03144017234444618,
- -0.03337309509515762,
- 0.09852097928524017,
- 0.0365409292280674,
- 0.032368842512369156,
- 0.024221409112215042,
- 0.0017908603185787797,
- 0.07200973480939865,
- -0.013445514254271984,
- -0.03440231457352638,
- -0.07486134767532349,
- -0.07587090879678726,
- -0.039073068648576736,
- -0.0046384879387915134,
- -0.056010641157627106,
- -0.01399045716971159,
- -0.04365583136677742,
- 0.022462625056505203,
- 0.022501399740576744,
- -0.005152578931301832,
- 0.05524921789765358,
- -0.01894499361515045,
- -0.0849638357758522,
- -0.049178607761859894,
- 0.04069562256336212,
- 0.03867543116211891,
- 0.15434889495372772,
- -0.07526875287294388
- ]
- },
- {
- "keyword": "reliance",
- "type": "dependsOn",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.07727129012346268,
- -0.012770399451255798,
- -0.008210058324038982,
- 0.06060243770480156,
- -0.023578202351927757,
- -0.010401970706880093,
- 0.04436466470360756,
- 0.016344038769602776,
- 0.03634796291589737,
- -0.01843591034412384,
- 0.047837451100349426,
- -0.018557259812951088,
- 0.02611951343715191,
- 0.01625760644674301,
- -0.006540527101606131,
- 0.006032673176378012,
- 0.052911896258592606,
- -0.030924489721655846,
- 0.0338546447455883,
- -0.054137904196977615,
- -0.011048508808016777,
- -0.027012770995497704,
- -0.041906941682100296,
- -0.027999889105558395,
- 0.02081620693206787,
- 0.09042004495859146,
- -0.046751536428928375,
- 0.021830134093761444,
- 0.06702738255262375,
- -0.09892892837524414,
- -0.06217282637953758,
- 0.058385711163282394,
- -0.029222646728157997,
- -0.05354832857847214,
- -0.06274470686912537,
- 0.08805419504642487,
- -0.019873084500432014,
- 0.011560567654669285,
- 0.07257493585348129,
- -0.03535723313689232,
- 0.04922658950090408,
- -0.034372251480817795,
- 0.03303609788417816,
- -0.09775747358798981,
- 0.028274253010749817,
- -0.06827511638402939,
- -0.007583580911159515,
- -0.024048710241913795,
- 0.035334184765815735,
- -0.062328461557626724,
- -0.03171351179480553,
- -0.026728788390755653,
- 0.0330447219312191,
- -0.01696646399796009,
- 0.026350151747465134,
- -0.08339174836874008,
- 0.001564933336339891,
- -0.001279708812944591,
- 0.044903747737407684,
- 0.041506510227918625,
- 0.04684918746352196,
- -0.048150014132261276,
- -0.0016054784646257758,
- 0.0369730107486248,
- 0.014735914766788483,
- -0.038371384143829346,
- -0.011387905105948448,
- 0.01902730204164982,
- -0.06167346611618996,
- -0.10160037130117416,
- 0.006295886356383562,
- -0.054095227271318436,
- 0.03422677516937256,
- -0.03854751959443092,
- -0.04217423498630524,
- 0.007972986437380314,
- 0.003884553909301758,
- 0.027970120310783386,
- 0.033973321318626404,
- -0.046884045004844666,
- 0.031480029225349426,
- 0.03835373371839523,
- -0.012297418899834156,
- 0.056610528379678726,
- -0.025380024686455727,
- 0.029502354562282562,
- 0.003966296557337046,
- 0.0128333093598485,
- -0.009411247447133064,
- -0.02873373217880726,
- 0.006213042419403791,
- 0.0776628702878952,
- 0.06151466444134712,
- 0.0697382315993309,
- -0.01634552702307701,
- 0.02928948402404785,
- -0.025386281311511993,
- 0.014028562232851982,
- -0.11027195304632187,
- 0.17360949516296387,
- 0.05905912443995476,
- 0.09243512153625488,
- -0.1397017240524292,
- -0.010982279665768147,
- -0.053408682346343994,
- -0.05050482973456383,
- -0.087189681828022,
- 0.04318791627883911,
- 0.07882377505302429,
- 0.020527062937617302,
- -0.038911085575819016,
- 0.08204393833875656,
- -0.14445234835147858,
- 0.0005500769475474954,
- -0.07213293761014938,
- -0.05911367014050484,
- -0.033245671540498734,
- -0.04753968119621277,
- -0.01466043945401907,
- -0.03353995084762573,
- -0.033677104860544205,
- -0.0015359771205112338,
- -0.09165922552347183,
- -0.06886996328830719,
- -0.01603236421942711,
- -0.07195449620485306,
- 0.022030912339687347,
- -3.004404868964406e-33,
- -0.007790322881191969,
- 0.07543229311704636,
- 0.03512827679514885,
- -0.05808017775416374,
- 0.007252180948853493,
- 0.01530041079968214,
- -0.0145119559019804,
- -0.011262533254921436,
- -0.08590235561132431,
- -0.009908994659781456,
- 0.006786198355257511,
- 0.031550247222185135,
- -0.06902771443128586,
- -0.07480388134717941,
- 0.09337077289819717,
- -0.09145472198724747,
- -0.042149290442466736,
- 0.02191706746816635,
- 0.09720353782176971,
- -0.10292971879243851,
- -0.00045153588871471584,
- 0.027483798563480377,
- -0.03527145832777023,
- 0.033849265426397324,
- 0.05630277469754219,
- -0.07361432164907455,
- -0.010563678108155727,
- -0.03266371786594391,
- -0.0429551899433136,
- 0.05057249218225479,
- 0.09792850911617279,
- 0.026429008692502975,
- -0.0650290846824646,
- -0.05107986554503441,
- -0.02639964409172535,
- -0.08964257687330246,
- -0.03163974732160568,
- -0.054404277354478836,
- -0.05900277569890022,
- -0.06263966113328934,
- -0.05192326381802559,
- 0.04445831477642059,
- -0.028355441987514496,
- 0.05325527861714363,
- -0.08171055465936661,
- 0.03445638343691826,
- 0.04530933499336243,
- 0.08293432742357254,
- 0.07720532268285751,
- 0.06517847627401352,
- -0.06434701383113861,
- 0.0012881410075351596,
- 0.008962337858974934,
- -0.03695514053106308,
- 0.04366143420338631,
- 0.010312935337424278,
- -0.028499599546194077,
- -0.007363592740148306,
- 0.04895487427711487,
- -0.04777851328253746,
- 0.009554827585816383,
- -0.04834989085793495,
- -0.12765246629714966,
- 0.017461977899074554,
- 0.0036500589922070503,
- 0.015988865867257118,
- 0.030689440667629242,
- -0.06354181468486786,
- 0.06342995911836624,
- 0.022692076861858368,
- 0.0823553204536438,
- -0.023471063002943993,
- 0.014314745552837849,
- 0.09254873543977737,
- -0.054646797478199005,
- 0.019655441865324974,
- -0.016389887779951096,
- 0.09566818177700043,
- -0.050783123821020126,
- 0.06368807703256607,
- 0.004306498449295759,
- -0.007187305949628353,
- -0.0022364258766174316,
- -0.012848872691392899,
- 0.05041559785604477,
- 0.04992983117699623,
- 0.04089324176311493,
- -0.05502938851714134,
- 0.017155038192868233,
- 0.02539229206740856,
- 0.007456506136804819,
- 0.007179395295679569,
- -0.001223672879859805,
- 0.0021933591924607754,
- -0.035869158804416656,
- 2.890259775724754e-33,
- 0.03932889178395271,
- 0.03145401552319527,
- 0.06204155832529068,
- 0.007895410060882568,
- 0.008255856111645699,
- -0.07128399610519409,
- 0.08229975402355194,
- 0.026297712698578835,
- 0.03449941799044609,
- 0.09506966918706894,
- 0.031135041266679764,
- 0.043338894844055176,
- 0.06617437303066254,
- -0.006749955005943775,
- -0.0890226662158966,
- 0.020748766139149666,
- 0.040269818156957626,
- 0.02420692704617977,
- 0.002151028485968709,
- 0.01750466786324978,
- 0.008700454607605934,
- -0.024284418672323227,
- -0.05405252054333687,
- 0.03515655919909477,
- -0.00043426238698884845,
- 0.09612368047237396,
- -0.06817968189716339,
- -0.04376034811139107,
- -0.14465422928333282,
- 0.010128557682037354,
- 0.008401249535381794,
- -0.015943467617034912,
- -0.04374951124191284,
- 0.0780247151851654,
- -0.0761885941028595,
- 0.00546171935275197,
- -0.03816390037536621,
- 0.054221898317337036,
- 0.023380417376756668,
- 0.02744300849735737,
- -0.015173710882663727,
- 0.041405148804187775,
- 0.047754887491464615,
- 0.07611437886953354,
- 0.0022236681543290615,
- -0.11609853804111481,
- 0.015086752362549305,
- 0.030498167499899864,
- 0.042657289654016495,
- 0.009915148839354515,
- -0.058223657310009,
- 0.08422696590423584,
- 0.05245748162269592,
- -0.026162857189774513,
- 0.015024841763079166,
- 0.0006088778609409928,
- 0.011271126568317413,
- 0.04390871524810791,
- -0.004433535039424896,
- -0.06193476915359497,
- 0.05701388791203499,
- 0.02125678025186062,
- -0.017309512943029404,
- 0.09220872819423676,
- 0.013566684909164906,
- 0.07850683480501175,
- 0.04512955620884895,
- -0.012164616957306862,
- 0.07347607612609863,
- -0.07908245921134949,
- 0.03447809815406799,
- -0.05468975752592087,
- -0.0018503410974517465,
- -0.09536805748939514,
- 0.003904636250808835,
- 0.011185839772224426,
- -0.02660275436937809,
- 0.03519698232412338,
- -0.056041866540908813,
- -0.002843410475179553,
- 0.1158749982714653,
- 0.00815703347325325,
- 0.0031681472901254892,
- -0.01535577792674303,
- -0.029608936980366707,
- 0.06021549925208092,
- 0.07845798879861832,
- 0.013684475794434547,
- 0.10633769631385803,
- 0.007222875952720642,
- -0.06323885172605515,
- -0.0045838733203709126,
- -0.04228804260492325,
- -0.00751184206455946,
- 0.06668874621391296,
- -1.0455809551501716e-8,
- -0.01213114708662033,
- -0.009818989783525467,
- 0.02858394756913185,
- 0.021960923448204994,
- 0.06079140678048134,
- -0.08238312602043152,
- 0.00015684614481870085,
- -0.024125512689352036,
- -0.009105273522436619,
- 0.07893962413072586,
- 0.02230016328394413,
- -0.006661184597760439,
- -0.05740950629115105,
- 0.04454738274216652,
- 0.015098944306373596,
- -0.04123291000723839,
- 0.015263829380273819,
- 0.05145132914185524,
- -0.009850495494902134,
- -0.03298857435584068,
- 0.03186167776584625,
- 0.003220799146220088,
- 0.09133327007293701,
- -0.0006473843823187053,
- 0.05570968985557556,
- 0.039535973221063614,
- -0.009980802424252033,
- -0.1058460995554924,
- 0.06684023141860962,
- 0.06336797028779984,
- 0.011193371377885342,
- 0.05455336719751358,
- 0.01851712167263031,
- -0.09150610864162445,
- -0.11410839855670929,
- 0.007571638096123934,
- 0.010780133306980133,
- -0.012639272026717663,
- -0.000795690983068198,
- -0.022246694192290306,
- -0.016527118161320686,
- 0.026844244450330734,
- 0.028796134516596794,
- 0.056991416960954666,
- -0.04061049595475197,
- 0.06912268698215485,
- -0.06557465344667435,
- 0.05678962916135788,
- 0.019208664074540138,
- -0.08183373510837555,
- 0.015501459129154682,
- -0.059624720364809036,
- 0.013045841827988625,
- 0.03991216421127319,
- -0.03859786316752434,
- -0.07601848989725113,
- -0.0009379549301229417,
- 0.060844115912914276,
- -0.06509874016046524,
- -0.04973691329360008,
- 0.10448833554983139,
- -0.006668825633823872,
- 0.0757896900177002,
- -0.010094258934259415
- ]
- },
- {
- "keyword": "dependence",
- "type": "dependsOn",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.02128632180392742,
- -4.139985776419053e-8,
- 0.02020295523107052,
- 0.09281078726053238,
- 0.02096097357571125,
- 0.026573942974209785,
- 0.0913812667131424,
- 0.0005706353695131838,
- 0.01520959846675396,
- -0.028484778478741646,
- 0.0963231697678566,
- 0.04199203476309776,
- 0.0097368024289608,
- 0.0518738329410553,
- 0.021077288314700127,
- 0.024780727922916412,
- -0.0032217088155448437,
- -0.0405799001455307,
- -0.08312074095010757,
- 0.026993537321686745,
- -0.05235174298286438,
- -0.11452288925647736,
- -0.09048566222190857,
- 0.005600323900580406,
- 0.012845347635447979,
- 0.030786996707320213,
- -0.014411602169275284,
- 0.015318557620048523,
- 0.031439196318387985,
- -0.12667855620384216,
- 0.047668538987636566,
- 0.05456587299704552,
- 0.02528260089457035,
- -0.024567050859332085,
- -0.07149583846330643,
- 0.028482841327786446,
- -0.013800522312521935,
- -0.023263713344931602,
- 0.04122976213693619,
- 0.011098762974143028,
- -0.02986784093081951,
- -0.019711380824446678,
- 0.024764228612184525,
- -0.02296297810971737,
- -0.0614098496735096,
- -0.06891989707946777,
- 0.035546477884054184,
- -0.008441056124866009,
- -0.03713173046708107,
- -0.034686993807554245,
- 0.07496816664934158,
- -0.032510124146938324,
- -0.006437625270336866,
- -0.06371647864580154,
- 0.11096779257059097,
- -0.01141202449798584,
- 0.03275294229388237,
- 0.06163618341088295,
- -0.03307405859231949,
- 0.008341049775481224,
- 0.06376463919878006,
- 0.06093105673789978,
- -0.010566740296781063,
- 0.0252535417675972,
- 0.17969271540641785,
- -0.0079472865909338,
- 0.048412349075078964,
- 0.0448569618165493,
- -0.058745745569467545,
- 0.017854243516921997,
- 0.02217886596918106,
- -0.06731384992599487,
- -0.027689598500728607,
- -0.10484065860509872,
- 0.012441826984286308,
- 0.003571838140487671,
- 0.021331097930669785,
- -0.05727016553282738,
- 0.06167915463447571,
- -0.09266673028469086,
- -0.042687222361564636,
- 0.07002309709787369,
- 0.016467904672026634,
- -0.01705230586230755,
- 0.021266909316182137,
- -0.05949154123663902,
- 0.04564488306641579,
- -0.03515216335654259,
- 0.019313637167215347,
- 0.008563737384974957,
- 0.0009414445958100259,
- 0.030029911547899246,
- 0.1235978826880455,
- -0.03469362482428551,
- 0.0012851307401433587,
- 0.03591964766383171,
- -0.028513187542557716,
- -0.10833295434713364,
- -0.10510160028934479,
- 0.2328043431043625,
- 0.02552119642496109,
- 0.06807546317577362,
- -0.03554656356573105,
- 0.07582110166549683,
- 0.0159286055713892,
- -0.052043113857507706,
- -0.03359324857592583,
- -0.03242289274930954,
- 0.0041960240341722965,
- 0.028145674616098404,
- 0.0006535823340527713,
- 0.02138632908463478,
- -0.023841235786676407,
- 0.026645410805940628,
- -0.015532498247921467,
- -0.024022791534662247,
- -0.027832619845867157,
- -0.02111266925930977,
- 0.024792680516839027,
- -0.01989125832915306,
- 0.02927578054368496,
- -0.035376764833927155,
- 0.011500275693833828,
- 0.001990410266444087,
- -0.07604927569627762,
- -0.023420540615916252,
- 0.0032536780927330256,
- -4.59807876369783e-33,
- 0.020611319690942764,
- -0.11968670040369034,
- -0.02147637866437435,
- 0.031074710190296173,
- -0.007292001508176327,
- -0.02138771116733551,
- -0.029203318059444427,
- -0.011159906163811684,
- -0.04551839083433151,
- -0.008181041106581688,
- -0.0027969270013272762,
- 0.06823772937059402,
- -0.053083304315805435,
- 0.01755545474588871,
- 0.13416050374507904,
- 0.06343141943216324,
- 0.023549078032374382,
- 0.028494497761130333,
- 0.08471057564020157,
- 0.011591381393373013,
- -0.024764828383922577,
- 0.014018259942531586,
- -0.019365787506103516,
- -0.030886653810739517,
- 0.03208426013588905,
- -0.08782549202442169,
- -0.03631078079342842,
- 0.00966696348041296,
- -0.08406888693571091,
- 0.016481276601552963,
- 0.07544403523206711,
- 0.03870796412229538,
- -0.06735873222351074,
- -0.01696331985294819,
- 0.01968833990395069,
- -0.011340894736349583,
- -0.10817792266607285,
- 0.05990796163678169,
- -0.07469481974840164,
- -0.03899918496608734,
- -0.022938093170523643,
- 0.003093832405284047,
- 0.07186112552881241,
- -0.02737765572965145,
- 0.010437311604619026,
- -0.022755922749638557,
- -0.022730495780706406,
- -0.010702664032578468,
- 0.032809700816869736,
- 0.0024815862998366356,
- -0.032627351582050323,
- 0.042661089450120926,
- 0.013266869820654392,
- -0.047414474189281464,
- -0.0187809020280838,
- -0.030249767005443573,
- -0.06660915911197662,
- -0.04158215969800949,
- 0.014154479838907719,
- 0.020544271916151047,
- 0.001900806208141148,
- 0.009173010475933552,
- -0.08306113630533218,
- 0.019292226061224937,
- 0.046224676072597504,
- 0.05701712891459465,
- -0.020087746903300285,
- -0.07576308399438858,
- -0.02207583747804165,
- 0.06368429213762283,
- -0.05292190983891487,
- -0.005358266644179821,
- -0.0205340888351202,
- -0.07676499336957932,
- 0.010220471769571304,
- -0.0077906823717057705,
- -0.059166621416807175,
- -0.06657639145851135,
- -0.013162699528038502,
- 0.02177744172513485,
- -0.0653892233967781,
- -0.08173533529043198,
- 0.03187122941017151,
- 0.01665189117193222,
- -0.08961107581853867,
- 0.014835549518465996,
- -0.000946421583648771,
- -0.10801038891077042,
- 0.01799369603395462,
- 0.12120730429887772,
- 0.06361030042171478,
- 0.01741791144013405,
- 0.016914064064621925,
- -0.044010553508996964,
- 0.016909221187233925,
- 2.335193179976393e-33,
- -0.0336514413356781,
- 0.030987702310085297,
- 0.06331510096788406,
- -0.04913203790783882,
- 0.051433492451906204,
- 0.03394437953829765,
- -0.05162758380174637,
- -0.05059478431940079,
- -0.07669255882501602,
- 0.07161712646484375,
- -0.11660820245742798,
- 0.012265775352716446,
- 0.023617472499608994,
- 0.02571246400475502,
- 0.011048020794987679,
- 0.05110545456409454,
- -0.0215046014636755,
- 0.0006817321991547942,
- -0.040930211544036865,
- 0.01481133047491312,
- 0.03146003931760788,
- 0.029540279880166054,
- 0.008874780498445034,
- -0.01079594250768423,
- -0.012182102538645267,
- 0.036576319485902786,
- -0.07172581553459167,
- -0.013757942244410515,
- -0.06171528622508049,
- 0.010056848637759686,
- -0.022000407800078392,
- 0.025646574795246124,
- -0.08786050230264664,
- -0.06142338365316391,
- -0.050241369754076004,
- 0.05744607001543045,
- -0.037538520991802216,
- 0.04202781990170479,
- -0.06101226806640625,
- -0.04262138903141022,
- 0.009503006935119629,
- 0.016560129821300507,
- 0.027092130854725838,
- 0.056047067046165466,
- 0.05984976515173912,
- -0.0036650081165134907,
- 0.01684633456170559,
- 0.0017130353953689337,
- 0.059108469635248184,
- 0.055178120732307434,
- 0.046754252165555954,
- 0.03566138818860054,
- -0.003658025059849024,
- 0.044161491096019745,
- -0.007107496727257967,
- 0.012173743918538094,
- 0.043213460594415665,
- 0.04653327539563179,
- -0.008672969415783882,
- 0.02869362197816372,
- -0.02525111474096775,
- 0.007303754333406687,
- -0.01162362564355135,
- 0.0204792283475399,
- -0.06311266124248505,
- -0.05640523508191109,
- -0.0415770597755909,
- -0.015592625364661217,
- 0.1380770355463028,
- -0.03097284957766533,
- 0.07078463584184647,
- -0.06074601411819458,
- -0.004031055141240358,
- -0.12303460389375687,
- -0.03967961668968201,
- 0.03944467753171921,
- -0.042970310896635056,
- -0.07907600700855255,
- -0.05211460962891579,
- -0.004352855961769819,
- 0.004804737865924835,
- 0.005561504978686571,
- 0.06158056855201721,
- 0.008002255111932755,
- -0.09437917172908783,
- 0.03345869854092598,
- 0.07922538369894028,
- -0.036571044474840164,
- 0.06254755705595016,
- 0.014409298077225685,
- 0.02515007182955742,
- 0.050084758549928665,
- -0.13898561894893646,
- -0.014557699672877789,
- 0.02550523541867733,
- -1.1989953918600804e-8,
- 0.014777478761970997,
- -0.041823480278253555,
- 0.08384206891059875,
- 0.06672002375125885,
- 0.02009802684187889,
- -0.028876088559627533,
- 0.07810915261507034,
- 0.038591187447309494,
- 0.016205765306949615,
- 0.1124843880534172,
- -0.004123791586607695,
- 0.0372796393930912,
- 0.03346426784992218,
- 0.05533851310610771,
- 0.03878583386540413,
- 0.057976145297288895,
- -0.02715085819363594,
- 0.007876859046518803,
- -0.09947410225868225,
- 0.010876654647290707,
- 0.011032150126993656,
- -0.0246942900121212,
- 0.02303766831755638,
- 0.07779610902070999,
- -0.029499055817723274,
- -0.026490343734622,
- -0.021196264773607254,
- 0.007865537889301777,
- -0.020781269297003746,
- 0.03405449911952019,
- 0.11972703039646149,
- 0.0183215644210577,
- -0.0750148817896843,
- -0.03442561253905296,
- -0.0020267455838620663,
- 0.0165642611682415,
- -0.015177766792476177,
- -0.008895774371922016,
- 0.020131181925535202,
- 0.026392482221126556,
- -0.045103639364242554,
- 0.025758931413292885,
- 0.06279395520687103,
- 0.12575018405914307,
- 0.04796088859438896,
- -0.0653553307056427,
- -0.049978867173194885,
- -0.03675523400306702,
- -0.01938505843281746,
- -0.0750662237405777,
- -0.016521619632840157,
- -0.031271133571863174,
- -0.03138577565550804,
- 0.014911714009940624,
- 0.038801997900009155,
- -0.005457988008856773,
- 0.03935646265745163,
- 0.06575243175029755,
- -0.06786934286355972,
- 0.01642034947872162,
- 0.05855167657136917,
- 0.022115522995591164,
- 0.09035588055849075,
- -0.10556107759475708
- ]
- },
- {
- "keyword": "requires",
- "type": "requires",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.015701116994023323,
- 0.0606558658182621,
- 0.005702757742255926,
- -0.021708598360419273,
- 0.012193755246698856,
- -0.03682004287838936,
- 0.0626629889011383,
- -0.0555916391313076,
- -0.0628642812371254,
- -0.02541159652173519,
- -0.03781532123684883,
- -0.05833214521408081,
- -0.028482602909207344,
- 0.059159427881240845,
- 0.056273870170116425,
- 0.02328946813941002,
- 0.07564057409763336,
- -0.03673667088150978,
- -0.06377855688333511,
- 0.018860960379242897,
- -0.0006309999735094607,
- 0.0201749037951231,
- 0.05188867077231407,
- -0.04280077666044235,
- -0.11305795609951019,
- -0.03763490170240402,
- -0.04352236166596413,
- -0.004974956624209881,
- 0.06479496508836746,
- -0.03672502562403679,
- 0.0382656529545784,
- -0.013393597677350044,
- 0.0783933624625206,
- -0.02484636753797531,
- -0.025328008458018303,
- 0.041882604360580444,
- 0.05474881827831268,
- -0.036652822047472,
- -0.019617203623056412,
- 0.017197582870721817,
- -0.01135578379034996,
- -0.06317507475614548,
- -0.0005616745911538601,
- 0.03578359633684158,
- 0.0007790609379298985,
- 0.017497215420007706,
- 0.0078586395829916,
- -0.008436889387667179,
- 0.04920341819524765,
- 0.03853043168783188,
- -0.03991425782442093,
- 0.0400930680334568,
- 0.03734349086880684,
- 0.012466225773096085,
- 0.02536184713244438,
- -0.02822950668632984,
- 0.0603242963552475,
- 0.042436812072992325,
- 0.021426580846309662,
- 0.013528353534638882,
- -0.019564779475331306,
- 0.0005043616401962936,
- -0.10402846336364746,
- 0.03632355481386185,
- 0.038930222392082214,
- -0.0008367865229956806,
- -0.016322538256645203,
- -0.02953197807073593,
- -0.03358244150876999,
- 0.05519275739789009,
- -0.07628250122070312,
- 0.024347994476556778,
- -0.0959806963801384,
- 0.0263241995126009,
- -0.02528020553290844,
- -0.04982966184616089,
- -0.011212771758437157,
- -0.009398783557116985,
- 0.06137756630778313,
- -0.041346415877342224,
- -0.0731135681271553,
- 0.04345747083425522,
- -0.06792491674423218,
- 0.04165944457054138,
- 0.046678368002176285,
- 0.011597112752497196,
- 0.025830868631601334,
- -0.04856403172016144,
- -0.10352311283349991,
- 0.03182698413729668,
- 0.04963283985853195,
- -0.0436442531645298,
- 0.008118133060634136,
- 0.010412928648293018,
- 0.025246139615774155,
- 0.0006574884173460305,
- 0.035760898143053055,
- -0.007042303681373596,
- -0.12448621541261673,
- 0.2680648863315582,
- -0.07883373647928238,
- -0.03412502631545067,
- 0.047023821622133255,
- 0.04719598963856697,
- -0.06347145885229111,
- -0.03380145505070686,
- -0.011613888666033745,
- 0.03256344050168991,
- 0.021266276016831398,
- 0.04738184064626694,
- 0.029167834669351578,
- -0.06073293834924698,
- 0.006526260636746883,
- -0.0033731034491211176,
- 0.04334336146712303,
- -0.019245704635977745,
- -0.0004410160181578249,
- -0.004507115110754967,
- 0.04382343962788582,
- 0.009802431799471378,
- -0.019661920145154,
- -0.008198589086532593,
- 0.005165133159607649,
- -0.00716355862095952,
- -0.01205793023109436,
- -0.1734348088502884,
- 0.059794001281261444,
- -5.80530044173278e-33,
- 0.08391424268484116,
- 0.04680236428976059,
- -0.019435841590166092,
- 0.03224678710103035,
- -0.006813664920628071,
- 0.02418573386967182,
- -0.025689739733934402,
- -0.008428109809756279,
- -0.08025854825973511,
- -0.03117569349706173,
- -0.03892193362116814,
- 0.02394149824976921,
- -0.03152618929743767,
- -0.013017815537750721,
- 0.11082038283348083,
- 0.017198657616972923,
- 0.11289980262517929,
- 0.02492944523692131,
- -0.022061221301555634,
- -0.02194976806640625,
- -0.056067824363708496,
- -0.012150280177593231,
- -0.017555193975567818,
- 0.06420502066612244,
- -0.09022129327058792,
- 0.025534939020872116,
- 0.029850536957383156,
- -0.01584288291633129,
- 0.0420844592154026,
- 0.008285464718937874,
- 0.04843059927225113,
- -0.0391855426132679,
- -0.036374785006046295,
- 0.0019456101581454277,
- 0.021311385557055473,
- 0.05756378173828125,
- 0.017743414267897606,
- -0.0563754104077816,
- 0.034553252160549164,
- -0.04717041179537773,
- 0.005420343019068241,
- 0.010584807023406029,
- -0.035615772008895874,
- 0.03032028116285801,
- 0.006455529015511274,
- -0.015039150603115559,
- 0.03336157277226448,
- 0.03942866623401642,
- 0.030925525352358818,
- 0.061719585210084915,
- 0.010286563076078892,
- -0.011640301905572414,
- -0.02460472285747528,
- 0.01067553460597992,
- -0.016248518601059914,
- 0.0038380506448447704,
- 0.03824237361550331,
- -0.04710689187049866,
- 0.08420354872941971,
- 0.026217686012387276,
- -0.008100222796201706,
- 0.008332007564604282,
- -0.0211027804762125,
- 0.07106757164001465,
- 0.04935893788933754,
- -0.005920785944908857,
- -0.0014472471084445715,
- -0.004295221995562315,
- -0.03698855638504028,
- -0.026172379031777382,
- -0.11608609557151794,
- -0.017778273671865463,
- 0.04227789491415024,
- 0.0332307331264019,
- -0.024722134694457054,
- 0.006201519165188074,
- 0.025027522817254066,
- -0.05367380753159523,
- 0.0028847723733633757,
- 0.05242464318871498,
- -0.07381390780210495,
- -0.0788404643535614,
- 0.008434140123426914,
- 0.05617022514343262,
- 0.03749464824795723,
- -0.03359529376029968,
- 0.0439576655626297,
- -0.04596705362200737,
- 0.014977961778640747,
- -0.009149627760052681,
- -0.0007999724475666881,
- -0.04067810997366905,
- -0.057693108916282654,
- 0.01951863430440426,
- -0.021663760766386986,
- 4.697255222076706e-33,
- -0.07050997763872147,
- -0.013934350572526455,
- -0.007860809564590454,
- 0.09551069140434265,
- 0.08503804355859756,
- 0.015995783731341362,
- -0.02738940715789795,
- -0.08508805185556412,
- -0.005883519072085619,
- 0.0429222397506237,
- -0.05669752135872841,
- -0.03562411665916443,
- 0.03709140419960022,
- -0.00033916329266503453,
- 0.0400690920650959,
- 0.035227883607149124,
- 0.0036985930055379868,
- -0.054686546325683594,
- -0.044381532818078995,
- -0.03484087437391281,
- -0.04396481812000275,
- 0.002869437448680401,
- 0.038310278207063675,
- -0.05408095195889473,
- -0.052079860121011734,
- 0.08696378767490387,
- -0.030653467401862144,
- 0.01721176505088806,
- -0.05715329200029373,
- 0.02588067576289177,
- 0.06164040043950081,
- -0.03304878994822502,
- -0.10347452014684677,
- 0.007551611866801977,
- -0.056761372834444046,
- 0.0225761029869318,
- 0.04362278804183006,
- 0.09777665138244629,
- -0.07466495782136917,
- 0.02417024038732052,
- 0.08793221414089203,
- 0.08318403363227844,
- -0.00475637661293149,
- 0.21022501587867737,
- -0.04476402699947357,
- 0.030424609780311584,
- 0.09286259114742279,
- -0.030714277178049088,
- 0.05904227867722511,
- -0.008933438919484615,
- -0.009387566708028316,
- 0.05355801060795784,
- -0.02109873853623867,
- -0.04509386047720909,
- -0.07394473254680634,
- -0.005068076774477959,
- -0.07874684780836105,
- 0.013124081306159496,
- 0.02559671178460121,
- -0.03728075698018074,
- 0.027072779834270477,
- 0.049171943217515945,
- -0.050475697964429855,
- -0.03631000220775604,
- 0.00896148569881916,
- -0.05885547772049904,
- 0.02649872936308384,
- -0.0505378432571888,
- 0.04092990234494209,
- -0.024737484753131866,
- -0.10094856470823288,
- 0.044976308941841125,
- 0.04479855298995972,
- -0.0006022473680786788,
- -0.025122012943029404,
- 0.024791911244392395,
- -0.0450686514377594,
- 0.0350545309484005,
- 0.05298630893230438,
- -0.05066153034567833,
- -0.0665636733174324,
- -0.07569904625415802,
- -0.03798278421163559,
- -0.02738173119723797,
- 0.0300733745098114,
- -0.06271807849407196,
- 0.07840064913034439,
- -0.0524853840470314,
- -0.042219795286655426,
- 0.044537659734487534,
- 0.0573970228433609,
- 0.004439543001353741,
- 0.015919780358672142,
- 0.04699074104428291,
- -0.011663400568068027,
- -1.3645974128451144e-8,
- -0.03470572084188461,
- 0.058001808822155,
- -0.00029163132421672344,
- -0.03368734195828438,
- 0.08729266375303268,
- 0.043087344616651535,
- 0.06881731003522873,
- -0.008387559093534946,
- -0.018630407750606537,
- 0.037711504846811295,
- 0.08556919544935226,
- -0.011018169112503529,
- 0.05135298892855644,
- 0.11836480349302292,
- -0.015703268349170685,
- -0.06143838167190552,
- 0.001972631784155965,
- 0.02580396831035614,
- -0.11114387214183807,
- -0.0027578414883464575,
- -0.0957358181476593,
- -0.04872150346636772,
- 0.008752290159463882,
- 0.1257261037826538,
- 0.03206817805767059,
- -0.04067322239279747,
- 0.02204442024230957,
- 0.11923553794622421,
- -0.01085095014423132,
- 0.06322361528873444,
- 0.008599430322647095,
- 0.03347664326429367,
- 0.01891295425593853,
- -0.06251031160354614,
- -0.04057363420724869,
- 0.010127849876880646,
- -0.044758789241313934,
- -0.036917414516210556,
- 0.01020861603319645,
- -0.08551464229822159,
- -0.01236443780362606,
- 0.05461755022406578,
- 0.045028530061244965,
- 0.029486656188964844,
- -0.011808415874838829,
- -0.023228146135807037,
- -0.08280325680971146,
- -0.039923202246427536,
- -0.04650184512138367,
- -0.01998208835721016,
- -0.01750084012746811,
- -0.0572831816971302,
- 0.02996128238737583,
- 0.06929504871368408,
- -0.007885157130658627,
- 0.06932984292507172,
- 0.033978305757045746,
- -0.016829388216137886,
- 0.013322833925485611,
- -0.011613400653004646,
- 0.16695596277713776,
- 0.10359900444746017,
- 0.09233460575342178,
- -0.07256054133176804
- ]
- },
- {
- "keyword": "needs",
- "type": "requires",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07143232226371765,
- 0.020659953355789185,
- -0.03538971394300461,
- -0.013567030429840088,
- 0.022800365462899208,
- -0.016850151121616364,
- 0.05510544404387474,
- -0.03749987855553627,
- -0.08263760060071945,
- -0.00720559386536479,
- -0.06025998666882515,
- -0.0785786584019661,
- -0.06695972383022308,
- 0.04597296938300133,
- 0.035166386514902115,
- 0.06548230350017548,
- 0.08389844000339508,
- 0.03415948152542114,
- -0.07618246972560883,
- -0.015362157486379147,
- -0.03717833012342453,
- 0.036242567002773285,
- 0.049949608743190765,
- -0.04404916614294052,
- -0.1405312418937683,
- 0.0031004638876765966,
- -0.05002101883292198,
- -0.05471276491880417,
- 0.024851689115166664,
- -0.03752515837550163,
- 0.06026091426610947,
- 0.024595463648438454,
- 0.07641693949699402,
- 0.03274959698319435,
- -0.00434378907084465,
- 0.06634708493947983,
- 0.03711404278874397,
- -0.022017788141965866,
- -0.03263453021645546,
- -0.016572115942835808,
- -0.0210849829018116,
- -0.08259689807891846,
- -0.012965625151991844,
- 0.04411846771836281,
- -0.04337861016392708,
- 0.008216742426156998,
- 0.011538530699908733,
- -0.039504989981651306,
- 0.1251233071088791,
- -0.00265930755995214,
- -0.03127995505928993,
- -0.010596559382975101,
- 0.06335726380348206,
- -0.009521634317934513,
- 0.06501732021570206,
- -0.030960073694586754,
- 0.05747436359524727,
- 0.032221563160419464,
- 0.037911176681518555,
- 0.005319863557815552,
- 0.007140787318348885,
- 0.05385086312890053,
- -0.05237067863345146,
- 0.02057475969195366,
- -0.01604779250919819,
- 0.027043618261814117,
- -0.03747185692191124,
- 0.03688643127679825,
- 0.014367353171110153,
- 0.048161718994379044,
- -0.04573136940598488,
- 0.03480081260204315,
- -0.0716504156589508,
- -0.040297143161296844,
- -0.02557104080915451,
- -0.01992172747850418,
- 0.008597391657531261,
- -0.05861164256930351,
- 0.06581563502550125,
- -0.011183506809175014,
- -0.09847313165664673,
- 0.0763314738869667,
- -0.04071097448468208,
- 0.06309513747692108,
- 0.02508913353085518,
- 0.0009943528566509485,
- 0.0054028211161494255,
- -0.06368256360292435,
- -0.09966180473566055,
- -0.012454790994524956,
- -0.01455606147646904,
- 0.03213496878743172,
- -0.014501018449664116,
- -0.013064024969935417,
- -0.034055665135383606,
- 0.015198602341115475,
- 0.04485078528523445,
- -0.06637279689311981,
- -0.10822949558496475,
- 0.2648455500602722,
- -0.033289045095443726,
- -0.006004233378916979,
- 0.11225013434886932,
- -0.012462323531508446,
- -0.06965748220682144,
- -0.023669874295592308,
- -0.04395236819982529,
- 0.08473069965839386,
- -0.0358104482293129,
- 0.03632919117808342,
- 0.006427589803934097,
- -0.009817967191338539,
- -0.0030631450936198235,
- -0.007783106062561274,
- 0.10750659555196762,
- -0.0031887188088148832,
- 0.02194035053253174,
- 0.01432845089584589,
- 0.0684494599699974,
- 0.006074379663914442,
- 0.010928508825600147,
- -0.01836155168712139,
- -0.0032972374465316534,
- 0.01855112612247467,
- 0.01043758261948824,
- -0.19086377322673798,
- -0.0049338312819600105,
- -6.685269267944606e-33,
- 0.051943499594926834,
- 0.01892952434718609,
- -0.025166386738419533,
- 0.07531970739364624,
- 0.024211624637246132,
- 0.014916271902620792,
- -0.024559088051319122,
- -0.047710221260786057,
- -0.018495183438062668,
- -0.09556920826435089,
- -0.02072916552424431,
- 0.11324915289878845,
- -0.11469821631908417,
- -0.010922230780124664,
- 0.07931412011384964,
- 0.03343562036752701,
- 0.08720356225967407,
- -0.02933396026492119,
- -0.01231524720788002,
- -0.02408231608569622,
- -0.030146634206175804,
- -0.03576287627220154,
- -0.02848501317203045,
- 0.07356850057840347,
- -0.029451487585902214,
- 0.06641563773155212,
- 0.035224150866270065,
- -0.013333032839000225,
- 0.05414324998855591,
- 0.02532147616147995,
- 0.012435436248779297,
- -0.028850607573986053,
- -0.048324208706617355,
- -0.03930813446640968,
- 0.01716047152876854,
- 0.02084261178970337,
- -0.024068355560302734,
- -0.028001051396131516,
- -0.022644896060228348,
- -0.07862113416194916,
- 0.02951497584581375,
- 0.03363519906997681,
- -0.06415657699108124,
- 0.04661940783262253,
- 0.030480975285172462,
- -0.027387795969843864,
- 0.05775720998644829,
- 0.03891642019152641,
- 0.042367253452539444,
- 0.03476905822753906,
- -0.014757704921066761,
- -0.0033524022437632084,
- -0.06539411842823029,
- -0.040096674114465714,
- -0.023299621418118477,
- 0.013133815489709377,
- 0.012149628251791,
- -0.033054981380701065,
- 0.047890231013298035,
- -0.036623578518629074,
- 0.04763692989945412,
- 0.003921275492757559,
- -0.017238914966583252,
- -0.007355332374572754,
- 0.07434502243995667,
- -0.004831953439861536,
- -0.03264153376221657,
- -0.00845852866768837,
- 0.00994553230702877,
- -0.040471505373716354,
- -0.13662733137607574,
- -0.010672868229448795,
- 0.04666856676340103,
- 0.0671072006225586,
- -0.04119624197483063,
- 0.012767794542014599,
- 0.023815186694264412,
- -0.05987551808357239,
- -0.02069510705769062,
- 0.03179595246911049,
- 0.04550570249557495,
- -0.04360594600439072,
- 0.007761601358652115,
- 0.04833675175905228,
- 0.11739805340766907,
- -0.05792008340358734,
- 0.03628768399357796,
- -0.061505697667598724,
- -0.026954062283039093,
- -0.02739410661160946,
- -0.035646311938762665,
- 0.018574221059679985,
- -0.029741736128926277,
- 0.022188518196344376,
- -0.05158086121082306,
- 5.000513295463671e-33,
- -0.02565797232091427,
- -0.015291981399059296,
- -0.05522395670413971,
- 0.11454680562019348,
- 0.02984856627881527,
- 0.014422879554331303,
- -0.022734906524419785,
- -0.044593412429094315,
- 0.011496726423501968,
- 0.09299344569444656,
- -0.07146621495485306,
- -0.03218929097056389,
- -0.027881989255547523,
- -0.049832526594400406,
- -0.050288666039705276,
- 0.026954293251037598,
- 0.04648573324084282,
- -0.04820742458105087,
- 0.04237091913819313,
- -0.04270832613110542,
- -0.028974680230021477,
- 0.06161040440201759,
- 0.010809963569045067,
- 0.035852160304784775,
- -0.052311189472675323,
- 0.11507859081029892,
- -0.035673949867486954,
- -0.021108366549015045,
- -0.08631347864866257,
- -0.026671452447772026,
- 0.0466817170381546,
- -0.08342376351356506,
- -0.04170455038547516,
- 0.051354821771383286,
- -0.01651359535753727,
- -0.033194493502378464,
- 0.03565291687846184,
- 0.11497388780117035,
- -0.08111075311899185,
- 0.01666753925383091,
- 0.06334681063890457,
- 0.02672570012509823,
- 0.010234885849058628,
- 0.13463905453681946,
- -0.03222953900694847,
- 0.041860222816467285,
- 0.07159387320280075,
- 0.019661584869027138,
- -0.013112606480717659,
- 0.007489379029721022,
- 0.01140355784446001,
- 0.005927268881350756,
- -0.0400506928563118,
- 0.020620042458176613,
- -0.02229844592511654,
- -0.0139896459877491,
- -0.09240411221981049,
- -0.012677754275500774,
- 0.05748516693711281,
- 0.0010794296395033598,
- -0.05808495357632637,
- 0.0738348588347435,
- -0.09594499319791794,
- 0.003192218951880932,
- -0.017819149419665337,
- -0.04036852344870567,
- 0.029186900705099106,
- -0.14309127628803253,
- -0.02130642533302307,
- -0.0662839487195015,
- 0.05035129934549332,
- -0.0018758692312985659,
- 0.024000920355319977,
- -0.0038261134177446365,
- -0.00509748887270689,
- 0.04541927948594093,
- -0.05310507118701935,
- -0.05037882179021835,
- 0.02051411382853985,
- 0.04908272251486778,
- -0.02517567202448845,
- -0.10114720463752747,
- 0.028832843527197838,
- 0.011515754275023937,
- 0.04139866307377815,
- 0.003846221836283803,
- 0.060131173580884933,
- 0.007501072250306606,
- -0.012530834414064884,
- -0.014009340666234493,
- 0.02557837776839733,
- 0.04222273826599121,
- -0.017924673855304718,
- 0.03562530502676964,
- 0.0060961488634347916,
- -1.4960351180093312e-8,
- 0.012161402963101864,
- -0.00034336710814386606,
- -0.019458459690213203,
- -0.05527826026082039,
- 0.026773717254400253,
- 0.0195000022649765,
- 0.01764281652867794,
- -0.021347425878047943,
- 0.029484054073691368,
- 0.04542373865842819,
- -0.0075234305113554,
- 0.07521432638168335,
- 0.025959936901926994,
- 0.09816252440214157,
- -0.009781809523701668,
- -0.029795749112963676,
- 0.01451472844928503,
- 0.0384739451110363,
- -0.06313124299049377,
- -0.010123562067747116,
- -0.1088743582367897,
- -0.015274112112820148,
- 0.0038132457993924618,
- 0.06339910626411438,
- 0.06159008666872978,
- 0.003693023230880499,
- 0.009092998690903187,
- 0.05634090676903725,
- -0.021342335268855095,
- 0.025463072583079338,
- -0.0034446087665855885,
- 0.047571539878845215,
- 0.05695365369319916,
- -0.012415880337357521,
- -0.03849877789616585,
- 0.02919202856719494,
- -0.05587434768676758,
- -0.021015994250774384,
- -0.00235977815464139,
- -0.09794531762599945,
- -0.008489537984132767,
- 0.10295610874891281,
- 0.01601901650428772,
- -0.009703907184302807,
- -0.021739335730671883,
- -0.03593716770410538,
- -0.0073774331249296665,
- 0.0007521964726038277,
- -0.013098671101033688,
- -0.05363326519727707,
- 0.002006777096539736,
- -0.051917627453804016,
- 0.0022157945204526186,
- 0.08413764834403992,
- -0.017454417422413826,
- 0.004822032991796732,
- 0.024348663166165352,
- -0.022297773510217667,
- 0.08951601386070251,
- 0.007442493923008442,
- 0.13931870460510254,
- 0.1304735392332077,
- 0.02440718561410904,
- -0.01930810511112213
- ]
- },
- {
- "keyword": "necessitates",
- "type": "requires",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.03448137640953064,
- 0.0198502354323864,
- -0.00992894358932972,
- 0.006051166448742151,
- 0.010208449326455593,
- -0.024520965293049812,
- 0.0922233909368515,
- -0.03897484019398689,
- -0.03480161726474762,
- 0.004796942230314016,
- 0.031206907704472542,
- -0.08595867455005646,
- 0.012290180660784245,
- 0.04438663274049759,
- 0.058707356452941895,
- -0.022414274513721466,
- 0.09476735442876816,
- -0.016867080703377724,
- -0.14728908240795135,
- 0.08195453137159348,
- 0.03116854839026928,
- -0.03306043520569801,
- -0.008515449240803719,
- -0.03315823897719383,
- -0.05266360193490982,
- 0.040431130677461624,
- -0.018442891538143158,
- -0.08875159174203873,
- 0.11009174585342407,
- -0.0251200832426548,
- -0.0021619631443172693,
- 0.04350477084517479,
- -0.0046457331627607346,
- 0.013492489233613014,
- 0.02697565034031868,
- 0.018857726827263832,
- 0.031256671994924545,
- -0.051137275993824005,
- 0.03976899012923241,
- -0.00668305205181241,
- -0.033237434923648834,
- -0.013031130656599998,
- -0.07147817313671112,
- 0.06939949840307236,
- -0.000776397529989481,
- 0.011237910017371178,
- -0.07457391172647476,
- 0.02552526816725731,
- 0.036839574575424194,
- -0.05672309920191765,
- -0.07691531628370285,
- -0.0760015994310379,
- -0.018364958465099335,
- 0.02543339692056179,
- 0.0006814394728280604,
- -0.049538031220436096,
- 0.010257902555167675,
- 0.011504077352583408,
- -0.04702567309141159,
- -0.03801783174276352,
- 0.01615791581571102,
- -0.0071348450146615505,
- 0.022442590445280075,
- 0.007736400235444307,
- 0.05956682935357094,
- -0.0032430386636406183,
- -0.010319402441382408,
- 0.02517067827284336,
- 0.0347728431224823,
- 0.1210390105843544,
- -0.0067718434147536755,
- -0.012283327989280224,
- -0.0868765264749527,
- 0.05205203592777252,
- -0.09003843367099762,
- -0.012629613280296326,
- 0.02265208587050438,
- -0.0872117280960083,
- -0.01481423620134592,
- -0.04944959282875061,
- -0.02078251540660858,
- -0.0392749160528183,
- 0.05182785540819168,
- 0.04143703356385231,
- 0.024555984884500504,
- -0.015494856052100658,
- -0.01651822403073311,
- -0.056145451962947845,
- 0.010923684574663639,
- 0.052141331136226654,
- -0.03355558589100838,
- -0.0009983598720282316,
- -0.07779835909605026,
- -0.006253945175558329,
- -0.045679088681936264,
- 0.03979363292455673,
- -0.0570698082447052,
- 0.07435695081949234,
- -0.13949692249298096,
- 0.17745980620384216,
- -0.10290388762950897,
- 0.019331777468323708,
- -0.026935651898384094,
- -0.03499342128634453,
- 0.014384521171450615,
- -0.0010402636835351586,
- -0.1473473608493805,
- -0.01743980497121811,
- 0.023045092821121216,
- 0.0011027364525943995,
- -0.009018689393997192,
- -0.054179392755031586,
- 0.034889183938503265,
- -0.014166257344186306,
- 0.01176705677062273,
- 0.028912926092743874,
- 0.07808554172515869,
- -0.037561096251010895,
- 0.006197204347699881,
- 0.01751677133142948,
- 0.018339896574616432,
- -0.009162509813904762,
- 0.05530650541186333,
- 0.007963929325342178,
- -0.06434133648872375,
- -0.15971744060516357,
- -0.01519762072712183,
- -2.5394963022012142e-33,
- 0.013009507209062576,
- 0.012139253318309784,
- 0.021192779764533043,
- 0.06048819050192833,
- -0.00756845623254776,
- -0.022846324369311333,
- -0.006840366404503584,
- -0.015060150064527988,
- 0.041852302849292755,
- -0.05540824308991432,
- -0.004848173353821039,
- -0.07538757473230362,
- -0.034782931208610535,
- 0.0191749706864357,
- 0.06105629354715347,
- -0.07314227521419525,
- 0.01623605377972126,
- 0.017781168222427368,
- 0.02380758710205555,
- -0.00012202879588585347,
- 0.038345880806446075,
- 0.05942277982831001,
- -0.008677048608660698,
- -0.028290923684835434,
- -0.07397253066301346,
- -0.03899307921528816,
- -0.05507296696305275,
- -0.02352815493941307,
- 0.01618688553571701,
- 0.01638204976916313,
- 0.05804009363055229,
- -0.01881721429526806,
- 0.0031740518752485514,
- -0.018551254644989967,
- -0.047133494168519974,
- 0.10138426721096039,
- -0.01774531789124012,
- -0.012827573344111443,
- 0.01651366613805294,
- -0.03537755459547043,
- 0.04274015501141548,
- 0.02163071185350418,
- 0.020491817966103554,
- -0.017450369894504547,
- 0.06497029215097427,
- 0.031735073775053024,
- 0.07149828225374222,
- -0.0003774169890675694,
- 0.026717202737927437,
- 0.07400801032781601,
- 0.06295314431190491,
- -0.017804164439439774,
- 0.06741257756948471,
- -0.0763472467660904,
- -0.022913722321391106,
- 0.006674796808511019,
- 0.010302265174686909,
- -0.05925024300813675,
- 0.03327187895774841,
- -0.018810685724020004,
- 0.005634755361825228,
- -0.0909384936094284,
- -0.08050107955932617,
- 0.06648848205804825,
- -0.037112608551979065,
- -0.059691332280635834,
- -0.06066630035638809,
- -0.040875375270843506,
- 0.015275748446583748,
- -0.02726934291422367,
- -0.13805221021175385,
- -0.005698257591575384,
- -0.06888057291507721,
- 0.01791943795979023,
- -0.007022930309176445,
- -0.0025414815172553062,
- -0.0013043161015957594,
- -0.02978569269180298,
- -0.03496513143181801,
- 0.047829970717430115,
- 0.06379343569278717,
- 0.0056304531171917915,
- 0.010354544967412949,
- 0.07085125893354416,
- 0.09045786410570145,
- -0.0169264804571867,
- 0.056290704756975174,
- -0.047077350318431854,
- 0.047007061541080475,
- 0.05170734226703644,
- -0.03491785004734993,
- 0.01945696584880352,
- -0.05581343546509743,
- -0.03454975783824921,
- -0.015230207704007626,
- 6.097950413287543e-34,
- -0.014935222454369068,
- -0.04013902321457863,
- -0.06880946457386017,
- 0.16378074884414673,
- 0.07091502845287323,
- 0.02776397578418255,
- -0.03804312273859978,
- -0.09859707206487656,
- -0.03648146986961365,
- -0.006161524448543787,
- -0.02274187095463276,
- -0.04465465992689133,
- 0.04162700101733208,
- 0.05065551772713661,
- -0.033906225115060806,
- -0.01779886893928051,
- 0.0055941808968782425,
- 0.0459720604121685,
- -0.027199622243642807,
- -0.01809629239141941,
- -0.027982542291283607,
- 0.020103739574551582,
- -0.031079940497875214,
- -0.05920310318470001,
- -0.016706712543964386,
- 0.08727526664733887,
- -0.012320121750235558,
- 0.007186595816165209,
- -0.06900861114263535,
- 0.05603868514299393,
- 0.07127169519662857,
- 0.02281315065920353,
- -0.042423076927661896,
- -0.034251078963279724,
- 0.013574811629951,
- 0.060387685894966125,
- 0.06900479644536972,
- 0.11675363779067993,
- -0.07918068766593933,
- -0.03567686676979065,
- -0.0014334521256387234,
- 0.05610531568527222,
- -0.010578345507383347,
- 0.1310291439294815,
- -0.055091410875320435,
- -0.03643244877457619,
- 0.04764775559306145,
- -0.03460964933037758,
- 0.04140743985772133,
- -0.048225805163383484,
- 0.05954529717564583,
- -0.020893819630146027,
- -0.05170884728431702,
- 0.0026265177875757217,
- -0.01440906710922718,
- -0.020773103460669518,
- -0.09237074106931686,
- -0.0456092432141304,
- 0.12014764547348022,
- -0.04049600288271904,
- 0.04447920620441437,
- 0.08205639570951462,
- -0.07834602892398834,
- -0.03258063644170761,
- 0.04254010319709778,
- -0.008667852729558945,
- 0.028316300362348557,
- 0.025683876127004623,
- -0.017633359879255295,
- -0.003990348894149065,
- -0.003904806450009346,
- 0.035057179629802704,
- -0.12066490203142166,
- -0.04462297633290291,
- 0.022910723462700844,
- 0.00220269663259387,
- 0.010882269591093063,
- -0.011165029369294643,
- -0.03336690738797188,
- -0.04358600080013275,
- -0.05935758352279663,
- -0.09251494705677032,
- -0.03188261762261391,
- 0.04047597199678421,
- -0.0006259290967136621,
- -0.016138924285769463,
- 0.0226325411349535,
- 0.00019914704898837954,
- -0.034902751445770264,
- 0.05684415251016617,
- -0.036185119301080704,
- -0.004546782001852989,
- 0.0730821043252945,
- 0.036674510687589645,
- 0.006381361745297909,
- -1.8183706984586934e-8,
- -0.007456167601048946,
- 0.005364681128412485,
- -0.04324585944414139,
- -0.03834216296672821,
- 0.02115018293261528,
- -0.02168884500861168,
- 0.04451267048716545,
- -0.04834733158349991,
- 0.009396495297551155,
- 0.05761872977018356,
- 0.03201477229595184,
- 0.022837596014142036,
- 0.014235293492674828,
- 0.10018850117921829,
- 0.032813508063554764,
- -0.03998376429080963,
- 0.022837014868855476,
- -0.004212964326143265,
- -0.10404712706804276,
- 0.026261990889906883,
- -0.08107154071331024,
- 0.009261799044907093,
- 0.008146259002387524,
- -0.00779035734012723,
- 0.08314584195613861,
- 0.008723381906747818,
- 0.10131805390119553,
- 0.050586629658937454,
- 0.05207178369164467,
- 0.09516832232475281,
- 0.03861258924007416,
- 0.10624267905950546,
- 0.030262907966971397,
- -0.020844925194978714,
- -0.06520311534404755,
- -0.036215558648109436,
- -0.011645871214568615,
- 0.010854155756533146,
- -0.06193213537335396,
- -0.08550533652305603,
- -0.0014524002326652408,
- 0.0053910198621451855,
- 0.041876498609781265,
- 0.03626478090882301,
- 0.024722948670387268,
- -0.08584406971931458,
- 0.039221540093421936,
- 0.0105711305513978,
- -0.05688668414950371,
- -0.007200183346867561,
- -0.014291966333985329,
- 0.02136290818452835,
- 0.013737324625253677,
- 0.1441974639892578,
- 0.04150113835930824,
- 0.014228692278265953,
- 0.03254394605755806,
- 0.04957333207130432,
- -0.05852298438549042,
- 0.024258268997073174,
- 0.12067317962646484,
- 0.05722574517130852,
- 0.07906585931777954,
- -0.06997865438461304
- ]
- },
- {
- "keyword": "demands",
- "type": "requires",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.08673592656850815,
- 0.09212300926446915,
- 0.0004332610697019845,
- 0.06200190261006355,
- -0.021166449412703514,
- -0.018100911751389503,
- 0.09439337253570557,
- -0.033669475466012955,
- -0.007918706163764,
- -0.034291524440050125,
- -0.05150703340768814,
- -0.12206458300352097,
- 0.020420121029019356,
- 0.03665658086538315,
- 0.025942139327526093,
- -0.03353109955787659,
- 0.027218010276556015,
- -0.058179907500743866,
- -0.05498358979821205,
- 0.040735017508268356,
- -0.006318517494946718,
- 0.014063972048461437,
- -0.058795955032110214,
- -0.013634846545755863,
- -0.07718406617641449,
- 0.0434204638004303,
- -0.013443618081510067,
- 0.037265270948410034,
- 0.06896953284740448,
- -0.04337182268500328,
- 0.028793638572096825,
- -0.03944281488656998,
- 0.060078173875808716,
- 0.018965380266308784,
- 0.014638599008321762,
- 0.0610169991850853,
- 0.007255254313349724,
- -0.056080400943756104,
- -0.039632443338632584,
- -0.04765957593917847,
- -0.013917610980570316,
- -0.055481184273958206,
- -0.007748391944915056,
- 0.0012472706148400903,
- -0.0292426198720932,
- 0.011713016778230667,
- 0.03079606220126152,
- 0.030437197536230087,
- 0.015898369252681732,
- -0.013404438272118568,
- 0.016469858586788177,
- -0.0627359077334404,
- -0.0023854903411120176,
- 0.02939179539680481,
- 0.01585155352950096,
- -0.06007634103298187,
- 0.05940469354391098,
- -0.006986966822296381,
- 0.04998195543885231,
- -0.001283000921830535,
- 0.0044906786642968655,
- -0.029884710907936096,
- -0.02328181266784668,
- 0.058298010379076004,
- 0.07975149899721146,
- 0.0275229774415493,
- -0.01301516778767109,
- -0.005692021455615759,
- -0.04671034961938858,
- 0.0859208032488823,
- -0.03248784691095352,
- -0.0034642822574824095,
- -0.0490301139652729,
- -0.0026985271833837032,
- 0.05395165830850601,
- -0.049232106655836105,
- -0.005999421700835228,
- -0.06840825080871582,
- 0.054229799658060074,
- -0.07093317806720734,
- 0.007688502781093121,
- -0.010183373466134071,
- -0.06551049649715424,
- 0.08444550633430481,
- -0.0336621031165123,
- -0.05779214948415756,
- 0.03043833002448082,
- -0.013609793037176132,
- 0.0018517014104872942,
- 0.007575036026537418,
- 0.02222449891269207,
- -0.03965696319937706,
- 0.022629091516137123,
- 0.05583072826266289,
- -0.05543084070086479,
- -0.022242700681090355,
- 0.009986658580601215,
- -0.04116436466574669,
- -0.11163458973169327,
- 0.23857654631137848,
- -0.009444348514080048,
- 0.023686937987804413,
- 0.049929648637771606,
- 0.01678849570453167,
- -0.05995664745569229,
- -0.1043567880988121,
- -0.07668337970972061,
- -0.009149647317826748,
- -0.06519588828086853,
- 0.07049120962619781,
- -0.02069028653204441,
- -0.026457736268639565,
- -0.02604677714407444,
- -0.036838699132204056,
- 0.06674011051654816,
- -0.003603416495025158,
- 0.029196497052907944,
- 0.02891920693218708,
- 0.007162677589803934,
- 0.015989655628800392,
- -0.03651835024356842,
- -0.02097191847860813,
- -0.06766270846128464,
- 0.020368779078125954,
- -0.018006492406129837,
- -0.031503334641456604,
- -0.04379507526755333,
- -6.38847457677724e-33,
- 0.029007229954004288,
- -0.06287331879138947,
- 0.030648481100797653,
- 0.0760369598865509,
- -0.04037578031420708,
- 0.03194253146648407,
- 0.01869754120707512,
- 0.07873177528381348,
- -0.010536259040236473,
- -0.03703667223453522,
- -0.014029976911842823,
- 0.06475894898176193,
- 0.0010437329765409231,
- -0.014226206578314304,
- 0.06376367807388306,
- -0.01199190691113472,
- 0.010973925702273846,
- 0.023653602227568626,
- 0.007367248181253672,
- 0.04690149798989296,
- -0.04530876502394676,
- 0.00881254207342863,
- -0.02324127033352852,
- 0.05552368238568306,
- -0.02106318436563015,
- -0.0327661894261837,
- -0.00788651779294014,
- -0.005237015429884195,
- -0.03732292726635933,
- -0.01211516559123993,
- 0.03745038062334061,
- -0.006448131520301104,
- -0.020270751789212227,
- -0.02854742668569088,
- -0.04658936709165573,
- -0.023033378645777702,
- 0.05894213542342186,
- -0.021092679351568222,
- -0.031861599534749985,
- -0.10501690208911896,
- 0.013032964430749416,
- 0.028564240783452988,
- 0.028311097994446754,
- 0.03561170771718025,
- 0.06500265002250671,
- -0.010837470181286335,
- 0.08175278455018997,
- -0.04215560853481293,
- -0.05031787231564522,
- 0.07388021796941757,
- -0.030162766575813293,
- 0.02213413640856743,
- -0.019956452772021294,
- 0.0004658298857975751,
- 0.010839260183274746,
- -0.05543065071105957,
- -0.043653011322021484,
- -0.05046284943819046,
- 0.04378333315253258,
- -0.044131629168987274,
- 0.0659361407160759,
- -0.030036726966500282,
- 0.01908719912171364,
- 0.048077672719955444,
- 0.06121394783258438,
- 0.04242609068751335,
- -0.05179600045084953,
- 0.025653446093201637,
- 0.011401665396988392,
- 0.00007218396058306098,
- -0.12711535394191742,
- -0.09170673787593842,
- 0.06133776158094406,
- -0.00901666097342968,
- -0.015428044833242893,
- 0.032351359724998474,
- 0.0067854393273591995,
- -0.03125069662928581,
- -0.04423196613788605,
- -0.010892882943153381,
- -0.010710199363529682,
- 0.007685292977839708,
- 0.06942138075828552,
- 0.0731380432844162,
- 0.07926565408706665,
- -0.0102572962641716,
- -0.021581707522273064,
- -0.07907906174659729,
- 0.06876976042985916,
- 0.034412022680044174,
- -0.11743033677339554,
- 0.014021054841578007,
- -0.020394843071699142,
- 0.08880045264959335,
- 0.03750718757510185,
- 3.977961779942902e-33,
- -0.0021414989605545998,
- 0.06272099167108536,
- -0.12196151912212372,
- 0.07587524503469467,
- 0.12116405367851257,
- -0.030088895931839943,
- -0.016619279980659485,
- -0.03131570294499397,
- 0.014925584197044373,
- 0.08405307680368423,
- -0.08697947859764099,
- -0.1187649667263031,
- -0.0084010548889637,
- 0.062362298369407654,
- -0.03674786537885666,
- -0.06479788571596146,
- 0.041722074151039124,
- 0.019146211445331573,
- 0.00016065567615441978,
- -0.005109779071062803,
- -0.056726012378931046,
- 0.019597195088863373,
- -0.07056634873151779,
- -0.04752866551280022,
- -0.04183617979288101,
- 0.09013494849205017,
- 0.02038484998047352,
- -0.05558077245950699,
- -0.06328558176755905,
- 0.030380479991436005,
- 0.022409548982977867,
- -0.04727159067988396,
- -0.10935711115598679,
- 0.06941729784011841,
- 0.009445743635296822,
- 0.01887310855090618,
- 0.00048153699026443064,
- 0.18933896720409393,
- -0.08841697126626968,
- 0.0372886098921299,
- 0.046800415962934494,
- 0.004983155522495508,
- 0.05150740221142769,
- 0.15929709374904633,
- -0.0390666201710701,
- 0.0323953740298748,
- 0.1485830843448639,
- -0.08929522335529327,
- -0.039585649967193604,
- 0.056203749030828476,
- 0.01857610046863556,
- 0.0007866246160119772,
- -0.03904551640152931,
- 0.04101664572954178,
- 0.0029343843925744295,
- -0.09124339371919632,
- -0.08662016689777374,
- -0.0299974475055933,
- 0.019422534853219986,
- 0.011281952261924744,
- 0.007322985213249922,
- 0.06951387971639633,
- -0.06322330981492996,
- -0.029243117198348045,
- -0.010389999486505985,
- -0.03835418075323105,
- 0.019777799025177956,
- -0.05739802122116089,
- 0.046515464782714844,
- -0.00603457260876894,
- 0.011008725501596928,
- -0.05556869879364967,
- 0.03803693503141403,
- 0.023421548306941986,
- 0.029537662863731384,
- 0.008803915232419968,
- -0.07664059847593307,
- -0.04421364143490791,
- -0.020253434777259827,
- 0.0019395173294469714,
- -0.014107915572822094,
- -0.07044610381126404,
- 0.0016745427856221795,
- 0.03842676430940628,
- -0.05290700122714043,
- 0.03508748859167099,
- 0.02288588508963585,
- 0.0775287002325058,
- 0.0228863712400198,
- 0.025288769975304604,
- 0.055036742240190506,
- 0.03739112988114357,
- 0.011204227805137634,
- 0.004616328980773687,
- 0.035695891827344894,
- -1.271052241236248e-8,
- -0.002675398951396346,
- 0.0021601857151836157,
- 0.034427713602781296,
- -0.08517307043075562,
- 0.0757274329662323,
- -0.0029049913864582777,
- 0.012489051558077335,
- -0.017214355990290642,
- 0.019001441076397896,
- 0.081739142537117,
- -0.005284315440803766,
- -0.00035569159081205726,
- 0.06467144191265106,
- 0.029918741434812546,
- 0.021111277863383293,
- 0.0763009786605835,
- 0.011281071230769157,
- 0.0032324029598385096,
- -0.057882003486156464,
- -0.0035828142426908016,
- -0.08146513253450394,
- -0.011103596538305283,
- -0.00023585523013025522,
- -0.002192642306908965,
- 0.025083329528570175,
- 0.00036814052145928144,
- -0.002337955404073,
- 0.024095896631479263,
- -0.009317602962255478,
- 0.04046894237399101,
- -0.010074485093355179,
- 0.04417884722352028,
- -0.0278761126101017,
- -0.07878384739160538,
- -0.04419662058353424,
- 0.010005398653447628,
- -0.07806163281202316,
- 0.0014068903401494026,
- -0.00004616748628905043,
- -0.026519903913140297,
- -0.02555946260690689,
- 0.033590059727430344,
- 0.0874989852309227,
- 0.009951157495379448,
- -0.031093008816242218,
- 0.04086286574602127,
- -0.07521995157003403,
- 0.07979045063257217,
- -0.03684493154287338,
- -0.05641108378767967,
- -0.04160240292549133,
- -0.051931366324424744,
- 0.05184392258524895,
- 0.11318620294332504,
- 0.018570713698863983,
- -0.010076252743601799,
- -0.0023611600045114756,
- 0.003750974079594016,
- -0.04543464258313179,
- 0.05061950907111168,
- 0.19960664212703705,
- 0.057969313114881516,
- 0.0007111699669621885,
- 0.002553022699430585
- ]
- },
- {
- "keyword": "calls for",
- "type": "requires",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.10005956888198853,
- 0.04485992714762688,
- -0.014943299815058708,
- -0.0037036635912954807,
- -0.033567074686288834,
- 0.04540807008743286,
- 0.13593168556690216,
- 0.022299302741885185,
- 0.07849115878343582,
- -0.025025825947523117,
- -0.03680328652262688,
- 0.010892852209508419,
- -0.05006415396928787,
- -0.00714294845238328,
- -0.018637673929333687,
- -0.012167312204837799,
- -0.01626327820122242,
- 0.021737374365329742,
- -0.06327551603317261,
- 0.003158062230795622,
- -0.04294494166970253,
- 0.08549711853265762,
- -0.053177133202552795,
- -0.018644025549292564,
- -0.02933396026492119,
- -0.03620127961039543,
- -0.053456030786037445,
- -0.05198792740702629,
- 0.08949694037437439,
- -0.01747027598321438,
- 0.056834954768419266,
- 0.03190506622195244,
- 0.06855335086584091,
- -0.0006293123005889356,
- -0.06557793915271759,
- 0.051402632147073746,
- 0.018915845081210136,
- -0.02056032605469227,
- 0.024919336661696434,
- 0.009563888423144817,
- 0.0011134096421301365,
- -0.13466182351112366,
- -0.03262072056531906,
- 0.005325833335518837,
- -0.01446801982820034,
- -0.02532419003546238,
- 0.014331999234855175,
- -0.08209571242332458,
- 0.08405794203281403,
- -0.04703142121434212,
- 0.01603248342871666,
- 0.0372699610888958,
- -0.05023588612675667,
- -0.018189864233136177,
- 0.023428043350577354,
- -0.00801119115203619,
- 0.06516905128955841,
- 0.009171124547719955,
- 0.04515805467963219,
- 0.027987085282802582,
- 0.037508588284254074,
- 0.01065131463110447,
- -0.07131556421518326,
- 0.06260514259338379,
- -0.10239163041114807,
- 0.010990062728524208,
- 0.010563014075160027,
- -0.009799271821975708,
- -0.004121876787394285,
- 0.0080050528049469,
- 0.001742469146847725,
- 0.07580911368131638,
- 0.037595830857753754,
- 0.029121117666363716,
- 0.0165085531771183,
- 0.06343930959701538,
- -0.0483057014644146,
- -0.09465251863002777,
- 0.03838883340358734,
- -0.05490795895457268,
- 0.07703835517168045,
- -0.06089969351887703,
- -0.016155030578374863,
- -0.041370391845703125,
- 0.0683354064822197,
- 0.033910274505615234,
- 0.011378055438399315,
- -0.0233012642711401,
- 0.05164346471428871,
- 0.011540896259248257,
- -0.05239742621779442,
- 0.0002177673450205475,
- -0.02681577578186989,
- 0.00786627922207117,
- -0.15705673396587372,
- 0.025291329249739647,
- 0.001973810140043497,
- -0.05515784025192261,
- -0.06983821094036102,
- 0.18377934396266937,
- 0.0008756655151955783,
- -0.0061460151337087154,
- -0.0206835325807333,
- -0.07423285394906998,
- 0.01630862057209015,
- -0.021068330854177475,
- -0.04502054303884506,
- 0.009327871724963188,
- 0.0424051433801651,
- -0.01903870515525341,
- -0.002326695714145899,
- 0.010080160573124886,
- -0.016011018306016922,
- 0.07240862399339676,
- 0.032406359910964966,
- -0.06933047622442245,
- -0.03453102707862854,
- -0.02014685794711113,
- 0.10396241396665573,
- -0.0380866713821888,
- 0.056540463119745255,
- 0.0699317678809166,
- -0.04542678967118263,
- 0.022951265797019005,
- -0.07957243174314499,
- -0.0819108784198761,
- 0.047920506447553635,
- -5.790510151405543e-33,
- 0.02455960027873516,
- -0.032025791704654694,
- 0.08359658718109131,
- 0.09717091172933578,
- -0.02077138051390648,
- -0.0020259676966816187,
- 0.013027775101363659,
- -0.012809393927454948,
- -0.04000170901417732,
- 0.008445601910352707,
- -0.0285500418394804,
- 0.006614537909626961,
- -0.011484816670417786,
- 0.004518014378845692,
- 0.11134719103574753,
- 0.016033271327614784,
- 0.03206026554107666,
- 0.009245616383850574,
- -0.07375067472457886,
- 0.045922957360744476,
- 0.0037686240393668413,
- 0.013900545425713062,
- 0.04987642168998718,
- 0.06501858681440353,
- -0.03268327936530113,
- 0.007910454645752907,
- -0.012305519543588161,
- -0.04238186404109001,
- 0.02101849764585495,
- 0.03490262106060982,
- 0.007717805448919535,
- -0.026730963960289955,
- -0.07752000540494919,
- 0.003617740934714675,
- 0.005900806747376919,
- 0.052295416593551636,
- 0.009083339013159275,
- -0.0024848822504281998,
- -0.09673430025577545,
- -0.056426119059324265,
- -0.03249979391694069,
- 0.0574394129216671,
- -0.06598449498414993,
- 0.027742670848965645,
- 0.08050689101219177,
- 0.008962659165263176,
- -0.06279556453227997,
- 0.051503174006938934,
- 0.01366743165999651,
- 0.03776662051677704,
- 0.006755437236279249,
- 0.04245256260037422,
- -0.06772115081548691,
- 0.022155500948429108,
- -0.01262128446251154,
- 0.010524016804993153,
- 0.028801850974559784,
- -0.0501580536365509,
- -0.016289252787828445,
- -0.027959000319242477,
- 0.12441536039113998,
- -0.1260143369436264,
- -0.10149677097797394,
- -0.0014843303943052888,
- -0.04657025635242462,
- 0.0450497604906559,
- 0.05630452558398247,
- -0.033931564539670944,
- -0.0452745147049427,
- 0.014559024013578892,
- -0.0208747461438179,
- -0.008732636459171772,
- 0.11480556428432465,
- 0.04420804604887962,
- 0.036147139966487885,
- -0.0269042756408453,
- -0.016966814175248146,
- -0.01720755733549595,
- -0.023096837103366852,
- 0.003791308030486107,
- 0.04102642461657524,
- -0.05204389616847038,
- -0.008569354191422462,
- -0.006656939163804054,
- 0.10251034051179886,
- 0.0019099299097433686,
- -0.023971129208803177,
- -0.12773609161376953,
- 0.007079276721924543,
- 0.08530689775943756,
- -0.10008298605680466,
- 0.04422912001609802,
- -0.06879851967096329,
- -0.042047642171382904,
- -0.10452267527580261,
- 3.984905278136415e-33,
- -0.02481289952993393,
- 0.05356142669916153,
- 0.005984592717140913,
- 0.03790267929434776,
- 0.042904749512672424,
- -0.04819754138588905,
- 0.0043603116646409035,
- -0.028117572888731956,
- -0.03775982931256294,
- -0.044320348650217056,
- -0.03045829012989998,
- -0.021668946370482445,
- 0.042423419654369354,
- 0.02048657275736332,
- 0.07694405317306519,
- -0.02178093045949936,
- 0.09055352210998535,
- -0.06669726967811584,
- 0.004832151345908642,
- -0.015327605418860912,
- -0.011125970631837845,
- 0.0051963478326797485,
- -0.003430002834647894,
- -0.029079383239150047,
- -0.05412346497178078,
- 0.04237517714500427,
- -0.05373292416334152,
- -0.001694224658422172,
- 0.04067845270037651,
- -0.04762352630496025,
- 0.02105092443525791,
- -0.033984437584877014,
- -0.08420997112989426,
- 0.017995495349168777,
- 0.02101600170135498,
- 0.08340182900428772,
- 0.12918223440647125,
- 0.08814597129821777,
- -0.012639407068490982,
- -0.0004623955755960196,
- 0.0757618248462677,
- 0.030682604759931564,
- 0.03338345140218735,
- 0.09440243244171143,
- -0.06431791931390762,
- -0.05152277648448944,
- 0.03950481861829758,
- 0.09306730329990387,
- -0.025555774569511414,
- -0.0012935231206938624,
- -0.07392103970050812,
- -0.01797022484242916,
- 0.02150522544980049,
- 0.1128913089632988,
- -0.06539347767829895,
- -0.032746151089668274,
- -0.0030341933015733957,
- -0.0451965294778347,
- 0.03780815750360489,
- 0.003349524224177003,
- -0.06607474386692047,
- 0.06483771651983261,
- -0.027963854372501373,
- -0.0424211286008358,
- -0.06718956679105759,
- 0.03951992839574814,
- 0.010717983357608318,
- -0.09247579425573349,
- 0.09100843966007233,
- 0.027243638411164284,
- -0.023677848279476166,
- 0.012953639961779118,
- -0.12897680699825287,
- 0.002384969498962164,
- -0.008197405375540257,
- 0.01856948435306549,
- -0.14988569915294647,
- -0.012831603176891804,
- 0.015034478157758713,
- 0.06266704201698303,
- -0.05019649863243103,
- -0.06074735149741173,
- 0.025019822642207146,
- 0.05742689222097397,
- -0.00734091829508543,
- 0.03000275418162346,
- 0.13317790627479553,
- 0.04755876958370209,
- -0.01892128214240074,
- -0.007131521590054035,
- 0.03440574184060097,
- 0.023342860862612724,
- 0.05626145750284195,
- 0.02572004869580269,
- 0.0038373484276235104,
- -1.4706726503277423e-8,
- 0.014288230799138546,
- 0.03698287904262543,
- 0.0003899283765349537,
- -0.009577362798154354,
- -0.046522025018930435,
- -0.02354944683611393,
- 0.005496676079928875,
- -0.04811893776059151,
- 0.020169585943222046,
- 0.02936668135225773,
- 0.0023954040370881557,
- -0.04372885823249817,
- 0.03495367243885994,
- 0.10032635182142258,
- 0.051825400441884995,
- 0.0050582559779286385,
- 0.004672620445489883,
- 0.00625463156029582,
- -0.07538066059350967,
- 0.06402938812971115,
- -0.12765048444271088,
- -0.05151746794581413,
- -0.016715627163648605,
- 0.06523963809013367,
- 0.02279038541018963,
- -0.011006270535290241,
- -0.0564112514257431,
- 0.12588191032409668,
- 0.018005182966589928,
- -0.01599864661693573,
- 0.047559868544340134,
- 0.08855406194925308,
- -0.05271729454398155,
- 0.0157972052693367,
- 0.017253166064620018,
- -0.08565139770507812,
- -0.02265731617808342,
- -0.056518226861953735,
- 0.06443549692630768,
- -0.040256258100271225,
- 0.020417114719748497,
- -0.023005526512861252,
- 0.02805759571492672,
- 0.018098333850502968,
- -0.027251211926341057,
- 0.015990355983376503,
- -0.00012901195441372693,
- 0.008836662396788597,
- -0.023507675155997276,
- -0.009368376806378365,
- -0.03361140936613083,
- 0.00414271280169487,
- 0.05205703526735306,
- 0.06170089915394783,
- 0.06160255894064903,
- 0.021960338577628136,
- 0.011542082764208317,
- -0.025031965225934982,
- 0.01332917995750904,
- 0.061598893254995346,
- 0.02358296513557434,
- -0.04378102347254753,
- -0.006326025351881981,
- 0.01579197682440281
- ]
- },
- {
- "keyword": "requirement",
- "type": "requires",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.01725083403289318,
- 0.05797727778553963,
- -0.04422043263912201,
- 0.00747213140130043,
- -0.03675465285778046,
- -0.038470253348350525,
- 0.06491044163703918,
- 0.029928281903266907,
- -0.05275984853506088,
- -0.024401729926466942,
- -0.012042809277772903,
- -0.16929936408996582,
- 0.000423702149419114,
- 0.0004605761496350169,
- -0.014444063417613506,
- 0.01851949840784073,
- 0.06755370646715164,
- -0.07373889535665512,
- -0.10768315196037292,
- -0.017647013068199158,
- 0.03353816270828247,
- -0.042762331664562225,
- 0.032374754548072815,
- -0.02861989289522171,
- -0.12062429636716843,
- -0.023537326604127884,
- 0.020844830200076103,
- 0.028853295370936394,
- 0.01920316368341446,
- -0.03978506848216057,
- 0.02444620244204998,
- -0.02187308296561241,
- 0.09736689180135727,
- -0.015433236956596375,
- 0.006777766160666943,
- 0.0315055213868618,
- 0.02813003771007061,
- -0.028526335954666138,
- 0.005183999426662922,
- 0.009577993303537369,
- -0.022810280323028564,
- -0.11833743005990982,
- 0.010691084899008274,
- -0.013746787793934345,
- -0.0019121504155918956,
- 0.0021337850484997034,
- -0.006476398557424545,
- 0.04067838937044144,
- 0.01693732477724552,
- 0.07266876846551895,
- -0.08027409017086029,
- -0.005541529972106218,
- -0.057186905294656754,
- 0.05595206469297409,
- -0.02601095288991928,
- -0.034489527344703674,
- -0.02460908330976963,
- 0.026696475222706795,
- -0.0067965486086905,
- 0.017783986404538155,
- 0.03370583429932594,
- -0.010718693025410175,
- -0.06169542670249939,
- 0.03300734981894493,
- 0.08601698279380798,
- -0.06640368700027466,
- 0.012044687755405903,
- -0.030338088050484657,
- -0.009697186760604382,
- 0.047384265810251236,
- -0.05982464179396629,
- 0.00899337138980627,
- -0.10371406376361847,
- 0.008507965132594109,
- -0.0161740705370903,
- -0.0394853875041008,
- -0.023338887840509415,
- -0.028194647282361984,
- 0.06322771310806274,
- -0.011958742514252663,
- -0.08047842234373093,
- 0.04372004047036171,
- -0.054088253527879715,
- 0.05935944616794586,
- 0.03698541969060898,
- 0.04171184450387955,
- 0.009320402517914772,
- 0.03713737428188324,
- -0.07412092387676239,
- 0.02099493518471718,
- 0.07103507220745087,
- 0.004490897059440613,
- 0.002780898939818144,
- -0.017751295119524002,
- -0.039531055837869644,
- 0.0077823749743402,
- 0.0071167354471981525,
- -0.05198913440108299,
- -0.013876319862902164,
- 0.2526998817920685,
- -0.015253391116857529,
- 0.0070760115049779415,
- 0.030575670301914215,
- -0.005374642089009285,
- -0.06575214117765427,
- -0.028914809226989746,
- -0.008635160513222218,
- 0.024569479748606682,
- 0.010636445134878159,
- 0.008036422543227673,
- -0.01891755498945713,
- -0.027472682297229767,
- -0.001791313523426652,
- -0.01820661872625351,
- 0.035643961280584335,
- -0.022489827126264572,
- 0.003993564750999212,
- 0.062197357416152954,
- 0.059705641120672226,
- -0.04775175079703331,
- 0.050785358995199203,
- 0.03173336014151573,
- 0.00937195960432291,
- -0.08896885812282562,
- -0.02992311492562294,
- -0.1666710525751114,
- 0.0835835412144661,
- -3.707846035093402e-33,
- 0.02108273096382618,
- 0.04482629895210266,
- -0.021124018356204033,
- 0.11165829002857208,
- -0.023962782695889473,
- 0.033052340149879456,
- -0.03418390452861786,
- -0.015210915356874466,
- -0.03249228000640869,
- 0.00917205773293972,
- 0.003534528659656644,
- -0.009020043537020683,
- -0.056327421218156815,
- -0.04604601487517357,
- 0.0979970246553421,
- -0.0010676924139261246,
- 0.09397392719984055,
- 0.030997108668088913,
- -0.039215438067913055,
- -0.019266536459326744,
- -0.04252048581838608,
- -0.04742366075515747,
- -0.03223984315991402,
- 0.05797146260738373,
- -0.002441260265186429,
- 0.05075781047344208,
- 0.028181223198771477,
- -0.04580048471689224,
- 0.033998847007751465,
- 0.016327934339642525,
- 0.08478190004825592,
- -0.032857879996299744,
- -0.06164254993200302,
- -0.00012251119187567383,
- 0.03709808737039566,
- 0.03110433742403984,
- 0.01291725505143404,
- -0.11074560880661011,
- 0.059419114142656326,
- -0.05501333996653557,
- -0.05155138671398163,
- 0.017852118238806725,
- -0.0026748476084321737,
- 0.028841866180300713,
- 0.06324783712625504,
- 0.017907550558447838,
- 0.10080815851688385,
- 0.04569098353385925,
- 0.10623522102832794,
- 0.08510622382164001,
- -0.004349390044808388,
- -0.039901360869407654,
- -0.09246859699487686,
- -0.04598791152238846,
- 0.03809256851673126,
- 0.009301225654780865,
- 0.009170607663691044,
- -0.03852167725563049,
- 0.023756949231028557,
- 0.04649725928902626,
- 0.04609615355730057,
- 0.04036610946059227,
- -0.0034241171088069677,
- 0.017257915809750557,
- 0.026104027405381203,
- -0.01791483722627163,
- -0.019385844469070435,
- -0.039398886263370514,
- -0.00636631203815341,
- -0.08888044208288193,
- -0.09013348817825317,
- -0.03356621786952019,
- 0.015430026687681675,
- 0.032296568155288696,
- -0.05089782550930977,
- -0.006639584433287382,
- 0.014016849920153618,
- -0.026357851922512054,
- -0.008499953895807266,
- 0.049172043800354004,
- -0.07046407461166382,
- 0.0057635437697172165,
- 0.013754865154623985,
- 0.015783794224262238,
- 0.051465753465890884,
- -0.0021910234354436398,
- 0.03091876395046711,
- -0.04960068687796593,
- 0.0008748705731704831,
- 0.0006200221832841635,
- -0.05333339050412178,
- -0.04789210855960846,
- -0.010242712683975697,
- 0.02058340050280094,
- 0.042619604617357254,
- 2.790533222723891e-33,
- -0.05300099030137062,
- -0.028742864727973938,
- -0.049641795456409454,
- 0.052177608013153076,
- 0.11865893006324768,
- -0.011670148931443691,
- 0.01702291890978813,
- -0.03398671746253967,
- -0.010150090791285038,
- 0.07687357813119888,
- 0.0005825040861964226,
- -0.03453448787331581,
- 0.09313603490591049,
- -0.022735973820090294,
- -0.014795933850109577,
- 0.06180720031261444,
- 0.0025719748809933662,
- -0.07235120236873627,
- -0.0690184161067009,
- 0.013728096149861813,
- -0.045432012528181076,
- 0.00553964963182807,
- -0.017176557332277298,
- -0.013780638575553894,
- -0.045193862169981,
- 0.05171026289463043,
- -0.0011610904475674033,
- -0.014361265115439892,
- -0.05999138206243515,
- 0.011382601223886013,
- 0.033260002732276917,
- -0.09990672767162323,
- -0.08445701003074646,
- 0.014268315397202969,
- -0.03968438506126404,
- -0.05278650298714638,
- 0.09156721830368042,
- 0.05324458330869675,
- -0.06452140212059021,
- 0.09198320657014847,
- 0.143314927816391,
- 0.056973282247781754,
- 0.030551614239811897,
- 0.20523659884929657,
- -0.023693690076470375,
- 0.0028987457044422626,
- 0.09572035819292068,
- -0.015074769966304302,
- 0.10039877146482468,
- -0.022846603766083717,
- -0.05404582992196083,
- 0.038607530295848846,
- 0.005884140729904175,
- -0.031204186379909515,
- -0.020289981737732887,
- 0.014502995647490025,
- 0.0022276020608842373,
- 0.0007515778997913003,
- 0.06470151990652084,
- -0.021611860021948814,
- 0.026004336774349213,
- 0.05324632674455643,
- -0.02805534191429615,
- 0.03087981604039669,
- 0.03929958865046501,
- -0.04938239976763725,
- -0.018148642033338547,
- 0.08555615693330765,
- -0.008268384262919426,
- -0.009748288430273533,
- -0.028777433559298515,
- 0.04448762908577919,
- 0.024355750530958176,
- 0.03075222112238407,
- -0.06694584339857101,
- -0.03884151577949524,
- -0.02180449292063713,
- 0.013623587787151337,
- 0.04988592118024826,
- 0.05060982331633568,
- -0.08742762356996536,
- -0.038147520273923874,
- -0.04420408979058266,
- 0.04141250252723694,
- 0.019643152132630348,
- -0.055435050278902054,
- 0.11022310703992844,
- -0.02625393308699131,
- 0.006085129454731941,
- 0.004447530955076218,
- -0.008531834930181503,
- -0.025842927396297455,
- -0.02506236545741558,
- -0.01167601253837347,
- -0.01822490431368351,
- -1.4078121779448338e-8,
- -0.03154719993472099,
- 0.02962106093764305,
- 0.012045197188854218,
- 0.003069434082135558,
- 0.10004650801420212,
- 0.08435618132352829,
- 0.023326445370912552,
- -0.06728700548410416,
- 0.004633631091564894,
- 0.03351302817463875,
- 0.08367766439914703,
- -0.030868427827954292,
- 0.01198159996420145,
- 0.09551099687814713,
- 0.012541103176772594,
- -0.06501216441392899,
- -0.044770993292331696,
- 0.02838311344385147,
- -0.03428689017891884,
- 0.012139267288148403,
- -0.025394223630428314,
- -0.04115835577249527,
- 0.0033226925879716873,
- 0.05186919867992401,
- 0.01620175503194332,
- -0.028865084052085876,
- 0.04102390259504318,
- 0.054288849234580994,
- -0.04174486920237541,
- 0.036010339856147766,
- 0.002782532712444663,
- 0.04268232733011246,
- 0.00414382154121995,
- -0.09648647904396057,
- -0.018621129915118217,
- 0.05282419174909592,
- -0.05013210326433182,
- -0.029117977246642113,
- 0.04316646233201027,
- -0.045478980988264084,
- 0.007738701533526182,
- 0.01715376414358616,
- 0.03464801236987114,
- 0.029821572825312614,
- 0.03645354509353638,
- -0.008409825153648853,
- -0.09019991010427475,
- -0.09221268445253372,
- -0.023238742724061012,
- 0.008720082230865955,
- -0.09148415178060532,
- -0.04592621326446533,
- 0.04659077152609825,
- 0.039432622492313385,
- 0.002227372257038951,
- 0.0873039960861206,
- 0.030134910717606544,
- -0.009851276874542236,
- -0.05261603370308876,
- 0.02047734521329403,
- 0.15844431519508362,
- 0.05418083444237709,
- -0.06883671879768372,
- -0.05193747207522392
- ]
- },
- {
- "keyword": "necessity",
- "type": "requires",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.03979325667023659,
- 0.07163440436124802,
- -0.022323062643408775,
- 0.024627618491649628,
- 0.04167324677109718,
- 0.04220805689692497,
- 0.12212833017110825,
- -0.04523475095629692,
- -0.014180286787450314,
- -0.021311292424798012,
- 0.03051883354783058,
- -0.02355627343058586,
- 0.012325668707489967,
- 0.023355446755886078,
- 0.020928114652633667,
- -0.018238810822367668,
- 0.057738155126571655,
- -0.07969977706670761,
- -0.11282818019390106,
- 0.027315808460116386,
- -0.09356993436813354,
- -0.03865889459848404,
- -0.014209345914423466,
- -0.038418155163526535,
- -0.10296925902366638,
- 0.03030664101243019,
- -0.04158037155866623,
- -0.016867998987436295,
- 0.07685943692922592,
- -0.07746302336454391,
- 0.005276099778711796,
- 0.07421185821294785,
- 0.0684911236166954,
- -0.021665111184120178,
- -0.02184837870299816,
- 0.0393693707883358,
- 0.07640384137630463,
- -0.002516456414014101,
- -0.0029895396437495947,
- -0.021967964246869087,
- -0.048111673444509506,
- -0.04999009147286415,
- 0.01550428569316864,
- 0.01409210730344057,
- -0.018444418907165527,
- -0.004614002071321011,
- -0.03229576721787453,
- -0.015928279608488083,
- 0.03591819107532501,
- -0.0029970884788781404,
- -0.02914651297032833,
- 0.004509157035499811,
- -0.03571243956685066,
- -0.02002849243581295,
- 0.04234575480222702,
- -0.012478944845497608,
- 0.0409524030983448,
- -0.0021370782051235437,
- -0.04894112050533295,
- -0.05067417025566101,
- 0.02628709375858307,
- 0.006132570561021566,
- -0.10758256167173386,
- 0.0273536778986454,
- 0.0759081020951271,
- -0.025607414543628693,
- 0.001004951074719429,
- -0.028962379321455956,
- 0.012235994450747967,
- 0.09620299935340881,
- -0.03660528361797333,
- -0.021742744371294975,
- -0.03604886680841446,
- 0.020512161776423454,
- -0.022122805938124657,
- -0.06473644822835922,
- 0.04119928181171417,
- -0.0668555349111557,
- 0.05194948613643646,
- -0.005610341671854258,
- -0.01129093673080206,
- 0.06500821560621262,
- -0.03435712307691574,
- 0.08465037494897842,
- 0.0487990565598011,
- 0.01076530385762453,
- 0.056125711649656296,
- -0.040543243288993835,
- -0.02693537250161171,
- -0.01034123357385397,
- -0.010141147300601006,
- -0.08620946109294891,
- 0.034746233373880386,
- -0.006055465899407864,
- 0.060299087315797806,
- 0.020573051646351814,
- -0.008095351979136467,
- -0.03311161324381828,
- -0.07678290456533432,
- 0.2341238260269165,
- -0.04406430199742317,
- -0.018414733931422234,
- -0.006183076184242964,
- 0.03675476089119911,
- -0.017696965485811234,
- -0.06219291687011719,
- -0.05909571051597595,
- -0.011148093268275261,
- 0.034617889672517776,
- 0.007697781547904015,
- 0.008999123238027096,
- -0.020769208669662476,
- 0.018203511834144592,
- -0.04125242680311203,
- 0.007453497499227524,
- 0.043636027723550797,
- 0.015307914465665817,
- -0.049459654837846756,
- 0.047285277396440506,
- -0.0021023128647357225,
- -0.05687067657709122,
- 0.02759643830358982,
- 0.00731803709641099,
- -0.016120513901114464,
- -0.054144956171512604,
- -0.1635493040084839,
- 0.01888725906610489,
- -6.246853956126048e-33,
- 0.03654799982905388,
- 0.013718107715249062,
- 0.03335168585181236,
- 0.004014352802187204,
- -0.014352568425238132,
- 0.022049346938729286,
- -0.04514061287045479,
- -0.10197386145591736,
- -0.019182058051228523,
- -0.01832490973174572,
- -0.015657415613532066,
- 0.03738664835691452,
- -0.014800031669437885,
- -0.041788164526224136,
- 0.08757980167865753,
- 0.025390300899744034,
- 0.0528571791946888,
- 0.01313615683466196,
- 0.08548769354820251,
- -0.017678827047348022,
- 0.009903584606945515,
- -0.04385003075003624,
- -0.010205666534602642,
- 0.030291153118014336,
- -0.03960869088768959,
- -0.052448954433202744,
- 0.07308918237686157,
- -0.012997347861528397,
- 0.0182981938123703,
- 0.02207876741886139,
- 0.018246794119477272,
- 0.018592286854982376,
- -0.04826272279024124,
- -0.02611398510634899,
- 0.0422961600124836,
- 0.016652286052703857,
- -0.10172027349472046,
- -0.10705485939979553,
- 0.020942997187376022,
- -0.05415742099285126,
- -0.03800096735358238,
- 0.011840326711535454,
- -0.00789975468069315,
- 0.0386127270758152,
- 0.05443716049194336,
- 0.012779450975358486,
- 0.07698187977075577,
- -0.01620347611606121,
- -0.025819135829806328,
- 0.018877582624554634,
- 0.013165411539375782,
- 0.041033484041690826,
- 0.050751153379678726,
- -0.044893234968185425,
- -0.025426391512155533,
- -0.03240020200610161,
- 0.02920304611325264,
- -0.007854589261114597,
- 0.016611138358712196,
- -0.00019274702935945243,
- -0.03999917209148407,
- -0.047767166048288345,
- 0.0179049801081419,
- 0.07498081773519516,
- 0.08177673071622849,
- 0.014656656421720982,
- -0.010386011563241482,
- -0.035862285643815994,
- -0.042264703661203384,
- -0.024064671248197556,
- -0.0836137905716896,
- -0.08124381303787231,
- -0.030883783474564552,
- -0.02972853183746338,
- 0.0014873987529426813,
- 0.04234091565012932,
- 0.06599787622690201,
- -0.07299846410751343,
- 0.004950356669723988,
- 0.014975231140851974,
- -0.050580259412527084,
- -0.038811273872852325,
- 0.050234828144311905,
- 0.059818148612976074,
- 0.0410611629486084,
- -0.022783029824495316,
- 0.06420532613992691,
- -0.0591091550886631,
- 0.053135499358177185,
- 0.03791927173733711,
- -0.03662971034646034,
- 0.018438683822751045,
- -0.045762695372104645,
- -0.04210217669606209,
- -0.05197305232286453,
- 5.250236784720296e-33,
- -0.032970864325761795,
- -0.050808440893888474,
- -0.005743928719311953,
- 0.06488209217786789,
- 0.10225453972816467,
- 0.036931756883859634,
- -0.033084768801927567,
- -0.10858103632926941,
- -0.021365473046898842,
- 0.03841609135270119,
- -0.05377345532178879,
- -0.07284031808376312,
- 0.03985907509922981,
- 0.0066271014511585236,
- -0.008025659248232841,
- 0.02866743877530098,
- -0.04435679689049721,
- -0.027199894189834595,
- -0.03498798608779907,
- -0.006470974534749985,
- 0.07408769428730011,
- -0.0698138102889061,
- -0.0030213117133826017,
- -0.08305611461400986,
- -0.07586928457021713,
- 0.09202474355697632,
- -0.08877339959144592,
- -0.009571818634867668,
- -0.12018634378910065,
- 0.025612415745854378,
- 0.04571602866053581,
- 0.015937810763716698,
- -0.06927866488695145,
- -0.06297411024570465,
- -0.017638808116316795,
- 0.08742544800043106,
- 0.04730837419629097,
- 0.1338292956352234,
- -0.10351280122995377,
- -0.005162132438272238,
- -0.023419443517923355,
- 0.09152990579605103,
- 0.06078294664621353,
- 0.10376397520303726,
- -0.047248102724552155,
- 0.05601629614830017,
- 0.08615168929100037,
- -0.03160203620791435,
- 0.03603564575314522,
- -0.0003390622732695192,
- 0.02165636606514454,
- 0.03113557957112789,
- -0.017718417569994926,
- -0.04079332575201988,
- -0.04574368894100189,
- 0.022786583751440048,
- -0.041297558695077896,
- 0.03342299908399582,
- 0.0324799045920372,
- 0.008807199075818062,
- 0.0709613710641861,
- 0.03276097774505615,
- -0.049055904150009155,
- -0.025258760899305344,
- 0.004327969625592232,
- 0.01415841281414032,
- 0.056907352060079575,
- -0.01536517683416605,
- 0.03554573282599449,
- -0.01115447748452425,
- -0.005042986012995243,
- -0.0026519291568547487,
- -0.031060969457030296,
- -0.016676336526870728,
- -0.07870783656835556,
- 0.10800770670175552,
- 0.0029515062924474478,
- 0.0439557284116745,
- -0.027648838236927986,
- -0.008228643797338009,
- -0.035779159516096115,
- -0.08610879629850388,
- 0.007418425288051367,
- 0.030334673821926117,
- 0.014218761585652828,
- 0.01699213683605194,
- 0.047401223331689835,
- -0.02967451885342598,
- 0.038904789835214615,
- 0.018064288422465324,
- 0.008194596506655216,
- 0.008280540816485882,
- -0.04627187177538872,
- 0.04793510213494301,
- -0.0021275747567415237,
- -1.2981799635269908e-8,
- -0.021996617317199707,
- -0.010495799593627453,
- -0.002376749413087964,
- -0.047185029834508896,
- 0.023096377030014992,
- -0.017676053568720818,
- 0.07154794037342072,
- 0.022784383967518806,
- -0.019942188635468483,
- 0.1034044474363327,
- 0.037581294775009155,
- 0.04712566360831261,
- -0.020089218392968178,
- 0.11926335096359253,
- 0.04141206294298172,
- 0.012724569998681545,
- 0.04719202592968941,
- -0.029518982395529747,
- -0.10210777074098587,
- -0.008757234551012516,
- -0.0013535736361518502,
- -0.021866748109459877,
- -0.02126150391995907,
- 0.09386876225471497,
- 0.02721787989139557,
- 0.02296464890241623,
- 0.0964355319738388,
- 0.09923259168863297,
- 0.03868965804576874,
- 0.07513019442558289,
- 0.0700259879231453,
- 0.024301670491695404,
- -0.0063553014770150185,
- -0.06257272511720657,
- -0.10297000408172607,
- 0.06281489133834839,
- -0.05041986331343651,
- -0.0690724104642868,
- -0.021961120888590813,
- -0.062275029718875885,
- 0.022212332114577293,
- 0.05394044145941734,
- 0.030337156727910042,
- 0.07349436730146408,
- -0.02974057011306286,
- -0.051931798458099365,
- -0.0055181714706122875,
- 0.025414053350687027,
- -0.06110333651304245,
- 0.00039123964961618185,
- -0.06996621191501617,
- -0.0176805779337883,
- 0.04194086790084839,
- 0.091792032122612,
- 0.05548917502164841,
- 0.05211888626217842,
- 0.08352401852607727,
- 0.010477189905941486,
- -0.006936595309525728,
- -0.02069327048957348,
- 0.1716240644454956,
- 0.032590292394161224,
- 0.12891997396945953,
- -0.07021879404783249
- ]
- },
- {
- "keyword": "prerequisite",
- "type": "requires",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.04773545637726784,
- -0.04817884787917137,
- 0.03412683308124542,
- -0.00013729537022300065,
- -0.07166457176208496,
- -0.026821797713637352,
- -0.01954021491110325,
- -0.024536095559597015,
- -0.09103713184595108,
- 0.03355390578508377,
- -0.04594431072473526,
- -0.048560697585344315,
- -0.03811172395944595,
- 0.016371507197618484,
- 0.02294767089188099,
- -0.009625924751162529,
- 0.0990758091211319,
- -0.11190300434827805,
- 0.030377056449651718,
- -0.034375112503767014,
- -0.0342065691947937,
- 0.020186642184853554,
- 0.036645274609327316,
- -0.059904515743255615,
- 0.0009748585289344192,
- -0.018771648406982422,
- 0.0020844293758273125,
- 0.05508008226752281,
- 0.07520264387130737,
- 0.010292944498360157,
- 0.031189577654004097,
- 0.011768090538680553,
- 0.06278269737958908,
- 0.0602600984275341,
- -0.06620192527770996,
- 0.05195358768105507,
- 0.09254159778356552,
- -0.07511305809020996,
- 0.002766301156952977,
- 0.09138850122690201,
- -0.04563365504145622,
- -0.013672507368028164,
- -0.007684173993766308,
- -0.025164881721138954,
- 0.02630615234375,
- 0.009073842316865921,
- 0.01608475111424923,
- -0.03236015513539314,
- 0.0012774389469996095,
- 0.01209660992026329,
- -0.03205427899956703,
- -0.029226038604974747,
- -0.025229400023818016,
- -0.03220805525779724,
- 0.0025842178147286177,
- 0.04290083795785904,
- 0.006902687251567841,
- 0.006102131213992834,
- -0.03287765011191368,
- -0.009742212481796741,
- -0.04419465363025665,
- 0.0039739590138196945,
- -0.054402317851781845,
- 0.014709635637700558,
- 0.07979631423950195,
- 0.03705446422100067,
- 0.023534223437309265,
- -0.04406222328543663,
- 0.10505154728889465,
- 0.005529739428311586,
- -0.09177059680223465,
- -0.040993593633174896,
- -0.03567734733223915,
- 0.09526149928569794,
- -0.014139862731099129,
- -0.04787399619817734,
- 0.06519090384244919,
- 0.03542643040418625,
- 0.005885356571525335,
- -0.061147067695856094,
- -0.009937142953276634,
- 0.09434472769498825,
- -0.017465151846408844,
- 0.0715838223695755,
- 0.04683658480644226,
- -0.01164435688406229,
- -0.007312816567718983,
- 0.001940318034030497,
- -0.045226991176605225,
- 0.025680741295218468,
- 0.09483353793621063,
- -0.10641159117221832,
- -0.012575370259582996,
- 0.04099700227379799,
- -0.05521177127957344,
- 0.06903214752674103,
- -0.03200135752558708,
- -0.06095712631940842,
- 0.006650403141975403,
- 0.1553414762020111,
- -0.0369281992316246,
- -0.09853382408618927,
- -0.013759495690464973,
- 0.09034084528684616,
- -0.06480234861373901,
- -0.06047367677092552,
- 0.021579239517450333,
- 0.05451112613081932,
- 0.007821780629456043,
- 0.01772565022110939,
- 0.014620902948081493,
- -0.04798930510878563,
- 0.018626168370246887,
- -0.04134960100054741,
- -0.024712437763810158,
- 0.07988020777702332,
- 0.022040272131562233,
- -0.044053610414266586,
- 0.10381542891263962,
- 0.011349360458552837,
- -0.007089250721037388,
- 0.03370968997478485,
- 0.007416503969579935,
- -0.04861817881464958,
- 0.027729831635951996,
- -0.19122649729251862,
- -0.039208635687828064,
- -6.40055204654797e-34,
- 0.044755373150110245,
- 0.06559140235185623,
- 0.014996697194874287,
- 0.06323064863681793,
- -0.020066291093826294,
- 0.018676597625017166,
- -0.03278088942170143,
- -0.034638069570064545,
- -0.04102574288845062,
- 0.06050075218081474,
- -0.010422958992421627,
- 0.059605907648801804,
- -0.07140878587961197,
- 0.01649664156138897,
- 0.0665656179189682,
- -0.055510811507701874,
- -0.012964000925421715,
- 0.03187304362654686,
- 0.016158046200871468,
- -0.02582179196178913,
- -0.05473944544792175,
- -0.021334903314709663,
- 0.022821251302957535,
- -0.030387133359909058,
- -0.019159259274601936,
- 0.08167105913162231,
- 0.04639587178826332,
- -0.039011284708976746,
- 0.10828098654747009,
- 0.013031532987952232,
- -0.036409854888916016,
- -0.010080329142510891,
- -0.11724523454904556,
- -0.05955653265118599,
- 0.011034778319299221,
- -0.01241745799779892,
- -0.061633653938770294,
- -0.07165832817554474,
- 0.041143327951431274,
- -0.08020119369029999,
- -0.007892762310802937,
- 0.060682933777570724,
- 0.020892826840281487,
- -0.03692176192998886,
- 0.03727441281080246,
- 0.04083679988980293,
- 0.008395545184612274,
- 0.00924134161323309,
- 0.02556677535176277,
- 0.011542098596692085,
- 0.012021656148135662,
- -0.10127592086791992,
- -0.00006448623025789857,
- 0.03215106576681137,
- -0.010464118793606758,
- 0.01603693701326847,
- 0.07011528313159943,
- -0.03207264468073845,
- 0.041760995984077454,
- 0.020502405241131783,
- 0.02148517593741417,
- 0.03469226136803627,
- -0.0160849429666996,
- 0.06978005915880203,
- -0.036584656685590744,
- -0.03919040411710739,
- -0.00877092219889164,
- -0.00777230691164732,
- 0.06497638672590256,
- -0.08176415413618088,
- -0.10869177430868149,
- -0.018256578594446182,
- -0.0047904630191624165,
- -0.012223424389958382,
- -0.030140386894345284,
- 0.06349021196365356,
- -0.022130103781819344,
- -0.04152943193912506,
- 0.01952078752219677,
- 0.04520902782678604,
- -0.06430762261152267,
- 0.01583995297551155,
- 0.031045954674482346,
- 0.05936799943447113,
- 0.05415097996592522,
- -0.043812379240989685,
- 0.06084033101797104,
- -0.06629596650600433,
- 0.012462224811315536,
- 0.0011795016471296549,
- -0.024222657084465027,
- 0.004733320325613022,
- 0.003867059014737606,
- 0.043878208845853806,
- -0.013883783482015133,
- 1.609592016788977e-34,
- 0.0006480896263383329,
- -0.03829193860292435,
- 0.02859083004295826,
- 0.029028432443737984,
- 0.09625516086816788,
- 0.07471854984760284,
- -0.023246649652719498,
- -0.11481630802154541,
- 0.0356847420334816,
- 0.010812941938638687,
- -0.014452903531491756,
- -0.05965432897210121,
- 0.1281268447637558,
- 0.03712840378284454,
- 0.03496751934289932,
- 0.06518671661615372,
- 0.030972501263022423,
- 0.007536853663623333,
- -0.015530064702033997,
- -0.007826672866940498,
- 0.0001566537976032123,
- 0.016981570050120354,
- 0.0367903895676136,
- -0.04423495754599571,
- -0.05041905865073204,
- 0.030575359240174294,
- 0.09036870300769806,
- 0.0963955968618393,
- -0.1024126261472702,
- 0.03512762114405632,
- 0.054544128477573395,
- -0.01302640326321125,
- -0.07408532500267029,
- -0.024268118664622307,
- -0.062175001949071884,
- 0.010579789988696575,
- 0.031636036932468414,
- 0.13177281618118286,
- -0.03809910640120506,
- -0.0044866870157420635,
- 0.1363842636346817,
- 0.006335031241178513,
- -0.07399481534957886,
- 0.06735100597143173,
- -0.07678160816431046,
- -0.029711300507187843,
- 0.1305835247039795,
- 0.06048821657896042,
- 0.054341088980436325,
- -0.014429615810513496,
- -0.05739971995353699,
- 0.02803747169673443,
- 0.06614760309457779,
- -0.07419165968894958,
- -0.04404034838080406,
- -0.005516819655895233,
- 0.005705494899302721,
- -0.028466878458857536,
- 0.040206179022789,
- -0.022158266976475716,
- 0.012100419960916042,
- 0.039181239902973175,
- 0.05932684987783432,
- -0.021075107157230377,
- -0.024365203455090523,
- -0.04961823299527168,
- -0.044112931936979294,
- 0.03645619750022888,
- -0.03082635998725891,
- 0.0027117363642901182,
- -0.14974914491176605,
- 0.07562755793333054,
- 0.06142660602927208,
- -0.04812708497047424,
- -0.028076527640223503,
- -0.056962501257658005,
- -0.029608484357595444,
- 0.10058239847421646,
- 0.03282264992594719,
- 0.0012288297293707728,
- -0.034431926906108856,
- -0.05357246473431587,
- -0.044212691485881805,
- 0.07313679158687592,
- 0.023117663338780403,
- -0.02285814844071865,
- 0.06397820264101028,
- -0.13339924812316895,
- 0.051627375185489655,
- -0.06699242442846298,
- 0.044924113899469376,
- 0.044136058539152145,
- 0.03481772914528847,
- 0.011065936647355556,
- -0.03819770738482475,
- -1.6368396416055475e-8,
- -0.030651861801743507,
- -0.0005712827551178634,
- 0.0035436847247183323,
- -0.044245678931474686,
- 0.028025202453136444,
- 0.09083101898431778,
- -0.010189563035964966,
- -0.02938302978873253,
- -0.06587929278612137,
- 0.024411849677562714,
- 0.043201837688684464,
- -0.02978595718741417,
- 0.02479110099375248,
- 0.05974486097693443,
- -0.018967902287840843,
- -0.013541659340262413,
- 0.070240318775177,
- 0.04114203527569771,
- -0.08110653609037399,
- 0.01262420229613781,
- 0.018085146322846413,
- -0.06349993497133255,
- -0.0034967155661433935,
- 0.0186754260212183,
- 0.02878960780799389,
- -0.08591432869434357,
- 0.054371848702430725,
- 0.0009985838551074266,
- -0.00967168528586626,
- 0.08532503247261047,
- -0.021753787994384766,
- 0.030990228056907654,
- -0.010887800715863705,
- -0.09743627160787582,
- 0.016133591532707214,
- -0.039545267820358276,
- 0.03274490684270859,
- -0.04335278272628784,
- 0.02236490324139595,
- -0.09582062810659409,
- -0.07226215302944183,
- 0.05678991228342056,
- 0.007080058101564646,
- 0.04663238301873207,
- -0.004208400845527649,
- -0.012586552649736404,
- -0.05955278128385544,
- -0.01940866932272911,
- 0.019039059057831764,
- -0.019840512424707413,
- 0.0005179514409974217,
- -0.01662752591073513,
- -0.029402801766991615,
- -0.03050905466079712,
- 0.01096117589622736,
- 0.06195651739835739,
- 0.02710222825407982,
- 0.013809265568852425,
- -0.056943025439977646,
- 0.0018613373395055532,
- 0.079241544008255,
- 0.043049395084381104,
- 0.07558506727218628,
- -0.00024196413869503886
- ]
- },
- {
- "keyword": "creates",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.06901152431964874,
- -0.04348115622997284,
- -0.10282989591360092,
- 0.040744032710790634,
- -0.07772476226091385,
- -0.05842319130897522,
- 0.06729365140199661,
- -0.03251125290989876,
- 0.05322813242673874,
- 0.035203125327825546,
- 0.03841662406921387,
- -0.1329663246870041,
- 0.06137716770172119,
- -0.01808908022940159,
- -0.028862938284873962,
- 0.05081680044531822,
- -0.010474514216184616,
- -0.07988546043634415,
- -0.07062368094921112,
- -0.024598637595772743,
- 0.002018040744587779,
- -0.08253203332424164,
- 0.018033703789114952,
- 0.025987444445490837,
- 0.028871577233076096,
- -0.005418714601546526,
- 0.01943163201212883,
- 0.011201003566384315,
- 0.17449365556240082,
- -0.044138237833976746,
- 0.013004720211029053,
- 0.0014698582235723734,
- 0.07970128208398819,
- -0.035011135041713715,
- 0.02242422290146351,
- 0.07147583365440369,
- 0.07454726099967957,
- 0.04059430584311485,
- -0.0019061523489654064,
- -0.0518464595079422,
- -0.0016116226324811578,
- -0.0556151457130909,
- 0.014416979625821114,
- 0.027890382334589958,
- 0.009407448582351208,
- 0.01834424026310444,
- 0.04296107962727547,
- 0.02020118199288845,
- 0.023003222420811653,
- -0.0055121248587965965,
- -0.07406242191791534,
- -0.006003416609019041,
- -0.020437121391296387,
- -0.07859648019075394,
- 0.0122469337657094,
- 0.010286017321050167,
- -0.050503361970186234,
- 0.033698756247758865,
- -0.057479072362184525,
- -0.028898073360323906,
- 0.03244977816939354,
- 0.04357575997710228,
- -0.018918229267001152,
- -0.016037287190556526,
- 0.04631344974040985,
- -0.012598376721143723,
- -0.01916942559182644,
- 0.047564636915922165,
- -0.011978870257735252,
- -0.03534088283777237,
- -0.007454883772879839,
- 0.06301634758710861,
- -0.047490183264017105,
- 0.11597634106874466,
- 0.007278285920619965,
- 0.014661569148302078,
- 0.019058702513575554,
- -0.002211571903899312,
- 0.05814549699425697,
- 0.02446267195045948,
- 0.010482682846486568,
- 0.009635855443775654,
- -0.023083359003067017,
- 0.0002858460647985339,
- -0.030224455520510674,
- 0.0298104640096426,
- 0.0798853263258934,
- 0.03704307600855827,
- 0.008286367170512676,
- 0.0243539921939373,
- -0.09227103739976883,
- 0.03368743881583214,
- 0.06997455656528473,
- -0.02905740588903427,
- -0.04511301964521408,
- 0.06577980518341064,
- 0.0595666766166687,
- -0.0036683492362499237,
- -0.01007129903882742,
- 0.20046129822731018,
- -0.03128034621477127,
- -0.005840518046170473,
- 0.01866496354341507,
- 0.0353643000125885,
- 0.029475025832653046,
- -0.02384381741285324,
- -0.031201068311929703,
- 0.05110176280140877,
- -0.01775485835969448,
- 0.07247977703809738,
- 0.009963433258235455,
- 0.029744550585746765,
- -0.060993339866399765,
- -0.01685759611427784,
- 0.054164569824934006,
- 0.05811965465545654,
- -0.04054175689816475,
- 0.0046682944521307945,
- 0.028127094730734825,
- 0.05175589770078659,
- 0.1052544042468071,
- 0.030557289719581604,
- -0.06419587135314941,
- 0.040011875331401825,
- -0.09130094945430756,
- -0.08686582744121552,
- 0.0034454476553946733,
- -4.827094450596782e-33,
- 0.08539777249097824,
- 0.0013919267803430557,
- 0.039184413850307465,
- 0.13563261926174164,
- 0.037495747208595276,
- 0.02949090115725994,
- -0.01982748694717884,
- 0.04425237700343132,
- -0.08227518945932388,
- -0.031131183728575706,
- -0.08411195129156113,
- -0.02428671531379223,
- -0.009982828050851822,
- 0.06695988029241562,
- 0.10940983146429062,
- -0.051767829805612564,
- 0.0401495061814785,
- -0.027574222534894943,
- -0.014317975379526615,
- -0.038873340934515,
- -0.09790143370628357,
- 0.11874201148748398,
- 0.019504226744174957,
- -0.002732246881350875,
- -0.022774893790483475,
- 0.046282801777124405,
- 0.03517308831214905,
- -0.08651591837406158,
- -0.018304133787751198,
- -0.01657647266983986,
- 0.015294692479074001,
- -0.07340717315673828,
- -0.042988236993551254,
- 0.02252158708870411,
- -0.009230331517755985,
- 0.09980953484773636,
- -0.027825960889458656,
- 0.004720320459455252,
- 0.005235138814896345,
- -0.0025486948434263468,
- 0.0223748367279768,
- 0.0012494531692937016,
- -0.03729937598109245,
- 0.01118327584117651,
- -0.007208355702459812,
- 0.011398885399103165,
- 0.031679827719926834,
- 0.02545277588069439,
- 0.0519644059240818,
- 0.044087350368499756,
- -0.015115533955395222,
- 0.022608092054724693,
- 0.019151490181684494,
- -0.0009770718170329928,
- 0.0024585495702922344,
- -0.02571907453238964,
- -0.03818430006504059,
- -0.061615683138370514,
- 0.06300085783004761,
- -0.049120839685201645,
- 0.028814736753702164,
- 0.047298695892095566,
- -0.08009035885334015,
- 0.11200906336307526,
- -0.06160537526011467,
- -0.052198901772499084,
- 0.10220903903245926,
- -0.04415884241461754,
- 0.08340469747781754,
- 0.0003684372059069574,
- -0.02335324138402939,
- -0.03391825780272484,
- -0.0005796275218017399,
- 0.032619718462228775,
- 0.008845525793731213,
- -0.07800345867872238,
- -0.01644519902765751,
- 0.017127104103565216,
- -0.08271114528179169,
- 0.0009031974477693439,
- -0.04172269254922867,
- 0.0014795127790421247,
- -0.05503701791167259,
- -0.02528206817805767,
- 0.035553380846977234,
- -0.01829197071492672,
- -0.00415295222774148,
- -0.05346035957336426,
- 0.005412650760263205,
- 0.04322909563779831,
- -0.04572656750679016,
- -0.029872240498661995,
- 0.002947093453258276,
- 0.03367326781153679,
- -0.07941915839910507,
- 3.1912566755253165e-33,
- -0.03582049533724785,
- -0.04023393243551254,
- -0.07620978355407715,
- 0.04192444682121277,
- -0.09611375629901886,
- -0.04463452473282814,
- -0.031147900968790054,
- -0.009506598114967346,
- -0.07404742389917374,
- -0.00032905067200772464,
- 0.006430196575820446,
- -0.0028986565303057432,
- 0.03265272080898285,
- 0.008991552516818047,
- 0.006594959646463394,
- -0.07956472784280777,
- 0.061477381736040115,
- -0.05514897406101227,
- -0.02430424466729164,
- 0.029703667387366295,
- -0.011920664459466934,
- 0.0361911915242672,
- -0.05016539245843887,
- -0.0009547481313347816,
- 0.0003604306257329881,
- 0.03396019712090492,
- 0.05342601612210274,
- 0.08880270272493362,
- -0.020123979076743126,
- 0.005542396567761898,
- 0.007079083472490311,
- 0.0045700399205088615,
- -0.06888410449028015,
- -0.000002032350948866224,
- -0.05678233504295349,
- -0.02059447020292282,
- 0.03574331849813461,
- 0.0165918730199337,
- 0.035503823310136795,
- -0.027368631213903427,
- 0.07625103741884232,
- -0.0054853688925504684,
- -0.047775667160749435,
- 0.2064262181520462,
- -0.0441928394138813,
- -0.0036537807900458574,
- 0.018598373979330063,
- 0.04597373679280281,
- 0.0800415426492691,
- -0.006027712486684322,
- -0.001408746582455933,
- -0.03703760355710983,
- -0.0656392052769661,
- -0.10935262590646744,
- -0.015867870301008224,
- -0.03252018615603447,
- -0.002564189024269581,
- -0.02229148894548416,
- 0.0435330830514431,
- -0.0020434099715203047,
- -0.06294652819633484,
- 0.009675626643002033,
- -0.05995934084057808,
- 0.03793656453490257,
- -0.05677766725420952,
- -0.04029066860675812,
- -0.04398851841688156,
- 0.08440322428941727,
- -0.018192771822214127,
- -0.006926697678864002,
- -0.0347539521753788,
- 0.008785134181380272,
- -0.06661134213209152,
- -0.0853373184800148,
- -0.050474606454372406,
- 0.0024915016256272793,
- -0.052940137684345245,
- -0.025312356650829315,
- 0.010114101693034172,
- 0.007741582579910755,
- -0.034725651144981384,
- 0.02483874373137951,
- 0.04376278072595596,
- 0.02253969945013523,
- -0.022562295198440552,
- -0.08201568573713303,
- 0.03384589031338692,
- 0.0229188259691,
- -0.055239487439394,
- 0.09073687344789505,
- 0.05826912820339203,
- 0.0654451847076416,
- -0.091244176030159,
- 0.1021297350525856,
- -0.0008464021957479417,
- -1.1748895190066833e-8,
- -0.03564312309026718,
- 0.06805296242237091,
- -0.05299203470349312,
- 0.05282991752028465,
- 0.04601607471704483,
- -0.0036977834533900023,
- 0.028433239087462425,
- -0.022875981405377388,
- 0.009463389404118061,
- 0.001292683184146881,
- -0.030199149623513222,
- -0.0031996748875826597,
- -0.07195443660020828,
- 0.07094339281320572,
- 0.09515461325645447,
- -0.047826483845710754,
- -0.047027837485075,
- 0.06909500062465668,
- -0.06816544383764267,
- -0.03248624876141548,
- -0.018207138404250145,
- 0.016463344916701317,
- 0.019866658374667168,
- 0.003476618556305766,
- -0.007997406646609306,
- -0.026601722463965416,
- -0.007320679724216461,
- -0.025110086426138878,
- -0.056305233389139175,
- 0.07322170585393906,
- 0.08996427804231644,
- 0.08410992473363876,
- -0.022853540256619453,
- 0.023255862295627594,
- 0.001396086998283863,
- -0.02582623064517975,
- -0.09721797704696655,
- 0.03337187319993973,
- 0.044946879148483276,
- -0.09032505005598068,
- -0.013463173992931843,
- 0.07823455333709717,
- 0.017652031034231186,
- -0.057044245302677155,
- -0.06367047876119614,
- -0.033404767513275146,
- -0.03238515183329582,
- -0.03633098304271698,
- 0.015365418046712875,
- -0.044746119529008865,
- -0.04324115440249443,
- 0.0026494816411286592,
- 0.10607783496379852,
- -0.019234543666243553,
- 0.0925631895661354,
- -0.005317748058587313,
- 0.03838813677430153,
- 0.04914682358503342,
- 0.07276047766208649,
- 0.0034057442098855972,
- 0.07295248657464981,
- 0.029765207320451736,
- 0.13283583521842957,
- 0.023186925798654556
- ]
- },
- {
- "keyword": "makes",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.10908873379230499,
- 0.004220364149659872,
- 0.013953025452792645,
- -0.01749211922287941,
- 0.007125933654606342,
- -0.0892382562160492,
- 0.06983485072851181,
- 0.02391497790813446,
- 0.018117694184184074,
- 0.010725634172558784,
- -0.06604411453008652,
- -0.09623287618160248,
- 0.022546283900737762,
- -0.027012065052986145,
- -0.033271778374910355,
- 0.030734386295080185,
- 0.024615367874503136,
- 0.03669414669275284,
- -0.09253092110157013,
- -0.043107930570840836,
- -0.0808812752366066,
- 0.029196271672844887,
- 0.0564182884991169,
- 0.01313802506774664,
- -0.02048761211335659,
- 0.045250751078128815,
- 0.024146394804120064,
- 0.027060410007834435,
- 0.09851884096860886,
- -0.09238605946302414,
- -0.021065177395939827,
- 0.06417004764080048,
- 0.08408541232347488,
- -0.016744541004300117,
- 0.011921104975044727,
- 0.026772137731313705,
- 0.015222642570734024,
- 0.006971025373786688,
- -0.01852961629629135,
- 0.01469315867871046,
- 0.026626886799931526,
- -0.0537530779838562,
- 0.04424958676099777,
- 0.08316747844219208,
- 0.014850455336272717,
- 0.03750276565551758,
- 0.083164282143116,
- 0.005465446040034294,
- 0.05749301612377167,
- 0.030349884182214737,
- -0.03650069236755371,
- 0.004189729690551758,
- -0.057361289858818054,
- -0.11790334433317184,
- 0.03817013278603554,
- -0.010758480988442898,
- -0.06930537521839142,
- 0.0035734546836465597,
- 0.0028953885193914175,
- -0.04251614212989807,
- 0.039001673460006714,
- 0.06527317315340042,
- -0.09944748878479004,
- 0.06363310664892197,
- 0.03779441863298416,
- -0.004264185205101967,
- 0.007882020436227322,
- 0.009643595665693283,
- -0.036343008279800415,
- 0.018540730699896812,
- 0.012813692912459373,
- 0.04871489480137825,
- -0.03819896653294563,
- -0.09738827496767044,
- 0.012521958909928799,
- 0.014828723855316639,
- 0.09176931530237198,
- -0.01894114352762699,
- 0.03431721031665802,
- 0.07628067582845688,
- -0.01772281341254711,
- 0.060643818229436874,
- -0.05381027236580849,
- -0.000955544994212687,
- -0.04094196483492851,
- -0.020106809213757515,
- 0.1402735710144043,
- 0.01971619203686714,
- -0.0248821210116148,
- -0.012922341004014015,
- -0.035415373742580414,
- -0.025368662551045418,
- 0.10813941806554794,
- -0.059152618050575256,
- -0.04688268527388573,
- -0.0172092504799366,
- -0.03345722332596779,
- 0.09485173225402832,
- -0.06700299680233002,
- 0.1828019917011261,
- -0.0187273770570755,
- 0.05407955124974251,
- -0.02038159966468811,
- -0.09870459884405136,
- -0.032514788210392,
- -0.014528002589941025,
- -0.04345421493053436,
- 0.11115732789039612,
- 0.01677100360393524,
- 0.051054034382104874,
- -0.015322001650929451,
- -0.008484534919261932,
- 0.012883898802101612,
- 0.03406500443816185,
- -0.0038710387889295816,
- -0.015882136300206184,
- 0.011582341976463795,
- 0.05296524986624718,
- -0.042079076170921326,
- -0.03477618843317032,
- 0.07279171794652939,
- -0.016895215958356857,
- -0.03418208286166191,
- 0.016837358474731445,
- -0.03258262202143669,
- -0.09393536299467087,
- -0.017741022631525993,
- -2.1276219997852932e-33,
- 0.023393746465444565,
- -0.0632835179567337,
- -0.01057273056358099,
- -0.001050701248459518,
- 0.11200348287820816,
- 0.03421783074736595,
- 0.02172836661338806,
- 0.02096257358789444,
- 0.0008171930094249547,
- 0.0819573625922203,
- 0.00789746642112732,
- -0.03942178934812546,
- -0.0036735935136675835,
- 0.01461406797170639,
- 0.098695769906044,
- -0.00658666156232357,
- 0.024554012343287468,
- -0.08684799820184708,
- 0.014537585899233818,
- -0.00018922213348560035,
- -0.08548687398433685,
- 0.056384727358818054,
- 0.025664813816547394,
- 0.03104368969798088,
- -0.04664740711450577,
- 0.01402678620070219,
- 0.05307377874851227,
- -0.07224521785974503,
- -0.05630737915635109,
- -0.018994424492120743,
- 0.049900248646736145,
- 0.06299929320812225,
- -0.021420462056994438,
- 0.04042310267686844,
- -0.04676032438874245,
- -0.01582437753677368,
- -0.0387025810778141,
- -0.058325570076704025,
- 0.007942689582705498,
- 0.06318814307451248,
- -0.017608756199479103,
- -0.023227397352457047,
- -0.02830386348068714,
- 0.05289856716990471,
- -0.01631467044353485,
- 0.08588403463363647,
- -0.01762859895825386,
- -0.013088678009808064,
- 0.0317344143986702,
- 0.008453499525785446,
- 0.0023572875652462244,
- -0.01967664435505867,
- -0.05891284719109535,
- 0.025864334776997566,
- -0.030225293710827827,
- -0.007387183606624603,
- 0.035165976732969284,
- -0.021504975855350494,
- 0.06860111653804779,
- -0.021997341886162758,
- 0.016577932983636856,
- 0.11913899332284927,
- -0.07697072625160217,
- 0.01820497214794159,
- -0.05555005371570587,
- -0.020029470324516296,
- 0.06874990463256836,
- 0.0049854242242872715,
- 0.04789089784026146,
- -0.009877966716885567,
- -0.038454774767160416,
- -0.022838054224848747,
- 0.06131470203399658,
- -0.026707665994763374,
- 0.006935299374163151,
- -0.06364801526069641,
- -0.07884478569030762,
- 0.010815796442329884,
- -0.014438902027904987,
- 0.008783616125583649,
- -0.023115411400794983,
- -0.054779019206762314,
- 0.036263179033994675,
- -0.007820433005690575,
- 0.12788987159729004,
- -0.0006367349997162819,
- -0.01610594429075718,
- -0.12309578061103821,
- 0.06850442290306091,
- 0.010259420610964298,
- -0.03786754235625267,
- -0.03557639941573143,
- -0.015620586462318897,
- 0.039851076900959015,
- -0.14869077503681183,
- 1.4434749203861138e-33,
- -0.09405478090047836,
- -0.052858710289001465,
- 0.004524117801338434,
- -0.004897878039628267,
- -0.025316670536994934,
- -0.019865108653903008,
- -0.025773443281650543,
- -0.02177352085709572,
- 0.016679266467690468,
- 0.06231304258108139,
- 0.02435275912284851,
- -0.034644965082407,
- 0.050390709191560745,
- -0.025214875116944313,
- -0.07199467718601227,
- 0.021636761724948883,
- 0.13571596145629883,
- -0.004986629821360111,
- -0.018973195925354958,
- -0.030148306861519814,
- -0.006318853236734867,
- 0.03018125519156456,
- -0.02932548336684704,
- 0.07104489207267761,
- -0.01866939291357994,
- 0.030235446989536285,
- 0.03256293758749962,
- 0.007248221430927515,
- 0.02979561872780323,
- 0.003998389933258295,
- 0.09010244905948639,
- -0.06753265857696533,
- -0.043520718812942505,
- -0.01219180691987276,
- -0.02729347161948681,
- 0.060052596032619476,
- -0.02545764297246933,
- 0.002888946095481515,
- -0.010249967686831951,
- -0.012023460119962692,
- 0.055098168551921844,
- -0.04650203883647919,
- 0.04302578419446945,
- 0.09485214203596115,
- 0.03821421042084694,
- -0.08550383895635605,
- 0.028807375580072403,
- 0.006180177442729473,
- 0.03318968415260315,
- 0.04534999281167984,
- 0.014792351983487606,
- -0.03717541694641113,
- -0.07071910053491592,
- -0.010092838667333126,
- -0.034857992082834244,
- -0.04398808628320694,
- -0.009241458028554916,
- 0.028937891125679016,
- -0.01239344198256731,
- -0.015131230466067791,
- -0.040554095059633255,
- 0.08090123534202576,
- -0.0025554064195603132,
- 0.012909571640193462,
- 0.045559100806713104,
- -0.00003552782436599955,
- 0.01111690979450941,
- 0.0031762325670570135,
- 0.042744580656290054,
- -0.030066844075918198,
- 0.0012692257296293974,
- 0.04025498777627945,
- -0.12287960946559906,
- -0.024718595668673515,
- -0.04662187024950981,
- -0.023639483377337456,
- -0.012304764240980148,
- 0.04842303693294525,
- 0.018575096502900124,
- 0.01850079372525215,
- -0.027003375813364983,
- -0.04998968541622162,
- 0.031404610723257065,
- 0.0959109365940094,
- -0.06300874799489975,
- -0.01092561800032854,
- 0.00488117104396224,
- 0.016814814880490303,
- -0.04503421112895012,
- 0.03431481868028641,
- 0.020161017775535583,
- 0.14739947021007538,
- 0.07617546617984772,
- 0.12360893189907074,
- -0.012431630864739418,
- -1.3927493824894555e-8,
- 0.03814344480633736,
- -0.04144115000963211,
- -0.07869311422109604,
- 0.017497893422842026,
- 0.054165057837963104,
- 0.07598693668842316,
- -0.004612160846590996,
- -0.06094057857990265,
- -0.0018856676761060953,
- 0.0278751403093338,
- 0.0748801901936531,
- 0.02030731365084648,
- -0.00628267228603363,
- 0.05471086502075195,
- 0.040653593838214874,
- -0.05463450774550438,
- -0.07714682817459106,
- 0.08494247496128082,
- -0.0428517684340477,
- -0.0009874707320705056,
- 0.021589871495962143,
- -0.03563985228538513,
- 0.07418135553598404,
- 0.003056977642700076,
- -0.10218758136034012,
- -0.002358905738219619,
- -0.030437102541327477,
- 0.07312699407339096,
- -0.021238869056105614,
- 0.01871919073164463,
- 0.04097479209303856,
- 0.07381916046142578,
- -0.00472066318616271,
- 0.019508447498083115,
- -0.010338667780160904,
- -0.10197664052248001,
- -0.05930845066905022,
- -0.019934095442295074,
- 0.022976670414209366,
- 0.04438263922929764,
- -0.09581462293863297,
- 0.04178324714303017,
- 0.025205370038747787,
- -0.005328877363353968,
- -0.06855558604001999,
- -0.020416615530848503,
- 0.03261028602719307,
- -0.10843677073717117,
- -0.027572989463806152,
- -0.020094795152544975,
- 0.07615423947572708,
- -0.012167278677225113,
- 0.037891026586294174,
- 0.01655406504869461,
- 0.0449199341237545,
- -0.04233811795711517,
- 0.00677649537101388,
- -0.01649446226656437,
- 0.0810028538107872,
- -0.011908413842320442,
- 0.1330641210079193,
- -0.017934639006853104,
- 0.12326183170080185,
- 0.04163069650530815
- ]
- },
- {
- "keyword": "builds",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07822495698928833,
- 0.02336280792951584,
- 0.008561834692955017,
- 0.017653455957770348,
- -0.041438665241003036,
- -0.06801725924015045,
- 0.04853586480021477,
- -0.025560857728123665,
- -0.07607671618461609,
- 0.013493683189153671,
- -0.037480127066373825,
- -0.07807575911283493,
- -0.007106732111424208,
- -0.04521187022328377,
- 0.04018932208418846,
- 0.05398339033126831,
- 0.00788324885070324,
- 0.02233564667403698,
- -0.0246600192040205,
- -0.01073487289249897,
- -0.1273258775472641,
- -0.04251999408006668,
- 0.027425047010183334,
- 0.030294615775346756,
- 0.058964841067790985,
- 0.01962815225124359,
- 0.000202005569008179,
- 0.028375381603837013,
- 0.07438583672046661,
- -0.10232081264257431,
- 0.014372831210494041,
- -0.0005657183937728405,
- 0.0593777559697628,
- -0.016728581860661507,
- -0.022026412189006805,
- 0.03444967046380043,
- 0.04332505911588669,
- 0.019414573907852173,
- 0.014738488011062145,
- -0.031255465000867844,
- -0.08703767508268356,
- -0.03214780613780022,
- 0.06521978229284286,
- 0.05453261360526085,
- -0.034343868494033813,
- 0.024826377630233765,
- 0.034550219774246216,
- -0.06755126267671585,
- 0.0023408420383930206,
- -0.04089583083987236,
- -0.01889384724199772,
- -0.04794464260339737,
- -0.07407256215810776,
- -0.0907449796795845,
- 0.01777895726263523,
- 0.038245245814323425,
- -0.008202516473829746,
- 0.05990883708000183,
- 0.003686166601255536,
- -0.006270958110690117,
- 0.09887674450874329,
- 0.013269565999507904,
- -0.0980760008096695,
- 0.013894054107367992,
- 0.04939917474985123,
- -0.006101120728999376,
- 0.008449726738035679,
- -0.014039336703717709,
- 0.008865619078278542,
- -0.028793148696422577,
- 0.009709027595818043,
- 0.02030682936310768,
- -0.04439017176628113,
- -0.031953465193510056,
- 0.009113900363445282,
- 0.08884894847869873,
- 0.04656355082988739,
- -0.05747818946838379,
- 0.04503235965967178,
- -0.05257239192724228,
- -0.058201778680086136,
- -0.02036203257739544,
- -0.055895641446113586,
- 0.004465452861040831,
- 0.060419417917728424,
- 0.011823001317679882,
- 0.11437064409255981,
- 0.061723239719867706,
- 0.03945270553231239,
- -0.0190898347645998,
- 0.018472712486982346,
- 0.006115061230957508,
- 0.045026298612356186,
- 0.028890274465084076,
- 0.01790044642984867,
- 0.07392627745866776,
- -0.006620864383876324,
- -0.04592649266123772,
- -0.049127452075481415,
- 0.1967664510011673,
- -0.007659777533262968,
- 0.025503359735012054,
- 0.0968097522854805,
- -0.021848848089575768,
- -0.02429223619401455,
- -0.008068234659731388,
- -0.107248455286026,
- 0.11571359634399414,
- -0.01227302011102438,
- -0.027858974412083626,
- -0.004702738486230373,
- -0.031380053609609604,
- -0.01533574890345335,
- -0.06432422995567322,
- -0.001296929200179875,
- -0.03230812028050423,
- -0.033553317189216614,
- 0.02028575912117958,
- 0.019023405387997627,
- 0.0685466080904007,
- 0.08557072281837463,
- -0.03991535305976868,
- -0.05276210233569145,
- -0.03426261991262436,
- -0.08047905564308167,
- -0.060037195682525635,
- -0.017395302653312683,
- -4.6639707321911884e-33,
- 0.09611734747886658,
- -0.025806009769439697,
- -0.001485483138822019,
- 0.1541765183210373,
- 0.0675114095211029,
- -0.04213183373212814,
- 0.07891088724136353,
- -0.023519324138760567,
- -0.0463283509016037,
- -0.01036254595965147,
- -0.022207127884030342,
- -0.0034512090496718884,
- -0.06080183386802673,
- 0.12772482633590698,
- 0.1243269294500351,
- -0.08880216628313065,
- 0.050726570188999176,
- 0.009974893182516098,
- -0.06296741217374802,
- 0.008864587172865868,
- -0.02129337005317211,
- -0.043215762823820114,
- -0.008367910981178284,
- 0.04738114774227142,
- 0.08231674134731293,
- -0.06061476096510887,
- 0.08400985598564148,
- 0.0067434124648571014,
- -0.1156986802816391,
- 0.02032734453678131,
- -0.012182949110865593,
- -0.00727804796770215,
- -0.03541065752506256,
- 0.010436023585498333,
- 0.00816413201391697,
- 0.0052613792940974236,
- -0.030834561213850975,
- -0.019322961568832397,
- -0.00043961332994513214,
- -0.030713234096765518,
- 0.013157489709556103,
- 0.03987053409218788,
- -0.07508458197116852,
- -0.0062158540822565556,
- 0.02718997560441494,
- -0.0077865212224423885,
- -0.011030729860067368,
- -0.033165011554956436,
- 0.03774451091885567,
- -0.0202509593218565,
- 0.038679759949445724,
- 0.006353810429573059,
- -0.04476964846253395,
- 0.06387609243392944,
- 0.009801738895475864,
- 0.00870315171778202,
- 0.019813135266304016,
- -0.05500056594610214,
- 0.08096329122781754,
- 0.0170222707092762,
- 0.028448570519685745,
- 0.050323937088251114,
- -0.08878585696220398,
- 0.02755417302250862,
- -0.08700845390558243,
- 0.040470562875270844,
- 0.051034022122621536,
- -0.01372272614389658,
- 0.03886307775974274,
- 0.0044831326231360435,
- -0.03853185847401619,
- -0.07979939877986908,
- 0.09083288908004761,
- -0.010423637926578522,
- 0.025364041328430176,
- -0.005679943598806858,
- -0.0990816131234169,
- 0.04118919000029564,
- -0.05785277485847473,
- -0.0013924703234806657,
- -0.054506562650203705,
- 0.06239110231399536,
- -0.07798653095960617,
- 0.028385667130351067,
- 0.0690884068608284,
- 0.018400611355900764,
- -0.05953492224216461,
- -0.009280768223106861,
- -0.029389455914497375,
- 0.042712174355983734,
- -0.08785370737314224,
- -0.04886920750141144,
- 0.000511806458234787,
- -0.036675721406936646,
- -0.043282151222229004,
- 3.508097586136033e-33,
- -0.11378032714128494,
- -0.059302449226379395,
- -0.04515313357114792,
- 0.018027259036898613,
- -0.004847853910177946,
- -0.046825263649225235,
- -0.030870536342263222,
- -0.0633692592382431,
- 0.032458897680044174,
- 0.04522824287414551,
- -0.0409567654132843,
- 0.018621915951371193,
- 0.061888713389635086,
- 0.0046621584333479404,
- -0.028206733986735344,
- -0.016207868233323097,
- 0.1339869499206543,
- -0.10026267915964127,
- 0.03645986691117287,
- 0.015463404357433319,
- -0.0015409954357892275,
- 0.0012572151608765125,
- -0.0004348658549133688,
- -0.03956444561481476,
- 0.016566254198551178,
- -0.015110313892364502,
- -0.03590713068842888,
- -0.02070930041372776,
- 0.0433657243847847,
- 0.029027385637164116,
- 0.09275737404823303,
- -0.021264471113681793,
- -0.08229780942201614,
- -0.00871318019926548,
- -0.03926197439432144,
- 0.06317569315433502,
- 0.035777971148490906,
- 0.08192888647317886,
- -0.027401359751820564,
- -0.07109568268060684,
- 0.08818525820970535,
- -0.030044516548514366,
- -0.0005306166131049395,
- 0.09916776418685913,
- -0.030157439410686493,
- -0.007288791239261627,
- 0.06576072424650192,
- -0.03663865849375725,
- 0.003452874720096588,
- 0.0003870239306706935,
- 0.07408387959003448,
- 0.0395091250538826,
- 0.04353518784046173,
- -0.02763228863477707,
- -0.02303927019238472,
- -0.05604517459869385,
- -0.01622292771935463,
- 0.04265337437391281,
- 0.005124683957546949,
- 0.015336391516029835,
- 0.012768607586622238,
- 0.0019967099651694298,
- 0.05028125271201134,
- -0.02588084153831005,
- -0.08070464432239532,
- -0.0014087609015405178,
- -0.04348145052790642,
- 0.059804704040288925,
- -0.024484913796186447,
- 0.0499468669295311,
- -0.04957108944654465,
- 0.007766496390104294,
- -0.038882065564394,
- 0.0015293878968805075,
- -0.090021051466465,
- -0.08782482147216797,
- -0.0593385174870491,
- 0.05019326135516167,
- 0.002013468649238348,
- 0.03975881263613701,
- -0.00011963416909566149,
- -0.030489441007375717,
- -0.04004495590925217,
- 0.06379485875368118,
- 0.028805866837501526,
- -0.04171058163046837,
- 0.051654208451509476,
- 0.05730663985013962,
- 0.011741924099624157,
- -0.031160786747932434,
- 0.013010191731154919,
- 0.05478229746222496,
- -0.03516813740134239,
- 0.07282326370477676,
- -0.025256728753447533,
- -1.1646795528008624e-8,
- 0.027175070717930794,
- 0.06791110336780548,
- -0.0045183817856013775,
- 0.015108518302440643,
- 0.044567570090293884,
- 0.02425411529839039,
- 0.015309064649045467,
- 0.053058020770549774,
- 0.047368910163640976,
- 0.02905181050300598,
- 0.07314573228359222,
- -0.02729031629860401,
- 0.019958067685365677,
- 0.09387516975402832,
- 0.035200316458940506,
- -0.05553693324327469,
- -0.06130819395184517,
- 0.08795474469661713,
- -0.07447469234466553,
- -0.09331964701414108,
- -0.011750179342925549,
- 0.018386775627732277,
- 0.07620592415332794,
- 0.03606771305203438,
- -0.044925324618816376,
- -0.03767673671245575,
- 0.05706827715039253,
- -0.033075496554374695,
- 0.011431306600570679,
- 0.0798167958855629,
- 0.02539116144180298,
- 0.08071286231279373,
- -0.0008238357841037214,
- -0.018169131129980087,
- 0.08727186918258667,
- -0.010578236542642117,
- 0.028168438002467155,
- 0.028381774201989174,
- 0.05241406708955765,
- 0.010429756715893745,
- -0.030587786808609962,
- -0.05284666642546654,
- 0.09707848727703094,
- -0.014599483460187912,
- -0.023892337456345558,
- -0.004121806006878614,
- -0.122545525431633,
- -0.05803535878658295,
- -0.09793966263532639,
- -0.04322194308042526,
- 0.0337936170399189,
- 0.028647813946008682,
- -0.012059721164405346,
- 0.05913114920258522,
- 0.03459097817540169,
- 0.03652837872505188,
- -0.04036493971943855,
- 0.05246850103139877,
- 0.03808442875742912,
- -0.012548183090984821,
- 0.08974721282720566,
- -0.032133329659700394,
- 0.09418878704309464,
- 0.05425695329904556
- ]
- },
- {
- "keyword": "produces",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.03749672323465347,
- 0.003109057666733861,
- -0.06658919155597687,
- 0.0439186692237854,
- 0.006497072521597147,
- -0.01995568536221981,
- 0.051178913563489914,
- 0.0034223953261971474,
- 0.011004007421433926,
- -0.02159246988594532,
- 0.009669768624007702,
- -0.1185462549328804,
- 0.028385668992996216,
- -0.043902456760406494,
- -0.021856795996427536,
- 0.00931077916175127,
- 0.037407804280519485,
- -0.044967394322156906,
- -0.0676121637225151,
- -0.058555200695991516,
- 0.02612987905740738,
- 0.014356179162859917,
- 0.007664569653570652,
- 0.053602706640958786,
- 0.010462150909006596,
- 0.02383205108344555,
- -0.0381256602704525,
- 0.022793952375650406,
- 0.06030214950442314,
- -0.11201213300228119,
- -0.038309112191200256,
- 0.018929218873381615,
- 0.05639256536960602,
- -0.04654420167207718,
- 0.02081766165792942,
- 0.020930500701069832,
- 0.017465826123952866,
- -0.0003323906857986003,
- 0.02413102425634861,
- 0.011161170899868011,
- 0.0216047465801239,
- -0.09103673696517944,
- 0.009459620341658592,
- 0.010379369370639324,
- 0.0011424118420109153,
- 0.021181076765060425,
- 0.04363767057657242,
- -0.0053356303833425045,
- -0.004259237553924322,
- 0.003020073287189007,
- -0.030803639441728592,
- 0.04441424086689949,
- -0.0826338455080986,
- -0.06311167776584625,
- 0.0062138913199305534,
- -0.010774830356240273,
- -0.030398698523640633,
- -0.024233710020780563,
- -0.03027922473847866,
- 0.0008900713874027133,
- 0.01456959918141365,
- -0.0047673871740698814,
- -0.06331440061330795,
- -0.03303484246134758,
- 0.06827789545059204,
- -0.01039692759513855,
- -0.020792311057448387,
- 0.0003006330516654998,
- -0.061072058975696564,
- -0.041875291615724564,
- 0.011691688559949398,
- 0.03842197358608246,
- -0.03985320031642914,
- 0.009267223998904228,
- 0.027883587405085564,
- 0.023264795541763306,
- 0.055936288088560104,
- -0.06306329369544983,
- 0.06849512457847595,
- 0.0460667610168457,
- 0.07596655189990997,
- 0.02013092301785946,
- -0.09091177582740784,
- 0.008678278885781765,
- 0.010976559482514858,
- -0.014309963211417198,
- 0.06278058141469955,
- 0.03640920668840408,
- 0.02379417046904564,
- 0.049261968582868576,
- -0.06690555810928345,
- 0.005187176167964935,
- 0.05143876373767853,
- -0.013815113343298435,
- -0.0971469059586525,
- 0.031683240085840225,
- 0.05496818944811821,
- 0.016329137608408928,
- 0.023582439869642258,
- 0.17795716226100922,
- -0.0007569677545689046,
- 0.05877763777971268,
- 0.04291415587067604,
- -0.1198505386710167,
- -0.03864075988531113,
- -0.03699805587530136,
- -0.1022440642118454,
- 0.12473826110363007,
- -0.008934501558542252,
- 0.049374137073755264,
- 0.04443388804793358,
- 0.04913574457168579,
- -0.10963317006826401,
- 0.04003453627228737,
- 0.02360847033560276,
- 0.03415624424815178,
- 0.002342495834454894,
- -0.005430574528872967,
- -0.009808089584112167,
- -0.02275661751627922,
- 0.01707560196518898,
- 0.024906139820814133,
- 0.006467006169259548,
- 0.09375430643558502,
- -0.07382889091968536,
- -0.06949618458747864,
- 0.04691798985004425,
- -5.0702788851849736e-33,
- -0.016601858660578728,
- -0.10000504553318024,
- 0.06357456743717194,
- 0.03779110312461853,
- -0.019214127212762833,
- 0.07251101732254028,
- -0.05031327158212662,
- -0.023498550057411194,
- 0.03580767288804054,
- -0.02434825710952282,
- -0.0818365141749382,
- -0.028840668499469757,
- -0.013737858273088932,
- 0.0575072355568409,
- 0.08476004004478455,
- -0.043429385870695114,
- 0.024131998419761658,
- -0.012910174205899239,
- -0.056874118745326996,
- 0.05770871788263321,
- -0.10368550568819046,
- 0.0761767253279686,
- -0.0160061065107584,
- 0.04691532254219055,
- -0.017528047785162926,
- 0.02227677032351494,
- 0.02354532852768898,
- -0.0262990053743124,
- -0.07934205234050751,
- -0.007192043587565422,
- 0.09390448778867722,
- 0.025239797309041023,
- 0.014786064624786377,
- -0.004728207364678383,
- -0.07582412660121918,
- -0.014238221570849419,
- -0.046827830374240875,
- -0.05757294222712517,
- -0.01274633128196001,
- 0.041183020919561386,
- 0.0026481994427740574,
- 0.060217879712581635,
- -0.01444992981851101,
- 0.025951389223337173,
- -0.011915760114789009,
- 0.03703819960355759,
- 0.01680106669664383,
- 0.05214500427246094,
- 0.02644476108253002,
- -0.0012249769642949104,
- -0.03293314948678017,
- 0.03758435323834419,
- 0.06351364403963089,
- 0.0010353383840993047,
- 0.07711485028266907,
- -0.02166561223566532,
- 0.029664667323231697,
- -0.036655522882938385,
- 0.08781132847070694,
- 0.005148717667907476,
- -0.032986439764499664,
- 0.14475375413894653,
- -0.07661201059818268,
- 0.0669235810637474,
- -0.05859200283885002,
- -0.028276538476347923,
- 0.08173990249633789,
- -0.04807800427079201,
- 0.03408994525671005,
- 0.0135488361120224,
- -0.017026549205183983,
- -0.03814416378736496,
- 0.05280888080596924,
- -0.060554828494787216,
- 0.024573378264904022,
- 0.016808226704597473,
- -0.04380298778414726,
- 0.013467967510223389,
- 0.009983327239751816,
- -0.0037216830532997847,
- 0.010580591857433319,
- 0.011456101201474667,
- 0.014177488163113594,
- -0.0769139900803566,
- 0.026064557954669,
- 0.043311018496751785,
- -0.07086799293756485,
- -0.024421794340014458,
- 0.08221928030252457,
- 0.07300552725791931,
- -0.01383151113986969,
- -0.04471632093191147,
- 0.009604514576494694,
- 0.029011324048042297,
- -0.07366307824850082,
- 4.3152886183525735e-33,
- 0.0408686138689518,
- 0.009553556330502033,
- -0.010900912806391716,
- -0.0025688624009490013,
- -0.06341931223869324,
- -0.05520690232515335,
- -0.00872138049453497,
- -0.08907121419906616,
- -0.08485615253448486,
- 0.02389369159936905,
- -0.04481782019138336,
- -0.0015406545717269182,
- 0.01792708970606327,
- 0.04638799652457237,
- -0.020325856283307076,
- -0.009568764828145504,
- 0.12353193759918213,
- -0.03409223258495331,
- -0.01957988366484642,
- -0.01755993254482746,
- -0.007701512426137924,
- 0.02170673757791519,
- 0.028363298624753952,
- -0.012896304950118065,
- -0.024134362116456032,
- 0.041656333953142166,
- -0.003920773975551128,
- 0.0834517776966095,
- -0.02197284996509552,
- -0.0453176349401474,
- 0.03857172653079033,
- -0.08815328031778336,
- 0.0029884520918130875,
- -0.024052349850535393,
- -0.04314722493290901,
- 0.036931052803993225,
- -0.0006172691355459392,
- 0.013393635861575603,
- 0.07737088948488235,
- -0.00029056501807644963,
- 0.05188944563269615,
- 0.0056107137352228165,
- 0.02247432805597782,
- 0.17349377274513245,
- -0.04679526388645172,
- -0.034646108746528625,
- 0.03680557385087013,
- -0.04605056717991829,
- 0.1150921881198883,
- 0.026177339255809784,
- 0.021221166476607323,
- 0.030680982396006584,
- -0.08670131117105484,
- -0.05696184188127518,
- -0.07319935411214828,
- -0.05890583619475365,
- 0.013986991718411446,
- -0.030968327075242996,
- -0.042446427047252655,
- -0.015455888584256172,
- -0.05558832734823227,
- -0.009801068343222141,
- 0.033748600631952286,
- -0.02828148379921913,
- -0.01839935965836048,
- 0.03293702006340027,
- -0.008761766366660595,
- 0.06024856120347977,
- 0.07757696509361267,
- 0.030816666781902313,
- 0.054478228092193604,
- 0.025515221059322357,
- -0.06228023022413254,
- -0.05710582435131073,
- -0.05636082589626312,
- 0.04709465056657791,
- -0.08305390924215317,
- -0.017573721706867218,
- 0.07007281482219696,
- -0.024620799347758293,
- -0.03699316829442978,
- -0.03579145297408104,
- 0.03619103133678436,
- 0.019563408568501472,
- -0.02059490606188774,
- -0.07662853598594666,
- 0.052565257996320724,
- -0.06334907561540604,
- 0.009805153124034405,
- 0.07081595808267593,
- 0.04974622279405594,
- 0.03994278982281685,
- -0.08722609281539917,
- 0.0933329239487648,
- 0.05754423514008522,
- -1.2788764713889123e-8,
- 0.0038053211756050587,
- -0.04654880240559578,
- 0.00917517114430666,
- 0.04657284915447235,
- 0.04141997918486595,
- 0.029048319905996323,
- 0.043540582060813904,
- -0.023110903799533844,
- 0.05392766371369362,
- 0.02312449738383293,
- -0.04438810795545578,
- -0.03603862226009369,
- -0.003424280323088169,
- 0.0615667961537838,
- 0.15653836727142334,
- -0.035876356065273285,
- -0.038555387407541275,
- 0.0961206778883934,
- -0.08603093028068542,
- -0.08687523007392883,
- -0.02229255437850952,
- -0.0008181489538401365,
- 0.04633523151278496,
- 0.05194775015115738,
- -0.05870292708277702,
- -0.07215851545333862,
- -0.025623423978686333,
- 0.006291309837251902,
- 0.04393654316663742,
- 0.0588817335665226,
- 0.04992580786347389,
- 0.02805783413350582,
- -0.06804609298706055,
- -0.021077914163470268,
- -0.004838891327381134,
- -0.09217127412557602,
- -0.07258116453886032,
- -0.026348700746893883,
- 0.061022963374853134,
- -0.02188066393136978,
- -0.06774981319904327,
- 0.03177395835518837,
- 0.0058810412883758545,
- 0.025093169882893562,
- -0.049279071390628815,
- -0.04550950229167938,
- -0.026625139638781548,
- -0.08746440708637238,
- -0.013891964219510555,
- 0.013569178991019726,
- 0.04516362398862839,
- -0.00969331432133913,
- 0.12367657572031021,
- 0.02753276377916336,
- 0.03781420364975929,
- -0.06157425418496132,
- -0.009933914989233017,
- -0.007658305112272501,
- 0.019203955307602882,
- 0.00622677942737937,
- 0.09686621278524399,
- 0.006377527490258217,
- 0.2039966732263565,
- 0.04875563085079193
- ]
- },
- {
- "keyword": "generates",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.08109954744577408,
- 0.07030607759952545,
- -0.08958210051059723,
- 0.03986624628305435,
- -0.030518602579832077,
- -0.02143934555351734,
- 0.0358542837202549,
- -0.048871997743844986,
- 0.01239759661257267,
- -0.002734043635427952,
- 0.05483095347881317,
- -0.14540134370326996,
- 0.11337418109178543,
- -0.11159295588731766,
- -0.03052106313407421,
- 0.036823712289333344,
- -0.0696425810456276,
- -0.008316809311509132,
- -0.019534634426236153,
- -0.06725337356328964,
- 0.028640706092119217,
- 0.022234253585338593,
- 0.004801394417881966,
- 0.02077574096620083,
- 0.0670219287276268,
- -0.022598648443818092,
- -0.019690869376063347,
- 0.052289195358753204,
- 0.14684247970581055,
- -0.03825870156288147,
- -0.001596235204488039,
- 0.07237732410430908,
- 0.02676204964518547,
- -0.00958503782749176,
- -0.009628228843212128,
- 0.09674721956253052,
- 0.027079463005065918,
- 0.06330179423093796,
- 0.032747719436883926,
- 0.02420097030699253,
- -0.023104850202798843,
- -0.06496412307024002,
- 0.06546235829591751,
- 0.05633200705051422,
- 0.00769619457423687,
- 0.024159085005521774,
- -0.02070574089884758,
- 0.029704397544264793,
- -0.024585701525211334,
- -0.023286769166588783,
- -0.05091657489538193,
- 0.0030298884958028793,
- -0.025800572708249092,
- -0.03912359103560448,
- 0.007513228803873062,
- -0.020457951352000237,
- 0.00363445607945323,
- 0.03000524267554283,
- -0.012152799405157566,
- -0.06571973115205765,
- -0.03520869091153145,
- -0.00943921972066164,
- -0.04766664281487465,
- -0.03500480204820633,
- 0.057204555720090866,
- -0.06296968460083008,
- 0.04859456047415733,
- 0.004632786847651005,
- -0.032195378094911575,
- -0.0393546000123024,
- -0.033560510724782944,
- 0.017506476491689682,
- -0.04031834751367569,
- 0.06503387540578842,
- 0.011571335606276989,
- 0.04266279563307762,
- 0.0016940217465162277,
- -0.015761511400341988,
- 0.07349928468465805,
- -0.04168280214071274,
- 0.051383327692747116,
- -0.009867739863693714,
- -0.03136464208364487,
- 0.022532766684889793,
- 0.002838027896359563,
- 0.0426422618329525,
- 0.06749338656663895,
- 0.021346954628825188,
- 0.023767314851284027,
- 0.06421023607254028,
- -0.07769928872585297,
- 0.024103853851556778,
- 0.09232197701931,
- -0.003922161180526018,
- -0.11389811336994171,
- 0.05012650787830353,
- 0.07395137846469879,
- -0.08145739138126373,
- 0.023839248344302177,
- 0.23482464253902435,
- -0.005315456073731184,
- 0.05468325689435005,
- 0.05273749306797981,
- -0.008961203508079052,
- -0.020627617835998535,
- -0.027783295139670372,
- -0.037777796387672424,
- 0.06481082737445831,
- 0.003027418628334999,
- 0.02499384805560112,
- 0.03305944800376892,
- 0.018322065472602844,
- -0.0011723566567525268,
- -0.0081255454570055,
- 0.04214902222156525,
- 0.0012896263506263494,
- -0.04059751331806183,
- 0.015859454870224,
- 0.02014053240418434,
- 0.05931432917714119,
- 0.05039701238274574,
- 0.02554577775299549,
- -0.02774154767394066,
- 0.09642472118139267,
- -0.09792470186948776,
- -0.09538501501083374,
- 0.02553527243435383,
- -5.184637955130674e-33,
- 0.04098143056035042,
- -0.02210168167948723,
- 0.047665007412433624,
- 0.12120934575796127,
- 0.0034492667764425278,
- 0.02592245116829872,
- -0.033280398696660995,
- -0.020812056958675385,
- -0.06850410252809525,
- -0.019553521648049355,
- -0.06303130835294724,
- 0.029799122363328934,
- 0.015399808995425701,
- 0.10413824021816254,
- 0.12079904228448868,
- -0.009156639687716961,
- 0.03623645752668381,
- 0.012859323993325233,
- -0.023912541568279266,
- -0.00649240892380476,
- -0.060852114111185074,
- 0.07247692346572876,
- -0.0020478402730077505,
- -0.04110116511583328,
- 0.008662891574203968,
- 0.0578838475048542,
- 0.03182264417409897,
- -0.07121982425451279,
- -0.07687307894229889,
- -0.012604140676558018,
- 0.03852288797497749,
- 0.012116899713873863,
- 0.003725687973201275,
- 0.02527567744255066,
- -0.041938383132219315,
- 0.07144147157669067,
- 0.011023757979273796,
- -0.016932738944888115,
- -0.012316382490098476,
- -0.007304324768483639,
- 0.006981327664107084,
- 0.04457016661763191,
- 0.02954905293881893,
- -0.011274369433522224,
- 0.019464878365397453,
- 0.02608468197286129,
- 0.046362876892089844,
- 0.03682002052664757,
- 0.0008733058348298073,
- 0.016595860943198204,
- -0.02658579684793949,
- 0.028686564415693283,
- 0.004444625694304705,
- -0.0020237667486071587,
- 0.034964703023433685,
- -0.015566261485219002,
- -0.009343781508505344,
- 0.031501397490501404,
- 0.05822565779089928,
- 0.05536438524723053,
- -0.008149517700076103,
- 0.08550622314214706,
- -0.0468585267663002,
- 0.07639311999082565,
- -0.012887068092823029,
- -0.026564208790659904,
- 0.03517117351293564,
- -0.10209581255912781,
- 0.08131551742553711,
- 0.08347116410732269,
- -0.031007854267954826,
- -0.038603924214839935,
- -0.019372059032320976,
- -0.03772323206067085,
- 0.0026288393419235945,
- -0.06450114399194717,
- -0.01870962232351303,
- 0.011305984109640121,
- -0.08079898357391357,
- 0.02341355010867119,
- -0.038716889917850494,
- 0.04700157791376114,
- -0.030908286571502686,
- -0.12324334681034088,
- 0.08711805194616318,
- -0.014346731826663017,
- -0.025462888181209564,
- -0.05282757058739662,
- -0.017475372180342674,
- 0.0061319805681705475,
- -0.03736814484000206,
- -0.06809743493795395,
- 0.03841737285256386,
- -0.019925961270928383,
- -0.07890733331441879,
- 2.8241163616429146e-33,
- -0.03251070901751518,
- 0.039986833930015564,
- -0.04628996551036835,
- 0.035211723297834396,
- -0.04628918692469597,
- -0.025935528799891472,
- -0.009038026444613934,
- -0.036101628094911575,
- -0.13315249979496002,
- -0.0241707693785429,
- -0.0223743487149477,
- 0.02955659292638302,
- -0.0048840902745723724,
- -0.006314695347100496,
- 0.032348956912755966,
- -0.04127923771739006,
- 0.06581562012434006,
- -0.031492944806814194,
- -0.06688400357961655,
- 0.029784079641103745,
- -0.026156002655625343,
- 0.05334431678056717,
- -0.006004844792187214,
- -0.019677812233567238,
- 0.0167823676019907,
- 0.0031979249324649572,
- 0.03895603120326996,
- 0.10638007521629333,
- -0.04932493716478348,
- 0.006987889297306538,
- 0.019260559231042862,
- -0.02268034778535366,
- -0.05620488524436951,
- 0.008272684179246426,
- -0.046887584030628204,
- 0.0005933405482210219,
- 0.07079926878213882,
- -0.01805909164249897,
- 0.03221021965146065,
- 0.04638158902525902,
- -0.005824513733386993,
- 0.07290581613779068,
- 0.0012828573817387223,
- 0.16779477894306183,
- -0.036745086312294006,
- 0.01413935236632824,
- -0.019841132685542107,
- 0.01597374677658081,
- 0.05520150065422058,
- 0.027149824425578117,
- -0.0015848444309085608,
- -0.00884892139583826,
- -0.07405354082584381,
- -0.07991646975278854,
- -0.0229833722114563,
- -0.08004408329725266,
- -0.032476674765348434,
- 0.04355378448963165,
- 0.03679832071065903,
- 0.018332209438085556,
- -0.06873417645692825,
- -0.03495841845870018,
- 0.018734397366642952,
- -0.04176945239305496,
- -0.04126312583684921,
- -0.006739745382219553,
- -0.05146582052111626,
- 0.0726223737001419,
- 0.03134274482727051,
- 0.02773423306643963,
- 0.008575204759836197,
- 0.07229914516210556,
- -0.06929322332143784,
- -0.03444252163171768,
- -0.04786137491464615,
- 0.02532273344695568,
- -0.034522514790296555,
- 0.02628440409898758,
- 0.008591659367084503,
- -0.0729806125164032,
- -0.027769114822149277,
- 0.05622776597738266,
- 0.040996018797159195,
- -0.007688396610319614,
- -0.06020567938685417,
- -0.10098866373300552,
- 0.12376365810632706,
- 0.01110377348959446,
- -0.01814849302172661,
- 0.029426073655486107,
- 0.03125228360295296,
- 0.07060269266366959,
- -0.06075930595397949,
- 0.07992907613515854,
- 0.01898535154759884,
- -1.223209533662839e-8,
- -0.0350329615175724,
- 0.00019259600958321244,
- -0.021443579345941544,
- 0.03605930134654045,
- 0.11109453439712524,
- 0.05814266949892044,
- 0.017454013228416443,
- -0.021178394556045532,
- 0.013385388068854809,
- -0.0724964588880539,
- 0.0047074886970222,
- -0.03963984176516533,
- -0.030995996668934822,
- 0.0717526227235794,
- 0.12582352757453918,
- -0.054671451449394226,
- -0.05158613249659538,
- 0.05919165909290314,
- -0.08077710121870041,
- -0.07752212882041931,
- -0.042980484664440155,
- -0.014093413949012756,
- -0.05145549401640892,
- 0.017906472086906433,
- 0.0037486739456653595,
- -0.0514926016330719,
- -0.048392441123723984,
- -0.0459541417658329,
- -0.022382384166121483,
- 0.017334524542093277,
- 0.046359460800886154,
- 0.013025731779634953,
- -0.07360012829303741,
- -0.042624808847904205,
- -0.017740795388817787,
- 0.027852434664964676,
- -0.08161433041095734,
- -0.03490485996007919,
- 0.07502781599760056,
- -0.07072553038597107,
- -0.030310016125440598,
- 0.00794264581054449,
- 0.0031140155624598265,
- -0.04123058170080185,
- -0.11101382970809937,
- -0.07494308799505234,
- -0.023171506822109222,
- -0.07821344584226608,
- -0.011768918484449387,
- -0.02203788235783577,
- -0.011944906786084175,
- -0.04843198508024216,
- 0.07676324993371964,
- -0.04816260188817978,
- 0.054454851895570755,
- -0.03177928179502487,
- -0.017128335312008858,
- 0.018098965287208557,
- 0.047904301434755325,
- 0.039365027099847794,
- 0.06306348741054535,
- 0.059793539345264435,
- 0.09691038727760315,
- -0.03475172072649002
- ]
- },
- {
- "keyword": "constructs",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.0508611835539341,
- 0.0026260502636432648,
- -0.024391623213887215,
- 0.02515188790857792,
- -0.11801458150148392,
- -0.003915669396519661,
- 0.07524187862873077,
- -0.04197881743311882,
- -0.014622487127780914,
- 0.04267940670251846,
- 0.033561039716005325,
- -0.060025785118341446,
- 0.03248893842101097,
- -0.02469678223133087,
- 0.025528742000460625,
- -0.02196519821882248,
- -0.046576596796512604,
- -0.015391738153994083,
- -0.011921693570911884,
- 0.03776099905371666,
- 0.020757406949996948,
- -0.04072275385260582,
- -0.017201527953147888,
- 0.058213088661432266,
- -0.008441248908638954,
- 0.07026196271181107,
- 0.011517675593495369,
- -0.0006619268679060042,
- 0.1541367769241333,
- -0.024517279118299484,
- -0.03413645550608635,
- -0.008869239129126072,
- 0.04167064651846886,
- -0.014212889596819878,
- -0.02491891011595726,
- 0.06736300885677338,
- 0.0667102113366127,
- 0.008542186580598354,
- 0.051343925297260284,
- 0.003853146219626069,
- -0.09607487171888351,
- -0.02102169767022133,
- 0.009516415186226368,
- 0.011981777846813202,
- 0.06309004873037338,
- 0.02477981708943844,
- 0.017561357468366623,
- -0.015175014734268188,
- -0.0634472519159317,
- -0.0917290672659874,
- -0.12447533756494522,
- 0.030978940427303314,
- -0.0809636265039444,
- -0.05097825452685356,
- 0.03913009539246559,
- 0.030626673251390457,
- -0.048162221908569336,
- -0.014775901101529598,
- -0.0426316037774086,
- -0.07287091016769409,
- 0.035439856350421906,
- 0.022041307762265205,
- -0.020850835368037224,
- -0.002456183545291424,
- 0.05979754030704498,
- 0.002151377033442259,
- -0.0014752775896340609,
- 0.019694438204169273,
- 0.03727617487311363,
- 0.09325416386127472,
- 0.008232698775827885,
- -0.005575913470238447,
- 0.030161162838339806,
- 0.15272407233715057,
- 0.04561977460980415,
- -0.03272087499499321,
- 0.06885482370853424,
- 0.06347551196813583,
- 0.05546271800994873,
- -0.01991661638021469,
- -0.01765833981335163,
- -0.010244078002870083,
- 0.02145584300160408,
- 0.033457424491643906,
- 0.009817848913371563,
- -0.009609280154109001,
- 0.06796472519636154,
- 0.012078437954187393,
- -0.055420055985450745,
- -0.0033626065123826265,
- -0.04945828393101692,
- -0.04698074236512184,
- -0.031208593398332596,
- 0.0633125901222229,
- 0.009387551806867123,
- 0.005664582829922438,
- -0.040587782859802246,
- -0.06967335194349289,
- 0.06261342018842697,
- 0.13409915566444397,
- -0.0009044145699590445,
- 0.08398618549108505,
- 0.04685857146978378,
- -0.019915694370865822,
- -0.04515974596142769,
- -0.04682637378573418,
- -0.11625982075929642,
- -0.04302619770169258,
- -0.019947577267885208,
- 0.027600236237049103,
- 0.02105802111327648,
- -0.07586541771888733,
- -0.07219409942626953,
- -0.048997752368450165,
- 0.012823744677007198,
- 0.029482316225767136,
- -0.044697657227516174,
- -0.0124993110075593,
- 0.04284971207380295,
- 0.05098453536629677,
- 0.09463397413492203,
- 0.030345309525728226,
- -0.0354289636015892,
- -0.019167263060808182,
- -0.07263064384460449,
- -0.11274844408035278,
- -0.04923538491129875,
- -6.190054803778285e-33,
- 0.03254099562764168,
- -0.016964973881840706,
- -0.0033268146216869354,
- 0.1547696739435196,
- 0.03524721786379814,
- 0.034221816807985306,
- -0.0063154734671115875,
- 0.014807198196649551,
- -0.02790285274386406,
- -0.00695819454267621,
- -0.04552174732089043,
- -0.00022293133952189237,
- 0.006274665240198374,
- 0.0951281189918518,
- 0.14373506605625153,
- -0.04474354535341263,
- 0.028512828052043915,
- -0.001189936650916934,
- -0.019466914236545563,
- -0.03478145971894264,
- -0.007550334557890892,
- 0.06159764155745506,
- 0.009848082438111305,
- -0.09605325758457184,
- 0.04076646268367767,
- 0.023911744356155396,
- 0.08358205109834671,
- -0.015954937785863876,
- -0.1350405216217041,
- 0.007791379000991583,
- 0.057987622916698456,
- -0.09562736004590988,
- -0.05484902486205101,
- 0.0894218236207962,
- 0.02090371400117874,
- 0.0402974858880043,
- -0.017583446577191353,
- -0.026799431070685387,
- 0.014612101949751377,
- -0.10613472759723663,
- 0.06195775419473648,
- -0.0031867765355855227,
- -0.006166189443320036,
- 0.01625073328614235,
- 0.06384532898664474,
- 0.03311682865023613,
- 0.03880028799176216,
- 0.011261489242315292,
- -0.01909499242901802,
- -0.021606750786304474,
- -0.05623985454440117,
- 0.023022033274173737,
- -0.007785061839967966,
- 0.006987994536757469,
- 0.04561597481369972,
- -0.006349511444568634,
- -0.044441357254981995,
- 0.019517602398991585,
- 0.0033225123770534992,
- 0.02777082659304142,
- -0.0639142170548439,
- 0.01610199362039566,
- -0.05333549156785011,
- 0.0670948326587677,
- -0.06561704725027084,
- -0.017210202291607857,
- -0.05025044456124306,
- -0.04918849840760231,
- 0.09350567311048508,
- -0.07824617624282837,
- -0.009038545191287994,
- 0.0038146921433508396,
- -0.061754390597343445,
- -0.008974619209766388,
- 0.023991189897060394,
- -0.007825346663594246,
- 0.010393531993031502,
- 0.004986287094652653,
- -0.0584852397441864,
- -0.016418252140283585,
- -0.05288861691951752,
- 0.013780290260910988,
- 0.018513677641749382,
- 0.07075565308332443,
- -0.02121460996568203,
- -0.020575523376464844,
- 0.02801886945962906,
- -0.011082874611020088,
- 0.06806572526693344,
- 0.08967740088701248,
- -0.11655329912900925,
- -0.024846043437719345,
- 0.0067850141786038876,
- -0.03511296585202217,
- -0.008409933187067509,
- 2.2673809312583706e-33,
- -0.0043896338902413845,
- 0.042134594172239304,
- -0.07735148072242737,
- 0.00814167782664299,
- -0.029062574729323387,
- -0.000013114762623445131,
- -0.06028549000620842,
- -0.10155446827411652,
- -0.10325732827186584,
- 0.014578990638256073,
- 0.007668520789593458,
- 0.015734903514385223,
- 0.05654819309711456,
- -0.051697585731744766,
- -0.048889681696891785,
- -0.0527489110827446,
- 0.060726337134838104,
- -0.06858159601688385,
- 0.04104359447956085,
- 0.055363934487104416,
- 0.013738546520471573,
- 0.01863132230937481,
- -0.02090609073638916,
- -0.03878512233495712,
- 0.016536587849259377,
- 0.06345205008983612,
- -0.003139110282063484,
- -0.003948064986616373,
- 0.04898383095860481,
- 0.039020273834466934,
- -0.02115217223763466,
- -0.04899575188755989,
- -0.03934302553534508,
- 0.06339374929666519,
- -0.005539237055927515,
- 0.0442131944000721,
- 0.0534612201154232,
- 0.05089014396071434,
- -0.010878623463213444,
- -0.06134253740310669,
- 0.04677116870880127,
- -0.0004005972878076136,
- -0.014402535744011402,
- 0.0660150796175003,
- 0.03166026622056961,
- -0.07106627523899078,
- 0.07928609848022461,
- 0.019283026456832886,
- 0.00975462794303894,
- 0.019829388707876205,
- -0.04872031509876251,
- -0.11333854496479034,
- -0.04135315120220184,
- -0.06023022532463074,
- -0.0056016771122813225,
- 0.02423771284520626,
- 0.017267417162656784,
- -0.017212415114045143,
- 0.06718418002128601,
- 0.058010540902614594,
- -0.010109741240739822,
- -0.011633671820163727,
- -0.04306284338235855,
- 0.05952296406030655,
- -0.03292439132928848,
- -0.023461636155843735,
- -0.0727805495262146,
- 0.04933347925543785,
- 0.012407422997057438,
- 0.003263042541220784,
- -0.033966775983572006,
- 0.000818587897811085,
- -0.05734090507030487,
- -0.08258287608623505,
- -0.03930069878697395,
- -0.010340886190533638,
- -0.06949644535779953,
- 0.06192464381456375,
- -0.013969264924526215,
- -0.014425092376768589,
- 0.06608051806688309,
- -0.04007715731859207,
- 0.025261735543608665,
- 0.024305181577801704,
- -0.0012820130214095116,
- -0.07775691896677017,
- 0.08061089366674423,
- 0.03363923355937004,
- 0.010424038395285606,
- 0.06650829315185547,
- 0.03409060090780258,
- 0.046374887228012085,
- -0.1300356239080429,
- -0.000008772512956056744,
- -0.021061096340417862,
- -1.3871463977466192e-8,
- -0.06599465757608414,
- -0.0009584763902239501,
- -0.022946398705244064,
- -0.0007719750865362585,
- 0.056163713335990906,
- -0.04089202359318733,
- 0.037932053208351135,
- -0.00035287870559841394,
- -0.058309365063905716,
- 0.014091036282479763,
- 0.011029751040041447,
- 0.04944995045661926,
- 0.03119759075343609,
- 0.055477771908044815,
- 0.06486493349075317,
- 0.0011803226079791784,
- -0.012244927696883678,
- -0.02060067653656006,
- -0.08668334782123566,
- 0.004455664660781622,
- -0.004041294101625681,
- 0.00457094656303525,
- 0.03414246067404747,
- 0.052298810333013535,
- -0.041377678513526917,
- 0.009687489829957485,
- -0.018993590027093887,
- -0.08187391608953476,
- 0.03901718556880951,
- 0.10915037244558334,
- 0.05835643410682678,
- 0.13433663547039032,
- 0.020939555019140244,
- -0.06744128465652466,
- -0.03034590370953083,
- -0.03297334536910057,
- -0.07381948828697205,
- 0.02051050029695034,
- 0.036758795380592346,
- -0.14729849994182587,
- -0.017538540065288544,
- -0.0025299908593297005,
- -0.048467181622982025,
- 0.020950324833393097,
- 0.05580524727702141,
- -0.04215238615870476,
- -0.10218146443367004,
- -0.023567358031868935,
- -0.08274266868829727,
- -0.04454778507351875,
- -0.05209847167134285,
- 0.057449039071798325,
- 0.08392699062824249,
- 0.006497921422123909,
- 0.03429883345961571,
- 0.031200475990772247,
- -0.007476781494915485,
- -0.008012084290385246,
- 0.0009454010287299752,
- -0.018519962206482887,
- -0.0028729895129799843,
- 0.04877874255180359,
- 0.14774680137634277,
- 0.05674200877547264
- ]
- },
- {
- "keyword": "develops",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.05707560107111931,
- 0.0045893010683357716,
- -0.018511444330215454,
- 0.048458874225616455,
- -0.018099136650562286,
- -0.030148150399327278,
- 0.004543979652225971,
- 0.025371436029672623,
- 0.07065252959728241,
- 0.05626044422388077,
- 0.02883557230234146,
- -0.041301481425762177,
- -0.021285628899931908,
- 0.020865047350525856,
- 0.02588127925992012,
- 0.008553629741072655,
- -0.09401174634695053,
- -0.010024916380643845,
- 0.00469874357804656,
- -0.06770329922437668,
- -0.10931207239627838,
- -0.048063889145851135,
- 0.03752380609512329,
- -0.02210327796638012,
- 0.0299905464053154,
- 0.04957398399710655,
- -0.018209358677268028,
- -0.024771781638264656,
- 0.06821607798337936,
- -0.057241860777139664,
- 0.01476326771080494,
- 0.02050551399588585,
- 0.08965278416872025,
- -0.031031547114253044,
- -0.06692066043615341,
- 0.037702351808547974,
- 0.05981515347957611,
- 0.03519115969538689,
- 0.012060253880918026,
- 0.006831087172031403,
- -0.0139722665771842,
- -0.04154597595334053,
- 0.057713583111763,
- 0.036738548427820206,
- -0.054348573088645935,
- -0.0437571220099926,
- 0.01653367280960083,
- 0.025605469942092896,
- -0.03735870495438576,
- -0.05861833319067955,
- -0.034183867275714874,
- -0.074276864528656,
- -0.04635913297533989,
- 0.024459436535835266,
- 0.04405524209141731,
- 0.04392338544130325,
- -0.053701065480709076,
- 0.06570296734571457,
- 0.026303013786673546,
- 0.0018381616100668907,
- 0.06098700687289238,
- -0.04863138869404793,
- -0.0385282039642334,
- -0.01177072711288929,
- 0.024749919772148132,
- 0.03459177911281586,
- 0.002833559410646558,
- 0.07186199724674225,
- -0.022693993523716927,
- 0.014689120464026928,
- 0.008050277829170227,
- 0.031089428812265396,
- -0.038660258054733276,
- 0.02375606633722782,
- 0.04213462397456169,
- 0.00617621373385191,
- 0.04958634823560715,
- -0.037625834345817566,
- 0.12190327048301697,
- -0.0036676032468676567,
- 0.03400710970163345,
- 0.05768287926912308,
- -0.044685736298561096,
- 0.05270640179514885,
- -0.03111337311565876,
- -0.00017023066175170243,
- 0.0904410108923912,
- -0.042956117540597916,
- -0.06414171308279037,
- 0.04809792712330818,
- -0.017820971086621284,
- 0.0005821421509608626,
- -0.09217151254415512,
- 0.015890518203377724,
- -0.048098765313625336,
- -0.004204038064926863,
- -0.036190927028656006,
- -0.08837565034627914,
- -0.022316310554742813,
- 0.20704251527786255,
- 0.028194356709718704,
- 0.07341448962688446,
- 0.059187501668930054,
- 0.04338706657290459,
- 0.00655846344307065,
- -0.01793310046195984,
- -0.011949141509830952,
- 0.011975202709436417,
- -0.04195082187652588,
- 0.04321957379579544,
- 0.014240852557122707,
- 0.0008350491989403963,
- -0.04197440668940544,
- 0.02450026012957096,
- 0.04325143247842789,
- 0.04771134629845619,
- -0.020879989489912987,
- 0.0794224813580513,
- 0.03755466639995575,
- 0.024646645411849022,
- 0.08863668888807297,
- 0.04634229838848114,
- -0.06217551231384277,
- 0.0023142581339925528,
- -0.08008549362421036,
- -0.08121936768293381,
- -0.06441829353570938,
- -5.4512000336208436e-33,
- 0.01796487346291542,
- -0.03761490061879158,
- -0.031311165541410446,
- 0.18074090778827667,
- 0.011628367006778717,
- 0.017636282369494438,
- -0.0005335385794751346,
- -0.0058570061810314655,
- -0.03934544697403908,
- -0.00044959146180190146,
- -0.06799115985631943,
- -0.02046380750834942,
- -0.05473276600241661,
- 0.053792838007211685,
- 0.13747350871562958,
- 0.0020636925473809242,
- -0.028760429471731186,
- 0.04483385384082794,
- -0.019910527393221855,
- 0.051457833498716354,
- -0.02153906598687172,
- 0.03996816650032997,
- -0.010144456289708614,
- -0.028577124699950218,
- 0.04674474149942398,
- 0.0032726251520216465,
- 0.005113282240927219,
- -0.044600628316402435,
- -0.07812190800905228,
- -0.0003405604511499405,
- -0.003010678803548217,
- -0.014562343247234821,
- -0.08680014312267303,
- -0.018782902508974075,
- -0.02345915138721466,
- 0.00013069725537206978,
- -0.021458832547068596,
- -0.050622452050447464,
- 0.04839879274368286,
- -0.015562254004180431,
- -0.0021272420417517424,
- -0.046000901609659195,
- -0.1056520864367485,
- -0.004554154817014933,
- 0.00889638066291809,
- 0.07604020833969116,
- 0.061136242002248764,
- -0.05513058975338936,
- -0.04572667181491852,
- -0.021236442029476166,
- -0.0030488306656479836,
- -0.04460635408759117,
- -0.03774096816778183,
- -0.04709208384156227,
- 0.0339646078646183,
- 0.047383420169353485,
- -0.017667895182967186,
- -0.06069321930408478,
- 0.039942242205142975,
- 0.0208343043923378,
- 0.05369323864579201,
- 0.06323906779289246,
- -0.12905927002429962,
- 0.03479192778468132,
- -0.07798345386981964,
- -0.05884790048003197,
- 0.041255656629800797,
- -0.05403491482138634,
- 0.10620209574699402,
- -0.0010346703929826617,
- -0.06319770961999893,
- 0.03992994502186775,
- 0.01726316101849079,
- -0.0025364034809172153,
- 0.04892609268426895,
- -0.08245030045509338,
- -0.022870860993862152,
- 0.057420868426561356,
- 0.048714037984609604,
- 0.011449587531387806,
- 0.021453820168972015,
- 0.0017960354452952743,
- -0.012545287609100342,
- 0.02795804850757122,
- 0.003374895779415965,
- -0.029558036476373672,
- -0.0018515536794438958,
- -0.02731962502002716,
- -0.006033839657902718,
- 0.10792765021324158,
- -0.10583575814962387,
- -0.025910820811986923,
- -0.05946962907910347,
- 0.10760626196861267,
- 0.0009775907965376973,
- 3.7660568826881066e-33,
- -0.051001422107219696,
- -0.02366810478270054,
- -0.08643224835395813,
- 0.02396444045007229,
- -0.029275430366396904,
- 0.028828145936131477,
- -0.04020881652832031,
- 0.05444341525435448,
- 0.05081301927566528,
- -0.020637886598706245,
- -0.00390063994564116,
- -0.033730845898389816,
- -0.07401783019304276,
- 0.011336189694702625,
- 0.01726105622947216,
- -0.058955032378435135,
- 0.05942411348223686,
- -0.0379117913544178,
- -0.0027404543943703175,
- -0.015411335043609142,
- 0.023035498335957527,
- 0.010956195183098316,
- -0.014142370782792568,
- -0.029703989624977112,
- 0.04012032225728035,
- 0.013052885420620441,
- 0.01872384548187256,
- 0.04371240735054016,
- -0.10569017380475998,
- 0.0032875032629817724,
- 0.03247406706213951,
- 0.017600031569600105,
- -0.03380428999662399,
- 0.03620778024196625,
- -0.01352459006011486,
- 0.06699207425117493,
- 0.0024652848951518536,
- -0.009509308263659477,
- 0.0029367769602686167,
- 0.030034948140382767,
- 0.028241083025932312,
- 0.02753007598221302,
- 0.04265949875116348,
- 0.14336170256137848,
- -0.0016650737961754203,
- 0.039683256298303604,
- 0.09862475842237473,
- 0.03333575278520584,
- -0.010810606181621552,
- 0.06448401510715485,
- 0.015076099894940853,
- -0.02692609839141369,
- -0.06937336176633835,
- -0.05478781461715698,
- -0.013459128327667713,
- -0.036841124296188354,
- 0.008733917027711868,
- -0.05686796456575394,
- 0.016254421323537827,
- 0.049660824239254,
- -0.02039255015552044,
- -0.014417000114917755,
- -0.034722134470939636,
- 0.02293521724641323,
- -0.05748511105775833,
- 0.068195641040802,
- -0.08374382555484772,
- 0.0015749548329040408,
- -0.006638512946665287,
- 0.04455379769206047,
- -0.0015294774202629924,
- 0.0015083887847140431,
- -0.10273776948451996,
- -0.09889903664588928,
- -0.07903836667537689,
- -0.04821605235338211,
- -0.10977229475975037,
- -0.055113352835178375,
- -0.039394889026880264,
- -0.01643882505595684,
- -0.1109260618686676,
- -0.00389194767922163,
- 0.037799932062625885,
- 0.03938574716448784,
- 0.001977085368707776,
- 0.0277238916605711,
- 0.059785667806863785,
- 0.011231249198317528,
- 0.00881272554397583,
- -0.01812570169568062,
- -0.002151434076949954,
- 0.008320390246808529,
- -0.09956610947847366,
- -0.09057360887527466,
- -0.048888128250837326,
- -1.1410239864062532e-8,
- -0.07181435078382492,
- -0.006381078623235226,
- -0.035389307886362076,
- 0.022611673921346664,
- 0.06297256052494049,
- 0.07629365473985672,
- 0.006375523284077644,
- 0.07515434920787811,
- 0.013962753117084503,
- 0.08053523302078247,
- -0.07852938771247864,
- 0.02946389652788639,
- 0.03684335574507713,
- 0.09208113700151443,
- 0.0845988467335701,
- 0.026088127866387367,
- 0.0002616357523947954,
- 0.09613766521215439,
- -0.08788416534662247,
- -0.005407741758972406,
- 0.009943545795977116,
- 0.05517539009451866,
- 0.01398868765681982,
- 0.0338260792195797,
- -0.02372572012245655,
- -0.09520908445119858,
- -0.00835010688751936,
- -0.06222716346383095,
- -0.036805879324674606,
- 0.0731550008058548,
- 0.10647387057542801,
- 0.06903516501188278,
- 0.04502139985561371,
- 0.004584694746881723,
- 0.019886856898665428,
- 0.04559195786714554,
- 0.015971863642334938,
- 0.017149386927485466,
- 0.048326246440410614,
- 0.04127444699406624,
- -0.07173961400985718,
- 0.0014150971546769142,
- 0.08422614634037018,
- 0.008140110410749912,
- -0.10074374079704285,
- -0.062354911118745804,
- -0.041155386716127396,
- 0.009737187065184116,
- -0.03459123149514198,
- -0.13321860134601593,
- 0.08395048975944519,
- -0.01156705990433693,
- 0.03377353399991989,
- 0.0226974468678236,
- 0.12096786499023438,
- 0.007790935225784779,
- -0.030011333525180817,
- -0.0020635160617530346,
- 0.0006655859178863466,
- 0.03584727644920349,
- 0.0533934123814106,
- 0.011279142461717129,
- 0.07766168564558029,
- 0.034051213413476944
- ]
- },
- {
- "keyword": "crafts",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06792105734348297,
- 0.05854498967528343,
- -0.03327004611492157,
- 0.006727687083184719,
- -0.040007445961236954,
- -0.03787078708410263,
- 0.058710046112537384,
- -0.05936721712350845,
- -0.05586022883653641,
- 0.014226553030312061,
- -0.02241910621523857,
- -0.03182133287191391,
- -0.030833644792437553,
- 0.03374128416180611,
- -0.03224784880876541,
- 0.04176994785666466,
- 0.020459920167922974,
- 0.06519006937742233,
- -0.022175727412104607,
- -0.0033930509816855192,
- -0.04448266327381134,
- 0.0023417684715241194,
- 0.03377099335193634,
- 0.014417803846299648,
- 0.06798142939805984,
- 0.09255683422088623,
- -0.03631824254989624,
- -0.07764672487974167,
- 0.13026465475559235,
- -0.06950269639492035,
- -0.022723710164427757,
- 0.051536925137043,
- -0.021117210388183594,
- 0.009738389402627945,
- 0.053633831441402435,
- 0.1074821725487709,
- 0.006960513070225716,
- 0.048309773206710815,
- 0.03755861148238182,
- -0.05193008854985237,
- -0.02218690700829029,
- -0.032721713185310364,
- -0.04734001308679581,
- -0.03499560430645943,
- 0.022328149527311325,
- 0.01362671796232462,
- 0.04076912999153137,
- -0.034310389310121536,
- -0.025027507916092873,
- 0.031869251281023026,
- -0.03473612666130066,
- -0.06115467846393585,
- -0.07682672888040543,
- -0.08616720139980316,
- -0.0034156839828938246,
- 0.025741253048181534,
- 0.004634003154933453,
- -0.041735853999853134,
- 0.0261519867926836,
- -0.01942313089966774,
- 0.021614156663417816,
- 0.025955216959118843,
- -0.05053918436169624,
- 0.017643073573708534,
- 0.01006439421325922,
- -0.023614680394530296,
- -0.01779341883957386,
- 0.09101761132478714,
- -0.08211226761341095,
- -0.06402859091758728,
- 0.04786553606390953,
- 0.016972877085208893,
- 0.03620019555091858,
- 0.06259205937385559,
- 0.11253423243761063,
- -0.0790322795510292,
- 0.002765708602964878,
- -0.07446292787790298,
- -0.010556845925748348,
- -0.03144225850701332,
- -0.01947898045182228,
- 0.045011959969997406,
- -0.014995732344686985,
- 0.023781422525644302,
- -0.04996839910745621,
- 0.042796045541763306,
- 0.012234735302627087,
- 0.07491503655910492,
- 0.021388506516814232,
- -0.006274225190281868,
- -0.03787830471992493,
- -0.019580405205488205,
- -0.028808366507291794,
- 0.014567537233233452,
- -0.04960727319121361,
- -0.004313504323363304,
- 0.013161708600819111,
- 0.041744619607925415,
- 0.00798082072287798,
- 0.1967109590768814,
- -0.01386729720979929,
- -0.02071128599345684,
- 0.018714135512709618,
- -0.035241007804870605,
- -0.027184858918190002,
- -0.021784281358122826,
- -0.11669222265481949,
- -0.02590547874569893,
- 0.021137351170182228,
- 0.00981372781097889,
- -0.030579708516597748,
- 0.012207149527966976,
- -0.07659045606851578,
- 0.0019182744435966015,
- -0.040424469858407974,
- -0.026842722669243813,
- 0.015257599763572216,
- -0.020408879965543747,
- -0.0008486874867230654,
- 0.04572593793272972,
- 0.10955392569303513,
- 0.03381415456533432,
- 0.036567747592926025,
- -0.01605222374200821,
- -0.034348033368587494,
- -0.0688980370759964,
- 0.0006043662433512509,
- -5.782397036332962e-33,
- 0.06882598996162415,
- 0.027666304260492325,
- 0.05526274815201759,
- 0.09294000267982483,
- 0.058758631348609924,
- 0.0031236184295266867,
- 0.057102855294942856,
- 0.01935947872698307,
- -0.006413877010345459,
- 0.011997509747743607,
- 0.020960556343197823,
- -0.008710992522537708,
- -0.05842656269669533,
- 0.08046676963567734,
- 0.10612280666828156,
- -0.05655393376946449,
- -0.03410947322845459,
- -0.01324444729834795,
- -0.018853802233934402,
- -0.01376067940145731,
- -0.10989485681056976,
- -0.04915371164679527,
- 0.0005822062958031893,
- 0.09174434095621109,
- 0.03105156309902668,
- 0.03174471855163574,
- 0.0334133505821228,
- -0.007526647299528122,
- -0.019698679447174072,
- 0.003330371342599392,
- 0.02144201472401619,
- -0.03264474868774414,
- 0.0800900086760521,
- -0.012837264686822891,
- -0.09633790701627731,
- 0.034851036965847015,
- -0.013907485641539097,
- -0.07075132429599762,
- 0.0803673192858696,
- -0.003429254749789834,
- 0.03170699626207352,
- 0.0003116746083833277,
- 0.04715655744075775,
- 0.04291728138923645,
- 0.0035214200615882874,
- 0.029130561277270317,
- 0.07343652099370956,
- 0.09004015475511551,
- -0.09519773721694946,
- 0.024638330563902855,
- 0.019412517547607422,
- 0.10805222392082214,
- 0.024508431553840637,
- -0.028299923986196518,
- -0.018853286281228065,
- -0.023358972743153572,
- -0.008149432018399239,
- -0.056647613644599915,
- -0.03204597532749176,
- -0.03317117691040039,
- 0.07270285487174988,
- 0.1149916723370552,
- -0.06704608350992203,
- 0.041721999645233154,
- 0.009187030605971813,
- 0.022682564333081245,
- 0.029904859140515327,
- 0.020045069977641106,
- 0.04556765779852867,
- -0.023206695914268494,
- -0.1250213384628296,
- 0.011784330941736698,
- 0.0400390550494194,
- -0.05375424027442932,
- -0.020607249811291695,
- 0.034566763788461685,
- 0.059162016957998276,
- -0.06345950812101364,
- -0.00713861919939518,
- -0.019197693094611168,
- -0.09358149766921997,
- 0.05615256726741791,
- -0.021799711510539055,
- -0.05076497048139572,
- -0.02828296832740307,
- -0.0446997806429863,
- -0.03857553377747536,
- 0.0026913343463093042,
- -0.01995665207505226,
- 0.033360496163368225,
- -0.07978817075490952,
- -0.04494328051805496,
- -0.06406942009925842,
- -0.015731249004602432,
- -0.06641436368227005,
- 3.993471325876048e-33,
- -0.031640972942113876,
- -0.011251612566411495,
- -0.020531021058559418,
- 0.10499144345521927,
- 0.06120746582746506,
- -0.04476363956928253,
- -0.04466662183403969,
- -0.01772957481443882,
- 0.0026910894084721804,
- 0.036005888134241104,
- -0.02820776402950287,
- -0.02870253659784794,
- 0.02570750005543232,
- 0.004012563731521368,
- -0.027165889739990234,
- 0.0025062637869268656,
- 0.02819850482046604,
- 0.1157778948545456,
- 0.06393850594758987,
- -0.04931563138961792,
- 0.023544834926724434,
- 0.11418159306049347,
- 0.0047538504004478455,
- -0.016121571883559227,
- -0.07624838501214981,
- 0.02272546850144863,
- -0.05182298272848129,
- -0.04850030317902565,
- 0.011211427859961987,
- 0.0382486991584301,
- -0.004312046337872744,
- -0.17818346619606018,
- 0.06396718323230743,
- 0.03202226012945175,
- -0.029367076233029366,
- 0.01720571331679821,
- 0.023080894723534584,
- 0.005680836737155914,
- 0.0359022356569767,
- -0.044112179428339005,
- 0.04911664128303528,
- -0.013718762435019016,
- -0.05380729213356972,
- 0.1453413963317871,
- -0.10274525731801987,
- -0.0192822627723217,
- -0.06079526245594025,
- 0.0915839672088623,
- 0.04339824244379997,
- -0.027368489652872086,
- 0.05568777769804001,
- 0.03385446220636368,
- -0.03479038551449776,
- -0.12716826796531677,
- 0.00792292132973671,
- 0.015484479255974293,
- -0.015897786244750023,
- -0.0746564120054245,
- 0.05347393825650215,
- 0.038021817803382874,
- 0.009208600036799908,
- 0.07527096569538116,
- -0.007697479799389839,
- 0.028647715225815773,
- 0.042587731033563614,
- 0.037009429186582565,
- 0.029148008674383163,
- 0.0016131139127537608,
- -0.0721101462841034,
- -0.0008525500888936222,
- 0.10992515832185745,
- 0.1099521592259407,
- -0.010015425272285938,
- -0.017513711005449295,
- -0.024763008579611778,
- -0.00742183905094862,
- -0.019820574671030045,
- 0.06420028954744339,
- 0.02359825372695923,
- 0.012374418787658215,
- 0.02130681276321411,
- -0.06473387032747269,
- 0.0020760647021234035,
- 0.11070360243320465,
- -0.025964174419641495,
- 0.023844284936785698,
- 0.02107558585703373,
- 0.040827296674251556,
- 0.00532478466629982,
- 0.027629446238279343,
- -0.014402622357010841,
- 0.09034866094589233,
- 0.10735103487968445,
- 0.03350638225674629,
- -0.010901686735451221,
- -1.2265348736661963e-8,
- 0.025042861700057983,
- -0.025376105681061745,
- -0.06621050089597702,
- -0.0881093293428421,
- -0.07374189794063568,
- 0.04719967395067215,
- 0.01101976539939642,
- -0.03246496245265007,
- -0.05043502524495125,
- -0.005554658360779285,
- 0.009656868875026703,
- -0.03843551129102707,
- -0.01580137200653553,
- 0.022373130545020103,
- 0.07825860381126404,
- -0.08039736747741699,
- 0.01464049331843853,
- 0.054162316024303436,
- -0.07662256062030792,
- -0.11679459363222122,
- 0.07031941413879395,
- 0.00798756256699562,
- 0.02597232721745968,
- 0.07372692227363586,
- -0.10813885927200317,
- -0.016297446563839912,
- -0.04209534451365471,
- -0.03076212853193283,
- -0.0029867766425013542,
- 0.06035435572266579,
- -0.0007544041727669537,
- 0.08030278980731964,
- 0.0420304536819458,
- 0.009744854643940926,
- -0.05379299074411392,
- -0.12745404243469238,
- -0.023032525554299355,
- -0.026482997462153435,
- -0.04559684917330742,
- 0.05847156047821045,
- -0.04155818745493889,
- -0.021825293079018593,
- 0.03172203525900841,
- -0.020674867555499077,
- 0.022710582241415977,
- -0.028844019398093224,
- 0.011921670287847519,
- -0.06520435959100723,
- -0.038137007504701614,
- -0.023052489385008812,
- 0.015399495139718056,
- -0.04055503383278847,
- 0.04629587382078171,
- -0.022939598187804222,
- 0.015072506852447987,
- 0.01615029014647007,
- 0.011259615421295166,
- -0.0010677626123651862,
- 0.022898534312844276,
- -0.025745080783963203,
- -0.025030361488461494,
- 0.04862959310412407,
- 0.07439209520816803,
- 0.04575495049357414
- ]
- },
- {
- "keyword": "forms",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.10375728458166122,
- 0.0182187557220459,
- -0.018080074340105057,
- 0.02197001315653324,
- -0.09518598020076752,
- 0.06030813604593277,
- 0.020511381328105927,
- 0.012145591899752617,
- -0.0305617842823267,
- 0.015655657276511192,
- -0.007956278510391712,
- -0.022225799039006233,
- -0.0017077394295483828,
- -0.02071717008948326,
- 0.0304003544151783,
- -0.0006468321080319583,
- -0.04943422973155975,
- -0.015720250084996223,
- -0.010340715758502483,
- 0.002776762470602989,
- -0.00879938155412674,
- 0.010142792947590351,
- -0.04165812209248543,
- 0.012277099303901196,
- -0.04028848186135292,
- 0.034209925681352615,
- 0.009605251252651215,
- 0.010486215353012085,
- 0.13728566467761993,
- -0.12319086492061615,
- -0.011262496933341026,
- 0.017964279279112816,
- 0.11000872403383255,
- -0.031608935445547104,
- 0.007461482658982277,
- -0.006509776692837477,
- -0.020548507571220398,
- 0.025316031649708748,
- -0.06305518001317978,
- -0.07164466381072998,
- -0.10538195818662643,
- -0.09917786717414856,
- -0.007200350519269705,
- 0.04343586042523384,
- 0.029946845024824142,
- 0.017560597509145737,
- -0.010467836633324623,
- -0.030345389619469643,
- 0.002158472780138254,
- -0.003105082316324115,
- -0.02058224007487297,
- -0.06322771310806274,
- -0.04117079824209213,
- 0.04678720608353615,
- -0.025447599589824677,
- -0.07156500220298767,
- -0.022412734106183052,
- -0.02443067356944084,
- -0.03630201518535614,
- 0.012328562326729298,
- 0.012244053184986115,
- 0.011499952524900436,
- -0.08127708733081818,
- 0.040190380066633224,
- -0.033111926168203354,
- 0.048074185848236084,
- -0.05808872729539871,
- 0.0003433929232414812,
- -0.007022400852292776,
- -0.046429358422756195,
- -0.022374620661139488,
- -0.016580278053879738,
- -0.06621591001749039,
- 0.01973569393157959,
- 0.02041744999587536,
- -0.11604583263397217,
- 0.008909527212381363,
- -0.06735959649085999,
- 0.03766348585486412,
- 0.032341718673706055,
- -0.009999264031648636,
- 0.0637744814157486,
- -0.06940561532974243,
- -0.016333896666765213,
- 0.009364894591271877,
- 0.008549313060939312,
- -0.011513744480907917,
- -0.011755134910345078,
- 0.031930338591337204,
- -0.0637097954750061,
- 0.031716056168079376,
- -0.015434060245752335,
- 0.03995364531874657,
- 0.0558064840734005,
- -0.043553631752729416,
- -0.01543843187391758,
- 0.006208985578268766,
- -0.005103352013975382,
- 0.09052954614162445,
- 0.23525598645210266,
- 0.023540452122688293,
- -0.013441672548651695,
- -0.04659479483962059,
- 0.04029113054275513,
- -0.006382334977388382,
- -0.07760302722454071,
- 0.04063168168067932,
- 0.016011273488402367,
- 0.06604547798633575,
- 0.024900756776332855,
- -0.05362456291913986,
- -0.07461541891098022,
- -0.10739289969205856,
- 0.04793672636151314,
- -0.0024447257164865732,
- 0.03324328362941742,
- 0.0074135540053248405,
- 0.017070051282644272,
- -0.006294884718954563,
- 0.008488279767334461,
- 0.030849777162075043,
- 0.03443601354956627,
- -0.024843620136380196,
- -0.048397187143564224,
- -0.04130042716860771,
- -0.11181557178497314,
- 0.006699186284095049,
- -4.651024865968789e-33,
- 0.07626482844352722,
- 0.09461913257837296,
- -0.002676128875464201,
- 0.15476010739803314,
- 0.0008235847344622016,
- 0.04103638976812363,
- -0.01862698793411255,
- 0.04618506133556366,
- 0.04593348875641823,
- 0.06188001111149788,
- -0.06765595078468323,
- 0.043335046619176865,
- -0.005188016686588526,
- 0.013737778179347515,
- 0.04516763985157013,
- -0.03727705031633377,
- -0.013942227698862553,
- 0.1541927307844162,
- -0.035299718379974365,
- -0.01979724131524563,
- 0.020764196291565895,
- 0.07039304077625275,
- 0.0832667425274849,
- -0.0060351635329425335,
- 0.059289172291755676,
- 0.0337250791490078,
- -0.05367099493741989,
- 0.01063033752143383,
- -0.037128228694200516,
- -0.009842946194112301,
- 0.04381047561764717,
- -0.08401710540056229,
- -0.059449613094329834,
- -0.0157871562987566,
- -0.0003792309726122767,
- 0.05743095278739929,
- -0.012177352793514729,
- -0.09134089201688766,
- 0.05848820134997368,
- -0.06274648010730743,
- -0.023644473403692245,
- -0.031054910272359848,
- 0.026626093313097954,
- -0.020850863307714462,
- -0.0015769825549796224,
- 0.0022199975792318583,
- 0.03589778020977974,
- 0.08894031494855881,
- 0.0336167998611927,
- 0.015085434541106224,
- -0.018446283414959908,
- 0.046494416892528534,
- -0.061120063066482544,
- -0.04577714204788208,
- 0.018501289188861847,
- 0.020668666809797287,
- -0.030033810064196587,
- 0.0025990819558501244,
- -0.019183700904250145,
- -0.03243177384138107,
- 0.11288408190011978,
- 0.044485803693532944,
- -0.09267962723970413,
- 0.0015295508783310652,
- -0.1329764574766159,
- -0.07125455886125565,
- -0.037021901458501816,
- -0.07580763846635818,
- 0.14189177751541138,
- -0.06477021425962448,
- -0.07835870236158371,
- 0.030284490436315536,
- -0.050991594791412354,
- -0.030510608106851578,
- 0.03905116766691208,
- -0.05175043269991875,
- -0.004337918013334274,
- -0.001610392238944769,
- -0.020277434960007668,
- 0.049950405955314636,
- -0.03382878005504608,
- 0.0011150515638291836,
- -0.09196750819683075,
- 0.07582729309797287,
- 0.0801183357834816,
- -0.01129605807363987,
- 0.025196654722094536,
- -0.058103859424591064,
- -0.042575325816869736,
- 0.011120444163680077,
- -0.10647907108068466,
- -0.0199123602360487,
- -0.02127818576991558,
- -0.039694979786872864,
- 0.014949137344956398,
- 3.0099216108896087e-33,
- -0.08945459872484207,
- -0.08236940205097198,
- -0.09481476992368698,
- 0.003960092086344957,
- 0.028206417337059975,
- 0.015037167817354202,
- 0.07756493240594864,
- -0.008843370713293552,
- 0.054857395589351654,
- 0.025248628109693527,
- -0.05362246185541153,
- 0.0275017861276865,
- 0.0644964650273323,
- -0.031728606671094894,
- -0.07443661242723465,
- 0.0009428266785107553,
- 0.01725456304848194,
- 0.020429596304893494,
- 0.04507181793451309,
- -0.014309615828096867,
- -0.07887346297502518,
- 0.06506304442882538,
- -0.02790861204266548,
- -0.0036051541101187468,
- -0.07157743722200394,
- 0.0260645542293787,
- -0.00601818785071373,
- 0.016618460416793823,
- 0.03879164531826973,
- 0.042209118604660034,
- 0.010666538029909134,
- -0.06350186467170715,
- -0.025568552315235138,
- 0.08607223629951477,
- -0.0677231028676033,
- 0.02107533998787403,
- 0.043237004429101944,
- 0.045290257781744,
- -0.026398930698633194,
- 0.002210325561463833,
- 0.05732403323054314,
- -0.004144364036619663,
- 0.1100693866610527,
- 0.09305302053689957,
- -0.02196606621146202,
- 0.014786181040108204,
- -0.04741816967725754,
- 0.0009246279951184988,
- -0.000011588043889787514,
- 0.011267516762018204,
- -0.02535930648446083,
- -0.025591755285859108,
- -0.0822785422205925,
- 0.008305354975163937,
- -0.02117238938808441,
- 0.07989382743835449,
- -0.09891511499881744,
- -0.04943932220339775,
- 0.009875793009996414,
- 0.06503599137067795,
- -0.03207401558756828,
- 0.07561252266168594,
- -0.038084957748651505,
- 0.00987129658460617,
- 0.046013347804546356,
- -0.033875156193971634,
- 0.013087212108075619,
- -0.0029029655270278454,
- 0.03441670164465904,
- -0.018092749640345573,
- 0.03920532763004303,
- -0.054305121302604675,
- -0.008559687063097954,
- -0.07222902774810791,
- 0.016514722257852554,
- -0.03371652588248253,
- -0.010283936746418476,
- 0.0607905313372612,
- -0.010139094665646553,
- -0.043526921421289444,
- 0.02697349525988102,
- 0.009796351194381714,
- -0.029927389696240425,
- 0.05224869027733803,
- -0.0288466215133667,
- 0.006875281222164631,
- 0.09351939707994461,
- -0.04807925224304199,
- 0.02093047834932804,
- 0.04455704614520073,
- -0.024951396510004997,
- 0.1005597859621048,
- 0.10027141869068146,
- 0.10483205318450928,
- -0.03953207656741142,
- -1.149566575264771e-8,
- 0.008469488471746445,
- 0.007313668727874756,
- 0.08221443742513657,
- -0.027419010177254677,
- 0.022897176444530487,
- 0.03308471664786339,
- 0.03526692092418671,
- 0.037708017975091934,
- -0.010705956257879734,
- 0.05039215087890625,
- 0.017397301271557808,
- 0.011020131409168243,
- 0.009914982132613659,
- -0.016134662553668022,
- 0.07705637812614441,
- 0.023579096421599388,
- -0.00030075301765464246,
- 0.023731105029582977,
- -0.06515945494174957,
- -0.017039546743035316,
- 0.029027054086327553,
- -0.030103808268904686,
- -0.05841802433133125,
- 0.0552501417696476,
- 0.03491806983947754,
- -0.03211783245205879,
- -0.025007883086800575,
- 0.05788816884160042,
- 0.0018997889710590243,
- 0.06710434705018997,
- 0.035687919706106186,
- 0.10500500351190567,
- 0.09705428779125214,
- 0.016081692650914192,
- -0.03062930703163147,
- -0.04438968747854233,
- 0.0033461765851825476,
- 0.027079438790678978,
- 0.04757494851946831,
- 0.14423426985740662,
- -0.005542473401874304,
- 0.05003698170185089,
- 0.028081608936190605,
- -0.02096213400363922,
- 0.04841137304902077,
- 0.03195511922240257,
- -0.0844828262925148,
- -0.01785607822239399,
- -0.011247366666793823,
- -0.01842508092522621,
- -0.03815598040819168,
- 0.006208010949194431,
- 0.03472183272242546,
- 0.06279007345438004,
- -0.019566355273127556,
- 0.035942185670137405,
- 0.0027122320607304573,
- -0.028425246477127075,
- 0.023823227733373642,
- 0.017413556575775146,
- 0.05610470473766327,
- 0.050873707979917526,
- 0.10260532051324844,
- 0.04602493345737457
- ]
- },
- {
- "keyword": "creation",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.10644688457250595,
- 0.024674924090504646,
- -0.062056537717580795,
- 0.09348046779632568,
- -0.07931949198246002,
- -0.026555001735687256,
- 0.06311113387346268,
- -0.04218319430947304,
- 0.07764977961778641,
- 0.05190080404281616,
- 0.03395736590027809,
- -0.06781815737485886,
- 0.0229787714779377,
- -0.028739700093865395,
- -0.041740719228982925,
- -0.017567576840519905,
- -0.03405572101473808,
- -0.05414999648928642,
- -0.06803862750530243,
- -0.030798209831118584,
- 0.04526674747467041,
- -0.010695683769881725,
- -0.04312166944146156,
- 0.0194928627461195,
- -0.019687069579958916,
- 0.07511018216609955,
- 0.017376461997628212,
- -0.0073586986400187016,
- 0.16347511112689972,
- -0.10910758376121521,
- 0.032108988612890244,
- 0.012798628769814968,
- 0.05231785774230957,
- -0.035268694162368774,
- -0.0035859690979123116,
- 0.05933142453432083,
- 0.06818413734436035,
- 0.023069677874445915,
- 0.06070680916309357,
- -0.05275043472647667,
- -0.05495821312069893,
- -0.09462731331586838,
- -0.023411482572555542,
- -0.006399093195796013,
- 0.057652320712804794,
- 0.021281616762280464,
- 0.04167959839105606,
- 0.03218840807676315,
- -0.0024509408976882696,
- 0.02435990609228611,
- -0.10298344492912292,
- -0.05399763956665993,
- -0.08277415484189987,
- -0.062759630382061,
- 0.023720020428299904,
- 0.02567271701991558,
- -0.019103603437542915,
- -0.023984644562005997,
- -0.05168655142188072,
- -0.06276316195726395,
- 0.02409602515399456,
- 0.03235158324241638,
- -0.009249676018953323,
- 0.01927991211414337,
- 0.0855221152305603,
- -0.04125833883881569,
- -0.03470465913414955,
- 0.011454201303422451,
- 0.007786362897604704,
- -0.010661005973815918,
- 0.023700334131717682,
- 0.06145459786057472,
- 0.02630719169974327,
- 0.06730518490076065,
- 0.041437506675720215,
- -0.03811075538396835,
- 0.008722905069589615,
- 0.005455802194774151,
- 0.04187662899494171,
- 0.03049405664205551,
- 0.062059201300144196,
- -0.0029091190081089735,
- -0.039463289082050323,
- 0.053000811487436295,
- -0.0738397166132927,
- 0.02031019888818264,
- 0.0951826274394989,
- 0.037084706127643585,
- -0.00648899469524622,
- 0.004312739707529545,
- -0.06956113874912262,
- 0.03172793239355087,
- 0.016421625390648842,
- -0.01201886497437954,
- -0.025590356439352036,
- 0.08860401064157486,
- 0.008946407586336136,
- -0.10643050819635391,
- 0.06016318500041962,
- 0.1994931697845459,
- -0.03207986801862717,
- 0.03220820426940918,
- -0.03931759297847748,
- 0.00818190909922123,
- 0.07863088697195053,
- -0.07969092577695847,
- -0.07130888104438782,
- -0.03681837394833565,
- 0.0010535961482673883,
- 0.09763050079345703,
- -0.007815116085112095,
- 0.0025775551330298185,
- -0.047415316104888916,
- 0.025700049474835396,
- 0.025472275912761688,
- 0.050290483981370926,
- -0.009237870573997498,
- -0.004025770351290703,
- 0.0016505506355315447,
- 0.04864232987165451,
- 0.08128298074007034,
- 0.044709593057632446,
- -0.023181505501270294,
- 0.029542047530412674,
- -0.10448792576789856,
- -0.08439373970031738,
- -0.025028085336089134,
- -4.879550151318257e-33,
- 0.037687335163354874,
- -0.02110239863395691,
- 0.06577630341053009,
- 0.11069603264331818,
- 0.03264773264527321,
- 0.012483052909374237,
- -0.022680260241031647,
- -0.023056846112012863,
- -0.01261803600937128,
- -0.023346062749624252,
- -0.06284444779157639,
- -0.012760233134031296,
- -0.008501351810991764,
- 0.024307511746883392,
- 0.11218524724245071,
- -0.0375039242208004,
- -0.04134912043809891,
- -0.02959003672003746,
- 0.00398389482870698,
- -0.030959060415625572,
- -0.09757418185472488,
- 0.005427349824458361,
- 0.004291549790650606,
- -0.023607861250638962,
- 0.0053673977963626385,
- 0.010332521051168442,
- 0.003411496290937066,
- -0.09581859409809113,
- -0.019837511703372,
- -0.01866494119167328,
- 0.015988901257514954,
- -0.01626071147620678,
- -0.036253560334444046,
- 0.048280078917741776,
- -0.013337163254618645,
- -0.016186270862817764,
- -0.028633030131459236,
- -0.060470543801784515,
- 0.02222229167819023,
- -0.023264802992343903,
- 0.025555985048413277,
- 0.001150661613792181,
- -0.008619464002549648,
- -0.056608088314533234,
- 0.030240442603826523,
- 0.04641000181436539,
- 0.0958709791302681,
- 0.022669777274131775,
- -0.05982096865773201,
- 0.050251368433237076,
- -0.02218356914818287,
- 0.03252324089407921,
- 0.0615479052066803,
- -0.003637899411842227,
- 0.016890108585357666,
- -0.038284920156002045,
- -0.03904995322227478,
- -0.021407483145594597,
- -0.0063391481526196,
- -0.001979671185836196,
- 0.038498666137456894,
- 0.06634112447500229,
- -0.007087359204888344,
- 0.06641041487455368,
- -0.02738189324736595,
- -0.04046311601996422,
- 0.07104295492172241,
- -0.08203623443841934,
- 0.08922015875577927,
- -0.02944760210812092,
- -0.07532161474227905,
- -0.059309832751750946,
- -0.04024337977170944,
- 0.021308807656168938,
- 0.008297636173665524,
- -0.06823793053627014,
- -0.00407558074221015,
- -0.009501123800873756,
- -0.03034544549882412,
- 0.016232794150710106,
- -0.043816741555929184,
- -0.01606125943362713,
- -0.04128297418355942,
- 0.008203799836337566,
- 0.014885395765304565,
- 0.007222880609333515,
- -0.004977397155016661,
- -0.03968584164977074,
- 0.0007660587434656918,
- 0.034889526665210724,
- -0.08973885327577591,
- -0.03987940400838852,
- 0.0417938306927681,
- -0.029875367879867554,
- -0.08654610067605972,
- 3.2663678258069836e-33,
- -0.05113502964377403,
- -0.057429585605859756,
- -0.061097145080566406,
- 0.0607069693505764,
- -0.009127804078161716,
- -0.052166491746902466,
- -0.09182924777269363,
- -0.049611225724220276,
- -0.07294194400310516,
- 0.029930410906672478,
- 0.008595447055995464,
- 0.0010980323422700167,
- 0.07556421309709549,
- 0.010373321361839771,
- -0.0387139692902565,
- -0.062008295208215714,
- 0.03744617477059364,
- 0.008722164668142796,
- 0.01429292093962431,
- 0.03724197670817375,
- 0.041477665305137634,
- -0.0037826227489858866,
- -0.037673428654670715,
- -0.05515822395682335,
- 0.0030121956951916218,
- 0.06880998611450195,
- 0.06776463985443115,
- 0.030209237709641457,
- -0.007308905478566885,
- 0.058874111622571945,
- -0.02311031147837639,
- -0.029422014951705933,
- -0.028731856495141983,
- 0.016893628984689713,
- -0.04104313626885414,
- 0.02527887001633644,
- 0.10270991176366806,
- 0.05433234944939613,
- 0.03551385551691055,
- -0.06990835070610046,
- 0.03087809309363365,
- 0.026922309771180153,
- -0.032357435673475266,
- 0.17455707490444183,
- -0.02589257061481476,
- 0.0028104225639253855,
- 0.040630459785461426,
- 0.09832407534122467,
- 0.01754128374159336,
- 0.0008416328928433359,
- -0.006623615510761738,
- -0.031168272718787193,
- -0.04645950347185135,
- -0.13808046281337738,
- -0.017250942066311836,
- -0.022212618961930275,
- 0.033135786652565,
- -0.04573914781212807,
- 0.06329920142889023,
- 0.06375928223133087,
- 0.016747664660215378,
- 0.019384125247597694,
- -0.005710697267204523,
- 0.055455103516578674,
- -0.004253785125911236,
- 0.006203965283930302,
- -0.0030360359232872725,
- 0.10590731352567673,
- -0.054474517703056335,
- 0.015935465693473816,
- -0.010436746291816235,
- 0.024267900735139847,
- -0.045530520379543304,
- -0.026538757607340813,
- -0.02531401999294758,
- 0.051861487329006195,
- -0.04518425464630127,
- -0.004266177769750357,
- -0.04363425448536873,
- -0.017687950283288956,
- -0.04641179367899895,
- -0.028612332418560982,
- 0.03270744904875755,
- 0.04007931426167488,
- -0.030087502673268318,
- -0.07049065828323364,
- -0.018262352794408798,
- 0.01122978050261736,
- -0.006445912644267082,
- 0.03940991684794426,
- -0.009470980614423752,
- 0.012212828733026981,
- -0.1445045918226242,
- 0.08322793990373611,
- -0.011960777454078197,
- -1.2395048543112352e-8,
- 0.032355424016714096,
- 0.01061120256781578,
- 0.03376030921936035,
- 0.0009155464940704405,
- 0.06810896098613739,
- 0.037587713450193405,
- 0.07572366297245026,
- -0.02119087241590023,
- -0.023548461496829987,
- -0.0016348515637218952,
- -0.024603702127933502,
- 0.07811497151851654,
- -0.006423428189009428,
- 0.11313728988170624,
- 0.10804976522922516,
- -0.0016856385627761483,
- -0.04269929602742195,
- 0.002038197126239538,
- -0.05350475758314133,
- -0.015529285185039043,
- 0.0429089218378067,
- 0.027399756014347076,
- 0.02184727042913437,
- -0.03317975625395775,
- -0.019459854811429977,
- -0.009714089334011078,
- -0.009006096050143242,
- -0.023029373958706856,
- 0.0023882610257714987,
- 0.04934482276439667,
- 0.06715133041143417,
- 0.089967280626297,
- -0.027998732402920723,
- 0.03618909791111946,
- -0.03737369552254677,
- -0.047371022403240204,
- -0.09014447778463364,
- -0.0044605545699596405,
- 0.046322669833898544,
- -0.10089530050754547,
- 0.018064698204398155,
- 0.1296176016330719,
- -0.0032867316622287035,
- -0.05272896587848663,
- -0.02542250044643879,
- -0.0466390922665596,
- -0.00009958131704479456,
- -0.06035621464252472,
- -0.016675740480422974,
- -0.01736961491405964,
- -0.02886045351624489,
- 0.0434940829873085,
- 0.10156171768903732,
- -0.03867428004741669,
- 0.06896491348743439,
- 0.022993428632616997,
- -0.011523312889039516,
- 0.04573740437626839,
- -0.014615912921726704,
- 0.05214031785726547,
- 0.13689519464969635,
- -0.00044130676542408764,
- 0.1589311808347702,
- 0.027498768642544746
- ]
- },
- {
- "keyword": "production",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.04601151868700981,
- 0.01002920139580965,
- -0.03574076667428017,
- 0.01774783618748188,
- -0.014439919032156467,
- -0.02520398609340191,
- 0.029517658054828644,
- -0.02013985998928547,
- -0.03870159015059471,
- 0.017545543611049652,
- 0.06163026764988899,
- -0.035090506076812744,
- 0.015219188295304775,
- 0.004096672870218754,
- -0.06763424724340439,
- -0.04312954097986221,
- 0.03264596685767174,
- -0.05096070095896721,
- -0.05558747798204422,
- -0.01786452904343605,
- -0.03647082671523094,
- -0.02423841319978237,
- -0.0005500266561284661,
- 0.041391074657440186,
- 0.014227100647985935,
- 0.012108610942959785,
- -0.040235735476017,
- 0.0493755117058754,
- 0.031383901834487915,
- -0.10904968529939651,
- -0.056389495730400085,
- 0.06010569632053375,
- 0.08182574063539505,
- -0.011847184970974922,
- 0.06903292238712311,
- 0.04707033187150955,
- 0.016792576760053635,
- -0.029958615079522133,
- 0.023976793512701988,
- 0.009509858675301075,
- 0.014505499042570591,
- -0.09123289585113525,
- -0.06027524173259735,
- -0.023205624893307686,
- 0.008101711980998516,
- 0.00019938425975851715,
- 0.06218019872903824,
- 0.000524766743183136,
- -0.02327699586749077,
- 0.05483139678835869,
- -0.03738385811448097,
- -0.04484139010310173,
- -0.08295437693595886,
- -0.0341024212539196,
- 0.012114492245018482,
- -0.02256130427122116,
- 0.007177264895290136,
- -0.07117509841918945,
- -0.0019522616639733315,
- -0.006328150629997253,
- 0.028881631791591644,
- -0.02393076941370964,
- -0.07997233420610428,
- -0.026217197999358177,
- 0.11974187195301056,
- -0.03400494158267975,
- -0.019795872271060944,
- 0.05358909070491791,
- -0.08307990431785583,
- -0.05234938859939575,
- 0.052818965166807175,
- -0.03912048414349556,
- -0.05288296192884445,
- 0.039451777935028076,
- -0.005092797800898552,
- -0.022476963698863983,
- 0.06447236239910126,
- -0.055261701345443726,
- 0.037406887859106064,
- -0.03684666007757187,
- 0.08400364220142365,
- -0.041840534657239914,
- -0.08552373200654984,
- -0.0069943927228450775,
- -0.06681746244430542,
- -0.0037841054145246744,
- 0.059013791382312775,
- 0.028576992452144623,
- 0.06920395791530609,
- 0.02621336653828621,
- -0.053586237132549286,
- -0.013052782975137234,
- 0.023064125329256058,
- 0.016645321622490883,
- -0.09710247814655304,
- 0.05906529352068901,
- 0.03537943214178085,
- -0.04273522272706032,
- 0.07608842849731445,
- 0.1951082944869995,
- 0.019907042384147644,
- 0.01357658114284277,
- 0.03140583261847496,
- -0.1166912317276001,
- -0.052124712616205215,
- -0.05916842073202133,
- -0.0530841164290905,
- 0.1256469190120697,
- -0.035414621233940125,
- 0.034068286418914795,
- -0.013796979561448097,
- 0.041957177221775055,
- -0.09788358956575394,
- 0.013867723755538464,
- 0.05162641778588295,
- 0.06993193924427032,
- -0.017264612019062042,
- -0.0002994782116729766,
- -0.018659554421901703,
- -0.005575861316174269,
- 0.03183064982295036,
- 0.031194910407066345,
- -0.006137667689472437,
- 0.030180364847183228,
- -0.11380327492952347,
- -0.06285708397626877,
- 0.009906203486025333,
- -3.5031212042702235e-33,
- 0.016627389937639236,
- -0.10314074158668518,
- 0.014169542118906975,
- 0.03298681974411011,
- 0.015183291397988796,
- 0.05474821478128433,
- -0.034459326416254044,
- -0.014410078525543213,
- 0.015226311981678009,
- -0.017122594639658928,
- -0.02491980977356434,
- -0.02143566496670246,
- -0.029032021760940552,
- 0.008776826784014702,
- 0.08989281207323074,
- -0.04811519384384155,
- 0.03938734903931618,
- 0.05788159370422363,
- -0.005382116883993149,
- 0.0662071481347084,
- -0.10982349514961243,
- 0.025306832045316696,
- -0.02278226986527443,
- 0.0940706804394722,
- 0.030900562182068825,
- 0.006463468540459871,
- -0.0022887366358190775,
- -0.03952600434422493,
- -0.009414677508175373,
- 0.0017028198344632983,
- 0.07854768633842468,
- 0.05274052545428276,
- 0.01059589721262455,
- 0.0164837297052145,
- -0.03246248885989189,
- -0.0001739812141750008,
- -0.044625841081142426,
- -0.12026812136173248,
- 0.03696586564183235,
- 0.05490068346261978,
- -0.05673063173890114,
- 0.027014952152967453,
- -0.02865082398056984,
- 0.011465194635093212,
- -0.04540282487869263,
- 0.09727940708398819,
- 0.012232773005962372,
- 0.033257387578487396,
- 0.002983543323352933,
- 0.035424865782260895,
- -0.018061697483062744,
- 0.07096699625253677,
- 0.0539102666079998,
- -0.04760412499308586,
- 0.08852237462997437,
- 0.014267662540078163,
- -0.002268934855237603,
- -0.09766106307506561,
- 0.03005818836390972,
- 0.013042687438428402,
- 0.0032293943222612143,
- 0.15071123838424683,
- -0.07808104902505875,
- 0.05811428278684616,
- -0.07800636440515518,
- -0.023076895624399185,
- 0.043158333748579025,
- -0.008857947774231434,
- 0.08955024927854538,
- -0.02385476417839527,
- -0.08336206525564194,
- -0.05302780121564865,
- 0.05988854542374611,
- -0.019738005474209785,
- 0.035459116101264954,
- 0.03029414266347885,
- -0.031730420887470245,
- 0.02604711800813675,
- -0.03055519424378872,
- 0.04438301548361778,
- 0.003125130431726575,
- 0.03823743760585785,
- -0.02815786749124527,
- -0.019922632724046707,
- 0.022696923464536667,
- 0.006142845842987299,
- -0.037360094487667084,
- 0.0116848424077034,
- 0.06275977194309235,
- 0.12466362863779068,
- -0.06043091416358948,
- 0.0130785396322608,
- -0.030732424929738045,
- 0.060338281095027924,
- -0.003928107675164938,
- 3.0318800290339614e-33,
- 0.009638725779950619,
- 0.00213343626819551,
- -0.06233648955821991,
- 0.04354528337717056,
- -0.012394665740430355,
- -0.04808586835861206,
- 0.001820082077756524,
- -0.05767321586608887,
- 0.008036731742322445,
- 0.05688866600394249,
- -0.10184745490550995,
- -0.012741832993924618,
- -0.013625713996589184,
- 0.01647689938545227,
- -0.10565830767154694,
- -0.0683489665389061,
- 0.11003965139389038,
- 0.003576632123440504,
- -0.014895102940499783,
- 0.005723536945879459,
- -0.03554210439324379,
- 0.014945092611014843,
- 0.012237952090799809,
- -0.013477311469614506,
- -0.0640193447470665,
- 0.04316887632012367,
- -0.03426451236009598,
- 0.05386871472001076,
- -0.06687066704034805,
- -0.01820439100265503,
- 0.03450988605618477,
- -0.05596563592553139,
- -0.00253491778858006,
- 0.05227043479681015,
- -0.04287657514214516,
- 0.04614005237817764,
- 0.04708874598145485,
- 0.04028604179620743,
- 0.015853991732001305,
- -0.047520510852336884,
- 0.0651530772447586,
- -0.027625998482108116,
- 0.030031347647309303,
- 0.16315995156764984,
- -0.07061884552240372,
- -0.04025236889719963,
- -0.01883515901863575,
- -0.04120423272252083,
- 0.07271872460842133,
- 0.0037122017238289118,
- -0.05315779894590378,
- 0.03144000470638275,
- -0.026578279212117195,
- -0.08396878838539124,
- -0.01988084241747856,
- 0.008205541409552097,
- -0.0015660692006349564,
- -0.045107338577508926,
- -0.0659564957022667,
- 0.024854563176631927,
- -0.0010825844947248697,
- -0.0016174853080883622,
- 0.02088049426674843,
- 0.0006755879730917513,
- -0.004194364883005619,
- 0.06156275048851967,
- 0.05155785754323006,
- 0.02028702385723591,
- 0.05102887004613876,
- 0.027102097868919373,
- 0.07491443306207657,
- 0.06288169324398041,
- -0.03135226294398308,
- 0.02782418392598629,
- -0.07904952764511108,
- -0.014633353799581528,
- -0.08835472911596298,
- -0.02760232239961624,
- 0.032271236181259155,
- 0.006040366366505623,
- -0.015407891012728214,
- -0.030405167490243912,
- 0.015231083147227764,
- 0.04473581537604332,
- -0.041062671691179276,
- -0.017244944348931313,
- 0.04918549582362175,
- 0.002080228878185153,
- -0.013673224486410618,
- 0.016504574567079544,
- -0.006346300709992647,
- -0.012996653094887733,
- -0.06870675832033157,
- 0.036645110696554184,
- 0.04251925274729729,
- -1.1739801131227523e-8,
- 0.0017455730121582747,
- -0.038161665201187134,
- 0.061454400420188904,
- 0.014927837997674942,
- 0.041946206241846085,
- -0.014991456642746925,
- 0.06356541812419891,
- 0.006824057549238205,
- 0.08623397350311279,
- 0.08583094924688339,
- -0.08452969789505005,
- -0.019650565460324287,
- 0.01004918571561575,
- 0.10009845346212387,
- 0.06533896923065186,
- -0.01242904458194971,
- -0.04387708008289337,
- 0.057310961186885834,
- -0.11845032125711441,
- -0.08372079581022263,
- -0.005429772660136223,
- 0.0441649965941906,
- 0.08571112900972366,
- 0.0175958089530468,
- -0.014589427039027214,
- -0.06212538480758667,
- 0.049552153795957565,
- 0.09419959038496017,
- 0.03769742697477341,
- 0.050618723034858704,
- 0.048772312700748444,
- 0.029836434870958328,
- -0.0249476358294487,
- -0.04830455407500267,
- -0.00039205930079333484,
- -0.10388363152742386,
- -0.02580946497619152,
- 0.007887530140578747,
- 0.06720465421676636,
- -0.03256082162261009,
- -0.09083916246891022,
- 0.028728552162647247,
- 0.07683584094047546,
- 0.04013332352042198,
- 0.02599792741239071,
- -0.01640387624502182,
- -0.1061638593673706,
- -0.018503764644265175,
- -0.04976552724838257,
- -0.08597234636545181,
- 0.02884220890700817,
- -0.00992716196924448,
- 0.08637525886297226,
- 0.027443895116448402,
- 0.04510761424899101,
- 0.019092701375484467,
- 0.012947803363204002,
- -0.004526128992438316,
- 0.0020247658248990774,
- 0.03929799795150757,
- 0.10486583411693573,
- -0.04552705958485603,
- 0.1175834909081459,
- 0.011437110602855682
- ]
- },
- {
- "keyword": "generation",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.06163853406906128,
- 0.07880067080259323,
- -0.01683717966079712,
- 0.05841813236474991,
- -0.033710356801748276,
- 0.044955674558877945,
- 0.026544788852334023,
- -0.02865317463874817,
- 0.03524119779467583,
- 0.009323623031377792,
- 0.08518923819065094,
- -0.03009672462940216,
- 0.043353088200092316,
- -0.10644524544477463,
- -0.006586931645870209,
- 0.021926185116171837,
- -0.07433676719665527,
- -0.06654458492994308,
- -0.04318355768918991,
- -0.0494086779654026,
- -0.028399521484971046,
- 0.032789189368486404,
- 0.028974687680602074,
- 0.03248786926269531,
- 0.03127029538154602,
- 0.031115805730223656,
- -0.0175277441740036,
- 0.025434764102101326,
- 0.06793130189180374,
- -0.01274238433688879,
- 0.06918827444314957,
- 0.12044499069452286,
- -0.021504580974578857,
- -0.022959915921092033,
- -0.040919408202171326,
- 0.08477164059877396,
- 0.02921639382839203,
- 0.08463551849126816,
- 0.051460087299346924,
- -0.02051427774131298,
- -0.05484010651707649,
- -0.06075860932469368,
- 0.02021006867289543,
- 0.02377304807305336,
- 0.041500117629766464,
- -0.07323922961950302,
- 0.002223589923232794,
- -0.0035187341272830963,
- -0.04083230346441269,
- 0.03608565032482147,
- 0.034804098308086395,
- -0.047320544719696045,
- 0.014007159508764744,
- -0.01782996952533722,
- 0.03597261384129524,
- -0.04826171323657036,
- 0.01898101344704628,
- -0.002536489861086011,
- 0.02427084930241108,
- -0.04269155487418175,
- -0.05013236403465271,
- -0.07802790403366089,
- -0.05816247686743736,
- -0.05813746154308319,
- 0.02034887485206127,
- -0.005200481973588467,
- 0.06986993551254272,
- 0.023446500301361084,
- -0.04772522673010826,
- -0.03677097707986832,
- -0.06823758780956268,
- -0.01771828532218933,
- -0.003935682121664286,
- 0.07792918384075165,
- 0.001344701275229454,
- 0.03551853820681572,
- 0.043691184371709824,
- -0.03377633914351463,
- 0.0352906733751297,
- -0.04700120911002159,
- 0.07452396303415298,
- -0.04565339535474777,
- -0.029985258355736732,
- 0.026447538286447525,
- -0.050519708544015884,
- 0.0035695023834705353,
- 0.08452774584293365,
- -0.004552013240754604,
- -0.03298531845211983,
- 0.0470765195786953,
- -0.1465234011411667,
- 0.010025005787611008,
- 0.12071258574724197,
- 0.026869039982557297,
- -0.0749315693974495,
- 0.04886084794998169,
- 0.004354224074631929,
- -0.15748752653598785,
- -0.00887898076325655,
- 0.20111188292503357,
- 0.04472603276371956,
- 0.039002370089292526,
- 0.06281601637601852,
- 0.0568816214799881,
- -0.00823681429028511,
- -0.07861195504665375,
- -0.04679670184850693,
- 0.015315257012844086,
- -0.027941059321165085,
- 0.038819845765829086,
- -0.00730186328291893,
- -0.002651510527357459,
- -0.005555873736739159,
- 0.06017138436436653,
- 0.008234784938395023,
- -0.024754881858825684,
- -0.018871234729886055,
- 0.01038993988186121,
- 0.05575850233435631,
- 0.03674042969942093,
- 0.03723727539181709,
- 0.017870865762233734,
- -0.022579628974199295,
- 0.05119837448000908,
- -0.11115919798612595,
- -0.07224917411804199,
- 0.004014252219349146,
- -4.8433662311480394e-33,
- -0.03949816897511482,
- -0.07536306977272034,
- 0.016475945711135864,
- 0.11210500448942184,
- -0.000992150278761983,
- 0.04638812690973282,
- 0.014772375114262104,
- -0.01227034255862236,
- -0.04058091714978218,
- -0.021880289539694786,
- -0.06055629253387451,
- -0.01714831218123436,
- -0.058443229645490646,
- 0.0636870339512825,
- 0.14894229173660278,
- -0.023770762607455254,
- -0.14406059682369232,
- -0.0017420680960640311,
- 0.01854253187775612,
- 0.06138772889971733,
- -0.07246816903352737,
- 0.07583213597536087,
- 0.00980253517627716,
- -0.020419195294380188,
- 0.020041368901729584,
- 0.012979653663933277,
- 0.008291034959256649,
- -0.03747408837080002,
- -0.015871744602918625,
- -0.009948547929525375,
- 0.0391143299639225,
- 0.0454070083796978,
- 0.00698378449305892,
- -0.012888464145362377,
- -0.06003754585981369,
- 0.00887279398739338,
- 0.06386202573776245,
- -0.05888229236006737,
- 0.015320859849452972,
- -0.018917148932814598,
- -0.029732152819633484,
- 0.012702783569693565,
- 0.003005941631272435,
- 0.03617347776889801,
- 0.01326825376600027,
- 0.05709604173898697,
- 0.08567892014980316,
- -0.012995118275284767,
- -0.10443270951509476,
- 0.04976845532655716,
- -0.05518466979265213,
- 0.05611632019281387,
- -0.02910047583281994,
- -0.05535110458731651,
- 0.01668836735188961,
- -0.061995163559913635,
- -0.03464381396770477,
- 0.003914122935384512,
- -0.024555590003728867,
- -0.02079988457262516,
- 0.06588540226221085,
- 0.06442411243915558,
- 0.014443186111748219,
- 0.006025049835443497,
- -0.01579788140952587,
- -0.024083435535430908,
- 0.08235384523868561,
- -0.03896213695406914,
- 0.05778083950281143,
- 0.021102072671055794,
- 0.03955985978245735,
- -0.0876707136631012,
- -0.022824857383966446,
- -0.04105548560619354,
- -0.0039028229657560587,
- -0.029208047315478325,
- 0.052107151597738266,
- 0.08952592313289642,
- -0.026854543015360832,
- -0.017784034833312035,
- 0.04272802919149399,
- 0.03622519597411156,
- -0.0426839180290699,
- -0.05017339810729027,
- 0.11108686029911041,
- -0.02212904579937458,
- -0.015918727964162827,
- -0.03395289555191994,
- 0.009531393647193909,
- -0.005206607282161713,
- -0.037530239671468735,
- -0.06827180087566376,
- 0.1145801767706871,
- 0.03469201177358627,
- -0.07467933744192123,
- 3.425380252720576e-33,
- -0.023708004504442215,
- 0.004518177360296249,
- -0.038687676191329956,
- 0.015691515058279037,
- 0.043633487075567245,
- -0.05721942335367203,
- -0.02335861697793007,
- 0.02210497297346592,
- -0.0908578559756279,
- 0.003631463274359703,
- -0.010112044401466846,
- 0.03411775827407837,
- 0.03552683815360069,
- 0.05128989368677139,
- -0.04499753937125206,
- -0.080828458070755,
- 0.05838894471526146,
- -0.01796741411089897,
- -0.022746941074728966,
- 0.022263303399086,
- 0.021490739658474922,
- 0.028070351108908653,
- -0.0708615705370903,
- 0.026917442679405212,
- -0.0189425740391016,
- 0.05034644901752472,
- 0.022357873618602753,
- 0.021778538823127747,
- -0.05551774054765701,
- 0.016792651265859604,
- 0.04606298357248306,
- 0.03702440485358238,
- 0.05098986625671387,
- 0.01916678063571453,
- -0.026777934283018112,
- 0.038334377110004425,
- 0.09416545927524567,
- 0.04024437442421913,
- -0.050401944667100906,
- -0.00355411390773952,
- -0.031745754182338715,
- 0.03754143416881561,
- -0.023956330493092537,
- 0.11767920106649399,
- -0.0751657709479332,
- 0.0877382829785347,
- 0.013162991963326931,
- 0.06069672480225563,
- 0.006872075609862804,
- 0.010317020118236542,
- -0.045943327248096466,
- 0.04965965077280998,
- -0.01123353373259306,
- -0.06390570849180222,
- -0.05577089637517929,
- -0.07368050515651703,
- 0.08367183059453964,
- -0.05240509286522865,
- 0.038960568606853485,
- 0.04380616918206215,
- -0.0649353563785553,
- -0.00442705862224102,
- 0.01711089350283146,
- -0.025090383365750313,
- -0.07777334749698639,
- -0.0014928027521818876,
- -0.0056617362424731255,
- 0.03535627946257591,
- -0.02601194567978382,
- 0.05239609256386757,
- 0.04866877570748329,
- 0.024015221744775772,
- -0.0523228645324707,
- -0.023127038031816483,
- -0.017314648255705833,
- -0.010982262901961803,
- -0.05370805785059929,
- 0.0721605196595192,
- 0.02430109679698944,
- -0.09929577261209488,
- -0.06070958077907562,
- 0.031572796404361725,
- 0.009889991953969002,
- 0.030687665566802025,
- -0.07703927904367447,
- -0.07820729166269302,
- 0.03467470034956932,
- 0.03280720114707947,
- -0.04585828259587288,
- -0.011894523166120052,
- 0.028708701953291893,
- -0.06317520886659622,
- -0.11441221833229065,
- -0.015914974734187126,
- -0.012816165573894978,
- -1.1037850633499602e-8,
- 0.07711728662252426,
- 0.02853362075984478,
- 0.009648608975112438,
- -0.015636339783668518,
- 0.0625050887465477,
- 0.0713048204779625,
- -0.03608863428235054,
- 0.04606858640909195,
- 0.05231748893857002,
- 0.05926723778247833,
- -0.08140215277671814,
- 0.05257748067378998,
- 0.03934000805020332,
- 0.051465168595314026,
- 0.07825814187526703,
- 0.014045286923646927,
- -0.06103796511888504,
- 0.02146647311747074,
- -0.035977624356746674,
- -0.003228976856917143,
- 0.04543547332286835,
- 0.008788091130554676,
- 0.004443514626473188,
- 0.024861587211489677,
- 0.0016904487274587154,
- -0.05517907813191414,
- -0.031452760100364685,
- -0.04391702264547348,
- -0.006097798235714436,
- -0.004171573091298342,
- 0.04878927022218704,
- 0.013344771228730679,
- -0.10244742035865784,
- -0.022977357730269432,
- -0.021057099103927612,
- -0.0024359046947211027,
- -0.06663007289171219,
- -0.0014030212769284844,
- 0.05739886313676834,
- -0.07831845432519913,
- 0.02033933810889721,
- -0.011605499312281609,
- 0.029472658410668373,
- -0.00961358193308115,
- -0.0791599452495575,
- -0.057606570422649384,
- 0.02253912203013897,
- -0.06081641837954521,
- -0.02583700604736805,
- 0.004154324997216463,
- -0.06787389516830444,
- -0.026205524802207947,
- 0.05884869769215584,
- -0.013377399183809757,
- 0.06412006169557571,
- -0.013680236414074898,
- -0.01036048587411642,
- 0.0631195455789566,
- 0.02073715068399906,
- 0.043928343802690506,
- 0.18992960453033447,
- 0.0789785161614418,
- 0.033521223813295364,
- -0.011569095775485039
- ]
- },
- {
- "keyword": "transforms",
- "type": "transforms",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.069096639752388,
- 0.0845632255077362,
- -0.01901889033615589,
- -0.045436929911375046,
- -0.05248461663722992,
- -0.013393308967351913,
- -0.015110669657588005,
- -0.020336663350462914,
- 0.07384777814149857,
- -0.036711327731609344,
- 0.053986188024282455,
- 0.01459619402885437,
- -0.013757226057350636,
- 0.03255223482847214,
- -0.006311645731329918,
- -0.005363577511161566,
- -0.1214892640709877,
- 0.16166503727436066,
- -0.11375869065523148,
- -0.019928937777876854,
- 0.038973767310380936,
- -0.011634578928351402,
- -0.08252308517694473,
- -0.003284614533185959,
- 0.06050082668662071,
- 0.06621339917182922,
- -0.019257327541708946,
- -0.017978668212890625,
- 0.06409771740436554,
- -0.10801386088132858,
- -0.03661613166332245,
- 0.0168059840798378,
- -0.062664695084095,
- -0.028502099215984344,
- -0.09423401206731796,
- 0.028834272176027298,
- 0.019300607964396477,
- -0.04445067048072815,
- 0.030444517731666565,
- -0.04388539865612984,
- 0.024203279986977577,
- -0.03409907966852188,
- 0.02750456891953945,
- -0.04447903484106064,
- 0.004355654586106539,
- 0.03861233592033386,
- 0.05867965519428253,
- 0.01813235506415367,
- -0.020924115553498268,
- -0.0020411170553416014,
- 0.002991829765960574,
- 0.014784864149987698,
- -0.06123798340559006,
- 0.10879693180322647,
- -0.008806404657661915,
- 0.026149775832891464,
- 0.03409899026155472,
- -0.0024764102417975664,
- 0.05237153172492981,
- -0.03290131315588951,
- -0.014466928318142891,
- 0.02299887128174305,
- -0.019987376406788826,
- 0.038159970194101334,
- -0.06759220361709595,
- -0.08692426979541779,
- 0.02302231825888157,
- -0.0866393893957138,
- -0.060692280530929565,
- 0.023895680904388428,
- -0.08946001529693604,
- -0.00944742001593113,
- -0.0003609303093980998,
- 0.010567495599389076,
- 0.12551280856132507,
- -0.07851842790842056,
- 0.006845260504633188,
- -0.026696208864450455,
- 0.09417242556810379,
- 0.000944481638725847,
- 0.06588083505630493,
- -0.061343368142843246,
- -0.017215833067893982,
- 0.04932428151369095,
- 0.04457365721464157,
- 0.03126095235347748,
- -0.11064018309116364,
- 0.057561807334423065,
- -0.0099196657538414,
- 0.03701995685696602,
- -0.03739236295223236,
- -0.03740377351641655,
- 0.0760284811258316,
- -0.043452560901641846,
- -0.004805485252290964,
- -0.052305448800325394,
- -0.021534664556384087,
- 0.002636045217514038,
- 0.0625946968793869,
- 0.216416135430336,
- 0.006738863419741392,
- -0.013825561851263046,
- 0.026513688266277313,
- -0.02977091632783413,
- -0.051307305693626404,
- -0.00791619997471571,
- -0.010169400833547115,
- 0.032819781452417374,
- 0.0044653406366705894,
- 0.005046850070357323,
- 0.02236335538327694,
- -0.04618142917752266,
- 0.023751061409711838,
- -0.05502853915095329,
- 0.04231066256761551,
- -0.06901314109563828,
- -0.06929143518209457,
- -0.005198783706873655,
- -0.07930207252502441,
- -0.020131900906562805,
- 0.029461482539772987,
- 0.03978975489735603,
- -0.051231466233730316,
- 0.08879569172859192,
- -0.04334023967385292,
- 0.01905503310263157,
- -0.0020440062507987022,
- -3.636293326616865e-33,
- -0.06969165802001953,
- 0.062456004321575165,
- 0.049762193113565445,
- 0.03920852765440941,
- -0.0007746819755993783,
- 0.006416240707039833,
- -0.017612358555197716,
- -0.00012896893895231187,
- -0.010134430602192879,
- -0.007853060960769653,
- -0.050700947642326355,
- 0.12824499607086182,
- 0.012166567146778107,
- -0.03116997517645359,
- -0.03883103281259537,
- -0.028688618913292885,
- 0.07982943952083588,
- 0.06020743399858475,
- 0.015567061491310596,
- -0.050001561641693115,
- 0.00835748016834259,
- 0.09304492920637131,
- -0.015080928802490234,
- 0.028219744563102722,
- -0.026504311710596085,
- -0.008663500659167767,
- -0.06571711599826813,
- -0.04597410187125206,
- 0.004041119012981653,
- -0.00965153519064188,
- -0.0649557039141655,
- 0.04262864589691162,
- -0.08848588913679123,
- -0.06963618844747543,
- 0.04022665694355965,
- -0.036512695252895355,
- 0.0966072529554367,
- -0.048744384199380875,
- 0.015674784779548645,
- -0.0414041206240654,
- -0.00206270650960505,
- -0.02976664900779724,
- -0.060980234295129776,
- -0.018914509564638138,
- 0.04023740068078041,
- 0.041401319205760956,
- 0.10245471447706223,
- 0.0804431140422821,
- 0.03844541311264038,
- 0.004240087233483791,
- -0.024200767278671265,
- 0.008125141263008118,
- -0.11805552244186401,
- -0.0010598324006423354,
- 0.06627408415079117,
- 0.05497145652770996,
- 0.04824134707450867,
- 0.023508157581090927,
- -0.007726412266492844,
- 0.029539937153458595,
- -0.02648681215941906,
- 0.006044356152415276,
- -0.007707439828664064,
- -0.022422369569540024,
- 0.03889406472444534,
- -0.09440106898546219,
- 0.04611147567629814,
- -0.07194715738296509,
- 0.0062497626058757305,
- 0.05713391304016113,
- -0.0386914424598217,
- 0.013259876519441605,
- 0.014236676506698132,
- 0.022076686844229698,
- -0.010072465986013412,
- -0.007287975866347551,
- -0.027158958837389946,
- 0.06168169528245926,
- -0.06973597407341003,
- 0.0097787044942379,
- -0.16903819143772125,
- 0.05597643181681633,
- 0.0649128183722496,
- -0.05403319001197815,
- 0.049614228308200836,
- 0.020870717242360115,
- 0.020720409229397774,
- -0.09460777789354324,
- -0.023175816982984543,
- -0.002921780338510871,
- -0.06962621957063675,
- 0.015883468091487885,
- -0.053814683109521866,
- -0.0020045798737555742,
- 0.026338744908571243,
- 2.573052257813375e-33,
- -0.074665367603302,
- 0.03440317139029503,
- -0.006898458581417799,
- 0.0917511060833931,
- -0.02587575651705265,
- -0.023740893229842186,
- 0.048150431364774704,
- -0.02321973815560341,
- 0.03585260733962059,
- -0.01664057932794094,
- 0.0011722026392817497,
- -0.03998779132962227,
- -0.033279579132795334,
- -0.0836203470826149,
- 0.04918288439512253,
- -0.04001227393746376,
- 0.04845911264419556,
- -0.05783538147807121,
- -0.12472403049468994,
- -0.01232582051306963,
- 0.0023081405088305473,
- 0.10594344139099121,
- -0.028031548485159874,
- 0.0352928563952446,
- -0.0730983093380928,
- 0.06306903809309006,
- -0.004105635918676853,
- 0.03559961915016174,
- 0.024237966164946556,
- 0.04115564003586769,
- -0.01474753301590681,
- -0.0776495486497879,
- 0.01827039010822773,
- 0.03976384550333023,
- -0.05152151361107826,
- 0.03147253766655922,
- -0.017253916710615158,
- 0.05152953043580055,
- 0.0024405440781265497,
- 0.04022618383169174,
- -0.004825378768146038,
- 0.019616642966866493,
- 0.024232128635048866,
- 0.10472728312015533,
- -0.010574116371572018,
- -0.03310570865869522,
- 0.06107228994369507,
- 0.06370852887630463,
- 0.00578362587839365,
- 0.03610553592443466,
- -0.013165806420147419,
- -0.008336318656802177,
- -0.0625985860824585,
- -0.06582615524530411,
- -0.003605731762945652,
- 0.01615317352116108,
- -0.004030938260257244,
- -0.08515873551368713,
- 0.06650354713201523,
- -0.0031366345938295126,
- -0.05135490372776985,
- -0.0024185327347368,
- 0.050297483801841736,
- -0.059596505016088486,
- -0.06009471416473389,
- 0.0397624708712101,
- -0.0047452677972614765,
- -0.033733099699020386,
- 0.04228048026561737,
- 0.0459507554769516,
- 0.09819550067186356,
- 0.02298293076455593,
- 0.009624136611819267,
- -0.05843840539455414,
- -0.06532822549343109,
- -0.10795864462852478,
- -0.01349932886660099,
- 0.01939139887690544,
- -0.00037439315929077566,
- -0.005958794616162777,
- -0.0490155853331089,
- -0.027268238365650177,
- 0.06499838083982468,
- 0.013646865263581276,
- -0.05756436660885811,
- -0.004631365649402142,
- 0.0606674998998642,
- -0.033491093665361404,
- 0.05374809727072716,
- 0.012163477949798107,
- -0.04009265825152397,
- 0.14481501281261444,
- 0.007127262186259031,
- -0.01063940953463316,
- 0.054328110069036484,
- -1.0565329056078099e-8,
- -0.06984908133745193,
- 0.002140236087143421,
- -0.03186716139316559,
- 0.0068449899554252625,
- -0.02572832815349102,
- 0.01814419776201248,
- -0.02313227951526642,
- 0.07497120648622513,
- -0.03929442912340164,
- 0.06430728733539581,
- -0.003087033983319998,
- -0.03712628409266472,
- 0.06080009788274765,
- -0.00003931688115699217,
- 0.06731578707695007,
- 0.0323568731546402,
- 0.025888390839099884,
- 0.004810665734112263,
- -0.048742618411779404,
- -0.04540948197245598,
- -0.04236295446753502,
- 0.032447826117277145,
- -0.025583583861589432,
- 0.0561550073325634,
- 0.0010519030038267374,
- -0.05451944097876549,
- -0.11465324461460114,
- -0.05048858001828194,
- 0.025133712217211723,
- 0.08663175255060196,
- 0.01359508465975523,
- 0.07506158202886581,
- 0.02556433714926243,
- 0.012013236060738564,
- 0.037351273000240326,
- -0.08662911504507065,
- 0.06109727546572685,
- 0.011931682005524635,
- 0.006445503793656826,
- 0.044373054057359695,
- 0.024103110656142235,
- 0.005998743698000908,
- -0.0019114722963422537,
- 0.07325701415538788,
- -0.07314302027225494,
- -0.005870566703379154,
- 0.06696555763483047,
- 0.008370107971131802,
- -0.04405425861477852,
- 0.024032508954405785,
- 0.0905628353357315,
- 0.03814653679728508,
- -0.01143658347427845,
- 0.009741943329572678,
- 0.02022661827504635,
- 0.018048949539661407,
- 0.06763022392988205,
- -0.03441552817821503,
- -0.009484437294304371,
- 0.09236670285463333,
- 0.009396469220519066,
- 0.05753544718027115,
- 0.059237781912088394,
- -0.02019660361111164
- ]
- },
- {
- "keyword": "converts",
- "type": "transforms",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.004884524270892143,
- 0.07586824893951416,
- -0.07283567637205124,
- 0.03644166141748428,
- -0.07200845330953598,
- -0.08624081313610077,
- 0.033551763743162155,
- -0.04451938718557358,
- 0.06946432590484619,
- -0.030242696404457092,
- 0.013377930968999863,
- -0.14030708372592926,
- 0.06123720481991768,
- -0.06059040501713753,
- -0.035188768059015274,
- 0.0005123619921505451,
- -0.08091845363378525,
- 0.09786810725927353,
- -0.05722014605998993,
- -0.04592850059270859,
- -0.05583410710096359,
- -0.023659341037273407,
- -0.03807111084461212,
- 0.030551644042134285,
- 0.03841423988342285,
- 0.025322819128632545,
- -0.06448852270841599,
- -0.049046508967876434,
- 0.017683686688542366,
- -0.039047617465257645,
- -0.05503286048769951,
- -0.004785975441336632,
- 0.01161773968487978,
- 0.02593594789505005,
- 0.017295528203248978,
- 0.05970390513539314,
- 0.07603684067726135,
- 0.027495795860886574,
- 0.017680266872048378,
- 0.012679440900683403,
- 0.011553147807717323,
- -0.07971712201833725,
- 0.043291084468364716,
- 0.022555451840162277,
- 0.017653247341513634,
- -0.019725827500224113,
- -0.036627911031246185,
- 0.05051673203706741,
- 0.02100292220711708,
- 0.04315008223056793,
- -0.009466019459068775,
- 0.03884880617260933,
- -0.06707020848989487,
- 0.031193995848298073,
- -0.044966068118810654,
- 0.03519318997859955,
- 0.025313951075077057,
- 0.051573578268289566,
- -0.03230156749486923,
- -0.014811701141297817,
- -0.07186062633991241,
- 0.03727015480399132,
- -0.041021678596735,
- 0.01512069534510374,
- -0.007558343932032585,
- -0.039279792457818985,
- 0.05725895240902901,
- -0.008002796210348606,
- -0.053906552493572235,
- -0.08594810962677002,
- -0.07168186455965042,
- -0.05733717605471611,
- -0.009140857495367527,
- 0.019106213003396988,
- 0.03194049373269081,
- -0.10923998802900314,
- -0.049228280782699585,
- -0.03860145062208176,
- 0.017952250316739082,
- 0.039698947221040726,
- 0.054488714784383774,
- -0.01386759988963604,
- -0.0740932896733284,
- 0.022229263558983803,
- 0.006053796503692865,
- 0.05245919153094292,
- -0.014484180137515068,
- 0.08325771242380142,
- 0.031739190220832825,
- 0.027309538796544075,
- -0.07590104639530182,
- -0.03796304389834404,
- 0.1191764697432518,
- -0.003826148808002472,
- -0.012544709257781506,
- -0.016221698373556137,
- 0.026805756613612175,
- 0.006505726370960474,
- 0.05695091560482979,
- 0.21443210542201996,
- -0.04424074664711952,
- 0.043217383325099945,
- 0.020682690665125847,
- -0.10098481923341751,
- -0.0538502112030983,
- -0.045928601175546646,
- -0.025208501145243645,
- 0.09623424708843231,
- 0.0075543601997196674,
- -0.04933843016624451,
- 0.004631357733160257,
- 0.022134914994239807,
- -0.04172883182764053,
- 0.006397121120244265,
- 0.08590196818113327,
- 0.043043676763772964,
- -0.0009106302750296891,
- -0.03943927586078644,
- -0.05097580701112747,
- 0.08073186129331589,
- 0.004490898922085762,
- 0.047400813549757004,
- 0.019804589450359344,
- 0.10587046295404434,
- -0.039307527244091034,
- -0.015289136208593845,
- 0.021766453981399536,
- -4.501788143950222e-33,
- -0.0779985785484314,
- -0.008507709950208664,
- 0.07959296554327011,
- 0.032806701958179474,
- -0.07269405573606491,
- 0.06543710827827454,
- -0.036715079098939896,
- -0.010613054037094116,
- -0.05864323675632477,
- -0.027489731088280678,
- -0.029216453433036804,
- 0.007619046606123447,
- -0.006542372051626444,
- 0.08805438876152039,
- 0.06237451732158661,
- -0.0283394493162632,
- 0.05389658361673355,
- -0.06029434874653816,
- 0.03975699096918106,
- 0.021626776084303856,
- 0.026788461953401566,
- 0.05659303069114685,
- -0.08183673769235611,
- 0.09006062150001526,
- -0.015994926914572716,
- 0.03918548300862312,
- -0.018586665391921997,
- 0.01168336533010006,
- 0.07429981976747513,
- -0.0001563743280712515,
- -0.04577260836958885,
- -0.01409023255109787,
- -0.02506740763783455,
- -0.03601681813597679,
- -0.05444229021668434,
- 0.0359034538269043,
- 0.07992277294397354,
- -0.03974761441349983,
- 0.04087042063474655,
- -0.03618350625038147,
- -0.03415440022945404,
- 0.011401091702282429,
- 0.029859047383069992,
- 0.03255878761410713,
- 0.05433527007699013,
- 0.025527585297822952,
- 0.06329438090324402,
- -0.03808525949716568,
- 0.015966909006237984,
- 0.06140748783946037,
- -0.06895112246274948,
- -0.0011712770210579038,
- -0.03284291923046112,
- -0.0018314573680981994,
- 0.010995800606906414,
- -0.059533119201660156,
- 0.03511635586619377,
- 0.039741966873407364,
- -0.0059846630319952965,
- -0.03599605709314346,
- 0.03330976516008377,
- 0.025709761306643486,
- 0.010332630947232246,
- -0.01725539192557335,
- -0.041075728833675385,
- -0.09019950777292252,
- 0.024829566478729248,
- -0.08949626237154007,
- -0.014351335354149342,
- 0.029057053849101067,
- -0.1088537946343422,
- -0.039444923400878906,
- 0.003399856388568878,
- 0.045440368354320526,
- 0.05309952050447464,
- -0.03236320614814758,
- -0.00019502584473229945,
- 0.009700993075966835,
- 0.0403578095138073,
- -0.030620455741882324,
- -0.006279394030570984,
- 0.014828797429800034,
- -0.019952798262238503,
- -0.07292885333299637,
- 0.09220974892377853,
- -0.012837396934628487,
- -0.025867020711302757,
- -0.0966862142086029,
- -0.005718635395169258,
- -0.01780480518937111,
- 0.05332725867629051,
- -0.004079500678926706,
- 0.04465736448764801,
- -0.023116303607821465,
- -0.08345989137887955,
- 3.298483066155418e-33,
- -0.03126707673072815,
- 0.010527233593165874,
- -0.03451256826519966,
- 0.0770309790968895,
- -0.012914269231259823,
- -0.007438226602971554,
- 0.010605152696371078,
- -0.009648462757468224,
- 0.038460761308670044,
- -0.018022174015641212,
- -0.009924549609422684,
- -0.0002514575608074665,
- 0.09352440387010574,
- 0.014114798977971077,
- 0.021000510081648827,
- -0.09556388109922409,
- 0.07132594287395477,
- 0.046183884143829346,
- -0.025212718173861504,
- -0.016590598970651627,
- -0.0342467799782753,
- 0.0973399356007576,
- 0.0004002397181466222,
- -0.012227722443640232,
- 0.020785950124263763,
- 0.03679502010345459,
- 0.033466264605522156,
- 0.10911539942026138,
- 0.046017032116651535,
- -0.028291406109929085,
- 0.008925249800086021,
- -0.08208619058132172,
- -0.0632813572883606,
- 0.0005568453343585134,
- -0.07082748413085938,
- -0.010659531690180302,
- 0.06571261584758759,
- 0.07815561443567276,
- -0.022539550438523293,
- 0.0438217855989933,
- -0.01898200996220112,
- -0.02869160659611225,
- 0.044429875910282135,
- 0.08090658485889435,
- -0.06795986741781235,
- 0.11431480199098587,
- 0.02604561671614647,
- 0.0921674445271492,
- 0.0962458923459053,
- 0.012611791491508484,
- -0.0009761718683876097,
- -0.0016112326411530375,
- -0.05442221090197563,
- -0.05161434784531593,
- 0.009420729242265224,
- -0.11490596830844879,
- 0.01529600191861391,
- -0.06532026082277298,
- -0.01165985781699419,
- -0.05477418005466461,
- -0.0629173219203949,
- 0.0058542778715491295,
- 0.0763896033167839,
- 0.02176560088992119,
- -0.07220100611448288,
- 0.018113847821950912,
- 0.019604656845331192,
- 0.10759345442056656,
- 0.023560184985399246,
- 0.06712660193443298,
- 0.11391939967870712,
- -0.03722524270415306,
- -0.046215519309043884,
- -0.024540329352021217,
- -0.059001874178647995,
- -0.08021366596221924,
- -0.07258248329162598,
- -0.015394113957881927,
- 0.03812703862786293,
- -0.12048740684986115,
- -0.04189109057188034,
- -0.043638795614242554,
- 0.07250484079122543,
- -0.004913222976028919,
- 0.01302279531955719,
- -0.10452127456665039,
- 0.09074192494153976,
- -0.01568116992712021,
- 0.05355830490589142,
- 0.022371400147676468,
- -0.011939260177314281,
- 0.0280399601906538,
- -0.04025832936167717,
- -0.05054449662566185,
- 0.05699849873781204,
- -1.0502412273183381e-8,
- -0.028465019538998604,
- 0.031754255294799805,
- -0.013326119631528854,
- 0.012430905364453793,
- 0.04572824016213417,
- 0.05717414245009422,
- -0.0096572982147336,
- -0.007627944927662611,
- 0.039519064128398895,
- 0.05931420624256134,
- -0.06134290620684624,
- 0.015988502651453018,
- 0.03227941691875458,
- -0.01502670906484127,
- 0.1302628368139267,
- 0.053567901253700256,
- 0.0445980466902256,
- 0.009207304567098618,
- 0.0005419726949185133,
- -0.06161503866314888,
- -0.017413955181837082,
- -0.007413835730403662,
- 0.0131235895678401,
- -0.03479147329926491,
- 0.015632083639502525,
- -0.0061206938698887825,
- -0.032605841755867004,
- 0.08019769191741943,
- 0.05920666083693504,
- -0.04168765991926193,
- -0.010779821313917637,
- 0.04265861585736275,
- -0.04802289977669716,
- -0.02275138907134533,
- -0.04019748792052269,
- -0.0339445136487484,
- -0.0450473390519619,
- 0.0479070283472538,
- 0.05659220367670059,
- 0.028861872851848602,
- 0.00383427320048213,
- -0.03136825934052467,
- -0.07647605985403061,
- 0.02434350736439228,
- -0.1649392545223236,
- -0.06802336871623993,
- 0.03143462911248207,
- -0.009859875775873661,
- 0.00617822865024209,
- -0.03258518502116203,
- 0.05950281023979187,
- 0.02562606893479824,
- 0.016284676268696785,
- 0.009128207340836525,
- 0.020739203318953514,
- -0.05129121616482735,
- -0.005208722781389952,
- 0.0631059929728508,
- 0.03347746282815933,
- 0.04411165043711662,
- 0.07802700251340866,
- 0.040364887565374374,
- 0.06901533901691437,
- -0.022832434624433517
- ]
- },
- {
- "keyword": "changes",
- "type": "transforms",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.039217595010995865,
- 0.060730256140232086,
- 0.02516564540565014,
- -0.02459598518908024,
- 0.03542182594537735,
- 0.0011111346539109945,
- 0.02692010998725891,
- -0.029994571581482887,
- -0.017581572756171227,
- 0.03904768452048302,
- 0.021446414291858673,
- -0.032920952886343,
- -0.06897776573896408,
- -0.0015540329040959477,
- -0.042801473289728165,
- -0.011886810883879662,
- 0.013500361703336239,
- 0.04050511121749878,
- -0.1034894809126854,
- 0.007142516318708658,
- -0.08664974570274353,
- 0.025955239310860634,
- -0.019649751484394073,
- 0.010937230661511421,
- -0.03405866399407387,
- 0.04196443781256676,
- -0.02172900177538395,
- 0.08938904851675034,
- 0.055451225489377975,
- -0.169324591755867,
- -0.00581863708794117,
- 0.06316864490509033,
- 0.09011008590459824,
- -0.02425859123468399,
- -0.04501096531748772,
- -0.0003197754849679768,
- 0.047193385660648346,
- 0.061382148414850235,
- -0.004836210049688816,
- -0.02713325433433056,
- 0.00584627129137516,
- -0.1043277159333229,
- -0.04875171557068825,
- 0.004098885226994753,
- -0.0019841266330331564,
- 0.043960776180028915,
- 0.015789473429322243,
- 0.013792360201478004,
- -0.02151411771774292,
- 0.04179810732603073,
- 0.0025279156398028135,
- -0.0295050460845232,
- -0.01077763456851244,
- -0.03169156610965729,
- 0.038831014186143875,
- -0.0032766645308583975,
- 0.01905810832977295,
- 0.10846452414989471,
- 0.0627158060669899,
- -0.02955285832285881,
- 0.1223582923412323,
- 0.04644932225346565,
- -0.038894180208444595,
- 0.06705161184072495,
- 0.01742137409746647,
- -0.007811427116394043,
- -0.010898306034505367,
- -0.014565511606633663,
- -0.029525967314839363,
- -0.04751662537455559,
- 0.013737212866544724,
- 0.1176525130867958,
- 0.01102787721902132,
- -0.08557798713445663,
- 0.03087587282061577,
- -0.025399653241038322,
- -0.029142029583454132,
- -0.004572780802845955,
- 0.058362580835819244,
- -0.05974366143345833,
- 0.04945860058069229,
- -0.014255128800868988,
- -0.06264501810073853,
- -0.013514935038983822,
- 0.020229758694767952,
- -0.017430860549211502,
- 0.009813835844397545,
- -0.05340322107076645,
- -0.06911246478557587,
- -0.012966510839760303,
- 0.058420050889253616,
- 0.046698588877916336,
- 0.06273533403873444,
- -0.02605876326560974,
- -0.08516392856836319,
- 0.02223997563123703,
- -0.016167636960744858,
- 0.028753934428095818,
- 0.06795676797628403,
- 0.2896275222301483,
- -0.0004279345739632845,
- 0.04281960427761078,
- 0.010301051661372185,
- 0.015426352620124817,
- -0.014392001554369926,
- 0.0006408505723811686,
- 0.0030158041045069695,
- 0.05673527717590332,
- -0.034217920154333115,
- 0.014523854479193687,
- 0.03508683666586876,
- 0.0008198628784157336,
- -0.05854389816522598,
- -0.013573567382991314,
- -0.011711237952113152,
- -0.0437837615609169,
- -0.002736717462539673,
- 0.037740591913461685,
- -0.06005916744470596,
- 0.01327500119805336,
- 0.05662083625793457,
- -0.011662784963846207,
- -0.01355515606701374,
- -0.02091863565146923,
- -0.11039755493402481,
- 0.0417674295604229,
- 0.02158714085817337,
- -4.130497600325448e-33,
- 0.02601991966366768,
- -0.0377713106572628,
- 0.0013442868366837502,
- 0.10190562158823013,
- 0.023064984008669853,
- 0.01619439758360386,
- 0.0012016389518976212,
- -0.04749404266476631,
- -0.006712027359753847,
- -0.0526503287255764,
- 0.08343957364559174,
- 0.07700400799512863,
- -0.023845097050070763,
- -0.012877995148301125,
- 0.13027359545230865,
- -0.09369442611932755,
- 0.004054558929055929,
- 0.010287115350365639,
- 0.04285631328821182,
- 0.01490687020123005,
- -0.10694096982479095,
- 0.112637959420681,
- -0.011585421860218048,
- 0.021453624591231346,
- 0.00004707775588030927,
- 0.03573237359523773,
- -0.030286669731140137,
- -0.032015904784202576,
- -0.020475871860980988,
- -0.009150448255240917,
- -0.0061654746532440186,
- 0.003280675271525979,
- -0.02741684578359127,
- 0.025444071739912033,
- -0.023306692019104958,
- -0.013197422958910465,
- -0.00588799687102437,
- -0.09301314502954483,
- 0.001314555644057691,
- -0.07874088734388351,
- -0.017190298065543175,
- -0.003793929936364293,
- -0.0980454534292221,
- 0.0036846324801445007,
- 0.006680329330265522,
- 0.0723622739315033,
- 0.05829877778887749,
- 0.022773107513785362,
- 0.002542626578360796,
- -0.010123987682163715,
- -0.016549663618206978,
- 0.030289871618151665,
- -0.06126215308904648,
- -0.006163210608065128,
- -0.014843448996543884,
- -0.008176106959581375,
- 0.018472233787178993,
- -0.04781189560890198,
- 0.03913542628288269,
- -0.00573140662163496,
- 0.11711343377828598,
- 0.06013917177915573,
- 0.008326168172061443,
- -0.01041316892951727,
- 0.014759255573153496,
- 0.058467913419008255,
- 0.04251222312450409,
- -0.03663213551044464,
- -0.01989123970270157,
- 0.012612735852599144,
- -0.12006767094135284,
- 0.0017469184240326285,
- 0.06800653040409088,
- 0.08859579265117645,
- -0.026933740824460983,
- -0.03375266119837761,
- -0.05461232736706734,
- 0.029615387320518494,
- -0.03173099458217621,
- -0.042098112404346466,
- -0.007761868182569742,
- 0.05615466460585594,
- 0.0022657979279756546,
- 0.01940566673874855,
- 0.08486494421958923,
- -0.03279823437333107,
- 0.03645998612046242,
- -0.001892880885861814,
- -0.008886745199561119,
- 0.0341465026140213,
- -0.058936234563589096,
- -0.020578909665346146,
- 0.05905594304203987,
- 0.012397175654768944,
- 0.017010757699608803,
- 3.46005623404388e-33,
- -0.17135702073574066,
- -0.02240155078470707,
- -0.029322456568479538,
- 0.11634155362844467,
- -0.008709652349352837,
- -0.01993640698492527,
- 0.06100638583302498,
- 0.05141282081604004,
- 0.06366053968667984,
- -0.0006092882831580937,
- 0.02860812097787857,
- -0.050719115883111954,
- -0.03757219389081001,
- 0.009883115999400616,
- -0.011594878509640694,
- 0.01449265331029892,
- 0.038677655160427094,
- -0.0397883839905262,
- -0.015952618792653084,
- 0.02581065706908703,
- -0.047118205577135086,
- 0.03543034568428993,
- -0.0390499047935009,
- 0.011731166392564774,
- -0.023044215515255928,
- 0.025697093456983566,
- 0.03951311856508255,
- 0.06949872523546219,
- 0.003928970545530319,
- -0.11705319583415985,
- 0.017002157866954803,
- 0.013145812787115574,
- -0.09665371477603912,
- 0.07268506288528442,
- -0.03639313951134682,
- -0.0042347111739218235,
- 0.015110766515135765,
- -0.0414884053170681,
- -0.04945247992873192,
- 0.03028765507042408,
- 0.055263034999370575,
- 0.0019443915225565434,
- 0.06018897891044617,
- 0.11515102535486221,
- 0.026984497904777527,
- 0.05724295601248741,
- -0.056977782398462296,
- 0.029968587681651115,
- -0.0267822053283453,
- -0.037339162081480026,
- -0.009561648592352867,
- -0.01114651933312416,
- 0.020070072263479233,
- -0.0007580152014270425,
- 0.0046499320305883884,
- 0.04146688058972359,
- 0.0033492089714854956,
- -0.07374917715787888,
- 0.01942901499569416,
- 0.00880883913487196,
- -0.056089118123054504,
- 0.03969168663024902,
- -0.0745132640004158,
- 0.035263508558273315,
- -0.0008990705828182399,
- 0.048125263303518295,
- -0.0496305376291275,
- -0.02053011953830719,
- 0.08697240799665451,
- 0.020930727943778038,
- -0.026461279019713402,
- -0.15499627590179443,
- -0.05156516656279564,
- -0.05614721402525902,
- -0.016841933131217957,
- -0.08424127846956253,
- -0.08402442187070847,
- -0.006384000182151794,
- -0.020032823085784912,
- -0.05241017788648605,
- -0.04295314475893974,
- -0.074882872402668,
- -0.039820168167352676,
- 0.02651226334273815,
- -0.028736764565110207,
- 0.06545949727296829,
- -0.011413787491619587,
- 0.07223380357027054,
- 0.015629488974809647,
- 0.011505850590765476,
- -0.014443940483033657,
- 0.0379759855568409,
- -0.013566944748163223,
- 0.05278777331113815,
- -0.02466093748807907,
- -1.3141599808363935e-8,
- -0.006616391707211733,
- 0.0634898915886879,
- -0.030290475115180016,
- 0.08059175312519073,
- 0.03710593655705452,
- -0.011971751227974892,
- -0.01545918732881546,
- 0.03419828042387962,
- 0.02125234156847,
- 0.04577000066637993,
- 0.0020011495798826218,
- 0.05624641850590706,
- 0.07002909481525421,
- 0.044572614133358,
- 0.046131107956171036,
- -0.03207312524318695,
- -0.0926976352930069,
- -0.004547848366200924,
- -0.011289684101939201,
- -0.022605275735259056,
- -0.12629665434360504,
- 0.0255007054656744,
- 0.002990072127431631,
- 0.015686415135860443,
- 0.02519102394580841,
- -0.062125906348228455,
- -0.004171575419604778,
- 0.08720610290765762,
- -0.022857768461108208,
- -0.02718571573495865,
- 0.02872837521135807,
- 0.04697892814874649,
- 0.02557641640305519,
- 0.022032592445611954,
- -0.010825344361364841,
- -0.06823331862688065,
- -0.07625367492437363,
- -0.0385647714138031,
- 0.05792171508073807,
- 0.046699732542037964,
- 0.027771763503551483,
- -0.05581637844443321,
- -0.020722439512610435,
- 0.00812874361872673,
- -0.12662486732006073,
- -0.026552915573120117,
- 0.05321158841252327,
- -0.03831382468342781,
- -0.024153145030140877,
- -0.07408789545297623,
- 0.03474826365709305,
- 0.06703779101371765,
- 0.028737768530845642,
- 0.010291391983628273,
- 0.1293979436159134,
- 0.01871418207883835,
- 0.021511796861886978,
- 0.0016192366601899266,
- 0.026585739105939865,
- 0.03264504298567772,
- 0.13189047574996948,
- -0.05498885363340378,
- 0.04623885825276375,
- 0.01361403800547123
- ]
- },
- {
- "keyword": "morphs",
- "type": "transforms",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.01028726901859045,
- 0.011121249757707119,
- 0.07268685847520828,
- -0.026889080181717873,
- -0.11351887881755829,
- -0.04525133594870567,
- 0.06595788151025772,
- -0.01983913779258728,
- 0.033287256956100464,
- -0.003394577419385314,
- 0.06556916981935501,
- -0.13038645684719086,
- -0.019218968227505684,
- -0.0022333278320729733,
- 0.010860452428460121,
- 0.0635228380560875,
- -0.0718640387058258,
- 0.08400954306125641,
- -0.049559999257326126,
- 0.017651086673140526,
- 0.07953859865665436,
- 0.04493235424160957,
- -0.024937856942415237,
- 0.000462265161331743,
- 0.0456584133207798,
- 0.04539719596505165,
- -0.06034685671329498,
- 0.04212317243218422,
- 0.06476382166147232,
- -0.10776954144239426,
- -0.03278837352991104,
- 0.0029344619251787663,
- 0.02320941351354122,
- 0.02405015379190445,
- -0.041562993079423904,
- 0.07285972684621811,
- 0.02949046902358532,
- 0.025260599330067635,
- 0.03852913901209831,
- 0.00143230555113405,
- -0.03924252465367317,
- -0.01705886237323284,
- -0.01195870153605938,
- 0.0029746945947408676,
- 0.030626419931650162,
- 0.04689641296863556,
- -0.020970506593585014,
- -0.05070482939481735,
- -0.0099712535738945,
- -0.006762553006410599,
- -0.015608558431267738,
- -0.10354281216859818,
- -0.09204519540071487,
- 0.12283231317996979,
- 0.016988398507237434,
- -0.01801239512860775,
- 0.027475761249661446,
- -0.03806751221418381,
- 0.01776278205215931,
- -0.01955985650420189,
- -0.06071186810731888,
- 0.0044838241301476955,
- 0.013886900618672371,
- 0.008443919010460377,
- -0.05765635520219803,
- 0.015069936402142048,
- 0.038798511028289795,
- -0.05436275526881218,
- -0.047581594437360764,
- 0.0008876405190676451,
- -0.01707840897142887,
- -0.025522591546177864,
- 0.003884576726704836,
- -0.019763436168432236,
- -0.003696913132444024,
- 0.028633711859583855,
- 0.015168530866503716,
- -0.10440082848072052,
- 0.015972208231687546,
- -0.06082187592983246,
- 0.05103278532624245,
- 0.01514173112809658,
- -0.03078165277838707,
- 0.006957032717764378,
- 0.07840310782194138,
- 0.024472711607813835,
- -0.011749046854674816,
- -0.018268220126628876,
- -0.049833718687295914,
- 0.01481412909924984,
- -0.02784588374197483,
- -0.013765468262135983,
- 0.09956996887922287,
- 0.017855336889624596,
- 0.03157841041684151,
- 0.0010609738528728485,
- 0.05580959841609001,
- -0.040375981479883194,
- 0.017835384234786034,
- 0.19867035746574402,
- 0.018432103097438812,
- 0.02315041981637478,
- 0.016398532316088676,
- -0.04646673798561096,
- -0.05605083703994751,
- -0.055843815207481384,
- -0.023500289767980576,
- -0.005371399689465761,
- -0.009939949959516525,
- -0.015250373631715775,
- -0.009698247537016869,
- -0.08408830314874649,
- 0.024807270616292953,
- 0.023627426475286484,
- -0.062459323555231094,
- -0.014029393903911114,
- -0.011126631870865822,
- 0.009213265962898731,
- -0.05168871954083443,
- 0.008909930475056171,
- 0.01751341111958027,
- 0.000035109889722662047,
- -0.014569496735930443,
- 0.08880951255559921,
- 0.011721503920853138,
- -0.09685445576906204,
- -0.10833442211151123,
- -2.3613157868585334e-33,
- 0.11758870631456375,
- 0.06764384359121323,
- 0.021090954542160034,
- 0.059778742492198944,
- 0.02521728165447712,
- -0.007201846688985825,
- -0.006365288980305195,
- -0.04814929515123367,
- -0.03282637149095535,
- -0.07059955596923828,
- -0.08640129119157791,
- 0.04825812205672264,
- -0.10070722550153732,
- 0.06288337707519531,
- 0.053513720631599426,
- -0.009232866577804089,
- 0.06562984734773636,
- 0.055549826472997665,
- -0.06664656847715378,
- -0.028116781264543533,
- -0.0178104005753994,
- 0.03977257385849953,
- -0.008873592130839825,
- -0.06406205892562866,
- -0.004417476709932089,
- -0.047443147748708725,
- -0.056079428642988205,
- -0.0700153186917305,
- -0.006061425432562828,
- 0.034288354218006134,
- 0.005587212275713682,
- 0.04318090155720711,
- 0.015506069175899029,
- -0.0011374352034181356,
- 0.02080572210252285,
- -0.028954260051250458,
- 0.049183398485183716,
- -0.07690294831991196,
- -0.09733353555202484,
- 0.014295950531959534,
- 0.04655607417225838,
- 0.014208631590008736,
- -0.06050414964556694,
- 0.06804897636175156,
- 0.10212601721286774,
- 0.04839867353439331,
- -0.010757564567029476,
- 0.06387984752655029,
- -0.05243717133998871,
- 0.041348543018102646,
- 0.0024745750706642866,
- 0.008915765210986137,
- -0.0598919503390789,
- -0.012643793597817421,
- 0.02385857328772545,
- -0.02397426776587963,
- -0.036269448697566986,
- -0.05091939494013786,
- -0.04885958880186081,
- 0.012854047119617462,
- 0.035401470959186554,
- 0.11827032268047333,
- 0.006809490732848644,
- -0.005509908776730299,
- -0.053766097873449326,
- -0.0435037761926651,
- -0.014272368513047695,
- -0.0007764259353280067,
- 0.012822824530303478,
- 0.08325080573558807,
- -0.02796090580523014,
- -0.008676458150148392,
- -0.01499126572161913,
- 0.06460157781839371,
- -0.07984235882759094,
- -0.004008312243968248,
- -0.030957048758864403,
- -0.056809064000844955,
- -0.04966112971305847,
- 0.027783488854765892,
- -0.008587784133851528,
- 0.009902612306177616,
- -0.07590844482183456,
- -0.09065825492143631,
- -0.005522789899259806,
- 0.006231687031686306,
- 0.0948699563741684,
- -0.04804558679461479,
- 0.005595433060079813,
- -0.028918400406837463,
- -0.08119132369756699,
- 0.04170507937669754,
- -0.017310161143541336,
- -0.055703070014715195,
- -0.09288495779037476,
- 2.7366222967302962e-33,
- -0.07279098778963089,
- -0.042566895484924316,
- -0.09847478568553925,
- 0.1080186665058136,
- -0.032701488584280014,
- -0.01157623715698719,
- 0.056678518652915955,
- 0.03614811599254608,
- -0.008054555393755436,
- 0.012503504753112793,
- -0.08034957200288773,
- 0.00010391248360974714,
- 0.12012936174869537,
- -0.09996219724416733,
- 0.07777488976716995,
- -0.061986058950424194,
- 0.09060648083686829,
- 0.010385067202150822,
- 0.05067708343267441,
- 0.028991693630814552,
- -0.019757473841309547,
- 0.07218939810991287,
- -0.06529051065444946,
- -0.009962296113371849,
- -0.013935612514615059,
- 0.14506009221076965,
- -0.052418630570173264,
- 0.07732914388179779,
- -0.03910544887185097,
- -0.020385636016726494,
- -0.02614581771194935,
- -0.07405990362167358,
- 0.05623273178935051,
- -0.06912235170602798,
- 0.0399608239531517,
- 0.09540794044733047,
- 0.009591986425220966,
- -0.035962216556072235,
- -0.01956307701766491,
- -0.022454995661973953,
- -0.023864243179559708,
- -0.07325112819671631,
- 0.04052066430449486,
- 0.11468282341957092,
- -0.01818116568028927,
- -0.03679098188877106,
- -0.025257408618927002,
- 0.07791516929864883,
- 0.12437190115451813,
- -0.036247313022613525,
- -0.027427684515714645,
- -0.00035867549013346434,
- -0.012375183403491974,
- -0.05572409927845001,
- 0.01864461414515972,
- -0.035908788442611694,
- -0.09448692202568054,
- -0.018200915306806564,
- 0.0025698209647089243,
- 0.03360379487276077,
- 0.0031563974916934967,
- 0.009032076224684715,
- -0.0027813580818474293,
- 0.02829451486468315,
- -0.03728156164288521,
- 0.021314475685358047,
- -0.005191392730921507,
- -0.12944535911083221,
- 0.010616078972816467,
- -0.017046138644218445,
- 0.050531815737485886,
- 0.03266594931483269,
- -0.03556036576628685,
- -0.025393227115273476,
- -0.0464862659573555,
- -0.05947933718562126,
- -0.06060511991381645,
- 0.04539935290813446,
- -0.058162871748209,
- 0.012102043256163597,
- -0.0316632017493248,
- -0.024516595527529716,
- 0.03062642551958561,
- 0.10200710594654083,
- -0.01591453142464161,
- -0.019625093787908554,
- -0.016206424683332443,
- 0.0014994062948971987,
- 0.016188323497772217,
- 0.03595616668462753,
- 0.0009945371421054006,
- 0.0661194697022438,
- 0.019322656095027924,
- 0.08882039040327072,
- 0.061284638941287994,
- -1.250200831748316e-8,
- 0.02255180850625038,
- 0.008817172609269619,
- 0.04278263449668884,
- -0.020144319161772728,
- -0.043169066309928894,
- -0.023146910592913628,
- 0.031219495460391045,
- -0.05054556578397751,
- -0.038940608501434326,
- -0.02250148169696331,
- -0.011642742902040482,
- 0.05489001050591469,
- 0.057395681738853455,
- 0.06100298836827278,
- 0.12980911135673523,
- -0.04384994134306908,
- -0.007692364044487476,
- 0.04069000110030174,
- -0.03157322108745575,
- -0.006360175088047981,
- -0.023418491706252098,
- 0.014041137881577015,
- -0.020496109500527382,
- 0.012833327054977417,
- -0.05920509248971939,
- -0.02942023053765297,
- 0.02213958278298378,
- 0.03547492250800133,
- -0.0030464318115264177,
- 0.07177891582250595,
- 0.030726904049515724,
- 0.06221684813499451,
- 0.029557788744568825,
- -0.00012019510904792696,
- -0.014071619138121605,
- 0.0320117212831974,
- -0.05591738224029541,
- 0.01150760892778635,
- -0.003243787679821253,
- 0.039977528154850006,
- 0.11453569680452347,
- -0.06456062942743301,
- 0.04645597189664841,
- 0.018591871485114098,
- 0.040897056460380554,
- -0.030617661774158478,
- 0.0817556381225586,
- 0.011082823388278484,
- -0.02180742844939232,
- 0.005828736815601587,
- 0.08133379369974136,
- 0.0020354350563138723,
- 0.01353487093001604,
- 0.09677697718143463,
- -0.0018014255911111832,
- -0.03995366767048836,
- 0.05199536681175232,
- 0.04792509600520134,
- -0.019812529906630516,
- 0.08884298801422119,
- 0.04662543535232544,
- 0.007651457097381353,
- 0.1162262037396431,
- -0.03943851217627525
- ]
- },
- {
- "keyword": "alters",
- "type": "transforms",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07994396239519119,
- 0.060904309153556824,
- 0.04983871057629585,
- 0.04116600379347801,
- -0.013754057697951794,
- -0.00830752495676279,
- 0.08377987146377563,
- -0.010804531164467335,
- 0.017255520448088646,
- 0.020160414278507233,
- -0.004281462635844946,
- -0.07789848744869232,
- -0.00887736864387989,
- -0.04018586501479149,
- 0.00468571437522769,
- -0.0029979583341628313,
- -0.02404608204960823,
- 0.1387827843427658,
- -0.06571606546640396,
- 0.018814479932188988,
- -0.07714333385229111,
- -0.00578216603025794,
- -0.03670497611165047,
- 0.0276320967823267,
- 0.020600758492946625,
- -0.01710963435471058,
- -0.037958212196826935,
- 0.036622896790504456,
- 0.006029821000993252,
- -0.15377919375896454,
- -0.013583407737314701,
- 0.061739057302474976,
- 0.05194714292883873,
- 0.018209872767329216,
- -0.055207084864377975,
- -0.009360112249851227,
- 0.059912264347076416,
- 0.09426304697990417,
- 0.03991272300481796,
- -0.009827583096921444,
- -0.03564309701323509,
- -0.06198224797844887,
- -0.0029201980214565992,
- 0.014776339754462242,
- -0.04067406430840492,
- -0.0021188990212976933,
- 0.006600143853574991,
- -0.03740382194519043,
- 0.0038600920233875513,
- 0.023581648245453835,
- 0.012099480256438255,
- -0.026484927162528038,
- -0.0533868744969368,
- 0.05705050751566887,
- -0.010494143702089787,
- 0.039505235850811005,
- 0.023601271212100983,
- 0.04963307082653046,
- 0.0758863240480423,
- -0.07099475711584091,
- 0.08838220685720444,
- -0.012789259664714336,
- -0.0010553563479334116,
- 0.06152674928307533,
- -0.05150366574525833,
- 0.02644708938896656,
- 0.007588163483887911,
- 0.05412342771887779,
- -0.03705323487520218,
- -0.02387346886098385,
- 0.014219297096133232,
- 0.04113844409584999,
- 0.001567332772538066,
- 0.02073693461716175,
- -0.005989606957882643,
- -0.023770514875650406,
- -0.030451733618974686,
- 6.837718160568329e-7,
- 0.057497553527355194,
- -0.047493163496255875,
- -0.023826273158192635,
- 0.008919482119381428,
- -0.02465367130935192,
- -0.02352515049278736,
- 0.07573501765727997,
- -0.006374516990035772,
- -0.058657124638557434,
- -0.02869042381644249,
- 0.025744590908288956,
- 0.03887440264225006,
- -0.01489115972071886,
- -0.022615166381001472,
- 0.108744777739048,
- -0.02450127713382244,
- -0.046942394226789474,
- 0.003422483569011092,
- -0.009988783858716488,
- -0.028540806844830513,
- 0.027918638661503792,
- 0.19823500514030457,
- -0.025838205590844154,
- 0.052299614995718,
- -0.013470307923853397,
- 0.01218984741717577,
- -0.04752415418624878,
- -0.054932549595832825,
- -0.11594564467668533,
- 0.01871419884264469,
- -0.03143477812409401,
- -0.0018873681547120214,
- 0.05089201778173447,
- -0.03175982087850571,
- -0.02705083228647709,
- -0.07748226821422577,
- 0.019862933084368706,
- -0.02659030072391033,
- 0.04582691937685013,
- -0.025655951350927353,
- -0.037161558866500854,
- 0.04101671651005745,
- 0.05640606954693794,
- 0.018719661980867386,
- -0.021530812606215477,
- 0.060068145394325256,
- -0.06581085175275803,
- 0.04892146959900856,
- -0.07861607521772385,
- -3.531893632558507e-33,
- 0.01446006540209055,
- 0.008503341116011143,
- 0.026327362284064293,
- 0.0036101716104894876,
- 0.041651129722595215,
- -0.010743638500571251,
- 0.004028862342238426,
- -0.012803781777620316,
- -0.06492078304290771,
- -0.033867646008729935,
- -0.04857140779495239,
- 0.08542469143867493,
- 0.004817025735974312,
- 0.026284534484148026,
- 0.11552376300096512,
- -0.026769641786813736,
- 0.08049602806568146,
- -0.037406984716653824,
- -0.003724718000739813,
- -0.070826455950737,
- -0.08238129317760468,
- 0.0666225329041481,
- -0.04251541569828987,
- 0.007948284037411213,
- -0.07087336480617523,
- -0.01164990197867155,
- -0.03680849447846413,
- -0.0022946419194340706,
- 0.08411414176225662,
- 0.004546920768916607,
- -0.014308959245681763,
- 0.013073195703327656,
- -0.0010387266520410776,
- 0.053158365190029144,
- -0.0451798215508461,
- 0.014241969212889671,
- 0.04825432971119881,
- -0.051300641149282455,
- 0.0014417306520044804,
- -0.061669204384088516,
- -0.015609676018357277,
- 0.0343814417719841,
- -0.0659787580370903,
- -0.019427930936217308,
- 0.07454115152359009,
- 0.06942420452833176,
- 0.06334442645311356,
- 0.033503614366054535,
- -0.02630051225423813,
- 0.01522124744951725,
- 0.01148518268018961,
- 0.011242502368986607,
- 0.008584029041230679,
- 0.03259764984250069,
- 0.007961842231452465,
- -0.0026230765506625175,
- 0.000058243200328433886,
- -0.061007309705019,
- 0.01698015257716179,
- 0.043146178126335144,
- 0.06755227595567703,
- 0.03521383926272392,
- 0.027444396167993546,
- -0.01960919424891472,
- -0.015356926247477531,
- -0.030250927433371544,
- 0.10206186026334763,
- -0.025506241247057915,
- -0.002278001280501485,
- -0.019417965784668922,
- -0.16988608241081238,
- 0.008442390710115433,
- 0.02801404520869255,
- 0.10878033936023712,
- -0.017244882881641388,
- -0.04956146329641342,
- -0.001724286819808185,
- 0.08422072976827621,
- -0.038045331835746765,
- -0.013469366356730461,
- -0.009140126407146454,
- 0.06339885294437408,
- -0.00933882687240839,
- 0.03738248720765114,
- 0.05861888453364372,
- -0.11003656685352325,
- 0.006461687386035919,
- -0.0230863057076931,
- 0.033003661781549454,
- -0.017868904396891594,
- -0.050088487565517426,
- -0.046349138021469116,
- 0.011754569597542286,
- 0.01842641271650791,
- -0.039090026170015335,
- 2.7150446285530146e-33,
- -0.1217803880572319,
- -0.05105968937277794,
- -0.07937847822904587,
- 0.13736625015735626,
- -0.006219798233360052,
- -0.026655180379748344,
- 0.04177172854542732,
- 0.0320889875292778,
- 0.04928814619779587,
- -0.05059817060828209,
- 0.01833050139248371,
- -0.03870701789855957,
- 0.008651183918118477,
- -0.0005975465173833072,
- 0.0019663686398416758,
- -0.035475876182317734,
- 0.009764322079718113,
- 0.005168907810002565,
- -0.03053310513496399,
- -0.005841216072440147,
- -0.021341608837246895,
- 0.12290317565202713,
- 0.033162351697683334,
- -0.0515928715467453,
- 0.001652930281125009,
- 0.04952969774603844,
- -0.008971942588686943,
- 0.08081434667110443,
- -0.06136520579457283,
- -0.01021612249314785,
- -0.029937773942947388,
- -0.01930643618106842,
- -0.0677681490778923,
- 0.05367568880319595,
- 0.03232523053884506,
- 0.024624546989798546,
- 0.018892547115683556,
- 0.03501821681857109,
- -0.04813782870769501,
- -0.007117005065083504,
- 0.04655866324901581,
- 0.009428925812244415,
- 0.04466518014669418,
- 0.13464881479740143,
- 0.016354084014892578,
- -0.0004849820106755942,
- -0.07676129043102264,
- 0.02661239542067051,
- 0.05102589726448059,
- -0.07281406223773956,
- -0.05348532274365425,
- -0.05132343992590904,
- -0.03005918860435486,
- 0.023703012615442276,
- 0.04648265615105629,
- -0.08561902493238449,
- 0.03142368420958519,
- -0.04199802875518799,
- 0.024886567145586014,
- 0.007669143378734589,
- -0.02613375522196293,
- 0.04237637296319008,
- -0.070901058614254,
- 0.0005571297951973975,
- 0.02491866610944271,
- -0.005556759890168905,
- -0.06527180969715118,
- -0.04282330721616745,
- 0.011666808277368546,
- -0.015564952977001667,
- 0.1132400780916214,
- -0.05605757236480713,
- -0.062264274805784225,
- -0.06596637517213821,
- -0.032326363027095795,
- -0.13969337940216064,
- -0.07761543989181519,
- -0.004680270794779062,
- -0.04987380653619766,
- -0.08623655140399933,
- -0.060929011553525925,
- -0.10207397490739822,
- 0.028739724308252335,
- 0.01454780250787735,
- -0.0478416383266449,
- -0.027847906574606895,
- 0.023384081199765205,
- 0.15726932883262634,
- 0.010855667293071747,
- 0.007204039953649044,
- -0.033588867634534836,
- 0.00408338475972414,
- 0.09041494131088257,
- 0.06195937469601631,
- -0.046078506857156754,
- -1.3631348494413942e-8,
- -0.022272875532507896,
- 0.060447730123996735,
- -0.013765443116426468,
- 0.03597269579768181,
- 0.035508181899785995,
- 0.024904150515794754,
- -0.03900725767016411,
- 0.0769490897655487,
- 0.02363855019211769,
- -0.007281909696757793,
- 0.1015874594449997,
- 0.036343175917863846,
- 0.1061289831995964,
- 0.039854228496551514,
- 0.09397619962692261,
- -0.04177948832511902,
- -0.008530257269740105,
- 0.012375508435070515,
- -0.0282694511115551,
- -0.025198720395565033,
- -0.06278499215841293,
- 0.06881234049797058,
- 0.010779567062854767,
- -0.03741537779569626,
- 0.06854673475027084,
- -0.05774998292326927,
- 0.0006301444373093545,
- -0.011756900697946548,
- 0.004834257997572422,
- 0.073365218937397,
- 0.05135379731655121,
- 0.01779457926750183,
- 0.03309815749526024,
- 0.07659874111413956,
- 0.0026031124871224165,
- -0.044579360634088516,
- -0.06812319904565811,
- -0.03261030092835426,
- -0.012124678120017052,
- 0.02993752807378769,
- -0.029164394363760948,
- -0.05335486680269241,
- -0.0307187307626009,
- -0.01124743465334177,
- -0.14157849550247192,
- -0.07358686625957489,
- 0.08955372869968414,
- -0.041644249111413956,
- -0.04578974470496178,
- -0.06252332776784897,
- 0.04581698402762413,
- 0.03389153257012367,
- 0.013580168597400188,
- 0.04367118701338768,
- 0.08365282416343689,
- 0.045385584235191345,
- 0.07282793521881104,
- 0.06089027598500252,
- -0.018589507788419724,
- 0.08694282919168472,
- 0.05088428035378456,
- -0.055648621171712875,
- 0.04345610365271568,
- -0.03108387067914009
- ]
- },
- {
- "keyword": "transformation",
- "type": "transforms",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.014312803745269775,
- 0.12957020103931427,
- -0.022815637290477753,
- 0.015144498087465763,
- -0.04243742674589157,
- -0.02159682847559452,
- 0.0494074672460556,
- -0.05648845434188843,
- 0.06573963910341263,
- -0.04084453359246254,
- 0.10278210788965225,
- -0.02160927839577198,
- -0.016064131632447243,
- 0.04006382077932358,
- 0.0033569210208952427,
- -0.02760878950357437,
- -0.11138472706079483,
- 0.07754501700401306,
- -0.09496007114648819,
- -0.02928203158080578,
- -0.0003789295151364058,
- -0.012136566452682018,
- -0.06898189336061478,
- 0.01868608593940735,
- 0.05190349370241165,
- 0.0545850470662117,
- 0.0049286591820418835,
- -0.0028959414921700954,
- 0.01067590806633234,
- -0.11979682743549347,
- -0.0270212572067976,
- 0.03753737732768059,
- -0.06829574704170227,
- -0.06578842550516129,
- -0.04179101809859276,
- 0.012800714001059532,
- 0.03885776922106743,
- -0.045057009905576706,
- 0.0510786809027195,
- -0.052816636860370636,
- -0.009857462719082832,
- -0.0646020919084549,
- -0.0066884178668260574,
- -0.07096946239471436,
- 0.004333700053393841,
- 0.05654791370034218,
- 0.02958630956709385,
- 0.05475548282265663,
- 0.04314866662025452,
- 0.01629525050520897,
- -0.04316772148013115,
- -0.00019345397595316172,
- -0.08180109411478043,
- 0.06454356014728546,
- 0.02937532588839531,
- 0.05256114527583122,
- 0.01686111092567444,
- 0.00848440919071436,
- 0.0498436875641346,
- -0.05098232999444008,
- 0.012636716477572918,
- 0.048312958329916,
- 0.005428705830127001,
- 0.062353216111660004,
- 0.009412619285285473,
- -0.08613640815019608,
- 0.023011792451143265,
- -0.0819699615240097,
- -0.059380847960710526,
- 0.006004973314702511,
- -0.07649760693311691,
- 0.019133808091282845,
- 0.022679388523101807,
- -0.030924974009394646,
- 0.09731021523475647,
- -0.08324193209409714,
- -0.0006271387683227658,
- -0.011002392508089542,
- 0.1341949999332428,
- 0.0063650342635810375,
- 0.10456271469593048,
- 0.044804271310567856,
- -0.035888671875,
- 0.06091707944869995,
- -0.019743425771594048,
- -0.00551584642380476,
- -0.06680620461702347,
- 0.03965425491333008,
- -0.027104662731289864,
- 0.03965940326452255,
- -0.007612914778292179,
- -0.004123416729271412,
- 0.052023373544216156,
- -0.0039774882607162,
- -0.018831847235560417,
- -0.05631963908672333,
- -0.04363939166069031,
- -0.0289452001452446,
- 0.10664401948451996,
- 0.23421123623847961,
- -0.030898699536919594,
- 0.009118855930864811,
- -0.002739805495366454,
- -0.09255843609571457,
- -0.04362587630748749,
- 0.0002424301637802273,
- -0.0032118100207298994,
- 0.021162688732147217,
- -0.01749367266893387,
- 0.014653152786195278,
- 0.0003986898809671402,
- -0.027553584426641464,
- -0.0030365046113729477,
- -0.016240686178207397,
- 0.07124040275812149,
- -0.032791148871183395,
- -0.0327799953520298,
- 0.0013580960221588612,
- -0.10303846001625061,
- -0.02485979162156582,
- 0.035740435123443604,
- 0.049195460975170135,
- -0.05433833599090576,
- 0.10613569617271423,
- -0.06877779960632324,
- -0.0030790113378316164,
- 0.00989234633743763,
- -4.776989003892982e-33,
- -0.043474677950143814,
- 0.05639833211898804,
- 0.022199779748916626,
- 0.05309312790632248,
- -0.01285406295210123,
- 0.031753405928611755,
- 0.014050115831196308,
- -0.007132273633033037,
- -0.029195740818977356,
- -0.022611068561673164,
- -0.052079860121011734,
- 0.05461164563894272,
- -0.02276364341378212,
- -0.018206864595413208,
- -0.02315092645585537,
- -0.01930578052997589,
- 0.08117582648992538,
- 0.06967966258525848,
- 0.009805439971387386,
- -0.030916644260287285,
- -0.021967250853776932,
- 0.07883606851100922,
- -0.033304695039987564,
- 0.005540410988032818,
- 0.026243116706609726,
- -0.02201363444328308,
- -0.06859582662582397,
- -0.06834343075752258,
- -0.03368770703673363,
- -0.03352208435535431,
- -0.068695068359375,
- 0.02878531999886036,
- -0.09432489424943924,
- -0.07717306166887283,
- 0.005252264440059662,
- -0.023393603041768074,
- 0.07647781819105148,
- -0.05987027660012245,
- 0.019107630476355553,
- 0.005222472362220287,
- 0.011931674554944038,
- -0.043243393301963806,
- -0.0626789778470993,
- -0.008416198194026947,
- 0.08587625622749329,
- 0.06745238602161407,
- 0.10207583755254745,
- 0.06552734971046448,
- 0.02862238697707653,
- -0.0058372472412884235,
- -0.026057954877614975,
- 0.023552270606160164,
- -0.06641236692667007,
- -0.03134315088391304,
- 0.05005517229437828,
- 0.039130695164203644,
- 0.0676441490650177,
- 0.02748493105173111,
- -0.016303403303027153,
- 0.004726059269160032,
- 0.0007686756434850395,
- -0.012541835196316242,
- 0.008360384032130241,
- 0.007788123097270727,
- 0.03524245321750641,
- -0.08249542862176895,
- 0.009998532012104988,
- -0.09323862940073013,
- -0.021571224555373192,
- 0.035725608468055725,
- -0.06530298292636871,
- -0.019562197849154472,
- 0.032747793942689896,
- 0.09333669394254684,
- -0.035773955285549164,
- -0.013346261344850063,
- -0.052542347460985184,
- 0.02402375265955925,
- -0.040406450629234314,
- -0.03281467780470848,
- -0.15665553510189056,
- 0.10930009931325912,
- 0.033262185752391815,
- -0.05428069829940796,
- 0.05885785073041916,
- 0.01241224817931652,
- 0.005501003935933113,
- -0.07357724010944366,
- 0.03214802220463753,
- 0.09810546785593033,
- -0.06849052011966705,
- -0.0014844194520264864,
- -0.05748922750353813,
- 0.004854361992329359,
- 0.048317257314920425,
- 2.9613215316388305e-33,
- -0.08783919364213943,
- -0.006198883056640625,
- -0.0048111905343830585,
- 0.04115486145019531,
- -0.03182101622223854,
- -0.03534940630197525,
- 0.031309761106967926,
- -0.030434373766183853,
- -0.005193332210183144,
- 0.05714045464992523,
- 0.007102981209754944,
- -0.08015888184309006,
- -0.038766372948884964,
- -0.056619368493556976,
- 0.033653367310762405,
- -0.013841941021382809,
- 0.059486959129571915,
- -0.025279128924012184,
- -0.11370103806257248,
- -0.014293450862169266,
- 0.007216759026050568,
- 0.10638498514890671,
- -0.013650227338075638,
- 0.0317690372467041,
- -0.07843150943517685,
- 0.05099163204431534,
- 0.010997801087796688,
- 0.06721184402704239,
- 0.09265317767858505,
- 0.008705458603799343,
- -0.024776624515652657,
- -0.0736716240644455,
- 0.018916219472885132,
- 0.050227511674165726,
- -0.03318800777196884,
- 0.05356486141681671,
- -0.011340025812387466,
- -0.013353793881833553,
- 0.00598369212821126,
- 0.014320622198283672,
- -0.0012261354131624103,
- 0.01237532775849104,
- 0.037946686148643494,
- 0.0636310875415802,
- 0.024220719933509827,
- -0.012323442846536636,
- 0.09086579829454422,
- 0.018442140892148018,
- 0.030983811244368553,
- 0.020382406190037727,
- -0.017949484288692474,
- -0.007830711081624031,
- -0.01070968247950077,
- -0.06999336928129196,
- -0.0007188562885858119,
- 0.028375238180160522,
- -0.014409735798835754,
- -0.12188016623258591,
- 0.015411514788866043,
- -0.03752771392464638,
- -0.02304546907544136,
- 0.012874199077486992,
- 0.05071362107992172,
- -0.06679091602563858,
- -0.01138257421553135,
- 0.016926296055316925,
- 0.033958010375499725,
- -0.029384195804595947,
- 0.045662328600883484,
- 0.03287532925605774,
- 0.11662512272596359,
- 0.02772293984889984,
- -0.007803263142704964,
- -0.05624176561832428,
- -0.02419540099799633,
- -0.10329274833202362,
- -0.03180040419101715,
- 0.02852322719991207,
- 0.007421788759529591,
- -0.008411376737058163,
- -0.03232397511601448,
- -0.05550030246376991,
- 0.05295916646718979,
- -0.02163742668926716,
- -0.08398208022117615,
- -0.003103865310549736,
- 0.06422503292560577,
- -0.015437145717442036,
- 0.04573114216327667,
- 0.01523863710463047,
- -0.01580723747611046,
- 0.09339570999145508,
- -0.058622006326913834,
- -0.06388374418020248,
- 0.06605640053749084,
- -1.1822283596529815e-8,
- -0.058477673679590225,
- -0.008307944983243942,
- -0.020488401874899864,
- 0.01723349280655384,
- -0.010093091055750847,
- 0.011748929508030415,
- 0.021088019013404846,
- 0.044727493077516556,
- -0.018920892849564552,
- 0.051231078803539276,
- -0.07410109043121338,
- -0.01698918826878071,
- 0.10351778566837311,
- 0.022765737026929855,
- 0.012039346620440483,
- 0.02584139071404934,
- 0.019693994894623756,
- -0.032443854957818985,
- -0.02157859317958355,
- -0.04088754951953888,
- -0.0524890311062336,
- 0.024010632187128067,
- -0.08074454218149185,
- 0.04450058192014694,
- 0.007782348431646824,
- -0.04340243339538574,
- -0.10754460841417313,
- -0.01388625055551529,
- 0.0345657542347908,
- 0.055120762437582016,
- 0.024040963500738144,
- 0.06046059727668762,
- -0.003329712664708495,
- 0.03282330557703972,
- 0.0020969058386981487,
- -0.13562552630901337,
- 0.04171091690659523,
- 0.03365916758775711,
- 0.009426768869161606,
- 0.01883872039616108,
- 0.0033569014631211758,
- 0.05663100630044937,
- 0.01894434168934822,
- 0.06372246146202087,
- -0.11334922909736633,
- -0.010260860435664654,
- 0.04840836673974991,
- -0.017742590978741646,
- -0.0434580072760582,
- -0.02611294761300087,
- 0.11680775880813599,
- 0.020765358582139015,
- 0.037113167345523834,
- 0.01078625675290823,
- -0.007757553365081549,
- 0.016762306913733482,
- 0.0860680490732193,
- 0.026546502485871315,
- -0.020712347701191902,
- 0.09228833764791489,
- 0.009509456343948841,
- 0.05217082053422928,
- 0.030176257714629173,
- -0.01862168312072754
- ]
- },
- {
- "keyword": "conversion",
- "type": "transforms",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.062212128192186356,
- 0.1094847321510315,
- -0.06831702589988708,
- 0.002691098488867283,
- -0.02958833798766136,
- -0.025853624567389488,
- 0.020036978647112846,
- 0.046574149280786514,
- 0.0077434019185602665,
- -0.03582447022199631,
- 0.017190029844641685,
- -0.10776519775390625,
- 0.006277085281908512,
- -0.043811578303575516,
- -0.055638983845710754,
- -0.0643065869808197,
- -0.03897742182016373,
- 0.12979796528816223,
- -0.1223759725689888,
- 0.016583912074565887,
- 0.026616623625159264,
- -0.007182748056948185,
- -0.07058227062225342,
- 0.02855083905160427,
- 0.039207011461257935,
- 0.0016228776657953858,
- -0.07181190699338913,
- 0.01001163199543953,
- 0.03729000315070152,
- -0.07588192075490952,
- -0.04818779602646828,
- 0.022968634963035583,
- 0.04878111928701401,
- -0.02579113282263279,
- 0.007289987523108721,
- -0.07411672174930573,
- 0.033543746918439865,
- -0.00825649593025446,
- 0.015808597207069397,
- 0.016000790521502495,
- 0.011594205163419247,
- -0.084449402987957,
- 0.0014094854705035686,
- 0.004507734440267086,
- 0.019917089492082596,
- -0.020303141325712204,
- -0.02727563865482807,
- 0.10296683013439178,
- 0.03515515848994255,
- 0.05517515912652016,
- -0.01534856203943491,
- 0.06121540814638138,
- -0.14996184408664703,
- 0.06165830045938492,
- -0.0036091783549636602,
- 0.05279068648815155,
- -0.017763787880539894,
- 0.043339479714632034,
- -0.04985747113823891,
- -0.025199400261044502,
- -0.12179134041070938,
- 0.0521017462015152,
- -0.029182324185967445,
- 0.017724275588989258,
- 0.03886703774333,
- -0.09412338584661484,
- -0.005376262590289116,
- -0.06370340287685394,
- -0.0462302565574646,
- -0.0671461820602417,
- -0.08624584227800369,
- -0.015856187790632248,
- -0.010205106809735298,
- 0.014340476132929325,
- 0.051888272166252136,
- -0.08432158827781677,
- -0.027013279497623444,
- 0.015541499480605125,
- 0.07487325370311737,
- 0.047609616070985794,
- 0.04270027205348015,
- 0.016409369185566902,
- -0.0504872128367424,
- 0.0016286453464999795,
- 0.03955019265413284,
- -0.02201499417424202,
- 0.016457034274935722,
- 0.08816865086555481,
- 0.030421562492847443,
- 0.007428716402500868,
- -0.05368475988507271,
- -0.017713239416480064,
- 0.07194080948829651,
- 0.0147444112226367,
- -0.013931195251643658,
- 0.008567185141146183,
- 0.014252490364015102,
- -0.0051750242710113525,
- 0.11823615431785583,
- 0.23266153037548065,
- -0.00746982591226697,
- 0.04955365136265755,
- -0.02582584321498871,
- -0.14734850823879242,
- -0.09797824174165726,
- -0.04984559863805771,
- -0.010715996846556664,
- 0.11175944656133652,
- 0.027787189930677414,
- -0.0242723748087883,
- 0.0026207587216049433,
- -0.000018693579477258027,
- -0.021203476935625076,
- -0.020734678953886032,
- 0.06493355333805084,
- 0.05182560160756111,
- -0.04409470409154892,
- -0.03440200909972191,
- 0.02067749574780464,
- 0.031619489192962646,
- -0.02594703435897827,
- 0.0447721891105175,
- -0.024471815675497055,
- 0.07795283943414688,
- -0.0721236914396286,
- -0.04421291500329971,
- 0.04897847771644592,
- -4.586296636882744e-33,
- -0.12856940925121307,
- -0.015296208672225475,
- 0.05490570142865181,
- 0.05235033109784126,
- -0.09990706294775009,
- 0.03638569638133049,
- -0.0608753077685833,
- 0.003422279842197895,
- -0.0036857733502984047,
- 0.0413363054394722,
- 0.007732689846307039,
- 0.003275828203186393,
- 0.008560208603739738,
- 0.05474160984158516,
- 0.06178571656346321,
- -0.04477692395448685,
- 0.03873003274202347,
- 0.043367329984903336,
- -0.001973263453692198,
- 0.03708648681640625,
- -0.0071009686216712,
- 0.0760977566242218,
- -0.04744541272521019,
- 0.07858549803495407,
- -0.019316120073199272,
- 0.06437932699918747,
- -0.030544547364115715,
- -0.015571573749184608,
- 0.030474849045276642,
- -0.010828398168087006,
- -0.03679530322551727,
- -0.034979499876499176,
- -0.04592965543270111,
- -0.044456690549850464,
- -0.02184290997684002,
- 0.017039036378264427,
- 0.08768364042043686,
- -0.07457872480154037,
- 0.04135075956583023,
- -0.02445562183856964,
- -0.043677233159542084,
- 0.024056915193796158,
- 0.02620890364050865,
- 0.009142884984612465,
- 0.04086678847670555,
- 0.08408326655626297,
- 0.047273024916648865,
- -0.02233479917049408,
- 0.06325767189264297,
- 0.0130995474755764,
- -0.026639554649591446,
- 0.018786920234560966,
- 0.007855133153498173,
- 0.02261669933795929,
- -0.016322338953614235,
- -0.04554049298167229,
- 0.04534721374511719,
- -0.01780960150063038,
- -0.008928226307034492,
- 0.007313326001167297,
- 0.039149779826402664,
- 0.031111646443605423,
- 0.03432570770382881,
- -0.001453103730455041,
- -0.042686089873313904,
- -0.05912351980805397,
- 0.008865000680088997,
- -0.09683534502983093,
- -0.04558658227324486,
- -0.01964898407459259,
- -0.10443048924207687,
- -0.07072866708040237,
- 0.009568204171955585,
- 0.03163206949830055,
- 0.014534489251673222,
- -0.05196472629904747,
- 0.029105141758918762,
- 0.02610800974071026,
- 0.06485557556152344,
- -0.06214868277311325,
- -0.09098206460475922,
- 0.09853581339120865,
- 0.004057159181684256,
- -0.07560897618532181,
- 0.06591076403856277,
- -0.01921391300857067,
- -0.017929522320628166,
- -0.10526451468467712,
- 0.012197336181998253,
- 0.0189738217741251,
- 0.042463622987270355,
- -0.05168309435248375,
- -0.025048375129699707,
- 0.011292277835309505,
- -0.025818563997745514,
- 3.185290307010924e-33,
- -0.07387099415063858,
- 0.08423639088869095,
- -0.03260033205151558,
- 0.04535330832004547,
- -0.015244811773300171,
- -0.015938537195324898,
- 0.045090191066265106,
- -0.047338489443063736,
- 0.05629705265164375,
- 0.008912954479455948,
- -0.03703445941209793,
- -0.013742680661380291,
- 0.09801429510116577,
- -0.014382848516106606,
- -0.013164663687348366,
- -0.05257631838321686,
- 0.08590542525053024,
- 0.002589375013485551,
- -0.05374153330922127,
- 0.01515908446162939,
- -0.00849087629467249,
- 0.031026549637317657,
- 0.02686484530568123,
- -0.04985201731324196,
- -0.001913120155222714,
- 0.06114468723535538,
- 0.035590361803770065,
- 0.05572681874036789,
- 0.0618605799973011,
- 0.006859016139060259,
- -0.018058743327856064,
- -0.13424785435199738,
- -0.02473003789782524,
- -0.0015753231709823012,
- -0.13747097551822662,
- -0.021350862458348274,
- 0.09224195033311844,
- 0.015294083394110203,
- -0.0509614422917366,
- -0.02697748877108097,
- 0.00812623742967844,
- -0.009031788446009159,
- 0.03232504427433014,
- 0.07864968478679657,
- -0.06900890916585922,
- 0.055682968348264694,
- 0.06111932173371315,
- 0.03538329154253006,
- 0.11179691553115845,
- 0.0007048782426863909,
- 0.02135453373193741,
- 0.05093775689601898,
- -0.04846274107694626,
- -0.012488306500017643,
- -0.03427350893616676,
- -0.06819647550582886,
- 0.04570021480321884,
- -0.0347171276807785,
- -0.028774065896868706,
- -0.017630215734243393,
- -0.048466868698596954,
- 0.007405669428408146,
- 0.025009479373693466,
- -0.05052640661597252,
- -0.040537431836128235,
- 0.027038751170039177,
- -0.010038388893008232,
- 0.04209925979375839,
- -0.009374675340950489,
- 0.0645536333322525,
- 0.06081989035010338,
- 0.04765414819121361,
- 0.021366378292441368,
- -0.0013781024608761072,
- -0.04161281883716583,
- -0.09305741637945175,
- -0.049649082124233246,
- 0.04320260137319565,
- 0.030126556754112244,
- -0.08691670745611191,
- -0.060414139181375504,
- -0.04252626374363899,
- 0.04206617549061775,
- 0.013934729620814323,
- 0.007210346404463053,
- -0.07021162658929825,
- 0.07768893241882324,
- -0.006696990225464106,
- 0.0017533879727125168,
- 0.030939141288399696,
- -0.05134865269064903,
- 0.06824400275945663,
- -0.036587055772542953,
- -0.015699448063969612,
- 0.015128597617149353,
- -1.240936153834582e-8,
- -0.032730381935834885,
- 0.024098441004753113,
- -0.02748708799481392,
- 0.03948912397027016,
- -0.013706045225262642,
- 0.07641522586345673,
- 0.007450805976986885,
- -0.005884918849915266,
- 0.023098576813936234,
- 0.05525536090135574,
- -0.013099701143801212,
- -0.0010875611333176494,
- 0.049670759588479996,
- -0.014722911641001701,
- 0.05529053136706352,
- 0.034595787525177,
- 0.047018829733133316,
- 0.017538968473672867,
- -0.012295902706682682,
- -0.015783488750457764,
- -0.014982960186898708,
- 0.01557429600507021,
- 0.008070237934589386,
- 0.016693729907274246,
- 0.014635555446147919,
- 0.01415262557566166,
- -0.009626304730772972,
- 0.12441987544298172,
- 0.06924133002758026,
- -0.05513247102499008,
- -0.0163783710449934,
- 0.06795822083950043,
- -0.04337489604949951,
- -0.0030464348383247852,
- 0.000749426893889904,
- -0.03620484471321106,
- -0.050277940928936005,
- 0.08368317037820816,
- 0.060751304030418396,
- 0.007162486203014851,
- -0.048812080174684525,
- -0.06382013112306595,
- -0.08303555846214294,
- 0.030621130019426346,
- -0.05307357385754585,
- -0.06227122247219086,
- -0.028389930725097656,
- -0.0005975475069135427,
- 0.014357981272041798,
- -0.022355174645781517,
- 0.07632371783256531,
- 0.04471401497721672,
- 0.020298458635807037,
- -0.017806118354201317,
- 0.0376163050532341,
- -0.049070149660110474,
- -0.0019827887881547213,
- 0.016109751537442207,
- -0.03846189007163048,
- 0.11664663255214691,
- 0.06682883948087692,
- 0.023905640468001366,
- 0.04227221757173538,
- -0.016958769410848618
- ]
- },
- {
- "keyword": "metamorphosis",
- "type": "transforms",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.03388131037354469,
- 0.061222415417432785,
- -0.026154544204473495,
- -0.020697154104709625,
- 0.004572282545268536,
- -0.02600489743053913,
- 0.03941135108470917,
- 0.037793081253767014,
- -0.022499041631817818,
- 0.0088463444262743,
- 0.03980417549610138,
- -0.06709739565849304,
- -0.05397295951843262,
- 0.009783981367945671,
- -0.021471193060278893,
- 0.013361148536205292,
- -0.004888237453997135,
- 0.04203786700963974,
- -0.015812218189239502,
- -0.019718637689948082,
- 0.0027235965244472027,
- 0.01900753192603588,
- 0.0001015700472635217,
- -0.0024216927122324705,
- -0.023112155497074127,
- 0.0456426665186882,
- -0.07295848429203033,
- 0.02944498136639595,
- 0.01974097639322281,
- -0.09137990325689316,
- 0.004385783802717924,
- 0.05458411946892738,
- -0.08607835322618484,
- -0.016728272661566734,
- 0.03123299404978752,
- 0.007137503009289503,
- -0.008882940746843815,
- 0.08895472437143326,
- 0.0022769554052501917,
- -0.020854197442531586,
- -0.015843139961361885,
- 0.009977790527045727,
- -0.05226776376366615,
- -0.021158060058951378,
- -0.030494121834635735,
- -0.05127396434545517,
- -0.057963162660598755,
- -0.0009381531272083521,
- 0.030635470524430275,
- 0.05999978631734848,
- -0.14787784218788147,
- -0.1133827194571495,
- -0.07942504435777664,
- 0.14057299494743347,
- 0.028625646606087685,
- -0.008405548520386219,
- 0.040093328803777695,
- -0.07751105725765228,
- 0.04177168756723404,
- -0.07775135338306427,
- 0.021294791251420975,
- -0.013160761445760727,
- -0.05626678839325905,
- 0.012251719832420349,
- 0.08522183448076248,
- 0.01033460907638073,
- -0.03654615953564644,
- -0.0978909581899643,
- 0.0066910795867443085,
- 0.009753349237143993,
- 0.02157600410282612,
- 0.018543900921940804,
- 0.026772622019052505,
- 0.03186076879501343,
- 0.012405416928231716,
- 0.04293743148446083,
- -0.027871817350387573,
- -0.03314853459596634,
- 0.07611478865146637,
- 0.0808463767170906,
- 0.051057420670986176,
- 0.07435359805822372,
- -0.01883721724152565,
- -0.03828032314777374,
- -0.006010958459228277,
- -0.012420786544680595,
- -0.03410374000668526,
- 0.029920930042862892,
- -0.06376339495182037,
- -0.0006449269130825996,
- -0.0647369772195816,
- -0.01701466366648674,
- 0.0828259289264679,
- 0.052497658878564835,
- -0.09475001692771912,
- 0.021426750347018242,
- -0.014380824752151966,
- -0.037432122975587845,
- 0.01760759763419628,
- 0.1624937504529953,
- -0.004902961198240519,
- -0.05768396332859993,
- -0.04212459176778793,
- 0.055371057242155075,
- 0.00722512835636735,
- -0.045341797173023224,
- 0.004568474367260933,
- 0.05646839365363121,
- -0.012303780764341354,
- 0.0036697126924991608,
- -0.048890165984630585,
- -0.05329940468072891,
- 0.045834604650735855,
- 0.028604794293642044,
- -0.007946065627038479,
- 0.008835090324282646,
- -0.022524097934365273,
- -0.003883506404235959,
- 0.03603799268603325,
- 0.0663348138332367,
- 0.06924016773700714,
- 0.05433715134859085,
- -0.013448456302285194,
- 0.018167877569794655,
- 0.05401760712265968,
- -0.06089010462164879,
- -0.14792971312999725,
- 1.0437717140292556e-34,
- 0.05715615302324295,
- 0.037662677466869354,
- 0.056376587599515915,
- 0.02741791494190693,
- 0.13825926184654236,
- -0.0005152528174221516,
- 0.01845991052687168,
- 0.016539376229047775,
- -0.0184757262468338,
- -0.05670750141143799,
- -0.02009030058979988,
- 0.0024722840171307325,
- -0.0922207459807396,
- -0.03260873258113861,
- -0.019557250663638115,
- 0.022552967071533203,
- -0.009146536700427532,
- 0.015771133825182915,
- 0.016969716176390648,
- -0.028476230800151825,
- 0.028804374858736992,
- 0.0036434989888221025,
- 0.002166006015613675,
- -0.01941540092229843,
- -0.041061580181121826,
- 0.04756646603345871,
- -0.08709100633859634,
- -0.04882534593343735,
- -0.032193783670663834,
- 0.09609884023666382,
- 0.048129718750715256,
- 0.0193819347769022,
- 0.04608810693025589,
- 0.04855111986398697,
- 0.018762115389108658,
- -0.051153428852558136,
- 0.024838469922542572,
- -0.11019715666770935,
- -0.08233239501714706,
- 0.052869126200675964,
- -0.017398616299033165,
- -0.02038712613284588,
- -0.02802480012178421,
- 0.013196113519370556,
- -0.005962797440588474,
- -0.03244203329086304,
- -0.04097096994519234,
- 0.09235712885856628,
- -0.03265837952494621,
- 0.05783183127641678,
- 0.03318305313587189,
- 0.015162860043346882,
- 0.017431888729333878,
- -0.02931647188961506,
- -0.027547338977456093,
- 0.03578443080186844,
- -0.042873136699199677,
- -0.029581625014543533,
- -0.031298328191041946,
- -0.018792882561683655,
- 0.060877908021211624,
- 0.009724302217364311,
- -0.05268021672964096,
- 0.05183958262205124,
- -0.03826243802905083,
- -0.10434795916080475,
- -0.03649991750717163,
- -0.04717259109020233,
- -0.04051917791366577,
- 0.023889346048235893,
- -0.09520813077688217,
- 0.0031196079216897488,
- -0.022057930007576942,
- 0.03198295459151268,
- -0.03197023645043373,
- -0.0468355268239975,
- 0.013300975784659386,
- -0.05871107429265976,
- -0.12817855179309845,
- -0.005166933871805668,
- -0.07981859147548676,
- 0.05181223154067993,
- -0.08434993773698807,
- -0.04711564630270004,
- -0.015585253946483135,
- -0.029843652620911598,
- -0.007028393913060427,
- -0.077370785176754,
- 0.054075200110673904,
- 0.029952792450785637,
- -0.038031209260225296,
- -0.03578284755349159,
- -0.0028350374195724726,
- 0.016265597194433212,
- -0.00831199623644352,
- -6.897306316478372e-34,
- -0.038290202617645264,
- -0.018410809338092804,
- -0.002298510167747736,
- 0.03993856534361839,
- 0.03994270786643028,
- -0.008218852803111076,
- -0.02092321217060089,
- 0.07232199609279633,
- -0.00796976126730442,
- 0.014380265958607197,
- -0.10248898714780807,
- 0.015272117219865322,
- 0.06442715227603912,
- 0.003449284238740802,
- 0.03843013197183609,
- -0.020475825294852257,
- 0.16828300058841705,
- -0.04384700208902359,
- 0.07364320755004883,
- 0.000935052870772779,
- -0.017149055376648903,
- 0.045725323259830475,
- -0.0966191217303276,
- -0.05563011392951012,
- -0.02149205654859543,
- 0.05474879965186119,
- 0.04301445931196213,
- 0.0012548469239845872,
- -0.0238332599401474,
- 0.03676927089691162,
- -0.010290488600730896,
- 0.03975789621472359,
- 0.08980227261781693,
- -0.04584664851427078,
- -0.011472427286207676,
- 0.14231827855110168,
- -0.06623171269893646,
- -0.06875621527433395,
- 0.05179004371166229,
- 0.04106495901942253,
- 0.008466682396829128,
- -0.029887868091464043,
- 0.0030491971410810947,
- 0.06372019648551941,
- 0.04887313023209572,
- -0.0354284830391407,
- 0.05730799213051796,
- 0.05424048379063606,
- 0.1212049275636673,
- -0.048110481351614,
- -0.032740700989961624,
- 0.024116400629281998,
- -0.007633450906723738,
- -0.06332257390022278,
- 0.04024910926818848,
- -0.014236368238925934,
- -0.026015961542725563,
- -0.011721953749656677,
- 0.05103681981563568,
- 0.04180376976728439,
- 0.030743539333343506,
- -0.0038287860807031393,
- -0.08609357476234436,
- -0.015414063818752766,
- 0.044141028076410294,
- 0.05202635005116463,
- -0.020486367866396904,
- -0.08987065404653549,
- 0.0005497672827914357,
- 0.08318060636520386,
- 0.04231495410203934,
- -0.01636350154876709,
- -0.06695422530174255,
- 0.0040651471354067326,
- 0.030837276950478554,
- -0.022394921630620956,
- -0.035226959735155106,
- 0.09668479114770889,
- 0.002068389905616641,
- -0.016862455755472183,
- -0.0906885415315628,
- 0.008171690627932549,
- 0.043931301683187485,
- -0.025799671187996864,
- 0.04779708757996559,
- -0.033300481736660004,
- -0.07615764439105988,
- 0.06090594828128815,
- -0.02526181936264038,
- 0.04056684300303459,
- 0.006316506769508123,
- 0.02345009706914425,
- 0.017320934683084488,
- -0.0407402403652668,
- 0.05308397486805916,
- -1.686706596615295e-8,
- 0.029503006488084793,
- 0.005175245460122824,
- -0.05559210479259491,
- -0.013013702817261219,
- 0.02061890996992588,
- 0.0036939478013664484,
- 0.06849949061870575,
- -0.061315521597862244,
- 0.011880764737725258,
- 0.03667105361819267,
- -0.0010820055613294244,
- 0.02723873406648636,
- 0.0992421954870224,
- 0.04803982004523277,
- 0.049036089330911636,
- 0.010247535072267056,
- 0.03333158791065216,
- 0.016707831993699074,
- -0.07222334295511246,
- -0.025438282638788223,
- -0.09986642003059387,
- 0.008563351817429066,
- 0.04770476743578911,
- -0.02163032628595829,
- -0.07916222512722015,
- -0.06258563697338104,
- 0.022115537896752357,
- -0.018824514001607895,
- -0.01008666679263115,
- 0.13117240369319916,
- -0.036014534533023834,
- 0.12003321200609207,
- -0.032641686499118805,
- -0.04098743572831154,
- -0.08406765758991241,
- 0.021925805136561394,
- -0.03881995752453804,
- 0.01217157393693924,
- 0.005601183511316776,
- -0.1279945820569992,
- 0.09572204202413559,
- 0.0668104812502861,
- 0.09798308461904526,
- -0.020482411608099937,
- -0.03946707025170326,
- 0.023569071665406227,
- 0.06072377413511276,
- -0.000875827157869935,
- -0.03779996931552887,
- -0.035542987287044525,
- 0.03268561139702797,
- -0.027722204104065895,
- -0.004861015826463699,
- 0.06051325052976608,
- -0.023527098819613457,
- 0.020919321104884148,
- 0.08219201117753983,
- 0.014933141879737377,
- -0.0595712773501873,
- 0.002265877788886428,
- 0.09763238579034805,
- 0.04051061347126961,
- 0.078059621155262,
- -0.08799947798252106
- ]
- },
- {
- "keyword": "becomes",
- "type": "becomes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.02545546367764473,
- 0.017925549298524857,
- 0.02451503835618496,
- 0.07166116684675217,
- -0.012242341414093971,
- -0.07822423428297043,
- 0.08702369034290314,
- -0.036238767206668854,
- -0.01016481313854456,
- -0.011852866970002651,
- 0.006677716970443726,
- -0.08716066926717758,
- -0.004844633396714926,
- 0.015409686602652073,
- 0.055632565170526505,
- 0.03067564219236374,
- -0.010337001644074917,
- 0.01925053261220455,
- -0.06858658045530319,
- 0.004891222342848778,
- -0.05631730332970619,
- -0.007743597961962223,
- -0.03388897329568863,
- -0.006250802893191576,
- -0.00038514623884111643,
- -0.016141148284077644,
- -0.04696931317448616,
- -0.02279670722782612,
- 0.14783217012882233,
- -0.10223489999771118,
- 0.011191081255674362,
- 0.04545554146170616,
- 0.019480768591165543,
- 0.00460771145299077,
- -0.030851289629936218,
- 0.02135687880218029,
- 0.07080904394388199,
- -0.005449515301734209,
- 0.05289386585354805,
- -0.02784552425146103,
- 0.022618822753429413,
- -0.04956802353262901,
- 0.007748379372060299,
- 0.01892205886542797,
- 0.03362321853637695,
- -0.05020155385136604,
- 0.06362872570753098,
- 0.0015988369705155492,
- 0.039929479360580444,
- 0.033906240016222,
- -0.07148430496454239,
- -0.00887711439281702,
- -0.03919875994324684,
- 0.036978937685489655,
- 0.033700764179229736,
- 0.026466118171811104,
- 0.0128640690818429,
- 0.03257641941308975,
- -0.03432732820510864,
- 0.005486356094479561,
- 0.008967738598585129,
- 0.06152292340993881,
- -0.011929085478186607,
- 0.010927995666861534,
- -0.012395517900586128,
- -0.01308102160692215,
- 0.005975441541522741,
- -0.015520984306931496,
- -0.02007686160504818,
- 0.05817572772502899,
- -0.04292277991771698,
- 0.014239326119422913,
- -0.036660779267549515,
- -0.016119547188282013,
- 0.0259102713316679,
- -0.04045464098453522,
- -0.03080202080309391,
- -0.05204812064766884,
- 0.12452750653028488,
- 0.06953044980764389,
- 0.019023077562451363,
- 0.08027368038892746,
- -0.02184317074716091,
- 0.027640577405691147,
- -0.0652366653084755,
- -0.053633108735084534,
- 0.010249277576804161,
- 0.0084756501019001,
- -0.04636099189519882,
- 0.038265734910964966,
- -0.09879874438047409,
- 0.018036220222711563,
- 0.1035580039024353,
- 0.0033773561008274555,
- 0.04021430388092995,
- -0.0119170518592,
- -0.026202140375971794,
- -0.07537772506475449,
- -0.0018388940952718258,
- 0.25076863169670105,
- -0.014994822442531586,
- 0.022817788645625114,
- 0.006524008233100176,
- 0.047835707664489746,
- 0.00634678453207016,
- -0.05120536684989929,
- -0.027239378541707993,
- 0.058146338909864426,
- 0.03958183154463768,
- 0.02989237755537033,
- 0.034918878227472305,
- -0.025888286530971527,
- 0.018359167501330376,
- 0.05571475997567177,
- 0.03533245995640755,
- 0.03459860011935234,
- -0.02571466565132141,
- 0.023260269314050674,
- -0.04752844199538231,
- 0.0629749670624733,
- 0.05942976847290993,
- 0.007271957583725452,
- -0.03683074191212654,
- 0.043390389531850815,
- -0.06370358914136887,
- -0.08682258427143097,
- 0.04962347820401192,
- -6.372157980503858e-33,
- -0.002843191847205162,
- -0.03825821727514267,
- 0.06302525848150253,
- 0.05987220257520676,
- -0.0457451157271862,
- 0.05306892842054367,
- 0.02096503973007202,
- 0.007890828885138035,
- -0.06865194439888,
- -0.04733208939433098,
- -0.06359691917896271,
- -0.0358661413192749,
- -0.05798845365643501,
- 0.05263877660036087,
- 0.11405184119939804,
- -0.04473010450601578,
- -0.0334620401263237,
- -0.01382337138056755,
- 0.0024341591633856297,
- -0.029288524761795998,
- -0.032447755336761475,
- 0.10287997871637344,
- 0.0021793448831886053,
- -0.0018945276970043778,
- 0.01818286068737507,
- 0.010414059273898602,
- -0.03226218372583389,
- -0.04222925007343292,
- 0.0017333411378785968,
- -0.02371174842119217,
- -0.011920945718884468,
- -0.032239433377981186,
- -0.10465468466281891,
- 0.029997237026691437,
- -0.03613177686929703,
- -0.029527798295021057,
- -0.0038742939941585064,
- 0.015291104093194008,
- 0.0223087128251791,
- -0.061882272362709045,
- -0.03135184571146965,
- -0.06178664043545723,
- -0.09381325542926788,
- 0.010006794705986977,
- -0.015911946073174477,
- -0.010035521350800991,
- 0.11427609622478485,
- 0.05435618385672569,
- -0.0327068530023098,
- -0.05023174360394478,
- -0.014363872818648815,
- -0.06471186876296997,
- 0.03344952315092087,
- -0.001341736875474453,
- -0.004193579778075218,
- -0.05406182259321213,
- 0.046167001128196716,
- -0.03305336833000183,
- 0.03391449898481369,
- -0.050325848162174225,
- 0.07619832456111908,
- -0.011889544315636158,
- -0.04356173425912857,
- 0.076816625893116,
- -0.044565603137016296,
- -0.0643579512834549,
- 0.04611867293715477,
- -0.06253156810998917,
- 0.04727783426642418,
- 0.017216430976986885,
- -0.05554763972759247,
- -0.009564836509525776,
- 0.023251283913850784,
- 0.04855259507894516,
- 0.016791878268122673,
- -0.0749150738120079,
- -0.04373365268111229,
- -0.005383599549531937,
- 0.022873306646943092,
- -0.0005612073582597077,
- 0.0011297017335891724,
- 0.014124232344329357,
- -0.038947753608226776,
- -0.009273584932088852,
- 0.10758812725543976,
- -0.03163876011967659,
- 0.026439659297466278,
- -0.1550048291683197,
- 0.025104869157075882,
- 0.07658614963293076,
- 0.030318915843963623,
- -0.06852904707193375,
- 0.03908991813659668,
- 0.033441994339227676,
- -0.07694902271032333,
- 4.6060967371963916e-33,
- -0.020059598609805107,
- -0.014422625303268433,
- -0.056560296565294266,
- 0.04664238169789314,
- -0.061565134674310684,
- -0.011652904562652111,
- -0.025574304163455963,
- 0.07824551314115524,
- -0.07027854770421982,
- -0.04533823952078819,
- 0.00026078071095980704,
- 0.019514257088303566,
- 0.06503379344940186,
- 0.0057641612365841866,
- 0.02256520465016365,
- -0.03185843303799629,
- 0.05252356454730034,
- 0.026443837210536003,
- -0.031599897891283035,
- 0.029767543077468872,
- 0.05133655294775963,
- 0.04669768363237381,
- -0.05614529177546501,
- -0.0002865465939976275,
- -0.0199698805809021,
- 0.061033036559820175,
- 0.12565258145332336,
- 0.07953682541847229,
- 0.00372655363753438,
- -0.0005383308744058013,
- -0.036827847361564636,
- 0.015466511249542236,
- -0.07038506865501404,
- 0.019912822172045708,
- -0.010021952912211418,
- 0.05964815616607666,
- 0.021692099049687386,
- -0.04662615805864334,
- -0.015913326293230057,
- 0.026460682973265648,
- 0.04036371782422066,
- -0.02488657645881176,
- 0.049768924713134766,
- 0.14471535384655,
- -0.013774138875305653,
- -0.0008708570967428386,
- 0.03748134896159172,
- 0.08102390170097351,
- 0.06541386991739273,
- -0.011670295149087906,
- -0.0006239621434360743,
- -0.021959565579891205,
- -0.04739930108189583,
- -0.0574137344956398,
- -0.0047683208249509335,
- 0.019415004178881645,
- -0.03171689808368683,
- -0.05107852444052696,
- -0.012917641550302505,
- 0.0029801225755363703,
- -0.08100415021181107,
- -0.00975093711167574,
- -0.019435426220297813,
- 0.019286401569843292,
- -0.01518801599740982,
- -0.02705116756260395,
- -0.0705951526761055,
- 0.04143468290567398,
- -0.0020813648588955402,
- -0.0036418617237359285,
- 0.08276098221540451,
- -0.006699361838400364,
- -0.1107621118426323,
- -0.08009220659732819,
- -0.03551627695560455,
- -0.07605571299791336,
- -0.07914996892213821,
- 0.03516734391450882,
- -0.0020980252884328365,
- -0.06857241690158844,
- -0.08486825972795486,
- -0.044910043478012085,
- 0.02344384230673313,
- -0.029247064143419266,
- -0.039900559931993484,
- -0.09982787072658539,
- 0.045283522456884384,
- 0.044024206697940826,
- -0.009762385860085487,
- 0.015837280079722404,
- 0.010037301108241081,
- -0.032732509076595306,
- -0.01863977313041687,
- 0.019053539261221886,
- 0.002181977266445756,
- -1.2267376447994138e-8,
- -0.05164014920592308,
- 0.08401599526405334,
- -0.023549890145659447,
- 0.028778476640582085,
- 0.07238787412643433,
- 0.11356380581855774,
- -0.011097080074250698,
- 0.013962230645120144,
- 0.015535913407802582,
- 0.1041722223162651,
- -0.03833375498652458,
- 0.02514885924756527,
- 0.1229555606842041,
- 0.041895925998687744,
- 0.0793253630399704,
- 0.037406183779239655,
- 0.038036979734897614,
- 0.009942028671503067,
- -0.03658969700336456,
- 0.0111226262524724,
- -0.101692795753479,
- -0.02335404045879841,
- -0.054859668016433716,
- 0.02588270790874958,
- -0.08151555061340332,
- -0.08519592136144638,
- -0.04659802466630936,
- 0.008777258917689323,
- 0.0076353903859853745,
- 0.0648748055100441,
- -0.0013696717796847224,
- 0.0687515139579773,
- -0.04641038924455643,
- 0.04341675341129303,
- -0.061124030500650406,
- -0.02226288616657257,
- -0.03230338543653488,
- 0.01699727587401867,
- 0.0576808825135231,
- -0.013035989366471767,
- -0.005272538401186466,
- 0.07513298839330673,
- 0.020327165722846985,
- -0.010294057428836823,
- -0.13533566892147064,
- -0.0008568261982873082,
- 0.07625450193881989,
- -0.015157727524638176,
- 0.029131701216101646,
- -0.0628608912229538,
- 0.07587787508964539,
- -0.01188670378178358,
- -0.012073727324604988,
- -0.006722400430589914,
- 0.12099628895521164,
- 0.006131336092948914,
- 0.02784636616706848,
- 0.1144770085811615,
- 0.023321742191910744,
- 0.08379168808460236,
- 0.08814875036478043,
- 0.0583190992474556,
- 0.12320093810558319,
- -0.009607872925698757
- ]
- },
- {
- "keyword": "turns into",
- "type": "becomes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.03000556491315365,
- 0.02293257601559162,
- -0.055878277868032455,
- 0.11688756942749023,
- -0.055752988904714584,
- -0.05220293998718262,
- 0.07499993592500687,
- 0.01110346894711256,
- 0.02761700749397278,
- 0.02219861000776291,
- -0.02844081073999405,
- -0.08236552029848099,
- -0.026586879044771194,
- 0.012002170085906982,
- 0.09697133302688599,
- 0.02434469759464264,
- 0.02876833826303482,
- -0.014334524981677532,
- -0.10289392620325089,
- 0.020574482157826424,
- -0.04847365617752075,
- -0.053251855075359344,
- -0.03350541740655899,
- -0.035875104367733,
- -0.07825574278831482,
- -0.024930156767368317,
- -0.007440021261572838,
- -0.0026054882910102606,
- 0.027387237176299095,
- -0.07080116868019104,
- -0.05640459060668945,
- 0.1004268079996109,
- -0.0770583301782608,
- -0.013457969762384892,
- -0.03924735262989998,
- 0.01913170889019966,
- 0.06489131599664688,
- -0.02161354385316372,
- 0.030448822304606438,
- -0.011370991356670856,
- 0.054885923862457275,
- -0.10855291783809662,
- 0.030278434976935387,
- 0.032868608832359314,
- -0.03433132544159889,
- -0.03661905229091644,
- 0.003160737920552492,
- 0.012388897128403187,
- 0.028063135221600533,
- 0.04833370819687843,
- -0.056001704186201096,
- 0.006666415371000767,
- -0.047551847994327545,
- 0.05853100121021271,
- -0.022379502654075623,
- 0.08031345158815384,
- -0.008466948755085468,
- 0.014951911754906178,
- 0.0032917922362685204,
- -0.030866021290421486,
- -0.03287632390856743,
- 0.02453066222369671,
- 0.019059961661696434,
- 0.008600331842899323,
- -0.0019108174601569772,
- -0.05697427690029144,
- 0.0027205771766602993,
- 0.0188879556953907,
- -0.05321100354194641,
- -0.013668286614120007,
- 0.010070500895380974,
- 0.002208634279668331,
- -0.08142991364002228,
- -0.038790687918663025,
- 0.07839596271514893,
- -0.06489512324333191,
- -0.009226910769939423,
- -0.03205838054418564,
- 0.09709767252206802,
- 0.036080241203308105,
- 0.019087189808487892,
- 0.035172224044799805,
- -0.04275359585881233,
- 0.009788150899112225,
- -0.030614973977208138,
- -0.02940940670669079,
- 0.022952016443014145,
- -0.0030785256531089544,
- -0.0348881259560585,
- 0.04702718183398247,
- -0.11096595972776413,
- 0.00020214833784848452,
- 0.046680718660354614,
- -0.004136529751121998,
- 0.035486117005348206,
- -0.012255052104592323,
- 0.01340175699442625,
- -0.009410439990460873,
- -0.024640163406729698,
- 0.18189628422260284,
- 0.00409719767048955,
- 0.1101236641407013,
- 0.001098711509257555,
- -0.0542408749461174,
- -0.012256065383553505,
- -0.03124016895890236,
- -0.02785460092127323,
- 0.06613187491893768,
- 0.02342645823955536,
- -0.006183359306305647,
- 0.015730109065771103,
- -0.03666741028428078,
- 0.07172980904579163,
- 0.047788240015506744,
- 0.026134299114346504,
- -0.013003287836909294,
- -0.027339210733771324,
- 0.03729801997542381,
- -0.05174671486020088,
- 0.10330377519130707,
- 0.032684326171875,
- -0.01697675511240959,
- -0.006819232366979122,
- 0.018925894051790237,
- -0.07864582538604736,
- -0.07212994992733002,
- 0.030386576429009438,
- -3.927974250016169e-33,
- -0.012542896904051304,
- -0.0002842502435669303,
- 0.03319155424833298,
- 0.038179244846105576,
- -0.06127128750085831,
- 0.021434681490063667,
- 0.026589790359139442,
- -0.0008215797133743763,
- -0.0967593863606453,
- -0.008367684669792652,
- -0.053929708898067474,
- 0.06377345323562622,
- -0.07377953082323074,
- 0.12162579596042633,
- 0.0782294049859047,
- -0.004935765638947487,
- 0.032749347388744354,
- 0.07037654519081116,
- -0.08259972184896469,
- -0.06937842816114426,
- -0.05813883617520332,
- 0.12378303706645966,
- -0.0106202969327569,
- 0.03232158347964287,
- -0.012557415291666985,
- 0.027690662071108818,
- -0.06491303443908691,
- -0.06634438782930374,
- 0.003256780793890357,
- -0.015573729760944843,
- 0.029630638659000397,
- -0.039956144988536835,
- -0.029694324359297752,
- 0.011102438904345036,
- 0.00822617206722498,
- -0.022983865812420845,
- 0.01799212023615837,
- -0.020435120910406113,
- 0.00693972734734416,
- -0.009176571853458881,
- -0.08964993804693222,
- -0.0736498162150383,
- -0.07184508442878723,
- 0.03501066565513611,
- -0.06846421211957932,
- 0.022311406210064888,
- 0.05670686066150665,
- 0.054372407495975494,
- 0.004331332165747881,
- -0.0574210025370121,
- -0.014279481023550034,
- 0.007709599565714598,
- -0.014988109469413757,
- 0.046732496470212936,
- -0.08241163939237595,
- -0.00523022748529911,
- 0.06905922293663025,
- -0.030061593279242516,
- 0.0051518939435482025,
- -0.031933967024087906,
- 0.09269152581691742,
- 0.05710015445947647,
- -0.0760757252573967,
- 0.028599148616194725,
- -0.041727181524038315,
- -0.06665965169668198,
- 0.09873852878808975,
- -0.07568078488111496,
- 0.015410669147968292,
- 0.028980761766433716,
- -0.07966666668653488,
- 0.020293718203902245,
- -0.06843811273574829,
- 0.05662021413445473,
- -0.009936094284057617,
- -0.008469007909297943,
- -0.02443528175354004,
- -0.016477834433317184,
- 0.012823153287172318,
- -0.008581243455410004,
- 0.04160799831151962,
- -0.003602515207603574,
- -0.011993742547929287,
- -0.0024083300959318876,
- 0.03099682927131653,
- -0.024886805564165115,
- 0.0010435826843604445,
- -0.1417035162448883,
- -0.011363334022462368,
- 0.09243214875459671,
- 0.04516645893454552,
- -0.032634053379297256,
- 0.059148795902729034,
- 0.03441575914621353,
- -0.01942877657711506,
- 2.830670477332718e-33,
- -0.027473608031868935,
- 0.03309794142842293,
- -0.019127927720546722,
- -0.007831734605133533,
- -0.00959058664739132,
- -0.026912694796919823,
- -0.03172032907605171,
- 0.0041965097188949585,
- 0.010835548862814903,
- 0.0167281161993742,
- 0.01681610941886902,
- 0.025319382548332214,
- 0.0900937020778656,
- -0.01843257248401642,
- 0.051589254289865494,
- -0.03633526712656021,
- 0.13375931978225708,
- 0.020451517775654793,
- -0.057815760374069214,
- 0.03126019239425659,
- 0.04079654812812805,
- 0.013859609141945839,
- 0.02672692760825157,
- -0.026897447183728218,
- -0.04816634953022003,
- 0.10480006784200668,
- 0.12297584116458893,
- 0.09992654621601105,
- -0.008882937952876091,
- 0.00392595399171114,
- -0.029951293021440506,
- -0.06523360311985016,
- -0.02332170680165291,
- 0.025102883577346802,
- -0.07454781234264374,
- 0.035182856023311615,
- 0.07412315160036087,
- -0.013536750338971615,
- 0.001395698869600892,
- 0.01672443002462387,
- 0.061310891062021255,
- 0.0314779132604599,
- 0.009788929484784603,
- 0.17944346368312836,
- -0.022911613807082176,
- -0.015347106382250786,
- -0.02514798752963543,
- 0.08943678438663483,
- 0.029620876535773277,
- -0.01686335727572441,
- -0.004486463963985443,
- 0.05388140305876732,
- -0.032759275287389755,
- -0.05780765041708946,
- -0.021402716636657715,
- -0.003739457344636321,
- 0.01194777525961399,
- -0.039896272122859955,
- -0.021755343303084373,
- -0.0009690714068710804,
- -0.07759197056293488,
- 0.0173433106392622,
- 0.01833123341202736,
- -0.0310392826795578,
- -0.025258973240852356,
- -0.0553695484995842,
- -0.026274392381310463,
- -0.04683126136660576,
- 0.01678590476512909,
- 0.03570924699306488,
- 0.087108314037323,
- 0.019066430628299713,
- 0.02499266527593136,
- -0.06311652809381485,
- 0.01867017336189747,
- -0.10014531016349792,
- -0.04464175924658775,
- -0.05635354295372963,
- 0.04328523576259613,
- -0.10082438588142395,
- -0.09369167685508728,
- -0.041389238089323044,
- 0.05332077294588089,
- -0.03688260167837143,
- -0.00405225669965148,
- -0.09647350758314133,
- 0.11863432824611664,
- -0.010387888178229332,
- -0.0011917788069695234,
- 0.030425509437918663,
- 0.00005255308133200742,
- 0.06293374300003052,
- 0.0075599984265863895,
- 0.05440903827548027,
- -0.005850637797266245,
- -1.259533632946841e-8,
- -0.05472392216324806,
- -0.016603779047727585,
- 0.03996548429131508,
- 0.06954537332057953,
- 0.024239616468548775,
- 0.05529051646590233,
- 0.02742559090256691,
- -0.007722325623035431,
- -0.002946701366454363,
- 0.07077991217374802,
- -0.06199820339679718,
- 0.014376010745763779,
- 0.08802999556064606,
- 0.04270013049244881,
- 0.10025454312562943,
- 0.022901177406311035,
- -0.04778476804494858,
- 0.030379528179764748,
- -0.0352044552564621,
- -0.006646275520324707,
- -0.040006041526794434,
- -0.04899895191192627,
- -0.013844287022948265,
- 0.025871772319078445,
- -0.04677193611860275,
- -0.019117357209324837,
- -0.03564422205090523,
- 0.0855623111128807,
- 0.0224309042096138,
- 0.03437953069806099,
- -0.017638154327869415,
- 0.06772592663764954,
- -0.03136318922042847,
- 0.026001982390880585,
- -0.06101011857390404,
- -0.0455646812915802,
- -0.015471202321350574,
- 0.023815907537937164,
- 0.04697434604167938,
- -0.08448988944292068,
- 0.008473848924040794,
- 0.024738634005188942,
- -0.02520166151225567,
- 0.002540979068726301,
- -0.16962823271751404,
- -0.008223067037761211,
- 0.10851506143808365,
- 0.0018806196749210358,
- 0.03837086260318756,
- -0.02219191938638687,
- 0.05873033031821251,
- -0.031848497688770294,
- 0.023524831980466843,
- -0.05523047223687172,
- 0.04930000379681587,
- 0.004196717869490385,
- 0.007408510893583298,
- 0.06562655419111252,
- -0.03526541590690613,
- 0.09006743133068085,
- 0.013898832723498344,
- 0.0038630994968116283,
- 0.1530875861644745,
- 0.0006199501221999526
- ]
- },
- {
- "keyword": "evolves into",
- "type": "becomes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.08159888535737991,
- -0.034532155841588974,
- -0.05168987065553665,
- 0.08161373436450958,
- 0.034773025661706924,
- -0.011764326132833958,
- 0.06457866728305817,
- -0.01681445725262165,
- -0.004575439263135195,
- 0.01989031955599785,
- 0.051065824925899506,
- -0.11982395499944687,
- -0.0017103792633861303,
- 0.03460563346743584,
- 0.04593803361058235,
- 0.03465205430984497,
- 0.025033239275217056,
- -0.03337117284536362,
- -0.07387807220220566,
- -0.01093458291143179,
- -0.0614875853061676,
- 0.016160130500793457,
- -0.01444055512547493,
- -0.024676833301782608,
- -0.07030816376209259,
- -0.0025213523767888546,
- -0.015225798822939396,
- 0.02281441166996956,
- 0.0962633490562439,
- -0.09558063745498657,
- -0.05426545813679695,
- 0.07813490182161331,
- 0.024894338101148605,
- 0.025666633620858192,
- -0.04606429859995842,
- 0.03723372891545296,
- 0.011347213760018349,
- -0.005093575455248356,
- 0.07056435197591782,
- -0.03431684896349907,
- 0.051015228033065796,
- -0.05440477654337883,
- 0.001240262994542718,
- -0.03885123133659363,
- -0.05633458122611046,
- -0.03995121642947197,
- -0.030103858560323715,
- -0.019821349531412125,
- 0.02255798503756523,
- 0.02757728099822998,
- -0.08393781632184982,
- -0.055542267858982086,
- -0.04780014976859093,
- 0.044682204723358154,
- -0.01551168505102396,
- 0.0980672761797905,
- -0.022935114800930023,
- -0.028324782848358154,
- 0.04821019619703293,
- -0.05844444781541824,
- 0.021691877394914627,
- -0.04089782387018204,
- 0.06635229289531708,
- 0.03303343430161476,
- 0.011119979433715343,
- -0.005572682712227106,
- 0.0033651692792773247,
- 0.09666057676076889,
- 0.01737920567393303,
- -0.04424799978733063,
- 0.004432885907590389,
- 0.07992348074913025,
- -0.09240492433309555,
- 0.0307921115309,
- -0.02492893859744072,
- 0.06693506985902786,
- -0.0354158841073513,
- -0.004299716092646122,
- 0.04646998643875122,
- -0.032606035470962524,
- 0.02705574780702591,
- -0.02206546440720558,
- -0.067404605448246,
- 0.02487647347152233,
- 0.003985271789133549,
- -0.0169005636125803,
- 0.01238296739757061,
- -0.02476053684949875,
- -0.05602574720978737,
- 0.060844387859106064,
- -0.01769249327480793,
- 0.02122041955590248,
- 0.0019866430666297674,
- 0.03438549488782883,
- 0.027990438044071198,
- 0.031373586505651474,
- 0.010363257490098476,
- -0.039573460817337036,
- -0.027891481295228004,
- 0.11474359780550003,
- 0.014963389374315739,
- 0.036725398153066635,
- -0.053685128688812256,
- 0.0598340779542923,
- 0.05975548177957535,
- -0.062311433255672455,
- -0.031079156324267387,
- -0.08068683743476868,
- 0.037331681698560715,
- 0.01106944028288126,
- 0.017931489273905754,
- -0.06937536597251892,
- 0.07872145622968674,
- 0.04746866971254349,
- -0.015067756175994873,
- -0.026404820382595062,
- -0.03485006093978882,
- 0.032568447291851044,
- 0.008423741906881332,
- 0.11770197749137878,
- 0.03784270957112312,
- 0.013185976073145866,
- -0.06868050992488861,
- -0.012264739722013474,
- -0.05791285261511803,
- -0.07099851220846176,
- -0.0654921680688858,
- -4.165952713998156e-33,
- -0.007042400538921356,
- -0.027074435725808144,
- -0.04239547625184059,
- 0.022807527333498,
- 0.023212360218167305,
- -0.03981442004442215,
- -0.005873590707778931,
- -0.005579732824116945,
- -0.11489475518465042,
- -0.10513195395469666,
- -0.17278511822223663,
- 0.003445645794272423,
- -0.048051584511995316,
- 0.036435816437006,
- 0.09628081321716309,
- -0.039424870163202286,
- 0.007953505031764507,
- 0.06439952552318573,
- -0.03712952882051468,
- -0.02865574136376381,
- -0.04072020947933197,
- 0.001819188822992146,
- -0.008623780682682991,
- -0.023870134726166725,
- 0.009852772578597069,
- 0.04122895002365112,
- -0.0311962328851223,
- -0.07191283255815506,
- -0.02013261802494526,
- 0.001548394444398582,
- 0.05375649407505989,
- -0.07362907379865646,
- -0.07860966771841049,
- 0.04743519052863121,
- 0.005814533680677414,
- 0.052739087492227554,
- 0.07748619467020035,
- -0.039167117327451706,
- -0.039302513003349304,
- -0.039126839488744736,
- -0.013187183998525143,
- -0.018025828525424004,
- -0.09269081801176071,
- -0.026845762506127357,
- 0.04089784622192383,
- 0.024318784475326538,
- 0.12161743640899658,
- 0.03813817724585533,
- 0.048880912363529205,
- -0.06612663716077805,
- -0.024153299629688263,
- -0.06536182761192322,
- 0.029246509075164795,
- 0.005142716225236654,
- -0.03919445723295212,
- -0.03538232669234276,
- -0.008147153072059155,
- -0.02738293446600437,
- -0.03182777017354965,
- -0.005530196707695723,
- 0.09368570894002914,
- 0.0031837804708629847,
- -0.006851759273558855,
- -0.036485977470874786,
- 0.007368751801550388,
- 0.020870188251137733,
- 0.03404746577143669,
- -0.05023803561925888,
- 0.017189813777804375,
- 0.021795600652694702,
- -0.037336383014917374,
- -0.03392748162150383,
- -0.02258039452135563,
- 0.027720700949430466,
- 0.016485562548041344,
- -0.025263499468564987,
- 0.007553677074611187,
- -0.010190388187766075,
- 0.010023267939686775,
- -0.022754225879907608,
- -0.004153878893703222,
- -0.0002186153578804806,
- -0.029306890442967415,
- 0.039596106857061386,
- 0.005748134572058916,
- -0.030222304165363312,
- 0.034247156232595444,
- -0.0820578932762146,
- 0.025704646483063698,
- 0.0841497927904129,
- -0.02274729497730732,
- -0.026612702757120132,
- 0.046466898173093796,
- 0.013030938804149628,
- -0.023761244490742683,
- 2.231759227995632e-33,
- -0.03990861773490906,
- 0.02452080138027668,
- -0.04582256078720093,
- -0.022376367822289467,
- 0.006330065429210663,
- 0.0584743432700634,
- -0.054265547543764114,
- 0.09541629999876022,
- -0.04325614497065544,
- -0.0503263995051384,
- -0.03943523019552231,
- 0.09856139123439789,
- 0.14650684595108032,
- -0.051288798451423645,
- 0.040562376379966736,
- -0.020437441766262054,
- 0.11715473979711533,
- 0.09787320345640182,
- -0.016495447605848312,
- -0.010482266545295715,
- 0.07223489880561829,
- -0.0005051491898484528,
- -0.037919122725725174,
- -0.01438993215560913,
- 0.001109872362576425,
- 0.10964538902044296,
- 0.04689859598875046,
- 0.09592397511005402,
- -0.09240809828042984,
- 0.03469083830714226,
- -0.049258675426244736,
- 0.020774036645889282,
- -0.06408247351646423,
- 0.013699138537049294,
- -0.005615411791950464,
- 0.05053422227501869,
- 0.05077779293060303,
- 0.01241067610681057,
- 0.005510779097676277,
- -0.010135228745639324,
- 0.026490982621908188,
- 0.011378392577171326,
- -0.024822313338518143,
- 0.1469879448413849,
- 0.012903825379908085,
- -0.007889334112405777,
- 0.036909010261297226,
- 0.08405216038227081,
- 0.05825182422995567,
- 0.0358261875808239,
- 0.04708077758550644,
- 0.057163067162036896,
- 0.016239231452345848,
- -0.09912557899951935,
- -0.03842392563819885,
- -0.028054863214492798,
- 0.0348333865404129,
- 0.007978486828505993,
- -0.02207646705210209,
- 0.001018037786707282,
- -0.04056071490049362,
- 0.01530909352004528,
- -0.04380941763520241,
- 0.017327632755041122,
- -0.02478613145649433,
- 0.018839625641703606,
- -0.03715784475207329,
- -0.031473759561777115,
- -0.055057868361473083,
- -0.0016164947301149368,
- 0.04425346851348877,
- -0.004848575685173273,
- -0.04718250781297684,
- -0.04861799627542496,
- 0.031530458480119705,
- -0.043774668127298355,
- -0.055312130600214005,
- -0.03188805282115936,
- 0.05066009983420372,
- -0.10006865859031677,
- -0.16730862855911255,
- 0.02289678156375885,
- 0.03259509801864624,
- -0.024771815165877342,
- 0.037542764097452164,
- -0.11522338539361954,
- 0.0434534028172493,
- 0.03419109061360359,
- 0.02420017309486866,
- 0.02028915099799633,
- -0.011560346931219101,
- -0.06435257196426392,
- -0.005408887751400471,
- 0.030139543116092682,
- -0.026598114520311356,
- -1.3831222389626419e-8,
- 0.014585011638700962,
- 0.03216627240180969,
- 0.07458998262882233,
- 0.10760273039340973,
- 0.09000281989574432,
- 0.0887540727853775,
- -0.016135074198246002,
- 0.04803403839468956,
- 0.02791382372379303,
- 0.04977201670408249,
- -0.014884871430695057,
- -0.0006189650157466531,
- 0.09801486879587173,
- 0.06443796306848526,
- 0.15452329814434052,
- 0.03322777897119522,
- -0.03200135380029678,
- -0.00433028768748045,
- -0.05977114289999008,
- -0.0020989691838622093,
- -0.07665348052978516,
- 0.03192631155252457,
- 0.031314220279455185,
- 0.033565349876880646,
- -0.05015622451901436,
- -0.08364638686180115,
- -0.00041238177800551057,
- -0.004028551746159792,
- 0.06886953115463257,
- 0.03988870605826378,
- -0.020317398011684418,
- 0.05362429842352867,
- 0.02263711765408516,
- -0.006876532454043627,
- -0.028647741302847862,
- 0.04283314570784569,
- -0.046111758798360825,
- 0.01583002135157585,
- 0.006499891169369221,
- -0.09779861569404602,
- -0.04454076662659645,
- -0.02450266107916832,
- 0.08199780434370041,
- -0.07341815531253815,
- -0.15256232023239136,
- -0.00533748883754015,
- 0.06591065973043442,
- -0.03928040713071823,
- 0.003946959972381592,
- -0.004915880039334297,
- 0.046211596578359604,
- -0.06639393419027328,
- 0.0043118782341480255,
- -0.030264966189861298,
- 0.036029983311891556,
- -0.03263142332434654,
- 0.0023469398729503155,
- -0.01169630791991949,
- -0.010174458846449852,
- 0.08007337898015976,
- -0.003639188362285495,
- 0.02302558720111847,
- 0.12482292205095291,
- -0.011679330840706825
- ]
- },
- {
- "keyword": "transitions to",
- "type": "becomes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04124341160058975,
- -0.03932565823197365,
- 0.0199639443308115,
- 0.05162522941827774,
- -0.0012353620259091258,
- 0.054469022899866104,
- 0.05854536220431328,
- 0.016525276005268097,
- 0.07387662678956985,
- 0.011759419925510883,
- -0.016342854127287865,
- -0.03738141059875488,
- -0.031149111688137054,
- 0.007125879637897015,
- 0.07045431435108185,
- 0.040230102837085724,
- -0.0203428715467453,
- 0.0020086129661649466,
- -0.03238934278488159,
- -0.012325257994234562,
- -0.04216013848781586,
- -0.037571512162685394,
- -0.06660041213035583,
- -0.029247239232063293,
- -0.00254576257430017,
- 0.08213576674461365,
- -0.05129307880997658,
- 0.0008791181608103216,
- 0.08363974839448929,
- -0.0688590481877327,
- -0.03531735762953758,
- 0.05142681300640106,
- -0.06170855835080147,
- -0.00891889538615942,
- 0.024594787508249283,
- 0.03938716650009155,
- 0.061824288219213486,
- 0.04123237729072571,
- 0.017335617914795876,
- 0.016496043652296066,
- 0.03935473784804344,
- -0.11050200462341309,
- -0.013840613886713982,
- -0.017377331852912903,
- 0.015737906098365784,
- -0.04166308790445328,
- 0.0009437036933377385,
- -0.010711761191487312,
- -0.018678370863199234,
- 0.008589484728872776,
- -0.04424705356359482,
- -0.04819069802761078,
- -0.014542967081069946,
- 0.030183928087353706,
- -0.009005982428789139,
- 0.10363048315048218,
- 0.06474948674440384,
- 0.011029132641851902,
- 0.041035305708646774,
- -0.08914022892713547,
- -0.015341467224061489,
- -0.004507948644459248,
- -0.06846097856760025,
- 0.039474062621593475,
- 0.10772696882486343,
- 0.009078598581254482,
- 0.0119989775121212,
- -0.026690518483519554,
- 0.006740314420312643,
- 0.030075544491410255,
- -0.02096286229789257,
- -0.014523089863359928,
- -0.008724801242351532,
- 0.03471142798662186,
- 0.029882099479436874,
- -0.05315941199660301,
- 0.05154157802462578,
- 0.012413631193339825,
- 0.07442846894264221,
- -0.028054701164364815,
- 0.052173592150211334,
- -0.033728666603565216,
- -0.05008501932024956,
- -0.01675145886838436,
- -0.0839955285191536,
- -0.04634940251708031,
- -0.032178714871406555,
- -0.04165148362517357,
- -0.054148584604263306,
- 0.04184466227889061,
- -0.048435479402542114,
- 0.012959965504705906,
- 0.055871304124593735,
- 0.016234995797276497,
- -0.040214698761701584,
- 0.020367080345749855,
- -0.03281450644135475,
- -0.08069830387830734,
- 0.1813325434923172,
- 0.21937809884548187,
- -0.027034781873226166,
- 0.06791465729475021,
- 0.039533261209726334,
- -0.061068095266819,
- -0.06713080406188965,
- -0.08083264529705048,
- 0.019315402954816818,
- 0.03342074900865555,
- -0.02425057627260685,
- -0.007989817298948765,
- -0.0006736313225701451,
- -0.06925518810749054,
- 0.02923566661775112,
- -0.02008647657930851,
- 0.03149116784334183,
- -0.010110955685377121,
- -0.05002905800938606,
- 0.029151301831007004,
- 0.015053466893732548,
- 0.08023741841316223,
- 0.04412953928112984,
- 0.07430057972669601,
- -0.036358803510665894,
- 0.021709328517317772,
- -0.07495661079883575,
- -0.04267812892794609,
- 0.007065389305353165,
- -5.3015805412542905e-33,
- 0.04300660267472267,
- -0.07405063509941101,
- -0.02044842578470707,
- 0.11542722582817078,
- -0.06766865402460098,
- 0.013618672266602516,
- -0.027196966111660004,
- -0.08378848433494568,
- -0.07398346066474915,
- -0.004400063306093216,
- -0.006595870945602655,
- 0.06572964042425156,
- -0.0345824770629406,
- -0.025850500911474228,
- 0.08772540092468262,
- -0.0837620347738266,
- 0.008427873253822327,
- 0.020886065438389778,
- 0.034919269382953644,
- -0.04106106981635094,
- -0.02134633995592594,
- 0.036530397832393646,
- -0.02705761045217514,
- 0.03480848670005798,
- -0.021938011050224304,
- 0.04257531091570854,
- -0.05827776715159416,
- -0.061304088681936264,
- -0.008398905396461487,
- 0.008757148869335651,
- -0.009653069078922272,
- 0.029840538278222084,
- -0.09479395300149918,
- -0.04988427087664604,
- -0.0014839114155620337,
- 0.012287500314414501,
- 0.051449764519929886,
- -0.07926424592733383,
- 0.042485032230615616,
- -0.08154904097318649,
- -0.02357785589993,
- -0.03678019717335701,
- -0.005317270290106535,
- 0.016059383749961853,
- 0.027650533244013786,
- 0.04744507372379303,
- 0.12581290304660797,
- 0.03533364459872246,
- -0.04800684005022049,
- 0.005580378230661154,
- 0.03148877993226051,
- 0.0010326673509553075,
- -0.02141408436000347,
- -0.03696385398507118,
- 0.03609888255596161,
- -0.03283188119530678,
- -0.008217120543122292,
- 0.02905178815126419,
- 0.005529152695089579,
- 0.007737459149211645,
- 0.09216853976249695,
- 0.026570970192551613,
- -0.05757730081677437,
- 0.014958694577217102,
- -0.007685753051191568,
- 0.062266428023576736,
- -0.04561706259846687,
- -0.04795796051621437,
- 0.012387830764055252,
- 0.01885489746928215,
- -0.0858968198299408,
- -0.008208238519728184,
- 0.03833520784974098,
- -0.0031652310863137245,
- 0.08768203109502792,
- 0.015405192039906979,
- -0.05203957110643387,
- -0.08887342363595963,
- -0.032174285501241684,
- -0.04873712733387947,
- -0.007333768997341394,
- 0.03208381310105324,
- -0.04071228206157684,
- -0.002327887574210763,
- 0.06085844337940216,
- -0.006993971765041351,
- 0.040075961500406265,
- -0.10054122656583786,
- -0.04994741082191467,
- 0.04349368438124657,
- -0.07995022088289261,
- -0.013576243072748184,
- 0.10210874676704407,
- 0.11935724318027496,
- -0.005859368480741978,
- 2.2870504414964814e-33,
- -0.025905638933181763,
- 0.020058894529938698,
- -0.044051237404346466,
- 0.03198915347456932,
- 0.03865578770637512,
- -0.01477028802037239,
- 0.025577738881111145,
- 0.07348127663135529,
- 0.025568252429366112,
- 0.01639876514673233,
- 0.029411680996418,
- -0.0028245756402611732,
- 0.06698721647262573,
- -0.007793024182319641,
- -0.0685790628194809,
- -0.010602549649775028,
- 0.13276927173137665,
- 0.02764815464615822,
- 0.0343983992934227,
- 0.07049687206745148,
- 0.03297033533453941,
- -0.009854106232523918,
- -0.12976057827472687,
- -0.03895023837685585,
- -0.07388553768396378,
- 0.05132736638188362,
- 0.06695824861526489,
- 0.0455501414835453,
- -0.07201126962900162,
- -0.00004330531373852864,
- -0.03703797608613968,
- -0.08263096958398819,
- 0.003950854763388634,
- 0.04684193804860115,
- -0.062340471893548965,
- 0.03276894986629486,
- 0.0045515079982578754,
- -0.05060681700706482,
- -0.06072076037526131,
- -0.00732740992680192,
- 0.031132109463214874,
- -0.046185173094272614,
- 0.003170158015564084,
- 0.07908201962709427,
- 0.0005250851390883327,
- 0.06731652468442917,
- -0.026666218414902687,
- 0.07915552705526352,
- -0.06263770908117294,
- -0.0427190326154232,
- -0.024525348097085953,
- 0.03710843622684479,
- -0.009524434804916382,
- -0.07791203260421753,
- -0.05140339583158493,
- 0.029035989195108414,
- 0.031190529465675354,
- -0.054239001125097275,
- -0.055231545120477676,
- 0.024693312123417854,
- -0.0234405267983675,
- 0.005374015308916569,
- -0.033806219696998596,
- -0.018043290823698044,
- 0.030963720753788948,
- -0.043063074350357056,
- -0.04693087562918663,
- -0.040015146136283875,
- 0.0005202522152103484,
- -0.025843646377325058,
- 0.02106957882642746,
- -0.024084068834781647,
- -0.02428310178220272,
- -0.052303630858659744,
- 0.02392621897161007,
- -0.1477775126695633,
- -0.03039325214922428,
- -0.08705562353134155,
- 0.005288370419293642,
- -0.09570440649986267,
- -0.1193867102265358,
- -0.024644961580634117,
- 0.01173374243080616,
- 0.007814014330506325,
- -0.0027100315783172846,
- 0.0274782944470644,
- -0.008194828405976295,
- -0.019857199862599373,
- 0.03223120793700218,
- 0.002450460335239768,
- -0.03454466164112091,
- -0.02951766736805439,
- 0.07191922515630722,
- -0.03945327550172806,
- -0.0210323017090559,
- -1.3358857131606783e-8,
- -0.02839442901313305,
- 0.023679347708821297,
- 0.09128935635089874,
- 0.06164294853806496,
- 0.11175674200057983,
- 0.09041911363601685,
- 0.019767427816987038,
- 0.022300533950328827,
- 0.03781862184405327,
- 0.057949211448431015,
- -0.0010131580056622624,
- 0.050558846443891525,
- 0.07839974015951157,
- 0.03171003609895706,
- 0.07998958230018616,
- 0.05314869433641434,
- 0.051968324929475784,
- -0.04272367060184479,
- -0.004676914773881435,
- -0.004767217207700014,
- -0.08662144839763641,
- -0.012310461141169071,
- -0.009790903888642788,
- 0.024516265839338303,
- -0.025285707786679268,
- -0.008663851767778397,
- 0.03395646810531616,
- 0.04637851566076279,
- 0.02788260392844677,
- -0.022611211985349655,
- 0.01657109521329403,
- 0.053883057087659836,
- 0.04481971636414528,
- 0.02508244477212429,
- -0.0594695508480072,
- 0.013083701953291893,
- -0.020540785044431686,
- 0.030087582767009735,
- 0.04662288352847099,
- -0.019439874216914177,
- 0.05419502407312393,
- -0.028543347492814064,
- -0.019183779135346413,
- 0.05215364694595337,
- -0.15395092964172363,
- -0.022900087758898735,
- 0.019690431654453278,
- -0.02381458878517151,
- -0.00871309544891119,
- -0.042157988995313644,
- 0.024313190951943398,
- -0.07876789569854736,
- -0.03036445938050747,
- -0.00981962587684393,
- 0.11268482357263565,
- -0.009802273474633694,
- -0.016603123396635056,
- 0.042688414454460144,
- -0.1057293564081192,
- 0.09085922688245773,
- 0.13882248103618622,
- 0.013150657527148724,
- 0.008516987785696983,
- -0.0318961925804615
- ]
- },
- {
- "keyword": "becoming",
- "type": "becomes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.01316913217306137,
- 0.02954602986574173,
- 0.025627825409173965,
- 0.05553648620843887,
- 0.03418522700667381,
- -0.07458978146314621,
- 0.08616755157709122,
- -0.03127823770046234,
- -0.08543779700994492,
- -0.017245259135961533,
- 0.022997813299298286,
- -0.09185568243265152,
- 0.018669717013835907,
- 0.00756314629688859,
- 0.04147554934024811,
- 0.023124897852540016,
- 0.016879776492714882,
- -0.07525569200515747,
- -0.10705921798944473,
- -0.018194187432527542,
- -0.12711188197135925,
- -0.029625440016388893,
- 0.004594351630657911,
- 0.006899768486618996,
- 0.009425734169781208,
- 0.012700749561190605,
- -0.04329102486371994,
- -0.019676778465509415,
- 0.12619271874427795,
- -0.0485752634704113,
- -0.012101086787879467,
- 0.010081863962113857,
- 0.002456500194966793,
- 0.0290754996240139,
- -0.03279171139001846,
- 0.00754065765067935,
- 0.10438619554042816,
- 0.004850766155868769,
- 0.06841009110212326,
- -0.004633698612451553,
- 0.012509996071457863,
- -0.050008006393909454,
- -0.010987388901412487,
- -0.010651781223714352,
- 0.0708627700805664,
- -0.040203239768743515,
- 0.06392709165811539,
- -0.0027840137481689453,
- -0.007340981625020504,
- 0.013738793320953846,
- -0.09730660915374756,
- -0.0034310538321733475,
- -0.03208402171730995,
- 0.03150517866015434,
- 0.006300266366451979,
- 0.04109044373035431,
- -0.009778889827430248,
- 0.04575847089290619,
- -0.031413327902555466,
- -0.030963825061917305,
- -0.006673359777778387,
- 0.04066593199968338,
- -0.009977241046726704,
- 0.008554387837648392,
- -0.0017588648479431868,
- -0.025177443400025368,
- 0.03469790890812874,
- -0.0253136083483696,
- 0.0047693331725895405,
- 0.061802055686712265,
- -0.014925441704690456,
- -0.008986626751720905,
- -0.044108301401138306,
- 0.011593064293265343,
- 0.08967313915491104,
- -0.07812049984931946,
- -0.0020511688198894262,
- 0.017011532559990883,
- 0.1329224407672882,
- 0.03398219868540764,
- 0.06585143506526947,
- 0.08749040961265564,
- -0.04002099484205246,
- 0.07593931257724762,
- -0.09631254523992538,
- -0.09360913187265396,
- 0.028369346633553505,
- 0.03418366238474846,
- -0.020059773698449135,
- 0.023630112409591675,
- -0.03188997134566307,
- 0.01040759589523077,
- 0.0351313054561615,
- 0.014708271250128746,
- 0.01456804946064949,
- -0.04225074499845505,
- -0.044242799282073975,
- -0.10256540775299072,
- 0.03337109088897705,
- 0.24113120138645172,
- -0.017619283869862556,
- 0.03742126002907753,
- 0.003256158670410514,
- 0.022856097668409348,
- -0.018032390624284744,
- -0.025166254490613937,
- -0.02838018350303173,
- 0.09187160432338715,
- 0.001935393549501896,
- 0.020032424479722977,
- 0.008474579080939293,
- 0.01812596246600151,
- 0.0017532736528664827,
- 0.040274783968925476,
- 0.02131744474172592,
- 0.07638217508792877,
- -0.008172550238668919,
- 0.051711246371269226,
- 0.026737913489341736,
- 0.10122708976268768,
- 0.07318902015686035,
- 0.03162325918674469,
- -0.018879523500800133,
- 0.023916499689221382,
- -0.04733440652489662,
- -0.0910995602607727,
- 0.02965558134019375,
- -5.785636625295431e-33,
- -0.0032968074083328247,
- -0.03603694215416908,
- 0.060640718787908554,
- 0.05572723597288132,
- -0.07550961524248123,
- 0.03362302482128143,
- 0.014749129302799702,
- -0.012397446669638157,
- -0.007359827868640423,
- -0.0022206632420420647,
- -0.037445586174726486,
- 0.03809267655014992,
- -0.047614939510822296,
- 0.03190995007753372,
- 0.1373126059770584,
- -0.0286675114184618,
- -0.07451243698596954,
- -0.021824166178703308,
- -0.023590855300426483,
- 0.019385239109396935,
- -0.025553151965141296,
- 0.023318085819482803,
- -0.021113373339176178,
- 0.0268050879240036,
- 0.023177651688456535,
- -0.002698705065995455,
- -0.015108115039765835,
- -0.03438960388302803,
- 0.03799346461892128,
- -0.010965610854327679,
- 0.0012914944672957063,
- -0.014012138359248638,
- -0.1008807122707367,
- -0.04042500630021095,
- -0.011752619408071041,
- -0.07128849625587463,
- -0.0023475713096559048,
- -0.05028640106320381,
- 0.07911493629217148,
- -0.09227161109447479,
- -0.05130687728524208,
- -0.07774580270051956,
- 0.0025381564628332853,
- -0.032570283859968185,
- 0.006312341894954443,
- 0.03310900926589966,
- 0.09693591296672821,
- 0.044730786234140396,
- -0.06639861315488815,
- -0.00696601765230298,
- -0.031072676181793213,
- -0.0855414867401123,
- 0.0011976113310083747,
- -0.00835108757019043,
- 0.061025459319353104,
- -0.07041268795728683,
- 0.03972243890166283,
- -0.006590507458895445,
- 0.02484535612165928,
- -0.0720687210559845,
- 0.04101580008864403,
- 0.028089027851819992,
- -0.046385593712329865,
- 0.049907196313142776,
- -0.03994203358888626,
- -0.05160083249211311,
- 0.034987494349479675,
- -0.028823381289839745,
- 0.07359125465154648,
- -0.011915808543562889,
- -0.05506109818816185,
- -0.019405214115977287,
- -0.0719214528799057,
- 0.03775162249803543,
- 0.004315636586397886,
- -0.04913080483675003,
- -0.04828658327460289,
- -0.03443668782711029,
- 0.05137050896883011,
- 0.040369659662246704,
- 0.017951784655451775,
- 0.030206503346562386,
- -0.00018115196144208312,
- -0.014180181547999382,
- 0.13122232258319855,
- 0.0008300449117086828,
- 0.0017014482291415334,
- -0.12352593243122101,
- 0.08817645907402039,
- 0.0666409283876419,
- 0.03059086576104164,
- -0.08278049528598785,
- 0.030383747071027756,
- 0.061806052923202515,
- -0.05925844609737396,
- 3.9089793633328344e-33,
- 0.008598605170845985,
- 0.001256530755199492,
- -0.025575760751962662,
- 0.005058975424617529,
- -0.011917863972485065,
- -0.019978100433945656,
- 0.008393066935241222,
- 0.009840895421802998,
- -0.05403701961040497,
- 0.012422959320247173,
- 0.007640048861503601,
- 0.02519254945218563,
- 0.04581724852323532,
- 0.037075720727443695,
- -0.01713564246892929,
- -0.05428832024335861,
- 0.05194774642586708,
- 0.033222757279872894,
- -0.03875378891825676,
- 0.010895151644945145,
- -0.007675904780626297,
- 0.015970811247825623,
- -0.01737249828875065,
- -0.009128312580287457,
- -0.058028023689985275,
- 0.03911241143941879,
- 0.11727119982242584,
- 0.12471237033605576,
- -0.043078191578388214,
- 0.02531253546476364,
- -0.029604708775877953,
- 0.017475031316280365,
- -0.0696353167295456,
- -0.016614124178886414,
- -0.026892580091953278,
- 0.04892199486494064,
- 0.05815299600362778,
- 0.01850961335003376,
- -0.03375011309981346,
- 0.007249960210174322,
- 0.02619273215532303,
- -0.04163143038749695,
- -0.03693421557545662,
- 0.1162339299917221,
- -0.03270842880010605,
- 0.015035717748105526,
- 0.039354659616947174,
- 0.06800796836614609,
- 0.02967669814825058,
- 0.010684949345886707,
- -0.02471492439508438,
- -0.024156954139471054,
- 0.004360451363027096,
- -0.07550375163555145,
- -0.025155451148748398,
- -0.005757020320743322,
- -0.016164233908057213,
- -0.03058367222547531,
- -0.021934326738119125,
- -0.01396437082439661,
- -0.06822829693555832,
- 0.011365135200321674,
- -0.014539730735123158,
- 0.039796918630599976,
- -0.04570740461349487,
- -0.05143560469150543,
- -0.004557969979941845,
- 0.03389939293265343,
- -0.013217827305197716,
- 0.005444349721074104,
- 0.0358760841190815,
- -0.031070513650774956,
- -0.08549884706735611,
- -0.025309795513749123,
- -0.0662434846162796,
- -0.09154979884624481,
- -0.052850838750600815,
- 0.03581266477704048,
- -0.023448767140507698,
- -0.07176840305328369,
- -0.058846957981586456,
- -0.0692329853773117,
- 0.028403356671333313,
- -0.019543439149856567,
- -0.07188889384269714,
- -0.09219340234994888,
- 0.06845130771398544,
- -0.003277549287304282,
- 0.005016290582716465,
- -0.07759236544370651,
- 0.014774126932024956,
- -0.03566400706768036,
- -0.09159937500953674,
- -0.04228246957063675,
- 0.018713172525167465,
- -1.1702926627776833e-8,
- 0.018031297251582146,
- 0.09764784574508667,
- -0.03971733897924423,
- -0.012468630447983742,
- 0.084954634308815,
- 0.13455449044704437,
- -0.036322638392448425,
- -0.012820843607187271,
- 0.02460004761815071,
- 0.1104971393942833,
- -0.01000821590423584,
- 0.02352628856897354,
- 0.0885998010635376,
- 0.05791279673576355,
- 0.10080590099096298,
- 0.06224312260746956,
- 0.04443233460187912,
- -0.023287231102585793,
- -0.02319423109292984,
- -0.012638171203434467,
- -0.05892277881503105,
- -0.020195521414279938,
- -0.008940545842051506,
- 0.006466263439506292,
- -0.06354981660842896,
- -0.07192228734493256,
- -0.002034141682088375,
- 0.017322048544883728,
- -0.00026944486307911575,
- 0.07185593992471695,
- 0.006082226522266865,
- 0.04304424673318863,
- -0.045540906488895416,
- -0.014084507711231709,
- -0.06511685252189636,
- -0.03469287231564522,
- -0.043328508734703064,
- -0.01332145556807518,
- 0.043884895741939545,
- -0.02829919196665287,
- -0.008613592945039272,
- 0.0757637470960617,
- 0.05769995599985123,
- 0.057118263095617294,
- -0.12436474859714508,
- -0.003308213548734784,
- 0.05642180144786835,
- 0.007653160020709038,
- -0.001529110362753272,
- -0.019200731068849564,
- 0.07222162187099457,
- -0.03066067397594452,
- -0.02998238243162632,
- -0.019997455179691315,
- 0.08914138376712799,
- 0.015041117556393147,
- -0.01711857132613659,
- 0.10829572379589081,
- -0.042114295065402985,
- 0.10795605927705765,
- 0.0999705120921135,
- 0.03364992514252663,
- 0.08579318970441818,
- 0.029305892065167427
- ]
- },
- {
- "keyword": "transition",
- "type": "becomes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.0383458249270916,
- 0.022900085896253586,
- 0.01863345131278038,
- 0.014774389564990997,
- 0.04384000971913338,
- 0.006991406437009573,
- 0.05382798612117767,
- 0.0056649004109203815,
- 0.06319917738437653,
- -0.018856476992368698,
- 0.02376355417072773,
- -0.04653792455792427,
- -0.02020731195807457,
- -0.00745669798925519,
- 0.0657992959022522,
- 0.012128708884119987,
- -0.0773090198636055,
- -0.003523543942719698,
- -0.01951645314693451,
- -0.010896364226937294,
- -0.048216313123703,
- -0.03907029330730438,
- -0.08331197500228882,
- -0.0434674471616745,
- 0.0368785485625267,
- 0.068062923848629,
- -0.038142234086990356,
- 0.01678977720439434,
- 0.08805329352617264,
- -0.08093361556529999,
- -0.002261956688016653,
- 0.022462062537670135,
- -0.04656650871038437,
- -0.0032414759043604136,
- 0.00562663096934557,
- 0.023418763652443886,
- 0.0546170137822628,
- 0.04604656621813774,
- 0.0009124770876951516,
- 0.013235998339951038,
- 0.026736879721283913,
- -0.08550902456045151,
- -0.02121819742023945,
- -0.0007188633899204433,
- 0.015958987176418304,
- -0.010174818336963654,
- 0.00812793243676424,
- 0.02581746131181717,
- -0.03604012727737427,
- -0.026227209717035294,
- -0.016928300261497498,
- -0.05624868720769882,
- -0.035151392221450806,
- 0.02318124659359455,
- -0.0178054291754961,
- 0.11854972690343857,
- 0.07327786087989807,
- 0.009453684091567993,
- 0.00026257798890583217,
- -0.07261951267719269,
- -0.01494571939110756,
- 0.00544158648699522,
- -0.07706540822982788,
- 0.013353482820093632,
- 0.09819728881120682,
- -0.019875217229127884,
- 0.023563995957374573,
- -0.0913463905453682,
- 0.01218394748866558,
- -0.004924125503748655,
- -0.011220366694033146,
- -0.029333626851439476,
- -0.00023805545060895383,
- -0.012863828800618649,
- 0.008176237344741821,
- -0.09724704176187515,
- 0.06126120686531067,
- 0.0378914400935173,
- 0.09942638874053955,
- -0.040960751473903656,
- 0.06403468549251556,
- -0.05664132162928581,
- -0.05866298824548721,
- -0.008962391875684261,
- -0.11443530023097992,
- -0.030088892206549644,
- -0.05546043440699577,
- -0.03741208463907242,
- -0.06247289851307869,
- 0.02521040290594101,
- -0.020147250965237617,
- 0.012111561372876167,
- 0.021277310326695442,
- -0.018793068826198578,
- -0.013032440096139908,
- 0.015659619122743607,
- -0.037286240607500076,
- -0.03849300742149353,
- 0.17011158168315887,
- 0.2748550772666931,
- -0.04515039175748825,
- 0.05940542742609978,
- 0.04401029646396637,
- -0.03641638159751892,
- -0.060162242501974106,
- -0.042059946805238724,
- 0.021589411422610283,
- 0.0328851118683815,
- -0.03412929177284241,
- 0.006684398744255304,
- -0.02207573503255844,
- -0.06788589805364609,
- 0.010237605310976505,
- -0.00006976403528824449,
- 0.022429892793297768,
- 0.03037063032388687,
- -0.04522419348359108,
- 0.025727270171046257,
- 0.006882238667458296,
- 0.060771044343709946,
- 0.026028277352452278,
- 0.07211940735578537,
- -0.038274917751550674,
- 0.02311529591679573,
- -0.08506708592176437,
- -0.047171398997306824,
- 0.02935839258134365,
- -5.539461292268366e-33,
- 0.015871360898017883,
- -0.09936702251434326,
- -0.03470699116587639,
- 0.1171296164393425,
- -0.041086260229349136,
- 0.03527800366282463,
- -0.03260119631886482,
- -0.07461287081241608,
- -0.06728484481573105,
- -0.00005209206210565753,
- -0.007494254037737846,
- 0.06585362553596497,
- -0.016045447438955307,
- -0.06713099777698517,
- 0.06311194598674774,
- -0.0732404887676239,
- -0.03335754945874214,
- -0.00034579072962515056,
- 0.0616728775203228,
- -0.015055726282298565,
- -0.005898269359022379,
- 0.04987868666648865,
- -0.01757209002971649,
- 0.019472196698188782,
- -0.024896100163459778,
- 0.030473817139863968,
- -0.04618748649954796,
- -0.07373388111591339,
- -0.020393718034029007,
- -0.010382398031651974,
- -0.04359583556652069,
- 0.05086017772555351,
- -0.1289311647415161,
- -0.05947864055633545,
- 0.009885569103062153,
- -0.0012654784368351102,
- 0.04328492656350136,
- -0.0827089250087738,
- 0.049345288425683975,
- -0.07390014827251434,
- -0.053924158215522766,
- -0.021449321880936623,
- -0.01322790328413248,
- 0.009663697332143784,
- 0.01447226107120514,
- 0.07386419177055359,
- 0.1215302050113678,
- 0.018966933712363243,
- -0.047759007662534714,
- 0.02565603330731392,
- 0.017522236332297325,
- 0.000295684119919315,
- -0.03591044247150421,
- -0.04237973317503929,
- 0.031942225992679596,
- -0.003271097084507346,
- 0.008692207746207714,
- 0.03272193297743797,
- -0.0014161384897306561,
- -0.03507945314049721,
- 0.09070111811161041,
- 0.009701801463961601,
- -0.059888824820518494,
- 0.01255218405276537,
- 0.03482239320874214,
- 0.032622095197439194,
- -0.03480609133839607,
- -0.04280628263950348,
- 0.036068037152290344,
- 0.03142058476805687,
- -0.0591549426317215,
- -0.011517967097461224,
- 0.07121194154024124,
- 0.00448246207088232,
- 0.0861973762512207,
- 0.017255937680602074,
- -0.059562984853982925,
- -0.04902314394712448,
- -0.011542539112269878,
- -0.07947186380624771,
- -0.05413002148270607,
- 0.037832967936992645,
- -0.032522380352020264,
- -0.004489526152610779,
- 0.046973615884780884,
- -0.013790922239422798,
- 0.0287352092564106,
- -0.04255093261599541,
- -0.047335509210824966,
- 0.05825963243842125,
- -0.09918661415576935,
- -0.008972245268523693,
- 0.12372294068336487,
- 0.13268114626407623,
- 0.032565511763095856,
- 3.1004368799548326e-33,
- -0.035748206079006195,
- -0.00488323112949729,
- -0.02061520330607891,
- 0.05096937343478203,
- 0.055623166263103485,
- -0.0033031851053237915,
- 0.047056276351213455,
- 0.051078103482723236,
- 0.019856464117765427,
- 0.04713713005185127,
- 0.01097532082349062,
- 0.01154407113790512,
- 0.0825532004237175,
- -0.008096552453935146,
- -0.07516250014305115,
- -0.004410994239151478,
- 0.10700947046279907,
- 0.037473537027835846,
- 0.03687435761094093,
- 0.07708914577960968,
- 0.024445943534374237,
- 0.006755421403795481,
- -0.14140163362026215,
- -0.021794017404317856,
- -0.08291728049516678,
- 0.027621714398264885,
- 0.043974414467811584,
- 0.042307641357183456,
- -0.07940522581338882,
- 0.0014347853139042854,
- -0.0225662998855114,
- -0.06953185051679611,
- 0.03518697991967201,
- 0.07514608651399612,
- -0.05779608339071274,
- 0.062090057879686356,
- -0.009117474779486656,
- -0.06279658526182175,
- -0.04939648509025574,
- -0.005915933754295111,
- 0.02563319355249405,
- -0.05248870328068733,
- 0.0265056062489748,
- 0.034152232110500336,
- 0.008622034452855587,
- 0.08109081536531448,
- 0.01209833100438118,
- 0.055523961782455444,
- -0.0675390362739563,
- -0.028115972876548767,
- 0.00021688676497433335,
- 0.06999985873699188,
- -0.00914623960852623,
- -0.06227320805191994,
- -0.025656115263700485,
- 0.03876679763197899,
- 0.023606201633810997,
- -0.06276094913482666,
- -0.04855172336101532,
- 0.051360003650188446,
- -0.006518272683024406,
- 0.003063054522499442,
- -0.013109910301864147,
- -0.007023762911558151,
- 0.050009019672870636,
- -0.018525132909417152,
- -0.012576498091220856,
- -0.0528143048286438,
- 0.018980031833052635,
- -0.019615892320871353,
- 0.06301242113113403,
- -0.013840490952134132,
- -0.032372262328863144,
- -0.04369337484240532,
- 0.027811197564005852,
- -0.11599725484848022,
- 0.00245426082983613,
- -0.057191234081983566,
- -0.01668672077357769,
- -0.04040598124265671,
- -0.12376794219017029,
- -0.032342080026865005,
- -0.0010337699204683304,
- -0.0020834438037127256,
- -0.01965048350393772,
- 0.04488794505596161,
- -0.016142118722200394,
- -0.01605643704533577,
- 0.015919595956802368,
- -0.009027292020618916,
- -0.045818526297807693,
- -0.03938688337802887,
- 0.038532666862010956,
- -0.0716133862733841,
- 0.013948395848274231,
- -1.2293539519703245e-8,
- -0.002209931146353483,
- 0.0006474045221693814,
- 0.06445478647947311,
- 0.032014258205890656,
- 0.08946742117404938,
- 0.09237894415855408,
- 0.029493557289242744,
- 0.009445051662623882,
- 0.021784894168376923,
- 0.0477692112326622,
- -0.01499477494508028,
- 0.06226528063416481,
- 0.09757892787456512,
- 0.03640689328312874,
- 0.06681204587221146,
- 0.06526172906160355,
- 0.036645956337451935,
- -0.017979206517338753,
- -0.0035211716312915087,
- -0.022930588573217392,
- -0.07534032315015793,
- 0.001378729590214789,
- -0.016759971156716347,
- 0.0410347655415535,
- -0.0317227765917778,
- 0.0038526810240000486,
- 0.00523984944447875,
- 0.06824570149183273,
- 0.005896451883018017,
- -0.012131981551647186,
- 0.010426695458590984,
- 0.05752802640199661,
- 0.005984334275126457,
- 0.01945258304476738,
- -0.042274173349142075,
- 0.013359436765313148,
- -0.011788742616772652,
- 0.050232406705617905,
- 0.06366527080535889,
- 0.025482693687081337,
- 0.02576383575797081,
- -0.02734513022005558,
- -0.027747945860028267,
- 0.028459781780838966,
- -0.14607568085193634,
- -0.040609829127788544,
- 0.0014502877602353692,
- -0.031711190938949585,
- -0.029172953218221664,
- -0.024847490713000298,
- 0.04367012530565262,
- -0.04420308768749237,
- -0.03861742466688156,
- 0.012186888605356216,
- 0.106642946600914,
- -0.03672076016664505,
- -0.01495721098035574,
- 0.03009076975286007,
- -0.08858004957437515,
- 0.10633997619152069,
- 0.147404745221138,
- -0.01546526700258255,
- 0.025503981858491898,
- -0.021894041448831558
- ]
- },
- {
- "keyword": "evolution",
- "type": "becomes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.09418878704309464,
- 0.05570625141263008,
- -0.030063802376389503,
- 0.08978016674518585,
- 0.012775130569934845,
- 0.02192539907991886,
- 0.03455636650323868,
- 0.002573777223005891,
- 0.055791765451431274,
- 0.04852528125047684,
- 0.03674852475523949,
- -0.0334956981241703,
- -0.03865405172109604,
- -0.0010422433260828257,
- -0.06115129962563515,
- 0.0001254796952707693,
- -0.07522990554571152,
- -0.05848526954650879,
- -0.08058208972215652,
- -0.03299443796277046,
- -0.016380298882722855,
- 0.0509275458753109,
- 0.032486412674188614,
- 0.006259192246943712,
- -0.08298774063587189,
- 0.051098644733428955,
- 0.010771501809358597,
- 0.029497699812054634,
- 0.09656048566102982,
- -0.13736270368099213,
- 0.017239172011613846,
- -0.008013132959604263,
- 0.030343376100063324,
- -0.019846461713314056,
- -0.05803104117512703,
- 0.0027014983352273703,
- -0.01099548302590847,
- -0.019480032846331596,
- 0.06914369016885757,
- -0.02413208596408367,
- -0.032580263912677765,
- -0.03434256091713905,
- -0.07388380914926529,
- -0.06124633923172951,
- 0.022140605375170708,
- 0.013146387413144112,
- -0.001942549948580563,
- 0.021915201097726822,
- -0.017295224592089653,
- -0.013768328353762627,
- -0.0859399288892746,
- -0.04878317192196846,
- -0.07560435682535172,
- -0.024163885042071342,
- 0.034010473638772964,
- 0.050473652780056,
- -0.04269375652074814,
- -0.04043009877204895,
- 0.042581893503665924,
- -0.09539403766393661,
- 0.050577666610479355,
- -0.028401290997862816,
- 0.00819842517375946,
- 0.08077209442853928,
- 0.10614598542451859,
- 0.026596616953611374,
- 0.0099062854424119,
- 0.05071014538407326,
- 0.013139202259480953,
- -0.017987143248319626,
- -0.002083293627947569,
- 0.056705400347709656,
- 0.0001302745076827705,
- 0.03955331817269325,
- 0.029433706775307655,
- 0.011184867471456528,
- 0.013188570737838745,
- 0.006159842014312744,
- 0.05532902851700783,
- -0.019628077745437622,
- 0.021293312311172485,
- -0.04023618623614311,
- -0.02244815230369568,
- 0.01652037538588047,
- 0.006163118407130241,
- -0.05436152592301369,
- 0.02025756612420082,
- -0.038920748978853226,
- -0.034535493701696396,
- 0.0797247365117073,
- -0.03548112139105797,
- 0.06195966154336929,
- 0.012156602926552296,
- -0.04900974780321121,
- -0.026213165372610092,
- 0.11387425661087036,
- -0.016499783843755722,
- -0.08025723695755005,
- 0.03922806680202484,
- 0.20380762219429016,
- -0.019069770351052284,
- 0.007213149685412645,
- -0.05684459209442139,
- 0.0631922036409378,
- 0.08724107593297958,
- -0.1115000993013382,
- -0.025832373648881912,
- -0.05732107162475586,
- 0.02008008025586605,
- 0.03111991286277771,
- -0.012131680734455585,
- 0.010016038082540035,
- -0.009125927463173866,
- 0.06313396245241165,
- -0.0067822616547346115,
- -0.0626257136464119,
- 0.03637224808335304,
- -0.005967587698251009,
- -0.015606477856636047,
- 0.05709845945239067,
- 0.02796175703406334,
- 0.012808775529265404,
- -0.09379175305366516,
- 0.04388994351029396,
- -0.043023575097322464,
- -0.08286052197217941,
- -0.09243867546319962,
- -5.425841314395745e-33,
- -0.010928621515631676,
- -0.10384098440408707,
- 0.03771210461854935,
- 0.03754890710115433,
- 0.045047931373119354,
- -0.010839940048754215,
- -0.05692669004201889,
- -0.08590445667505264,
- -0.03660038858652115,
- -0.01053778175264597,
- -0.1104545146226883,
- 0.030238043516874313,
- -0.03960750624537468,
- -0.013558769598603249,
- 0.03935113549232483,
- -0.010285641066730022,
- -0.0792129784822464,
- 0.06452478468418121,
- -0.004210277460515499,
- -0.017097482457756996,
- -0.016836438328027725,
- -0.0372128039598465,
- 0.044915519654750824,
- -0.03629022464156151,
- -0.006907477043569088,
- 0.005623220931738615,
- 0.02685363031923771,
- -0.08837379515171051,
- -0.011757023632526398,
- 0.004217834677547216,
- 0.01878657191991806,
- -0.015189417637884617,
- -0.06396826356649399,
- 0.04483220726251602,
- 0.006307442672550678,
- -0.058572620153427124,
- 0.05038537085056305,
- -0.07171826809644699,
- -0.031965240836143494,
- 0.007477456703782082,
- 0.008851143531501293,
- 0.037204187363386154,
- -0.0187371838837862,
- -0.09253255277872086,
- 0.07970630377531052,
- 0.04946370795369148,
- 0.14857085049152374,
- -0.018884817138314247,
- -0.03381086885929108,
- -0.0074672517366707325,
- -0.046201903373003006,
- -0.02773026004433632,
- 0.06029501557350159,
- -0.024363035336136818,
- 0.025089116767048836,
- -0.02841063402593136,
- -0.04713132977485657,
- 0.014687086455523968,
- -0.0688716322183609,
- -0.00404866598546505,
- 0.039626434445381165,
- 0.0530361533164978,
- 0.013805327005684376,
- -0.05967899411916733,
- 0.06930089741945267,
- -0.009160970337688923,
- 0.04137289151549339,
- -0.08677086234092712,
- 0.038916099816560745,
- 0.0020478309597820044,
- 0.021219005808234215,
- -0.049443889409303665,
- -0.040616538375616074,
- -0.009152504615485668,
- 0.012956738471984863,
- -0.027621200308203697,
- 0.06718724966049194,
- 0.022837016731500626,
- -0.0074939667247235775,
- -0.02417951449751854,
- -0.03643973171710968,
- -0.003196222707629204,
- -0.014186353422701359,
- -0.003018620889633894,
- 0.035184748470783234,
- 0.009331573732197285,
- 0.036606378853321075,
- -0.01922653242945671,
- 0.022955143824219704,
- 0.03231222555041313,
- -0.04159139469265938,
- -0.049587275832891464,
- 0.05772601440548897,
- -0.006095512770116329,
- -0.008512843400239944,
- 3.813523711916295e-33,
- -0.07634507864713669,
- -0.05166083201766014,
- -0.032474786043167114,
- 0.053244173526763916,
- 0.02150634117424488,
- 0.02086416259407997,
- -0.11760313808917999,
- 0.011264747940003872,
- -0.08083370327949524,
- -0.024710865691304207,
- 0.014823013916611671,
- 0.08881963044404984,
- 0.1453147828578949,
- -0.010340658947825432,
- -0.0018029464408755302,
- -0.041042231023311615,
- 0.08331286907196045,
- 0.02330482192337513,
- 0.037260305136442184,
- -0.05251782014966011,
- 0.02250887267291546,
- -0.025670593604445457,
- -0.04669835418462753,
- -0.047995880246162415,
- -0.019614258781075478,
- 0.10501943528652191,
- -0.016521669924259186,
- 0.07723483443260193,
- 0.003796026110649109,
- 0.060987502336502075,
- -0.052239809185266495,
- 0.0245947428047657,
- -0.03441592678427696,
- 0.01543613150715828,
- 0.006074676755815744,
- 0.11293288320302963,
- 0.035884272307157516,
- 0.10026479512453079,
- 0.044309306889772415,
- -0.03435622155666351,
- -0.013152501545846462,
- 0.027975453063845634,
- 0.008028071373701096,
- 0.07563267648220062,
- 0.07409313321113586,
- -0.014019506052136421,
- 0.061528243124485016,
- 0.052886463701725006,
- 0.007420251611620188,
- 0.04646635800600052,
- 0.033066101372241974,
- 0.0230079535394907,
- 0.023869100958108902,
- -0.12624743580818176,
- -0.0461004339158535,
- -0.02458598092198372,
- 0.0533946193754673,
- -0.030655797570943832,
- 0.0618455670773983,
- 0.07620908319950104,
- -0.03239354118704796,
- 0.018403856083750725,
- -0.022141940891742706,
- 0.08717981725931168,
- -0.06416024267673492,
- 0.024206817150115967,
- -0.005236213095486164,
- 0.022207384929060936,
- -0.05703319236636162,
- -0.011568988673388958,
- 0.067957304418087,
- -0.016354858875274658,
- -0.054294273257255554,
- -0.050539977848529816,
- 0.030449416488409042,
- 0.09761513769626617,
- -0.04703840613365173,
- 0.016207825392484665,
- 0.027195608243346214,
- -0.005506589543074369,
- -0.09285915642976761,
- -0.007568218745291233,
- 0.03076484426856041,
- 0.018530478700995445,
- -0.03952066972851753,
- -0.06379685550928116,
- -0.03574337065219879,
- 0.023251043632626534,
- 0.04836321249604225,
- 0.028142115101218224,
- -0.04359114542603493,
- -0.11069317162036896,
- -0.07126840204000473,
- -0.040592972189188004,
- -0.043396513909101486,
- -1.1541421152116982e-8,
- 0.044266313314437866,
- 0.018061116337776184,
- 0.11477052420377731,
- 0.04993630573153496,
- 0.12471813708543777,
- 0.11656749993562698,
- 0.0012341926340013742,
- 0.027643274515867233,
- -0.036284852772951126,
- -0.0024339628871530294,
- 0.009145788848400116,
- 0.06956562399864197,
- 0.10487303137779236,
- 0.12608271837234497,
- 0.07561539113521576,
- 0.0750969797372818,
- -0.057370346039533615,
- -0.04281387850642204,
- -0.03385917842388153,
- 0.0013280073180794716,
- -0.0052285464480519295,
- 0.011678488925099373,
- 0.007671392057090998,
- 0.00022792811796534806,
- -0.03957938030362129,
- -0.053818121552467346,
- -0.04824439063668251,
- -0.01061033084988594,
- 0.04503007233142853,
- -0.005570027977228165,
- -0.0077110049314796925,
- 0.06468795984983444,
- -0.03692016750574112,
- 0.0027100674342364073,
- -0.015796102583408356,
- -0.011318345554172993,
- -0.021983696147799492,
- -0.03066650964319706,
- 0.016759289428591728,
- -0.08020161092281342,
- 0.02028529718518257,
- 0.06009495630860329,
- 0.04862911254167557,
- -0.04050764814019203,
- -0.0166162196546793,
- -0.00848308950662613,
- 0.05890267714858055,
- -0.030162349343299866,
- -0.04115796089172363,
- 0.024502893909811974,
- -0.019870085641741753,
- -0.04901060834527016,
- -0.011048427782952785,
- -0.0347309410572052,
- 0.011857626028358936,
- -0.08332323282957077,
- 0.04157007485628128,
- -0.003713499056175351,
- -0.024730021134018898,
- 0.09538573771715164,
- 0.09201961755752563,
- 0.032297469675540924,
- 0.09496951848268509,
- -0.0035307405050843954
- ]
- },
- {
- "keyword": "modifies",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.02037772722542286,
- 0.039189375936985016,
- 0.030042408034205437,
- 0.04080300033092499,
- 0.03422633185982704,
- -0.03312037140130997,
- 0.1349380761384964,
- -0.02826847694814205,
- 0.015526867471635342,
- 0.01355634443461895,
- 0.017475923523306847,
- -0.046590518206357956,
- 0.040634866803884506,
- 0.004083737730979919,
- -0.028484225273132324,
- 0.0485878549516201,
- 0.025559330359101295,
- 0.07371331751346588,
- -0.16239973902702332,
- -0.026484599336981773,
- 0.032219048589468,
- 0.03873448446393013,
- -0.039017584174871445,
- 0.06788161396980286,
- 0.025525666773319244,
- 0.07792627066373825,
- -0.050493091344833374,
- 0.029117869213223457,
- 0.09416967630386353,
- -0.08317418396472931,
- -0.03121151775121689,
- -0.00018210141570307314,
- -0.02993304654955864,
- -0.056911274790763855,
- -0.013870518654584885,
- 0.07893069833517075,
- 0.017671791836619377,
- -0.035288818180561066,
- 0.027420759201049805,
- -0.03285835683345795,
- -0.004807350225746632,
- -0.09487801790237427,
- -0.030546443536877632,
- 0.004283228889107704,
- -0.025103924795985222,
- 0.039137717336416245,
- 0.05168275162577629,
- -0.0445806160569191,
- -0.001975760329514742,
- 0.02956276945769787,
- -0.001960448222234845,
- -0.021258821710944176,
- -0.03010910004377365,
- -0.02939581498503685,
- 0.05991344526410103,
- 0.03688710555434227,
- 0.06556633859872818,
- 0.022086746990680695,
- 0.07024866342544556,
- -0.048888154327869415,
- 0.04876263067126274,
- 0.06629708409309387,
- -0.06868372857570648,
- 0.034838251769542694,
- 0.035809192806482315,
- -0.027236200869083405,
- 0.10582981258630753,
- -0.025144429877400398,
- -0.00884076114743948,
- -0.06468215584754944,
- 0.09704640507698059,
- 0.0679822638630867,
- 0.05294176936149597,
- 0.013389515690505505,
- -0.028301117941737175,
- -0.0400078259408474,
- -0.03692535683512688,
- -0.041351962834596634,
- 0.07572472840547562,
- 0.03889012336730957,
- 0.009266557171940804,
- -0.05195813626050949,
- 0.05420464649796486,
- 0.030563557520508766,
- -0.003502928651869297,
- -0.07162285596132278,
- -0.031076820567250252,
- -0.0803518295288086,
- -0.04163861647248268,
- 0.05260534584522247,
- 0.007350057829171419,
- 0.03151280805468559,
- 0.028727520257234573,
- 0.005069047212600708,
- -0.09768468141555786,
- -0.02129284106194973,
- -0.039751432836055756,
- 0.0679917111992836,
- -0.07384807616472244,
- 0.22013573348522186,
- -0.05214080214500427,
- 0.11373709887266159,
- -0.09796956181526184,
- -0.08345099538564682,
- 0.012109975330531597,
- -0.05238872021436691,
- -0.05702213943004608,
- 0.03824909031391144,
- -0.020341122522950172,
- 0.07121534645557404,
- -0.00977481808513403,
- 0.022069454193115234,
- 0.07892153412103653,
- 0.03174390271306038,
- 0.026288796216249466,
- 0.009976137429475784,
- 0.015731705352663994,
- 0.017559455707669258,
- -0.055253803730010986,
- 0.04778436943888664,
- 0.03152652829885483,
- -0.014846861362457275,
- -0.018865663558244705,
- 0.06345082819461823,
- 0.0002796138287521899,
- -0.04145832359790802,
- -0.0179787315428257,
- -4.0363809104428925e-33,
- 0.0543210431933403,
- -0.03421775996685028,
- -0.0025163504760712385,
- 0.11822309345006943,
- -0.025605494156479836,
- 0.028824718669056892,
- -0.018570536747574806,
- -0.03875737264752388,
- -0.07779134809970856,
- -0.0269741453230381,
- -0.014724298380315304,
- 0.0586874820291996,
- -0.06028442829847336,
- 0.022007809951901436,
- 0.11396591365337372,
- -0.04999494552612305,
- 0.029189271852374077,
- 0.026105137541890144,
- -0.03484869748353958,
- -0.02063879556953907,
- -0.039243340492248535,
- 0.07586745917797089,
- -0.04037752002477646,
- 0.07983286678791046,
- 0.01219596341252327,
- -0.024652406573295593,
- 0.009431940503418446,
- 0.008677169680595398,
- 0.026541490107774734,
- 0.024994732812047005,
- 0.036845963448286057,
- 0.003756051417440176,
- -0.046275340020656586,
- -0.009875955991446972,
- -0.046155378222465515,
- -0.027296151965856552,
- 0.004748871084302664,
- -0.058326441794633865,
- -0.01065837312489748,
- -0.0676954835653305,
- 0.016241995617747307,
- 0.0439634770154953,
- -0.09125670045614243,
- -0.005136932712048292,
- 0.049682680517435074,
- 0.017701685428619385,
- 0.04311172664165497,
- 0.05899579077959061,
- -0.0034250563476234674,
- 0.009523284621536732,
- 0.01700177602469921,
- -0.020994985476136208,
- 0.053464531898498535,
- 0.024442771449685097,
- -0.02550382725894451,
- -0.02498503401875496,
- -0.010404950007796288,
- -0.018914876505732536,
- -0.008425790816545486,
- 0.02343655563890934,
- 0.026377087458968163,
- 0.037354812026023865,
- -0.07956377416849136,
- 0.07473654299974442,
- -0.010839201509952545,
- 0.0016346261836588383,
- 0.03334486484527588,
- -0.01676887646317482,
- 0.04407753050327301,
- 0.07007578015327454,
- -0.1052245944738388,
- -0.027486830949783325,
- 0.04314218461513519,
- 0.08978794515132904,
- -0.016926011070609093,
- -0.10449741780757904,
- -0.08275552839040756,
- 0.0030845615547150373,
- -0.046459708362817764,
- 0.022951392456889153,
- -0.007558953482657671,
- 0.03467770293354988,
- 0.04537001997232437,
- 0.02757439762353897,
- 0.11133270710706711,
- -0.043296754360198975,
- 0.013043739832937717,
- -0.08087518066167831,
- 0.007343183737248182,
- 0.06148857995867729,
- 0.007052446249872446,
- -0.03185710310935974,
- 0.0178549662232399,
- -0.0055750696919858456,
- -0.07424550503492355,
- 3.4394443079441955e-33,
- -0.03577113524079323,
- -0.0395883210003376,
- -0.0641142874956131,
- 0.08138850331306458,
- -0.016571279615163803,
- -0.0014001043746247888,
- -0.02362794615328312,
- -0.00320376455783844,
- -0.03937675803899765,
- -0.10499484091997147,
- 0.00674612820148468,
- -0.03595816344022751,
- 0.057227879762649536,
- 0.005723470821976662,
- -0.029123637825250626,
- -0.02959226444363594,
- 0.08503828942775726,
- 0.03977540507912636,
- -0.03644156455993652,
- 0.006370043382048607,
- -0.03952663019299507,
- 0.02404049038887024,
- 0.024973653256893158,
- -0.021827219054102898,
- 0.02049761638045311,
- -0.0008367515983991325,
- -0.08499715477228165,
- 0.09947273880243301,
- 0.12561188638210297,
- 0.0014806861290708184,
- 0.024078967049717903,
- -0.014026873745024204,
- -0.05791163817048073,
- -0.0303358007222414,
- 0.00249380967579782,
- 0.05221473425626755,
- 0.07465774565935135,
- 0.041585009545087814,
- -0.000036786499549634755,
- 0.012687010690569878,
- 0.02696683071553707,
- 0.02284294180572033,
- 0.027209319174289703,
- 0.15522810816764832,
- 0.05945124849677086,
- -0.036532867699861526,
- 0.022698726505041122,
- -0.03530710190534592,
- 0.04608782008290291,
- 0.002348904497921467,
- -0.04451451450586319,
- -0.030531561002135277,
- -0.03184639662504196,
- 0.010259258560836315,
- 0.027050403878092766,
- -0.0840737521648407,
- 0.003357705194503069,
- -0.015400022268295288,
- -0.028479699045419693,
- -0.04286139830946922,
- -0.043124403804540634,
- 0.08150433748960495,
- -0.030776256695389748,
- -0.004128399770706892,
- -0.007199021056294441,
- -0.02191232144832611,
- -0.03997144103050232,
- -0.00484075490385294,
- 0.10203143954277039,
- -0.013426536694169044,
- 0.008594388142228127,
- -0.06309901177883148,
- -0.08705507963895798,
- -0.06025797128677368,
- 0.0005999234272167087,
- -0.0994962826371193,
- -0.03109966777265072,
- 0.0638863816857338,
- 0.01165495254099369,
- -0.060308344662189484,
- -0.002375036245211959,
- -0.047123633325099945,
- 0.015562279149889946,
- -0.011652985587716103,
- -0.09272892028093338,
- -0.035707250237464905,
- 0.08248221129179001,
- 0.016741598024964333,
- -0.027256447821855545,
- 0.05784625560045242,
- -0.0249005313962698,
- 0.0008044961141422391,
- 0.049788109958171844,
- 0.00014163034211378545,
- -0.003393910126760602,
- -1.2653549319452395e-8,
- -0.0469273179769516,
- 0.057944413274526596,
- -0.032996147871017456,
- 0.029404891654849052,
- 0.07750251144170761,
- 0.0341486930847168,
- 0.00415707565844059,
- -0.03453861176967621,
- -0.022423556074500084,
- -0.06307146698236465,
- 0.045310668647289276,
- -0.027952909469604492,
- 0.044856514781713486,
- 0.020596051588654518,
- 0.0911770761013031,
- 0.011270951479673386,
- -0.06763400137424469,
- 0.026013758033514023,
- -0.08318756520748138,
- 0.08824670314788818,
- -0.09726276993751526,
- -0.04061161354184151,
- 0.01355038769543171,
- 0.009058031253516674,
- 0.02246174030005932,
- -0.04212918132543564,
- -0.012677093036472797,
- -0.007928258739411831,
- -0.00458064628764987,
- 0.09441467374563217,
- -0.014432084746658802,
- 0.06422199308872223,
- -0.0041121188551187515,
- -0.019245874136686325,
- -0.1350107640028,
- -0.0677202120423317,
- -0.00639937212690711,
- 0.008768894709646702,
- 0.02004050835967064,
- 0.030565781518816948,
- -0.015622750855982304,
- -0.035079993307590485,
- -0.01798289082944393,
- 0.05190131813287735,
- -0.007849391549825668,
- -0.04678314924240112,
- 0.06695599853992462,
- -0.07455839961767197,
- -0.07450252026319504,
- -0.08733857423067093,
- 0.03140803426504135,
- 0.01349888276308775,
- 0.06044755503535271,
- 0.035698793828487396,
- -0.008805420249700546,
- 0.041747018694877625,
- 0.0024922159500420094,
- 0.09955129772424698,
- 0.04072192311286926,
- 0.03261489048600197,
- 0.06463364511728287,
- 0.03395097702741623,
- 0.08865164965391159,
- -0.11319660395383835
- ]
- },
- {
- "keyword": "updates",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.08459162712097168,
- -0.024633469060063362,
- 0.023381004109978676,
- -0.012573454529047012,
- 0.0017869318835437298,
- -0.014901469461619854,
- 0.061381928622722626,
- -0.025654396042227745,
- -0.02340622991323471,
- 0.0702321007847786,
- 0.010902035981416702,
- 0.011363569647073746,
- -0.04420220106840134,
- -0.040157392621040344,
- 0.012768126092851162,
- 0.06818244606256485,
- 0.0372793972492218,
- 0.023653164505958557,
- -0.11507407575845718,
- -0.019840478897094727,
- -0.19045937061309814,
- -0.04173681139945984,
- -0.013185562565922737,
- 0.06435481458902359,
- -0.011404748074710369,
- 0.060981594026088715,
- -0.05496540665626526,
- -0.016313618049025536,
- -0.006998176220804453,
- -0.10248543322086334,
- -0.03318925201892853,
- -0.016173409298062325,
- 0.09566325694322586,
- -0.05232860893011093,
- 0.002761300653219223,
- -0.05444968119263649,
- 0.045530401170253754,
- 0.038554828613996506,
- 0.02445031702518463,
- 0.0015171637060120702,
- -0.005306454375386238,
- -0.054812733083963394,
- -0.011393310502171516,
- 0.03965037688612938,
- 0.01426304504275322,
- 0.0279860720038414,
- -0.008633009158074856,
- 0.02379104122519493,
- 0.02108767256140709,
- 0.013393919914960861,
- 0.006016720086336136,
- -0.04896793141961098,
- -0.02811564691364765,
- -0.0004180418327450752,
- 0.03656183183193207,
- 0.020174216479063034,
- 0.0013185122516006231,
- 0.1182604730129242,
- 0.03588317334651947,
- 0.0029071287717670202,
- 0.1069493219256401,
- -0.007258695550262928,
- -0.03003695048391819,
- 0.09566950798034668,
- -0.040143635123968124,
- -0.04102225601673126,
- 0.006178972311317921,
- -0.07259607315063477,
- -0.020858341827988625,
- -0.09231720119714737,
- -0.06686501950025558,
- 0.12787552177906036,
- -0.009073618799448013,
- -0.1079036220908165,
- -0.0021716677583754063,
- 0.01304640807211399,
- 0.05326355621218681,
- -0.0351661778986454,
- 0.09858842939138412,
- -0.05074095353484154,
- -0.002332364208996296,
- -0.07533679157495499,
- -0.04416778311133385,
- -0.05614805966615677,
- 0.058410581201314926,
- -0.04101651906967163,
- 0.05480427294969559,
- 0.009312167763710022,
- -0.04060646891593933,
- -0.005202958360314369,
- 0.01861768774688244,
- -0.003499408718198538,
- 0.12994691729545593,
- -0.006565056275576353,
- -0.07615847140550613,
- 0.07654791325330734,
- -0.004545689094811678,
- 0.004913622513413429,
- -0.11772909015417099,
- 0.2671147584915161,
- 0.022249551489949226,
- 0.04179709777235985,
- 0.01005813479423523,
- -0.008187385275959969,
- -0.021112769842147827,
- 0.019055625423789024,
- -0.024623790755867958,
- 0.07055830955505371,
- -0.0041869874112308025,
- -0.03874117136001587,
- -0.0012784090358763933,
- -0.010288042947649956,
- -0.03438013046979904,
- -0.0650644600391388,
- -0.08208749443292618,
- -0.06586865335702896,
- 0.022867120802402496,
- 0.08003076165914536,
- -0.042049698531627655,
- 0.012290042825043201,
- 0.08605370670557022,
- -0.03152160719037056,
- -0.011531575582921505,
- -0.031417038291692734,
- -0.069485604763031,
- -0.03756040334701538,
- 0.0547056645154953,
- -4.392420516891701e-33,
- 0.03640690818428993,
- 0.014442912302911282,
- 0.009086105041205883,
- 0.057563308626413345,
- -0.0012893270468339324,
- -0.012549673207104206,
- 0.012876906432211399,
- -0.08516334742307663,
- 0.03158847987651825,
- -0.046777911484241486,
- -0.02726927399635315,
- 0.08804266154766083,
- -0.041199494153261185,
- 0.01546032726764679,
- 0.05108368769288063,
- -0.07763069868087769,
- 0.046823900192976,
- 0.06131446361541748,
- -0.0003297390358056873,
- 0.004883867222815752,
- 0.030179070308804512,
- -0.05267668142914772,
- -0.024470744654536247,
- 0.022908560931682587,
- 0.0396459698677063,
- 0.05028418079018593,
- -0.009345537051558495,
- 0.00030039899866096675,
- 0.01698799431324005,
- 0.020794609561562538,
- 0.015856895595788956,
- 0.03786129131913185,
- 0.00042534913518466055,
- -0.011377708055078983,
- -0.0387834757566452,
- -0.009362570010125637,
- -0.04752690717577934,
- -0.0589027926325798,
- 0.023163119331002235,
- -0.07553054392337799,
- 0.04120590165257454,
- 0.002012780401855707,
- -0.092257060110569,
- -0.011424589902162552,
- 0.06021680310368538,
- -0.017017416656017303,
- -0.0012589260004460812,
- 0.024719780310988426,
- 0.0367794893682003,
- 0.002517477609217167,
- -0.016630209982395172,
- 0.005619539879262447,
- -0.10681868344545364,
- -0.02703382633626461,
- -0.06323707103729248,
- -0.00209735706448555,
- 0.008769248612225056,
- -0.03795669972896576,
- 0.08226560801267624,
- 0.004740393254905939,
- 0.10585186630487442,
- 0.0059968275018036366,
- -0.015141160227358341,
- -0.03977585956454277,
- -0.052284929901361465,
- 0.03482899069786072,
- 0.04153561592102051,
- -0.05663469433784485,
- 0.034402988851070404,
- 0.015852641314268112,
- -0.08553968369960785,
- 0.021331381052732468,
- 0.032338134944438934,
- 0.0657392144203186,
- -0.00015491462545469403,
- -0.010309331119060516,
- -0.059549495577812195,
- 0.0013822579057887197,
- -0.08717889338731766,
- 0.02852688916027546,
- 0.024827031418681145,
- -0.015814919024705887,
- -0.03815455362200737,
- 0.09721099585294724,
- 0.05532195046544075,
- 0.0636206641793251,
- -0.0322473980486393,
- 0.07845290750265121,
- -0.01701103150844574,
- 0.0713520497083664,
- -0.0584513358771801,
- 0.0017653079703450203,
- 0.0023115812800824642,
- -0.008210058324038982,
- -0.012576451525092125,
- 3.534890408469134e-33,
- -0.0822654515504837,
- -0.029689669609069824,
- -0.07941414415836334,
- 0.02210906334221363,
- -0.0375022329390049,
- -0.06531582772731781,
- -0.03377813100814819,
- 0.08915850520133972,
- 0.03261832892894745,
- -0.01592680811882019,
- -0.01851835288107395,
- 0.018508467823266983,
- -0.02847088687121868,
- -0.01877537928521633,
- 0.0006648959242738783,
- 0.01966043934226036,
- 0.08472833782434464,
- -0.03498862683773041,
- -0.05723145231604576,
- 0.02272341027855873,
- -0.08399349451065063,
- -0.023400066420435905,
- -0.07788056880235672,
- 0.030511753633618355,
- -0.03113187849521637,
- 0.034427594393491745,
- 0.04052979499101639,
- 0.07180334627628326,
- 0.010728982277214527,
- 0.00961391068994999,
- 0.047730702906847,
- -0.08566494286060333,
- -0.04373469948768616,
- 0.009951616637408733,
- 0.027355294674634933,
- 0.06156521290540695,
- 0.1231844425201416,
- -0.039572179317474365,
- -0.02892124652862549,
- 0.023823361843824387,
- 0.09076115489006042,
- 0.006223974749445915,
- 0.02061225287616253,
- 0.11335796117782593,
- 0.06962325423955917,
- 0.03588646650314331,
- -0.029241684824228287,
- 0.05807575583457947,
- -0.06961241364479065,
- -0.009262843057513237,
- -0.009156238287687302,
- -0.01449247170239687,
- -0.0176030732691288,
- 0.0005019721575081348,
- 0.04174046963453293,
- -0.004481966607272625,
- -0.037172406911849976,
- 0.046055130660533905,
- 0.012616930529475212,
- 0.009736736305058002,
- -0.034059420228004456,
- 0.1190255731344223,
- -0.05162699893116951,
- -0.031706616282463074,
- -0.04057006537914276,
- 0.08388638496398926,
- -0.032576367259025574,
- -0.06409934908151627,
- 0.060123179107904434,
- 0.041440848261117935,
- 0.0016783160390332341,
- -0.05416430905461311,
- -0.036265887320041656,
- -0.06443825364112854,
- 0.013796813786029816,
- -0.05750604718923569,
- -0.04562080651521683,
- -0.018714459612965584,
- 0.01060475129634142,
- -0.0194501094520092,
- -0.03296796604990959,
- -0.03522363677620888,
- 0.05609945207834244,
- 0.06260914355516434,
- 0.018518200144171715,
- -0.01023375429213047,
- 0.10242089629173279,
- 0.0030198346357792616,
- 0.03875124454498291,
- -0.08263286203145981,
- -0.035200994461774826,
- 0.018432896584272385,
- -0.06499355286359787,
- 0.028699766844511032,
- -0.01440981961786747,
- -1.329823628992699e-8,
- -0.01761224865913391,
- 0.05414026603102684,
- -0.076365627348423,
- 0.05976029485464096,
- 0.0972757488489151,
- 0.01018875278532505,
- -0.06407973915338516,
- -0.008799679577350616,
- -0.0013738424750044942,
- -0.025432458147406578,
- 0.007916227914392948,
- 0.011232366785407066,
- 0.03669004887342453,
- 0.0459233783185482,
- 0.12545166909694672,
- 0.022745424881577492,
- -0.07451100647449493,
- 0.02263614349067211,
- -0.03639981895685196,
- -0.05396043136715889,
- -0.03073938749730587,
- 0.019806092604994774,
- 0.10249456763267517,
- -0.038935884833335876,
- 0.07315237820148468,
- -0.061712320894002914,
- 0.050368279218673706,
- 0.06929180026054382,
- 0.02265021950006485,
- -0.03418317064642906,
- 0.03510548174381256,
- 0.006770037580281496,
- 0.039696529507637024,
- -0.008119733072817326,
- 0.0772448480129242,
- -0.022907348349690437,
- 0.018374484032392502,
- 0.006758755072951317,
- 0.07190519571304321,
- 0.05278204008936882,
- 0.0263951625674963,
- -0.07149770855903625,
- 0.06495794653892517,
- 0.01707756146788597,
- -0.07156208157539368,
- -0.01643725298345089,
- -0.012072729878127575,
- -0.08469836413860321,
- -0.051309481263160706,
- -0.025034833699464798,
- -0.029153116047382355,
- 0.02658049762248993,
- 0.03846079483628273,
- 0.009851408191025257,
- 0.05947725847363472,
- -0.01161519531160593,
- 0.0007908071274869144,
- -0.051113683730363846,
- 0.021766426041722298,
- 0.02438468486070633,
- 0.044359758496284485,
- -0.038895633071660995,
- 0.013285028748214245,
- -0.002119542798027396
- ]
- },
- {
- "keyword": "changes",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.039217595010995865,
- 0.060730256140232086,
- 0.02516564540565014,
- -0.02459598518908024,
- 0.03542182594537735,
- 0.0011111346539109945,
- 0.02692010998725891,
- -0.029994571581482887,
- -0.017581572756171227,
- 0.03904768452048302,
- 0.021446414291858673,
- -0.032920952886343,
- -0.06897776573896408,
- -0.0015540329040959477,
- -0.042801473289728165,
- -0.011886810883879662,
- 0.013500361703336239,
- 0.04050511121749878,
- -0.1034894809126854,
- 0.007142516318708658,
- -0.08664974570274353,
- 0.025955239310860634,
- -0.019649751484394073,
- 0.010937230661511421,
- -0.03405866399407387,
- 0.04196443781256676,
- -0.02172900177538395,
- 0.08938904851675034,
- 0.055451225489377975,
- -0.169324591755867,
- -0.00581863708794117,
- 0.06316864490509033,
- 0.09011008590459824,
- -0.02425859123468399,
- -0.04501096531748772,
- -0.0003197754849679768,
- 0.047193385660648346,
- 0.061382148414850235,
- -0.004836210049688816,
- -0.02713325433433056,
- 0.00584627129137516,
- -0.1043277159333229,
- -0.04875171557068825,
- 0.004098885226994753,
- -0.0019841266330331564,
- 0.043960776180028915,
- 0.015789473429322243,
- 0.013792360201478004,
- -0.02151411771774292,
- 0.04179810732603073,
- 0.0025279156398028135,
- -0.0295050460845232,
- -0.01077763456851244,
- -0.03169156610965729,
- 0.038831014186143875,
- -0.0032766645308583975,
- 0.01905810832977295,
- 0.10846452414989471,
- 0.0627158060669899,
- -0.02955285832285881,
- 0.1223582923412323,
- 0.04644932225346565,
- -0.038894180208444595,
- 0.06705161184072495,
- 0.01742137409746647,
- -0.007811427116394043,
- -0.010898306034505367,
- -0.014565511606633663,
- -0.029525967314839363,
- -0.04751662537455559,
- 0.013737212866544724,
- 0.1176525130867958,
- 0.01102787721902132,
- -0.08557798713445663,
- 0.03087587282061577,
- -0.025399653241038322,
- -0.029142029583454132,
- -0.004572780802845955,
- 0.058362580835819244,
- -0.05974366143345833,
- 0.04945860058069229,
- -0.014255128800868988,
- -0.06264501810073853,
- -0.013514935038983822,
- 0.020229758694767952,
- -0.017430860549211502,
- 0.009813835844397545,
- -0.05340322107076645,
- -0.06911246478557587,
- -0.012966510839760303,
- 0.058420050889253616,
- 0.046698588877916336,
- 0.06273533403873444,
- -0.02605876326560974,
- -0.08516392856836319,
- 0.02223997563123703,
- -0.016167636960744858,
- 0.028753934428095818,
- 0.06795676797628403,
- 0.2896275222301483,
- -0.0004279345739632845,
- 0.04281960427761078,
- 0.010301051661372185,
- 0.015426352620124817,
- -0.014392001554369926,
- 0.0006408505723811686,
- 0.0030158041045069695,
- 0.05673527717590332,
- -0.034217920154333115,
- 0.014523854479193687,
- 0.03508683666586876,
- 0.0008198628784157336,
- -0.05854389816522598,
- -0.013573567382991314,
- -0.011711237952113152,
- -0.0437837615609169,
- -0.002736717462539673,
- 0.037740591913461685,
- -0.06005916744470596,
- 0.01327500119805336,
- 0.05662083625793457,
- -0.011662784963846207,
- -0.01355515606701374,
- -0.02091863565146923,
- -0.11039755493402481,
- 0.0417674295604229,
- 0.02158714085817337,
- -4.130497600325448e-33,
- 0.02601991966366768,
- -0.0377713106572628,
- 0.0013442868366837502,
- 0.10190562158823013,
- 0.023064984008669853,
- 0.01619439758360386,
- 0.0012016389518976212,
- -0.04749404266476631,
- -0.006712027359753847,
- -0.0526503287255764,
- 0.08343957364559174,
- 0.07700400799512863,
- -0.023845097050070763,
- -0.012877995148301125,
- 0.13027359545230865,
- -0.09369442611932755,
- 0.004054558929055929,
- 0.010287115350365639,
- 0.04285631328821182,
- 0.01490687020123005,
- -0.10694096982479095,
- 0.112637959420681,
- -0.011585421860218048,
- 0.021453624591231346,
- 0.00004707775588030927,
- 0.03573237359523773,
- -0.030286669731140137,
- -0.032015904784202576,
- -0.020475871860980988,
- -0.009150448255240917,
- -0.0061654746532440186,
- 0.003280675271525979,
- -0.02741684578359127,
- 0.025444071739912033,
- -0.023306692019104958,
- -0.013197422958910465,
- -0.00588799687102437,
- -0.09301314502954483,
- 0.001314555644057691,
- -0.07874088734388351,
- -0.017190298065543175,
- -0.003793929936364293,
- -0.0980454534292221,
- 0.0036846324801445007,
- 0.006680329330265522,
- 0.0723622739315033,
- 0.05829877778887749,
- 0.022773107513785362,
- 0.002542626578360796,
- -0.010123987682163715,
- -0.016549663618206978,
- 0.030289871618151665,
- -0.06126215308904648,
- -0.006163210608065128,
- -0.014843448996543884,
- -0.008176106959581375,
- 0.018472233787178993,
- -0.04781189560890198,
- 0.03913542628288269,
- -0.00573140662163496,
- 0.11711343377828598,
- 0.06013917177915573,
- 0.008326168172061443,
- -0.01041316892951727,
- 0.014759255573153496,
- 0.058467913419008255,
- 0.04251222312450409,
- -0.03663213551044464,
- -0.01989123970270157,
- 0.012612735852599144,
- -0.12006767094135284,
- 0.0017469184240326285,
- 0.06800653040409088,
- 0.08859579265117645,
- -0.026933740824460983,
- -0.03375266119837761,
- -0.05461232736706734,
- 0.029615387320518494,
- -0.03173099458217621,
- -0.042098112404346466,
- -0.007761868182569742,
- 0.05615466460585594,
- 0.0022657979279756546,
- 0.01940566673874855,
- 0.08486494421958923,
- -0.03279823437333107,
- 0.03645998612046242,
- -0.001892880885861814,
- -0.008886745199561119,
- 0.0341465026140213,
- -0.058936234563589096,
- -0.020578909665346146,
- 0.05905594304203987,
- 0.012397175654768944,
- 0.017010757699608803,
- 3.46005623404388e-33,
- -0.17135702073574066,
- -0.02240155078470707,
- -0.029322456568479538,
- 0.11634155362844467,
- -0.008709652349352837,
- -0.01993640698492527,
- 0.06100638583302498,
- 0.05141282081604004,
- 0.06366053968667984,
- -0.0006092882831580937,
- 0.02860812097787857,
- -0.050719115883111954,
- -0.03757219389081001,
- 0.009883115999400616,
- -0.011594878509640694,
- 0.01449265331029892,
- 0.038677655160427094,
- -0.0397883839905262,
- -0.015952618792653084,
- 0.02581065706908703,
- -0.047118205577135086,
- 0.03543034568428993,
- -0.0390499047935009,
- 0.011731166392564774,
- -0.023044215515255928,
- 0.025697093456983566,
- 0.03951311856508255,
- 0.06949872523546219,
- 0.003928970545530319,
- -0.11705319583415985,
- 0.017002157866954803,
- 0.013145812787115574,
- -0.09665371477603912,
- 0.07268506288528442,
- -0.03639313951134682,
- -0.0042347111739218235,
- 0.015110766515135765,
- -0.0414884053170681,
- -0.04945247992873192,
- 0.03028765507042408,
- 0.055263034999370575,
- 0.0019443915225565434,
- 0.06018897891044617,
- 0.11515102535486221,
- 0.026984497904777527,
- 0.05724295601248741,
- -0.056977782398462296,
- 0.029968587681651115,
- -0.0267822053283453,
- -0.037339162081480026,
- -0.009561648592352867,
- -0.01114651933312416,
- 0.020070072263479233,
- -0.0007580152014270425,
- 0.0046499320305883884,
- 0.04146688058972359,
- 0.0033492089714854956,
- -0.07374917715787888,
- 0.01942901499569416,
- 0.00880883913487196,
- -0.056089118123054504,
- 0.03969168663024902,
- -0.0745132640004158,
- 0.035263508558273315,
- -0.0008990705828182399,
- 0.048125263303518295,
- -0.0496305376291275,
- -0.02053011953830719,
- 0.08697240799665451,
- 0.020930727943778038,
- -0.026461279019713402,
- -0.15499627590179443,
- -0.05156516656279564,
- -0.05614721402525902,
- -0.016841933131217957,
- -0.08424127846956253,
- -0.08402442187070847,
- -0.006384000182151794,
- -0.020032823085784912,
- -0.05241017788648605,
- -0.04295314475893974,
- -0.074882872402668,
- -0.039820168167352676,
- 0.02651226334273815,
- -0.028736764565110207,
- 0.06545949727296829,
- -0.011413787491619587,
- 0.07223380357027054,
- 0.015629488974809647,
- 0.011505850590765476,
- -0.014443940483033657,
- 0.0379759855568409,
- -0.013566944748163223,
- 0.05278777331113815,
- -0.02466093748807907,
- -1.3141599808363935e-8,
- -0.006616391707211733,
- 0.0634898915886879,
- -0.030290475115180016,
- 0.08059175312519073,
- 0.03710593655705452,
- -0.011971751227974892,
- -0.01545918732881546,
- 0.03419828042387962,
- 0.02125234156847,
- 0.04577000066637993,
- 0.0020011495798826218,
- 0.05624641850590706,
- 0.07002909481525421,
- 0.044572614133358,
- 0.046131107956171036,
- -0.03207312524318695,
- -0.0926976352930069,
- -0.004547848366200924,
- -0.011289684101939201,
- -0.022605275735259056,
- -0.12629665434360504,
- 0.0255007054656744,
- 0.002990072127431631,
- 0.015686415135860443,
- 0.02519102394580841,
- -0.062125906348228455,
- -0.004171575419604778,
- 0.08720610290765762,
- -0.022857768461108208,
- -0.02718571573495865,
- 0.02872837521135807,
- 0.04697892814874649,
- 0.02557641640305519,
- 0.022032592445611954,
- -0.010825344361364841,
- -0.06823331862688065,
- -0.07625367492437363,
- -0.0385647714138031,
- 0.05792171508073807,
- 0.046699732542037964,
- 0.027771763503551483,
- -0.05581637844443321,
- -0.020722439512610435,
- 0.00812874361872673,
- -0.12662486732006073,
- -0.026552915573120117,
- 0.05321158841252327,
- -0.03831382468342781,
- -0.024153145030140877,
- -0.07408789545297623,
- 0.03474826365709305,
- 0.06703779101371765,
- 0.028737768530845642,
- 0.010291391983628273,
- 0.1293979436159134,
- 0.01871418207883835,
- 0.021511796861886978,
- 0.0016192366601899266,
- 0.026585739105939865,
- 0.03264504298567772,
- 0.13189047574996948,
- -0.05498885363340378,
- 0.04623885825276375,
- 0.01361403800547123
- ]
- },
- {
- "keyword": "edits",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07116960734128952,
- 0.05154784023761749,
- 0.021739700809121132,
- 0.05424926057457924,
- -0.004162028897553682,
- 0.013605362735688686,
- -0.024090265855193138,
- 0.027563177049160004,
- -0.00046477123396471143,
- 0.09447915852069855,
- -0.01844293810427189,
- -0.01135481521487236,
- -0.013865713030099869,
- -0.025177937000989914,
- -0.0638633742928505,
- -0.04576248675584793,
- -0.00804426521062851,
- 0.04388099163770676,
- -0.12842783331871033,
- -0.03272702544927597,
- -0.14727254211902618,
- 0.046476803719997406,
- -0.0001911171420942992,
- 0.03846147656440735,
- 0.00042750267311930656,
- 0.038944050669670105,
- -0.03833288699388504,
- 0.06319291144609451,
- 0.015578498132526875,
- -0.11991777271032333,
- -0.016123704612255096,
- 0.025861775502562523,
- 0.1159435585141182,
- -0.011976247653365135,
- -0.08281473070383072,
- 0.05240807309746742,
- 0.07834722846746445,
- 0.06683924049139023,
- 0.02279563993215561,
- -0.07464826107025146,
- 0.015224186703562737,
- -0.1103479266166687,
- -0.012275446206331253,
- 0.008803614415228367,
- 0.01955495961010456,
- 0.011421817354857922,
- 0.04227861389517784,
- -0.03397194296121597,
- -0.007382165174931288,
- 0.03227870911359787,
- -0.017443984746932983,
- -0.019799629226326942,
- -0.04364020377397537,
- 0.03300606086850166,
- -0.024457715451717377,
- -0.01751808077096939,
- 0.03588688373565674,
- 0.0676870122551918,
- 0.05683831498026848,
- -0.11725112795829773,
- 0.11099591106176376,
- -0.007571917958557606,
- -0.05087939277291298,
- 0.06580111384391785,
- 0.050269074738025665,
- 0.0032447720877826214,
- -0.026340292766690254,
- 0.10418417304754257,
- -0.057388775050640106,
- -0.07197842001914978,
- 0.03684839978814125,
- 0.051728907972574234,
- -0.05617647245526314,
- 0.056171923875808716,
- -0.016277117654681206,
- 0.012990962713956833,
- -0.01750551350414753,
- -0.02316601388156414,
- 0.01749049872159958,
- -0.03965335339307785,
- 0.026455968618392944,
- -0.030005287379026413,
- -0.06518539786338806,
- -0.03279479220509529,
- 0.0628904178738594,
- -0.006343720480799675,
- 0.0010801899479702115,
- -0.03645690903067589,
- -0.01732923835515976,
- 0.031269412487745285,
- 0.006582951173186302,
- -0.06493768095970154,
- 0.0828046202659607,
- -0.03803084045648575,
- -0.07253634184598923,
- -0.012150968424975872,
- -0.026127604767680168,
- 0.02665260061621666,
- -0.0011293161660432816,
- 0.22249922156333923,
- 0.021601201966404915,
- 0.017585448920726776,
- 0.005677677225321531,
- 0.07981270551681519,
- -0.008481733500957489,
- -0.017787039279937744,
- -0.09607410430908203,
- 0.0532454177737236,
- 0.014774484559893608,
- -0.04727477207779884,
- -0.002816036343574524,
- -0.013887804001569748,
- -0.03607926517724991,
- -0.028486285358667374,
- -0.02961028553545475,
- 0.003991301171481609,
- 0.0426814965903759,
- 0.03562185540795326,
- 0.025577420368790627,
- 0.015647221356630325,
- 0.018205152824521065,
- -0.000059349360526539385,
- 0.031794365495443344,
- 0.05888601392507553,
- -0.12880155444145203,
- -0.04919293895363808,
- -0.027214588597416878,
- -1.0081262712907602e-33,
- 0.061552323400974274,
- -0.031577300280332565,
- -0.042386751621961594,
- 0.05943509563803673,
- -0.036776065826416016,
- 0.012860230170190334,
- 0.018781039863824844,
- -0.03945206105709076,
- -0.005712669808417559,
- 0.011687028221786022,
- 0.015240056440234184,
- 0.05084369331598282,
- 0.017329076305031776,
- 0.04878080263733864,
- 0.12449513375759125,
- 0.0489959642291069,
- 0.0022445230279117823,
- 0.08160553872585297,
- -0.02301058918237686,
- -0.011778573505580425,
- -0.04593339189887047,
- 0.017626944929361343,
- 0.01006822008639574,
- 0.05274566635489464,
- -0.03332851827144623,
- 0.022256746888160706,
- 0.009857391938567162,
- -0.01502169668674469,
- 0.08335895836353302,
- -0.010577415116131306,
- 0.019224144518375397,
- 0.022401943802833557,
- -0.0007763474714010954,
- 0.002439660020172596,
- -0.026824606582522392,
- -0.025197865441441536,
- 0.06727518886327744,
- -0.10698925703763962,
- 0.039267055690288544,
- -0.07817962765693665,
- -0.028296882286667824,
- 0.012159550562500954,
- -0.09825876355171204,
- -0.05206410214304924,
- -0.043109044432640076,
- 0.08786000311374664,
- 0.019738193601369858,
- 0.03218391537666321,
- -0.037887051701545715,
- 0.027133462950587273,
- 0.04460548609495163,
- 0.05475520342588425,
- -0.001595855806954205,
- 0.021707283332943916,
- -0.020192593336105347,
- 0.018737047910690308,
- 0.07153593748807907,
- -0.11849749833345413,
- 0.027625294402241707,
- 0.03595772758126259,
- 0.06875686347484589,
- 0.08701872825622559,
- -0.0024120251182466745,
- -0.05210880562663078,
- -0.06971114873886108,
- 0.009232763200998306,
- 0.009898738004267216,
- -0.028645791113376617,
- 0.06862900406122208,
- -0.07165858894586563,
- -0.14708176255226135,
- -0.0020425752736628056,
- 0.05738450586795807,
- 0.06016526743769646,
- 0.04119735583662987,
- -0.05175140127539635,
- 0.015046157874166965,
- 0.058577265590429306,
- -0.014766579493880272,
- 0.027530638501048088,
- 0.04689383879303932,
- -0.022287432104349136,
- -0.0293525829911232,
- 0.08606627583503723,
- 0.030727429315447807,
- -0.08581887930631638,
- -0.04340531677007675,
- 0.014992414973676205,
- 0.03193356841802597,
- 0.029392117634415627,
- -0.07279125601053238,
- -0.02796553075313568,
- 0.0275283120572567,
- 0.01606033742427826,
- -0.01296815276145935,
- 1.1239669232959772e-33,
- -0.14897479116916656,
- -0.03975020349025726,
- -0.03537578508257866,
- 0.050330281257629395,
- -0.013934084214270115,
- -0.011040588840842247,
- 0.009219375438988209,
- 0.044092487543821335,
- 0.061149872839450836,
- -0.040866635739803314,
- -0.02070707641541958,
- -0.009607781656086445,
- 0.015368117019534111,
- 0.017949488013982773,
- -0.03291156515479088,
- -0.054189957678318024,
- 0.04558786004781723,
- -0.04567386582493782,
- -0.05562221258878708,
- -0.017676500603556633,
- -0.04904191941022873,
- 0.042484987527132034,
- 0.07600194960832596,
- 0.01951299048960209,
- 0.017559824511408806,
- 0.0649651288986206,
- 0.009611809626221657,
- 0.03671949729323387,
- -0.04580799117684364,
- -0.03417940437793732,
- -0.019050242379307747,
- 0.015380383469164371,
- -0.08763445913791656,
- 0.012709724716842175,
- 0.009596679359674454,
- 0.041437480598688126,
- 0.04635290428996086,
- -0.007889906875789165,
- -0.028546467423439026,
- -0.021425947546958923,
- 0.10086735337972641,
- 0.010081321001052856,
- 0.04853919893503189,
- 0.12143648415803909,
- -0.028189703822135925,
- -0.017588941380381584,
- -0.10172752290964127,
- 0.04784328117966652,
- 0.011162446811795235,
- -0.023616889491677284,
- -0.08055144548416138,
- 0.010372128337621689,
- -0.07725617289543152,
- -0.0025470489636063576,
- 0.02572805993258953,
- -0.03270948305726051,
- -0.02503902092576027,
- 0.02189173921942711,
- 0.0635555163025856,
- -0.05331314727663994,
- -0.05801304057240486,
- 0.10637988895177841,
- -0.04357990249991417,
- -0.015566370449960232,
- 0.016996825113892555,
- 0.011296503245830536,
- -0.05912235751748085,
- -0.038535621017217636,
- 0.0413055382668972,
- 0.03977780044078827,
- 0.030746346339583397,
- -0.014488901011645794,
- -0.020718218758702278,
- 0.007153444457799196,
- 0.008587137795984745,
- -0.09335613250732422,
- -0.0906553864479065,
- 0.009684762917459011,
- 0.0035079859662801027,
- -0.12642541527748108,
- -0.01653016358613968,
- -0.049825239926576614,
- 0.013959829695522785,
- -0.0013240803964436054,
- -0.018134621903300285,
- -0.048936765640974045,
- 0.029611095786094666,
- 0.009717652574181557,
- 0.042189545929431915,
- -0.04375443607568741,
- -0.010506655089557171,
- 0.014034677296876907,
- 0.07717712968587875,
- 0.08131978660821915,
- -0.04335546866059303,
- -1.3751736638312195e-8,
- 0.019573023542761803,
- 0.05384572595357895,
- 0.02408662438392639,
- 0.016895834356546402,
- -0.005696835462003946,
- 0.02516815811395645,
- -0.026483869180083275,
- 0.09647048264741898,
- 0.0838218703866005,
- -0.04387969896197319,
- 0.06912815570831299,
- 0.021843120455741882,
- 0.03100970759987831,
- 0.010436772368848324,
- 0.09444784373044968,
- -0.030317731201648712,
- -0.02152404934167862,
- 0.08306651562452316,
- -0.0193659495562315,
- 0.012753059156239033,
- -0.0400305800139904,
- 0.08386185020208359,
- 0.044449303299188614,
- -0.019747858867049217,
- 0.02231188490986824,
- -0.05479666218161583,
- 0.01546364463865757,
- 0.0448770634829998,
- -0.060155753046274185,
- 0.04591615870594978,
- -0.01078749354928732,
- 0.042699068784713745,
- 0.009686404839158058,
- 0.08930607885122299,
- 0.06085421144962311,
- -0.08641067892313004,
- 0.022750170901417732,
- -0.04102734848856926,
- 0.0303911454975605,
- -0.01122471783310175,
- -0.015863828361034393,
- -0.05858046934008598,
- 0.055914148688316345,
- -0.009719252586364746,
- -0.09068597853183746,
- -0.057077642530202866,
- 0.056013867259025574,
- -0.010724807158112526,
- -0.018890773877501488,
- -0.13953310251235962,
- 0.06961970031261444,
- 0.021673010662198067,
- 0.04874423146247864,
- 0.007650903891772032,
- 0.025150518864393234,
- 0.035553935915231705,
- 0.052565332502126694,
- 0.012530569918453693,
- -0.04435305669903755,
- 0.014884109608829021,
- 0.0688915029168129,
- 0.011600174941122532,
- 0.0542483776807785,
- -0.02246781997382641
- ]
- },
- {
- "keyword": "adjusts",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.0072846971452236176,
- 0.035345323383808136,
- -0.004982310812920332,
- 0.008951232768595219,
- -0.07410135120153427,
- 0.013238077983260155,
- 0.06220822408795357,
- 0.03411048650741577,
- 0.018334876745939255,
- 0.02861119620501995,
- 0.061277326196432114,
- -0.02948680892586708,
- 0.0013747081393375993,
- -0.049111705273389816,
- -0.08226420730352402,
- -0.014298302121460438,
- -0.01523922011256218,
- 0.11768309772014618,
- -0.09997860342264175,
- 0.013191262260079384,
- -0.09615384042263031,
- -0.01027971412986517,
- 0.012388411909341812,
- 0.03244765102863312,
- -0.07159604877233505,
- 0.002481220755726099,
- -0.07043436914682388,
- 0.07347521930932999,
- -0.011515622958540916,
- -0.14766475558280945,
- -0.06764237582683563,
- 0.015782462432980537,
- 0.05307011678814888,
- -0.038197312504053116,
- -0.11675804853439331,
- -0.06584924459457397,
- 0.01312622893601656,
- 0.05912004038691521,
- -0.025049783289432526,
- 0.04884936660528183,
- -0.03531229868531227,
- -0.08681132644414902,
- -0.011649860069155693,
- -0.037056341767311096,
- 0.0046406337060034275,
- 0.09039030969142914,
- 0.012943072244524956,
- 0.05444500967860222,
- -0.011355597525835037,
- -0.01555376872420311,
- -0.01875227876007557,
- -0.04582906514406204,
- 0.040987178683280945,
- 0.059387482702732086,
- 0.017979945987462997,
- 0.048715200275182724,
- -0.007502222433686256,
- 0.06331254541873932,
- 0.11773841083049774,
- -0.08224789053201675,
- 0.08035938441753387,
- -0.012255942448973656,
- -0.046309102326631546,
- 0.0897073969244957,
- 0.009001478552818298,
- 0.029211245477199554,
- -0.006226470693945885,
- -0.0013668789761140943,
- -0.03384307771921158,
- 0.014241955243051052,
- 0.005398318637162447,
- 0.058214664459228516,
- -0.042551565915346146,
- -0.021369755268096924,
- 0.05756457522511482,
- -0.041096076369285583,
- -0.006024493370205164,
- -0.02735903486609459,
- 0.10923498868942261,
- 0.03595082834362984,
- -0.042637597769498825,
- -0.019910741597414017,
- -0.04832115396857262,
- 0.04126306623220444,
- 0.005796351004391909,
- -0.026390183717012405,
- 0.0027695451863110065,
- -0.006095320452004671,
- -0.021920612081885338,
- 0.06278786063194275,
- 0.033417195081710815,
- -0.06548458337783813,
- -0.024529574438929558,
- 0.02003285102546215,
- -0.07692353427410126,
- -0.07231418788433075,
- 0.00937908235937357,
- -0.04366237670183182,
- -0.0533280149102211,
- 0.1841663271188736,
- 0.05068112909793854,
- 0.07967798411846161,
- 0.019208215177059174,
- 0.06453703343868256,
- -0.05347840115427971,
- -0.038964029401540756,
- -0.061492521315813065,
- 0.039667725563049316,
- 0.008210997097194195,
- 0.03491958975791931,
- -0.02422964572906494,
- -0.0064872936345636845,
- -0.035964976996183395,
- 0.04174167662858963,
- -0.04500863328576088,
- -0.053687527775764465,
- -0.03036830574274063,
- -0.00789457093924284,
- -0.0004110117442905903,
- -0.05595991015434265,
- -0.008583618327975273,
- 0.03266281262040138,
- -0.04056714475154877,
- 0.03692682459950447,
- -0.03788100928068161,
- 0.04439140483736992,
- -0.05540962517261505,
- -4.6503522627949276e-33,
- 0.0016893428983166814,
- -0.05973445251584053,
- 0.010141340084373951,
- 0.03343076631426811,
- -0.004214955493807793,
- -0.018368620425462723,
- -0.05882004275918007,
- -0.029428699985146523,
- -0.06675459444522858,
- 0.027079308405518532,
- 0.019458943977952003,
- 0.09252820163965225,
- -0.08246023952960968,
- -0.003823098260909319,
- 0.12420809268951416,
- -0.06774355471134186,
- 0.030927253887057304,
- 0.048405762761831284,
- -0.07012465596199036,
- 0.05841519311070442,
- -0.07357331365346909,
- -0.036125097423791885,
- -0.025018492713570595,
- 0.00951505359262228,
- -0.016259433701634407,
- 0.04595491662621498,
- -0.007817013189196587,
- 0.029718494042754173,
- -0.03416311740875244,
- -0.01152763981372118,
- -0.009552804753184319,
- 0.04813777655363083,
- 0.01619197614490986,
- -0.05176497623324394,
- -0.008478154428303242,
- -0.012633350677788258,
- 0.031982600688934326,
- -0.013632065616548061,
- 0.014093495905399323,
- -0.03269181400537491,
- -0.033327367156744,
- 0.048222195357084274,
- -0.014568368904292583,
- 0.004876707214862108,
- 0.023168472573161125,
- 0.08886105567216873,
- 0.07288555055856705,
- -0.006640084553509951,
- -0.05010489746928215,
- 0.06441396474838257,
- 0.0017415599431842566,
- 0.012892835773527622,
- 0.012091838754713535,
- 0.00935051403939724,
- 0.03763581067323685,
- -0.015774311497807503,
- 0.028231428936123848,
- -0.05040412023663521,
- -0.051574330776929855,
- 0.04789716750383377,
- 0.052300725132226944,
- -0.01359750796109438,
- 0.013708211481571198,
- -0.0627877414226532,
- -0.0069039068184792995,
- 0.032974377274513245,
- 0.04588964581489563,
- 0.05504422262310982,
- 0.0188513845205307,
- 0.03784411773085594,
- -0.16774354875087738,
- -0.049022261053323746,
- 0.10535528510808945,
- 0.11024612933397293,
- -0.11289474368095398,
- 0.02498808689415455,
- -0.02635178714990616,
- 0.015614302828907967,
- -0.007476402912288904,
- 0.004953835625201464,
- -0.00541527708992362,
- 0.10312747210264206,
- 0.03854408487677574,
- 0.013797123916447163,
- 0.026735937222838402,
- -0.14687976241111755,
- -0.026622015982866287,
- 0.00803721509873867,
- 0.023602664470672607,
- -0.010378308594226837,
- -0.03809801861643791,
- -0.03429407998919487,
- 0.07165996730327606,
- 0.015550303272902966,
- -0.03103446215391159,
- 3.2765038931889334e-33,
- -0.09860695153474808,
- -0.02750283293426037,
- -0.017535420134663582,
- 0.04473523795604706,
- -0.009966972284018993,
- 0.022311246022582054,
- 0.07017049193382263,
- 0.005417678039520979,
- 0.030012911185622215,
- -0.020412523299455643,
- -0.029091183096170425,
- -0.04146173968911171,
- -0.024074174463748932,
- 0.026568254455924034,
- 0.035950638353824615,
- 0.0021408579777926207,
- 0.05641843378543854,
- 0.05325206741690636,
- -0.02770482376217842,
- -0.017559455707669258,
- -0.004778166767209768,
- 0.021791353821754456,
- 0.04839838668704033,
- -0.0026842241641134024,
- 0.0011754671577364206,
- 0.007023947779089212,
- -0.015464406460523605,
- 0.03672416880726814,
- -0.11452736705541611,
- -0.014478414319455624,
- -0.04766970872879028,
- -0.044873565435409546,
- -0.039800405502319336,
- 0.04571634903550148,
- 0.013372903689742088,
- -0.0006735608913004398,
- -0.030449561774730682,
- 0.07138027995824814,
- 0.021898990496993065,
- 0.028318269178271294,
- 0.016941048204898834,
- 0.09698852896690369,
- 0.013257925398647785,
- 0.1183202713727951,
- 0.03456489369273186,
- 0.02321176789700985,
- 0.03417776897549629,
- -0.07421668618917465,
- -0.04796872287988663,
- 0.05648769065737724,
- -0.12243521958589554,
- -0.011360935866832733,
- 0.01981089450418949,
- -0.0075137983076274395,
- -0.0004891915014013648,
- -0.03208228200674057,
- -0.04503938555717468,
- -0.033587727695703506,
- 0.016875790432095528,
- -0.005688818171620369,
- -0.02583964169025421,
- 0.044500693678855896,
- -0.08588649332523346,
- 0.011291269212961197,
- -0.005648602265864611,
- 0.06663372367620468,
- -0.022613326087594032,
- -0.03490801155567169,
- 0.023602548986673355,
- -0.0005533661460503936,
- 0.002147810999304056,
- -0.10694369673728943,
- 0.035795971751213074,
- -0.03048107773065567,
- -0.014532968401908875,
- -0.11736762523651123,
- -0.06149480864405632,
- 0.001955563435330987,
- -0.005111346486955881,
- -0.08600811660289764,
- -0.053731873631477356,
- -0.059732336550951004,
- 0.025817401707172394,
- 0.036484863609075546,
- -0.05606163293123245,
- 0.015132846310734749,
- 0.011405671946704388,
- 0.05643105506896973,
- 0.01107931137084961,
- 0.03693685680627823,
- -0.012967905029654503,
- 0.040512360632419586,
- 0.09481660276651382,
- 0.03842990845441818,
- -0.04550579935312271,
- -1.3711286328543792e-8,
- -0.06392461806535721,
- 0.016192253679037094,
- 0.014837781898677349,
- 0.07934501022100449,
- 0.007956957444548607,
- 0.011185015551745892,
- -0.007952224463224411,
- 0.03835547715425491,
- -0.010513972491025925,
- -0.014544865116477013,
- 0.051980216056108475,
- 0.02210194058716297,
- 0.10535956174135208,
- 0.04098508134484291,
- 0.11984023451805115,
- -0.015558581799268723,
- -0.09229891002178192,
- 0.12506631016731262,
- -0.060712337493896484,
- 0.00019608152797445655,
- 0.005716350860893726,
- 0.02164430543780327,
- 0.044015124440193176,
- 0.040595892816782,
- 0.07544858008623123,
- -0.09667500108480453,
- -0.06518083810806274,
- 0.08767588436603546,
- -0.03307824209332466,
- 0.03515354171395302,
- 0.08946110308170319,
- 0.02937803789973259,
- 0.01615116558969021,
- -0.05840574949979782,
- 0.018567675724625587,
- -0.018330704420804977,
- -0.04500226676464081,
- -0.013673843815922737,
- 0.040041450411081314,
- -0.009525159373879433,
- -0.0659039244055748,
- -0.06959409266710281,
- 0.04118628427386284,
- 0.03751835599541664,
- -0.0495305135846138,
- 0.00994501356035471,
- 0.11382564157247543,
- 0.04963603615760803,
- -0.018754184246063232,
- -0.04048308730125427,
- 0.08366258442401886,
- 0.058005716651678085,
- 0.08117536455392838,
- 0.05269598215818405,
- 0.07092393189668655,
- -0.003653748193755746,
- 0.026282550767064095,
- 0.01972176507115364,
- -0.08613409101963043,
- 0.048405472189188004,
- -0.016604814678430557,
- -0.0022122974041849375,
- -0.0294695682823658,
- -0.06901440769433975
- ]
- },
- {
- "keyword": "alters",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.07994396239519119,
- 0.060904309153556824,
- 0.04983871057629585,
- 0.04116600379347801,
- -0.013754057697951794,
- -0.00830752495676279,
- 0.08377987146377563,
- -0.010804531164467335,
- 0.017255520448088646,
- 0.020160414278507233,
- -0.004281462635844946,
- -0.07789848744869232,
- -0.00887736864387989,
- -0.04018586501479149,
- 0.00468571437522769,
- -0.0029979583341628313,
- -0.02404608204960823,
- 0.1387827843427658,
- -0.06571606546640396,
- 0.018814479932188988,
- -0.07714333385229111,
- -0.00578216603025794,
- -0.03670497611165047,
- 0.0276320967823267,
- 0.020600758492946625,
- -0.01710963435471058,
- -0.037958212196826935,
- 0.036622896790504456,
- 0.006029821000993252,
- -0.15377919375896454,
- -0.013583407737314701,
- 0.061739057302474976,
- 0.05194714292883873,
- 0.018209872767329216,
- -0.055207084864377975,
- -0.009360112249851227,
- 0.059912264347076416,
- 0.09426304697990417,
- 0.03991272300481796,
- -0.009827583096921444,
- -0.03564309701323509,
- -0.06198224797844887,
- -0.0029201980214565992,
- 0.014776339754462242,
- -0.04067406430840492,
- -0.0021188990212976933,
- 0.006600143853574991,
- -0.03740382194519043,
- 0.0038600920233875513,
- 0.023581648245453835,
- 0.012099480256438255,
- -0.026484927162528038,
- -0.0533868744969368,
- 0.05705050751566887,
- -0.010494143702089787,
- 0.039505235850811005,
- 0.023601271212100983,
- 0.04963307082653046,
- 0.0758863240480423,
- -0.07099475711584091,
- 0.08838220685720444,
- -0.012789259664714336,
- -0.0010553563479334116,
- 0.06152674928307533,
- -0.05150366574525833,
- 0.02644708938896656,
- 0.007588163483887911,
- 0.05412342771887779,
- -0.03705323487520218,
- -0.02387346886098385,
- 0.014219297096133232,
- 0.04113844409584999,
- 0.001567332772538066,
- 0.02073693461716175,
- -0.005989606957882643,
- -0.023770514875650406,
- -0.030451733618974686,
- 6.837718160568329e-7,
- 0.057497553527355194,
- -0.047493163496255875,
- -0.023826273158192635,
- 0.008919482119381428,
- -0.02465367130935192,
- -0.02352515049278736,
- 0.07573501765727997,
- -0.006374516990035772,
- -0.058657124638557434,
- -0.02869042381644249,
- 0.025744590908288956,
- 0.03887440264225006,
- -0.01489115972071886,
- -0.022615166381001472,
- 0.108744777739048,
- -0.02450127713382244,
- -0.046942394226789474,
- 0.003422483569011092,
- -0.009988783858716488,
- -0.028540806844830513,
- 0.027918638661503792,
- 0.19823500514030457,
- -0.025838205590844154,
- 0.052299614995718,
- -0.013470307923853397,
- 0.01218984741717577,
- -0.04752415418624878,
- -0.054932549595832825,
- -0.11594564467668533,
- 0.01871419884264469,
- -0.03143477812409401,
- -0.0018873681547120214,
- 0.05089201778173447,
- -0.03175982087850571,
- -0.02705083228647709,
- -0.07748226821422577,
- 0.019862933084368706,
- -0.02659030072391033,
- 0.04582691937685013,
- -0.025655951350927353,
- -0.037161558866500854,
- 0.04101671651005745,
- 0.05640606954693794,
- 0.018719661980867386,
- -0.021530812606215477,
- 0.060068145394325256,
- -0.06581085175275803,
- 0.04892146959900856,
- -0.07861607521772385,
- -3.531893632558507e-33,
- 0.01446006540209055,
- 0.008503341116011143,
- 0.026327362284064293,
- 0.0036101716104894876,
- 0.041651129722595215,
- -0.010743638500571251,
- 0.004028862342238426,
- -0.012803781777620316,
- -0.06492078304290771,
- -0.033867646008729935,
- -0.04857140779495239,
- 0.08542469143867493,
- 0.004817025735974312,
- 0.026284534484148026,
- 0.11552376300096512,
- -0.026769641786813736,
- 0.08049602806568146,
- -0.037406984716653824,
- -0.003724718000739813,
- -0.070826455950737,
- -0.08238129317760468,
- 0.0666225329041481,
- -0.04251541569828987,
- 0.007948284037411213,
- -0.07087336480617523,
- -0.01164990197867155,
- -0.03680849447846413,
- -0.0022946419194340706,
- 0.08411414176225662,
- 0.004546920768916607,
- -0.014308959245681763,
- 0.013073195703327656,
- -0.0010387266520410776,
- 0.053158365190029144,
- -0.0451798215508461,
- 0.014241969212889671,
- 0.04825432971119881,
- -0.051300641149282455,
- 0.0014417306520044804,
- -0.061669204384088516,
- -0.015609676018357277,
- 0.0343814417719841,
- -0.0659787580370903,
- -0.019427930936217308,
- 0.07454115152359009,
- 0.06942420452833176,
- 0.06334442645311356,
- 0.033503614366054535,
- -0.02630051225423813,
- 0.01522124744951725,
- 0.01148518268018961,
- 0.011242502368986607,
- 0.008584029041230679,
- 0.03259764984250069,
- 0.007961842231452465,
- -0.0026230765506625175,
- 0.000058243200328433886,
- -0.061007309705019,
- 0.01698015257716179,
- 0.043146178126335144,
- 0.06755227595567703,
- 0.03521383926272392,
- 0.027444396167993546,
- -0.01960919424891472,
- -0.015356926247477531,
- -0.030250927433371544,
- 0.10206186026334763,
- -0.025506241247057915,
- -0.002278001280501485,
- -0.019417965784668922,
- -0.16988608241081238,
- 0.008442390710115433,
- 0.02801404520869255,
- 0.10878033936023712,
- -0.017244882881641388,
- -0.04956146329641342,
- -0.001724286819808185,
- 0.08422072976827621,
- -0.038045331835746765,
- -0.013469366356730461,
- -0.009140126407146454,
- 0.06339885294437408,
- -0.00933882687240839,
- 0.03738248720765114,
- 0.05861888453364372,
- -0.11003656685352325,
- 0.006461687386035919,
- -0.0230863057076931,
- 0.033003661781549454,
- -0.017868904396891594,
- -0.050088487565517426,
- -0.046349138021469116,
- 0.011754569597542286,
- 0.01842641271650791,
- -0.039090026170015335,
- 2.7150446285530146e-33,
- -0.1217803880572319,
- -0.05105968937277794,
- -0.07937847822904587,
- 0.13736625015735626,
- -0.006219798233360052,
- -0.026655180379748344,
- 0.04177172854542732,
- 0.0320889875292778,
- 0.04928814619779587,
- -0.05059817060828209,
- 0.01833050139248371,
- -0.03870701789855957,
- 0.008651183918118477,
- -0.0005975465173833072,
- 0.0019663686398416758,
- -0.035475876182317734,
- 0.009764322079718113,
- 0.005168907810002565,
- -0.03053310513496399,
- -0.005841216072440147,
- -0.021341608837246895,
- 0.12290317565202713,
- 0.033162351697683334,
- -0.0515928715467453,
- 0.001652930281125009,
- 0.04952969774603844,
- -0.008971942588686943,
- 0.08081434667110443,
- -0.06136520579457283,
- -0.01021612249314785,
- -0.029937773942947388,
- -0.01930643618106842,
- -0.0677681490778923,
- 0.05367568880319595,
- 0.03232523053884506,
- 0.024624546989798546,
- 0.018892547115683556,
- 0.03501821681857109,
- -0.04813782870769501,
- -0.007117005065083504,
- 0.04655866324901581,
- 0.009428925812244415,
- 0.04466518014669418,
- 0.13464881479740143,
- 0.016354084014892578,
- -0.0004849820106755942,
- -0.07676129043102264,
- 0.02661239542067051,
- 0.05102589726448059,
- -0.07281406223773956,
- -0.05348532274365425,
- -0.05132343992590904,
- -0.03005918860435486,
- 0.023703012615442276,
- 0.04648265615105629,
- -0.08561902493238449,
- 0.03142368420958519,
- -0.04199802875518799,
- 0.024886567145586014,
- 0.007669143378734589,
- -0.02613375522196293,
- 0.04237637296319008,
- -0.070901058614254,
- 0.0005571297951973975,
- 0.02491866610944271,
- -0.005556759890168905,
- -0.06527180969715118,
- -0.04282330721616745,
- 0.011666808277368546,
- -0.015564952977001667,
- 0.1132400780916214,
- -0.05605757236480713,
- -0.062264274805784225,
- -0.06596637517213821,
- -0.032326363027095795,
- -0.13969337940216064,
- -0.07761543989181519,
- -0.004680270794779062,
- -0.04987380653619766,
- -0.08623655140399933,
- -0.060929011553525925,
- -0.10207397490739822,
- 0.028739724308252335,
- 0.01454780250787735,
- -0.0478416383266449,
- -0.027847906574606895,
- 0.023384081199765205,
- 0.15726932883262634,
- 0.010855667293071747,
- 0.007204039953649044,
- -0.033588867634534836,
- 0.00408338475972414,
- 0.09041494131088257,
- 0.06195937469601631,
- -0.046078506857156754,
- -1.3631348494413942e-8,
- -0.022272875532507896,
- 0.060447730123996735,
- -0.013765443116426468,
- 0.03597269579768181,
- 0.035508181899785995,
- 0.024904150515794754,
- -0.03900725767016411,
- 0.0769490897655487,
- 0.02363855019211769,
- -0.007281909696757793,
- 0.1015874594449997,
- 0.036343175917863846,
- 0.1061289831995964,
- 0.039854228496551514,
- 0.09397619962692261,
- -0.04177948832511902,
- -0.008530257269740105,
- 0.012375508435070515,
- -0.0282694511115551,
- -0.025198720395565033,
- -0.06278499215841293,
- 0.06881234049797058,
- 0.010779567062854767,
- -0.03741537779569626,
- 0.06854673475027084,
- -0.05774998292326927,
- 0.0006301444373093545,
- -0.011756900697946548,
- 0.004834257997572422,
- 0.073365218937397,
- 0.05135379731655121,
- 0.01779457926750183,
- 0.03309815749526024,
- 0.07659874111413956,
- 0.0026031124871224165,
- -0.044579360634088516,
- -0.06812319904565811,
- -0.03261030092835426,
- -0.012124678120017052,
- 0.02993752807378769,
- -0.029164394363760948,
- -0.05335486680269241,
- -0.0307187307626009,
- -0.01124743465334177,
- -0.14157849550247192,
- -0.07358686625957489,
- 0.08955372869968414,
- -0.041644249111413956,
- -0.04578974470496178,
- -0.06252332776784897,
- 0.04581698402762413,
- 0.03389153257012367,
- 0.013580168597400188,
- 0.04367118701338768,
- 0.08365282416343689,
- 0.045385584235191345,
- 0.07282793521881104,
- 0.06089027598500252,
- -0.018589507788419724,
- 0.08694282919168472,
- 0.05088428035378456,
- -0.055648621171712875,
- 0.04345610365271568,
- -0.03108387067914009
- ]
- },
- {
- "keyword": "amends",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06823408603668213,
- 0.114924356341362,
- 0.07391484081745148,
- 0.01702261157333851,
- -0.01126854494214058,
- 0.07037521153688431,
- 0.048950422555208206,
- -0.004799908958375454,
- 0.06779754161834717,
- 0.02396470122039318,
- 0.010907571762800217,
- -0.018987813964486122,
- -0.07470469921827316,
- -0.05123189091682434,
- 0.030718620866537094,
- 0.004496046807616949,
- -0.0626472681760788,
- 0.13323166966438293,
- -0.06733546406030655,
- 0.0017729869578033686,
- -0.040379781275987625,
- 0.0919438898563385,
- -0.04694923013448715,
- 0.03208448737859726,
- 0.0002655359567143023,
- 0.046934064477682114,
- -0.029950905591249466,
- 0.005017755087465048,
- 0.01020027231425047,
- -0.12693150341510773,
- -0.003709381679072976,
- 0.022973347455263138,
- 0.07624981552362442,
- 0.01314370147883892,
- -0.06495276093482971,
- 0.007030457258224487,
- 0.035029515624046326,
- 0.023427089676260948,
- 0.009371912106871605,
- -0.018687071278691292,
- -0.03156066685914993,
- -0.13315564393997192,
- -0.028571059927344322,
- -0.014434951357543468,
- -0.0057302131317555904,
- 0.03941579908132553,
- 0.017757724970579147,
- 0.030428405851125717,
- -0.010859311558306217,
- -0.0008035909268073738,
- 0.0012277694186195731,
- 0.026824811473488808,
- -0.08218369632959366,
- 0.04749637097120285,
- 0.051182497292757034,
- 0.020898308604955673,
- 0.01568923518061638,
- 0.08150637894868851,
- 0.0532028004527092,
- -0.06861678510904312,
- 0.10095402598381042,
- -0.01850694976747036,
- -0.06829667836427689,
- 0.03164262697100639,
- -0.023250823840498924,
- 0.0049858069978654385,
- -0.004299683030694723,
- 0.01139768585562706,
- -0.002860558684915304,
- -0.0015132494736462831,
- 0.0014927162555977702,
- 0.11689427495002747,
- 0.028252489864826202,
- -0.03390411287546158,
- 0.00005258434248389676,
- -0.021669067442417145,
- -0.01506718248128891,
- 0.02418108470737934,
- 0.055208589881658554,
- -0.0015446909237653017,
- 0.014131195843219757,
- -0.050465043634176254,
- -0.03761734068393707,
- -0.009523957967758179,
- 0.06818480789661407,
- -0.046614646911621094,
- -0.031062738969922066,
- -0.005534500349313021,
- 0.03600582480430603,
- 0.049821048974990845,
- -0.016508853062987328,
- -0.09233725816011429,
- 0.13443510234355927,
- -0.045568425208330154,
- -0.06440018117427826,
- -0.03553401678800583,
- 0.001264075981453061,
- -0.06063626706600189,
- -0.017959440127015114,
- 0.21639305353164673,
- -0.008152184076607227,
- 0.054573290050029755,
- -0.03608117625117302,
- -0.04400349035859108,
- -0.013596314005553722,
- -0.05559547245502472,
- -0.06126685440540314,
- 0.043945178389549255,
- -0.0319628082215786,
- 0.003722814144566655,
- 0.039936669170856476,
- -0.03897545486688614,
- 0.031050419434905052,
- 0.03942738473415375,
- 0.006520780734717846,
- -0.017107512801885605,
- 0.006294216029345989,
- -0.01434724498540163,
- 0.016146983951330185,
- -0.04516597464680672,
- 0.042961619794368744,
- 0.030461428686976433,
- -0.04257643222808838,
- 0.0373048335313797,
- -0.09072702378034592,
- -0.010865418240427971,
- -0.04616179317235947,
- -4.7475799719453314e-33,
- -0.002703307429328561,
- 0.009990978986024857,
- 0.019686294719576836,
- 0.052316274493932724,
- 0.03420208394527435,
- -0.002068902365863323,
- -0.04124782234430313,
- -0.06582021713256836,
- -0.0359015129506588,
- 0.00565564539283514,
- 0.005574981216341257,
- 0.07324513047933578,
- 0.02194407396018505,
- 0.015879619866609573,
- 0.051018472760915756,
- 0.013800353743135929,
- -0.009794449433684349,
- 0.08872810751199722,
- -0.01997245103120804,
- 0.04651482403278351,
- -0.021312737837433815,
- 0.042861901223659515,
- -0.000373968796338886,
- 0.05109664052724838,
- -0.035086583346128464,
- -0.048930875957012177,
- -0.0012021686416119337,
- -0.01728253811597824,
- 0.02633645571768284,
- -0.013245707377791405,
- 0.018805047497153282,
- -0.005037352442741394,
- 0.039506375789642334,
- 0.06515566259622574,
- -0.0425368957221508,
- -0.02744860202074051,
- 0.03589121624827385,
- -0.08124123513698578,
- -0.026682130992412567,
- -0.07739593833684921,
- -0.043461866676807404,
- 0.04875148460268974,
- -0.0367649607360363,
- -0.045062825083732605,
- 0.06759512424468994,
- 0.03552421182394028,
- 0.04630517214536667,
- 0.005763771943747997,
- 0.022193405777215958,
- 0.048549894243478775,
- 0.01563298888504505,
- 0.047067780047655106,
- -0.027604492381215096,
- 0.007399317342787981,
- -0.013459134846925735,
- -0.0012905270559713244,
- -0.007845068350434303,
- -0.04305507242679596,
- -0.04801557958126068,
- 0.02262292616069317,
- 0.07773041725158691,
- -0.003094783751294017,
- 0.019172178581357002,
- -0.03284025192260742,
- -0.09910581260919571,
- -0.025680819526314735,
- 0.07261766493320465,
- -0.027008196339011192,
- 0.023205887526273727,
- -0.031193019822239876,
- -0.12758629024028778,
- -0.02909095585346222,
- 0.059264905750751495,
- 0.09844997525215149,
- -0.0071869357489049435,
- -0.05754256993532181,
- -0.015511464327573776,
- 0.038802389055490494,
- 0.03036857582628727,
- -0.03392857313156128,
- -0.040921326726675034,
- 0.009605803526937962,
- 0.019479824230074883,
- 0.04993045702576637,
- 0.09617441147565842,
- -0.06126754730939865,
- -0.012776011601090431,
- 0.012844790704548359,
- 0.05073855444788933,
- 0.0011621717130765319,
- -0.05633917823433876,
- -0.01982785202562809,
- 0.009088450111448765,
- -0.0015765600837767124,
- 0.026721473783254623,
- 3.098737555933925e-33,
- -0.0900692418217659,
- -0.06145314872264862,
- -0.06620065122842789,
- 0.10932160913944244,
- -0.04783065617084503,
- -0.032065097242593765,
- 0.01787269115447998,
- -0.028925742954015732,
- 0.10165832191705704,
- -0.14001233875751495,
- -0.019329659640789032,
- -0.034321416169404984,
- 0.0046113235875964165,
- 0.05100538209080696,
- -0.011796817183494568,
- -0.030699947848916054,
- 0.04162934422492981,
- -0.0666356086730957,
- -0.02449553832411766,
- 0.0020540892146527767,
- 0.009475160390138626,
- 0.026133541017770767,
- 0.07616482675075531,
- -0.009451447054743767,
- -0.011444897390902042,
- 0.018017558380961418,
- -0.014256893657147884,
- 0.029011784121394157,
- -0.009568234905600548,
- -0.002507028402760625,
- -0.03119109943509102,
- -0.01570603810250759,
- -0.09360130876302719,
- 0.022225363180041313,
- 0.08046881854534149,
- -0.029739193618297577,
- 0.08182728290557861,
- 0.015088009648025036,
- -0.06418009847402573,
- 0.02568347193300724,
- 0.09653803706169128,
- 0.01454151701182127,
- 0.0516410730779171,
- 0.1477724313735962,
- 0.029850348830223083,
- 0.009557348676025867,
- -0.009432894177734852,
- 0.037361469119787216,
- -0.010611767880618572,
- -0.02726241946220398,
- -0.1098550409078598,
- -0.06351794302463531,
- -0.07159218192100525,
- 0.03585270419716835,
- 0.018823867663741112,
- -0.03216397017240524,
- 0.0321827232837677,
- -0.04825334623456001,
- 0.026922868564724922,
- -0.01448497362434864,
- -0.013944420032203197,
- 0.08809500932693481,
- -0.03914914280176163,
- 0.009133875370025635,
- 0.022971654310822487,
- 0.01615225337445736,
- -0.077901192009449,
- -0.0788353830575943,
- 0.00627848319709301,
- 0.0005919014802202582,
- 0.03776094689965248,
- -0.06690610945224762,
- -0.13373667001724243,
- -0.07145992666482925,
- 0.0220367219299078,
- -0.022211957722902298,
- -0.05453478544950485,
- 0.05953346937894821,
- -0.021010957658290863,
- -0.058054327964782715,
- -0.014293246902525425,
- -0.039605263620615005,
- 0.0017060334794223309,
- 0.031125951558351517,
- -0.08068807423114777,
- -0.022294558584690094,
- 0.12726128101348877,
- 0.02285720966756344,
- 0.03322885185480118,
- 0.027818625792860985,
- -0.05079327151179314,
- 0.039180122315883636,
- 0.10357005894184113,
- 0.00680205412209034,
- -0.058298878371715546,
- -1.3343271376697885e-8,
- -0.039804816246032715,
- 0.020292913541197777,
- -0.09454310685396194,
- 0.047231465578079224,
- 0.009921061806380749,
- 0.007769040297716856,
- -0.06966672837734222,
- 0.06382753700017929,
- 0.05825106054544449,
- -0.03133005276322365,
- 0.07154582440853119,
- 0.05520504713058472,
- 0.06802095472812653,
- -0.012124864384531975,
- 0.08056360483169556,
- -0.043443843722343445,
- -0.040917038917541504,
- 0.0094368951395154,
- -0.06554568558931351,
- 0.02055405080318451,
- -0.03442799299955368,
- 0.08016827702522278,
- -0.028340449556708336,
- -0.034702811390161514,
- 0.08596547693014145,
- -0.008339744061231613,
- -0.01724853739142418,
- 0.008421079255640507,
- -0.06711287796497345,
- 0.07023565471172333,
- 0.029992075636982918,
- 0.035545606166124344,
- -0.04339129105210304,
- 0.047865044325590134,
- -0.014323831535875797,
- -0.09608882665634155,
- -0.00943996012210846,
- -0.018189888447523117,
- 0.061239395290613174,
- -0.03786246106028557,
- -0.028168657794594765,
- -0.004055963363498449,
- 0.027636557817459106,
- -0.0051990291103720665,
- -0.0722682923078537,
- -0.09037606418132782,
- 0.09068528562784195,
- 0.049438297748565674,
- -0.04422510415315628,
- -0.11939262598752975,
- 0.011164701543748379,
- 0.06104784831404686,
- 0.05348150059580803,
- 0.04070776328444481,
- 0.08977468311786652,
- 0.029686419293284416,
- 0.058756936341524124,
- 0.04532059654593468,
- -0.025590049102902412,
- 0.06458631157875061,
- 0.07377354800701141,
- -0.023882225155830383,
- 0.03634795546531677,
- -0.08467527478933334
- ]
- },
- {
- "keyword": "revises",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.013988117687404156,
- 0.027461130172014236,
- 0.04134949669241905,
- 0.007359813898801804,
- -0.022465862333774567,
- -0.019291846081614494,
- 0.0019952638540416956,
- -0.04302478954195976,
- -0.050283461809158325,
- 0.02911056950688362,
- -0.030862873420119286,
- 0.051081184297800064,
- -0.018809102475643158,
- -0.030741315335035324,
- -0.04716335982084274,
- -0.0022738208062946796,
- 0.013972662389278412,
- 0.10140001773834229,
- -0.028006091713905334,
- -0.043343331664800644,
- -0.190822571516037,
- -0.022525586187839508,
- -0.027146779000759125,
- 0.022973209619522095,
- 0.045263487845659256,
- 0.09227759391069412,
- -0.036671534180641174,
- 0.0633397325873375,
- 0.032983869314193726,
- -0.11968651413917542,
- -0.012235090136528015,
- 0.09897969663143158,
- 0.04677176475524902,
- -0.021629968658089638,
- -0.08178309351205826,
- 0.043486084789037704,
- 0.03086462803184986,
- 0.021943984553217888,
- 0.04163172468543053,
- 0.0792197585105896,
- -0.03741052374243736,
- -0.010989104397594929,
- 0.0035239960998296738,
- -0.0160814318805933,
- 0.0479922816157341,
- -0.06418255716562271,
- -0.09104713052511215,
- -0.06104520335793495,
- 0.03135882318019867,
- 0.07698192447423935,
- -0.017976000905036926,
- -0.05689990147948265,
- -0.08325305581092834,
- -0.03349706530570984,
- -0.008150268346071243,
- -0.004437757655978203,
- 0.03726864233613014,
- 0.05090015009045601,
- 0.038037024438381195,
- -0.07211054116487503,
- 0.0951351523399353,
- 0.02280215546488762,
- -0.10613998770713806,
- -0.006008465308696032,
- -0.004209853243082762,
- -0.06751275062561035,
- 0.019401848316192627,
- 0.010601235553622246,
- 0.010794674046337605,
- 0.025544585660099983,
- -0.016508720815181732,
- 0.01516016572713852,
- 0.02623479813337326,
- 0.004966644570231438,
- 0.00809458177536726,
- 0.016168538480997086,
- 0.0012212734436616302,
- -0.04310980066657066,
- 0.010304126888513565,
- -0.0654883086681366,
- 0.0466354563832283,
- -0.0057362704537808895,
- -0.04111098870635033,
- -0.017202315852046013,
- 0.008470872417092323,
- -0.005830452777445316,
- -0.032615777105093,
- -0.05688764527440071,
- -0.004823691677302122,
- 0.003895500674843788,
- 0.006185490638017654,
- 0.04380913823843002,
- 0.07892905920743942,
- -0.03400852903723717,
- 0.0023941502440720797,
- 0.056098099797964096,
- 0.0015391509514302015,
- -0.05739546939730644,
- 0.011097866110503674,
- 0.19585198163986206,
- -0.005894402973353863,
- 0.06743983179330826,
- 0.0200022142380476,
- 0.009626179002225399,
- 0.024183426052331924,
- -0.04133378714323044,
- -0.011470776051282883,
- 0.06371165812015533,
- -0.03774711489677429,
- -0.001725332229398191,
- -0.02406206913292408,
- 0.05599163472652435,
- -0.03157629445195198,
- -0.027432335540652275,
- 0.06952214986085892,
- 0.018369659781455994,
- -0.03828534483909607,
- 0.03754296153783798,
- -0.021942561492323875,
- 0.0015370481414720416,
- 0.02868668921291828,
- 0.04711601510643959,
- 0.0051695373840630054,
- -0.07755146920681,
- -0.016540003940463066,
- -0.06370539218187332,
- 0.05325794965028763,
- -3.236937855366209e-33,
- 0.0074204690754413605,
- -0.02961123175919056,
- 0.04201320558786392,
- 0.07735651731491089,
- 0.023590754717588425,
- 0.04432578757405281,
- -0.039430610835552216,
- -0.017899861559271812,
- -0.06765216588973999,
- -0.027816416695713997,
- 0.053695883601903915,
- 0.13660478591918945,
- -0.029937075451016426,
- 0.008699564263224602,
- 0.057444047182798386,
- -0.03935534879565239,
- 0.010412280447781086,
- 0.07458070665597916,
- -0.03173518925905228,
- -0.0674772560596466,
- -0.06550896167755127,
- 0.037345774471759796,
- 0.00048725667875260115,
- -0.07094520330429077,
- -0.031098708510398865,
- -0.036265067756175995,
- 0.0920349732041359,
- -0.012577567249536514,
- -0.015056232921779156,
- 0.0037853089161217213,
- 0.012867789715528488,
- 0.02441732957959175,
- -0.03272673860192299,
- -0.009788964875042439,
- -0.03752785176038742,
- 0.03833805024623871,
- 0.012881560251116753,
- -0.0961284264922142,
- 0.006693803705275059,
- -0.021411512047052383,
- -0.02477872185409069,
- 0.0400138758122921,
- -0.10260533541440964,
- -0.047641780227422714,
- 0.04075904190540314,
- 0.071053147315979,
- 0.08099772036075592,
- -0.0168546661734581,
- 0.09254775941371918,
- -0.02633090130984783,
- 0.01871115155518055,
- 0.02571341022849083,
- -0.11782712489366531,
- -0.011997879482805729,
- -0.032004281878471375,
- -0.04107292741537094,
- 0.06938083469867706,
- -0.004924006760120392,
- 0.0236019529402256,
- -0.03424973785877228,
- 0.08464711159467697,
- 0.10143978148698807,
- -0.02712618000805378,
- -0.0454990454018116,
- -0.03731035813689232,
- 0.06873802095651627,
- 0.02996673621237278,
- -0.043396323919296265,
- 0.020269107073545456,
- 0.0127064548432827,
- -0.12948554754257202,
- -0.055852580815553665,
- 0.06968879699707031,
- -0.0031037782318890095,
- 0.03352915868163109,
- -0.047939956188201904,
- -0.024010824039578438,
- 0.05881236121058464,
- 0.04995925351977348,
- 0.004778813570737839,
- -0.0515369214117527,
- -0.005316879600286484,
- -0.11583784967660904,
- 0.0032636155374348164,
- 0.08100947737693787,
- -0.007384840399026871,
- 0.034631893038749695,
- -0.028059808537364006,
- 0.011642423458397388,
- 0.03140968829393387,
- -0.04158885031938553,
- 0.007945843040943146,
- 0.08240724354982376,
- 0.04666520655155182,
- -0.04099862277507782,
- 2.0475105904088158e-33,
- -0.06168222054839134,
- -0.05644456297159195,
- -0.06556135416030884,
- 0.17792220413684845,
- -0.03177374228835106,
- -0.05820918083190918,
- -0.043332263827323914,
- 0.04823195934295654,
- 0.006622759159654379,
- -0.01844235137104988,
- 0.07094139605760574,
- -0.035293303430080414,
- 0.016944143921136856,
- 0.003916242625564337,
- 0.024605127051472664,
- -0.02002936415374279,
- 0.01499105617403984,
- -0.02665887027978897,
- -0.03705700859427452,
- 0.01236199401319027,
- -0.05370812490582466,
- 0.04969530925154686,
- 0.05069940909743309,
- -0.058145347982645035,
- -0.026315301656723022,
- 0.039048563688993454,
- 0.0717259868979454,
- 0.1118098720908165,
- 0.005364479497075081,
- -0.10060825943946838,
- 0.06611769646406174,
- -0.05000636354088783,
- -0.009367020800709724,
- 0.012678902596235275,
- -0.036660294979810715,
- 0.08517955988645554,
- 0.0426250658929348,
- -0.05559202656149864,
- -0.024193832650780678,
- 0.08151039481163025,
- 0.03406960144639015,
- 0.024272533133625984,
- 0.054566510021686554,
- 0.05070032924413681,
- 0.0022269426845014095,
- -0.01516680233180523,
- -0.05427578464150429,
- 0.04945182800292969,
- 0.07187096774578094,
- -0.03615708649158478,
- 0.050559982657432556,
- 0.05885246396064758,
- -0.049954693764448166,
- -0.06447650492191315,
- 0.03234655410051346,
- -0.034065961837768555,
- -0.008205527439713478,
- 0.026069901883602142,
- 0.01017165556550026,
- 0.00861530564725399,
- -0.052592337131500244,
- 0.028530649840831757,
- 0.025812767446041107,
- -0.023247944191098213,
- 0.01931673288345337,
- 0.05171125754714012,
- -0.030965136364102364,
- -0.0021786403376609087,
- -0.0017360842321068048,
- 0.03429846838116646,
- -0.04450330510735512,
- 0.001962784444913268,
- -0.027439303696155548,
- -0.05382832884788513,
- 0.025815067812800407,
- -0.09919418394565582,
- -0.02979421615600586,
- 0.0027248018886893988,
- -0.006035521626472473,
- -0.06793022900819778,
- -0.07972994446754456,
- -0.03384716063737869,
- 0.01891668140888214,
- 0.08371233195066452,
- -0.029100587591528893,
- -0.02712288871407509,
- -0.0699467658996582,
- 0.025685792788863182,
- -0.014673267491161823,
- 0.044827356934547424,
- -0.0318182148039341,
- -0.05581115931272507,
- 0.0021841886918991804,
- 0.00022508177789859474,
- 0.059053685516119,
- -1.3290192057979766e-8,
- -0.07791192084550858,
- -0.00034837255952879786,
- 0.06923384219408035,
- 0.07715719938278198,
- 0.01959778554737568,
- -0.06061723828315735,
- -0.020890485495328903,
- 0.06846015155315399,
- -0.04067555069923401,
- -0.02904614433646202,
- 0.054640550166368484,
- 0.000020035738998558372,
- 0.04495788365602493,
- 0.0731494203209877,
- 0.043698493391275406,
- -0.0035531504545360804,
- -0.08168385922908783,
- 0.021544920280575752,
- -0.04740503057837486,
- -0.023401958867907524,
- -0.009136977605521679,
- -0.0017222429160028696,
- 0.029031837359070778,
- -0.03682488203048706,
- 0.031441885977983475,
- 0.01708703674376011,
- -0.03370353952050209,
- 0.06738832592964172,
- -0.031210508197546005,
- -0.023225657641887665,
- 0.07494308799505234,
- 0.07059731334447861,
- 0.056633032858371735,
- -0.009964600205421448,
- -0.038465604186058044,
- -0.03382469713687897,
- 0.05699757859110832,
- 0.015347585082054138,
- 0.008873753249645233,
- -0.0207795649766922,
- -0.013569366186857224,
- -0.025819268077611923,
- -0.04425746947526932,
- 0.04049673303961754,
- -0.13643714785575867,
- -0.07462309300899506,
- 0.047008149325847626,
- 0.0007375480490736663,
- -0.04524499922990799,
- -0.14998650550842285,
- 0.04942331463098526,
- -0.007606953382492065,
- 0.06866542249917984,
- 0.004952806513756514,
- 0.08720815926790237,
- 0.058713559061288834,
- -0.018537357449531555,
- 0.015203122980892658,
- -0.015796754509210587,
- 0.06624186784029007,
- 0.1281062215566635,
- -0.04385451227426529,
- 0.11117736250162125,
- -0.027341725304722786
- ]
- },
- {
- "keyword": "tweaks",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.04070306569337845,
- 0.07137450575828552,
- 0.03572529926896095,
- -0.0004322433960624039,
- 0.021551739424467087,
- -0.027506323531270027,
- 0.05486239120364189,
- -0.046898894011974335,
- -0.04389161616563797,
- 0.01663689687848091,
- 0.003012685105204582,
- 0.02648019790649414,
- -0.021817388013005257,
- -0.04626806825399399,
- 0.0362965427339077,
- 0.030197830870747566,
- 0.04940633848309517,
- 0.04483736678957939,
- -0.06352533400058746,
- -0.06600381433963776,
- -0.19133731722831726,
- -0.028164155781269073,
- 0.01686728186905384,
- 0.04724908247590065,
- -0.009470808319747448,
- 0.043966811150312424,
- -0.09380438178777695,
- 0.03265920281410217,
- 0.0460846945643425,
- -0.08000947535037994,
- -0.0519045926630497,
- 0.003680923255160451,
- 0.02245149202644825,
- -0.02692154422402382,
- -0.09760468453168869,
- 0.011891624890267849,
- -0.06270825862884521,
- 0.07838816940784454,
- -0.018569156527519226,
- -0.011686324141919613,
- -0.050953153520822525,
- -0.06994467973709106,
- -0.04200466349720955,
- -0.017261339351534843,
- -0.04563862457871437,
- -0.013500322587788105,
- 0.06782323867082596,
- 0.0014839577488601208,
- -0.05094191059470177,
- 0.079172283411026,
- 0.022739430889487267,
- -0.08780647069215775,
- -0.02141483686864376,
- -0.03733854740858078,
- 0.011857141740620136,
- 0.03278062120079994,
- 0.04701054468750954,
- 0.07485494017601013,
- 0.07500194758176804,
- 0.06545882672071457,
- 0.08082614839076996,
- 0.01828462816774845,
- -0.03096226416528225,
- 0.09132631123065948,
- 0.08249283581972122,
- 0.012125120498239994,
- 0.021010510623455048,
- -0.06131654605269432,
- 0.0007493433076888323,
- -0.01978754624724388,
- -0.007079159840941429,
- 0.07853808254003525,
- 0.056299082934856415,
- -0.011416700668632984,
- -0.033799488097429276,
- -0.014639734290540218,
- -0.009631658904254436,
- -0.03200488165020943,
- 0.016962986439466476,
- -0.026474662125110626,
- 0.015474717132747173,
- -0.08285016566514969,
- -0.08895429968833923,
- 0.019323699176311493,
- 0.040711212903261185,
- 0.013490852899849415,
- 0.008907340466976166,
- -0.07009454071521759,
- 0.06007935851812363,
- 0.027574578300118446,
- 0.019413691014051437,
- -0.025203213095664978,
- 0.044369932264089584,
- 0.02860654518008232,
- -0.0906761959195137,
- -0.008330999873578548,
- -0.03388955444097519,
- -0.05016286298632622,
- -0.09746990352869034,
- 0.17698605358600616,
- -0.03367971256375313,
- 0.00035449786810204387,
- 0.06840570271015167,
- 0.03351868316531181,
- 0.02090068906545639,
- -0.0011037305230274796,
- 0.03540761396288872,
- 0.022510869428515434,
- 0.021328117698431015,
- -0.002048082184046507,
- 0.0010486278915777802,
- 0.013390566222369671,
- -0.0018164244247600436,
- -0.02338886260986328,
- -0.06200934946537018,
- -0.015721792355179787,
- 0.009513327851891518,
- 0.04757315292954445,
- 0.048192720860242844,
- -0.01974422298371792,
- 0.10394091159105301,
- 0.022066554054617882,
- -0.08996950834989548,
- -0.08624190837144852,
- -0.029835788533091545,
- 0.03241519629955292,
- -0.027622219175100327,
- -8.972783134313574e-35,
- 0.09969180077314377,
- 0.031126441434025764,
- -0.05220551788806915,
- 0.03806784749031067,
- 0.11755269020795822,
- -0.026791535317897797,
- 0.041691526770591736,
- -0.05083703622221947,
- -0.10215936601161957,
- 0.022232089191675186,
- 0.055803969502449036,
- -0.02281642146408558,
- -0.04425791651010513,
- 0.018965978175401688,
- 0.10456084460020065,
- -0.09412343055009842,
- -0.02556617744266987,
- 0.03287274390459061,
- 0.03647766634821892,
- -0.02004692144691944,
- -0.05502738803625107,
- 0.01727949269115925,
- -0.07557564973831177,
- 0.0058599794283509254,
- -0.032611116766929626,
- 0.02752845175564289,
- 0.060360271483659744,
- 0.013222654350101948,
- -0.025983497500419617,
- 0.04717133939266205,
- -0.04695378616452217,
- 0.03163648396730423,
- -0.011255545541644096,
- 0.02275034599006176,
- 0.009181354194879532,
- -0.019197991117835045,
- -0.012410931289196014,
- -0.05206214264035225,
- 0.02712107077240944,
- -0.07030417770147324,
- 0.00843320693820715,
- 0.006511636544018984,
- -0.02951742149889469,
- -0.022596273571252823,
- 0.02303227037191391,
- 0.0548924021422863,
- 0.06420240551233292,
- -0.011440756730735302,
- -0.06307727098464966,
- -0.04167729616165161,
- 0.021305330097675323,
- -0.0073419553227722645,
- -0.04548954591155052,
- 0.0036772151943296194,
- -0.07423665374517441,
- -0.07843203842639923,
- 0.014715908095240593,
- 0.07353779673576355,
- 0.08124777674674988,
- 0.04108266904950142,
- 0.0014439001679420471,
- -0.06386680901050568,
- -0.03560585156083107,
- -0.042358625680208206,
- 0.04475461691617966,
- 0.024866145104169846,
- 0.04797302559018135,
- 0.0019722324796020985,
- -0.019507601857185364,
- -0.059602443128824234,
- -0.09850728511810303,
- 0.022055460140109062,
- 0.08414541929960251,
- 0.09115166962146759,
- -0.04645414650440216,
- -0.0030980021692812443,
- 0.05004707723855972,
- -0.03732874244451523,
- 0.0004908253904432058,
- -0.08066952228546143,
- -0.05181946977972984,
- -0.0031664185225963593,
- -0.004984342493116856,
- 0.030809037387371063,
- 0.03106517158448696,
- -0.06765387952327728,
- -0.023280564695596695,
- 0.042369332164525986,
- 0.030300816521048546,
- -0.03473244607448578,
- -0.10044123977422714,
- 0.014352048747241497,
- 0.04715411737561226,
- -0.04063643142580986,
- -0.07176660001277924,
- 8.426271359415441e-34,
- -0.0567714162170887,
- -0.037910327315330505,
- -0.05773451179265976,
- 0.12487278133630753,
- -0.020187102258205414,
- 0.019427312538027763,
- -0.004487087484449148,
- 0.048954129219055176,
- 0.007532021030783653,
- -0.052186157554388046,
- 0.07764177769422531,
- -0.015490537509322166,
- -0.015634603798389435,
- -0.08703641593456268,
- -0.008963283151388168,
- 0.0064532761462032795,
- 0.0643138661980629,
- 0.009109551087021828,
- -0.014312402345240116,
- -0.024781083688139915,
- -0.03032667562365532,
- -0.062671959400177,
- -0.042586054652929306,
- 0.05241894721984863,
- -0.019067002460360527,
- 0.021492507308721542,
- -0.051287420094013214,
- 0.0450129471719265,
- 0.031224114820361137,
- -0.047877777367830276,
- 0.011301255784928799,
- -0.03882581740617752,
- -0.0019068664405494928,
- 0.02089368738234043,
- 0.02386222966015339,
- 0.0712423175573349,
- 0.03207031264901161,
- 0.0022379066795110703,
- -0.004394220653921366,
- 0.05580621212720871,
- 0.0516933873295784,
- -0.004105405882000923,
- 0.021783996373414993,
- 0.07862527668476105,
- -0.004891272634267807,
- 0.08788303285837173,
- -0.08801871538162231,
- -0.0374586246907711,
- -0.04735192656517029,
- 0.013151351362466812,
- 0.031290363520383835,
- -0.011987203732132912,
- 0.016537517309188843,
- -0.10508988052606583,
- 0.004722130950540304,
- 0.022273922339081764,
- 0.08323106169700623,
- -0.023933742195367813,
- 0.016835873946547508,
- 0.04231454059481621,
- 0.012708577327430248,
- 0.047974370419979095,
- -0.06483687460422516,
- -0.01908927969634533,
- -0.012756699696183205,
- 0.00042469921754673123,
- -0.016927987337112427,
- 0.04623768478631973,
- 0.020633136853575706,
- -0.006726386491209269,
- -0.02741924114525318,
- -0.058776628226041794,
- 0.026429390534758568,
- -0.12665390968322754,
- 0.03847284987568855,
- -0.13130980730056763,
- 0.03787977248430252,
- -0.028615176677703857,
- -0.011981785297393799,
- -0.04315783828496933,
- 0.051777563989162445,
- 0.0322578065097332,
- 0.01948198303580284,
- -0.04419880360364914,
- 0.025999370962381363,
- 0.08603644371032715,
- -0.016879728063941002,
- 0.11580295860767365,
- 0.023383168503642082,
- 0.012545045465230942,
- -0.06933331489562988,
- 0.10121729224920273,
- 0.08845765143632889,
- 0.047305021435022354,
- -0.006724185310304165,
- -1.5784443974098394e-8,
- -0.010466263629496098,
- 0.004151205997914076,
- -0.011120031587779522,
- 0.05679301172494888,
- 0.00047475562314502895,
- 0.04483813792467117,
- -0.04323919862508774,
- 0.10686022788286209,
- 0.002995551098138094,
- -0.07627527415752411,
- 0.004917296580970287,
- -0.017436683177947998,
- 0.017656464129686356,
- 0.02926655486226082,
- 0.01113883126527071,
- -0.04443337023258209,
- -0.1526172161102295,
- 0.08145110309123993,
- -0.061117734760046005,
- -0.09149221330881119,
- -0.037849269807338715,
- 0.020015394315123558,
- 0.061814386397600174,
- -0.03214780613780022,
- 0.06515820324420929,
- -0.01442040130496025,
- -0.04096219316124916,
- 0.05753960832953453,
- 0.08461642265319824,
- -0.014698381535708904,
- 0.0014357349136844277,
- 0.05876688286662102,
- 0.023595819249749184,
- 0.01740993745625019,
- 0.0796118676662445,
- 0.0036271035205572844,
- -0.0729236900806427,
- 0.005871800240129232,
- 0.02573399618268013,
- 0.025269215926527977,
- 0.01657482050359249,
- -0.011722435243427753,
- -0.03524892404675484,
- 0.020289326086640358,
- -0.16636262834072113,
- -0.04761231318116188,
- 0.05544915795326233,
- -0.011635353788733482,
- -0.06765971332788467,
- 0.0050731804221868515,
- 0.0551273450255394,
- 0.07500765472650528,
- 0.013165189884603024,
- 0.04589569568634033,
- 0.050924208015203476,
- 0.026123443618416786,
- 0.05598907172679901,
- 0.01536987628787756,
- 0.031300585716962814,
- 0.009663684293627739,
- 0.04796529561281204,
- 0.06452910602092743,
- 0.0010171807371079922,
- -0.06805149465799332
- ]
- },
- {
- "keyword": "modification",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.02747441828250885,
- 0.11770790070295334,
- 0.015862205997109413,
- 0.005125519819557667,
- 0.05586249753832817,
- 0.018116069957613945,
- 0.09626250714063644,
- -0.005108708515763283,
- -0.0548604279756546,
- 0.021806970238685608,
- -0.0006840498535893857,
- 0.008110330440104008,
- -0.05240481346845627,
- -0.052965447306632996,
- -0.045899562537670135,
- -0.0011891693575307727,
- 0.03955484554171562,
- 0.048133596777915955,
- -0.05984966829419136,
- -0.017168747261166573,
- -0.10658613592386246,
- 0.04313177242875099,
- 0.019713615998625755,
- 0.04199346527457237,
- -0.00009151322592515498,
- 0.03956284001469612,
- -0.03228498250246048,
- 0.10318531095981598,
- 0.07040929049253464,
- -0.13183793425559998,
- 0.02868826314806938,
- 0.07275562733411789,
- 0.08665801584720612,
- -0.011246624402701855,
- -0.06305086612701416,
- -0.01803523674607277,
- 0.01288211066275835,
- 0.08131549507379532,
- 0.04293610528111458,
- -0.017280885949730873,
- -0.04665137082338333,
- -0.10869251191616058,
- -0.02195671759545803,
- -0.010041051544249058,
- -0.04605504125356674,
- 0.04548930749297142,
- -0.008744790218770504,
- -0.031059209257364273,
- -0.07658084481954575,
- 0.09096402674913406,
- 0.010214920155704021,
- -0.03477797657251358,
- -0.07618117332458496,
- -0.05380893126130104,
- 0.011334750801324844,
- 0.01457992009818554,
- 0.005501581355929375,
- 0.026846738532185555,
- 0.09205875545740128,
- -0.0551283173263073,
- 0.08841423690319061,
- 0.06906136870384216,
- -0.03136346489191055,
- 0.04705073684453964,
- 0.0684896856546402,
- -0.06353522092103958,
- 0.01621645875275135,
- -0.08451099693775177,
- -0.007636724971234798,
- -0.027813343331217766,
- 0.045978136360645294,
- 0.06880435347557068,
- -0.00026747051742859185,
- -0.041360657662153244,
- -0.0007142196409404278,
- 0.0024474114179611206,
- -0.046041518449783325,
- 0.025090917944908142,
- 0.06673651188611984,
- -0.0426848903298378,
- 0.03136099874973297,
- 0.0229999627918005,
- -0.025804264470934868,
- 0.0037297597154974937,
- 0.021697867661714554,
- -0.013538685627281666,
- -0.009398815222084522,
- -0.055592481046915054,
- -0.010546236298978329,
- 0.004616676364094019,
- 0.008368762210011482,
- -0.0009930437663570046,
- 0.08310192078351974,
- -0.05326158180832863,
- -0.09785198420286179,
- 0.012995234690606594,
- -0.04272592067718506,
- -0.025391273200511932,
- 0.017870936542749405,
- 0.3342640697956085,
- -0.011046267114579678,
- 0.07241164147853851,
- -0.02868395857512951,
- -0.042567115277051926,
- -0.017483187839388847,
- -0.01606052741408348,
- -0.05462002754211426,
- 0.02625252678990364,
- -0.024839071556925774,
- -0.019815221428871155,
- 0.013847175985574722,
- -0.0177815780043602,
- -0.04016917198896408,
- -0.0632152259349823,
- -0.027080517262220383,
- -0.022551748901605606,
- 0.004963654559105635,
- 0.01759057119488716,
- 0.003795812837779522,
- -0.004512759856879711,
- 0.08881133794784546,
- -0.004733921028673649,
- -0.0013958195922896266,
- 0.013701091520488262,
- -0.086992047727108,
- -0.028986824676394463,
- -0.020606065168976784,
- -5.0003799503232494e-33,
- 0.03555043786764145,
- 0.02374742552638054,
- -0.00035027938429266214,
- 0.03259351849555969,
- 0.06304029375314713,
- -0.006211057770997286,
- 0.0031006340868771076,
- -0.071501225233078,
- -0.05819125846028328,
- -0.03695869818329811,
- 0.05786525830626488,
- 0.043463084846735,
- -0.02941792644560337,
- -0.01925824210047722,
- 0.13706418871879578,
- -0.02872668020427227,
- 0.0038825625088065863,
- 0.02696601301431656,
- -0.0246670413762331,
- -0.01561171654611826,
- -0.044482167810201645,
- 0.08195435255765915,
- -0.039205342531204224,
- 0.03013535588979721,
- -0.033901430666446686,
- -0.010983776301145554,
- -0.003924921154975891,
- -0.01260296069085598,
- -0.04388897120952606,
- 0.006747049279510975,
- 0.006021521985530853,
- 0.008161772042512894,
- -0.00989408977329731,
- 0.03661821037530899,
- -0.0199110209941864,
- -0.03734881058335304,
- 0.01923276111483574,
- -0.11903655529022217,
- 0.012221038341522217,
- -0.01593191921710968,
- -0.03141750395298004,
- -0.005082494579255581,
- -0.03983180224895477,
- 0.020678848028182983,
- 0.02304028905928135,
- 0.08727908134460449,
- 0.06847973167896271,
- 0.040080539882183075,
- -0.019314000383019447,
- -0.01673114486038685,
- 0.04432021453976631,
- 0.00712188147008419,
- -0.009488089010119438,
- -0.005817043595016003,
- -0.07739267498254776,
- -0.030014898627996445,
- 0.015233716927468777,
- -0.036795906722545624,
- 0.03725932538509369,
- 0.049567703157663345,
- 0.0806007906794548,
- 0.049686264246702194,
- -0.0006995220319367945,
- -0.0025611042510718107,
- 0.005941851530224085,
- -0.010103714652359486,
- 0.10016108304262161,
- -0.03088315762579441,
- 0.056822944432497025,
- -0.02501303143799305,
- -0.16880589723587036,
- -0.03240875527262688,
- 0.08587314933538437,
- 0.10996108502149582,
- -0.044830162078142166,
- -0.09133683145046234,
- -0.01179871428757906,
- 0.04749296233057976,
- -0.00466574402526021,
- -0.07026230543851852,
- -0.060266025364398956,
- 0.06615864485502243,
- 0.006667366251349449,
- 0.010186798870563507,
- 0.052072297781705856,
- -0.06526310741901398,
- 0.019944725558161736,
- -0.0034740553237497807,
- 0.0052810125052928925,
- 0.011571042239665985,
- -0.019635438919067383,
- -0.028648456558585167,
- -0.004553674720227718,
- 0.01665641739964485,
- 0.017582498490810394,
- 4.931486063131478e-33,
- -0.11664573103189468,
- -0.05729971081018448,
- -0.01835550367832184,
- 0.04695228114724159,
- -0.013778040185570717,
- -0.016158921644091606,
- 0.05187467858195305,
- 0.007485068403184414,
- 0.013832103461027145,
- -0.06529521197080612,
- 0.014168945141136646,
- -0.0225165244191885,
- 0.02461489662528038,
- -0.038157545030117035,
- -0.012273397296667099,
- 0.0400811992585659,
- 0.01664450578391552,
- -0.020479312166571617,
- -0.057993486523628235,
- 0.01225485559552908,
- -0.007917809300124645,
- 0.06300812214612961,
- 0.05917387083172798,
- -0.010821911506354809,
- -0.026572909206151962,
- 0.016163505613803864,
- -0.011093330569565296,
- 0.08531247079372406,
- 0.06998404115438461,
- -0.07349570095539093,
- 0.0014093694044277072,
- -0.012557266280055046,
- -0.09235009551048279,
- 0.03453522548079491,
- -0.002990183187648654,
- 0.019567981362342834,
- 0.05290637165307999,
- 0.013322964310646057,
- -0.03796706721186638,
- 0.015403044410049915,
- 0.06086733564734459,
- 0.0420679897069931,
- 0.0041757249273359776,
- 0.14479471743106842,
- 0.05117787420749664,
- 0.018805429339408875,
- -0.045856066048145294,
- -0.049718838185071945,
- 0.05713127553462982,
- -0.01991591602563858,
- -0.014818652532994747,
- -0.013491975143551826,
- 0.029321713373064995,
- -0.013854690827429295,
- -0.0023197694681584835,
- -0.00659940717741847,
- 0.10075487941503525,
- -0.050708554685115814,
- 0.09160346537828445,
- -0.054160263389348984,
- 0.013659581542015076,
- 0.06970228999853134,
- -0.019008399918675423,
- -0.016864225268363953,
- 0.017468702048063278,
- 0.010049063712358475,
- -0.04664456844329834,
- -0.0352136604487896,
- 0.03113497421145439,
- -0.02038898505270481,
- -0.02944331429898739,
- -0.07665891200304031,
- -0.03391186147928238,
- -0.020257243886590004,
- 0.018430786207318306,
- -0.12135424464941025,
- 0.002264689188450575,
- 0.042338572442531586,
- -0.008423862047493458,
- -0.04138792306184769,
- -0.044709015637636185,
- -0.0670844092965126,
- -0.020770877599716187,
- 0.011985099874436855,
- -0.005825856700539589,
- 0.007756585255265236,
- -0.02214582823216915,
- 0.08761832118034363,
- 0.040782149881124496,
- 0.017994137480854988,
- -0.059551309794187546,
- 0.05760107561945915,
- -0.018635591492056847,
- 0.022996608167886734,
- -0.059457048773765564,
- -1.3877112792215485e-8,
- 0.013997589237987995,
- -0.0015969895757734776,
- -0.08462969213724136,
- 0.09256520122289658,
- 0.055386342108249664,
- -0.008262977004051208,
- -0.06679143011569977,
- 0.014555084519088268,
- -0.003966112155467272,
- -0.0619167722761631,
- 0.06377815455198288,
- 0.044371165335178375,
- 0.0823756754398346,
- 0.05775143578648567,
- 0.007777211256325245,
- -0.06333079189062119,
- -0.12263810634613037,
- 0.04281776770949364,
- -0.06648337841033936,
- 0.010846658609807491,
- -0.08030665665864944,
- 0.07279862463474274,
- 0.03672431781888008,
- 0.009367992170155048,
- 0.04006515070796013,
- -0.040591318160295486,
- 0.006883410271257162,
- 0.04281921684741974,
- -0.0003426800249144435,
- 0.010018140077590942,
- 0.06235267594456673,
- 0.044397447258234024,
- 0.021337302401661873,
- 0.04966245964169502,
- -0.01676628738641739,
- -0.010779746808111668,
- -0.03255083039402962,
- 0.00394060555845499,
- 0.0019720655400305986,
- 0.059484049677848816,
- 0.014745105057954788,
- -0.0786944031715393,
- -0.043810125440359116,
- 0.028315313160419464,
- -0.04109163209795952,
- -0.0675327479839325,
- 0.045942507684230804,
- -0.11827809363603592,
- -0.05610501021146774,
- -0.05117587745189667,
- 0.016766756772994995,
- 0.033764950931072235,
- 0.044557224959135056,
- 0.01340325828641653,
- 0.0359613373875618,
- 0.048263613134622574,
- 0.022597376257181168,
- 0.06342227011919022,
- -0.011994057334959507,
- 0.07595744729042053,
- 0.06322355568408966,
- 0.009649649262428284,
- 0.06678806245326996,
- -0.02709336206316948
- ]
- },
- {
- "keyword": "update",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.03178633749485016,
- -0.015288547612726688,
- 0.006270131561905146,
- 0.005546149797737598,
- -0.032757338136434555,
- -0.06639629602432251,
- 0.06194605305790901,
- 0.062460657209157944,
- -0.07183142751455307,
- 0.04377856105566025,
- 0.01972031220793724,
- -0.02788655459880829,
- -0.043835774064064026,
- 0.006859589833766222,
- 0.0061735003255307674,
- 0.047232549637556076,
- 0.013369825668632984,
- -0.0071876924484968185,
- -0.1330549716949463,
- -0.011815390549600124,
- -0.12370839715003967,
- -0.02185065485537052,
- 0.01785983145236969,
- 0.020742325112223625,
- -0.013619132339954376,
- 0.03499686345458031,
- -0.04866085201501846,
- 0.04161262512207031,
- 0.010176734067499638,
- -0.09175006300210953,
- -0.012135746888816357,
- 0.017760146409273148,
- 0.09661666303873062,
- -0.04909537360072136,
- 0.06869392096996307,
- -0.0625569149851799,
- 0.047629304230213165,
- 0.018400870263576508,
- -0.012650787830352783,
- -0.03640399128198624,
- 0.032011084258556366,
- -0.021690625697374344,
- -0.015514949336647987,
- 0.04956785589456558,
- -0.010166557505726814,
- 0.054922837764024734,
- -0.008673395961523056,
- 0.04252788797020912,
- -0.0070409830659627914,
- 0.016581080853939056,
- -0.03060190938413143,
- -0.0020808791741728783,
- 0.0027639383915811777,
- -0.022989491000771523,
- 0.0028584906831383705,
- 0.07597819715738297,
- -0.0053429980762302876,
- 0.0856570452451706,
- 0.03447432443499565,
- -0.00727584445849061,
- 0.14246897399425507,
- 0.030741268768906593,
- -0.007676718756556511,
- 0.10071879625320435,
- -0.05987781658768654,
- 0.010297944769263268,
- -0.0016186796128749847,
- -0.039274778217077255,
- -0.07644472271203995,
- -0.059260718524456024,
- 0.004983467981219292,
- 0.12624244391918182,
- -0.09030124545097351,
- -0.08755700290203094,
- 0.03490455448627472,
- 0.03593304380774498,
- 0.057288963347673416,
- -0.06867583096027374,
- 0.08123461157083511,
- -0.014829406514763832,
- -0.024792654439806938,
- -0.031503792852163315,
- -0.05248589068651199,
- -0.015368271619081497,
- 0.01344246044754982,
- 0.03387116640806198,
- 0.04796505346894264,
- -0.028697360306978226,
- -0.1131698489189148,
- -0.008288399316370487,
- 0.02039853110909462,
- -0.031056426465511322,
- 0.1129058375954628,
- 0.006489661056548357,
- -0.06445135176181793,
- 0.043829213827848434,
- -0.001023103715851903,
- 0.028159843757748604,
- -0.1068347916007042,
- 0.35004618763923645,
- 0.0046304999850690365,
- 0.03059007227420807,
- -0.007460012566298246,
- -0.03454715013504028,
- -0.010097160935401917,
- 0.005704020150005817,
- 0.0011801074724644423,
- 0.06620365381240845,
- -0.02426699548959732,
- -0.07980747520923615,
- 0.027234215289354324,
- 0.021655408665537834,
- -0.036612823605537415,
- -0.06396015733480453,
- -0.08750050514936447,
- -0.04383533075451851,
- -0.01736278459429741,
- 0.08553868532180786,
- -0.00825901422649622,
- -0.02528432011604309,
- 0.029250402003526688,
- 0.0011704706121236086,
- 0.029912419617176056,
- -0.010406984947621822,
- -0.07268249243497849,
- -0.07232028245925903,
- 0.06544622778892517,
- 3.20073795581966e-34,
- 0.023658497259020805,
- -0.014202399179339409,
- -0.01840672455728054,
- 0.03653591498732567,
- -0.0013260432751849294,
- -0.006920490879565477,
- 0.062317267060279846,
- -0.0816936120390892,
- -0.020646225661039352,
- 0.015564528293907642,
- 0.00024488993221893907,
- 0.019176190719008446,
- -0.04382896050810814,
- -0.007510833907872438,
- 0.05147544667124748,
- -0.02676723711192608,
- 0.0943482518196106,
- 0.058423858135938644,
- 0.00740796560421586,
- -0.001976286992430687,
- 0.015880383551120758,
- 0.0269775427877903,
- 0.012398415245115757,
- 0.05073236674070358,
- 0.0010973346652463078,
- 0.05761589854955673,
- -0.014194771647453308,
- -0.05153993144631386,
- -0.0025294313672930002,
- 0.04329321160912514,
- 0.007941569201648235,
- 0.025310831144452095,
- 0.006207319907844067,
- 0.01455689873546362,
- -0.006765588652342558,
- 0.0005546294851228595,
- 0.0034019167069345713,
- -0.03159552440047264,
- -0.02552170120179653,
- -0.04514307901263237,
- -0.039282552897930145,
- 0.003198428312316537,
- -0.14617182314395905,
- 0.020976994186639786,
- 0.02483823150396347,
- -0.00987587496638298,
- 0.011034121736884117,
- 0.013763047754764557,
- 0.04206705465912819,
- 0.009826782159507275,
- 0.02559468150138855,
- -0.01968464069068432,
- -0.05518896132707596,
- -0.030517155304551125,
- -0.09986545890569687,
- -0.0013393413973972201,
- 0.012894629500806332,
- -0.026397353038191795,
- 0.05861687287688255,
- -0.008301922120153904,
- 0.07106755673885345,
- 0.022591711953282356,
- 0.013216156512498856,
- -0.040782660245895386,
- -0.054669301956892014,
- 0.03342454507946968,
- 0.04475453123450279,
- -0.04455829784274101,
- 0.022277815267443657,
- -0.02792980521917343,
- -0.05646826699376106,
- 0.03131062909960747,
- 0.06513522565364838,
- 0.03647932410240173,
- -0.022536184638738632,
- -0.006544535048305988,
- 0.004783349111676216,
- 0.017815951257944107,
- -0.11233816295862198,
- 0.04646563157439232,
- -0.004574706312268972,
- -0.005178786814212799,
- -0.06244860589504242,
- 0.12786121666431427,
- 0.08646994829177856,
- 0.05930677428841591,
- -0.007518589962273836,
- -0.016965892165899277,
- -0.0008947713067755103,
- 0.001209540874697268,
- -0.034583017230033875,
- -0.005887686274945736,
- -0.04629090800881386,
- 0.035036612302064896,
- -0.0969090387225151,
- 5.662755772319246e-34,
- -0.04887789487838745,
- -0.012834020890295506,
- -0.0482734851539135,
- -0.011441260576248169,
- 0.007971132174134254,
- -0.03363494202494621,
- 0.06651925295591354,
- 0.03892522677779198,
- 0.010937266983091831,
- -0.007989916019141674,
- 0.010097874328494072,
- -0.03322087228298187,
- 0.020485002547502518,
- -0.012184991501271725,
- 0.029125217348337173,
- 0.048846542835235596,
- 0.053273167461156845,
- -0.011160279624164104,
- -0.06475364416837692,
- 0.035116661339998245,
- -0.07731234282255173,
- -0.016128506511449814,
- -0.06720986217260361,
- 0.0632576271891594,
- -0.06253205239772797,
- 0.024495888501405716,
- 0.07657020539045334,
- 0.05803518742322922,
- 0.04904833063483238,
- 0.01873481273651123,
- 0.1301766335964203,
- -0.06451235711574554,
- -0.04543611407279968,
- 0.011193128302693367,
- 0.048438604921102524,
- 0.08302472531795502,
- 0.07169392704963684,
- -0.08149954676628113,
- -0.020389992743730545,
- 0.000505654199514538,
- 0.138231560587883,
- 0.03982546553015709,
- -0.04016142338514328,
- 0.09005828946828842,
- 0.06465709954500198,
- 0.00047793216072022915,
- -0.001101630856283009,
- -0.011458898894488811,
- 0.0028293055947870016,
- 0.00718904472887516,
- -0.04657035320997238,
- 0.005013612098991871,
- -0.01857900060713291,
- -0.040274109691381454,
- 0.025352299213409424,
- -0.018292713910341263,
- 0.00766696548089385,
- 0.04825633391737938,
- 0.01681342162191868,
- -0.041833315044641495,
- 0.005739816930145025,
- 0.081430584192276,
- -0.05102993920445442,
- -0.016583716496825218,
- -0.005052133463323116,
- 0.1168556958436966,
- -0.014067682437598705,
- -0.006541824899613857,
- 0.06909061968326569,
- -0.006079637911170721,
- -0.03718052804470062,
- -0.04132295399904251,
- -0.03079335018992424,
- -0.025758378207683563,
- 0.018056614324450493,
- -0.09523718059062958,
- -0.030108360573649406,
- 0.017826907336711884,
- 0.013002557680010796,
- -0.025502171367406845,
- -0.013619305565953255,
- -0.043962981551885605,
- 0.033256690949201584,
- -0.0006933350814506412,
- 0.006958579644560814,
- -0.018500469624996185,
- 0.1236884817481041,
- 0.07106693089008331,
- 0.015133706852793694,
- -0.02357385866343975,
- -0.02303185686469078,
- -0.006659210193902254,
- 0.014054357074201107,
- 0.02963610365986824,
- -0.01291848998516798,
- -1.6125085267049144e-8,
- -0.01177056971937418,
- 0.04633896052837372,
- -0.022859808057546616,
- 0.03061259724199772,
- 0.057912811636924744,
- 0.03827403113245964,
- -0.006581988651305437,
- 0.015694264322519302,
- -0.017185542732477188,
- -0.03278830274939537,
- -0.015612100251019001,
- -0.0016689901240170002,
- 0.08151803910732269,
- 0.07669427990913391,
- 0.08196091651916504,
- -0.04324405640363693,
- -0.13058608770370483,
- 0.025562699884176254,
- -0.02602258510887623,
- -0.051524315029382706,
- -0.0370001345872879,
- -0.012976369820535183,
- 0.08163465559482574,
- -0.0662219449877739,
- 0.06484360992908478,
- -0.06417660415172577,
- 0.003210785100236535,
- 0.08596640825271606,
- -0.04803472012281418,
- -0.04005347564816475,
- -0.0056510972790420055,
- -0.00580146349966526,
- -0.011939769610762596,
- 0.02564617618918419,
- 0.02157818153500557,
- -0.05619069188833237,
- -0.04559704288840294,
- 0.03580649569630623,
- 0.016493387520313263,
- 0.07548722624778748,
- 0.013492121361196041,
- -0.06890307366847992,
- 0.04593510180711746,
- -0.03468713164329529,
- -0.04143435135483742,
- 0.03522518277168274,
- -0.02253151684999466,
- -0.0765233039855957,
- -0.001343169016763568,
- 0.015428311191499233,
- -0.042069047689437866,
- 0.006543436087667942,
- 0.04620741680264473,
- -0.004258288070559502,
- 0.05188191309571266,
- 0.0493791438639164,
- 0.007624538149684668,
- -0.047022443264722824,
- -0.03146488219499588,
- 0.017047474160790443,
- 0.12121377885341644,
- -0.0446578748524189,
- -0.0321972593665123,
- -0.03882520645856857
- ]
- },
- {
- "keyword": "change",
- "type": "modifies",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.020690418779850006,
- 0.09211572259664536,
- 0.04570911452174187,
- -0.029300326481461525,
- -0.009218404069542885,
- -0.016375986859202385,
- 0.053824227303266525,
- -0.002772338455542922,
- -0.004958096891641617,
- 0.02692645974457264,
- -0.002792009385302663,
- -0.07838007807731628,
- -0.030848506838083267,
- 0.011700568720698357,
- -0.0025181900709867477,
- 0.03391741216182709,
- -0.04462088271975517,
- 0.061805207282304764,
- -0.08811996877193451,
- 0.000016034833606681786,
- -0.07753841578960419,
- 0.033872734755277634,
- -0.015577524900436401,
- -0.0032319051679223776,
- -0.017429368570446968,
- 0.01066148467361927,
- -0.01771460846066475,
- 0.07543541491031647,
- 0.015224103815853596,
- -0.1274888813495636,
- 0.07204810529947281,
- 0.07566492259502411,
- 0.06228094547986984,
- -0.044516485184431076,
- -0.016076911240816116,
- 0.01992194354534149,
- 0.026077842339873314,
- 0.04654007777571678,
- 0.008189225569367409,
- -0.05130612850189209,
- 0.019572686403989792,
- -0.08778183162212372,
- -0.034758251160383224,
- -0.010907463729381561,
- -0.005464856047183275,
- 0.05890505015850067,
- 0.03162848576903343,
- -0.00022255029762163758,
- 0.05126528441905975,
- 0.006117645651102066,
- -0.01852048560976982,
- -0.004988440778106451,
- -8.341820603163796e-7,
- -0.03480571135878563,
- 0.01527199987322092,
- 0.04039311408996582,
- 0.05757235735654831,
- 0.12227554619312286,
- 0.03584447503089905,
- -0.011792040430009365,
- 0.11388593167066574,
- 0.06341345608234406,
- -0.016329914331436157,
- 0.05152871087193489,
- 0.008486497215926647,
- 0.0002667501103132963,
- -0.014603144489228725,
- 0.00526129687204957,
- -0.04439158737659454,
- -0.03068513050675392,
- -0.038157712668180466,
- 0.1267063319683075,
- 0.03491649031639099,
- -0.036880847066640854,
- 0.03148409351706505,
- -0.02613607794046402,
- -0.03303124010562897,
- -0.00697375787422061,
- 0.10341043770313263,
- 0.016919203102588654,
- 0.01429988443851471,
- 0.029682153835892677,
- -0.04200528562068939,
- 0.0049956138245761395,
- -0.01022223848849535,
- -0.012937133200466633,
- 0.0018995212158188224,
- -0.044424764811992645,
- -0.06840464472770691,
- -0.049019575119018555,
- -0.003282951656728983,
- 0.05647685378789902,
- 0.10681724548339844,
- -0.0022991725709289312,
- -0.07904937118291855,
- -0.012627203948795795,
- -0.02063308283686638,
- 0.019105499610304832,
- 0.055014148354530334,
- 0.3228335976600647,
- 0.00476541742682457,
- 0.0371817946434021,
- 0.037322647869586945,
- 0.01016822550445795,
- 0.0017277623992413282,
- -0.04453985393047333,
- -0.018714571371674538,
- 0.08811170607805252,
- -0.02096686325967312,
- -0.015666738152503967,
- 0.036678917706012726,
- 0.01865517906844616,
- -0.025345908477902412,
- -0.010445469990372658,
- -0.024269962683320045,
- -0.03447636961936951,
- -0.030330389738082886,
- 0.06221909075975418,
- -0.04703550413250923,
- 0.006256880704313517,
- -0.00016156627680175006,
- 0.01691347360610962,
- -0.032777972519397736,
- 0.017878254875540733,
- -0.090617336332798,
- -0.03384174779057503,
- 0.0578535757958889,
- -3.9230537041320235e-33,
- 0.02865404449403286,
- -0.06469027698040009,
- 0.010892030782997608,
- 0.031729958951473236,
- -0.04806429520249367,
- 0.03760913759469986,
- 0.006902370601892471,
- -0.03177284449338913,
- -0.006479770410805941,
- -0.051465943455696106,
- 0.09166601300239563,
- 0.029989304021000862,
- -0.029851214960217476,
- 0.0005559379351325333,
- 0.12361598014831543,
- -0.049785640090703964,
- 0.023056602105498314,
- -0.007300061173737049,
- 0.06223039701581001,
- -0.00003727354123839177,
- -0.09025998413562775,
- 0.08904396742582321,
- -0.018963048234581947,
- 0.011325170285999775,
- -0.04904738813638687,
- 0.014371967874467373,
- -0.02645021677017212,
- -0.04332125931978226,
- -0.009654868394136429,
- -0.0127951018512249,
- -0.003594673005864024,
- 0.0064789592288434505,
- -0.024918904528021812,
- 0.017238395288586617,
- 0.0034729393664747477,
- -0.03905576840043068,
- -0.001695777289569378,
- -0.07569784671068192,
- -0.020751990377902985,
- -0.100948266685009,
- -0.04855681210756302,
- 0.0032916672062128782,
- -0.08369841426610947,
- 0.024298328906297684,
- 0.07019025087356567,
- 0.10335342586040497,
- 0.09025388956069946,
- 0.010064822621643543,
- -0.07668708264827728,
- -0.02957688830792904,
- -0.0040748571045696735,
- 0.01555992104113102,
- -0.010936588048934937,
- 0.0043829032219946384,
- -0.012048300355672836,
- -0.03214595094323158,
- 0.06136874109506607,
- -0.00394816230982542,
- 0.02484211139380932,
- -0.01548443827778101,
- 0.06320235878229141,
- 0.056763071566820145,
- 0.028343023732304573,
- 0.01364592183381319,
- 0.005286953411996365,
- 0.018184687942266464,
- 0.0810893103480339,
- -0.05134928971529007,
- -0.04898037761449814,
- 0.011234795674681664,
- -0.08255483955144882,
- 0.0018843517173081636,
- 0.040136002004146576,
- 0.06629954278469086,
- -0.07953663170337677,
- -0.05785447359085083,
- -0.014473485760390759,
- 0.014398022554814816,
- -0.026009701192378998,
- -0.03909054398536682,
- -0.02664242871105671,
- 0.07892614603042603,
- -0.0462288036942482,
- 0.05437085032463074,
- 0.1471184343099594,
- -0.04047658294439316,
- -0.006392729468643665,
- 0.019331026822328568,
- 0.017646294087171555,
- 0.042387280613183975,
- -0.0582381933927536,
- -0.02333790995180607,
- 0.03822075203061104,
- 0.01855599321424961,
- -0.008782576769590378,
- 3.2817399858378774e-33,
- -0.14213827252388,
- 0.001292204367928207,
- -0.017184164375066757,
- 0.09828533977270126,
- -0.005954561289399862,
- -0.03006354160606861,
- 0.08391669392585754,
- 0.028177762404084206,
- 0.0650654137134552,
- 0.02822413668036461,
- 0.014290767721831799,
- -0.0632704421877861,
- 0.01055849064141512,
- 0.0008653599652461708,
- -0.023310482501983643,
- 0.009641122072935104,
- 0.0260621290653944,
- -0.04030997306108475,
- -0.07005790621042252,
- 0.018663430586457253,
- -0.065119169652462,
- 0.056015003472566605,
- -0.04348456487059593,
- 0.03118830919265747,
- -0.02986636757850647,
- 0.01994774490594864,
- 0.042558297514915466,
- 0.07427338510751724,
- 0.024301273748278618,
- -0.08268875628709793,
- 0.007708502467721701,
- 0.005875587463378906,
- -0.07991617172956467,
- 0.07256321609020233,
- -0.017386987805366516,
- 0.01983986236155033,
- 0.021338075399398804,
- -0.05197327211499214,
- -0.05828893184661865,
- 0.06594626605510712,
- 0.002884062472730875,
- -0.01352602057158947,
- 0.021434258669614792,
- 0.08735253661870956,
- -0.007303594145923853,
- 0.0750330463051796,
- 0.016220279037952423,
- -0.03258560970425606,
- 0.006824215408414602,
- -0.04624681919813156,
- -0.05181638151407242,
- -0.00816636998206377,
- 0.0014678415609523654,
- -0.05242552608251572,
- -0.006560707464814186,
- 0.028909333050251007,
- -0.001045977114699781,
- -0.04503423348069191,
- -0.005863397382199764,
- -0.01387620996683836,
- -0.02909085340797901,
- 0.037329595535993576,
- -0.0800936296582222,
- 0.03185231611132622,
- 0.027270091697573662,
- 0.02507692016661167,
- -0.05546814948320389,
- -0.054060544818639755,
- 0.07463547587394714,
- 0.003628950100392103,
- -0.016355672851204872,
- -0.12761329114437103,
- -0.04479749873280525,
- -0.046415071934461594,
- -0.0568411648273468,
- -0.07026342302560806,
- -0.08810555189847946,
- 0.01875431463122368,
- -0.024082347750663757,
- -0.0620725043118,
- -0.017225179821252823,
- -0.08039738982915878,
- -0.019443418830633163,
- 0.02451026625931263,
- -0.027818696573376656,
- 0.04116848483681679,
- 0.015838876366615295,
- 0.03362434357404709,
- -0.006975344382226467,
- 0.02652476727962494,
- 0.000041660096030682325,
- 0.008311888203024864,
- 0.00876651518046856,
- 0.025732984766364098,
- -0.009138565510511398,
- -1.3834706713566902e-8,
- -0.015129654668271542,
- 0.05565846338868141,
- 0.02596346288919449,
- 0.11330609023571014,
- 0.0184913482517004,
- -0.0025435539428144693,
- -0.03411006182432175,
- 0.03897300735116005,
- 0.027888663113117218,
- -0.0035275074187666178,
- 0.008595352992415428,
- 0.046679794788360596,
- 0.08750225603580475,
- 0.0684913694858551,
- 0.04523632302880287,
- -0.04087420925498009,
- -0.09468188136816025,
- -0.04462059587240219,
- -0.009866354987025261,
- 0.0032778754830360413,
- -0.12499964982271194,
- -0.0000986109662335366,
- -0.005018723662942648,
- 0.019779887050390244,
- 0.01892443187534809,
- -0.07382279634475708,
- -0.022692106664180756,
- 0.08739566802978516,
- -0.03045552410185337,
- 0.014146944507956505,
- -0.007292944006621838,
- 0.027175916358828545,
- -0.009744010865688324,
- 0.029513686895370483,
- -0.03428512066602707,
- -0.09774363785982132,
- -0.0444294735789299,
- -0.02759961225092411,
- 0.03586633503437042,
- 0.07648441195487976,
- -0.007835586555302143,
- -0.03516584634780884,
- -0.02918883040547371,
- 0.009071660228073597,
- -0.1655830442905426,
- -0.01810266636312008,
- 0.07007427513599396,
- -0.04134697839617729,
- 0.0013317923294380307,
- -0.03391500562429428,
- 0.0320642925798893,
- 0.0734056606888771,
- 0.059884946793317795,
- -0.015655159950256348,
- 0.12934312224388123,
- -0.006978721357882023,
- 0.05092281848192215,
- -0.0024057463742792606,
- -0.04624779894948006,
- 0.08553401380777359,
- 0.12212178856134415,
- -0.048020750284194946,
- 0.038558993488550186,
- -0.01351398415863514
- ]
- },
- {
- "keyword": "consumes",
- "type": "consumes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.03694242238998413,
- 0.02009849064052105,
- -0.024406928569078445,
- 0.06815923750400543,
- -0.020325733348727226,
- -0.06212931498885155,
- 0.19002948701381683,
- -0.01617623120546341,
- 0.015070139430463314,
- -0.0113882040604949,
- 0.026062851771712303,
- -0.09810924530029297,
- -0.015512494370341301,
- -0.019200187176465988,
- 0.016346562653779984,
- -0.06594084203243256,
- 0.09943016618490219,
- -0.05646048113703728,
- -0.03399241715669632,
- 0.059568196535110474,
- 0.028182534500956535,
- -0.02646721340715885,
- -0.008729143999516964,
- 0.030590126290917397,
- -0.023096024990081787,
- 0.06055568531155586,
- -0.012951688840985298,
- -0.06264973431825638,
- 0.05895833298563957,
- -0.05498003959655762,
- 0.021742429584264755,
- 0.03860039263963699,
- 0.06583617627620697,
- -0.032747358083724976,
- -0.028724830597639084,
- 0.019167585298419,
- 0.07199403643608093,
- -0.028174933046102524,
- -0.002031265525147319,
- -0.01926933042705059,
- -0.0006923135952092707,
- -0.06036313250660896,
- 0.015306070446968079,
- 0.07139552384614944,
- -0.051209744065999985,
- -0.01095446478575468,
- -0.06960723549127579,
- 0.032846543937921524,
- 0.0384853295981884,
- 0.034878943115472794,
- -0.07991235703229904,
- -0.028768057003617287,
- -0.03626438230276108,
- 0.049132127314805984,
- 0.10120846331119537,
- -0.03918493166565895,
- -0.003723499597981572,
- 0.0039022695273160934,
- -0.07187670469284058,
- -0.051764797419309616,
- -0.022181708365678787,
- 0.005726086441427469,
- -0.03963408246636391,
- 0.030715441331267357,
- 0.039112307131290436,
- -0.0033625345677137375,
- -0.06041917949914932,
- 0.0836944654583931,
- -0.029401397332549095,
- 0.0031542908400297165,
- -0.034760482609272,
- 0.002630092203617096,
- -0.02766156569123268,
- -0.02105850912630558,
- -0.012901402078568935,
- -0.026359127834439278,
- 0.06987501680850983,
- -0.0879499539732933,
- 0.0312152449041605,
- -0.0289460439234972,
- -0.04682565852999687,
- 0.01942959800362587,
- -0.0277395062148571,
- -0.011078843846917152,
- 0.05648362264037132,
- 0.008704956620931625,
- -0.022046951577067375,
- 0.015925150364637375,
- -0.0234930869191885,
- 0.005034463945776224,
- -0.07446445524692535,
- 0.009190011769533157,
- 0.10150360316038132,
- -0.00034569844137877226,
- -0.006563120987266302,
- -0.008681380189955235,
- 0.016902003437280655,
- -0.05234469100832939,
- 0.0021892169024795294,
- 0.1338827908039093,
- -0.019990749657154083,
- 0.12285066395998001,
- 0.050256289541721344,
- 0.002591486321762204,
- -0.08599935472011566,
- -0.05950378626585007,
- -0.12823493778705597,
- 0.14344428479671478,
- 0.04007728770375252,
- 0.045656681060791016,
- -0.018375616520643234,
- 0.042793724685907364,
- 0.005392133723944426,
- 0.03746066987514496,
- 0.05361560359597206,
- -0.0004548380966298282,
- 0.05980793386697769,
- -0.07952108234167099,
- 0.03713333234190941,
- 0.06059436500072479,
- -0.020936938002705574,
- 0.012652570381760597,
- -0.01929967664182186,
- 0.020922254770994186,
- -0.05620270222425461,
- -0.053184911608695984,
- 0.07491045445203781,
- -4.909672194058078e-33,
- -0.08856045454740524,
- -0.10360708832740784,
- 0.06319484859704971,
- 0.007130261976271868,
- -0.05093870684504509,
- -0.012390059418976307,
- 0.0007039223564788699,
- 0.014459311030805111,
- 0.031785644590854645,
- -0.09936050325632095,
- -0.027435600757598877,
- -0.010935862548649311,
- -0.06162877753376961,
- 0.13547933101654053,
- 0.10979779809713364,
- -0.08294843882322311,
- 0.014137905091047287,
- 0.05492359772324562,
- 0.05462922900915146,
- 0.011063016951084137,
- -0.08072232455015182,
- 0.033429939299821854,
- 0.019118444994091988,
- 0.010148365050554276,
- 0.017052559182047844,
- -0.047391749918460846,
- -0.050148967653512955,
- 0.01716400869190693,
- -0.006475792732089758,
- 0.02907218039035797,
- 0.10325095802545547,
- -0.02275799587368965,
- -0.08606483787298203,
- -0.013214564882218838,
- -0.02137829177081585,
- 0.024621987715363503,
- 0.04892518371343613,
- 0.0191232617944479,
- -0.05354265868663788,
- -0.07082875818014145,
- 0.010655953548848629,
- 0.04426240175962448,
- 0.0410914421081543,
- 0.014137019403278828,
- -0.06558574736118317,
- 0.0180025827139616,
- 0.015848996117711067,
- 0.046898044645786285,
- 0.011487738229334354,
- 0.051939066499471664,
- 0.023193838074803352,
- -0.06346963346004486,
- -0.0043424442410469055,
- -0.023437513038516045,
- -0.015167483128607273,
- -0.06956419348716736,
- 0.035241205245256424,
- -0.0360926054418087,
- 0.01196075975894928,
- -0.0496709831058979,
- 0.047089092433452606,
- 0.03895620256662369,
- 0.03349578008055687,
- 0.03138680383563042,
- -0.042245905846357346,
- 0.023515289649367332,
- -0.003686046926304698,
- -0.08055011928081512,
- -0.022834984585642815,
- 0.06158535182476044,
- -0.12301471829414368,
- -0.036615680903196335,
- 0.08966276794672012,
- 0.00639465032145381,
- 0.04746180772781372,
- -0.036126427352428436,
- 0.02090870589017868,
- -0.035136159509420395,
- -0.04859049990773201,
- 0.07624805718660355,
- 0.0278371199965477,
- -0.01960012875497341,
- 0.006796832196414471,
- 0.0145709328353405,
- -0.038009148091077805,
- 0.059546131640672684,
- 0.03295687213540077,
- -0.08368934690952301,
- 0.1035248339176178,
- 0.023005377501249313,
- -0.05504918843507767,
- -0.0237182155251503,
- -0.007697987835854292,
- 0.005476257763803005,
- -0.07576261460781097,
- 3.32878841254557e-33,
- -0.02736331894993782,
- 0.02504911459982395,
- -0.03070596233010292,
- 0.08182176202535629,
- -0.04008310288190842,
- -0.04652499035000801,
- -0.029574919492006302,
- -0.023862473666667938,
- 0.0017742569325491786,
- -0.020617829635739326,
- -0.06230761110782623,
- 0.029077667742967606,
- 0.007969427853822708,
- 0.0615432932972908,
- 0.019085466861724854,
- -0.02459939755499363,
- 0.13027185201644897,
- -0.02954893186688423,
- -0.002421110635623336,
- -0.055833712220191956,
- -0.03710880130529404,
- 0.039837222546339035,
- 0.03982560709118843,
- -0.08608583360910416,
- -0.04485200345516205,
- 0.09509070962667465,
- -0.02487216703593731,
- 0.0734211876988411,
- -0.0357368104159832,
- -0.04213681071996689,
- 0.052992090582847595,
- -0.04263247922062874,
- -0.0026156518142670393,
- -0.013954401947557926,
- 0.0033077606931328773,
- 0.023016560822725296,
- -0.010934439487755299,
- 0.11430197209119797,
- -0.06563127040863037,
- -0.029652534052729607,
- 0.07294664531946182,
- -0.011172090657055378,
- -0.0015294261975213885,
- 0.14432816207408905,
- -0.006432362832129002,
- -0.06398316472768784,
- 0.050434183329343796,
- -0.024016018956899643,
- 0.025363750755786896,
- -0.005953420884907246,
- 0.05677836760878563,
- -0.009812056086957455,
- -0.10010910779237747,
- -0.025466065853834152,
- -0.019454538822174072,
- 0.01661865971982479,
- 0.0469338521361351,
- -0.02540094032883644,
- 0.0749855637550354,
- -0.10352054238319397,
- -0.04024674743413925,
- 0.01165932696312666,
- -0.09579997509717941,
- 0.0032957361545413733,
- -0.0166153684258461,
- -0.060146864503622055,
- 0.0063349963165819645,
- -0.02164282649755478,
- 0.05325474962592125,
- -0.010725150816142559,
- 0.04231948405504227,
- 0.011676037684082985,
- -0.09157147258520126,
- -0.053206197917461395,
- -0.040330179035663605,
- 0.023888003081083298,
- -0.11947145313024521,
- -0.0006060069426894188,
- 0.01806379109621048,
- 0.00853014923632145,
- -0.06807926297187805,
- -0.011444060131907463,
- 0.03533737361431122,
- -0.020740725100040436,
- -0.02224763110280037,
- -0.046772342175245285,
- 0.0009869226487353444,
- -0.04909922555088997,
- -0.07088524103164673,
- 0.035277895629405975,
- -0.013686969876289368,
- -0.006273212842643261,
- -0.020516620948910713,
- 0.013600798323750496,
- 0.06212661787867546,
- -1.3255354147645448e-8,
- 0.036066584289073944,
- 0.00035130366450175643,
- 0.016230696812272072,
- 0.11191120743751526,
- 0.0049909488297998905,
- -0.037773922085762024,
- 0.02802283875644207,
- 0.03732740506529808,
- 0.06230997294187546,
- 0.1167905405163765,
- 0.03180224075913429,
- 0.01644136942923069,
- 0.06798899918794632,
- 0.026672255247831345,
- 0.06100769713521004,
- -0.03493895009160042,
- -0.006183993071317673,
- -0.03200634568929672,
- -0.1143648624420166,
- 0.006206950638443232,
- -0.02709377557039261,
- -0.027737323194742203,
- 0.023690298199653625,
- -0.012419027276337147,
- 0.0026290626265108585,
- 0.001351493294350803,
- 0.029652830213308334,
- 0.04396941140294075,
- 0.052778664976358414,
- 0.037863682955503464,
- 0.0691269114613533,
- 0.07949609309434891,
- -0.01417177077382803,
- -0.0320582315325737,
- 0.012522128410637379,
- -0.09054414927959442,
- -0.05381282791495323,
- -0.0017148645129054785,
- -0.005223361309617758,
- -0.038501471281051636,
- -0.05414851754903793,
- -0.09668735414743423,
- 0.03222984820604324,
- 0.038975559175014496,
- -0.06439410895109177,
- 0.01518905907869339,
- -0.04868399724364281,
- 0.02860117517411709,
- -0.029053255915641785,
- 0.00802028737962246,
- 0.0325191430747509,
- -0.01759515330195427,
- 0.015403088182210922,
- 0.04109005630016327,
- 0.04964593052864075,
- -0.06538154929876328,
- 0.056167084723711014,
- 0.0034704224672168493,
- -0.006874216720461845,
- 0.014910275116562843,
- 0.14019010961055756,
- 0.07162492722272873,
- 0.06615351885557175,
- -0.023137899115681648
- ]
- },
- {
- "keyword": "uses up",
- "type": "consumes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.06079263240098953,
- 0.061562009155750275,
- -0.049359772354364395,
- 0.0016436789883300662,
- 0.004280859604477882,
- -0.04846681281924248,
- 0.10123034566640854,
- -0.014973143115639687,
- 0.010265957564115524,
- 0.03826269879937172,
- -0.004060929641127586,
- 0.13533203303813934,
- -0.020297840237617493,
- 0.01842466928064823,
- -0.005506850313395262,
- 0.07580369710922241,
- 0.06752347946166992,
- 0.03989170119166374,
- -0.0726948231458664,
- -0.021187610924243927,
- -0.07844901829957962,
- -0.05409739166498184,
- 0.01887192577123642,
- 0.009253337979316711,
- 0.03289373591542244,
- -0.023202525451779366,
- -0.024041812866926193,
- 0.027169404551386833,
- 0.06147480383515358,
- 0.03812508285045624,
- -0.03200322762131691,
- 0.05796154588460922,
- 0.025871142745018005,
- -0.0570424385368824,
- -0.034432344138622284,
- -0.02574922703206539,
- 0.013692092150449753,
- 0.02056219056248665,
- -0.02963724359869957,
- 0.05293862521648407,
- -0.05806656554341316,
- -0.12304382026195526,
- -0.042024146765470505,
- -0.030471710488200188,
- 0.022173471748828888,
- 0.030111020430922508,
- -0.0089513398706913,
- 0.04339640587568283,
- 0.09357160329818726,
- 0.022373706102371216,
- 0.042309653013944626,
- -0.022779235616326332,
- 0.02874557301402092,
- 0.02014145627617836,
- 0.02157629281282425,
- 0.01817478984594345,
- -0.015937989577651024,
- 0.026794960722327232,
- 0.024593118578195572,
- -0.007340526208281517,
- 0.00016497375327162445,
- 0.04112971946597099,
- -0.04413111135363579,
- 0.07340765744447708,
- 0.0016461361665278673,
- -0.04925898090004921,
- -0.01499237958341837,
- 0.020061850547790527,
- -0.019788572564721107,
- -0.00016887580568436533,
- -0.01770894229412079,
- 0.05149855464696884,
- -0.008475208654999733,
- 0.019920233637094498,
- 0.023632224649190903,
- -0.0046629938296973705,
- 0.06823564320802689,
- -0.07710956782102585,
- 0.1142830029129982,
- -0.0411655567586422,
- -0.0056596617214381695,
- 0.006229248829185963,
- -0.04446132853627205,
- 0.05281979218125343,
- 0.026272673159837723,
- 0.0468488372862339,
- 0.028218992054462433,
- -0.05953076481819153,
- -0.062426529824733734,
- -0.028070341795682907,
- -0.014552684500813484,
- 0.0816674456000328,
- 0.04790667071938515,
- -0.026006313040852547,
- -0.03472469374537468,
- -0.004856353159993887,
- -0.0272885300219059,
- 0.047038041055202484,
- -0.15077544748783112,
- 0.18939979374408722,
- -0.032623399049043655,
- 0.06642279028892517,
- 0.021922577172517776,
- -0.05139975622296333,
- -0.06614653021097183,
- -0.036525946110486984,
- -0.01806890033185482,
- 0.06919968128204346,
- 0.04834752902388573,
- 0.011905609630048275,
- -0.0029638903215527534,
- 0.011137044988572598,
- -0.048682086169719696,
- 0.061151135712862015,
- 0.012569325044751167,
- -0.0008078120881691575,
- -0.03696167469024658,
- -0.018634019419550896,
- -0.048720840364694595,
- 0.028511377051472664,
- 0.03506924584507942,
- -0.03136206790804863,
- -0.00046999851474538445,
- -0.016077885404229164,
- -0.13988851010799408,
- -0.0701877698302269,
- 0.10901257395744324,
- -3.911517696446641e-33,
- 0.030869845300912857,
- -0.01971587911248207,
- -0.0005966744502075016,
- 0.017575770616531372,
- 0.013569693081080914,
- -0.023535359650850296,
- -0.04109439253807068,
- 0.0026665208861231804,
- -0.019673118367791176,
- -0.053572095930576324,
- 0.04906560853123665,
- 0.11926030367612839,
- -0.06243295967578888,
- 0.060625288635492325,
- 0.10540498793125153,
- -0.02079869993031025,
- 0.06512308865785599,
- 0.06143921613693237,
- 0.03815411031246185,
- 0.001367860590107739,
- 0.008084332570433617,
- -0.0019057021709159017,
- 0.004040958359837532,
- 0.06391897797584534,
- -0.03466135635972023,
- 0.0440760962665081,
- -0.02737617865204811,
- 0.016749832779169083,
- -0.021476782858371735,
- 0.025499435141682625,
- 0.10328501462936401,
- -0.0328831672668457,
- -0.08963388204574585,
- -0.01665102317929268,
- -0.023969467729330063,
- 0.03889364004135132,
- -0.00029152852948755026,
- -0.00021887906768824905,
- -0.03555037081241608,
- 0.008915890008211136,
- -0.014956205151975155,
- 0.020786598324775696,
- -0.025052107870578766,
- 0.005690941587090492,
- -0.0598471537232399,
- -0.024408001452684402,
- -0.07708751410245895,
- -0.028589574620127678,
- 0.046799756586551666,
- 0.044962842017412186,
- 0.033613529056310654,
- -0.0023390050046145916,
- -0.10151632875204086,
- -0.016150321811437607,
- -0.1258077323436737,
- 0.06456179916858673,
- 0.03258030116558075,
- -0.02777506597340107,
- 0.08377159386873245,
- -0.027668066322803497,
- 0.027637220919132233,
- -0.0016913756262511015,
- -0.014268843457102776,
- 0.07271131873130798,
- -0.020116716623306274,
- 0.03365164250135422,
- 0.026478823274374008,
- -0.011402113363146782,
- -0.051434531807899475,
- 0.04896162450313568,
- -0.11091949045658112,
- -0.022508099675178528,
- -0.0023898121435195208,
- 0.07446574419736862,
- 0.009420645423233509,
- -0.03223901987075806,
- 0.01258031651377678,
- -0.030732709914445877,
- -0.0628465786576271,
- 0.021469514816999435,
- 0.014187635853886604,
- -0.09999098628759384,
- 0.0334390252828598,
- -0.029851648956537247,
- 0.09302282333374023,
- -0.02570517733693123,
- -0.04262758791446686,
- -0.11722663789987564,
- 0.006712243426591158,
- 0.0077422489412128925,
- -0.03032355010509491,
- -0.00010394101991550997,
- 0.060100194066762924,
- -0.018918322399258614,
- -0.043459028005599976,
- 2.569958870960789e-33,
- -0.06941273808479309,
- -0.003959691151976585,
- -0.05928780883550644,
- 0.03607652708888054,
- -0.033598385751247406,
- -0.019429128617048264,
- 0.039970848709344864,
- 0.002566379029303789,
- 0.0037309143226593733,
- -0.05469594523310661,
- -0.06321361660957336,
- 0.016376007348299026,
- 0.06645329296588898,
- -0.01877507194876671,
- 0.11220362037420273,
- 0.025431282818317413,
- 0.059343498200178146,
- -0.020128844305872917,
- -0.055226750671863556,
- -0.01760375313460827,
- -0.06744110584259033,
- -0.06087372824549675,
- -0.049485910683870316,
- -0.04716809466481209,
- -0.07400590926408768,
- 0.0048338123597204685,
- -0.11657561361789703,
- 0.026043741032481194,
- 0.017792852595448494,
- -0.04005945473909378,
- 0.017244067043066025,
- -0.054474275559186935,
- -0.023821664974093437,
- 0.0495784655213356,
- -0.022505223751068115,
- 0.009354690089821815,
- -0.013574482873082161,
- -0.018895728513598442,
- -0.011899654753506184,
- -0.07175149768590927,
- 0.08280934393405914,
- 0.057088274508714676,
- -0.0407203808426857,
- 0.1424984633922577,
- -0.024231499060988426,
- 0.03834927827119827,
- -0.05222402885556221,
- 0.016366926953196526,
- 0.04584210738539696,
- 0.05136778578162193,
- 0.02017689310014248,
- -0.04275976121425629,
- -0.04744615778326988,
- 0.015191370621323586,
- -0.010159330442547798,
- 0.005991281010210514,
- -0.00830907467752695,
- 0.030001569539308548,
- -0.09451589733362198,
- -0.014705833978950977,
- -0.0368916392326355,
- 0.03943243995308876,
- -0.1188678964972496,
- 0.01888647861778736,
- -0.03216937556862831,
- -0.0017682048492133617,
- 0.029652496799826622,
- -0.05020692199468613,
- -0.04941411316394806,
- 0.05979134514927864,
- 0.058126479387283325,
- 0.04493998736143112,
- -0.005384158808737993,
- -0.06258831918239594,
- -0.03514821082353592,
- 0.04039883241057396,
- -0.06389813870191574,
- 0.018271375447511673,
- -0.008787339553236961,
- -0.028084836900234222,
- -0.07569225132465363,
- -0.05008704587817192,
- -0.058808162808418274,
- 0.08865911513566971,
- 0.011062093079090118,
- -0.047823984175920486,
- 0.0278166476637125,
- 0.07437765598297119,
- -0.044422999024391174,
- 0.020623473450541496,
- 0.04696079343557358,
- 0.0016109584830701351,
- -0.07491977512836456,
- 0.16798147559165955,
- 0.029438545927405357,
- -1.4089337696532311e-8,
- -0.023739563301205635,
- 0.007562535814940929,
- 0.020571056753396988,
- -0.02944074012339115,
- 0.043510470539331436,
- -0.008276766166090965,
- 0.10972607880830765,
- 0.03766753524541855,
- 0.035738106817007065,
- -0.13157767057418823,
- -0.005803619045764208,
- 0.02831210196018219,
- -0.0029201360885053873,
- 0.028620215132832527,
- 0.07815814763307571,
- -0.0016377760330215096,
- -0.008979451842606068,
- 0.021744297817349434,
- -0.09065472334623337,
- 0.019957585260272026,
- -0.1172921434044838,
- 0.03536058962345123,
- 0.05203817039728165,
- 0.04111986979842186,
- 0.005905623082071543,
- 0.03606550395488739,
- 0.01453679334372282,
- 0.1491493582725525,
- -0.032895658165216446,
- -0.0386737622320652,
- 0.025873646140098572,
- 0.07936691492795944,
- -0.04647545889019966,
- 0.008467244915664196,
- 0.0378824844956398,
- 0.05229806527495384,
- -0.017074622213840485,
- -0.013364185579121113,
- 0.05979471653699875,
- 0.0020306960213929415,
- 0.024540366604924202,
- -0.07094492763280869,
- -0.0026672154199332,
- -0.03909819945693016,
- -0.07146533578634262,
- 0.019147761166095734,
- -0.023068293929100037,
- 0.007390331476926804,
- -0.11300543695688248,
- 0.0018538020085543394,
- -0.046811625361442566,
- -0.005015844479203224,
- 0.03900708630681038,
- 0.0758977085351944,
- 0.08662230521440506,
- -0.0007247052853927016,
- 0.032363902777433395,
- -0.0030290011782199144,
- -0.006766592618077993,
- 0.02346673607826233,
- 0.08578723669052124,
- -0.04059183597564697,
- 0.061923474073410034,
- 0.04215722158551216
- ]
- },
- {
- "keyword": "depletes",
- "type": "consumes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.06518584489822388,
- 0.004602098371833563,
- 0.04170985519886017,
- 0.049080606549978256,
- 0.01414125133305788,
- -0.042939141392707825,
- 0.1720343679189682,
- 0.010983722284436226,
- 0.01879936084151268,
- 0.014015007764101028,
- 0.018371645361185074,
- -0.045773111283779144,
- 0.02814352698624134,
- -0.03688455745577812,
- -0.015088599175214767,
- -0.02271530218422413,
- -0.02428334392607212,
- 0.015807991847395897,
- -0.05178069695830345,
- -0.009454155340790749,
- 0.021496830508112907,
- 0.05775124207139015,
- -0.1267920285463333,
- 0.03211133927106857,
- 0.007786550093442202,
- 0.054043449461460114,
- -0.020316392183303833,
- -0.01708034984767437,
- 0.006228042300790548,
- -0.05171666294336319,
- 0.039508480578660965,
- -0.032454393804073334,
- 0.07839158922433853,
- -0.007534594275057316,
- 0.025301650166511536,
- 0.04795435070991516,
- 0.006394583266228437,
- 0.03884606808423996,
- 0.02495829202234745,
- -0.0060827466659247875,
- 0.003693680977448821,
- 0.006643807515501976,
- 0.0063868360593914986,
- 0.028372451663017273,
- -0.047084990888834,
- -0.02321738190948963,
- -0.026536468416452408,
- 0.022345159202814102,
- 0.06119466945528984,
- -0.022440994158387184,
- 0.010874873027205467,
- 0.014460401609539986,
- -0.012873033992946148,
- 0.04194240644574165,
- 0.038373176008462906,
- -0.07964841276407242,
- -0.04991784319281578,
- 0.03300686180591583,
- -0.07605307549238205,
- -0.038445547223091125,
- -0.0212935209274292,
- 0.00010351162200095132,
- -0.06356371194124222,
- -0.011623607948422432,
- 0.12424217164516449,
- 0.009426972828805447,
- 0.0869910940527916,
- 0.00695039564743638,
- -0.016856707632541656,
- 0.1545434147119522,
- 0.04632119834423065,
- 0.049411509186029434,
- 0.03506528586149216,
- 0.0758008286356926,
- 0.00774072390049696,
- 0.03481932729482651,
- 0.0004893407458439469,
- -0.12256172299385071,
- 0.0019870048854500055,
- -0.019179586321115494,
- 0.02726535126566887,
- -0.0010937461629509926,
- 0.03338426724076271,
- -0.001389326760545373,
- -0.00035671229125000536,
- -0.03467746451497078,
- 0.03891543298959732,
- -0.048872873187065125,
- -0.05246267095208168,
- -0.025785723701119423,
- -0.05493834614753723,
- -0.03622421622276306,
- 0.021948086097836494,
- 0.050467994064092636,
- -0.04228047654032707,
- 0.1069754883646965,
- 0.0031435457058250904,
- -0.07259494811296463,
- -0.035768602043390274,
- 0.11547458916902542,
- -0.05233408138155937,
- 0.11222246289253235,
- 0.0033081204164773226,
- 0.03437208756804466,
- -0.04032502323389053,
- -0.021298693493008614,
- -0.01443085540086031,
- -0.00623168982565403,
- -0.01655147597193718,
- 0.009391914121806622,
- -0.0662631019949913,
- -0.07619219273328781,
- 0.04126286134123802,
- 0.060919035226106644,
- -0.020961929112672806,
- 0.01325980294495821,
- 0.0440463051199913,
- -0.03890036419034004,
- -0.006491071078926325,
- -0.03404172137379646,
- 0.02271260693669319,
- 0.027790548279881477,
- 0.007709722500294447,
- -0.04366729035973549,
- -0.07288390398025513,
- -0.01699792966246605,
- -0.06186981871724129,
- -8.830176728487748e-34,
- 0.06684058159589767,
- -0.060510825365781784,
- 0.04421313479542732,
- 0.02362607978284359,
- 0.035658303648233414,
- 0.016723373904824257,
- -0.09028475731611252,
- 0.01048553641885519,
- -0.015914641320705414,
- -0.03614641726016998,
- -0.11512796580791473,
- -0.004043790977448225,
- 0.02947968617081642,
- 0.009401349350810051,
- -0.009271873161196709,
- -0.025520753115415573,
- 0.05888327583670616,
- 0.023366352543234825,
- -0.008175158873200417,
- 0.05807354673743248,
- -0.02963518351316452,
- -0.02662494219839573,
- -0.05217744782567024,
- 0.003734002821147442,
- -0.012471404857933521,
- 0.03886939957737923,
- 0.04917270690202713,
- 0.07538677006959915,
- 0.008937658742070198,
- 0.008022683672606945,
- 0.027867505326867104,
- -0.02094774693250656,
- -0.05310281366109848,
- 0.024435296654701233,
- 0.02220510132610798,
- 0.03220009431242943,
- -0.024622149765491486,
- -0.006493222899734974,
- -0.015851976349949837,
- -0.0472947433590889,
- -0.008420866914093494,
- 0.012269005179405212,
- -0.002242186339572072,
- 0.005188086070120335,
- 0.015404218807816505,
- 0.0392923504114151,
- 0.1018868088722229,
- -0.07219864428043365,
- -0.1067456528544426,
- 0.03535068407654762,
- 0.05849264934659004,
- 0.043544601649045944,
- -0.035459794104099274,
- -0.06321617215871811,
- -0.03694792836904526,
- -0.0602637343108654,
- -0.007149820681661367,
- -0.009600677527487278,
- 0.008165313862264156,
- 0.044215526431798935,
- 0.03296506404876709,
- 0.008533338084816933,
- -0.025224443525075912,
- -0.054288823157548904,
- 0.023271964862942696,
- -0.02976042777299881,
- -0.04647047817707062,
- -0.02461034618318081,
- 0.03968717157840729,
- 0.016256075352430344,
- -0.1035148873925209,
- -0.06392596662044525,
- 0.08520219475030899,
- 0.051543425768613815,
- 0.02001538686454296,
- 0.04023509472608566,
- 0.03837023675441742,
- -0.0053588515147566795,
- -0.04447471722960472,
- -0.004847885109484196,
- -0.05661310628056526,
- -0.1322833001613617,
- -0.006002960726618767,
- -0.037020765244960785,
- 0.05137299373745918,
- 0.07412300258874893,
- -0.011670646257698536,
- -0.11019092053174973,
- 0.09236400574445724,
- -0.057407550513744354,
- -0.09639326483011246,
- -0.002629166468977928,
- 0.03472694754600525,
- -0.16262099146842957,
- -0.10143980383872986,
- 5.3250220108260985e-34,
- -0.03252434730529785,
- -0.021382538601756096,
- -0.05778496339917183,
- 0.12054196745157242,
- -0.03786270692944527,
- -0.007479636464267969,
- -0.06133389472961426,
- 0.010882426984608173,
- 0.015995359048247337,
- -0.0317760705947876,
- 0.011302934028208256,
- -0.05026106536388397,
- 0.08523888140916824,
- -0.01744614914059639,
- -0.08062776178121567,
- 0.04802453890442848,
- 0.022580210119485855,
- -0.03817719966173172,
- -0.02258451282978058,
- -0.06209496781229973,
- -0.042612217366695404,
- 0.04889947548508644,
- 0.004785238765180111,
- -0.08298244327306747,
- -0.00683193001896143,
- 0.09021637588739395,
- 0.027414701879024506,
- -0.058198388665914536,
- 0.03278034180402756,
- -0.024711955338716507,
- -0.004244035575538874,
- -0.017689045518636703,
- -0.06304467469453812,
- -0.02972595952451229,
- -0.003952940925955772,
- 0.0631246492266655,
- -0.05209312215447426,
- 0.07961007952690125,
- -0.0888928771018982,
- -0.02171993814408779,
- 0.021035801619291306,
- -0.025577610358595848,
- 0.0645444244146347,
- 0.16443847119808197,
- 0.05591674894094467,
- -0.002693972084671259,
- -0.00269334577023983,
- 0.05459897592663765,
- 0.08175600320100784,
- 0.09832880645990372,
- -0.0036288646515458822,
- 0.00032885168911889195,
- -0.0687575414776802,
- 0.07336245477199554,
- 0.053281404078006744,
- -0.04639839008450508,
- 0.04598535969853401,
- -0.010535149835050106,
- 0.020881174132227898,
- 0.03602050617337227,
- -0.08829309791326523,
- 0.05523628741502762,
- 0.034057922661304474,
- 0.004254642874002457,
- -0.06814718246459961,
- -0.04668470472097397,
- -0.022532731294631958,
- 0.07103755325078964,
- 0.08197254687547684,
- 0.04817062243819237,
- 0.03333314135670662,
- 0.06800641119480133,
- -0.09835352003574371,
- -0.07271789014339447,
- -0.033200301229953766,
- 0.024250078946352005,
- -0.15073443949222565,
- 0.08629894256591797,
- 0.005571240559220314,
- -0.013392536900937557,
- 0.01859516091644764,
- 0.0055608549155294895,
- -0.026126328855752945,
- 0.05136972293257713,
- 0.005521192215383053,
- -0.02754739299416542,
- -0.011410942301154137,
- 0.04957931861281395,
- -0.04077572748064995,
- 0.0456024669110775,
- -0.004120017867535353,
- 0.00047758850269019604,
- -0.015784235671162605,
- 0.10212493687868118,
- 0.018872978165745735,
- -1.337379540444772e-8,
- -0.01594547927379608,
- 0.03642122820019722,
- -0.1072508692741394,
- -0.03218034654855728,
- 0.052228767424821854,
- -0.03684874624013901,
- 0.050819408148527145,
- 0.09133218973875046,
- 0.02418486773967743,
- -0.030418761074543,
- -0.007686111610382795,
- 0.0027632038109004498,
- -0.007612351793795824,
- 0.05489783361554146,
- 0.04943518340587616,
- 0.07708766311407089,
- 0.04969960078597069,
- 0.028632892295718193,
- -0.0946858674287796,
- 0.016948837786912918,
- -0.0018584852805361152,
- -0.03926757350564003,
- -0.01494347583502531,
- 0.07877908647060394,
- 0.04938735067844391,
- -0.011134682223200798,
- 0.03543315827846527,
- -0.004777370486408472,
- -0.036715809255838394,
- 0.0040950896218419075,
- 0.07852648943662643,
- 0.029511382803320885,
- 0.024840395897626877,
- -0.09433826059103012,
- 0.13306385278701782,
- 0.000708291307091713,
- -0.0011731164995580912,
- -0.03211881220340729,
- -0.014684419147670269,
- -0.028996342793107033,
- -0.035987719893455505,
- -0.02350446954369545,
- 0.011098634451627731,
- 0.033070728182792664,
- -0.017874492332339287,
- -0.08220331370830536,
- 0.0036150012165308,
- 0.09315077215433121,
- -0.026993047446012497,
- -0.03272901102900505,
- -0.03378734365105629,
- 0.044086702167987823,
- 0.06734790652990341,
- 0.06231044977903366,
- -0.03539483994245529,
- 0.018164360895752907,
- 0.01545362826436758,
- 0.0169068593531847,
- -0.03044024296104908,
- 0.024638012051582336,
- 0.06052502617239952,
- -0.0036749965511262417,
- 0.0882742628455162,
- 0.01071777194738388
- ]
- },
- {
- "keyword": "exhausts",
- "type": "consumes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04462594538927078,
- 0.07822276651859283,
- 0.09065691381692886,
- 0.09194495528936386,
- -0.012469085864722729,
- -0.020704586058855057,
- 0.0924140065908432,
- -0.011916326358914375,
- 0.013982213102281094,
- -0.04102742671966553,
- -0.012758176773786545,
- -0.0843428298830986,
- -0.03424634039402008,
- -0.08605233579874039,
- 0.029382094740867615,
- 0.006363965570926666,
- 0.06558141112327576,
- 0.023608164861798286,
- -0.0509042888879776,
- -0.05031813308596611,
- -0.025159750133752823,
- 0.02562449686229229,
- -0.04757416620850563,
- 0.029981566593050957,
- 0.044151633977890015,
- 0.062395285815000534,
- -0.088034987449646,
- 0.0627174898982048,
- 0.00022485641238745302,
- -0.07210693508386612,
- -0.0034319423139095306,
- -0.03155413642525673,
- -0.06786017119884491,
- -0.03027961403131485,
- -0.007721358444541693,
- -0.0676569864153862,
- 0.01887401193380356,
- 0.10453793406486511,
- -0.01551468763500452,
- -0.03867701441049576,
- -0.058654218912124634,
- -0.08310311287641525,
- 0.02677152119576931,
- -0.08459070324897766,
- -0.09289061278104782,
- 0.005623001605272293,
- 0.012575553730130196,
- -0.020367035642266273,
- 0.07671390473842621,
- -0.03940855711698532,
- -0.00986278336495161,
- -0.037460584193468094,
- -0.039683468639850616,
- 0.003949837293475866,
- 0.026296403259038925,
- -0.007116695400327444,
- 0.034580301493406296,
- -0.020557761192321777,
- -0.005157086066901684,
- -0.04847235232591629,
- 0.035855624824762344,
- -0.043734773993492126,
- -0.06191212311387062,
- 0.047751251608133316,
- 0.08011254668235779,
- 0.006459146738052368,
- -0.0687648132443428,
- 0.04504583403468132,
- 0.05905859172344208,
- 0.03837822005152702,
- 0.013513858430087566,
- 0.005424399394541979,
- -0.09316708147525787,
- -0.03478673845529556,
- 0.009886990301311016,
- 0.028963739052414894,
- 0.009697804227471352,
- -0.0201745443046093,
- 0.011748796328902245,
- -0.023315511643886566,
- -0.032207638025283813,
- 0.0012639245251193643,
- -0.010925103910267353,
- -0.06308876723051071,
- 0.058897219598293304,
- 0.017040373757481575,
- 0.019533446058630943,
- -0.03920789062976837,
- -0.11178246885538101,
- 0.07809365540742874,
- -0.08703727275133133,
- -0.04582971706986427,
- 0.06377382576465607,
- 0.015525496564805508,
- 0.033066242933273315,
- -0.0027208044193685055,
- 0.03858534246683121,
- 0.009947183541953564,
- 0.09093020856380463,
- 0.12979161739349365,
- -0.03988727927207947,
- 0.0635146051645279,
- 0.035112831741571426,
- 0.0071196844801306725,
- -0.09537862986326218,
- 0.035148490220308304,
- -0.037484731525182724,
- 0.07436002045869827,
- 0.043302785605192184,
- -0.08484328538179398,
- -0.012877183966338634,
- -0.03926345333456993,
- 0.014036751352250576,
- -0.06480110436677933,
- -0.018157918006181717,
- -0.08184698969125748,
- -0.009315911680459976,
- 0.006826656870543957,
- -0.05304336175322533,
- 0.03536732494831085,
- -0.02072967030107975,
- -0.010851937346160412,
- 0.004973550792783499,
- 0.00150978472083807,
- 0.012677992694079876,
- -0.0761626809835434,
- -0.06514909118413925,
- -4.251104055403784e-33,
- -0.01676912046968937,
- 0.034342072904109955,
- 0.024864666163921356,
- 0.05501531809568405,
- 0.031709615141153336,
- 0.006782215088605881,
- -0.0018445996101945639,
- -0.01844802312552929,
- 0.013627215288579464,
- 0.03199676424264908,
- -0.041228532791137695,
- 0.06325946748256683,
- -0.08486861735582352,
- -0.0492287278175354,
- 0.11787987500429153,
- -0.13008832931518555,
- 0.013587205670773983,
- 0.004477796610444784,
- -0.07882528752088547,
- -0.023796988651156425,
- -0.038867611438035965,
- 0.016679247841238976,
- 0.0010862522758543491,
- 0.05118187889456749,
- -0.005228501744568348,
- -0.031016970053315163,
- 0.03544384986162186,
- -0.045366592705249786,
- -0.15191751718521118,
- 0.04667788743972778,
- -0.033963631838560104,
- 0.043730977922677994,
- 0.012140697799623013,
- 0.007735253777354956,
- -0.0010304570896551013,
- 0.036658257246017456,
- -0.032969508320093155,
- -0.01429684180766344,
- -0.0036861442495137453,
- -0.02859828621149063,
- -0.03139755129814148,
- -0.0021299540530890226,
- -0.08877342194318771,
- 0.0578511543571949,
- -0.007181213237345219,
- 0.0237131230533123,
- -0.03093543089926243,
- 0.0935964435338974,
- -0.0028394300024956465,
- 0.06321997195482254,
- 0.01843024604022503,
- 0.009237411431968212,
- -0.023283420130610466,
- 0.02746654860675335,
- 0.025132572278380394,
- 0.030355049297213554,
- 0.07435532659292221,
- -0.06344950199127197,
- -0.03466867282986641,
- 0.027501864358782768,
- 0.03376813605427742,
- 0.18852828443050385,
- -0.004821358248591423,
- -0.04330176115036011,
- -0.1002437099814415,
- 0.007453919388353825,
- -0.01246815174818039,
- -0.03903596103191376,
- 0.02781066484749317,
- 0.02682090364396572,
- -0.10558076947927475,
- -0.015134637244045734,
- 0.07887762784957886,
- 0.04374631121754646,
- 0.08802030235528946,
- -0.0038765049539506435,
- -0.04164557904005051,
- -0.018999580293893814,
- -0.07538923621177673,
- -0.0037145100068300962,
- -0.01693623512983322,
- 0.001323912525549531,
- -0.041423995047807693,
- -0.05628703534603119,
- 0.0020003512036055326,
- 0.012402589432895184,
- -0.04779677465558052,
- -0.07965300977230072,
- -0.003591015236452222,
- 0.05478395149111748,
- -0.04577138274908066,
- -0.02568928897380829,
- 0.052308835089206696,
- 0.054456137120723724,
- -0.06589272618293762,
- 3.17176991792456e-33,
- 0.051644980907440186,
- -0.006772131193429232,
- 0.0049529895186424255,
- 0.02314305305480957,
- 0.02352120168507099,
- 0.051950592547655106,
- 0.07663021981716156,
- -0.012826666235923767,
- -0.036787617951631546,
- 0.051333941519260406,
- 0.0006439095595851541,
- -0.0022548187989741564,
- 0.006110775284469128,
- 0.050057388842105865,
- 0.04791073873639107,
- -0.02807515114545822,
- 0.14919407665729523,
- -0.07585308700799942,
- 0.0392015241086483,
- -0.0579482801258564,
- 0.012161060236394405,
- 0.028915613889694214,
- -0.03236306831240654,
- -0.06277790665626526,
- -0.08175376802682877,
- 0.05394650623202324,
- -0.041004713624715805,
- -0.0002488051541149616,
- 0.0031189266592264175,
- -0.014091702178120613,
- -0.028456635773181915,
- 0.03485838696360588,
- 0.003347204066812992,
- 0.06529679149389267,
- 0.013272653333842754,
- 0.06697096675634384,
- 0.04071436822414398,
- 0.08566179126501083,
- -0.07103395462036133,
- -0.11002618819475174,
- 0.029922308400273323,
- 0.017004605382680893,
- 0.09613168984651566,
- 0.11899376660585403,
- -0.016929494217038155,
- 0.0012891014339402318,
- 0.012779192999005318,
- -0.043190740048885345,
- -0.010801377706229687,
- 0.034489165991544724,
- 0.0898107960820198,
- -0.03773592785000801,
- -0.022238271310925484,
- 0.10447988659143448,
- 0.013429979793727398,
- -0.007968014106154442,
- 0.018847506493330002,
- 0.017034221440553665,
- 0.004783392418175936,
- 0.012518864125013351,
- 0.03583711013197899,
- 0.024291550740599632,
- -0.026968030259013176,
- 0.010737285949289799,
- -0.05446413531899452,
- -0.08471202850341797,
- -0.08656932413578033,
- -0.045664362609386444,
- 0.06169033423066139,
- -0.02317163534462452,
- 0.011134793981909752,
- -0.02694506011903286,
- -0.022311313077807426,
- -0.010791468434035778,
- -0.06934424489736557,
- -0.02520027756690979,
- -0.038446441292762756,
- -0.011154808104038239,
- 0.021303823217749596,
- 0.01809709519147873,
- -0.137271910905838,
- -0.012206539511680603,
- 0.0034368718042969704,
- 0.07292260229587555,
- 0.08317885547876358,
- -0.09078455716371536,
- -0.05346522480249405,
- -0.0013370767701417208,
- 0.05775942653417587,
- 0.01213541068136692,
- 0.057116955518722534,
- 0.07635772973299026,
- 0.06650751829147339,
- -0.025743812322616577,
- -0.044869314879179,
- -1.1321111159645625e-8,
- 0.0028477797750383615,
- -0.0001679707202129066,
- 0.02219219319522381,
- 0.017878150567412376,
- -0.015622781589627266,
- 0.004142878111451864,
- 0.020229998975992203,
- 0.05232452601194382,
- 0.012454947456717491,
- -0.011002913117408752,
- 0.11295406520366669,
- 0.017185114324092865,
- 0.06498302519321442,
- 0.05705314129590988,
- 0.061059921979904175,
- -0.02301553450524807,
- -0.07996867597103119,
- 0.03413364663720131,
- -0.006471998058259487,
- -0.07864654809236526,
- -0.06417107582092285,
- 0.03563632443547249,
- 0.0019219586392864585,
- 0.059501178562641144,
- 0.006993476301431656,
- -0.08510364592075348,
- 0.020948978140950203,
- 0.042019158601760864,
- 0.04056752845644951,
- 0.06782535463571548,
- -0.03355659916996956,
- 0.0525721050798893,
- -0.01682608388364315,
- -0.07218318432569504,
- 0.0784895047545433,
- 0.008021718822419643,
- -0.03676626458764076,
- 0.009286431595683098,
- -0.014612394385039806,
- -0.08383812010288239,
- -0.01411221269518137,
- -0.02739737182855606,
- 0.054093021899461746,
- -0.01503781508654356,
- 0.00575451971963048,
- -0.014507939107716084,
- -0.022130152210593224,
- 0.034679073840379715,
- -0.09767846763134003,
- 0.025877226144075394,
- 0.052804455161094666,
- 0.019847115501761436,
- 0.043464869260787964,
- 0.11316739022731781,
- -0.006320825312286615,
- 0.03474016487598419,
- 0.0010974683100357652,
- -0.041457708925008774,
- -0.06155719608068466,
- 0.01184590719640255,
- 0.12205664068460464,
- 0.06527357548475266,
- 0.010521268472075462,
- 0.03359276428818703
- ]
- },
- {
- "keyword": "drains",
- "type": "consumes",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.010935666039586067,
- 0.01685170829296112,
- 0.032631129026412964,
- 0.061261095106601715,
- -0.059755027294158936,
- -0.0746728926897049,
- 0.06404291838407516,
- 0.010835547000169754,
- 0.038787901401519775,
- 0.005845256615430117,
- -0.09492290019989014,
- -0.0025123432278633118,
- -0.02670319750905037,
- 0.042812641710042953,
- -0.08079681545495987,
- 0.01632619835436344,
- -0.07913055270910263,
- 0.05922822281718254,
- -0.015701603144407272,
- -0.07754738628864288,
- 0.05228106305003166,
- 0.004975451156497002,
- 0.00006268554716371,
- -0.01292127650231123,
- -0.009336845949292183,
- 0.07481323182582855,
- 0.04760060831904411,
- -0.03540072962641716,
- 0.013638987205922604,
- -0.08465210348367691,
- 0.01052237581461668,
- -0.01715572364628315,
- -0.05976425111293793,
- -0.1102990210056305,
- 0.032981015741825104,
- 0.02478516660630703,
- -0.025584010407328606,
- 0.019230160862207413,
- 0.017858028411865234,
- -0.07458208501338959,
- 0.014558447524905205,
- -0.10751274228096008,
- 0.05622636154294014,
- -0.014164811931550503,
- -0.016532430425286293,
- 0.02279093861579895,
- -0.010402561165392399,
- -0.006294789724051952,
- 0.0343596413731575,
- -0.00428894953802228,
- 0.1213274672627449,
- -0.030884502455592155,
- -0.007438956294208765,
- 0.09375464171171188,
- 0.011057079769670963,
- -0.0704265832901001,
- 0.019411543384194374,
- -0.06880918890237808,
- 0.017288537696003914,
- -0.00321971089579165,
- -0.0009825879242271185,
- 0.01871422678232193,
- -0.024180492386221886,
- 0.07267170399427414,
- -0.01765640452504158,
- 0.011786136776208878,
- -0.06811181455850601,
- 0.06300532072782516,
- 0.0012667656410485506,
- 0.034744638949632645,
- -0.11178040504455566,
- 0.06104312837123871,
- -0.04454628378152847,
- -0.0868619978427887,
- 0.026561366394162178,
- -0.046884726732969284,
- 0.06676848232746124,
- -0.0678320974111557,
- -0.00011628892389126122,
- -0.058332495391368866,
- -0.0013035739539191127,
- 0.006682687904685736,
- 0.015597516670823097,
- 0.06125260144472122,
- 0.03595437481999397,
- 0.042192086577415466,
- 0.027286347001791,
- -0.008605332113802433,
- -0.034821342676877975,
- 0.00900659803301096,
- -0.02957051992416382,
- 0.013735628686845303,
- 0.050791747868061066,
- 0.05501716211438179,
- -0.05072321742773056,
- 0.012663130648434162,
- 0.036261167377233505,
- -0.04530475288629532,
- -0.016255361959338188,
- 0.1940334290266037,
- -0.0596734918653965,
- 0.06147511675953865,
- 0.12784475088119507,
- 0.013574443757534027,
- 0.06572189182043076,
- -0.02572661079466343,
- 0.004468813072890043,
- 0.03794948384165764,
- 0.03769218921661377,
- 0.020586958155035973,
- -0.017574070021510124,
- -0.037407681345939636,
- 0.04536823555827141,
- 0.05609683319926262,
- 0.00026255453121848404,
- -0.042184412479400635,
- 0.06704013794660568,
- 0.03990819677710533,
- -0.0720246210694313,
- 0.06317230314016342,
- -0.07699531316757202,
- -0.01996666006743908,
- -0.05781980976462364,
- -0.02825058624148369,
- -0.0020965049043297768,
- -0.011424385011196136,
- -0.02981293946504593,
- -4.653762298438266e-33,
- -0.03508176654577255,
- -0.10392352938652039,
- 0.05167778581380844,
- 0.004337662365287542,
- -0.006535421125590801,
- -0.013436597771942616,
- -0.030364524573087692,
- 0.001729195355437696,
- -0.0056233773939311504,
- 0.04818304255604744,
- -0.01469444204121828,
- -0.03215869143605232,
- -0.04982419312000275,
- -0.03220255300402641,
- 0.045549068599939346,
- -0.029345283284783363,
- 0.0023558521643280983,
- 0.0655956044793129,
- -0.011250822804868221,
- -0.04416132718324661,
- -0.034193284809589386,
- 0.03674778342247009,
- -0.0038302354514598846,
- -0.020227668806910515,
- 0.01285798940807581,
- -0.07085506618022919,
- -0.01499035581946373,
- -0.05749346688389778,
- -0.022094858810305595,
- 0.019622111693024635,
- -0.012473651207983494,
- 0.00564818037673831,
- 0.024470729753375053,
- -0.026278268545866013,
- 0.002803677460178733,
- 0.024572113528847694,
- 0.02626909129321575,
- -0.016089512035250664,
- -0.04544234648346901,
- -0.03556352108716965,
- -0.003637318266555667,
- 0.0034535310696810484,
- 0.02089192345738411,
- 0.017410313710570335,
- -0.011317716911435127,
- -0.02790684998035431,
- -0.016534922644495964,
- 0.06466255336999893,
- -0.011123389936983585,
- 0.03998710215091705,
- 0.012958291918039322,
- 0.08655699342489243,
- -0.12607328593730927,
- 0.027135217562317848,
- 0.02819722704589367,
- -0.06354963779449463,
- 0.02353532426059246,
- -0.026011494919657707,
- -0.0008225176716223359,
- 0.048469386994838715,
- 0.018909860402345657,
- 0.1669072061777115,
- -0.07828216999769211,
- -0.051476601511240005,
- -0.019306378439068794,
- -0.039445359259843826,
- 0.08064159750938416,
- 0.06579068303108215,
- 0.011831670999526978,
- -0.0018647824181243777,
- -0.09976525604724884,
- -0.011374907568097115,
- 0.05730816349387169,
- 0.04818340018391609,
- -0.02704576402902603,
- 0.002383663784712553,
- 0.0008269632235169411,
- -0.010417324490845203,
- -0.04183635488152504,
- 0.028554420918226242,
- 0.005277086049318314,
- -0.08860155940055847,
- -0.010490396060049534,
- -0.004657109268009663,
- -0.0056862798519432545,
- 0.10721816122531891,
- -0.014064044691622257,
- -0.06462442874908447,
- 0.03475886583328247,
- 0.019458601251244545,
- -0.0587921105325222,
- 0.01351715624332428,
- -0.025340992957353592,
- -0.03351259231567383,
- -0.07519587129354477,
- 3.8439172203827594e-33,
- -0.001207411871291697,
- 0.0018120239255949855,
- -0.006022545043379068,
- 0.042276717722415924,
- 0.03881242871284485,
- -0.008808553218841553,
- -0.004208340309560299,
- -0.0030690294224768877,
- 0.04935234785079956,
- 0.039581526070833206,
- -0.05827648192644119,
- 0.04662541672587395,
- -0.022825174033641815,
- -0.019137883558869362,
- 0.13006296753883362,
- 0.017630593851208687,
- 0.0797615647315979,
- -0.08975247293710709,
- -0.020792903378605843,
- -0.011807872913777828,
- -0.0238456092774868,
- 0.09933093935251236,
- -0.005946280434727669,
- -0.01297704130411148,
- -0.07729777693748474,
- 0.05356239527463913,
- 0.03530895337462425,
- 0.03441699594259262,
- -0.0456954762339592,
- 0.015244093723595142,
- -0.00479565653949976,
- -0.04196200147271156,
- -0.031986624002456665,
- -0.026331951841711998,
- -0.04993312060832977,
- 0.03671380132436752,
- -0.014167322777211666,
- 0.024281064048409462,
- -0.049325767904520035,
- -0.010993806645274162,
- 0.07237888127565384,
- -0.066759392619133,
- 0.0337345190346241,
- 0.06142856925725937,
- 0.00033141416497528553,
- 0.019266929477453232,
- -0.0834038034081459,
- -0.003270568558946252,
- -0.00599942822009325,
- 0.0024787005968391895,
- 0.023609064519405365,
- 0.003562026424333453,
- -0.03101169317960739,
- 0.11070509254932404,
- 0.028708480298519135,
- -0.006221398711204529,
- 0.018984831869602203,
- -0.033525798469781876,
- 0.0009109323145821691,
- 0.0038683144375681877,
- 0.007507569156587124,
- 0.09491909295320511,
- -0.08160670101642609,
- -0.025900283828377724,
- -0.07743170857429504,
- -0.005421432200819254,
- -0.020819002762436867,
- -0.08234114199876785,
- -0.00017537415260449052,
- 0.03839141130447388,
- -0.041599757969379425,
- -0.003342381212860346,
- -0.014128658920526505,
- -0.06125709041953087,
- -0.008300576359033585,
- 0.015070418827235699,
- -0.06279388815164566,
- -0.013351816684007645,
- -0.036609794944524765,
- -0.001987048424780369,
- -0.0517985001206398,
- 0.08701149374246597,
- 0.03786095604300499,
- 0.03973914310336113,
- 0.09855768084526062,
- -0.10376738011837006,
- -0.06411662697792053,
- -0.05910325422883034,
- 0.03404999524354935,
- 0.043346893042325974,
- 0.046844225376844406,
- 0.03752778097987175,
- -0.12751181423664093,
- 0.044458746910095215,
- 0.018265074118971825,
- -1.0076870005093497e-8,
- -0.038042083382606506,
- -0.028622737154364586,
- 0.03638636693358421,
- 0.0575769804418087,
- -0.00568176107481122,
- -0.08963152766227722,
- 0.07897024601697922,
- 0.1653941124677658,
- 0.03225276619195938,
- 0.07032255083322525,
- 0.015909813344478607,
- 0.05201972648501396,
- 0.009400309063494205,
- 0.036510031670331955,
- 0.05980750918388367,
- 0.03035748191177845,
- -0.0074232486076653,
- -0.03753837198019028,
- -0.052498266100883484,
- -0.05591926351189613,
- -0.06640064716339111,
- -0.027332637459039688,
- -0.032505158334970474,
- 0.09820728749036789,
- 0.01577151194214821,
- -0.07575318962335587,
- 0.04260626807808876,
- -0.0066222455352544785,
- -0.03126193955540657,
- 0.002139223273843527,
- 0.11767808347940445,
- 0.036855828016996384,
- -0.0029345795046538115,
- 0.03132138401269913,
- 0.10561423003673553,
- 0.0207902193069458,
- 0.10410094261169434,
- -0.04343802481889725,
- -0.07457514107227325,
- 0.0894080176949501,
- -0.0016965263057500124,
- -0.019935354590415955,
- 0.025658298283815384,
- 0.003250379813835025,
- -0.06279543042182922,
- 0.007212679833173752,
- -0.09092532843351364,
- 0.15720395743846893,
- -0.007850505411624908,
- 0.015999941155314445,
- -0.010243813507258892,
- -0.005141229368746281,
- -0.024049313738942146,
- 0.10205450654029846,
- 0.03994286060333252,
- -0.05669232830405235,
- 0.07615810632705688,
- -0.04694648087024689,
- -0.05432520806789398,
- 0.08271943032741547,
- 0.0852978304028511,
- 0.009067833423614502,
- 0.09524796158075333,
- -0.013271696865558624
- ]
- },
- {
- "keyword": "consumption",
- "type": "consumes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.039947208017110825,
- 0.07121297717094421,
- -0.02761618234217167,
- 0.07442965358495712,
- 0.04296153411269188,
- 0.010655993595719337,
- 0.1381588876247406,
- 0.01716882735490799,
- -0.019652046263217926,
- 0.035324715077877045,
- 0.04404226318001747,
- -0.03564956411719322,
- -0.03671537712216377,
- -0.02495611645281315,
- 0.0022473083809018135,
- -0.07598108053207397,
- 0.0630926564335823,
- -0.04136788472533226,
- -0.02249736152589321,
- 0.012595567852258682,
- 0.08950334042310715,
- -0.03486043959856033,
- 0.01939297281205654,
- 0.03202566131949425,
- -0.010276353918015957,
- 0.07119911909103394,
- 0.0016460379119962454,
- -0.015330343507230282,
- 0.05613434687256813,
- -0.01589905098080635,
- 0.07672259956598282,
- 0.06607791036367416,
- 0.07934071123600006,
- -0.06779814511537552,
- 0.00624494906514883,
- 0.02119113691151142,
- 0.07051218301057816,
- -0.014908421784639359,
- 0.020899826660752296,
- -0.003597437869757414,
- -0.049782779067754745,
- -0.1073545515537262,
- 0.01688985340297222,
- -0.015410003252327442,
- -0.010108252055943012,
- -0.011194059625267982,
- -0.04686203598976135,
- 0.02999618649482727,
- 0.03335367888212204,
- 0.057828377932310104,
- -0.026533562690019608,
- 0.017947308719158173,
- -0.017019640654325485,
- -0.05458249896764755,
- 0.09276650100946426,
- -0.05954141542315483,
- -0.01922059804201126,
- 0.011046535335481167,
- -0.014075183309614658,
- -0.022894099354743958,
- 0.03030153177678585,
- -0.01084054633975029,
- -0.05713474377989769,
- 0.03243309631943703,
- 0.08849015831947327,
- -0.003359020221978426,
- -0.07457995414733887,
- 0.05265575647354126,
- -0.10284988582134247,
- 0.049463316798210144,
- -0.018717054277658463,
- -0.037595972418785095,
- -0.0007949529681354761,
- -0.06620997935533524,
- -0.05316317081451416,
- -0.08437284082174301,
- 0.09140276163816452,
- -0.02860577031970024,
- 0.0387367308139801,
- -0.002572647761553526,
- 0.003732239129021764,
- 0.004312461242079735,
- -0.023021593689918518,
- 0.01886690966784954,
- 0.03301646187901497,
- 0.004360206425189972,
- -0.026935722678899765,
- -0.010336343199014664,
- 0.002378123812377453,
- 0.007087612058967352,
- -0.023180998861789703,
- 0.053478751331567764,
- 0.05413561314344406,
- 0.002715572714805603,
- -0.03802257403731346,
- 0.00904688611626625,
- -0.0025972097646445036,
- -0.02599029801785946,
- 0.0009684451506473124,
- 0.19191434979438782,
- -0.0121676130220294,
- 0.07717679440975189,
- 0.013715271838009357,
- -0.03623782843351364,
- -0.030815549194812775,
- -0.07125067710876465,
- -0.07363080978393555,
- 0.11668995022773743,
- 0.06415273249149323,
- 0.035024210810661316,
- -0.03266061469912529,
- 0.025265399366617203,
- -0.03743609040975571,
- 0.01652481220662594,
- 0.0512407049536705,
- -0.020857330411672592,
- 0.02106201834976673,
- -0.0844917893409729,
- 0.07949332892894745,
- 0.08242785930633545,
- -0.011551843956112862,
- 0.001857273862697184,
- -0.011645670980215073,
- 0.008782655000686646,
- -0.05443559214472771,
- -0.08825273811817169,
- 0.06033987179398537,
- -5.412050561608692e-33,
- -0.11752960085868835,
- -0.10752947628498077,
- 0.061255741864442825,
- -0.026748519390821457,
- -0.09346748888492584,
- 0.024567775428295135,
- -0.039176106452941895,
- 0.008929837495088577,
- 0.013078593648970127,
- -0.062304385006427765,
- 0.08433680236339569,
- 0.002081468468531966,
- -0.07102260738611221,
- 0.08548236638307571,
- 0.15910696983337402,
- -0.03138970583677292,
- -0.005874520633369684,
- 0.021885227411985397,
- 0.03870512172579765,
- -0.01736983098089695,
- -0.025256793946027756,
- -0.038523927330970764,
- 0.022166389971971512,
- 0.030377380549907684,
- -0.007580701261758804,
- -0.0718853697180748,
- -0.001151585252955556,
- -0.03224044293165207,
- 0.05799354240298271,
- 0.04154190421104431,
- 0.08523677289485931,
- -0.000478763016872108,
- -0.0889316201210022,
- -0.04185071960091591,
- -0.03837711736559868,
- -0.021309958770871162,
- 0.003910362720489502,
- 0.009489446878433228,
- -0.06988409161567688,
- -0.025065887719392776,
- -0.02489936538040638,
- 0.041797004640102386,
- 0.108889639377594,
- 0.019249115139245987,
- -0.08510322868824005,
- 0.05368255823850632,
- 0.042997103184461594,
- 0.04373382404446602,
- -0.03951764851808548,
- 0.060696445405483246,
- -0.023655695840716362,
- -0.022287674248218536,
- -0.05183844268321991,
- -0.026191426441073418,
- -0.06334904581308365,
- -0.07869812101125717,
- -0.020749272778630257,
- -0.06178389489650726,
- 0.014272690750658512,
- -0.07879936695098877,
- -0.006898184772580862,
- 0.026849908754229546,
- 0.0036009990144521,
- 0.012019597925245762,
- -0.025353042408823967,
- 0.026154158636927605,
- 0.05503394082188606,
- -0.03502729535102844,
- -0.0722840428352356,
- 0.01546833012253046,
- -0.050341133028268814,
- -0.06945870071649551,
- 0.03656645864248276,
- -0.03001275472342968,
- 0.040653590112924576,
- 0.03537018224596977,
- 0.02202850580215454,
- 0.011222410015761852,
- -0.06806350499391556,
- 0.04593551903963089,
- -0.03278885409235954,
- -0.033430807292461395,
- 0.06921439617872238,
- -0.03345431759953499,
- -0.013525440357625484,
- 0.03812582418322563,
- -0.006659194827079773,
- -0.06921669840812683,
- 0.05086595565080643,
- 0.018324149772524834,
- -0.03397736698389053,
- -0.029151197522878647,
- 0.006915234494954348,
- 0.0014675382990390062,
- -0.05490817502140999,
- 4.3008377520191366e-33,
- -0.02928163670003414,
- 0.03173672407865524,
- -0.02005806192755699,
- 0.0244621429592371,
- 0.001535001560114324,
- -0.07066162675619125,
- -0.05807030573487282,
- -0.06636052578687668,
- -0.002153876004740596,
- 0.016460703685879707,
- -0.094430111348629,
- 0.03779454529285431,
- 0.03244727849960327,
- 0.0571303516626358,
- -0.006743900943547487,
- -0.011469511315226555,
- 0.13075628876686096,
- -0.027758071199059486,
- -0.03699235990643501,
- -0.0757288858294487,
- -0.0402117520570755,
- 0.03993212804198265,
- 0.04129031300544739,
- -0.08499642461538315,
- -0.04863952100276947,
- 0.08926349133253098,
- -0.04223313927650452,
- 0.016221119090914726,
- -0.018837006762623787,
- -0.08314540982246399,
- 0.025726359337568283,
- -0.02816960960626602,
- -0.0005331953871063888,
- 0.0175270214676857,
- -0.01415228471159935,
- 0.06359836459159851,
- -0.03393737971782684,
- 0.054856132715940475,
- -0.05542522668838501,
- -0.0014525795122608542,
- 0.07133051007986069,
- 0.014111566357314587,
- -0.0029990607872605324,
- 0.10040931403636932,
- 0.05373578891158104,
- -0.03945405036211014,
- 0.0027693428564816713,
- -0.027163345366716385,
- 0.09502547979354858,
- 0.03225892782211304,
- 0.11767685413360596,
- -0.006555459927767515,
- -0.033924419432878494,
- -0.036086633801460266,
- -0.05366665869951248,
- -0.00555493775755167,
- 0.0938020646572113,
- -0.0015575893921777606,
- 0.03168397769331932,
- -0.08705011755228043,
- -0.018224429339170456,
- 0.04459800943732262,
- -0.09528335183858871,
- 0.04024314880371094,
- -0.04269019886851311,
- -0.04297475144267082,
- 0.01580728031694889,
- -0.03329240530729294,
- 0.08430305868387222,
- -0.04558650776743889,
- -0.010832997038960457,
- 0.00038446002872660756,
- -0.06049732863903046,
- -0.012306705117225647,
- -0.05952058359980583,
- 0.058425310999155045,
- -0.04328620061278343,
- 0.027297493070364,
- 0.022397901862859726,
- 0.018856162205338478,
- -0.061056334525346756,
- -0.002007173839956522,
- 0.030378393828868866,
- -0.08432598412036896,
- -0.019054170697927475,
- -0.0611664280295372,
- -0.0321703776717186,
- -0.05534500256180763,
- -0.08034957200288773,
- 0.07337066531181335,
- -0.05411864444613457,
- 0.013789509423077106,
- -0.10260983556509018,
- 0.05631742998957634,
- 0.02136543020606041,
- -1.1472231165043922e-8,
- 0.0428236648440361,
- -0.02451373264193535,
- 0.05272335186600685,
- 0.09533073008060455,
- -0.01463620737195015,
- -0.03944844752550125,
- 0.10734645277261734,
- 0.02817370556294918,
- 0.048010677099227905,
- 0.11250469088554382,
- 0.0485217347741127,
- 0.052220627665519714,
- 0.0440664142370224,
- 0.05144906044006348,
- -0.03869764879345894,
- 0.039995141327381134,
- 0.0320378802716732,
- -0.06682930886745453,
- -0.08202225714921951,
- 0.01006645243614912,
- 0.03312502056360245,
- -0.017669331282377243,
- 0.04183179512619972,
- 0.009699896909296513,
- -0.04889898747205734,
- 0.006002491805702448,
- 0.02077482081949711,
- 0.02038981020450592,
- 0.033911846578121185,
- -0.0011766966199502349,
- 0.03351256623864174,
- 0.09365519881248474,
- -0.04632041975855827,
- -0.03819163143634796,
- -0.02202138677239418,
- -0.10659200698137283,
- -0.04105342552065849,
- 0.015462961047887802,
- 0.021973561495542526,
- 0.028223173692822456,
- -0.00939831044524908,
- -0.0916242003440857,
- -0.016847508028149605,
- 0.04160333424806595,
- 0.0025190592277795076,
- -0.009839463047683239,
- -0.04651260748505592,
- 0.021124863997101784,
- 0.013865947723388672,
- 0.04944964870810509,
- -0.004920986481010914,
- 0.009779080748558044,
- 0.024404654279351234,
- 0.00741903530433774,
- 0.0028435129206627607,
- -0.04545406624674797,
- 0.06772390753030777,
- 0.04672972857952118,
- -0.09229244291782379,
- -0.020435268059372902,
- 0.15881699323654175,
- 0.01709694229066372,
- 0.027668554335832596,
- 0.027846427634358406
- ]
- },
- {
- "keyword": "usage",
- "type": "consumes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.04478165879845619,
- 0.11957396566867828,
- -0.034060485661029816,
- 0.04153206944465637,
- -0.0382266603410244,
- 0.020624125376343727,
- 0.25623440742492676,
- 0.06832224130630493,
- -0.026293808594346046,
- -0.04167570918798447,
- 0.04909259080886841,
- 0.0036779814399778843,
- 0.027781175449490547,
- -0.08215450495481491,
- 0.017949067056179047,
- -0.004294478800147772,
- 0.08806917816400528,
- -0.05476439744234085,
- -0.10340000689029694,
- 0.03379567340016365,
- -0.06778840720653534,
- 0.018636832013726234,
- -0.0011165390023961663,
- 0.0168372243642807,
- -0.04915769770741463,
- -0.011551456525921822,
- -0.0478527769446373,
- 0.037141866981983185,
- 0.11495158821344376,
- 0.044323667883872986,
- 0.02317163534462452,
- 0.08758711814880371,
- 0.07616399228572845,
- 0.002516483888030052,
- -0.08139026165008545,
- -0.00005905685611651279,
- 0.023743197321891785,
- 0.01145473588258028,
- -0.042893242090940475,
- -0.024674225598573685,
- -0.05724406987428665,
- -0.0841030478477478,
- -0.04787469282746315,
- -0.0007865604711696506,
- 0.003134865313768387,
- -0.003618020098656416,
- -0.00690114451572299,
- -0.029723115265369415,
- 0.01576978527009487,
- 0.05393148586153984,
- -0.037113871425390244,
- 0.02469721809029579,
- 0.015086506493389606,
- -0.01707269996404648,
- 0.04175863415002823,
- 0.004303359426558018,
- 0.020529627799987793,
- -0.028348365798592567,
- -0.03245680779218674,
- -0.0010135454358533025,
- 0.0835747942328453,
- 0.029860088601708412,
- -0.02519111894071102,
- 0.06943637132644653,
- 0.03522982448339462,
- -0.06805776059627533,
- -0.00829257257282734,
- -0.056263819336891174,
- -0.07455505430698395,
- 0.000001110651624003367,
- -0.021990075707435608,
- 0.03585314005613327,
- 0.015059446915984154,
- 0.07685644179582596,
- 0.019151298329234123,
- -0.0800986960530281,
- 0.019256487488746643,
- -0.017604440450668335,
- 0.07965759187936783,
- -0.04752667620778084,
- -0.005711287260055542,
- -0.016585061326622963,
- -0.04992874711751938,
- -0.03106525167822838,
- 0.013207011856138706,
- 0.05908386409282684,
- 0.02991887927055359,
- -0.021141432225704193,
- 0.008173253387212753,
- -0.007233297452330589,
- 0.050930820405483246,
- 0.04627963900566101,
- 0.06158921867609024,
- -0.024828584864735603,
- -0.04067090526223183,
- -0.03517507016658783,
- -0.018995564430952072,
- 0.030246224254369736,
- -0.0556257888674736,
- 0.2855960726737976,
- 0.0093461275100708,
- 0.048654954880476,
- 0.030154718086123466,
- -0.06857459247112274,
- -0.029088908806443214,
- -0.05172629654407501,
- -0.07844449579715729,
- 0.004864046815782785,
- -0.001210216199979186,
- -0.025142116472125053,
- -0.040481533855199814,
- -0.0468754768371582,
- -0.0679897889494896,
- -0.023857761174440384,
- 0.04486994072794914,
- -0.036512892693281174,
- -0.08579109609127045,
- -0.011804201640188694,
- 0.020829612389206886,
- 0.06129961088299751,
- 0.02586548775434494,
- 0.0031477126758545637,
- 0.003024909645318985,
- -0.014040227048099041,
- -0.07555900514125824,
- -0.12771441042423248,
- 0.036751873791217804,
- -5.43061271943413e-33,
- 0.042424701154232025,
- -0.04903765767812729,
- -0.03818931058049202,
- 0.05902272090315819,
- -0.03504667803645134,
- -0.015011674724519253,
- -0.022248217836022377,
- -0.013828226365149021,
- -0.041724130511283875,
- -0.05014272779226303,
- 0.018367793411016464,
- 0.05858263000845909,
- -0.008429561741650105,
- -0.017976200208067894,
- 0.12549225986003876,
- 0.06931725889444351,
- 0.07645511627197266,
- 0.039195213466882706,
- -0.005901908967643976,
- 0.048105593770742416,
- -0.03718100115656853,
- -0.008644578978419304,
- 0.030495744198560715,
- 0.06322915107011795,
- -0.02355150692164898,
- -0.03489900752902031,
- -0.023665884509682655,
- -0.0028263411950320005,
- 0.0309456679970026,
- 0.05039278045296669,
- 0.036907389760017395,
- -0.011997283436357975,
- -0.06494605541229248,
- 0.0029140179976820946,
- 0.027977563440799713,
- 0.04438174515962601,
- 0.07180475443601608,
- -0.0005381439113989472,
- -0.017561864107847214,
- -0.01812405325472355,
- -0.0431714691221714,
- 0.004945991560816765,
- 0.0036211200058460236,
- -0.0027169850654900074,
- -0.0007647707243449986,
- 0.025156326591968536,
- -0.01888747327029705,
- 0.0356709361076355,
- 0.023285793140530586,
- 0.03393498435616493,
- 0.06279151141643524,
- 0.047748398035764694,
- -0.02320282720029354,
- 0.0014230500673875213,
- 0.027955155819654465,
- 0.019289251416921616,
- -0.025637740269303322,
- -0.018715808168053627,
- 0.02946094237267971,
- -0.00912548042833805,
- 0.02597232349216938,
- 0.05319405347108841,
- -0.040705904364585876,
- 0.005637797527015209,
- -0.026415063068270683,
- 0.02661120891571045,
- -0.020972833037376404,
- -0.005479597952216864,
- 0.031293511390686035,
- -0.005289261694997549,
- -0.06324885040521622,
- -0.06730491667985916,
- -0.03529852628707886,
- 0.0012354326900094748,
- -0.0033705406822264194,
- -0.012365028262138367,
- 0.020951243117451668,
- 0.04123116657137871,
- 0.003996522631496191,
- 0.027081556618213654,
- -0.0017578077968209982,
- -0.027110252529382706,
- -0.003729065414518118,
- 0.008236607536673546,
- 0.009871711023151875,
- 0.04788414016366005,
- 0.009607179090380669,
- -0.10906858742237091,
- 0.016452603042125702,
- 0.043022096157073975,
- -0.06411918252706528,
- 0.04703071713447571,
- -0.012586064636707306,
- -0.02339000627398491,
- -0.09311442822217941,
- 3.1439698438695975e-33,
- -0.030057352036237717,
- 0.056670717895030975,
- -0.052735649049282074,
- 0.08710364997386932,
- 0.014325677417218685,
- -0.05957421660423279,
- -0.003038656897842884,
- -0.014099291525781155,
- -0.030876612290740013,
- 0.014443057589232922,
- -0.08295419067144394,
- -0.05004904046654701,
- 0.039722245186567307,
- -0.02902352623641491,
- 0.07391643524169922,
- -0.04159574210643768,
- 0.04996334761381149,
- -0.0998343676328659,
- -0.10216222703456879,
- 0.02077789045870304,
- -0.07002448290586472,
- -0.06896184384822845,
- -0.007128322031348944,
- -0.09111053496599197,
- -0.08537115156650543,
- -0.019046181812882423,
- 0.003186991438269615,
- -0.03762193024158478,
- -0.007917366921901703,
- -0.09358961880207062,
- 0.02513851784169674,
- -0.07536609470844269,
- -0.03303569555282593,
- 0.021114865317940712,
- -0.013078346848487854,
- 0.036209750920534134,
- 0.03969321399927139,
- 0.002484678290784359,
- -0.04397523030638695,
- -0.06667130440473557,
- 0.05590581148862839,
- 0.07786951214075089,
- -0.013670293614268303,
- 0.08699198067188263,
- -0.05211125686764717,
- 0.04415244981646538,
- -0.005350342020392418,
- -0.007928426377475262,
- 0.09540592133998871,
- 0.0074182846583426,
- -0.026559090241789818,
- -0.02522793598473072,
- -0.024586360901594162,
- -0.0500008799135685,
- -0.07827616482973099,
- -0.012243414297699928,
- -0.04882461205124855,
- -0.04835948348045349,
- -0.04487531632184982,
- -0.04126838222146034,
- -0.03682935610413551,
- 0.024135757237672806,
- -0.10993891954421997,
- 0.03899743780493736,
- -0.013739843852818012,
- 0.016532478854060173,
- -0.020070960745215416,
- -0.03405873849987984,
- 0.0270776879042387,
- 0.04183981195092201,
- -0.008969209156930447,
- 0.021852770820260048,
- -0.061982035636901855,
- 0.02613094262778759,
- -0.048400796949863434,
- 0.0363500602543354,
- -0.0547405444085598,
- 0.019878678023815155,
- -0.021664656698703766,
- 0.0651765689253807,
- -0.06323160231113434,
- -0.07989146560430527,
- -0.04341026023030281,
- 0.006933954544365406,
- -0.021562853828072548,
- -0.04272405430674553,
- 0.05572345107793808,
- 0.09579605609178543,
- -0.03867892548441887,
- -0.019891846925020218,
- 0.021871833130717278,
- -0.00933837890625,
- -0.10906960070133209,
- 0.08457284420728683,
- 0.012269796803593636,
- -1.50365035977984e-8,
- 0.0016310703940689564,
- 0.0014083600835874677,
- 0.10495507717132568,
- -0.0007084835669957101,
- 0.03353593498468399,
- 0.005311765242367983,
- 0.09045881778001785,
- 0.007139743771404028,
- -0.03583427146077156,
- 0.021818984299898148,
- 0.01530628651380539,
- 0.005460930056869984,
- -0.0519879087805748,
- 0.04216766729950905,
- 0.025193125009536743,
- 0.007220079191029072,
- 0.006003154907375574,
- -0.023517003282904625,
- -0.0452144481241703,
- 0.07790597528219223,
- -0.02207602933049202,
- -0.004235179163515568,
- -0.006352692376822233,
- 0.06320710480213165,
- -0.001736423117108643,
- 0.024679213762283325,
- 0.037963904440402985,
- 0.10795129835605621,
- -0.05939256399869919,
- -0.13386093080043793,
- 0.01946253888309002,
- 0.13957929611206055,
- -0.017687110230326653,
- -0.017994817346334457,
- 0.014533817768096924,
- -0.008390777744352818,
- -0.030668431892991066,
- -0.04322148486971855,
- 0.12253522872924805,
- -0.004584123846143484,
- 0.04076691344380379,
- -0.017144760116934776,
- 0.029310714453458786,
- 0.021870221942663193,
- -0.029730988666415215,
- 0.02285711094737053,
- 0.04379168525338173,
- -0.031155915930867195,
- -0.04819495230913162,
- 0.043387480080127716,
- -0.10335856676101685,
- 0.008964243344962597,
- 0.026416797190904617,
- 0.07550473511219025,
- 0.08865731954574585,
- 0.02467546984553337,
- 0.059915974736213684,
- -0.051912106573581696,
- -0.039043013006448746,
- 0.0037511263508349657,
- 0.10198715329170227,
- 0.07406270503997803,
- 0.034740958362817764,
- -0.017403775826096535
- ]
- },
- {
- "keyword": "depletion",
- "type": "consumes",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.058498453348875046,
- 0.03213455528020859,
- 0.06128942221403122,
- 0.06081206351518631,
- 0.03456741198897362,
- -0.0403616838157177,
- 0.12960493564605713,
- 0.02127240225672722,
- 0.033876530826091766,
- 0.005423798691481352,
- 0.06673300266265869,
- -0.024975763633847237,
- 0.05851709842681885,
- -0.022525714710354805,
- -0.04761781916022301,
- -0.049747392535209656,
- -0.007250621449202299,
- 0.016787847504019737,
- -0.07375916093587875,
- 0.004703553393483162,
- -0.020442094653844833,
- 0.025883380323648453,
- -0.14335957169532776,
- 0.07614956051111221,
- 0.04013114422559738,
- 0.05438289791345596,
- -0.0074409195221960545,
- -0.0005862931720912457,
- 0.027842123061418533,
- -0.03829488158226013,
- 0.02622085064649582,
- 0.005107799544930458,
- 0.06314325332641602,
- -0.024126801639795303,
- 0.011364387348294258,
- 0.011587299406528473,
- -0.0034635348711162806,
- 0.04751795157790184,
- 0.012022502720355988,
- 0.031124478206038475,
- -0.01244180928915739,
- -0.011569952592253685,
- -0.05204242095351219,
- -0.03235901519656181,
- 0.01124925073236227,
- -0.0007838745368644595,
- -0.04500478878617287,
- 0.019857874140143394,
- 0.03373071551322937,
- 0.03376707807183266,
- 0.04713040217757225,
- 0.02457924745976925,
- -0.004664364270865917,
- 0.0022788362111896276,
- 0.03805447742342949,
- -0.07537545263767242,
- -0.01747213676571846,
- 0.03252233564853668,
- -0.0923299714922905,
- -0.036014799028635025,
- -0.011126725003123283,
- 0.015132441185414791,
- -0.0628177747130394,
- -0.0010657079983502626,
- 0.12897975742816925,
- 0.0017515013460069895,
- 0.08860363066196442,
- -0.04517455771565437,
- -0.004386721178889275,
- 0.14342989027500153,
- 0.045970674604177475,
- -0.02328348718583584,
- 0.021889502182602882,
- 0.042882706969976425,
- 0.021892042830586433,
- 0.004522824194282293,
- 0.040635231882333755,
- -0.10255361348390579,
- 0.040020015090703964,
- 0.005774452351033688,
- 0.09192758798599243,
- 0.006773136556148529,
- 0.03149626776576042,
- -0.033912573009729385,
- -0.038550928235054016,
- -0.03084663115441799,
- 0.07816314697265625,
- -0.040679674595594406,
- -0.05314810946583748,
- 0.01440559420734644,
- -0.07359911501407623,
- -0.002800785470753908,
- -0.03248332440853119,
- 0.0068620252422988415,
- -0.045239899307489395,
- 0.0713767558336258,
- -0.03429863601922989,
- -0.0971681997179985,
- -0.040628351271152496,
- 0.11982788145542145,
- -0.08306075632572174,
- 0.08610812574625015,
- -0.07279127836227417,
- -0.012942434288561344,
- -0.035067200660705566,
- -0.028140055015683174,
- 0.00938357599079609,
- 0.017832854762673378,
- -0.023863017559051514,
- 0.034982673823833466,
- -0.04233979806303978,
- -0.0637240931391716,
- 0.0381486602127552,
- 0.04682772606611252,
- 0.014771186746656895,
- 0.07832162082195282,
- 0.009768129326403141,
- -0.0014405441470444202,
- 0.03392861783504486,
- -0.0644988864660263,
- 0.07643020898103714,
- 0.001311972038820386,
- -0.0067159500904381275,
- -0.04949666187167168,
- -0.08080630749464035,
- -0.021055417135357857,
- 0.033237311989068985,
- -1.1952243806523665e-33,
- 0.07427816838026047,
- -0.10776280611753464,
- 0.013577951118350029,
- 0.004675079602748156,
- 0.047564052045345306,
- 0.02477528713643551,
- -0.1033264622092247,
- 0.008385155349969864,
- 0.012617905624210835,
- -0.08152463287115097,
- -0.04930004104971886,
- -0.043599408119916916,
- -0.02955387532711029,
- -0.037581831216812134,
- -0.0237796138972044,
- -0.01932377554476261,
- 0.08101373165845871,
- 0.0679340660572052,
- -0.003188073867931962,
- 0.054450083523988724,
- -0.031912852078676224,
- -0.03489086404442787,
- -0.05058390274643898,
- 0.0271920058876276,
- 0.0005523399449884892,
- 0.035657238215208054,
- 0.018302446231245995,
- 0.052156127989292145,
- -0.046407680958509445,
- 0.016024207696318626,
- 0.04898319020867348,
- 0.009331082925200462,
- -0.09965825825929642,
- -0.019757049158215523,
- 0.003191867144778371,
- -0.008980869315564632,
- -0.011763092130422592,
- 0.019080277532339096,
- 0.03411828354001045,
- -0.026694899424910545,
- -0.030608247965574265,
- 0.006211203057318926,
- -0.001511076930910349,
- 0.01367135439068079,
- 0.034720528870821,
- 0.011835034005343914,
- 0.09639464318752289,
- -0.07051263004541397,
- -0.0967043861746788,
- 0.04273606091737747,
- 0.04987576603889465,
- 0.012675811536610126,
- -0.02028582990169525,
- -0.04054099693894386,
- -0.03455982357263565,
- -0.025121968239545822,
- 0.03966447710990906,
- -0.023816121742129326,
- 0.018473219126462936,
- 0.030219528824090958,
- 0.05416582152247429,
- -0.004142170771956444,
- -0.053725264966487885,
- -0.034725166857242584,
- 0.027230486273765564,
- -0.04896609112620354,
- -0.015643099322915077,
- -0.07121217995882034,
- -0.016515206545591354,
- -0.016767848283052444,
- -0.08887751400470734,
- -0.051279276609420776,
- 0.07692603766918182,
- -0.0007104651303961873,
- 0.02846093662083149,
- 0.008991021662950516,
- 0.030764443799853325,
- 0.028307277709245682,
- -0.02130116894841194,
- -0.04128318279981613,
- -0.10301680862903595,
- -0.12105455994606018,
- 0.00002564726491982583,
- -0.05447904020547867,
- 0.08370877802371979,
- 0.0810149684548378,
- -0.013677746057510376,
- -0.08499869704246521,
- 0.058035463094711304,
- -0.01857113279402256,
- -0.10547114163637161,
- 0.009037262760102749,
- 0.03858068212866783,
- -0.0894177034497261,
- -0.0067739104852080345,
- 3.04384757171579e-34,
- -0.03483784571290016,
- -0.0018057523993775249,
- -0.06502186506986618,
- 0.11061672121286392,
- -0.03933122009038925,
- 0.01658543199300766,
- -0.03762955963611603,
- 0.09351915121078491,
- -0.030715545639395714,
- -0.03755473345518112,
- 0.03724244236946106,
- -0.030556898564100266,
- 0.0481402724981308,
- 0.053132008761167526,
- -0.0549299530684948,
- 0.06897082179784775,
- 0.07264947891235352,
- -0.05784892290830612,
- -0.07068458199501038,
- -0.02615375816822052,
- -0.022645004093647003,
- -0.0027713708113878965,
- -0.011634939350187778,
- -0.05418696999549866,
- -0.006222879979759455,
- 0.05779063701629639,
- 0.024073034524917603,
- -0.044030025601387024,
- 0.029336923733353615,
- -0.03907616063952446,
- -0.03192640841007233,
- 0.010038514621555805,
- -0.06118930131196976,
- 0.0034868884831666946,
- -0.024243265390396118,
- 0.07612647116184235,
- 0.012803412973880768,
- 0.049409911036491394,
- -0.1422593742609024,
- -0.03806603327393532,
- 0.0600009560585022,
- -0.006366601679474115,
- 0.04794071987271309,
- 0.14966028928756714,
- 0.06582286208868027,
- -0.004384949803352356,
- -0.0039107888005673885,
- 0.017599398270249367,
- 0.11126092076301575,
- 0.11153750121593475,
- 0.014890000224113464,
- -0.01345005165785551,
- -0.020748140290379524,
- 0.10395968705415726,
- 0.029096264392137527,
- -0.04564033821225166,
- 0.06702860444784164,
- -0.04694349318742752,
- -0.055137746036052704,
- 0.0454251691699028,
- -0.05936005711555481,
- 0.04307979345321655,
- 0.01252329908311367,
- 0.02413259632885456,
- -0.039559509605169296,
- -0.06031245365738869,
- 0.0006410293863154948,
- 0.09694753587245941,
- 0.13268007338047028,
- 0.02058257907629013,
- 0.04351102188229561,
- 0.07327917963266373,
- -0.08120843023061752,
- -0.06587712466716766,
- -0.04440498724579811,
- 0.02304498851299286,
- -0.11624273657798767,
- 0.08015737682580948,
- 0.025422949343919754,
- -0.007779430132359266,
- -0.03750379756093025,
- 0.011923820711672306,
- -0.041413918137550354,
- 0.009532542899250984,
- -0.020358681678771973,
- -0.0748673677444458,
- -0.010558690875768661,
- 0.038641367107629776,
- -0.004234532359987497,
- 0.05513467267155647,
- -0.040825288742780685,
- 0.012378009967505932,
- -0.08074083179235458,
- 0.040589042007923126,
- -0.014160340651869774,
- -1.3331808546013235e-8,
- -0.022417953237891197,
- 0.021070098504424095,
- -0.07134267687797546,
- 0.009164205752313137,
- 0.08425266295671463,
- -0.03959062322974205,
- 0.07671640068292618,
- 0.07038892060518265,
- 0.03553888201713562,
- -0.06678275018930435,
- -0.012985402718186378,
- 0.0031280459370464087,
- 0.019788619130849838,
- 0.026304183527827263,
- 0.02942180447280407,
- 0.06428961455821991,
- 0.02158733457326889,
- 0.03348371759057045,
- -0.060918524861335754,
- -0.016678407788276672,
- -0.00842347089201212,
- -0.07402627915143967,
- -0.02184850536286831,
- 0.015467028133571148,
- 0.004695127252489328,
- -0.0047939978539943695,
- 0.048955660313367844,
- 0.07277185469865799,
- -0.03914009407162666,
- -0.06941545009613037,
- 0.06049439683556557,
- 0.062418293207883835,
- 0.03777167573571205,
- -0.09650975465774536,
- 0.08809991925954819,
- -0.03836996108293533,
- 0.02300342358648777,
- -0.01581615023314953,
- 0.021667130291461945,
- -0.034681666642427444,
- -0.041615478694438934,
- 0.02801380306482315,
- 0.039792656898498535,
- 0.018249541521072388,
- 0.02042056806385517,
- -0.0603790245950222,
- 0.04120461270213127,
- 0.043496273458004,
- -0.04105275496840477,
- -0.03328276425600052,
- -0.01573786698281765,
- 0.06492337584495544,
- 0.0489407554268837,
- 0.0867253839969635,
- -0.032198891043663025,
- 0.017261190339922905,
- -0.01328509021550417,
- 0.012733195908367634,
- -0.08705161511898041,
- 0.0074114566668868065,
- 0.0792163535952568,
- -0.05593259632587433,
- 0.03968672826886177,
- 0.03226650878787041
- ]
- },
- {
- "keyword": "owns",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.012821657583117485,
- 0.0007786129717715085,
- 0.03340587019920349,
- 0.01969037763774395,
- -0.04453599825501442,
- -0.048210032284259796,
- 0.0779070034623146,
- -0.049186524003744125,
- 0.023567114025354385,
- 0.012428670190274715,
- -0.014613441191613674,
- 0.004611847922205925,
- 0.017515338957309723,
- -0.010234602726995945,
- -0.004595437552779913,
- 0.03402119502425194,
- -0.0890139564871788,
- -0.02007891796529293,
- -0.06611140072345734,
- -0.04923764988780022,
- -0.10543563961982727,
- -0.09076321870088577,
- 0.023796385154128075,
- 0.02906632609665394,
- 0.05417397618293762,
- 0.09686697274446487,
- -0.006912048440426588,
- 0.10655876994132996,
- 0.06343279778957367,
- -0.07870016247034073,
- 0.01268189586699009,
- -0.0737830176949501,
- 0.055102694779634476,
- -0.0105803357437253,
- -0.012965353205800056,
- -0.006030956283211708,
- -0.0005018580122850835,
- -0.0685274749994278,
- 0.021619755774736404,
- -0.0001336848217761144,
- 0.04638437181711197,
- -0.04166220501065254,
- 0.03499593585729599,
- 0.019662193953990936,
- -0.008341452106833458,
- 0.1057610735297203,
- 0.031760506331920624,
- 0.03425019234418869,
- 0.07928024977445602,
- 0.05208615958690643,
- 0.019685229286551476,
- 0.008082735352218151,
- 0.01215330045670271,
- -0.04685024172067642,
- 0.043423015624284744,
- 0.061618633568286896,
- 0.007304708007723093,
- 0.05813485383987427,
- 0.039331939071416855,
- -0.04160960391163826,
- 0.06067783758044243,
- 0.0012979364255443215,
- -0.05477306619286537,
- 0.05461188033223152,
- 0.03244718164205551,
- -0.01962229423224926,
- 0.0025347459595650434,
- 0.07000148296356201,
- -0.09541931748390198,
- -0.029161984100937843,
- 0.1102997213602066,
- 0.016834909096360207,
- 0.022862518206238747,
- 0.04496174305677414,
- -0.04225705936551094,
- -0.012561362236738205,
- 0.049217384308576584,
- 0.013784331269562244,
- 0.02201654762029648,
- -0.044024236500263214,
- -0.023755645379424095,
- 0.01884506270289421,
- -0.006855578627437353,
- 0.012662775814533234,
- -0.03523258492350578,
- 0.05995343625545502,
- 0.06401655822992325,
- 0.05661213770508766,
- 0.03005835972726345,
- 0.04405846446752548,
- -0.04350294545292854,
- -0.06338687241077423,
- 0.08978155255317688,
- -0.03563358262181282,
- -0.05793188139796257,
- 0.02644226886332035,
- 0.004384807776659727,
- 0.02645762823522091,
- -0.15202385187149048,
- 0.2106178104877472,
- -0.01721254736185074,
- 0.060873836278915405,
- -0.051278479397296906,
- 0.010304583236575127,
- 0.00583162996917963,
- 0.033723488450050354,
- -0.023151330649852753,
- 0.12889553606510162,
- -0.006820030510425568,
- -0.055692750960588455,
- -0.07053759694099426,
- 0.022433074191212654,
- -0.05000649020075798,
- 0.08226362615823746,
- 0.04129624739289284,
- -0.06810896098613739,
- -0.041285980492830276,
- 0.028857115656137466,
- 0.09938753396272659,
- -0.14840896427631378,
- 0.006097889970988035,
- -0.024740245193243027,
- 0.017789429053664207,
- 0.009627604857087135,
- -0.017190122976899147,
- -0.04958080127835274,
- -0.023060910403728485,
- -4.880057083257049e-33,
- 0.031070560216903687,
- 0.039724595844745636,
- -0.002684094477444887,
- 0.0074263098649680614,
- 0.0235211830586195,
- 0.012949597090482712,
- 0.010816145688295364,
- 0.036124445497989655,
- -0.09905586391687393,
- 0.047100264579057693,
- 0.02690567821264267,
- 0.006029319949448109,
- -0.056501999497413635,
- -0.05702676624059677,
- 0.07310647517442703,
- 0.006423567421734333,
- 0.025758927688002586,
- -0.04041654244065285,
- 0.001221800222992897,
- -0.055738743394613266,
- -0.056792352348566055,
- 0.13752105832099915,
- -0.031658194959163666,
- 0.08333604782819748,
- -0.00482781371101737,
- -0.0819249376654625,
- -0.05243128910660744,
- -0.014277003705501556,
- -0.002561145229265094,
- 0.034067846834659576,
- 0.04915693774819374,
- -0.012474264949560165,
- -0.04267872869968414,
- -0.03334914520382881,
- -0.0033712349832057953,
- 0.04794163256883621,
- -0.04542166739702225,
- -0.01525819581001997,
- -0.016789894551038742,
- 0.04264533147215843,
- 0.009747955948114395,
- -0.04498865827918053,
- -0.07376115024089813,
- 0.004649579059332609,
- -0.07971715927124023,
- -0.021035367622971535,
- -0.035133231431245804,
- 0.00163915881421417,
- 0.0184730663895607,
- 0.05588662624359131,
- -0.013766271993517876,
- -0.015011424198746681,
- -0.1057368591427803,
- 0.0015995507128536701,
- 0.043875183910131454,
- -0.06271941214799881,
- 0.005820709280669689,
- -0.007941040210425854,
- 0.04424622282385826,
- -0.05173458158969879,
- 0.02328527718782425,
- 0.06832299381494522,
- -0.054894544184207916,
- 0.12693625688552856,
- -0.01978166215121746,
- 0.04012950509786606,
- 0.06691383570432663,
- -0.03979136794805527,
- 0.007735200691968203,
- -0.018826523795723915,
- -0.040389321744441986,
- -0.010006223805248737,
- 0.01780541054904461,
- 0.021686015650629997,
- -0.02337534725666046,
- -0.0299302339553833,
- -0.0889287069439888,
- 0.06797585636377335,
- -0.007408921141177416,
- 0.03903306648135185,
- -0.0005700548063032329,
- -0.013736434280872345,
- 0.025030020624399185,
- 0.06657577306032181,
- -0.0009949703235179186,
- 0.007670555729418993,
- -0.015446737408638,
- -0.06675976514816284,
- -0.019937027245759964,
- 0.06210614740848541,
- -0.06930024176836014,
- -0.012525651603937149,
- -0.0006719566881656647,
- 0.06781181693077087,
- -0.08157819509506226,
- 3.428154786730501e-33,
- -0.05967520922422409,
- -0.08942738175392151,
- -0.017110595479607582,
- 0.024715924635529518,
- -0.04975730553269386,
- -0.020337557420134544,
- 0.009291818365454674,
- 0.003392276121303439,
- -0.015175257809460163,
- -0.0404353030025959,
- -0.03467791527509689,
- 0.02549179270863533,
- 0.021904127672314644,
- 0.09707994014024734,
- 0.008232291787862778,
- -0.023990074172616005,
- 0.08597921580076218,
- -0.10799935460090637,
- -0.035147108137607574,
- -0.07158993929624557,
- -0.12679313123226166,
- 0.02862573228776455,
- 0.011226712726056576,
- 0.08095541596412659,
- -0.03808010742068291,
- 0.03858870267868042,
- -0.0062329950742423534,
- 0.05744781345129013,
- 0.00022896230802871287,
- -0.048549167811870575,
- 0.04614374786615372,
- -0.06313654035329819,
- 0.0027200630865991116,
- 0.0475112721323967,
- -0.008328108116984367,
- 0.018273649737238884,
- -0.06213122233748436,
- 0.023925624787807465,
- 0.004751775413751602,
- -0.013515162281692028,
- 0.016016485169529915,
- 0.04042496904730797,
- 0.08185239136219025,
- 0.1382981538772583,
- -0.013156344182789326,
- 0.022758258506655693,
- -0.009213443845510483,
- -0.10310633480548859,
- 0.059954795986413956,
- 0.024342572316527367,
- -0.00388038600794971,
- 0.001882702810689807,
- 0.05325018987059593,
- -0.0070497337728738785,
- -0.004676890093833208,
- 0.0295556727796793,
- 0.03534597530961037,
- 0.06851840019226074,
- 0.03063725307583809,
- -0.01734084263443947,
- 0.055670320987701416,
- 0.06319542229175568,
- -0.055594705045223236,
- 0.09960032254457474,
- -0.05953974276781082,
- 0.0047463346272706985,
- -0.02642245963215828,
- -0.06333261728286743,
- 0.06121975556015968,
- -0.04886944219470024,
- -0.011119017377495766,
- -0.08243925124406815,
- -0.0782170295715332,
- -0.09849519282579422,
- -0.023782826960086823,
- 0.016338851302862167,
- -0.052133869379758835,
- 0.008510053157806396,
- -0.0004761017917189747,
- -0.058501727879047394,
- 0.010640946216881275,
- -0.008799429051578045,
- 0.017518097534775734,
- 0.09833759069442749,
- -0.026701651513576508,
- -0.0011608267668634653,
- 0.014027162455022335,
- -0.09334105253219604,
- -0.030577249825000763,
- 0.0280094426125288,
- 0.04332566261291504,
- 0.03996206820011139,
- -0.007828271016478539,
- -0.024397321045398712,
- -0.0016353826504200697,
- -1.1999068405543767e-8,
- -0.034473732113838196,
- 0.0027915076352655888,
- 0.07959658652544022,
- 0.025692172348499298,
- 0.08585736155509949,
- -0.004699932876974344,
- 0.09919263422489166,
- 0.040049415081739426,
- 0.016795214265584946,
- 0.09251394867897034,
- -0.020833496004343033,
- -0.0016204395797103643,
- -0.060025449842214584,
- 0.010147630237042904,
- -0.023186303675174713,
- -0.0680561512708664,
- -0.04652480036020279,
- 0.057641468942165375,
- -0.04082827270030975,
- 0.014339560642838478,
- 0.02884431555867195,
- -0.0004884504014626145,
- 0.12654045224189758,
- -0.046150077134370804,
- -0.04742101952433586,
- -0.013634531758725643,
- 0.04115021228790283,
- -0.039938654750585556,
- 0.017052415758371353,
- 0.09429795295000076,
- -0.005302840378135443,
- 0.08832181990146637,
- 0.003089161356911063,
- 0.01484831515699625,
- 0.020371852442622185,
- -0.14119897782802582,
- -0.027951275929808617,
- 0.06042615324258804,
- 0.00702164601534605,
- 0.003483787178993225,
- -0.10567102581262589,
- 0.015000664629042149,
- 0.01820225454866886,
- -0.0036717220209538937,
- -0.03678479045629501,
- 0.034593742340803146,
- -0.035046592354774475,
- -0.028845561668276787,
- -0.029946675524115562,
- -0.048481084406375885,
- 0.020284250378608704,
- -0.01713091880083084,
- 0.009369304403662682,
- 0.05461591109633446,
- -0.08363108336925507,
- -0.01684136502444744,
- 0.006286211311817169,
- 0.03126850351691246,
- -0.05775255709886551,
- -0.03531594201922417,
- 0.04223262518644333,
- -0.03694780170917511,
- 0.03766956552863121,
- 0.024928685277700424
- ]
- },
- {
- "keyword": "possesses",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.015633443370461464,
- 0.015188098885118961,
- 0.010965187102556229,
- 0.03251368924975395,
- -0.027669426053762436,
- -0.0511389896273613,
- 0.15906770527362823,
- 0.031535327434539795,
- 0.021816182881593704,
- -0.0016211301553994417,
- 0.021524550393223763,
- -0.10241234302520752,
- 0.043878503143787384,
- 0.025561291724443436,
- 0.04579444229602814,
- 0.0008156164549291134,
- 0.05387696996331215,
- -0.05721301957964897,
- 0.012572599574923515,
- 0.08571955561637878,
- -0.07770206034183502,
- 0.00013775161642115563,
- 0.030204342678189278,
- -0.04733620956540108,
- -0.05707886442542076,
- 0.0232479739934206,
- -0.03881153464317322,
- -0.011531396768987179,
- 0.07028647512197495,
- -0.06675925850868225,
- -0.05442884564399719,
- 0.09777285903692245,
- 0.07199282199144363,
- 0.07870367914438248,
- -0.01799693889915943,
- 0.0044493344612419605,
- 0.01763852685689926,
- 0.021524379029870033,
- -0.008918525651097298,
- -0.03083823435008526,
- -0.04377227649092674,
- -0.03824921324849129,
- 0.08049988746643066,
- 0.04061909765005112,
- -0.01686231791973114,
- -0.018185188993811607,
- -0.005009401123970747,
- 0.03552699461579323,
- 0.08261487632989883,
- -0.01383127085864544,
- -0.012400471605360508,
- -0.07835590839385986,
- -0.012996001169085503,
- 0.08608308434486389,
- -0.0019116428447887301,
- -0.03888954222202301,
- -0.013093777932226658,
- -0.005088315345346928,
- -0.005977643188089132,
- -0.013546537607908249,
- 0.035422999411821365,
- 0.04927445575594902,
- -0.04327814653515816,
- -0.04184127226471901,
- 0.05530449375510216,
- 0.01338670589029789,
- 0.002703079953789711,
- 0.026544654741883278,
- -0.011534976772964,
- 0.04281461611390114,
- 0.05886976048350334,
- 0.007979770191013813,
- -0.053909000009298325,
- 0.08420462906360626,
- -0.03908980265259743,
- -0.01912577822804451,
- 0.028553353622555733,
- -0.08266835659742355,
- 0.0772254690527916,
- -0.07499538362026215,
- -0.07032930850982666,
- -0.002010533818975091,
- -0.02828473597764969,
- 0.021435348317027092,
- -0.020280683413147926,
- 0.008743925020098686,
- 0.02401476353406906,
- -0.09516720473766327,
- -0.09340421855449677,
- 0.01598510332405567,
- -0.043497055768966675,
- -0.004484809935092926,
- 0.025888269767165184,
- -0.026159903034567833,
- -0.01516973227262497,
- -0.012319385074079037,
- -0.032085489481687546,
- 0.048819079995155334,
- -0.06829220056533813,
- 0.19029605388641357,
- -0.0005731264827772975,
- 0.11130938678979874,
- 0.038276318460702896,
- 0.04253397509455681,
- -0.0765775516629219,
- 0.015984172001481056,
- -0.013187066651880741,
- 0.008796994574368,
- 0.020632266998291016,
- -0.037867479026317596,
- 0.025791551917791367,
- -0.010542131029069424,
- -0.007588631939142942,
- -0.018284708261489868,
- 0.06395585089921951,
- -0.027357634156942368,
- 0.04890133813023567,
- -0.01475117914378643,
- 0.00439173961058259,
- -0.045971937477588654,
- 0.06306144595146179,
- -0.013248346745967865,
- 0.06724750995635986,
- -0.008453304879367352,
- -0.026550740003585815,
- -0.1584176868200302,
- -0.012806727550923824,
- -6.679461591167574e-33,
- 0.02198522724211216,
- 0.020403634756803513,
- 0.02059219591319561,
- 0.031249774619936943,
- -0.007107083685696125,
- 0.01660914719104767,
- 0.007994159124791622,
- 0.002824285766109824,
- -0.10018590092658997,
- -0.003520842408761382,
- -0.10874912142753601,
- 0.04740654304623604,
- -0.01797730289399624,
- -0.04427585005760193,
- 0.11904176324605942,
- 0.02800760231912136,
- 0.09342312067747116,
- 0.011500162072479725,
- 0.06682253628969193,
- 0.010270549915730953,
- -0.0005230145761743188,
- 0.14571841061115265,
- -0.0007848149398341775,
- 0.02343440242111683,
- -0.004706801380962133,
- -0.0448303297162056,
- -0.01910807378590107,
- 0.03828475624322891,
- -0.026810579001903534,
- -0.004378368146717548,
- 0.052769239991903305,
- 0.018850410357117653,
- -0.07515004277229309,
- 0.06877478957176208,
- -0.014188004657626152,
- 0.07447636127471924,
- 0.0015716408379375935,
- 0.00899600237607956,
- 0.045701298862695694,
- -0.05244351550936699,
- -0.0012933793477714062,
- -0.027862906455993652,
- -0.04052433744072914,
- -0.0007658064714632928,
- -0.00804678164422512,
- 0.004590516444295645,
- 0.02398449182510376,
- 0.009751267731189728,
- -0.05436449870467186,
- 0.04718029871582985,
- 0.019459696486592293,
- -0.02661164663732052,
- -0.05759884789586067,
- -0.026675211265683174,
- -0.06703542917966843,
- -0.023571034893393517,
- 0.03234819695353508,
- 0.11563115566968918,
- 0.044062450528144836,
- 0.01118991058319807,
- 0.06548736989498138,
- 0.05931612476706505,
- -0.0779334008693695,
- 0.008390134200453758,
- 0.007610149681568146,
- -0.04998470097780228,
- -0.00414094515144825,
- -0.07680521160364151,
- 0.06531435251235962,
- 0.0009365970036014915,
- -0.09409504383802414,
- 0.04546748101711273,
- 0.0011571906507015228,
- 0.03356252610683441,
- -0.00982637144625187,
- -0.055157460272312164,
- 0.039544686675071716,
- -0.043449293822050095,
- 0.007062789052724838,
- 0.03125978633761406,
- -0.1253948211669922,
- -0.028731482103466988,
- 0.03723511844873428,
- 0.0698971077799797,
- -0.034866075962781906,
- 0.019854560494422913,
- 0.021933525800704956,
- -0.11216487735509872,
- 0.011993140913546085,
- 0.07005459815263748,
- -0.023642264306545258,
- -0.04449780657887459,
- -0.035606563091278076,
- 0.012345023453235626,
- -0.004003438632935286,
- 4.991309542038717e-33,
- -0.009558849036693573,
- -0.03706284612417221,
- -0.10779376327991486,
- 0.04543042927980423,
- -0.013162828050553799,
- -0.02332516573369503,
- 0.060612551867961884,
- 0.04124467447400093,
- -0.1324918270111084,
- -0.1591365784406662,
- 0.01059311255812645,
- -0.05430230498313904,
- -0.012895956635475159,
- 0.011532903648912907,
- 0.05965506657958031,
- 0.0173447635024786,
- 0.000941168109420687,
- -0.059614960104227066,
- -0.002752474043518305,
- 0.031285710632801056,
- -0.08204678446054459,
- 0.052177365869283676,
- 0.09080962836742401,
- -0.0007779460283927619,
- -0.06619889289140701,
- 0.07137520611286163,
- 0.05653807148337364,
- -0.039545297622680664,
- -0.1300952434539795,
- -0.004920520819723606,
- 0.05714371055364609,
- -0.01412456389516592,
- -0.022619592025876045,
- 0.02714998461306095,
- -0.017201654613018036,
- 0.028926800936460495,
- 0.04294126480817795,
- 0.0039214747957885265,
- 0.039162859320640564,
- -0.009511733427643776,
- -0.03856457397341728,
- 0.04027985408902168,
- 0.03074360452592373,
- 0.15573649108409882,
- -0.011530126444995403,
- 0.0202961266040802,
- 0.051938556134700775,
- 0.044295452535152435,
- 0.05510307475924492,
- 0.019477982074022293,
- 0.04196040704846382,
- -0.006800166796892881,
- -0.05675797164440155,
- -0.0767831802368164,
- 0.0016416353173553944,
- -0.11847619712352753,
- -0.011377010494470596,
- -0.05509607866406441,
- 0.053414419293403625,
- -0.004772686865180731,
- -0.001201446633785963,
- 0.027185697108507156,
- -0.06697060167789459,
- 0.0023713838309049606,
- -0.04059365764260292,
- -0.0038792130071669817,
- -0.05686738342046738,
- 0.07874599099159241,
- -0.09516987949609756,
- -0.017758671194314957,
- 0.037108615040779114,
- -0.04754329100251198,
- -0.019096992909908295,
- -0.06353446841239929,
- -0.002743241610005498,
- -0.05675486847758293,
- -0.06774402409791946,
- 0.0033107330091297626,
- -0.0064469315111637115,
- -0.0802704244852066,
- -0.07338152080774307,
- -0.008195288479328156,
- -0.007510501891374588,
- 0.005785379093140364,
- -0.01839252933859825,
- 0.06609591841697693,
- 0.07675477117300034,
- 0.0015257798368111253,
- -0.005797314923256636,
- 0.029894882813096046,
- 0.014157622121274471,
- 0.010417106561362743,
- -0.043076273053884506,
- -0.08052989840507507,
- -0.021652309224009514,
- -1.1690972634426089e-8,
- -0.04139475151896477,
- 0.02790563367307186,
- -0.012510917149484158,
- -0.05902623385190964,
- 0.08429642021656036,
- 0.011113714426755905,
- 0.03650716319680214,
- -0.000489987782202661,
- -0.0067630489356815815,
- 0.08353084325790405,
- -0.047940295189619064,
- -0.007636955939233303,
- 0.0016163934487849474,
- 0.030565250664949417,
- 0.12159693986177444,
- -0.001990029588341713,
- -0.011870906688272953,
- 0.0613209493458271,
- -0.07994144409894943,
- 0.03472195938229561,
- 0.01181062776595354,
- 0.0013503481168299913,
- 0.01919080875813961,
- -0.005411280319094658,
- -0.024327805265784264,
- -0.006198405753821135,
- -0.02856600470840931,
- -0.1626228541135788,
- 0.0339871346950531,
- 0.06974051147699356,
- 0.09096994251012802,
- 0.06577207893133163,
- 0.015516041778028011,
- -0.006886550225317478,
- 0.025556793436408043,
- -0.022710556164383888,
- 0.0030100438743829727,
- -0.004959943238645792,
- 0.015697499737143517,
- -0.00819261372089386,
- 0.003239465644583106,
- -0.02246357686817646,
- 0.008035815320909023,
- 0.05682523921132088,
- -0.028722213581204414,
- -0.06935565918684006,
- 0.03631108999252319,
- 0.007235108874738216,
- -0.007051871158182621,
- -0.005681158043444157,
- 0.004265826661139727,
- -0.03937827795743942,
- 0.054132621735334396,
- 0.08892851322889328,
- 0.017194315791130066,
- -0.020753074437379837,
- 0.041439373046159744,
- 0.04826356843113899,
- 0.010484183207154274,
- 0.010320032015442848,
- 0.13878659904003143,
- -0.0009483233443461359,
- 0.04468875378370285,
- 0.012719168327748775
- ]
- },
- {
- "keyword": "holds",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.061381980776786804,
- 0.06299252063035965,
- -0.020732706412672997,
- -0.02198495902121067,
- -0.04271550476551056,
- 0.030440647155046463,
- 0.135747492313385,
- 0.023643391206860542,
- 0.06936033070087433,
- 0.018401997163891792,
- -0.04867512732744217,
- -0.07014849781990051,
- 0.002039151731878519,
- -0.040821678936481476,
- -0.03653443604707718,
- 0.032959744334220886,
- -0.03592757135629654,
- 0.0016803978942334652,
- -0.010891706682741642,
- 0.04883357882499695,
- -0.06765628606081009,
- 0.04452073574066162,
- 0.01663154363632202,
- 0.006816226989030838,
- -0.04100830480456352,
- 0.0700366422533989,
- -0.07012668997049332,
- 0.03732719272375107,
- 0.08406250178813934,
- -0.10468935966491699,
- -0.03120792657136917,
- -0.059568360447883606,
- 0.021911175921559334,
- 0.0011685347417369485,
- -0.07676467299461365,
- 0.06270752102136612,
- -0.07936761528253555,
- -0.07267504185438156,
- 0.02520139329135418,
- 0.040014687925577164,
- -0.02613670565187931,
- -0.1495368331670761,
- -0.0181148499250412,
- -0.005038452334702015,
- 0.0466238372027874,
- 0.0865907147526741,
- -0.01340367179363966,
- 0.02592174895107746,
- 0.03353285416960716,
- 0.0058452715165913105,
- -0.055925142019987106,
- 0.007485338021069765,
- -0.02619035355746746,
- 0.02473430708050728,
- 0.08235003054141998,
- 0.07683578133583069,
- 0.08362431079149246,
- -0.018356874585151672,
- 0.007169214077293873,
- -0.04732508957386017,
- 0.12787024676799774,
- -0.004390027839690447,
- -0.08565326035022736,
- 0.08331979066133499,
- -0.05160793662071228,
- -0.009676983579993248,
- -0.008285832591354847,
- 0.06292874366044998,
- -0.03147362917661667,
- -0.03918129950761795,
- 0.06756004691123962,
- 0.03672010824084282,
- 0.021079838275909424,
- 0.019982626661658287,
- 0.059229206293821335,
- -0.010483005084097385,
- -0.015973392874002457,
- -0.09243245422840118,
- 0.08199085295200348,
- 0.012800992466509342,
- -0.005379060283303261,
- -0.06622710824012756,
- -0.01235275436192751,
- 0.04323302581906319,
- -0.03577225282788277,
- -0.03170209750533104,
- 0.006375415716320276,
- 0.0404217503964901,
- -0.017161179333925247,
- 0.017521942034363747,
- -0.08146581053733826,
- 0.011803797446191311,
- 0.03660250082612038,
- -0.02299794740974903,
- -0.08924676477909088,
- -0.03393571451306343,
- 0.03291403129696846,
- 0.05287273973226547,
- -0.11356206983327866,
- 0.22761306166648865,
- 0.06395921856164932,
- 0.10801992565393448,
- -0.02465328760445118,
- 0.014853035099804401,
- -0.03798940032720566,
- -0.01594417914748192,
- -0.019436130300164223,
- 0.05717284604907036,
- 0.013833127915859222,
- -0.02317521907389164,
- 0.01280655711889267,
- 0.015965718775987625,
- -0.017040133476257324,
- 0.16184286773204803,
- -0.004999544471502304,
- -0.030696745961904526,
- -0.008699491620063782,
- 0.04411881044507027,
- 0.061404433101415634,
- -0.057100243866443634,
- 0.015558426268398762,
- 0.026697952300310135,
- -0.0108319828286767,
- -0.034492719918489456,
- -0.010512580163776875,
- -0.08311788737773895,
- 0.012671972624957561,
- -6.319938113336516e-33,
- -0.006910424679517746,
- -0.12133285403251648,
- -0.03937019035220146,
- 0.08159051835536957,
- -0.05184675008058548,
- 0.024928029626607895,
- -0.01267197635024786,
- 0.02643759921193123,
- -0.08621335029602051,
- 0.003579460084438324,
- 0.018769562244415283,
- 0.10483795404434204,
- -0.022388707846403122,
- -0.042125921696424484,
- 0.023805024102330208,
- -0.02852858603000641,
- 0.06537932902574539,
- 0.051636770367622375,
- 0.019037796184420586,
- 0.028047146275639534,
- -0.011331798508763313,
- 0.06293107569217682,
- 0.01289072260260582,
- 0.023917246609926224,
- -0.015091417357325554,
- 0.02058587223291397,
- -0.03510412946343422,
- -0.04883018881082535,
- -0.035883571952581406,
- -0.00586690055206418,
- 0.0574183389544487,
- -0.0006972821429371834,
- -0.008398651145398617,
- -0.001446535810828209,
- -0.025583554059267044,
- -0.07764115184545517,
- 0.06393609941005707,
- -0.07371874898672104,
- 0.021367669105529785,
- -0.11139563471078873,
- -0.02072102203965187,
- 0.02412480115890503,
- -0.06654269993305206,
- 0.041796449571847916,
- -0.0626840814948082,
- -0.052349336445331573,
- 0.062091898173093796,
- 0.013060801662504673,
- -0.0652477815747261,
- 0.03699057176709175,
- 0.030770620331168175,
- -0.019612319767475128,
- -0.18818767368793488,
- -0.008495500311255455,
- 0.0025823351461440325,
- -0.012499104253947735,
- -0.0024935787077993155,
- 0.04923262074589729,
- -0.053316887468099594,
- 0.04352264478802681,
- 0.017002608627080917,
- 0.09214448183774948,
- -0.06882743537425995,
- -0.001062891911715269,
- -0.09203175455331802,
- 0.008634957484900951,
- 0.027659326791763306,
- -0.029596921056509018,
- 0.0003832148213405162,
- -0.003569573163986206,
- -0.058882299810647964,
- -0.04742295295000076,
- 0.04919353500008583,
- 0.014592684805393219,
- 0.02512965351343155,
- -0.042529214173555374,
- 0.0006259418441914022,
- -0.009802260436117649,
- -0.00799584574997425,
- 0.02875426784157753,
- -0.06925418972969055,
- -0.06645450741052628,
- 0.0014036576030775905,
- 0.03667832911014557,
- 0.00858678575605154,
- -0.01264373492449522,
- -0.00850728154182434,
- -0.11047446727752686,
- -0.006852773483842611,
- 0.019318023696541786,
- -0.09045035392045975,
- 0.006850769743323326,
- 0.07907047122716904,
- 0.02769795060157776,
- -0.026452427729964256,
- 4.419663333155977e-33,
- 0.028600217774510384,
- -0.025564972311258316,
- -0.02889162302017212,
- 0.10665488243103027,
- 0.023610783740878105,
- -0.03491996228694916,
- 0.024024443700909615,
- -0.03799126669764519,
- -0.032797060906887054,
- -0.10541509091854095,
- 0.03764720261096954,
- 0.019671227782964706,
- 0.03234954550862312,
- 0.015805665403604507,
- 0.04320082440972328,
- 0.03809193894267082,
- 0.08682044595479965,
- -0.0038068946450948715,
- -0.012859626673161983,
- 0.007309608161449432,
- -0.043987784534692764,
- -0.08363831043243408,
- 0.04872556030750275,
- 0.04600215703248978,
- -0.061926454305648804,
- 0.04954859986901283,
- -0.006691010668873787,
- -0.025782523676753044,
- -0.0107494555413723,
- -0.0546991266310215,
- 0.010539863258600235,
- -0.07042625546455383,
- -0.02993103116750717,
- 0.04541148990392685,
- 0.04473736137151718,
- -0.05086255446076393,
- 0.03785601258277893,
- 0.025684373453259468,
- -0.029165927320718765,
- 0.04679316654801369,
- 0.06936474144458771,
- 0.05290054902434349,
- 0.05407103896141052,
- 0.11668910831212997,
- 0.057489559054374695,
- 0.0021876227110624313,
- -0.0024904555175453424,
- 0.03740731254220009,
- 0.0009786634473130107,
- 0.001211362425237894,
- -0.05201910063624382,
- -0.05091344937682152,
- -0.04796019196510315,
- 0.06441573798656464,
- 0.027656352147459984,
- 0.0353502482175827,
- -0.10170876979827881,
- 0.01585090346634388,
- -0.034147851169109344,
- -0.02090354450047016,
- -0.03312145546078682,
- 0.03694415092468262,
- -0.0626516342163086,
- 0.0638718232512474,
- -0.000517492473591119,
- -0.019659101963043213,
- -0.02152196690440178,
- -0.01822124421596527,
- -0.0905275046825409,
- 0.02834390476346016,
- 0.017636610195040703,
- -0.030561083927750587,
- -0.0032950255554169416,
- 0.020828304812312126,
- 0.0017203548923134804,
- 0.005797465331852436,
- -0.1145452931523323,
- 0.06441391259431839,
- 0.031354743987321854,
- 0.046608008444309235,
- -0.06522176414728165,
- 0.03243011608719826,
- -0.04829971492290497,
- 0.036614373326301575,
- -0.0072861104272305965,
- 0.09054187685251236,
- 0.09713614732027054,
- -0.0031177245546132326,
- -0.015145760960876942,
- 0.027945982292294502,
- 0.02185181714594364,
- 0.10882848501205444,
- 0.10343077778816223,
- -0.09038454294204712,
- -0.02942836284637451,
- -1.2839279861509567e-8,
- -0.007890427485108376,
- 0.011583290062844753,
- 0.021270012483000755,
- -0.03612370416522026,
- 0.10024545341730118,
- 0.0808684304356575,
- 0.026412175968289375,
- -0.016694501042366028,
- 0.03084668517112732,
- -0.00621508713811636,
- -0.011136948131024837,
- 0.04528697952628136,
- 0.011597278527915478,
- -0.014747614040970802,
- -0.02004982717335224,
- -0.02221561037003994,
- -0.06679321080446243,
- 0.008440596051514149,
- -0.02342107705771923,
- 0.037959810346364975,
- -0.014278889633715153,
- -0.04468291625380516,
- 0.06226054206490517,
- 0.04885616526007652,
- 0.03215399384498596,
- -0.028780579566955566,
- -0.053572602570056915,
- 0.02432611957192421,
- 0.0026894190814346075,
- 0.023213084787130356,
- 0.014893382787704468,
- 0.04339037835597992,
- 0.03801065310835838,
- 0.006954555865377188,
- 0.03317184001207352,
- -0.10242071002721786,
- -0.025135541334748268,
- 0.044589005410671234,
- 0.07326383143663406,
- 0.009429745376110077,
- -0.017398204654455185,
- -0.019792020320892334,
- 0.039303768426179886,
- 0.000938655692152679,
- -0.006514143664389849,
- 0.054305605590343475,
- 0.035951271653175354,
- 0.012269541621208191,
- -0.02391267754137516,
- -0.05654733255505562,
- -0.0010042523499578238,
- -0.05493424832820892,
- 0.04061917960643768,
- 0.08248817920684814,
- 0.011203482747077942,
- 0.009596987627446651,
- -0.010557415895164013,
- 0.03715589642524719,
- -0.002960549434646964,
- 0.0032009819988161325,
- 0.043806616216897964,
- -0.05373626947402954,
- -0.009703893214464188,
- 0.07971515506505966
- ]
- },
- {
- "keyword": "controls",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.06832309067249298,
- -0.015504278242588043,
- -0.03903951868414879,
- 0.05470964312553406,
- -0.0605025552213192,
- 0.11106059700250626,
- 0.11901018023490906,
- 0.0006463669124059379,
- 0.034453652799129486,
- 0.07116961479187012,
- 0.05702931061387062,
- -0.03721427172422409,
- 0.0038455266039818525,
- -0.0822431892156601,
- -0.013216251507401466,
- 0.036546412855386734,
- 0.0428294762969017,
- -0.02517704851925373,
- -0.07023679465055466,
- 0.016887282952666283,
- -0.06633210927248001,
- -0.025672664865851402,
- -0.00131144595798105,
- 0.010865354910492897,
- -0.1370449960231781,
- 0.10009928792715073,
- -0.10432489961385727,
- 0.019731301814317703,
- 0.047002390027046204,
- -0.15636450052261353,
- -0.0421772226691246,
- -0.04562324285507202,
- 0.05556890740990639,
- -0.06595894694328308,
- -0.10447169095277786,
- -0.02940519154071808,
- 0.006068214774131775,
- -0.03650670871138573,
- -0.043499656021595,
- -0.053179025650024414,
- -0.059651218354701996,
- -0.04175408184528351,
- 0.02927076630294323,
- -0.019705891609191895,
- 0.02153657376766205,
- 0.07730540633201599,
- 0.01993875950574875,
- 0.03750692680478096,
- 0.07098490744829178,
- -0.034400928765535355,
- 0.05441058427095413,
- -0.069930799305439,
- 0.06616207957267761,
- -0.020868021994829178,
- 0.07227303832769394,
- -0.04076424241065979,
- 0.04280022159218788,
- 0.03756200522184372,
- 0.0533202663064003,
- 0.01825528033077717,
- 0.00925797875970602,
- 0.04534866660833359,
- -0.10460450500249863,
- 0.035033248364925385,
- -0.006721383426338434,
- 0.0235900841653347,
- -0.05255004018545151,
- 0.007915823720395565,
- 0.010509987361729145,
- -0.02711944840848446,
- -0.014865565113723278,
- 0.020211059600114822,
- 0.03181866928935051,
- -0.036107320338487625,
- 0.08590719103813171,
- -0.1184883713722229,
- -0.06809786707162857,
- -0.06414427608251572,
- 0.019072575494647026,
- -0.01253440510481596,
- 0.07960641384124756,
- 0.02434702403843403,
- -0.06726355850696564,
- 0.008947115391492844,
- 0.024781359359622,
- -0.05590560659766197,
- 0.020669110119342804,
- 0.039331238716840744,
- 0.03334343433380127,
- 0.033887315541505814,
- -0.03800904005765915,
- -0.008896813727915287,
- 0.07471360266208649,
- -0.030143460258841515,
- -0.021597009152173996,
- -0.04466814920306206,
- -0.012847633101046085,
- -0.04718936234712601,
- -0.05629700422286987,
- 0.17486897110939026,
- 0.033445391803979874,
- -0.016993459314107895,
- -0.01219881046563387,
- 0.025654030963778496,
- -0.018145756796002388,
- -0.0320732407271862,
- 0.00974954105913639,
- 0.009085189551115036,
- 0.00040159045602194965,
- -0.03000136837363243,
- -0.010112936608493328,
- -0.04331725463271141,
- -0.0890096053481102,
- 0.011233278550207615,
- 0.06508652120828629,
- -0.075411856174469,
- 0.022932039573788643,
- -0.02429923042654991,
- 0.019114425405859947,
- -0.04852520301938057,
- 0.0071134124882519245,
- -0.07352777570486069,
- -0.03341296315193176,
- -0.025184061378240585,
- -0.0021780775859951973,
- 0.00005804125976283103,
- -0.043112389743328094,
- -4.7650907970107525e-33,
- 0.03277930989861488,
- -0.018226072192192078,
- -0.03992919251322746,
- 0.07068111002445221,
- 0.04629381746053696,
- 0.08375947922468185,
- 0.027443956583738327,
- 0.008428693749010563,
- -0.02985980175435543,
- 0.09892398118972778,
- 0.013347048312425613,
- -0.060337167233228683,
- -0.09741390496492386,
- 0.0052556488662958145,
- 0.11855088174343109,
- -0.12471356987953186,
- 0.02200120873749256,
- 0.05093478411436081,
- -0.057492803782224655,
- -0.07504485547542572,
- -0.049741145223379135,
- 0.07488792389631271,
- 0.02528264932334423,
- 0.028527699410915375,
- 0.024393359199166298,
- 0.029894497245550156,
- -0.0406273677945137,
- 0.05081827566027641,
- 0.054339803755283356,
- -0.008784620091319084,
- 0.002474683104082942,
- 0.003287285566329956,
- -0.05065007880330086,
- 0.008499938994646072,
- -0.04115379974246025,
- 0.08072874695062637,
- -0.013962645083665848,
- -0.0640464723110199,
- 0.0631621778011322,
- -0.004073931835591793,
- -0.07657814025878906,
- -0.022918736562132835,
- -0.08540599793195724,
- 0.00878113228827715,
- -0.05549764260649681,
- 0.008274663239717484,
- 0.0461282841861248,
- 0.008494425565004349,
- -0.07674511522054672,
- -0.01976083032786846,
- -0.03279159963130951,
- 0.05023043602705002,
- -0.021665804088115692,
- -0.06622951477766037,
- 0.02643538825213909,
- -0.013988398015499115,
- -0.003668101504445076,
- 0.009101352654397488,
- -0.015754710882902145,
- 0.02986479364335537,
- 0.07692168653011322,
- 0.030050931498408318,
- -0.01955956593155861,
- 0.0047355410642921925,
- 0.035242751240730286,
- 0.07095940411090851,
- 0.07498666644096375,
- -0.048271339386701584,
- 0.05769529193639755,
- -0.04420505464076996,
- -0.09197662025690079,
- -0.0403861440718174,
- 0.024603717029094696,
- 0.039357222616672516,
- 0.02476758509874344,
- -0.0031156286131590605,
- -0.03781181946396828,
- -0.04274529218673706,
- -0.07614771276712418,
- 0.024098940193653107,
- -0.06307915598154068,
- 0.02368325926363468,
- -0.025641316547989845,
- 0.08479910343885422,
- -0.006059892475605011,
- -0.08295177668333054,
- -0.0020827206317335367,
- -0.0034077493473887444,
- -0.05188514664769173,
- -0.010933829471468925,
- -0.040275946259498596,
- -0.03369069844484329,
- 0.026353886350989342,
- 0.013513189740478992,
- -0.04593497887253761,
- 3.7818771999402515e-33,
- -0.048623353242874146,
- -0.02473965659737587,
- -0.038159534335136414,
- 0.010642255656421185,
- -0.006256199441850185,
- 0.008354135788977146,
- -0.008163581602275372,
- -0.031201370060443878,
- -0.024556806311011314,
- 0.02344447560608387,
- 0.03817508742213249,
- 0.030831793323159218,
- 0.007632216438651085,
- -0.0247037373483181,
- 0.004505825694650412,
- -0.005695329047739506,
- 0.03250640258193016,
- 0.015690337866544724,
- 0.024878747761249542,
- -0.06733719259500504,
- -0.05594044178724289,
- 0.04323538392782211,
- -0.02038763090968132,
- 0.008281147107481956,
- -0.11815321445465088,
- 0.018740160390734673,
- -0.03186685964465141,
- 0.10698524117469788,
- 0.0491710901260376,
- 0.04095710813999176,
- -0.039112746715545654,
- -0.05671079829335213,
- 0.017843453213572502,
- 0.08770182728767395,
- -0.042556338012218475,
- 0.029615087434649467,
- 0.06968274712562561,
- 0.011146205477416515,
- -0.0768100693821907,
- -0.01984097994863987,
- -0.00923343375325203,
- 0.0038641083519905806,
- 0.04665409401059151,
- 0.11942500621080399,
- 0.027130944654345512,
- 0.020807746797800064,
- -0.057748980820178986,
- 0.06787310540676117,
- -0.007104914169758558,
- 0.039973799139261246,
- -0.0752263143658638,
- -0.0393211804330349,
- -0.03379020467400551,
- -0.06923913210630417,
- -0.053921766579151154,
- -0.01468336209654808,
- 0.001604219782166183,
- -0.005605463404208422,
- 0.12186668813228607,
- 0.03336841240525246,
- -0.009194238111376762,
- 0.0024698383640497923,
- -0.06813225150108337,
- 0.04161807894706726,
- -0.011300760321319103,
- 0.08527330309152603,
- 0.077969029545784,
- 0.016611186787486076,
- 0.13782988488674164,
- -0.00850592739880085,
- 0.07978653162717819,
- 0.012477278709411621,
- 0.03923620656132698,
- -0.09058268368244171,
- 0.010509801097214222,
- -0.03307804465293884,
- -0.08150982111692429,
- 0.014718198217451572,
- 0.001192644820548594,
- -0.0281003937125206,
- 0.06973693519830704,
- -0.032041292637586594,
- 0.0803305134177208,
- 0.03318678215146065,
- -0.04208866506814957,
- 0.04596904292702675,
- -0.02183518186211586,
- 0.03420500457286835,
- 0.03923629969358444,
- 0.01229946780949831,
- 0.01644096150994301,
- 0.058713655918836594,
- 0.10594300925731659,
- 0.06042055785655975,
- -0.01479762326925993,
- -1.1336753757973383e-8,
- 0.002191196894273162,
- 0.08357717841863632,
- 0.09354496747255325,
- -0.0776698961853981,
- -0.03967684134840965,
- 0.004765624646097422,
- 0.007515874691307545,
- -0.03450203314423561,
- -0.0354669988155365,
- 0.05590364336967468,
- 0.01541209314018488,
- 0.0009860555874183774,
- 0.05240622162818909,
- -0.003361060516908765,
- 0.0762261226773262,
- 0.008176306262612343,
- -0.029570085927844048,
- 0.1254279911518097,
- 0.0005056116497144103,
- 0.00468717934563756,
- 0.09967392683029175,
- 0.004848610144108534,
- 0.029488012194633484,
- 0.055150698870420456,
- 0.0554085448384285,
- -0.03460212051868439,
- -0.03683387115597725,
- 0.07475189864635468,
- 0.014611787162721157,
- 0.06467996537685394,
- 0.07434045523405075,
- 0.014962357468903065,
- 0.018991755321621895,
- 0.007557160221040249,
- 0.052343085408210754,
- -0.018388226628303528,
- -0.09764326363801956,
- -0.04831678792834282,
- 0.023133810609579086,
- 0.029620518907904625,
- -0.0037445113994181156,
- -0.014180297963321209,
- -0.03529466688632965,
- 0.01401456631720066,
- -0.04047238081693649,
- 0.005597725044935942,
- 0.022861143574118614,
- -0.04459697753190994,
- -0.021873487159609795,
- -0.02944595366716385,
- -0.001849063322879374,
- 0.06803232431411743,
- 0.07721278816461563,
- 0.09497414529323578,
- 0.03799033910036087,
- 0.012465543113648891,
- 0.04710681736469269,
- 0.01501088123768568,
- -0.04665201157331467,
- 0.055350810289382935,
- 0.00572562450543046,
- 0.09254536032676697,
- -0.028693152591586113,
- 0.02252308279275894
- ]
- },
- {
- "keyword": "has",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.0006833545630797744,
- 0.11332176625728607,
- -0.004539480898529291,
- 0.004458650015294552,
- 0.03839967027306557,
- 0.006763805635273457,
- 0.08758579194545746,
- 0.02063366211950779,
- -0.06480664759874344,
- 0.0022729302290827036,
- 0.0025956418830901384,
- -0.004899258725345135,
- 0.018543941900134087,
- -0.00882894080132246,
- 0.006091488990932703,
- 0.001305685844272375,
- 0.02729460969567299,
- -0.03838018327951431,
- 0.005869490094482899,
- -0.07263921946287155,
- -0.03601033240556717,
- -0.01562148705124855,
- 0.13267730176448822,
- 0.004812320694327354,
- 0.03279554843902588,
- -0.011503678746521473,
- -0.02077587880194187,
- 0.02367769554257393,
- -0.006319023203104734,
- -0.06590767204761505,
- 0.05329514294862747,
- 0.013120529241859913,
- 0.00019014478311873972,
- 0.04209762066602707,
- -0.03292512521147728,
- 0.07577908039093018,
- -0.0271206796169281,
- 0.002493073930963874,
- -0.007728444878011942,
- -0.009418835863471031,
- -0.019472748041152954,
- -0.07572425901889801,
- 0.03301301226019859,
- 0.0009400800336152315,
- 0.09498392045497894,
- 0.007884440943598747,
- 0.07283037900924683,
- -0.004250340163707733,
- 0.11965319514274597,
- -0.024016082286834717,
- -0.06081930175423622,
- -0.0979233831167221,
- 0.014842206612229347,
- -0.017772065475583076,
- -0.007737976964563131,
- 0.03107646107673645,
- -0.011127112433314323,
- 0.03586161136627197,
- 0.00812937505543232,
- -0.00005789106944575906,
- 0.09675577282905579,
- -0.006252787075936794,
- -0.10112752765417099,
- 0.03186758980154991,
- -0.04826035350561142,
- 0.0747988149523735,
- -0.05493408069014549,
- 0.056781988590955734,
- -0.11956793814897537,
- 0.06570859253406525,
- 0.004287094343453646,
- 0.015037658624351025,
- 0.020069114863872528,
- 0.011037438176572323,
- -0.046755868941545486,
- 0.02216951735317707,
- 0.061055898666381836,
- 0.00008792773587629199,
- 0.00573749840259552,
- 0.01079630572348833,
- -0.021598806604743004,
- 0.06626631319522858,
- -0.018395598977804184,
- 0.06586066633462906,
- -0.05592189356684685,
- -0.013186585158109665,
- 0.039875101298093796,
- -0.09954936057329178,
- -0.13482515513896942,
- 0.02973020076751709,
- 0.040996383875608444,
- 0.06373132020235062,
- 0.0792287290096283,
- -0.013754447922110558,
- 0.02350235916674137,
- 0.008889048360288143,
- 0.03967203572392464,
- 0.03708942234516144,
- -0.12699183821678162,
- 0.1651402860879898,
- 0.03201356157660484,
- 0.06239508092403412,
- 0.05673589929938316,
- -0.0696960985660553,
- 0.05625631660223007,
- -0.028882086277008057,
- 0.027751676738262177,
- 0.023767463862895966,
- -0.09172137826681137,
- -0.045747317373752594,
- 0.022656794637441635,
- -0.028810182586312294,
- 0.06463392823934555,
- 0.021995095536112785,
- 0.0021677648182958364,
- -0.03694143891334534,
- 0.02667606994509697,
- 0.06712695211172104,
- -0.0341009758412838,
- -0.04501156881451607,
- 0.07123660296201706,
- 0.011243298649787903,
- 0.0686892494559288,
- 0.032992422580718994,
- 0.034573495388031006,
- -0.19909130036830902,
- -0.04825877025723457,
- -4.710495696570781e-33,
- 0.008663568645715714,
- -0.08008083701133728,
- -0.0473184771835804,
- 0.04620533064007759,
- 0.07300271838903427,
- 0.017049619928002357,
- -0.00037685336428694427,
- 0.0200127512216568,
- 0.0038247716147452593,
- 0.0384865365922451,
- 0.0741724818944931,
- 0.01857738010585308,
- -0.050484251230955124,
- -0.011780130676925182,
- 0.10989915579557419,
- 0.07385385036468506,
- 0.033303484320640564,
- -0.01639813557267189,
- 0.030400538817048073,
- 0.02914826199412346,
- 0.052373554557561874,
- 0.04916239529848099,
- -0.012103714980185032,
- 0.0479496568441391,
- -0.009075085632503033,
- 0.014881663024425507,
- -0.011221323162317276,
- -0.039682913571596146,
- 0.024253878742456436,
- 0.011504827998578548,
- -0.05653470754623413,
- -0.015863345935940742,
- -0.05029415711760521,
- -0.01012786477804184,
- -0.016482936218380928,
- 0.05892624333500862,
- 0.018502771854400635,
- -0.07997215539216995,
- -0.029444970190525055,
- 0.03606262803077698,
- -0.03531162440776825,
- -0.01997792162001133,
- -0.10322201997041702,
- -0.07638376206159592,
- 0.05096195265650749,
- -0.03717797249555588,
- 0.02025585062801838,
- 0.012688769958913326,
- -0.11158601939678192,
- 0.005251224618405104,
- 0.004867813549935818,
- -0.022956715896725655,
- -0.13422459363937378,
- -0.08576885610818863,
- -0.03277695178985596,
- 0.004289309959858656,
- 0.04708699882030487,
- -0.01243280153721571,
- 0.041695479303598404,
- 0.051567673683166504,
- -0.03248303011059761,
- 0.09452594071626663,
- -0.11029399186372757,
- -0.035607874393463135,
- 0.03348003327846527,
- -0.013827222399413586,
- -0.023127123713493347,
- -0.0025266073644161224,
- 0.03460076078772545,
- -0.016655893996357918,
- 0.016773467883467674,
- 0.047461606562137604,
- 0.040919553488492966,
- -0.016590308398008347,
- -0.017153386026620865,
- -0.08693652600049973,
- 0.022792240604758263,
- 0.03771572187542915,
- 0.05568087846040726,
- -0.01289196778088808,
- 0.0269966721534729,
- -0.06397805362939835,
- -0.008422942832112312,
- 0.04795343801379204,
- 0.04366573691368103,
- 0.019488507881760597,
- 0.051364146173000336,
- -0.10800187289714813,
- -0.007257412187755108,
- -0.0754394680261612,
- -0.04611930996179581,
- -0.05283734202384949,
- -0.02375653199851513,
- 0.03743264824151993,
- -0.022206423804163933,
- 2.8471375001488075e-33,
- -0.13568176329135895,
- 0.005514757242053747,
- -0.04037150740623474,
- 0.04689594730734825,
- 0.013520368374884129,
- -0.0030492446385324,
- 0.01668509654700756,
- 0.0847281962633133,
- 0.0334639847278595,
- -0.04827478155493736,
- 0.08103451877832413,
- -0.012454277835786343,
- -0.07988595217466354,
- 0.012112626805901527,
- 0.07915028929710388,
- 0.02422991953790188,
- 0.036819640547037125,
- -0.0203316118568182,
- 0.0577203594148159,
- -0.022440867498517036,
- -0.127092182636261,
- -0.04870627075433731,
- 0.0034001751337200403,
- 0.059836260974407196,
- -0.08755964785814285,
- 0.043417274951934814,
- 0.00483299233019352,
- -0.03252042084932327,
- -0.060319822281599045,
- -0.08613316714763641,
- 0.10379745811223984,
- 0.01266161072999239,
- -0.07698632776737213,
- 0.025178557261824608,
- 0.025797203183174133,
- 0.04903055354952812,
- 0.015359326265752316,
- -0.0049202414229512215,
- -0.008753539994359016,
- -0.023143675178289413,
- -0.016527028754353523,
- -0.0008851459715515375,
- -0.018609507009387016,
- 0.057490427047014236,
- -0.02193734049797058,
- 0.034644145518541336,
- 0.02654082514345646,
- -0.05991356819868088,
- 0.10485631972551346,
- 0.06841802597045898,
- 0.0013215808430686593,
- 0.001990977441892028,
- -0.11788475513458252,
- -0.009470802731812,
- 0.0008743204525671899,
- -0.07466015964746475,
- -0.06782777607440948,
- 0.010204095393419266,
- 0.012141457758843899,
- -0.0003124913782812655,
- -0.0031567856203764677,
- -0.010733776725828648,
- -0.05203871801495552,
- -0.043204933404922485,
- 0.0618920773267746,
- 0.030034935101866722,
- -0.010512886568903923,
- -0.05801880359649658,
- -0.04419483616948128,
- 0.015231345780193806,
- -0.034726910293102264,
- -0.0906936302781105,
- -0.12534797191619873,
- 0.06002669781446457,
- -0.0028922283090651035,
- 0.015499195083975792,
- -0.05202486738562584,
- -0.05977464094758034,
- -0.07459249347448349,
- 0.042557522654533386,
- -0.09252555668354034,
- -0.07363651692867279,
- 0.03827710822224617,
- -0.004031070973724127,
- 0.01535564661026001,
- 0.014033112674951553,
- -0.008055973798036575,
- 0.020915310829877853,
- 0.037296224385499954,
- 0.050713762640953064,
- -0.03395310416817665,
- 0.023972537368535995,
- 0.05327192321419716,
- -0.026758980005979538,
- -0.03206503391265869,
- -1.2874535215701144e-8,
- -0.014185981824994087,
- -0.028886035084724426,
- -0.0260314904153347,
- 0.024831004440784454,
- 0.11183266341686249,
- 0.03434211388230324,
- 0.07176614552736282,
- -0.0022097500041127205,
- -0.007906138896942139,
- -0.0024884387385100126,
- -0.0056976741179823875,
- 0.09862362593412399,
- -0.051146794110536575,
- 0.020164621993899345,
- 0.057215359061956406,
- -0.028401117771863937,
- 0.04543367773294449,
- 0.0443868525326252,
- -0.04153132811188698,
- 0.06745807081460953,
- -0.05484238266944885,
- 0.015443755313754082,
- 0.06722123920917511,
- -0.06304899603128433,
- 0.013332650996744633,
- 0.0022200800012797117,
- -0.0568314865231514,
- -0.002823375165462494,
- 0.07453072816133499,
- 0.03812498226761818,
- 0.012884559109807014,
- 0.043953798711299896,
- -0.029376352205872536,
- 0.010890851728618145,
- -0.0035429305862635374,
- -0.038181789219379425,
- 0.010037962347269058,
- 0.02124209888279438,
- 0.01309681311249733,
- 0.01361199002712965,
- 0.00180459872353822,
- 0.05704884231090546,
- -0.018590956926345825,
- 0.012269739992916584,
- -0.04391336813569069,
- 0.007569578476250172,
- -0.03440653905272484,
- 0.057231925427913666,
- -0.03804990276694298,
- -0.024526633322238922,
- 0.003620071802288294,
- 0.0509781539440155,
- 0.037644993513822556,
- 0.05282442644238472,
- 0.012477749958634377,
- -0.047736018896102905,
- 0.013910869136452675,
- -0.016087306663393974,
- 0.05787332355976105,
- 0.027805021032691002,
- 0.1413416862487793,
- -0.04925103858113289,
- 0.015230507589876652,
- 0.0422806441783905
- ]
- },
- {
- "keyword": "ownership",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.040031641721725464,
- 0.05155098810791969,
- 0.023694118484854698,
- -0.01813424937427044,
- -0.0232283603399992,
- -0.05161231756210327,
- 0.1410498470067978,
- -0.04301203414797783,
- 0.02357061766088009,
- -0.017741793766617775,
- 0.005104363430291414,
- -0.01424466259777546,
- 0.003932827617973089,
- -0.03147540241479874,
- -0.051348768174648285,
- 0.008115827105939388,
- -0.03173358738422394,
- 0.0006413490045815706,
- -0.08284956216812134,
- 0.0011281707556918263,
- -0.09387408941984177,
- -0.057932574301958084,
- 0.014975175261497498,
- 0.0170845165848732,
- 0.07611261308193207,
- 0.06904200464487076,
- -0.013690025545656681,
- 0.059210848063230515,
- 0.09711416810750961,
- -0.1029176339507103,
- 0.016959039494395256,
- -0.08654199540615082,
- 0.09418796747922897,
- 0.011963917873799801,
- -0.04102417826652527,
- 0.03189177066087723,
- -0.0007826752844266593,
- -0.07602355629205704,
- 0.01915580779314041,
- 0.009215562604367733,
- 0.029899872839450836,
- -0.053628817200660706,
- 0.007636822760105133,
- -0.03826107084751129,
- 0.007514744531363249,
- 0.11505892872810364,
- 0.09564060717821121,
- 0.05912892892956734,
- 0.049441147595644,
- 0.06593342870473862,
- 0.012648584321141243,
- 0.03257773444056511,
- -0.016753455623984337,
- 0.0008058524690568447,
- 0.04329397529363632,
- 0.03148927912116051,
- -0.000564129906706512,
- 0.011429880745708942,
- 0.005420515779405832,
- -0.03911145031452179,
- 0.05966193601489067,
- 0.010371708311140537,
- -0.05643968656659126,
- 0.01135402824729681,
- 0.08556815981864929,
- -0.08436623960733414,
- 0.013755079358816147,
- 0.030507158488035202,
- -0.09108351916074753,
- -0.038107745349407196,
- 0.12195000797510147,
- -0.01988232135772705,
- 0.015438384376466274,
- 0.022500284016132355,
- -0.008274054154753685,
- -0.07052750140428543,
- 0.04151994735002518,
- 0.0002612635144032538,
- 0.0133163807913661,
- -0.022536303848028183,
- 0.019191209226846695,
- 0.06112585589289665,
- -0.014652321115136147,
- 0.015783263370394707,
- -0.08064631372690201,
- 0.053608063608407974,
- 0.048847928643226624,
- 0.0819850042462349,
- 0.04822148010134697,
- 0.0437910370528698,
- -0.01854846067726612,
- -0.0361262671649456,
- 0.10940372198820114,
- -0.04268406704068184,
- -0.06459241360425949,
- 0.046617500483989716,
- -0.024548392742872238,
- 0.025488536804914474,
- -0.0789276510477066,
- 0.23736189305782318,
- -0.01781749539077282,
- 0.031111545860767365,
- -0.07251414656639099,
- 0.010961114428937435,
- -0.00011407057900214568,
- 0.022381937131285667,
- -0.02161247469484806,
- 0.06779054552316666,
- -0.017950236797332764,
- -0.00611904775723815,
- -0.08312142640352249,
- -0.007313699461519718,
- -0.10816992074251175,
- 0.07161687314510345,
- 0.04128004238009453,
- 0.010963364504277706,
- -0.08772273361682892,
- 0.004292025696486235,
- 0.08422856777906418,
- -0.11736517399549484,
- 0.028830040246248245,
- 0.01923583447933197,
- -0.032766733318567276,
- 0.010129737667739391,
- -0.04170650988817215,
- -0.01903148926794529,
- -0.03631126508116722,
- -5.00943750163832e-33,
- -0.00453840009868145,
- 0.06002895161509514,
- -0.021869830787181854,
- 0.05931190401315689,
- 0.005987845826894045,
- 0.01462207455188036,
- 0.007014463189989328,
- 0.03808823600411415,
- -0.1157209649682045,
- 0.07847487926483154,
- 0.04489060118794441,
- -0.0599488727748394,
- -0.04704632982611656,
- -0.06887800991535187,
- 0.08632440865039825,
- 0.02303585782647133,
- -0.034396942704916,
- -0.013663985766470432,
- 0.03428998216986656,
- 0.003449282143265009,
- -0.021938983350992203,
- 0.1522800177335739,
- -0.021624229848384857,
- 0.09952141344547272,
- -0.013400474563241005,
- -0.10966186225414276,
- -0.056299660354852676,
- -0.020081253722310066,
- 0.012073900550603867,
- 0.02577914297580719,
- 0.046576812863349915,
- 0.012728361412882805,
- -0.03686303645372391,
- -0.027014415711164474,
- -0.003645907389000058,
- 0.010052165947854519,
- -0.06406950205564499,
- -0.061978504061698914,
- -0.0143241286277771,
- 0.019266610965132713,
- -0.02400963008403778,
- -0.06450571864843369,
- -0.07579882442951202,
- 0.005913865752518177,
- -0.12475962191820145,
- -0.03355696424841881,
- -0.01745184324681759,
- 0.006014230195432901,
- -0.01876523718237877,
- 0.10619679093360901,
- -0.015249580144882202,
- 0.00018113474652636796,
- -0.06651069223880768,
- -0.03601936995983124,
- 0.009207125753164291,
- -0.058207131922245026,
- -0.027665194123983383,
- -0.029070604592561722,
- -0.058514680713415146,
- -0.09499646723270416,
- 0.010219923220574856,
- 0.06313297152519226,
- -0.017199231311678886,
- 0.121360182762146,
- -0.0023499324452131987,
- 0.004928376525640488,
- 0.0903530865907669,
- -0.026895692571997643,
- 0.03834034129977226,
- -0.04479413852095604,
- -0.04273989424109459,
- 0.0004915936151519418,
- -0.008468522690236568,
- 0.01676209457218647,
- -0.01523107010871172,
- -0.002876551356166601,
- -0.02069106511771679,
- 0.04908314347267151,
- 0.010834535583853722,
- 0.038472697138786316,
- -0.04424358159303665,
- -0.008110424503684044,
- 0.06374762207269669,
- 0.05713559314608574,
- -0.0242850910872221,
- 0.040475159883499146,
- -0.006573120132088661,
- -0.0417889766395092,
- -0.0022422599140554667,
- 0.08188899606466293,
- -0.07742573320865631,
- -0.0062325494363904,
- 0.01615259051322937,
- 0.047738198190927505,
- -0.05887973681092262,
- 3.382925804872691e-33,
- -0.03601747751235962,
- -0.12327882647514343,
- -0.002617114456370473,
- 0.011313817463815212,
- -0.022375524044036865,
- -0.06332287192344666,
- 0.0018030579667538404,
- -0.023699844256043434,
- -0.030164659023284912,
- -0.00024325645063072443,
- -0.09114255011081696,
- -0.027704590931534767,
- 0.04896058887243271,
- 0.09015578031539917,
- -0.0053147985599935055,
- -0.026505405083298683,
- 0.06048151105642319,
- -0.07468506693840027,
- -0.005157912150025368,
- -0.04442884773015976,
- -0.08561282604932785,
- 0.04907452315092087,
- 0.04705595225095749,
- 0.08097913861274719,
- -0.02158483676612377,
- 0.026966622099280357,
- -0.018864747136831284,
- 0.04328101500868797,
- 0.0031367724295705557,
- -0.015497577376663685,
- -0.0010165841085836291,
- -0.05986678600311279,
- -0.024491332471370697,
- 0.019640371203422546,
- -0.03299110382795334,
- 0.015463444404304028,
- -0.044126711785793304,
- 0.047852661460638046,
- -0.035766590386629105,
- 0.011225374415516853,
- 0.0016678321408107877,
- 0.047544557601213455,
- 0.10679178684949875,
- 0.09580046683549881,
- -0.016602523624897003,
- 0.033103663474321365,
- 0.0010377959115430713,
- -0.08078969269990921,
- 0.056788332760334015,
- 0.05747140944004059,
- -0.002075748285278678,
- 0.035890400409698486,
- 0.08194005489349365,
- 0.0037818276323378086,
- -0.015009123831987381,
- 0.04459558054804802,
- 0.07717545330524445,
- -0.00341019150801003,
- 0.05707111954689026,
- -0.003773770062252879,
- 0.06041111797094345,
- 0.09828589856624603,
- -0.03611362725496292,
- 0.11511562019586563,
- -0.0640723779797554,
- 0.009143875911831856,
- -0.018285879865288734,
- -0.048323970288038254,
- -0.0037751689087599516,
- -0.04305265098810196,
- 0.04958217218518257,
- -0.08644022792577744,
- -0.0837407261133194,
- -0.0276274885982275,
- -0.035211704671382904,
- 0.046447161585092545,
- -0.05576416850090027,
- 0.0018861852586269379,
- -0.012355800718069077,
- -0.0715746358036995,
- -0.021325739100575447,
- -0.020655762404203415,
- 0.016970684751868248,
- 0.07917638123035431,
- 0.001256801770068705,
- 0.003590063191950321,
- 0.012950918637216091,
- -0.06500212848186493,
- 0.031747013330459595,
- -0.03225201740860939,
- 0.04382620006799698,
- 0.029663128778338432,
- -0.06137632206082344,
- -0.017597513273358345,
- -0.018248576670885086,
- -1.2002717930670315e-8,
- -0.047070372849702835,
- 0.014667470008134842,
- 0.04586891084909439,
- -0.022791249677538872,
- 0.05964061990380287,
- -0.02732452191412449,
- 0.05926700681447983,
- -0.0030936417169868946,
- 0.02767527475953102,
- 0.10963911563158035,
- -0.01237983163446188,
- 0.003969392739236355,
- -0.042967502027750015,
- -0.008208740502595901,
- -0.021539973095059395,
- -0.028248082846403122,
- -0.03315069153904915,
- 0.05041927844285965,
- -0.04568948224186897,
- 0.018395602703094482,
- 0.01988154649734497,
- 0.016252171248197556,
- 0.0834055170416832,
- -0.0519406720995903,
- -0.06635291874408722,
- 0.010674809105694294,
- 0.010097282007336617,
- -0.00325782154686749,
- -0.019652139395475388,
- 0.05983205884695053,
- -0.003035938600078225,
- 0.09576081484556198,
- -0.011782449670135975,
- 0.0019873054698109627,
- -0.012620863504707813,
- -0.062478207051754,
- -0.010653475299477577,
- 0.04544201120734215,
- 0.004095435608178377,
- -0.058276209980249405,
- -0.06597518175840378,
- 0.09814368933439255,
- -0.008264652453362942,
- 0.024314604699611664,
- -0.022143788635730743,
- 0.01873323880136013,
- -0.024390755221247673,
- -0.015775956213474274,
- -0.012906244024634361,
- -0.06928671151399612,
- 0.028774667531251907,
- -0.018349256366491318,
- -0.027693018317222595,
- 0.06703375279903412,
- -0.06692513078451157,
- -0.01584245078265667,
- 0.029698116704821587,
- 0.05335208773612976,
- -0.05854237824678421,
- -0.04998834803700447,
- 0.04855886846780777,
- 0.005249720998108387,
- 0.03201292082667351,
- 0.005625653546303511
- ]
- },
- {
- "keyword": "possession",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.017639530822634697,
- 0.08755608648061752,
- 0.000017150545318145305,
- -0.024610742926597595,
- 0.009131154976785183,
- -0.017380662262439728,
- 0.20196890830993652,
- 0.008439768105745316,
- 0.04204009845852852,
- -0.03480960428714752,
- 0.023909011855721474,
- -0.007404007483273745,
- 0.065074123442173,
- -0.01629517786204815,
- -0.0013961086515337229,
- -0.0049130879342556,
- -0.030057044699788094,
- -0.018786858767271042,
- -0.042667895555496216,
- 0.05647604912519455,
- -0.03920326009392738,
- 0.041157227009534836,
- -0.0023192591033875942,
- -0.004449182655662298,
- 0.004756045527756214,
- 0.09012262523174286,
- -0.022596411406993866,
- -0.02622608095407486,
- 0.05879198759794235,
- -0.11822865158319473,
- 0.007722434122115374,
- -0.03055773861706257,
- -0.021274512633681297,
- -0.011451894417405128,
- -0.06823065131902695,
- 0.012948786839842796,
- 0.02182435244321823,
- -0.010763588361442089,
- 0.030454836785793304,
- -0.019113369286060333,
- -0.019866151735186577,
- -0.05876542627811432,
- 0.05343019589781761,
- 0.014162523671984673,
- 0.0012031252263113856,
- 0.06798044592142105,
- 0.0677366629242897,
- 0.05854514613747597,
- 0.07396062463521957,
- -0.0037527643144130707,
- -0.021349085494875908,
- 0.04978109896183014,
- -0.03414533659815788,
- 0.10163023322820663,
- 0.05336810648441315,
- 0.06862073391675949,
- 0.021323950961232185,
- 0.017737336456775665,
- -0.027968067675828934,
- -0.010725309140980244,
- 0.09096160531044006,
- 0.03178384155035019,
- -0.0819176733493805,
- -0.056848492473363876,
- 0.04148315638303757,
- -0.10649033635854721,
- 0.007454735692590475,
- 0.0390234999358654,
- -0.0317440927028656,
- 0.08495531231164932,
- 0.11388147622346878,
- 0.04022805392742157,
- 0.0171876922249794,
- 0.06552327424287796,
- 0.059067100286483765,
- -0.013802392408251762,
- -0.01109598483890295,
- -0.1059955507516861,
- 0.0714043453335762,
- -0.050072185695171356,
- -0.03459662199020386,
- -0.0191941037774086,
- -0.006426673382520676,
- 0.0117959538474679,
- -0.06997101753950119,
- -0.00023694202536717057,
- -0.011530534364283085,
- 0.05630949139595032,
- -0.00012935382255818695,
- 0.02834031730890274,
- -0.021159788593649864,
- -0.0849996954202652,
- 0.06024201586842537,
- -0.04063410684466362,
- -0.06098739802837372,
- -0.0029294886626303196,
- -0.015322722494602203,
- -0.04883735626935959,
- -0.0468452163040638,
- 0.2299853414297104,
- -0.005139122251421213,
- 0.10105721652507782,
- 0.04369915649294853,
- 0.001356259104795754,
- 0.007728046737611294,
- 0.02970317006111145,
- -0.023368535563349724,
- 0.06384100019931793,
- -0.015666067600250244,
- -0.03243222087621689,
- -0.029739070683717728,
- -0.033170003443956375,
- -0.09935323894023895,
- 0.04001938924193382,
- -0.004278504755347967,
- 0.024957716464996338,
- 0.01759973168373108,
- -0.0029399958439171314,
- 0.013580303639173508,
- -0.1370508074760437,
- 0.05094856023788452,
- -0.0018122082110494375,
- -0.0001171482726931572,
- 0.035072628408670425,
- -0.09821518510580063,
- -0.05203253775835037,
- -0.009118236601352692,
- -5.740912738666489e-33,
- 0.05243062973022461,
- -0.023864634335041046,
- -0.03434755653142929,
- 0.058288246393203735,
- -0.00862854439765215,
- -0.02585894986987114,
- -0.016831085085868835,
- 0.018064435571432114,
- -0.048281557857990265,
- 0.01637904718518257,
- 0.0775824785232544,
- -0.011557167395949364,
- 0.0011914650676771998,
- -0.10492398589849472,
- 0.12436942756175995,
- 0.0319548100233078,
- -0.017001789063215256,
- 0.0859745442867279,
- 0.01048931572586298,
- -0.002449598629027605,
- -0.01155773177742958,
- 0.08412490785121918,
- -0.011244119144976139,
- 0.0550764799118042,
- -0.010246923193335533,
- -0.035956695675849915,
- -0.052706439048051834,
- -0.03127064183354378,
- -0.024705881252884865,
- -0.012712446972727776,
- 0.0050432407297194,
- 0.06568349897861481,
- -0.04931601881980896,
- -0.0014296750305220485,
- -0.007800002582371235,
- 0.003066673409193754,
- -0.017776712775230408,
- -0.03660213202238083,
- 0.06013891473412514,
- -0.07435398548841476,
- -0.03598347306251526,
- -0.059772975742816925,
- -0.012203019112348557,
- -0.010958772152662277,
- -0.08174552023410797,
- -0.03152237832546234,
- -0.0022373879328370094,
- 0.005605102051049471,
- -0.1314801722764969,
- 0.09135083109140396,
- 0.03482939675450325,
- -0.036698754876852036,
- -0.056789759546518326,
- -0.02140147052705288,
- -0.054736655205488205,
- -0.00396827282384038,
- 0.016396766528487206,
- 0.008716671727597713,
- -0.0010113295866176486,
- -0.009954622015357018,
- 0.07184511423110962,
- 0.08272698521614075,
- -0.010610450990498066,
- 0.059512343257665634,
- -0.058575816452503204,
- -0.09436526149511337,
- 0.03519512712955475,
- -0.04568148031830788,
- 0.046384185552597046,
- -0.012893758714199066,
- -0.011284702457487583,
- 0.045193180441856384,
- -0.011049233376979828,
- 0.030621059238910675,
- 0.034231655299663544,
- 0.02607339806854725,
- 0.031651612371206284,
- 0.015932420268654823,
- -0.01886669732630253,
- -0.03003343567252159,
- -0.13888490200042725,
- -0.04283730313181877,
- 0.04162698984146118,
- 0.061997659504413605,
- -0.06223999708890915,
- 0.02766259014606476,
- 0.00019192759646102786,
- -0.06487993150949478,
- -0.10567907243967056,
- 0.0011974771041423082,
- -0.00423488300293684,
- -0.044419143348932266,
- -0.0223741065710783,
- 0.0014087185263633728,
- -0.033331967890262604,
- 4.420168061042861e-33,
- 0.02381284348666668,
- -0.08095443248748779,
- -0.018244395032525063,
- 0.04790815711021423,
- 0.024076078087091446,
- -0.09707379341125488,
- 0.0546659380197525,
- 0.01665976643562317,
- -0.032297298312187195,
- -0.044857222586870193,
- -0.08176080882549286,
- -0.00687565328553319,
- 0.00378445559181273,
- 0.032272521406412125,
- 0.04100476950407028,
- 0.021202603355050087,
- 0.0499940887093544,
- -0.09222986549139023,
- -0.0399375855922699,
- -0.0011793854646384716,
- -0.054108086973428726,
- 0.006273758597671986,
- 0.08807676285505295,
- 0.018971078097820282,
- -0.06090952083468437,
- 0.03713441640138626,
- 0.007372074294835329,
- -0.029638847336173058,
- -0.01318778470158577,
- -0.03559519350528717,
- 0.02971620485186577,
- -0.05349702015519142,
- 0.08965529501438141,
- 0.006608143448829651,
- -0.055634040385484695,
- 0.02564462274312973,
- -0.0059302314184606075,
- 0.012041711248457432,
- -0.01806250587105751,
- 0.04037747532129288,
- 0.042272016406059265,
- 0.04806659370660782,
- 0.005766780581325293,
- 0.16692855954170227,
- 0.03334462642669678,
- 0.03560556098818779,
- 0.012273975647985935,
- 0.054038938134908676,
- 0.10462205111980438,
- 0.06525733321905136,
- 0.042361531406641006,
- 0.06087208166718483,
- -0.06920208036899567,
- 0.002354976488277316,
- 0.001178528880700469,
- 0.0030598528683185577,
- -0.011651162058115005,
- -0.029976343736052513,
- 0.009261556901037693,
- -0.01628580316901207,
- 0.006114614196121693,
- 0.08966794610023499,
- -0.08862701803445816,
- 0.057852186262607574,
- -0.05810382962226868,
- 0.02990572340786457,
- -0.06985069066286087,
- 0.013757233507931232,
- -0.019737733528017998,
- -0.03604505956172943,
- -0.05415922775864601,
- -0.019408034160733223,
- -0.019110720604658127,
- -0.006933491211384535,
- -0.02715337462723255,
- 0.04630765691399574,
- 0.0010608661687001586,
- 0.013503543101251125,
- 0.01662980392575264,
- -0.037421815097332,
- -0.10918573290109634,
- -0.05001797899603844,
- -0.05556163936853409,
- 0.09809720516204834,
- 0.044879693537950516,
- 0.020715517923235893,
- 0.06616660207509995,
- -0.049430735409259796,
- 0.01530128251761198,
- -0.07940465956926346,
- 0.020790858194231987,
- 0.08001663535833359,
- -0.08708198368549347,
- -0.02006077580153942,
- -0.04442127048969269,
- -1.173655128638984e-8,
- -0.06560493260622025,
- 0.07339905947446823,
- 0.03617207333445549,
- 0.006133070681244135,
- 0.04944727569818497,
- 0.01627001352608204,
- 0.12556470930576324,
- -0.0069551835767924786,
- 0.05215967074036598,
- 0.06686172634363174,
- -0.03970102593302727,
- -0.02055375464260578,
- 0.029024209827184677,
- -0.034938883036375046,
- 0.01634969748556614,
- 0.005761690903455019,
- -0.010423596017062664,
- -0.0371793657541275,
- -0.11228129267692566,
- 0.050276707857847214,
- -0.0016588722355663776,
- -0.03135601058602333,
- 0.009732267819344997,
- 0.02177686057984829,
- -0.013692720793187618,
- -0.047697145491838455,
- -0.033987294882535934,
- -0.05520768091082573,
- 0.013479397632181644,
- -0.006195627152919769,
- 0.07697992771863937,
- 0.09415890276432037,
- 0.029474923387169838,
- 0.0249525997787714,
- 0.030801575630903244,
- 0.004313500132411718,
- -0.03763017803430557,
- -0.027917636558413506,
- 0.026875700801610947,
- -0.03996620327234268,
- -0.026729993522167206,
- -0.016689391806721687,
- -0.023479780182242393,
- 0.04948343336582184,
- -0.01888979971408844,
- -0.07882286608219147,
- 0.025030985474586487,
- -0.032432157546281815,
- -0.050766605883836746,
- -0.03520874306559563,
- -0.009448257274925709,
- -0.0071066501550376415,
- -0.02400217391550541,
- 0.08312863111495972,
- 0.046287063509225845,
- 0.030275678262114525,
- 0.011796671897172928,
- 0.009107234887778759,
- -0.07736632227897644,
- 0.010908570140600204,
- 0.1029316782951355,
- 0.0448189340531826,
- 0.030596740543842316,
- 0.04277852550148964
- ]
- },
- {
- "keyword": "control",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.04090927913784981,
- 0.0234347153455019,
- -0.02847140282392502,
- 0.10570698976516724,
- -0.057090166956186295,
- 0.07983389496803284,
- 0.10715317726135254,
- 0.01121244952082634,
- 0.041928160935640335,
- 0.07807885855436325,
- 0.08191417157649994,
- -0.03475246950984001,
- 0.0076957824639976025,
- -0.07309255003929138,
- -0.015530247241258621,
- 0.040211595594882965,
- 0.04949072375893593,
- -0.03606835752725601,
- -0.10093554109334946,
- 0.014206163585186005,
- -0.06665345281362534,
- 0.03260214626789093,
- 0.05713752284646034,
- 0.01499313022941351,
- -0.14713259041309357,
- 0.09613600373268127,
- -0.11246607452630997,
- 0.009512967430055141,
- 0.039805490523576736,
- -0.16601188480854034,
- -0.0035599912516772747,
- -0.051371052861213684,
- 0.04827291890978813,
- -0.05136404559016228,
- -0.10795231908559799,
- 0.03168153762817383,
- 0.021256117150187492,
- -0.05302751436829567,
- 0.006890554446727037,
- -0.03385123983025551,
- -0.011229455471038818,
- -0.03089176118373871,
- 0.00020383132505230606,
- -0.037087585777044296,
- -0.042681582272052765,
- 0.06390473246574402,
- 0.010309207253158092,
- 0.043775759637355804,
- 0.029556991532444954,
- -0.020526742562651634,
- -0.00827790517359972,
- -0.04314976930618286,
- 0.022532036527991295,
- -0.028204722329974174,
- 0.08927087485790253,
- -0.00707892794162035,
- 0.07413513213396072,
- 0.03755247965455055,
- 0.012574865482747555,
- -0.02420908771455288,
- -0.015004252083599567,
- 0.04960909113287926,
- -0.12223540991544724,
- 0.03412812575697899,
- 0.018834292888641357,
- -0.0010352559620514512,
- -0.043274227529764175,
- 0.022552186623215675,
- -0.02112451195716858,
- -0.01920146681368351,
- 0.019650083035230637,
- -0.026230154559016228,
- 0.03202067315578461,
- 0.0026896472554653883,
- 0.08713500201702118,
- -0.08672197163105011,
- -0.04470185190439224,
- -0.06407441198825836,
- 0.05117679387331009,
- -0.023787852376699448,
- 0.12658962607383728,
- 0.024677669629454613,
- -0.07334467023611069,
- 0.04229585453867912,
- -0.0004217772220727056,
- -0.06151861324906349,
- 0.033267002552747726,
- 0.023948652669787407,
- 0.08636629581451416,
- 0.0637172982096672,
- -0.02155138924717903,
- 0.0010793260298669338,
- 0.08093050122261047,
- -0.049658916890621185,
- -0.04269934073090553,
- -0.015168567188084126,
- -0.007546770852059126,
- -0.03342742472887039,
- -0.08521963655948639,
- 0.21295076608657837,
- 0.06211099028587341,
- 0.015986673533916473,
- -0.03434016928076744,
- 0.023461682721972466,
- -0.004377354402095079,
- -0.04230546951293945,
- 0.002843413269147277,
- 0.031016848981380463,
- 0.011387351900339127,
- -0.02862088941037655,
- -0.013215581886470318,
- -0.01859740912914276,
- -0.09037275612354279,
- 0.027286959812045097,
- 0.06284116953611374,
- -0.04107305034995079,
- 0.002370744477957487,
- -0.03361222520470619,
- 0.002419964876025915,
- -0.028179418295621872,
- -0.009388748556375504,
- -0.09203071147203445,
- 0.008751093409955502,
- -0.0066564856097102165,
- -0.024647831916809082,
- -0.03944402188062668,
- -0.022316453978419304,
- -4.935377316774685e-33,
- 0.027916399762034416,
- -0.08161468803882599,
- 0.006080199033021927,
- 0.0440162792801857,
- 0.00598191749304533,
- 0.08396593481302261,
- 0.009076849557459354,
- 0.02555360272526741,
- -0.0573890283703804,
- 0.06229425594210625,
- 0.04212618246674538,
- -0.08030914515256882,
- -0.08582024276256561,
- 0.004432186484336853,
- 0.09138143062591553,
- -0.08134173601865768,
- -0.026798514649271965,
- 0.018619786947965622,
- 0.008089981973171234,
- -0.01393668819218874,
- -0.057419490069150925,
- 0.09726376086473465,
- -0.016252698376774788,
- -0.024677742272615433,
- -0.010932550765573978,
- -0.04019400104880333,
- -0.055542781949043274,
- 0.04806869104504585,
- 0.03990599885582924,
- 0.002841278677806258,
- 0.04589932784438133,
- 0.025614436715841293,
- -0.06314372271299362,
- 0.029473785310983658,
- -0.036695756018161774,
- 0.02450437657535076,
- -0.013227416202425957,
- -0.0783943235874176,
- 0.05729236081242561,
- -0.007065209094434977,
- -0.05955244228243828,
- -0.016718700528144836,
- -0.06551025807857513,
- 0.02765517309308052,
- -0.051413729786872864,
- -0.009009252302348614,
- 0.048688292503356934,
- -0.02116306684911251,
- -0.1537143886089325,
- 0.03204983472824097,
- -0.010904627852141857,
- 0.006723509170114994,
- -0.005631278268992901,
- -0.06070367246866226,
- 0.040865685790777206,
- -0.03239632770419121,
- -0.02728104777634144,
- 0.0010360375745221972,
- -0.029180385172367096,
- 0.04383043944835663,
- 0.09073103964328766,
- 0.003729987656697631,
- -0.03580201789736748,
- 0.0638917088508606,
- 0.021326102316379547,
- 0.02118472196161747,
- 0.04736057296395302,
- -0.06659593433141708,
- 0.040950048714876175,
- -0.0113540543243289,
- -0.07987713068723679,
- -0.04364566132426262,
- -0.0025686488952487707,
- 0.046306293457746506,
- 0.019254377111792564,
- -0.019965946674346924,
- -0.03655659407377243,
- -0.006183981895446777,
- -0.11553134769201279,
- 0.0202140174806118,
- -0.06618980318307877,
- 0.02199399657547474,
- 0.01730155386030674,
- 0.0877191349864006,
- 0.00690367491915822,
- -0.07182621955871582,
- 0.01389607135206461,
- 0.02198086306452751,
- -0.036684468388557434,
- 0.0355069674551487,
- -0.018747160211205482,
- -0.025303013622760773,
- 0.04467995837330818,
- 0.08745882660150528,
- -0.03962942957878113,
- 4.318430861689115e-33,
- -0.011003166437149048,
- -0.02580108679831028,
- -0.014951548539102077,
- 0.03947534039616585,
- 0.019845692440867424,
- -0.0009031667141243815,
- -0.028060445562005043,
- -0.08760219812393188,
- -0.06986591964960098,
- 0.03695237264037132,
- -0.00441980455070734,
- -0.009772337973117828,
- 0.026245810091495514,
- -0.01040884293615818,
- 0.01654026284813881,
- -0.04505644366145134,
- 0.0825914815068245,
- -0.03991660475730896,
- -0.035070233047008514,
- -0.04455835372209549,
- -0.08578003197908401,
- 0.024884702637791634,
- 0.028904717415571213,
- 0.025166386738419533,
- -0.12032977491617203,
- 0.016440194100141525,
- -0.00904997531324625,
- 0.12437275052070618,
- 0.017469270154833794,
- 0.017812905833125114,
- -0.05385862663388252,
- -0.04295705258846283,
- 0.009622483514249325,
- 0.06749822944402695,
- -0.06184564530849457,
- 0.05065503716468811,
- 0.07676368951797485,
- 0.03793485835194588,
- -0.08181697130203247,
- 0.009347342886030674,
- 0.0017643095925450325,
- -0.0023433601018041372,
- -0.01988004706799984,
- 0.12346748262643814,
- 0.04418286308646202,
- 0.011941787786781788,
- -0.021320637315511703,
- 0.04529639706015587,
- 0.0016632949700579047,
- 0.07895401865243912,
- -0.08203933387994766,
- -0.014011780731379986,
- -0.019106894731521606,
- -0.024802973493933678,
- -0.030127817764878273,
- -0.028439771384000778,
- 0.06940502673387527,
- 0.00040890168747864664,
- 0.0594220831990242,
- -0.0010663061402738094,
- -0.04271271824836731,
- 0.02753489837050438,
- -0.03651471063494682,
- 0.06428995728492737,
- 0.03057868406176567,
- 0.07724207639694214,
- 0.06316221505403519,
- 0.05243242159485817,
- 0.15680508315563202,
- -0.0020899823866784573,
- 0.05679239332675934,
- -0.0004313109675422311,
- 0.01732410304248333,
- -0.034450605511665344,
- -0.007714136503636837,
- -0.03778669610619545,
- -0.0721920058131218,
- -0.01390458270907402,
- 0.0008846392156556249,
- -0.030852897092700005,
- 0.0079019945114851,
- -0.022050656378269196,
- 0.06869558990001678,
- 0.0015165416989475489,
- -0.049301840364933014,
- 0.034873202443122864,
- -0.03419681265950203,
- 0.019742494449019432,
- 0.028296904638409615,
- -0.0012666709953919053,
- 0.012234006077051163,
- 0.004920166451483965,
- 0.03669149801135063,
- -0.002389968605712056,
- -0.010781039483845234,
- -1.2152579387247897e-8,
- 0.002734965877607465,
- 0.01489404495805502,
- 0.10457184165716171,
- -0.05260733515024185,
- 0.02152462862432003,
- 0.011537215672433376,
- 0.014326144941151142,
- -0.061402034014463425,
- -0.024350782856345177,
- 0.06699768453836441,
- 0.016549887135624886,
- 0.009131577797234058,
- 0.04443661868572235,
- 0.0026034126058220863,
- 0.06156822293996811,
- -0.04318317398428917,
- 0.011987526901066303,
- 0.08675273507833481,
- -0.0050128125585615635,
- 0.010187871754169464,
- 0.07388880848884583,
- -0.00902731716632843,
- 0.002611379837617278,
- 0.054620251059532166,
- 0.03095201961696148,
- -0.05551454797387123,
- -0.02149142511188984,
- 0.10572978854179382,
- -0.016390956938266754,
- 0.07458826899528503,
- 0.06852705031633377,
- 0.02651178278028965,
- -0.026272771880030632,
- -0.0021171749103814363,
- 0.027597947046160698,
- -0.017628556117415428,
- -0.0463964119553566,
- -0.044961024075746536,
- 0.04576224833726883,
- 0.0291281770914793,
- -0.032197821885347366,
- 0.0526755265891552,
- 0.011708253063261509,
- 0.011855041608214378,
- -0.052743326872587204,
- 0.008731321431696415,
- 0.003757286351174116,
- -0.02970467321574688,
- 0.039247721433639526,
- -0.024599116295576096,
- -0.00008053477358771488,
- 0.04960394278168678,
- 0.07913798838853836,
- 0.09815043956041336,
- 0.07077860087156296,
- -0.014247594401240349,
- 0.049008529633283615,
- -0.024891400709748268,
- -0.10280737280845642,
- 0.08648799359798431,
- 0.060014910995960236,
- 0.0737677663564682,
- -0.029815495014190674,
- -0.01312756072729826
- ]
- },
- {
- "keyword": "attributed to",
- "type": "attributedTo",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.04922356456518173,
- 0.029718773439526558,
- -0.011766381561756134,
- 0.05783526226878166,
- 0.07430486381053925,
- 0.05363360047340393,
- 0.1257280558347702,
- -0.01913635805249214,
- 0.010718005709350109,
- 0.0034104767255485058,
- 0.0175788477063179,
- -0.06376102566719055,
- 0.09010269492864609,
- -0.02322009764611721,
- -0.10452274233102798,
- -0.015810556709766388,
- 0.061039771884679794,
- 0.038861021399497986,
- 0.012842236086726189,
- -0.023430371657013893,
- -0.11657681316137314,
- 0.11142349243164062,
- 0.0121642230078578,
- 0.009103241376578808,
- 0.08480142056941986,
- 0.021224619820713997,
- -0.02217070944607258,
- 0.01716087944805622,
- 0.058793939650058746,
- -0.05436084792017937,
- -0.008425841107964516,
- 0.04078904539346695,
- -0.0640387162566185,
- -0.038670916110277176,
- -0.04218417778611183,
- -0.018834061920642853,
- 0.03142358735203743,
- 0.0021031431388109922,
- 0.026033734902739525,
- -0.027758736163377762,
- -0.010165972635149956,
- -0.006240954156965017,
- -0.00031835437403060496,
- -0.0024198023602366447,
- -0.0330985002219677,
- 0.08092068880796432,
- 0.0303712859749794,
- 0.005771756172180176,
- -0.05305306985974312,
- 0.028376415371894836,
- -0.06416317820549011,
- 0.026357265189290047,
- 0.006917245220392942,
- -0.059574708342552185,
- -0.025923805311322212,
- -0.006638217717409134,
- -0.003542836755514145,
- -0.012151198461651802,
- 0.02264215424656868,
- 0.03850077837705612,
- 0.03121672384440899,
- 0.02013295516371727,
- -0.06376494467258453,
- 0.04002670571208,
- 0.14530768990516663,
- -0.0256155077368021,
- 0.04911361634731293,
- 0.005684520583599806,
- -0.07540139555931091,
- 0.008704621344804764,
- 0.08838240057229996,
- 0.008953886106610298,
- -0.0037373800296336412,
- 0.004467909224331379,
- 0.03737689554691315,
- 0.07733752578496933,
- 0.02403220348060131,
- 0.012255712412297726,
- -0.000561799795832485,
- -0.10933569818735123,
- -0.010740440338850021,
- 0.08127637207508087,
- -0.01805195026099682,
- -0.011612767353653908,
- 0.02888503670692444,
- 0.02200624719262123,
- -0.002898614853620529,
- -0.049954745918512344,
- -0.03947518393397331,
- 0.043722111731767654,
- -0.02684757485985756,
- 0.013991708867251873,
- 0.04085404425859451,
- 0.025677992030978203,
- 0.01799074560403824,
- 0.002125280676409602,
- -0.023211035877466202,
- 0.04245065525174141,
- 0.035297784954309464,
- 0.15836888551712036,
- -0.05931083485484123,
- 0.0477849543094635,
- -0.14912573993206024,
- 0.035861216485500336,
- 0.041949767619371414,
- -0.0026385500095784664,
- -0.03289766609668732,
- 0.02811993658542633,
- 0.043581388890743256,
- -0.04408032074570656,
- -0.007328741252422333,
- -0.03851969167590141,
- -0.04374770447611809,
- -0.009489433839917183,
- 0.039248026907444,
- -0.04637482762336731,
- -0.036102429032325745,
- -0.04849664866924286,
- -0.04155619069933891,
- -0.056174129247665405,
- 0.07610585540533066,
- 0.03710681572556496,
- -0.03156669810414314,
- -0.0030365486163645983,
- -0.09542236477136612,
- -0.034936632961034775,
- -0.023492584004998207,
- -5.0076632398525474e-33,
- 0.11604807525873184,
- 0.041690755635499954,
- 0.05907311290502548,
- -0.08292883634567261,
- 0.02706025168299675,
- -0.03592544421553612,
- 0.006971810478717089,
- 0.012627906166017056,
- -0.04202745854854584,
- -0.046431638300418854,
- -0.03989742323756218,
- 0.0319942831993103,
- -0.08182454109191895,
- -0.04767320305109024,
- 0.04289281740784645,
- 0.05189305543899536,
- 0.026491345837712288,
- 0.06529239565134048,
- -0.07619106024503708,
- -0.03686629608273506,
- -0.035454992204904556,
- 0.12210885435342789,
- -0.0026174618396908045,
- -0.04645415022969246,
- -0.048936065286397934,
- -0.05684719607234001,
- -0.0714927613735199,
- -0.00943672563880682,
- -0.04102332517504692,
- 0.04345540329813957,
- 0.03972544148564339,
- -0.015346593223512173,
- 0.02240203507244587,
- 0.0009798294631764293,
- 0.0073107220232486725,
- -0.0774010419845581,
- -0.005666919518262148,
- -0.03881238028407097,
- -0.04801066219806671,
- 0.027823220938444138,
- 0.08166410773992538,
- 0.006506935227662325,
- -0.0028751224745064974,
- -0.03831744194030762,
- 0.01138915866613388,
- 0.07128704339265823,
- -0.03455454111099243,
- 0.0011247359216213226,
- 0.05004343017935753,
- 0.05896671488881111,
- -0.005239835008978844,
- -0.01010821107774973,
- -0.022484658285975456,
- -0.00862256158143282,
- -0.027953092008829117,
- -0.013526572845876217,
- -0.07004562765359879,
- 0.014495753683149815,
- 0.023204093798995018,
- 0.03126365318894386,
- 0.006260789465159178,
- 0.10631348937749863,
- -0.014390853233635426,
- 0.024319889023900032,
- -0.06342480331659317,
- 0.058681607246398926,
- 0.04170774295926094,
- -0.05337633937597275,
- -0.00007577031647088006,
- 0.048638053238391876,
- -0.024068035185337067,
- 0.05266810953617096,
- -0.020496398210525513,
- 0.0771365538239479,
- -0.024825958535075188,
- -0.06233266741037369,
- -0.05883586406707764,
- 0.010580184869468212,
- -0.013712425716221333,
- 0.06094546616077423,
- -0.10980181396007538,
- 0.04339727759361267,
- -0.06885688006877899,
- -0.015645351260900497,
- 0.008052182383835316,
- 0.01870482973754406,
- -0.04756768420338631,
- -0.11090604215860367,
- 0.03145505115389824,
- 0.048377469182014465,
- 0.03503572195768356,
- -0.024811139330267906,
- -0.0005919105606153607,
- -0.013176155276596546,
- -0.0808170735836029,
- 2.6206463710392385e-33,
- -0.0902864933013916,
- -0.04463587701320648,
- 0.05686534196138382,
- 0.012841466814279556,
- -0.027480943128466606,
- -0.05847272276878357,
- -0.015935247763991356,
- -0.010570205748081207,
- 0.039616506546735764,
- 0.07058898359537125,
- 0.025846684351563454,
- -0.04098481312394142,
- -0.009325251914560795,
- 0.037942033261060715,
- 0.10532774031162262,
- -0.008478377014398575,
- 0.09301678836345673,
- -0.013154675252735615,
- -0.09754632413387299,
- -0.04624544456601143,
- -0.024713199585676193,
- -0.05622825399041176,
- 0.01640673168003559,
- -0.08047780394554138,
- 0.021274972707033157,
- 0.07884476333856583,
- 0.088630311191082,
- 0.031821973621845245,
- -0.03948982059955597,
- 0.018532253801822662,
- 0.02811439149081707,
- 0.06630083918571472,
- -0.108878955245018,
- -0.04083254933357239,
- -0.01944051869213581,
- 0.13115496933460236,
- 0.011911150999367237,
- 0.042080555111169815,
- -0.07312512397766113,
- -0.021419741213321686,
- 0.030475668609142303,
- 0.08103837817907333,
- -0.0931147038936615,
- 0.10778142511844635,
- 0.028647219762206078,
- -0.0009151570848189294,
- -0.045911673456430435,
- -0.003054253989830613,
- 0.12238294631242752,
- 0.0012254002504050732,
- -0.011417850852012634,
- 0.023448700085282326,
- 0.0208757147192955,
- 0.0005003094556741416,
- -0.024729393422603607,
- -0.01869089901447296,
- 0.08523797988891602,
- 0.04294426739215851,
- 0.09772000461816788,
- -0.04144765064120293,
- -0.059141650795936584,
- 0.03159670531749725,
- -0.05893055349588394,
- -0.016711169853806496,
- 0.028583554551005363,
- -0.030601169914007187,
- -0.037097617983818054,
- 0.012015208601951599,
- 0.020778952166438103,
- -0.015012160874903202,
- 0.005742924753576517,
- 0.07952521741390228,
- -0.011007844470441341,
- -0.006514951586723328,
- -0.08031776547431946,
- -0.012429489754140377,
- -0.07123998552560806,
- 0.06506086140871048,
- -0.07848215103149414,
- -0.10851884633302689,
- -0.014871644787490368,
- -0.07607432454824448,
- -0.004092239774763584,
- 0.06234955042600632,
- 0.015145895071327686,
- -0.10375785082578659,
- 0.03433580324053764,
- -0.0025892634876072407,
- -0.015278148464858532,
- 0.013785437680780888,
- 0.01404581032693386,
- -0.0396488755941391,
- -0.025768239051103592,
- 0.010153376497328281,
- -0.03423726558685303,
- -1.3775829366124981e-8,
- -0.025209888815879822,
- 0.03144706413149834,
- -0.06339776515960693,
- 0.018119247630238533,
- 0.11897946149110794,
- 0.0424206405878067,
- 0.08161390572786331,
- 0.031307514756917953,
- -0.0010766311315819621,
- 0.014260503463447094,
- 0.0012751639587804675,
- 0.009045390412211418,
- 0.045035284012556076,
- 0.0695338025689125,
- 0.09802401810884476,
- -0.07897280156612396,
- -0.052141886204481125,
- -0.046036627143621445,
- -0.0783364325761795,
- 0.040438149124383926,
- -0.027352480217814445,
- -0.0040883333422243595,
- 0.037983283400535583,
- -0.04531517252326012,
- -0.056053683161735535,
- -0.008423939347267151,
- -0.004578863736242056,
- 0.0700301080942154,
- 0.06396806985139847,
- -0.02116882987320423,
- 0.04186766594648361,
- 0.04137326031923294,
- -0.10815668106079102,
- -0.12256380170583725,
- 0.016504177823662758,
- -0.05961981788277626,
- 0.054090648889541626,
- -0.03573980927467346,
- -0.03397797793149948,
- 0.008823131211102009,
- -0.023831842467188835,
- -0.03762347251176834,
- 0.005091363564133644,
- 0.027013812214136124,
- 0.08074166625738144,
- 0.001164630870334804,
- -0.003499141428619623,
- 0.030005672946572304,
- -0.013269169256091118,
- -0.012142830528318882,
- -0.048068031668663025,
- -0.031138163059949875,
- 0.019082389771938324,
- -0.001981776673346758,
- 0.002298547187820077,
- -0.025164593011140823,
- -0.02845638617873192,
- -0.006142798345535994,
- -0.05728108435869217,
- -0.012382972054183483,
- 0.04862632602453232,
- 0.059921178966760635,
- 0.15097451210021973,
- 0.036652572453022
- ]
- },
- {
- "keyword": "credited to",
- "type": "attributedTo",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.060883983969688416,
- 0.0618065781891346,
- -0.005667196121066809,
- 0.015119165182113647,
- -0.023652851581573486,
- 0.07804633677005768,
- 0.158583864569664,
- 0.03395133838057518,
- -0.014236336573958397,
- 0.01820991560816765,
- 0.044715408235788345,
- -0.09512564539909363,
- 0.049567919224500656,
- -0.0056501952931284904,
- -0.1287098079919815,
- 0.009500972926616669,
- -0.01221216470003128,
- 0.06683243811130524,
- -0.010252894833683968,
- -0.06823956966400146,
- -0.09504109621047974,
- 0.0524829737842083,
- 0.03193887695670128,
- 0.03641287237405777,
- 0.11246783286333084,
- 0.05216573178768158,
- -0.04332460090517998,
- 0.03020303323864937,
- 0.07515737414360046,
- -0.06189180538058281,
- -0.050188902765512466,
- -0.05503641068935394,
- 0.008402526378631592,
- -0.05526839941740036,
- -0.09682871401309967,
- -0.018463624641299248,
- 0.045400217175483704,
- 0.005584217142313719,
- -0.003742256434634328,
- -0.02471744455397129,
- -0.013847624883055687,
- -0.05159272253513336,
- 0.011593837291002274,
- -0.00783754512667656,
- -0.015615065582096577,
- 0.011713162064552307,
- 0.07104954868555069,
- 0.005408314056694508,
- -0.043275464326143265,
- 0.08973748981952667,
- 0.01466670073568821,
- -0.021232865750789642,
- 0.00818907842040062,
- -0.044766031205654144,
- -0.017239345237612724,
- 0.030254555866122246,
- 0.021693449467420578,
- -0.040433306246995926,
- 0.015345778316259384,
- -0.026460392400622368,
- 0.012041587382555008,
- -0.01403052918612957,
- -0.05322631075978279,
- 0.05464942753314972,
- 0.03456484526395798,
- 0.002330264076590538,
- 0.008904908783733845,
- -0.0023072692565619946,
- -0.07447439432144165,
- 0.003530623624101281,
- 0.06707539409399033,
- 0.011981109157204628,
- 0.006101620849221945,
- -0.05268256738781929,
- 0.04107806086540222,
- 0.007983880117535591,
- 0.017413096502423286,
- 0.06511581689119339,
- -0.015757935121655464,
- -0.03819448873400688,
- 0.034079842269420624,
- 0.018177513033151627,
- -0.014986561611294746,
- 0.030253030359745026,
- -0.0013791893143206835,
- -0.005162680521607399,
- -0.020547732710838318,
- 0.04255654662847519,
- 0.025784747675061226,
- -0.02089245431125164,
- 0.0011554996017366648,
- -0.011132825165987015,
- 0.09544692188501358,
- -0.0711793377995491,
- -0.04855901375412941,
- 0.012385248206555843,
- -0.04967682808637619,
- 0.044381625950336456,
- 0.0073322695679962635,
- 0.1688358187675476,
- -0.024804193526506424,
- 0.0684550553560257,
- -0.1254248172044754,
- 0.01725117117166519,
- 0.05228889361023903,
- 0.00874403864145279,
- 0.04358294606208801,
- 0.042562857270240784,
- 0.014071687124669552,
- -0.016417793929576874,
- -0.0003166857350151986,
- -0.009283117949962616,
- -0.02351822704076767,
- 0.055085688829422,
- 0.06692437082529068,
- 0.06188178434967995,
- -0.07579519599676132,
- -0.04022884741425514,
- 0.015116923488676548,
- -0.13435781002044678,
- 0.059667445719242096,
- 0.0646415427327156,
- -0.09815061837434769,
- -0.016961093991994858,
- -0.15142390131950378,
- -0.010388515889644623,
- 0.03529926389455795,
- -6.0607269153008166e-33,
- 0.05880733206868172,
- 0.09942910075187683,
- 0.08325901627540588,
- -0.008219106122851372,
- -0.012134796939790249,
- -0.0023089556489139795,
- -0.032694753259420395,
- 0.024089805781841278,
- -0.07408841699361801,
- 0.01015586219727993,
- 0.025562474504113197,
- -0.02381761372089386,
- -0.030344942584633827,
- 0.011610191315412521,
- -0.012763974256813526,
- 0.0071425773203372955,
- -0.042526062577962875,
- -0.0031137873884290457,
- 0.006132442969828844,
- 0.0063664731569588184,
- -0.01973430998623371,
- 0.08086880296468735,
- 0.000853133387863636,
- 0.05926702544093132,
- -0.0197349451482296,
- -0.025702862069010735,
- -0.07982011884450912,
- 0.04247865080833435,
- -0.011960879899561405,
- 0.02649928256869316,
- 0.02253415621817112,
- -0.050593070685863495,
- -0.012284896336495876,
- -0.00038970384048298,
- 0.015835829079151154,
- -0.08048144727945328,
- -0.03501110151410103,
- -0.10100781172513962,
- -0.014432702213525772,
- 0.029207127168774605,
- 0.07329991459846497,
- -0.01371815986931324,
- -0.04254477098584175,
- -0.017261413857340813,
- -0.048634279519319534,
- 0.003385113086551428,
- 0.008370434865355492,
- 0.0106809101998806,
- 0.10208895802497864,
- 0.06697532534599304,
- -0.012900399044156075,
- 0.014652106910943985,
- -0.07145079970359802,
- -0.06543196737766266,
- -0.01206299476325512,
- -0.00664018839597702,
- -0.037947893142700195,
- 0.015297739766538143,
- -0.020590871572494507,
- 0.02511029876768589,
- -0.0100382249802351,
- 0.057345256209373474,
- -0.052760832011699677,
- 0.09749364107847214,
- -0.08833012729883194,
- 0.05762036517262459,
- 0.07088417559862137,
- -0.004098075907677412,
- 0.01170129980891943,
- 0.02273750863969326,
- -0.021640373393893242,
- -0.00619936641305685,
- -0.0627051442861557,
- -0.012239420786499977,
- -0.017129236832261086,
- -0.01962072215974331,
- -0.026707425713539124,
- 0.005252801813185215,
- -0.0035457094199955463,
- 0.07901640236377716,
- -0.11383447796106339,
- -0.012278236448764801,
- -0.00780416838824749,
- 0.004925073124468327,
- 0.04433509334921837,
- 0.022896690294146538,
- -0.007586760446429253,
- -0.08478838950395584,
- 0.018135609105229378,
- 0.05166402831673622,
- 0.04419080168008804,
- -0.014387663453817368,
- 0.04144547879695892,
- 0.013419264927506447,
- -0.0904572382569313,
- 2.831209184353181e-33,
- -0.04723362624645233,
- -0.019296713173389435,
- 0.036811619997024536,
- 0.04668773338198662,
- 0.014964664354920387,
- -0.07067890465259552,
- -0.0475536473095417,
- -0.030920973047614098,
- -0.0648743137717247,
- 0.013776064850389957,
- 0.03440228849649429,
- 0.024545952677726746,
- 0.025994710624217987,
- 0.04359883442521095,
- 0.09070086479187012,
- -0.006096996832638979,
- 0.037869688123464584,
- 0.03929879143834114,
- -0.07121223211288452,
- -0.06800903379917145,
- 0.040175966918468475,
- -0.03301927447319031,
- 0.05704673379659653,
- -0.11665932089090347,
- -0.006260958965867758,
- 0.04205263778567314,
- 0.014020243659615517,
- -0.011030235327780247,
- 0.005688614211976528,
- 0.016196638345718384,
- 0.05075692757964134,
- 0.04181062430143356,
- -0.1448713093996048,
- -0.03379478305578232,
- -0.03845245763659477,
- 0.059469301253557205,
- -0.010030437260866165,
- 0.09468083828687668,
- -0.021040979772806168,
- 0.013625004328787327,
- 0.051011957228183746,
- 0.051585618406534195,
- -0.014958931133151054,
- 0.14558973908424377,
- 0.03426806628704071,
- -0.017474917694926262,
- -0.07985885441303253,
- -0.033764660358428955,
- 0.053881920874118805,
- 0.014708738774061203,
- -0.14128322899341583,
- 0.005277474410831928,
- 0.005823451094329357,
- 0.004724529571831226,
- 0.001180431223474443,
- 0.011375370435416698,
- 0.058523330837488174,
- 0.034823011606931686,
- 0.07849130034446716,
- -0.06725424528121948,
- -0.06204924359917641,
- 0.040448132902383804,
- -0.041625890880823135,
- 0.029675008729100227,
- 0.023393826559185982,
- -0.03701845183968544,
- 0.002703974721953273,
- 0.07818921655416489,
- -0.023204641416668892,
- -0.023049371317029,
- 0.06583650410175323,
- 0.08177336305379868,
- -0.008271805942058563,
- -0.027681058272719383,
- -0.12372316420078278,
- 0.04057326912879944,
- -0.11066462844610214,
- 0.06857375800609589,
- -0.045301761478185654,
- -0.10854217410087585,
- -0.027539383620023727,
- -0.019581351429224014,
- -0.004704232793301344,
- 0.022422345355153084,
- -0.01956254616379738,
- -0.09672893583774567,
- 0.05457797646522522,
- -0.06978584825992584,
- -0.026389433071017265,
- -0.0046587781980633736,
- 0.010280360467731953,
- -0.012293469160795212,
- 0.01731874607503414,
- 0.01761394739151001,
- -0.005858725402504206,
- -1.4458130692673876e-8,
- -0.0361073762178421,
- 0.10575293004512787,
- -0.08252686262130737,
- 0.044667575508356094,
- 0.07965659350156784,
- 0.026703720912337303,
- -0.0013749952195212245,
- -0.02433902956545353,
- 0.011055003851652145,
- 0.00316102453507483,
- -0.009392945095896721,
- -0.052783552557229996,
- 0.045233339071273804,
- 0.03295958787202835,
- 0.09604212641716003,
- -0.07162778079509735,
- -0.0340094119310379,
- 0.02685253880918026,
- -0.041795577853918076,
- 0.030100548639893532,
- 0.02015971578657627,
- 0.005556569900363684,
- 0.034050457179546356,
- -0.002938214922323823,
- -0.08079109340906143,
- 0.01064083632081747,
- 0.03523973375558853,
- 0.10966184735298157,
- 0.07065047323703766,
- -0.049628015607595444,
- 0.00005462011540657841,
- 0.05216619744896889,
- -0.09728707373142242,
- -0.11715617775917053,
- 0.061812903732061386,
- -0.05699861794710159,
- 0.017725786194205284,
- -0.01671992614865303,
- -0.014198492281138897,
- -0.07810923457145691,
- -0.0575127974152565,
- 0.057372309267520905,
- -0.0014773823786526918,
- 0.02440352737903595,
- 0.06829138845205307,
- 0.052299220114946365,
- -0.01624469831585884,
- 0.007985700853168964,
- 0.014569106511771679,
- 0.02830725908279419,
- 0.019013354554772377,
- -0.012841579504311085,
- 0.06406578421592712,
- 0.02683929167687893,
- -0.00982699915766716,
- -0.045947685837745667,
- -0.0011585979955270886,
- -0.01657005399465561,
- -0.04053866118192673,
- -0.055562350898981094,
- 0.007573047187179327,
- 0.022175539284944534,
- 0.10688821971416473,
- -0.013355325907468796
- ]
- },
- {
- "keyword": "ascribed to",
- "type": "attributedTo",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.05574079602956772,
- 0.037833694368600845,
- 0.011624098755419254,
- 0.05087880790233612,
- 0.10025718063116074,
- 0.025769464671611786,
- 0.17081084847450256,
- -0.011263926513493061,
- -0.020122941583395004,
- 0.01587075926363468,
- 0.03398643434047699,
- -0.11061372607946396,
- 0.07017262279987335,
- 0.01759318634867668,
- -0.0976070687174797,
- -0.007320185657590628,
- 0.017233915627002716,
- -0.04035007953643799,
- -0.015050625428557396,
- -0.009401855990290642,
- -0.11722896993160248,
- 0.08628568798303604,
- -0.00791339110583067,
- 0.004689808934926987,
- 0.04005615785717964,
- 0.029666142538189888,
- -0.01701495237648487,
- -0.022513598203659058,
- 0.07439838349819183,
- -0.05028180778026581,
- -0.044464144855737686,
- 0.08061863481998444,
- -0.008431615307927132,
- -0.042637843638658524,
- -0.004601464606821537,
- 0.03062037192285061,
- 0.0057617477141320705,
- -0.0017542775021865964,
- -0.006228212732821703,
- -0.041439224034547806,
- 0.028646063059568405,
- -0.028656238690018654,
- 0.006285723764449358,
- 0.02921348251402378,
- -0.04022670537233353,
- 0.03790847957134247,
- 0.013009659945964813,
- 0.02377985417842865,
- -0.06923851370811462,
- 0.0031538025941699743,
- -0.020327763631939888,
- -0.00046334342914633453,
- 0.0267256498336792,
- -0.018002428114414215,
- -0.06427987664937973,
- -0.014269236475229263,
- -0.005343608558177948,
- -0.06464901566505432,
- 0.0000862652450450696,
- -0.012125926092267036,
- 0.002151263877749443,
- -0.018210729584097862,
- -0.054065484553575516,
- 0.023058084771037102,
- 0.14238259196281433,
- 0.008668774738907814,
- -0.005810984410345554,
- -0.028522105887532234,
- -0.028606990352272987,
- 0.059988584369421005,
- 0.10434495657682419,
- -0.0041195363737642765,
- -0.008877533487975597,
- 0.025321073830127716,
- 0.015252008102834225,
- 0.014455577358603477,
- 0.04081156849861145,
- -0.036925382912158966,
- 0.06334678828716278,
- -0.10971643775701523,
- 0.022664524614810944,
- 0.11186163872480392,
- -0.012579037807881832,
- -0.02509692870080471,
- 0.01910177245736122,
- 0.012352613732218742,
- -0.02227749489247799,
- -0.07051320374011993,
- -0.09121127426624298,
- 0.035719793289899826,
- 0.008442052640020847,
- -0.10176627337932587,
- 0.02456309273838997,
- 0.033589646220207214,
- 0.04165402054786682,
- -0.002642231062054634,
- -0.024050408974289894,
- 0.05897238478064537,
- 0.029199089854955673,
- 0.1594153791666031,
- -0.06332385540008545,
- 0.05486028268933296,
- -0.1044670045375824,
- -0.023724285885691643,
- -0.04066118970513344,
- -0.053438954055309296,
- -0.05870969966053963,
- -0.032199688255786896,
- 0.06931916624307632,
- -0.01030839141458273,
- -0.009419070556759834,
- -0.06903862953186035,
- 0.0021374723874032497,
- 0.014470748603343964,
- 0.04759328439831734,
- 0.00017977930838242173,
- 0.026743147522211075,
- -0.029166942462325096,
- -0.07097212225198746,
- -0.1079752966761589,
- 0.030245453119277954,
- 0.05870039388537407,
- -0.0073802475817501545,
- 0.017701350152492523,
- -0.031253039836883545,
- -0.07987065613269806,
- -0.07316110283136368,
- -5.0924060969712646e-33,
- 0.06415996700525284,
- 0.05076698586344719,
- 0.012214249931275845,
- -0.022539064288139343,
- -0.026261836290359497,
- -0.007930931635200977,
- 0.0033981127198785543,
- 0.0025021559558808804,
- -0.05144383758306503,
- -0.03411773964762688,
- -0.06596960872411728,
- 0.048586200922727585,
- -0.06739231944084167,
- -0.04462272673845291,
- 0.018999772146344185,
- 0.024397576227784157,
- -0.03281393274664879,
- 0.101572185754776,
- -0.005591940134763718,
- -0.02570267952978611,
- -0.02542630210518837,
- 0.1702709197998047,
- -0.00180627906229347,
- -0.07309097796678543,
- -0.0433940514922142,
- -0.08314631134271622,
- -0.028779437765479088,
- 0.012464459054172039,
- -0.02200143225491047,
- 0.06076350063085556,
- 0.05948831886053085,
- -0.011911554262042046,
- -0.04134034737944603,
- -0.007450076285749674,
- -0.005488723516464233,
- -0.05375918745994568,
- -0.02422076277434826,
- -0.0525483675301075,
- -0.02177574671804905,
- 0.019829701632261276,
- 0.03367367759346962,
- 0.0032185642048716545,
- -0.01526479609310627,
- -0.013425440527498722,
- 0.03505462408065796,
- -0.000736371788661927,
- -0.013441158458590508,
- -0.03377288579940796,
- 0.018149198964238167,
- 0.06722182780504227,
- 0.019690202549099922,
- -0.03139224648475647,
- -0.027593489736318588,
- -0.047442786395549774,
- -0.01634238474071026,
- -0.026547932997345924,
- -0.05897606909275055,
- 0.0827600434422493,
- 0.020134227350354195,
- 0.007434292696416378,
- 0.06731283664703369,
- 0.05403992161154747,
- -0.11332570761442184,
- 0.037916745990514755,
- -0.0606517568230629,
- 0.014045795425772667,
- 0.002049514790996909,
- -0.057086337357759476,
- -0.014526362530887127,
- 0.025031860917806625,
- -0.050397150218486786,
- 0.0302108246833086,
- -0.03121374174952507,
- 0.09200319647789001,
- -0.005626920610666275,
- -0.055323418229818344,
- -0.015257465653121471,
- 0.03201334550976753,
- -0.0291469506919384,
- -0.023917941376566887,
- -0.1179371029138565,
- 0.0741380825638771,
- -0.03218521177768707,
- 0.05147845670580864,
- 0.008644248358905315,
- 0.04019975662231445,
- -0.007950234226882458,
- -0.06831221282482147,
- 0.04707854986190796,
- 0.057702578604221344,
- 0.010594064369797707,
- 0.03994976729154587,
- -0.022141313180327415,
- 0.01834193617105484,
- -0.0662686750292778,
- 2.148347618229221e-33,
- -0.07959356904029846,
- -0.056614071130752563,
- 0.0014159062411636114,
- 0.05133519694209099,
- -0.04505519941449165,
- -0.042459290474653244,
- -0.00971049815416336,
- -0.008024904876947403,
- 0.017754819244146347,
- -0.015126192010939121,
- 0.012486704625189304,
- -0.014000962488353252,
- 0.07896748930215836,
- 0.030509768053889275,
- 0.09669511020183563,
- -0.0036008155439049006,
- 0.05232071503996849,
- 0.048520274460315704,
- -0.01693081110715866,
- -0.042631059885025024,
- 0.007741967216134071,
- -0.06121343374252319,
- 0.04756898805499077,
- -0.09629818052053452,
- 0.006037428509443998,
- 0.10741815716028214,
- 0.08273448050022125,
- 0.03480970114469528,
- -0.039482224732637405,
- -0.03526623174548149,
- 0.004897687584161758,
- 0.033102087676525116,
- -0.1305457353591919,
- -0.05319163203239441,
- 0.0019123429665341973,
- 0.0694216936826706,
- 0.05425355210900307,
- 0.046382177621126175,
- -0.03605867922306061,
- -0.011980574578046799,
- -0.03357400372624397,
- 0.021813351660966873,
- -0.07835882902145386,
- 0.10000450909137726,
- 0.04399479925632477,
- -0.03326921537518501,
- 0.061291005462408066,
- -0.007034383248537779,
- 0.14470677077770233,
- -0.052195679396390915,
- 0.025959324091672897,
- 0.07724341005086899,
- 0.008496475405991077,
- 0.0010595513740554452,
- -0.04878929629921913,
- -0.036883529275655746,
- 0.049507904797792435,
- 0.006978957913815975,
- 0.1116466373205185,
- -0.028967512771487236,
- -0.008663464337587357,
- 0.041633449494838715,
- -0.047284744679927826,
- 0.00674812588840723,
- 0.019461536779999733,
- 0.007504144683480263,
- -0.02882114052772522,
- 0.037375565618276596,
- 0.05018945038318634,
- 0.01547202654182911,
- 0.017947884276509285,
- -0.02620222605764866,
- -0.06907699257135391,
- -0.00788175780326128,
- -0.0036121667362749577,
- 0.016522081568837166,
- -0.07964970916509628,
- 0.05852581933140755,
- -0.029650121927261353,
- -0.0916086956858635,
- -0.047631826251745224,
- -0.08507124334573746,
- 0.04376305639743805,
- 0.0038053588941693306,
- 0.07883266359567642,
- -0.12245713174343109,
- 0.023143654689192772,
- -0.05306224524974823,
- -0.008601400069892406,
- 0.02320951595902443,
- 0.039506882429122925,
- -0.031301241368055344,
- -0.02676071785390377,
- -0.002188685815781355,
- -0.03571483865380287,
- -1.4388511715424102e-8,
- -0.011322902515530586,
- -0.025088779628276825,
- -0.004518486559391022,
- 0.00942327082157135,
- 0.09241467714309692,
- -0.02189379371702671,
- 0.05005798488855362,
- 0.03349827229976654,
- -0.028274748474359512,
- 0.06882588565349579,
- -0.010192735120654106,
- -0.001861040131188929,
- 0.04328421875834465,
- 0.07091429084539413,
- 0.08751500397920609,
- -0.0317549891769886,
- -0.047042157500982285,
- -0.03563922271132469,
- -0.11478018760681152,
- 0.053501229733228683,
- -0.008521093055605888,
- 0.03466726839542389,
- -0.029961319640278816,
- -0.06969066709280014,
- -0.053508248180150986,
- -0.0243636816740036,
- 0.04717682674527168,
- 0.022631175816059113,
- 0.06249648705124855,
- 0.003031995380297303,
- 0.006765857804566622,
- 0.08060161024332047,
- -0.08693703263998032,
- -0.1051153764128685,
- 0.01001519151031971,
- -0.01985832117497921,
- 0.051086727529764175,
- -0.026139957830309868,
- -0.006341301836073399,
- 0.023729233071208,
- -0.03922662138938904,
- -0.05140301585197449,
- -0.004069762770086527,
- 0.04476934298872948,
- 0.12128423154354095,
- -0.016942553222179413,
- -0.06093775853514671,
- 0.00021073277457617223,
- -0.016497470438480377,
- 0.025391243398189545,
- -0.0015995475696399808,
- -0.014674144797027111,
- 0.03641311079263687,
- 0.04803689196705818,
- -0.001730554853565991,
- -0.046275053173303604,
- -0.00761603657156229,
- -0.03506891056895256,
- -0.03399026393890381,
- -0.021900421008467674,
- 0.05513276904821396,
- 0.0656731128692627,
- 0.15961675345897675,
- 0.006776019465178251
- ]
- },
- {
- "keyword": "assigned to",
- "type": "attributedTo",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.058209020644426346,
- 0.012527292594313622,
- -0.032475970685482025,
- 0.05375531688332558,
- -0.04627684876322746,
- 0.0029520317912101746,
- 0.1657644361257553,
- -0.043633509427309036,
- 0.027698254212737083,
- 0.0024430234916508198,
- -0.06953755021095276,
- -0.06644909828901291,
- 0.021645842120051384,
- 0.05984124913811684,
- -0.056035928428173065,
- 0.0027633346617221832,
- -0.005843704100698233,
- 0.027224557474255562,
- -0.08128172904253006,
- -0.04569751396775246,
- -0.04641629382967949,
- 0.008320460096001625,
- -0.00940644834190607,
- 0.031158840283751488,
- -0.022854063659906387,
- -0.04327557981014252,
- -0.05739995837211609,
- 0.022646931931376457,
- -0.02722572349011898,
- -0.05295920744538307,
- -0.026427434757351875,
- -0.015304124914109707,
- 0.06766379624605179,
- 0.009409569203853607,
- -0.029666727408766747,
- -0.0005177968996576965,
- 0.009175218641757965,
- -0.047086577862501144,
- 0.030469218268990517,
- -0.025877676904201508,
- -0.03437862545251846,
- -0.03566427156329155,
- -0.006505188997834921,
- -0.03605160489678383,
- 0.014249283820390701,
- 0.03850390389561653,
- 0.0063394238241016865,
- -0.06227748841047287,
- 0.013636634685099125,
- 0.013208785094320774,
- 0.04554543271660805,
- -0.014537557028234005,
- -0.04472208395600319,
- 0.04938943311572075,
- -0.016952525824308395,
- 0.06208209693431854,
- -0.000011480061402835418,
- -0.05869866535067558,
- 0.03811128810048103,
- -0.02274918742477894,
- 0.02937375381588936,
- 0.007944696582853794,
- 0.029044870287179947,
- 0.1159759908914566,
- 0.06172508746385574,
- -0.08337783068418503,
- 0.010652508586645126,
- -0.006799224764108658,
- -0.03723299130797386,
- -0.031977977603673935,
- 0.019617591053247452,
- 0.04020369052886963,
- 0.021741477772593498,
- 0.06971083581447601,
- 0.04053109511733055,
- 0.008954156190156937,
- 0.05736907944083214,
- -0.039251070469617844,
- 0.08556031435728073,
- -0.10386421531438828,
- 0.029571138322353363,
- 0.03112700767815113,
- -0.028456808999180794,
- 0.021983763203024864,
- -0.014407760463654995,
- -0.02596282586455345,
- -0.033455148339271545,
- 0.014097181148827076,
- 0.030015651136636734,
- 0.06320472806692123,
- -0.004243799019604921,
- 0.015466190874576569,
- 0.11204022169113159,
- 0.0033539189025759697,
- -0.06414265930652618,
- 0.05455514043569565,
- 0.07848598808050156,
- 0.06725645810365677,
- -0.13538217544555664,
- 0.20288066565990448,
- 0.011573290452361107,
- 0.03852085769176483,
- -0.07333309948444366,
- 0.03894474729895592,
- -0.04121041297912598,
- -0.022648587822914124,
- 0.004979074001312256,
- -0.02937917783856392,
- -0.001829979126341641,
- -0.09604332596063614,
- 0.013984591700136662,
- 0.019230443984270096,
- -0.0110702496021986,
- 0.05373656377196312,
- -0.037342119961977005,
- -0.004614298231899738,
- -0.02319669909775257,
- 0.03339848294854164,
- 0.029116220772266388,
- -0.038396622985601425,
- 0.0013370696688070893,
- 0.029716551303863525,
- -0.03391682356595993,
- 0.0009145243093371391,
- -0.06673356145620346,
- -0.04488331824541092,
- 0.005675644148141146,
- -6.228421470021186e-33,
- 0.05308232828974724,
- -0.03622295334935188,
- 0.02664020285010338,
- 0.02235337346792221,
- 0.006218397058546543,
- -0.00377885764464736,
- 0.016259968280792236,
- 0.03330975025892258,
- -0.10446799546480179,
- -0.03253704681992531,
- -0.020919866859912872,
- 0.03359777107834816,
- -0.024212248623371124,
- 0.005880704615265131,
- -0.008286071009933949,
- -0.03145895153284073,
- 0.06688124686479568,
- 0.08616586774587631,
- -0.07278276979923248,
- -0.014489858411252499,
- -0.024305159226059914,
- 0.10576021671295166,
- -0.021767323836684227,
- 0.031200215220451355,
- -0.012948106043040752,
- 0.07824651896953583,
- -0.061844367533922195,
- -0.049388110637664795,
- 0.032660145312547684,
- 0.06710386276245117,
- 0.04480315372347832,
- 0.007532396819442511,
- -0.054523274302482605,
- -0.00993230938911438,
- -0.01158122532069683,
- -0.051100488752126694,
- 0.0016587343998253345,
- 0.024925917387008667,
- 0.007491546683013439,
- -0.06335847824811935,
- 0.05526638403534889,
- -0.045787468552589417,
- -0.002816906664520502,
- -0.015130603685975075,
- -0.017740372568368912,
- -0.049042921513319016,
- 0.10793381929397583,
- 0.08027482032775879,
- 0.12184059619903564,
- 0.06650663167238235,
- -0.06949299573898315,
- -0.05280609801411629,
- -0.0764419287443161,
- -0.020870191976428032,
- -0.005251508671790361,
- -0.031181972473859787,
- 0.057022400200366974,
- -0.06658267229795456,
- -0.018238484859466553,
- -0.04340358451008797,
- 0.03180291876196861,
- 0.04579029604792595,
- -0.056475915014743805,
- 0.05985858663916588,
- -0.046164754778146744,
- -0.05811818689107895,
- 0.038292694836854935,
- -0.04409356042742729,
- 0.10413025319576263,
- -0.06361271440982819,
- -0.10179713368415833,
- 0.030003678053617477,
- -0.04579763114452362,
- 0.13183289766311646,
- 0.007452541962265968,
- 0.03191583231091499,
- -0.02288159541785717,
- 0.008171385154128075,
- -0.08532199263572693,
- 0.09048612415790558,
- -0.004318071063607931,
- 0.016818415373563766,
- -0.06595402210950851,
- 0.024022679775953293,
- 0.022238321602344513,
- -0.05499805510044098,
- -0.014273679815232754,
- -0.10971002280712128,
- 0.0350019671022892,
- 0.09385283291339874,
- 0.05182464420795441,
- 0.02878604270517826,
- 0.008461127988994122,
- 0.10228213667869568,
- -0.020725613459944725,
- 2.8803646846847226e-33,
- -0.05946671590209007,
- 0.008756185881793499,
- -0.002263298025354743,
- -0.05645991116762161,
- 0.04973752796649933,
- -0.04308990016579628,
- -0.007915094494819641,
- -0.1145024299621582,
- -0.06252960115671158,
- 0.06331802159547806,
- -0.006705008912831545,
- -0.010865728370845318,
- -0.016726061701774597,
- 0.01271318644285202,
- 0.057104311883449554,
- 0.0174196008592844,
- 0.016387328505516052,
- 0.009486702270805836,
- -0.08574999868869781,
- -0.030401792377233505,
- -0.05666404590010643,
- 0.07640312612056732,
- 0.030148839578032494,
- -0.011659406125545502,
- -0.015993673354387283,
- 0.10355716198682785,
- 0.08912691473960876,
- 0.08259674161672592,
- -0.07162199169397354,
- 0.015618917532265186,
- -0.011166583746671677,
- -0.010263350792229176,
- -0.11304362118244171,
- -0.05151345580816269,
- -0.0188416950404644,
- 0.05785786733031273,
- 0.07636502385139465,
- 0.06816870719194412,
- -0.012266960926353931,
- 0.07398677617311478,
- 0.10930389165878296,
- 0.0345834456384182,
- 0.009332370944321156,
- 0.13849611580371857,
- -0.0017441719537600875,
- 0.019145485013723373,
- 0.028740132227540016,
- -0.03780638799071312,
- 0.07073123753070831,
- 0.06856843829154968,
- -0.08020035177469254,
- -0.04406493529677391,
- 0.026731912046670914,
- -0.010661271400749683,
- 0.06588669121265411,
- -0.007688360288739204,
- -0.06035163253545761,
- -0.0281954538077116,
- 0.10187651962041855,
- -0.009191606193780899,
- -0.07124887406826019,
- 0.061431389302015305,
- -0.029398785904049873,
- 0.05987006798386574,
- -0.0725351944565773,
- -0.02720717526972294,
- -0.04859023913741112,
- 0.013991757296025753,
- -0.0009913985850289464,
- -0.03774474933743477,
- 0.009532328695058823,
- -0.07165489345788956,
- 0.08510112762451172,
- 0.0111215990036726,
- 0.009295498952269554,
- -0.06823687255382538,
- -0.08528459817171097,
- 0.02196776680648327,
- -0.013238760642707348,
- -0.025650842115283012,
- -0.031069839373230934,
- -0.050531234592199326,
- -0.016018131747841835,
- 0.012950558215379715,
- -0.08218063414096832,
- -0.1260889768600464,
- 0.13781031966209412,
- 0.06813490390777588,
- -0.025453779846429825,
- -0.04083613306283951,
- 0.009435821324586868,
- -0.011548296548426151,
- -0.03724529594182968,
- -0.026454858481884003,
- -0.03503236547112465,
- -1.4147220284144169e-8,
- -0.0005732604768127203,
- 0.046115580946207047,
- -0.006572595797479153,
- -0.027248892933130264,
- 0.046740688383579254,
- -0.005470227915793657,
- 0.020714694634079933,
- -0.03517898917198181,
- -0.008644039742648602,
- 0.06129378080368042,
- -0.012840719893574715,
- -0.03713352605700493,
- 0.07283000648021698,
- 0.04536342993378639,
- 0.10035071521997452,
- -0.030671998858451843,
- -0.06049462407827377,
- -0.01568584330379963,
- -0.06273902207612991,
- -0.00888475775718689,
- 0.0008927718736231327,
- 0.008594592101871967,
- 0.023727303370833397,
- 0.01281026005744934,
- -0.002223378047347069,
- -0.06651654839515686,
- -0.05125284194946289,
- 0.048361681401729584,
- 0.004829684272408485,
- 0.04899446666240692,
- 0.00906717125326395,
- 0.06230402737855911,
- -0.05833490937948227,
- -0.022683169692754745,
- -0.04180862009525299,
- -0.04218899831175804,
- -0.04170539602637291,
- -0.0269364882260561,
- 0.0037999413907527924,
- 0.0051922909915447235,
- 0.030880244448781013,
- -0.012007199227809906,
- 0.025022542104125023,
- 0.022988609969615936,
- 0.006979769561439753,
- 0.06045357510447502,
- -0.003505491418763995,
- -0.05419478192925453,
- -0.02577630802989006,
- -0.03039661981165409,
- -0.03838301822543144,
- -0.07419642806053162,
- 0.04733634740114212,
- 0.014600558206439018,
- -0.023734932765364647,
- 0.012929419986903667,
- -0.0353374257683754,
- -0.006426418665796518,
- -0.047974396497011185,
- 0.03334333002567291,
- -0.010700711980462074,
- 0.09492271393537521,
- -0.06222749501466751,
- -0.03723340108990669
- ]
- },
- {
- "keyword": "attribution",
- "type": "attributedTo",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.07205425947904587,
- 0.04123708978295326,
- -0.056179843842983246,
- 0.04124264791607857,
- 0.12170321494340897,
- 0.01194170955568552,
- 0.12170618027448654,
- 0.004670722410082817,
- 0.04536925628781319,
- -0.000007289273980859434,
- 0.05213526263833046,
- 0.009230082854628563,
- 0.02640424855053425,
- -0.039024513214826584,
- -0.0752551481127739,
- 0.005823597311973572,
- 0.05631750822067261,
- 0.021900029852986336,
- -0.06058846041560173,
- -0.02856508642435074,
- 0.006659330800175667,
- 0.07449353486299515,
- 0.005889424588531256,
- 0.05494063347578049,
- 0.0843999832868576,
- 0.0023272917605936527,
- -0.05656798928976059,
- 0.03652828559279442,
- 0.03496294468641281,
- -0.04509201645851135,
- 0.04866762086749077,
- 0.018710078671574593,
- 0.06413674354553223,
- 0.03108525648713112,
- -0.07969741523265839,
- 0.07443532347679138,
- 0.019697437062859535,
- 0.07043465226888657,
- 0.08075669407844543,
- -0.04629485681653023,
- 0.028978051617741585,
- -0.04912899434566498,
- -0.012872014194726944,
- 0.01590626873075962,
- -0.01615987718105316,
- 0.025101784616708755,
- 0.04927874729037285,
- -0.01040035393089056,
- -0.05247534438967705,
- 0.049779172986745834,
- -0.05531883239746094,
- 0.0076932539232075214,
- -0.05535893887281418,
- -0.10445535182952881,
- -0.065047487616539,
- -0.06681521236896515,
- -0.0032633808441460133,
- 0.02281809225678444,
- -0.013454511761665344,
- 0.0027654306031763554,
- 0.02837725542485714,
- -0.012602443806827068,
- -0.10116289556026459,
- 0.11002402752637863,
- 0.12446467578411102,
- 0.011146333999931812,
- 0.07168593257665634,
- -0.007201550994068384,
- -0.07879524677991867,
- -0.0051895733922719955,
- 0.0758737102150917,
- 0.023075981065630913,
- 0.013933333568274975,
- 0.06761004775762558,
- 0.06363488733768463,
- -0.022307123988866806,
- 0.014322873204946518,
- 0.048012763261795044,
- -0.006169692147523165,
- -0.020036134868860245,
- 0.028711246326565742,
- 0.0024158251471817493,
- 0.01791265234351158,
- 0.006162035744637251,
- -0.013359196484088898,
- -0.02903161570429802,
- 0.050654731690883636,
- 0.017428776249289513,
- -0.009843641892075539,
- 0.06600905954837799,
- -0.08901692926883698,
- -0.030004817992448807,
- 0.11740374565124512,
- -0.016161713749170303,
- 0.017919939011335373,
- 0.008310966193675995,
- -0.06949856877326965,
- -0.07762263715267181,
- 0.04494493827223778,
- 0.16653263568878174,
- -0.027465004473924637,
- 0.09510874003171921,
- -0.10963376611471176,
- -0.02387482300400734,
- 0.06602736562490463,
- -0.0789056122303009,
- -0.07191001623868942,
- -0.06692330539226532,
- 0.006630249787122011,
- 0.047850579023361206,
- -0.0330827422440052,
- -0.03101731836795807,
- 0.017198173329234123,
- -0.05612705275416374,
- 0.0802079513669014,
- 0.01426283735781908,
- -0.05623650178313255,
- -0.03824037313461304,
- -0.006501214578747749,
- -0.07386872172355652,
- 0.01971789449453354,
- -0.012869535014033318,
- -0.04387712478637695,
- 0.12219922989606857,
- -0.10687610507011414,
- -0.08373838663101196,
- -0.05673183128237724,
- -9.851653768703469e-34,
- 0.014063650742173195,
- -0.01266202237457037,
- 0.04726437106728554,
- 0.07113684713840485,
- 0.042429130524396896,
- -0.00980028323829174,
- -0.015882955864071846,
- -0.06114974990487099,
- 0.04153147712349892,
- -0.016728729009628296,
- 0.009105459786951542,
- 0.007201463915407658,
- -0.030436500906944275,
- 0.026200059801340103,
- -0.011421581730246544,
- 0.025898141786456108,
- -0.0498250387609005,
- 0.05531751364469528,
- -0.011143393814563751,
- -0.01138135977089405,
- -0.024782925844192505,
- -0.024783175438642502,
- -0.003753612982109189,
- 0.0016783223254606128,
- -0.042824700474739075,
- -0.07040014117956161,
- -0.06728775054216385,
- -0.053081873804330826,
- -0.06313210725784302,
- 0.04035698622465134,
- 0.03252243623137474,
- -0.007043663877993822,
- -0.020076345652341843,
- -0.047135788947343826,
- 0.026499111205339432,
- -0.09360797703266144,
- -0.018127471208572388,
- -0.010254624299705029,
- 0.047320254147052765,
- 0.05064916983246803,
- -0.020484069362282753,
- 0.048619695007801056,
- 0.03477343171834946,
- 0.019850973039865494,
- 0.0061232117004692554,
- 0.0578593946993351,
- -0.006003429647535086,
- 0.027970975264906883,
- -0.019023749977350235,
- 0.06933945417404175,
- 0.028052231296896935,
- 0.001410366385243833,
- 0.07002437114715576,
- -0.021531149744987488,
- -0.03394133597612381,
- 0.0451393760740757,
- -0.04014395922422409,
- -0.0020582489669322968,
- -0.04716886579990387,
- 0.007899971678853035,
- 0.030787046998739243,
- 0.07847914099693298,
- -0.04628858342766762,
- 0.04002814367413521,
- 0.04542019963264465,
- -0.013181007467210293,
- 0.01568954437971115,
- -0.0993504598736763,
- 0.011027391068637371,
- 0.028637196868658066,
- -0.005891701672226191,
- 0.030212007462978363,
- -0.055439721792936325,
- -0.01513446494936943,
- -0.04453565552830696,
- 0.033586934208869934,
- -0.10848928987979889,
- 0.03380586951971054,
- 0.07512956112623215,
- 0.007260036654770374,
- -0.07543125003576279,
- 0.04817260429263115,
- -0.02372276969254017,
- -0.016673006117343903,
- -0.06008234992623329,
- 0.04849938303232193,
- -0.011716753244400024,
- -0.0807090476155281,
- -0.025034671649336815,
- 0.11849267035722733,
- 0.05762338265776634,
- -0.043517306447029114,
- -0.03407450020313263,
- -0.07361766695976257,
- -0.04320162162184715,
- 1.1415882264632764e-33,
- -0.13980180025100708,
- -0.022647719830274582,
- 0.0021938947029411793,
- 0.004812922328710556,
- 0.015699461102485657,
- 0.009588931687176228,
- -0.029043149203062057,
- 0.019312728196382523,
- -0.03101378306746483,
- 0.10945586115121841,
- -0.059402406215667725,
- -0.051316700875759125,
- 0.0057843271642923355,
- -0.0020387438125908375,
- 0.04034119099378586,
- -0.008550806902348995,
- 0.13007380068302155,
- 0.039122287184000015,
- -0.11079010367393494,
- -0.027175815775990486,
- -0.00629611499607563,
- 0.04567010700702667,
- 0.009627900086343288,
- -0.0629153624176979,
- -0.03189834952354431,
- 0.03131110966205597,
- 0.06513553857803345,
- -0.04755474999547005,
- 0.038032859563827515,
- -0.013098795898258686,
- -0.012966160662472248,
- 0.05724771320819855,
- -0.08454544097185135,
- -0.10142391920089722,
- -0.02592802420258522,
- 0.016966866329312325,
- 0.02472658082842827,
- 0.12475674599409103,
- -0.08375559002161026,
- -0.03879183903336525,
- 0.056936487555503845,
- 0.00908698234707117,
- -0.016642922535538673,
- -0.016369378194212914,
- -0.010777764953672886,
- -0.0554199181497097,
- -0.057068563997745514,
- -0.014834658242762089,
- 0.12360857427120209,
- 0.04632219672203064,
- -0.05285372957587242,
- -0.05624857917428017,
- 0.04925108700990677,
- -0.009923403151333332,
- -0.015658678486943245,
- -0.036280687898397446,
- 0.04104413837194443,
- 0.019376011565327644,
- 0.08786725252866745,
- -0.07515402138233185,
- 0.003382790833711624,
- 0.036894917488098145,
- -0.08301360160112381,
- -0.004713252652436495,
- -0.021146107465028763,
- -0.007502938620746136,
- -0.08950464427471161,
- 0.01691407896578312,
- 0.01193294022232294,
- -0.008588358759880066,
- 0.003475267207249999,
- -0.02264312095940113,
- -0.030901391059160233,
- -0.08272352814674377,
- -0.025691645219922066,
- -0.03995412960648537,
- -0.07164369523525238,
- 0.049826718866825104,
- -0.058641429990530014,
- -0.04844733700156212,
- 0.003646510187536478,
- -0.045290641486644745,
- -0.029052143916487694,
- 0.07159304618835449,
- 0.017016008496284485,
- -0.05451453849673271,
- 0.10906700789928436,
- -0.027285972610116005,
- 0.013591504655778408,
- 0.017843713983893394,
- 0.02234853059053421,
- 0.04718056321144104,
- -0.05776260420680046,
- 0.028819870203733444,
- 0.02324465848505497,
- -1.6699972960054765e-8,
- 0.007719677872955799,
- -0.022987617179751396,
- 0.013140751980245113,
- 0.07353425025939941,
- 0.030253617092967033,
- 0.08665866404771805,
- 0.027766624465584755,
- -0.020544130355119705,
- -0.07376448810100555,
- -0.00514537189155817,
- -0.05362158268690109,
- 0.0206527691334486,
- 0.09045743197202682,
- 0.040882840752601624,
- 0.019881999120116234,
- -0.03666654974222183,
- 0.024653811007738113,
- -0.028337642550468445,
- -0.010393822565674782,
- -0.011983294039964676,
- 0.04557408392429352,
- 0.031251002103090286,
- 0.0019340980798006058,
- 0.006673365831375122,
- 0.011785718612372875,
- 0.005595891736447811,
- -0.04720396548509598,
- 0.029643835499882698,
- 0.025744706392288208,
- -0.006261666305363178,
- 0.03085452690720558,
- 0.045769672840833664,
- -0.12771199643611908,
- -0.024853309616446495,
- 0.04565880820155144,
- -0.0686955451965332,
- 0.019119588658213615,
- -0.07067300379276276,
- 0.03128436952829361,
- 0.029184838756918907,
- -0.048019666224718094,
- 0.009052389301359653,
- 0.050181303173303604,
- 0.09158053994178772,
- 0.020004546269774437,
- 0.03672317415475845,
- -0.031351227313280106,
- -0.004374628886580467,
- 0.0001453172881156206,
- 0.046015188097953796,
- -0.03168056532740593,
- -0.03154849633574486,
- -0.010491388849914074,
- 0.05736815929412842,
- 0.02397032082080841,
- -0.06661245971918106,
- 0.023281943053007126,
- 0.054541800171136856,
- -0.030416173860430717,
- 0.038575295358896255,
- 0.1344858556985855,
- 0.05939453840255737,
- 0.05695917457342148,
- -0.031918685883283615
- ]
- },
- {
- "keyword": "credit",
- "type": "attributedTo",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.0621996708214283,
- 0.06218437850475311,
- -0.007133921608328819,
- 0.024290485307574272,
- 0.024485373869538307,
- -0.004788268357515335,
- 0.11850204318761826,
- 0.04277077689766884,
- 0.05432005971670151,
- -0.013180453330278397,
- -0.02236613817512989,
- -0.1208127811551094,
- 0.007805058732628822,
- -0.01656533218920231,
- -0.11417996138334274,
- -0.06248517706990242,
- 0.017456887289881706,
- -0.0038978271186351776,
- -0.08108992129564285,
- -0.016293639317154884,
- -0.06722075492143631,
- 0.04771534353494644,
- 0.04660159721970558,
- 0.021700318902730942,
- 0.044436145573854446,
- 0.08906485885381699,
- -0.09648240357637405,
- 0.05529306083917618,
- -0.028334474191069603,
- -0.08891868591308594,
- 0.03594432771205902,
- 0.08469443023204803,
- 0.1532459706068039,
- -0.01802433282136917,
- -0.07228665798902512,
- 0.01560306828469038,
- -0.009353844448924065,
- 0.034460388123989105,
- 0.002736651338636875,
- -0.02492806501686573,
- 0.007596876006573439,
- -0.061961766332387924,
- -0.015433087944984436,
- -0.049870967864990234,
- -0.030477233231067657,
- 0.033502932637929916,
- 0.02885318174958229,
- -0.05279403179883957,
- 0.02616533264517784,
- 0.07584504038095474,
- -0.06911510229110718,
- 0.024012062698602676,
- -0.06391219049692154,
- -0.05769385024905205,
- -0.04994891956448555,
- 0.006758952047675848,
- 0.04313863068819046,
- 0.006103071849793196,
- -0.00007398505113087595,
- -0.056957751512527466,
- 0.06929919868707657,
- -0.006052002310752869,
- -0.025926023721694946,
- 0.08044731616973877,
- 0.07843052595853806,
- 0.024569615721702576,
- 0.026177063584327698,
- 0.07398761063814163,
- -0.06624851375818253,
- -0.055632490664720535,
- 0.07288897782564163,
- 0.014150855131447315,
- -0.03675895184278488,
- -0.02946377918124199,
- 0.0865897461771965,
- 0.07914987206459045,
- -0.006279731635004282,
- -0.01773211918771267,
- 0.011722251772880554,
- 0.04453275352716446,
- -0.035103339701890945,
- 0.009533515200018883,
- -0.02710545063018799,
- -0.044191282242536545,
- -0.015322783961892128,
- -0.0008486733422614634,
- 0.021189166232943535,
- -0.010419074445962906,
- -0.03698645532131195,
- -0.006617167964577675,
- -0.04390883818268776,
- 0.0021660863421857357,
- 0.14902086555957794,
- -0.03835419937968254,
- -0.03023264743387699,
- -0.022615114226937294,
- -0.08696233481168747,
- -0.06991886347532272,
- -0.02054653689265251,
- 0.20529614388942719,
- 0.009578442201018333,
- 0.0978684350848198,
- -0.08097182214260101,
- 0.015722306445240974,
- 0.027187535539269447,
- 0.00900388415902853,
- 0.01196889579296112,
- 0.06856975704431534,
- 0.0206205602735281,
- -0.047061387449502945,
- -0.017867762595415115,
- -0.015608087182044983,
- -0.00812001433223486,
- -0.01730203442275524,
- -0.02907690964639187,
- 0.08613735437393188,
- -0.04592341184616089,
- 0.0031547232065349817,
- 0.04545078054070473,
- -0.014095590449869633,
- 0.028758594766259193,
- 0.040844496339559555,
- -0.07612176984548569,
- -0.015891853719949722,
- -0.10192692279815674,
- -0.08143296092748642,
- -0.016853097826242447,
- -3.7327878211659435e-33,
- 0.02822650782763958,
- 0.01689554937183857,
- 0.06609223037958145,
- -0.012488092295825481,
- -0.04783920571208,
- -0.03088006190955639,
- -0.04533695429563522,
- 0.03365889564156532,
- -0.07173271477222443,
- 0.08401571959257126,
- 0.028799455612897873,
- 0.029118241742253304,
- -0.060524869710206985,
- 0.010979264043271542,
- 0.04101011902093887,
- 0.0795697420835495,
- -0.04595731198787689,
- -0.04639241099357605,
- 0.030278801918029785,
- 0.01812782511115074,
- -0.03673001006245613,
- 0.003590906038880348,
- 0.030528146773576736,
- 0.0765799731016159,
- 0.0536687970161438,
- -0.057802293449640274,
- 0.03275038301944733,
- 0.008727116510272026,
- 0.028820933774113655,
- -0.009970514103770256,
- -0.06512648612260818,
- 0.0016168002039194107,
- 0.048644501715898514,
- 0.029188117012381554,
- -0.037806060165166855,
- -0.0035725561901926994,
- -0.003782143583521247,
- -0.052812106907367706,
- 0.0634550005197525,
- -0.0505734346807003,
- 0.06910937279462814,
- 0.008362838067114353,
- -0.14315582811832428,
- -0.027733489871025085,
- -0.026699109002947807,
- 0.02598806843161583,
- 0.043626848608255386,
- -0.02428615093231201,
- -0.0495489127933979,
- 0.11439613252878189,
- 0.02918880619108677,
- 0.03670283779501915,
- -0.09473370015621185,
- -0.04627431184053421,
- -0.04881058260798454,
- -0.0038102194666862488,
- 0.046560559421777725,
- -0.011618003249168396,
- -0.04299819469451904,
- -0.05945464223623276,
- 0.005438774358481169,
- -0.05097531899809837,
- -0.05121573805809021,
- -0.012741965241730213,
- -0.02735418640077114,
- 0.030145537108182907,
- 0.04703141748905182,
- 0.0024543481413275003,
- -0.010817739181220531,
- 0.05520705506205559,
- -0.07902493327856064,
- -0.034270577132701874,
- 0.03747401759028435,
- 0.04414968192577362,
- 0.016831187531352043,
- -0.04099584370851517,
- -0.02311306819319725,
- 0.02779761143028736,
- 0.01636280119419098,
- 0.02584834210574627,
- -0.07984907180070877,
- 0.014577032998204231,
- 0.010488426312804222,
- 0.06152912229299545,
- 0.00807617325335741,
- 0.0877910777926445,
- 0.04046178236603737,
- -0.08747568726539612,
- 0.059000734239816666,
- 0.011771079152822495,
- -0.024884343147277832,
- -0.03743269667029381,
- 0.046121612191200256,
- -0.011431579478085041,
- 0.08407209068536758,
- 2.4441154048785476e-33,
- -0.03916630148887634,
- -0.05209199711680412,
- -0.08562256395816803,
- 0.052807118743658066,
- 0.01011719647794962,
- -0.016003498807549477,
- -0.02810056507587433,
- 0.0165842454880476,
- -0.01196668203920126,
- 0.09047306329011917,
- -0.024845853447914124,
- -0.08663571625947952,
- 0.05208125710487366,
- 0.057161346077919006,
- 0.050679851323366165,
- -0.014866359531879425,
- 0.08417423814535141,
- 0.013803064823150635,
- -0.005581309553235769,
- -0.016569780185818672,
- 0.02593999169766903,
- -0.02274390123784542,
- 0.06804100424051285,
- -0.06560349464416504,
- 0.012420909479260445,
- 0.026265906170010567,
- 0.004119699355214834,
- -0.0304980780929327,
- 0.02564001828432083,
- -0.02564440853893757,
- 0.0545639842748642,
- -0.0033693620935082436,
- -0.03005785122513771,
- 0.020711075514554977,
- -0.011371618136763573,
- 0.056979451328516006,
- 0.0015105480561032891,
- 0.06320542097091675,
- -0.00989549607038498,
- 0.02919125370681286,
- 0.05048806220293045,
- -0.04326619952917099,
- 0.015212012454867363,
- 0.06263502687215805,
- -0.04199386388063431,
- -0.05154429003596306,
- 0.056516651064157486,
- -0.0283524077385664,
- -0.007571577560156584,
- 0.05581386759877205,
- -0.15751631557941437,
- 0.028807258233428,
- -0.0472072996199131,
- -0.026584874838590622,
- -0.05420411005616188,
- 0.024707047268748283,
- 0.043699994683265686,
- 0.06249169260263443,
- 0.003946319688111544,
- -0.024049993604421616,
- -0.02172134444117546,
- 0.08965333551168442,
- -0.04766131937503815,
- 0.011465342715382576,
- 0.006879566237330437,
- 0.009639048017561436,
- -0.010430748574435711,
- -0.033762652426958084,
- -0.004652850329875946,
- 0.034968528896570206,
- 0.06359609216451645,
- 0.051818348467350006,
- 0.008266341872513294,
- 0.06449022144079208,
- -0.06290654838085175,
- 0.0041109295561909676,
- -0.10703480988740921,
- 0.10266492515802383,
- -0.09086239337921143,
- -0.0734420120716095,
- -0.07396000623703003,
- 0.013419320806860924,
- 0.018313787877559662,
- 0.09860298037528992,
- 0.03201477229595184,
- -0.03819221630692482,
- 0.025303520262241364,
- -0.08385813981294632,
- -0.050650712102651596,
- -0.05984106287360191,
- -0.02096666395664215,
- 0.009842717088758945,
- 0.024730028584599495,
- 0.004351009614765644,
- -0.0404357835650444,
- -1.3099802131932847e-8,
- -0.023337172344326973,
- 0.012896156869828701,
- -0.04187539964914322,
- 0.028727391734719276,
- 0.103066086769104,
- 0.05288832262158394,
- -0.032214436680078506,
- 0.025010310113430023,
- 0.029949668794870377,
- 0.0748937651515007,
- 0.02033321186900139,
- -0.007392790634185076,
- -0.044355981051921844,
- -0.007045796141028404,
- 0.04326152801513672,
- -0.007975955493748188,
- -0.02894076518714428,
- -0.03482111915946007,
- -0.012547394260764122,
- 0.07070955634117126,
- -0.008825162425637245,
- -0.03573296219110489,
- 0.02125627174973488,
- 0.03957819938659668,
- -0.04924924671649933,
- -0.0026437321212142706,
- 0.07976791262626648,
- 0.1553977131843567,
- 0.07868420332670212,
- 0.025758808478713036,
- -0.014954756014049053,
- 0.08003872632980347,
- 0.006319067440927029,
- -0.08786915242671967,
- 0.047401342540979385,
- -0.07784414291381836,
- 0.030773703008890152,
- -0.0075018457137048244,
- -0.02953748218715191,
- -0.0675683468580246,
- -0.054609015583992004,
- -0.025381671264767647,
- 0.00021142882178537548,
- -0.06736268848180771,
- -0.007726723328232765,
- -0.003829482477158308,
- -0.004563720431178808,
- 0.005658651236444712,
- 0.04704751819372177,
- -0.05234605818986893,
- -0.016749529168009758,
- 0.024613333866000175,
- 0.031220493838191032,
- 0.05750978738069534,
- 0.019550861790776253,
- -0.04126640781760216,
- 0.01452301163226366,
- 0.025768272578716278,
- -0.039660438895225525,
- -0.017659910023212433,
- 0.14076270163059235,
- -0.025218147784471512,
- 0.05329437553882599,
- 0.008867944590747356
- ]
- },
- {
- "keyword": "acknowledgment",
- "type": "attributedTo",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.08967161923646927,
- 0.0029336882289499044,
- -0.03198244422674179,
- 0.06618117541074753,
- -0.010585065931081772,
- 0.031160935759544373,
- 0.14865919947624207,
- -0.005921830888837576,
- 0.009069184772670269,
- 0.016757572069764137,
- 0.07460612803697586,
- -0.10466328263282776,
- 0.04118414968252182,
- -0.015021084807813168,
- -0.0950041189789772,
- 0.010403331369161606,
- 0.04712606966495514,
- 0.027479151263833046,
- -0.07323111593723297,
- -0.07317612320184708,
- 0.014577776193618774,
- 0.06956679373979568,
- 0.04345831647515297,
- 0.056457556784152985,
- 0.02964661456644535,
- -0.05812457203865051,
- -0.06975198537111282,
- 0.025796988978981972,
- 0.02445361763238907,
- -0.04043043404817581,
- 0.007189568597823381,
- 0.0062140231020748615,
- 0.07782423496246338,
- -0.008848108351230621,
- -0.028851861134171486,
- 0.02288653329014778,
- 0.035495977848768234,
- -0.016701463609933853,
- 0.023169074207544327,
- -0.06429636478424072,
- -0.009822465479373932,
- -0.06051896512508392,
- -0.05899589881300926,
- 0.0296330563724041,
- 0.038827359676361084,
- 0.006569174584001303,
- -0.017964256927371025,
- -0.0057679819874465466,
- -0.027425765991210938,
- 0.010534300468862057,
- 0.036446381360292435,
- -0.06005752831697464,
- -0.058278970420360565,
- -0.020573241636157036,
- -0.011871558614075184,
- 0.03531540185213089,
- -0.03693874552845955,
- -0.004662787541747093,
- 0.008874867111444473,
- 0.0037183661479502916,
- 0.061608850955963135,
- -0.08289054036140442,
- -0.029010603204369545,
- 0.02842819131910801,
- -0.03210803493857384,
- -0.03860577195882797,
- -0.004198026843369007,
- -0.0635911375284195,
- 0.005221377592533827,
- 0.005612155422568321,
- -0.028901996091008186,
- 0.052855994552373886,
- 0.08741245418787003,
- 0.0260178092867136,
- 0.018940577283501625,
- -0.018985023722052574,
- 0.04005073755979538,
- -0.006978736259043217,
- 0.015356254763901234,
- 0.009309682063758373,
- -0.004978277254849672,
- 0.045059170573949814,
- -0.011477203108370304,
- -0.0434788316488266,
- 0.0030923441518098116,
- -0.060553405433893204,
- -0.033821456134319305,
- 0.03542076796293259,
- -0.0362948477268219,
- 0.03537750989198685,
- -0.050482917577028275,
- -0.014266571961343288,
- -0.04517523944377899,
- -0.03705707564949989,
- 0.01692778989672661,
- -0.042573750019073486,
- -0.027430681511759758,
- 0.005195107311010361,
- -0.12713487446308136,
- 0.11503936350345612,
- 0.0018779787933453918,
- 0.04494424909353256,
- -0.04824202135205269,
- -0.019924676045775414,
- 0.01066588144749403,
- 0.007577501703053713,
- -0.08991687744855881,
- 0.0017477485816925764,
- 0.02520012855529785,
- 0.030642889440059662,
- -0.012698374688625336,
- 0.004396607168018818,
- 0.024849630892276764,
- -0.04782416671514511,
- 0.020167598500847816,
- 0.15453790128231049,
- 0.0004051339637953788,
- 0.030951187014579773,
- 0.09410317242145538,
- -0.07225079089403152,
- -0.014781149104237556,
- -0.007361166179180145,
- 0.01810724474489689,
- -0.001064768061041832,
- -0.02846093662083149,
- -0.022914092987775803,
- 0.0833423063158989,
- 5.672374622186834e-34,
- 0.033842798322439194,
- 0.030332723632454872,
- 0.008288866840302944,
- 0.030884049832820892,
- 0.040703482925891876,
- 0.06858626753091812,
- -0.0940655767917633,
- -0.03490569815039635,
- -0.09154313802719116,
- -0.10169028490781784,
- 0.09481622278690338,
- 0.06034751236438751,
- -0.026149822399020195,
- -0.025200190022587776,
- -0.05173913761973381,
- -0.029948389157652855,
- -0.039453573524951935,
- 0.14561216533184052,
- -0.0313941165804863,
- -0.04783548787236214,
- 0.04120531305670738,
- 0.02049678936600685,
- 0.07290693372488022,
- 0.028022872284054756,
- -0.016811048611998558,
- -0.05897951126098633,
- -0.0008688921807333827,
- -0.01708448864519596,
- -0.00030056675313971937,
- 0.03973500430583954,
- -0.033187638968229294,
- 0.052004825323820114,
- 0.009556848555803299,
- -0.015675939619541168,
- 0.002676514908671379,
- 0.06827190518379211,
- 0.0026744676288217306,
- -0.09778106957674026,
- 0.04007496312260628,
- -0.044675469398498535,
- 0.0234784334897995,
- -0.00463862856850028,
- -0.0857308954000473,
- -0.06352026015520096,
- 0.015800999477505684,
- 0.01236134022474289,
- 0.036209482699632645,
- 0.05585412681102753,
- 0.10679794102907181,
- 0.05369841679930687,
- -0.014153867028653622,
- -0.0014120072592049837,
- -0.03584718331694603,
- -0.08633989840745926,
- -0.0379628986120224,
- 0.00026704283664003015,
- -0.04166342690587044,
- -0.000896219804417342,
- 0.011779201216995716,
- -0.01615944132208824,
- 0.006234032101929188,
- 0.05319220572710037,
- 0.02247527986764908,
- -0.07585275173187256,
- -0.025967678055167198,
- 0.009792358614504337,
- 0.022817140445113182,
- 0.01083093136548996,
- -0.02773820050060749,
- -0.017080657184123993,
- -0.018119707703590393,
- -0.005590979941189289,
- 0.02342953346669674,
- 0.12069619446992874,
- -0.03414882719516754,
- 0.004676537122577429,
- -0.032468292862176895,
- 0.006388976238667965,
- 0.08655223995447159,
- -0.03159108757972717,
- 0.027256449684500694,
- 0.05927175283432007,
- -0.02898414433002472,
- -0.04124627262353897,
- -0.010265556164085865,
- 0.03310410678386688,
- 0.022823289036750793,
- 0.024741467088460922,
- -0.04782804101705551,
- 0.10145297646522522,
- -0.04519667103886604,
- 0.09188809990882874,
- 0.051782604306936264,
- 0.05147930979728699,
- -0.04131333529949188,
- -2.6596768242483694e-33,
- 0.027324751019477844,
- 0.02221589721739292,
- -0.12610746920108795,
- 0.001125846290960908,
- 0.032539546489715576,
- -0.01569201610982418,
- -0.047843270003795624,
- 0.1155414953827858,
- -0.09334614127874374,
- 0.040811337530612946,
- 0.04069144278764725,
- 0.04022086039185524,
- -0.02228092961013317,
- 0.009889107197523117,
- 0.005097631830722094,
- 0.030594926327466965,
- 0.09891580045223236,
- 0.05073291435837746,
- -0.04749355465173721,
- 0.04631396010518074,
- -0.06497692316770554,
- -0.03395480290055275,
- -0.051827769726514816,
- -0.04319257289171219,
- 0.02132708765566349,
- 0.030837535858154297,
- 0.03948394954204559,
- 0.028091030195355415,
- -0.05149932950735092,
- -0.13050948083400726,
- 0.028630807995796204,
- 0.053050875663757324,
- -0.1556307077407837,
- -0.043183185160160065,
- 0.0029916989151388407,
- -0.06275339424610138,
- 0.11445072293281555,
- -0.014400632120668888,
- -0.04670199379324913,
- 0.07026094198226929,
- 0.07136105746030807,
- 0.022738412022590637,
- -0.09872283041477203,
- 0.07028892636299133,
- -0.009826119989156723,
- -0.09188313037157059,
- 0.015630727633833885,
- -0.009718035347759724,
- 0.09472309052944183,
- -0.008051063865423203,
- -0.056458730250597,
- -0.047949351370334625,
- 0.0377066433429718,
- -0.00827367790043354,
- -0.037247832864522934,
- 0.10280702263116837,
- -0.03649869188666344,
- 0.046103335916996,
- 0.06562884151935577,
- -0.06970423460006714,
- -0.014293165877461433,
- -0.0024167613591998816,
- -0.005125713534653187,
- 0.043361593037843704,
- 0.10301737487316132,
- -0.0244026817381382,
- 0.000048363697715103626,
- 0.053442828357219696,
- 0.05122850462794304,
- -0.001240812474861741,
- 0.0322594977915287,
- -0.023132596164941788,
- -0.0966901183128357,
- -0.12190744280815125,
- 0.08040227741003036,
- -0.034471094608306885,
- -0.06117939576506615,
- -0.02179911360144615,
- -0.1336420178413391,
- -0.027564920485019684,
- -0.011816377751529217,
- -0.009569967165589333,
- 0.04100413993000984,
- 0.016343820840120316,
- 0.007427430246025324,
- -0.05442142114043236,
- 0.08769126981496811,
- -0.0057143899612128735,
- 0.019326452165842056,
- 0.030193176120519638,
- -0.01997469551861286,
- -0.022034574300050735,
- -0.06315913051366806,
- 0.011772854253649712,
- 0.01054079644382,
- -2.215210237466181e-8,
- -0.01647530496120453,
- 0.10392656177282333,
- -0.06357274204492569,
- -0.0429610051214695,
- 0.07173261791467667,
- 0.022594459354877472,
- -0.042400725185871124,
- 0.02710198052227497,
- -0.06431461125612259,
- -0.043407123535871506,
- -0.048099584877491,
- -0.0333317294716835,
- -0.0035242303274571896,
- 0.03749733790755272,
- 0.04763377830386162,
- -0.0644291564822197,
- 0.00239418912678957,
- 0.018792778253555298,
- -0.0007977261557243764,
- 0.007075154222548008,
- -0.020319368690252304,
- 0.013467046432197094,
- 0.011973311193287373,
- -0.01893540285527706,
- -0.059660524129867554,
- -0.030925190076231956,
- 0.001391558675095439,
- 0.09248436242341995,
- -0.04740799963474274,
- 0.008323474787175655,
- -0.018516642972826958,
- 0.014324736781418324,
- -0.024241941049695015,
- -0.08318699896335602,
- 0.041947588324546814,
- 0.0542248860001564,
- 0.04342283308506012,
- -0.08787000924348831,
- 0.043236926198005676,
- -0.11205165088176727,
- 0.013939225114881992,
- -0.005430997349321842,
- 0.1003156304359436,
- 0.0530228354036808,
- -0.023192739114165306,
- 0.007980694063007832,
- 0.08623356372117996,
- -0.0559578575193882,
- -0.06634752452373505,
- 0.018902897834777832,
- -0.05294008180499077,
- -0.005437247920781374,
- 0.0470079630613327,
- 0.08929330855607986,
- 0.07423514127731323,
- 0.029635464772582054,
- -0.02787186950445175,
- -0.03851607069373131,
- -0.02961566112935543,
- -0.06152867153286934,
- 0.05152669548988342,
- -0.004069252870976925,
- -0.04956970736384392,
- 0.004272252321243286
- ]
- },
- {
- "keyword": "created by",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.070864237844944,
- -0.013840063475072384,
- -0.05958914756774902,
- 0.06884486973285675,
- 0.0031805052421987057,
- -0.06701316684484482,
- 0.10636430978775024,
- -0.025151656940579414,
- 0.03941364958882332,
- 0.03241449594497681,
- 0.042081255465745926,
- 0.02679307572543621,
- 0.08767002075910568,
- -0.03721078857779503,
- -0.09903452545404434,
- 0.04377882182598114,
- -0.02404060587286949,
- -0.09155738353729248,
- -0.06625577062368393,
- -0.07874472439289093,
- 0.04546776041388512,
- -0.003157223341986537,
- 0.021033259108662605,
- 0.008724524639546871,
- 0.0520140640437603,
- 0.004792414139956236,
- 0.007889952510595322,
- 0.03185071051120758,
- 0.13770301640033722,
- -0.050055112689733505,
- 0.022359907627105713,
- 0.010604197159409523,
- 0.04076395928859711,
- 0.004627543967217207,
- -0.032349955290555954,
- 0.0015099839074537158,
- 0.06610234081745148,
- 0.004034865647554398,
- 0.04360467568039894,
- -0.02148822695016861,
- -0.06007324531674385,
- -0.02523059956729412,
- 0.04535428062081337,
- 0.02688007429242134,
- -0.016124173998832703,
- 0.04178342968225479,
- 0.010797401890158653,
- -0.007816342636942863,
- -0.0290242750197649,
- 0.07433056086301804,
- -0.12908348441123962,
- 0.015712125226855278,
- -0.01778043434023857,
- -0.13386191427707672,
- 0.006798963528126478,
- 0.01907709240913391,
- -0.061131224036216736,
- -0.031266726553440094,
- -0.054057009518146515,
- -0.01303891558200121,
- 0.026858823373913765,
- 0.059189777821302414,
- -0.0804239884018898,
- 0.0168839730322361,
- 0.06315164268016815,
- 0.00883049052208662,
- 0.03620734065771103,
- 0.041967008262872696,
- 0.026658648625016212,
- -0.08412163704633713,
- 0.039490703493356705,
- 0.038076773285865784,
- -0.016132306307554245,
- 0.06074563041329384,
- 0.02759641595184803,
- 0.00027323412359692156,
- 0.023540286347270012,
- 0.040312156081199646,
- -0.018640460446476936,
- 0.027889348566532135,
- 0.016242612153291702,
- 0.07725553959608078,
- -0.05497542768716812,
- 0.0032127522863447666,
- -0.007756817154586315,
- -0.0029989213217049837,
- 0.11504071205854416,
- 0.015887290239334106,
- 0.030458657070994377,
- 0.02463747002184391,
- -0.016080249100923538,
- 0.09149318933486938,
- 0.027277065441012383,
- -0.007653976324945688,
- -0.07493611425161362,
- 0.04325854778289795,
- 0.012510734610259533,
- 0.008983713574707508,
- 0.033922892063856125,
- 0.16358621418476105,
- -0.0392327606678009,
- -0.029982872307300568,
- -0.10004166513681412,
- 0.005961344577372074,
- 0.09622672945261002,
- -0.01013428159058094,
- -0.05771886184811592,
- 0.0026241440791636705,
- 0.005303143057972193,
- 0.05244068428874016,
- -0.029339006170630455,
- -0.002982306992635131,
- -0.028466947376728058,
- 0.047309692949056625,
- 0.06546683609485626,
- 0.061659540981054306,
- -0.031429875642061234,
- 0.0207089651376009,
- 0.024017762392759323,
- -0.003968391101807356,
- 0.10833526402711868,
- 0.05130850151181221,
- -0.0639277920126915,
- 0.013091678731143475,
- -0.05755654349923134,
- -0.006253254599869251,
- 0.03224789723753929,
- -3.493234562095839e-33,
- 0.08441165089607239,
- 0.02270871214568615,
- 0.05506161227822304,
- 0.08911636471748352,
- 0.0635300725698471,
- -0.014613600447773933,
- 0.007953757420182228,
- 0.014332403428852558,
- -0.06441514194011688,
- -0.06378182023763657,
- 0.012188734486699104,
- -0.01260428037494421,
- -0.00959533266723156,
- -0.017209457233548164,
- 0.06717474013566971,
- -0.04916642606258392,
- 0.01743614487349987,
- -0.10531103610992432,
- -0.059590596705675125,
- -0.05397946760058403,
- -0.0864274799823761,
- 0.05636901780962944,
- 0.03437437489628792,
- -0.010976972058415413,
- -0.06088821589946747,
- 0.006064415909349918,
- -0.023952219635248184,
- -0.07663753628730774,
- 0.00179597781971097,
- 0.040843166410923004,
- 0.024556338787078857,
- -0.041893597692251205,
- -0.037354424595832825,
- 0.002648700727149844,
- -0.027096834033727646,
- 0.021821513772010803,
- -0.06303118914365768,
- -0.010121110826730728,
- 0.019757749512791634,
- 0.05614878237247467,
- 0.017024997621774673,
- -0.04339448735117912,
- -0.0006487149512395263,
- -0.05742271617054939,
- -0.012875954620540142,
- 0.055119577795267105,
- 0.03875095024704933,
- 0.0289667509496212,
- 0.04780401661992073,
- 0.030627494677901268,
- -0.02660522051155567,
- -0.049929097294807434,
- 0.006860724650323391,
- -0.011961851269006729,
- 0.02258540317416191,
- -0.037969544529914856,
- -0.056042078882455826,
- -0.0464666523039341,
- 0.05542765557765961,
- -0.002150419168174267,
- -0.012255833484232426,
- 0.101152703166008,
- -0.017122533172369003,
- 0.08297212421894073,
- -0.03869534283876419,
- -0.03744226694107056,
- 0.11932669579982758,
- -0.051786620169878006,
- 0.027037842199206352,
- 0.020208263769745827,
- -0.061463989317417145,
- 0.032444845885038376,
- -0.015324174426496029,
- 0.06737852841615677,
- -0.03176413103938103,
- -0.08110272884368896,
- -0.02958713285624981,
- 0.021983884274959564,
- -0.0635160580277443,
- -0.01395012903958559,
- 0.0020048979204148054,
- -0.0006701367092318833,
- -0.03240291029214859,
- 0.03842799365520477,
- 0.04433165118098259,
- 0.004202491603791714,
- -0.032390207052230835,
- -0.06862091273069382,
- 0.00210665725171566,
- 0.008597053587436676,
- -0.059857092797756195,
- -0.029976438730955124,
- 0.07177458703517914,
- -0.007164148148149252,
- -0.0854644849896431,
- 1.8776402691134717e-33,
- -0.06971538066864014,
- -0.0692976862192154,
- 0.012137901037931442,
- -0.008919630199670792,
- -0.05805618315935135,
- -0.07055490463972092,
- -0.08369221538305283,
- -0.010053945705294609,
- -0.041447389870882034,
- 0.015304678119719028,
- -0.017120689153671265,
- -0.06138167157769203,
- 0.023825494572520256,
- 0.07536697387695312,
- 0.06578060984611511,
- -0.03726017102599144,
- 0.10212178528308868,
- -0.07935646921396255,
- -0.08744347840547562,
- -0.007991401478648186,
- -0.038991156965494156,
- 0.09452109038829803,
- -0.03578842058777809,
- -0.06336349993944168,
- 0.00595202948898077,
- 0.07342242449522018,
- 0.12683425843715668,
- 0.09289972484111786,
- -0.01952049508690834,
- 0.0025346612092107534,
- -0.004918606486171484,
- -0.027602558955550194,
- -0.0884927436709404,
- -0.04232902079820633,
- -0.0684480369091034,
- -0.010470437817275524,
- -0.00939328782260418,
- 0.02916027419269085,
- 0.008279979228973389,
- -0.03262864425778389,
- 0.05013859272003174,
- 0.07428250461816788,
- -0.04804503545165062,
- 0.12505514919757843,
- -0.022870134562253952,
- -0.03790457546710968,
- 0.06381288170814514,
- -0.002967064268887043,
- 0.046093109995126724,
- 0.055129993706941605,
- -0.015179986134171486,
- -0.03289855271577835,
- 0.012257016263902187,
- -0.09097214788198471,
- -0.036203816533088684,
- -0.04752958565950394,
- 0.07721209526062012,
- 0.03152279555797577,
- 0.11058586090803146,
- -0.019706834107637405,
- -0.06891070306301117,
- 0.03372035175561905,
- -0.020586807280778885,
- -0.007918573915958405,
- -0.0368482880294323,
- -0.05285380035638809,
- -0.06431768089532852,
- 0.04814571142196655,
- -0.0061946287751197815,
- -0.027934400364756584,
- -0.08410206437110901,
- 0.02518913708627224,
- -0.08084341138601303,
- -0.02038431726396084,
- -0.025199441239237785,
- 0.017126793041825294,
- -0.04831615090370178,
- -0.01706000603735447,
- -0.05234861373901367,
- -0.023832792416214943,
- -0.06004439294338226,
- -0.016470646485686302,
- 0.04238968342542648,
- 0.04974140226840973,
- -0.04066167026758194,
- -0.05363399162888527,
- 0.020086847245693207,
- -0.026695996522903442,
- -0.01748054474592209,
- 0.05648767203092575,
- 0.015663646161556244,
- -0.0006730867316946387,
- -0.10918549448251724,
- 0.03339342772960663,
- -0.0077545554377138615,
- -1.3715344415743402e-8,
- 0.007441611494868994,
- 0.0331675224006176,
- -0.03357817977666855,
- 0.08635257184505463,
- 0.0810520201921463,
- 0.06781113892793655,
- 0.029225455597043037,
- -0.016507809981703758,
- 0.004912316799163818,
- 0.003946972079575062,
- 0.0010913436999544501,
- -0.02566980943083763,
- -0.014018639922142029,
- 0.07520754635334015,
- 0.07320315390825272,
- -0.05907079204916954,
- -0.07331530004739761,
- 0.035916589200496674,
- -0.1008506715297699,
- -0.08564364165067673,
- 0.017668524757027626,
- 0.0015202842187136412,
- 0.09224411845207214,
- -0.012168124318122864,
- -0.03558462858200073,
- 0.063955157995224,
- -0.010146837681531906,
- -0.0013273198856040835,
- -0.027572263032197952,
- 0.04521861672401428,
- 0.04960302263498306,
- 0.08153058588504791,
- -0.03330089524388313,
- -0.0070033748634159565,
- 0.07478594034910202,
- -0.07491306215524673,
- -0.02501041628420353,
- -0.00801124144345522,
- 0.031504735350608826,
- -0.11455730348825455,
- -0.03954305872321129,
- 0.12303832173347473,
- 0.023503156378865242,
- 0.015504256822168827,
- -0.032782234251499176,
- -0.048282820731401443,
- 0.05352746322751045,
- -0.0686229020357132,
- 0.00832562055438757,
- -0.007352716289460659,
- -0.016561631113290787,
- -0.005443694535642862,
- 0.09153719246387482,
- -0.011003621853888035,
- 0.014476221054792404,
- 0.019101515412330627,
- 0.014673834666609764,
- 0.06690358370542526,
- 0.008002419024705887,
- -0.005176362581551075,
- 0.06263790279626846,
- -0.007001192774623632,
- 0.10469455271959305,
- 0.048900146037340164
- ]
- },
- {
- "keyword": "made by",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.07537952810525894,
- 0.05380741134285927,
- -0.007220993749797344,
- 0.05859661474823952,
- 0.009903104044497013,
- -0.04232111573219299,
- 0.13398970663547516,
- -0.05054563656449318,
- 0.016515320166945457,
- 0.034356798976659775,
- 0.000009017784577736165,
- 0.03314249590039253,
- 0.044101737439632416,
- -0.05086839944124222,
- -0.07103024423122406,
- 0.012313026934862137,
- -0.020232176408171654,
- -0.011105538345873356,
- -0.06282226741313934,
- -0.07577024400234222,
- -0.03397340327501297,
- 0.009817814454436302,
- 0.028758922591805458,
- -0.016061831265687943,
- 0.06341230869293213,
- 0.07058879733085632,
- -0.011667522601783276,
- 0.05340931564569473,
- 0.11490838974714279,
- -0.06855512410402298,
- 0.022841619327664375,
- 0.05816512927412987,
- -0.009542199783027172,
- -0.01977103017270565,
- -0.06352780759334564,
- -0.02732325717806816,
- 0.0555606447160244,
- -0.03419283777475357,
- 0.040991052985191345,
- 0.01631910540163517,
- -0.06225871294736862,
- -0.013368077576160431,
- 0.04400898143649101,
- 0.022597234696149826,
- -0.011535986326634884,
- 0.07185490429401398,
- 0.041687022894620895,
- -0.014624349772930145,
- -0.017352987080812454,
- 0.08594967424869537,
- -0.09998351335525513,
- 0.02354317344725132,
- -0.04591336473822594,
- -0.09443504363298416,
- 0.0257270410656929,
- 0.018332699313759804,
- -0.06419162452220917,
- -0.026623105630278587,
- -0.004849787335842848,
- 0.005310758017003536,
- -0.008048135787248611,
- 0.051263805478811264,
- -0.09136633574962616,
- 0.02236388437449932,
- 0.09316474944353104,
- 0.04365896061062813,
- 0.06371612101793289,
- 0.006323657464236021,
- -0.013471543788909912,
- -0.07568724453449249,
- 0.025546040385961533,
- 0.024464799091219902,
- -0.0198594331741333,
- 0.017029546201229095,
- 0.011838890612125397,
- 0.01429547555744648,
- 0.0391446091234684,
- -0.0016057759057730436,
- -0.03067508153617382,
- 0.00675498740747571,
- -0.01186423934996128,
- 0.05319312959909439,
- -0.05742134526371956,
- -0.009392703883349895,
- 0.00477548036724329,
- -0.007757679093629122,
- 0.11298718303442001,
- 0.025892464444041252,
- 0.02344064973294735,
- 0.006285592447966337,
- -0.024076692759990692,
- 0.0489971898496151,
- -0.003110166871920228,
- 0.010736205615103245,
- -0.07734674960374832,
- 0.047155093401670456,
- -0.027233079075813293,
- 0.05933798849582672,
- 0.035426437854766846,
- 0.15460938215255737,
- -0.05516314506530762,
- -0.003797444049268961,
- -0.08923143148422241,
- -0.06867130100727081,
- 0.062163371592760086,
- -0.015288281254470348,
- -0.04020635783672333,
- 0.09227591753005981,
- 0.03009701520204544,
- 0.025692706927657127,
- -0.048777662217617035,
- -0.009909690357744694,
- -0.03537604957818985,
- 0.06163794547319412,
- 0.05157524719834328,
- -0.0035461140796542168,
- -0.03016641177237034,
- -0.004290774930268526,
- 0.031246576458215714,
- -0.054364606738090515,
- 0.08850236982107162,
- 0.02667543850839138,
- 0.004551487974822521,
- 0.002104717306792736,
- -0.06641776859760284,
- -0.019995281472802162,
- 0.01484933402389288,
- -2.1748816481341494e-33,
- 0.06706062704324722,
- 0.002334452932700515,
- 0.029191356152296066,
- 0.045186806470155716,
- 0.06709975004196167,
- 0.010417570360004902,
- 0.035483963787555695,
- 0.021638263016939163,
- -0.09133391827344894,
- 0.015470118261873722,
- 0.044327761977910995,
- -0.029247259721159935,
- -0.05933139845728874,
- -0.021604249253869057,
- 0.11854981631040573,
- -0.03024298883974552,
- -0.015250613912940025,
- -0.11021360754966736,
- -0.06017632037401199,
- -0.051295969635248184,
- -0.10783468931913376,
- 0.07568256556987762,
- 0.0007084024255163968,
- 0.015110804699361324,
- -0.06826367974281311,
- -0.02651291713118553,
- -0.03933139517903328,
- -0.05225585401058197,
- -0.010315198451280594,
- 0.025709867477416992,
- 0.05918247252702713,
- 0.017813965678215027,
- -0.0070496429689228535,
- -0.03134358301758766,
- -0.024782096967101097,
- -0.009119770489633083,
- -0.07423567026853561,
- -0.013574051670730114,
- 0.02555019222199917,
- 0.08992397040128708,
- 0.010150125250220299,
- -0.04564890265464783,
- -0.007952859625220299,
- -0.013954930938780308,
- -0.05729559063911438,
- 0.06251925230026245,
- 0.0012413450749590993,
- 0.051767170429229736,
- 0.030079560354351997,
- 0.026300927624106407,
- -0.04191316291689873,
- -0.02313336916267872,
- 0.0036649771500378847,
- 0.01209475751966238,
- 0.04051341861486435,
- -0.025516340509057045,
- -0.015177243389189243,
- -0.023806152865290642,
- 0.07969553023576736,
- -0.007241786923259497,
- 0.002394507871940732,
- 0.14816118776798248,
- -0.015451144427061081,
- 0.0842164158821106,
- -0.035683490335941315,
- 0.03436129912734032,
- 0.11661937087774277,
- -0.023510543629527092,
- 0.02351265959441662,
- -0.0164985079318285,
- -0.08288324624300003,
- 0.011463427916169167,
- 0.036736465990543365,
- 0.08305499702692032,
- -0.04190570116043091,
- -0.06440528482198715,
- -0.054803695529699326,
- 0.014208312146365643,
- -0.02607070468366146,
- -0.01082849595695734,
- -0.026793083176016808,
- 0.020253518596291542,
- -0.015403765253722668,
- 0.05074699968099594,
- 0.021187085658311844,
- 0.013543849810957909,
- -0.039969488978385925,
- -0.1088135689496994,
- 0.03486818075180054,
- 0.051973141729831696,
- -0.06838364154100418,
- -0.06698259711265564,
- 0.05447369068861008,
- -0.008259247057139874,
- -0.08584866672754288,
- 1.3232998166332319e-33,
- -0.07252923399209976,
- -0.07222425192594528,
- 0.029495280236005783,
- 0.006161985453218222,
- -0.06549791991710663,
- -0.08922670036554337,
- -0.0741901770234108,
- -0.019030917435884476,
- 0.008805152028799057,
- 0.023764710873365402,
- -0.04211997985839844,
- -0.07644997537136078,
- 0.04878341406583786,
- 0.07659971714019775,
- 0.029778871685266495,
- 0.008398177102208138,
- 0.1370755136013031,
- -0.04532274603843689,
- -0.05468010529875755,
- -0.04272063076496124,
- -0.039170779287815094,
- 0.06113305315375328,
- -0.028641460463404655,
- -0.02386360801756382,
- -0.020632797852158546,
- 0.08867859095335007,
- 0.06787645816802979,
- 0.05017339065670967,
- 0.009829943999648094,
- 0.0095125837251544,
- 0.024114305153489113,
- -0.09791538119316101,
- -0.020596986636519432,
- -0.012103226967155933,
- -0.06358707696199417,
- -0.0009639009949751198,
- -0.04144265130162239,
- 0.02802974544465542,
- -0.0004499964416027069,
- -0.03911802917718887,
- 0.04374882951378822,
- 0.06033753976225853,
- -0.07105984538793564,
- 0.1660228967666626,
- 0.03127501532435417,
- -0.07747611403465271,
- 0.03668022155761719,
- -0.03409226983785629,
- 0.05909525975584984,
- 0.014483273960649967,
- 0.029654178768396378,
- 0.01690094545483589,
- 0.007016158662736416,
- -0.03986864909529686,
- -0.0545470304787159,
- -0.03950035572052002,
- 0.0834551528096199,
- 0.04311077669262886,
- 0.041574034839868546,
- -0.033510927110910416,
- -0.023288516327738762,
- 0.05373431742191315,
- 0.03639175370335579,
- -0.05621868371963501,
- 0.014483585022389889,
- 0.0014621163718402386,
- -0.016121244058012962,
- -0.011234696954488754,
- 0.006148123182356358,
- -0.0005325232050381601,
- -0.05252338573336601,
- 0.03369992598891258,
- -0.03339898958802223,
- 0.00452509056776762,
- -0.02986946702003479,
- -0.01470824796706438,
- -0.07022003084421158,
- -0.0030694426968693733,
- 0.009083361364901066,
- -0.06050170958042145,
- -0.049424998462200165,
- -0.05777691304683685,
- 0.0045550973154604435,
- 0.11004801094532013,
- -0.061303913593292236,
- 0.025518838316202164,
- -0.014249894767999649,
- -0.048006877303123474,
- -0.010687246918678284,
- 0.022783229127526283,
- 0.04303031414747238,
- 0.0682232603430748,
- -0.020511897280812263,
- 0.027794912457466125,
- -0.0123922573402524,
- -1.4365221012724305e-8,
- 0.018549581989645958,
- -0.03154096007347107,
- -0.07093244791030884,
- 0.029039133340120316,
- 0.07947633415460587,
- 0.09292753785848618,
- 0.023057181388139725,
- -0.0006409951602108777,
- 0.011989209800958633,
- 0.0030745130497962236,
- 0.03677181899547577,
- -0.00974444579333067,
- 0.013666326180100441,
- 0.05344772711396217,
- 0.021122196689248085,
- -0.0798519179224968,
- -0.07485368102788925,
- 0.029633138328790665,
- -0.11165455728769302,
- -0.02524460107088089,
- 0.011447333730757236,
- -0.015086664818227291,
- 0.12283961474895477,
- 0.0121212899684906,
- -0.08838488906621933,
- 0.026960166171193123,
- 0.03253302723169327,
- -0.01428847387433052,
- -0.015819212421774864,
- 0.08049090951681137,
- 0.02950134687125683,
- 0.07805445045232773,
- -0.045162469148635864,
- -0.017289992421865463,
- 0.05845218524336815,
- -0.1760750412940979,
- 0.02700686641037464,
- -0.035817701369524,
- -0.002327286871150136,
- -0.08813028037548065,
- -0.0704578161239624,
- 0.08881625533103943,
- 0.017066968604922295,
- 0.05674908310174942,
- 0.006031709257513285,
- -0.03989033401012421,
- 0.06033697351813316,
- -0.04275732487440109,
- -0.046725641936063766,
- -0.00646834634244442,
- 0.0008785157115198672,
- 0.015522321686148643,
- 0.07343629002571106,
- -0.022214768454432487,
- -0.04227631539106369,
- -0.021517982706427574,
- -0.005662697367370129,
- 0.04130671173334122,
- -0.009227489121258259,
- -0.03259175270795822,
- 0.02575046755373478,
- -0.06753987818956375,
- 0.11423426866531372,
- 0.05392789840698242
- ]
- },
- {
- "keyword": "built by",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.0014448408037424088,
- 0.02296585589647293,
- -0.008275764063000679,
- 0.04718052223324776,
- -0.017880383878946304,
- -0.05937521159648895,
- 0.08312835544347763,
- -0.04501301795244217,
- -0.02109411731362343,
- 0.03884304687380791,
- -0.004316037055104971,
- -0.0009616707684472203,
- 0.07397721707820892,
- -0.02792518585920334,
- -0.03919704630970955,
- 0.012994647026062012,
- 0.013100234791636467,
- -0.06134604290127754,
- -0.02895699441432953,
- -0.07058513909578323,
- -0.025587942451238632,
- -0.00013165072596166283,
- 0.002425882965326309,
- 0.008822889998555183,
- 0.08877154439687729,
- 0.09175945818424225,
- -0.06577527523040771,
- 0.055869102478027344,
- 0.13229955732822418,
- -0.0584222748875618,
- -0.00590810552239418,
- -0.03742213174700737,
- 0.04496236518025398,
- -0.023909952491521835,
- -0.0016024862416088581,
- 0.026968199759721756,
- 0.048009566962718964,
- -0.048996906727552414,
- 0.026902521029114723,
- -0.02207767777144909,
- -0.04967329651117325,
- -0.020621133968234062,
- 0.08309949189424515,
- -0.009601248428225517,
- -0.03593055531382561,
- 0.08713006228208542,
- -0.0006616372265852988,
- -0.08499064296483994,
- -0.03627169877290726,
- 0.042432110756635666,
- -0.0695878341794014,
- 0.0462287962436676,
- -0.020851081237196922,
- -0.07459012418985367,
- 0.007634875364601612,
- 0.10131216049194336,
- -0.057088423520326614,
- -0.05186009407043457,
- -0.012639252468943596,
- -0.03019445389509201,
- 0.053504012525081635,
- 0.06263861805200577,
- -0.07946987450122833,
- -0.002108647720888257,
- 0.04448969289660454,
- 0.03141900524497032,
- 0.03110659494996071,
- 0.015199011191725731,
- 0.011301729828119278,
- -0.05508631095290184,
- 0.07611670345067978,
- -0.0012699991930276155,
- -0.0019126965198665857,
- 0.05611102655529976,
- 0.04534747451543808,
- 0.012505306862294674,
- 0.050579216331243515,
- -0.006306738127022982,
- 0.016680985689163208,
- -0.007052234839648008,
- 0.0004541355883702636,
- 0.02932886779308319,
- -0.05010932311415672,
- 0.0330042764544487,
- 0.04123247042298317,
- -0.028824258595705032,
- 0.07924479246139526,
- 0.04029815271496773,
- 0.026176052168011665,
- 0.012226189486682415,
- -0.0008975778473541141,
- -0.009131583385169506,
- -0.026725122705101967,
- 0.05279946327209473,
- -0.016454074531793594,
- -0.008981787599623203,
- -0.025036854669451714,
- 0.04210846498608589,
- -0.052161574363708496,
- 0.16176989674568176,
- -0.04605567082762718,
- 0.0036529689095914364,
- -0.03882857784628868,
- -0.02952762134373188,
- -0.018325502052903175,
- 0.0065800524316728115,
- -0.08210751414299011,
- 0.04061638563871384,
- 0.0024474486708641052,
- -0.035539112985134125,
- -0.03428787738084793,
- -0.04659625142812729,
- -0.020266231149435043,
- 0.04454628378152847,
- 0.035318031907081604,
- 0.001727106748148799,
- -0.048000890761613846,
- 0.023293469101190567,
- 0.06052820011973381,
- -0.02400616742670536,
- 0.11033450067043304,
- 0.02213338389992714,
- -0.006733803544193506,
- 0.00976285059005022,
- -0.026003364473581314,
- -0.04100784286856651,
- 0.051746051758527756,
- -3.167038920504485e-33,
- 0.04787497594952583,
- 0.004407936241477728,
- 0.03292476385831833,
- 0.09825237840414047,
- 0.03414757177233696,
- 0.008473081514239311,
- 0.016974881291389465,
- 0.0361633375287056,
- -0.0820336639881134,
- 0.00623575784265995,
- 0.053124282509088516,
- -0.030748842284083366,
- -0.03784120827913284,
- 0.03823583945631981,
- 0.13912320137023926,
- -0.09465230256319046,
- -0.006022825837135315,
- -0.07274898141622543,
- -0.12353204935789108,
- -0.030747925862669945,
- -0.049258843064308167,
- 0.0608721598982811,
- 0.0006255666958168149,
- -0.004407134372740984,
- 0.015860728919506073,
- -0.06009179726243019,
- 0.01776561141014099,
- -0.015521600842475891,
- -0.10834891349077225,
- 0.06414517015218735,
- 0.02521480992436409,
- -0.041923440992832184,
- -0.02216842584311962,
- 0.04243890941143036,
- -0.03334962576627731,
- -0.010781588964164257,
- -0.05382271856069565,
- -0.013981710188090801,
- -0.020231833681464195,
- 0.0324321985244751,
- -0.010338667780160904,
- -0.053930606693029404,
- -0.006548766978085041,
- -0.023949148133397102,
- -0.01909659430384636,
- 0.0641334131360054,
- -0.01932433806359768,
- 0.019082816317677498,
- 0.05143013969063759,
- 0.024341853335499763,
- -0.014019536785781384,
- -0.031680334359407425,
- -0.08609937876462936,
- 0.024904295802116394,
- 0.011787992902100086,
- -0.040635935962200165,
- -0.013071512803435326,
- 0.010607472620904446,
- 0.0779532715678215,
- 0.017913779243826866,
- -0.034034665673971176,
- 0.12266361713409424,
- -0.07429087162017822,
- 0.10429253429174423,
- -0.0327439159154892,
- -0.0020076080691069365,
- 0.061039943248033524,
- -0.0300851259380579,
- 0.06039828434586525,
- -0.03585348650813103,
- -0.041019488126039505,
- 0.00822372641414404,
- 0.05832047015428543,
- 0.05176599696278572,
- -0.02157791703939438,
- -0.008922114036977291,
- -0.054347407072782516,
- 0.01629464700818062,
- -0.055745869874954224,
- 0.021133791655302048,
- -0.053667329251766205,
- 0.007881473749876022,
- 0.006838350556790829,
- 0.0776081308722496,
- 0.10342540591955185,
- 0.013169173151254654,
- -0.03136259689927101,
- -0.13146889209747314,
- 0.017063485458493233,
- 0.020666928961873055,
- -0.03175456076860428,
- -0.031222807243466377,
- 0.09501169621944427,
- -0.010232445783913136,
- -0.06557484716176987,
- 1.775000510503485e-33,
- -0.014693886041641235,
- -0.052411142736673355,
- 0.011795956641435623,
- -0.017990607768297195,
- -0.058514636009931564,
- -0.06346362084150314,
- -0.09443715959787369,
- -0.09787731617689133,
- -0.009429123252630234,
- -0.0013679126277565956,
- -0.05880500748753548,
- -0.021678900346159935,
- 0.062320102006196976,
- 0.0725741982460022,
- 0.04732801020145416,
- 0.01861671544611454,
- 0.12134941667318344,
- -0.12539725005626678,
- -0.04726966470479965,
- -0.01914297416806221,
- -0.026272255927324295,
- 0.04308884218335152,
- 0.005847141146659851,
- -0.028577854856848717,
- -0.02915717288851738,
- 0.0790371373295784,
- 0.0021515823900699615,
- 0.07732018828392029,
- 0.039822325110435486,
- 0.02539254166185856,
- -0.021592285484075546,
- -0.05519813671708107,
- -0.09082215279340744,
- 0.015582852996885777,
- -0.0829363539814949,
- 0.048391200602054596,
- -0.035287097096443176,
- 0.04920700564980507,
- -0.03502325341105461,
- -0.037680014967918396,
- 0.06861075013875961,
- 0.07994037121534348,
- -0.11645802855491638,
- 0.14835788309574127,
- 0.033038266003131866,
- -0.06153571605682373,
- 0.014763792045414448,
- -0.03754359111189842,
- 0.0455678328871727,
- -0.0018909028731286526,
- -0.023754345253109932,
- 0.021716224029660225,
- 0.030340252444148064,
- -0.03320646286010742,
- -0.05447513982653618,
- -0.07116684317588806,
- 0.08002480119466782,
- 0.061841532588005066,
- 0.04086983948945999,
- -0.0169413760304451,
- -0.02493308298289776,
- 0.01724880188703537,
- 0.048517245799303055,
- 0.019668301567435265,
- -0.05838695541024208,
- -0.004316013306379318,
- -0.035927023738622665,
- 0.05456977337598801,
- 0.015417139045894146,
- -0.014942754991352558,
- -0.07940711081027985,
- 0.02543475292623043,
- -0.06436068564653397,
- -0.027265509590506554,
- -0.046341363340616226,
- 0.01802031882107258,
- -0.027950219810009003,
- 0.031250353902578354,
- -0.009655250236392021,
- -0.07292782515287399,
- -0.01796257682144642,
- -0.04430892691016197,
- 0.0036181851755827665,
- 0.043559521436691284,
- -0.015848636627197266,
- -0.0484786331653595,
- 0.009822644293308258,
- -0.02711006999015808,
- 0.009967755526304245,
- 0.013695248402655125,
- 0.05740588530898094,
- 0.04929369315505028,
- -0.09163275361061096,
- -0.004889982752501965,
- -0.02041771076619625,
- -1.2562924922576713e-8,
- -0.009781282395124435,
- 0.00876242108643055,
- -0.07755729556083679,
- 0.005077662877738476,
- 0.08522797375917435,
- 0.033858951181173325,
- 0.10556953400373459,
- 0.0732317790389061,
- 0.04453352838754654,
- -0.029535645619034767,
- 0.012583798728883266,
- -0.049225810915231705,
- 0.015114464797079563,
- 0.0769365131855011,
- 0.0007417512824758887,
- -0.02613118849694729,
- -0.09564588218927383,
- 0.10049419850111008,
- -0.11679259687662125,
- -0.03712489828467369,
- -0.007461785338819027,
- -0.014137581922113895,
- 0.07132429629564285,
- 0.03868337348103523,
- -0.10216807574033737,
- 0.002076924778521061,
- -0.015618287026882172,
- -0.057117611169815063,
- 0.04643569514155388,
- 0.09942079335451126,
- 0.037641920149326324,
- 0.09230069071054459,
- -0.05021868646144867,
- -0.008096490055322647,
- 0.10114992409944534,
- -0.07286502420902252,
- 0.037364423274993896,
- 0.013195233419537544,
- 0.012822725810110569,
- -0.08930262178182602,
- -0.06562705338001251,
- 0.0157974511384964,
- -0.010844971984624863,
- 0.03030293993651867,
- 0.05727515369653702,
- -0.009349435567855835,
- -0.02795274555683136,
- -0.039654139429330826,
- -0.07025796920061111,
- -0.010606985539197922,
- 0.020755646750330925,
- -0.00764433341100812,
- 0.06839285045862198,
- 0.004984020255506039,
- -0.02959943749010563,
- 0.01506785862147808,
- -0.02404034696519375,
- 0.05614443123340607,
- -0.020265448838472366,
- -0.015592801384627819,
- -0.009449802339076996,
- -0.06285275518894196,
- 0.11573793739080429,
- 0.08511989563703537
- ]
- },
- {
- "keyword": "authored by",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.03351680934429169,
- 0.04097471013665199,
- -0.014379994943737984,
- 0.08588476479053497,
- -0.006040888372808695,
- -0.010885946452617645,
- 0.06965997815132141,
- 0.01334273163229227,
- 0.032750215381383896,
- 0.06264628469944,
- -0.016318967565894127,
- 0.11903087794780731,
- 0.08261900395154953,
- -0.0583222433924675,
- -0.09474441409111023,
- 0.05690174922347069,
- -0.048168033361434937,
- -0.03746509179472923,
- 0.007987992838025093,
- -0.09817373752593994,
- 0.007541485130786896,
- 0.06684276461601257,
- -0.0005488531314767897,
- -0.013820626772940159,
- 0.07344262301921844,
- 0.035043735057115555,
- -0.03884859383106232,
- 0.006841164082288742,
- 0.040494710206985474,
- -0.03849288821220398,
- -0.009431242011487484,
- 0.025393670424818993,
- 0.030437046661973,
- 0.02239193022251129,
- -0.0364806242287159,
- -0.04808726906776428,
- 0.048088885843753815,
- 0.02654525265097618,
- 0.0364593081176281,
- -0.03292210400104523,
- -0.0610249862074852,
- -0.010987178422510624,
- 0.04278191924095154,
- 0.03328332677483559,
- -0.0239065233618021,
- 0.00743100605905056,
- -0.03014376014471054,
- -0.01431900355964899,
- -0.05545365810394287,
- 0.07811886072158813,
- -0.13091754913330078,
- -0.004427171777933836,
- -0.010588672012090683,
- -0.0886339619755745,
- -0.04878517985343933,
- 0.01961847022175789,
- -0.06596651673316956,
- 0.012368128634989262,
- 0.005827717948704958,
- -0.05218716338276863,
- 0.04525429382920265,
- 0.039822403341531754,
- -0.112014539539814,
- 0.03873496875166893,
- 0.10631552338600159,
- 0.049864593893289566,
- 0.07261720299720764,
- 0.03896148502826691,
- -0.048103298991918564,
- -0.057487018406391144,
- 0.08926787227392197,
- 0.041349589824676514,
- -0.02412381023168564,
- 0.02150592766702175,
- 0.0666869655251503,
- -0.014910398051142693,
- 0.026496801525354385,
- 0.03261924907565117,
- 0.0010515316389501095,
- -0.06291181594133377,
- -0.011594926007091999,
- 0.09942130744457245,
- -0.08263393491506577,
- -0.0007190420874394476,
- 0.04588346183300018,
- -0.022585909813642502,
- 0.0756794884800911,
- 0.01226746290922165,
- 0.05686086788773537,
- 0.005012003239244223,
- 0.014357375912368298,
- 0.0017648718785494566,
- 0.03778853267431259,
- -0.01125810481607914,
- -0.0701628178358078,
- 0.058851324021816254,
- -0.016274236142635345,
- 0.0005457669612951577,
- 0.0197736918926239,
- 0.12946830689907074,
- -0.05488685518503189,
- -0.003394038649275899,
- -0.12395413219928741,
- 0.037779852747917175,
- 0.0694379135966301,
- -0.009318822994828224,
- -0.01643119379878044,
- -0.004506349563598633,
- 0.04216691479086876,
- -0.00967451836913824,
- -0.0009395901579409838,
- -0.01418883353471756,
- -0.0019488035468384624,
- 0.0776008889079094,
- 0.08582771569490433,
- 0.022659042850136757,
- -0.030450135469436646,
- 0.0395716056227684,
- 0.04734432324767113,
- -0.012103875167667866,
- -0.00702220294624567,
- 0.04201778024435043,
- -0.03696049004793167,
- 0.007434564176946878,
- -0.09195876866579056,
- 0.001353841507807374,
- 0.0257475096732378,
- -2.989863820173742e-33,
- 0.09130555391311646,
- 0.04729536175727844,
- 0.029289523139595985,
- 0.04031829163432121,
- 0.060716379433870316,
- -0.029238378629088402,
- 0.004072784911841154,
- -0.04410563409328461,
- -0.0684785321354866,
- -0.02808024175465107,
- 0.02454928681254387,
- 0.020865019410848618,
- 0.01784130372107029,
- 0.0026351562701165676,
- 0.02481895685195923,
- -0.030842093750834465,
- -0.006116587668657303,
- -0.02341417409479618,
- -0.07713872939348221,
- -0.07017751038074493,
- -0.03740033507347107,
- 0.00510757090523839,
- 0.0120201101526618,
- -0.013889342546463013,
- -0.036814961582422256,
- -0.011673902161419392,
- -0.02364967204630375,
- -0.04792707785964012,
- -0.0035779692698270082,
- 0.0643843412399292,
- 0.022755872458219528,
- -0.013890624046325684,
- -0.040613435208797455,
- -0.011356654576957226,
- -0.03216656297445297,
- -0.002596522681415081,
- -0.019328663125634193,
- -0.013157515786588192,
- 0.028428779914975166,
- 0.07237564027309418,
- 0.006244953256100416,
- -0.012287318706512451,
- 0.027207817882299423,
- -0.06038830801844597,
- 0.01922113262116909,
- 0.045920759439468384,
- 0.04204007238149643,
- 0.04407474771142006,
- 0.10672715306282043,
- 0.02128794603049755,
- -0.0497458353638649,
- -0.035445503890514374,
- -0.03420460969209671,
- -0.0029203330632299185,
- 0.038643475621938705,
- 0.022487390786409378,
- -0.036281272768974304,
- -0.03539625555276871,
- 0.022206267341971397,
- 0.03117690049111843,
- 0.02232164889574051,
- 0.1527429223060608,
- -0.04824873432517052,
- 0.06001798436045647,
- -0.01136988215148449,
- 0.016231797635555267,
- 0.021402088925242424,
- -0.05846472084522247,
- 0.05767742544412613,
- 0.029262090101838112,
- -0.0648859441280365,
- 0.05544154345989227,
- 0.040507152676582336,
- 0.04534740000963211,
- -0.07296832650899887,
- -0.051164500415325165,
- -0.03697521612048149,
- -0.011044684797525406,
- -0.047797150909900665,
- -0.008699672296643257,
- 0.002465128665789962,
- 0.023700984194874763,
- -0.04601272940635681,
- 0.05963505432009697,
- 0.022659702226519585,
- 0.0006076921126805246,
- -0.022385792806744576,
- -0.011491033248603344,
- -0.01213418785482645,
- 0.035808101296424866,
- -0.046261779963970184,
- -0.021675709635019302,
- 0.05664536729454994,
- -0.04059920832514763,
- -0.0761508047580719,
- 2.9077562744527743e-33,
- -0.10758860409259796,
- -0.08651848137378693,
- 0.06365471333265305,
- 0.0018005637684836984,
- -0.053483255207538605,
- -0.09206885099411011,
- -0.10022968053817749,
- -0.024337338283658028,
- 0.02580503560602665,
- -0.005037772003561258,
- 0.009390242397785187,
- -0.09053615480661392,
- 0.005106294993311167,
- 0.08953048288822174,
- 0.10153625905513763,
- -0.022190885618329048,
- 0.03993520513176918,
- -0.1533527970314026,
- -0.10871768742799759,
- 0.00029706768691539764,
- -0.053294990211725235,
- 0.048441361635923386,
- 0.019515134394168854,
- -0.02150910720229149,
- 0.02868703193962574,
- 0.08164456486701965,
- 0.14161066710948944,
- 0.10444454103708267,
- -0.0674743503332138,
- -0.029589593410491943,
- 0.018746880814433098,
- 0.00706525519490242,
- -0.11773398518562317,
- -0.05768338218331337,
- -0.05817626789212227,
- 0.03736138343811035,
- -0.02803017757833004,
- 0.0186967421323061,
- -0.04169081151485443,
- -0.020045273005962372,
- 0.07332441955804825,
- 0.09762711077928543,
- -0.02231067419052124,
- 0.09092218428850174,
- 0.006122784223407507,
- -0.024756722152233124,
- -0.03199898079037666,
- -0.028202643617987633,
- 0.04836326837539673,
- 0.0724506601691246,
- -0.02068484015762806,
- -0.016606848686933517,
- -0.023940958082675934,
- -0.030593959614634514,
- -0.011719155125319958,
- -0.023593222722411156,
- 0.08341050893068314,
- 0.050721120089292526,
- 0.09944166988134384,
- -0.015117266215384007,
- -0.07157227396965027,
- 0.06663496792316437,
- 0.025635113939642906,
- 0.04039605334401131,
- -0.008167741820216179,
- -0.04157210886478424,
- -0.07872495800256729,
- 0.014332134276628494,
- 0.055235326290130615,
- -0.01984401047229767,
- -0.0521797351539135,
- -0.021214626729488373,
- -0.08617182821035385,
- -0.013481883332133293,
- -0.026100540533661842,
- 0.008021995425224304,
- -0.04890657588839531,
- -0.023111242800951004,
- -0.018994275480508804,
- -0.04516799747943878,
- -0.0471070297062397,
- 0.007475543301552534,
- 0.024436648935079575,
- 0.07268598675727844,
- -0.04812588915228844,
- 0.016607260331511497,
- 0.014825486578047276,
- -0.07159563899040222,
- -0.013235712423920631,
- 0.04126894101500511,
- 0.020376550033688545,
- -0.03399191424250603,
- -0.070980966091156,
- -0.01874539628624916,
- -0.0021240566857159138,
- -1.230889701275828e-8,
- 0.0009400733979418874,
- 0.03399656340479851,
- -0.03042997233569622,
- 0.06867074966430664,
- 0.1275797337293625,
- 0.11334766447544098,
- 0.05551743879914284,
- -0.0068360622972249985,
- -0.011501937173306942,
- 0.013082399033010006,
- 0.035044509917497635,
- -0.033631984144449234,
- 0.024716278538107872,
- 0.08323498070240021,
- 0.008179246447980404,
- -0.0821525976061821,
- -0.021409567445516586,
- 0.0011817910708487034,
- -0.11778239905834198,
- -0.02261393517255783,
- 0.06273044645786285,
- 0.033351000398397446,
- 0.05519432574510574,
- -0.0749380812048912,
- -0.019638950005173683,
- 0.05521310493350029,
- -0.009108209982514381,
- -0.006265303120017052,
- -0.02631313167512417,
- 0.060495100915431976,
- -0.020220624282956123,
- 0.06798993051052094,
- -0.006744043901562691,
- -0.05600661039352417,
- 0.10505281388759613,
- -0.0760127454996109,
- 0.08003144711256027,
- -0.011647738516330719,
- -0.025771472603082657,
- -0.08006443828344345,
- -0.07996607571840286,
- 0.08180901408195496,
- 0.019237447530031204,
- 0.03414413332939148,
- -0.0005234815180301666,
- -0.08501539379358292,
- 0.06119357794523239,
- -0.012969586066901684,
- 0.0030377134680747986,
- 0.01802007295191288,
- -0.031176401302218437,
- -0.015911422669887543,
- 0.10603199154138565,
- -0.004329323768615723,
- -0.024038106203079224,
- 0.006146424449980259,
- 0.009314194321632385,
- -0.0035024075768887997,
- -0.07097946107387543,
- -0.02441057376563549,
- 0.0686105266213417,
- -0.03449814394116402,
- 0.06252332031726837,
- 0.01749296858906746
- ]
- },
- {
- "keyword": "developed by",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.016931168735027313,
- 0.02447841502726078,
- -0.03748190775513649,
- -0.001055259141139686,
- -0.03833233565092087,
- -0.02959066815674305,
- 0.04880337044596672,
- 0.03444793075323105,
- -0.022311344742774963,
- 0.08668109029531479,
- 0.0705469623208046,
- 0.09021072834730148,
- 0.06336403638124466,
- -0.02929374948143959,
- -0.07718673348426819,
- 0.030774805694818497,
- -0.041436050087213516,
- -0.053478773683309555,
- -0.0066773248836398125,
- -0.0713946744799614,
- -0.05584624782204628,
- 0.013582775369286537,
- 0.0070020416751503944,
- -0.010404882952570915,
- 0.05410141125321388,
- 0.05649832263588905,
- -0.019067933782935143,
- -0.008735649287700653,
- 0.168688103556633,
- 0.00003701133391587064,
- 0.015867916867136955,
- 0.06631364673376083,
- 0.04983965680003166,
- -0.012816703878343105,
- -0.06528659164905548,
- -0.01802748069167137,
- 0.05204927176237106,
- 0.004242454189807177,
- 0.030345996841788292,
- 0.014533844776451588,
- -0.0884275883436203,
- -0.04355423152446747,
- 0.014703524298965931,
- 0.04562019184231758,
- -0.023078324273228645,
- 0.003429005155339837,
- 0.018966292962431908,
- 0.04535304382443428,
- -0.11581439524888992,
- 0.04589691385626793,
- -0.1045512929558754,
- 0.00002839344961103052,
- 0.0388139933347702,
- -0.11928251385688782,
- -0.02690204605460167,
- -0.010868411511182785,
- -0.0849480926990509,
- -0.022276457399129868,
- -0.006169646512717009,
- 0.002102120313793421,
- 0.0277081448584795,
- 0.013666070997714996,
- -0.10697266459465027,
- 0.012863924726843834,
- 0.04304990544915199,
- 0.0525454618036747,
- 0.04907871410250664,
- -0.015296721830964088,
- 0.015258931554853916,
- -0.07202988862991333,
- 0.07540161162614822,
- -0.0050992220640182495,
- 0.014126421883702278,
- 0.053312964737415314,
- -0.01936662569642067,
- -0.0003499710583128035,
- 0.028239667415618896,
- 0.06422119587659836,
- 0.025814039632678032,
- -0.0324515625834465,
- 0.0885283425450325,
- 0.08731139451265335,
- -0.05029165744781494,
- 0.03548857942223549,
- 0.011557950638234615,
- 0.04340203106403351,
- 0.06307197362184525,
- 0.015802135691046715,
- 0.01749357581138611,
- -0.011811253614723682,
- 0.03220085799694061,
- 0.012819871306419373,
- -0.04486289620399475,
- -0.00929355900734663,
- -0.07542963325977325,
- 0.013491718098521233,
- -0.03610812872648239,
- 0.008490328676998615,
- 0.03164905682206154,
- 0.15798310935497284,
- -0.04511812701821327,
- -0.02063054032623768,
- -0.09160967171192169,
- -0.04431019723415375,
- 0.061724886298179626,
- 0.015458029694855213,
- -0.011988110840320587,
- 0.010653967969119549,
- 0.03277293220162392,
- 0.029613399878144264,
- -0.017645876854658127,
- -0.05489802733063698,
- -0.06715475767850876,
- 0.041274990886449814,
- 0.059102389961481094,
- 0.0036207609809935093,
- -0.051375169306993484,
- 0.023594530299305916,
- 0.049862198531627655,
- -0.01231200061738491,
- 0.07220489531755447,
- 0.04170726612210274,
- -0.05288691818714142,
- 0.00011499634274514392,
- -0.07176950573921204,
- 0.01861441135406494,
- -0.040036555379629135,
- -4.184835561376178e-33,
- 0.004623525310307741,
- 0.04343204200267792,
- 0.029630515724420547,
- 0.13350719213485718,
- 0.003799657803028822,
- -0.027086962014436722,
- 0.02263949066400528,
- -0.01679522730410099,
- -0.06466703861951828,
- -0.08162251114845276,
- 0.017078781500458717,
- -0.011044916696846485,
- -0.0011330675333738327,
- -0.00391618674620986,
- 0.13584376871585846,
- -0.056580014526844025,
- -0.014118317514657974,
- -0.05050068721175194,
- -0.009044444188475609,
- -0.009337719529867172,
- -0.04674890637397766,
- 0.053108908236026764,
- 0.02483118511736393,
- -0.03395966440439224,
- 0.005978237371891737,
- -0.00906884390860796,
- -0.005841203033924103,
- -0.02662590704858303,
- 0.000736236572265625,
- 0.04562756046652794,
- 0.055819686502218246,
- -0.031602613627910614,
- -0.043666940182447433,
- -0.04012735188007355,
- -0.017769796773791313,
- 0.017441220581531525,
- -0.08757124841213226,
- -0.03503818064928055,
- 0.03554949909448624,
- 0.08273591101169586,
- 0.020953752100467682,
- -0.019668100401759148,
- 0.00975498091429472,
- -0.07116382569074631,
- 0.029164206236600876,
- 0.10166644304990768,
- -0.010100152343511581,
- 0.020210973918437958,
- 0.05354444682598114,
- 0.014432137832045555,
- -0.0216318741440773,
- -0.021205119788646698,
- -0.06845834106206894,
- -0.02866356261074543,
- 0.06118429824709892,
- -0.00223382655531168,
- -0.0642620250582695,
- -0.01223001629114151,
- 0.05086371675133705,
- 0.04841713234782219,
- 0.0077510736882686615,
- 0.12605638802051544,
- -0.04836859926581383,
- 0.04784282669425011,
- -0.009978055953979492,
- 0.012690458446741104,
- 0.08672798424959183,
- -0.045724350959062576,
- 0.051783040165901184,
- -0.014704126864671707,
- -0.06008525937795639,
- 0.03688023239374161,
- 0.036261267960071564,
- 0.04555448517203331,
- -0.03886379674077034,
- -0.041781213134527206,
- -0.06548850983381271,
- 0.06088726967573166,
- 0.02068684995174408,
- -0.03189920261502266,
- -0.0575384646654129,
- 0.025359515100717545,
- -0.02346058562397957,
- 0.08016446977853775,
- 0.04001934826374054,
- 0.040964752435684204,
- -0.037344690412282944,
- -0.011073721572756767,
- -0.019508901983499527,
- 0.05246032029390335,
- -0.08947379887104034,
- -0.014866068959236145,
- 0.0052697728388011456,
- 0.013864755630493164,
- -0.053009286522865295,
- 2.8148846902271287e-33,
- -0.07382215559482574,
- -0.04215599596500397,
- -0.042974770069122314,
- 0.04120383784174919,
- -0.06853993237018585,
- -0.028337089344859123,
- -0.053148891776800156,
- -0.05320999398827553,
- -0.005047416780143976,
- -0.003902828088030219,
- 0.00758746825158596,
- -0.051110461354255676,
- -0.011446273885667324,
- 0.0937042161822319,
- 0.06370022892951965,
- 0.014550229534506798,
- 0.10619086027145386,
- -0.10395241528749466,
- -0.06626617908477783,
- -0.017689833417534828,
- -0.03817591071128845,
- 0.043230198323726654,
- -0.012676453217864037,
- -0.03156697377562523,
- 0.03789741173386574,
- 0.023793449625372887,
- 0.03648201376199722,
- 0.052291177213191986,
- 0.022229185327887535,
- -0.003697491716593504,
- 0.02542334981262684,
- -0.04692427068948746,
- -0.11618116497993469,
- -0.019819261506199837,
- -0.07851815223693848,
- 0.006527796853333712,
- -0.09321797639131546,
- 0.016152173280715942,
- 0.03564697504043579,
- -0.08819328993558884,
- 0.04747525230050087,
- 0.07779982686042786,
- -0.059927091002464294,
- 0.09840372949838638,
- -0.0018846684833988547,
- -0.0135677894577384,
- 0.04673193767666817,
- -0.05691763013601303,
- 0.03902321681380272,
- 0.011058222502470016,
- 0.02790403924882412,
- -0.015208701603114605,
- 0.004424883518368006,
- -0.09751282632350922,
- -0.05559800937771797,
- -0.0192569550126791,
- 0.12763221561908722,
- 0.03861916437745094,
- 0.035880524665117264,
- -0.0031083098147064447,
- -0.02712399512529373,
- -0.004155995789915323,
- 0.06161787733435631,
- -0.03351416066288948,
- -0.015968913212418556,
- 0.032597076147794724,
- -0.06424950063228607,
- 0.057827726006507874,
- 0.03370380029082298,
- -0.029478183016180992,
- -0.028271526098251343,
- 0.024130171164870262,
- -0.10751727223396301,
- -0.0338708870112896,
- -0.061357904225587845,
- 0.053626831620931625,
- -0.05265991389751434,
- -0.03953370451927185,
- -0.041589923202991486,
- -0.03980182856321335,
- -0.06096291542053223,
- -0.04012783244252205,
- 0.024334928020834923,
- 0.05237230658531189,
- -0.026152441278100014,
- 0.01070882473140955,
- 0.012521234340965748,
- -0.09878766536712646,
- -0.010267339646816254,
- 0.04728137329220772,
- 0.00433022016659379,
- 0.0005459243548102677,
- -0.11176101863384247,
- 0.03191255033016205,
- -0.004884336143732071,
- -1.2331756948924522e-8,
- -0.01993168517947197,
- -0.028604883700609207,
- -0.031180264428257942,
- 0.0649239793419838,
- 0.07269840687513351,
- 0.10603022575378418,
- 0.014902993105351925,
- 0.011478968895971775,
- -0.006975868716835976,
- 0.01072337944060564,
- -0.04482698068022728,
- -0.04665996879339218,
- -0.02037712186574936,
- 0.138432577252388,
- 0.04239700734615326,
- -0.03943798318505287,
- -0.04878390580415726,
- 0.0814247578382492,
- -0.13218070566654205,
- -0.02590899169445038,
- 0.014146953821182251,
- 0.040966302156448364,
- 0.09488198161125183,
- -0.0036282518412917852,
- -0.03621424362063408,
- 0.027872756123542786,
- 0.006070360075682402,
- -0.07054885476827621,
- -0.010262714698910713,
- 0.03540901094675064,
- 0.06403886526823044,
- 0.08056575059890747,
- -0.01926148124039173,
- -0.027880465611815453,
- 0.10857042670249939,
- -0.06562154740095139,
- 0.03070932812988758,
- 0.023799274116754532,
- 0.05392199382185936,
- -0.03982710465788841,
- -0.10418765246868134,
- 0.08979956060647964,
- 0.037607453763484955,
- 0.05389580875635147,
- -0.010105198249220848,
- -0.033467475324869156,
- -0.021390816196799278,
- -0.014456222765147686,
- -0.03978218510746956,
- -0.0350828655064106,
- 0.028347518295049667,
- 0.008994381874799728,
- 0.06903509050607681,
- -0.01845969818532467,
- 0.03562253713607788,
- -0.011580904014408588,
- 0.008043205365538597,
- -0.03497454896569252,
- 0.00430621113628149,
- -0.01658751629292965,
- 0.004205795470625162,
- -0.013260487467050552,
- 0.12478271871805191,
- 0.10514207929372787
- ]
- },
- {
- "keyword": "creator",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.10245474427938461,
- 0.03141755238175392,
- -0.028323182836174965,
- 0.04932340234518051,
- -0.057392895221710205,
- -0.07508254796266556,
- 0.12116087973117828,
- -0.01747209019958973,
- 0.057812176644802094,
- 0.027020547538995743,
- -0.035130493342876434,
- -0.06735694408416748,
- 0.01476576179265976,
- -0.04835577681660652,
- -0.0715274065732956,
- 0.03818150982260704,
- -0.03829427435994148,
- 0.006926027592271566,
- -0.052844054996967316,
- -0.07934854924678802,
- 0.006720015313476324,
- -0.011560702696442604,
- -0.023763244971632957,
- 0.00244899676181376,
- 0.036713551729917526,
- 0.031238146126270294,
- 0.01938229613006115,
- 0.031102916225790977,
- 0.13931141793727875,
- -0.14065204560756683,
- 0.042141787707805634,
- -0.10121139138936996,
- 0.05295391008257866,
- -0.011630029417574406,
- -0.023968849331140518,
- 0.017626725137233734,
- 0.04279080033302307,
- 0.03075668215751648,
- -0.007098592817783356,
- -0.06804663687944412,
- -0.008870918303728104,
- -0.03228296339511871,
- -0.046380989253520966,
- 0.0015196162275969982,
- 0.03444521874189377,
- 0.022435327991843224,
- 0.00006242260133149102,
- -0.00004060447099618614,
- -0.0016025902004912496,
- 0.057251181453466415,
- -0.08700141310691833,
- 0.001378334010951221,
- 0.01066526398062706,
- -0.05111699923872948,
- 0.04601937159895897,
- -0.0038510190788656473,
- 0.002422704827040434,
- 0.03532680496573448,
- 0.030594203621149063,
- -0.03881741687655449,
- 0.012990783900022507,
- 0.011695805005729198,
- -0.02028181217610836,
- 0.037001319229602814,
- 0.09276987612247467,
- -0.002449659164994955,
- 0.024785658344626427,
- -0.011022333055734634,
- -0.03970320150256157,
- -0.02581886202096939,
- 0.004846434574574232,
- 0.021144038066267967,
- 0.020360739901661873,
- 0.051643311977386475,
- 0.007217346224933863,
- -0.031219400465488434,
- -0.02658935822546482,
- 0.014869245700538158,
- 0.014769109897315502,
- 0.07147214561700821,
- 0.07688814401626587,
- 0.005059093236923218,
- -0.04986683651804924,
- 0.041832804679870605,
- -0.033549778163433075,
- 0.03295661509037018,
- 0.09729305654764175,
- 0.06724866479635239,
- 0.05018831789493561,
- 0.029850777238607407,
- -0.014019731432199478,
- 0.04293925687670708,
- 0.10816270112991333,
- -0.014995468780398369,
- -0.06122758612036705,
- 0.04123156517744064,
- -0.010738149285316467,
- -0.05582112446427345,
- -0.047796618193387985,
- 0.2204386442899704,
- -0.026576083153486252,
- -0.03343085199594498,
- 0.00491579994559288,
- 0.03380075842142105,
- 0.11989323794841766,
- -0.004178427625447512,
- -0.025262340903282166,
- 0.006026459392160177,
- -0.0322515144944191,
- 0.04164588823914528,
- 0.025184916332364082,
- 0.007083808537572622,
- -0.06805043667554855,
- -0.017550714313983917,
- 0.08243102580308914,
- 0.013780529610812664,
- -0.04342130199074745,
- 0.04302511736750603,
- 0.01761654205620289,
- -0.005911153741180897,
- 0.06850383430719376,
- 0.098690465092659,
- -0.022663826122879982,
- 0.04903516173362732,
- -0.09797251969575882,
- -0.019871128723025322,
- -0.018926238641142845,
- -5.223112252575072e-33,
- 0.02129642479121685,
- 0.020498842000961304,
- 0.04884964972734451,
- 0.04030957445502281,
- 0.06027255207300186,
- 0.020566897466778755,
- 0.0024705734103918076,
- 0.03978598117828369,
- -0.047584280371665955,
- -0.044698890298604965,
- -0.024710461497306824,
- -0.03570212796330452,
- -0.058197446167469025,
- 0.0743958130478859,
- 0.06474684923887253,
- -0.002153117675334215,
- -0.005701678339391947,
- -0.07451173663139343,
- -0.05352730676531792,
- -0.008166786283254623,
- -0.07758646458387375,
- 0.03411854803562164,
- -0.00675014965236187,
- 0.0145322410389781,
- -0.029622234404087067,
- -0.004626160021871328,
- 0.02634667418897152,
- -0.04281706362962723,
- 0.02196681499481201,
- -0.0014828492421656847,
- -0.043360885232686996,
- -0.0289891567081213,
- -0.005798134952783585,
- 0.002198598813265562,
- -0.0035330706741660833,
- -0.041662685573101044,
- -0.04708125442266464,
- -0.051719196140766144,
- 0.007535481359809637,
- 0.004901243839412928,
- 0.02525847777724266,
- -0.0006321835098788142,
- -0.007260370533913374,
- -0.03904275223612785,
- -0.04446161165833473,
- 0.011089869774878025,
- 0.08193773776292801,
- 0.022290371358394623,
- 0.044108450412750244,
- 0.040981799364089966,
- -0.0214887335896492,
- 0.017712224274873734,
- 0.01497290562838316,
- -0.03953497111797333,
- 0.04621400311589241,
- -0.062234632670879364,
- -0.05300790071487427,
- -0.028775621205568314,
- 0.04021267220377922,
- 0.023611905053257942,
- -0.02992081455886364,
- 0.10554669797420502,
- 0.0191482063382864,
- 0.13502146303653717,
- -0.03155696764588356,
- -0.033446550369262695,
- 0.10843806713819504,
- -0.05197650566697121,
- 0.02834043838083744,
- 0.02012469805777073,
- -0.039252832531929016,
- -0.007457537576556206,
- 0.020282259210944176,
- 0.014894633553922176,
- -0.05515303462743759,
- -0.04495822265744209,
- -0.04659340903162956,
- -0.014351303689181805,
- -0.0896684005856514,
- 0.040132589638233185,
- -0.04072052240371704,
- 0.03332033008337021,
- -0.02450311742722988,
- -0.003622378222644329,
- -0.05663039907813072,
- -0.018788719549775124,
- -0.05246039479970932,
- 0.012198260053992271,
- 0.004166640806943178,
- 0.03531905636191368,
- -0.014599262736737728,
- -0.07284258306026459,
- 0.05419806018471718,
- 0.04428974539041519,
- -0.12611103057861328,
- 3.692200205283958e-33,
- -0.06010504439473152,
- -0.10337788611650467,
- 0.029127219691872597,
- 0.028985317796468735,
- -0.02157527208328247,
- -0.07179022580385208,
- -0.10054630041122437,
- 0.011244499124586582,
- -0.06899547576904297,
- -0.014896710403263569,
- -0.028459647670388222,
- 0.01063302718102932,
- 0.06281983852386475,
- 0.028727702796459198,
- 0.014603442512452602,
- -0.010768067091703415,
- 0.01281415019184351,
- -0.05800692364573479,
- -0.03843558952212334,
- -0.016750352457165718,
- 0.00006977443263167515,
- 0.03042728453874588,
- -0.06621909886598587,
- -0.071538046002388,
- 0.014870371669530869,
- 0.03509785234928131,
- 0.08340119570493698,
- 0.08284357935190201,
- 0.035338323563337326,
- 0.0036880639381706715,
- 0.01388587150722742,
- -0.01124894991517067,
- -0.07887900620698929,
- -0.08069828897714615,
- -0.019653821364045143,
- 0.09253688901662827,
- -0.006218677386641502,
- 0.032967709004879,
- 0.021931897848844528,
- -0.06293977797031403,
- 0.046046651899814606,
- 0.06886322051286697,
- -0.021612703800201416,
- 0.09477508068084717,
- -0.01939576491713524,
- 0.05903301015496254,
- 0.01749914512038231,
- -0.014882819727063179,
- 0.04616188257932663,
- 0.01554578822106123,
- -0.0408172607421875,
- 0.010343827307224274,
- 0.03455507755279541,
- -0.13735398650169373,
- -0.01987183280289173,
- -0.04183775931596756,
- 0.05107516050338745,
- -0.0329059362411499,
- 0.05552603676915169,
- 0.03136884793639183,
- -0.02530529722571373,
- -0.028104042634367943,
- 0.021223315969109535,
- 0.0901113748550415,
- -0.03868430107831955,
- 0.04061423987150192,
- -0.002235220279544592,
- 0.0808645561337471,
- -0.075527623295784,
- -0.036595478653907776,
- 0.04592222720384598,
- -0.01193396095186472,
- -0.07520488649606705,
- -0.030617494136095047,
- -0.04993826895952225,
- 0.06533883512020111,
- -0.052556201815605164,
- -0.013732187449932098,
- -0.025752779096364975,
- -0.08289901167154312,
- -0.05076683685183525,
- -0.03357483819127083,
- 0.03395114839076996,
- 0.05970174819231033,
- -0.02205042727291584,
- -0.08120257407426834,
- -0.04844639450311661,
- -0.03144233301281929,
- 0.00833163969218731,
- 0.06512873619794846,
- 0.05654609203338623,
- 0.02324718050658703,
- -0.15007370710372925,
- 0.05299476534128189,
- 0.0033635576255619526,
- -1.1273387556798298e-8,
- -0.045910559594631195,
- -0.011992332525551319,
- -0.0028922620695084333,
- 0.007082819472998381,
- 0.09301729500293732,
- 0.046708520501852036,
- 0.06892029196023941,
- -0.08240990340709686,
- -0.0017733130371198058,
- 0.04598991200327873,
- 0.007034480106085539,
- -0.00014094360813032836,
- 0.01675482653081417,
- 0.050415199249982834,
- 0.14329898357391357,
- -0.04241190850734711,
- -0.028872668743133545,
- 0.08050008118152618,
- -0.02358989231288433,
- -0.02619168721139431,
- 0.044473811984062195,
- 0.052490998059511185,
- 0.026219462975859642,
- -0.0988190695643425,
- -0.03545038402080536,
- 0.003923862241208553,
- -0.039286501705646515,
- -0.03671414777636528,
- -0.03802980110049248,
- 0.08615627884864807,
- 0.030779464170336723,
- 0.11594754457473755,
- -0.02901800535619259,
- 0.03947807848453522,
- 0.025299174711108208,
- -0.03190402686595917,
- -0.09382020682096481,
- 0.013746503740549088,
- -0.016818169504404068,
- -0.01794651709496975,
- 0.014694609679281712,
- 0.10710503160953522,
- -0.011243611574172974,
- -0.034250251948833466,
- -0.06352660804986954,
- -0.04939774423837662,
- 0.02620122767984867,
- -0.08275975286960602,
- 0.010603110305964947,
- 0.027211904525756836,
- -0.009004832245409489,
- 0.009626188315451145,
- 0.08520932495594025,
- -0.008120029233396053,
- 0.07650268077850342,
- -0.03578197956085205,
- -0.014978652819991112,
- 0.053679246455430984,
- -0.01629728265106678,
- -0.004739444237202406,
- 0.11077028512954712,
- 0.0016807381762191653,
- 0.11872657388448715,
- 0.04481533169746399
- ]
- },
- {
- "keyword": "author",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.034648265689611435,
- 0.06747043877840042,
- 0.023561052978038788,
- 0.06503620743751526,
- -0.06523630023002625,
- 0.014160753227770329,
- 0.09021437913179398,
- 0.004788835998624563,
- 0.07205992192029953,
- 0.05187046527862549,
- -0.03559587523341179,
- 0.06358485668897629,
- -0.00443394435569644,
- -0.04502870887517929,
- -0.07733640819787979,
- 0.08088713884353638,
- -0.04462551325559616,
- 0.034060075879096985,
- 0.012163123115897179,
- -0.05790987238287926,
- -0.060121163725852966,
- 0.04695197194814682,
- -0.022703614085912704,
- 0.012344906106591225,
- 0.06694110482931137,
- 0.043093010783195496,
- -0.006175313610583544,
- 0.010705855675041676,
- 0.008368628099560738,
- -0.08233970403671265,
- -0.03714575245976448,
- 0.013058999553322792,
- 0.011796076782047749,
- 0.010799894109368324,
- -0.016450325027108192,
- -0.026360711082816124,
- 0.01152806170284748,
- 0.05526519566774368,
- 0.03480853512883186,
- -0.02336861379444599,
- -0.017921697348356247,
- -0.07439731806516647,
- 0.007806070148944855,
- 0.020413648337125778,
- 0.0056711221113801,
- -0.017066726461052895,
- -0.03341522440314293,
- -0.0220642052590847,
- 0.0028277181554585695,
- 0.04756449535489082,
- -0.03737255185842514,
- 0.0016442214837297797,
- -0.013061247766017914,
- -0.07706775516271591,
- 0.035552892833948135,
- 0.011432577855885029,
- -0.027849707752466202,
- 0.06782163679599762,
- 0.002241214970126748,
- -0.04443636164069176,
- 0.06805641204118729,
- 0.036778081208467484,
- -0.06898311525583267,
- 0.07068376243114471,
- 0.10713450610637665,
- 0.07751969993114471,
- 0.007805596571415663,
- 0.0061148484237492085,
- -0.09291503578424454,
- -0.03275159001350403,
- 0.036320291459560394,
- 0.05084007605910301,
- -0.03307110443711281,
- 0.019098006188869476,
- 0.05823493376374245,
- -0.04820536822080612,
- 0.001112693571485579,
- 0.001737614395096898,
- 0.06582199782133102,
- -0.042872123420238495,
- 0.022632557898759842,
- -0.010003930889070034,
- -0.04660220816731453,
- 0.037179455161094666,
- 0.015483121387660503,
- 0.07072725892066956,
- 0.00457800505682826,
- 0.0008263222989626229,
- 0.029710231348872185,
- 0.0002343355299672112,
- -0.0022462024353444576,
- -0.002137168310582638,
- 0.07851679623126984,
- -0.021876292303204536,
- -0.07532504200935364,
- 0.04111792892217636,
- -0.05605518817901611,
- -0.014453530311584473,
- -0.11883144825696945,
- 0.19670695066452026,
- -0.03553774207830429,
- 0.02701757661998272,
- -0.047911886125802994,
- 0.03465390205383301,
- 0.12289493530988693,
- -0.04476116970181465,
- 0.04086417704820633,
- 0.005929416976869106,
- -0.03913842514157295,
- -0.004311142954975367,
- -0.018986009061336517,
- 0.005832202732563019,
- -0.036592986434698105,
- 0.05005266144871712,
- 0.10280176997184753,
- 0.008153226226568222,
- 0.0020103920251131058,
- 0.00863646063953638,
- 0.014191602356731892,
- -0.004905046429485083,
- -0.009758959524333477,
- 0.003072971012443304,
- -0.06513882428407669,
- 0.007280176505446434,
- -0.10373548418283463,
- -0.05466930568218231,
- 0.003353351727128029,
- -4.180942471023048e-33,
- 0.017500804737210274,
- 0.05305818095803261,
- 0.0513102225959301,
- 0.09038825333118439,
- 0.09288404881954193,
- -0.02618739753961563,
- 0.04253018647432327,
- -0.038843508809804916,
- -0.05603721737861633,
- -0.03227737545967102,
- -0.0296782236546278,
- -0.008326342329382896,
- -0.03221781924366951,
- 0.004149974323809147,
- -0.013266023248434067,
- 0.016677800565958023,
- -0.023054739460349083,
- -0.024922164157032967,
- -0.03280853107571602,
- -0.04525110498070717,
- 0.006451069377362728,
- 0.06319437175989151,
- -0.0036991622764617205,
- 0.045454904437065125,
- -0.0392150953412056,
- -0.027916017919778824,
- 0.00404285779222846,
- -0.01396525651216507,
- 0.00457471888512373,
- 0.037741679698228836,
- 0.012073562480509281,
- 0.015577556565403938,
- -0.01443545613437891,
- -0.054656244814395905,
- -0.033953018486499786,
- -0.018761053681373596,
- -0.05029844865202904,
- -0.06393861025571823,
- 0.009209460578858852,
- 0.09819754213094711,
- -0.003805721877142787,
- -0.0012291226303204894,
- 0.02699287422001362,
- -0.07456790655851364,
- -0.04998547583818436,
- 0.02134261466562748,
- 0.07031400501728058,
- 0.004323287401348352,
- 0.11314357072114944,
- 0.05503921955823898,
- -0.061005134135484695,
- 0.025682229548692703,
- -0.05600278452038765,
- 0.014659241773188114,
- 0.04892679303884506,
- -0.03415362909436226,
- -0.031013764441013336,
- -0.013848025351762772,
- -0.01585126854479313,
- -0.018347637727856636,
- 0.006132478825747967,
- 0.1063636913895607,
- -0.07522634416818619,
- 0.07288414239883423,
- 0.053013093769550323,
- 0.005396767519414425,
- -0.0031032320111989975,
- -0.06257294118404388,
- 0.010384619235992432,
- 0.002551276469603181,
- -0.07521776854991913,
- 0.016855226829648018,
- 0.09534633904695511,
- -0.009517664089798927,
- -0.08369485288858414,
- -0.031275879591703415,
- -0.030569108203053474,
- 0.021258970722556114,
- -0.046060960739851,
- 0.013847761787474155,
- -0.04565488547086716,
- 0.00445911381393671,
- -0.002393909962847829,
- -0.01417210977524519,
- -0.11624012887477875,
- -0.024822000414133072,
- -0.0806552916765213,
- -0.04108882322907448,
- -0.006314347963780165,
- 0.09023746103048325,
- 0.004037105944007635,
- -0.045197226107120514,
- 0.017329016700387,
- 0.0036267400719225407,
- -0.07600851356983185,
- 3.226916766025449e-33,
- -0.09418074786663055,
- -0.10492361336946487,
- 0.030899960547685623,
- 0.03492050990462303,
- 0.025203794240951538,
- -0.06870082765817642,
- -0.03321800380945206,
- 0.04534124210476875,
- 0.028209321200847626,
- -0.03656682372093201,
- -0.03947567939758301,
- -0.05697427690029144,
- 0.08135867118835449,
- 0.06222062185406685,
- 0.050440069288015366,
- -0.03158425912261009,
- -0.012821760028600693,
- -0.06640788912773132,
- -0.07598999887704849,
- -0.034353744238615036,
- -0.038407664746046066,
- -0.03380972146987915,
- -0.02929765358567238,
- -0.10879692435264587,
- 0.05804739519953728,
- 0.061092618852853775,
- 0.1392805427312851,
- 0.08671732246875763,
- -0.07709015160799026,
- -0.00951886922121048,
- -0.004774651024490595,
- 0.04454069212079048,
- -0.08620110899209976,
- -0.05898745730519295,
- -0.05356442183256149,
- 0.13493655622005463,
- 0.0032928327564150095,
- 0.03221600130200386,
- -0.020561864599585533,
- -0.01721564494073391,
- 0.08385682106018066,
- 0.06121603026986122,
- 0.08901838213205338,
- 0.025296589359641075,
- 0.013381976634263992,
- 0.08202631771564484,
- 0.026718512177467346,
- -0.0006542372284457088,
- -0.0004953829338774085,
- 0.04474738612771034,
- 0.0001955228071892634,
- -0.01119622215628624,
- -0.013287486508488655,
- -0.016369283199310303,
- 0.052239786833524704,
- 0.01160386111587286,
- 0.05083810165524483,
- -0.007492222357541323,
- 0.0543329231441021,
- 0.018850177526474,
- -0.07531264424324036,
- 0.025498660281300545,
- 0.009555723518133163,
- 0.0669371709227562,
- -0.011318677105009556,
- -0.02134392224252224,
- -0.06519865244626999,
- 0.015210720710456371,
- -0.04493090137839317,
- -0.0443565733730793,
- 0.047973304986953735,
- -0.0831112340092659,
- -0.07238540053367615,
- 0.024928992614150047,
- -0.0454186350107193,
- -0.019224725663661957,
- -0.0608174093067646,
- -0.007394433952867985,
- -0.02642565220594406,
- -0.06620605289936066,
- -0.04383119195699692,
- -0.02850060723721981,
- -0.014045284129679203,
- 0.13357090950012207,
- -0.014506234787404537,
- 0.013841329142451286,
- -0.023894721642136574,
- -0.08267287164926529,
- -0.005581021308898926,
- 0.06576061993837357,
- 0.01811709627509117,
- 0.003460742300376296,
- 0.013470898382365704,
- -0.03816002234816551,
- -0.0016636920627206564,
- -1.2461270237906774e-8,
- -0.06549828499555588,
- 0.00040456769056618214,
- -0.02897563949227333,
- -0.021302025765180588,
- 0.08652142435312271,
- 0.0834255963563919,
- 0.07229504734277725,
- -0.027336863800883293,
- -0.011538582853972912,
- 0.07994495332241058,
- -0.008317748084664345,
- -0.016627689823508263,
- 0.05968695133924484,
- 0.02502601407468319,
- 0.051999371498823166,
- -0.12363579869270325,
- 0.02413039840757847,
- 0.06220013648271561,
- -0.05436810106039047,
- 0.03106549009680748,
- 0.07102860510349274,
- 0.012948493473231792,
- 0.0289826188236475,
- -0.14340484142303467,
- -0.0068700662814080715,
- 0.11357998847961426,
- -0.02689192444086075,
- 0.0005870840977877378,
- -0.011195514351129532,
- 0.059894878417253494,
- -0.0264787208288908,
- 0.16861994564533234,
- -0.038008060306310654,
- -0.03771297261118889,
- 0.05299478769302368,
- 0.02991192229092121,
- 0.03257507458329201,
- -0.0002516120730433613,
- -0.06547662615776062,
- 0.021428516134619713,
- -0.04416210576891899,
- 0.04906122758984566,
- -0.00483645498752594,
- -0.0044838618487119675,
- -0.02858499251306057,
- -0.06052432581782341,
- 0.008575830608606339,
- 0.041018541902303696,
- 0.021582815796136856,
- 0.033431995660066605,
- 0.016699690371751785,
- -0.041911326348781586,
- 0.0987534299492836,
- 0.0011475506471469998,
- -0.04333680495619774,
- -0.05667205899953842,
- 0.007057521026581526,
- 0.02921975590288639,
- -0.01917177252471447,
- -0.020833661779761314,
- 0.12277989089488983,
- -0.05002699792385101,
- 0.08717906475067139,
- 0.0200946107506752
- ]
- },
- {
- "keyword": "maker",
- "type": "creates",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.08718284219503403,
- -0.008009947836399078,
- -0.009859270416200161,
- 0.0462874136865139,
- -0.004887820221483707,
- -0.03600901737809181,
- 0.06309566646814346,
- -0.0363013856112957,
- -0.005638096947222948,
- -0.028136800974607468,
- -0.006817368790507317,
- -0.059178728610277176,
- 0.0434989407658577,
- -0.0774114727973938,
- -0.04866047203540802,
- -0.04224197193980217,
- 0.01432269811630249,
- -0.037694595754146576,
- -0.05418107286095619,
- -0.07812703400850296,
- -0.06784863024950027,
- -0.03836184740066528,
- 0.033990003168582916,
- 0.04591844230890274,
- 0.05369073897600174,
- 0.07705129683017731,
- -0.04158994182944298,
- 0.015499597415328026,
- 0.07861935347318649,
- -0.16287720203399658,
- -0.03231332078576088,
- 0.0032179963309317827,
- 0.06147153303027153,
- -0.0651523619890213,
- -0.006265271455049515,
- 0.024131935089826584,
- -0.022431399673223495,
- 0.03221147134900093,
- 0.05131039768457413,
- -0.04229113087058067,
- -0.012445416301488876,
- -0.021831614896655083,
- -0.010489927604794502,
- 0.010183309204876423,
- 0.016163920983672142,
- 0.04244476929306984,
- 0.03017783723771572,
- -0.009166708216071129,
- 0.00661716191098094,
- 0.05165833607316017,
- -0.02575370855629444,
- -0.055017147213220596,
- -0.06263500452041626,
- -0.05692636966705322,
- 0.040620896965265274,
- 0.00782756321132183,
- -0.01997736096382141,
- 0.006305447779595852,
- -0.005718986038118601,
- 0.009945151396095753,
- -0.013600721023976803,
- -0.001956857508048415,
- -0.08836472034454346,
- -0.020226528868079185,
- 0.006544056814163923,
- 0.00509808212518692,
- -0.06325091421604156,
- 0.059644442051649094,
- -0.07084343582391739,
- -0.050982505083084106,
- 0.03284325450658798,
- 0.012856696732342243,
- -0.018577760085463524,
- 0.030757280066609383,
- 0.035035014152526855,
- -0.016929829493165016,
- 0.046283334493637085,
- -0.024682512506842613,
- 0.049888718873262405,
- 0.06033875420689583,
- -0.013146527111530304,
- -0.0019793002866208553,
- -0.08386438339948654,
- 0.025854596868157387,
- -0.011675044894218445,
- -0.013278218917548656,
- 0.08215747028589249,
- 0.04178689420223236,
- 0.0593215748667717,
- -0.01191751379519701,
- -0.08110606670379639,
- 0.026248056441545486,
- 0.08482516556978226,
- -0.011504903435707092,
- -0.055240023881196976,
- 0.04021603241562843,
- 0.029183337464928627,
- 0.0372232049703598,
- -0.019126830622553825,
- 0.2189321219921112,
- -0.039174195379018784,
- 0.025902317836880684,
- -0.0001307114289375022,
- -0.02083229273557663,
- 0.06153876706957817,
- -0.0031479885801672935,
- -0.04925394803285599,
- 0.051992952823638916,
- 0.056292254477739334,
- 0.07792690396308899,
- 0.0010625802678987384,
- 0.007830265909433365,
- -0.058550555258989334,
- -0.050719164311885834,
- 0.05119748413562775,
- -0.017877498641610146,
- -0.0064192526042461395,
- 0.015481842681765556,
- 0.04621471092104912,
- -0.006225933320820332,
- 0.015033838339149952,
- 0.01379099115729332,
- -0.04346141591668129,
- 0.000476817658636719,
- -0.08888284862041473,
- 0.01533255260437727,
- 0.026772625744342804,
- -4.387346054715995e-33,
- 0.0493328794836998,
- -0.007801305036991835,
- 0.02968648448586464,
- 0.04392785578966141,
- 0.0809757262468338,
- 0.10200731456279755,
- 0.03295755758881569,
- 0.07375767827033997,
- -0.0115842055529356,
- -0.020870264619588852,
- -0.026884179562330246,
- -0.052037421613931656,
- -0.11513543128967285,
- 0.07463746517896652,
- 0.11101719737052917,
- -0.06715948134660721,
- 0.007256022188812494,
- -0.08162892609834671,
- -0.08197180181741714,
- -0.044079188257455826,
- -0.0933004766702652,
- 0.011481620371341705,
- -0.020345941185951233,
- 0.04612109065055847,
- 0.009251818992197514,
- -0.04254407435655594,
- 0.02047199010848999,
- -0.037849631160497665,
- 0.02195722796022892,
- -0.000983049743808806,
- 0.02383587695658207,
- -0.003417004831135273,
- 0.0035702139139175415,
- 0.00591696985065937,
- -0.04096260666847229,
- -0.0027005274314433336,
- -0.0944988951086998,
- -0.09138678759336472,
- 0.033750031143426895,
- 0.003932553343474865,
- -0.007600978948175907,
- 0.009627207182347775,
- -0.03856931999325752,
- 0.040032465010881424,
- -0.06222684308886528,
- 0.05152349919080734,
- 0.01909598894417286,
- 0.04452300816774368,
- 0.03846839815378189,
- 0.04511649161577225,
- -0.005144902970641851,
- 0.044088639318943024,
- 0.07505606859922409,
- 0.053745925426483154,
- 0.03416117653250694,
- -0.02051498554646969,
- 0.014678035862743855,
- -0.05868439003825188,
- 0.05532510578632355,
- -0.05839712917804718,
- 0.024922356009483337,
- 0.16611042618751526,
- 0.011350409127771854,
- 0.12655673921108246,
- 0.016372935846447945,
- 0.03369015082716942,
- 0.08596547693014145,
- -0.021311748772859573,
- 0.022878827527165413,
- -0.012516850605607033,
- -0.033448316156864166,
- -0.024926314130425453,
- -0.03627393767237663,
- 0.03142588585615158,
- -0.02883988618850708,
- 0.019554603844881058,
- -0.0536610409617424,
- 0.06475881487131119,
- -0.033978477120399475,
- -0.035926464945077896,
- -0.05506462976336479,
- 0.023158369585871696,
- -0.004641711711883545,
- -0.02237394079566002,
- 0.0005139007116667926,
- 0.01708483323454857,
- -0.04041104391217232,
- -0.020267371088266373,
- 0.05487183481454849,
- 0.022485416382551193,
- -0.09415052831172943,
- -0.044244442135095596,
- 0.08329248428344727,
- 0.0738040879368782,
- -0.12658363580703735,
- 4.016387220903344e-33,
- -0.07272794842720032,
- -0.12484622001647949,
- 0.06600482016801834,
- 0.02200394682586193,
- 0.004726476036012173,
- -0.08926207572221756,
- -0.026188183575868607,
- -0.0454818494617939,
- 0.05202987417578697,
- 0.08357332646846771,
- -0.027138976380228996,
- -0.02602684684097767,
- 0.04416731745004654,
- 0.008633268065750599,
- -0.026548421010375023,
- 0.01430413406342268,
- 0.04238194227218628,
- 0.00020081900584045798,
- 0.001442424487322569,
- -0.0407886803150177,
- 0.0221212487667799,
- -0.020499153062701225,
- -0.04136547073721886,
- -0.037335898727178574,
- -0.027501707896590233,
- 0.05135413259267807,
- 0.05634366348385811,
- 0.06419169157743454,
- 0.003436932573094964,
- -0.008751888759434223,
- 0.022417878732085228,
- -0.11145056039094925,
- -0.01763525977730751,
- 0.020009314641356468,
- -0.031895387917757034,
- 0.06890197843313217,
- -0.01518607884645462,
- 0.04824095591902733,
- 0.013838826678693295,
- -0.025875970721244812,
- 0.04412073642015457,
- -0.02545136772096157,
- -0.024255210533738136,
- 0.2164185345172882,
- -0.040957026183605194,
- -0.017169080674648285,
- -0.009314046241343021,
- -0.006074161734431982,
- 0.05786549299955368,
- 0.032823581248521805,
- -0.02333664521574974,
- 0.023261113092303276,
- -0.005459675099700689,
- -0.013309841975569725,
- -0.04974183067679405,
- 0.006188384257256985,
- 0.007435345556586981,
- -0.02748831734061241,
- -0.02670900709927082,
- 0.006263389252126217,
- -0.04103315621614456,
- 0.04255959764122963,
- 0.039789650589227676,
- 0.029091959819197655,
- -0.011443506926298141,
- 0.018337374553084373,
- 0.03839623183012009,
- 0.010723310522735119,
- 0.025337735190987587,
- 0.017140060663223267,
- 0.06464210152626038,
- 0.059120144695043564,
- -0.014385072514414787,
- 0.021588921546936035,
- -0.07591655105352402,
- 0.026885107159614563,
- -0.07580510526895523,
- -0.000987845123745501,
- -0.003991256933659315,
- -0.05257466062903404,
- 0.034571997821331024,
- -0.05637421831488609,
- 0.0410664901137352,
- 0.09320659190416336,
- -0.03134305402636528,
- -0.009396702982485294,
- 0.055329661816358566,
- 0.021926619112491608,
- -0.008223526179790497,
- 0.02757335640490055,
- 0.07521180808544159,
- 0.045857854187488556,
- -0.04407297447323799,
- 0.08386393636465073,
- 0.015515717677772045,
- -1.1888976914065097e-8,
- 0.018560603260993958,
- -0.060799840837717056,
- -0.013331898488104343,
- 0.014636988751590252,
- 0.034171804785728455,
- -0.03425152599811554,
- -0.003709569340571761,
- -0.07168692350387573,
- -0.008532359264791012,
- 0.031060464680194855,
- 0.02570279687643051,
- 0.008792049251496792,
- -0.03750733286142349,
- 0.01700405403971672,
- 0.05485955625772476,
- -0.09237551689147949,
- 0.013619698584079742,
- 0.09060441702604294,
- -0.045479342341423035,
- -0.07558155059814453,
- 0.02180529199540615,
- 0.007054419256746769,
- 0.08190186321735382,
- -0.020642777904868126,
- -0.06078159064054489,
- -0.04228316992521286,
- -0.010433642193675041,
- 0.051257286220788956,
- 0.008369782008230686,
- 0.04266660287976265,
- 0.05307268351316452,
- 0.1080896183848381,
- -0.02630465291440487,
- 0.04422556981444359,
- -0.051785148680210114,
- -0.11520200967788696,
- -0.05642906203866005,
- -0.008298183791339397,
- -0.042672961950302124,
- -0.044901397079229355,
- -0.03537033498287201,
- 0.06846977025270462,
- -0.01594364270567894,
- -0.042431410402059555,
- -0.03229209780693054,
- -0.006540766451507807,
- 0.027760324999690056,
- -0.11267466843128204,
- 0.011917260475456715,
- 0.017473280429840088,
- -0.02118655852973461,
- 0.05705541372299194,
- 0.11190222203731537,
- 0.02133079431951046,
- 0.03646343946456909,
- -0.03975708410143852,
- -0.030598066747188568,
- -0.013891071081161499,
- -0.044911857694387436,
- -0.03081274963915348,
- 0.08441112190485,
- -0.05953127145767212,
- 0.19221150875091553,
- 0.05860099941492081
- ]
- },
- {
- "keyword": "belongs to",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.01820758543908596,
- -0.02579866535961628,
- 0.01893552765250206,
- -0.010790265165269375,
- 0.04200807213783264,
- -0.011856917291879654,
- 0.12466277927160263,
- -0.050810687243938446,
- 0.02675812505185604,
- -0.01924924924969673,
- -0.029125573113560677,
- -0.07120450586080551,
- 0.09960576146841049,
- -0.026437392458319664,
- -0.00834509078413248,
- -0.006816720124334097,
- -0.02920861542224884,
- -0.0051154582761228085,
- -0.09993578493595123,
- -0.04544885456562042,
- -0.06666290014982224,
- 0.023260241374373436,
- 0.02258242480456829,
- 0.022322017699480057,
- -0.02846905216574669,
- 0.06524692475795746,
- -0.0042848363518714905,
- 0.03649081289768219,
- 0.0037018803413957357,
- -0.035887930542230606,
- -0.018365750089287758,
- 0.019389942288398743,
- -0.05268188565969467,
- 0.029157070443034172,
- 0.03584400191903114,
- 0.011277367360889912,
- 0.05880335345864296,
- -0.03951171785593033,
- 0.03345055505633354,
- -0.03760548681020737,
- -0.013154168613255024,
- -0.024271365255117416,
- 0.042919427156448364,
- -0.012796495109796524,
- 0.01899983361363411,
- 0.06670328229665756,
- 0.025828510522842407,
- -0.0461488775908947,
- 0.030654551461338997,
- 0.055081505328416824,
- -0.039594847708940506,
- -0.025002947077155113,
- -0.02277437224984169,
- 0.07906083017587662,
- 0.0033453761134296656,
- 0.08532033115625381,
- 0.0033117267303168774,
- 0.005783772096037865,
- -0.010175191797316074,
- -0.00041044590761885047,
- 0.07277434319257736,
- 0.029278241097927094,
- -0.012438095174729824,
- 0.003719621803611517,
- -0.018614087253808975,
- -0.025582319125533104,
- -0.006726144813001156,
- 0.06767705827951431,
- -0.10228320956230164,
- -0.0030011169146746397,
- 0.07034870982170105,
- 0.04201752692461014,
- -0.03826211020350456,
- 0.13428550958633423,
- 0.02654774859547615,
- -0.013613511808216572,
- 0.07071417570114136,
- -0.028483688831329346,
- 0.09568633884191513,
- -0.07662663608789444,
- 0.014421524479985237,
- 0.03045562468469143,
- -0.043911948800086975,
- 0.03703057020902634,
- -0.008282195776700974,
- -0.003119522472843528,
- 0.02448086254298687,
- -0.07182254642248154,
- -0.0941493958234787,
- 0.008443114347755909,
- -0.035205114632844925,
- -0.04459163174033165,
- 0.14120511710643768,
- 0.022551702335476875,
- -0.06911597400903702,
- -0.013452436774969101,
- 0.054942063987255096,
- 0.03433355316519737,
- -0.03912390395998955,
- 0.20163673162460327,
- -0.03415224328637123,
- 0.02509325183928013,
- -0.03628766909241676,
- 0.014543313533067703,
- 0.010975439101457596,
- 0.0116599565371871,
- 0.025591641664505005,
- 0.06971243768930435,
- 0.06663381308317184,
- -0.06438452750444412,
- -0.02640715055167675,
- 0.039355047047138214,
- -0.11127720773220062,
- 0.061950430274009705,
- 0.04919490963220596,
- -0.12856020033359528,
- -0.03199567645788193,
- -0.0011370825814083219,
- -0.005599473603069782,
- -0.049603287130594254,
- 0.000496978813316673,
- 0.022150445729494095,
- -0.0214593093842268,
- 0.03846472501754761,
- -0.017117008566856384,
- -0.10786057263612747,
- -0.03623020276427269,
- -6.597802937351827e-33,
- 0.028960546478629112,
- 0.034854575991630554,
- -0.01691490225493908,
- 0.00849892944097519,
- 0.00002750333078438416,
- 0.03695596754550934,
- -0.021385878324508667,
- 0.05450465530157089,
- -0.10613454878330231,
- 0.020756911486387253,
- -0.05105193331837654,
- 0.05916433408856392,
- -0.036128487437963486,
- -0.05154094099998474,
- 0.12541113793849945,
- 0.04338274151086807,
- -0.04848760738968849,
- 0.00014158053090795875,
- -0.03778942674398422,
- -0.051619429141283035,
- -0.06009794771671295,
- 0.13952776789665222,
- -0.053144533187150955,
- 0.030010730028152466,
- -0.010367639362812042,
- 0.0583735927939415,
- -0.056243591010570526,
- -0.07610984891653061,
- -0.037806976586580276,
- 0.04588231071829796,
- -0.004303154535591602,
- 0.00027538574067875743,
- -0.054631929844617844,
- -0.056277092546224594,
- 0.0001334692060481757,
- -0.004696421325206757,
- 0.04781395569443703,
- -0.01213181670755148,
- -0.012349426746368408,
- -0.00875176303088665,
- 0.021624909713864326,
- -0.041845329105854034,
- 0.005788280628621578,
- 0.04172087833285332,
- 0.02946280688047409,
- 0.03533807769417763,
- 0.08309783041477203,
- 0.011690391227602959,
- 0.06776966154575348,
- 0.070988729596138,
- 0.003757375990971923,
- -0.07228202372789383,
- -0.015965107828378677,
- 0.0025529060512781143,
- -0.03130216896533966,
- -0.10517352819442749,
- 0.021974196657538414,
- 0.02385011874139309,
- 0.03930557891726494,
- -0.07795462012290955,
- 0.07605874538421631,
- 0.024346835911273956,
- -0.05865982919931412,
- 0.07182146608829498,
- 0.0003322568954899907,
- 0.047270774841308594,
- -0.016154885292053223,
- -0.07484157383441925,
- 0.051535412669181824,
- -0.03232878819108009,
- -0.05169249325990677,
- 0.02582656964659691,
- -0.057655006647109985,
- 0.09777579456567764,
- -0.04088239744305611,
- -0.035658665001392365,
- -0.01953940838575363,
- 0.0064786579459905624,
- -0.06481029838323593,
- 0.019502896815538406,
- -0.03971681743860245,
- -0.017684318125247955,
- -0.04401974380016327,
- 0.02428307570517063,
- 0.06739813089370728,
- -0.04073256254196167,
- -0.015619765035808086,
- -0.1959686428308487,
- -0.002430310007184744,
- 0.046747077256441116,
- 0.06314049661159515,
- 0.006048307754099369,
- -0.023654090240597725,
- 0.07943359762430191,
- -0.05697052925825119,
- 3.804891909961413e-33,
- -0.0351606048643589,
- -0.020404022186994553,
- 0.046380724757909775,
- 0.03683667257428169,
- 0.03975918889045715,
- -0.06826630234718323,
- 0.07878410071134567,
- -0.0024267593398690224,
- -0.0437820740044117,
- 0.013860941864550114,
- -0.025821436196565628,
- -0.020504266023635864,
- 0.04625021666288376,
- 0.015599632635712624,
- 0.03858877345919609,
- 0.038978978991508484,
- 0.06019776314496994,
- -0.026698492467403412,
- -0.09766645729541779,
- -0.03564377874135971,
- -0.07943069189786911,
- 0.06920380890369415,
- -0.0031723235733807087,
- 0.004885196220129728,
- -0.03271588310599327,
- 0.08615768700838089,
- 0.03971870616078377,
- 0.03206463158130646,
- -0.016853176057338715,
- -0.09234758466482162,
- 0.025416206568479538,
- -0.021853366866707802,
- -0.06700585037469864,
- -0.048612866550683975,
- -0.022539760917425156,
- 0.04084094986319542,
- 0.004090346861630678,
- -0.048523079603910446,
- -0.02562778629362583,
- 0.017115896567702293,
- 0.022954246029257774,
- 0.016735097393393517,
- -0.0007364205666817725,
- 0.18429109454154968,
- 0.028583457693457603,
- 0.011871455237269402,
- 0.03783202916383743,
- -0.011112328618764877,
- 0.08325129747390747,
- 0.023956837132573128,
- 0.010646926239132881,
- -0.037924617528915405,
- 0.06529972702264786,
- -0.004977855831384659,
- 0.08139722794294357,
- 0.04712698981165886,
- -0.03501300513744354,
- 0.025273840874433517,
- 0.018061498180031776,
- -0.04281110316514969,
- 0.0017078717937693,
- 0.0721178725361824,
- -0.028133951127529144,
- 0.08388260751962662,
- -0.051969289779663086,
- -0.06282292306423187,
- -0.07868541032075882,
- 0.06058550626039505,
- -0.03691404312849045,
- -0.025861449539661407,
- -0.04723595455288887,
- -0.0698903501033783,
- -0.04329250007867813,
- -0.027359366416931152,
- -0.057933371514081955,
- -0.029657110571861267,
- -0.022273339331150055,
- 0.07376717776060104,
- -0.03286277875304222,
- -0.07668443024158478,
- -0.07106027752161026,
- -0.06346879154443741,
- -0.007699067238718271,
- 0.018884435296058655,
- 0.016569504514336586,
- -0.0026872893795371056,
- 0.12207317352294922,
- -0.06309428066015244,
- 0.0342344231903553,
- -0.05387308821082115,
- 0.05056636407971382,
- 0.04959091171622276,
- -0.0344025120139122,
- -0.09009277075529099,
- -0.04056188836693764,
- -1.4180469243285643e-8,
- -0.013719192706048489,
- 0.043315254151821136,
- -0.013246022164821625,
- 0.027760185301303864,
- 0.003152277087792754,
- 0.05110796540975571,
- 0.058508120477199554,
- -0.004886437673121691,
- 0.003277565585449338,
- 0.11152027547359467,
- -0.0022942647337913513,
- 0.00914035551249981,
- 0.027975110337138176,
- 0.005509966053068638,
- 0.031215505674481392,
- -0.023521913215517998,
- -0.05587049201130867,
- -0.031306978315114975,
- -0.06581255048513412,
- 0.06685812026262283,
- -0.032706521451473236,
- -0.007899590767920017,
- 0.005159531254321337,
- -0.050024375319480896,
- -0.057441599667072296,
- -0.05585375055670738,
- -0.009574316442012787,
- -0.05552297830581665,
- 0.048792652785778046,
- 0.07207492738962173,
- -0.006813188549131155,
- 0.07885466516017914,
- -0.039461586624383926,
- -0.015824569389224052,
- -0.06379449367523193,
- -0.08171945810317993,
- 0.024578966200351715,
- -0.0005420547095127404,
- 0.004069115500897169,
- -0.072243832051754,
- -0.018055206164717674,
- -0.0019181318348273635,
- -0.027850978076457977,
- 0.08290651440620422,
- -0.009980822913348675,
- -0.0005493824719451368,
- 0.07439307123422623,
- -0.05622929334640503,
- -0.015848511829972267,
- 0.00016469070396851748,
- -0.026130270212888718,
- -0.045180968940258026,
- -0.01304715871810913,
- 0.04787837713956833,
- -0.007013867609202862,
- -0.006293552927672863,
- -0.03624827042222023,
- 0.024737797677516937,
- -0.06272844225168228,
- -0.004555700812488794,
- 0.047868434339761734,
- 0.07068967074155807,
- 0.06706235557794571,
- 0.04629585146903992
- ]
- },
- {
- "keyword": "owned by",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.025151727721095085,
- 0.02993186004459858,
- 0.0008969849441200495,
- 0.003325089579448104,
- -0.006857347674667835,
- -0.06901699304580688,
- 0.1330609768629074,
- -0.07436162978410721,
- 0.012586022727191448,
- 0.023624595254659653,
- -0.002821951871737838,
- 0.05609182268381119,
- 0.04107681289315224,
- -0.026824744418263435,
- -0.05260260030627251,
- 0.02288201078772545,
- -0.04631538689136505,
- -0.027617748826742172,
- -0.053386930376291275,
- -0.04704061150550842,
- -0.09222505241632462,
- -0.05174846202135086,
- -0.008926663547754288,
- 0.014456507749855518,
- 0.08405718207359314,
- 0.060754865407943726,
- -0.03902006521821022,
- 0.0982336774468422,
- 0.0817757323384285,
- -0.046843674033880234,
- 0.019550198689103127,
- -0.04308580607175827,
- 0.027681147679686546,
- 0.020919784903526306,
- -0.05259763076901436,
- -0.02876141481101513,
- 0.00757919205352664,
- -0.09708498418331146,
- 0.032734163105487823,
- 0.022467482835054398,
- -0.009223280474543571,
- -0.004951489623636007,
- 0.035303082317113876,
- 0.03394639864563942,
- -0.015962304547429085,
- 0.11401226371526718,
- 0.00809365976601839,
- 0.015040961094200611,
- 0.045632775872945786,
- 0.07315908372402191,
- -0.051955919712781906,
- 0.0346195288002491,
- 0.0014537055976688862,
- -0.06627798825502396,
- 0.04527994617819786,
- 0.049764275550842285,
- -0.017635462805628777,
- -0.022071998566389084,
- 0.020894885063171387,
- -0.026661528274416924,
- 0.029998742043972015,
- 0.04301286116242409,
- -0.062173087149858475,
- 0.03532088175415993,
- 0.029940733686089516,
- -0.021916601806879044,
- 0.04782577231526375,
- 0.033719852566719055,
- -0.07356629520654678,
- -0.050961390137672424,
- 0.11822947859764099,
- -0.026247499510645866,
- 0.028640564531087875,
- 0.03938016667962074,
- -0.014969300478696823,
- -0.00021340059174690396,
- 0.04130462557077408,
- 0.015334796160459518,
- -0.013923319056630135,
- -0.00779776880517602,
- -0.026684481650590897,
- 0.07974620163440704,
- -0.009279628284275532,
- 0.005515179131180048,
- -0.03784875571727753,
- 0.039850857108831406,
- 0.0824933797121048,
- 0.032991714775562286,
- 0.07064826786518097,
- 0.04504142329096794,
- -0.0037883438635617495,
- -0.0028093818109482527,
- 0.09021003544330597,
- -0.017021765932440758,
- -0.05326706916093826,
- 0.01816975139081478,
- -0.02468029037117958,
- 0.04523225128650665,
- -0.0898023173213005,
- 0.1787610948085785,
- -0.023797059431672096,
- 0.030696062371134758,
- -0.10542405396699905,
- -0.044270824640989304,
- 0.0426671989262104,
- 0.04167924076318741,
- -0.02726895920932293,
- 0.07486523687839508,
- 0.004101736471056938,
- -0.04912919923663139,
- -0.08351460844278336,
- -0.030328338965773582,
- -0.06635255366563797,
- 0.0893564447760582,
- 0.08426864445209503,
- -0.020296717062592506,
- -0.0873226448893547,
- 0.018586844205856323,
- 0.05284133180975914,
- -0.11607684195041656,
- 0.03084631636738777,
- 0.011107237078249454,
- -0.017567139118909836,
- 0.011748840101063251,
- -0.02750973403453827,
- -0.025527426972985268,
- 0.009025593288242817,
- -3.658128134183389e-33,
- 0.024724377319216728,
- 0.05098387226462364,
- 0.003469551680609584,
- -0.011583661660552025,
- 0.04425960034132004,
- 0.02293935976922512,
- 0.01215963065624237,
- 0.03276257589459419,
- -0.0983344167470932,
- 0.012579431757330894,
- 0.06579633802175522,
- 0.00939056184142828,
- -0.042747851461172104,
- -0.09502651542425156,
- 0.07887795567512512,
- -0.015255582518875599,
- -0.02105984278023243,
- -0.07533302158117294,
- -0.026470426470041275,
- -0.04228268936276436,
- -0.03724101930856705,
- 0.1400432586669922,
- -0.03307194635272026,
- 0.05687863379716873,
- -0.027039600536227226,
- -0.08710738271474838,
- -0.07231592386960983,
- -0.002951530972495675,
- -0.0001949419965967536,
- 0.06478457152843475,
- 0.03883231058716774,
- -0.013651185669004917,
- -0.02518346719443798,
- -0.02796429954469204,
- -0.03481864184141159,
- 0.011424134485423565,
- -0.04804922640323639,
- 0.007113093975931406,
- -0.06248610094189644,
- 0.08504074811935425,
- -0.01029288861900568,
- -0.04262646287679672,
- -0.03688942641019821,
- -0.03616539016366005,
- -0.09142131358385086,
- 0.01847364939749241,
- -0.035191506147384644,
- 0.01766553707420826,
- 0.018303535878658295,
- 0.02427772805094719,
- -0.03866611048579216,
- -0.051613908261060715,
- -0.0914003923535347,
- 0.0059946440160274506,
- 0.026107724756002426,
- -0.06155598908662796,
- -0.014445241540670395,
- -0.01781201921403408,
- 0.019480807706713676,
- -0.0650978833436966,
- -0.016780637204647064,
- 0.10462097078561783,
- -0.013598751276731491,
- 0.12395236641168594,
- -0.016453145071864128,
- -0.0028841178864240646,
- 0.08404827862977982,
- -0.057632364332675934,
- -0.0030407134909182787,
- 0.005185707937926054,
- -0.04186137393116951,
- 0.04804161190986633,
- 0.02346658706665039,
- 0.043065913021564484,
- -0.05472154542803764,
- -0.038469117134809494,
- -0.036379389464855194,
- 0.0626726821064949,
- -0.019331902265548706,
- 0.03987443074584007,
- -0.018152659758925438,
- -0.050446733832359314,
- 0.05594215542078018,
- 0.08837028592824936,
- 0.0053429193794727325,
- 0.027525518089532852,
- -0.005220257211476564,
- -0.08011361211538315,
- 0.0023668636567890644,
- 0.07658950984477997,
- -0.02635420858860016,
- -0.015594677068293095,
- 0.05697109177708626,
- 0.033512748777866364,
- -0.07875945419073105,
- 1.8127880621076137e-33,
- -0.04828989878296852,
- -0.09173192083835602,
- 0.019616099074482918,
- -0.0022430478129535913,
- -0.04634860157966614,
- -0.050477251410484314,
- -0.004947454668581486,
- 0.010151458904147148,
- -0.04734068736433983,
- -0.02837103232741356,
- -0.03637353330850601,
- -0.026463380083441734,
- 0.0019342991290614009,
- 0.10918841511011124,
- 0.06314422935247421,
- 0.006898137275129557,
- 0.10960318148136139,
- -0.11379362642765045,
- -0.06908278167247772,
- -0.06814704835414886,
- -0.10336016863584518,
- 0.07382475584745407,
- 0.051264457404613495,
- 0.04703717306256294,
- -0.02815462276339531,
- 0.07142387330532074,
- 0.011045889928936958,
- 0.07986237108707428,
- -0.027262846007943153,
- -0.01770835742354393,
- 0.02863212488591671,
- -0.06191524863243103,
- -0.01363047119230032,
- -0.028587136417627335,
- -0.021034926176071167,
- 0.018595654517412186,
- -0.08797311782836914,
- 0.049211978912353516,
- -0.0330272875726223,
- -0.015987921506166458,
- 0.01807260327041149,
- 0.078946053981781,
- 0.021648114547133446,
- 0.10400265455245972,
- 0.01258403155952692,
- -0.02739810384809971,
- 0.00010524119716137648,
- -0.11333540827035904,
- 0.05976776406168938,
- 0.061064861714839935,
- -0.027443431317806244,
- 0.0002976813993882388,
- 0.08173228055238724,
- 0.013931590132415295,
- -0.026928847655653954,
- -0.011163034476339817,
- 0.0940408855676651,
- 0.09779593348503113,
- 0.04915791004896164,
- -0.03473209589719772,
- 0.006007160060107708,
- 0.07121793180704117,
- -0.009294455870985985,
- 0.08836179971694946,
- -0.04086907580494881,
- -0.010351181030273438,
- -0.03556469827890396,
- -0.04357518255710602,
- 0.060521140694618225,
- -0.04715545475482941,
- -0.0387507788836956,
- -0.028490589931607246,
- -0.056174520403146744,
- -0.062375374138355255,
- -0.0204605795443058,
- 0.034296464174985886,
- -0.06905436515808105,
- 0.0013373596593737602,
- -0.013543302193284035,
- -0.09044678509235382,
- -0.009289754554629326,
- -0.01941290870308876,
- 0.040333341807127,
- 0.07370325177907944,
- -0.05245301127433777,
- 0.02803836762905121,
- 0.0057939765974879265,
- -0.06255488097667694,
- 0.000033176613214891404,
- 0.015910940244793892,
- 0.05256502330303192,
- 0.027169639244675636,
- -0.0622478649020195,
- -0.04925261437892914,
- 0.004824778530746698,
- -1.3847807345257479e-8,
- -0.02952340990304947,
- 0.011248251423239708,
- 0.03002719022333622,
- 0.030239317566156387,
- 0.10241085290908813,
- 0.03632417321205139,
- 0.08495531231164932,
- 0.025065280497074127,
- 0.03792141377925873,
- 0.06694359332323074,
- -0.025096841156482697,
- -0.0030035970266908407,
- -0.027024738490581512,
- 0.024029532447457314,
- -0.018555931746959686,
- -0.047449588775634766,
- -0.07814338803291321,
- 0.026036331430077553,
- -0.07031217217445374,
- -0.014807448722422123,
- -0.0017337762983515859,
- -0.00863487459719181,
- 0.09860138595104218,
- -0.03742503002285957,
- -0.10192443430423737,
- 0.053049810230731964,
- 0.014848808757960796,
- -0.041147101670503616,
- 0.04929719865322113,
- 0.07321799546480179,
- 0.006429058033972979,
- 0.06992276757955551,
- -0.020389240235090256,
- -0.027196168899536133,
- 0.05900413915514946,
- -0.11117642372846603,
- -0.0010516513139009476,
- 0.012997004203498363,
- 0.00831990409642458,
- -0.032302722334861755,
- -0.08412817865610123,
- 0.07381699234247208,
- -0.009940773248672485,
- 0.04056182876229286,
- -0.018129711970686913,
- 0.010693398304283619,
- 0.028582800179719925,
- -0.023943781852722168,
- -0.052953608334064484,
- -0.07565400749444962,
- 0.023188654333353043,
- -0.029062420129776,
- 0.01604347676038742,
- 0.028667647391557693,
- -0.05603265389800072,
- -0.006660654209554195,
- 0.006127735134214163,
- 0.05708595737814903,
- -0.06402637809515,
- -0.04649536684155464,
- -0.01662825420498848,
- -0.04029590263962746,
- 0.022309578955173492,
- 0.0436578169465065
- ]
- },
- {
- "keyword": "property of",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.017268706113100052,
- 0.1208101436495781,
- 0.006557360291481018,
- 0.05450071766972542,
- -0.03157487139105797,
- 0.011555705219507217,
- 0.18609710037708282,
- -0.04891744628548622,
- 0.02521362714469433,
- 0.02717495895922184,
- -0.004175257403403521,
- -0.02181801199913025,
- 0.046172503381967545,
- -0.04384168982505798,
- 0.05537490174174309,
- 0.026453111320734024,
- 0.02944250963628292,
- 0.03407201170921326,
- -0.08406618237495422,
- 0.057908106595277786,
- -0.01685299351811409,
- 0.004835070110857487,
- 0.02989790588617325,
- 0.06146726757287979,
- -0.017853954806923866,
- 0.09055131673812866,
- -0.032398730516433716,
- 0.012319057248532772,
- 0.07464122772216797,
- -0.04258599877357483,
- -0.004787169862538576,
- -0.0030924680177122355,
- 0.025436462834477425,
- -0.025801336392760277,
- 0.03417745977640152,
- -0.0021732966415584087,
- 0.0735492929816246,
- 0.018436532467603683,
- 0.02901931293308735,
- 0.05250507965683937,
- -0.01985475793480873,
- -0.11054958403110504,
- 0.061692554503679276,
- -0.03153291344642639,
- -0.014719299040734768,
- 0.08297479152679443,
- 0.08951903134584427,
- -0.0218860674649477,
- 0.04053942859172821,
- -0.031226422637701035,
- -0.06317305564880371,
- 0.015517671592533588,
- -0.04930345341563225,
- -0.024980127811431885,
- 0.05753449723124504,
- 0.028844883665442467,
- 0.1108403280377388,
- 0.027919827029109,
- 0.07504671812057495,
- -0.036457471549510956,
- 0.06831136345863342,
- 0.04919556528329849,
- -0.04819485917687416,
- 0.08447977155447006,
- 0.09635841846466064,
- -0.05993249639868736,
- 0.04672660306096077,
- -0.006478729657828808,
- -0.07054197043180466,
- -0.03736749663949013,
- 0.13035441935062408,
- 0.05610533431172371,
- 0.05529260262846947,
- 0.08765395730733871,
- 0.02248319797217846,
- -0.02049846015870571,
- -0.038886502385139465,
- -0.051026664674282074,
- 0.06619235128164291,
- 0.004054270684719086,
- -0.044511113315820694,
- -0.06657028943300247,
- -0.022282671183347702,
- 0.01171125564724207,
- -0.009329141117632389,
- 0.02270524762570858,
- 0.031159747391939163,
- -0.03214157745242119,
- -0.026540808379650116,
- 0.07294430583715439,
- -0.02403442934155464,
- -0.04491082578897476,
- 0.040879715234041214,
- 0.021943828091025352,
- -0.054700788110494614,
- -0.01616426184773445,
- -0.07103390246629715,
- -0.11512564867734909,
- 0.0019705891609191895,
- 0.17119237780570984,
- -0.03722226247191429,
- 0.04366590082645416,
- -0.03124561905860901,
- 0.015011509880423546,
- 0.02572689577937126,
- -0.019488496705889702,
- 0.0062614865601062775,
- -0.007301634177565575,
- -0.0037276442162692547,
- 0.046068381518125534,
- -0.01950521022081375,
- -0.05454355850815773,
- -0.03777769207954407,
- 0.04794850945472717,
- 0.0074346624314785,
- -0.03207433596253395,
- -0.05491119250655174,
- -0.07484069466590881,
- 0.021560195833444595,
- -0.17158982157707214,
- 0.05135812982916832,
- -0.04904390126466751,
- 0.012509392574429512,
- 0.008912197314202785,
- -0.015353930182754993,
- -0.11529364436864853,
- 0.05225490406155586,
- -5.5885499363587045e-33,
- -0.0355713814496994,
- -0.031398896127939224,
- -0.00043261589598841965,
- 0.03668287396430969,
- -0.004883669316768646,
- -0.008294278755784035,
- -0.05350789800286293,
- -0.020197993144392967,
- -0.03944961726665497,
- 0.02062775194644928,
- 0.026761595159769058,
- 0.011351651512086391,
- -0.04733872786164284,
- -0.07855413109064102,
- 0.021991083398461342,
- 0.04734256863594055,
- 0.04797552153468132,
- -0.0013400636380538344,
- 0.03485248610377312,
- -0.04499564319849014,
- -0.04090413823723793,
- 0.06616812199354172,
- -0.0013276247773319483,
- 0.010381478816270828,
- 0.01635148748755455,
- -0.06116318702697754,
- -0.02414257638156414,
- -0.014753967523574829,
- -0.06616172194480896,
- 0.01717561110854149,
- 0.03691145032644272,
- 0.08617807924747467,
- 0.018492255359888077,
- -0.0022570875007659197,
- -0.04212334379553795,
- 0.04150177538394928,
- 0.00607479689642787,
- -0.05650145560503006,
- -0.0029336351435631514,
- 0.024896804243326187,
- -0.03161744028329849,
- -0.04411965608596802,
- 0.017056964337825775,
- -0.0023042955435812473,
- 0.002542925998568535,
- -0.006239038892090321,
- 0.02120274119079113,
- 0.01146193128079176,
- -0.0413031242787838,
- 0.03029041551053524,
- 0.03238310292363167,
- 0.03340590372681618,
- -0.0998096913099289,
- -0.052464716136455536,
- 0.03813644126057625,
- -0.03314071521162987,
- -0.051770079880952835,
- 0.09249439090490341,
- -0.06370580941438675,
- -0.00509066553786397,
- -0.056252382695674896,
- 0.03276723995804787,
- 0.05220877751708031,
- 0.023278428241610527,
- -0.07910940796136856,
- 0.012321097776293755,
- 0.03086623176932335,
- -0.07568101584911346,
- 0.0674985945224762,
- -0.04822399467229843,
- -0.05326531082391739,
- -0.013064312748610973,
- -0.013537823222577572,
- -0.0325174443423748,
- 0.04772816225886345,
- -0.05532410368323326,
- -0.013743541203439236,
- -0.0410025492310524,
- -0.0153950871899724,
- 0.06872399151325226,
- -0.11658503115177155,
- 0.042250897735357285,
- -0.010235816240310669,
- 0.047183599323034286,
- -0.029058558866381645,
- 0.029780946671962738,
- 0.04169001430273056,
- -0.07313784211874008,
- 0.024602515622973442,
- 0.050114747136831284,
- -0.018521714955568314,
- -0.04767758399248123,
- 0.016323892399668694,
- -0.007769952528178692,
- 0.002265365794301033,
- 2.6372562898873497e-33,
- -0.06799561530351639,
- -0.10937850922346115,
- -0.03181205689907074,
- 0.06315117329359055,
- -0.04068639874458313,
- -0.08827522397041321,
- 0.002393784699961543,
- -0.035769760608673096,
- -0.08908326178789139,
- -0.007375707849860191,
- 0.03977567330002785,
- -0.06053289398550987,
- -0.07295358926057816,
- 0.035467397421598434,
- -0.017734818160533905,
- 0.006689183879643679,
- 0.07014334946870804,
- -0.1207580715417862,
- 0.026105016469955444,
- -0.024048056453466415,
- -0.0626806691288948,
- 0.014082376845180988,
- 0.07457946240901947,
- 0.02716347761452198,
- -0.08348776400089264,
- -0.04939638450741768,
- -0.08071120083332062,
- 0.025296133011579514,
- -0.001780049060471356,
- -0.049405258148908615,
- 0.022489722818136215,
- -0.0274348221719265,
- -0.04033578559756279,
- -0.013594170100986958,
- -0.0524136908352375,
- -0.005454658530652523,
- 0.14611634612083435,
- -0.03455250337719917,
- -0.06546033918857574,
- 0.045050643384456635,
- 0.05798118934035301,
- 0.04457707703113556,
- 0.04379536956548691,
- 0.07954734563827515,
- 0.040399957448244095,
- -0.028855284675955772,
- 0.08741727471351624,
- -0.04016933590173721,
- 0.08700510114431381,
- 0.002395509509369731,
- 0.056336767971515656,
- -0.06551766395568848,
- 0.08120600879192352,
- -0.027700459584593773,
- -0.04262669011950493,
- 0.008615430444478989,
- 0.025860844179987907,
- -0.023060597479343414,
- 0.0011285088257864118,
- 0.04653226584196091,
- 0.006374192424118519,
- 0.08822254836559296,
- -0.08759760856628418,
- 0.14846765995025635,
- -0.03324150666594505,
- -0.016724860295653343,
- -0.03220405802130699,
- 0.029334867373108864,
- 0.042009808123111725,
- -0.024407489225268364,
- 0.00043701360118575394,
- -0.09544871002435684,
- -0.07502485811710358,
- -0.020718706771731377,
- -0.04303193464875221,
- 0.05926581844687462,
- 0.0394304022192955,
- 0.02756476402282715,
- 0.03946685418486595,
- -0.022086650133132935,
- 0.002165498211979866,
- 0.010553641244769096,
- -0.014084326103329659,
- -0.024543698877096176,
- -0.035316720604896545,
- -0.022338388487696648,
- 0.011319398880004883,
- -0.04446457326412201,
- 0.019363604485988617,
- 0.03166712820529938,
- -0.04242178052663803,
- 0.06781536340713501,
- -0.11134016513824463,
- -0.05620148032903671,
- -0.07079699635505676,
- -1.4434921702388692e-8,
- -0.0721551850438118,
- -0.039596784859895706,
- 0.06030099838972092,
- 0.0576263852417469,
- 0.07295551151037216,
- 0.0055299438536167145,
- 0.11618804931640625,
- -0.04461432993412018,
- -0.03247428685426712,
- 0.058252692222595215,
- 0.028143780305981636,
- 0.07370167970657349,
- -0.00898818764835596,
- 0.09885511547327042,
- -0.03281569480895996,
- -0.07137195765972137,
- -0.031158447265625,
- -0.08601544052362442,
- -0.044986702501773834,
- 0.0680813193321228,
- 0.036051202565431595,
- -0.046746961772441864,
- 0.02602027729153633,
- -0.01889401115477085,
- 0.005167929921299219,
- -0.019091280177235603,
- -0.01954897679388523,
- -0.08131392300128937,
- -0.000019855988284689374,
- 0.07047811895608902,
- 0.016206923872232437,
- 0.07734904438257217,
- 0.04068239778280258,
- 0.06472618877887726,
- 0.0745575875043869,
- -0.006896492093801498,
- 0.05039501562714577,
- 0.05389384552836418,
- -0.0034588524140417576,
- 0.03694292530417442,
- -0.0048970747739076614,
- -0.05620783567428589,
- -0.041675690561532974,
- -0.007645363453775644,
- -0.02402443252503872,
- -0.01663924753665924,
- -0.01679988205432892,
- -0.0060610175132751465,
- -0.03548547253012657,
- -0.027882413938641548,
- 0.005473510827869177,
- 0.002911185845732689,
- 0.008324407041072845,
- 0.01635344699025154,
- -0.0012247294653207064,
- 0.00921802967786789,
- -0.0009956677677109838,
- 0.0027398932725191116,
- -0.030635807663202286,
- -0.03854459896683693,
- 0.019868889823555946,
- 0.003600855590775609,
- -0.0013439698377624154,
- 0.008402092382311821
- ]
- },
- {
- "keyword": "part of",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.022892341017723083,
- 0.09756245464086533,
- 0.10362919420003891,
- 0.04894853010773659,
- 0.060438185930252075,
- -0.054957613348960876,
- 0.11306358873844147,
- -0.009718028828501701,
- 0.014435880817472935,
- -0.03938664495944977,
- -0.02856658399105072,
- -0.01689128205180168,
- -0.0015890641370788217,
- -0.047639258205890656,
- 0.05368872359395027,
- -0.09293247759342194,
- 0.0022758275736123323,
- 0.020891599357128143,
- -0.11268500983715057,
- 0.013461681082844734,
- -0.1292080581188202,
- 0.08538300544023514,
- 0.0007141289534047246,
- -0.004901982378214598,
- 0.05803196504712105,
- 0.027402494102716446,
- -0.02289123833179474,
- 0.058996450155973434,
- 0.04218592494726181,
- -0.0014432603493332863,
- 0.017201747745275497,
- 0.06387864798307419,
- 0.0010285481112077832,
- 0.02357376180589199,
- -0.011043716222047806,
- 0.037169501185417175,
- 0.06845089048147202,
- -0.021291689947247505,
- 0.05145015940070152,
- -0.04491402581334114,
- 0.016949862241744995,
- -0.06925849616527557,
- -0.03161243721842766,
- 0.08802323043346405,
- 0.024561995640397072,
- 0.037353526800870895,
- 0.05828232318162918,
- -0.044592857360839844,
- 0.010681056417524815,
- -0.010887978598475456,
- -0.015937134623527527,
- -0.009128778241574764,
- -0.006029635202139616,
- 0.022540580481290817,
- -0.008040379732847214,
- 0.04479758441448212,
- 0.03889551758766174,
- -0.06343129277229309,
- 0.006926603149622679,
- -0.005116407759487629,
- 0.09386139363050461,
- 0.027111606672406197,
- -0.09058815240859985,
- 0.04635828360915184,
- 0.032237567007541656,
- -0.10524391382932663,
- 0.059192392975091934,
- 0.0007029288099147379,
- -0.06475906074047089,
- -0.03194086253643036,
- 0.026768913492560387,
- 0.011172669008374214,
- 0.03866056352853775,
- 0.04165080562233925,
- -0.005780869163572788,
- 0.02233865298330784,
- 0.07201339304447174,
- -0.003914829343557358,
- 0.05836215615272522,
- -0.0004187194281257689,
- 0.06027458980679512,
- 0.0005789955612272024,
- -0.0354270376265049,
- -0.012255101464688778,
- 0.00919647142291069,
- -0.028251053765416145,
- 0.074586883187294,
- -0.06200750917196274,
- -0.05886520817875862,
- 0.03151167556643486,
- -0.024080147966742516,
- -0.05897745490074158,
- 0.13644194602966309,
- 0.001428141607902944,
- -0.016844378784298897,
- -0.018400687724351883,
- 0.0010742292506620288,
- 0.03649290278553963,
- 0.07223357260227203,
- 0.1792038083076477,
- -0.059670332819223404,
- 0.03603237122297287,
- 0.031131241470575333,
- -0.07190734148025513,
- -0.059771426022052765,
- -0.0032993971835821867,
- -0.09037906676530838,
- 0.06630243360996246,
- 0.0123831732198596,
- -0.028881467878818512,
- -0.04992415010929108,
- -0.04252077266573906,
- 0.08015831559896469,
- 0.01551487110555172,
- 0.06124597042798996,
- -0.06568624824285507,
- 0.0666431188583374,
- 0.0036835200153291225,
- 0.06748002022504807,
- -0.010363101027905941,
- 0.02007131278514862,
- 0.02221490442752838,
- -0.0028294390067458153,
- 0.04454834759235382,
- -0.022828368470072746,
- -0.14243638515472412,
- 0.005690593738108873,
- -4.280307008498056e-33,
- 0.029727905988693237,
- -0.0766938254237175,
- 0.005399361252784729,
- 0.017146261408925056,
- -0.013156995177268982,
- 0.05341768637299538,
- 0.034181639552116394,
- -0.02390408329665661,
- -0.07438377290964127,
- 0.051343806087970734,
- -0.022732064127922058,
- -0.027575351297855377,
- -0.02812255173921585,
- -0.016283128410577774,
- 0.12863999605178833,
- 0.0008391399751417339,
- -0.05094826966524124,
- 0.051138535141944885,
- -0.09815939515829086,
- -0.05908084660768509,
- -0.09230326116085052,
- 0.08411015570163727,
- -0.046286992728710175,
- 0.05882924050092697,
- -0.03283711522817612,
- -0.056168366223573685,
- 0.011189987882971764,
- -0.0832429900765419,
- -0.02798181213438511,
- 0.03062676452100277,
- -0.03080563247203827,
- 0.09006717056035995,
- -0.056875862181186676,
- -0.028359893709421158,
- 0.02240682952105999,
- -0.03767558932304382,
- 0.011560012586414814,
- -0.05154133215546608,
- -0.09754567593336105,
- -0.02360560931265354,
- -0.04256610944867134,
- -0.005642414093017578,
- 0.056551557034254074,
- -0.023431790992617607,
- -0.056962162256240845,
- -0.024837316945195198,
- -0.05612877011299133,
- 0.046050820499658585,
- 0.00284165283665061,
- 0.029584597796201706,
- -0.04021560028195381,
- -0.01933627761900425,
- 0.011980658397078514,
- -0.05935318022966385,
- -0.028038885444402695,
- 0.008693579584360123,
- -0.021412665024399757,
- -0.07100845873355865,
- 0.03931472823023796,
- -0.02099991962313652,
- -0.011301585473120213,
- 0.0696987584233284,
- -0.04527284577488899,
- -0.01807803474366665,
- -0.07264596223831177,
- 0.000545447925105691,
- 0.04536858946084976,
- -0.057652875781059265,
- 0.036917589604854584,
- -0.01896926574409008,
- -0.14419914782047272,
- -0.017052313312888145,
- 0.07427604496479034,
- 0.04948883876204491,
- -0.013811565935611725,
- -0.035286203026771545,
- 0.030676890164613724,
- 0.03652188554406166,
- -0.08451137691736221,
- 0.07305803894996643,
- -0.04830425605177879,
- -0.028951046988368034,
- -0.060436878353357315,
- 0.053115036338567734,
- 0.01505573932081461,
- 0.045662764459848404,
- 0.055159274488687515,
- -0.09494578093290329,
- -0.019462259486317635,
- -0.019121317192912102,
- -0.1325550377368927,
- -0.009145138785243034,
- 0.020732970908284187,
- 0.01834951713681221,
- 0.017930040135979652,
- 1.8015066224175815e-33,
- -0.0766763985157013,
- -0.05373598262667656,
- 0.07230198383331299,
- -0.020736491307616234,
- -0.02551315911114216,
- -0.03018670342862606,
- 0.015800978988409042,
- 0.03168895095586777,
- -0.013384785503149033,
- 0.1189698800444603,
- -0.12058382481336594,
- -0.03619661182165146,
- -0.03650795668363571,
- 0.00965605117380619,
- 0.0029636931139975786,
- 0.008994399569928646,
- 0.09131278842687607,
- 0.016113029792904854,
- 0.022053465247154236,
- 0.037611961364746094,
- -0.02943815477192402,
- -0.019923368468880653,
- 0.06370265781879425,
- -0.03910451382398605,
- -0.021287450566887856,
- 0.04684023559093475,
- 0.03684515133500099,
- 0.08587639778852463,
- -0.07426925748586655,
- 0.032176412642002106,
- 0.02062373422086239,
- -0.06241645663976669,
- -0.07598260790109634,
- -0.015074392780661583,
- -0.05787448585033417,
- 0.0706477239727974,
- 0.04771748557686806,
- 0.057726405560970306,
- 0.0651284009218216,
- 0.014387859031558037,
- 0.10409627854824066,
- -0.01784755103290081,
- 0.012311688624322414,
- 0.14440211653709412,
- 0.0028374672401696444,
- -0.034043435007333755,
- 0.08687952160835266,
- 0.05707922205328941,
- -0.04276574030518532,
- 0.03575843572616577,
- -0.06710858643054962,
- -0.008348274976015091,
- 0.044676780700683594,
- 0.015501908957958221,
- -0.003158884821459651,
- -0.007458290085196495,
- -0.014886393211781979,
- -0.01470279786735773,
- 0.010431714355945587,
- -0.03626620024442673,
- -0.05262349545955658,
- 0.0591190941631794,
- -0.0062714372761547565,
- -0.03537097945809364,
- 0.07816877961158752,
- -0.007866403087973595,
- -0.024230768904089928,
- 0.005754812154918909,
- 0.06279473006725311,
- -0.04159621521830559,
- 0.018236767500638962,
- 0.09066415578126907,
- -0.021214045584201813,
- -0.017798151820898056,
- -0.002091344678774476,
- 0.00799452792853117,
- -0.03812243416905403,
- -0.015691429376602173,
- 0.009227417409420013,
- -0.040586140006780624,
- -0.05437478795647621,
- -0.1148596853017807,
- -0.03175077959895134,
- -0.03946996107697487,
- -0.03830352798104286,
- -0.03472452238202095,
- 0.006629663519561291,
- -0.022575512528419495,
- -0.015310327522456646,
- -0.08715558052062988,
- -0.0013242585118860006,
- 0.056550852954387665,
- 0.029037026688456535,
- -0.01425234042108059,
- 0.044255197048187256,
- -1.396290016941748e-8,
- 0.040338680148124695,
- 0.03109125606715679,
- -0.08354316651821136,
- -0.04330052435398102,
- 0.06944966316223145,
- 0.11460259556770325,
- -0.019889360293745995,
- 0.03428107872605324,
- 0.023220641538500786,
- 0.06943447887897491,
- 0.07981782406568527,
- -0.0156696867197752,
- -0.0309141818434,
- 0.016776787117123604,
- -0.03493209928274155,
- -0.021364687010645866,
- -0.0064377617090940475,
- 0.05818197503685951,
- -0.08900931477546692,
- 0.053421273827552795,
- 0.008344714529812336,
- -0.0067914752289652824,
- -0.0021371657494455576,
- -0.04322761669754982,
- -0.013849090784788132,
- -0.006525047589093447,
- -0.0241306833922863,
- 0.05158352479338646,
- -0.034825608134269714,
- 0.010370106436312199,
- 0.007278270088136196,
- 0.07226995378732681,
- -0.028938325121998787,
- -0.009304085746407509,
- 0.06621237844228745,
- -0.02888381853699684,
- -0.00482150400057435,
- -0.016647664830088615,
- 0.000620695180259645,
- -0.04036056250333786,
- -0.010132314637303352,
- -0.07749052345752716,
- 0.11684856563806534,
- 0.03242972865700722,
- -0.005626965314149857,
- 0.0003056308487430215,
- -0.05857020244002342,
- 0.014370182529091835,
- 0.009136293083429337,
- -0.0033953823149204254,
- -0.0789293572306633,
- 0.040236957371234894,
- -0.013906355015933514,
- 0.015530112199485302,
- 0.023207781836390495,
- -0.003067364916205406,
- 0.00898497924208641,
- -0.06993912160396576,
- -0.08342951536178589,
- 0.028647007420659065,
- 0.04976532235741615,
- 0.07742006331682205,
- 0.020004864782094955,
- 0.031943295150995255
- ]
- },
- {
- "keyword": "belonging",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- 0.03386479243636131,
- -0.012218575924634933,
- -0.005625858902931213,
- 0.02005951665341854,
- 0.02113834023475647,
- -0.027755390852689743,
- 0.16687580943107605,
- -0.056772392243146896,
- 0.02095860242843628,
- -0.06347249448299408,
- 0.036492493003606796,
- -0.058861590921878815,
- 0.10751541703939438,
- -0.04814359173178673,
- 0.028504325076937675,
- 0.0031568589620292187,
- -0.023751409724354744,
- -0.0008554950472898781,
- -0.0863681435585022,
- -0.03740515932440758,
- -0.06704117357730865,
- -0.001635996624827385,
- 0.0173849668353796,
- 0.017453091219067574,
- -0.003176810685545206,
- 0.09027031809091568,
- -0.03798343241214752,
- 0.0580720379948616,
- 0.08556146174669266,
- -0.0369831807911396,
- 0.07863220572471619,
- -0.036219868808984756,
- 0.0014477772638201714,
- 0.041167963296175,
- -0.004732497036457062,
- 0.07595416158437729,
- 0.04109977185726166,
- -0.01777581311762333,
- 0.047802336513996124,
- -0.07895532250404358,
- -0.03706618770956993,
- -0.020999643951654434,
- 0.07819253206253052,
- -0.03341526910662651,
- 0.032074473798274994,
- 0.08235405385494232,
- 0.04460707679390907,
- -0.024738820269703865,
- 0.015841659158468246,
- -0.005261905025690794,
- 0.019251294434070587,
- -0.008316054940223694,
- -0.05776765197515488,
- 0.06499892473220825,
- 0.043052349239587784,
- 0.10594680160284042,
- 0.024241330102086067,
- -0.014164123684167862,
- -0.014695137739181519,
- -0.04101776331663132,
- 0.1110009029507637,
- 0.008297021500766277,
- -0.03280142322182655,
- 0.028974635526537895,
- 0.022904902696609497,
- -0.05765414610505104,
- -0.012690776959061623,
- 0.08975453674793243,
- -0.0612160749733448,
- 0.012642921879887581,
- 0.08475452661514282,
- 0.08526211977005005,
- -0.019302014261484146,
- 0.14306452870368958,
- 0.030065996572375298,
- -0.03933112323284149,
- 0.018294746056199074,
- -0.029316801577806473,
- 0.06630033999681473,
- -0.020639568567276,
- 0.006464622914791107,
- 0.03150497004389763,
- -0.02408210001885891,
- 0.0501815564930439,
- -0.04018089920282364,
- -0.004028395749628544,
- 0.03713151067495346,
- -0.039879925549030304,
- -0.10821731388568878,
- 0.026097718626260757,
- -0.06042994186282158,
- -0.032408758997917175,
- 0.11797455698251724,
- -0.022607918828725815,
- -0.04943609982728958,
- -0.05700698867440224,
- 0.001855770475231111,
- 0.05851258337497711,
- -0.026857363060116768,
- 0.2236735075712204,
- -0.0333133339881897,
- 0.05386819690465927,
- 0.05807805061340332,
- 0.04073842614889145,
- -0.015361294150352478,
- 0.016636289656162262,
- -0.014257197268307209,
- 0.025169402360916138,
- 0.021164527162909508,
- -0.03570741042494774,
- -0.05472613871097565,
- -0.013339201919734478,
- -0.1507774293422699,
- 0.04546324536204338,
- 0.03415939211845398,
- -0.053277261555194855,
- 0.015856808051466942,
- -0.013603956438601017,
- 0.01158968172967434,
- -0.015002070926129818,
- 0.012637965381145477,
- 0.02445974014699459,
- -0.0038151992484927177,
- 0.019689185544848442,
- -0.014522604644298553,
- -0.06995438784360886,
- -0.035151537507772446,
- -5.754679981566526e-33,
- -0.02219937928020954,
- 0.009835900738835335,
- -0.011289367452263832,
- -0.008399369195103645,
- 0.047711797058582306,
- -0.04091884195804596,
- -0.04627101868391037,
- 0.04689667373895645,
- -0.07558410614728928,
- 0.03566886484622955,
- 0.007082243915647268,
- 0.02765917405486107,
- -0.0038276149425655603,
- -0.047875963151454926,
- 0.11831215023994446,
- 0.03311238810420036,
- -0.026334092020988464,
- -0.0101552689447999,
- -0.007951302453875542,
- 0.009372716769576073,
- -0.033567991107702255,
- 0.10179512947797775,
- -0.057765811681747437,
- 0.03236008062958717,
- -0.035033807158470154,
- -0.020173542201519012,
- -0.03186323866248131,
- -0.07481225579977036,
- -0.03515864163637161,
- 0.008288104087114334,
- -0.00031918307649903,
- 0.052917324006557465,
- -0.020910821855068207,
- -0.01751062087714672,
- 0.02140294387936592,
- -0.0104655297473073,
- 0.029849328100681305,
- -0.027907131239771843,
- -0.02031186781823635,
- -0.07159251719713211,
- 0.007145848125219345,
- -0.044939711689949036,
- 0.019876629114151,
- 0.02947508543729782,
- 0.004303412511944771,
- 0.047215212136507034,
- 0.00808970257639885,
- 0.00905023142695427,
- -0.053964950144290924,
- 0.11989963799715042,
- 0.012637690640985966,
- -0.025682145729660988,
- -0.0670013502240181,
- -0.027276169508695602,
- -0.06045977771282196,
- -0.0954456552863121,
- -0.01471119374036789,
- 0.0378497876226902,
- 0.021365268155932426,
- -0.09811574965715408,
- 0.03185869753360748,
- 0.027510859072208405,
- -0.044453833252191544,
- 0.0907275602221489,
- 0.03889298439025879,
- -0.019689399749040604,
- 0.025132663547992706,
- -0.06010149419307709,
- 0.1103503406047821,
- -0.029458865523338318,
- -0.044633932411670685,
- 0.0014868025900796056,
- -0.052446749061346054,
- 0.06084832549095154,
- -0.07088417559862137,
- -0.0006817247485741973,
- -0.04497252777218819,
- 0.014692569151520729,
- -0.013332650996744633,
- 0.006357952952384949,
- -0.0362783744931221,
- 0.0028143725357949734,
- -0.005504433065652847,
- 0.01946576125919819,
- 0.01901058293879032,
- -0.02783498354256153,
- -0.0049636103212833405,
- -0.14961212873458862,
- -0.019668547436594963,
- 0.059614457190036774,
- 0.05326492711901665,
- -0.00016349222278222442,
- 0.011426124721765518,
- 0.03985803946852684,
- -0.08837778866291046,
- 4.989019532106521e-33,
- 0.03994615375995636,
- -0.04036901891231537,
- -0.005595770664513111,
- -0.019030515104532242,
- -0.01262720674276352,
- -0.04847535490989685,
- 0.06984203308820724,
- -0.04323787987232208,
- -0.03862333670258522,
- 0.04282695800065994,
- -0.10469301044940948,
- -0.06036614999175072,
- 0.07746459543704987,
- 0.015154094435274601,
- -0.029004745185375214,
- -0.007047055289149284,
- 0.08859052509069443,
- -0.0012214609887450933,
- 0.006512528285384178,
- -0.01714050956070423,
- -0.02167261391878128,
- 0.097920261323452,
- 0.019891034811735153,
- 0.01645442098379135,
- 0.005500765051692724,
- 0.06886955350637436,
- 0.009591296315193176,
- -0.013341576792299747,
- -0.07342460006475449,
- -0.08544458448886871,
- -0.01170141901820898,
- -0.0403723306953907,
- -0.023822303861379623,
- 0.0008768087718635798,
- -0.02216470055282116,
- 0.009248879738152027,
- -0.015059487894177437,
- 0.021228782832622528,
- -0.03253612667322159,
- -0.010322827845811844,
- -0.015560348518192768,
- 0.037099819630384445,
- 0.013657155446708202,
- 0.12374551594257355,
- 0.027785571292042732,
- 0.019214831292629242,
- 0.0019772611558437347,
- -0.02949143573641777,
- -0.024442261084914207,
- 0.05324085056781769,
- 0.00648878887295723,
- -0.03540424257516861,
- 0.04866889491677284,
- -0.01706160232424736,
- 0.061653606593608856,
- 0.05136338993906975,
- -0.029155362397432327,
- -0.0022297094110399485,
- 0.06654788553714752,
- -0.01775321736931801,
- 0.0726463794708252,
- 0.030315648764371872,
- -0.018867086619138718,
- 0.14408175647258759,
- -0.08203643560409546,
- -0.06000455468893051,
- -0.08322014659643173,
- 0.054479945451021194,
- -0.010248061269521713,
- -0.012970439158380032,
- -0.024799013510346413,
- -0.13268128037452698,
- -0.06421146541833878,
- -0.043081142008304596,
- -0.031309377402067184,
- -0.018384356051683426,
- 0.005739777348935604,
- 0.038245946168899536,
- -0.05437327176332474,
- -0.03111444041132927,
- -0.07908116281032562,
- -0.04827342554926872,
- -0.0009196831961162388,
- -0.0004923840751871467,
- 0.04020518809556961,
- -0.008011551573872566,
- 0.07759866118431091,
- 0.008079729042947292,
- 0.02631279081106186,
- -0.051731228828430176,
- 0.0234004408121109,
- 0.05779991298913956,
- -0.0886508971452713,
- -0.028429917991161346,
- -0.04444243386387825,
- -1.1757211204610485e-8,
- -0.024063974618911743,
- 0.04231555387377739,
- -0.031797077506780624,
- 0.027986614033579826,
- -0.025241106748580933,
- 0.024225305765867233,
- 0.07201944291591644,
- 0.018042873591184616,
- -0.010470445267856121,
- 0.17662544548511505,
- -0.020193174481391907,
- 0.02878144383430481,
- 0.014450292102992535,
- 0.019368832930922508,
- -0.007992568425834179,
- 0.013670193962752819,
- -0.01220382284373045,
- -0.05305133014917374,
- -0.0761559009552002,
- 0.044851817190647125,
- 0.014543033204972744,
- 0.012708432972431183,
- 0.019112011417746544,
- -0.023829564452171326,
- -0.07766400277614594,
- -0.048355989158153534,
- -0.04219464957714081,
- -0.10082849860191345,
- 0.04635971039533615,
- 0.04462455213069916,
- 0.004823772702366114,
- 0.15440905094146729,
- -0.049401525408029556,
- 0.01426604576408863,
- -0.015306055545806885,
- -0.03416004404425621,
- 0.012753119692206383,
- 0.04981621354818344,
- 0.025695258751511574,
- -0.04555599018931389,
- -0.015077000483870506,
- -0.040720611810684204,
- -0.010060385800898075,
- 0.06516186147928238,
- 0.06075574830174446,
- -0.0021763674449175596,
- 0.056156307458877563,
- 0.03275836631655693,
- -0.04200834408402443,
- -0.006924019195139408,
- 0.02942480705678463,
- -0.02417309768497944,
- -0.051077038049697876,
- 0.041671235114336014,
- 0.058964233845472336,
- -0.020980529487133026,
- -0.02232346124947071,
- 0.09706488251686096,
- -0.049812909215688705,
- -0.052452873438596725,
- 0.03606104105710983,
- 0.0899764895439148,
- -0.009002364240586758,
- 0.027113744989037514
- ]
- },
- {
- "keyword": "membership",
- "type": "owns",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.05064867436885834,
- -0.05642368271946907,
- 0.010262830182909966,
- 0.0761449933052063,
- -0.01801731064915657,
- 0.004565727896988392,
- 0.1752968281507492,
- -0.01535269245505333,
- 0.03537234663963318,
- -0.03249554708600044,
- 0.0015094148693606257,
- -0.005395003594458103,
- 0.08814698457717896,
- -0.02582629770040512,
- -0.04311271384358406,
- -0.033357392996549606,
- -0.016406763345003128,
- 0.016117634251713753,
- -0.07319711893796921,
- -0.09538757801055908,
- -0.15371420979499817,
- -0.08080024272203445,
- -0.0012280724477022886,
- 0.08762317150831223,
- 0.002206956734880805,
- -0.013795158825814724,
- -0.035423193126916885,
- 0.021531976759433746,
- 0.024950165301561356,
- -0.05352866277098656,
- 0.022036178037524223,
- 0.05337664484977722,
- 0.06416456401348114,
- 0.023755082860589027,
- -0.026887891814112663,
- -0.025554781779646873,
- 0.04810584709048271,
- -0.02040869928896427,
- -0.07743404805660248,
- -0.015673920512199402,
- -0.05406766012310982,
- -0.02175549790263176,
- -0.059771183878183365,
- 0.03810624033212662,
- -0.010993566364049911,
- 0.0657627284526825,
- -0.013001730665564537,
- 0.0702422484755516,
- 0.023153306916356087,
- 0.07707283645868301,
- 0.11652610450983047,
- -0.020069807767868042,
- 0.007731233257800341,
- 0.028076132759451866,
- 0.030759867280721664,
- -0.018260397017002106,
- -0.02724887616932392,
- 0.006461188662797213,
- -0.054324280470609665,
- -0.0557863786816597,
- 0.05863036587834358,
- -0.0547451488673687,
- -0.06309802085161209,
- 0.010577358305454254,
- 0.000023072419935488142,
- 0.015439691953361034,
- -0.009737973101437092,
- 0.020220354199409485,
- -0.0075441752560436726,
- -0.08090906590223312,
- -0.024121850728988647,
- 0.03209025412797928,
- -0.008229844272136688,
- 0.07208886742591858,
- 0.05832773074507713,
- -0.007537135388702154,
- 0.08577067404985428,
- -0.040858663618564606,
- 0.11068490147590637,
- 0.02621779963374138,
- -0.040274932980537415,
- 0.0499085895717144,
- 0.0032808776013553143,
- 0.024006640538573265,
- 0.03179343789815903,
- -0.02677161991596222,
- 0.03192657604813576,
- 0.009184871800243855,
- -0.0679071918129921,
- -0.0030027939938008785,
- 0.0543634369969368,
- 0.037012215703725815,
- 0.049742184579372406,
- -0.04078999534249306,
- -0.12618388235569,
- 0.019749898463487625,
- -0.006070752162486315,
- 0.05489508435130119,
- -0.03457009792327881,
- 0.2423865646123886,
- -0.005020035430788994,
- 0.014555980451405048,
- 0.019838299602270126,
- -0.02783348597586155,
- -0.05070630833506584,
- -0.009522410109639168,
- 0.015482524409890175,
- 0.07244353741407394,
- 0.09658113121986389,
- 0.0018837193492799997,
- -0.0706939697265625,
- 0.00433932151645422,
- -0.06516189873218536,
- -0.014609228819608688,
- 0.029974138364195824,
- 0.04698282107710838,
- 0.016526469960808754,
- 0.04497341066598892,
- 0.06123148277401924,
- -0.022251730784773827,
- 0.04537026956677437,
- 0.03347919136285782,
- 0.05569516494870186,
- 0.01578647457063198,
- -0.030886683613061905,
- -0.0724821612238884,
- -0.0573711022734642,
- -5.4487017407833616e-33,
- -0.02969631552696228,
- 0.044010039418935776,
- 0.006354883778840303,
- -0.003996523562818766,
- 0.03424210101366043,
- -0.014276177622377872,
- -0.001618330948986113,
- -0.01533760130405426,
- -0.08894705027341843,
- 0.05697307735681534,
- -0.0905001163482666,
- 0.07926561683416367,
- 0.0366566926240921,
- -0.0321517251431942,
- 0.14476920664310455,
- -0.04480979964137077,
- -0.01505856029689312,
- -0.005383554380387068,
- 0.011754264123737812,
- -0.028298556804656982,
- -0.060084663331508636,
- 0.029632464051246643,
- 0.0122158732265234,
- 0.08923867344856262,
- -0.028999827802181244,
- -0.052347682416439056,
- -0.04827482998371124,
- -0.07216858863830566,
- 0.05076111853122711,
- 0.019492464140057564,
- 0.022446386516094208,
- 0.013186756521463394,
- -0.055393949151039124,
- -0.045610230416059494,
- 0.011249679140746593,
- -0.03853796049952507,
- 0.050490185618400574,
- -0.020784204825758934,
- 0.0061036073602736,
- -0.10198327153921127,
- -0.047349702566862106,
- -0.017809361219406128,
- 0.02844666689634323,
- -0.0037177877966314554,
- 0.009056581184267998,
- 0.004581509158015251,
- 0.056802332401275635,
- -0.018221767619252205,
- 0.0335310697555542,
- 0.0841367244720459,
- -0.007946621626615524,
- -0.030722908675670624,
- -0.050200264900922775,
- -0.016226621344685555,
- -0.04123325273394585,
- -0.06838981062173843,
- -0.004208527505397797,
- 0.007080945651978254,
- 0.004513996187597513,
- -0.09603438526391983,
- 0.05842890217900276,
- 0.03600485250353813,
- -0.01751449890434742,
- 0.09244439005851746,
- -0.14058946073055267,
- -0.032314181327819824,
- 0.007019242271780968,
- -0.08869145810604095,
- 0.06431914120912552,
- -0.008058312349021435,
- -0.05014996975660324,
- 0.01144490484148264,
- -0.031395863741636276,
- 0.0158480666577816,
- -0.10873078554868698,
- 0.02296987548470497,
- 0.03709973394870758,
- 0.018255479633808136,
- 0.02217266894876957,
- 0.08297786116600037,
- -0.05579759180545807,
- -0.027836935594677925,
- 0.00217922474257648,
- 0.07563910633325577,
- 0.05818039923906326,
- 0.016282593831419945,
- 0.013965068385004997,
- -0.07349630445241928,
- -0.029287030920386314,
- -0.013258308172225952,
- -0.030844826251268387,
- -0.0361255444586277,
- 0.12120525538921356,
- 0.07773774117231369,
- 0.04449661821126938,
- 4.189756107260323e-33,
- -0.02370184101164341,
- -0.04617064818739891,
- 0.034281786531209946,
- -0.02485489659011364,
- 0.08607294410467148,
- -0.006716446485370398,
- -0.009883664548397064,
- -0.017704812809824944,
- -0.02276621013879776,
- 0.047004129737615585,
- -0.029802843928337097,
- 0.05718290060758591,
- -0.0062148659490048885,
- 0.07648167759180069,
- 0.0035149534232914448,
- -0.0234173983335495,
- 0.05378669127821922,
- 0.03937464952468872,
- 0.007470060605555773,
- -0.03806307539343834,
- -0.09539857506752014,
- 0.00371325621381402,
- 0.01325925812125206,
- -0.0357058085501194,
- 0.014591666869819164,
- 0.051234181970357895,
- 0.06618452817201614,
- 0.06735493242740631,
- -0.02764205075800419,
- 0.02889675833284855,
- 0.05155404284596443,
- -0.025680048391222954,
- -0.060124434530735016,
- -0.00868762843310833,
- -0.04998316988348961,
- -0.017516212537884712,
- 0.05135500431060791,
- 0.07401882857084274,
- -0.03317352756857872,
- -0.031796544790267944,
- 0.05801522359251976,
- -0.008519108407199383,
- 0.029719656333327293,
- 0.056421153247356415,
- -0.002685306128114462,
- 0.008769075386226177,
- 0.07585647702217102,
- -0.03952004015445709,
- -0.03333548083901405,
- 0.04095660150051117,
- -0.09102706611156464,
- -0.08127050846815109,
- 0.15344612300395966,
- -0.0007597191724926233,
- -0.027920342981815338,
- 0.034978266805410385,
- -0.07817765325307846,
- -0.005228027701377869,
- 0.05734963342547417,
- 0.002550974255427718,
- 0.016911698505282402,
- 0.03992414474487305,
- -0.04499435797333717,
- 0.09889331459999084,
- -0.052758682519197464,
- -0.04923176020383835,
- -0.022072114050388336,
- 0.08128378540277481,
- -0.06859338283538818,
- 0.03718005120754242,
- -0.08869438618421555,
- -0.06815052032470703,
- -0.029186153784394264,
- 0.04843893647193909,
- -0.06689592450857162,
- -0.015936480835080147,
- -0.04901241511106491,
- 0.08269485831260681,
- -0.055584684014320374,
- -0.007248338311910629,
- -0.05638774111866951,
- -0.03751419112086296,
- -0.0007614197093062103,
- 0.032964762300252914,
- 0.030983636155724525,
- -0.08589750528335571,
- 0.08391332626342773,
- 0.03302384540438652,
- 0.007110252510756254,
- -0.008028854615986347,
- 0.04297861084342003,
- -0.03353037312626839,
- -0.03824977949261665,
- -0.013489803299307823,
- -0.014865425415337086,
- -1.1777198771767416e-8,
- -0.024721160531044006,
- -0.004456330556422472,
- 0.027719365432858467,
- 0.016986291855573654,
- 0.09000323712825775,
- 0.002898078877478838,
- -0.038414422422647476,
- -0.00501310545951128,
- 0.013213912025094032,
- 0.1339338719844818,
- 0.03565993905067444,
- -0.007064157165586948,
- -0.054364316165447235,
- -0.05522530898451805,
- 0.010394314303994179,
- -0.013392768800258636,
- -0.0677645280957222,
- 0.02891312912106514,
- -0.0713195875287056,
- 0.007760874927043915,
- -0.01062314584851265,
- 0.021574025973677635,
- 0.015953384339809418,
- -0.06084665283560753,
- -0.054403018206357956,
- 0.03548043966293335,
- 0.027326274663209915,
- 0.07300819456577301,
- -0.01932302489876747,
- -0.020219014957547188,
- -0.027527639642357826,
- 0.12158205360174179,
- -0.034518178552389145,
- -0.025799913331866264,
- -0.035574041306972504,
- -0.04652860760688782,
- -0.07429938018321991,
- -0.018791453912854195,
- -0.029081905260682106,
- 0.0007875423179939389,
- -0.002660646801814437,
- 0.0275531318038702,
- 0.09607478976249695,
- 0.010161950252950191,
- 0.012809766456484795,
- 0.03121289238333702,
- -0.03654344007372856,
- -0.0016760261496528983,
- 0.07209370285272598,
- -0.007986770942807198,
- 0.032810479402542114,
- 0.0312708280980587,
- -0.019119417294859886,
- 0.06163209676742554,
- -0.026742365211248398,
- -0.015115765854716301,
- 0.010215741582214832,
- 0.032595086842775345,
- -0.05278143286705017,
- -0.056037917733192444,
- 0.03709397464990616,
- -0.0024437301326543093,
- -0.013516104780137539,
- -0.0012164461659267545
- ]
- },
- {
- "keyword": "member of",
- "type": "memberOf",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.05288407579064369,
- -0.023639580234885216,
- 0.025469670072197914,
- 0.02180822566151619,
- 0.007711528334766626,
- -0.005532528273761272,
- 0.18164794147014618,
- -0.04528622329235077,
- -0.0002997547562699765,
- -0.034106142818927765,
- 0.011632720939815044,
- -0.05007406696677208,
- 0.08667013049125671,
- -0.06746672093868256,
- -0.005992318037897348,
- -0.051025696098804474,
- -0.03965933993458748,
- 0.06875989586114883,
- -0.05024212598800659,
- -0.052159830927848816,
- -0.13376496732234955,
- -0.0390663743019104,
- 0.013895301148295403,
- 0.06324679404497147,
- 0.04017017409205437,
- -0.012176301330327988,
- -0.011353055946528912,
- -0.022303152829408646,
- 0.006803190801292658,
- -0.03260572627186775,
- -0.04259810969233513,
- 0.02806990034878254,
- 0.04564445838332176,
- 0.02471339702606201,
- -0.006729685235768557,
- 0.017259662970900536,
- 0.07646654546260834,
- -0.006152763031423092,
- 0.021516483277082443,
- -0.011139404959976673,
- -0.06879247725009918,
- 0.022440264001488686,
- -0.01828603632748127,
- 0.03077107109129429,
- 0.008641257882118225,
- 0.0158704724162817,
- 0.03749500587582588,
- -0.03315054252743721,
- -0.03580022230744362,
- 0.012432881630957127,
- 0.04556025192141533,
- -0.034858640283346176,
- -0.020122647285461426,
- 0.0009150053956545889,
- 0.03566717356443405,
- 0.027279082685709,
- -0.007670784834772348,
- -0.08847460895776749,
- -0.004572167061269283,
- -0.03000834211707115,
- 0.007145418785512447,
- -0.015843095257878304,
- -0.03767048195004463,
- 0.024165363982319832,
- -0.022089600563049316,
- -0.054247692227363586,
- 0.011172058060765266,
- 0.024729344993829727,
- -0.029894880950450897,
- -0.09567778557538986,
- 0.04084553197026253,
- 0.020141277462244034,
- 0.021095210686326027,
- 0.07753336429595947,
- 0.03077644295990467,
- 0.028528306633234024,
- 0.04142474755644798,
- -0.002577003324404359,
- 0.07737908512353897,
- 0.010958551429212093,
- 0.07713893800973892,
- 0.023937106132507324,
- -0.0149080203846097,
- -0.0019663262646645308,
- 0.034673817455768585,
- -0.0018267948180437088,
- 0.04726988449692726,
- -0.06980445235967636,
- -0.07278744876384735,
- 0.0031075128354132175,
- 0.03481637313961983,
- 0.05206315964460373,
- 0.1436328887939453,
- -0.019845521077513695,
- -0.0017733783461153507,
- 0.005601037759333849,
- 0.004441493656486273,
- 0.04582536220550537,
- -0.05023958534002304,
- 0.23335862159729004,
- -0.027425935491919518,
- 0.05018739029765129,
- -0.03964153677225113,
- -0.057582780718803406,
- -0.06933038681745529,
- 0.012393869459629059,
- 0.01496945321559906,
- 0.014261707663536072,
- 0.05159933865070343,
- -0.01358356699347496,
- -0.033471494913101196,
- 0.009425738826394081,
- -0.08073996752500534,
- -0.005035033915191889,
- 0.026511341333389282,
- -0.06455044448375702,
- -0.0013178496155887842,
- 0.02103116549551487,
- -0.02087358385324478,
- -0.08802878856658936,
- 0.015366168692708015,
- 0.03938804566860199,
- -0.027867097407579422,
- 0.03926742449402809,
- 0.014941933564841747,
- -0.041503917425870895,
- -0.03875572979450226,
- -5.989000821407533e-33,
- -0.034077923744916916,
- 0.06940754503011703,
- 0.03243820369243622,
- -0.02966993860900402,
- 0.008510679006576538,
- 0.032448720186948776,
- -0.027341140434145927,
- 0.021058326587080956,
- -0.06958387047052383,
- -0.03037954680621624,
- -0.01239801850169897,
- 0.00134649605024606,
- 0.028187476098537445,
- -0.07268019020557404,
- 0.11103382706642151,
- -0.03822721540927887,
- -0.022047316655516624,
- -0.015724413096904755,
- -0.03828776627779007,
- -0.03732519969344139,
- -0.048640795052051544,
- 0.11099610477685928,
- 0.014727454632520676,
- 0.06489556282758713,
- -0.04643110930919647,
- -0.02987711876630783,
- -0.044908419251441956,
- -0.04130754992365837,
- -0.023878488689661026,
- 0.0538797490298748,
- 0.025884199887514114,
- 0.029278578236699104,
- -0.0779120996594429,
- -0.009097871370613575,
- -0.008768100291490555,
- 0.011058044619858265,
- 0.021522704511880875,
- -0.059845320880413055,
- -0.036043718457221985,
- -0.04537851735949516,
- -0.030447490513324738,
- -0.02051454782485962,
- 0.07103452831506729,
- -0.025329023599624634,
- -0.023610053583979607,
- 0.0416279062628746,
- 0.03211892768740654,
- 0.007202974054962397,
- 0.05831126868724823,
- 0.05258788540959358,
- -0.026420554146170616,
- -0.020748501643538475,
- -0.04667039215564728,
- 0.0032100235112011433,
- 0.009252958931028843,
- -0.07269999384880066,
- 0.009944911114871502,
- 0.03672029450535774,
- -0.007972999475896358,
- -0.02891375496983528,
- 0.011055944487452507,
- 0.09512671828269958,
- -0.011417204514145851,
- 0.043833259493112564,
- -0.17029255628585815,
- -0.045063912868499756,
- -0.004315813072025776,
- -0.08209384232759476,
- 0.07557211071252823,
- -0.02308368869125843,
- -0.04846813157200813,
- 0.03074592724442482,
- 0.0005727170500904322,
- 0.025462908670306206,
- -0.12220153212547302,
- -0.022617334499955177,
- 0.024428104981780052,
- 0.0591161847114563,
- -0.07481592148542404,
- 0.08023180067539215,
- -0.09065383672714233,
- -0.03577515482902527,
- -0.0069486298598349094,
- 0.016121437773108482,
- -0.01076720654964447,
- -0.039372365921735764,
- 0.021021179854869843,
- -0.08657137304544449,
- 0.00610445998609066,
- 0.05262060463428497,
- -0.06398080289363861,
- -0.038825299590826035,
- 0.13634291291236877,
- 0.09688688814640045,
- -0.04675937071442604,
- 2.445658241214002e-33,
- -0.01005620788782835,
- -0.035200685262680054,
- 0.06754209846258163,
- -0.09693215042352676,
- 0.06885781139135361,
- -0.020676279440522194,
- 0.02259918861091137,
- 0.007042825687676668,
- -0.11435725539922714,
- 0.023651663213968277,
- 0.009205112233757973,
- 0.018302064388990402,
- -0.053452473133802414,
- 0.03194313123822212,
- 0.0507953017950058,
- 0.00025086416280828416,
- 0.04405469074845314,
- -0.051152825355529785,
- -0.010262081399559975,
- -0.0052093565464019775,
- -0.07370885461568832,
- -0.012419791892170906,
- 0.05164362117648125,
- 0.013905209489166737,
- 0.002446743892505765,
- 0.04578211531043053,
- 0.10340490192174911,
- 0.08627403527498245,
- -0.0541059635579586,
- -0.012186187319457531,
- 0.03289182484149933,
- -0.020255789160728455,
- -0.08343150466680527,
- -0.029132887721061707,
- -0.022278588265180588,
- 0.06076992303133011,
- 0.027813980355858803,
- 0.023121604695916176,
- -0.050302401185035706,
- -0.007127244956791401,
- 0.07332231104373932,
- 0.025354404002428055,
- 0.018322326242923737,
- 0.03955053165555,
- 0.03322973474860191,
- -0.032416198402643204,
- 0.08273330330848694,
- -0.011699061840772629,
- -0.0635288804769516,
- 0.07696977257728577,
- -0.10117118805646896,
- -0.07020311802625656,
- 0.12182902544736862,
- -0.0293942391872406,
- 0.056927893310785294,
- 0.04248972237110138,
- -0.015068702399730682,
- -0.033139824867248535,
- 0.08737098425626755,
- 0.007723663002252579,
- -0.008126452565193176,
- 0.018024520948529243,
- 0.004034155048429966,
- 0.06648047268390656,
- -0.0021790058817714453,
- -0.0676349475979805,
- -0.05449808016419411,
- 0.09462620317935944,
- -0.03368652984499931,
- 0.03299422934651375,
- -0.015830494463443756,
- -0.035993535071611404,
- -0.07064744830131531,
- 0.030664701014757156,
- -0.08196807652711868,
- -0.06398186832666397,
- -0.10214102268218994,
- -0.0024698609486222267,
- -0.03269398957490921,
- -0.029864495620131493,
- -0.062224507331848145,
- -0.050275418907403946,
- 0.00724491011351347,
- 0.0791020318865776,
- 0.0075617581605911255,
- -0.03064609132707119,
- 0.08570968359708786,
- 0.01796061545610428,
- 0.03460315242409706,
- 0.013168980367481709,
- 0.06453573703765869,
- -0.057339515537023544,
- 0.03301221877336502,
- -0.03364843875169754,
- -0.0075508602894842625,
- -1.3744300808582466e-8,
- -0.06735514849424362,
- -0.00437507126480341,
- -0.015787241980433464,
- 0.06360073387622833,
- 0.11889567226171494,
- -0.0019740592688322067,
- -0.01159890741109848,
- -0.05078281834721565,
- 0.021651556715369225,
- 0.11940757930278778,
- 0.04883765056729317,
- -0.0317264162003994,
- 0.017905930057168007,
- -0.03712305426597595,
- 0.12496624141931534,
- -0.04856746271252632,
- -0.09585484117269516,
- 0.027338150888681412,
- -0.08151554316282272,
- -0.021790020167827606,
- -0.040147364139556885,
- 0.02697683311998844,
- 0.013452085666358471,
- -0.030990786850452423,
- -0.018957069143652916,
- 0.017610717564821243,
- -0.01628834754228592,
- 0.008596992120146751,
- 0.004049964714795351,
- 0.04069513827562332,
- -0.048951517790555954,
- 0.12148325890302658,
- -0.07830183953046799,
- -0.010897833853960037,
- 0.026043612509965897,
- -0.04305553063750267,
- -0.055992960929870605,
- -0.005770133808255196,
- 0.010066665709018707,
- 0.05106847360730171,
- 0.005882084835320711,
- 0.0029836504254490137,
- 0.04256515949964523,
- 0.05754489824175835,
- 0.022858651354908943,
- 0.05033748969435692,
- -0.023653864860534668,
- 0.031270451843738556,
- 0.03475222364068031,
- -0.02123955823481083,
- 0.0035767557565122843,
- 0.035319797694683075,
- -0.059333011507987976,
- 0.1111641675233841,
- -0.010510371997952461,
- -0.03831014409661293,
- -0.04933767765760422,
- 0.03055417351424694,
- -0.07204251736402512,
- -0.09558717161417007,
- 0.013002155348658562,
- -0.016262196004390717,
- -0.004954868927598,
- 0.0064155338332057
- ]
- },
- {
- "keyword": "belongs to",
- "type": "memberOf",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.01820758543908596,
- -0.02579866535961628,
- 0.01893552765250206,
- -0.010790265165269375,
- 0.04200807213783264,
- -0.011856917291879654,
- 0.12466277927160263,
- -0.050810687243938446,
- 0.02675812505185604,
- -0.01924924924969673,
- -0.029125573113560677,
- -0.07120450586080551,
- 0.09960576146841049,
- -0.026437392458319664,
- -0.00834509078413248,
- -0.006816720124334097,
- -0.02920861542224884,
- -0.0051154582761228085,
- -0.09993578493595123,
- -0.04544885456562042,
- -0.06666290014982224,
- 0.023260241374373436,
- 0.02258242480456829,
- 0.022322017699480057,
- -0.02846905216574669,
- 0.06524692475795746,
- -0.0042848363518714905,
- 0.03649081289768219,
- 0.0037018803413957357,
- -0.035887930542230606,
- -0.018365750089287758,
- 0.019389942288398743,
- -0.05268188565969467,
- 0.029157070443034172,
- 0.03584400191903114,
- 0.011277367360889912,
- 0.05880335345864296,
- -0.03951171785593033,
- 0.03345055505633354,
- -0.03760548681020737,
- -0.013154168613255024,
- -0.024271365255117416,
- 0.042919427156448364,
- -0.012796495109796524,
- 0.01899983361363411,
- 0.06670328229665756,
- 0.025828510522842407,
- -0.0461488775908947,
- 0.030654551461338997,
- 0.055081505328416824,
- -0.039594847708940506,
- -0.025002947077155113,
- -0.02277437224984169,
- 0.07906083017587662,
- 0.0033453761134296656,
- 0.08532033115625381,
- 0.0033117267303168774,
- 0.005783772096037865,
- -0.010175191797316074,
- -0.00041044590761885047,
- 0.07277434319257736,
- 0.029278241097927094,
- -0.012438095174729824,
- 0.003719621803611517,
- -0.018614087253808975,
- -0.025582319125533104,
- -0.006726144813001156,
- 0.06767705827951431,
- -0.10228320956230164,
- -0.0030011169146746397,
- 0.07034870982170105,
- 0.04201752692461014,
- -0.03826211020350456,
- 0.13428550958633423,
- 0.02654774859547615,
- -0.013613511808216572,
- 0.07071417570114136,
- -0.028483688831329346,
- 0.09568633884191513,
- -0.07662663608789444,
- 0.014421524479985237,
- 0.03045562468469143,
- -0.043911948800086975,
- 0.03703057020902634,
- -0.008282195776700974,
- -0.003119522472843528,
- 0.02448086254298687,
- -0.07182254642248154,
- -0.0941493958234787,
- 0.008443114347755909,
- -0.035205114632844925,
- -0.04459163174033165,
- 0.14120511710643768,
- 0.022551702335476875,
- -0.06911597400903702,
- -0.013452436774969101,
- 0.054942063987255096,
- 0.03433355316519737,
- -0.03912390395998955,
- 0.20163673162460327,
- -0.03415224328637123,
- 0.02509325183928013,
- -0.03628766909241676,
- 0.014543313533067703,
- 0.010975439101457596,
- 0.0116599565371871,
- 0.025591641664505005,
- 0.06971243768930435,
- 0.06663381308317184,
- -0.06438452750444412,
- -0.02640715055167675,
- 0.039355047047138214,
- -0.11127720773220062,
- 0.061950430274009705,
- 0.04919490963220596,
- -0.12856020033359528,
- -0.03199567645788193,
- -0.0011370825814083219,
- -0.005599473603069782,
- -0.049603287130594254,
- 0.000496978813316673,
- 0.022150445729494095,
- -0.0214593093842268,
- 0.03846472501754761,
- -0.017117008566856384,
- -0.10786057263612747,
- -0.03623020276427269,
- -6.597802937351827e-33,
- 0.028960546478629112,
- 0.034854575991630554,
- -0.01691490225493908,
- 0.00849892944097519,
- 0.00002750333078438416,
- 0.03695596754550934,
- -0.021385878324508667,
- 0.05450465530157089,
- -0.10613454878330231,
- 0.020756911486387253,
- -0.05105193331837654,
- 0.05916433408856392,
- -0.036128487437963486,
- -0.05154094099998474,
- 0.12541113793849945,
- 0.04338274151086807,
- -0.04848760738968849,
- 0.00014158053090795875,
- -0.03778942674398422,
- -0.051619429141283035,
- -0.06009794771671295,
- 0.13952776789665222,
- -0.053144533187150955,
- 0.030010730028152466,
- -0.010367639362812042,
- 0.0583735927939415,
- -0.056243591010570526,
- -0.07610984891653061,
- -0.037806976586580276,
- 0.04588231071829796,
- -0.004303154535591602,
- 0.00027538574067875743,
- -0.054631929844617844,
- -0.056277092546224594,
- 0.0001334692060481757,
- -0.004696421325206757,
- 0.04781395569443703,
- -0.01213181670755148,
- -0.012349426746368408,
- -0.00875176303088665,
- 0.021624909713864326,
- -0.041845329105854034,
- 0.005788280628621578,
- 0.04172087833285332,
- 0.02946280688047409,
- 0.03533807769417763,
- 0.08309783041477203,
- 0.011690391227602959,
- 0.06776966154575348,
- 0.070988729596138,
- 0.003757375990971923,
- -0.07228202372789383,
- -0.015965107828378677,
- 0.0025529060512781143,
- -0.03130216896533966,
- -0.10517352819442749,
- 0.021974196657538414,
- 0.02385011874139309,
- 0.03930557891726494,
- -0.07795462012290955,
- 0.07605874538421631,
- 0.024346835911273956,
- -0.05865982919931412,
- 0.07182146608829498,
- 0.0003322568954899907,
- 0.047270774841308594,
- -0.016154885292053223,
- -0.07484157383441925,
- 0.051535412669181824,
- -0.03232878819108009,
- -0.05169249325990677,
- 0.02582656964659691,
- -0.057655006647109985,
- 0.09777579456567764,
- -0.04088239744305611,
- -0.035658665001392365,
- -0.01953940838575363,
- 0.0064786579459905624,
- -0.06481029838323593,
- 0.019502896815538406,
- -0.03971681743860245,
- -0.017684318125247955,
- -0.04401974380016327,
- 0.02428307570517063,
- 0.06739813089370728,
- -0.04073256254196167,
- -0.015619765035808086,
- -0.1959686428308487,
- -0.002430310007184744,
- 0.046747077256441116,
- 0.06314049661159515,
- 0.006048307754099369,
- -0.023654090240597725,
- 0.07943359762430191,
- -0.05697052925825119,
- 3.804891909961413e-33,
- -0.0351606048643589,
- -0.020404022186994553,
- 0.046380724757909775,
- 0.03683667257428169,
- 0.03975918889045715,
- -0.06826630234718323,
- 0.07878410071134567,
- -0.0024267593398690224,
- -0.0437820740044117,
- 0.013860941864550114,
- -0.025821436196565628,
- -0.020504266023635864,
- 0.04625021666288376,
- 0.015599632635712624,
- 0.03858877345919609,
- 0.038978978991508484,
- 0.06019776314496994,
- -0.026698492467403412,
- -0.09766645729541779,
- -0.03564377874135971,
- -0.07943069189786911,
- 0.06920380890369415,
- -0.0031723235733807087,
- 0.004885196220129728,
- -0.03271588310599327,
- 0.08615768700838089,
- 0.03971870616078377,
- 0.03206463158130646,
- -0.016853176057338715,
- -0.09234758466482162,
- 0.025416206568479538,
- -0.021853366866707802,
- -0.06700585037469864,
- -0.048612866550683975,
- -0.022539760917425156,
- 0.04084094986319542,
- 0.004090346861630678,
- -0.048523079603910446,
- -0.02562778629362583,
- 0.017115896567702293,
- 0.022954246029257774,
- 0.016735097393393517,
- -0.0007364205666817725,
- 0.18429109454154968,
- 0.028583457693457603,
- 0.011871455237269402,
- 0.03783202916383743,
- -0.011112328618764877,
- 0.08325129747390747,
- 0.023956837132573128,
- 0.010646926239132881,
- -0.037924617528915405,
- 0.06529972702264786,
- -0.004977855831384659,
- 0.08139722794294357,
- 0.04712698981165886,
- -0.03501300513744354,
- 0.025273840874433517,
- 0.018061498180031776,
- -0.04281110316514969,
- 0.0017078717937693,
- 0.0721178725361824,
- -0.028133951127529144,
- 0.08388260751962662,
- -0.051969289779663086,
- -0.06282292306423187,
- -0.07868541032075882,
- 0.06058550626039505,
- -0.03691404312849045,
- -0.025861449539661407,
- -0.04723595455288887,
- -0.0698903501033783,
- -0.04329250007867813,
- -0.027359366416931152,
- -0.057933371514081955,
- -0.029657110571861267,
- -0.022273339331150055,
- 0.07376717776060104,
- -0.03286277875304222,
- -0.07668443024158478,
- -0.07106027752161026,
- -0.06346879154443741,
- -0.007699067238718271,
- 0.018884435296058655,
- 0.016569504514336586,
- -0.0026872893795371056,
- 0.12207317352294922,
- -0.06309428066015244,
- 0.0342344231903553,
- -0.05387308821082115,
- 0.05056636407971382,
- 0.04959091171622276,
- -0.0344025120139122,
- -0.09009277075529099,
- -0.04056188836693764,
- -1.4180469243285643e-8,
- -0.013719192706048489,
- 0.043315254151821136,
- -0.013246022164821625,
- 0.027760185301303864,
- 0.003152277087792754,
- 0.05110796540975571,
- 0.058508120477199554,
- -0.004886437673121691,
- 0.003277565585449338,
- 0.11152027547359467,
- -0.0022942647337913513,
- 0.00914035551249981,
- 0.027975110337138176,
- 0.005509966053068638,
- 0.031215505674481392,
- -0.023521913215517998,
- -0.05587049201130867,
- -0.031306978315114975,
- -0.06581255048513412,
- 0.06685812026262283,
- -0.032706521451473236,
- -0.007899590767920017,
- 0.005159531254321337,
- -0.050024375319480896,
- -0.057441599667072296,
- -0.05585375055670738,
- -0.009574316442012787,
- -0.05552297830581665,
- 0.048792652785778046,
- 0.07207492738962173,
- -0.006813188549131155,
- 0.07885466516017914,
- -0.039461586624383926,
- -0.015824569389224052,
- -0.06379449367523193,
- -0.08171945810317993,
- 0.024578966200351715,
- -0.0005420547095127404,
- 0.004069115500897169,
- -0.072243832051754,
- -0.018055206164717674,
- -0.0019181318348273635,
- -0.027850978076457977,
- 0.08290651440620422,
- -0.009980822913348675,
- -0.0005493824719451368,
- 0.07439307123422623,
- -0.05622929334640503,
- -0.015848511829972267,
- 0.00016469070396851748,
- -0.026130270212888718,
- -0.045180968940258026,
- -0.01304715871810913,
- 0.04787837713956833,
- -0.007013867609202862,
- -0.006293552927672863,
- -0.03624827042222023,
- 0.024737797677516937,
- -0.06272844225168228,
- -0.004555700812488794,
- 0.047868434339761734,
- 0.07068967074155807,
- 0.06706235557794571,
- 0.04629585146903992
- ]
- },
- {
- "keyword": "affiliated with",
- "type": "memberOf",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- -0.008864087052643299,
- -0.07792677730321884,
- 0.006463068071752787,
- 0.04086809232831001,
- 0.05046863481402397,
- 0.0069651296362280846,
- 0.10383407026529312,
- -0.03566475957632065,
- -0.0006886462797410786,
- -0.018764466047286987,
- 0.06033523380756378,
- -0.006417247001081705,
- 0.07214941084384918,
- 0.02327103726565838,
- 0.010685866698622704,
- 0.03427552059292793,
- -0.015916183590888977,
- 0.04984431341290474,
- -0.10229842364788055,
- -0.07661497592926025,
- -0.15450917184352875,
- -0.09334835410118103,
- 0.03476480022072792,
- 0.01593347266316414,
- 0.04625546932220459,
- -0.011015383526682854,
- 0.011741443537175655,
- 0.0027249932754784822,
- -0.029396912083029747,
- -0.041558943688869476,
- 0.009134940803050995,
- 0.003667867975309491,
- 0.018608402460813522,
- -0.025376176461577415,
- 0.046812620013952255,
- 0.05164211615920067,
- 0.003203142900019884,
- -0.01561617013067007,
- -0.02463153377175331,
- 0.021139785647392273,
- 0.007585042156279087,
- -0.060041286051273346,
- 0.027825551107525826,
- 0.0007452511927112937,
- 0.0067871869541704655,
- 0.05732956528663635,
- 0.003905351273715496,
- 0.04879751801490784,
- -0.052884139120578766,
- 0.03903471678495407,
- -0.009890116751194,
- -0.08250346034765244,
- 0.04549943283200264,
- -0.051928550004959106,
- 0.007065304089337587,
- 0.061093322932720184,
- -0.022390928119421005,
- -0.004944436252117157,
- -0.01793748140335083,
- -0.03451697528362274,
- 0.12594164907932281,
- 0.02219116874039173,
- -0.08683507889509201,
- 0.07175415009260178,
- 0.013396351598203182,
- -0.022671492770314217,
- 0.008895366452634335,
- 0.12923945486545563,
- -0.08616922050714493,
- -0.14628532528877258,
- 0.0885540023446083,
- -0.042548343539237976,
- -0.045308783650398254,
- 0.08704199641942978,
- -0.002055107383057475,
- 0.023776674643158913,
- 0.05030020326375961,
- 0.021063432097434998,
- 0.11749289184808731,
- -0.0832880511879921,
- 0.025920728221535683,
- 0.05512963607907295,
- 0.02270066924393177,
- 0.022503690794110298,
- -0.004651195369660854,
- -0.001931729493662715,
- 0.055875152349472046,
- 0.032242678105831146,
- -0.019632888957858086,
- 0.06424915790557861,
- -0.003190126735717058,
- 0.030425915494561195,
- 0.05377200245857239,
- -0.03931504860520363,
- -0.01746094413101673,
- 0.03084559366106987,
- -0.005593223497271538,
- -0.03582414239645004,
- -0.07946436107158661,
- 0.20845207571983337,
- -0.052350983023643494,
- 0.059077706187963486,
- -0.10007722675800323,
- 0.020032024011015892,
- -0.03369801491498947,
- -0.005051385145634413,
- -0.03314363956451416,
- 0.0870518684387207,
- 0.07165645062923431,
- 0.033339451998472214,
- -0.04271142557263374,
- 0.05162647366523743,
- -0.08631851524114609,
- 0.009941992349922657,
- -0.02076849341392517,
- 0.0071803489699959755,
- 0.018494006246328354,
- 0.05963733419775963,
- 0.11347628384828568,
- -0.16749562323093414,
- -0.008855604566633701,
- 0.0337185263633728,
- -0.07751191407442093,
- -0.028763651847839355,
- 0.010781536810100079,
- -0.0724225640296936,
- -0.08049402385950089,
- -4.553822870757309e-33,
- 0.007517375983297825,
- 0.10378296673297882,
- 0.045015428215265274,
- 0.035440538078546524,
- -0.0349767729640007,
- -0.008245399221777916,
- -0.04717835411429405,
- 0.004423617850989103,
- -0.09619729965925217,
- -0.03725001960992813,
- -0.0727759525179863,
- 0.11262678354978561,
- 0.014100955799221992,
- -0.057791389524936676,
- 0.030215710401535034,
- -0.042917415499687195,
- 0.04042812064290047,
- 0.05693959817290306,
- 0.008647133596241474,
- -0.014919616281986237,
- -0.020199880003929138,
- 0.12828919291496277,
- -0.01762768067419529,
- 0.06907662004232407,
- 0.01761304959654808,
- -0.04492718726396561,
- -0.013868669979274273,
- -0.027895145118236542,
- -0.003715196857228875,
- 0.0682772770524025,
- 0.0585622601211071,
- 0.0010188614251092076,
- -0.07345928251743317,
- -0.06356339901685715,
- 0.023799972608685493,
- 0.025368686765432358,
- -0.04331585764884949,
- -0.1222851499915123,
- -0.03549793362617493,
- 0.028992237523198128,
- 0.019924744963645935,
- 0.02608295902609825,
- 0.01954362541437149,
- -0.02693762816488743,
- -0.03668666258454323,
- 0.0539148710668087,
- 0.06097758933901787,
- -0.019183121621608734,
- 0.10711144655942917,
- 0.03956073522567749,
- 0.006896110251545906,
- -0.04847133532166481,
- -0.06622187793254852,
- -0.025662889704108238,
- 0.08716359734535217,
- -0.017340295016765594,
- -0.0377269946038723,
- 0.03526755049824715,
- 0.060607340186834335,
- -0.07168129831552505,
- 0.039421774446964264,
- 0.00953279435634613,
- -0.13305477797985077,
- 0.03184409812092781,
- -0.07642143964767456,
- 0.02932519093155861,
- 0.027156714349985123,
- -0.0462886281311512,
- 0.031141208484768867,
- -0.005567753221839666,
- -0.04764126241207123,
- 0.021126434206962585,
- -0.017259657382965088,
- 0.01922992430627346,
- -0.12906186282634735,
- -0.01480793859809637,
- -0.06003618612885475,
- 0.03281404823064804,
- 0.004174100235104561,
- 0.07402323186397552,
- -0.05199090763926506,
- -0.021560050547122955,
- -0.006973387207835913,
- 0.017513457685709,
- 0.022404992952942848,
- 0.0009967476362362504,
- 0.03708624839782715,
- -0.0361618809401989,
- 0.005917923059314489,
- 0.07645510882139206,
- -0.0285431407392025,
- 0.016948075965046883,
- 0.002591203898191452,
- 0.08881500363349915,
- 0.016902485862374306,
- 2.444106404999924e-33,
- -0.016388896852731705,
- -0.07084077596664429,
- 0.05986306816339493,
- 0.020036621019244194,
- 0.021305466070771217,
- -0.01927715167403221,
- 0.08461521565914154,
- -0.0015115675050765276,
- 0.0014053995255380869,
- 0.007114880718290806,
- 0.011755300685763359,
- -0.023020068183541298,
- -0.021075058728456497,
- 0.06104051694273949,
- -0.016613760963082314,
- 0.018985159695148468,
- 0.04935591667890549,
- 0.018091747537255287,
- -0.030055545270442963,
- -0.03373907133936882,
- -0.04267604649066925,
- -0.054275546222925186,
- 0.043876249343156815,
- -0.018672818318009377,
- 0.10145015269517899,
- 0.025483760982751846,
- 0.025692781433463097,
- 0.03166286274790764,
- -0.06887613981962204,
- -0.015911269932985306,
- 0.026025719940662384,
- -0.011229592375457287,
- -0.09609180688858032,
- 0.009542824700474739,
- -0.04446893930435181,
- 0.10831046849489212,
- -0.03279910609126091,
- 0.026582814753055573,
- -0.0544670931994915,
- -0.09497709572315216,
- 0.06310383975505829,
- 0.00017416782793588936,
- -0.005305242724716663,
- 0.10789860039949417,
- 0.0038156923837959766,
- -0.02851594053208828,
- 0.015679171308875084,
- -0.05501502752304077,
- 0.05337673798203468,
- -0.02204921841621399,
- -0.1080818846821785,
- -0.03158380836248398,
- 0.09708628058433533,
- -0.017088670283555984,
- 0.025575634092092514,
- 0.032751258462667465,
- 0.024949515238404274,
- 0.04990249499678612,
- -0.016973044723272324,
- -0.06958302855491638,
- 0.03738849237561226,
- 0.0315680056810379,
- -0.010360402055084705,
- 0.04826224222779274,
- 0.024556798860430717,
- -0.013280651532113552,
- 0.006306814961135387,
- 0.004663345869630575,
- 0.018013151362538338,
- -0.027770761400461197,
- 0.014078443869948387,
- -0.030321745201945305,
- -0.09453048557043076,
- -0.046996716409921646,
- -0.0680662989616394,
- -0.0141000272706151,
- -0.04364267736673355,
- -0.06491273641586304,
- -0.06653594970703125,
- 0.028378034010529518,
- -0.03713018074631691,
- 0.010348525829613209,
- 0.021203959360718727,
- 0.047156594693660736,
- -0.00702095590531826,
- 0.04989254102110863,
- 0.0658959150314331,
- -0.011671112850308418,
- 0.04175771400332451,
- 0.01573331467807293,
- -0.012271941639482975,
- -0.0164612028747797,
- 0.03712514415383339,
- 0.017096254974603653,
- -0.025111377239227295,
- -1.4408290560652404e-8,
- -0.047072891145944595,
- -0.01592905819416046,
- -0.009884082712233067,
- 0.02167809195816517,
- 0.04812522232532501,
- 0.010600526817142963,
- -0.0006728764274157584,
- -0.05375121161341667,
- 0.00761369988322258,
- 0.10709964483976364,
- -0.03821630775928497,
- -0.023591047152876854,
- -0.050114646553993225,
- 0.017705148085951805,
- 0.0931755006313324,
- -0.09545723348855972,
- -0.05626513436436653,
- 0.029272252693772316,
- -0.06706881523132324,
- 0.019657982513308525,
- -0.023734161630272865,
- 0.0524417906999588,
- 0.02004186436533928,
- -0.04109715297818184,
- -0.011895117349922657,
- 0.019582824781537056,
- 0.04319921135902405,
- 0.000010612702681100927,
- 0.056483350694179535,
- 0.012847275473177433,
- -0.039717305451631546,
- 0.017859093844890594,
- -0.027464838698506355,
- -0.07880493998527527,
- -0.04077497497200966,
- -0.04405658319592476,
- 0.009750288911163807,
- -0.01861387863755226,
- 0.0061722323298454285,
- -0.05486005172133446,
- -0.021410562098026276,
- 0.027294693514704704,
- 0.03394806757569313,
- 0.0287873987108469,
- 0.0453619584441185,
- 0.032622046768665314,
- 0.014154435135424137,
- -0.03237540274858475,
- -0.0058202254585921764,
- -0.04780144616961479,
- -0.026805371046066284,
- -0.04030155390501022,
- -0.014084731228649616,
- 0.021800359711050987,
- -0.04642130434513092,
- -0.02151363343000412,
- -0.029500523582100868,
- 0.02957858145236969,
- -0.045615311712026596,
- -0.020016590133309364,
- -0.019019508734345436,
- -0.10281973332166672,
- 0.086424820125103,
- -0.04087177664041519
- ]
- },
- {
- "keyword": "part of",
- "type": "memberOf",
- "typeCategory": "verb",
- "confidence": 0.95,
- "isCanonical": true,
- "embedding": [
- 0.022892341017723083,
- 0.09756245464086533,
- 0.10362919420003891,
- 0.04894853010773659,
- 0.060438185930252075,
- -0.054957613348960876,
- 0.11306358873844147,
- -0.009718028828501701,
- 0.014435880817472935,
- -0.03938664495944977,
- -0.02856658399105072,
- -0.01689128205180168,
- -0.0015890641370788217,
- -0.047639258205890656,
- 0.05368872359395027,
- -0.09293247759342194,
- 0.0022758275736123323,
- 0.020891599357128143,
- -0.11268500983715057,
- 0.013461681082844734,
- -0.1292080581188202,
- 0.08538300544023514,
- 0.0007141289534047246,
- -0.004901982378214598,
- 0.05803196504712105,
- 0.027402494102716446,
- -0.02289123833179474,
- 0.058996450155973434,
- 0.04218592494726181,
- -0.0014432603493332863,
- 0.017201747745275497,
- 0.06387864798307419,
- 0.0010285481112077832,
- 0.02357376180589199,
- -0.011043716222047806,
- 0.037169501185417175,
- 0.06845089048147202,
- -0.021291689947247505,
- 0.05145015940070152,
- -0.04491402581334114,
- 0.016949862241744995,
- -0.06925849616527557,
- -0.03161243721842766,
- 0.08802323043346405,
- 0.024561995640397072,
- 0.037353526800870895,
- 0.05828232318162918,
- -0.044592857360839844,
- 0.010681056417524815,
- -0.010887978598475456,
- -0.015937134623527527,
- -0.009128778241574764,
- -0.006029635202139616,
- 0.022540580481290817,
- -0.008040379732847214,
- 0.04479758441448212,
- 0.03889551758766174,
- -0.06343129277229309,
- 0.006926603149622679,
- -0.005116407759487629,
- 0.09386139363050461,
- 0.027111606672406197,
- -0.09058815240859985,
- 0.04635828360915184,
- 0.032237567007541656,
- -0.10524391382932663,
- 0.059192392975091934,
- 0.0007029288099147379,
- -0.06475906074047089,
- -0.03194086253643036,
- 0.026768913492560387,
- 0.011172669008374214,
- 0.03866056352853775,
- 0.04165080562233925,
- -0.005780869163572788,
- 0.02233865298330784,
- 0.07201339304447174,
- -0.003914829343557358,
- 0.05836215615272522,
- -0.0004187194281257689,
- 0.06027458980679512,
- 0.0005789955612272024,
- -0.0354270376265049,
- -0.012255101464688778,
- 0.00919647142291069,
- -0.028251053765416145,
- 0.074586883187294,
- -0.06200750917196274,
- -0.05886520817875862,
- 0.03151167556643486,
- -0.024080147966742516,
- -0.05897745490074158,
- 0.13644194602966309,
- 0.001428141607902944,
- -0.016844378784298897,
- -0.018400687724351883,
- 0.0010742292506620288,
- 0.03649290278553963,
- 0.07223357260227203,
- 0.1792038083076477,
- -0.059670332819223404,
- 0.03603237122297287,
- 0.031131241470575333,
- -0.07190734148025513,
- -0.059771426022052765,
- -0.0032993971835821867,
- -0.09037906676530838,
- 0.06630243360996246,
- 0.0123831732198596,
- -0.028881467878818512,
- -0.04992415010929108,
- -0.04252077266573906,
- 0.08015831559896469,
- 0.01551487110555172,
- 0.06124597042798996,
- -0.06568624824285507,
- 0.0666431188583374,
- 0.0036835200153291225,
- 0.06748002022504807,
- -0.010363101027905941,
- 0.02007131278514862,
- 0.02221490442752838,
- -0.0028294390067458153,
- 0.04454834759235382,
- -0.022828368470072746,
- -0.14243638515472412,
- 0.005690593738108873,
- -4.280307008498056e-33,
- 0.029727905988693237,
- -0.0766938254237175,
- 0.005399361252784729,
- 0.017146261408925056,
- -0.013156995177268982,
- 0.05341768637299538,
- 0.034181639552116394,
- -0.02390408329665661,
- -0.07438377290964127,
- 0.051343806087970734,
- -0.022732064127922058,
- -0.027575351297855377,
- -0.02812255173921585,
- -0.016283128410577774,
- 0.12863999605178833,
- 0.0008391399751417339,
- -0.05094826966524124,
- 0.051138535141944885,
- -0.09815939515829086,
- -0.05908084660768509,
- -0.09230326116085052,
- 0.08411015570163727,
- -0.046286992728710175,
- 0.05882924050092697,
- -0.03283711522817612,
- -0.056168366223573685,
- 0.011189987882971764,
- -0.0832429900765419,
- -0.02798181213438511,
- 0.03062676452100277,
- -0.03080563247203827,
- 0.09006717056035995,
- -0.056875862181186676,
- -0.028359893709421158,
- 0.02240682952105999,
- -0.03767558932304382,
- 0.011560012586414814,
- -0.05154133215546608,
- -0.09754567593336105,
- -0.02360560931265354,
- -0.04256610944867134,
- -0.005642414093017578,
- 0.056551557034254074,
- -0.023431790992617607,
- -0.056962162256240845,
- -0.024837316945195198,
- -0.05612877011299133,
- 0.046050820499658585,
- 0.00284165283665061,
- 0.029584597796201706,
- -0.04021560028195381,
- -0.01933627761900425,
- 0.011980658397078514,
- -0.05935318022966385,
- -0.028038885444402695,
- 0.008693579584360123,
- -0.021412665024399757,
- -0.07100845873355865,
- 0.03931472823023796,
- -0.02099991962313652,
- -0.011301585473120213,
- 0.0696987584233284,
- -0.04527284577488899,
- -0.01807803474366665,
- -0.07264596223831177,
- 0.000545447925105691,
- 0.04536858946084976,
- -0.057652875781059265,
- 0.036917589604854584,
- -0.01896926574409008,
- -0.14419914782047272,
- -0.017052313312888145,
- 0.07427604496479034,
- 0.04948883876204491,
- -0.013811565935611725,
- -0.035286203026771545,
- 0.030676890164613724,
- 0.03652188554406166,
- -0.08451137691736221,
- 0.07305803894996643,
- -0.04830425605177879,
- -0.028951046988368034,
- -0.060436878353357315,
- 0.053115036338567734,
- 0.01505573932081461,
- 0.045662764459848404,
- 0.055159274488687515,
- -0.09494578093290329,
- -0.019462259486317635,
- -0.019121317192912102,
- -0.1325550377368927,
- -0.009145138785243034,
- 0.020732970908284187,
- 0.01834951713681221,
- 0.017930040135979652,
- 1.8015066224175815e-33,
- -0.0766763985157013,
- -0.05373598262667656,
- 0.07230198383331299,
- -0.020736491307616234,
- -0.02551315911114216,
- -0.03018670342862606,
- 0.015800978988409042,
- 0.03168895095586777,
- -0.013384785503149033,
- 0.1189698800444603,
- -0.12058382481336594,
- -0.03619661182165146,
- -0.03650795668363571,
- 0.00965605117380619,
- 0.0029636931139975786,
- 0.008994399569928646,
- 0.09131278842687607,
- 0.016113029792904854,
- 0.022053465247154236,
- 0.037611961364746094,
- -0.02943815477192402,
- -0.019923368468880653,
- 0.06370265781879425,
- -0.03910451382398605,
- -0.021287450566887856,
- 0.04684023559093475,
- 0.03684515133500099,
- 0.08587639778852463,
- -0.07426925748586655,
- 0.032176412642002106,
- 0.02062373422086239,
- -0.06241645663976669,
- -0.07598260790109634,
- -0.015074392780661583,
- -0.05787448585033417,
- 0.0706477239727974,
- 0.04771748557686806,
- 0.057726405560970306,
- 0.0651284009218216,
- 0.014387859031558037,
- 0.10409627854824066,
- -0.01784755103290081,
- 0.012311688624322414,
- 0.14440211653709412,
- 0.0028374672401696444,
- -0.034043435007333755,
- 0.08687952160835266,
- 0.05707922205328941,
- -0.04276574030518532,
- 0.03575843572616577,
- -0.06710858643054962,
- -0.008348274976015091,
- 0.044676780700683594,
- 0.015501908957958221,
- -0.003158884821459651,
- -0.007458290085196495,
- -0.014886393211781979,
- -0.01470279786735773,
- 0.010431714355945587,
- -0.03626620024442673,
- -0.05262349545955658,
- 0.0591190941631794,
- -0.0062714372761547565,
- -0.03537097945809364,
- 0.07816877961158752,
- -0.007866403087973595,
- -0.024230768904089928,
- 0.005754812154918909,
- 0.06279473006725311,
- -0.04159621521830559,
- 0.018236767500638962,
- 0.09066415578126907,
- -0.021214045584201813,
- -0.017798151820898056,
- -0.002091344678774476,
- 0.00799452792853117,
- -0.03812243416905403,
- -0.015691429376602173,
- 0.009227417409420013,
- -0.040586140006780624,
- -0.05437478795647621,
- -0.1148596853017807,
- -0.03175077959895134,
- -0.03946996107697487,
- -0.03830352798104286,
- -0.03472452238202095,
- 0.006629663519561291,
- -0.022575512528419495,
- -0.015310327522456646,
- -0.08715558052062988,
- -0.0013242585118860006,
- 0.056550852954387665,
- 0.029037026688456535,
- -0.01425234042108059,
- 0.044255197048187256,
- -1.396290016941748e-8,
- 0.040338680148124695,
- 0.03109125606715679,
- -0.08354316651821136,
- -0.04330052435398102,
- 0.06944966316223145,
- 0.11460259556770325,
- -0.019889360293745995,
- 0.03428107872605324,
- 0.023220641538500786,
- 0.06943447887897491,
- 0.07981782406568527,
- -0.0156696867197752,
- -0.0309141818434,
- 0.016776787117123604,
- -0.03493209928274155,
- -0.021364687010645866,
- -0.0064377617090940475,
- 0.05818197503685951,
- -0.08900931477546692,
- 0.053421273827552795,
- 0.008344714529812336,
- -0.0067914752289652824,
- -0.0021371657494455576,
- -0.04322761669754982,
- -0.013849090784788132,
- -0.006525047589093447,
- -0.0241306833922863,
- 0.05158352479338646,
- -0.034825608134269714,
- 0.010370106436312199,
- 0.007278270088136196,
- 0.07226995378732681,
- -0.028938325121998787,
- -0.009304085746407509,
- 0.06621237844228745,
- -0.02888381853699684,
- -0.00482150400057435,
- -0.016647664830088615,
- 0.000620695180259645,
- -0.04036056250333786,
- -0.010132314637303352,
- -0.07749052345752716,
- 0.11684856563806534,
- 0.03242972865700722,
- -0.005626965314149857,
- 0.0003056308487430215,
- -0.05857020244002342,
- 0.014370182529091835,
- 0.009136293083429337,
- -0.0033953823149204254,
- -0.0789293572306633,
- 0.040236957371234894,
- -0.013906355015933514,
- 0.015530112199485302,
- 0.023207781836390495,
- -0.003067364916205406,
- 0.00898497924208641,
- -0.06993912160396576,
- -0.08342951536178589,
- 0.028647007420659065,
- 0.04976532235741615,
- 0.07742006331682205,
- 0.020004864782094955,
- 0.031943295150995255
- ]
- },
- {
- "keyword": "works for",
- "type": "memberOf",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.06400616466999054,
- 0.005483612883836031,
- 0.007856983691453934,
- -0.020364727824926376,
- 0.004197806119918823,
- -0.01792125217616558,
- 0.03434041514992714,
- -0.007949214428663254,
- -0.030789336189627647,
- -0.013376805000007153,
- 0.04842904955148697,
- 0.08721213787794113,
- 0.0066880034282803535,
- 0.02324315533041954,
- -0.025142477825284004,
- 0.07654505968093872,
- 0.09399786591529846,
- 0.15313810110092163,
- 0.007802557200193405,
- -0.0815424770116806,
- -0.11109443753957748,
- 0.021300265565514565,
- -0.00032793343416415155,
- -0.010750406421720982,
- -0.009707574732601643,
- -0.04046560451388359,
- -0.06781721115112305,
- 0.050123825669288635,
- 0.0611114464700222,
- 0.006425976287573576,
- 0.01202423870563507,
- 0.005395696498453617,
- 0.08854710310697556,
- -0.025616470724344254,
- 0.009766003116965294,
- -0.032549068331718445,
- 0.03207309544086456,
- -0.012363296002149582,
- -0.017858408391475677,
- -0.02330404333770275,
- -0.04423321783542633,
- -0.026034504175186157,
- 0.0052831582725048065,
- 0.01730368286371231,
- -0.006348827853798866,
- 0.0017847134731709957,
- 0.058041010051965714,
- -0.0011665989877656102,
- 0.05061997473239899,
- 0.025308189913630486,
- 0.0328199602663517,
- -0.004582568537443876,
- 0.051863957196474075,
- 0.04132020100951195,
- 0.0403711274266243,
- 0.012810985557734966,
- -0.05375569686293602,
- 0.06198592483997345,
- 0.030839430168271065,
- -0.0013665544101968408,
- 0.02290613390505314,
- -0.02140008471906185,
- -0.02313266694545746,
- 0.030525609850883484,
- -0.043138548731803894,
- -0.032185494899749756,
- 0.01166235376149416,
- 0.03304150328040123,
- -0.07546515017747879,
- -0.04627971723675728,
- -0.00036868947790935636,
- 0.018154598772525787,
- -0.018916282802820206,
- 0.03941861540079117,
- 0.012960407882928848,
- 0.02650327794253826,
- 0.03869856521487236,
- -0.039721325039863586,
- 0.05192152038216591,
- 0.03305837884545326,
- -0.018295014277100563,
- -0.02162262052297592,
- 0.004922359250485897,
- -0.022283678874373436,
- 0.09430777281522751,
- 0.055181581526994705,
- 0.06186193972826004,
- -0.04512424394488335,
- -0.01388564147055149,
- 0.0018321359530091286,
- 0.023500842973589897,
- 0.06252802908420563,
- 0.036187369376420975,
- -0.014665619470179081,
- -0.12269788235425949,
- -0.0487019345164299,
- 0.0067202625796198845,
- 0.08967845886945724,
- -0.0721680298447609,
- 0.19965745508670807,
- 0.04279356077313423,
- -0.02968132123351097,
- 0.03524133563041687,
- -0.032972462475299835,
- 0.03511717543005943,
- -0.04128136858344078,
- -0.034387581050395966,
- 0.0325334258377552,
- -0.009245016612112522,
- -0.014496092684566975,
- -0.06172969937324524,
- 0.03740822151303291,
- -0.03262840211391449,
- 0.10080201178789139,
- -0.0465068481862545,
- -0.015606405213475227,
- -0.10016252100467682,
- 0.044434111565351486,
- 0.022263089194893837,
- -0.015021477825939655,
- -0.009848112240433693,
- 0.02843833714723587,
- -0.06136623024940491,
- -0.04048648476600647,
- -0.022729383781552315,
- -0.10627477616071701,
- 0.07343403249979019,
- -7.923979868244193e-34,
- -0.0163662638515234,
- -0.027291959151625633,
- 0.0222658421844244,
- 0.03358357027173042,
- 0.0012357875239104033,
- 0.020842593163251877,
- 0.0432986281812191,
- -0.041082896292209625,
- -0.0026938256341964006,
- 0.03172730654478073,
- -0.040793124586343765,
- 0.0011514690704643726,
- -0.00375737645663321,
- 0.06861112266778946,
- 0.045093752443790436,
- 0.014361165463924408,
- 0.05112353339791298,
- 0.08186373859643936,
- -0.07936567068099976,
- -0.013962150551378727,
- -0.023075906559824944,
- 0.015230164863169193,
- 0.0677100345492363,
- 0.014711277559399605,
- -0.10360446572303772,
- 0.09035944938659668,
- -0.013315094634890556,
- -0.045695967972278595,
- 0.10034912824630737,
- 0.044679492712020874,
- -0.009111549705266953,
- 0.04422203078866005,
- -0.13303601741790771,
- -0.021951666101813316,
- -0.03532887250185013,
- 0.02479371428489685,
- 0.0011004009284079075,
- -0.049442291259765625,
- 0.0337684229016304,
- 0.003535940544679761,
- -0.03427407145500183,
- 0.005700760520994663,
- -0.09938612580299377,
- -0.03749697282910347,
- 0.05200811102986336,
- 0.0629996508359909,
- -0.05434534698724747,
- -0.00007002332131378353,
- 0.0057853288017213345,
- 0.08218292146921158,
- 0.04241446405649185,
- 0.0007194922072812915,
- -0.09052804112434387,
- -0.052803363651037216,
- -0.030847830697894096,
- 0.06061018258333206,
- -0.017466142773628235,
- -0.025248780846595764,
- 0.03909886255860329,
- -0.024829087778925896,
- 0.07762749493122101,
- -0.10679963231086731,
- 0.0017535773804411292,
- -0.041074324399232864,
- -0.06865382939577103,
- 0.01835455745458603,
- 0.05233747512102127,
- 0.001982299843803048,
- -0.06055048108100891,
- -0.003109593642875552,
- -0.04584626853466034,
- 0.05768461525440216,
- 0.13485072553157806,
- 0.07338050752878189,
- -0.062108464539051056,
- 0.02173948660492897,
- 0.004303895402699709,
- -0.03688368946313858,
- -0.04330744221806526,
- 0.04782387241721153,
- 0.05239371955394745,
- -0.10517793893814087,
- 0.0383782796561718,
- 0.08126489818096161,
- 0.079825758934021,
- 0.016168588772416115,
- -0.026379389688372612,
- -0.09950382262468338,
- -0.018926279619336128,
- -0.0017923101549968123,
- -0.043446917086839676,
- 0.01651143468916416,
- -0.03564860299229622,
- -0.008581886067986488,
- -0.05839256942272186,
- 1.5191561854279297e-33,
- -0.03384963795542717,
- 0.020132966339588165,
- -0.0595957413315773,
- 0.03206124156713486,
- -0.01642334647476673,
- -0.03702554851770401,
- 0.05727593973278999,
- 0.005473796743899584,
- -0.009199718944728374,
- 0.011846408247947693,
- -0.04833793267607689,
- -0.005416993051767349,
- -0.006531053222715855,
- -0.016474083065986633,
- 0.03678329661488533,
- 0.0012039478169754148,
- 0.06642817705869675,
- -0.1281580775976181,
- -0.08393201977014542,
- 0.04413437843322754,
- -0.05182836577296257,
- 0.04199957847595215,
- -0.05487916246056557,
- -0.039363909512758255,
- 0.0020851201843470335,
- 0.02569996938109398,
- -0.011240626685321331,
- -0.03747893124818802,
- -0.012470336630940437,
- 0.02450491487979889,
- 0.11973048001527786,
- -0.03272566199302673,
- -0.13632982969284058,
- -0.02915332280099392,
- 0.01962430775165558,
- 0.07576259225606918,
- 0.021630190312862396,
- 0.020108886063098907,
- -0.04510640352964401,
- -0.058413151651620865,
- 0.07626437395811081,
- 0.025060128420591354,
- 0.009626485407352448,
- -0.008813362568616867,
- -0.07247515022754669,
- 0.05057288706302643,
- 0.05905529856681824,
- -0.02678143046796322,
- 0.034455180168151855,
- 0.08591014891862869,
- -0.01102779433131218,
- -0.012495247647166252,
- 0.09244740009307861,
- -0.05277683958411217,
- -0.03771186247467995,
- 0.0017362609505653381,
- -0.03705998510122299,
- -0.07271157950162888,
- -0.03300309181213379,
- -0.03512626886367798,
- -0.1359042078256607,
- -0.001234992640092969,
- -0.01907964237034321,
- 0.035359323024749756,
- -0.02949320524930954,
- -0.005198147147893906,
- -0.015068894252181053,
- 0.04144681990146637,
- 0.05280466377735138,
- -0.03629762679338455,
- 0.03388740494847298,
- 0.029420338571071625,
- -0.011698308400809765,
- -0.017443887889385223,
- 0.002344258362427354,
- -0.013539603911340237,
- 0.0028125576209276915,
- -0.025416433811187744,
- -0.014669978059828281,
- 0.06889022886753082,
- -0.0696859210729599,
- -0.05973372980952263,
- -0.006269595120102167,
- -0.04630276933312416,
- 0.00894760899245739,
- -0.012433549389243126,
- 0.019711419939994812,
- 0.11455034464597702,
- -0.036218948662281036,
- -0.01731683872640133,
- -0.018513867631554604,
- -0.0356363020837307,
- 0.08963193744421005,
- 0.07447441667318344,
- 0.0808548703789711,
- -1.4591182484480214e-8,
- -0.001444784109480679,
- 0.000007982883289514575,
- 0.0064540342427790165,
- -0.015522098168730736,
- -0.06848645955324173,
- 0.041156575083732605,
- -0.03542402386665344,
- -0.08467864245176315,
- -0.014814857393503189,
- 0.002557302126660943,
- 0.007135601714253426,
- -0.020899100229144096,
- 0.09631554037332535,
- 0.09873183071613312,
- 0.014480188488960266,
- -0.14043079316616058,
- -0.004040669184178114,
- 0.09528347849845886,
- -0.0871882364153862,
- 0.013228627853095531,
- -0.09178251028060913,
- 0.005513992626219988,
- 0.04410702362656593,
- 0.03041435033082962,
- 0.022710610181093216,
- 0.02319464646279812,
- -0.006498563103377819,
- 0.15260347723960876,
- 0.0014917697990313172,
- -0.05583929270505905,
- -0.028680242598056793,
- 0.10173951089382172,
- -0.013953185640275478,
- -0.021307233721017838,
- 0.08451932668685913,
- -0.021110594272613525,
- 0.02195120044052601,
- -0.02142263576388359,
- 0.045959699898958206,
- 0.005640389863401651,
- 0.014583438634872437,
- -0.06952465325593948,
- 0.010281449183821678,
- -0.05773141607642174,
- -0.10879994928836823,
- -0.005084752570837736,
- 0.05083555728197098,
- 0.030042938888072968,
- -0.058787550777196884,
- 0.07698075473308563,
- -0.030324215069413185,
- 0.029517775401473045,
- 0.034704357385635376,
- 0.03400535136461258,
- 0.04719006270170212,
- 0.020786786451935768,
- 0.03588930144906044,
- -0.04815078526735306,
- 0.014234042726457119,
- 0.023263759911060333,
- 0.10681264102458954,
- 0.024601256474852562,
- 0.03160874918103218,
- -0.0064726718701422215
- ]
- },
- {
- "keyword": "employed by",
- "type": "memberOf",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- 0.02018277905881405,
- 0.01579497940838337,
- 0.01586051657795906,
- 0.04481472820043564,
- -0.004537858534604311,
- -0.01728704944252968,
- 0.122043177485466,
- -0.06090620160102844,
- -0.027021154761314392,
- -0.03410489484667778,
- 0.03241676464676857,
- 0.06666100770235062,
- 0.007844884879887104,
- -0.016637571156024933,
- -0.04843121021986008,
- 0.027565643191337585,
- -0.0035289586521685123,
- -0.0030852702911943197,
- 0.017490971833467484,
- -0.10174225270748138,
- -0.04113747179508209,
- 0.03128839284181595,
- -0.025297490879893303,
- -0.005535644944757223,
- 0.07615576684474945,
- 0.021811503916978836,
- -0.05353078618645668,
- 0.030648354440927505,
- 0.08037682622671127,
- -0.0452289916574955,
- 0.006931381765753031,
- 0.040179502218961716,
- 0.010289317928254604,
- 0.026533087715506554,
- -0.02320707216858864,
- -0.014547607861459255,
- 0.011647972278296947,
- -0.018985897302627563,
- 0.04820854216814041,
- 0.0018089404329657555,
- -0.02199706807732582,
- -0.005448652431368828,
- 0.022784437984228134,
- 0.010460954159498215,
- -0.04057561978697777,
- 0.016012169420719147,
- 0.0331505611538887,
- 0.025256946682929993,
- -0.0407649390399456,
- 0.07275304198265076,
- -0.08227124810218811,
- 0.00005187967690289952,
- 0.0451512448489666,
- -0.023348819464445114,
- -0.021789804100990295,
- -0.004873639438301325,
- -0.06198311224579811,
- -0.06744779646396637,
- 0.0033962507732212543,
- -0.029454300180077553,
- 0.01636357605457306,
- 0.02290509268641472,
- -0.1090518906712532,
- 0.022572560235857964,
- 0.04177034646272659,
- -0.035150736570358276,
- -0.021874533966183662,
- 0.007805671077221632,
- -0.09459308534860611,
- -0.12522335350513458,
- 0.08615805208683014,
- -0.09359080344438553,
- -0.04347515478730202,
- 0.014617162756621838,
- 0.04455219954252243,
- -0.053387150168418884,
- 0.05100250616669655,
- 0.00326409749686718,
- 0.014860769733786583,
- -0.09312433004379272,
- 0.02898998372256756,
- 0.07842110842466354,
- -0.05823633447289467,
- 0.031618643552064896,
- 0.006883231922984123,
- -0.017666930332779884,
- 0.043869081884622574,
- 0.02766074240207672,
- 0.13799022138118744,
- -0.017912469804286957,
- 0.059568822383880615,
- 0.012197502888739109,
- -0.03446592390537262,
- 0.001603718032129109,
- -0.02484617941081524,
- -0.05330537259578705,
- 0.02311161532998085,
- 0.09844192862510681,
- -0.008443057537078857,
- 0.2017972618341446,
- -0.016550693660974503,
- -0.0015314208576455712,
- -0.11106479167938232,
- -0.07000438123941422,
- -0.016482513397932053,
- 0.03864212706685066,
- -0.06033708527684212,
- 0.05384361743927002,
- 0.008903584443032742,
- -0.004803514573723078,
- -0.07856738567352295,
- 0.0028947978280484676,
- -0.10508356988430023,
- 0.05653756856918335,
- 0.05913328379392624,
- -0.01403705682605505,
- -0.06539386510848999,
- 0.025020159780979156,
- 0.011290580965578556,
- -0.0005070301122032106,
- 0.024792220443487167,
- 0.06650519371032715,
- -0.05007711797952652,
- 0.027952946722507477,
- -0.08567259460687637,
- 0.004160089883953333,
- 0.0664353296160698,
- -4.277399496689694e-33,
- 0.03786027431488037,
- 0.012064746581017971,
- 0.05627813562750816,
- 0.051917970180511475,
- 0.04994799569249153,
- 0.025687968358397484,
- -0.006188543047755957,
- 0.030688976868987083,
- -0.011336454190313816,
- 0.008816102519631386,
- -0.03549521788954735,
- 0.05785226821899414,
- -0.014206777326762676,
- -0.03926314786076546,
- 0.05128290131688118,
- -0.029224799945950508,
- 0.042175374925136566,
- 0.0003534475981723517,
- -0.0352637805044651,
- -0.0037067621015012264,
- -0.054110027849674225,
- 0.030986251309514046,
- -0.0678001344203949,
- 0.03637874871492386,
- 0.0006663730018772185,
- -0.016669340431690216,
- -0.035360220819711685,
- 0.0051960027776658535,
- 0.06914879381656647,
- 0.09178195893764496,
- 0.07442367076873779,
- -0.02564624883234501,
- -0.019248437136411667,
- -0.0175408236682415,
- -0.06419964879751205,
- 0.006037579383701086,
- -0.09470400959253311,
- -0.024179494008421898,
- 0.004223037511110306,
- 0.05987710505723953,
- 0.013358630239963531,
- -0.037496160715818405,
- 0.0604560524225235,
- -0.08807597309350967,
- -0.0878167450428009,
- 0.03751352056860924,
- 0.010445312596857548,
- 0.08710338920354843,
- 0.06944825500249863,
- 0.11652962863445282,
- -0.032468587160110474,
- -0.017685990780591965,
- -0.01873554103076458,
- 0.017604021355509758,
- 0.07477950304746628,
- -0.010142577812075615,
- -0.024866661056876183,
- -0.011269578710198402,
- 0.05183381214737892,
- -0.027724916115403175,
- 0.012441225349903107,
- 0.10791995376348495,
- -0.09685390442609787,
- 0.07133276015520096,
- -0.038503579795360565,
- -0.0531068854033947,
- 0.05674070119857788,
- -0.01392004732042551,
- 0.06747376918792725,
- 0.03459784761071205,
- -0.07154683023691177,
- 0.06905222684144974,
- 0.053097158670425415,
- 0.05974997207522392,
- -0.04928656667470932,
- 0.037413474172353745,
- -0.042911432683467865,
- 0.04001548886299133,
- -0.027537649497389793,
- 0.03796164691448212,
- 0.019862590357661247,
- -0.015406829304993153,
- 0.029439207166433334,
- 0.04792888090014458,
- 0.06824520230293274,
- 0.079108327627182,
- 0.007818030193448067,
- -0.06664452701807022,
- 0.04747617989778519,
- 0.06297551840543747,
- -0.015496610663831234,
- -0.01649794913828373,
- 0.036334093660116196,
- 0.008455123752355576,
- -0.03716585785150528,
- 2.7542848340353704e-33,
- -0.044770658016204834,
- -0.031158054247498512,
- 0.04948990046977997,
- -0.06342165172100067,
- -0.04164554923772812,
- -0.060690540820360184,
- 0.030602026730775833,
- -0.10036496818065643,
- -0.024451330304145813,
- 0.027689995244145393,
- -0.049421824514865875,
- -0.06296376138925552,
- -0.002272289711982012,
- 0.06456928700208664,
- 0.016508765518665314,
- -0.008232330903410912,
- 0.09222414344549179,
- -0.11609017103910446,
- -0.1061328798532486,
- -0.007875333540141582,
- -0.048623863607645035,
- 0.029390018433332443,
- 0.07975797355175018,
- -0.0034621492959558964,
- 0.005476267542690039,
- 0.07070865482091904,
- -0.0001868716353783384,
- 0.07127934694290161,
- -0.08524389564990997,
- -0.013365110382437706,
- -0.03652682155370712,
- -0.014344018884003162,
- -0.056289467960596085,
- -0.039730269461870193,
- -0.07224011421203613,
- -0.03239456191658974,
- -0.10290608555078506,
- 0.04804515093564987,
- -0.003247481305152178,
- -0.010570348240435123,
- 0.06006089597940445,
- 0.015360145829617977,
- -0.009554357267916203,
- 0.13418613374233246,
- -0.0021839640103280544,
- -0.09401379525661469,
- -0.013226903975009918,
- -0.08542358875274658,
- 0.10014288127422333,
- 0.05464203283190727,
- 0.015742482617497444,
- 0.0008148486958816648,
- -0.012934405356645584,
- -0.00022998775239102542,
- -0.03623586520552635,
- -0.005258315242826939,
- 0.03694557026028633,
- -0.029065508395433426,
- -0.01227645855396986,
- -0.014011187478899956,
- -0.029632853344082832,
- 0.036385320127010345,
- 0.050596680492162704,
- 0.032394297420978546,
- -0.008547443896532059,
- -0.050676655024290085,
- -0.039809588342905045,
- -0.031032834202051163,
- 0.1280672252178192,
- -0.02368730679154396,
- -0.0546206496655941,
- -0.006700590252876282,
- -0.06468310952186584,
- -0.06540554016828537,
- -0.030171405524015427,
- 0.035431988537311554,
- -0.025393255054950714,
- -0.035833802074193954,
- -0.03161534667015076,
- -0.02243209443986416,
- -0.044704537838697433,
- -0.03271081671118736,
- 0.0426890067756176,
- 0.050182513892650604,
- -0.06592346727848053,
- 0.025404294952750206,
- 0.0021405082661658525,
- -0.03829736262559891,
- 0.015501860529184341,
- 0.0007487776456400752,
- -0.0062066116370260715,
- 0.0013698787661269307,
- -0.054465875029563904,
- 0.05685713142156601,
- 0.03351647034287453,
- -1.3389866992952193e-8,
- -0.02575390413403511,
- -0.01275643240660429,
- 0.013892736285924911,
- 0.004527602344751358,
- 0.06619861721992493,
- -0.0004077003104612231,
- 0.08185520768165588,
- 0.00980702880769968,
- 0.03734783083200455,
- 0.05720095708966255,
- 0.009816757403314114,
- -0.07143756747245789,
- 0.013080945238471031,
- 0.05224108695983887,
- 0.07268770039081573,
- -0.03945647552609444,
- -0.019905760884284973,
- 0.0006718686199747026,
- -0.12460460513830185,
- -0.0660528913140297,
- 0.03374186530709267,
- 0.031269412487745285,
- 0.050147645175457,
- 0.022565582767128944,
- -0.051974210888147354,
- 0.05833549425005913,
- -0.028052564710378647,
- 0.025449296459555626,
- 0.0520293302834034,
- 0.05273798853158951,
- 0.009994812309741974,
- 0.07966470718383789,
- -0.045308422297239304,
- -0.12187057733535767,
- -0.007753498386591673,
- -0.1133497804403305,
- 0.062129490077495575,
- -0.02811780944466591,
- -0.0043970863334834576,
- -0.08186798542737961,
- -0.05617724731564522,
- 0.07269009202718735,
- 0.027414552867412567,
- 0.04274049028754234,
- 0.004036542493849993,
- -0.05911114439368248,
- 0.03235691040754318,
- -0.004487073048949242,
- 0.0006180520867928863,
- -0.04758657515048981,
- -0.017121976241469383,
- -0.0151305440813303,
- 0.06353770941495895,
- 0.05638929829001427,
- -0.02003822848200798,
- -0.02662017196416855,
- 0.0022403846960514784,
- -0.009612370282411575,
- -0.12893140316009521,
- -0.03371112048625946,
- 0.003474548924714327,
- -0.06568973511457443,
- 0.09101922065019608,
- 0.06615957617759705
- ]
- },
- {
- "keyword": "serves",
- "type": "memberOf",
- "typeCategory": "verb",
- "confidence": 0.9,
- "isCanonical": true,
- "embedding": [
- -0.07667376846075058,
- 0.03931785002350807,
- 0.026069926097989082,
- -0.037367645651102066,
- -0.08354943990707397,
- -0.0853147953748703,
- -0.011977115646004677,
- -0.04014741629362106,
- 0.02079586684703827,
- 0.008829747326672077,
- -0.018306685611605644,
- -0.05346700921654701,
- -0.0015896812546998262,
- 0.03571769595146179,
- 0.0006019725115038455,
- -0.053620509803295135,
- 0.1068485826253891,
- 0.017991548404097557,
- -0.04255162179470062,
- -0.039076127111911774,
- -0.0849292054772377,
- 0.01956295780837536,
- 0.029766522347927094,
- -0.036486223340034485,
- 0.015159782953560352,
- -0.016251299530267715,
- 0.031850580126047134,
- 0.04595664516091347,
- -0.035377342253923416,
- -0.0643773004412651,
- 0.006546294316649437,
- -0.057322777807712555,
- 0.07708726078271866,
- 0.024275178089737892,
- 0.022125637158751488,
- 0.023621462285518646,
- -0.041064921766519547,
- -0.025995731353759766,
- 0.051391154527664185,
- -0.004445586819201708,
- 0.014769187197089195,
- -0.07483307272195816,
- 0.011095017194747925,
- -0.012904927134513855,
- 0.057637397199869156,
- 0.05039902403950691,
- -0.02817085199058056,
- -0.0457577258348465,
- 0.0016214495990425348,
- -0.05790414288640022,
- -0.025023506954312325,
- -0.036100711673498154,
- 0.016588931903243065,
- -0.05251205712556839,
- 0.01270758081227541,
- -0.031141728162765503,
- -0.06941266357898712,
- 0.06382686644792557,
- 0.009783332236111164,
- -0.03522038832306862,
- 0.001289069652557373,
- -0.025166627019643784,
- -0.08581992238759995,
- 0.02195112220942974,
- -0.07838138192892075,
- -0.0311902966350317,
- -0.034709129482507706,
- -0.047539710998535156,
- -0.09452477097511292,
- -0.04027504473924637,
- 0.006158117204904556,
- 0.10921937972307205,
- 0.0035103652626276016,
- 0.025374384596943855,
- 0.013283886946737766,
- 0.0495268814265728,
- 0.050757475197315216,
- -0.04319446161389351,
- 0.05401375889778137,
- -0.026887597516179085,
- 0.02589084580540657,
- 0.07813716679811478,
- -0.025714797899127007,
- 0.011429172940552235,
- 0.04476591572165489,
- -0.006003213115036488,
- -0.009071454405784607,
- -0.035709068179130554,
- -0.06864120066165924,
- 0.014933631755411625,
- -0.12450502067804337,
- -0.015866843983530998,
- 0.04117090627551079,
- -0.0118957394734025,
- -0.08837883919477463,
- -0.013417036272585392,
- -0.035377826541662216,
- -0.0002808856952469796,
- -0.11415780335664749,
- 0.22833970189094543,
- 0.01537825632840395,
- 0.031824540346860886,
- 0.029938654974102974,
- -0.07076489180326462,
- 0.02942146360874176,
- -0.024126557633280754,
- -0.09863581508398056,
- 0.07740162312984467,
- -0.006662476807832718,
- -0.0467531718313694,
- -0.052580446004867554,
- 0.004276851192116737,
- 0.023156406357884407,
- 0.010589618235826492,
- -0.023060791194438934,
- -0.013406711630523205,
- 0.011554939672350883,
- 0.04273037984967232,
- 0.09761915355920792,
- -0.053025245666503906,
- 0.038469355553388596,
- 0.0237275343388319,
- -0.013982673175632954,
- 0.048015277832746506,
- -0.07459694147109985,
- -0.07219480723142624,
- 0.09299129247665405,
- -5.543224343558936e-33,
- 0.010395520366728306,
- -0.08121876418590546,
- 0.05723291262984276,
- -0.06946619600057602,
- 0.09064288437366486,
- 0.03217725455760956,
- 0.020166544243693352,
- 0.004869250115007162,
- -0.05821020528674126,
- 0.012488439679145813,
- 0.0005339520866982639,
- 0.008742882870137691,
- 0.060006048530340195,
- 0.015626637265086174,
- 0.012665911577641964,
- 0.012771492823958397,
- 0.02483687736093998,
- -0.001110959448851645,
- 0.11047043651342392,
- 0.017630591988563538,
- 0.0030013800133019686,
- 0.04588491469621658,
- 0.021866023540496826,
- -0.0012446129694581032,
- -0.03664673492312431,
- -0.010524222627282143,
- 0.028986943885684013,
- -0.0616651251912117,
- -0.03946179896593094,
- 0.004547846969217062,
- 0.028596943244338036,
- 0.028503024950623512,
- -0.027099404484033585,
- 0.010660768486559391,
- -0.02550124190747738,
- 0.055405326187610626,
- 0.04127988964319229,
- -0.05324144288897514,
- -0.044938307255506516,
- -0.01664738357067108,
- 0.015504571609199047,
- -0.015452241525053978,
- -0.09403733909130096,
- 0.08691960573196411,
- -0.02821047231554985,
- 0.006273264531046152,
- 0.03511616587638855,
- 0.02195296250283718,
- 0.04017516225576401,
- 0.003294769674539566,
- 0.021077267825603485,
- 0.020135222002863884,
- -0.015504151582717896,
- -0.012261541560292244,
- -0.02914062701165676,
- 0.004967092536389828,
- 0.07075025886297226,
- -0.02406063675880432,
- -0.05896614491939545,
- -0.0012176015879958868,
- 0.0335383340716362,
- -0.07754770666360855,
- -0.0991678535938263,
- -0.05381108075380325,
- 0.06071195378899574,
- -0.04802459478378296,
- -0.0303488802164793,
- -0.001050542457960546,
- 0.04872126132249832,
- -0.026470372453331947,
- -0.006904498673975468,
- 0.01716696098446846,
- 0.1582023948431015,
- 0.026918631047010422,
- 0.02549893781542778,
- -0.05031276494264603,
- 0.0012205021921545267,
- 0.029370779171586037,
- 0.05790462717413902,
- -0.022085705772042274,
- 0.060961879789829254,
- -0.1392047107219696,
- 0.032103873789310455,
- 0.06657463312149048,
- -0.026744451373815536,
- -0.009750672616064548,
- -0.022542357444763184,
- -0.14239637553691864,
- -0.05865103751420975,
- 0.0010838740272447467,
- -0.09339304268360138,
- 0.01936720497906208,
- -0.046368349343538284,
- 0.05735402554273605,
- -0.10698935389518738,
- 2.224525345963267e-33,
- -0.050986722111701965,
- 0.04604918509721756,
- -0.04585215821862221,
- 0.10288386791944504,
- 0.009222027845680714,
- -0.0015184294898062944,
- -0.004759046249091625,
- 0.08478406816720963,
- -0.07967665791511536,
- 0.06353919208049774,
- 0.008349630050361156,
- 0.04102621600031853,
- -0.044891487807035446,
- -0.007523888256400824,
- -0.05373845249414444,
- 0.03942824527621269,
- 0.04934484511613846,
- -0.05338152498006821,
- -0.020011885091662407,
- -0.034351009875535965,
- -0.006884863134473562,
- 0.09742239117622375,
- 0.060903098434209824,
- 0.07429007440805435,
- -0.036985937505960464,
- 0.03200678899884224,
- 0.10632907599210739,
- -0.0008751358836889267,
- -0.09704136103391647,
- 0.040464915335178375,
- 0.04213029891252518,
- -0.0033074456732720137,
- -0.06626234948635101,
- -0.10617253184318542,
- -0.01843082718551159,
- 0.11025608330965042,
- 0.08260364085435867,
- 0.04104890301823616,
- 0.005779111757874489,
- 0.11412317305803299,
- 0.01953379064798355,
- -0.002335347468033433,
- 0.0762857124209404,
- 0.11362645775079727,
- -0.013774464838206768,
- -0.03187653049826622,
- 0.059500422328710556,
- 0.01678631827235222,
- 0.009828765876591206,
- 0.05987701565027237,
- -0.09242094308137894,
- -0.008535314351320267,
- -0.07283951342105865,
- 0.01348966360092163,
- -0.028245601803064346,
- -0.029244687408208847,
- -0.06754323840141296,
- -0.03600141406059265,
- -0.014945290051400661,
- -0.022331058979034424,
- -0.030205322429537773,
- 0.03248649835586548,
- -0.029313022270798683,
- -0.01635166071355343,
- 0.005921120289713144,
- 0.038301676511764526,
- -0.04668784514069557,
- -0.004518650006502867,
- -0.020107580348849297,
- -0.03156663477420807,
- 0.0724223405122757,
- -0.04268914461135864,
- -0.02220999076962471,
- -0.004514731001108885,
- 0.015455923974514008,
- -0.067658431828022,
- -0.058748599141836166,
- 0.049681536853313446,
- -0.00030164618510752916,
- 0.03209293261170387,
- -0.039085835218429565,
- -0.0726211667060852,
- 0.012502724304795265,
- 0.01951214298605919,
- 0.02117091603577137,
- -0.022185446694493294,
- 0.07066245377063751,
- 0.09695638716220856,
- -0.04346594586968422,
- 0.0644625797867775,
- -0.01293530035763979,
- 0.02794293314218521,
- 0.15560957789421082,
- -0.0011001753155142069,
- 0.04115758836269379,
- -1.3845885327157248e-8,
- 0.017556963488459587,
- 0.025843225419521332,
- -0.08846445381641388,
- 0.0177629254758358,
- 0.0026227817870676517,
- 0.029400181025266647,
- -0.010509711690247059,
- -0.019115258008241653,
- 0.03418366238474846,
- -0.009779122658073902,
- 0.015691792592406273,
- 0.05365439131855965,
- 0.05692656338214874,
- -0.025472186505794525,
- 0.07777969539165497,
- -0.056736379861831665,
- 0.00035943437251262367,
- 0.03578682988882065,
- -0.0879729837179184,
- 0.022932643070816994,
- -0.06550410389900208,
- 0.026439890265464783,
- 0.054035864770412445,
- -0.01666336879134178,
- -0.004106683190912008,
- 0.007231788244098425,
- -0.05063942074775696,
- 0.08696266263723373,
- 0.05851421505212784,
- 0.035363420844078064,
- -0.022067110985517502,
- -0.010251699946820736,
- -0.005125919356942177,
- 0.008788730949163437,
- -0.036335330456495285,
- -0.001628953730687499,
- -0.01634259894490242,
- -0.021252574399113655,
- 0.0497053824365139,
- 0.09310133010149002,
- -0.0639081597328186,
- -0.0067510721273720264,
- 0.039700139313936234,
- 0.015004194341599941,
- -0.0503128282725811,
- 0.02069408819079399,
- -0.006222081836313009,
- 0.06429965049028397,
- 0.0458151213824749,
- -0.03766448795795441,
- 0.010695400647819042,
- -0.0667860358953476,
- 0.00636821985244751,
- 0.042742326855659485,
- 0.03389360010623932,
- 0.01009710505604744,
- 0.00837284792214632,
- -0.004448002204298973,
- 0.03833926096558571,
- 0.05608218163251877,
- 0.1396361142396927,
- 0.04486411064863205,
- -0.04301749914884567,
- 0.05202013626694679
- ]
- },
- {
- "keyword": "membership",
- "type": "memberOf",
- "typeCategory": "verb",
- "confidence": 0.85,
- "isCanonical": false,
- "embedding": [
- -0.05064867436885834,
- -0.05642368271946907,
- 0.010262830182909966,
- 0.0761449933052063,
- -0.01801731064915657,
- 0.004565727896988392,
- 0.1752968281507492,
- -0.01535269245505333,
- 0.03537234663963318,
- -0.03249554708600044,
- 0.0015094148693606257,
- -0.005395003594458103,
- 0.08814698457717896,
- -0.02582629770040512,
- -0.04311271384358406,
- -0.033357392996549606,
- -0.016406763345003128,
- 0.016117634251713753,
- -0.07319711893796921,
- -0.09538757801055908,
- -0.15371420979499817,
- -0.08080024272203445,
- -0.0012280724477022886,
- 0.08762317150831223,
- 0.002206956734880805,
- -0.013795158825814724,
- -0.035423193126916885,
- 0.021531976759433746,
- 0.024950165301561356,
- -0.05352866277098656,
- 0.022036178037524223,
- 0.05337664484977722,
- 0.06416456401348114,
- 0.023755082860589027,
- -0.026887891814112663,
- -0.025554781779646873,
- 0.04810584709048271,
- -0.02040869928896427,
- -0.07743404805660248,
- -0.015673920512199402,
- -0.05406766012310982,
- -0.02175549790263176,
- -0.059771183878183365,
- 0.03810624033212662,
- -0.010993566364049911,
- 0.0657627284526825,
- -0.013001730665564537,
- 0.0702422484755516,
- 0.023153306916356087,
- 0.07707283645868301,
- 0.11652610450983047,
- -0.020069807767868042,
- 0.007731233257800341,
- 0.028076132759451866,
- 0.030759867280721664,
- -0.018260397017002106,
- -0.02724887616932392,
- 0.006461188662797213,
- -0.054324280470609665,
- -0.0557863786816597,
- 0.05863036587834358,
- -0.0547451488673687,
- -0.06309802085161209,
- 0.010577358305454254,
- 0.000023072419935488142,
- 0.015439691953361034,
- -0.009737973101437092,
- 0.020220354199409485,
- -0.0075441752560436726,
- -0.08090906590223312,
- -0.024121850728988647,
- 0.03209025412797928,
- -0.008229844272136688,
- 0.07208886742591858,
- 0.05832773074507713,
- -0.007537135388702154,
- 0.08577067404985428,
- -0.040858663618564606,
- 0.11068490147590637,
- 0.02621779963374138,
- -0.040274932980537415,
- 0.0499085895717144,
- 0.0032808776013553143,
- 0.024006640538573265,
- 0.03179343789815903,
- -0.02677161991596222,
- 0.03192657604813576,
- 0.009184871800243855,
- -0.0679071918129921,
- -0.0030027939938008785,
- 0.0543634369969368,
- 0.037012215703725815,
- 0.049742184579372406,
- -0.04078999534249306,
- -0.12618388235569,
- 0.019749898463487625,
- -0.006070752162486315,
- 0.05489508435130119,
- -0.03457009792327881,
- 0.2423865646123886,
- -0.005020035430788994,
- 0.014555980451405048,
- 0.019838299602270126,
- -0.02783348597586155,
- -0.05070630833506584,
- -0.009522410109639168,
- 0.015482524409890175,
- 0.07244353741407394,
- 0.09658113121986389,
- 0.0018837193492799997,
- -0.0706939697265625,
- 0.00433932151645422,
- -0.06516189873218536,
- -0.014609228819608688,
- 0.029974138364195824,
- 0.04698282107710838,
- 0.016526469960808754,
- 0.04497341066598892,
- 0.06123148277401924,
- -0.022251730784773827,
- 0.04537026956677437,
- 0.03347919136285782,
- 0.05569516494870186,
- 0.01578647457063198,
- -0.030886683613061905,
- -0.0724821612238884,
- -0.0573711022734642,
- -5.4487017407833616e-33,
- -0.02969631552696228,
- 0.044010039418935776,
- 0.006354883778840303,
- -0.003996523562818766,
- 0.03424210101366043,
- -0.014276177622377872,
- -0.001618330948986113,
- -0.01533760130405426,
- -0.08894705027341843,
- 0.05697307735681534,
- -0.0905001163482666,
- 0.07926561683416367,
- 0.0366566926240921,
- -0.0321517251431942,
- 0.14476920664310455,
- -0.04480979964137077,
- -0.01505856029689312,
- -0.005383554380387068,
- 0.011754264123737812,
- -0.028298556804656982,
- -0.060084663331508636,
- 0.029632464051246643,
- 0.0122158732265234,
- 0.08923867344856262,
- -0.028999827802181244,
- -0.052347682416439056,
- -0.048274829983